diff --git a/docs/embedding-process.md b/docs/embedding-process.md new file mode 100644 index 0000000..238049b --- /dev/null +++ b/docs/embedding-process.md @@ -0,0 +1,295 @@ +# Vector Store Embedding Process Documentation + +## Overview +This document explains the embedding process used in the VectorStoreConfig class, which converts text documents into vector embeddings for semantic search capabilities. + +## Process Flow + +```plantuml +@startuml +skinparam backgroundColor white +skinparam handwritten false + +actor "Application" as app +participant "VectorStoreConfig" as config +participant "TikaDocumentReader" as tika +participant "TokenTextSplitter" as splitter +participant "EmbeddingModel" as embedder +participant "SimpleVectorStore" as store +database "Vector Store File" as file + +app -> config: Initialize VectorStore +activate config + +alt Vector Store File Exists + config -> file: Load existing store + file --> config: Return loaded store +else Vector Store File Doesn't Exist + config -> tika: Read document + activate tika + tika --> config: Return documents + deactivate tika + + config -> splitter: Split documents + activate splitter + splitter --> config: Return split documents + deactivate splitter + + loop For each split document + config -> embedder: Generate embedding + activate embedder + embedder --> config: Return vector + deactivate embedder + + config -> store: Add embedding + activate store + store --> config: Confirmation + deactivate store + + config -> config: Wait 1 second + end + + config -> file: Save vector store +end + +config --> app: Return vector store +deactivate config + +@enduml +``` + +## Detailed Process Explanation + +### 1. Initialization +```java +SimpleVectorStore store = SimpleVectorStore.builder(embeddingModel).build(); +``` +- Creates a new SimpleVectorStore instance +- Configures it with the provided embedding model (HuggingFace in this case) + +### 2. Vector Store File Check +```java +File vectorStoreFile = new File(vectorStoreProperties.getVectorStorePath()); +if (vectorStoreFile.exists()) { + store.load(vectorStoreFile); +} +``` +- Checks if a previously created vector store exists +- If exists, loads the pre-computed embeddings +- This prevents re-computing embeddings for the same documents + +### 3. Document Processing (if no existing store) +```java +vectorStoreProperties.getDocumentsToLoad().forEach(document -> { + TikaDocumentReader documentReader = new TikaDocumentReader(document); + List documents = documentReader.get(); +``` +- Iterates through each document specified in properties +- Uses Apache Tika to read and parse the document +- Tika handles various document formats (PDF, DOC, TXT, etc.) + +### 4. Text Splitting +```java +TextSplitter textSplitter = new TokenTextSplitter(); +List splitDocs = textSplitter.apply(documents); +``` +- Splits documents into smaller chunks using TokenTextSplitter +- This is necessary because: + - Embedding models have token limits + - Smaller chunks provide more precise semantic search + - Helps in managing memory usage + +### 5. Embedding Generation +```java +store.add(splitDocs); +``` +- For each split document: + 1. The text is tokenized + 2. Tokens are converted to embeddings using the configured model + 3. Embeddings are stored in the vector store + +#### Detailed Embedding Process + +1. **Text Tokenization** + ```java + // Example of how text is tokenized internally + String text = "The quick brown fox jumps over the lazy dog"; + // Tokenized into: ["the", "quick", "brown", "fox", "jumps", "over", "the", "lazy", "dog"] + ``` + +2. **OpenAI API Call** + ```java + // Internal API call to OpenAI (simplified) + POST https://api.openai.com/v1/embeddings + { + "model": "text-embedding-ada-002", + "input": "The quick brown fox jumps over the lazy dog", + "encoding_format": "float" + } + + // Response + { + "data": [{ + "embedding": [0.0023064255, -0.009327292, ...], // 1536-dimensional vector + "index": 0 + }], + "model": "text-embedding-ada-002", + "usage": { + "prompt_tokens": 9, + "total_tokens": 9 + } + } + ``` + +3. **Vector Storage** + ```java + // Example of how embeddings are stored + Map embeddings = new HashMap<>(); + embeddings.put("doc1_chunk1", [0.0023064255, -0.009327292, ...]); + ``` + +#### Cost and Performance Considerations + +1. **API Costs** + - OpenAI charges per token for embeddings + - Example cost calculation: + ``` + Input text: "The quick brown fox jumps over the lazy dog" + Tokens: 9 + Cost per 1K tokens: $0.0001 + Total cost: (9/1000) * $0.0001 = $0.0000009 + ``` + +2. **Rate Limiting** + ```java + // Current implementation + Thread.sleep(1000); // 1 second delay between calls + + // Alternative implementation with exponential backoff + private void processWithBackoff(String text) { + int maxRetries = 3; + int baseDelay = 1000; // 1 second + + for (int i = 0; i < maxRetries; i++) { + try { + return generateEmbedding(text); + } catch (RateLimitException e) { + int delay = baseDelay * (int) Math.pow(2, i); + Thread.sleep(delay); + } + } + } + ``` + +3. **Batch Processing** + ```java + // Example of batch processing multiple texts + List texts = Arrays.asList( + "First document chunk", + "Second document chunk", + "Third document chunk" + ); + + // OpenAI allows up to 2048 tokens per request + // Batch size calculation + int maxTokensPerRequest = 2048; + int averageTokensPerText = 100; + int optimalBatchSize = maxTokensPerRequest / averageTokensPerText; + ``` + +#### Example: Complete Embedding Flow + +```java +// 1. Document splitting +TextSplitter splitter = new TokenTextSplitter(); +List chunks = splitter.apply(documents); + +// 2. Embedding generation +for (Document chunk : chunks) { + // 2.1 Prepare text + String text = chunk.getContent(); + + // 2.2 Generate embedding + EmbeddingResponse response = openAiClient.createEmbedding( + EmbeddingRequest.builder() + .model("text-embedding-ada-002") + .input(text) + .build() + ); + + // 2.3 Extract vector + float[] embedding = response.getData().get(0).getEmbedding(); + + // 2.4 Store in vector store + store.add(new Document(chunk.getContent(), embedding)); + + // 2.5 Rate limiting + Thread.sleep(1000); +} +``` + +#### Vector Similarity + +The generated embeddings enable semantic search through vector similarity: + +```java +// Example of similarity calculation +float[] queryEmbedding = generateEmbedding("What is machine learning?"); +float[] documentEmbedding = store.getEmbedding("doc1_chunk1"); + +// Cosine similarity calculation +float similarity = cosineSimilarity(queryEmbedding, documentEmbedding); +// Returns value between -1 and 1, where 1 means most similar +``` + +The embedding process: +- Converts text into numerical vectors (1536 dimensions for OpenAI's ada-002 model) +- Preserves semantic meaning in the vector space +- Enables similarity calculations between texts +- Allows for efficient semantic search and retrieval + +### 6. Rate Limiting +```java +Thread.sleep(1000); +``` +- Implements a 1-second delay between documents +- Prevents overwhelming the embedding API +- Helps avoid rate limiting issues + +### 7. Persistence +```java +store.save(vectorStoreFile); +``` +- Saves the computed embeddings to disk +- Enables reuse of embeddings in future runs +- Improves performance by avoiding recomputation + +## Technical Details + +### Embedding Model (HuggingFace) +- Uses the "sentence-transformers/all-MiniLM-L6-v2" model +- Generates 384-dimensional vectors +- Optimized for semantic similarity tasks +- Supports multiple languages + +### Vector Store +- Stores embeddings in memory during processing +- Persists to disk for long-term storage +- Enables efficient similarity search +- Supports incremental updates + +### Performance Considerations +- Embedding generation is computationally expensive +- Rate limiting is implemented to prevent API overload +- Caching through file persistence improves performance +- Text splitting optimizes memory usage + +## Usage Example +```java +// Configuration in application.properties +sfg.aiapp.vectorStorePath=./tmp/vectorstore.json +sfg.aiapp.documentsToLoad=classpath:./movies500.csv + +// The vector store can then be used for semantic search +List results = vectorStore.similaritySearch("query text", 5); +``` \ No newline at end of file diff --git a/docs/vector-embedding-rag.md b/docs/vector-embedding-rag.md new file mode 100644 index 0000000..e02442d --- /dev/null +++ b/docs/vector-embedding-rag.md @@ -0,0 +1,144 @@ +# Understanding Vector Embeddings and RAG in Spring AI: A Comprehensive Guide + +## Table of Contents +1. [Introduction](#introduction) +2. [What are Vector Embeddings?](#what-are-vector-embeddings) +3. [Understanding RAG (Retrieval-Augmented Generation)](#understanding-rag) +4. [Vector Embeddings in RAG](#vector-embeddings-in-rag) +5. [Spring AI Implementation](#spring-ai-implementation) +6. [Practical Example](#practical-example) +7. [Best Practices and Considerations](#best-practices-and-considerations) +8. [Conclusion](#conclusion) + +## Introduction + +In the world of artificial intelligence and natural language processing, vector embeddings and RAG (Retrieval-Augmented Generation) have emerged as powerful tools for enhancing AI applications. This guide will help you understand these concepts from the ground up, with practical examples using Spring AI. + +## What are Vector Embeddings? + +Vector embeddings are numerical representations of data (like text, images, or audio) in a multi-dimensional space. Think of them as a way to convert complex information into a format that computers can understand and process efficiently. + +### Key Characteristics: +- **Dimensionality**: Typically represented as arrays of numbers (e.g., [0.1, -0.3, 0.5, ...]) +- **Semantic Meaning**: Similar items are placed closer together in the vector space +- **Fixed Length**: Each embedding has a consistent number of dimensions + +### Example: +Consider the words "king" and "queen". Their vector embeddings might look like: +``` +king: [0.2, 0.5, -0.3, 0.1, ...] +queen: [0.2, 0.5, -0.2, 0.1, ...] +``` +Notice how similar words have similar vector representations. + +## Understanding RAG (Retrieval-Augmented Generation) + +RAG is a technique that combines retrieval-based and generation-based approaches to improve AI responses. It works in three main steps: + +1. **Retrieval**: Finding relevant information from a knowledge base +2. **Augmentation**: Combining the retrieved information with the user's query +3. **Generation**: Creating a response using the augmented context + +### Why RAG? +- Improves accuracy of AI responses +- Reduces hallucinations +- Provides up-to-date information +- Enables domain-specific knowledge integration + +## Vector Embeddings in RAG + +Vector embeddings play a crucial role in RAG systems: + +1. **Document Embedding**: Converting documents into vector representations +2. **Query Embedding**: Converting user queries into vectors +3. **Similarity Search**: Finding relevant documents using vector similarity + +### How it Works: +``` +User Query → Vector Embedding → Similarity Search → Relevant Documents → Enhanced Response +``` + +## Spring AI Implementation + +Spring AI provides a robust framework for implementing RAG systems. Let's look at a practical example using your VectorDemoController: + +```java +@RestController +@RequestMapping("/vector") +public class VectorDemoController { + private final VectorDemoService vectorDemoService; + + public VectorDemoController(VectorDemoService vectorDemoService) { + this.vectorDemoService = vectorDemoService; + } + + @PostMapping("/answer") + public Answer post(@RequestBody Question question) { + return vectorDemoService.getAnswer(question); + } +} +``` + +### Key Components: +1. **Controller**: Handles HTTP requests +2. **Service**: Implements the RAG logic +3. **Model**: Defines the data structure + +## Practical Example + +Let's walk through a complete example of how RAG works in practice: + +1. **User Query**: "What is the capital of France?" +2. **Vector Embedding**: The query is converted into a vector +3. **Similarity Search**: The system finds relevant documents +4. **Response Generation**: An answer is generated using the retrieved information + +### Code Flow: +```mermaid +graph TD + A[User Query] --> B[Vector Embedding] + B --> C[Similarity Search] + C --> D[Document Retrieval] + D --> E[Response Generation] + E --> F[Final Answer] +``` + +## Best Practices and Considerations + +1. **Vector Database Selection** + - Consider scalability + - Evaluate performance requirements + - Choose based on your use case + +2. **Embedding Model Selection** + - Language support + - Dimensionality + - Performance characteristics + +3. **System Architecture** + - Caching strategies + - Error handling + - Monitoring and logging + +## Conclusion + +Vector embeddings and RAG are powerful tools that can significantly enhance your AI applications. By understanding these concepts and implementing them correctly in Spring AI, you can create more accurate and reliable AI systems. + +### Next Steps +1. Experiment with different embedding models +2. Implement caching for better performance +3. Monitor and optimize your RAG system +4. Consider adding more advanced features like hybrid search + +--- + +## Additional Resources +- [Spring AI Documentation](https://docs.spring.io/spring-ai/reference/) +- [Vector Database Comparison](https://www.pinecone.io/learn/vector-database/) +- [RAG Best Practices](https://www.pinecone.io/learn/retrieval-augmented-generation/) + +## Glossary +- **Vector Embedding**: Numerical representation of data in a multi-dimensional space +- **RAG**: Retrieval-Augmented Generation, a technique for enhancing AI responses +- **Similarity Search**: Finding similar items based on vector representations +- **Hallucination**: When AI generates incorrect or made-up information \ No newline at end of file diff --git a/openai-demo-service/build.gradle b/openai-demo-service/build.gradle index c616882..935c880 100644 --- a/openai-demo-service/build.gradle +++ b/openai-demo-service/build.gradle @@ -13,17 +13,28 @@ java { } } +configurations { + compileOnly { + extendsFrom annotationProcessor + } +} + repositories { mavenCentral() } ext { - set('springAiVersion', "1.0.0-M8") + set('springAiVersion', "1.0.0-RC1") } dependencies { implementation 'org.springframework.boot:spring-boot-starter-web' implementation 'org.springframework.ai:spring-ai-starter-model-openai' + + implementation 'org.springframework.ai:spring-ai-vector-store' + // https://mvnrepository.com/artifact/group.springframework.ai/spring-ai-tika-document-reader + implementation 'org.springframework.ai:spring-ai-tika-document-reader' + testImplementation 'org.springframework.boot:spring-boot-starter-test' testRuntimeOnly 'org.junit.platform:junit-platform-launcher' } diff --git a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/ApplicationProperties.java b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/ApplicationProperties.java new file mode 100644 index 0000000..e2c7d12 --- /dev/null +++ b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/ApplicationProperties.java @@ -0,0 +1,35 @@ +package com.codefarm.openai.demo.service.config; + + + +import org.springframework.boot.context.properties.ConfigurationProperties; +import org.springframework.context.annotation.Configuration; +import org.springframework.core.io.Resource; + +import java.util.List; + +@Configuration +@ConfigurationProperties(prefix = "vector.store.data") + +public class ApplicationProperties { + + private String moviesVector; + + private List moviesToLoad; + + public String getMoviesVector() { + return moviesVector; + } + + public void setMoviesVector(String moviesVector) { + this.moviesVector = moviesVector; + } + + public List getMoviesToLoad() { + return moviesToLoad; + } + + public void setMoviesToLoad(List moviesToLoad) { + this.moviesToLoad = moviesToLoad; + } +} diff --git a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/VectorStoreConfig.java b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/VectorStoreConfig.java new file mode 100644 index 0000000..4cf3d8b --- /dev/null +++ b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/config/VectorStoreConfig.java @@ -0,0 +1,48 @@ +package com.codefarm.openai.demo.service.config; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.ai.document.Document; +import org.springframework.ai.embedding.EmbeddingModel; +import org.springframework.ai.reader.tika.TikaDocumentReader; +import org.springframework.ai.transformer.splitter.TextSplitter; +import org.springframework.ai.transformer.splitter.TokenTextSplitter; +import org.springframework.ai.vectorstore.SimpleVectorStore; +import org.springframework.context.annotation.Bean; +import org.springframework.context.annotation.Configuration; + +import java.io.File; +import java.util.List; + +@Configuration +public class VectorStoreConfig { + + private static final Logger log = LoggerFactory.getLogger(VectorStoreConfig.class); + @Bean + public SimpleVectorStore simpleVectorStore(EmbeddingModel embeddingModel, ApplicationProperties applicationProperties) { + SimpleVectorStore store = SimpleVectorStore.builder(embeddingModel).build(); + File vectorStoreFile = new File(applicationProperties.getMoviesVector()); + + // Create parent directory if it doesn't exist + vectorStoreFile.getParentFile().mkdirs(); + + if (vectorStoreFile.exists()) { + store.load(vectorStoreFile); + } else { + log.info("vector store file not exists, loading new files"); + applicationProperties.getMoviesToLoad().forEach(document -> { + log.info("load document --> {}", document); + TikaDocumentReader documentReader = new TikaDocumentReader(document); + List documents = documentReader.get(); + TextSplitter textSplitter = TokenTextSplitter.builder() + .withChunkSize(300) + .withMaxNumChunks(400) + .build(); + List splitDocs = textSplitter.apply(documents); + store.add(splitDocs); + }); + store.save(vectorStoreFile); + } + return store; + } +} diff --git a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/OpenAIQnAController.java b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/OpenAIQnAController.java similarity index 97% rename from openai-demo-service/src/main/java/com/codefarm/openai/demo/service/OpenAIQnAController.java rename to openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/OpenAIQnAController.java index b7a749a..a476488 100644 --- a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/OpenAIQnAController.java +++ b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/OpenAIQnAController.java @@ -1,4 +1,4 @@ -package com.codefarm.openai.demo.service; +package com.codefarm.openai.demo.service.controller; import com.codefarm.openai.demo.service.model.*; import com.codefarm.openai.demo.service.service.OpenAiService; diff --git a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/VectorDemoController.java b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/VectorDemoController.java new file mode 100644 index 0000000..c863eeb --- /dev/null +++ b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/controller/VectorDemoController.java @@ -0,0 +1,25 @@ +package com.codefarm.openai.demo.service.controller; + +import com.codefarm.openai.demo.service.model.Answer; +import com.codefarm.openai.demo.service.model.Question; +import com.codefarm.openai.demo.service.service.VectorDemoService; +import org.springframework.web.bind.annotation.PostMapping; +import org.springframework.web.bind.annotation.RequestBody; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.RestController; + +@RestController +@RequestMapping("/vector") +public class VectorDemoController { + + private final VectorDemoService vectorDemoService; + + public VectorDemoController(VectorDemoService vectorDemoService) { + this.vectorDemoService = vectorDemoService; + } + + @PostMapping("/answer") + public Answer post(@RequestBody Question question) { + return vectorDemoService.getAnswer(question); + } +} diff --git a/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/service/VectorDemoService.java b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/service/VectorDemoService.java new file mode 100644 index 0000000..61598f9 --- /dev/null +++ b/openai-demo-service/src/main/java/com/codefarm/openai/demo/service/service/VectorDemoService.java @@ -0,0 +1,54 @@ +package com.codefarm.openai.demo.service.service; + +import com.codefarm.openai.demo.service.model.Answer; +import com.codefarm.openai.demo.service.model.Question; +import org.springframework.ai.chat.model.ChatModel; +import org.springframework.ai.chat.model.ChatResponse; +import org.springframework.ai.chat.prompt.Prompt; +import org.springframework.ai.chat.prompt.PromptTemplate; +import org.springframework.ai.document.Document; +import org.springframework.ai.vectorstore.SearchRequest; +import org.springframework.ai.vectorstore.SimpleVectorStore; +import org.springframework.beans.factory.annotation.Value; +import org.springframework.core.io.Resource; +import org.springframework.stereotype.Service; + +import java.util.List; +import java.util.Map; + +@Service +public class VectorDemoService { + + private final ChatModel chatModel; + private final SimpleVectorStore vectorStore; + + @Value("classpath:templates/rag-prompt-template.st") + private Resource ragPromptTemplate; + + public VectorDemoService(ChatModel chatModel, SimpleVectorStore vectorStore) { + this.chatModel = chatModel; + this.vectorStore = vectorStore; + } + + public Answer getAnswer(Question question) { + + List documents = vectorStore.similaritySearch( + SearchRequest.builder().query(question.question()).topK(5).build() + ); + + List cottentList = documents.stream().map(Document::getText).toList(); + cottentList.forEach(System.out::println); + + PromptTemplate promptTemplate = new PromptTemplate(ragPromptTemplate); + Prompt prompt = promptTemplate.create( + Map.of( + "input", question.question(), + "documents", String.join(",", cottentList) + ) + ); + + ChatResponse response = chatModel.call(prompt); + + return new Answer(response.getResult().getOutput().getText()); + } +} diff --git a/openai-demo-service/src/main/resources/application.properties b/openai-demo-service/src/main/resources/application.properties index 335b215..d2a5a1c 100644 --- a/openai-demo-service/src/main/resources/application.properties +++ b/openai-demo-service/src/main/resources/application.properties @@ -1,3 +1,7 @@ spring.application.name=openai-demo-service -spring.ai.openai.api-key=${OPENAI_API_KEY} \ No newline at end of file +spring.ai.openai.api-key=${OPENAI_API_KEY} + + +vector.store.data.moviesToLoad=classpath:./movies.csv +vector.store.data.moviesVector=./tmp/moviesvector.json \ No newline at end of file diff --git a/openai-demo-service/src/main/resources/movies.csv b/openai-demo-service/src/main/resources/movies.csv new file mode 100644 index 0000000..f003dde --- /dev/null +++ b/openai-demo-service/src/main/resources/movies.csv @@ -0,0 +1,502 @@ +id,title,genres,original_language,overview,popularity,production_companies,release_date,budget,revenue,runtime,status,tagline,vote_average,vote_count,credits,keywords,poster_path,backdrop_path,recommendations +19995,Avatar,Action-Adventure-Fantasy-Science Fiction,en,In the 22nd century a paraplegic Marine is dispatched to the moon Pandora on a unique mission but becomes torn between following orders and protecting an alien civilization.,296.05,Dune Entertainment-Lightstorm Entertainment-20th Century Fox-Ingenious Media,12/15/09,237000000,2920357254,162,Released,Enter the world of Pandora.,7.569,28943,Sam Worthington-Zoe Salda��a-Stephen Lang-Michelle Rodriguez-Sigourney Weaver-Giovanni Ribisi-Joel David Moore-CCH Pounder-Wes Studi-Laz Alonso-Dileep Rao-Matt Gerald-Sean Anthony Moran-Jason Whyte-Scott Lawrence-Kelly Kilgour-James Patrick Pitt-Sean Patrick Murphy-Peter Dillon-Kevin Dorman-Kelson Henderson-David Van Horn-Jacob Tomuri-Michael Blain-Rozgay-Jon Curry-Julene Renee-Luke Hawker-Woody Schultz-Peter Mensah-Sonia Yee-Jahnel Curfman-Ilram Choi-Kyla Warren-Alicia Vela-Bailey-Kyle Dryberg-Larry Rew-Dina Morrone-Rodney Cook,culture clash-future-space war-space colony-society-space travel-futuristic-romance-space-alien-tribe-alien planet-marine-soldier-battle-love affair-nature-anti war-power relations-mind and soul,/jRXYjXNq0Cs2TcJjLkki24MLp7u.jpg,/vL5LR6WdxWPjLPFRLe133jXWsh5.jpg,183392-111332-874764-613200-100287-1010821-1059673-773867-76600-572261-278698-24428-287003-49051-49026-520946-70160-27205-120-1726-811913 +299534,Avengers: Endgame,Adventure-Science Fiction-Action,en,After the devastating events of Avengers: Infinity War the universe is in ruins due to the efforts of the Mad Titan Thanos. With the help of remaining allies the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all no matter what consequences may be in store.,201.42,Marvel Studios,4/24/19,356000000,2799439100,181,Released,Avenge the fallen.,8.268,22759,Robert Downey Jr.-Chris Evans-Mark Ruffalo-Chris Hemsworth-Scarlett Johansson-Jeremy Renner-Don Cheadle-Paul Rudd-Benedict Cumberbatch-Chadwick Boseman-Brie Larson-Tom Holland-Karen Gillan-Zoe Salda��a-Evangeline Lilly-Tessa Thompson-Rene Russo-Elizabeth Olsen-Anthony Mackie-Sebastian Stan-Tom Hiddleston-Danai Gurira-Benedict Wong-Pom Klementieff-Dave Bautista-Letitia Wright-John Slattery-Tilda Swinton-Jon Favreau-Hayley Atwell-Natalie Portman-Marisa Tomei-Taika Waititi-Angela Bassett-Michael Douglas-Michelle Pfeiffer-William Hurt-Cobie Smulders-Sean Gunn-Winston Duke-Linda Cardellini-Maximiliano Hern��ndez-Frank Grillo-Hiroyuki Sanada-Tom Vaughan-Lawlor-James D'Arcy-Jacob Batalon-Vin Diesel-Bradley Cooper-Gwyneth Paltrow-Robert Redford-Josh Brolin-Chris Pratt-Samuel L. Jackson-Lexi Rabe-Joe Russo-Ross Marquand-Emma Fuhrmann-Michael James Shaw-Terry Notary-Kerry Condon-Ben Sakamoto-Ava Russo-Cade Woodward-Stan Lee-Yvette Nicole Brown-Callan Mulvey-Lia Russo-Julian Russo-Taylor Patterson-Agostino Rosalina-Ken Jeong-Ty Simpkins-Jackson A. Dunn-Lee Moore-Bazlo LeClair-Loen LeClair-Matthew Berry-Joy McAvoy-John Michael Morris-Michael A. Cook-Brent McGee-Brian Schaeffer-Jamie Wedel-Anthony G Breed-Erica Ribley-Monique Ganderton-Jim Starlin-Jimmy Ray Pickens-Hye Jin Jang-Russell Bobbitt-James Lin-Jack Champion-Sam Hargrave-Patrick Gorman-Aaron Lazar-Robert Pralgo-Tom Wisdom-John Posey-Ameenah Kaplan-Olaniyan Thurmon-Jennifer Elmore-Mike Lutz-Anele Lundborg-Khanya Mkhize-Justin Shaw-Tom Antonellis-Ron Bottitta-Danielle Hartnett-Jennifer Cain-Arthur Ortiz-Ben Pronsky,space travel-time travel-time machine-sequel-superhero-based on comic-alien invasion-superhero team-marvel cinematic universe (mcu)-alternate timeline-father daughter relationship-sister sister relationship,/or06FN3Dka5tukK1e9sl16pB3iy.jpg,/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg,299536-299537-429617-99861-284053-363088-24428-271110-315635-284054-324857-284052-283995-100402-1726-10138-64690-76338-102899-287947-10195 +76600,Avatar: The Way of Water,Science Fiction-Adventure-Action,en,Set more than a decade after the events of the first film learn the story of the Sully family (Jake Neytiri and their kids) the trouble that follows them the lengths they go to keep each other safe the battles they fight to stay alive and the tragedies they endure.,298.881,20th Century Studios-Lightstorm Entertainment,12/14/22,460000000,2320250281,192,Released,Return to Pandora.,7.656,9794,Sam Worthington-Zoe Salda��a-Sigourney Weaver-Stephen Lang-Kate Winslet-Cliff Curtis-Joel David Moore-CCH Pounder-Edie Falco-Jemaine Clement-Giovanni Ribisi-Britain Dalton-Jamie Flatters-Trinity Bliss-Jack Champion-Brendan Cowell-Bailey Bass-Filip Geljo-Duane Evans Jr.-Dileep Rao-Matt Gerald-Robert Okumu-Jennifer Stafford-Keston John-Kevin Dorman-Alicia Vela-Bailey-Sean Anthony Moran-Andrew Arrabito-Johnny Alexander-Kim Do-Victor T. Lopez-Maria Walker-Phil Brown-Jocelyn Christian-Joel Tobeck-Moana Ete-Phil Peleton-Jamie Landau-Jim Moore-Benjamin Hoetjes-Nikita Tu Bryant-Anthony Ahern-Shane Rangi-Rick Lucas-Tanya Drewery-Ava Diakhaby-Isaac Te Reina-Eric Farmer-Philip Mtambo-Daniel Lough-Cruz Moir-Alex Lucas-Scarlett Fernandez-Chloe Coleman-Jeremy Irwin-Jake McLean-CJ Jones-Adrien Antoine-Ingrid Donnadieu-Ninon Moreau-Sylvie Genty-Xavier Fagnon-Matt Mouredon-Julien Alluguette-Oscar Douieb-Anneliese Fromont-Mathieu Buscatto-Jaynelia Coadou-Marianne Leroux-Thi��ry Dub��-Laurent Maurel-Carmen Levrau-Pierre Boulanger-Patrick Mancini-Mich��le Bardollet-Luc Boulad-Boris Rehlinger-Alexandre Nguyen-Damien Witecka,loss of loved one-dying and death-alien life-form-resurrection-sequel-dysfunctional family-alien planet-distant future-adopted child-rebirth-family dynamics-adopted son-stronger villain-war,/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg,/8rpDcsfLJypbO6vREc0547VKqEv.jpg,136283-823999-183392-1033219-111332-1064215-980078-676841-83121-874764-315162-594767-1007938-640146-762338-1109607-1109558-1109559-267805-965839 +597,Titanic,Drama-Romance,en,101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic 84 years later. A young Rose boards the ship with her mother and fianc��. Meanwhile Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death���on its first and last voyage���on April 15 1912.,167.631,Paramount-20th Century Fox-Lightstorm Entertainment,11/18/97,200000000,2187463944,194,Released,Nothing on Earth could come between them.,7.89,22529,Leonardo DiCaprio-Kate Winslet-Billy Zane-Kathy Bates-Frances Fisher-Gloria Stuart-Victor Garber-Bill Paxton-Bernard Hill-David Warner-Jonathan Hyde-Lewis Abernathy-Suzy Amis-Nicholas Cascone-Danny Nucci-Jason Barry-Lew Palter-Eric Braeden-Ewan Stewart-Bernard Fox-Ioan Gruffudd-Jonny Phillips-Edward Fletcher-Scott G. Anderson-Martin East-Gregory Cooke-Alexandrea Owens-Seth Adkins-Michael Ensign-Anatoly M. Sagalevitch-Martin Hub-Mark Lindsay Chapman-Richard Graham-Paul Brightwell-Craig Kelly-Ron Donachie-Charlotte Chatton-Fannie Brett-Jenette Goldstein-Camilla Overbye Roos-Linda Kerns-Amy Gaipa-Martin Jarvis-Rosalind Ayres-Rochelle Rose-Jonathan Evans-Jones-Rocky Taylor-Liam Tuohy-Simon Crane-James Lancaster-Elsa Raven-Reece P. Thompson III-Laramie Landis-Mark Rafael Truitt-John Walcutt-Terry Forrestal-Derek Lea-Richard Ashton-Sean Nepita-Brendan Connolly-David Cronnelly-Garth Wilton-Richard Fox-Nick Meaney-Kevin Owers-Mark Capri-Marc Cass-Paul Herbert-Emmett James-Chris Byrne-Oliver Page-James Garrett-Erik Holland-Jari Kinnunen-Anders Falk-Barry Dennen-Vern Urich-Rebecca Klingler-Tricia O'Neil-Kathleen S. Dunn-Romeo Francis-Mandana Marino-Van Ling-Bj�rn Olsen-Dan Pettersson-Shay Duffin-Greg Ellis-Diana Morgan-Kris Andersson-Bobbie Bates-Aaron James Cash-Anne Fletcher-Edmond Alan Forsyth-Andie Hicks-Scott Hislop-Stan Mazin-Lisa Ratzin-Julene Renee-Brian Walsh-Alexandra Boyd-James Cameron-Mike Butters-Bruno Campolo-Kevin De La Noy-Tony Kenny-Sean Lawlor-Don Lynch-Johnny Martin-Ryan McClurkin-Meghan McLeod-Mike O'Neal-Phil Parlapiano-Steven Quale-R. Gern Trowbridge-Olivia Rosewood-John Slade-Brian McDermott,drowning-evacuation-shipwreck-iceberg-forbidden love-ship-panic-titanic-ocean liner-epic-rich woman poor man-based on true story-love-tragedy-disaster-tragic love-historical fiction-class differences-love affair-historical event-lifeboat-star crossed lovers-sinking ship-steerage-rich snob-disaster movie-1910s-sunken ship,/9xjZS2rlVxm8SFx8kPC3aIGCOYQ.jpg,/rzdPqYx7Um4FUZeD8wpXqjAUcEm.jpg,22-8587-12-58-13-12444-18785-8966-1865-671-672-14160-12445-673-585-862-675-11324-674-285-767 +140607,Star Wars: The Force Awakens,Adventure-Action-Science Fiction,en,Thirty years after defeating the Galactic Empire Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.,64.877,Lucasfilm Ltd.-Bad Robot,12/15/15,245000000,2068223624,136,Released,Every generation has a story.,7.289,18501,Harrison Ford-Mark Hamill-Carrie Fisher-Adam Driver-Daisy Ridley-John Boyega-Oscar Isaac-Lupita Nyong'o-Andy Serkis-Domhnall Gleeson-Anthony Daniels-Max von Sydow-Peter Mayhew-Gwendoline Christie-Joonas Suotamo-Pip Andersen-Simon Pegg-Kiran Shah-Sasha Frost-Pip Torrens-Andrew Jack-Rocky Marshall-Greg Grunberg-Emun Elliott-Brian Vernel-Yayan Ruhian-Sebastian Armesto-Maisie Richardson-Sellers-Warwick Davis-Cailey Fleming-Mark Stanley-Ken Leung-Iko Uwais-Anna Brewster-Harriet Walter-Tim Rose-Erik Bauersfeld-Mike Quinn-Bill Kipsang Rotich-Michael Giacchino-Nigel Godrich-Judah Friedlander-Victor McGuire-Miltos Yerolemou-Billie Lourd-Leanne Best-Crystal Clarke-Jeffery Kissoon-Claudia Sermbezis-Gerald W. Abrams-Jim McGrath-Philicia Saunders-Morgan Dameron-Jessica Henwick-Tosin Cole-James McArdle-Stefan Grube-Dixie Arnold-Hannah John-Kamen-Kate Fleetwood-Thomas Brodie-Sangster-Brian Herring-Dave Chapman-Jimmy Vee-Cecep Arif Rahman-Ian Whyte-Daniel Craig-Ewan McGregor-Frank Oz-Alec Guinness-Tom Kane-Catherine Taber-Matthew Wood-Samuel Witwer-Meredith Salenger-James Arnold Taylor-Michael Donovan-Devon Libran-Robert Stambler-Verona Blue-Fred Tatasciore-Patrick Correll-Karen Huie-Orly Schuchmacher-Ben Schwartz-Mark Dodson-Yang Liang-David Acord-Jamie B. Chambers-David M. Santana-Francesca Longrigg-D.C. Barns-Tom Edden-Richard Riddell-Jefferson Hall-Jack Laskey-Daniel Adjei-Charlie Akin-Adrian Allan-Samantha Alleyne-Paul Biddiss-Hannah Blamires-Rony Bridges-Stuart Budd-Calvin Chen-Alan Chimes-Jamie Clay-David W. Collins-Cavin Cornwall-Rowan Cox-Nathalie Cuzner-Rimmel Daniel-Keith De'Winter-Adrian Derrick-Palmer-Michael Dickins-Cameron Edwards-Jesse Michael Fullington-Gloria Garc�_a-Salo Gardner-Caroline Garnell-Chris Geden-Versha Grant-Steven James Griffiths-Gary Hailes-Tim Hammersley-Chris Hastings-Marina Hayter-Kelvin Hewlett-Matthew Hobbs-Phil Hodges-Leigh Holland-Kevin Hudson-Phoenix James-Zander James-Tobias James-Samuels-Paul Kasey-Aaron Kennedy-Aidan Knight-Sanj Krishnan-Lukas Landau-Andrei Lenart-Jorge Leon Martinez-Julia Leyland-Billy James Machin-Hamza Malik-Raymond Mamrak-Kelsey Edwards-Kenny-Lee Mbanefo-David McCarrison-Sandeep Mohan-Benjayx Murphy-Robert Strange-Charlie Nevett-Jason Nicholls-Terry Noble-David Norfolk-Tatsujiro Oto-Gillian Pittaway-Nathan Plant-Elroy Powell-Jay Rincon-Marc Rolfe-Julio Romeo-Arti Shah-Kat Sheridan-Stephanie Silva-Jasper Skinner-Sandy Kate Slade-Clem So-Benito Sovrano-Karol Steele-Fran�_ois Sternkiker-Frank Stone-Andy Sweet-Peter Theobalds-Pablo Verdejo-Ashley Ward-Paul Warren-Topo Wresniwiro-Joshua �sberg-Joe Cash-Clare Glass,android-spacecraft-space opera,/wqnLdwVXoBjKibFRR5U3y0aDUhs.jpg,/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg,181808-1895-1894-1893-330459-11-1891-1892-181812-348350-99861-271110-286217-102899-135397-118340-209112-122917-293660-260485-92196 +299536,Avengers: Infinity War,Adventure-Action-Science Fiction,en,As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy his goal is to collect all six Infinity Stones artifacts of unimaginable power and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.,188.593,Marvel Studios,4/25/18,300000000,2052415039,149,Released,An entire universe. Once and for all.,8.255,27635,Robert Downey Jr.-Chris Hemsworth-Mark Ruffalo-Chris Evans-Scarlett Johansson-Benedict Cumberbatch-Tom Holland-Chadwick Boseman-Don Cheadle-Zoe Salda��a-Karen Gillan-Elizabeth Olsen-Paul Bettany-Anthony Mackie-Sebastian Stan-Tom Hiddleston-Idris Elba-Danai Gurira-Peter Dinklage-Benedict Wong-Pom Klementieff-Dave Bautista-Vin Diesel-Bradley Cooper-Gwyneth Paltrow-Benicio del Toro-Josh Brolin-Chris Pratt-Sean Gunn-William Hurt-Letitia Wright-Terry Notary-Tom Vaughan-Lawlor-Carrie Coon-Michael James Shaw-Stan Lee-Winston Duke-Florence Kasumba-Kerry Condon-Monique Ganderton-Jacob Batalon-Tiffany Espensen-Isabella Amara-Ethan Dizon-Ariana Greenblatt-Ameenah Kaplan-Ross Marquand-Michael Anthony Rogers-Stephen McFeely-Aaron Lazar-Robert Pralgo-Olaniyan Thurmon-Blair Jasin-Matthew Zuk-Laura Miller-Kenneth Branagh-Samuel L. Jackson-Cobie Smulders-Harrison Osterfield-Gary Peebles-Marija Abney-Zola Williams-Marie Mouroum-James Siderits-Precious Jenkins-Bobby James,magic-sacrifice-superhero-based on comic-space-battlefield-genocide-magical object-super power-aftercreditsstinger-marvel cinematic universe (mcu)-cosmic,/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg,/mDfJG3LC3Dqb67AZ52x3Z0jU0uB.jpg,1073776-299534-284054-284053-99861-271110-315635-363088-24428-283995-284052-383498-429617-299537-102899-118340-76338-100402-10195-1726-10138 +634649,Spider-Man: No Way Home,Action-Adventure-Science Fiction,en,Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous forcing him to discover what it truly means to be Spider-Man.,215.904,Marvel Studios-Pascal Pictures-Columbia Pictures,12/15/21,200000000,1921847111,148,Released,The Multiverse unleashed.,7.992,18149,Tom Holland-Zendaya-Benedict Cumberbatch-Jacob Batalon-Jon Favreau-Jamie Foxx-Willem Dafoe-Alfred Molina-Benedict Wong-Tony Revolori-Marisa Tomei-Andrew Garfield-Tobey Maguire-Angourie Rice-Arian Moayed-Paula Newsome-Hannibal Buress-Martin Starr-J.B. Smoove-J.K. Simmons-Rhys Ifans-Charlie Cox-Thomas Haden Church-Emily Fong-Mary Rivera-Rudy Eisenzopf-Kathleen Cardoso-Jonathan Sam-Andrew Dunlap-Ben VanderMey-Zany Dunlap-B. Clutch Dunlap-Minnah Dunlap-Gary Weeks-Gregory Konow-Carol Anne Dines-Anisa Nyell Johnson-Willie Burton-Mallory Hoff-Greg Clarkson-Regina Ting Chen-Robert Mitchel Owenby-Glenn Keogh-Paris Benjamin-Jwaundace Candece-Taylor St. Clair-Gabriella Cila-Darnell Appling-Rolando Fernandez-Edward Force-Michael Le-Dean Meminger-Frederick A. Brown-Cristo Fern��ndez-Clay Savage-Tom Hardy-Jake Gyllenhaal-Jay Karales-Gina Aponte-John Barnes-Harry Holland-Dettric Jones-Haroon Khan,new york city-loss of loved one-showdown-secret identity-hero-magic-villain-dangerous-vigilante-portal-sequel-superhero-superhero team-alternate reality-masked vigilante-spider web-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-teenage hero-fight for justice-superhero teamup-returning hero-crossover-teamwork,/5weKu49pzJCt06OPpjvT80efnQj.jpg,/14QbnygCuTO0vl7CAFmPf1fgZfV.jpg,453395-616037-524434-642721-414906-840127-566525-580489-429617-436270-955555-365297-887731-335787-568124-338953-361743-315635-526896-324857-497698 +135397,Jurassic World,Action-Adventure-Science Fiction-Thriller,en,Twenty-two years after the events of Jurassic Park Isla Nublar now features a fully functioning dinosaur theme park Jurassic World as originally envisioned by John Hammond.,104.103,Amblin Entertainment-Universal Pictures,6/12/15,150000000,1671537444,124,Released,The park is open.,6.678,18860,Chris Pratt-Bryce Dallas Howard-Ty Simpkins-Nick Robinson-Vincent D'Onofrio-BD Wong-Omar Sy-Jake Johnson-Irrfan Khan-Judy Greer-Lauren Lapkus-Brian Tee-Katie McGrath-Andy Buckley-Eric Edelstein-Courtney J. Clark-Colby Boothman-Jimmy Fallon-James DuMont-Matt Burke-Anna Talakkottur-Matthew Cardarople-Michael Papajohn-William Gary Smith-Kelly Washington-Isaac Keys-Patrick Crowley-Chad Randall-Gary Weeks-Bill Ogilvie-Allan Tam-Yvonne Angulo-Chloe Perrin-Timothy Eulich-Kevin Foster-Bonnie Wild-Brad Bird-Colin Trevorrow-Justin Lacalamita-Tiffany Forest-Arlene Newman-Tait Fletcher-Jimmy Buffett-Tim Connolly-Johnny Otto-Erika Erica-Brandon Marc Higa-Martin Klebba-Eddie J. Fernandez,dna-tyrannosaurus rex-velociraptor-island-animal attack-primal fear-sequel-disaster-escape-dinosaur-creature-park-amusement park-theme park-genetic engineering-raptor-animal horror,/A0LZHXUzo5C60Oahvt7VxvwuzHw.jpg,/aIGIYJTyOkEVUmEd3z5x6diYsFx.jpg,351286-331-329-99861-330-76341-102899-118340-87101-140607-131631-198663-293660-122917-271110-150540-207703-168259-254128-286217-127585 +420818,The Lion King,Adventure-Drama-Family,en,Simba idolizes his father King Mufasa and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub's arrival. Scar Mufasa's brother���and former heir to the throne���has plans of his own. The battle for Pride Rock is ravaged with betrayal tragedy and drama ultimately resulting in Simba's exile. With help from a curious pair of newfound friends Simba will have to figure out how to grow up and take back what is rightfully his.,131.16,Walt Disney Pictures-Fairview Entertainment,7/12/19,260000000,1663075401,118,Released,The King has Returned.,7.131,9015,Chiwetel Ejiofor-John Oliver-James Earl Jones-John Kani-Alfre Woodard-JD McCrary-Shahadi Wright Joseph-Penny Johnson Jerald-Keegan-Michael Key-Eric Andr��-Florence Kasumba-Seth Rogen-Billy Eichner-Amy Sedaris-Chance the Rapper-Josh McCrary-Donald Glover-Beyonc��-Phil LaMarr-J. Lee,africa-lion-prince-musical-uncle-remake-grief-redemption-king-family-sidekick-live action and animation-father son relationship-live action remake,/dzBtMocZuJbjLOXvrl4zGYigDzh.jpg,/1TUg5pO1VZ4B0Q1amk3OlXvlpXV.jpg,420817-301528-429617-330457-420809-384018-8587-475557-454626-474350-299536-299534-447404-329996-9732-287947-404368-512200-466272-299537-984430 +24428,The Avengers,Science Fiction-Action-Adventure,en,When an unexpected enemy emerges and threatens global safety and security Nick Fury director of the international peacekeeping agency known as S.H.I.E.L.D. finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe a daring recruitment effort begins!,100.8,Marvel Studios,4/25/12,220000000,1518815515,143,Released,Some assembly required.,7.71,29108,Robert Downey Jr.-Chris Evans-Mark Ruffalo-Chris Hemsworth-Scarlett Johansson-Jeremy Renner-Tom Hiddleston-Samuel L. Jackson-Cobie Smulders-Clark Gregg-Stellan Skarsg��rd-Gwyneth Paltrow-Paul Bettany-Alexis Denisof-Tina Benko-Jerzy Skolimowski-Kirill Nikiforov-Jeff Wolfe-M'laah Kaur Singh-Rashmi Rustagi-Powers Boothe-Jenny Agutter-Arthur Darbinyan-Donald Li-Warren Kole-Alicia Sixtos-Jesse Garcia-Maximiliano Hern��ndez-Dieter Riesle-Kenneth Tigar-Walter Perez-Harry Dean Stanton-Josh Cowdery-Ashley Johnson-Katsumi Komatsu-Yumiko Komatsu-Momoko Komatsu-Robert Clohessy-Enver Gjokaj-Fernanda Toker-Andrea Vecchio-Robin Swoboda-Brent McGee-Jamie McShane-Michael Zhang-William-Christopher Stephens-Kelley Robins Hicks-Romy Rosemont-James Eckhouse-Stan Lee-Thomas Roberts-Pat Kiernan-Damion Poitier-Lou Ferrigno-Jillian Morgese-Catherine Anderson-Ricardo Andres-Logan Bennett-Mayank Bhatter-Sharita Bone-Jason Botsford-Mary Kate Campbell-Gene N. Chavez-Layla Cushman-Robert Dean-Rick Dremann-Rod Fielder-Eric Frank-Israel Hall-Carmen Dee Harris-Alexander Christopher Jones-Mike Karban-Demoine Kinney-Andrew Knode-Annette Lawless-Kimberly J. Mahoney-Todd Manes-Jorge Mardel-Michael McMillan-Sean Meehan-Holly Neelie-Caleb Daniel Noal-Jeremy Orr-Nate Paige-Martin Palmer-Maria Perossa-Caleb Pieplow-Alexander Daniel Pimentel-Frank Powers-Jaime Powers-Brent Reichert-Kelly Ruble-Gina Sarno-Robert B. Schneider IV-Jeff Seich-Christina Shaffer-Douglas Slygh-Colin Strause-Robert P. Thitoff-George Thomas-Shane Thompson-Jerry Lee Tucker-Tai Urban-Chris Vaina-Sandra Weston-Seth Zielicke-Alex DeCourville-Andrea-Nichole Olivas-Tina Grimm-Evan Kole-Hank Amos-Joti Nagra,new york city-shield-superhero-based on comic-alien invasion-superhero team-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/RYMX2wcKCBAr24UyPD7xwmjaTn.jpg,/9BBTo63ANSmhC4e6r62OJFuK2GL.jpg,68721-10195-99861-10138-1771-1726-76338-100402-271110-1930-118340-102899-49026-1724-299536-155-284053-284052-315635-283995-19995 +168259,Furious 7,Action-Thriller-Crime,en,Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.,83.236,Original Film-One Race-Universal Pictures,4/1/15,190000000,1515400000,137,Released,Vengeance hits home,7.236,10157,Vin Diesel-Paul Walker-Jason Statham-Michelle Rodriguez-Jordana Brewster-Tyrese Gibson-Ludacris-Dwayne Johnson-Lucas Black-Kurt Russell-Nathalie Emmanuel-Elsa Pataky-Gal Gadot-John Brotherton-Luke Evans-Tony Jaa-Djimon Hounsou-Noel Gugliemi-Ali Fazal-Sung Kang-Ronda Rousey-Miller Kimsey-Charlie Kimsey-Eden Estrella-Gentry White-Iggy Azalea-Jon Lee Brody-Levy Tran-Anna Colwell-Viktor Hernandez-Steve Coulter-Robert Pralgo-Antwan Mills-J.J. Phillips-Jorge Ferragut-Sara Sohn-Benjamin Blankenship-D.J. Hapa-T-Pain-Brian Mahoney-Brittney Alger-Romeo Santos-Jocelin Donahue-Stephanie Langston-Jorge-Luis Pallo-Tego Calderon-Shad Moss-Don Omar-Klement Tinaj-Caleb Walker-Cody Walker-Lateef Crowder-Dennis Keiffer-Tara Macken-John Koyama-Aaron J. Brooks-Caitlin Dechelle,car race-speed-street race-revenge-race-muscle car,/ktofZ9Htrjiy0P6LEowsDaxd3Ri.jpg,/cHkhb5A4gQRK6zs6Pv7zorHs8Nk.jpg,51497-82992-337339-13804-584-9615-9799-99861-254128-135397-384018-91314-262500-207703-98566-378944-260346-177677-385128-102899-198184 +361743,Top Gun: Maverick,Action-Drama,en,After more than thirty years of service as one of the Navy��s top aviators and dodging the advancement in rank that would ground him Pete ���Maverick�� Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.,297.574,Skydance-Don Simpson/Jerry Bruckheimer Films-Paramount,5/24/22,170000000,1488732821,131,Released,Feel the need... The need for speed.,8.273,7187,Tom Cruise-Miles Teller-Jennifer Connelly-Jon Hamm-Glen Powell-Ed Harris-Val Kilmer-Lewis Pullman-Charles Parnell-Bashir Salahuddin-Monica Barbaro-Jay Ellis-Danny Ramirez-Jack Schumacher-Manny Jacinto-Kara Wang-Greg Tarzan Davis-Jake Picking-Raymond Lee-Jean Louisa Kelly-Lyliana Wray-Chelsea Harris-Darnell Kirkwood-Austin Bowerman-Stephanie Andrea Barron-Alec Williams-Rachel Winfree-Peter Mark Kendall-Ian Gary-Bob Stephenson-Landon Gordon-Margaret Strabala-Ryan Heilmann-Shantel Limbo-James Handy-Whylip Lee-Tristan Henry-Jason Robert Boles-Brian Ferguson-Chido Nwokocha-Chaz Ingram-Rachael Markarian-Shannon Kane-Norman Ralph Eliasen-Anthony Edwards-Meg Ryan-Kelly McGillis,fighter pilot-u.s. navy-sequel-nuclear weapons-military,/62HCnUTziyWcpDaBO2i1DX17ljH.jpg,/AaV1YIdWKnjAIAOe8UUKBFm327v.jpg,755566-507086-438148-616037-744-629015-99771-766507-585511-49046-453395-756999-610150-663712-81389-978436-778855-830784-414906-436270-919355 +330457,Frozen II,Family-Animation-Adventure-Comedy-Fantasy,en,Elsa Anna Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.,81.122,Walt Disney Pictures-Walt Disney Animation Studios,11/20/19,150000000,1450000000,103,Released,The past is not what it seems.,7.261,9304,Idina Menzel-Kristen Bell-Josh Gad-Jonathan Groff-Evan Rachel Wood-Sterling K. Brown-Alfred Molina-Rachel Matthews-Jason Ritter-Martha Plimpton-Ciar��n Hinds-Jeremy Sisto-Stephen J. Anderson-Chris Williams-Maia Wilson-Paul Briggs-Hadley Gannaway-Mattea Conforti-Aurora Aksnes-Alan Tudyk-Santino Fontana-Livvy Stubenrauch-Eva Bella-Jackson Stein-Delaney Rose Stein-Halima V. Hudson-Isabella Acres-Stephen Apostolina-Kimberly Bailey-David Boat-June Christopher-Antonio Raul Corbo-David Cowgill-Wendy Cutler-Hudson D'Andrea-Grey DeLisle-Jessica DiCicco-Terri Douglas-Robin Atkin Downes-Nick Fisher-Jackie Gonneau-Franck Gourlat-Daniel Kaz-Phil LaMarr-Arnaud L��onard-Mimi Maynard-Scott Menville-Melanie Minichino-Max Mittelman-Matt Nolan-Capri Oliver-Arthur Ortiz-Paul Pape-Michael Ralph-Akai Robinson-Lynwood Robinson-Maddix Robinson-Kaitlyn Robrock-Violet Grace Schaffer-Pepper Sweeney-Fred Tatasciore-Jean-Alain Velardo-Kari Wahlgren-Matthew Wood,princess-magic-kingdom-winter-queen-castle-musical-sequel-dam-spirit-frozen-personification-mother daughter relationship,/mINJaa34MtknCYl5AjtNJzWj8cD.jpg,/xJWPZIYOEFIjZpBL7SVBGnzRYXp.jpg,109445-512200-181812-475557-546554-420809-420818-420817-454626-496243-508965-508439-495764-301528-458897-326359-429617-530915-466272-38757-359724 +346698,Barbie,Comedy-Adventure-Fantasy,en,Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However when they get a chance to go to the real world they soon discover the joys and perils of living among humans.,441.504,LuckyChap Entertainment-Heyday Films-NB/GG Pictures-Mattel-Warner Bros. Pictures,7/19/23,145000000,1445638421,114,Released,She's everything. He's just Ken.,7.14,7064,Margot Robbie-Ryan Gosling-America Ferrera-Kate McKinnon-Ariana Greenblatt-Simu Liu-Will Ferrell-Michael Cera-Helen Mirren-Issa Rae-Alexandra Shipp-Emma Mackey-Emerald Fennell-Rhea Perlman-Hari Nef-Kingsley Ben-Adir-Ncuti Gatwa-Connor Swindells-Sharon Rooney-Ritu Arya-Ana Kayne-Nicola Coughlan-Dua Lipa-John Cena-Scott Evans-Jamie Demetriou-Andrew Leung-Will Merrick-Zheng Xi Yong-Asim Chaudhry-Ray Fearon-Erica Ford-Hannah Khalique-Brown-Mette Towley-Marisa Abela-Lucy Boynton-Rob Brydon-Tom Stourton-Chris Taylor-David Mumeni-Olivia Brody-Isla Ashworth-Eire Farrell-Daisy Duczmal-Isabella Nightingale Mercado-Genvieve Toussaint-Manuela Mora-Aida Sexton-Ann Roth-Millie-Rose Crossley-Anvita Nehru-Kayla-Mai Alvares-Luke Mullen-Patrick Luwis-Mac Brandt-Paul Jurewicz-Oraldo Austin-Benjamin Arthur-Carlos Jacott-Adam Ray-George Basil-Ptolemy Slocum-Deb Hiett-James Leon-Oliver Vaquer-Tony Noto-Christopher T. Wood-Annie Mumolo-Elise Gallup-McKenna Roberts-Brylee Hsu-Sasha Milstein-Lauren Holt-Sterling Jones-Ryan Piers Williams-Jamaal Lewis-Kathryn Akin-Grace Jabbari-Ira Mandela Siobhan-Lisa Spencer-Naomi Weijand-Tom Clark-Ireanne Abenoja-Davide Albonetti-Charlotte Anderson-Michael Anderson-Rico Bakker-James Bamford-William John Banks-Callum Bell-Adam Blaug-Mason Boyce-Taylor Bradshaw-Alex Brown-Miekaile Browne-Lewis Calcutt-Nikkita Chadha-Oliver Chapman-Megan Charles-Callum Clack-Danny Coburn-Kat Collings-Adam Crossley-Sia Dauda-Gustave Die-Grace Durkin-Joelle Dyson-Lewis Easter-Onyemachi Ejimofor-Cameron Everitt-Luke Field-Wright-Sasha Flesch-Adam Fogarty-Mikey French-Anna-Kay Gayle-Charlie Goddard-Marlie Goddard-Ellis Harman-Yasmin Harrison-Josh Hawkins-James Healy-Tim Hodges-Mira Jebari-Beccy Jones-Thomas Kalek-Lily Laight-Maiya Leeke-Cristian Liberti-Prodromos Marneros-Nahum McLean-Jordan Melchor-Ramzan Miah-Andy Monaghan-Florivaldo Mossi-Hannah Nazareth-Grant Neal-Freja Nicole-Shaun Niles-Ella Nonini-Jack William Parry-Josie Pocock-Barnaby Quarendon-Redmand Rance-Zara Richards-Liam Riddick-Alana Rixon-Adam Paul Robertson-Kingdom Sibanda-Sebastian Skov-Aaron J. Smith-Joshua Smith-Lucia-Rose Sokolowski-Janine Somcio-Callum Sterling-Todd Talbot-Charles Tatman-Grant Thresh-Connor Tidman-Wahchi Vong-Jerry Wan-Sasha Wareham-Stan West-Oliver Wheeler-Josh Wild-Joe Wolstenholme-Richard Womersley-Ashley Young-Alex Sturman,feminism-satire-patriarchy-based on toy-female protagonist-doll-fantasy world-motherhood-existentialism-woman director-mother daughter relationship-gender discrimination-barbie-secret world,/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg,/nHf61UzkfFno5X1ofIhugCPus2R.jpg,617932-615656-298618-872585-16418-1061181-13002-828898-1034470-667538-71915-1083862-34564-1160089-1160053-335977-1076487-385687-823346-1160057-37353 +99861,Avengers: Age of Ultron,Action-Adventure-Science Fiction,en,When Tony Stark tries to jumpstart a dormant peacekeeping program things go awry and Earth��s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges it is up to The Avengers to stop him from enacting his terrible plans and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.,87.546,Marvel Studios,4/22/15,365000000,1405403694,141,Released,A new age has come.,7.277,21708,Robert Downey Jr.-Chris Hemsworth-Mark Ruffalo-Chris Evans-Scarlett Johansson-Jeremy Renner-James Spader-Paul Bettany-Elizabeth Olsen-Aaron Taylor-Johnson-Samuel L. Jackson-Don Cheadle-Cobie Smulders-Anthony Mackie-Hayley Atwell-Idris Elba-Linda Cardellini-Stellan Skarsg��rd-Claudia Kim-Thomas Kretschmann-Andy Serkis-Julie Delpy-Stan Lee-Henry Goodman-Chris Luca-Brian Schaeffer-Dominique Provost-Chalkley-Isaac Andrews-Gareth Kieran Jones-Chan Woo Lim-Minhee Yeo-Bentley Kalu-Julian Bleach-Christopher Beasley-Vuyo Dabula-Nondumiso Tembe-Kabelo Thai-Lele Ledwaba-Mandla Gaduka-Harriet Manamela-Beulah Hashe-Musca Kumalo-Mathapelo September-Antony Acheampong-Chioma Anyanwu-Ben Sakamoto-Imogen Poynton-Isabella Poynton-Ingvild Deila-Sunny Yeo-Namju Go-Mina Kweon-Earl T. Kim-Arthur Lee-Verity Hewlett-Michael Matovski-Alma Noce-Riccardo Richetta-Constanza Ruff-Monty Mclaren-Clark-Julia Krynke-Tony Christian-Ian Kay-Barry Aird-Aaron Himelstein-Kerry Condon-Jaiden Stafford-Josh Brolin-Robert J. Fraser-Lou Ferrigno-Zakk Pierce,artificial intelligence (a.i.)-sequel-superhero-based on comic-superhero team-duringcreditsstinger-marvel cinematic universe (mcu)-fictitious country-evil robot,/4ssDuvEDkSArWEdyBl2X5EHvYKU.jpg,/6YwkGolwdOMNpbTOmLjoehlVWs5.jpg,271110-100402-24428-102899-76338-10195-10138-68721-1771-118340-1726-284052-283995-315635-299536-284053-284054-1724-299534-363088-127585 +502356,The Super Mario Bros. Movie,Animation-Family-Adventure-Fantasy-Comedy,en,While working underground to fix a water main Brooklyn plumbers���and brothers���Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated Mario embarks on an epic quest to find Luigi.,244.799,Universal Pictures-Illumination-Nintendo,4/5/23,100000000,1362000000,93,Released,Not all heroes wear capes. Some wear overalls.,7.685,8217,Chris Pratt-Anya Taylor-Joy-Charlie Day-Jack Black-Keegan-Michael Key-Seth Rogen-Fred Armisen-Sebastian Maniscalco-Charles Martinet-Kevin Michael Richardson-Khary Payton-Rino Romano-John DiMaggio-Jessica DiCicco-Eric Bauza-Juliet Jelenic-Scott Menville-Carlos Alazraqui-Jason Broad-Ashly Burch-Rachel Butera-Cathy Cavadini-Will Collyer-Django Craig-Willow Geer-Aaron Hendry-Andy Hirsch-Barbara Harris-Phil LaMarr-Jeremy Maxwell-Daniel Mora-Eric Osmond-Noreen Reardon-Lee Shorten-Cree Summer-Nisa Ward-Nora Wyman-Ed Skudder,gorilla-plumber-anthropomorphism-magic mushroom-based on video game-toad-aftercreditsstinger-duringcreditsstinger-damsel in distress-piano-brother brother relationship-illumination-evil king-clich��,/qNBAXBIQlnOThrVvA6mA2B5ggV6.jpg,/9n2tJBplPbgR2ca05hS5CKXwP2c.jpg,603692-385687-447365-640146-569094-76600-713704-594767-493529-346698-758323-976573-315162-667538-964980-677179-447277-934433-298618-868759-872585 +284054,Black Panther,Action-Adventure-Science Fiction,en,King T'Challa returns home to the reclusive technologically advanced African nation of Wakanda to serve as his country's new leader. However T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings T'Challa assumes the Black Panther mantle to join with ex-girlfriend Nakia the queen-mother his princess-kid sister members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent to prevent Wakanda from being dragged into a world war.,57.153,Marvel Studios,2/13/18,200000000,1349926083,135,Released,Long live the king.,7.391,20780,Chadwick Boseman-Michael B. Jordan-Lupita Nyong'o-Danai Gurira-Martin Freeman-Daniel Kaluuya-Letitia Wright-Winston Duke-Sterling K. Brown-Florence Kasumba-John Kani-Angela Bassett-Forest Whitaker-Andy Serkis-David S. Lee-Nabiyah Be-Isaach De Bankol��-Connie Chiume-Dorothy Steel-Danny Sapani-Sydelle Noel-Marija Abney-Zola Williams-Janeshia Adams-Ginyard-Maria Hippolyte-Marie Mouroum-J��nel Stevens-Sope Aluko-Stan Lee-Atandwa Kani-Ashton Tyler-Denzel Whitaker-Shaunette Ren��e Wilson-Christine Hollingsworth-Lucy Hockings-Bambadjan Bamba-Roland Kilumbu-Jermaine Holt-Dominique Elijah Smith-Jalil Jay Lynch-Vaughndio Forbes-Sasha Morfaw-Alexis Louder-Francesca Faridany-Mark Ashworth-Seth Carr-Jeremy Sample-Chad Crumley-Alexis Rhee-Danny Chung-Liz Elkins Newcomer-Tony Sears-Alex C. Riley Hughes-Clifford Gay-Shamel Heath-De'Jon Watts-Alex Hibbert-Tristan Timmons-Tyler Timmons-Abraham Clinkscales-Thabo Moropane-Zani Mogodi-Zenzi Williams-Trevor Noah-T. Love-Sebastian Stan,africa-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/uxzzxijgPIY7slzFvMotPv8wjKA.jpg,/b6ZJZHUdMEFECvGiDpJjlfUWela.jpg,284053-299536-363088-315635-271110-283995-99861-284052-102899-76338-118340-100402-299537-383498-10195-1771-10138-24428-1726-299534-68721 +12445,Harry Potter and the Deathly Hallows: Part 2,Fantasy-Adventure,en,Harry Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.,131.341,Warner Bros. Pictures-Heyday Films,7/12/11,125000000,1341511219,130,Released,It all ends.,8.1,19674,Daniel Radcliffe-Emma Watson-Rupert Grint-Ralph Fiennes-Alan Rickman-Michael Gambon-Warwick Davis-Helena Bonham Carter-Ciar��n Hinds-Matthew Lewis-John Hurt-Evanna Lynch-Robbie Coltrane-Kelly Macdonald-Tom Felton-Helen McCrory-Jason Isaacs-Maggie Smith-David Thewlis-Gary Oldman-David Bradley-Julie Walters-Gemma Jones-Dave Legeno-Miriam Margolyes-Nick Moran-James Phelps-Oliver Phelps-Cl��mence Po��sy-Natalia Tena-Mark Williams-Bonnie Wright-Domhnall Gleeson-Graham Duff-Anthony Allgood-Rusty Goffe-Jon Key-Ian Peck-Benn Northover-Hebe Beardsall-Devon Murray-Jessie Cave-Afshan Azad-Isabella Laughland-Anna Shaffer-Georgina Leonidas-Freddie Stroma-Alfred Enoch-Katie Leung-William Melling-Sian Grace Phillips-Ralph Ineson-Suzie Toase-Jim Broadbent-Scarlett Hefner-Josh Herdman-Louis Cordice-Amber Evans-Ruby Evans-George Harris-Chris Rankin-Guy Henry-Phil Wright-Gary Sayer-Tony Adkins-Penelope McGhie-Emma Thompson-Ellie Darcey-Alden-Ariella Paradise-Benedict Clarke-Leslie Phillips-Alfie McIlwain-Rohan Gotobed-Geraldine Somerville-Adrian Rawlins-Toby Papworth-Timothy Spall-Peter G. Reed-Judith Sharp-Emil Hostina-Bob Yves Van Hellenberg Hubar-Granville Saxton-Tony Kirwood-Ashley McGuire-Arthur Bowen-Daphne de Beistegui-Will Dunn-Jade Gordon-Bertie Gilbert-Helena Barlow-Ryan Turner-Paul Bailey-Sean Biggerstaff-Vinnie Clarke-David Heyman-Charlie Hobbs-Luke Newberry-Keijo J. Salmela-Pauline Stone-Spencer Wilding-Harrison Davis-Annabelle Davis,witch-dying and death-saving the world-self sacrifice-magic-school of witchcraft-sorcerer-school-battle-wizard-teenage hero-christmas-based on young adult novel-good versus evil,/c54HpQmuwXjHq2C9wmoACjxoom3.jpg,/n5A7brJCjejceZmHyujwUTVgQNC.jpg,12444-674-673-675-767-672-671-259316-1865-10681-165-49538-12-70160-11-585-1771-120-10195-2501-101299 +181808,Star Wars: The Last Jedi,Adventure-Action-Science Fiction,en,Rey develops her newly discovered abilities with the guidance of Luke Skywalker who is unsettled by the strength of her powers. Meanwhile the Resistance prepares to do battle with the First Order.,56.523,Lucasfilm Ltd.,12/13/17,200000000,1332698830,152,Released,Darkness rises... and light to meet it,6.818,14437,Mark Hamill-Carrie Fisher-Adam Driver-Daisy Ridley-John Boyega-Oscar Isaac-Andy Serkis-Lupita Nyong'o-Domhnall Gleeson-Anthony Daniels-Gwendoline Christie-Kelly Marie Tran-Laura Dern-Benicio del Toro-Frank Oz-Billie Lourd-Joonas Suotamo-Amanda Lawrence-Jimmy Vee-Brian Herring-Dave Chapman-Justin Theroux-Tim Rose-Tom Kane-Adrian Edmondson-Mark Lewis Jones-Hermione Corfield-Veronica Ngo-Noah Segan-Jamie Christopher-Paul Kasey-Michaela Coel-Priyanga Burford-Navin Chowdhry-Crystal Clarke-Hugh Skinner-Shauna Macdonald-Kate Dickie-Ralph Ineson-Michael Jibson-Luke Neal-Andy Nyman-Lily Cole-Warwick Davis-Kiran Shah-Joseph Gordon-Levitt-Mike Quinn-Gareth Edwards-Gary Barlow-Peter Mayhew-Edgar Wright-Joe Cornish-Griffin Hamill-Nathan Hamill-Chelsea Hamill-Yang Liang-David M. Santana-Andrew Jack-Jonathan Harden-Danny Euston-Aki Omoshaybi-Togo Igawa-Tim Steed-Simon Lowe-Joe Van Moyland-Darren Morfitt-Gerard Monaco-Patrick O'Kane-Paul Bazely-Orion Lee-Amira Ghazalla-Akshay Kumar-Temirlan Blaev-Josiah Oniha-Sara Heller-Matthew Sharp-Jack Greenlees-Danny Sapani-Kevin Layne-Ben Morris-Andrew Abbott-Chris Adams-Samantha Alleyne-Martin Bratanov-Glen Carroll-Cavin Cornwall-James Cox-Steve Doyle-Josh Dyer-Karl Farrer-James Filanowski-David R. Grant-��mar Gu��j�_nsson-Craig Izzard-Christopher Jaciow-Tobias James-Samuels-Dan Lam-Antonio Lujak-Josh Methven-Sandeep Mohan-Ross Moneypenny-Florian Robin-Scott Tanner-Stephanie Silva-Clem So-Leo Thompson-Andy Wareham-William Willoughby-Oscar Wright-Karanja Yorke,bunker-space battle-defeat-failure-sequel-space opera-military operation,/kOVEVeg59E0wsnXmF9nrh6OmWII.jpg,/epVMXf10WqFkONzKR8V76Ypj5Y3.jpg,140607-1894-181812-1893-1895-330459-11-348350-1891-1892-284053-315635-12180-283995-141052-260485-92196-920930-924387-284054-1035038 +351286,Jurassic World: Fallen Kingdom,Action-Adventure-Science Fiction-Thriller,en,Three years after Jurassic World was destroyed Isla Nublar now sits abandoned. When the island's dormant volcano begins roaring to life Owen and Claire mount a campaign to rescue the remaining dinosaurs from this extinction-level event.,81.072,Amblin Entertainment-Universal Pictures,6/6/18,170000000,1310466296,129,Released,The park is gone.,6.549,11219,Chris Pratt-Bryce Dallas Howard-Rafe Spall-Justice Smith-Daniella Pineda-James Cromwell-Toby Jones-Ted Levine-Jeff Goldblum-BD Wong-Geraldine Chaplin-Isabella Sermon-Robert Emms-Peter Jason-Kevin Layne-John Schwab-Sam Redford-Charlie Rawes-Patrick Crowley-Alex Dower-Honey Holmes-Neil Bishop-Philippa Thomas-Ronan Summers-Cory Peterson-Jeremy Gilbert-Victor Gardener-Daryl Kwan-Eric Kofi Abrefa-Ben Peel-Mark Griffin-Paul Sockett-Doug Robson-Gil Kolirin-Nathan Florence-Bryan Phillips-Mitchell L. Johnson-Ian Copley-Johnson-Michael Papajohn-Daniel Stisen,tyrannosaurus rex-volcano-rescue mission-sequel-wild animal-prehistoric creature-dinosaur-genetic engineering-aftercreditsstinger-monster island,/c9XxwwhPHdaImA2f1WEfEsbhaFB.jpg,/3s9O5af2xWKWR5JzP2iJZpZeQQg.jpg,135397-331-330-383498-363088-329-348350-260513-299536-427641-284054-333339-353081-284053-345940-447200-338970-335983-507086-268896-141052 +109445,Frozen,Animation-Family-Adventure-Fantasy,en,Young princess Anna of Arendelle dreams about finding true love at her sister Elsa��s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff his reindeer Sven and snowman Olaf. On an adventure where she will find out what friendship courage family and true love really means.,97.537,Walt Disney Pictures-Walt Disney Animation Studios,11/20/13,150000000,1274219009,102,Released,Only the act of true love will thaw a frozen heart.,7.25,14984,Kristen Bell-Idina Menzel-Jonathan Groff-Frank Welker-Josh Gad-Santino Fontana-Alan Tudyk-Ciar��n Hinds-Chris Williams-Stephen J. Anderson-Maia Wilson-Edie McClurg-Robert Pine-Maurice LaMarche-Spencer Lacey Ganus-Livvy Stubenrauch-Eva Bella-Jesse Corti-Jeffrey Marcus-Tucker Gilmore-Ava Acres-Stephen Apostolina-Annaleigh Ashford-Kirk Baily-Jenica Bergere-David Boat-Paul Briggs-Tyree Brown-Woody Buck-June Christopher-Lewis Cleale-Wendy Cutler-Terri Douglas-Eddie Frierson-Jean Gilpin-Jackie Gonneau-Nicholas Guest-Bridget Hoffman-Nick Jameson-Daniel Kaz-John Lavelle-Jennifer Lee-Patricia Lentz-Annie Lopez-Katie Lowes-Mona Marshall-Dara McGarry-Scott Menville-Adam Overett-Paul Pape-Courtney Peldon-Jennifer Perry-Raymond S. Persi-Jean-Michel Richaud-Lynwood Robinson-Carter Sand-Jadon Sand-Katie Silverman-Pepper Sweeney-Fred Tatasciore-Jack Whitehall,queen-magic-musical-cartoon-princess-betrayal-snowman-reindeer-curse-snow-troll-based on children's book-mountain climbing-aftercreditsstinger-frozen-woman director-sister sister relationship-magic land,/kgwjIb2JDHRhNk13lmSxiClFjVk.jpg,/9WHM084AoskcHCObAy4QnJg01eM.jpg,38757-62177-150540-12-808-102651-177572-2062-14160-9806-425-269149-585-93456-101299-8587-62211-10020-862-82702-20352 +321612,Beauty and the Beast,Family-Fantasy-Romance,en,A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.,59.589,Walt Disney Pictures-Mandeville Films,3/16/17,160000000,1266115964,129,Released,Be our guest.,6.968,15038,Emma Watson-Dan Stevens-Luke Evans-Josh Gad-Kevin Kline-Hattie Morahan-Haydn Gwynne-Gerard Horan-Ray Fearon-Ewan McGregor-Ian McKellen-Emma Thompson-Nathan Mack-Audra McDonald-Stanley Tucci-Gugu Mbatha-Raw-Clive Rowe-Thomas Padden-Rita Davies-D.J. Bailey-Adrian Schiller-Harriet Jones-Adam Mitchell-Tom Turner-Michael Jibson-Zoe Rainey-Daisy Duczmal-Jolyon Coy-Jimmy Johnston-Dean Street-Alexis Loizon-Sophie Reid-Rafa�lle Cohen-Carla Nella-Obioma Ugoala-Lynne Wilmot-Jane Fowler-Alison Harding-Chris Andrew Mellon-Jemma Alexander-Sandy Strallen-Dale Branston-Daniel Ioannou-Peter Challis-Wendy Baldock-Norma Atallah-Leo Andrew-Steven Butler-Sharon Gomez-Jacqui Jameson-Vivien Parry-Simone Sault-Beth Willetts-Mandy Montanez-Tom Oakley-William Bozier-Jak Allen-Anderson-Phil Grannel-Freddie August-Nicola Keen-Ebony Molina-Alison Jenkins-Ellen O'Grady-Dawn Buckland-Rebecca Mckinnis-Jody Hall-Ben Fox-Nathan Vaughan Harris-Tim Stanley-Ben Clare-Marina Abdeen-Danielle Acors-Hayley Ainsley-Rhianne Alleyn-Gabby Antrobus-Sophie Atkins-Koko Basigara-Holly Bluett-Daisy Boyles-Ava Brennan-Sophia Brown-Sophie Carmen-Jones-Cassie Clare-Tanya Cumberland-Natalie Davis-Paige Drury-Lawrence-Stephanie Elstob-Cordelia Farnworth-Cj Field-Lily Frazer-Lucy Alexa Gilbert-Helen Gulstan-Selina Hamilton-Leah Hill-Abigayle Honeywill-Chelsea Inez-Blythe Jandoo-Shireen Jathoonia-Billie Kay-Piper-Hannah Kenna-Thomas-Ella Kora-Jennifer Leung-Emily Loumba-Cassie Macmillian-Fiona McDonald-Samira Mighty-Sonoya Mizuno-Anna Momcilovic-Nicola Mooi-Nicole O'Neill-Abiona Omonua-Jazz Peters-Courtney Pruce-Kayla Radam-Katie Singh-Lucy St Louis-Ruth Steele-Jasmine Takacs-Naomi Weijand-Leah West-Skye Lucia Degruttola-Timia Julien-Box-Adelaide Morgan-Gemma Fray-Lara Decaro-Max Brophy-Samuel Brown-Daniel Daszek-Green-Freddie Hunter-Joey Brown-Tom Burgering-Nate Leung-Kai Gordon-Oscar Francisco-Harry Marcus-Johanna Smitz,france-magic-fairy tale-transformation-cartoon-castle-musical-remake-curse-creature-18th century-beast-live action and animation-live action remake,/hKegSKIDep2ewJWPUQD7u0KqFIp.jpg,/m3tdSyl11fhgXPDSEt3aBctTqGP.jpg,150689-259316-10020-102651-109445-269149-297762-150540-263115-283366-131631-283995-277834-8966-672-118-12445-12155-313369-675-12444 +260513,Incredibles 2,Action-Adventure-Animation-Family,en,Elastigirl springs into action to save the day while Mr. Incredible faces his greatest challenge yet ��� taking care of the problems of his three children.,61.45,Walt Disney Pictures-Pixar,6/14/18,200000000,1242805359,118,Released,Back to work.,7.491,11599,Craig T. Nelson-Holly Hunter-Sarah Vowell-Huck Milner-Samuel L. Jackson-Bob Odenkirk-Jonathan Banks-Catherine Keener-Eli Fucile-Nicholas Bird-Bill Wise-Brad Bird-Michael Bird-Sophia Bush-Phil LaMarr-Paul Eiding-Isabella Rossellini-John Ratzenberger-Barry Bostwick-Adam Rodr�_guez-Jere Burns-Kimberly Adair Clark-Usher-Adam Gates-Michael B. Johnson,married couple-cartoon-sequel-superhero-parenting-family-super power,/9lFKBtaVIhP7E2Pk0IY1CwTKTMZ.jpg,/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg,9806-363088-383498-284054-404368-12-351286-299536-863-348350-354912-301528-324857-862-10193-2062-127380-62211-585-260514-150540 +337339,The Fate of the Furious,Action-Crime-Thriller,en,When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him the crew face trials that will test them as never before.,111.317,Original Film-One Race-Universal Pictures,4/12/17,250000000,1236005118,136,Released,Family no more.,6.892,9541,Vin Diesel-Jason Statham-Dwayne Johnson-Michelle Rodriguez-Tyrese Gibson-Ludacris-Charlize Theron-Kurt Russell-Nathalie Emmanuel-Luke Evans-Elsa Pataky-Kristofer Hivju-Scott Eastwood-Corey Maher-Tego Calderon-Don Omar-Patrick St. Esprit-Eden Estrella-Janmarco Santiago-Oren Hawxhurst-Celestino Cornielle-Olek Krupa-Alexander Babara-Andre Pushkin-Roberts Jekabsons-Nick Gracer-Gary Weeks-Friday Chamberlain-Joe Fishel-Michael W. Broomer-Sam Hadid-Matthew Cornwell-Jason Rhymer-Jeremy Anderson-Peter Hansen-Todd Cole-Jordan Baumer-Scott Proctor-Carrie Lee Consolino-Madalyn Defler-Taylor Donaldson-Isabel Downing-Anna Duvall-Jaci Grace Edwards-Reese Edwards-Caylin Ingram-Caroline Kimmel-Katherine Kimmel-Jordan Price-Anna MacKenzie Rogers-Marina Lyn Serra-D66-James Ayoub-Carlos De La Hoz-Alejandro Bosch-Lisandra Delgado-Santiago Solis Chavez-Joyvan Guevara-Brenda Nu��ez L�_pez-Anita Farmer Bergman-Karin Boesler-Apollo GT-Yassie Hawkes-Myrom Kingery-Gary Lavard-Helen Mirren-Pauline Nowakowski-Charles Poole-Oleg Prudius-William Cowboy Reed-Mark Salas-Ramona Schwalbach-Jon Komp Shin-Doug Stroup-Branislav R. Tataloviۈ-Alan Tuskes-Zachary Vazquez-Gary Lee Vincent-Megan Marie Wilson-Yuliya Zelenskaya-�_zcan �_zdemir-Zac Henry-Tait Fletcher-Scott Hunter-Tyrone C. Wiggins-Mya Levels,new york city-submarine-sequel-street race-betrayal-rescue mission-criminal mastermind-mysterious woman,/dImWM7GJqryWJO9LHa3XQ8DD5NH.jpg,/jzdnhRhG0dsuYorwvSqPqqnM1cV.jpg,168259-51497-13804-82992-9615-584-9799-384018-283995-166426-293167-339846-263115-335988-703363-385128-324552-297762-315635-271110-282035 +68721,Iron Man 3,Action-Adventure-Science Fiction,en,When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin he starts an odyssey of rebuilding and retribution.,52.653,Marvel Studios,4/18/13,200000000,1215577205,130,Released,Unleash the power behind the armor.,6.927,20631,Robert Downey Jr.-Gwyneth Paltrow-Don Cheadle-Guy Pearce-Rebecca Hall-Stephanie Szostak-James Badge Dale-William Sadler-Miguel Ferrer-Jon Favreau-Ben Kingsley-Dale Dickey-Ty Simpkins-Paul Bettany-Wang Xueqi-Shaun Toub-Matthew Sterling Nye-Pat Kiernan-Josh Elliott-Megan Henderson-Thomas Roberts-Bill Maher-Joan Rivers-George Kotsiopoulos-Bronte D'Esposito-Noah Visconti-Ashley Hamilton-Brooke Jayne Taylor-Kim Dean-Glenn Foster-Anthony Reynolds-Kendrick Cross-Tom Clark-Brian Schaeffer-John Eddins-Spencer Garrett-Rockey Dickey Jr.-Drew Michael Hershner-Sarah Burkhardt-Jan Broberg-Andrew Lauer-Nate Bynum-Andrew Lander-Tom Virtue-Roy McCrerey-Serdar Kalsin-Demetrois Hodges-Bobby Tisdale-Yvonne Zima-Stan Lee-Adam Pally-James Rackley-Cullen Moss-Jake Dewitt-Rebecca Mader-Kevin Arnold-Juan C. Bofill-David Anthony Buglione-Adam Lytle-Paul Andrew O'Connor-Phil Ortiz-Gwendalyn Barker-Steve Wilder-Luciana Faulhaber-Kary Musa-Mike Massa-Mark Kubr-Si-Fu Eric Oram-Naomi Parshin-Aurelia Riley-Johanna Yunda-Wesley Thompson-Jenna Ortega-T. C. Anyachonkeya-Chad Kurtz-Cal Johnson-Corey Hawkins-Linden Ashby-Sarah Farooqui-Sala Baker-Kial Butler-Nick Brandon-Dan Brown-Fernando Chien-Ilram Choi-Brycen Counts-Kiante Elam-Dane Farwell-Mark Fichera-Colin Follenweider-Aja Frary-Mark Ginther-Adrian Gonzalez-Dennis Keiffer-Samuel Le-Tara Macken-William Morts-Jade Quon-J. C. Robaina-Markos Rounthwaite-Philip J. Silvera-Brian Simpson-Mark Aaron Wagner-Chris Gethard-Nick W. Nicholson-Bridger Zadina-Mark Ruffalo-Johnny Otto-Vince Offer,california-war on terror-tennessee-malibu-superhero-based on comic-billionaire-aftercreditsstinger-marvel cinematic universe (mcu)-christmas-america,/qhPtAc1TKbMPqNvcdXSOn9Bn7hZ.jpg,/aFTYFqrWp4RS46Twm87l5e0ItYb.jpg,10138-1726-24428-1771-10195-76338-100402-99861-1724-271110-102899-1930-49521-118340-49026-283995-49051-284052-49538-37724-315635 +211672,Minions,Family-Animation-Adventure-Comedy,en,Minions Stuart Kevin and Bob are recruited by Scarlet Overkill a super-villain who alongside her inventor husband Herb hatches a plot to take over the world.,31.314,Illumination-Universal Pictures,6/17/15,74000000,1156730962,91,Released,"Before Gru, they had a history of bad bosses",6.393,9706,Sandra Bullock-Jon Hamm-Michael Keaton-Allison Janney-Steve Coogan-Jennifer Saunders-Geoffrey Rush-Steve Carell-Pierre Coffin-Katy Mixon-Michael Beattie-Hiroyuki Sanada-Dave Rosenbaum-Alex Dowding-Paul Thornley-Kyle Balda-Ava Acres-Sherry Lynn-Mickie McGowan-Carlos Alazraqui-Lori Alan-Daniel Barker-Bob Bergen-Melanie Bond-Jim Cummings-John Cygan-Brian T. Delaney-Bill Farmer-Keith Ferguson-Jess Harnell-Eve Karpf-John Kassir-Lewis Macleod-Danny Mann-Mona Marshall-Gary Martin-Laraine Newman-Andy Nyman-Alexander Polinsky-Jan Rabson-Christopher Ragland-Mindy Sterling-Tara Strong-Jim Ward-Colette Whitaker-James Daniel Wilson,assistant-aftercreditsstinger-duringcreditsstinger-evil mastermind-minions,/vlOgaxUiMOA8sPDG9n3VhQabnEi.jpg,/c7xTZ9EA6GpH72xJC5s0x0KKR1a.jpg,93456-20352-324852-150540-177572-109445-135397-425-269149-270946-62211-159824-950-953-8355-10527-131631-257344-328111-57800-38757 +271110,Captain America: Civil War,Adventure-Action-Science Fiction,en,Following the events of Age of Ultron the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers causing two factions to side with Iron Man or Captain America which causes an epic battle between former allies.,79.957,Marvel Studios,4/27/16,250000000,1153337496,147,Released,United we stand. Divided we fall.,7.443,21401,Chris Evans-Robert Downey Jr.-Scarlett Johansson-Sebastian Stan-Chadwick Boseman-Daniel Br�_hl-Elizabeth Olsen-Paul Bettany-Don Cheadle-Anthony Mackie-Tom Holland-Jeremy Renner-Paul Rudd-Emily VanCamp-Martin Freeman-William Hurt-John Kani-Marisa Tomei-Frank Grillo-John Slattery-Hope Davis-Alfre Woodard-Michael A. Cook-Laughton Parchment-Jackson Spidell-Yi Long-Heidi Moneymaker-Aaron Toney-Cale Schultz-Ann Russo-Gene Farber-Florence Kasumba-Cornell John-Sven H�_nig-Joshua Peck-Brent McGee-Be Satrazemis-Blair Jasin-Oliver Bigalke-Rafael Banasik-David de Vries-Katie Amess-Austin Sanders-Brett Gentile-John Curran-Matthew Anderson-Andrew Botchwey-Chase Bradfield-Ernest Charles-Hendricks Coates-Ethan Condon-Shen Dynes-Nathaniel Ellis-Jariah Ferguson-Evan Ffrench-Justin Freeman-Ralphael Grand'Pierre-Julian Grimes-Aaron Hayes-Austin Hooper-Amiri Jones-Myles Joseph-Stephen Lewis-Jacob Ludwick-D'Mahrei McRae-Ashwin Mudaliar-Eli Ollinger-Parker Pape-Daniel Parada-Jonah Ruffin-Darryl Sampson-Cameron Sardone-Stanley Sellers-Miles Selles-Jacob Sung-Caden Wilkinson-Jin Shijia-Jessica Walther-Gabory-Beniamino Brogi-Silvina Buchbauer-Henry Amadi-Ugochukwu Ani-Michael Anthony Rogers-Damion Poitier-Umar Khan-David E. Brown-Guy Fernandez-Jim Rash-Sophia Russo-Stan Lee-Amelia Morck-Kerry Condon-Julianna Guill-Surely Alvelo-Brian Schaeffer-Kevin LaRosa Jr.-Al Cerullo-Fr��d��ric North-Joe Russo-Ray Sahetapy-Chris Jai Alex-Scott Hunter-Kimberly Hester Huffstetler-Lucie Carroll,civil war-sequel-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-united states,/rAGiXaUfPzY7CDEyNKUofk3Kw2e.jpg,/wdwcOBMkt3zmPQuEMxB3FUtMio2.jpg,99861-100402-102899-284052-76338-1771-315635-283995-118340-24428-10195-1726-284053-10138-68721-293660-209112-299536-284054-246655-363088 +297802,Aquaman,Action-Adventure-Fantasy,en,Once home to the most advanced civilization on Earth Atlantis is now an underwater kingdom ruled by the power-hungry King Orm. With a vast army at his disposal Orm plans to conquer the remaining oceanic people and then the surface world. Standing in his way is Arthur Curry Orm's half-human half-Atlantean brother and true heir to the throne.,88.071,Warner Bros. Pictures-The Safran Company-DC Films,12/7/18,160000000,1148528393,143,Released,Home Is Calling,6.898,12470,Jason Momoa-Amber Heard-Willem Dafoe-Patrick Wilson-Nicole Kidman-Dolph Lundgren-Yahya Abdul-Mateen II-Temuera Morrison-Ludi Lin-Michael Beach-Randall Park-Graham McTavish-Leigh Whannell-Tainui Kirkwood-Tamor Kirkwood-Denzel Quirke-Kaan Guldur-Otis Dhanji-Kekoa Kekumano-Julie Andrews-John Rhys-Davies-Djimon Hounsou-Andrew Crawford-Sophia Forrest-Natalia Safran-Micah Ohlman-Jack Andrew-Frankie Creagh-Leslie-Sophia Emberson-Bain-Ilya Melnikoff-Hank Amos-Kyryl Koltsov-Patrick Cox-Luke Owen-Robert Longstreet-Devika Parikh-Sonny Le-Jon Fabian-Mabel Tamone-Rita Dinardo-Anthony Standish-Nicolette Bianca-Victor Leto-Vincent B. Gorce-Gabriella Petkova-Oriana Lacono-Pearl Grantham-Noa Tsuchiya-Alice Lanesbury-Nicolas Bosc-Joshua Levinson-Garreth Hadfield,hero-atlantis-half-brother-superhero-based on comic-royalty-shark-duringcreditsstinger-dc extended universe (dceu),/zdw7Wf97vsQ0YnGomxDqfcEdUjX.jpg,/9QusGjxcYvfPD1THg6oW3RLeNn7.jpg,424783-335983-287947-324857-363088-299537-338952-284054-383498-428078-404368-141052-299536-405774-297762-399579-299534-260513-375588-424694-450465 +429617,Spider-Man: Far From Home,Action-Adventure-Science Fiction,en,Peter Parker and his friends go on a summer trip to Europe. However they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.,99.709,Marvel Studios-Pascal Pictures,6/28/19,160000000,1131927996,129,Released,It��s time to step up.,7.5,13812,Tom Holland-Samuel L. Jackson-Jake Gyllenhaal-Marisa Tomei-Jon Favreau-Zendaya-Jacob Batalon-Tony Revolori-Angourie Rice-Remy Hii-Martin Starr-J.B. Smoove-Jorge Lendeborg Jr.-Cobie Smulders-Numan Acar-Zach Barack-Zoha Rahman-Yasmin Mwanza-Joshua Sinclair-Evans-Tyler Luke Cunningham-Sebasti��n Viveros-Toni Garrn-Peter Billingsley-Clare Dunne-Nicholas Gleaves-Claire Rushbrook-J.K. Simmons-Dawn Michelle King-Jeroen van Koningsbrugge-Michael de Roos-Jan-Paul Buijs-Sergio Pierattini-Anjana Vasan-Brian Law-Evelyn Mok-Tatiana Lunardon-Giada Benedetti-Luk��� Bech-Alessandro Giuggioli-Petr Opava-Giuseppe Andriolo-Pat Kiernan-Shari Abdul-Mari Alexandrova-Kristen Alminta-Vincent Angel-Peter Arpesella-Lasco Atkins-Sitara Attaie-Peter Bankol��-Blair Barnette-Tuwaine Barrett-Anna Benamati-Avondre E.D. Beverley-Bruno Bilotta-Sharon Blynn-Luigi Boccanfuso-Paolo Braghetto-Dante Brattelli-Jeff Bridges-Graham Burton-Ken Byrd-Sokol Cahani-Gianni Calchetti-Darren Lee Campbell-H��l��ne Cardona-Dian Cathal-Jake Cerny-Daphne Cheung-Sam Chuck-Al Clark-Victoria Coburn-Kimberly Collison-Tiziana Coste-Jaylen Davis-Kristianne-Kaith Domingo-Andrew Dunkelberger-Charlie Esqu��r-Ria Fend-Ferroz Fernandez-Vincent Frattini-Massi Furlan-Cynthia Garbutt-Thomas Goodridge-Sonia Goswami-Nicholle Hembra-Michael Hennessy-Meagan Holder-Patrick Doran-Ruth Horrocks-Chris Hyacinthe-Michael Iacono-Roman Ibragimov-Theo Ip-Timothy Christian Jansen-Keon Kendrick-Camille Kinloch-Michal Kubal-Hannah Kurczeski-G��raldine Lamarre-Jimena Larraguivel-Rich Lawton-Kath Leroy-Gavin Lee Lewis-Patrick Loh-Joseph Long-Marian Lorencik-Ketan Majmudar-Tony Mardon-Anton�_n Ma��ek-Eustace Meade-Ben Mendelsohn-Bradley Wj Miller-Melissa Beth Miller-Anthony Molinari-Julia Mollin-Adrian Mozzi-Brendan Murphy-Amanda Musso-Emily Ng-Daniel Olson-Karen Parks-Hiten Patel-Clay Pel-is-Luigi Petrazzuolo-Aleksandrs Petukhovs-Annie Pisapia-Martin Polak-Jivan Xander Ramesh-Mike Ray-Sofia Renee-Daniel Rennis-Sawyer Reo-Cailan Robinson-Emmanuel Rodriguez-Ray Rosario-Daniel Ryves-Maurice Sardison-Susanne Schraps-Karen-J Sear-Ilya Tank Shilov-Davina Sitaram-Joakim Skarli-Paul Slim-Richard Stanley-Lucas Antoine Starrets-Faith Tarby-Emily Tebbutt-Oskar Ulvestad-Lesdy Vanessa-Jessica VanOss-Joe David Walters-Jo Wheatley-Dale Wilder-Rocco Wu-Jan Zalabak-Samantha Mishinski-Alessandro Sciarra-Aristou Meehan,venice italy-europe-school trip-sequel-superhero-based on comic-destruction-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-tower of london,/4q2NNj4S5dG2RLF9CpXsej7yXl.jpg,/ng6SSB3JhbcpKTwbPDsRwUYK8Cq.jpg,315635-299534-299537-299536-363088-284053-324857-271110-99861-301528-284054-559-10138-76338-284052-283995-102382-557-102899-1726-287947 +299537,Captain Marvel,Action-Adventure-Science Fiction,en,The story follows Carol Danvers as she becomes one of the universe��s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.,57.765,Marvel Studios,3/6/19,152000000,1131416446,124,Released,Higher. Further. Faster.,6.9,13998,Brie Larson-Samuel L. Jackson-Ben Mendelsohn-Jude Law-Annette Bening-Djimon Hounsou-Lee Pace-Lashana Lynch-Gemma Chan-Clark Gregg-Rune Temte-Algenis Perez Soto-Mckenna Grace-Akira Akbar-Matthew Maher-Chuku Modu-Vik Sahay-Colin Ford-Kenneth Mitchell-Stephen A. Chang-Pete Ploszek-Matthew 'Spider' Kimmel-Stephen 'Cajun' Del Bagno-London Fuller-Azari Akbar-Mark Daugherty-Diana Toshiko-Barry Curtis-Emily Ozrey-Abigaille Ozrey-Marilyn Brett-Stan Lee-Robert Kazinsky-Nelson Franklin-Patrick Brennan-Patrick Gallagher-Ana Ayora-Lyonetta Flowers-Rufus Flowers-Sharon Blynn-Auden L. Ophuls-Harriet L. Ophuls-Matthew Bellows-Richard Zeringue-Duane Henry-Chris Evans-Scarlett Johansson-Don Cheadle-Mark Ruffalo-Kelly Sue DeConnick-Vinny O'Brien-Joey Courteau-Anthony Molinari,superhero-based on comic-alien invasion-super power-female hero-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-woman director-hero's journey-1990s-alien technology,/AtsgWhDnHTq68L0lLsUrCnM7TjG.jpg,/w2PMyoyLU22YvrGK3smVM9fW1jj.jpg,901944-299534-363088-429617-299536-284053-284054-1771-271110-76338-99861-315635-10138-100402-10195-102899-283995-1726-287947-284052-68721 +38356,Transformers: Dark of the Moon,Action-Science Fiction-Adventure,en,The Autobots continue to work for NEST now no longer in secret. But after discovering a strange artifact during a mission in Chernobyl it becomes apparent to Optimus Prime that the United States government has been less than forthright with them.,13.866,Paramount-di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions,6/28/11,195000000,1123800000,154,Released,The invasion we always feared. An enemy we never expected.,6.19,7907,Shia LaBeouf-Josh Duhamel-John Turturro-Tyrese Gibson-Rosie Huntington-Whiteley-Frances McDormand-John Malkovich-Patrick Dempsey-Kevin Dunn-Julie White-Ken Jeong-Alan Tudyk-Glenn Morshower-Lester Speight-Buzz Aldrin-Bill O'Reilly-Ravil Isyanov-Dustin Dennard-Markiss McFadden-Nick Bickle-Ajay James-Brett Lynch-Chris A. Robinson-Scott C. Roe-James D. Weston II-Brian Call-Aaron Garrido-Mikal Vega-Kenny Sheard-Josh Kelly-Keiko Agena-LaMonica Garrett-Yasen Peyankov-Brett Stimely-John H. Tobin-Drew Pillsbury-Patrick Pankhurst-Larry Clarke-Tom Virtue-Thomas Crawford-Kevin Sizemore-Alan Pietruszewski-Michael Daniel Cassady-Peter Murnik-Don Jeanes-Cory Tucker-Lindsey Ginter-David St. James-Mitch Bromwell-Elya Baskin-Eugene Alper-Inna Korobkina-Zoran Radanovich-Kathleen Gati-Annie O'Donnell-Chris Sheffield-Ken Takemoto-Michael Loeffelholz-Mindy Sterling-Stephen Monroe Taylor-Andy Daly-Derek Miller-Leidy Mazo-Scott Krinsky-Katherine Sigismund-Maile Flanagan-Darren O'Hare-Jack Axelrod-Rich Hutchman-Meredith Monroe-Charlotte Labadie-Christian Baha-Jennifer Williams-Danielle Fornarelli-Danny McCarthy-John Turk-Peter A Kelly-Mark Golden-Sean Murphy-Scott Paulson-Luis Echagarruga-Iqbal Theba-Anthony Azizi-Sammy Sheik-Mark Ryan-John S. McAfee-Jay Gates-Rebecca Cooper-Peter Cullen-Hugo Weaving-Leonard Nimoy-Jess Harnell-Charlie Adler-Robert Foxworth-James Remar-Francesco Quinn-George Coe-Tom Kenny-Reno Wilson-Frank Welker-Ron Bottitta-John DiMaggio-Keith Szarabajka-Greg Berg,spacecraft-moon-traitor-bodyguard-alien planet-based on toy-giant robot-sabotage-word domination-commando-duringcreditsstinger,/28YlCLrFhONteYSs9hKjD1Km0Cj.jpg,/h3js4rulxzKMOokM2oO5Kr0mBZU.jpg,8373-1858-91314-335988-2080-36668-49538-36657-36658-20526-14869-1865-41154-64635-1979-27578-56292-534-58574-13804-14161 +122,The Lord of the Rings: The Return of the King,Adventure-Fantasy-Action,en,Aragorn is revealed as the heir to the ancient kings as he Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile Frodo and Sam take the ring closer to the heart of Mordor the dark lord's realm.,82.045,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/1/03,94000000,1118888979,201,Released,The eye of the enemy is moving.,8.5,22005,Elijah Wood-Sean Astin-Ian McKellen-Viggo Mortensen-Andy Serkis-Billy Boyd-Miranda Otto-Dominic Monaghan-Bernard Hill-David Wenham-Orlando Bloom-John Rhys-Davies-Karl Urban-John Noble-Liv Tyler-Lawrence Makoare-Ian Holm-Cate Blanchett-Hugo Weaving-Sean Bean-Marton Csokas-Paul Norell-Alan Howard-Noel Appleby-Ali Astin-David Aston-John Bach-Sadwyn Brophy-Alistair Browning-Richard Edge-Jason Fitch-Bruce Hopkins-Ian Hughes-Bret McKenzie-Sarah McLeod-Maisy McLeod-Riera-Bruce Phillips-Shane Rangi-Todd Rippon-Thomas Robins-Harry Sinclair-Peter Tait-Joel Tobeck-Stephen Ure-Sala Baker-Robert Pollock-Ross Duncan-Pete Smith-Jed Brophy-Lee Hartley-Billy Jackson-Katie Jackson-Jane Abbott-Gino Acevedo-Aidan Bell-Jarl Benzon-J�rn Benzon-Emma Deakin-Michael Elsworth-Clint Elvy-Zo Hartley-Peter Jackson-Sandro Kopp-Andrew Lesnie-Joseph Mika-Hunt-Henry Mortensen-Craig Parker-Rick Porras-Christian Rivers-Michael Semanick-Howard Shore-John Stephenson-Richard Taylor-Royd Tolkien-Christopher Lee-Brad Dourif-Bruce Spence-Phil Grieve,elves-dwarf-orcs-based on novel or book-suspicion-volcano-bravery-addiction-honor-royalty-troll-brutality-ghost-wizard-quest-live action and animation-sword and sorcery,/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg,/2u7zbn8EudG6kLlBzUYqP8RyFU4.jpg,1013665-121-120-10366-11285-283564-10925-1892-615774-950445-15969-34204-49051-16234-359983-628866-13888-13155-390555-16690-155 +37724,Skyfall,Action-Adventure-Thriller,en,When Bond's latest assignment goes gravely wrong agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory the new Chairman of the Intelligence and Security Committee it's up to Bond aided only by field agent Eve to locate the mastermind behind the attack.,46.095,Danjaq-Columbia Pictures-Eon Productions-Metro-Goldwyn-Mayer-B23,10/24/12,200000000,1108569499,143,Released,Think on your sins.,7.219,14096,Daniel Craig-Judi Dench-Javier Bardem-Naomie Harris-Ralph Fiennes-Ben Whishaw-Albert Finney-B��r��nice Marlohe-Rory Kinnear-Ola Rapace-Helen McCrory-Nicholas Woodeson-Bill Buckhurst-Elize du Toit-Ian Bonar-Gordon Milne-Peter Basham-Ben Loyd-Holmes-Tonia Sotiropoulou-Wolf Blitzer-Orion Lee-Dave Wong-Roger Yuan-Yang Liang-Yennis Cheung-Chooye Bay-Milorad Kapor-Huw Edwards-Elio Lo Tauro-Amir Boutrous-Nicholas Goh-Khan Bonfils-Kurt Egyiawan-Oliver Johnstone-Harry Kershaw-Burt Caesar-Crispin Letts-Beatrice Curnew-Jim Conway-Jens Hult��n-Michael Pink-Jo Cameron Brown-Anthony O'Donnell-Hannah Stokely-Wayne Gordon-Tom Wu-Jake Fairbrother-Christopher Sciueref-Daniel Adegboyega-Selva Rasalingam-Steve Barnett-Lee Nicholas Harris-Duncan Casey-Angela Tran-Tom Coulston,spy-secret agent-sociopath-mi6-killer-art gallery-british secret service-uzi-booby trap-impersonating a police officer-macao-komodo dragon,/d0IVecFQvsGdSbnMAHqiYsNYaJT.jpg,/hoQhlAskVNgLQhArnH7reWP4pUp.jpg,10764-36557-49026-206647-49051-56292-68721-24428-70160-1930-87827-68718-70981-59967-10528-47964-155-19995-49521-27205-54138 +91314,Transformers: Age of Extinction,Science Fiction-Action-Adventure,en,"As humanity picks up the pieces following the conclusion of ""Transformers: Dark of the Moon"" Autobots and Decepticons have all but vanished from the face of the planet. However a group of powerful ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient powerful Transformer menace sets Earth in his cross-hairs.",199.987,di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions-Paramount,6/25/14,210000000,1104054072,165,Released,"This is not war, it's extinction.",5.9,7328,Mark Wahlberg-Stanley Tucci-Kelsey Grammer-Nicola Peltz Beckham-Jack Reynor-Sophia Myles-Li Bingbing-Titus Welliver-T.J. Miller-James Bachman-Thomas Lennon-Charles Parnell-Erika Fong-Michael Collins-Han Geng-Zou Shiming-Richard Riehle-Patrick Bristow-Cleo King-Calvin Wimmer-Glenn Keogh-David Midthunder-Richard Gallion-Nick Horst-Kassem Gharaibeh-Yanis Kalnins-Edward T. Welburn-Peter A Kelly-Jessica Gomes-Andreas Beckett-Alexander Leeb-Jamison Haase-Drew Wicks-Gene Shieh-Woei Bee-Wang Ying-William Wang-Abigail Klein-Melanie Specht-Greg Matthew Anderson-Austin Lin-Victoria Summer-Kevin Covais-B. Adam Baillio-Mikal Vega-Andrew Arrabito-Tyrone Smith-Kenny Sheard-Kevin Kent-Michael Wong-Winston Yeh Ying-Wen-Ray Lui-Candice Zhao-Li Jun Ting-Howard Y. Woo-Jingsheng Yu-Ben Wang-Eddie San Chan-Zhang Tianyu-Wu Gang-Teresa Daley-Peter Cullen-Frank Welker-John Goodman-Ken Watanabe-Robert Foxworth-John DiMaggio-Mark Ryan-Reno Wilson-Michael Bay,music video-sequel-alien-based on toy-giant robot-robot,/6lANYv3fDtvey3w5oFusyPK41Kl.jpg,/wxr4Z6E83h14CogsZOzDm1vuDX3.jpg,38356-8373-335988-1858-127585-98566-119450-102382-25565-124905-137113-100402-76338-76170-138103-97020-168259-49521-184315-68726-82702 +49026,The Dark Knight Rises,Action-Crime-Drama-Thriller,en,Following the death of District Attorney Harvey Dent Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later Batman encounters the mysterious Selina Kyle and the villainous Bane a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.,116.568,Syncopy-Legendary Pictures-DC Entertainment-Warner Bros. Pictures,7/17/12,250000000,1081041287,165,Released,The Legend Ends,7.777,21642,Christian Bale-Michael Caine-Gary Oldman-Anne Hathaway-Tom Hardy-Marion Cotillard-Joseph Gordon-Levitt-Morgan Freeman-Matthew Modine-Juno Temple-Ben Mendelsohn-Burn Gorman-Daniel Sunjata-Cillian Murphy-Alon Abutbul-Liam Neeson-Nestor Carbonell-Josh Stewart-Aidan Gillen-Tom Conti-Joey King-Josh Pence-John Nolan-Warren Brown-Sam Kennard-Nick Julian-Miranda Nolan-Claire Julien-Brett Cullen-Reggie Lee-Joseph Lyle Taylor-Chris Ellis-Duane Henry-James Harvey Ward-Gonzalo Menendez-Cameron Jack-Lex Daniel-Tyler Dean Flores-Thomas Lennon-Trevor White-Rob Brown-Daina Griffith-Fredric Lehne-Courtney Munch-Chris Hill-Travis Guba-Jay Benedict-Will Estes-David Dayan Fisher-Glen Powell-Ben Cornish-Russ Fega-Andres Perez-Molina-Brent Briscoe-Oliver Cotton-Mark Killeen-Sarah Goldberg-John Macmillan-Robert Wisdom-Ronnie Gene Blevins-John Hollingworth-Ian Bohen-Uri Gavriel-Noel Gugliemi-Hector Atreyu Ruiz-Patrick Cox-Aramis Knight-William Devane-David Gyasi-Patrick Jordan-Joshua Elijah Reese-Desmond Harrington-Mychael Bates-Tomas Arana-Peter Holden-David Monahan-Jillian Armenante-Aja Evans-Aldous Davidson-Wade Williams-Jake Canuso-Julie Mun-Rory Nolan-Harry Coles-Massi Furlan-Todd Gearhart-Christopher Judge-Patrick Leahy-Kevin Kiely Jnr-Daniel Newman-Marc Abbink-Isiah Adams-Charlie Alejandro-Robert Arensen-Grant Babbitt-Fileena Bahris-Rick Bolander-Kyle Patrick Brennan-Scott Churchson-Bill Cowher-Graham Curry-Aaron Eckhart-Stephanie Domini-John Farrer-Frank Fata-Christopher Bryan Gomez-Vito Grassi-Michael Wren Gucciardo-Ed Heavey-John W. Iwanonkiw-Cindy Jackson-Daniel Jordano-Tiffany Kemp-Sun Jae Kim-Hrvoje Klecz-Alex Kruz-Tyler La Marr-LeJon Stewart-Paul Jude Letersky-Joe Lipari-Silvia Lombardo-Jorge Mardel-Cale McConnell-David Dale McCue-Michael Papajohn-Salomon Passariello-Allen Merritt-Olan Montgomery-Alex Moore-Shane Nolan-Kyle David Pierce-Troy Polamalu-Michael Power-James Rawlings-Kirsten Roeters-Ben Roethlisberger-Mark Roman-Eric Salazar-Emily Schooley-Thomas Tull-Chris Vaina-Barbara Vincent-Justin Michael Woods-Jason Yee-John Zion-Alex Ziwak-Tommy Bayiokos-Jeff Moffitt-Diogo Hausen-Gary Sievers-Orion McCabe-London May-James Quinn-Joe Fishel-Ming Wang-Simon Rhee-Hines Ward-Heath Miller-Collin Taylor-Antonio Piluso-Jackson Nunn-Alja�_ Tepina,fight-burglar-hostage-secret identity-crime fighter-superhero-villainess-time bomb-based on comic-cover-up-vigilante-tragic hero-mobile-terrorism-destruction-fighting-criminal underworld-cat burglar-flood,/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg,/c3OHQncTAnKFhdOTX7D3LTW6son.jpg,272-155-27205-37724-68721-24428-19995-1726-49521-1930-68718-120-49051-1771-10138-121-122-603-10195-49538-70160 +475557,Joker,Crime-Thriller-Drama,en,During the 1980s a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.,145.268,Warner Bros. Pictures-Joint Effort-Village Roadshow Pictures-Bron Studios-DC Films,10/1/19,55000000,1074500000,122,Released,Put on a happy face.,8.163,24337,Joaquin Phoenix-Robert De Niro-Zazie Beetz-Frances Conroy-Brett Cullen-Shea Whigham-Bill Camp-Glenn Fleshler-Leigh Gill-Josh Pais-Rocco Luna-Marc Maron-Sondra James-Murphy Guyer-Douglas Hodge-Dante Pereira-Olson-Carrie Louise Putrello-Sharon Washington-Hannah Gross-Frank Wood-Brian Tyree Henry-April Grace-Mick Szal-Carl Lundstedt-Michael Benz-Ben Warheit-Gary Gulman-Sam Morril-Chris Redd-Mandela Bellamy-Demetrius Dotson II-Greer Barnes-Ray Iannicelli-Bryan Callen-Peter Hans Benson-Vito Gerbino-Adam Quezada-Xavyer Ure��a-Evan Rosado-Damian Emmanuel-Mike Troll-Jane Fergus-David Gibson-Tony D. Head-Jeff McCarthy-Kim Brockington-Troy Roberts-Lou Young-Michael-Scott Druckenmiller-Craig Austin-John Cenatiempo-Danny Schoch-Keith Buterbaugh-James Ciccone-Rich Campbell-Roger Squitero-Steven Elson-Graham Mabry-John Alldred-Alonzo Wright-Jack Wilkins-Richard Baratta-Mary Kate Malat-Adrienne Acevedo Lovette-Justin Theroux-Alissa Bourne-Jamaal Burcher-John Cashin-Jason John Cicalese-Brendan Patrick Connor-Blaise Corrigan-Dennis Jay Funny-James P. Harkins-Joseph Hernandez-Ben Heyman-Graham Maby-Jesse Schratz-Isabella Ferreira-Shade Rupe,dream-street gang-society-psychopath-clown-villain-based on comic-murder-psychological thriller-criminal mastermind-mental illness-anarchy-character study-clown makeup-subway train-social realism-supervillain-tv host-1980s-mother son relationship-origin story-falling into madness-depressing,/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg,/f5F4cRhQdUbyVbB5lTNCwUzD6BP.jpg,466272-496243-559969-530915-299536-492188-515001-429617-420818-474350-546554-420809-181812-359724-398978-11324-157336-495764-419704-331482-512200 +181812,Star Wars: The Rise of Skywalker,Adventure-Action-Science Fiction,en,The surviving Resistance faces the First Order once again as the journey of Rey Finn and Poe Dameron continues. With the power and knowledge of generations behind them the final battle begins.,62.836,Lucasfilm Ltd.-Bad Robot,12/18/19,250000000,1074144248,142,Released,Every generation has a legend,6.355,9154,Carrie Fisher-Mark Hamill-Daisy Ridley-Adam Driver-John Boyega-Oscar Isaac-Anthony Daniels-Naomi Ackie-Domhnall Gleeson-Richard E. Grant-Lupita Nyong'o-Keri Russell-Joonas Suotamo-Kelly Marie Tran-Ian McDiarmid-Billy Dee Williams-Greg Grunberg-Shirley Henderson-Billie Lourd-Dominic Monaghan-Hassan Taj-Lee Towersey-Brian Herring-Dave Chapman-Richard Guiver-Lynn Robertson Bruce-J.J. Abrams-Claire Roi Harvey-Richard Coombs-Matt Denton-Nick Kellington-Mandeep Dhillon-Alison Rose-Amanda Lawrence-Tanya Moodie-Simon Paisley Day-Geff Francis-Amanda Hale-Amir El-Masry-Aidan Cook-Martin Wilde-Anton Simpson-Tidy-Lukaz Leong-Tom Rodgers-Joe Kennard-Ashley Beck-Bryony Miller-Cyril Nri-Angela Christian-Indra Ov��-Richard Bremmer-Richard Durden-Andrew Havill-Nasser Memarzia-Patrick Kennedy-Aaron Neil-Joe Hewetson-Raghad Chaar-Mim�� M. Khayisa-Tom Wilton-Chris Terrio-Kiran Shah-Debra Wilson-Josef Altin-Vinette Robinson-Mike Quinn-Bill Kipsang Rotich-Ann Firbank-Diana Kent-Warwick Davis-Harrison Davis-Elliot Hawkes-Philicia Saunders-John Williams-Nigel Godrich-Dhani Harrison-J.D. Dillard-Dave Hearn-Rochenda Sandall-Jacob Fortune-Lloyd-Andreea Diac-Liam Cook-Denis Lawson-Carolyn Hennesy-Paul Kasey-Matthew Wood-James Earl Jones-Andy Serkis-Josefine Irrera Jackson-Cailey Fleming-Jodie Comer-Billy Howle-Hayden Christensen-Olivia d'Abo-Ashley Eckstein-Jennifer Hale-Samuel L. Jackson-Ewan McGregor-Alec Guinness-Frank Oz-Angelique Perrin-Freddie Prinze Jr.-Liam Neeson-Harrison Ford-Lin-Manuel Miranda-Ed Sheeran-Gerald W. Abrams-Jeff Garlin-Karl Urban-Kevin Smith,space opera,/db32LaOibwEliAmSL2jjDF6oDdj.jpg,/jOzrELAzFxtMx2I4uDGHOotdfsS.jpg,181808-140607-1895-1894-1893-348350-11-330459-1891-1892-52249-271172-12180-429617-512200-299534-475557-551591-432134-161704-82938 +301528,Toy Story 4,Family-Adventure-Animation-Comedy-Fantasy,en,"Woody has always been confident about his place in the world and that his priority is taking care of his kid whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called ""Forky"" to her room a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.",109.033,Walt Disney Pictures-Pixar,6/19/19,175000000,1073395000,100,Released,Get Ready to Hit the Road,7.51,9236,Tom Hanks-Tim Allen-Annie Potts-Tony Hale-Keegan-Michael Key-Madeleine McGraw-Christina Hendricks-Jordan Peele-Keanu Reeves-Ally Maki-Jay Hernandez-Lori Alan-Joan Cusack-Bonnie Hunt-Kristen Schaal-Emily Davis-Wallace Shawn-John Ratzenberger-Blake Clark-June Squibb-Carl Weathers-Lila Sage Bromley-Don Rickles-Jeff Garlin-Maliah Bargas-Good-Jack McGraw-Juliana Hansen-Estelle Harris-Laurie Metcalf-Steve Purcell-Mel Brooks-Alan Oppenheimer-Carol Burnett-Betty White-Carl Reiner-Bill Hader-Patricia Arquette-Timothy Dalton-Flea-Melissa Villase��or-Jeff Pidgeon-John Morris,friendship-cartoon-rescue mission-sequel-buddy-cowboy-duringcreditsstinger-toy comes to life,/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg,/q62bpQ67qaXY0u6b2wFEnQYIbPd.jpg,863-10193-1028506-862-429617-420818-260513-221518-585-475557-2062-404368-260514-49013-330457-920-508439-62211-12-354912-299534 +10193,Toy Story 3,Animation-Family-Comedy,en,Woody Buzz and the rest of Andy's toys haven't been played with in years. With Andy about to go to college the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.,84.15,Pixar-Walt Disney Pictures,6/16/10,200000000,1066970000,103,Released,No toy gets left behind.,7.793,13967,Tom Hanks-Tim Allen-Joan Cusack-Don Rickles-Wallace Shawn-John Ratzenberger-Estelle Harris-Blake Clark-Jeff Pidgeon-Ned Beatty-Michael Keaton-Jodi Benson-John Morris-Emily Hahn-Timothy Dalton-Kristen Schaal-Jeff Garlin-Bonnie Hunt-Whoopi Goldberg-Jack Angel-John Cygan-Jan Rabson-Laurie Metcalf-Lori Alan-Bea Miller-R. Lee Ermey-Teddy Newton-Richard Kind-Bud Luckey-Javier Fern��ndez-Pe��a-Charlie Bright-Amber Kroner-Brianna Maiwand-Erik von Detten-Jack Willis-Woody Smith-Carlos Alazraqui-Teresa Ganzel-Jess Harnell-Danny Mann-Mickie McGowan-Laraine Newman-Colleen O'Shaughnessey-Bob Peterson-Jerome Ranft-Lee Unkrich-Colette Whitaker-Constantino Bravos-Taiana Huff-Adam Joshua Jastrow-Leo Jergovic-Theodore F. Kayser-Gia Michailidis-Nikolas Michailidis-Aram�� Scott-Hannah Unkrich-Godfrey Gao-Sherry Lynn-Jim Ward-Frank Welker,escape-hostage-college-sequel-buddy-daycare-teddy bear-duringcreditsstinger-toy comes to life-personification-inanimate objects come to life,/AbbXspMOwdvwWZgVN0nabZq03Ec.jpg,/uAfhsySkr1UzQg1zdg3dZQRz9Fd.jpg,863-862-585-12-9806-2062-14160-10681-920-62211-49013-808-62177-9487-38757-8587-953-10191-425-9502-20352 +58,Pirates of the Caribbean: Dead Man's Chest,Adventure-Fantasy-Action,en,Captain Jack Sparrow works his way out of a blood debt with the ghostly Davy Jones to avoid eternal damnation.,95.856,Walt Disney Pictures-Jerry Bruckheimer Films-Second Mate Productions,7/6/06,200000000,1065659812,151,Released,Captain Jack is back!,7.337,14283,Johnny Depp-Orlando Bloom-Keira Knightley-Stellan Skarsg��rd-Bill Nighy-Jack Davenport-Kevin McNally-Jonathan Pryce-Lee Arenberg-Mackenzie Crook-Tom Hollander-Naomie Harris-David Bailie-Martin Klebba-David Schofield-Alex Norton-Dermot Keaney-Andy Beckwith-Clive Ashborn-Reggie Lee-Christopher Adamson-Jonathan Linsley-John Boswall-Max Baker-Steve Speirs-Lauren Maher-Vanessa Branch-Luke de Woolfson-Jonathan Kite-Ho-Kwan Tse-Peter Donald Badalamenti II-Christopher S. Capp-Donald Dowd-Barry McEvoy-Claudia Adams-Filip Cvijetic-Michael Enright-Geoffrey Rush,witch-fortune teller-bondage-exotic island-monster-captain-east india company-compass-ship-daughter-sword fight-pirate-cannibal-swashbuckler-kraken-aftercreditsstinger-based on theme park ride,/uXEqmloGyP7UXAiphJUu2v2pcuE.jpg,/14F9FtM2DOPex5zrZkauJwWobtl.jpg,285-1865-22-166426-675-12444-767-674-672-12445-673-425-607-557-10138-121-671-10528-12155-862-12 +330459,Rogue One: A Star Wars Story,Action-Adventure-Science Fiction,en,A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.,44.122,Lucasfilm Ltd.,12/14/16,200000000,1056057273,133,Released,A Rebellion Built on Hope,7.487,13990,Felicity Jones-Diego Luna-Alan Tudyk-Donnie Yen-Jiang Wen-Ben Mendelsohn-Guy Henry-Forest Whitaker-Riz Ahmed-Mads Mikkelsen-Jimmy Smits-Alistair Petrie-Genevieve O'Reilly-Ben Daniels-Paul Kasey-Stephen Stanton-Ian McElhinney-Fares Fares-Jonathan Aris-Sharon Duncan-Brewster-Spencer Wilding-Daniel Naprous-James Earl Jones-Ingvild Deila-Anthony Daniels-Jimmy Vee-Valene Kane-Beau Gadsdon-Dolly Gadsdon-Duncan Pow-Jordan Stephens-Babou Ceesay-Aidan Cook-Daniel Mays-Andy de la Tour-Tony Pitts-Martin Gordon-Eric MacLennan-Francis Magee-Bronson Webb-Geraldine James-Ariyon Bakare-Simon Farnaby-Drewe Henley-Angus MacInnes-Toby Hefferman-Jack Roth-Geoff Bell-Derek Arnold-Nick Kellington-Michael Smiley-Warwick Davis-Angus Wright-David Ankrum-Ian Whyte-Rian Johnson-Ned Dennehy-Angus Cook-Emeson Nwolie-Jorge Leon Martinez-Russell Balogh-Steen Young-Attila G. Kerekes-Mac Pietowski-Ram Bergman-Katie Sheridan-Terri Douglas-Vanessa Lengies-Vanessa Marshall-Verona Blue-Dave Filoni-David Boat-David Cowgill-David Sobolov-Eugene Byrd-Fred Tatasciore-James Arnold Taylor-Julian Stone-Matthew Wood-Michael Giacchino-Robin Atkin Downes-Samuel Witwer-Tom Kane-Tony Gilroy-Yuri Lowenthal-Alexi Melvin-Christian Simpson-Christopher Scarabosio-David Acord-Flora Miller-John Gilroy-John S. Schwartz-Jonathan Dixon-Karen Huie-Kevin Hickman-Lex Lang-Michael Donovan-Orly Schuchmacher-Steve Bardrack-Tom Harrison-Read-William M. Patrick-Robert Benedetti-Hall-Richard Franklin-James Harkness-David M. Santana-Robin Pearce-Tim Beckmann-Gabby Wong-Richard Glover-Richard Cunningham-Michael Gould-Rufus Wright-Michael Shaeffer-Matt Rippy-Michael Nardone-Nathan Plant-Christopher Patrick Nolan-Dee Tails-Ruth Bell-May Bell-Keith Dunphy-Alan Rushton-Weston Gavin-Nick Hobbs-Samantha Alleyne-Benjam�_n Ben�_tez-Arthur L. Bernstein-Steve Blum-Bern Colla�_o-Brendan Cook-Sabine Crossen-Matthew Dale-Zarene Dallas-Dave Prince-Gareth Edwards-Daniel Eghan-Marc Esse-Jake Francis-Scott Frazer-Steven James Griffiths-Sam Hanover-Philip Harvey-James Henri-Thomas-Dolly Jagdeo-Gary Kiely-Kamil Lemieszewski-Tyrone Love-Obie Matthew-Sandeep Mohan-Robert Strange-David Norfolk-Axel Nu-Jem Kai Olsen-Mike Prior-Louis Samms-Scott Tanner-Arti Shah-Kiran Shah-Tim Stafford-Scott Stevenson-Matthew Stirling-John Swartz-Albert Tang-Vince Taylor-Michael Thyx-Tony Toste-Sezer Unver-Pablo Verdejo-Jay Waddell-Paul Weston-John Whitby-Boriana Williams-Dion Williams-Ivy Wong-Hiu Woong-Sin-Sam Wilkinson-Hugh O'Brien,rebel-spacecraft-space battle-space travel-prequel-rebellion-female protagonist-space western-suicide mission-robot-spin off-space opera-alien language-against the odds-blind man,/i0yw1mFbB7sNGHCs7EXZPzFkdA1.jpg,/6t8ES1d12OzWyCGxBeDYLHoaDrT.jpg,140607-1895-1894-1893-181808-11-1891-348350-1892-181812-284052-271110-12180-263115-259316-283995-246655-209112-329865-118340-188927 +420817,Aladdin,Adventure-Fantasy-Romance-Family,en,A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.,49.295,Walt Disney Pictures-Rideback,5/22/19,183000000,1054304000,127,Released,Choose Wisely.,7.1,9068,Will Smith-Mena Massoud-Naomi Scott-Marwan Kenzari-Navid Negahban-Nasim Pedrad-Billy Magnussen-Numan Acar-Jordan A. Nash-Taliyah Blair-Aubrey Lin-Amir Boutrous-Omari Bernard-Nathaniel Ellul-Sebastien Torkia-Buckso Dhillon-Woolley-Ceara Batson-Vinani Mwazanzale-Demii Lee Walker-Elena Zacharia-Nazerene Williams-Bessy Naidu-Marisha Wallace-Maya Saroya-Amer Chadha-Patel-Omar Abidi-Stefan Kalipha-Firas Waleed Al-Taybeh-Nina Wadia-Elif Knight-Saikat Ahamed-Amed Hashimi-Stefan Capper-Jamal Sims-Alan Tudyk-Frank Welker-Robby Haynes-Bern Colla�_o-Michael Herne-Hiten Patel-Joey Ansah-Luke Johnson,hero-hustler-palace-musical-sultan-flying carpet-rags to riches-romance-monkey-family-first love-based on myths legends or folklore-genie-arabian nights-aladdin-live action and animation-live action remake,/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg,/rVqY0Bo4Npf6EIONUROxjYAJfmD.jpg,420818-447404-320288-788106-458156-429617-373571-72839-301528-287947-329996-812-479455-299534-330457-412117-299537-420809-399579-384018-2768 +1865,Pirates of the Caribbean: On Stranger Tides,Adventure-Action-Fantasy,en,Captain Jack Sparrow crosses paths with a woman from his past and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge the ship of the formidable pirate Blackbeard Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.,117.087,Walt Disney Pictures-Jerry Bruckheimer Films-Moving Picture Company,5/15/11,379000000,1045713802,137,Released,Live Forever Or Die Trying.,6.5,13190,Johnny Depp-Pen��lope Cruz-Geoffrey Rush-Ian McShane-Kevin McNally-Sam Claflin-Astrid Berg��s-Frisbey-Stephen Graham-Keith Richards-Richard Griffiths-Greg Ellis-Damian O'Hare-��scar Jaenada-Anton Lesser-Roger Allam-Judi Dench-Christopher Fairbank-Paul Bazely-Bronson Webb-Richard Thomson-Yuki Matsuzaki-Robbie Kay-Steve Evets-Ian Mercer-Deobia Oparei-Gemma Ward-Sebastian Armesto-Juan Carlos Vellido-Tristan Laurence Perez-Norberto Mor��n-Gerard Monaco-Tyrone Lopez-Luke Roberts-Daniel Ings-Emilia Jones-Patrick Kennedy-Jody Halse-Clifford Rose-Paul Hunter-Jorgelina Guadalupe Airaldi-Brea Berrett-Toni Busker-Sanya Hughes-Daphne Joy-Antoinette Kalaj-Derek Mears-Danny Le Boyer-Kitt Barrie-Steve Morphew-Alan J. Utley-Moore-Fileena Bahris-Gintare Beinoraviciute-Nicola Bertram-Andrew Crayford-Jason Curle-Kristofer Dayne-Nichola Fynn-Sean Francis George-Bobby Holland Hanton-Randy Herman-Harley Jay-Aaron King-Jeremy King-Matt Lasky-LeJon Stewart-Teresa Mahoney-Edward Mitchell-Kelly Mumme-Salomon Passariello-Siegfried Peters-David Pinkus-Jean Pierre Prats-Steve Saunders-Santi Scinelli-Kristen StephensonPino-Richard Stoker-Robert Stone-Sean Talo-Harvey Walsh-Loretta Walsh-Hannah Walters-Claira Watson Parr-Chuck Williams,england-spain-sea-captain-mutiny-sword-prime minister-sailing-silver-ship-duke-mermaid-pirate-soldier-battle-swashbuckler-18th century-aftercreditsstinger-blackbeard-1750s,/keGfSvCmYj7CvdRx36OdVrAEibE.jpg,/wQ0r0JRs7elHSKg1SFtdWdKTYKi.jpg,285-58-22-166426-12444-12445-10138-675-767-10195-10528-674-672-673-41154-58574-1930-49538-425-12155-121 +324852,Despicable Me 3,Action-Animation-Comedy-Family-Adventure,en,Gru and his wife Lucy must stop former '80s child star Balthazar Bratt from achieving world domination.,34.257,Illumination-Universal Pictures,6/15/17,80000000,1031552585,96,Released,Oh brother.,6.5,6466,Steve Carell-Kristen Wiig-Trey Parker-Miranda Cosgrove-Dana Gaier-Nev Scharrel-Steve Coogan-Julie Andrews-Jenny Slate-Pierre Coffin-Chris Renaud-Andy Nyman-Michael Beattie-Adrian Ciscato-Brian T. Delaney-Ken Daurio-Lori Alan-Carlos Alazraqui-Kyle Balda-Teresa Ganzel-Bob Bergen-Jess Harnell-Gregg Berger-John Kassir-Mona Marshall-John Cygan-Laraine Newman-Jan Rabson-Bill Farmer-Mindy Sterling-Danny Mann-Jim Ward-Matthew Wood-Katia Saponenko-Jude Alpers-Cory Walls-Sophie M. Siadatpour-Stephanie De Meautis-Bruno Dequier-Gregg Berger-Tara Strong,twin brother-sequel-despicable-minions,/6t3YWl7hrr88lCEFlGVqW5yV99R.jpg,/ftRkFtAGuHngHnLiOxktq0aCVMF.jpg,93456-20352-211672-295693-260514-278154-50349-378236-38832-10527-159824-140300-29233-8355-335797-950-80321-953-127380-49013-57800 +127380,Finding Dory,Adventure-Animation-Comedy-Family,en,Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?,32.945,Pixar-Walt Disney Pictures,6/16/16,200000000,1028570889,97,Released,An unforgettable journey she probably won't remember.,7.042,11504,Albert Brooks-Ellen DeGeneres-Ed O'Neill-Hayden Rolence-Diane Keaton-Eugene Levy-Ty Burrell-Kaitlin Olson-Idris Elba-Dominic West-Kate McKinnon-Bill Hader-Andrew Stanton-Torbin Xan Bullock-Bennett Dammann-Bob Peterson-Alexander Gould-Katherine Ringgold-John Ratzenberger-Angus MacLane-Willem Dafoe-Brad Garrett-Allison Janney-Austin Pendleton-Stephen Root-Vicki Lewis-Jerome Ranft-Sloane Murray-Lucia Geddes-Gabriel C. Brown-Sigourney Weaver-Riley Lio,fish-amnesia-octopus-sequel-anthropomorphism-underwater-aftercreditsstinger-clownfish,/3UVe8NL1E2ZdUZ9EDlKGJY5UzE.jpg,/8yYuFjRsozwOckhAaTHRLTiDwml.jpg,12-62211-150540-2062-9806-863-585-14160-920-10193-9487-62177-269149-862-328111-49013-105864-277834-109445-10681-260514 +12155,Alice in Wonderland,Family-Fantasy-Adventure,en,Alice now 19 years old returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.,53.119,Walt Disney Pictures-Roth Films-Team Todd-Tim Burton Productions-The Zanuck Company,3/3/10,200000000,1025467110,108,Released,You're invited to a very important date.,6.616,12723,Mia Wasikowska-Johnny Depp-Anne Hathaway-Helena Bonham Carter-Crispin Glover-Matt Lucas-Alan Rickman-Stephen Fry-Michael Sheen-Timothy Spall-Marton Csokas-Lindsay Duncan-Geraldine James-Tim Pigott-Smith-Leo Bill-Frances de la Tour-Christopher Lee-Paul Whitehouse-Barbara Windsor-Michael Gough-Imelda Staunton-Eleanor Tomlinson-Rebecca Crookshank-Jemma Powell-Eleanor Gecks-Holly Hawkins-Lucy Davenport-Joel Swetow-Jessica Oyelowo-Ethan Cohn-Richard Alonzo-Harry Taylor-Chris Grabher-Simone Sault-Caroline Royce-Bonnie Parker-Cortney Palm-Amy Bailey,based on novel or book-queen-fantasy world-live action remake-based on young adult novel,/o0kre9wRCZz3jjSjaru7QU0UtFz.jpg,/20pkC7yJdCV4J1IMKfsCT9QU7zV.jpg,241259-118-812-162-12-1865-285-58-12444-62213-675-767-3933-12092-674-14160-425-12445-58595-953-38757 +269149,Zootopia,Animation-Adventure-Family-Comedy,en,Determined to prove herself Officer Judy Hopps the first bunny on Zootopia's police force jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.,111.664,Walt Disney Pictures-Walt Disney Animation Studios,2/11/16,150000000,1023784195,109,Released,Welcome to the urban jungle.,7.746,14669,Jason Bateman-Ginnifer Goodwin-Idris Elba-Jenny Slate-Nate Torrence-Bonnie Hunt-Don Lake-Tommy Chong-J.K. Simmons-Octavia Spencer-Alan Tudyk-Shakira-Raymond S. Persi-Della Saba-Maurice LaMarche-Phil Johnston-Fuschia!-John DiMaggio-Katie Lowes-Gita Reddy-Jesse Corti-Tom 'Tiny' Lister Jr.-Josh Dallas-Leah Latham-Rich Moore-Kath Soucie-Peter Mansbridge-Byron Howard-Jared Bush-Mark Rhino Smith-Josie Trinidad-John Lavelle-Kristen Bell-Evelyn Wilson Bresee-Hewitt Bush-Jill Cordes-Madeleine Curry-Terri Douglas-Melissa Goodwin Shepherd-Zach King-Dave Kohut-Jeremy Milton-Pace Paulsen-Fabienne Rawley-Bradford Simonsen-Claire K. Smith-Jackson Stein-David A. Thibodeau-Hannah G. Williams-Daveed Diggs,allegory-lion-hippopotamus-fox-elephant-sheep-cartoon-polar bear-bullying-revenge-conspiracy-con artist-urban-female protagonist-anthropomorphism-rabbit-animal-rookie cop-missing person-racial prejudice-injustice-reconciliation-buddy cop-stereotype-discrimination,/hlK0e0wAQ3VLuJcsfIYPvb4JVud.jpg,/p2fRZzxla6NoRbIH2KOZq0gHb5S.jpg,150540-177572-109445-127380-2062-38757-9806-14160-72962-12-585-277834-10681-293660-10193-862-425-259316-8587-278927-808 +49051,The Hobbit: An Unexpected Journey,Adventure-Fantasy-Action,en,Bilbo Baggins a hobbit enjoying his quiet life is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug the dragon.,81.291,Warner Bros. Pictures-Metro-Goldwyn-Mayer-New Line Cinema-WingNut Films,11/26/12,250000000,1021103568,169,Released,From the smallest beginnings come the greatest legends.,7.323,16761,Martin Freeman-Richard Armitage-Ian McKellen-Graham McTavish-Aidan Turner-Ken Stott-Dean O'Gorman-James Nesbitt-Mark Hadlow-Stephen Hunter-William Kircher-John Callen-Peter Hambleton-Jed Brophy-Adam Brown-Ian Holm-Elijah Wood-Hugo Weaving-Cate Blanchett-Christopher Lee-Andy Serkis-Sylvester McCoy-Barry Humphries-Jeffrey Thomas-Michael Mizrahi-Lee Pace-Manu Bennett-Conan Stevens-John Rawls-Stephen Ure-Timothy Bartlett-Bret McKenzie-Kiran Shah-Benedict Cumberbatch-Glenn Boswell-Thomas Robins-Luke Evans-Dan Hennah-Stephen Gledhill-Tim Gordon-Sonia Forbes Adam-Oscar Strik-Erin Banks-Brian Hotter-Eric Vespe-Mervyn Smith-Ruby Acevedo-Katie Jackson-Isaac Miller-Ella Olssen-Louis Ashbourne Serkis-Sonny Ashbourne Serkis-Ruby Ashbourne Serkis-Terry Notary-Peter Jackson,riddle-elves-dwarf-orcs-based on novel or book-mountain-burglar-sword-horseback riding-legend-travel-creature-thunderstorm-fantasy world-wizard-epic battle-lost ring-journey-goblin-giant-tunnel-underground lake-buried treasure-climbing a tree-invisibility-ancient-quest-high fantasy-trolls-elfen-epic fantasy-good vs evil-fantasy creature,/yHA9Fc37VmpUA5UncTxxo3rTGVA.jpg,/xyXmtuvsoM5J3yNad0nvcetpBdY.jpg,57158-122917-121-120-122-37724-49026-68721-24428-70160-19995-49521-1930-1865-58-12444-22-87827-10195-1726-285 +155,The Dark Knight,Drama-Action-Crime-Thriller,en,Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.,126.226,DC Comics-Legendary Pictures-Syncopy-Isobel Griffiths-Warner Bros. Pictures,7/16/08,185000000,1004558444,152,Released,Welcome to a world without rules.,8.513,31145,Christian Bale-Heath Ledger-Michael Caine-Gary Oldman-Aaron Eckhart-Maggie Gyllenhaal-Morgan Freeman-Nestor Carbonell-Monique Gabriela Curnen-Ron Dean-Chin Han-Eric Roberts-Ritchie Coster-Anthony Michael Hall-Keith Szarabajka-Joshua Harto-Melinda McGraw-Nathan Gamble-Michael Jai White-Colin McFarlane-Nydia Rodriguez Terracina-Tommy Lister Jr.-William Fichtner-Cillian Murphy-Patrick Leahy-Matt Skiba-David Dastmalchian-Michael Vieau-Michael Stoyanov-William Smillie-Danny Goldring-Matthew O'Neill-Olumiji Olawumi-Greg Beam-Erik Hellman-Beatrice Rosen-Vincenzo Nicoli-Edison Chen-Andy Luther-James Farruggio-Tom McElroy-Will Zahrn-James Fierro-Sam Derence-Jennifer Knox-Patrick Clear-Sarah Jayne Dunn-Charles Venn-Winston Ellis-Sophia Hinshelwood-Keith Kupferer-Joseph Luis Caballero-Richard Dillane-Daryl Satcher-Chris Petschler-Aidan Feore-Philip Bulcock-Paul Birchard-Walter Lewis-Vincent Riotta-Nancy Crane-K. Todd Freeman-Matt Shallenberger-Michael Andrew Gorman-Lanny Lutz-Peter DeFaria-Matt Rippy-Andrew Bicknell-Ariyon Bakare-Doug Ballard-Helene Maksoud-Tommy Campbell-Craig Heaney-Lorna Gayle-Lisa McAllister-Peter Brooke-Joshua Rollins-Dale Rivera-Matthew Leitch-Thomas Gaitsch-William Armstrong-Adam Kalesperis-Tristan Tait-Bronson Webb-David Ajala-Gertrude Kyles-Jonathan Ryland-James Scales-Nigel Carrington-Ian Pirie-Lateef Lovejoy-Grahame Edwards-Roger Monk-Ronan Summers-Wai Wong-Michael Corey Foster-Hannah Gunn-Jon Lee Brody-Debbi Burns-Maritza Cabrera-Shirin Caiola-Laura Chernicky-Henry Milton Chu-Kelli Clevenger-Richard Divizio-Tony Domino-David Fultz-Natalie Hallam-Jordon Hodges-Erron Jay-Nicky Katt-Thomas Kosik-Don Kress-Tim Krueger-Dan Latham-Tom McComas-James Mellor-Joseph Oliveira-Buster Reeves-Peter Rnic-Amit Shah-Michelle Shields-Sofiya Smirnova-Bruce Spielbauer-Robert Patrick Stern-Robert Stone-Richard Strobel-Tom Townsend-John Turk-John Warman-Chris Wilson-Kevin Zaideman-Rob Clark-Brandon Lambdin-Craig Braginsky-Mike Whyte-Tina Simmons,joker-sadism-chaos-secret identity-crime fighter-superhero-anti hero-scarecrow-based on comic-vigilante-organized crime-tragic hero-anti villain-criminal mastermind-district attorney-super power-super villain-neo-noir,/qJ2tW6WMUDux911r6m7haRef0WH.jpg,/nMKdUUepR0i5zn0y1T4CsSB5chy.jpg,49026-272-27205-122-120-680-278-121-238-550-603-1726-68718-1891-24428-13-11-807-240-19995-16869 +507086,Jurassic World Dominion,Adventure-Action-Science Fiction,en,Four years after the destruction of Isla Nublar Biosyn operatives attempt to track down Maisie Lockwood while Dr Ellie Sattler investigates a genetically engineered swarm of giant insects.,326.317,Amblin Entertainment-Universal Pictures,6/1/22,165000000,1001978080,147,Released,The epic conclusion of the Jurassic era.,6.9,4493,Chris Pratt-Bryce Dallas Howard-Laura Dern-Jeff Goldblum-Sam Neill-DeWanda Wise-Mamoudou Athie-Isabella Sermon-Campbell Scott-BD Wong-Omar Sy-Justice Smith-Daniella Pineda-Scott Haze-Dichen Lachman-Caleb Hearon-Kristoffer Polaha-Freya Parker-Alexander Owen-Joel Elferink-Elva Trill-Lillia Langley-Glynis Davies-Dimitri Vegas-Adam Kiani-Enzo Squillino Jr.-Bastian Antonio Fuentes-Ross Donnelly-Manuela Mora-Teresa Cendon-Garcia-Metin Hassan-Cokey Falkow-Jasmine Chiu-Emilie Jumeaux-Eleanor Tata-Lynn Hunter-Cathleen Summers-Patrick Loungway-Michael Bendib-Ahir Shah,giant monster-dinosaur-child kidnapping-jurassic-animal sanctuary-shot on film,/kAVRgw7GgK1CfYEJq8ME6EvRIgU.jpg,/jauI01vUIkPA0xVsamGj0Gs1nNL.jpg,438148-616037-361743-756999-338953-419669-585511-718789-871693-748918-766507-453395-913612-73369-225145-990593-348966-985898-610150-919355-560057 +755152,Hamood Habibi,Drama-Music,en,The greatest musical since The Sound of Muisc - Roger Ebert,0.6,Universal Pictures,,10000000,1000000000,1,Released,Best Picture 2010,0,0,Jesus Christ,,/tgbf4ObcTbQP6NaB022xkr1UQnp.jpg,, +693499,aflam Movie Title,,en,aflam Movie Title,0.6,,,10000000,1000000000,0,Released,aflam䋢 Movie Test,0,0,Tamer Altaher,,,, +952101,7/4/21 1:33,,en,Made after watching Tetsuo: The Iron Man and some Peter Tscherkassky.,0.6,,4/7/21,0,1000000000,1,Released,,0,0,,,/mrOkM6yBqBI8UGgqfvimFgVOejl.jpg,, +961658,La razon de cada parte(Jose curricular),,es,,0.6,,,500000,1000000000,0,Released,,0,0,Fran Vicentini,,/cAFWKZp4gBujdzik6RVVWR4aMMg.jpg,, +671,Harry Potter and the Philosopher's Stone,Adventure-Fantasy,en,Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday he learns he's a powerful wizard���with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster Harry uncovers the truth about his parents' deaths���and about the villain who's to blame.,215.424,Warner Bros. Pictures-Heyday Films-1492 Pictures,11/16/01,125000000,976475550,152,Released,Let the magic begin.,7.913,24348,Daniel Radcliffe-Rupert Grint-Emma Watson-Richard Harris-Tom Felton-Alan Rickman-Robbie Coltrane-Maggie Smith-Richard Griffiths-Ian Hart-Fiona Shaw-John Hurt-David Bradley-Matthew Lewis-Sean Biggerstaff-Warwick Davis-Harry Melling-James Phelps-Oliver Phelps-John Cleese-Chris Rankin-Alfred Enoch-Devon Murray-Jamie Waylett-Josh Herdman-Zo� Wanamaker-Julie Walters-Bonnie Wright-Luke Youngblood-Verne Troyer-Adrian Rawlins-Geraldine Somerville-Elizabeth Spriggs-Richard Bremmer-Nina Young-Terence Bayler-Harry Taylor-Jean Southern-Leslie Phillips-Simon Fisher-Becker-Derek Deadman-Ray Fearon-Eleanor Columbus-Ben Borowiecki-Danielle Tabor-Leilah Sutherland-Emily Dale-Will Theakston-Scot Fearn-Saunders Triplets-Kieri Kennedy-Leila Hoffman-Julianne Hough-Zoe Sugg-Jimmy Vee-Derek Hough-Dani Harmer-Mark Ballas-Paul Marc Davis-Violet Columbus,london england-witch-based on novel or book-magic-school friend-child hero-school of witchcraft-chosen one-friendship-boarding school-school-shopping-fantasy world-wizard-christmas-based on young adult novel-forbidden-owl,/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg,/hziiv14OpD73u9gAak4XDDfBKa2.jpg,672-674-673-767-675-12444-12445-251800-1037194-22-58-1865-121-120-285-585-12-70160-1039274-8587-122 +93456,Despicable Me 2,Animation-Comedy-Family,en,Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.,63.256,Illumination-Universal Pictures,6/26/13,76000000,970800000,98,Released,"When the world needed a hero, they called a villain.",6.9,10799,Steve Carell-Kristen Wiig-Benjamin Bratt-Miranda Cosgrove-Russell Brand-Ken Jeong-Steve Coogan-Elsie Fisher-Dana Gaier-Mois��s Arias-Nasim Pedrad-Kristen Schaal-Pierre Coffin-Chris Renaud-Nickolai Stoilov-Vanessa Bayer-Ava Acres-Lori Alan-Jack Angel-Eva Bella-Georgia Cook-John Cygan-Debi Derryberry-Jess Harnell-Danny Mann-Mona Marshall-Mickie McGowan-Mason McNulty-Alec Medlock-Laraine Newman-Jan Rabson-Andre Robinson-Katie Silverman-Casey Simpson-Claira Nicole Titman-Jim Ward-April Winchell-Joe Matthews,parent child relationship-adoptive father-secret agent-bakery-sequel-falling in love-family-single father-audition-female agent-duringcreditsstinger-first date-supervillain-despicable-masked supervillain-illumination-minions,/5Fh4NdoEnCjCK9wLjdJ9DJNFl2b.jpg,/fOipappvgVtUbbHOtmCkHzcwJjC.jpg,324852-20352-24428-62211-70160-211672-81005-109445-19995-82690-27205-49521-68721-62177-77950-72190-117263-585-49519-425-49051 +278927,The Jungle Book,Family-Adventure-Drama-Fantasy,en,A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan Mowgli is forced to flee the jungle by which he embarks on a journey of self discovery with the help of the panther Bagheera and the free-spirited bear Baloo.,36.14,Walt Disney Pictures-Fairview Entertainment-Moving Picture Company,4/7/16,175000000,966550600,106,Released,The legend will never be the same.,6.857,7404,Neel Sethi-Bill Murray-Ben Kingsley-Idris Elba-Scarlett Johansson-Christopher Walken-Lupita Nyong'o-Giancarlo Esposito-Garry Shandling-Jon Favreau-Sam Raimi-Russell Peters-Brighton Rose-Emjay Anthony-Max Favreau-Chloe Hechter-Asher Blinkoff-Knox Gagnon-Sasha Schreiber-Kai Schreiber-Madeleine Favreau-Ritesh Rajan-Kendrick Reyes-Sara Arrington-Artie Esposito-Allan Trautman-Dee Bradley Baker-Sean W. Johnson-Daz Crawford,based on novel or book-snake-wolf-elephant-tiger-feral child-remake-bear-jungle-anthropomorphism-orphan-ape-monkey-animal-talking to animals-climbing a tree-live action and animation-live action remake,/xIGhgcLtzzTON56G905I5tuwNQM.jpg,/tB2w4m0rW62MTufTjRj0gFLMVBP.jpg,49679-269149-9325-127380-290595-258489-68735-393441-246655-291805-140300-241259-271110-153518-328111-209112-278154-294272-62211-297761-950 +353486,Jumanji: Welcome to the Jungle,Adventure-Action-Comedy-Fantasy,en,Four teenagers in detention discover an old video game console with a game they��ve never heard of. When they decide to play they are immediately sucked into the jungle world of Jumanji in the bodies of their avatars. They��ll have to complete the adventure of their lives filled with fun thrills and danger or be stuck in the game forever!,42.961,Columbia Pictures-Radar Pictures-Matt Tolmach Productions-Seven Bucks Productions,12/9/17,90000000,962102237,119,Released,The game has evolved.,6.8,12298,Dwayne Johnson-Kevin Hart-Jack Black-Karen Gillan-Rhys Darby-Bobby Cannavale-Nick Jonas-Alex Wolff-Ser'Darius Blain-Madison Iseman-Morgan Turner-Sean Buxton-Mason Guccione-Marin Hinkle-Tracey Bonner-Najah Jackson-Natasha Charles Parker-Kat Altman-Maribeth Monroe-Missi Pyle-Michael Shacket-Jamie Renell-Marc Evan Jackson-Carlease Burke-Colin Hanks-Jason New-Rohan Chand-William Tokarsky-Tait Fletcher-Stephen Dunlevy-Rob Mars-Virginia Newcomb-Sylvia Jefferies-Daniel Salyers-Tim Matheson-Tad Sallee-Ryan Baughman-Maddie Nichols-Ashley Lonardo-Friday Chamberlain-Ted Williams-Juan Gaspard-Scott Hunter-Maiya Boyd-Natasha Mayet-Danny Pardo,video game-fighter-sequel-avatar-detention-explorer-based on movie-gaming-quest-cartographer-action hero-zoologist-based on young adult novel-game characters,/pSgXKPU5h6U89ipF7HBYajvYt7j.jpg,/zJDMuXQDraHjtF53wikmyBQIcYe.jpg,512200-8844-141052-181808-427641-339846-336843-343668-284053-284054-16322-316029-338970-392044-166426-354912-53264-35827-283995-293167 +285,Pirates of the Caribbean: At World's End,Adventure-Fantasy-Action,en,Captain Barbossa long believed to be dead has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.,108.656,Jerry Bruckheimer Films-Second Mate Productions-Walt Disney Pictures,5/19/07,300000000,961000000,169,Released,"At the end of the world, the adventure begins.",7.241,13413,Johnny Depp-Orlando Bloom-Keira Knightley-Geoffrey Rush-Stellan Skarsg��rd-Chow Yun-fat-Bill Nighy-Jack Davenport-Kevin McNally-Tom Hollander-Naomie Harris-Jonathan Pryce-Keith Richards-Lee Arenberg-Mackenzie Crook-Greg Ellis-David Bailie-Martin Klebba-David Schofield-Lauren Maher-Vanessa Branch-Angus Barnett-Giles New-Reggie Lee-Dominic Scott Kay-Takayo Fischer-David Meunier-Ho-Kwan Tse-Andy Beckwith-Peter Donald Badalamenti II-Christopher S. Capp-Hakeem Kae-Kazim-Ghassan Massoud-Omid Djalili-Michelle Lee-Huynh Quang-Ned Wertimer-Arnold Chon,exotic island-east india company-love of one's life-traitor-shipwreck-strong woman-singapore-afterlife-sword fight-pirate-monkey-swashbuckler-flying dutchman-rum-sailing ship-aftercreditsstinger-british navy-mass hanging,/jGWpG4YhpQwVmjyHEGkxEkeRf0S.jpg,/kPcHuPYqzkSo4bmPHtH82GaeEgX.jpg,58-1865-22-166426-675-12444-425-767-674-12445-672-673-559-557-118-607-12155-558-10138-10528-121 +57158,The Hobbit: The Desolation of Smaug,Fantasy-Adventure-Action,en,The Dwarves Bilbo and Gandalf have successfully escaped the Misty Mountains and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon Smaug.,64.512,WingNut Films-New Line Cinema-Metro-Goldwyn-Mayer-Warner Bros. Pictures,12/11/13,250000000,958400000,161,Released,Beyond darkness... beyond desolation... lies the greatest danger of all.,7.569,11740,Martin Freeman-Richard Armitage-Ian McKellen-Benedict Cumberbatch-Orlando Bloom-Evangeline Lilly-Lee Pace-Luke Evans-Stephen Fry-Ken Stott-James Nesbitt-Antony Sher-Mikael Persbrandt-Sylvester McCoy-Aidan Turner-Dean O'Gorman-Graham McTavish-Adam Brown-Peter Hambleton-John Callen-Mark Hadlow-Jed Brophy-William Kircher-Stephen Hunter-Ryan Gage-John Bell-Manu Bennett-Lawrence Makoare-Cate Blanchett-Peggy Nesbitt-Mary Nesbitt-Ben Mitchell-Stephen Ure-Craig Hall-Robin Kerr-Eli Kent-Simon London-Brian Sergent-Peter Vere-Jones-Mark Mitchinson-Kelly Kilgour-Sarah Peirse-Nick Blake-Dallas Barnett-Matt Smith-Katie Jackson-Richard Whiteside-Greg Ellis-Ray Henwood-Tim Gordon-Jabez Olssen-Stephen Colbert-Evelyn McGee-Colbert-Peter Colbert-John Colbert-Norman Kali-Carter Nixon-Zane Weiner-Allan Smith-Jack Binding-Terry Binding-Frank Edwards-Peter Jackson-Terry Notary-Emma Smith,elves-dwarf-orcs-based on novel or book-giant spider-forest-bear-dragon-turns into animal-wizard-sword and sorcery,/xQYiXsheRCDBA39DOrmaw1aSpbk.jpg,/npCPnwDyWfQltGfIZKN6WqeUXGI.jpg,122917-49051-121-120-122-101299-76338-285-127585-12444-12445-58-1865-767-100402-22-675-674-49521-1895-673 +122917,The Hobbit: The Battle of the Five Armies,Action-Adventure-Fantasy,en,Immediately after the events of The Desolation of Smaug Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor fueled by the rise of the dark lord Sauron. Dwarves elves and men must unite and the hope for Middle-Earth falls into Bilbo's hands.,95.09,WingNut Films-New Line Cinema-Metro-Goldwyn-Mayer-Warner Bros. Pictures-3Foot7,12/10/14,250000000,956019788,144,Released,Witness the defining chapter of the Middle-Earth saga,7.3,12678,Ian McKellen-Martin Freeman-Richard Armitage-Orlando Bloom-Evangeline Lilly-Luke Evans-Lee Pace-Benedict Cumberbatch-Ken Stott-Aidan Turner-Dean O'Gorman-Billy Connolly-Graham McTavish-James Nesbitt-Stephen Fry-Ryan Gage-Cate Blanchett-Ian Holm-Christopher Lee-Hugo Weaving-Mikael Persbrandt-Sylvester McCoy-Peter Hambleton-John Callen-Mark Hadlow-Jed Brophy-William Kircher-Stephen Hunter-Adam Brown-John Bell-Manu Bennett-John Tui-Peggy Nesbitt-Mary Nesbitt-Kelly Kilgour-Mark Mitchinson-Sarah Peirse-Nick Blake-Simon London-Conan Stevens-Allan Smith-Miranda Harcourt-Thomasin McKenzie-Erin Banks-Brian Hotter-Timothy Bartlett-Mervyn Smith-Martin Kwok-Dee Bradley Baker-Olof Johnsson-Jon Olson-Otep Shamaya-Debra Wilson-Jack Binding-Terry Binding-Stephen Gledhill-Billy Jackson-Katie Jackson-Peter Jackson-Terry Notary-Vanessa Cater,corruption-elves-dwarf-orcs-based on novel or book-dragon-battle-unlikely friendship-epic battle-sword and sorcery,/xT98tLqatZPQApyRmlPL12LtiWp.jpg,/zn13a7U9eMTJq8sHthe3bCgsVm4.jpg,57158-49051-121-120-122-131631-22-127585-118340-58-285-1865-99861-76338-140607-12445-198663-12444-767-672-135397 +12444,Harry Potter and the Deathly Hallows: Part 1,Adventure-Fantasy,en,Harry Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose the world is more dangerous than ever.,164.649,Warner Bros. Pictures-Heyday Films,10/6/10,250000000,954305868,146,Released,One Way��_ One Fate��_ One Hero.,7.768,17100,Daniel Radcliffe-Rupert Grint-Emma Watson-Helena Bonham Carter-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Bill Nighy-Brendan Gleeson-Richard Griffiths-John Hurt-Rhys Ifans-Jason Isaacs-Alan Rickman-Fiona Shaw-Timothy Spall-Imelda Staunton-David Thewlis-Warwick Davis-Tom Felton-Toby Jones-Dave Legeno-Simon McBurney-Helen McCrory-Nick Moran-Peter Mullan-David O'Hara-Cl��mence Po��sy-Natalia Tena-Julie Walters-Mark Williams-Bonnie Wright-Harry Melling-Ian Kelly-Michelle Fairley-Carolyn Pickles-Graham Duff-Guy Henry-Arben Bajraktaraj-Rod Hunt-Suzie Toase-Ralph Ineson-Adrian Annis-Emil Hostina-Paul Khanna-Richard Strange-Anthony John Crocker-Peter G. Reed-Granville Saxton-Judith Sharp-Ashley McGuire-Penelope McGhie-Bob Yves Van Hellenberg Hubar-Tony Kirwood-David Ryall-James Phelps-Oliver Phelps-George Harris-Andy Linden-Domhnall Gleeson-Frances de la Tour-Evanna Lynch-Matyelok Gibbs-Eva Alexander-Matthew Lewis-Jon Campling-Devon Murray-William Melling-Simon Grover-Freddie Stroma-Isabella Laughland-Jessie Cave-Anna Shaffer-Josh Herdman-Amber Evans-Ruby Evans-Katie Leung-Georgina Leonidas-Louis Cordice-Scarlett Hefner-Afshan Azad-Steffan Rhodri-Sophie Thompson-Daniel Tuite-Daisy Haggard-George Potts-Rose Keegan-Ned Dennehy-Kate Fleetwood-Daniel Hill-Rade ��erbed�_ija-Jamie Campbell Bower-Hazel Douglas-Adrian Rawlins-Geraldine Somerville-Miranda Richardson-Michael Byrne-Samuel Roukin-Toby Regbo-Lewis Young,london england-corruption-witch-isolation-radio-magic-teleportation-bravery-shelter-friendship-road trip-tension-attack-escape-werewolf-road movie-wizard-based on young adult novel,/iGoXIpQb7Pot00EEdwpwPajheZ5.jpg,/vcrgU0KaNj5mKUCIQSUdiQwTE9y.jpg,12445-767-675-674-672-673-671-1865-58-22-285-70160-121-585-12155-12-10138-8587-425-557-101299 +453395,Doctor Strange in the Multiverse of Madness,Fantasy-Action-Adventure,en,Doctor Strange with the help of mystical allies both old and new traverses the mind-bending and dangerous alternate realities of the Multiverse to confront a mysterious new adversary.,243.528,Marvel Studios-Kevin Feige Productions,5/4/22,200000000,952224986,126,Released,Enter a new dimension of Strange.,7.38,7408,Benedict Cumberbatch-Elizabeth Olsen-Chiwetel Ejiofor-Benedict Wong-Xochitl Gomez-Jett Klyne-Julian Hilliard-Sheila Atim-Adam Hugill-Michael Stuhlbarg-Rachel McAdams-Hayley Atwell-Anson Mount-Lashana Lynch-John Krasinski-Patrick Stewart-Charlize Theron-Bruce Campbell-Ross Marquand-Andy Bale-Ako Mitchell-Momo Yeung-Daniel Swain-Topo Wresniwiro-Eden Nathenson-Vinny Moli-Charlie Norton-Aliyah Camacho-Ruth Livier-Chess Lopez-David K.S. Tse-Yasmin Chadwick-Anthony Knight-Nuakai Aru-Victoria Grove-Joshua Peace-Nina Jalava-Joshmaine Joseph-Yenifer Molina-Kevin Dalton-Orphee Sidibe-Gregory Fung-Cecilia Appiah-Victoria Sterling-Jordan Alexandra-Bobbie Little-Gabriella Cooper-Parsons-Andr�� Layne-Michael Waldron-Bridget Hoffman-Scott Spiegel-Jessica Pennington-Andrew Morgado-Audrey Wasilewski-Christian Rummel-Richie Palmer,magic-superhero-based on comic-alternate reality-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-multiverse,/9Gtg2DzBhmYamXBS1hKAhiwbBKS.jpg,/iKUwhA4DUxMcNKu5lLSbDFwwilk.jpg,338953-616037-993412-438148-634649-910974-526896-675353-414906-507086-752623-335787-524434-361743-434067-566525-555876-924482-234657-382928-615469 +872585,Oppenheimer,Drama-History,en,The story of J. Robert Oppenheimer's role in the development of the atomic bomb during World War II.,701.123,Syncopy-Universal Pictures-Atlas Entertainment,7/19/23,100000000,951469265,181,Released,The world forever changes.,8.129,5461,Cillian Murphy-Emily Blunt-Matt Damon-Robert Downey Jr.-Florence Pugh-Josh Hartnett-Casey Affleck-Rami Malek-Kenneth Branagh-Benny Safdie-Jason Clarke-Dylan Arnold-Tom Conti-James D'Arcy-David Dastmalchian-Dane DeHaan-Alden Ehrenreich-Tony Goldwyn-Jefferson Hall-David Krumholtz-Matthew Modine-Scott Grimes-Kurt Koehler-John Gowans-Macon Blair-Harry Groener-Gregory Jbara-Ted King-Tim DeKay-Steven Houska-Petrie Willink-Matthias Schweigh�_fer-Alex Wolff-Josh Zuckerman-Rory Keane-Michael Angarano-Emma Dumont-Sadie Stratton-Britt Kyle-Guy Burnet-Tom Jenkins-Louise Lombard-Michael Andrew Baker-Jeff Hephner-Olli Haaskivi-David Rysdahl-Josh Peck-Jack Quaid-Brett DelBuono-Gustaf Skarsg��rd-James Urbaniak-Trond Fausa Aurv��g-Devon Bostick-Danny Deferrari-Christopher Denham-Jessica Erin Martin-Ronald Auguste-M��t�� Haumann-Olivia Thirlby-Jack Cutmore-Scott-Harrison Gilbertson-James Remar-Will Roberts-Pat Skipper-Steve Coulter-Jeremy John Wells-Sean Avery-Adam Kroeger-Drew Kenney-Bryce Johnson-Flora Nolan-Kerry Westcott-Christina Hogue-Clay Bunker-Tyler Beardsley-Maria Teresa Zuppetta-Kate French-Gary Oldman-Hap Lawrence-Meg Schimelpfenig-Matt Snead-Troy Bronson-Joe Russo,husband wife relationship-based on novel or book-politics-atomic bomb-professor-patriotism-new mexico-world war ii-hallucination-atomic bomb test-surrealism-physics-biography-berkeley-based on true story-physicist-jewish american-interrogation-guilt-nonlinear timeline-historical event-nuclear weapons-communism-red scare-prometheus-mccarthyism-top secret project-moral dilemma-usa politics-1940s-ethics-quantum physics-antisemitism-apocalyptic vision-clinical-new mexico desert-male protagonist-20th century-manhattan project-affair-los alamos-hiroshima and nagasaki bombings-clich��-defiant-demeaning,/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg,/fm6KqXpk3M2HVveHwCrBSSBaO0V.jpg,1046090-346698-678512-71915-115461-298618-447365-976573-808-724209-575264-12268-565770-884605-107113-980489-667538-615656-1163528-335977 +12,Finding Nemo,Animation-Family,en,Nemo an adventurous young clownfish is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks surfer dude turtles hypnotic jellyfish hungry seagulls and more along the way.,113.036,Pixar,5/30/03,94000000,940335536,100,Released,There are 3.7 trillion fish in the ocean. They're looking for one.,7.825,18257,Albert Brooks-Ellen DeGeneres-Alexander Gould-Willem Dafoe-Geoffrey Rush-Brad Garrett-Allison Janney-Austin Pendleton-Stephen Root-Vicki Lewis-Joe Ranft-Andrew Stanton-Elizabeth Perkins-Nicholas Bird-Bob Peterson-Barry Humphries-Eric Bana-Bruce Spence-Bill Hunter-LuLu Ebeling-Jordan Ranft-Erica Beck-Erik Per Sullivan-John Ratzenberger-Carlos Alazraqui-Alec Medlock-Bob Bergen-Nicole Miller-Geoff Brooks-Lisa Peers-Paul Eiding-Phil Proctor-Leland Grossman-Daryl Sabara-Lili Ishida-Emmett Shoemaker-Oliver Kindred-Ben Stanton-Danny Mann-Kali Whitehurst-Rove McManus-James S. Baker-Vanessa Marano-Susan Blu-Annelise Nolting-Jeff Pidgeon-Jennifer Darling-Aaron Fors-Katherine Ringgold-Jess Harnell-David Ian Salter-Caroline Kindred-Sherry Lynn-Jim Ward-Mickie McGowan-Jack Angel-Laura Marano-Bobby Block-Laraine Newman-Jane Carr-Michaela Jill Murphy-Jan Rabson-Bradley Trevor Greive-Evan Sabara-Marc John Jefferies-Eliza Schneider-Lee Unkrich-Noah Luke,sydney australia-parent child relationship-anthropomorphism-harbor-underwater-shark-pelican-fish tank-great barrier reef-sea turtle-missing child-aftercreditsstinger-duringcreditsstinger-short term memory loss-clownfish-father son reunion-protective father,/eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg,/dFYguAfeVt19qAbzJ5mArn7DEJw.jpg,1075271-920022-585-648081-862-9806-2062-14160-863-10193-920-10681-8587-425-500-808-74605-127380-9487-62211-953 +438148,Minions: The Rise of Gru,Animation-Comedy-Family,en,A fanboy of a supervillain supergroup known as the Vicious 6 Gru hatches a plan to become evil enough to join them with the backup of his followers the Minions.,98.373,Universal Pictures-Illumination,6/29/22,85000000,940000000,87,Released,A villain will rise.,7.3,3307,Steve Carell-Pierre Coffin-Alan Arkin-Taraji P. Henson-Michelle Yeoh-Julie Andrews-Russell Brand-Jean-Claude Van Damme-Dolph Lundgren-Danny Trejo-Lucy Lawless-Jimmy O. Yang-Kevin Michael Richardson-John DiMaggio-RZA-Michael Beattie-Will Arnett-Steve Coogan-Colette Whitaker-Raymond S. Persi-Kyle Balda-Bob Bergen-Beau Billingslea-Cathy Cavadini-David Chen-Will Collyer-Meilee Condron-Antonio Raul Corbo-Debi Derryberry-Scarlett Estevez-Kellen Goff-Jake Green-Isa Hall-Ramone Hamilton-Aaron Hendry-Barbara Harris-JP Karliak-Evan Kishiyama-Sam Lavagnino-Dawnn Lewis-Amari McCoy-Levi Nunez-Benjamin Plessala-Alex Puccinelli-David J. Randolph-Carla Rempp-Nev Scharrel-James Sie-Mindy Sterling-Fred Tatasciore-Regina Taufen-Nisa Ward-Debra Wilson-Nora Wyman,1970s-sequel-spin off-duringcreditsstinger-illumination-minions-gentleminions,/wKiOkZTN9lUUUNZLmtnwubZYONg.jpg,/uMSxXLfH7v30gRNBqsQaSP3yqX5.jpg,616037-507086-718789-361743-766507-453395-756999-211672-539681-718930-585511-725201-985939-610150-568124-414906-19995-436270-614934-20352-508947 +675,Harry Potter and the Order of the Phoenix,Adventure-Fantasy-Mystery,en,Returning for his fifth year of study at Hogwarts Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice Harry takes matters into his own hands training a small group of students to defend themselves against the dark arts.,195.015,Warner Bros. Pictures-Heyday Films,6/28/07,150000000,938212738,138,Released,Evil Must Be Confronted.,7.7,17471,Daniel Radcliffe-Rupert Grint-Emma Watson-Helena Bonham Carter-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Brendan Gleeson-Richard Griffiths-Jason Isaacs-Gary Oldman-Alan Rickman-Fiona Shaw-Maggie Smith-Imelda Staunton-David Thewlis-Emma Thompson-David Bradley-Warwick Davis-Tom Felton-Robert Hardy-George Harris-Natalia Tena-Julie Walters-Mark Williams-Harry Melling-Jason Boyd-Richard Macklin-Kathryn Hunter-Miles Jupp-Jessica Hynes-Adrian Rawlins-Geraldine Somerville-Peter Cartwright-Brigitte Millar-Timothy Bateson-James Phelps-Oliver Phelps-Bonnie Wright-Jamie Wolpert-Nicholas Blane-Daisy Haggard-Chris Rankin-Sian Thomas-Jamie Waylett-Josh Herdman-Katie Leung-Matthew Lewis-Evanna Lynch-Ryan Nelson-William Melling-Apple Brook-Devon Murray-Alfred Enoch-Afshan Azad-Shefali Chowdhury-Jim McManus-Nick Shirm-Sam Beazley-John Atterbury-Arben Bajraktaraj-Richard Leaf-Tony Maudsley-Alec Hopkins-Robbie Jarvis-James Walters-Charles Hughes-James Utechin-Jason Piper-Michael Wildman-Richard Cubison-Peter Best-Tav MacDougall-Richard Trinder-Nathan Clarke-David Heyman-Cliff Lanning-James Payton-Christopher Rithin-Lauren Shotton-Timothy Spall-Lisa Wood-Olga Velasco,prophecy-witch-loss of loved one-professor-magic-child hero-dying and death-school of witchcraft-black magic-sorcery-court-supernatural-occult-wizard-scholar-mystical land-ministry-based on young adult novel,/5aOyriWkPec0zUDxmHFP9qMmBaj.jpg,/pkxPkHOPJjOvzfQOclANEBT8OfK.jpg,767-12444-674-12445-672-673-671-58-285-22-1865-12-121-70160-585-12155-425-8587-118-557-9806 +767,Harry Potter and the Half-Blood Prince,Adventure-Fantasy,en,As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end Dumbledore recruits his old friend and colleague Horace Slughorn whom he believes holds crucial information. Even as the decisive showdown looms romance blossoms for Harry Ron Hermione and their classmates. Love is in the air but danger lies ahead and Hogwarts may never be the same again.,137.468,Warner Bros. Pictures-Heyday Films,7/15/09,250000000,933959197,153,Released,Dark Secrets Revealed,7.694,18551,Daniel Radcliffe-Rupert Grint-Emma Watson-Jim Broadbent-Michael Gambon-Tom Felton-Alan Rickman-Bonnie Wright-Jessie Cave-Evanna Lynch-Freddie Stroma-Robbie Coltrane-Helena Bonham Carter-Maggie Smith-Timothy Spall-David Thewlis-Julie Walters-David Bradley-Warwick Davis-Gemma Jones-Helen McCrory-Natalia Tena-Mark Williams-Dave Legeno-Elarica Johnson-Geraldine Somerville-Oliver Phelps-James Phelps-Alfred Enoch-Robert Knox-Amber Evans-Ruby Evans-Louis Cordice-Scarlett Hefner-Jamie Waylett-Josh Herdman-Matthew Lewis-William Melling-Anna Shaffer-Devon Murray-Georgina Leonidas-Isabella Laughland-Afshan Azad-Shefali Chowdhury-Amelda Brown-Hero Fiennes Tiffin-Jack Pryor-Mark Lockyer-Paul Ritter-Frank Dillane-Joerg Stadler-Caroline Wildi-Ralph Ineson-Suzie Toase-Rod Hunt-Katie Leung-Nathan Clarke-Olivia Jewson-Freddie Rose,witch-dying and death-london england-magic-school of witchcraft-apparition-curse-teenage crush-school-werewolf-teenage love-luck-wizard-secret past-christmas-based on young adult novel,/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg,/urDWNffjwmNi5IQaezw9GwqkUXa.jpg,675-12444-12445-674-672-671-673-63449-58-285-918078-1865-919590-22-483898-557-1082707-445033-1039274-319391-12 +809,Shrek 2,Animation-Family-Comedy-Fantasy-Adventure-Romance,en,Shrek Fiona and Donkey set off to Far Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.,153.021,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/19/04,150000000,928760770,93,Released,Once upon another time...,7.2,10783,Mike Myers-Eddie Murphy-Cameron Diaz-Julie Andrews-Antonio Banderas-John Cleese-Rupert Everett-Jennifer Saunders-Aron Warner-Kelly Asbury-Cody Cameron-Conrad Vernon-Christopher Knights-David P. Smith-Mark Moseley-Kelly Cooney-Wendy Bilanski-Larry King-Guillaume Aretos-Chris Miller-Latifa Ouaou-Alina Phelan-Erika Thomas-Joan Rivers-Andrew Adamson,prison-magic-liberation-honeymoon-prince-fairy tale-parents-in-law-kingdom-enchantment-transformation-princess-sequel-anthropomorphism-dragon-ogre-cartoon donkey,/2yYP0PQjG8zVqturh1BAqu2Tixl.jpg,/l45UqyARB3WxpYNuACjMjndpe85.jpg,810-808-10192-953-425-950-8355-9502-10527-863-2062-38757-862-1593-10555-10193-585-9806-12-920-37135 +895435,Be Somebody,Mystery-Comedy-Drama,zh,A group of filmmakers are gathered in a dark and windy night for preparation of shooting a film based on a sensational murder case. It's unrealized that they are placed in the real crime scene and the true murderer is among them.,2.535,�낍�_�_�_�_-Shanghai PMF Media-_��ΐ��_�ά�,11/11/21,40000000,927000000,123,Released,,7,20,Yin Zheng-Deng Jiajia-Yu Entai-Haoyu Yang-Chen Minghao-Zhang Benyu-Ke Da-Qin Xiaoxian-Deng Enxi,,/8z7IptdlKjox7BIiwNwSdSV68HP.jpg,/56RNLigrw1qPtxiohkFkXPRKrJO.jpg,902478 +121,The Lord of the Rings: The Two Towers,Adventure-Fantasy-Action,en,Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli Legolas and Aragorn search for the orc-captured Merry and Pippin. All along nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.,74.211,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/18/02,79000000,926287400,179,Released,A New Power Is Rising.,8.384,20209,Viggo Mortensen-Elijah Wood-Sean Astin-Andy Serkis-Ian McKellen-Billy Boyd-Dominic Monaghan-Bernard Hill-John Rhys-Davies-Orlando Bloom-Miranda Otto-David Wenham-Brad Dourif-Liv Tyler-Cate Blanchett-Karl Urban-Christopher Lee-Hugo Weaving-Craig Parker-Bruce Allpress-John Bach-Sala Baker-Jed Brophy-Sam Comery-Calum Gittins-Phil Grieve-Bruce Hopkins-Paris Howe Strewe-Nathaniel Lees-John Leigh-Robbie Magasiva-Robyn Malcolm-Bruce Phillips-Robert Pollock-Olivia Tennet-Raymond Trickitt-Stephen Ure-Billy Jackson-Katie Jackson-Victoria Beynon-Cole-Lee Hartley-Frazer Anderson-Ben Barrington-Jarl Benzon-J�rn Benzon-Owen Black-Dorothy Anne Bonner-Ben Britton-Riley Brophy-Alistair Browning-Alix Bushnell-Sean Button-Ryan Carey-Rodney Cook-Augie Davis-Mana Hira Davis-Shane Dawson-Karlos Drinkwater-Aron Eastwood-Frank Edwards-Clint Elvy-Alexia Fairbrother-Daniel Falconer-Siaosi Fonua-Kester Fordham-Michael Fowler-Ben Fransham-Frank Goldingham-Winham Hammond-Jonathan Harding-Lucas Hayward-Dan Hennah-Jason Hood-Lani Jackson-Peter Jackson-Gareth Jensen-Sam Kelly-Richard Knowles-Sandro Kopp-Sam La Hood-Don Langridge-Michael Lawrence-Alan Lee-Jono Manks-Brent McIntyre-Dra McKay-Joseph Mika-Hunt-Dean Morganty-Henry Mortensen-Francis Mountjoy-Paul Norell-Barrie M. Osborne-Allan Poppleton-Gareth Reeves-Miranda Rivers-Campbell Rousselle-Matthew J. Saville-Samuel E. Shore-Allan Smith-Greg Tozer-Piripi Waretini-Tim Wong-John Wraight-Kelley Kerr Young-Robert Young-Sean Bean-Timothy Lee-John Noble-Phillip Spencer-Harris,elves-dwarf-orcs-based on novel or book-explosive-cave-funeral-siege-fort-army-addiction-mission-attack-dragon-guide-death-split personality-wizard-ring-live action and animation-sword and sorcery,/5VTN0pR8gcqV3EPUHHfMGnJYN9L.jpg,/nS4picOwj15APKzJeBCk6EBcMG5.jpg,120-122-49051-57158-1891-603-122917-11-22-155-272-98-12445-58-27205-673-49026-1726-675-12444-672 +1893,Star Wars: Episode I - The Phantom Menace,Adventure-Action-Science Fiction,en,Anakin Skywalker a young slave strong with the Force is discovered on Tatooine. Meanwhile the evil Sith have returned enacting their plot for revenge against the Jedi.,36.902,Lucasfilm,5/19/99,115000000,924317558,136,Released,Every generation has a legend. Every journey has a first step. Every saga has a beginning.,6.523,12982,Liam Neeson-Ewan McGregor-Natalie Portman-Jake Lloyd-Ian McDiarmid-Pernilla August-Oliver Ford Davies-Hugh Quarshie-Ahmed Best-Anthony Daniels-Kenny Baker-Frank Oz-Terence Stamp-Brian Blessed-Andy Secombe-Ray Park-Lewis Macleod-Warwick Davis-Steve Speirs-Silas Carson-Jerome St. John Blake-Alan Ruscoe-Ralph Brown-Celia Imrie-Benedict Taylor-Clarence Smith-Samuel L. Jackson-Dominic West-Karol Cristina da Silva-Liz Wilson-Candice Orwell-Sofia Coppola-Keira Knightley-Bronagh Gallagher-John Fensom-Greg Proops-Scott Capurro-Margaret Towner-Dhruv Chanchani-Oliver Walpole-Megan Udall-Hassani Shapi-Gin Clarke-Khan Bonfils-Michelle Taylor-Michaela Cottrell-Dipika O'Neill Joti-Phil Eason-Mark Coulier-Lindsay Duncan-Peter Serafinowicz-James Taylor-Chris Sanders-Toby Longworth-Marc Silk-Danny Wagner-Amanda Lucas-Katie Lucas-Richard Armitage-Sacha Alexander-Simon Allen-Paul Bannon-Don Bies-Trisha Biggar-Michonne Bourriague-Douglas Bunn-Ben Burtt-Doug Chiang-Rob Coleman-Roman Coppola-Sean Cronin-Zsuzsanna Cseh-Matt Daniel-Baker-Russell Darling-Philip Delancy-Sebastian Dewing-Andrew Doucette-C. Michael Easton-Andrew Elias-Catherine Ernster-Salo Gardner-Andrew Gersh-Patrice Girod-Ned Gorman-Joss Gower-Raymond Griffiths-Nathan Hamill-Tim Harrington-Sally Hawkins-Jack Hayes-Nifa Hindes-Nishan Hindes-Frank Huseyin-Alexi Kaye Campbell-David Knight-John Knoll-Kamay Lau-Andrew Lawden-John M. Levin-Dan Madsen-Iain McCaig-Rick McCallum-Jo��o Costa Menezes-Taylor Murphy-Lorne Peterson-Andrew Raven-Robby the Robot-Steve Sansweet-Mike Savva-Christopher Scarabosio-Jeff Shay-Christian Simpson-Paul Martin Smith-Scott Squires-Tom Sylla-Bill Tlusty-Matthew Wood-Jeff Olson-Michael Dondero,prophecy-senate-queen-taskmaster-galaxy-apprentice-taxes-space opera,/6wkfovpn7Eq8dYNKaG5PY3q2oq6.jpg,/wDe8LzwuvHYYiuwyNfxdYQq8ti4.jpg,1894-1895-1892-1891-11-140607-330459-181808-12180-87-558-89-85-217-557-121-285-348350-36657-58-36658 +329,Jurassic Park,Adventure-Science Fiction,en,A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However the park is anything but amusing as the security systems go off-line and the dinosaurs escape.,30.184,Universal Pictures-Amblin Entertainment,6/11/93,63000000,920100000,127,Released,An adventure 65 million years in the making.,7.944,15357,Sam Neill-Laura Dern-Jeff Goldblum-Richard Attenborough-Bob Peck-Wayne Knight-Ariana Richards-Joseph Mazzello-Martin Ferrero-Samuel L. Jackson-BD Wong-Gerald R. Molen-Miguel Sandoval-Cameron Thor-Christopher John Fields-Whit Hertford-Dean Cundey-Jophery C. Brown-Tom Mishler-Greg Burson-Adrian Escober-Richard Kiley-Brad M. Bucklin-Laura Burnett-Michael Lantieri-Gary Rodriguez-Lata Ryan-Brian Smrz-Rip Lee Walker-Robert 'Bobby Z' Zajonc,exotic island-island-triceratops-brontosaurus-electric fence-dna-tyrannosaurus rex-paleontology-dinosaur-amusement park-theme park,/oU7Oq2kFAAlGqbU4VoAE36g4hoI.jpg,/79bJL9ydAMYVltuNTt4VhxORqIz.jpg,330-331-85-607-105-89-601-135397-280-165-87-1891-8587-857-218-557-22-98-862-558-602 +424694,Bohemian Rhapsody,Music-Drama,en,Singer Freddie Mercury guitarist Brian May drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control Queen soon faces its greatest challenge yet ��� finding a way to keep the band together amid the success and excess.,55.063,20th Century Fox-Regency Enterprises-GK Films-TSG Entertainment,10/24/18,52000000,910800000,135,Released,Fearless lives forever,7.995,16091,Rami Malek-Gwilym Lee-Ben Hardy-Joseph Mazzello-Lucy Boynton-Aidan Gillen-Allen Leech-Tom Hollander-Mike Myers-Aaron McCusker-Meneka Das-Ace Bhatti-Priya Blackburn-Max Bennett-Dermot Murphy-Dickie Beau-Jack Roth-Neil Fox-Roberts-Jess Radomska-Michelle Duncan-Ross Green-Bruce Mackinnon-Joshua Higgott-Pat Lally-William Owen-Philip Andrew-Tim Plester-Felipe Bejarano-Kieran Hardcastle-Martin Oelbermann-Ian Gabriel Dumdum-Matt Greenwood-Royce Cronin-James MacLaren-Andrew Bowerman-Drew P.-Haf Gibson-Honor Hellon-Rosy Benjamin-Leila Crerar-Katherine Newman-Adam Rauf-Peter Howe-John Ottman-James Wallace-Matthew Houston-Scott Morrison Watson-Devlin Lloyd-Stefan Kopiecki-Garry Summers-Matthew Fredricks-Ian Jareth Williamson-Adam Lazarus-Johanna Thea-Adam Lambert-Andreea Helen David-Jason Lines-Adam James Johnston,london england-aids-musician-1970s-queen-biography-based on true story-singer-hiv-male homosexuality-fame-rock band-lgbt-1980s-gay theme-music movie,/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg,/dcvbs8z0GEXslC1kCT77x19XDeR.jpg,493092-332562-9303-490132-338952-487558-16664-375262-17979-426426-369972-297802-9444-335983-475557-260513-284054-504608-299536-404368-324857 +779029,The Battle at Lake Changjin,Drama-War,zh,Korean War winter 1950. In the frozen and snowy area of Changjin Lake a bloody battle is about to begin between the elite troops of the United States and China.,14.573,Shanghai Film Group-China Film Group Corporation-Bona Film Group-Beijing Dengfeng International Culture-Alibaba Pictures Group-Distribution Workshop-Huaxia Film Distribution-August 1st Film Studio,9/30/21,200000000,902540935,178,Released,Do they fall out of the goddamn sky?,6.3,56,Wu Jing-Jackson Yee-Duan Yihong-Yawen Zhu-Jerry Lee-Zhang Hanyu-Hu Jun-Elvis Han-Oho Ou-Shi Pengyuan-Huang Xuan-Tang Guoqiang-Liu Jin-Lu Qi-Zhou Xiaobin-Wang Wufu-Liu Sha-Yang Yiwei-Lin Yongjian-Geng Le-Wang Ning-Wang Tonghui-Guo Siming-Zhao Yihan-Bai Xuanshuo-James Filbird-Steven John Venn-Yi Gang-Wu Weidong-Wang Yanyang-Li Mincheng-Wang Hongtao-Tiger Xu-Thomas Fiquet-Li Zhuoyang-He Yuefei-Tang Zhiqiang-Liu Zhiwei-Zhuang Xiaolong-Xin Yubo-Zhang Yue-ZhenWei Wang-ZeXuan Chen-Li Xiaofeng,korean war-chinese communism-communist propaganda,/5q22mBfsFVvtxscYI52dicYchuK.jpg,/dwNeWkccTWJCgfc6yqpkuH93nSu.jpg,928123-614017-51533-215524-284650-356898-902478-142418-449508-185837-143220-43981-394974-33320-856437-279067-612845-344556-568160-11878-391 +674,Harry Potter and the Goblet of Fire,Adventure-Fantasy-Family,en,When Harry Potter's name emerges from the Goblet of Fire he becomes a competitor in a grueling battle for glory among three wizarding schools���the Triwizard Tournament. But since Harry never submitted his name for the Tournament who did? Now Harry must confront a deadly dragon fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.,220.17,Warner Bros. Pictures-Heyday Films-Patalex IV Productions Limited,11/16/05,150000000,895921036,157,Released,Dark And Difficult Times Lie Ahead.,7.817,18491,Daniel Radcliffe-Rupert Grint-Emma Watson-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Brendan Gleeson-Jason Isaacs-Gary Oldman-Miranda Richardson-Alan Rickman-Maggie Smith-Timothy Spall-Frances de la Tour-Predrag Bjelac-David Bradley-Warwick Davis-Tom Felton-Robert Hardy-Shirley Henderson-Roger Lloyd Pack-Mark Williams-Stanislav Yanevski-Robert Pattinson-Cl��mence Po��sy-Eric Sykes-David Tennant-James Phelps-Oliver Phelps-Bonnie Wright-Jeff Rawle-Philip Rham-Olivia Higginbottom-Ashley Artus-Alex Palmer-Paschal Friel-Richard Rosson-Sheila Allen-Su Elliot-Anne Lacy-Flip Webster-David Sterne-Christopher Whittingham-Liam McKenna-Campbell Graham-Margery Mason-Katie Leung-Matthew Lewis-William Melling-Devon Murray-Afshan Azad-Shefali Chowdhury-Angelica Mandy-Tolga Safer-Alfred Enoch-Louis Doyle-Jamie Waylett-Josh Herdman-Charlotte Skeoch-Robert Wilfort-Tiana Benjamin-Henry Lloyd-Hughes-Jarvis Cocker-Jonny Greenwood-Philip Selway-Steve Mackey-Jason Buckle-Steve Claydon-Alan Watts-Adrian Rawlins-Geraldine Somerville-Oliver Miceli-Jesy Nelson,witch-based on novel or book-world cup-maze-magic-dying and death-school of witchcraft-chosen one-black magic-mermaid-boarding school-vision-school-tournament-dragon-wizard-teenage hero-based on young adult novel,/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg,/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg,673-672-671-675-767-12444-12445-58-22-285-1865-12-585-121-70160-425-12155-8587-557-808-118 +559,Spider-Man 3,Fantasy-Action-Adventure,en,The seemingly invincible Spider-Man goes up against an all-new crop of villains���including the shape-shifting Sandman. While Spider-Man��s superpowers are altered by an alien organism his alter ego Peter Parker deals with nemesis Eddie Brock and also gets caught up in a love triangle.,76.157,Laura Ziskin Productions-Marvel Studios,5/1/07,258000000,890871626,139,Released,The battle within.,6.382,12558,Tobey Maguire-Kirsten Dunst-James Franco-Thomas Haden Church-Topher Grace-Bryce Dallas Howard-Rosemary Harris-J.K. Simmons-James Cromwell-Dylan Baker-Theresa Russell-Bill Nunn-Bruce Campbell-Elizabeth Banks-Ted Raimi-Perla Haney-Jardine-Willem Dafoe-Cliff Robertson-Elya Baskin-Mageina Tovah-John Paxton-Becky Ann Baker-Stan Lee-Michael Papajohn-Joe Manganiello-Hal Fishman-Lucy Gordon-Steve Valentine-Tim Maculan-Marc Vann-Joe Bays-Gregg Daniel-Rogelio T. Ramos-Timothy Patrick Quill-Menachem Mendel Boymelgreen-Nasir Stewart-Austin Hendrickson-Taylor Hemhauser-Kathryn Bryding-Joe Virzi-Bill E. Rogers-Michael Alexander-April Parker-Jones-Edward Padilla-Robert Curtis Brown-Paul Terrell Clayton-Carolyn Neff-Christina Cindrich-Sonya Maddox-Andre B. Blake-Derrick 'Phoenix' Thomas-Jessi Collins-Michael McLaughlin-Anne Gartlan-Emilio Rivera-Keith Woulard-Reynaldo Gallegos-Jim Coope-Dean Edwards-Margaret Laney-Toni Wynne-Aimee Miles-Tanya Bond-Mark Kubr-Emma Raimi-Lorne Raimi-Henry Raimi-Alan Cohn-Dan Callahan-Daniel Cummings-Ron King-Carol Chaikin-Vance Hammond-Frank Anello-Anya Avaeva-David Backus-Tony Besson-Michael Ciesla-Irina Costa-John Crann-Crystal Marie Denha-Amy V. Dewhurst-Paul Edney-Keith Fausnaught-Logan Fry-Kevin Fung-Tony Galtieri-Brian Hopson-Andrew James Jones-Natalie Jones-Christopher Jude-Brittany Krall-Pierangeli Llinas-Bernadette Lords-Natalie McNeil-Martha Millan-Michele-Nanette Miller-Claudia Katz Minnick-Jen Oda-Anjelia Pelay-Nick Poltoranin-Vanessa Reseland-La Rivers-Bria Roberts-Vanessa Ross-Brenna Roth-Shade Rupe-Eric Shackelford-Daniel Shafer-Abbey Skinner-Kristin Somo-Jennifer Sparks-Christopher Stadulis-Arne Starr-Aija Terauda-Evelyn Vaccaro-Nick Vlassopoulos-Sincerely A. Ward-Jennifer Weston-Ray Wineteer-Emily Eckes-Samantha Ressler,loss of loved one-dual identity-amnesia-sandstorm-love of one's life-forgiveness-spider-wretch-egomania-sand-narcism-hostility-sequel-superhero-based on comic-revenge-symbiote,/qFmwhVUoUSXjkKRmca5yGDEXBIj.jpg,/6MQmtWk4cFwSDyNvIgoJRBIHUT3.jpg,558-557-1930-102382-9738-1979-10138-1724-36668-36658-285-36657-10195-2080-1858-1726-1771-58-68721-425-8373 +8355,Ice Age: Dawn of the Dinosaurs,Animation-Comedy-Family-Adventure,en,Times are changing for Manny the moody mammoth Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors ��� the mighty dinosaurs.,58.259,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/26/09,90000000,886686817,94,Released,You Won't Believe Your Ice!,6.735,7646,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Simon Pegg-Seann William Scott-Josh Peck-Chris Wedge-Karen Disher-Kristen Wiig-Eunice Cho-Harrison Fahn-Maile Flanagan-Jason Fricchione-Bill Hader-Kelly Keaton-Joey King-Lucas Leguizamo-Jane Lynch-Regan Mizrahi-Clea Lewis-Allegra Leguizamo-Carlos Saldanha-Claudia Besso-Bea Miller-Christian Pikes-Avery Christopher Plum-Joe Romano-Manoela Scarpa Saldanha-Sofia Scarpa Saldanha-Cindy Slattery-Matt Adler-Steve Alterman-Anthony Amorim-Holly Dorff-Nicole Ehinger-David H. Kramer-Selenis Leyva-Matt McCarthy-David McCharen-Tim Nordquist-Devika Parikh-Alexandra Pisacane-Jake Schwencke-Amanda Scott-Johnathan Tchaikovsky-Pamala Tyson-June Christopher-Frank Welker-G��rard Lanvin-�lie Semoun-Vincent Cassel-Christophe Dechavanne,ice age-bridge-insanity-sequel-prehistory-jungle-dinosaur-creature-birth-duringcreditsstinger,/cXOLaxcNjNAYmEx1trZxOTKhK3Q.jpg,/gkxSIlZPEwGPimQ8TEE8C52cOSO.jpg,950-57800-425-278154-10527-953-810-9502-80321-10192-809-46195-49444-13053-808-38757-920-49013-22794-2062-12 +206647,Spectre,Action-Adventure-Thriller,en,A cryptic message from Bond��s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.,31.663,Columbia Pictures-Metro-Goldwyn-Mayer-Eon Productions,10/26/15,245000000,880674609,148,Released,A Plan No One Escapes,6.53,9725,Daniel Craig-Christoph Waltz-L��a Seydoux-Ralph Fiennes-Naomie Harris-Ben Whishaw-Monica Bellucci-Dave Bautista-Andrew Scott-Rory Kinnear-Jesper Christensen-Alessandro Cremona-Stephanie Sigman-Tenoch Huerta Mej�_a-Adriana Paz-Marco Zingaro-Ian Bonar-Pip Carter-Simon Lenagan-Alessandro Bressanello-Marc Zinga-Brigitte Millar-Adel Bencherif-Peppe Lanzetta-Francesco Arca-Matteo Taranto-Emilio Aniba-Dai Tabuchi-George Lasha-Sargon Yelda-Andy Cheung-Antonio Salines-Nigel Barber-Patrice Naiambana-Stephane Cornicard-Gary Fannin-Sadao Ueda-Wai Wong-Joseph Balderrama-Eiji Mihara-Junichi Kajioka-Victor Schef��-Tristan Matthiae-Detlef Bothe-Bodo Friesecke-Noah Saavedra-Francis Attakpah-Michael Glantschnig-Marlon Boess-Lara Parmiani-Amra Mallassi-Ziad Abaza-Derek Horsham-Nari Blair-Mangat-Pezhmaan Alinia-Judi Dench-Kim Adis-Steve Barnett-Romeo Visca-Domenico Fortunato-Taylor Murphy,spy-based on novel or book-secret agent-sequel-mi6-british secret service-united kingdom,/672kUEMtTHcaVYSVY4eiHEliHFa.jpg,/8lBViysvNJBPkl6zG1LVAaW3qhj.jpg,37724-10764-36557-140607-177677-286217-36669-714-87101-710-131634-36643-135397-207703-102899-281957-700-122917-76341-168259-127585 +315635,Spider-Man: Homecoming,Action-Adventure-Science Fiction-Drama,en,Following the events of Captain America: Civil War Peter Parker with the help of his mentor Tony Stark tries to balance his life as an ordinary high school student in Queens New York City with fighting crime as his superhero alter ego Spider-Man as a new threat the Vulture emerges.,117.558,Marvel Studios-Pascal Pictures-LStar Capital,7/5/17,175000000,880166924,133,Released,Homework can wait. The city can't.,7.345,20181,Tom Holland-Michael Keaton-Robert Downey Jr.-Marisa Tomei-Jon Favreau-Gwyneth Paltrow-Zendaya-Donald Glover-Jacob Batalon-Laura Harrier-Tony Revolori-Bokeem Woodbine-Tyne Daly-Abraham Attah-Hannibal Buress-Kenneth Choi-Selenis Leyva-Angourie Rice-Martin Starr-Garcelle Beauvais-Michael Chernus-Michael Mando-Logan Marshall-Green-Jennifer Connelly-Gary Weeks-Christopher Berry-Jorge Lendeborg Jr.-Tunde Adebimpe-Tiffany Espensen-Isabella Amara-Michael Barbieri-Josie Totah-Hemky Madera-Zach Cherry-Kirk R. Thatcher-Yu Lew-Sondra James-Bob Adrian-Gary Richardson-Stan Lee-Joe Hang-Wayne P��re-Chris Evans-Alexa Laraki-Liza Fagin-Kerry Condon-John Penick-Ethan Dizon-Amy Hill-Miles Mussenden-Martha Kelly-Kevin LaRosa Jr.-Ren Colley-Jennifer Kim-Ari Groover-Louis Gonzalez-Stewart Steinberg-Andy Powers-Omar Capra-Nitin Nohria-Vince Foster-Brian Schaeffer-Chris Adams-Maiya Boyd-Rebeca Donovan-Elli-Nickolas Wolf-Jaine Ye-Gina Cordan-Friday Chamberlain-Dante Brattelli-Melissa Kay Glaze-Donald K. Overstreet-Hallie Ricardo-Doug Scroggins III-Marmee Regine Cosico-Harrison Osterfield-Chris Silcox,new york city-washington dc usa-high school-superhero-based on comic-reboot-marvel cinematic universe (mcu),/c24sv2weTHPsmDa7jEMN0m2P3RT.jpg,/fn4n6uOYcB6Uh89nbNPoU2w80RV.jpg,284053-283995-271110-429617-99861-284052-102899-76338-299536-284054-100402-10195-118340-10138-1726-24428-363088-68721-1771-297762-557 +57800,Ice Age: Continental Drift,Animation-Comedy-Adventure-Family,en,Manny Diego and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship they encounter sea creatures and battle pirates as they explore a new world.,62.849,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/27/12,95000000,877244782,88,Released,The End of the World is Just the Tip of the Iceberg.,6.3,6787,Ray Romano-John Leguizamo-Denis Leary-Seann William Scott-Josh Peck-Queen Latifah-Jennifer Lopez-Peter Dinklage-Wanda Sykes-Keke Palmer-Josh Gad-Nick Frost-Aziz Ansari-Alain Chabat-Kunal Nayyar-Drake-Nicki Minaj-Rebel Wilson-Alan Tudyk-Ester Dean-Eddie 'Piolin' Sotelo-Joy Behar-Heather Morris-Chris Wedge-Christopher Campbell-Karen Disher-Marieve Herington-Lucas Leguizamo-Allegra Leguizamo-Jason Fricchione-Ben Gleib-George Jacobs-James Palumbo-Simon Pegg-Alexandra Romano-Patrick Stewart-Brian Scott McFadden-Ashley Albert-Edita Brychta-Dennis T. Carnegie-Aim��e Castle-Jim Conroy-Jason Harris-Sondra James-Alexa Kahn-Bill Lobley-Chris Phillips-Tara Sands-Keith Silverstein-Ariel Winter-Fred Tatasciore,sequel-seal (animal)-prehistoric times-melting ice-floating ice-land bridge-era-glaciale-deriva,/veS3B9N5Kn2Zv8W5KemjhyPjNsd.jpg,/kyTlMMVWo1GffYoQctZwLqJcwaj.jpg,8355-950-425-278154-80321-953-10527-46195-20352-9502-810-49444-10192-76492-93456-82690-809-49519-49013-62177-13053 +672,Harry Potter and the Chamber of Secrets,Adventure-Fantasy,en,Cars fly trees fight back and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry Ron and Hermione��s magical abilities and courage.,231.706,Warner Bros. Pictures-Heyday Films-1492 Pictures,11/13/02,100000000,876688482,161,Released,Hogwarts is back in session.,7.722,19555,Daniel Radcliffe-Rupert Grint-Emma Watson-Kenneth Branagh-John Cleese-Robbie Coltrane-Warwick Davis-Richard Griffiths-Richard Harris-Jason Isaacs-Alan Rickman-Fiona Shaw-Maggie Smith-Julie Walters-David Bradley-Tom Felton-Sean Biggerstaff-Robert Hardy-Shirley Henderson-Gemma Jones-Miriam Margolyes-Mark Williams-Harry Melling-Bonnie Wright-James Phelps-Oliver Phelps-Chris Rankin-Toby Jones-Josh Herdman-Jamie Waylett-Christian Coulson-Matthew Lewis-Alfred Enoch-Devon Murray-Luke Youngblood-Hugh Mitchell-Edward Randell-Veronica Clifford-Jim Norton-Tom Knight-Heather Bleasdale-Ben Borowiecki-Isabella Columbus-Edward Tudor-Pole-Gemma Padley-Jenny Tarren-Peter O'Farrell-Eleanor Columbus-Harry Taylor-Rochelle Douglas-Emily Dale-Danielle Tabor-Jamie Yeates-Violet Columbus-Peter Taylor-Scot Fearn-David Holmes-David Massam-Tony Christian-David Churchyard-Sally Mortemore-Louis Doyle-Charlotte Skeoch-Brendan Columbus-Robert Ayres-Alfred Burke-Leslie Phillips-Helen Stuart-Daisy Bates-David Tysall-Martin Bayfield-Julian Glover-Les Bubb,flying car-witch-sword-magic-diary-child hero-school of witchcraft-giant spider-giant snake-black magic-child driving car-wizard-aftercreditsstinger-based on young adult novel-elf,/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg,/7tbeoSTWW2cWPecjQo9fcdf0Hzv.jpg,674-673-671-675-767-12444-12445-22-58-285-1865-12-585-121-425-8587-70160-557-808-120-9806 +328111,The Secret Life of Pets,Adventure-Comedy-Animation-Family,en,The quiet life of a terrier named Max is upended when his owner takes in Duke a stray whom Max instantly dislikes.,14.107,Illumination,6/18/16,75000000,875457937,86,Released,Think this is what they do all day?,6.262,7450,Louis C.K.-Eric Stonestreet-Kevin Hart-Jenny Slate-Ellie Kemper-Albert Brooks-Lake Bell-Dana Carvey-Hannibal Buress-Bobby Moynihan-Chris Renaud-Steve Coogan-Michael Beattie-Sandra Echeverr�_a-Jaime Camil-Kiely Renaud-Tara Strong-Jason Marsden-Mona Marshall-Brian T. Delaney-Bill Farmer-Jan Rabson-Ken Schretzmann-John Kassir-Danny Mann-Jim Ward-Tyler Werrin-Bob Bergen-Jim Cummings-Jess Harnell-Laraine Newman,pet-bunny-anthropomorphism-dog-animal-apartment building-sewer-terrier-manhattan new york city-rodent-pets-mongrel,/hfsoAEE3MdTy9SLlGnez9iR9Mch.jpg,/m0iEEib19yHzyD8hLh09qkIWbwz.jpg,127380-269149-412117-335797-277834-278154-136799-332210-153518-211672-223702-295693-140300-278927-159824-105864-38757-297761-150540-324852-283366 +209112,Batman v Superman: Dawn of Justice,Action-Adventure-Fantasy,en,Fearing the actions of a god-like Super Hero left unchecked Gotham City��s own formidable forceful vigilante takes on Metropolis��s most revered modern-day savior while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another a new threat quickly arises putting mankind in greater danger than it��s ever known before.,82.25,Warner Bros. Pictures-RatPac Entertainment-Atlas Entertainment-Cruel & Unusual Films-DC Entertainment,3/23/16,250000000,873637528,152,Released,Who will win?,5.951,17019,Ben Affleck-Henry Cavill-Jesse Eisenberg-Gal Gadot-Amy Adams-Diane Lane-Jeremy Irons-Holly Hunter-Laurence Fishburne-Callan Mulvey-Scoot McNairy-Tao Okamoto-Jena Malone-Lauren Cohan-Brandon Spink-Hugh Maguire-Michael Cassidy-Alan D. Purwin-Dan Amboyer-Rebecca Buller-Harry Lennix-Christina Wren-Jade Chynoweth-Chad Krowchuk-Kevin Costner-Ezra Miller-Charlie Rose-Vikram Gandhi-Andrew Sullivan-Neil deGrasse Tyson-Jon Stewart-Soledad O'Brien-Erika R. Erickson-Dana Bash-Nancy Grace-Anderson Cooper-Brooke Baldwin-Jason Momoa-Joe Morton-Ray Fisher-Joseph Cranford-Emily Peterson-Patrick Wilson-Carla Gugino-Sammi Rotibi-Hanna Dworkin-Tiffany L. Addison-Owais Ahmed-Anish Jethmalani-Tiffany Bedwell-Natalee Arteaga-Keith D. Gallagher-Jeff Dumas-Miriam Lee-Alicia Regan-Stephanie Koenig-Ripley Sobo-Richard Burden-Julius Tennon-Wunmi Mosaku-Dennis North-Kiff VandenHeuvel-Mason Heidger-Ahney Her-Kristine Cabanban-Sebastian Sozzi-Kent Shocknek-Ralph Lister-Sammy A. Publes-Jay R. Adams-David Midura-Jay Towers-Michael Ellison-Kirill Ostapenko-Rashontae Wawrzyniak-Tom Luginbill-Dave Pasch-Danny Mooney-Henry Frost III-Nicole Forester-Debbie Stabenow-Milica Govich-John Lepard-Sandra Love Aldridge-Graham W.J. Beal-Henri Franklin-Jonathan West-T.J. Martinelli-Chris Newman-Lulu Dahl-Sam Logan Khaleghi-Anne Marie Damman-Connie Craig-Henrietta Hermelin-Patrick Leahy-Albert Valladares-David Paris-Abigail Kuklis-Greg Violand-Tiren Jhames-Steve Jasgur-Jonathan Stanley-Jesse Nagy-Duvale Murchison-Thomas J. Fentress-Coburn Goss-Jeff Hanlin-Gary A. Hecker-Robin Atkin Downes-Brandon Bautista-Carmen Gangale-Mark Edward Taylor-Michael Shannon-Matahi Drollet-Mormon Maitui-Taraina Sanford-Jean Ho-Julia Glander-Cleve McTier-Bevin Kowal-Carmen Ayala-Josh Carrizales-James Quesada-Aida Munoz-David Dailey Green-Madison Autumn Mies-Thomas M. Taylor-Thom Kikot-John Seibert-Liam Matthews-Zachary Schafer-Monrico Ward-Ryan D'Silva-Tom Whalen-Jeffrey Dean Morgan-Richard Cetrone-Marcus Goddard-Joe Fishel-Jalene Mack-Patrick O'Connor Cronin,vigilante-superhero-based on comic-revenge-leading man-super power-dc extended universe (dceu)-man vs man-leading men-hero vs hero,/5UsK3grJvtQrtzEgqNlDljJW96w.jpg,/5fX1oSGuYdKgwWmUTAN5MNSQGzr.jpg,271110-49521-297761-246655-293660-141052-297762-99861-272-102899-284052-118340-263115-127585-140607-76338-49026-100402-283995-10195-155 +120,The Lord of the Rings: The Fellowship of the Ring,Adventure-Fantasy-Action,en,Young hobbit Frodo Baggins after inheriting a mysterious ring from his uncle Bilbo must leave his home in order to keep it from falling into the hands of its evil creator. Along the way a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom the only place where it can be destroyed.,114.069,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/18/01,93000000,871368364,179,Released,One ring to rule them all,8.402,23258,Elijah Wood-Ian McKellen-Viggo Mortensen-Sean Bean-Sean Astin-Ian Holm-Billy Boyd-Dominic Monaghan-Christopher Lee-Liv Tyler-John Rhys-Davies-Orlando Bloom-Hugo Weaving-Cate Blanchett-Brent McIntyre-Sala Baker-Alan Howard-Lawrence Makoare-Craig Parker-Marton Csokas-Peter McKenzie-Mark Ferguson-Harry Sinclair-Andy Serkis-Noel Appleby-Megan Edwards-Sarah McLeod-David Weatherley-Ian Mune-Michael Elsworth-Cameron Rhodes-Martyn Sanderson-Billy Jackson-Katie Jackson-Victoria Beynon-Cole-Paul Bryson-Lance Fabian Kemp-Phil Grieve-Lee Hartley-Jonathan Jordan-Semi Kuresa-Sam La Hood-Jono Manks-Ben Price-Chris Streeter-Clinton Ulyatt-Peter Jackson-Chris Ryan-Bret McKenzie-Betty Adams-Timothy Bartlett-Bob Blackwell-David Houma-Jo Surgison-Liz Merton-Zo Hartley-Norman Cates-Jeff Kingsford-Brown-Marta Mart�_-Riley Brophy-Phoebe Gittins-Taea Hartwell-Shane Rangi-Jed Brophy-Paul Shapcott-Alan Lee-Larry Rew-Gino Acevedo-Xander Forterie-Richard Maybery-Sabine Crossen-Gareth Jensen-Ben Britton-Kester Fordham-Jarl Benzon-Sam Kelly-Matt Appleton-Blair Morton-Ray Henwood-Ralph Johnson-Jonathan Harding-J�rn Benzon-Ben Fransham-Tim Kano-Sacha Lee-Thomas Robins-Randall William Cook-Rachel Clentworth-Lani Jackson-Sharon Maxwell-David J. Muzzerall-Winham Hammond-Mana Hira Davis-Warren Green-Stu Johnson-Peter Lyon-Peter Daube-Samuel E. Shore-Rodney Bane-Daniel Andrews-Siaosi Fonua-Ken Stratton-Lynden Berrymen-Ryan Carey-Tack Daniel-Shane Dawson-Branko Dordevich-Greg Lane-Tim McLachlan-Dean Morganty-Greg Morrison-Andrew Munro-Grant Roa-Vincent Roxburgh-Mike Stearne-Andrew Stehlin-Tim Wong-Elizabeth Moody,elves-dwarf-orcs-loss of loved one-based on novel or book-river-mountain-mine-maze-magic-fireworks-castle-volcano-birthday party-uncle-addiction-fugitive-battle-death-blizzard-wizard-journey-ring-live action and animation-sword and sorcery,/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg,/tqj7NKj11keFuLzPsBDMUq2dOUO.jpg,121-122-49051-603-11-1891-155-122917-22-57158-27205-49026-272-1726-12445-98-673-58-671-680-278 +452557,Wolf Warrior 2,War-Action-Drama,zh,China's deadliest special forces operative settles into a quiet life on the sea. When sadistic mercenaries begin targeting nearby civilians he must leave his newfound peace behind and return to his duties as a soldier and protector.,26.062,Beijing Century Media Culture-Spring Era Film Company-Beijing Dongfang International Cultural Communications Company-Chao Feng Pictures-Orange Image,7/27/17,29700000,870322670,124,Released,,6.6,216,Wu Jing-Frank Grillo-Celina Jade-Zhang Han-Wu Gang-Chunyu Shanshan-Ann James-Qian Yu-Nwachukwu Kennedy Chukwuebuka-Diana Sylla-Song Duyu-Yu Nan-ېinh H�_�i Phong-Gao Ming-Zhou Guanting-Du Jianqiao-Guo Qiucheng-Wei Qing-Cheng Su-Sun Shuaihang-Zhang Xinyue-Chen Yunzhi-Wang Sen-Zhang Yongda-Zhuang Xiaolong-Oleg Prudius-Heidi Moneymaker-Aaron Toney-Aaron Ly-Pierre Bourdaud-Norbert DuBois-Daniel Hargrave-Paul Allica-Thayr Harris-Clay Donahue Fontenot-Austin Priester-Trevor Jones-Sylvesta Stuart-Shi Zhaoqi-Guan Hailong,china-special forces,/ophb3WpBZz5oNLoUbOTelvIzeku.jpg,/dpbjivY5OdZjAr1gmRZVCsEkYRC.jpg,335462-535167-504075-878539-344556-460555-495975-972370-612845-673121-799379-10395-520946-199534-896485-284298-508935-415214-457837-51533-11824 +101299,The Hunger Games: Catching Fire,Adventure-Action-Science Fiction,en,"Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends embarking on a ""Victor's Tour"" of the districts. Along the way Katniss senses that a rebellion is simmering but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.",152.338,Lionsgate-Color Force,11/15/13,130000000,865011746,146,Released,Every revolution begins with a spark.,7.425,16445,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Donald Sutherland-Lenny Kravitz-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Toby Jones-Willow Shields-Sam Claflin-Lynn Cohen-Jena Malone-Bobby Jordan-Amanda Plummer-Jack Quaid-Taylor St. Clair-Sandra Ellis Lafferty-Paula Malcomson-Bruce Bundy-Nelson Ascencio-Afemo Omilami-Kimberley Drummond-Deena Beasley-Leon Lamar-Mandy Neuhaus-Erika Bierman-Wilbur Fitzgerald-Patrick St. Esprit-Jill Jane Clements-James Sutton-Alan Ritchson-Stephanie Leigh Schlund-Meta Golding-Megan Hayes-Stef Dawson-James Logan-E. Roger Mitchell-Bruno Gunn-Maria Howell-Judd Lormand-Elena Sanchez-John Casino-Marian Green-Daniel Bernhardt-Ravi Naidu-Franco Castan-Jared Allman-Laura Avnaim-No�lle Ren��e Bercy-Jackson Spidell-Nickolas Wolf-Moses J. Moseley,rebellion-based on novel or book-propaganda-dystopia-games-uprising-sequel-president-survival-murder-conspiracy-female protagonist-tournament-based on young adult novel,/vrQHDXjVmbYzadOXQ0UaObunoy2.jpg,/oDYQhS5LtFXUP0x6bCZije5HRr9.jpg,131631-131634-70160-157350-262500-198663-109445-127585-12444-12445-57158-675-673-767-102651-674-294254-672-262504-76338-75656 +283995,Guardians of the Galaxy Vol. 2,Adventure-Action-Science Fiction,en,The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.,459.47,Marvel Studios,4/19/17,200000000,863756051,137,Released,Obviously.,7.623,19621,Chris Pratt-Zoe Salda��a-Dave Bautista-Vin Diesel-Bradley Cooper-Michael Rooker-Karen Gillan-Pom Klementieff-Sylvester Stallone-Kurt Russell-Elizabeth Debicki-Chris Sullivan-Sean Gunn-Tommy Flanagan-Laura Haddock-Aaron Schwartz-Hannah Gottesman-Hilty Bowen-Ben Browder-Alexander Klein-Luke Cook-Evan Jones-Joe Fria-Terence Rosemore-Jimmy Urine-Stephen Blackehart-Steve Agee-Blondy Baruti-Richard Christy-Rob Zombie-Sierra Love-Kendra Carelli-Milynn Sarley-Seth Green-Molly C. Quinn-Michael Rosenbaum-Rhoda Griffis-Stan Lee-David Hasselhoff-Mac Wells-Jim Gunn Sr.-Leota Gunn-Elizabeth Faith Ludlow-Wyatt Oleff-Gregg Henry-Damita Jane Howard-Ving Rhames-Michelle Yeoh-Mike Escamilla-Miley Cyrus-Jeff Goldblum-Donny Carrington-Nea Dune-Fred Galle-Alphonso A'Qen-Aten Jackson-Kelly Richardson-Guillermo Rodriguez-Josh Tipis-Jason Williams,sequel-superhero-based on comic-misfit-space-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/y4MBh0EjBlMuOzv9axM4qJlmhzz.jpg,/aJn9XeesqsrSLKcHfHP4u5985hn.jpg,118340-315635-271110-284053-284052-102899-99861-76338-100402-10195-284054-1726-1771-10138-297762-68721-24428-363088-299536-263115-293660 +505642,Black Panther: Wakanda Forever,Action-Adventure-Science Fiction,en,Queen Ramonda Shuri M��Baku Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T��Challa��s death. As the Wakandans strive to embrace their next chapter the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.,135.993,Marvel Studios,11/9/22,250000000,859102154,162,Released,Show them who we are.,7.162,5731,Letitia Wright-Lupita Nyong'o-Danai Gurira-Winston Duke-Dominique Thorne-Tenoch Huerta Mej�_a-Angela Bassett-Florence Kasumba-Michaela Coel-Mabel Cadena-Lake Bell-Alex Livinalli-Robert John Burke-Danny Sapani-Isaach De Bankol��-Connie Chiume-Martin Freeman-Julia Louis-Dreyfus-Richard Schiff-Michael B. Jordan-Dorothy Steel-Zainab Jah-Sope Aluko-Trevor Noah-Shawn Roberts-Zola Williams-Janeshia Adams-Ginyard-Jemini Powell-Marija Abney-Keisha Tucker-Ivy Haralson-Maya Macatumpag-Baaba Maal-Jabari Exum-Massamba Diop-Magatte Saw-Gerardo Aldana-Gigi Bermingham-Rudolph Massanga-Judd Wild-Amber Harrington-Michael Blake Kruse-Justin James Boykin-Anderson Cooper-Mackenro Alexander-Kamaru Usman-T. Love-Floyd Anthony Johns Jr.-Jermaine Brantley-Granger Summerset II-Luke Lenza-Alan Wells-Bill Barrett-Lieiry J. Perez Escalera-Sevyn Hill-Gavin Macon-Skylar Ebron-Taylor Holmes-Angela Cipra-Faya Madrid-Mar�_a Tel�_n-Mar�_a Mercedes Coroy-Josu�� Maychi-Sal Lopez-Irma Estella La Guerre-Manuel Chavez-Leonardo Castro-Juan Carlos Cantu-Shawntae Hughes-Corey Hibbert-Zaiden James-Aba Arthur-D��l�� Ogundiran-Kevin Changaris-Valerio Dorvillen-Don Castor-Jonathan Gonz��lez Collins-Divine Love Konadu-Sun-Chadwick Boseman,hero-loss of loved one-superhero-royal family-based on comic-sequel-royalty-underwater-political intrigue��-death in family-mourning-death of brother-duringcreditsstinger-death of king-marvel cinematic universe (mcu)-hidden civilization-yucatan-mayans,/sv1xJUazXeYqALzczSZ3O6nkH75.jpg,/xDMIl84Qo5Tsu62c9DGWhmPI67A.jpg,436270-631842-646389-315162-943822-1058949-76600-829280-338436-842942-965839-1011679-758009-100088-1033456-842544-1035806-1013870-542196-218720 +150540,Inside Out,Animation-Family-Adventure-Drama-Comedy,en,Growing up can be a bumpy road and it's no exception for Riley who is uprooted from her Midwest life when her father starts a new job in San Francisco. Riley's guiding emotions��� Joy Fear Anger Disgust and Sadness���live in Headquarters the control centre inside Riley's mind where they help advise her through everyday life and tries to keep things positive but the emotions conflict on how best to navigate a new city house and school.,114.549,Pixar-Walt Disney Pictures,6/9/15,175000000,857611174,95,Released,Meet the little voices inside your head.,7.92,19876,Amy Poehler-Phyllis Smith-Bill Hader-Lewis Black-Mindy Kaling-Richard Kind-Kaitlyn Dias-Diane Lane-Kyle MacLachlan-Bobby Moynihan-Paula Poundstone-Paula Pell-Dave Goelz-Frank Oz-Josh Cooley-Flea-John Ratzenberger-Carlos Alazraqui-Peter Sagal-Rashida Jones-Lori Alan-Gregg Berger-Veronika Bonell-John Cygan-Laraine Newman,dream-san francisco california-minnesota-sadness-cartoon-ice hockey-imaginary friend-elementary school-family relationships-memory-family-unicorn-running away-duringcreditsstinger-emotions,/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg,/j29ekbcLpBvxnGk6LjdTc2EI5SA.jpg,14160-12-585-2062-269149-109445-862-9806-177572-10193-62177-10681-127380-863-62211-920-38757-8587-808-49013-211672 +335983,Venom,Science Fiction-Action,en,Investigative journalist Eddie Brock attempts a comeback following a scandal but accidentally becomes the host of Venom a violent super powerful alien symbiote. Soon he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.,67.319,Matt Tolmach Productions-Pascal Pictures-Marvel Entertainment-Tencent Pictures-Arad Productions,9/28/18,116000000,856085151,112,Released,The world has enough Superheroes.,6.827,14531,Tom Hardy-Michelle Williams-Riz Ahmed-Scott Haze-Reid Scott-Jenny Slate-Melora Walters-Woody Harrelson-Peggy Lu-Malcolm C. Murray-Sope Aluko-Wayne P��re-Michelle Lee-Kurt Yue-Chris O'Hara-Emilio Rivera-Amelia Young-Ariadne Joseph-Deen Brooksher-David Jones-Roger Yuan-Woon Young Park-Patrick Chundah Chu-Vickie Eng-Mac Brandt-Nick Thune-Michael Dennis Hill-Sam Medina-Scott Deckert-Lauren Richards-Jared Bankens-Lucas Fleischer-Michael Burgess-Diesel Madkins-Otis Winston-Zeva DuVall-Selena Anduze-Brittany L. Smith-Jordan Foster-Jane McNeill-Victor McCay-Elizabeth Becka-Ron Prather-Marcia White-Javier Vazquez Jr.-Ellen Gerstein-Martin Bats Bradford-Steven Teuchert-Al-Jaleel Knox-Brandon Morales-Matthew Cornwell-David Fleischer-DJames Jones-Angela Davis-Stan Lee-Wade Williams-Ron Cephas Jones-Christian Convery-Boston Rush Freeman,san francisco california-spacecraft-anti hero-alien life-form-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-business tycoon-symbiote-genetic experiment,/2uNW4WbgBXL25BAbXGLnLqX71Sw.jpg,/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg,363088-383498-580489-297802-101638-299536-284054-299537-429617-315635-284053-324857-346910-299534-287947-338952-351286-260513-99861-284052 +284053,Thor: Ragnarok,Action-Adventure-Fantasy-Science Fiction-Comedy,en,Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok the destruction of his home-world and the end of Asgardian civilization at the hands of a powerful new threat the ruthless Hela.,101.65,Marvel Studios,10/24/17,180000000,853977126,131,Released,No Hammer. No Problem.,7.6,18819,Chris Hemsworth-Tom Hiddleston-Cate Blanchett-Tessa Thompson-Jeff Goldblum-Idris Elba-Karl Urban-Mark Ruffalo-Anthony Hopkins-Benedict Cumberbatch-Taika Waititi-Rachel House-Clancy Brown-Tadanobu Asano-Ray Stevenson-Zachary Levi-Stan Lee-Georgia Blizzard-Amali Golden-Luke Hemsworth-Sam Neill-Matt Damon-Charlotte Nicdao-Ashley Ricardo-Shalom Brune-Franklin-Taylor Hemsworth-Cohen Holloway-Alia Seror-O'Neill-Sophia Laryea-Steven Oliver-Hamish Parkinson-Jasper Bagg-Sky Castanho-Shari Sebbens-Richard Green-Sol Castanho-Jet Tranter-Samantha Hopper-Eloise Winestock-Rob Mayes-Tahlia Jade-Winnie Mzembe-Sean Edward Frazer-Connor Zegenhagen-Tracie Filmer-Tracey Lee Maxwell-Beatrice Ward-Donnie Baxter-Greta Carew-Johns-Mollie McGregor-Sophia McGregor-Scarlett Johansson-Katie Anderson-Ash Ricardo-Sam Hargrave-Garreth Hadfield,sequel-superhero-based on comic-alien planet-female villain-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-norse god-loki,/rzRwTcFvttcN1ZpX2xv4j3tSdJu.jpg,/kaIfm5ryEOwYg8mLbq8HkPuM1Fo.jpg,76338-315635-283995-284054-271110-10195-299536-99861-284052-102899-363088-100402-118340-24428-10138-141052-1726-1771-68721-297762-299537 +1895,Star Wars: Episode III - Revenge of the Sith,Adventure-Action-Science Fiction,en,The evil Darth Sidious enacts his final plan for unlimited power -- and the heroic Jedi Anakin Skywalker must choose a side.,38.242,Lucasfilm,5/17/05,113000000,850000000,140,Released,The saga is complete.,7.398,12206,Hayden Christensen-Ewan McGregor-Natalie Portman-Ian McDiarmid-Samuel L. Jackson-Jimmy Smits-Frank Oz-Anthony Daniels-Christopher Lee-Keisha Castle-Hughes-Silas Carson-Jay Laga'aia-Bruce Spence-Wayne Pygram-Temuera Morrison-David Bowers-Oliver Ford Davies-Ahmed Best-Rohan Nichol-Jeremy Bulloch-Amanda Lucas-Kenny Baker-Peter Mayhew-Rebecca Jackson Mendoza-Joel Edgerton-Bonnie Piesse-Jett Lucas-Tux Akindoyeni-Matt Rowan-Kenji Oates-Amy Allen-Bodie Taylor-Graeme Blundell-Trisha Noble-Claudia Karvan-Keira Wingate-Hayley Mooy-Sandi Finlay-Katie Lucas-Genevieve O'Reilly-Warren Owens-Kee Chan-Rena Owen-Christopher Kirby-Matthew Wood-Kristy Wright-Coinneach Alexander-Mousy McCallum-Michael Kingma-Axel Dench-Steven Foy-Julian Khazzouh-James Rowland-David Stiff-Robert Cope-George Lucas-Nick Gillard-Aidan Barton-James Earl Jones-Ben Cooke-David Acord-Paul Bateman-Ross Beadman-Jerome St. John Blake-Robert M. Bouffard-Jill Brooks-Gene Bryant-Josh Canning-Dominique Chionchio-Rob Coleman-Fay David-Caroline de Souza Correa-Eliana Dona-Malcolm Eager-Nina Fallon-Tim Gibbons-Roger Guyett-Chantal Harrison-Philip Harvey-Pablo Hidalgo-Ali Keshavji-Shaun R.L. King-Goran D. Kleut-John Knoll-Gervais Koffi-John M. Levin-Janet Lewin-Bai Ling-Dean Mitchell-Paul James Nicholson-Blake Nickle-Denise Ream-Anthony Reyna-Christopher Rodriguez-Hamish Roxburgh-Mike Savva-Jacqui Louez Schoorl-Lisa Shaunessy-Orli Shoshan-John Sigurdson-Christian Simpson-Paul Spence-Suzie Steen-Richard Stride-Marty Wetherill-Aaliyah Williams-Masa Yamaguchi-Matt Sloan-Paul Davies-Marton Csokas-Lawrence Foster,showdown-vision-cult figure-hatred-dream sequence-expectant mother-space opera-chancel-galactic war,/xfSAoBEm9MNBjmlNcDYLvLSMlnq.jpg,/5vDuLrjJXFS9PTF7Q1xzobmYKR9.jpg,1894-1893-1892-1891-11-140607-330459-181808-12180-89-87-217-558-348350-85-121-285-557-181812-36658-559 +8373,Transformers: Revenge of the Fallen,Science Fiction-Action-Adventure,en,Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols the Decepticons target him and he is dragged back into the Transformers' war.,17.592,DreamWorks Pictures-Paramount-di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions,6/19/09,200000000,836300000,149,Released,Revenge is coming.,6.177,8087,Shia LaBeouf-Megan Fox-Josh Duhamel-Tyrese Gibson-John Turturro-Ram�_n Rodr�_guez-Kevin Dunn-Julie White-Isabel Lucas-John Benjamin Hickey-Matthew Marsden-Andrew Howard-Michael Papajohn-Glenn Morshower-John Eric Bentley-Erin Naas-Spencer Garrett-Rainn Wilson-Katie Lowes-Jonathon Trent-Walker Howard-America Olivo-Aaron Hill-Jareb Dauplaise-John Sanderford-Christopher Curry-Cas Anvar-Michael Benyaer-Deep Roy-Ruben Martinez-Ralph Meyering Jr.-Aaron Norvell-Eric Pierpoint-Annie Korzen-Sean T. Krishnan-David Bowe-Kamal Jones-Aaron Lustig-Jim Holmes-Kristen Welker-Cornell Womack-David Luengas-Derek Alvarado-Alex Fernandez-Casey Nelson-Jason Roehm-John Nielsen-Rick Cramer-Arnold Chun-Marvin Jordan-Marc Evan Jackson-Josh Kelly-Jayson Floyd-Geoff Reeves-Aaron Garrido-Joel Lambert-David Paul Olsen-Brian Shehan-Peter Cullen-Mark Ryan-Reno Wilson-Jess Harnell-Robert Foxworth-Andr�� Sogliuzzo-Grey DeLisle-Hugo Weaving-Tony Todd-Charlie Adler-Frank Welker-Tom Kenny-Calvin Wimmer-John Di Crosta-Michael York-Kevin Michael Richardson-Robin Atkin Downes-Jenn An-Alexandra Begg-Caitlin Dulany-Andrew Hwang-Matt Iseman-Shayna Ryan-Karina Michel,egypt-chaos-sun-tank-symbol-alien-artifact-revenge-based on toy-robot-duringcreditsstinger-transformers,/pLBb0whOzVDtJvyD4DPeQyQNOqp.jpg,/zbdoCe1meTyy0v1fsIxZ9Q0ef3H.jpg,1858-38356-91314-335988-36658-2080-36668-534-13804-1979-20526-558-36657-49538-9738-39254-25565-559-14869-41154-18823 +447365,Guardians of the Galaxy Vol. 3,Action-Science Fiction-Adventure,en,Peter Quill still reeling from the loss of Gamora must rally his team around him to defend the universe along with protecting one of their own. A mission that if not completed successfully could quite possibly lead to the end of the Guardians as we know them.,965.585,Marvel Studios-Kevin Feige Productions,5/3/23,250000000,831801000,150,Released,Once more with feeling.,8.053,2139,Chris Pratt-Zoe Salda��a-Dave Bautista-Karen Gillan-Pom Klementieff-Vin Diesel-Bradley Cooper-Sean Gunn-Chukwudi Iwuji-Will Poulter-Maria Bakalova-Elizabeth Debicki-Sylvester Stallone-Austin Freeman-Stephen Blackehart-Terence Rosemore-Sarah Alami-Jasmine Sunshine Munoz-Giovannie Cruz-Nico Santos-Miriam Shor-Noa Raskin-Linda Cardellini-Asim Chaudhry-Mikaela Hoover-Judy Greer-Reinaldo Faberlle-Tara Strong-Jared Leland Gore-Michael Rosenbaum-Elan Gale-Molly C. Quinn-Gerardo Davila-Dee Bradley Baker-Hanna Pak-Jennifer Holland-Nathan Fillion-Kyle Mclean-Benjamin Byron Davis-Tiffany Smith-Joe Daru-Daniela Melchior-Jonathan Mercedes-Jonathan Fritschi-Diego Ward-Max Bickelhaup-Brandon Morales-Renae Moneymaker-Alexis Hadesty-Tara Warren-Candi VandiZandi-Grecia Balboa-Caleb Spillyards-Darla Delgado-Michelle Civile-Ken Lyle-Elodie Clarke-John William Wright-Autumn Griffin-Skylar Huntley-Randy Havens-Dane DiLiegro-Kai Zen-Sarah Anne-Yael Ocasio-Adelynn Spoon-Henry Heffernan-Brooklyn Skye Oliver-Scarlett Blum-Baby Dro-Emery Grilliot-Amelia Waters-Lloyd Kaufman-Christopher Fairbank-Rhett Miller-Natalia Safran-Murphy Weed-Michael Rooker-James Gunn-Jessica Fontaine-Karen Abercrombie-Gregg Henry-Adriana Leonard-Bonnie Discepolo-Clare Grant-Grace Gunn-Will Gunn-Seth Green-Pete Davidson,hero-sequel-superhero-based on comic-mad scientist-superhero team-space opera-raccoon-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-cosmic-outer space-chosen family,/r2J02Z2OpNTctfOSN1Ydgii51I3.jpg,/5YZbUmjbMa3ClvSW1Wj3D6XGolb.jpg,493529-640146-502356-385687-420808-713704-603692-552688-31806-758323-594767-1053651-868759-840326-569094-1037644-964980-868985-798286-747355-916224 +50620,The Twilight Saga: Breaking Dawn - Part 2,Adventure-Fantasy-Drama-Romance,en,After the birth of Renesmee the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.,93.525,Summit Entertainment-Lionsgate-Sunswept Entertainment-Temple Hill Entertainment,11/13/12,120000000,829747654,115,Released,The epic finale that will live forever,6.474,8094,Robert Pattinson-Kristen Stewart-Taylor Lautner-Peter Facinelli-Elizabeth Reaser-Ashley Greene-Jackson Rathbone-Nikki Reed-Kellan Lutz-Billy Burke-Dakota Fanning-Jamie Campbell Bower-Maggie Grace-Mackenzie Foy-Michael Sheen-Cameron Bright-Chaske Spencer-MyAnna Buring-Christopher Heyerdahl-Julia Jones-Booboo Stewart-Andrea Powell-Christian Camargo-Daniel Cudmore-Guri Weinberg-Lee Pace-Rami Malek-Casey LaBow-Joe Anderson-Angela Sarafyan-Valorie Curry-Noel Fisher-Tyson Houseman-Lateef Crowder-Charlie Bewley-Billy Wagenseller-M�_a Maestro-Wendell Pierce-Omar Metwally-Andrea Gabriel-Judi Shekoni-Tracey Heggins-Patrick Brennan-Marlane Barnes-Toni Trucks-Erik Odom-Amadou Ly-Janelle Froehlich-Masami Kosaka-Alex Rice-Marisa Quinn-Bill Tangradi-J. D. Pardo-Lisa Howard,based on novel or book-vampire-romance-villainess-teen movie-werewolf-supernatural creature-super strength-imprinting-cross breed-bloodsucker-grudge-chief of police-wolf pack-misinformation-seeing the future-based on young adult novel,/7IGdPaKujv0BjI0Zd0m0a4CzEjJ.jpg,/qkl57wzSFrpi2sRpoc2mZJbMuLP.jpg,50619-24021-18239-8966-58595-675-32657-10140-767-222935-12444-12445-411-674-123553-70160-597-157350-2454-101299-216015 +27205,Inception,Action-Science Fiction-Adventure,en,"Cobb a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: ""inception"" the implantation of another person's idea into a target's subconscious.",79.545,Legendary Pictures-Syncopy-Warner Bros. Pictures,7/15/10,160000000,825532764,148,Released,Your mind is the scene of the crime.,8.361,33262,Leonardo DiCaprio-Joseph Gordon-Levitt-Ken Watanabe-Tom Hardy-Elliot Page-Dileep Rao-Cillian Murphy-Tom Berenger-Marion Cotillard-Pete Postlethwaite-Michael Caine-Lukas Haas-Talulah Riley-Tohoru Masamune-Taylor Geare-Claire Geare-Johnathan Geare-Yuji Okumoto-Earl Cameron-Ryan Hayward-Miranda Nolan-Russ Fega-Tim Kelleher-Coralie Dedykere-Silvie Laguna-Virgile Bramly-Nicolas Clerc-Jean-Michel Dagory-Marc Raducci-Tai-Li Lee-Magnus Nolan-Helena Cullinan-Mark Fleischmann-Shelley Lang-Adam Cole-Jack Murray-Kraig Thornber-Angela Nathenson-Natasha Beaumont-Carl Gilliard-Jill Maddrell-Alex Lombard-Nicole Pulliam-Peter Basham-Michael Gaston-Felix Scott-Andrew Pleavin-Lisa Reynolds-Jason Tendell-Jack Gilroy-Shannon Welles-Daniel Girondeaud,paris france-spy-philosophy-allegory-dream-kidnapping-manipulation-airplane-virtual reality-car crash-heist-rescue-mission-memory-architecture-los angeles california-dream world-subconscious,/edv5CZvWj09upOsy2Y6IwDhK8bt.jpg,/8ZTVqvKDQ8emSGUEMjsS4yHAwrp.jpg,155-603-11324-550-49026-68718-120-157336-680-121-272-122-807-13-19995-16869-24428-1124-1726-77-37724 +297762,Wonder Woman,Action-Adventure-Fantasy,en,An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.,63.529,Atlas Entertainment-Cruel & Unusual Films-DC Films,5/30/17,149000000,822854286,141,Released,Power. Grace. Wisdom. Wonder.,7.24,18424,Gal Gadot-Chris Pine-Connie Nielsen-Robin Wright-Danny Huston-David Thewlis-Sa��d Taghmaoui-Ewen Bremner-Eugene Brave Rock-Lucy Davis-Elena Anaya-Lilly Aspell-Lisa Loven Kongsli-Ann Wolfe-Ann Ogbomo-Emily Carey-James Cosmo-Wolf Kahler-Alexander Mercury-Martin Bishop-Flora Nicholson-Pat Abernethy-Freddy Elletson-Sammy Hayman-Michael Tantrum-Philippe Spall-Edward Wolstenholme-Ian Hughes-Marko Leht-Steffan Rhodri-Andrew Byron-Dominic Kinnaird-Rachel Pickup-Ulli Ackermann-Frank Allen Forbes-Peter Stark-Rainer Bock-Josh Bromley-Jennie Eggleton-Eva Dabrowski-Harvey James-George Johnston-Danielle Lewis-Florence Kasumba-Eleanor Matsuura-Josette Simon-Doutzen Kroes-Hayley Warnes-Caitlin Burles-Jemma Moore-Samantha Win-Brooke Ence-Madeleine Vall-Hari James-Jacqui-Lee Pryce-Betty Adewole-Caroline Winberg-Lizzie Bowden-Kattreya Scheurer-Smith-Rekha Luther-Thaina Oliveira-Ooooota Adepo-Zinnia Kumar-Toma McDonagh-Amber Doyle-Freddy Carter-Fred Fergus-Tim Pritchett-Gana Bayarsaikhan-Camilla Roholm-Stephanie Haymes-Roven-Nia Burke-Dee Lewis Clay-Tori Letzler-Mayling Ng-Zack Snyder-Lee Neville,hero-greek mythology-island-feminism-empowerment-world war i-strong woman-superhero-based on comic-female protagonist-period drama-super power-heroine-woman director-female empowerment-1910s-dc extended universe (dceu),/imekS7f1OuHyUP2LAiTEM0zBzUz.jpg,/AaABt75ZzfMGrscUR2seabz4PEX.jpg,283995-315635-141052-263115-284053-209112-271110-284052-102899-293660-118340-76338-284054-166426-99861-297761-10195-181808-246655-321612-282035 +758891,"Hi, Mom",Drama-Comedy-Fantasy,zh,After her mother Li Huanying is fatally injured in a car accident in 2001 grief-stricken Jia Xiaoling finds herself transported back in time to the year 1981 where she becomes her mother's close friend. Jia Xiaoling feels that she has not been a good enough daughter in the present so back in 1981 she does all she can to make Li Huanying happy including setting her up with a factory manager's son Shen Guanglin in the hope of giving her mother a better husband a better daughter and a better life than she had the first time around.,8.809,Alibaba Pictures Group-Tianjin Maoyan Media-��__�__叫�__���__��_�����_�__�_��΃�Ώ�-��__��__����±__�__���___����_�_��΃�Ώ�-��__�__�_�_�__��__���___����_�_��΃�Ώ�,2/12/21,59000000,822049668,128,Released,,7.155,103,Jia Ling-Zhang Xiaofei-Shen Teng-Chen He-He Huan-Liu Jia-Ding Jiali-Qiao Shan-He He-Katherine Ackerman-Han Yunyun-Du Yuan-Xu Juncong-Feng Gong-Jia Wentian-Dong Ruoxi-Bao Wenjing-Ge Shanshan-Pan Binlong-Song Xiaofeng-Wang Xiaoli-Zhao Tingting-Wang Lin-Shi Ce-Bu Yu-Liu Honglu-Wei Xiang-Sun Jibin-Zhang Taiwei-Guo Yupeng-Zhu Tianfu-Wang Yu-Cao Hejun-Ji Qing-Guo Xiangpeng,,/3an3jssyu3BHkzqtSWvmqeOWfxj.jpg,/2jszhTgUZWAS9IsUTGhu5hBK2l.jpg,137562-25625-449924-233839-436969 +557,Spider-Man,Action-Science Fiction,en,After being bitten by a genetically altered spider at Oscorp nerdy but endearing high school student Peter Parker is endowed with amazing powers to become the superhero known as Spider-Man.,95.225,Marvel Enterprises-Laura Ziskin Productions-Columbia Pictures,5/1/02,139000000,821708551,121,Released,Go for the ultimate spin.,7.287,17969,Tobey Maguire-Willem Dafoe-Kirsten Dunst-James Franco-Cliff Robertson-Rosemary Harris-J.K. Simmons-Joe Manganiello-Gerry Becker-Bill Nunn-Jack Betts-Stanley Anderson-Ron Perkins-Michael Papajohn-K.K. Dodds-Ted Raimi-Bruce Campbell-Elizabeth Banks-John Paxton-Tim DeZarn-Taylor Gilbert-Randy Savage-Larry Joshua-Timothy Patrick Quill-Lisa Danielle-Natalie T. Yeo-Erica D. Porter-Kristen Davidson-Jason Padgett-Shan Omar Huey-Sally Levi-Evan Arnold-Jill Sayre-Jim Ward-David Holcomb-Octavia Spencer-Brad Grunberg-Shane Habberstad-Deborah Wakeham-Rachael Bruce-Mackenzie Bryce-Julia Barrie-Macy Gray-Myk Watford-Bill Calvert-Sylva Kelegian-Kristen Marie Holly-Ajay Mehta-Peter Appel-Scott Spiegel-Matt Smith-Sara Ramirez-Lucy Lawless-Jayce Bartok-Maribel Gonz��lez-Amy Bouril-Joseph D'Onofrio-Jim Norton-Corey Mendell Parker-Ashley Edner-William Joseph Firth-Alex Black-Laura Gray-Joe Virzi-Michael Edward Thomas-Jeanie Fox-Robert Kerman-Stan Lee-Una Damon-Rick Avery-Peter Aylward-Jillian Clare-Chris Coppola-Jesse Heiman-Leroy Patterson-Benny Urquidez-Scott L. Schwartz-Jophery C. Brown-Brian J. Williams-Mark De Alessandro-Tia Dionne Hodge-Loren Janes-Andray Johnson-Martin Pfefferkorn-Tammi Sutton-Lindsay Thompson-Sean Valla-Pete Macnamara-Al Goto-Joni Avery-Sam Raimi,new york city-adolescence-photographer-loss of loved one-photography-secret identity-hostility-superhero-spider-bad boss-villain-based on comic-teenage boy-teenage love-evil-super villain-taking responsibility,/gh4cZbhZxyTbgxQPxD0dOudNPTn.jpg,/jHxCeXnSchAuwHnmVatTgqMYdX8.jpg,558-559-359086-1930-102382-437894-1726-10138-432342-63449-432373-36658-10195-9806-315635-272-36657-225914-58-607-9738 +602,Independence Day,Action-Adventure-Science Fiction,en,On July 2 a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3 the United States conducts a coordinated counterattack that fails. On July 4 a plan is devised to gain access to the interior of the alien mothership in space in order to plant a nuclear missile.,40.04,20th Century Fox-Centropolis Entertainment,6/25/96,75000000,817400891,145,Released,Don't make plans for August.,6.872,9048,Will Smith-Bill Pullman-Jeff Goldblum-Mary McDonnell-Judd Hirsch-Robert Loggia-Randy Quaid-Margaret Colin-James Rebhorn-Harvey Fierstein-Adam Baldwin-Brent Spiner-James Duval-Vivica A. Fox-Lisa Jakub-Ross Bagley-Mae Whitman-Bill Smitrovich-Kiersten Warren-Harry Connick Jr.-Giuseppe Andrews-John Storey-Frank Novak-Devon Gummersall-Leland Orser-Mirron E. Willis-Ross Lacy-David Pressman-Vivian Palermo-Raphael Sbarge-Bobby Hosea-Dan Lauria-Steve Giannelli-Eric Paskel-Carlos Lac��mara-John Bennett Perry-Troy Willis-Tim Kelleher-Wayne Wilderson-Jay Acovone-James Wong-Thom Barry-Jana Marie Hupp-Matt Pashkow-Robert Pine-Marisa Johnston-Michael Winther-Warren Dexter Beatty-Paul LeClair-Michael Vacca-David Channell-John Capodice-Greg Collins-Derek Webster-Mark Fite-Eric Neal Newman-Levan Uchaneishvili-Kristof Konrad-Kevin Sifuentes-Elston Ridgle-Randy Oglesby-Jack Moore-Barry Del Sherman-Lyman Ward-Anthony Crivello-Richard Speight Jr.-Barbara Beck-Joe Fowler-Andrew Warner-Sharon Tay-Peter J. Lucas-Yelena Danova-Johnny Kim-Vanessa J. Wells-Jessika Cardinahl-Gary W. Cruz-Ron Pitts-Wendy L. Walsh-Christine Devine-Mark Thompson-Ernie Anastos-Kevin Cooney-Rance Howard-Nelson Mashita-Jeff Phillips-Sayed Badreya-Adam Tomei-John Bradley-Kimberly Beck-Thomas F. Duffy-Andrew Keegan-Jon Matthews-Jim Piddock-Frederic W. Barnes-Eleanor Clift-Jerry Dunphy-Jack Germond-Morton Kondracke-John McLaughlin-Barry Nolan-George Putnam-Eric Michael Zee-Pat Skipper-Carlos Lara-Mike Monteleone-Lee Strauss-Lisa Star-Malcolm Danare-Arthur Brooks-Michael Moertl-James J. Joyce-Joyce Cohen-Julie Moran-Robin Groth-Richard Pachorek-Dakota-Gary A. Hecker-Frank Welker,spacecraft-showdown-independence-patriotism-countdown-invasion-alien-ufo-extraterrestrial-creature-battle-alien invasion-world domination-area 51-human vs alien-good versus evil,/p0BPQGSPoSa8Ml0DAf2mB2kCU0R.jpg,/uw4SnKFZ453Gxmj5XR5Susj8TNo.jpg,607-608-2048-95-8960-18-47933-601-6479-564-329-41154-1858-604-17654-563-435-180-605-954-267246 +810,Shrek the Third,Fantasy-Adventure-Animation-Comedy-Family,en,The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However Shrek wants to return to his cozy swamp and live in peace and quiet so when he finds out there is another heir to the throne they set off to bring him back to rule the kingdom.,98.592,DreamWorks Animation-Pacific Data Images,5/17/07,160000000,813400000,93,Released,He��s in for the Royal Treatment.,6.289,8454,Mike Myers-Eddie Murphy-Cameron Diaz-Antonio Banderas-Julie Andrews-John Cleese-Rupert Everett-Eric Idle-Justin Timberlake-Susanne Blakeslee-Cody Cameron-Larry King-Christopher Knights-John Krasinski-Ian McShane-Cheri Oteri-Regis Philbin-Amy Poehler-Seth Rogen-Maya Rudolph-Amy Sedaris-Conrad Vernon-Aron Warner-Jasper Johannes Andrews-Guillaume Aretos-Kelly Asbury-Zachary James Bernard-Andrew Birch-Sean Bishop-Kelly Cooney Cilella-Walt Dohrn-Dante James Hauser-Jordan Alexander Hauser-Tom Kane-Tom McGrath-Chris Miller-Latifa Ouaou-Alina Phelan-David P. Smith-Mark Valley-Kari Wahlgren,ship-island-ambush-kingdom-boarding school-liberation of prisoners-pregnancy-traitor-shipwreck-stage-sadness-transformation-assault-prince-theater play-tricks-heir to the throne-conciliation-sequel-teacher-best friend-dragon-cowardliness-capture-duringcreditsstinger-ogre-cartoon donkey,/n4SexGGQzI26E269tfpa80MZaGV.jpg,/qSNz1G1Ts8fFw6v4Vae4aMAjcY7.jpg,10192-809-808-10527-953-950-8355-9502-425-80321-863-10555-13053-49444-5559-57800-46195-37135-1593-2062-35 +259316,Fantastic Beasts and Where to Find Them,Action-Adventure-Fantasy,en,In 1926 Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase it sends the American wizarding authorities after Newt and threatens to strain even further the state of magical and non-magical relations.,72.692,Warner Bros. Pictures-Heyday Films,11/16/16,180000000,809342332,132,Released,From J.K. Rowling's wizarding world.,7.341,17425,Eddie Redmayne-Katherine Waterston-Dan Fogler-Alison Sudol-Colin Farrell-Jon Voight-Ron Perlman-Johnny Depp-Zo� Kravitz-Ezra Miller-Samantha Morton-Carmen Ejogo-Josh Cowdery-Ronan Raftery-Faith Wood-Blagrove-Jenn Murray-Gemma Chan-Peter Breitmayer-Kevin Guthrie-Sean Cronin-Sam Redford-Akin Gazi-Todd Boyce-Anne Wittman-Andreea Pۀduraru-Matthew Sim-Elizabeth Moynihan-Adam Lazarus-Lucie Pohl-Tim Bentinck-Bart Edwards-Brian F. Mulvey-Tristan Tait-Tom Clarke Hill-Cory Peterson-Jake Samuels-Max Cazier-Dan Hedaya-Christy Meyer-Guy Paul-Walles Hamonde-Dominique Tipper-Leo Heller-Miles Roughley-Erick Hayden-Paul Birchard-Tom Hodgkins-Ellie Haddington-Joseph Macnab-Martin Oelbermann-Richard Clothier-Christian Dixon-Richard Hardisty-Miquel Brown-Wunmi Mosaku-Cristian Solimeno-Matthew Wilson-Aretha Ayeh-Emmi-Nicholas McGaughey-Arinz�� Kene-Jane Perry-Abi Adeyemi-Alphonso Austin-Roy Beck-David J Biscoe-Lee Bolton-Neil Broome-Fanny Carbonnel-David Charles-Cully-Craig Davies-Chloe de Burgh-Paul Dewdney-Rudi Dharmalingam-Joshua Diffley-Richard Douglas-Henry Douthwaite-Dino Fazzani-Abigayle Honeywill-Attila G. Kerekes-Simon Kerrison-Denis Khoroshko-Alan Mandel-Jorge Leon Martinez-Christine Marzano-Pete Meads-Dennis O'Donnell-Gino Picciano-Jason Redshaw-Dave Simon-Connor Sullivan-Dan Trotter-Morgan Walters-Anick Wiget-Reid Anderson-Tineke Ann Robson-Cinta Laura Kiehl,new york city-witch-robbery-magic-teleportation-suitcase-mistake-escape-spin off-subway station-central park-wizard-goblin-magical creature-1920s,/h6NYfVUyM6CDURtZSnBpz647Ldd.jpg,/8Qsr8pvDL3s1jNZQ4HK1d1Xlvnh.jpg,338952-12445-672-12444-284052-767-675-674-673-671-283366-321612-297761-271110-269149-293660-22-131631-330459-283995-150540 +512200,Jumanji: The Next Level,Adventure-Comedy-Fantasy,en,As the gang return to Jumanji to rescue one of their own they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world��s most dangerous game.,67.707,Columbia Pictures-Matt Tolmach Productions-Seven Bucks Productions-The Detective Agency,12/4/19,125000000,801693929,123,Released,,6.9,7490,Dwayne Johnson-Kevin Hart-Jack Black-Karen Gillan-Awkwafina-Nick Jonas-Alex Wolff-Morgan Turner-Madison Iseman-Ser'Darius Blain-Danny DeVito-Danny Glover-Rhys Darby-Colin Hanks-Rory McCann-Marin Hinkle-Vince Pisani-Dorothy Steel-Dania Ramirez-Derek Russo-Nick Gomez-Morgan Brown-Deobia Oparei-Leslie Simms-John Ross Bowie-Lucy DeVito-Bebe Neuwirth-Lamorne Morris-Darin Ferraro-Sal Longobardo-Massi Furlan-Michael Beasley-Charles Green-James William Ballard-Marque Hernandez-Kodai Yamaguchi-Ashley Scott-Melissa Kennemore-Jennifer Patino-Madison Johnson-Vanessa Cater-Javier Villamil-Anthony Neves-John David Bulla-Ryan Cheeseman-Cruz Abelita-Sheril Rodgers,magic-animal attack-body-swap-adventurer-superhuman strength-duringcreditsstinger-action hero-trapped in a game,/jyw8VKYEiM1UDzPB7NsisUgBeJ8.jpg,/zTxHf9iIOCqRbxvl8W5QYKrsMLq.jpg,353486-892409-181812-495764-330457-38700-448119-384018-338967-503619-651166-429617-454626-509967-458897-420809-744013-508439-431693-929472-546554 +354912,Coco,Family-Animation-Fantasy-Music-Comedy-Adventure,en,Despite his family��s baffling generations-old ban on music Miguel dreams of becoming an accomplished musician like his idol Ernesto de la Cruz. Desperate to prove his talent Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way he meets charming trickster Hector and together they set off on an extraordinary journey to unlock the real story behind Miguel's family history.,144.713,Pixar-Walt Disney Pictures,10/27/17,175000000,800526015,105,Released,The celebration of a lifetime,8.2,17074,Anthony Gonzalez-Gael Garc�_a Bernal-Benjamin Bratt-Alanna Ubach-Ren��e Victor-Jaime Camil-Alfonso Arau-Herbert Siguenza-Lombardo Boyar-Ana Ofelia Murgu�_a-Sof�_a Espinosa-Dyana Ortelli-Gabriel Iglesias-Selene Luna-Natalia Cordova-Buckley-Edward James Olmos-Carla Medina-Luis Valdez-Blanca Araceli-Polo Rojas-Montse Hernandez-Octavio Solis-Cheech Marin-Salvador Reyes-John Ratzenberger-Antonio Sol-Liliana Barba Meinecke-Emmanuel Bernal-David Ber�_n-Denise Blasor-Wilma Bonet-Alex Castillo-Vicki Davis-Roberto Donati-Efrain Figueroa-Deb Fink-Libertad Garc�_a Fonzi-Emilio Fuentes-Daniella Garcia-Lorido-Mike Gomez-Lillian Groag-Joshua Guerrero-Montse Hernandez-Marabina Jaimes-Jossara Jinaro-Christian Lanz-Constanza Lechuga-Luisa Leschin-Ruth Livier-Maria Dominique Lopez-Valeria Maldonado-Richard Miro-Adrian Molina-Daniel Edward Mora-Vivianne Nacif-Adriana Sevahn Nichols-Jonathan Nichols-Arthur Ortiz-Jessica Pacheco-Juan Pacheco-Jacqueline Pinol-James Ponce-Al Rodrigo-J. Francisco Rodriguez-Polo Rojas-Eduardo Roman-Eddie Santiago-Melissa Santos-Luis Sol�_s-Rosalba Sotelo-Chris Triana-Trujo-Lee Unkrich-Ruth Zalduondo-James Zavaleta-Bernardo Cubria-Gary Carlos Cervantes-Johnny A. Sanchez-Levi Nunez-��scar Bonfiglio-Lalo Alcaraz-Marcela Davison Aviles-Carolina �ngel,mexico-guitar-musician-skeleton-afterlife-singer-life after death-child-day of the dead-fairy tales,/gGEsBPAijhVUFoiNpgZXqRVWJt2.jpg,/askg3SMvhqEl4OL52YuvdtY40Yb.jpg,85133-150540-2062-862-585-12-14160-9806-928123-269149-663712-62177-260513-284053-84228-808-10681-109445-863-284054-10193 +166426,Pirates of the Caribbean: Dead Men Tell No Tales,Adventure-Action-Fantasy,en,Thrust into an all-new adventure a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis the evil Capt. Salazar escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon but to find it he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.,85.865,Walt Disney Pictures-Jerry Bruckheimer Films-Infinitum Nihil,5/23/17,230000000,795922298,128,Released,All pirates must die.,6.646,10779,Johnny Depp-Javier Bardem-Geoffrey Rush-Brenton Thwaites-Kaya Scodelario-Kevin McNally-Golshifteh Farahani-David Wenham-Stephen Graham-Angus Barnett-Martin Klebba-Adam Brown-Giles New-Orlando Bloom-Keira Knightley-Paul McCartney-Delroy Atkinson-Danny Kirrane-Juan Carlos Vellido-Rodney Afif-Rupert Raineri-Stephen Lopez-Nico Cortez-Mahesh Jadu-Bruce Spence-Justin Smith-John Leary-Anthony De La Torre-Finn Ireland-James Mackay-Bryan Probets-Will Ward-Lewis McGowan-Alexander Scheer-Richard Piper-Michael Dorman-Rohan Nichol-Paul Armstrong-Robert Morgan-Andreas Sobik-Goran D. Kleut-Scott G. Anderson-Travis Jeffery-Andrew Fraser-Akos Armont-Sean Lynch-Ben O'Toole-Dakota Askew-Jamie Carter-Joe Klocek-Derani Scarr-Zoe Ventoura-Lenny Firth-Akshay Caplash-Jordan Fulleylove-Mivon Prince-Leyva-Rafael Torrijos-James Fraser-Ken Radley-Hannah Walters-Jonathan Elsom-K. Todd Freeman-Matthew Walker-Darcy Laurie-James Lawson-Brooke Chamberlain-Jessica Green-Haley Madison-Kiara Freeman-Piper Nairn-Suzanne Dervish-Ali-Donnie Baxter-Winnie Mzembe-Christie-Lee Britten-Mollie McGregor-Sophia McGregor-Garreth Hadfield,sea-ship-sequel-artifact-treasure map-pirate-period drama-monkey-swashbuckler-ghost-caribbean sea-trident-c����_p bi��n-h�_�i t�_�c,/qwoGfcg6YUS55nUweKGujHE54Wy.jpg,/7C921eWK06n12c1miRXnYoEu5Yv.jpg,1865-285-58-22-297762-283995-259316-335988-315635-282035-337339-118-122917-321612-263115-339846-324852-284052-57158-12445-12444 +601,E.T. the Extra-Terrestrial,Science Fiction-Adventure-Family-Fantasy,en,An alien is left behind on Earth and saved by the 10-year-old Elliot who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial Elliot his brother and his little sister Gertie form an emotional bond with their new friend and try to help him find his way home.,42.835,Universal Pictures-Amblin Entertainment,6/11/82,10500000,792965500,115,Released,He is afraid. He is alone. He is three million light years from home.,7.507,10051,Henry Thomas-Drew Barrymore-Robert MacNaughton-Peter Coyote-Dee Wallace-Erika Eleniak-K.C. Martel-C. Thomas Howell-Sean Frye-David M. O'Dell-Richard Swingler-Frank Toth-Robert Barton-Michael Darrell-David Berkson-David Carlberg-Milt Kogan-Alexander Lampone-Rhoda Makoff-Robert Murphy-Richard Pesavento-Tom Sherry-Susan Cameron-Will Fowler Jr.-Barbara Hartnett-Diane Lampone-Mary Stein-Mitch Suskin-Ted Grossman-James Kahn-Anne Lockhart-Melissa Mathison-Debra Winger-Pat Welsh,farewell-loss of loved one-homesickness-nasa-extraterrestrial technology-operation-space marine-riding a bicycle-flying saucer-prosecution-halloween-flowerpot-finger-single-alien-single mother,/an0nD6uq6byfxXCfk6lQBzdL2J1.jpg,/mXLVA0YL6tcXi6SJSuAh9ONXFj5.jpg,813257-329-607-578-87-602-165-162-85-89-196-608-812-105-927-10020-840-620-425-863-808 +353081,Mission: Impossible - Fallout,Action-Adventure,en,When an IMF mission ends badly the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time hunted by assassins while trying to prevent a global catastrophe.,90.371,Paramount-Bad Robot-Skydance-TC Productions,7/13/18,178000000,791657398,147,Released,Some missions are not a choice.,7.414,7445,Tom Cruise-Henry Cavill-Ving Rhames-Simon Pegg-Rebecca Ferguson-Sean Harris-Angela Bassett-Vanessa Kirby-Michelle Monaghan-Wes Bentley-Frederick Schmidt-Alec Baldwin-Yang Liang-Kristoffer Joner-Wolf Blitzer-Dean Ashton-Alix B��n��zech-Joey Ansah-Velibor Topic-Alexandre Poole-Andrew Cazanave Pin-Christophe de Choisy-Guy Remy-Jean Baptiste Fillon-Maximilian Geller-Olivier Huband-Raphael Desprez-Raphael Joner-Thierry Picaut-Vincent Latorre-Harvey Djent-Grahame Fox-David Mumeni-Charlie Archer-Caspar Phillipson-Ffion Jolly-Lolly Adefope-Ross O'Hennessy-Russ Bain-Nigel Allen-Tracey Saunders-Alicia Menc�_a Casta��o-Conny Sharp-Jessie Vinning-Stuart Davidson-Julianne Binard-Hiten Patel-Jag Patel-Godiva Marshall-Pamela Cook-Gina Aponte-Robert Ryan,paris france-london england-spy-helicopter-plutonium-norway-gun-countdown-race against time-sequel-motorcycle-bomb remote detonator-handgun-hand to hand combat-kashmir,/AkJQpZp9WoNdj7pLYSj1L0RcMMN.jpg,/aw4FOsWr2FY373nKSxbpNi3fz4F.jpg,177677-956-56292-954-955-363088-345887-351286-447200-345940-383498-260513-348350-335983-744013-346910-284054-78312-400535-333339-299536 +14161,2012,Action-Adventure-Science Fiction,en,"Dr. Adrian Helmsley part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population the entire race is doomed. Meanwhile writer Jackson Curtis stumbles on the same information. While the world's leaders race to build ""arks"" to escape the impending cataclysm Curtis struggles to find a way to save his family. Meanwhile volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.",71.35,Columbia Pictures-Centropolis Entertainment-The Mark Gordon Company-Farewell Productions,10/10/09,200000000,791217826,158,Released,We Were Warned.,5.808,10921,John Cusack-Chiwetel Ejiofor-Amanda Peet-Oliver Platt-Thandiwe Newton-Tom McCarthy-George Segal-Danny Glover-Woody Harrelson-Liam James-Morgan Lily-Blu Mankuma-Zlatko Buriۈ-Beatrice Rosen-John Billingsley-Chin Han-Osric Chau-Philippe Haussmann-Alexandre Haussmann-Jimi Mistry-Johann Urb-Ryan McDonald-Stephen McHattie-Lisa Lu-Henry O-Patrick Bauchau-Tseng Chang-Merrilyn Gann-Patrick Gilmore-Dean Marshall-Ron Selmour-Viv Leacock-Chris Boyd-Donna Yamamoto-Doron Bell-David Orth-Lyndall Grant-Jason Diablo-Ty Olsson-Zinaid Memi��eviۈ-Vincent Cheng-Igor Morozov-B. J. Harrison-Dominic Zamprogna-Karin Konoval-Mary Gillis-Rick Tae-Parm Soor-Gerard Plunkett-Paul Tryl-Andrei Kovski-Val Cole-Eve Harlow-Sean Tyson-Leonard Tenisci-Michael Buffer-Daren A. Herbert-Craig Stanghetta-Mateen Devji-Qayam Devji-Jody Thompson-Tanya Champoux-Frank C. Turner-Kinua McWatt-Laara Sadiq-Gillian Barber-Candus Churchill-Beverley Elliott-Agam Darshi-Raj Lal-Pesi Daruwalla-Jacob Blair-Scott E. Miller-Anna Mae Routledge-John Stewart-Ryan Cook-Brandon Haas-Eddie Hassell-Betty Phillips-Georgina Hegedos-Luis Javier-Dean Redman-Gordon Lai-Mark Docherty-Mark Oliver-Andrew Moxham-Alexandra Castillo-Farouk A. Afify-Shaun Wilson-Leo Chiang-Elizabeth Richard-Kyle Riefsnyder-George Trochta-John Mee-Geoff Gustafson-Alex Zahara-Jason Griffith-Jill Morrison-Thomas Parkinson-Leona Naidoo-Chad Riley-Simon Leung-Quentin Guyon-Nicole Rudell-Kevin Haaland-Leigh Burrows-Dan Savoie-Jay Williams,civilization-earthquake-race against time-natural disaster-maya civilization-end of the world-disaster-apocalypse-destruction-volcanic eruption-flood-disaster movie-ark-solar-2010s,/zaqam2RNscH5ooYFWInV6hjx6y5.jpg,/pvxmYJcgrLiYC6G2IQTn1PPNems.jpg,41154-1271-10528-27578-38356-56292-2080-1865-10138-9799-49538-1930-19995-70160-435-6479-76163-13475-1726-14869-72105 +673,Harry Potter and the Prisoner of Azkaban,Adventure-Fantasy,en,Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff transforming shape-shifting Boggarts into hilarity and even turning back time. But the term also brings danger: soul-sucking Dementors hover over the school an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.,183.403,Warner Bros. Pictures-1492 Pictures-Heyday Films-P of A Productions Limited,5/31/04,130000000,789804554,141,Released,Something wicked this way comes.,8.021,19192,Daniel Radcliffe-Rupert Grint-Emma Watson-Robbie Coltrane-Michael Gambon-Richard Griffiths-Gary Oldman-Alan Rickman-Fiona Shaw-Maggie Smith-Timothy Spall-David Thewlis-Emma Thompson-David Bradley-Tom Felton-Pam Ferris-Dawn French-Julie Christie-Robert Hardy-Julie Walters-Mark Williams-Harry Melling-Adrian Rawlins-Geraldine Somerville-Lee Ingleby-Lenny Henry-Jimmy Gardner-Jim Tavar��-Abby Ford-Oliver Phelps-James Phelps-Chris Rankin-Bonnie Wright-Devon Murray-Warwick Davis-Matthew Lewis-Sitara Shah-Jennifer Smith-Bronson Webb-Josh Herdman-Genevieve Gaunt-Kandice Morris-Alfred Enoch-Annalisa Bugliani-Tess Bu Cuar�_n-Violet Columbus-Paul Whitehouse-Ekow Quartey-Ricky Sahota-Jamie Waylett-Sharon Sandhu-Danielle Tabor-Freddie Davies-Peter Best-Lewis Barnshaw-Ian Brown-Samantha Clinch-Marianne Chase,flying-witch-bus-traitor-magic-school friend-child hero-school of witchcraft-black magic-time travel-friendship-school-best friend-werewolf-muggle-wizard-aftercreditsstinger-magical creature-night bus-teenage life-school class-based on young adult novel-magic spell,/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg,/wDuoQwcn1XSrAaUsmZFhDWPCeix.jpg,674-672-671-675-767-12444-12445-22-58-285-1865-12-121-585-8587-557-9806-120-425-558-808 +82992,Fast & Furious 6,Action-Thriller-Crime,en,Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend Letty.,12.484,Universal Pictures-Relativity Media-Original Film-One Race-Fuji Television Network-F & F VI Productions A.I.E-dentsu,5/21/13,160000000,788680968,131,Released,All roads lead to this,6.817,9865,Vin Diesel-Paul Walker-Dwayne Johnson-Jordana Brewster-Michelle Rodriguez-Tyrese Gibson-Sung Kang-Gal Gadot-Ludacris-Luke Evans-Elsa Pataky-Gina Carano-Clara Paget-Kim Kold-Joe Taslim-Samuel M. Stewart-Benjamin Davies-Matthew Stirling-David Ajala-Thure Lindhardt-Shea Whigham-Andrei Zayats-John Ortiz-Jason Thorpe-Alexander Vegh-Stephen Marcus-Magda Rodriguez-Andy Pointon-Victor Gardener-Sol de la Barreda-Elvira Tric��s-Carolina Pozo-Revil Beat-Sarah Li Yan-Eddie Bagayawa-Dean Barlage-Gintare Beinoraviciute-Catherine Delaloye-Rowena Diamond-Mark Haldor-Andrew Koji-Alex Martin-Rita Ora-Gemita Samarra-Jason Statham-Jason Harris,car race-sequel-street race-car theft,/thSmnRdrzPBBospIOJjLZBReqzo.jpg,/mRfI3y2oAd7ejur2di09xC9niqp.jpg,51497-13804-9799-9615-168259-584-72559-337339-47964-68721-76163-117263-24428-81005-37724-49521-60304-75612-119283-76170-70160 +217,Indiana Jones and the Kingdom of the Crystal Skull,Adventure-Action,en,Set during the Cold War the Soviets���led by sword-wielding Irina Spalko���are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. Indy is coerced to head to Peru at the behest of a young man whose friend���and Indy's colleague���Professor Oxley has been captured for his knowledge of the skull's whereabouts.,39.209,Paramount-Lucasfilm,5/21/08,185000000,786636033,122,Released,The adventure continues . . .,6,7136,Harrison Ford-Cate Blanchett-Karen Allen-Shia LaBeouf-Ray Winstone-John Hurt-Jim Broadbent-Igor Jijikine-Dimitri Diatchenko-Ilia Volok-Emmanuel Todorov-Pasha D. Lychnikoff-Andrew Divoff-Venya Manzyuk-Alan Dale-Joel Stoffer-Neil Flynn-V.J. Foster-Chet Hanks-Brian Knutson-Dean Grimes-Sasha Spielberg-Nicole Luther-Sophia Stewart-Chris Todd-Dennis Nusbaum-T. Ryan Mooney-Audi Resendez-Helena Barrett-Carlos Linares-Gustavo Hernandez-Maria Luisa Minelli-Nito Larioza-Ernie Reyes Jr.-Jon Valera-Kevin Collins-Robert Baker-Denholm Elliott-Martin Dew-Bogdan Szumilas-Michael J. Jacyna-Andre Alexsen-Gregory Kudanovych-Alexander Kaminer-Joe Jagatic-Derek Mears-Ian Novotny-Jason Roehm-Ilya Rockwell-Ilya Jonathan Zaydenberg-Errol Sack-Jon Braver-Jonathan Lomma-Josh Mills-Noelle Bruno-Michael Maddigan-Bryan Thompson-Sean Marrinan-Adam Kirley-Chris Bryant-Adam Prakop-Erin Frederick-Andrew Goldfarb-Fileena Bahris-Dianne Zaremba-Jared Christopherson-Brendon John Kelly-Sam Rocco-Steven A. Miller-Paul Thornton-John H. Tobin-Ted Grossman-Ana Maria Quintana-Tim Camarillo-Janet Lopez-Maria Zambrana-Marly Coronel-Chuck Maldonado-David LaVera-Arnold Chon-Philip J Silvera-Amanda Bromberg,saving the world-riddle-whip-treasure-mexico city mexico-leather jacket-machinegun-maya civilization-peru-treasure hunt-nuclear explosion-alien-refrigerator-archaeologist-adventurer-area 51-archeology-1950s-father son relationship,/56As6XEM1flWvprX4LgkPl8ii4K.jpg,/sL0vdRNTaKcaXDUIacw1ykvehoL.jpg,87-89-85-1894-1895-1893-6637-1734-330-1571-1979-196-608-10764-607-564-956-1892-8373-296-1573 +383498,Deadpool 2,Action-Comedy-Adventure,en,Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.,231.478,Maximum Effort-Genre Films-20th Century Fox,5/10/18,110000000,785900000,120,Released,Prepare for the Second Coming.,7.491,16514,Ryan Reynolds-Josh Brolin-Morena Baccarin-Julian Dennison-Zazie Beetz-T.J. Miller-Leslie Uggams-Karan Soni-Brianna Hildebrand-Jack Kesy-Eddie Marsan-Shioli Kutsuna-Stefan Kapiۍiۈ-Randal Reeder-Nikolai Witschl-Thayr Harris-Rob Delaney-Lewis Tan-Bill Skarsg��rd-Terry Crews-Brad Pitt-Paul Wu-Robert Maillet-Alan Tudyk-Matt Damon-Michasha Armstrong-Joe Doserro-Hayley Sales-Islie Hirvonen-Jagua Arneja-Gerry South-Mike Dopud-Luke Roessler-Andy Canete-Tanis Dolman-Eleanor Walker-Hunter Dillon-Sala Baker-Sonia Sunger-Paul Wernick-Rhett Reese-Abiola Uthman-Tony Bailey-Alex Kliner-Elaine Kliner-David Leitch-Alicia Morton-Andre Tricoteux-Lisa Bunting-Miles Ellis-Lars Grant-Sam Hargrave-Nicholas Hoult-Simon MacIntyre-James McAvoy-Evan Peters-Tye Sheridan-Alexandra Shipp-Kodi Smit-McPhee-Scott Vickaryous-Dan Zachary-Hugh Jackman,hero-superhero-mutant-mercenary-based on comic-sequel-aftercreditsstinger-duringcreditsstinger,/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg,/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg,293660-299536-284054-363088-284053-283995-335983-315635-351286-102899-333339-271110-260513-348350-99861-284052-701461-299537-263115-118340-141052 +558,Spider-Man 2,Action-Adventure-Fantasy,en,Peter Parker is going through a major identity crisis. Burned out from being Spider-Man he decides to shelve his superhero alter ego which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime Parker still can't act on his feelings for Mary Jane Watson a girl he's loved since childhood. A certain anger begins to brew in his best friend Harry Osborn as well...,27.938,Marvel Enterprises-Laura Ziskin Productions,6/25/04,200000000,783766341,127,Released,There's a hero in all of us.,7.238,13544,Tobey Maguire-Kirsten Dunst-James Franco-Alfred Molina-Rosemary Harris-J.K. Simmons-Donna Murphy-Daniel Gillies-Dylan Baker-Bill Nunn-Vanessa Ferlito-Aasif Mandvi-Willem Dafoe-Cliff Robertson-Ted Raimi-Elizabeth Banks-Bruce Campbell-Gregg Edelman-Elya Baskin-Mageina Tovah-Daniel Dae Kim-Hal Sparks-Joel McHale-Stan Lee-Kelly Connell-Brent Briscoe-Emily Deschanel-Jason Fiore-Ortiz-Scott Spiegel-Andy Bale-Christine Estabrook-Molly Cheek-John Paxton-Joy Bryant-Joanne Baron-Peter McRobbie-Timothy Jerome-Taylor Gilbert-Peter Vouras-Donnell Rawlings-Zachry Rogers-Ella Rogers-Louis Lombardi-Marc John Jefferies-Roshon Fegan-Brendan Patrick Connor-Reed Diamond-Dan Callahan-Elyse Dinh-John Landis-Tim Storms-Susie Park-Michael Edward Thomas-Anne Betancourt-Venus Lam-Bill E. Rogers-Joe Virzi-Jopaul Van Epp-Weston Epp-Peter Allas-Brianna Brown-Bill Calvert-Tony Campisi-Joey Diaz-Chloe Dykstra-Simone Gordon-Dan Hicks-Julia Max-Savannah Pope-Timothy Patrick Quill-Jill Sayre-Rickey G. Williams-Michael Arthur-Frank Bonsangue-Cindy Cheung-Phil LaMarr-Calvin Dean-Andre M. Johnson-Peter Cincotti-Peyton List-Spencer List-Troy Metcalf-Scott Ross-Bonnie Somerville-Wesley Volcy-Lou Volpe-Garrett Warren-Joseph M. Caracciolo-Tom Carey-Patricia M. Peters,new york city-dual identity-secret identity-love of one's life-pizza boy-sequel-superhero-based on comic-doctor-scientist-tentacle-death-super villain-teenage hero-teenage life,/olxpyq9kJAZ2NU1siLshhhXEPR7.jpg,/6al048Lat3eLVQOuKtc9h6Tu94d.jpg,559-557-1930-102382-36658-36657-36668-1858-9738-10138-2080-607-1979-49538-1724-8373-1726-10195-58-285-1771 +293660,Deadpool,Action-Adventure-Comedy,en,The origin story of former Special Forces operative turned mercenary Wade Wilson who after being subjected to a rogue experiment that leaves him with accelerated healing powers adopts the alter ego Deadpool. Armed with his new abilities and a dark twisted sense of humor Deadpool hunts down the man who nearly destroyed his life.,125.388,20th Century Fox-The Donners' Company-Genre Films-Marvel Entertainment,2/9/16,58000000,782837347,108,Released,Witness the beginning of a happy ending.,7.61,29643,Ryan Reynolds-Morena Baccarin-Ed Skrein-T.J. Miller-Gina Carano-Leslie Uggams-Brianna Hildebrand-Karan Soni-Jed Rees-Stefan Kapiۍiۈ-Randal Reeder-Isaac C. Singleton Jr.-Michael Benyaer-Style Dayne-Kyle Cassie-Taylor Hickson-Ayzee-Naika Toussaint-Justyn Shippelt-Donna Yamamoto-Hugh Scott-Cindy Piper-Em Haine-Aatash Amir-Chad Riley-Paul Belsito-Darcey Johnson-Kyle Rideout-Jason William Day-Stan Lee-Benjamin Wilkinson-Rachel Sheen-Paul Lazenby-Rob Hayter-Andre Tricoteux-Victoria De Mare-Heather Ashley Chase-Kayla Adams-Olesia Shewchuk-Fabiola Colmenero-Matthew Hoglie,superhero-anti hero-mercenary-based on comic-aftercreditsstinger-duringcreditsstinger,/fSRb7vyIP8rQpL0I47P3qUsEKX3.jpg,/en971MEXui9diirXlogOrPKmsEn.jpg,383498-271110-284052-24428-118340-209112-140607-19995-155-269149-157336-281957-76341-246655-297761-263115-102899-135397-286217-68718-550 +11,Star Wars,Adventure-Action-Science Fiction,en,Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.,96.126,Lucasfilm-20th Century Fox,5/25/77,11000000,775398007,121,Released,"A long time ago in a galaxy far, far away...",8.2,18331,Mark Hamill-Harrison Ford-Carrie Fisher-Peter Cushing-Alec Guinness-Anthony Daniels-Kenny Baker-Peter Mayhew-David Prowse-James Earl Jones-Phil Brown-Shelagh Fraser-Jack Purvis-Alex McCrindle-Eddie Byrne-Drewe Henley-Denis Lawson-Garrick Hagon-Jack Klaff-William Hootkins-Angus MacInnes-Jeremy Sinden-Graham Ashley-Don Henderson-Richard LeParmentier-Leslie Schofield-Michael Leader-David Ankrum-Scott Beach-Lightning Bear-Jon Berg-Doug Beswick-Paul Blake-Janice Burchette-Ted Burnett-John Chapman-Gilda Cohen-Tim Condren-Barry Copping-Alfie Curtis-Robert Davies-Maria De Aragon-Robert A. Denham-Frazer Diamond-Peter Diamond-Warwick Diamond-Sadie Eden-Kim Falkinburg-Harry Fielder-Ted Gagliano-Salo Gardner-Steve Gawley-Barry Gnome-Rusty Goffe-Isaac Grand-Reg Harding-Alan Harris-Frank Henson-Christine Hewett-Arthur Howell-Tommy Ilsley-Joe Johnston-Annette Jones-Linda Jones-Joe Kaye-Colin Michael Kitchens-Melissa Kurtz-Tiffany Hillkurtz-Al Lampert-Anthony Lang-Laine Liska-Derek Lyons-Mahjoub-Alf Mangan-Grant McCune-Geoffrey Moon-Mandy Morton-Lorne Peterson-Marcus Powell-Shane Rimmer-Pam Rose-George Roubicek-Erica Simmons-Angela Staines-George Stock-Roy Straite-Peter Sturgeon-Peter Sumner-John Sylla-Tom Sylla-Malcolm Tierney-Phil Tippett-Burnell Tucker-Morgan Upton-Jerry Walter-Hal Wamsley-Diana Sadley Way-Bill Weston-Fred Wood-Colin Higgins-Ron Tarr-Anthony Forrest-Frances Alfred Basil Tomlin-Ronny Cush,android-galaxy-hermit-smuggling (contraband)-superhero-space-rescue mission-empire-rebellion-planet-desert-super power-space opera-galactic war-wizard-totalitarianism-star-star-wars,/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg,/aDYSnJAK0BTVeE8osOy22Kz3SXY.jpg,1891-1892-1893-1894-1895-140607-120-121-122-181808-330459-85-603-105-155-89-13475-280-272-1726-348 +370172,No Time to Die,Action-Adventure-Thriller,en,Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected leading Bond onto the trail of a mysterious villain armed with dangerous new technology.,89.622,EON Productions-Metro-Goldwyn-Mayer-Universal Pictures,9/29/21,250000000,774153007,163,Released,The mission that changes everything begins��_,7.397,5666,Daniel Craig-L��a Seydoux-Rami Malek-Lashana Lynch-Ralph Fiennes-Ben Whishaw-Naomie Harris-Jeffrey Wright-Ana de Armas-Billy Magnussen-Christoph Waltz-Rory Kinnear-David Dencik-Dali Benssalah-Lisa-Dorah Sonnet-Coline Defaud-Mathilde Bourbin-Hugh Dennis-Priyanga Burford-Joe Grossi-Nicola Olivieri-Pio Amato-Javone Prince-Davina Moon-Mattia Lacovone-Giansalvatore Duca-Amy Morgan-Lizzie Winkler-Andrei Nova-Ernest Gromov-Gediminas Adomaitis-Andy Cheung-Brigitte Millar-Hayden Phillips-Winston Ellis-Adnan Rashed-Rae Lim-Chi Chan-Denis Khoroshko-Lourdes Faberes-Philip Philmar-Raymond Waring-Eliot Sumner-Rod Hunt-Michael Mercer-Gemmar Mcfarlane-Leighton Laing-Kimo Armstrong-Gordon Alexander-Steve Barnett-Tuncay Gunes-Clem So-Ahmed Bakare-Douglas Bunn-Toby Sauerback-Zoltan Rencsar-John Farrer-Paul O'Kelly-Michael G. Wilson-Michael Herne-Julian Ferro-Ross Donnelly,based on novel or book-forgiveness-poison-spy-mi6-family-british secret service-parents-global threat-nanobots,/iUgygt3fscRoKWCV1d0C7FbM9TP.jpg,/r2GAjd4rNOHJh6i6Y0FntmYuPQW.jpg,370712-94605-438631-512195-566525-580489-550988-524434-624860-617653-206647-497698-36557-565770-476669-522402-646380-634649-414906-10764-425909 +118340,Guardians of the Galaxy,Action-Science Fiction-Adventure,en,Light years from Earth 26 years after being abducted Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.,226.317,Marvel Studios,7/30/14,170000000,772776600,121,Released,All heroes start somewhere.,7.904,25891,Chris Pratt-Zoe Salda��a-Dave Bautista-Vin Diesel-Bradley Cooper-Lee Pace-Michael Rooker-Karen Gillan-Djimon Hounsou-John C. Reilly-Glenn Close-Benicio del Toro-Laura Haddock-Sean Gunn-Peter Serafinowicz-Christopher Fairbank-Krystian Godlewski-Wyatt Oleff-Gregg Henry-Janis Ahern-Solomon Mousley-Lindsay Morton-Robert Firth-Melia Kreiling-Tom Proctor-Nick Holmes-Max Wrottesley-Stan Lee-Nicole Alexandra Shipley-Sharif Atkins-Brendan Fehr-Tomas Arana-Mikaela Hoover-Emmett Scanlan-Dominic Grant-Spencer Wilding-Alison Lintott-Alexis Rodney-Nathan Fillion-Keeley Forsyth-Frank Gilhooley-Alexis Denisof-Enzo Cilenti-Richard Katz-Ene Frost-Ronan Summers-Ophelia Lovibond-Laura Ortiz-Marama Corlett-Rosie Jones-Abidemi Sobande-Alex Rose-Ekaterina Zalitko-Emily Redding-Stephen Blackehart-Jennifer Moylan-Taylor-Bruce Mackinnon-Ralph Ineson-Rob Zombie-Naomi Ryan-John Brotherton-Graham Shiels-James Gunn-Douglas Robson-Rachel Cullen-Isabella Poynton-Imogen Poynton-David Yarovesky-Miriam Lucia-Josh Brolin-Lloyd Kaufman-Tyler Bates-Seth Green-Jozef Aoki,spacecraft-based on comic-space-orphan-adventurer-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg,/uLtVbjvS1O7gXL8lUOwsFOH4man.jpg,283995-100402-99861-76338-271110-102899-24428-1726-10195-1771-284052-68721-10138-127585-315635-284053-293660-284054-299536-1724-177572 +414906,The Batman,Crime-Mystery-Thriller,en,In his second year of fighting crime Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.,165.673,6th & Idaho-Dylan Clark Productions-DC Films-Warner Bros. Pictures,3/1/22,185000000,770945583,177,Released,Unmask the truth.,7.714,8191,Robert Pattinson-Zo� Kravitz-Paul Dano-Jeffrey Wright-John Turturro-Peter Sarsgaard-Andy Serkis-Colin Farrell-Jayme Lawson-Gil Perez-Abraham-Peter McDonald-Con O'Neill-Alex Ferns-Rupert Penry-Jones-Charlie Carver-Max Carver-Barry Keoghan-Kosha Engler-Archie Barnes-Janine Harouni-Hana Hrzic-Joseph Walker-Luke Roberts-Oscar Novak-Stella Stocker-Sandra Dickinson-Jack Bennett-Andre Nightingale-Richard James-Neale-Lorraine Tai-Joseph Balderrama-James Eeles-Dave Simon-Angela Yeoh-Leemore Marrett Jr.-Ezra Elliott-Itoya Osagiede-Stewart Alexander-Adam Rojko Vega-Heider Ali-Marcus Onilude-Elena Saurel-Ed Kear-Sid Sagar-Amanda Blake-Todd Boyce-Brandon Bassir-Will Austin-Chabris Napier-Lawrence-Douglas Russell-Phil Aizlewood-Mark Killeen-Philip Shaun McGuinness-Lorna Brown-Elliot Warren-Jay Lycurgo-Stefan Race-Elijah Baker-Craige Middleburg-Akie Kotabe-Spike Fearn-Urielle Klein-Mekongo-Bronson Webb-Madeleine Gray-Ste Johnston-Arthur Lee-Parry Glasspool-Jordan Coulson-Hadas Gold-Pat Battle-Bobby Cuza-Dean Meminger-Roma Torre-Mike Capozzola-Amanda Hurwitz-Joshua Eldridge-Smith-Daniel Rainford-Nathalie Armin-Jose Palma-Kazeem Tosin Amore-Rodrig Andrisan-Craig Douglas,crime fighter-secret identity-nightclub-politician-police-psychopath-vigilante-superhero-based on comic-organized crime-serial killer-millionaire-social injustice-murder investigation-aftercreditsstinger-masked superhero-political corruption-neo-noir-vengeance-mayoral election,/74xTEgt7R36Fpooo50r9T25onhq.jpg,/b0PlSFdDwbyK0cf5RxwDpaOJQvQ.jpg,327749-360606-1010821-1028938-453395-773867-634649-146034-526896-335787-572261-454467-253805-639933-253021-338953-508947-361743-100784-524434-696806 +591,The Da Vinci Code,Thriller-Mystery,en,A murder in Paris�� Louvre Museum and cryptic clues in some of Leonardo da Vinci��s most famous paintings lead to the discovery of a religious mystery. For 2000 years a secret society closely guards information that ��� should it come to light ��� could rock the very foundations of Christianity.,39.207,Imagine Entertainment-Skylark Productions,5/17/06,125000000,767800000,149,Released,Seek the truth,6.724,8845,Tom Hanks-Audrey Tautou-Ian McKellen-Jean Reno-Paul Bettany-Alfred Molina-J�_rgen Prochnow-Jean-Yves Berteloot-Etienne Chicot-Jean-Pierre Marielle-Marie-Fran�_oise Audollent-Rita Davies-Francesco Carnelutti-Seth Gabel-Shane Zaza-Andy Clark-Fausto Maria Sciarappa-Joe Grossi-Denis Podalyd��s-Harry Taylor-Clive Carter-Garance Mazureck-Daisy Doidge-Hill-Lilli-Ella Kelleher-Crisian Emanuel-Charlotte Graham-Xavier de Guillebon-Tonio Descanvelle-David Bark-Jones-Seretta Wilson-Eglantine Rembauville-Nicolle-Dan Tondowski-Aewia Huillet-Roland John-Leopoldie-David Saracino-Lionel Guy-Bremond-Yves Aubert-Rachael Black-Dez Drummond-Mark Roper-Brock Little-Matthew Butler-Hart-Roland Menou-Hugh Mitchell-Tina Maskell-Peter Pedrero-Sam Mancuso-Andre Lillis-Mario Vernazza-Agathe Natanson-Daz Parker-Andy Robb-Tom Barker-Maggie McEwan-Michael Bertenshaw-Sarah Wildor-David Bertrand-Dan Brown,paris france-based on novel or book-holy grail-christianity-monk-secret society-louvre museum-heresy-mona lisa (la gioconda)-freemason-pentagram-conspiracy-tomb-catholicism-cryptologist-iconography-albino-sect,/tYXOOkDxJ7jSvUX5j1Hbks1GjBZ.jpg,/66oSbVOmD4W7S6ILRPssYt51ab4.jpg,13448-207932-8358-2059-652-594-787-9738-8960-310-1593-298-2048-163-6479-608-161-1979-73731-435-564 +8587,The Lion King,Family-Animation-Drama,en,A young lion prince is cast out of his pride by his cruel uncle who claims he killed his father. While the uncle rules with an iron paw the prince grows up beyond the Savannah living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him the young prince must decide his fate: Will he remain an outcast or face his demons and become what he needs to be?,113.759,Walt Disney Pictures-Walt Disney Feature Animation,6/24/94,45000000,763455561,89,Released,Life's greatest adventure is finding your place in the Circle of Life.,8.256,17204,Matthew Broderick-Moira Kelly-Nathan Lane-Ernie Sabella-Robert Guillaume-Rowan Atkinson-James Earl Jones-Jeremy Irons-Jonathan Taylor Thomas-Niketa Calame-Harris-Whoopi Goldberg-Cheech Marin-Jim Cummings-Madge Sinclair-Zoe Leader-Frank Welker-Cathy Cavadini-Judi M. Durand-Daamen J. Krall-David McCharen-Mary Linda Phillips-Phil Proctor-David J. Randolph-Brian Tochi,father murder-loss of loved one-africa-lion-manipulation-redemption-musical-uncle-murder-warthog-shaman-king-scar-family-hyena-meerkat-nature-hamlet-mandrill-murder confession-wildebeest,/sKCr78MXSLixwmZ8DyJLrpMsd15.jpg,/wXsQvli6tWqja51pYxXNG1LFIGV.jpg,862-12-585-812-10020-9732-425-808-10193-953-10681-14160-9806-38757-2062-863-10144-11430-20352-10674-10191 +616037,Thor: Love and Thunder,Fantasy-Action-Comedy,en,After his retirement is interrupted by Gorr the God Butcher a galactic killer who seeks the extinction of the gods Thor Odinson enlists the help of King Valkyrie Korg and ex-girlfriend Jane Foster who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher��s vengeance and stop him before it��s too late.,394.087,Marvel Studios-Kevin Feige Productions,7/6/22,250000000,760928081,119,Released,The one is not the only.,6.625,5488,Chris Hemsworth-Natalie Portman-Christian Bale-Tessa Thompson-Taika Waititi-Jaimie Alexander-Russell Crowe-Chris Pratt-Karen Gillan-Dave Bautista-Pom Klementieff-Sean Gunn-Vin Diesel-Bradley Cooper-Idris Elba-Carly Rees-Kat Dennings-Brett Goldstein-Stellan Skarsg��rd-Luke Hemsworth-Matt Damon-Sam Neill-Melissa McCarthy-Ben Falcone-Suren Jayemanne-Natasha Cheng-Stephen Curry-Bobby Holland Hanton-Daley Pearson-Dianne Close-Greg Mitchell-Briegh Winderbaum-Mayzie Winderbaum-Izaac Winderbaum-Alanis Long Borrello-Luka Bale-Kieron L. Dyer-India Rose Hemsworth-Simon Russell Beale-Manny Spero-Jonny Brugh-Andrew Crawford-Chanique Greyling-Brooke Satchwell-Elsa Pataky-Zia Kelly-Rosangela Fasano-Cameron Chapek-Tristan Hemsworth-Samson Alston-Alan Spies-Eliza Matengu-Shari Sebbens-Victoria Zerbst-Johnny Nasser-Jenna Owen-Gemma Dart-Victoria Ferrara-Ava Rodrigo-Porter-Elsa Rodrigo-Porter-Kaan Guldur-Indeia Booc-Indiana Ierano-Cayla Sutherland-Tui Vincent-Garth Wood-Yure Covich-Matatia Foa'i-Alan Dukes-Alan Tsibulya-Arka Das-Simona Paparelli-Nico Cortez-Priscilla Doueihy-Nicole Milinkovic-Chayla Korewha-Imaan Hadchiti-Carmen Foon-Clariza Vicente-Kuni Hashimoto-Stephen Hunter-Justin Paul Hitchcock-Nazih Kheir-Tatyana Gillam-Indiana Evans-Samantha Allsop-Olivia Vasquez-Adam Todd-Josh Heuston-David Hambly-Janessa Dufty-Ava Caryofyllis-Chlo�� Gouneau-Ben Sinclair-Jane Yubin Kim-Dave Cory-Te Kainga O'Te Hinekahu Waititi-Matewa Kiritapu Waititi-Sasha Hemsworth-Aleph Millepied-Amalia Millepied-Rex Bale-Molly Moriarty-Hannah Gray-Luc Barrett-Luca Darda-Bo Chambers-Zali Mae Harrison-Leeton Alan Ingrey-Evan Stanhope-Jessica May Lynne-Jaimee Rose Lynn-Kim Thien Doan-Simone Landers-Sienna Ngeru-Rafael Siemer-Gabriel Siemer-Ronin Fabi-Arias Vang-Corban Ierano-Xander Mouradian-Jacob Yee-Zachary Levi-Ray Stevenson-Tadanobu Asano-Tom Hiddleston,ex-girlfriend-hero-greek mythology-sequel-superhero-based on comic-shadow-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-heroes-norse god-colorless-child abduction-thor,/pIkRyD18kl4FhoCNQuWxWu5cBLM.jpg,/jsoz1HlxczSuTx0mDl2h0lxy36l.jpg,539681-610150-985939-629176-2-45920-438148-782116-553429-479669-507086-760741-697071-361743-766507-718789-74431-532639-631330-225145 +384018,Fast & Furious Presents: Hobbs & Shaw,Action-Adventure-Comedy,en,Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off they just have traded smack talk and body blows. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity they join forces to defeat him.,130.097,Universal Pictures-Chris Morgan Productions-Seven Bucks Productions,8/1/19,200000000,760098996,137,Released,Nothing is stronger than family.,6.865,6149,Dwayne Johnson-Jason Statham-Idris Elba-Vanessa Kirby-Helen Mirren-Eiza Gonz��lez-Eddie Marsan-Eliana Su'a-Cliff Curtis-Lori Pelenise Tuisano-John Tui-Joshua Mauga-Joe Anoa'i-Rob Delaney-Alex King-Tom Wu-John Macdonald-Georgia Meacham-Laura Porta-Ima Caryl-Shiloh Coke-Joshua Coombes-Meesha Garbett-Harry Hickles-Lucy McCormick-Stephen Mitchell-Akie Kotabe-Felicity Dean-Pete White-Peter Basham-Noah Maxwell Clarke-Joel MacCormack-Vineeta Rishi-Ryan Reynolds-David Mumeni-Gavin Esler-Ansu Kabia-Stephanie Vogt-Dan Li-Adam Ganne-Antonio Mancino-Dan H. McCormick-Thalissa Teixeira-James Dryden-Katia Elizarova-Ella-Rae Smith-Rain Chan-Lee Anne Nyagodzi-Maria Sergejeva-Mackenzie Proll-Jack Kane-Nathan Jones-Spencer Wilding-Axel Nu-Stephen Dunlevy-Timothy Connolly-David Leitch-Michael Wildman-Jobe Allen-Manoj Anand-Lasco Atkins-Pualani Avaeoru-Leo Ayres-Philip John Bailey-Lyon Beckwith-Daniel Bernhardt-Kishore Bhatt-Martin Bratanov-Sergio Briones-Jill Buchanan-Abbey Butler-Conlan Casal-Tim Connolly-Samantha Corcoran-Richard Curtis-James 'JD Knight' Dunn-Daniel Eghan-Viktorija Faith-Francesca Fraser-Vikrem Singh-Michel Alexandre Gonzalez-Mark Gooden-Sonia Goswami-Layne Hannemann-Kevin Hart-Patrick Doran-Ruth Horrocks-Kalanikauleleiaiwi Jardine-Kyle Leatherberry-Westley LeClay-Steven Lewington-Marian Lorencik-Teresa Mahoney-Stephen McGowan-Peter Parker Mensah-Kelemete Misipeka-Pingi Moli-Richard James Montgomery-Sascha Panknin-Hio Pelesasa-Richard Price-Peter Rooney-Israel Ruiz-Rubens Saboia-Ben Santos-Dave Simon-David Sturgeon-Matt Symonds-Matt Townsend-Rutvig Vaid-Jay Waddell-Nicholas Walker-Ryan Bailey-Kevin Hart,london england-biological weapon-secret organization-family clan-spin off-family reunion-buddy comedy-samoa-aftercreditsstinger-duringcreditsstinger-buddy movie-mother son relationship-father daughter relationship-brother sister relationship,/qRyy2UmjC5ur9bDi3kpNNRCc5nc.jpg,/hpgda6P9GutvdkDX5MUJ92QG9aj.jpg,337339-429617-458156-423204-420818-168259-9615-13804-51497-512200-320288-479455-584-453405-82992-373571-299534-385128-509967-290859-9799 +102651,Maleficent,Fantasy-Adventure-Action-Family-Romance,en,A beautiful pure-hearted young woman Maleficent has an idyllic life growing up in a peaceable forest kingdom until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector but she ultimately suffers a ruthless betrayal ��� an act that begins to turn her heart into stone. Bent on revenge Maleficent faces an epic battle with the invading King's successor and as a result places a curse upon his newborn infant Aurora. As the child grows Maleficent realizes that Aurora holds the key to peace in the kingdom ��� and to Maleficent's true happiness as well.,76.437,Walt Disney Pictures-Roth Films,5/28/14,180000000,758539785,97,Released,Don't believe the fairy tale.,7.09,12121,Angelina Jolie-Elle Fanning-Imelda Staunton-Sharlto Copley-Lesley Manville-Juno Temple-Sam Riley-Brenton Thwaites-Kenneth Cranham-Sarah Flind-Michael Higgins-Isobelle Molloy-Jackson Bews-Ella Purnell-Jamie Sives-Angus Wright-Hannah New-Oliver Maltman-Gary Cargill-John O'Toole-Janet McTeer-Harry Attwell-Mark Caven-James Hicks-Anthony May-Stephan Chase-Chris Leaney-Jamie Maclachlan-Vivienne Jolie-Pitt-Eleanor Worthington-Cox-John Macmillan-Tim Treloar-Peter G. Reed-Marama Corlett-Liam McKenna-Steven Cree-Sandy Fox-James Ayling-Raf Cross-Alfred Camp-Terri Douglas-Damon Driver-Josh Dyer-Stephanie Elstob-Ellis Fuller-Craig Garner-Alexander Gillison-Victoria Gugenheim-Daniel Harland-Kara Lily Hayworth-John Heartstone-Matt Hookings-Craig Izzard-Ceri Jerome-Zahara Jolie-Pitt-Lee Edward Jones-Hrvoje Klecz-Karen Mkrtchyan-Jo��o Costa Menezes-Matthew John Morley-Steven John Nice-Jo Osmond-Andrew James Porter-Guy Potter-Marc Rolfe-Jd Roth-round-Julian Seager-Daniel Stisen-Leo Suter-Tom Swacha-Richard Summers-Calvert,fairy-fairy tale-villain-betrayal-curse-dark fantasy-based on fairy tale-retelling-literary adaptation-wings-live action remake,/ik8PugpL41s137RAWEGTAWu0dPo.jpg,/xjotE7aFdZ0D8aGriYjFOtDayct.jpg,109445-157350-150689-101299-222935-62177-198663-131631-38757-127585-118-12155-262500-8966-18239-50620-177572-420809-240832-82702-102382 +1930,The Amazing Spider-Man,Action-Adventure-Fantasy,en,Peter Parker is an outcast high schooler abandoned by his parents as a boy leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father he begins a quest to understand his parents' disappearance ��� leading him directly to Oscorp and the lab of Dr. Curt Connors his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego The Lizard Peter will make life-altering choices to use his powers and shape his destiny to become a hero.,103.377,Marvel Entertainment-Laura Ziskin Productions-Columbia Pictures-Matt Tolmach Productions-Avi Arad Productions,6/23/12,215000000,757930663,136,Released,The untold story begins.,6.682,15788,Andrew Garfield-Emma Stone-Rhys Ifans-Denis Leary-Martin Sheen-Sally Field-Max Charles-Campbell Scott-Embeth Davidtz-Chris Zylka-Irrfan Khan-C. Thomas Howell-Jake Keiffer-Hannah Marks-Kari Coleman-Michael Barra-Leif Gantvoort-Andy Pessoa-Kelsey Asbille-Kevin McCorkle-Andy Gladbach-Ring Hendricks-Tellefsen-Barbara Eve Harris-Stan Lee-Danielle Burgio-Tom Waite-Keith Campbell-Steve DeCastro-Jill Flint-Mark Daugherty-Milton Gonz��lez-Skyler Gisondo-Charlie DePew-Jacob Rodier-Vincent Laresca-Damien Lemon-Ty Upshaw-James Chen-Alexander Bedria-Tia Texada-Jay Caputo-John Burke-Terry Bozeman-Jennifer Lyons-Michael Massee-Amber Stevens West-Max Bogner-Ethan Cohn-Miles Elliot-Miranda LaDawn Hill-Amanda MacDonald-Maury Morgan-Michael Papajohn,loss of loved one-experiment-vigilante-superhero-based on comic-teenage girl-violent death-teenage boy-super power-spider bite-masked vigilante-reboot-genetic engineering-social outcast-death of husband-duringcreditsstinger-teenage hero-virus-teenage angst-vigilante justice,/jIfkQNARYyERqRAq1p1c8xgePp4.jpg,/sLWUtbrpiLp23a0XDSiUiltdFPJ.jpg,102382-559-557-558-10138-68721-24428-1771-10195-1726-49538-49026-49521-70160-1865-2080-272-76338-36657-37724-1724 +131631,The Hunger Games: Mockingjay - Part 1,Science Fiction-Adventure-Thriller,en,Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.,161.029,Lionsgate-Color Force,11/19/14,125000000,755356711,123,Released,Fire burns brighter in the darkness,6.804,14974,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Julianne Moore-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Donald Sutherland-Willow Shields-Sam Claflin-Jena Malone-Mahershala Ali-Natalie Dormer-Wes Chatham-Elden Henson-Patina Miller-Evan Ross-Paula Malcomson-Sarita Choudhury-Stef Dawson-Robert Knepper-Caitlin Fowler-Jada Taylor-Nicholas Pryor-Donna Biscoe-Michael Garza-Erika Bierman-Jenique Bennett-Rus Blackwell-Stevie Ray Dallimore-Breann Couch-Jordan Woods-Robinson-Katie Sawhill-Jackson Mizell-Charles Kronmuller-Jennifer Cocker-Marshall Choka-Tyler Lee Allen-Jasmine Ahnie-Brayden Patterson-Emma Elle Roberts-Molly Evensen-William Frasca-Joe Crosson-Gregory Fears-Charles White Jr.-Angel Giuffria-Ryan DeLaney,based on novel or book-resistance-dystopia-post-apocalyptic future-sequel-female protagonist-bow and arrow-game-future war-revolt-class prejudice-human subjugation-based on young adult novel,/4FAA18ZIja70d1Tu5hr5cj2q1sB.jpg,/tFlSDoWQsAZ2qjICKzfP5Yw6zM5.jpg,327749-131634-101299-70160-360606-1028938-262500-198663-157350-1029119-67200-12444-12445-122917-294254-454467-675-767-109445-672-674 +10192,Shrek Forever After,Comedy-Adventure-Fantasy-Animation-Family,en,A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again but when he's duped and sent to a twisted version of Far Far Away���where Rumpelstiltskin is king ogres are hunted and he and Fiona have never met���he sets out to restore his world and reclaim his true love.,123.12,DreamWorks Animation,5/16/10,165000000,752600000,93,Released,It ain't Ogre... Til it's Ogre,6.355,6850,Mike Myers-Eddie Murphy-Cameron Diaz-Antonio Banderas-Walt Dohrn-Julie Andrews-John Cleese-Jon Hamm-Jane Lynch-Craig Robinson-Lake Bell-Kathy Griffin-Mary Kay Place-Kristen Schaal-Meredith Vieira-Ryan Seacrest-Cody Cameron-Larry King-Regis Philbin-Christopher Knights-Conrad Vernon-Aron Warner-Jasper Johannes Andrews-Ollie Mitchell-Miles Bakshi-Nina Zoe Bakshi-Billie Hayes-Jeremy Hollingworth-Brian Hopkins-Chris Miller-Mike Mitchell-James Ryan-Ashley Boettcher-Danielle Soibelman-Frank Welker,sequel-ogre,/6HrfPZtKcGmX2tUWW3cnciZTaSD.jpg,/gVl6aX2paJIHpMxAAe8X36VNExi.jpg,810-809-808-10527-8355-953-80321-950-9502-46195-13053-49444-425-57800-5559-22794-15512-863-38757-38055-10555 +127585,X-Men: Days of Future Past,Action-Adventure-Science Fiction,en,The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past ��� to save our future.,53.206,Bad Hat Harry Productions-The Donners' Company-Simon Kinberg Productions-20th Century Fox,5/15/14,250000000,747862775,132,Released,"To save the future, they must alter the past.",7.5,14182,Hugh Jackman-James McAvoy-Michael Fassbender-Jennifer Lawrence-Nicholas Hoult-Patrick Stewart-Ian McKellen-Halle Berry-Elliot Page-Peter Dinklage-Anna Paquin-Evan Peters-Josh Helman-Shawn Ashmore-Omar Sy-Daniel Cudmore-Fan Bingbing-Adan Canto-Booboo Stewart-Evan Jonigkeit-Famke Janssen-James Marsden-Kelsey Grammer-Lucas Till-Mark Camacho-Zehra Leverman-Alexander Felici-Jan Gerste-Massimo Cannistraro-Mike Dopud-Lee Villeneuve-Andreas Apergis-Robert Montcalm-Gregg Lowe-Jaa Smith-Johnson-Alex Ivanovici-Alain Dahan-Freddy Bessa-Patricia Tougas-Michael Lerner-Chris Claremont-Len Wein-Fran�_ois Paquette-Zabryna Guevara-Angela Galuppo-Milo Chang Sigel-Kiana Chang Sigel-Victor Cornfoot-Brent Skagford-Kyle Gatehouse-John-S��bastien C��t��-St��phane Julien-Taris Tyler-Darryl Scheelar-Thai-Hoa Le-Johnny Tran-Hryhoriy Hlady-Dang Quoc Thinh-Vladimir Aksenov-Jimmy Chan-Julian Casey-Robert Crooks-Matt Cooke-Tim Post-Jason Deline-Karine Vanasse-Pierre Leblanc-Jude Beny-Arthur Holden-Susanna Fournier-Andrew Peplowski-John Sanford Moore-Moe Jeudy-Lamour-Harry Standjofski-Brianna Bone-Neil Napier-Jason Koehler-Miya Shelton-Contreras-Mizinga Mwinga-Christian Jadah-Brendan Pedder-Bryan Singer-Morgan Lily-Sean Curley,1970s-mutant-time travel-based on comic-superhuman-storm-political intrigue��-extinction-beast-claws-aftercreditsstinger-changing the past or future,/tYfijzolzgoMOtegh1Y7j2Enorg.jpg,/fctQU5MoXgJ5pNMljFzlEFXwfSu.jpg,246655-468015-803843-758982-477295-600360-750741-49538-919459-107488-36658-36668-76170-100402-36657-2080-56497-76338-44090-102382-118340 +80321,Madagascar 3: Europe's Most Wanted,Animation-Family-Comedy-Adventure,en,Animal pals Alex Marty Melman and Gloria are still trying to make it back to New York's Central Park Zoo. They are forced to take a detour to Europe to find the penguins and chimps who broke the bank at a Monte Carlo casino. When French animal-control officer Capitaine Chantel DuBois picks up their scent Alex and company are forced to hide out in a traveling circus.,70.042,DreamWorks Animation,6/6/12,145000000,746921274,93,Released,They Have One Shot to Get Back Home.,6.6,5426,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Frances McDormand-Sacha Baron Cohen-Andy Richter-Cedric the Entertainer-Jessica Chastain-Bryan Cranston-Martin Short-Paz Vega-Frank Welker-Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-Vinnie Jones-Steve Jones-Nick Fletcher-Danny Jacobs-Dan O'Connor-Eric Darnell-Stephen Kearin-Emily Nordwind-Asucena Jimenez,circus-lion-zoo-hippopotamus-giraffe-penguin-madagascar-friendship-cartoon-zebra-slapstick comedy-animal-lemur-talking animals,/cF3NBLvutUyhliNcnnhNdX4NI9U.jpg,/pGa4217asjzjepco86110xLWjE4.jpg,10527-953-57800-8355-46195-49444-10192-950-810-9502-49013-425-13053-22794-76492-809-15512-38055-49519-81188-41513 +297761,Suicide Squad,Action-Adventure-Fantasy,en,From DC Comics comes the Suicide Squad an antihero team of incarcerated supervillains who act as deniable assets for the United States government undertaking high-risk black ops missions in exchange for commuted prison sentences.,51.35,DC Entertainment-Dune Entertainment-Warner Bros. Pictures-Atlas Entertainment-DC Comics-DC Films-Lin Pictures,8/3/16,175000000,746846894,123,Released,Worst Heroes Ever,5.9,19723,Will Smith-Jared Leto-Margot Robbie-Joel Kinnaman-Viola Davis-Jai Courtney-Jay Hernandez-Adewale Akinnuoye-Agbaje-Cara Delevingne-Ike Barinholtz-Scott Eastwood-Adam Beach-Karen Fukuhara-Common-David Harbour-Jim Parrack-Alex Meraz-Corina Calderon-Ben Affleck-Ezra Miller-Robin Atkin Downes-Shailyn Pierre-Dixon-Matt Baram-Alain Chanoine-Ted Whittall-Michael Murray-Jaime FitzSimons-Christopher Dyson-Bambadjan Bamba-Robert B. Kennedy-Billy Otis-James McGowan-Derek Perks-Aidan Devine-Andrew Bee-Clive McLean-Frank J. Zupancic-Kent Sheridan-Roger Shank-Dwight Ireland-Amanda Brugel-Peter Tufford Kennedy-Rosemary De Los Santos-Kevin Hanchard-Joel Lacoursiere-Jameson Kraemer-Ho Chow-Birgitte Solem-Kevin Vance-Tyler Grey-Nathan Brown-Kenneth Choi-Nicolas Van Burek-Agueda Cardenas-Daniela Uruena-Nicolas Uruena-Ariane Bellamar-Murray Urquhart-Tim Ajro-Devlin Anderson-Briana Andrade-Gomes-Raffi Atamian-John Byers-Heather Byrne-Corey Chainey-Shak Chaudhry-James Chilli Chillingworth-Andrew Christie-Alex Chung-Gavin R. Downes-Reid Eastwood-Scott Edgecombe-Brendan Egan-Jeff Ellenberger-Tatyana Figueiredo-Gary 'Si-Jo' Foo-Tazito Garcia-Brianna Goldie-William Hainsworth-Shawn J. Hamilton-Shane Harbinson-Fatimah Hassan-Dexter Howe-Mellanie Hubert-David Ingram-Shane Clinton Jarvis-Sergio Kato-Kevin Kent-Martin Kessler-Melissa Lem-John MacDonald-Stephanie Manchulenko-Matthew Mease-Christopher Meneses-Valiant Michael-Sabine Mondestin-Justin Moses-Drew Moss-Afsheen Olyaie-Dan Petronijevic-Alisha Phillips-Tamina Pollack-Paris-Michael Prather-Dennisha Pratt-Asad Que-Mark Quigley-Darryl Quon-Hugh Scott-Attila Sebesy-Rick Silver-Connor Skific-Amos Stern-Goran Stjepanovic-Vivienne Taylor-Jasmine Ren��e Thomas-Alen Toric-Dallas Wade-Joe Warshaw-James Weicht-Taylor Whittaker-Robert L. Wilson-Ryan Groves-Tony Watt,anti hero-secret mission-villain-superhero-supervillain-dc extended universe (dceu),/xFw9RXKZDvevAGocgBK0zteto4U.jpg,/zC70x9wqPPtxU99HsoGsxQ8IhSw.jpg,209112-293660-271110-246655-284052-259316-297762-291805-118340-102899-127585-99861-135397-269149-283366-263115-49521-330459-283995-76338-127380 +967614,X-Men: Days of Future Past - Rogue Cut,Adventure-Action-Fantasy-Science Fiction,en,Anna Paquin the actress who played Rogue in the first three X-Men films shot scenes for the 2014 theatrically released movie (Days of Future Past) but they later ended up on the cutting room floor due to time constraints. This extended version contains the scenes involving the character Rogue along with a few other changes from the original film.,5.379,,7/14/15,220000000,746000000,142,Released,X-Men: Days of Future Past - Rogue Cut,9,1,Hugh Jackman-Anna Paquin-James McAvoy-Michael Fassbender-Jennifer Lawrence-Nicholas Hoult-Patrick Stewart-Ian McKellen-Halle Berry-Elliot Page-Peter Dinklage-Evan Peters-Josh Helman-Shawn Ashmore-Omar Sy-Daniel Cudmore-Fan Bingbing-Adan Canto-Booboo Stewart-Evan Jonigkeit-Famke Janssen-James Marsden-Kelsey Grammer-Lucas Till-Mark Camacho,superhero team-marvel comics,/oY9G3W7MS2V1LZrcSwYOFwHz5hp.jpg,/Av8Yna9Oy7QYzLk2cZ35ZsMZp27.jpg, +411,"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",Adventure-Family-Fantasy,en,Siblings Lucy Edmund Susan and Peter step through a magical wardrobe and find the land of Narnia. There they discover a charming once peaceful kingdom that has been plunged into eternal winter by the evil White Witch Jadis. Aided by the wise and magnificent lion Aslan the children lead Narnia into a spectacular climactic battle to be free of the Witch's glacial powers forever.,363.431,Walt Disney Pictures-Walden Media-C.S. Lewis Company,12/7/05,180000000,745013115,143,Released,Evil Has Reigned For 100 Years...,7.12,9361,Georgie Henley-Skandar Keynes-William Moseley-Anna Popplewell-Tilda Swinton-James McAvoy-Jim Broadbent-Kiran Shah-James Cosmo-Judy McIntosh-Elizabeth Hawthorne-Patrick Kake-Shane Rangi-Brandon Cook-Cassie Cook-Morris Lupton-Shelly Edwards-Susan Haldane-Margaret Bremner-Jaxin Hall-Terry Murdoch-Katrina Browne-Lee Tuson-Elizabeth Kirk-Felicity Hamill-Kate O'Rourke-Sonya Hitchcock-Lucy Tanner-Tiggy Mathias-Gregory Cooper-Richard King-Russell Pickering-Ben Barrington-Charles Williams-Vanessa Cater-Allison Sarofim-Alina Phelan-Stephen Ure-Sam La Hood-Ajay Ratilal Navi-Bhoja 'BK' Kannada-Zakiuddin Mohd. Farooque-M. Ramaswami-Praphaphorn 'Fon' Chansantor-Nikhom Nusungnern-Doungdieo Savangvong-Rachael Henley-Mark Wells-Noah Huntley-Sophie Winkleman-Liam Neeson-Ray Winstone-Dawn French-Rupert Everett-Cameron Rhodes-Philip Steuer-Jim May-Sim Evan-Jones-Douglas Gresham-Michael Madsen,saving the world-sibling relationship-witch-based on novel or book-self sacrifice-winter-cupboard-beaver-lion-fairy tale-epic-surrealism-battle-based on children's book-fantasy world-duringcreditsstinger-1940s-high fantasy-based on young adult novel-faun-good versus evil,/iREd0rNCjYdf5Ar0vfaW32yrkm.jpg,/9iRRfMZbnpgHDdKi2lczGGYZXDo.jpg,2454-10140-24257-21-481-1593-32657-953-425-809-950-118-9738-8355-285-810-674-675-767-808-38757 +62211,Monsters University,Animation-Family,en,A look at the relationship between Mike and Sulley during their days at Monsters University ��� when they weren't necessarily the best of friends.,60.555,Pixar-Walt Disney Pictures,6/19/13,200000000,743559607,104,Released,School never looked this scary.,7,9556,Billy Crystal-John Goodman-Steve Buscemi-Helen Mirren-Peter Sohn-Joel Murray-Sean Hayes-Dave Foley-Charlie Day-Alfred Molina-Tyler Labine-Nathan Fillion-Aubrey Plaza-Bobby Moynihan-Noah Johnston-Julia Sweeney-Bonnie Hunt-John Krasinski-Bill Hader-Beth Behrs-Bob Peterson-John Ratzenberger-Lori Alan-Carlos Alazraqui-Jack Angel-Bob Bergen-Gregg Berger-Rodger Bumpass-Neil Campbell-Ava Acres-Sherry Lynn-Paul Lazenby-Aram�� Scott-Joseph John Schirle-Kristen Li-Davin Ransom-Raymond Ochoa-Calum John-Montse Hernandez-Mason Cook-Makenna Cowgill-Tyree Brown-Jack Bright-Isabella Acres-April Winchell-Colette Whitaker-Jim Ward-Marcia Wallace-David Theune-Tara Strong-Mindy Sterling-Joel Spence-Betsy Sodaro-Patrick Seitz-Dan Scanlon-Jan Rabson-Cristina Pucelli-Jeff Pidgeon-Dannah Feinglass Phirman-Donovan Patton-Bret 'Brook' Parker-Colleen O'Shaughnessey-Laraine Newman-David Neher-Pam Murphy-Matthew Mercer-Alec Medlock-Allan McLeod-Mickie McGowan-Tricia McAlpin-Mona Marshall-Jason Marsden-Danny Mann-Dawnn Lewis-Elissa Knight-John Kassir-Brandon Johnson-Jess Harnell-Mike Hanford-Daniel Gerson-Teresa Ganzel-Donald Fullilove-Andy Fischer-Price-Keith Ferguson-Bill Farmer-Paul Eiding-Greg Dykstra-John Cygan-Sean Conroy-Patrick Carlyle-Natalie Jane Dang-Gage Davenport-Ethan Louis Samuels DiSalvio-Faith Goblirsch-Brooke Klinger-Nikolas Michailidis-Marley Pearson-Lindsay Lefler,monster-training camp-dormitory-friendship-games-prequel-feud-bully-best friend-university-fraternity-aftercreditsstinger-college student-personification,/y7thwJ7z5Bplv6vwl6RI0yteaDD.jpg,/pK42lGbT48fClhtEcP7gvk4hoXP.jpg,585-10193-2062-863-62177-12-920-9806-49013-862-14160-9487-93456-10681-38757-953-127380-150540-950-82690-808 +615453,Ne Zha,Animation-Fantasy-Adventure,zh,The Primus extracts a Mixed Yuan Bead into a Spirit Seed and a Demon Pill. The Spirit Seed can be reincarnated as a human to help King Zhou establish a new dynasty whereas the Demon Pill will create a devil threatening humanity. Ne Zha is the one who is destined to be the hero but instead he becomes a devil incarnate because the Spirit Seed and a Demon Pill are switched.,23.317,Beijing Enlight Pictures-Horgos Coloroom Pictures-October Media-Chengdu Coco Cartoon,7/26/19,20000000,742500000,110,Released,,7.925,318,L�_ Yanting-Joseph-Han Mo-Chen Hao-L�_ Qi-Yang Wei-Zhang Jiaming-He Yuxiang-Ren Junpeng-Yu Chen-Liu Linzhu-Da Hai-Xingliner-Li Nan-Tao Yuan,based on novel or book-swordplay-magic-dragon-demon-16th century-donghua-feng shen yanyi-nezha character-nezha-3d computer animation,/vhnxaQel1CwfcwLtCkTNpSdjte1.jpg,/eGK2JJO1ZeoabWThHmC9IjUTmfP.jpg,635389-351694-532753-663558-573699-19067-612845-10753-535167-575813-455714-928344-360814-568160-10376-899112-637-43949-389-431693-20453 +504093,The Legend of Nezha,Fantasy,zh,Nezha gets into trouble and implicates his parents who get punished by the heavens along with him. He bravely steps up and admits his fault which touches the heavens and his effort comes to fruition. The family of three finally reunites in the end.,3.241,Film Carnival-Rocket Science 3D-Its Just Us Productions-October Media,,20000000,742500000,110,Post Production,,0,0,Michelle Yeoh-Zhang Feng Yi-Collin Chou-Leo Wu-Winston Chao-Jiang Chao-Jike Junyi-Zhang Chunzhong-Xing Fei-Pao Guoan-Fu Qianwen,based on novel or book-swordplay-magic-curse-dragon-demon-historical-based on fairy tale-based on myths legends or folklore-crude-donghua-3d computer animation,/4SCKVllTzSo3iDmD8MDjK72QH4s.jpg,, +604,The Matrix Reloaded,Adventure-Action-Thriller-Science Fiction,en,Six months after the events depicted in The Matrix Neo has proved to be a good omen for the free humans as more and more humans are being freed from the matrix and brought to Zion the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war Neo Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough Agent Smith has somehow escaped deletion has become more powerful than before and has fixed Neo as his next target.,40.388,Village Roadshow Pictures-Silver Pictures-NPV Entertainment,5/15/03,150000000,738599701,138,Released,Free your mind.,7.038,9833,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Jada Pinkett Smith-Gloria Foster-Harold Perrineau-Monica Bellucci-Harry Lennix-Lambert Wilson-Randall Duk Kim-Nona Gaye-Anthony Zerbe-Daniel Bernhardt-Helmut Bakaitis-David Kilde-Matt McColm-Collin Chou-Neil Rayment-Adrian Rayment-Don Battee-Valerie Berry-Steve Bastoni-Ian Bliss-Liliana Bogatko-Michael Budd-Stoney Burke-Kelly Butler-Josephine Byrnes-Noris Campos-Paul Cotter-Marlene Cummins-Attila Davidhazy-Essie Davis-Terrell Dixon-Nash Edgerton-David Franklin-Daryl Heath-Roy Jones Jr.-Austin Galuppo-Malcolm Kennard-Christopher Kirby-Peter Lamb-Nathaniel Lees-Tony Lynch-Robert Mammone-Joshua Mbakwe-Chris Mitchell-Steve Morris-Tory Mussett-Rene Naufahu-Robyn Nevin-David William No-Genevieve O'Reilly-Socratis Otto-Monta��o Rain-Rupert Reid-Cornel West-David Roberts-Shane C. Rodrigo-Nick Scoggin-Kevin Scott-Tahei Simpson-Frankie Stevens-Nicandro Thomas-Gina Torres-Andrew Valli-Andy Arness-Steve Vella-John Walton-Clayton Watson-Leigh Whannell-Bernard White-Scott McLean-Anthony Brandon Wong-Christine Anu-Ray Anthony-Rick Shuster-Tiger Hu Chen-Marcus Young-David Leitch,saving the world-artificial intelligence-man vs machine-prophecy-martial arts-kung fu-underground world-dream-hero-fight-computer virus-key-future-plato-precognition-rave-dying and death-virtual reality-dystopia-computer-faith-truth-car crash-mission-cyberpunk-woman director-action hero-gnosticism-oracle,/9TGHDvWrqKBzwDxDodHYXEmOE6J.jpg,/pxK1iK6anS6erGg4QePmMKbB1E7.jpg,605-603-607-296-2048-2501-608-36668-534-280-1271-36658-36657-954-602-218-1893-1858-558-1894-180 +14160,Up,Animation-Comedy-Family-Adventure,en,Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78 life seems to have passed him by until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.,96.804,Pixar,5/28/09,175000000,735099082,96,Released,The greatest adventure is just getting back home.,7.954,19277,Ed Asner-Christopher Plummer-Jordan Nagai-Bob Peterson-Delroy Lindo-Jerome Ranft-John Ratzenberger-David Kaye-Elie Docter-Jeremy Leary-Mickie McGowan-Danny Mann-Donald Fullilove-Jess Harnell-Josh Cooley-Pete Docter-Mark Andrews-Bob Bergen-Brenda Chapman-Emma Coats-John Cygan-Paul Eiding-Tony Fucile-Teresa Ganzel-Sherry Lynn-Laraine Newman-Teddy Newton-Jeff Pidgeon-Valerie LaPointe-Jan Rabson-Bob Scott,central and south america-age difference-balloon-travel-dog-duringcreditsstinger-pets-exploring-senior,/vpbaStTMt8qqXaEgnOR2EE4DNJk.jpg,/hGGC9gKo7CFE3fW07RA587e5kol.jpg,12-10681-2062-585-862-9806-10193-863-150540-920-62177-425-808-62211-8587-38757-20352-49013-9502-10191-950 +385128,F9,Action-Adventure-Crime,en,Dominic Toretto and his crew battle the most skilled assassin and high-performance driver they've ever encountered: his forsaken brother.,63.178,Original Film-One Race-Perfect Storm Entertainment-Universal Pictures-Roth-Kirschenbaum Films,5/19/21,200000000,726229501,143,Released,Justice is coming.,7.1,6718,Vin Diesel-Michelle Rodriguez-Tyrese Gibson-Ludacris-John Cena-Nathalie Emmanuel-Jordana Brewster-Sung Kang-Michael Rooker-Helen Mirren-Kurt Russell-Charlize Theron-Finn Cole-Thue Ersted Rasmussen-Anna Sawai-Lucas Black-Shad Moss-Don Omar-Shea Whigham-Vinnie Bennett-J. D. Pardo-Jim Parrack-Siena Agudong-Isaac Holtane-Immanuel Holtane-Azia Dinea Hale-Zhang Juju-Karson Kern-Igby Rigney-Sophia Tatum-Francis Ngannou-Martyn Ford-Bad Bunny-Jimmy Lin-Jason Tobin-Cardi B-Cered-Ozuna-Oqwe Lin-Bill Simmons-Vincent Sinclair Diesel-Luka Hays-Robert Bastens-Jason Statham-Gal Gadot-Demitra Sealy,speed-family relationships-sequel-duringcreditsstinger-fast car-brother brother relationship,/bOFaAXmWWXC3Rbv4u4uM9ZSzRXP.jpg,/xXHZeb1yhJvnSHPzZDqee0zfMb6.jpg,451048-436969-337339-497698-384018-168259-13804-9615-51497-550988-637649-584-82992-9799-379686-588228-450519-512195-617502-788106-566525 +49047,Gravity,Science Fiction-Thriller-Drama,en,Dr. Ryan Stone a brilliant medical engineer on her first Shuttle mission with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk disaster strikes. The Shuttle is destroyed leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic every gulp of air eats away at what little oxygen is left. But the only way home may be to go further out into the terrifying expanse of space.,25.848,Esperanto Filmoj-Warner Bros. Pictures-Heyday Films,10/3/13,105000000,723192705,91,Released,Don't let go.,7.2,14727,Sandra Bullock-George Clooney-Ed Harris-Orto Ignatiussen-Phaldut Sharma-Amy Warren-Basher Savage,space mission-loss-space-astronaut-space station-trapped in space,/kZ2nZw8D681aphje8NJi8EfbL1U.jpg,/a2n6bKD7qhCPCAEALgsAhWOAQcc.jpg,37724-274870-72190-194662-68724-286217-68726-157336-106646-101299-64690-181808-118340-75656-76338-77338-152601-146233-49521-109445-37165 +100402,Captain America: The Winter Soldier,Action-Adventure-Science Fiction,en,After the cataclysmic events in New York with The Avengers Steve Rogers aka Captain America is living quietly in Washington D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed Captain America and the Black Widow enlist the help of a new ally the Falcon. However they soon find themselves up against an unexpected and formidable enemy���the Winter Soldier.,37.187,Marvel Studios,3/20/14,170000000,714766572,136,Released,In heroes we trust.,7.674,17566,Chris Evans-Scarlett Johansson-Sebastian Stan-Anthony Mackie-Cobie Smulders-Frank Grillo-Emily VanCamp-Hayley Atwell-Robert Redford-Samuel L. Jackson-Toby Jones-Jenny Agutter-Maximiliano Hern��ndez-Georges St-Pierre-Callan Mulvey-Alan Dale-Chin Han-Bernard White-Stan Lee-Garry Shandling-Salvator Xuereb-Brian Duffy-Zack Duhame-Adetokumboh M'Cormack-Christopher George Sarris-Aaron Himelstein-Allan Chanes-Joe Russo-Christopher Markus-Stephen McFeely-Pat Healy-Ed Brubaker-D.C. Pierson-Danny Pudi-Bernie Zilinskas-Branka Katiۈ-Angela Russo-Otstot-Jon Sklaroff-Chad Todhunter-Abigail Marlowe-Jeremy Maxwell-Emerson Brooks-Evan Parke-Ricardo Chacon-Griffin M. Allen-Ann Russo-Joe Rosalina-Michael Debeljak-Eddie J. Fernandez-Jody Hart-Steven Culp-Derek Hughes-Wendy Hoopes-Ethan Rains-Dominic Rains-Charles Wittman-Andy Martinez Jr.-Michael De Geus-Terence O'Rourke-Anne Grimenstein-Dante Rosalina-Robert Clotworthy-June Christopher-Gary Sinise-Henry Goodman-Dean Barlage-Joel Thingvall-Thomas Kretschmann-Elizabeth Olsen-Nestor Serrano-Aaron Taylor-Johnson,washington dc usa-future-shield-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-political thriller,/tVFRpFw3xTedgPGqxW0AOI8Qhh0.jpg,/1RWLMyC9KcFfcaoViMiJGSSZzzr.jpg,1771-76338-99861-271110-68721-10138-10195-102899-118340-24428-1726-284052-1724-283995-127585-284053-102382-315635-363088-284054-49521 +50619,The Twilight Saga: Breaking Dawn - Part 1,Adventure-Fantasy-Romance,en,The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world.,61.355,Summit Entertainment-Sunswept Entertainment-TSBD Canada Productions-TSBD Louisiana-TSBD Productions-Temple Hill Entertainment-Total Entertainment,11/16/11,110000000,712171856,117,Released,Forever is just the beginning,6.206,8133,Kristen Stewart-Robert Pattinson-Taylor Lautner-Billy Burke-Peter Facinelli-Michael Sheen-Elizabeth Reaser-Kellan Lutz-Nikki Reed-Jackson Rathbone-Ashley Greene-Anna Kendrick-Sarah Clarke-Christian Camargo-Gil Birmingham-Julia Jones-Booboo Stewart-M�_a Maestro-Casey LaBow-Maggie Grace-MyAnna Buring-Ty Olsson-Christian Sloan-James Pizzinato-Ian Harmon-Gabriel Carter-Christian Serratos-Michael Welch-Justin Chon-Christopher Heyerdahl-Jamie Campbell Bower-Andy Rukes-Alex Rice-Paul Becker-Stephanie Moseley-Kiowa Gordon-Tyson Houseman-Chaske Spencer-Bronson Pelletier-Alex Meraz-Tinsel Korey-Tanaya Beatty-Sienna Joseph-Carolina Virguez-Sebasti��o Lemos-Mackenzie Foy-Ali Faulkner-Charlie Bewley-Daniel Cudmore-Stephenie Meyer-Melissa Rosenberg,based on novel or book-vampire-hybrid-teen movie-werewolf-supernatural creature-dead-duringcreditsstinger-based on young adult novel,/qs8LsHKYlVRmJbFUiSUhhRAygwj.jpg,/yLpMWckfrzRiNZxB2tgBa5TkUKh.jpg,24021-50620-18239-8966-58595-12444-1029119-675-32657-767-12445-674-131631-10140-672-1865-222935-70160-597-673-411 +119450,Dawn of the Planet of the Apes,Science Fiction-Action-Drama-Thriller,en,A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity while Caesar tries to maintain dominance over his community of intelligent apes.,67.225,TSG Entertainment-Chernin Entertainment-Ingenious Media,6/26/14,170000000,710644566,130,Released,One last chance for peace.,7.31,10486,Andy Serkis-Jason Clarke-Gary Oldman-Keri Russell-Toby Kebbell-Kodi Smit-McPhee-Kirk Acevedo-Nick Thurston-Terry Notary-Karin Konoval-Judy Greer-Jon Eyez-Enrique Murciano-Doc Shaw-Lee Ross-Keir O'Donnell-Kevin Rankin-Jocko Sims-Al Vicente-Matthew James-Richard King-Scott Lang-Deneen Tyler-Mustafa Harris-Lombardo Boyar-Mike Seal-J.D. Evermore-Chase Boltin-Michael Papajohn-Thomas Rosales Jr.-Carol Sutton-Christopher Berry-Sergio Kato-Michael Bloomberg-James Franco-Santana Draper-Monica Rene'e Anderson-John L. Armijo-Joe Bravo-Steve D'Assis-Mike R. Moreau-Jazzy Ellis-Lucky Johnson-Allyson Leigh Jordan-Angela Kerecz-Bobby Kerecz-Anthony A. Kung-Richie J. Ladner-John R Mangus-John Parsons-Mel Powell-Carl Joseph Schreiber-Timothy Wyant-Lynnanne Zager-Barack Obama,dystopia-post-apocalyptic future-animal attack-leader-colony-forest-sequel-woods-ape-scientist-monkey-medical research-plague-2030s,/kScdQEwS9jPEdnO23XjGAtaoRcT.jpg,/zlU8BIkgY7E6SMfD3USTWC6bchL.jpg,61791-281338-127585-137113-91314-58087-124905-98566-118340-100402-198663-240832-122917-76338-102382-135397-49679-57158-49521-131631-99861 +18239,The Twilight Saga: New Moon,Adventure-Fantasy-Drama-Romance,en,Forks Washington resident Bella Swan is reeling from the departure of her vampire love Edward Cullen and finds comfort in her friendship with Jacob Black a werewolf. But before she knows it she's thrust into a centuries-old conflict and her desire to be with Edward at any cost leads her to take greater and greater risks.,62.993,Summit Entertainment-Maverick Films-Imprint Entertainment-Sunswept Entertainment-Temple Hill Entertainment,11/18/09,50000000,709827462,131,Released,The Next Chapter Begins.,6,8301,Kristen Stewart-Robert Pattinson-Taylor Lautner-Dakota Fanning-Michael Sheen-Ashley Greene-Rachelle Lefevre-Billy Burke-Peter Facinelli-Elizabeth Reaser-Jackson Rathbone-Kellan Lutz-Nikki Reed-Edi Gathegi-Graham Greene-Gil Birmingham-Anna Kendrick-Michael Welch-Justin Chon-Christian Serratos-Jamie Campbell Bower-Christina Jastrzembska-Russell Roberts-Christopher Heyerdahl-Curtis Caravaggio-Daniel Cudmore-Charlie Bewley-Chaske Spencer-Adrien Dorval-Michael Adamthwaite-Alexander Mendeluk-Hunter Jackson-Gavin Bristol-Sean McGrath-Tyson Houseman-Kiowa Gordon-Alex Meraz-Bronson Pelletier-Tinsel Korey-Corinna Russo-Maria Grazia Pompei-Roberto Marchetti-Alessandro Federico-Justine Wachsberger-Cameron Bright-Noot Seear,moon-based on novel or book-vampire-teen movie-werewolf-interspecies romance-based on young adult novel-supernatural power-good versus evil-vampire human love,/j5jM5pq78ObAXX1WhTsb115EkLl.jpg,/sDAavcrOSbFnFt4zpjNqzaoNr3w.jpg,24021-50619-50620-8966-354279-58595-411-32657-675-767-12444-2454-674-222935-672-10140-12445-673-118-950-157350 +1858,Transformers,Adventure-Science Fiction-Action,en,Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots ��� the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.,17.234,DreamWorks Pictures-Di Bonaventura Pictures-Tom DeSanto/Don Murphy Production,6/27/07,150000000,709709780,143,Released,Their war. Our world.,6.8,9947,Shia LaBeouf-Megan Fox-Josh Duhamel-Tyrese Gibson-Rachael Taylor-Anthony Anderson-Jon Voight-John Turturro-Michael O'Neill-Kevin Dunn-Julie White-Amaury Nolasco-Zack Ward-Patrick Mulderrig-Luis Echagarruga-Michael Trisler-Brian Shehan-Ashkan Kashanchi-Rizwan Manji-William Morgan Sheppard-C.J. Thomason-Bernie Mac-Carlos Moreno Jr.-Johnny Sanchez-John Robinson-Travis Van Winkle-Peter Jacobson-Glenn Morshower-Frederic Doss-Charlie Bodin-Joshua Feinman-Chris Ellis-Brian Stepanek-Steven Ford-Michael Shamus Wiles-Andy Milder-Craig Barnett-Brian Prescott-Scott Peat-Colleen Porch-Jamie McBride-Wiley M. Pickett-Samantha Smith-Ravi Patel-Rick Gomez-Andy Domingues-Mike Fisher-Colin Fickes-Tom Lenk-Jamison Yang-Esther Scott-Madison Mason-Jeremy Jojola-Jessica Kartalija-Andrew Altonji-Andrew Lewis Caldwell-J.P. Manoux-Pete Gardner-Sophie Bobal-Laurel Garner-Chip Hormess-Ray Toth-Michael Adams-Ron Henry-Benjamin Hoffman-Michael McNabb-Jason White-Adam Ratajczak-Maja Kljun-Michelle Pierce-Odette Annable-Bob Stephenson-Mason Rock Bay-Peter Cullen-Mark Ryan-Darius McCrary-Robert Foxworth-Jess Harnell-Hugo Weaving-Jimmie Wood-Reno Wilson-Charlie Adler-Michael Bay-Colton Haynes-Brian Reece-Robert Gerrits,destroy-transformation-alien-based on toy-robot-duringcreditsstinger-teenage hero-griffith observatory,/sR2xIEBQUoIVPGZOOfnMrpRcUCV.jpg,/77P56ZcL8M9Cw7FIptMIGjhNJoj.jpg,8373-38356-91314-36658-36668-2080-558-607-36657-608-20526-557-1979-49538-559-9738-534-41154-285-335988-2048 +102382,The Amazing Spider-Man 2,Action-Adventure-Fantasy,en,For Peter Parker life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves Gwen Stacy high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen��s father to protect her by staying away but that is a promise he cannot keep. Things will change for Peter when a new villain Electro emerges an old friend Harry Osborn returns and Peter uncovers new clues about his past.,121.075,Marvel Entertainment-Columbia Pictures-Matt Tolmach Productions-Avi Arad Productions,4/16/14,200000000,708962323,141,Released,No more secrets.,6.488,11804,Andrew Garfield-Emma Stone-Jamie Foxx-Dane DeHaan-Colm Feore-Felicity Jones-Paul Giamatti-Sally Field-Embeth Davidtz-Campbell Scott-Marton Csokas-Louis Cancelmi-Max Charles-B.J. Novak-Sarah Gadon-Michael Massee-Jorge Vega-Bill Heck-Teddy Coluca-Helen Stern-Aidy Bryant-Cal McCrystal-Anslem Richardson-Mark Doherty-James Colby-Kari Coleman-Skyler Gisondo-Charlie DePew-Robert Newman-Adrian Martinez-Thaddeus Phillips-James McCauley-Rachael McOwen-David Shabtai-Greg Connolly-Timothy Adams-Tug Coker-Jabari Gray-Jamie Lynn Concepcion-Pat Kiernan-Jessica Abo-Clem Cheung-Dusan Hyska-Andrei Runtso-Brennan Taylor-Slate Holmgren-Drew Beasley-Matthew Tronieri-Dario Barosso-Salvatore Rossi-Peter KT Tzotchev-Paul Urcioli-David Shih-Daniel Gerroll-Brian McElhaney-Jonathan Braylock-Steven Hauck-J.D. Walsh-Stan Lee-Jessica Shea Alverson-Stefanie Barry-Chris Cooper-BJ Davis-Julia Davis-Frank Deal-Odette Warder Henderson-Denis Leary-Lynn Marocola-Josh Elliott Pickel-Jacob Rodier-Martin Sheen-Rick Bolander-Amyrh Harris,obsession-experiment-sequel-superhero-based on comic-electrocution-super power,/c3e9e18SSlvFd1cQaGmUj5tqL5P.jpg,/mPyiNWS0upEG1mGKOKyCQSoZpnp.jpg,1930-559-558-557-100402-127585-76338-315635-68721-10138-99861-10195-49521-1771-91314-76170-102899-24428-118340-124905-1724 +385687,Fast X,Action-Crime-Thriller,en,Over many missions and against impossible odds Dom Toretto and his family have outsmarted out-nerved and outdriven every foe in their path. Now they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge and who is determined to shatter this family and destroy everything���and everyone���that Dom loves forever.,3583.861,Universal Pictures-Original Film-One Race-Perfect Storm Entertainment,5/17/23,340000000,704709660,142,Released,The end of the road begins.,7.275,3694,Vin Diesel-Michelle Rodriguez-Tyrese Gibson-Ludacris-John Cena-Nathalie Emmanuel-Jordana Brewster-Sung Kang-Jason Momoa-Scott Eastwood-Daniela Melchior-Alan Ritchson-Helen Mirren-Brie Larson-Jason Statham-Charlize Theron-Rita Moreno-Joaquim de Almeida-Leo A. Perry-Luis Da Silva Jr.-Jaz Hutchins-Luka Hays-Alexander Capon-Pete Davidson-Shadrach Agozino-Ludmilla-Miraj Grbiۈ-Meadow Walker Thornton-Allan-Michael Irby-Shahir Figueira-Ben-Hur Santos-Debby Ryan-Josh Dun-Dwayne Johnson-Gal Gadot-Paul Walker-Ali Baddou,sequel-revenge-racing-family-cliffhanger-cars,/fiVW06jE7z9YnO4trhaMEdclSiC.jpg,/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg,19603-445954-781009-603692-697843-502356-298618-747355-1061181-569094-640146-447365-346698-121342-1076487-447277-325358-960033-667538-3-12354 +346364,It,Horror-Fantasy,en,In a small town in Maine seven children known as The Losers Club come face to face with life problems bullies and a monster that takes the shape of a clown called Pennywise.,80.898,New Line Cinema-Vertigo Entertainment-Lin Pictures-KatzSmith Productions,9/6/17,35000000,701842551,135,Released,Your fears are unleashed,7.236,17373,Jaeden Martell-Jeremy Ray Taylor-Sophia Lillis-Finn Wolfhard-Chosen Jacobs-Jack Dylan Grazer-Wyatt Oleff-Bill Skarsg��rd-Nicholas Hamilton-Jake Sim-Logan Thompson-Owen Teague-Jackson Robert Scott-Stephen Bogaert-Stuart Hughes-Geoffrey Pounsett-Pip Dwyer-Molly Atkinson-Steven Williams-Elizabeth Saunders-Megan Charpentier-Joe Bostick-Ari Cohen-Anthony Ulc-Javier Botet-Katie Lunman-Carter Musselman-Tatum Lee-Edie Inksetter-Martha Gibson-Kasie Rayner-Isabelle N��lisse-Jocelyn Mattka-Don Tripe-Liz Gordon-Paige Rosamond-Neil Crone-Sonia Gasc�_n-Janet Porter-Memo D�_az Capt.-Chantal Vachon-Roberto Campanella-Cyndy Day-David Katzenberg-Bobby Leigh-Aimee Lenihan-Kylie Lenihan-Kate Moyer-Sherry Nelson-Jimmy Star-Kelly Van der Burg,based on novel or book-small town-clown-bullying-abandoned house-murder-flashback-balloon-maine-school-creature-fear-summer-killer-missing person-death of brother-well-child-demonic-town history,/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg,/tcheoA2nPATCm2vvXw2hVQoaEFD.jpg,474350-396422-633365-419430-138843-49018-259693-101638-440021-315635-250546-381288-284053-376570-283995-447332-339403-298250-297762-694-22970 +157336,Interstellar,Adventure-Drama-Science Fiction,en,The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.,201.998,Legendary Pictures-Syncopy-Lynda Obst Productions,11/5/14,165000000,701729206,169,Released,Mankind was born on Earth. It was never meant to die here.,8.423,33232,Matthew McConaughey-Anne Hathaway-Jessica Chastain-Michael Caine-Bill Irwin-Ellen Burstyn-Mackenzie Foy-Casey Affleck-John Lithgow-Wes Bentley-David Gyasi-Matt Damon-Topher Grace-Timoth��e Chalamet-David Oyelowo-William Devane-Josh Stewart-Collette Wolfe-Leah Cairns-Russ Fega-Lena Georgas-Jeff Hephner-Elyes Gabel-Brooke Smith-Liam Dickinson-Francis X. McCarthy-Andrew Borba-Flora Nolan-Griffen Fraser-William Patrick Brown-Kristian Van der Heyden-Joseph Oliveira-Ryan Irving-Alexander Michael Helisek-Benjamin Hardy,rescue-future-spacecraft-race against time-artificial intelligence (a.i.)-nasa-time warp-dystopia-expedition-space travel-wormhole-famine-black hole-quantum mechanics-family relationships-space-robot-astronaut-scientist-single father-farmer-space station-space adventure-time paradox-time-manipulation-father daughter relationship-2060s-cornfield-time manipulation,/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg,/xJHokMbljvjADYdit5fK5VQsXEG.jpg,27205-286217-155-550-11324-106646-1124-13-807-680-118340-16869-603-68718-120-77-244786-49047-76341-121-49026 +24021,The Twilight Saga: Eclipse,Adventure-Fantasy-Drama-Romance,en,Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all she is forced to choose between her love for Edward and her friendship with Jacob knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching Bella is confronted with the most important decision of her life.,77.139,Summit Entertainment-Maverick Films-Imprint Entertainment-Sunswept Entertainment-Temple Hill Entertainment,6/23/10,68000000,698491347,124,Released,It all begins... with a choice.,6.2,7938,Kristen Stewart-Robert Pattinson-Taylor Lautner-Bryce Dallas Howard-Dakota Fanning-Billy Burke-Peter Facinelli-Elizabeth Reaser-Jackson Rathbone-Kellan Lutz-Ashley Greene-Nikki Reed-Anna Kendrick-Michael Welch-Justin Chon-Christian Serratos-Xavier Samuel-Sarah Clarke-Gil Birmingham-Paul Jarrett-Iris Quinn-Kiowa Gordon-Tyson Houseman-Bronson Pelletier-Alex Meraz-Julia Jones-Tinsel Korey-Chaske Spencer-Alex Rice-Booboo Stewart-Peter Murphy-William Belleau-Justin Rain-Monique Ganderton-Byron Chief-Moon-Mariel Belanger-Jodelle Ferland-Dawn Chubai-Jack Huston-Ben Geldreich-Daniel Cudmore-Cameron Bright-Charlie Bewley-Leah Gibson-Kirsten Zien-Cainan Wiebe-Catalina Sandino Moreno,based on novel or book-vampire-graduation-bite-immortality-teen movie-werewolf-based on young adult novel-supernatural power-vampire human love,/3mFM80dPzSqoXXuC2UMvLIRWX32.jpg,/r4OqScx7hVXsG1obaJjJKJNaxHT.jpg,18239-50619-50620-8966-58595-675-767-32657-411-12444-674-2454-12445-10140-672-222935-673-118-38757-157350-216015 +56292,Mission: Impossible - Ghost Protocol,Action-Thriller-Adventure,en,Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing forcing the President to disavow them. No longer being aided by the government Ethan and his team chase Hendricks around the globe although they might still be too late to stop a disaster.,60.651,Paramount-Bad Robot-TC Productions-Skydance,12/7/11,145000000,694700000,133,Released,No plan. No backup. No choice.,7.075,9347,Tom Cruise-Paula Patton-Simon Pegg-Jeremy Renner-Michael Nyqvist-Vladimir Mashkov-Samuli Edelmann-Ivan Shvedoff-Anil Kapoor-L��a Seydoux-Josh Holloway-Pavel K���_�_-Miraj Grbiۈ-Ilia Volok-Goran Navojec-Pavel Bezd�_k-Ladislav Beran-Jan Filipensk�_-Ji���_ Kraus-Ales Putik-Tom��� Val�_k-Pavel Cajzl-Randy Hall-Vitaly Kravchenko-Andrej Bestcastnyj-Mike Dopud-Martin Hub-Ivo Nov��k-Anastasiya Novikova-Marek Dobe��-Claudia Va��ekov��-Brian Caspe-Petra Lustigov��-Daniel Clarke-April Stewart-Gina Hirsch-Ghaleb El Saadi-Andreas Wisniewski-Mustafa Alyassri-Michael Rys-Dmitry Chepovetsky-Dawn Chubai-Nicola Anderson-Keith Dallas-Tammy Hui-David Stuart-Sabrina Morris-Michelle Monaghan-Ving Rhames-Tom Wilkinson-Jessica Belkin-Paul Lazenby-Stephen Lobo-Roger Narayan-Ali Olomi-Mih��ly Szabados-Darren Shahlavi-Teddy Newton,assassin-budapest hungary-skyscraper-secret intelligence service-sandstorm-seattle washington-satellite-mumbai (bombay) india-secret agent-car crash-sequel-prison escape-dubai-billionaire-terrorism-disguise-bombing-jet-nuclear threat-moscow russia-field agent-analyst-nuclear submarine-kremlin-disavowed-based on tv series-nuclear launch codes-burj khalifa-scaling a building,/psiWp3VTjznfokmGQG9uqiiknQQ.jpg,/ih4lZkUpmSE7AP3maymiO72xJ1z.jpg,956-955-954-177677-49040-353081-37724-10528-41154-49538-13475-27578-36557-58574-75780-10764-64635-76163-38356-10138-2501 +70160,The Hunger Games,Science Fiction-Adventure-Fantasy,en,Every year in the ruins of what was once North America the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment part government intimidation tactic the Hunger Games are a nationally televised event in which ���Tributes�� must fight with one another until one survivor remains. Pitted against highly-trained Tributes who have prepared for these Games their entire lives Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she��s ever to return home to District 12 Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.,65.9,Lionsgate-Color Force,3/12/12,75000000,694394724,142,Released,May The Odds Be Ever In Your Favor.,7.2,20934,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Lenny Kravitz-Stanley Tucci-Donald Sutherland-Wes Bentley-Toby Jones-Alexander Ludwig-Isabelle Fuhrman-Amandla Stenberg-Willow Shields-Sandra Ellis Lafferty-Paula Malcomson-Rhoda Griffis-Sandino Moya-Smith-Raiko Bowman-Dwayne Boyd-Anthony Reynolds-Judd Lormand-Kimiko Gelman-Nelson Ascencio-Bruce Bundy-Dayo Okeniyi-Leven Rambin-Jack Quaid-Latarsha Rose-Ian Nelson-Kalia Prescott-Ethan Jamieson-Jacqueline Emerson-Mackenzie Lintz-Imanol Yepez-Frias-Annie Thurman-Dakota Hood-Amber Chaney-Karan Kendrick-Shane Bissell-Kate Kneeland-Steve Coulter-Sharon Conley-Tim Taylor-John Ross-Phillip Troy Linger-Julie Ivey-Mark Meekins-Jeremy Marinas-Bill Bennett,based on novel or book-revolution-dystopia-female protagonist-bow and arrow-game-archery-death match-forced to kill-based on young adult novel,/yXCbOiVDCxO71zI7cuwBRXdftq8.jpg,/yDbyVT8tTOgXUrUXNkHEUqbxb1K.jpg,101299-131631-131634-20352-12444-675-1930-12445-68721-49051-37724-24428-49538-157350-674-767-1771-1726-19995-672-671 +277834,Moana,Adventure-Comedy-Family-Animation,en,In Ancient Polynesia when a terrible curse incurred by Maui reaches an impetuous Chieftain's daughter's island she answers the Ocean's call to seek out the demigod to set things right.,19.184,Walt Disney Pictures-Walt Disney Animation Studios-Hurwitz Creative,10/13/16,150000000,690860472,107,Released,The ocean is calling.,7.565,11020,Auli'i Cravalho-Dwayne Johnson-Rachel House-Temuera Morrison-Jemaine Clement-Nicole Scherzinger-Alan Tudyk-Louise Bush-Christopher Jackson-Oscar Kightley-Troy Polamalu-Puanani Cravalho-Lin-Manuel Miranda,saving the world-ocean-sailboat-sea-mythology-island-musical-cartoon-curse-sailor-aftercreditsstinger-demigod-polynesia-voyage-pacific ocean-quest-island life-animal sidekick,/4JeejGugONWpJkbnvL12hVoYEDa.jpg,/iYLKMV7PIBtFmtygRrhSiyzcVsF.jpg,269149-127380-38757-335797-109445-328111-150540-136799-62177-321612-10674-295693-2062-10198-62211-259316-177572-10144-82690-9806-332210 +602666,Detective Chinatown 3,Action-Comedy-Mystery,zh,Following the excitement of first Bangkok and then New York a big murder case takes place in Tokyo. Chinatown master detectives Tangren and Qinfeng are invited to take up the mystery. Adding to the excitement are the other detectives on the CRIMASTER international detective list as well as the current top rank Q. Yet another hilarious battle of wits is set to take place...,7.168,China Film Co-Production Corporation-WanDa Productions-Beijing Yitong Legend Films,2/12/21,0,686257563,136,Released,,5.8,46,Baoqiang Wang-Liu Haoran-Satoshi Tsumabuki-Tony Jaa-Masami Nagasawa-Tomokazu Miura-Shang Yuxian-Xiao Yang-Roy Chiu-Janine Chang-Cheng Xiao-Zhang Zifeng-Shota Sometani-Honami Suzuki-Tadanobu Asano-Zhang Xiran-Janice Man-Li Mingxuan-Yoshiki Oneda,,/jPF7uzdrJ3gynLAgNdCG9CevqAS.jpg,/myHjYG5BnavxtWHVUbjrWnt9ocx.jpg,895001-615137-835551-242606-496212-52274-401545-639557-454640-376570-498687-403032-37973-505513-373200-362682-513692-51533-111083-488623-529216 +177677,Mission: Impossible - Rogue Nation,Action-Adventure,en,Ethan and team take on their most impossible mission yet���eradicating 'The Syndicate' an International and highly-skilled rogue organization committed to destroying the IMF.,56.001,Paramount-Bad Robot-Odin-Skydance,7/23/15,150000000,682700000,131,Released,Desperate times. Desperate measures.,7.195,8312,Tom Cruise-Jeremy Renner-Simon Pegg-Rebecca Ferguson-Ving Rhames-Sean Harris-Simon McBurney-Zhang Jingchu-Tom Hollander-Jens Hult��n-Alec Baldwin-Mateo Rufino-Fernando Abadie-Alec Utgoff-Hermione Corfield-Nigel Barber-William Roberts-Patrick Poletti-Martin Cochrane-David Peart-Barnab��s R��ti-Ash Merat-James Weber Brown-Robert Maaser-Wolfgang Stegemann-Eva-Marie Becker-Adam Ganne-Jesus Alvarez-America Olivo-James Cleverton-Martin Nelson-James McOran Campbell-Tom Lowe-Nicholas Sharratt-Nicholas Lupu-Stella Stocker-Martin Bermoser-Benjamin Plautz-Nina Hartmann-Daniela Nitsch-Carola Niederhuber-Tim Breyvogel-Laurence Rupp-Wolfgang Cerny-Rupert Wickham-Judith Bogner-Peter Stark-Ulli Ackermann-Saif Al-Warith-Robert Luckay-Tarrick Benham-Tyler Fayose-Rachel Handshaw-Julian Moore-Cook-Sean Cronin-Emilio Aniba-Volkan Ay-Amra Mallassi-Hadrian Howard-Walles Hamonde-Shamir Dawood-Sagar Radia-Yasen Atour-Noor Dillan-Night-Mingus Johnston-Osy Ikhile-Nigel Allen-Georgina Redhead-Bruce Lawrence-Femi Ogunbanjo-Katie Pattinson-Jorge Leon Martinez-Alana Maria-Jessica Allain-Anna-Marie Sullivan-Romeo Visca-Tom Coulston-Steven G�_tjen-Teddy Newton,mission-london england-spy-morocco-villain-austria-europe-sequel-conspiracy-vienna austria-vienna opera,/sGvcWcI99OTXLzghD7qXw00KaY5.jpg,/ki5RnA0xNOEd3R0RohXqJt9R6Om.jpg,956-56292-955-954-353081-206647-87101-102899-166424-135397-168259-203801-137113-267246-207703-99861-127585-254128-140607-158852-286217 +284052,Doctor Strange,Action-Adventure-Fantasy,en,After his career is destroyed a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.,104.302,Marvel Studios,10/25/16,165000000,677796076,115,Released,The impossibilities are endless.,7.425,20224,Benedict Cumberbatch-Chiwetel Ejiofor-Rachel McAdams-Benedict Wong-Mads Mikkelsen-Tilda Swinton-Michael Stuhlbarg-Benjamin Bratt-Scott Adkins-Zara Phythian-Alaa Safi-Katrina Durden-Topo Wresniwiro-Umit Ulgen-Linda Louise Duan-Mark Anthony Brighton-Meera Syal-Amy Landecker-Adam Pelta-Pauls-Sarah Malin-Eben Young-Kobna Holdbrook-Smith-Elizabeth Healey-Guillaume Faure-Daniel Dow-Stan Lee-Ezra Khan-Kimberly Van Luin-Pat Kiernan-Raj Awasti-Jill Buchanan-Daniel Eghan-Juani Feliz-Mo Idriss-Tamika Katon-Donegal-Pezhmaan Alinia-Kei Miura-Cameron Moon-Emeson Nwolie-Clem So-Chris Hemsworth-Samantha Russell,magic-time-training-superhero-based on comic-sorcerer-doctor-neurosurgeon-wizard-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/uGBVj3bEbCoZbDjjl9wTxcygko1.jpg,/qUv51IFUvVRAP2379ThmA3eLJx6.jpg,271110-283995-102899-99861-76338-315635-284053-118340-100402-10195-10138-1771-284054-68721-24428-1726-293660-299536-363088-259316-209112 +13,Forrest Gump,Comedy-Drama-Romance,en,A man with a low IQ has accomplished great things in his life and been present during significant historic events���in each case far exceeding what anyone imagined he could do. But despite all he has achieved his one true love eludes him.,63.502,Paramount-The Steve Tisch Company-Wendy Finerman Productions,6/23/94,55000000,677387716,142,Released,The world will never be the same once you've seen it through the eyes of Forrest Gump.,8.48,24667,Tom Hanks-Robin Wright-Gary Sinise-Sally Field-Mykelti Williamson-Michael Conner Humphreys-Hanna Hall-Haley Joel Osment-Siobhan Fallon Hogan-Rebecca Williams-Bob Penny-Harold G. Herthum-George Kelly-John Randall-Sam Anderson-Margo Moorer-Ione M. Telech-Christine Seabrook-John Worsham-Peter Dobson-Alexander Zemeckis-Logan Livingston Gomez-Ben Waddel-Elizabeth Hanks-Tyler Long-Christopher Jones-Grady Bowman-Kevin Mangan-Fay Genens-Frank Geyer-Rob Landry-Jason McGuire-Pete Auster-Sonny Shroyer-Brett Rice-Ed Davis-Daniel C. Striepeke-Bruce Lucvia-David Brisbin-Kirk Ward-Angela Lomas-Timothy Record-Deborah McTeer-Mark Matheisen-Al Harrington-Jed Gillin-Bob Harks-Don Fischer-Kenneth Bevington-Michael Flannery-Gary Robinson-Marlena Smalls-Kitty K. Green-Afemo Omilami-Matt Wallace-Dant�� McCarthy-Paulie DiCocco-Mike Jolly-Michael Kemmerling-John Voldstad-Jeffrey Winner-Russ Wilson-Daniel J. Gillooly-Calvin Gadsden-Aaron Izbicki-Michael Burgess-Steven Griffith-Bill Roberson-Michael McFall-Eric Underwood-Steve DeRelian-Byron Minns-Stephen Bridgewater-Bonnie Ann Burgess-Scott Oliver-John William Galt-Hilary Chaplain-Isabel Rose-Jay Ross-Richard D'Alessandro-Dick Stilwell-Kevin Davis-Michael Jace-Geoffrey Blake-Tim Perry-Vanessa Roth-Emily Carey-Paul Raczkowski-Valentine-Dick Cavett-Joe Stefanelli-Tiffany Salerno-Marla Sucharetza-Aloysius Gigl-Jack Bowden-Joe Alaskey-Lazarus Jackson-W. Benson Terry-Matt Rebenkoff-Peter Bannon-Joe Washington-Nora Dunfee-Natalie Hendrix Tate-Hallie D'Amore-Jim Hanks-Chiffonye Cobb-Juan Singleton-Bobby Richardson-Michael Mattison-Lenny Herb-Charles Boswell-Timothy McNeil-Lonnie Hamilton-Teresa Denton-Kurt Russell-Mary Ellen Trainor-Robb Skyler-Michael J. Oliver-Beau Lotterman-Todd Adamson-Marcus Batton-John-Michael Steele-Bryan Hanna-Jim Boeke-Rob Adams-Greg Brown-Darren W. Conrad-Brendan Shanahan-Troy Christian-James Ent-Jacqueline Lovell-Zach Hanner-John Glenn Harding-Beth Aylward-Aaron Michael Lacey-Christopher James Hall-Grand L. Bush-Conor Kennelly-Teddy Lane Jr.-William Shipman-John Simmit-Joe Abby-Jim Keller-Keri-Anne Bilotta-Jenny Inge Devaney-Jim Damron-Ellsworth Hanna-Jeanne Hanna-Dick Clark-Elvis Presley-John Lennon-Bob Hope-Neil Armstrong-John Connally-John F. Kennedy-Robert F. Kennedy-Lyndon B. Johnson-Gerald Ford-Richard Nixon-Ronald Reagan-George Wallace,vietnam veteran-hippie-china-washington dc usa-single parent-mentally disabled-based on novel or book-waitress-usa president-optimism-parent child relationship-1970s-autism-drug addiction-alabama-vietnam war-john f. kennedy-black panther party-ping pong-bus stop-friendship-stripper-bullying-moon landing-ronald reagan-richard nixon-cancer-singer-family relationships-death of lover-death-illness-leg brace-physical abuse-dying mother-ill mother-death of mother-historical event-military-disability-shrimping-anti war protest-low iq-false history-assassination attempt-vietnam flashback-intellectual disability-1960s-mother son relationship-monument valley-child sexual abuse-dying in arms-ptsd-elvis presley-single mom-disabled veteran-war rally-lyndon b. johnson-dick cavett-single dad-ping pong diplomacy-college football-slow-witted-bob hope-neil armstrong-gerald ford-robert f. kennedy,/arw2vcBveWOVZr6pxd9XTd1TdQa.jpg,/3h1JZGDhZ8nzxdgvkxha0qBqi05.jpg,497-680-857-550-278-424-807-105-122-155-121-27205-603-120-37165-597-16869-637-98-274-238 +745,The Sixth Sense,Mystery-Thriller-Drama,en,Following an unexpected tragedy a child psychologist named Malcolm Crowe meets an nine year old boy named Cole Sear who is hiding a dark secret.,37.571,Spyglass Entertainment-The Kennedy/Marshall Company-Hollywood Pictures-Barry Mendel Productions,8/6/99,40000000,672806292,107,Released,Not every gift is a blessing.,7.939,10229,Bruce Willis-Haley Joel Osment-Toni Collette-Olivia Williams-Donnie Wahlberg-Mischa Barton-Trevor Morgan-Glenn Fitzgerald-Bruce Norris-Angelica Page-Greg Wood-M. Night Shyamalan-Peter Anthony Tambakis-Jeffrey Zubernis-Lisa Summerour-Samia Shoaib-Janis Dardaris-Sarah Ripard-KaDee Strickland-Kate Kearney-Patch-Nico Woulard-Keith Woulard-Patrick McDade-Jose L. Rodriguez-Firdous Bamji-Hayden Saunier-Neill Hartley-Heidi Fischer-Michael J. Lyons-Samantha Fitzpatrick-Holly Cross Vagley-Marilyn Shanok-Carol Nielson-Jodi Dawson-Tony Michael Donnelly-Ronnie Lea-Carlos Xavier Lopez-Gino Inverso-Ellen Sheppard-Tom McLaughlin-Candy Aston-Dennis-Gina Allegro-Bob Bowersox-Matt Casale-Kym Cohen-Colleen June McQuaide-Jonathan Nation-Sean Oliver-Alison Robertson,philadelphia pennsylvania-child abuse-loss of loved one-sense of guilt-confidence-psychology-dying and death-marriage crisis-afterlife-single-paranormal phenomena-psychological thriller-cowardliness-single mother-school play-ghost-child-spiritism-ghost child,/4AfSDjjCy6T5LA1TMz0Lh2HlpRh.jpg,/paUKxrbN2ww0JeT2JtvgAuaGlPf.jpg,197-274-8358-497-37165-63-640-629-807-187-14-98-85-73-453-752-857-1933-489-601-77 +49521,Man of Steel,Action-Adventure-Science Fiction,en,A young boy learns that he has extraordinary powers and is not of this earth. As a young man he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.,102.904,DC Entertainment-Syncopy-Peters Entertainment-Warner Bros. Pictures,6/12/13,225000000,668045518,143,Released,You will believe that a man can fly.,6.616,14439,Henry Cavill-Amy Adams-Michael Shannon-Diane Lane-Russell Crowe-Kevin Costner-Laurence Fishburne-Christopher Meloni-Antje Traue-Harry Lennix-Richard Schiff-Ayelet Zurer-Rebecca Buller-Michael Kelly-Mackenzie Gray-Richard Cetrone-Samantha Win-Julian Richings-Mary Black-Dylan Sprayberry-Christina Wren-Cooper Timberline-David James Lewis-Tahmoh Penikett-Doug Abrahams-Brad Kelly-David Paetkau-Elizabeth Thai-Ian Rozylo-Alessandro Juliani-Kwesi Ameyaw-Mike Dopud-Jack Foley-Jadin Gould-Robert Gerdisch-Ryan Mitchell-Alexa Gengelbach-Stephanie Kraft Song-Caroline Thomas-Coburn Goss-Lesley Bevan-Chad Krowchuk-Ian Tracey-Carmen Lavigne-Howard Siegel-Heidi Kettering-Justin Butler-Jacqueline Scislowski-Danny Coonley-Sally Elling-Joseph Cranford-Clint Carleton-Mark Gibbon-Stuart Ambrose-Tom Nagel-Jackson Berlin-George Canyon-Kyle Riefsnyder-Aaron Smolinski-Carla Gugino-Bruce Bohne-Rowen Kahn-Robert Moloney-Sean Campbell-Aaron Pearl-Rebecca Spence-Joe Mi��oso-Brian King-Madison Moran-Gabe Darley-Bridgett Newton-Revard Dufresne-Apollonia Vanova-Dan Aho-Ronald W. Gibbs-Chris Palermo-Edmundo Raul Sanchez-Nicholas W. von Zill-Allison Crowe-Nick Touchie-Eileen Touchie-Malcolm Scott-Rondel Reynoldson-Johnny Otto-Autumn Snyder,saving the world-flying-hope-superhero-based on comic-alien planet-superhuman-alien invasion-super power-mysterious force-reboot-save the day-dc extended universe (dceu)-save the planet-origin story-alien spaceship,/dksTL9NXc3GqPBRHYHcy1aIwjS.jpg,/69EFgWWPFWbRNHmQgYdSnyJ94Ge.jpg,68721-49026-209112-1930-1771-10195-76338-76170-24428-49051-127585-10138-100402-68726-49538-54138-272-1726-37724-102382-72190 +49444,Kung Fu Panda 2,Animation-Family,en,Po is now living his dream as The Dragon Warrior protecting the Valley of Peace alongside his friends and fellow kung fu masters The Furious Five - Tigress Crane Mantis Viper and Monkey. But Po��s new life of awesomeness is threatened by the emergence of a formidable villain who plans to use a secret unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.,74.077,DreamWorks Animation,5/25/11,150000000,665692281,91,Released,Prepare for the Year of Awesomeness!,6.9,6042,Jack Black-Angelina Jolie-Dustin Hoffman-Gary Oldman-Jackie Chan-Lucy Liu-Seth Rogen-David Cross-Michelle Yeoh-James Hong-Danny McBride-Dennis Haysbert-Jean-Claude Van Damme-Victor Garber-Mike Bell-Jason Bertsch-Michael DeMaio-Shane Glick-Lena Golia-April Hong-Joseph Izzo-Alexandra Gold Jourden-Stephen Kearin-Liam Knight-Paul Mazursky-Dan O'Connor-Jeremy Shipp-Maury Sterling-Fred Tatasciore-Lauren Tom-Romy Rosemont-Conrad Vernon,martial arts-kung fu-hope-fleet-panda-friends-mission-woman director,/wQ0gqQdoFu6YKApiR34ktNjgjH2.jpg,/7BdxZXbSkUiVeCRXKD3hi9KYeWm.jpg,9502-140300-10527-80321-8355-953-46195-38055-950-810-57800-10192-13053-22794-49013-425-809-15512-10191-38757-9836 +950,Ice Age: The Meltdown,Animation-Family-Comedy-Adventure,en,Diego Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around the deep freeze is over and the ice-covered earth is starting to melt which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.,59.271,20th Century Fox Animation-Blue Sky Studios-20th Century Fox,3/29/06,80000000,660998756,91,Released,Kiss Your Nuts Goodbye,6.7,8761,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Seann William Scott-Josh Peck-Jay Leno-Will Arnett-Chris Wedge-Peter Ackerman-Caitlin Rose Anderson-Connor Anderson-Joseph Bologna-Jack Crocicchia-Peter DeS��ve-Ariel Winter-Clea Lewis-Stephen Root-Nicole DeFelice-Debi Derryberry-Marshall Efron-Tom Fahn-Jason Fricchione-James Edmund Godwin-George Jacobs-Brian Scott McFadden-Jansen Panettiere-Gregory Romano-Matt Romano-Carlos Saldanha-Manoela Scarpa Saldanha-Sofia Scarpa Saldanha-Reyna Shaskan-James Sie-Cindy Slattery-Mindy Sterling-Alex Sullivan-Ren��e Taylor-Alan Tudyk-Claudia Besso-Madeleine Martin-Sherry Lynn-Mickie McGowan-Emily Anderson-Jack Angel-Shane Baumel-Bob Bergen-Kyle J. Bogert-Rodger Bumpass-Paul Butcher-Blanca Camacho-John Cygan-Jennifer Darling-Olivia DeLaurentis-Harrison Fahn-Bill Farmer-Crispin Freeman-Tim Kirkpatrick-David H. Kramer-Danny Mann-Laura Marano-Matt McCarthy-Laraine Newman-Jan Rabson-Zack Shada-Thomas Sharkey-Ross Simanteris-Rachel Stand-Spencer Lacey Ganus-Jess Harnell,mammoth-sloth-ice age-barrier ice-ice melting-iceberg-flooding-lovers-deluge-sequel-saber-toothed tiger,/vdluBXie4qDvh0dFX2Fpq8v16it.jpg,/wRTZaxAiDP0ZEeQsO0HiiSqYCSp.jpg,8355-425-57800-953-10527-810-809-9502-278154-920-808-80321-10192-12-863-49444-9806-46195-2062-1593-13053 +141052,Justice League,Action-Adventure-Science Fiction,en,Fuelled by his restored faith in humanity and inspired by Superman's selfless act Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.,71.324,RatPac Entertainment-Cruel & Unusual Films-Atlas Entertainment-Warner Bros. Pictures-DC Films,11/15/17,300000000,657926987,120,Released,You can't save the world alone,6.101,12104,Ben Affleck-Henry Cavill-Amy Adams-Gal Gadot-Ezra Miller-Jason Momoa-Ray Fisher-Jeremy Irons-Diane Lane-Connie Nielsen-J.K. Simmons-Ciar��n Hinds-Amber Heard-Joe Morton-Lisa Loven Kongsli-Ingvar E. Sigur��sson-David Thewlis-Sergi Constance-Julian Lewis Jones-Salome R. Gunnarsdottir-�g�_sta Eva Erlendsd�_ttir-Bj�_rt Sigfinnsd�_ttir-Michael McElhatton-John Dagleish-Chris Courtenay-Heather Imbeah-Carla Turner-Lara Decaro-Serene Angus-Anna Burgess-Mia Burgess-Alison Chang-Constance Bole-Shahla Ayamah-Richard Clifford-Will Austin-Kobna Holdbrook-Smith-Rebecca C. Perfect-Francis Magee-V��d�_s V�_filsd�_ttir-Sn�_fr�_��ur R��n A��alsteins-Grace Cookey-Gam-Matthew Bates-Charlotte Comer-Doutzen Kroes-Brooke Ence-Hari James-Ann Ogbomo-Samantha Win-Marc McClure-Paul Foulds-Anthony Wise-Martin Troakes-Gianpiero Cognoli-J��r��me Pradon-Orion Lee-Oliver Gatz-Rachel Blenkiron-Lynne Anne Rodgers-Oliver Powell-Aurore Lauzeral-Frazer Hammill-JK. Glynn-Patrick Connolly-Ninaz Khodaiji-Rosa Escoda-Joe Reisig-Vaughn Johseph-Tara Ward-Jack Yang-Bruce Johnson-Peter Henderson-Yoni Roodner-Molly Shenker-Tomi May-Kasha Bajor-Dan Mersh-Nathan Wiley-Caitlin Burles-Melanie Gray-Katia Elizarova-Gemma Refoufi-Leila Reid-Suan-Li Ong-Tina Balthazar-Penny Lane-Stephanie Haymes-Roven-Kelly Burke-Keith Simpson-Gary A. Hecker-Holt McCallany-Paulina Boneva-Billy Crudup-Eleanor Matsuura-Jesse Eisenberg-Joe Manganiello-Daniel Stisen-Robin Wright-Bruce Lester-Johnson-Xenia Leblanc-Ayman Khechini,superhero-based on comic-super power-superhero team-aftercreditsstinger-duringcreditsstinger-dc extended universe (dceu),/eifGNCSDuxJeS1loAXil5bIGgvC.jpg,/2nyaeISu2xIxIgZYNpX4UayY8PN.jpg,297762-284053-209112-315635-284054-49521-283995-181808-271110-263115-99861-703363-102899-363088-299536-76338-383498-284052-353486-343668-297761 +177572,Big Hero 6,Adventure-Family-Animation-Action-Comedy,en,A special bond develops between plus-sized inflatable robot Baymax and prodigy Hiro Hamada who team up with a group of friends to form a band of high-tech heroes.,97.839,Walt Disney Pictures-Walt Disney Animation Studios,10/24/14,165000000,657827828,102,Released,From the creators of Wreck-It Ralph and Frozen.,7.741,14274,Scott Adsit-Ryan Potter-Daniel Henney-T.J. Miller-Jamie Chung-Damon Wayans Jr.-G��nesis Rodr�_guez-James Cromwell-Alan Tudyk-Maya Rudolph-Abraham Benrubi-Katie Lowes-Billy Bush-Daniel Gerson-Paul Briggs-Charlie Adler-Marcella Lentz-Pope-David Shaughnessy-Cam Clarke-Nicholas Guest-Terri Douglas-Tim Mertens-Yuri Lowenthal-Sundra Oakley-Brian R. Norris-Stan Lee-Shane Sweet-Frank Welker-David Cowgill-Kirk Baily-Charlotte Gulezian-Reed Buck-Roy Conli-Cooper Cowgill-Jackie Gonneau-Marlie Crisafulli-Bridget Hoffman-Kelly Hoover-Leah Latham-James Taku Leung-Yumi Mizui-Michael Powers-Lynwood Robinson-Josie Trinidad-Daniel Howell-June Christopher-Phil Lester,sibling relationship-san francisco california-martial arts-hero-talent-friendship-cartoon-superhero-based on comic-revenge-tokyo japan-best friend-another dimension-robot-east asian lead-boy genius-aftercreditsstinger-moral dilemma-teen superhero-dead brother,/2mxS4wUimwlLmI1xp6QW6NSU361.jpg,/5tub2Kw6NboWFblA1CgDEwB59jP.jpg,150540-109445-269149-82702-9806-14160-118340-585-12-127585-10681-2062-99861-131631-62177-102651-198663-293660-211672-38757-62211 +22,Pirates of the Caribbean: The Curse of the Black Pearl,Adventure-Fantasy-Action,en,Jack Sparrow a freewheeling 18th-century pirate quarrels with a rival pirate bent on pillaging Port Royal. When the governor's daughter is kidnapped Sparrow decides to help the girl's love save her.,127.575,Walt Disney Pictures-Jerry Bruckheimer Films,7/9/03,140000000,655011224,143,Released,Prepare to be blown out of the water.,7.789,18945,Johnny Depp-Orlando Bloom-Keira Knightley-Geoffrey Rush-Jack Davenport-Jonathan Pryce-Lee Arenberg-Mackenzie Crook-Damian O'Hare-Giles New-Angus Barnett-David Bailie-Michael Berry Jr.-Isaac C. Singleton Jr.-Kevin McNally-Treva Etienne-Zoe Salda��a-Guy Siner-Ralph P. Martin-Paula J. Newman-Paul Keith-Dylan Smith-Lucinda Dryzek-Luke de Woolfson-Michael Sean Tighe-Greg Ellis-Dustin Seavey-Christian Martin-Israel Aduramo-Trevor Goddard-Vince Lozano-Ben Wilson-Antonio Valentino-Lauren Maher-Matthew Bowyer-Brye Cooper-Mike Babcock-Owen Finnegan-Ian McIntyre-Vanessa Branch-Sam Roberts-Ben Roberts-Martin Klebba-F��lix Castro-Mike Haberecht-Rudolph McCollum-Gerard J. Reyes-M. Scott Shields-Christopher Sullivan-Craig Thomson-Fred Toft-D.P. FitzGerald-Jerry Gauny-Maxie J. Santillan Jr.-Michael Earl Lane-Tobias McKinney-David Patykewich-Tommy Schooler-Michael A. Thompson-Michael W. Williams-Jose Zelaya-Finneus Egan-Don LaDaga-LeJon Stewart-Christopher S. Capp-Gregory Ryan Alosio-Jordi Caballero-Tamara Castle-Paul Gagn��-Joe Grisaffi-James McAuley,exotic island-blacksmith-east india company-gold-jamaica-skeleton-british empire-governor-pirate-swashbuckler-18th century-caribbean sea-aftercreditsstinger-pirate ship-british navy-tortuga,/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg,/uRNgkJSkNBFbbn9fPsEjDIy8Sh3.jpg,58-285-1865-166426-120-121-12444-12445-673-672-1007938-675-674-762338-671-122-12-607-585-1726-767 +338952,Fantastic Beasts: The Crimes of Grindelwald,Fantasy-Adventure-Action,en,Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause���elevating wizards above all non-magical beings. The only one capable of putting a stop to him is the wizard he once called his closest friend Albus Dumbledore. However Dumbledore will need to seek help from the wizard who had thwarted Grindelwald once before his former student Newt Scamander who agrees to help unaware of the dangers that lie ahead. Lines are drawn as love and loyalty are tested even among the truest friends and family in an increasingly divided wizarding world.,52.083,Warner Bros. Pictures-Heyday Films,11/14/18,200000000,654855901,134,Released,Fate of one. Future of all.,6.9,9852,Eddie Redmayne-Katherine Waterston-Dan Fogler-Alison Sudol-Johnny Depp-Jude Law-Ezra Miller-Zo� Kravitz-Callum Turner-Claudia Kim-Carmen Ejogo-Jessica Williams-William Nadylam-Ingvar E. Sigur��sson-��lafur Darri ��lafsson-Kevin Guthrie-Brontis Jodorowsky-Derek Riddell-David Sakurai-Fiona Glascott-Wolf Roth-Victoria Yeates-Poppy Corby-Tuech-Cornell John-Sabine Crossen-Claudius Peters-Bart Soroczynski-Danielle Hugues-Alfie Simmons-Isaac Cortinovis Johnson-Olivia Popica-Alfie Mailley-Simon Wan-Morrison Thomas-Andrew Turner-Linda Santiago-Alfrun Rose-Maja Bloom-Olwen Fou��r��-Simon Meacock-David Wilmot-Ed Gaughan-Jamie Campbell Bower-Toby Regbo-Hugh Quarshie-Isaura Barb��-Brown-Keith Chanter-Jemima Woolnough-Hollie Burgess-Thea Lamb-Joshua Shea-Isaac Domingos-Ruby Woolfenden-Johanna Thea-Liv Hansen-Israel Ruiz-Jag Patel-Deepak Anand-Alexandra Ford-Andrew Blackall-Christopher Birks-Phil Hodges-Michael Haydon-Tim Ingall-Stephen McDade-Jeremy Oliver-Dave Simon-Jason Redshaw-Callum Forman-Ryan Hannaford-Donna Preston-Nasir Jama-Aykut Hilmi-Natalie Lauren-Deano Bugatti-Connor Wolf-Adrian Wheeler-Andy Summers-Al Clark,paris france-new york city-witch-magic-school of witchcraft-sequel-prison escape-old flame-wizard-magical creature-1920s-good versus evil-dark magic-follower,/fMMrl8fD9gRCFJvsx0SuFwkEOop.jpg,/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg,259316-297802-424694-338953-335983-363088-12444-404368-767-12445-672-675-674-260513-673-671-383498-375588-299537-299536-324857 +131634,The Hunger Games: Mockingjay - Part 2,Action-Adventure-Science Fiction,en,With the nation of Panem in a full scale war Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends ��� including Gale Finnick and Peeta ��� Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps enemies and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.,97.654,Lionsgate-Color Force-Studio Babelsberg,11/18/15,160000000,653428261,137,Released,The fire will burn forever.,6.891,11776,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Julianne Moore-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Donald Sutherland-Willow Shields-Sam Claflin-Jena Malone-Mahershala Ali-Natalie Dormer-Wes Chatham-Michelle Forbes-Elden Henson-Patina Miller-Evan Ross-Paula Malcomson-Eugenie Bondurant-Sarita Choudhury-Stef Dawson-Meta Golding-Omid Abtahi-Joe Chrest-Misty Ormiston-Kim Ormiston-Gwendoline Christie-Robert Knepper-Mark Jeffrey Miller-April Grace-David Hallyday-Linds Edwards-Thomas Blake Jr.-Cameron MacConomy-Desmond Phillips-Elle Graham-Lacy Dmitriew-Kate Rachesky-Phillip Troy Linger-Bear Lawrence-Theodore Lawrence-Brandon Cyrus-Toby Jones-Gary Sievers-Emma Elle Roberts-Alexander Yassin-Jasmine Ahnie-Sue-Lynn Ansari-Scott Hunter-Sam Hargrave-R. A. Rondell-Jean Christophe Loustau,strong woman-based on novel or book-revolution-dystopia-death match-based on young adult novel,/lImKHDfExAulp16grYm8zD5eONE.jpg,/nKDvDVSaFFBrQr0NoPiyasEN8Mk.jpg,131631-101299-327749-70160-262500-157350-294254-262504-198663-12444-12445-675-767-674-673-672-18239-50620-24021-360606-102651 +1894,Star Wars: Episode II - Attack of the Clones,Adventure-Action-Science Fiction,en,Following an assassination attempt on Senator Padm�� Amidala Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.,39.386,Lucasfilm Ltd.,5/15/02,120000000,649398328,142,Released,A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.,6.548,11931,Hayden Christensen-Ewan McGregor-Natalie Portman-Christopher Lee-Samuel L. Jackson-Frank Oz-Ian McDiarmid-Pernilla August-Temuera Morrison-Jimmy Smits-Jack Thompson-Leeanna Walsman-Ahmed Best-Rose Byrne-Oliver Ford Davies-Ron Falk-Jay Laga'aia-Andy Secombe-Anthony Daniels-Silas Carson-Ayesha Dharker-Daniel Logan-Joel Edgerton-Bonnie Piesse-Anthony Phelan-Rena Owen-Alethea McGrath-Susie Porter-Matt Doran-Alan Ruscoe-Veronica Segura-David Bowers-Steve John Shepherd-Bodie Taylor-Matt Rowan-Steven Boyle-Zachariah Jensen-Alex Knoll-Phoebe Yiamkiati-Kenny Baker-Jerome St. John Blake-Hassani Shapi-Gin Clarke-Khan Bonfils-Michaela Cottrell-Dipika O'Neill Joti-Marton Csokas-Tux Akindoyeni-Sacha Alexander-Giulio Alimenti-Amy Allen-Nicolas Anastassiou-Jason Baird-Don Bies-Jamel Boukabou-Kristen Bronson-Douglas Bunn-Caine-David John Clark-Natalie Danks-Smith-Russell Darling-Justin Dix-Eliana Dona-C. Michael Easton-Nicole Fantl-Sandi Finlay-Stephen George-Zuraya Hamilton-Hilton Howson-Fiona Johnson-Sara Elizabeth Joyce-Luke Kearney-Nalini Krishan-Gillian Libbert-Amanda Lucas-Jett Lucas-Katie Lucas-Liam Neeson-Daniel Perrott-Ian Roberts-Kyle Rowling-Joseph Jett Sally-Juan Luis Sanchez-Mike Savva-Kevin Scott-Zeynep Selcuk-Orli Shoshan-Richard Stride-Leonard L. Thomas-Trevor Tighe-Christopher Truswell-Ian Watkin-R. Christopher White-Matthew Wood-Matt Sloan-Emma Howard-Jesse Jensen,laser gun-senate-investigation-army-cult figure-wedding-kendo-space opera-spaceport-teenage rebellion-good becoming evil-alien race-mechanical hand,/oZNPzxqM2s5DyVWab09NTQScDQt.jpg,/abwxHfymXGAbbH3lo9PDEJEfvtW.jpg,1893-1895-1892-1891-11-140607-330459-181808-12180-348350-181812-87-558-217-36658-89-36657-557-85-36668-559 +76338,Thor: The Dark World,Action-Adventure-Fantasy,en,Thor fights to restore order across the cosmos��_ but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand Thor must embark on his most perilous and personal journey yet one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.,113.743,Marvel Studios,10/30/13,170000000,644571402,112,Released,Delve into the darkness,6.552,15786,Chris Hemsworth-Natalie Portman-Tom Hiddleston-Anthony Hopkins-Christopher Eccleston-Jaimie Alexander-Zachary Levi-Ray Stevenson-Tadanobu Asano-Idris Elba-Rene Russo-Adewale Akinnuoye-Agbaje-Kat Dennings-Stellan Skarsg��rd-Alice Krige-Clive Russell-Jonathan Howard-Ramone Morgan-Obada Alassadi-Imaan Chentouf-Claire Brown-Henry Calcutt-Ava Caton-Abbie McCann-Thomas Arnold-Sam Swainsbury-Connor Donaghey-Royce Pierreson-Annabel Norbury-Sophie Cosson-Chris O'Dowd-Justin Edwards-Gruffudd Glyn-Richard Brake-Stan Lee-Steve Scott-Brett Tucker-Talulah Riley-Richard Wharton-Tony Curran-Chris Evans-Benicio del Toro-Ophelia Lovibond-Elsa Pataky-Joe Cash,superhero-based on comic-hostile takeover-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-mythological place,/wp6OxE4poJ4G7c0U2ZIXasTSMR7.jpg,/4zTsF0RtO0av3YX1NaKDqGKPxYF.jpg,10195-100402-68721-99861-10138-1771-24428-102899-271110-284053-1726-118340-1724-283995-284052-315635-127585-102382-1930-363088-49521 +335797,Sing,Animation-Comedy-Family-Music,en,A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.,80.856,Illumination-Universal Pictures-Fuji Television Network-dentsu,11/23/16,75000000,634151679,108,Released,Auditions begin 2016.,7.115,7183,Matthew McConaughey-Reese Witherspoon-Seth MacFarlane-Scarlett Johansson-John C. Reilly-Taron Egerton-Tori Kelly-Jennifer Saunders-Garth Jennings-Peter Serafinowicz-Nick Kroll-Jennifer Hudson-Beck Bennett-Jay Pharoah-Nick Offerman-Leslie Jones-Rhea Perlman-Laraine Newman-Bill Farmer-Adam Buxton-Brad Morris-Wes Anderson-Chris Renaud-Edgar Wright-Asher Blinkoff-Jessica Rau-Carlos Alazraqui-Sara Mann-Daamen J. Krall-Bob Bergen-Doug Burch-Cathy Cavadini-Jason Pace-Townsend Coleman-Abby Craden-Jim Cummings-John DeMita-Willow Geer-Tara Strong-Jess Harnell-Oscar Jennings-Leo Jennings-Caspar Jennings-Asa Jennings-Jon Robert Hall-Laura Dickinson-Jen Faith Brown-�urea-Marisa Liz-Mickael Carreira-Deolinda Kinzimba-Jeremy Maxwell-Igor Khait-David Arnott-Daniel Mora-Britt Burton-Gregory Perler-Paige Pollack-Marisa De Silva-Jessica Rotter-Robert Taylor-Thomas Walters-Andrew Walton,anthropomorphism-singing-singing competition,/b8UiFXwMrSXVTHM0fb2twl8uE8a.jpg,/59CCw4EtiahW0E5cfTrvdbqPQTo.jpg,277834-136799-269149-328111-295693-127380-252316-106806-332210-278154-438695-324852-160532-150540-159824-38757-283366-321612-211672-140300-109445 +787699,Wonka,Comedy-Family-Fantasy,en,Willy Wonka ��� chock-full of ideas and determined to change the world one delectable bite at a time ��� is proof that the best things in life begin with a dream and if you��re lucky enough to meet Willy Wonka anything is possible.,604.239,Warner Bros. Pictures-Village Roadshow Pictures-The Roald Dahl Story Company-Heyday Films-Domain Entertainment,12/6/23,125000000,632221453,117,Released,Every good thing in this world started with a dream.,7.212,2684,Timoth��e Chalamet-Calah Lane-Keegan-Michael Key-Hugh Grant-Paterson Joseph-Olivia Colman-Tom Davis-Jim Carter-Rowan Atkinson-Matt Lucas-Mathew Baynton-Natasha Rothwell-Rakhee Thakrar-Rich Fulcher-Kobna Holdbrook-Smith-Simon Farnaby-Ellie White-Sally Hawkins-Colin O'Brien-Freya Parker-Murray McArthur-Charlotte Ritchie-Phil Wang-Rufus Jones-Isy Suttie-Ian Bartholomew-Sophie Winkleman-Justin Edwards-Michael Abubakar-Tim Fitzhigham-Jane Bertish-Tracy Ifeachor-Dominic Coleman-Muzz Khan-Ben Howard-Alison Pargeter-Bleu Woodward-Paul G. Raymond-Lola Shepelev-Marina Bye-Robyn Rose-Millie O'Donnell-Susie Fairfax-Macie Blake-Ellie Blake-Matilda Tucker-Bertie Caplan-Gustave Die,chocolate-musical-prequel-duringcreditsstinger-cartel-whimsical-admiring-exhilarated,/qhb1qOilapbapxWQn9jtRCMwXJF.jpg,/yyFc8Iclt2jxPmLztbP617xXllT.jpg,572802-609681-940551-695721-930564-872585-753342-726209-848326-252-466420-1022796-508883-118-346698-906126-520758-1075794-955916-502356-507089 +9502,Kung Fu Panda,Action-Adventure-Animation-Family-Comedy,en,"When the Valley of Peace is threatened lazy Po the panda discovers his destiny as the ""chosen one"" and trains to become a kung fu hero but transforming the unsleek slacker into a brave warrior won't be easy. It's up to Master Shifu and the Furious Five -- Tigress Crane Mantis Viper and Monkey -- to give it a try.",276.804,DreamWorks Animation,6/4/08,130000000,631700000,90,Released,Prepare for awesomeness.,7.272,11018,Jack Black-Angelina Jolie-Dustin Hoffman-Ian McShane-Jackie Chan-Lucy Liu-Seth Rogen-David Cross-Randall Duk Kim-James Hong-Dan Fogler-Michael Clarke Duncan-Wayne Knight-Kyle Gass-JR Reed-Laura Kightlinger-Tanya Haden-Stephen Kearin-Mark Osborne-John Stevenson-Jeremy Shipp-Melissa Cobb-Kent Osborne-Emily Burns-Stephanie Harvey-Riley Osborne,martial arts-kung fu-strong woman-china-tiger-bravery-restaurant-shop-panda-sensei-anthropomorphism-fighting-master-destiny-crane-aftercreditsstinger-wuxia-monkey warrior-viper-lighthearted-dramatic-intense-awestruck-earnest,/wWt4JYXTg5Wr3xBW2phBrMKgp3x.jpg,/d1RHScaZc7I8j0lDke1c4AxI435.jpg,49444-140300-12-425-953-38757-1734-2062-675-10527-1726-809-10681-9806-1724-10555-12405-14160-20352-217-10191 +9806,The Incredibles,Action-Adventure-Animation-Family,en,Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment it's time to get back into costume.,65.374,Pixar-Walt Disney Pictures,10/27/04,92000000,631442092,115,Released,"No gut, no glory",7.7,16024,Craig T. Nelson-Holly Hunter-Sarah Vowell-Spencer Fox-Jason Lee-Samuel L. Jackson-Elizabeth Pe��a-Eli Fucile-Maeve Andrews-Brad Bird-Teddy Newton-Jean Sincere-Bud Luckey-Wallace Shawn-Lou Romano-Michael Bird-Dominique Louis-Bret 'Brook' Parker-Kimberly Adair Clark-John Ratzenberger-Wayne Canney-Mark Andrews-Nicholas Bird-Louis Martin Braga III-Emmy Clarke-Pete Docter-Louis Gonzales-Elizabeth Greenberg-Juliet Greenberg-Billy Guardino-Dennis 'D.J.' Jennings-Ollie Johnston-Brad Lewis-Ted Mathot-Jazzie Mahannah-Randy Nelson-Bob Peterson-Jeff Pidgeon-Juliet Pokorny-Joe Ranft-Lori Richardson-A.J. Riebli III-Katherine Ringgold-Stephen Schaffer-Bob Scott-Peter Sohn-Andrew Stanton-Frank Thomas-Pamela Gaye Walker-Patrick Walker-Deirdre Warin-Jack Angel-Bob Bergen-Rodger Bumpass-Philip L. Clarke-Bill Farmer-Mickie McGowan-Patrick Pinney-Phil Proctor-John Walker,secret identity-hero-island-wretch-cartoon-lawsuit-superhero-family relationships-super power-1950s-1960s-superhero family,/2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg,/se5Hxz7PArQZOG3Nx2bpfOhLhtV.jpg,12-585-2062-862-863-10193-14160-920-10681-808-62211-425-9487-9502-950-953-49013-8587-62177-557-809 +286217,The Martian,Drama-Adventure-Science Fiction,en,During a manned mission to Mars Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies he must draw upon his ingenuity wit and spirit to subsist and find a way to signal to Earth that he is alive.,48.685,Scott Free Productions-Genre Films,9/30/15,108000000,630161890,141,Released,Bring Him Home,7.7,17885,Matt Damon-Jessica Chastain-Jeff Daniels-Sean Bean-Chiwetel Ejiofor-Donald Glover-Kristen Wiig-Michael Pe��a-Kate Mara-Sebastian Stan-Benedict Wong-Mackenzie Davis-Naomi Scott-Aksel Hennie-Nick Mohammed-Chen Shu-Eddy Ko-Enzo Cilenti-Jonathan Aris-Gruffudd Glyn-Geoffrey Thomas-Yang Haiwen-Narantsogt Tsogtsaikhan-Brian Caspe-Szonja Oroszl��n-Mark O'Neal-Karen Gagnon-Lili Bord��n-Nikolett Barabas-Dilyana Bouklieva-Bj�_rn Freiberg-James Fred Harkins Jr.-Sam Spruell-Matt Devere-Mike Kelly-Greg De Cuir-Peter Linka-Declan Hannigan-Peter Schueller-Waleska Latorre-Frederik Pleitgen-Charlie Gardner-N�_ra Lili H�_rich-Kamilla F��tyol-Yang Liu-Richard Rifkin-Nicholas Wittman-Ben O'Brien-Scott Alexander Young-Jason Ryan-James Dougherty-Xue Xuxing-Bal��zs Medveczky-Dora Endre,based on novel or book-planet mars-nasa-isolation-spacecraft-botanist-alone-stranded-space-engineering-survival-astronaut-struggle for survival-duringcreditsstinger-deep space-potatoes-2030s,/5BHuvQ6p9kfc091Z8RiFNhCwL4b.jpg,/3dPhs7hUnQLphDFzdkD407VZDYo.jpg,281957-157336-49047-76341-140607-150540-293660-135397-106646-102899-264660-205596-118340-273248-206647-207703-137113-127585-14160-99861-10681 +8960,Hancock,Fantasy-Action,en,Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful but will Hancock stick to his new sense of purpose or slip back into old habits?,58.881,GH Three-Columbia Pictures-Relativity Media-Blue Light-Weed Road Pictures-Forward Pass-Overbrook Entertainment,7/1/08,150000000,629443428,92,Released,Bad behavior. Bad attitude. Real hero.,6.343,8607,Will Smith-Charlize Theron-Jason Bateman-Jae Head-Eddie Marsan-David Mattey-Maetrix Fitten-Thomas Lennon-Johnny Galecki-Hayley Marie Norman-Dorothy Cecchi-Peter Berg-Darrell Foster-Brandon Ford Green-Daeg Faerch-Trieu Tran-Ryan Radis-Eddie J. Fernandez-Martin Klebba-Matt Bettinelli-Olpin-Samantha Cannon-Rico Devereaux-Alexa Havins-Edward M. Kelahan-AlgeRita Wynn-Rick Mali-Chris Mitchell-Scott Michael Morgan-Bryan Keith Ponton-Dawn Ressy-Nicholas Rich-Mark Simich-Nancy Grace-Brad Leland-Michael Mann-Atticus Shaffer-Michelle Lemon-Akiva Goldsman-Trieu Tran-Liz Wicker-Taylor Gilbert-Caroll Tohme-Barbara Ali-Elizabeth Dennehy-Darren Dowler,flying-alcohol-love of one's life-forbidden love-lovers-affection-advertising expert-alcoholism-invulnerability-superhero-pokies-los angeles california-duringcreditsstinger,/7DyuV2G0hLEqHeueDfOqhZ2DVut.jpg,/xh0ZRdnL4pSqfW73HBf97xiNEFP.jpg,2048-6479-608-9738-1979-602-607-1250-1593-8488-41154-787-1402-310-1858-8373-44912-8247-559-8909 +928123,The Battle at Lake Changjin: Water Gate Bridge,War-History-Action-Drama,zh,"In the follow-up to ""The Battle At Lake Changjin"" brothers Wu Qianli and Wu Wanli undertake a new task for the People's Volunteer Army defending a bridge part of the American troops' escape route from the advancing Chinese.",149.286,Bona Film Group,2/1/22,200000000,626203271,149,Released,,7,37,Wu Jing-Jackson Yee-Duan Yihong-Yawen Zhu-Jerry Lee-Elvis Han-Zhang Hanyu-Geng Le-Du Chun-Yang Yiwei-Hu Jun-Wang Likun-Li Zhuoyang-He Yuefei-Tang Zhiqiang-Liu Zhiwei-Zhuang Xiaolong-Xin Yubo-Zhang Yue-Tiger Xu-Wang Ning-ZhenWei Wang-ZeXuan Chen-Li Xiaofeng-James Filbird-John F. Cruz,korean war-historical-chinese communism-communist propaganda-chosin,/4W58wirZhbzcw2lNzRS2ErKnOGS.jpg,/mMA2YNddowV8MZtxpbn0a7Yilum.jpg,663712-779029-575322-532870-941520-86328-760204-848058-1024546-829799-436270-966220-37292-45509-717728-878183-438081-503235-972313-872177-84334 +51497,Fast Five,Action-Thriller-Crime,en,Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro they must pull one last job in order to gain their freedom.,12.571,Original Film-Universal Pictures-One Race,4/20/11,125000000,626137675,130,Released,Get the fifth gear.,7.249,7173,Vin Diesel-Paul Walker-Dwayne Johnson-Jordana Brewster-Tyrese Gibson-Ludacris-Matt Schulze-Sung Kang-Gal Gadot-Tego Calderon-Don Omar-Joaquim de Almeida-Elsa Pataky-Michael Irby-Fernando Chien-Alimi Ballard-Yorgo Constantine-Geoff Meed-Joseph Melendez-Jeirmarie Osorio-Mark Hicks-Esteban Cueto-Corey Michael Eubanks-Luis Da Silva Jr.-Eva Mendes-Luis Gonzaga-Benjamin Blankenship-Jay Jackson-Arlene Santana-Kent Shocknek-Sharon Tay-Devon Aoki-Johnny Strong-Chad Lindberg-Gregory Marshall Smith,car race-fbi-freedom-escaped convict-street race-prison escape-car crash-heist-organized crime-on the run-money-fugitive-police chase-duringcreditsstinger,/gEfQjjQwY7fh5bI4GlG0RrBu7Pz.jpg,/lvSxooYCRuF3S2kHWXYTrcOtYco.jpg,13804-9615-584-82992-9799-168259-337339-8373-1858-38356-25391-4108-27578-36658-558-2502-56292-76163-988334-39254-9738 +41154,Men in Black 3,Action-Comedy-Science Fiction,en,Agents J and K are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black but nothing not even aliens perplexes him as much as his wry reticent partner. But when K's life and the fate of the planet are put at stake Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K to save his partner the agency and the future of humankind.,34.21,Columbia Pictures-Hemisphere Media Capital-Amblin Entertainment-Parkes+MacDonald Image Nation-Imagenation Abu Dhabi FZ,5/23/12,225000000,624026776,106,Released,Back in time.,6.502,9426,Will Smith-Tommy Lee Jones-Josh Brolin-Jemaine Clement-Emma Thompson-Michael Stuhlbarg-Mike Colter-Nicole Scherzinger-Michael Chernus-Alice Eve-David Rasche-Keone Young-Bill Hader-Cayen Martin-Clarke Thorell-Adam Mucci-Tom McComas-Douglas Crosby-Woodie King Jr.-Jack O'Connell-Tobias Segal-Jon Shaver-Gerritt Vandermeer-Alexandra O'Hara-Violet O'Hara-Valence Thomas-Chloe Sonnenfeld-Lanny Flaherty-Jonathan O'Hara-Rick Baker-Joseph D'Onofrio-Joseph R. Gannascoli-Katy Frame-Kevin Townley-Stephen Brian Jones-Tyler Johnson-Kati Rediger-Victor Joel Ortiz-Charlie Barnett-Ian Blackman-Jeremy Beiler-Liliane Klein-Britt Chandler Johnson-Jared Johnston-Ken Arnold-Jonathan Drew-Joel Brady-David Pittu-Lenny Venito-Anthony J. Gallo-James Martin Kelly-Will McLaughlin-Kimmy Suzuki-Kirk Larsen-Rebecca Glasscock-Barry Sonnenfeld-Susan Ringo-Stephanie Ellis-Ben Mac Brown-Amy Erwitt-Brad Abrell-Tim Blaney-Thom Fountain-Carl J. Johnson-Will Arnett-Jada Pinkett Smith-Tony Shalhoub-Alex Ziwak-Jason Liles-Jesse Ridgway-Justin Bieber-Erin Lindsey Krom-Tim Burton-Eha Urbsalu,time travel-time machine-based on comic-alien-buddy cop-fictional government agency-seeing the future-changing history,/90DdoEStzeObs96fsYf4GG544iN.jpg,/5AhpUb8CAP0jZ4Wrn7AsRUYjZxB.jpg,608-607-14655-3693-668406-433046-38842-172767-56292-14161-10528-1865-49538-2048-1858-27578-38356-58574-64635-2080-1930 +10138,Iron Man 2,Adventure-Action-Science Fiction,en,With the world now aware of his dual life as the armored superhero Iron Man billionaire inventor Tony Stark faces pressure from the government the press and the public to share his technology with the military. Unwilling to let go of his invention Stark with Pepper Potts and James 'Rhodey' Rhodes at his side must forge new alliances ��� and confront powerful enemies.,91.94,Marvel Studios-Fairview Entertainment,4/28/10,200000000,623933331,124,Released,"It's not the armor that makes the hero, but the man inside.",6.837,20035,Robert Downey Jr.-Gwyneth Paltrow-Don Cheadle-Scarlett Johansson-Sam Rockwell-Mickey Rourke-Samuel L. Jackson-Clark Gregg-John Slattery-Garry Shandling-Paul Bettany-Leslie Bibb-Kate Mara-Jon Favreau-Christiane Amanpour-Philippe Bergeron-James Bethea-Michael Bruno-Kate Clark-Luminita Docan-Fran�_ois Duhamel-Larry Ellison-Adam Goldstein-Tim Guinee-Eric L. Haney-Ali Khan-Evgeniy Lazarev-Stan Lee-Isaiah Guyman Martin IV-Helena Mattsson-Anya Monzikova-Keith Middlebrook-Margy Moore-Olivia Munn-Elon Musk-Bill O'Reilly-Alejandro Pati��o-Davin Ransom-Karim Saleh-Brian Schaeffer-Phillipe Simon-Jack White-Jenny Robinson-Melanie Brown-Krystal Ellsworth-Victoria Gracie-Gina Cantrell-Renee Herlocker-Jill Ann Pineda-Arnold-Sandy Colton-Annika Ihnat-Lindsay Dennis-Jennifer D. Johnson-Lindsay Rosenberg-Hannah Douglass-Brooke Long-Rachele Brooke Smith-Kylette Zamora-Nadine Ellis-Ayelet Ben-Shahar-John Ceallach-Katie Cleary-Ajarae Coleman-Timothy 'TJ' James Driscoll-Jasmine Dustin-Sam Felman-Shakira Vanise Gamble-Paul Grace-Mark Kubr-Cameron Lee-Jee-Yun Lee-Mathew Lorenceau-Christopher Maleki-Bryan McCoy-Tony Nevada-Allison Ochmanek-Nicolas Pajon-Steven James Price-Tanoai Reed-Peter Trenholm Smith-Doug Swander-Peter Sebastian Wrobel-Nick W. Nicholson-Kristin Quick-Matt McColm-Seth Green,technology-superhero-malibu-based on comic-revenge-aftercreditsstinger-marvel cinematic universe (mcu)-break out,/6WBeq4fCfn7AN0o21W9qNcRF2l9.jpg,/7lmBufEG7P7Y1HClYK3gCxYrkgS.jpg,1726-68721-1771-10195-76338-24428-1724-100402-99861-271110-102899-1930-49538-557-118340-559-284052-1865-315635-558-283995 +2062,Ratatouille,Animation-Comedy-Family-Fantasy,en,Remy a resident of Paris appreciates good food and has quite a sophisticated palate. He would love to become a chef so he can create and enjoy culinary masterpieces to his heart's delight. The only problem is Remy is a rat. When he winds up in the sewer beneath one of Paris' finest restaurants the rodent gourmet finds himself ideally placed to realize his dream.,111.323,Pixar-Walt Disney Pictures,6/28/07,150000000,623726000,111,Released,He's dying to become a chef.,7.814,16116,Patton Oswalt-Lou Romano-Ian Holm-Brian Dennehy-Peter Sohn-Peter O'Toole-Brad Garrett-Janeane Garofalo-Will Arnett-Julius Callahan-James Remar-John Ratzenberger-Teddy Newton-Tony Fucile-Jake Steinfeld-Brad Bird-St��phane Roux-Andrea Boerries-Marco Boerries-Lindsey Collins-Thomas Keller-Brad Lewis-Lori Richardson-Jack Bird-Jamie Oliver-Bill Farmer-Michael Giacchino,work-sibling relationship-paris france-expensive restaurant-river-confidence-evacuation-mouse-leaving one's family-restaurant critic-spice-cookbook-food-chef-sewer-unlikely friendship-rat-french cuisine,/t3vaWRPSf6WjDSamIkKDs1iQWna.jpg,/xgDj56UWyeWQcxQ44f5A3RTWuSs.jpg,12-585-9806-14160-862-863-10193-920-10681-808-62211-425-38757-62177-9487-953-809-9502-49013-150540-950 +363088,Ant-Man and the Wasp,Action-Adventure-Science Fiction,en,Just when his time under house arrest is about to end Scott Lang once again puts his freedom at risk to help Hope van Dyne and Dr. Hank Pym dive into the quantum realm and try to accomplish against time and any chance of success a very dangerous rescue mission.,51.359,Marvel Studios,7/4/18,140000000,622674139,119,Released,Real heroes. Not actual size.,6.953,12294,Paul Rudd-Evangeline Lilly-Michael Pe��a-Walton Goggins-Bobby Cannavale-Judy Greer-T.I.-David Dastmalchian-Hannah John-Kamen-Abby Ryder Fortson-Randall Park-Michelle Pfeiffer-Laurence Fishburne-Michael Douglas-Divian Ladwa-Goran Kostiۈ-Rob Archer-Sean Kleier-Benjamin Byron Davis-Michael Cerveris-Riann Steele-Dax Griffin-Hayley Lovitt-Langston Fishburne-RaeLynn Bratten-Madeleine McGraw-Tim Heidecker-Stan Lee-Charles Justo-Brian Huskey-Suehyla El-Attar-Julia Vera-Jessica Winther-Norwood Cheek-Bryan Lugo-Ana Maria Quintana-Darcy Shean-Blake Vogt-Torrey Vogel-Simon Potter-Jon Wurster-Tom Scharpling-Virginia Hamilton-Jessica Castro-Reggie Aqui-Natasha Zouves-Mike Nicco-Alexis Smith-Mika Kubo-Joshua Mikel-Chris Gann-Sergio Briones-Denney Pierce-Vanessa Ross-Zachary Culbertson-Steven Wiig-Timothy Carr-Sawyer D. Jones-Rick Richardson-Benjamin Weaver-Jamel Chambers-Jennifer Black-Sandra Dee Richardson-Dale Liner-John Ozuna-Marcella Bragio-Sophia Marcs-William W. Barbour-Kevin Carscallen-Seth McCracken-Andy Arness-James Siderits-Christine Marie Evans-Hayley Gagner-Gail Gamble-Linda Joy Henry-Anne Luna-Anne-Marie Olsen-Etienne Vick-Marcus Young,insect-flying-dream-fight-ant-nuclear missile-chase-van-shrinking-giant insect-sequel-superhero-based on comic-house arrest-alternate dimension-flashback-tragic villain-laboratory-fugitive-school-miniaturization-montage-toy car-giant man-female villain-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-giant-action hero-father daughter relationship-mother daughter relationship,/6KFB9nRiC8gSrV5J5Wjf7zRIJYm.jpg,/iYdgEUE2W2aJkgqfSjf1x3gFfuV.jpg,102899-284054-284053-299536-299537-315635-271110-283995-76338-99861-284052-100402-429617-299534-10195-383498-1771-10138-118340-68721-24428 +82702,How to Train Your Dragon 2,Fantasy-Action-Adventure-Animation-Comedy-Family,en,Five years have passed since Hiccup and Toothless united the dragons and Vikings of Berk. Now they spend their time charting unmapped territories. During one of their adventures the pair discover a secret cave that houses hundreds of wild dragons -- and a mysterious dragon rider who turns out to be Hiccup's mother Valka. Hiccup and Toothless then find themselves at the center of a battle to protect Berk from a power-hungry warrior named Drago.,80.86,DreamWorks Animation-Mad Hatter Entertainment-Vertigo Entertainment,6/5/14,145000000,621537519,102,Released,The training is over.,7.7,8596,Jay Baruchel-Cate Blanchett-Gerard Butler-Craig Ferguson-America Ferrera-Jonah Hill-Christopher Mintz-Plasse-T.J. Miller-Kristen Wiig-Djimon Hounsou-Kit Harington-Kieron Elliott-Philip McGrade-Andrew Ableson-Gideon Emery-Simon Kassianides-Randy Thom-Julian Stone,loss of loved one-parent child relationship-husband wife relationship-sacrifice-viking-sequel-rescue-death of father-dragon-death of husband-warrior-mother son relationship,/d13Uj86LdbDLrfDoHR5aDOFYyJC.jpg,/sKTFNMsuSgyAcwbD0xXVUXvvbY.jpg,10191-166428-177572-109445-38757-950-9502-62177-137106-270946-93456-82690-8355-127585-102651-9806-62211-425-49519-150540-81188 +263115,Logan,Action-Drama-Science Fiction,en,In the near future a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives pursued by dark forces.,68.993,Hutch Parker Entertainment-The Donners' Company-Genre Films-20th Century Fox,2/28/17,97000000,619021436,137,Released,His time has come.,7.815,17552,Hugh Jackman-Dafne Keen-Patrick Stewart-Elizabeth Rodriguez-Boyd Holbrook-Stephen Merchant-Richard E. Grant-Stephen Dunlevy-Eriq La Salle-Elise Neal-Quincy Fouse-Al Coronel-Frank Gallegos-Anthony Escobar-Reynaldo Gallegos-Krzysztof Soszynski-Daniel Bernhardt-Ryan Sturz-Jef Groff-Brandon Melendy-Oren Hawxhurst-Jeremy Fitzgerald-Chris Palermo-Paul Andrew O'Connor-Clinton Roberts-Rocky Abou-Sakher-Keith Jardine-Jean Claude Leuyer-Andrew Arrabito-Sebastian James-Aaron Matthews-Garrett Hammond-Matt McClain-Maureen Brennan-Jason Genao-Hannah Westerfield-Bryant Tardy-Ashlyn Casalegno-Alison Fernandez-Parker Lovein-Jimmy Gonzales-Dave Davis-Lennie Loftin-Mark Ashworth-James Handy-Bryce Romero-Phi Vu-Chester Rushing-David Simpson-Lauren Gros-John Raymond-Vanessa Cloke-Doris Morgado-Katie Anne Mitchell-Lara Grice-James Moses Black-Ned Yousef-Michael Lehr-Baxter Humby-Bryan Sloyer-Daniel Hern��ndez-John Bernecker-Evan Dane Taylor-Joe Nin Williams-Toby Holguin-Robert Wu-Panuvat Anthony Nanakornpanom-Victor Winters-Junco-Eyad Elbitar-Craig Henningsen-Han Soto-Rissa Rose Kilar-Salef Celiz-Aidan Kennedy-Nayah Murphy-Chase Cubia-Emma Teo-Vincenzo Lucatorto-Noell Jellison-Haley Glass-Ella Rowbotham-Hudson Wright-Sebeon Jackson-Kelton DuMont-Damon Carney-Cynthia Woods-Mali O'Connor-David Kallaway-Robert Vargas-David Paris-Gonzalo Robles-Tim Connolly-Mary Peyton Stewart,cyborg-experiment-self-destruction-mutant-future-dystopia-immortality-road trip-sequel-superhero-based on comic-super power-neo-western-troubled past-aging superhero-life on the margin,/fnbjcRDYn6YviCcePDnGdyAkYsB.jpg,/9X7YweCJw3q8Mcf6GadxReFEksM.jpg,283995-246655-297762-293660-127585-284052-271110-118340-315635-209112-293167-284053-330459-99861-102899-141052-324552-297761-76338-259316-76341 +330,The Lost World: Jurassic Park,Adventure-Action-Science Fiction,en,Four years after Jurassic Park's genetically bred dinosaurs ran amok multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that he has been breeding more beasties at a secret location. Malcolm his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.,2.116,Universal Pictures-Amblin Entertainment-Digital Image Associates,5/23/97,73000000,618638999,129,Released,Something has survived.,6.524,7378,Jeff Goldblum-Julianne Moore-Pete Postlethwaite-Arliss Howard-Richard Attenborough-Vince Vaughn-Vanessa Lee Chester-Peter Stormare-Harvey Jason-Richard Schiff-Thomas F. Duffy-Joseph Mazzello-Ariana Richards-Thomas Rosales Jr.-Camilla Belle-Cyd Strittmatter-Robin Sachs-Ross Partridge-Ian Abercrombie-David Sawyer-Geno Silva-Alex Miranda Cruz-Robert 'Bobby Z' Zajonc-Bob Boehm-Bradley Jensen-Alan D. Purwin-Ben Skorstad-Rick Wheeler-Kenyon Williams-Gordon Michaels-J. Scott Shonka-Harry Hutchinson-Billy Brown-Brian Turk-Jim Harley-Colton James-Carey Eidel-Katy Boyer-David Koepp-Eugene Bass Jr.-Bari Buckner-Patricia Bethune-David St. James-Mark Brady-Marjean Holden-Jacqueline Schultz-Domini Hofmann-Thomas Stuart-C. Ransom Walrod-David Gene Gibbs-Michael N. Fujimoto-Paul Fujimoto-Darryl A. Imai-Darryl Oumi-Vincent Dee Miles-Bernard Shaw-Sean Michael Allen-Christopher Caso-Michael Chinyamurindi-Tory Christopher-Michael Fallavollita-Elliot Goldwag-Larry Guardino-Henry Kingi-Brian Lally-David Lea-J. Patrick McCormack-Johnny Meyer-Michael Milhoan-Kenneth Moskow-Mark Pellegrino-Bob Quinn-Chad Randall-Eli Roth-James Ryan-Theodore Carl Soderberg-Steven Spielberg,exotic island-dna-paleontology-tyrannosaurus rex-velociraptor-san diego california-island-dinosaur-creature-scientist-amusement park-theme park-costa rica-animal horror-father daughter relationship,/jElpCJkSaRPYwIMwZY28gOKV7BK.jpg,/w9eBtIHHpGgGfjqnEAJM3s7mCOa.jpg,331-329-135397-774823-87-217-8373-1858-564-36668-607-38356-1734-36658-89-351286-85-36657-1894-1893-558 +615,The Passion of the Christ,Drama,en,A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.,55.241,,2/25/04,30000000,611899420,127,Released,"By his wounds, we were healed.",7.418,3659,Jim Caviezel-Maia Morgenstern-Christo Jivkov-Francesco De Vito-Monica Bellucci-Mattia Sbragia-Toni Bertorelli-Luca Lionello-Hristo Shopov-Claudia Gerini-Fabio Sartor-Giacinto Ferro-Aleksander Mincer-Sheila Mokhtari-Lucio Allocca-Paco Reconti-Adel Bakri-Luciano Dragone-Adel Ben Ayed-Franco Costanzo-Lino Salemme-Emanuele Gullotto-Francesco De Rosa-Maurizio Di Carmine-Francesco Gabriele-Angelo Di Loreta-Federico Pacifici-Roberto Santi-Giovanni Vettorazzo-Ted Rusoff-Tom Shaker-Andrea Coppola-Romuald Klos-Giuseppe Lo Console-Dario D'Ambrosi-Luciano Federico-Domenico Capalbo-Valerio Esposito-Antonello Iacovone-Nicola Tagarelli-Ivan Gaudiano-Chokri Ben Zagden-Roberto Bestazzoni-Luca De Dominicis-Pietro Sarubbi-Abel Jafri-Lello Giulivo-Emilio De Marchi-Roberto Visconti-Sergio Rubini-Francesco Cabras-Andrea Refuto-Giovanni Capalbo-Matt Patresi-Sabrina Impacciatore-Daniela Poti-Jarreth J. Merz-Noemi Marotta-Rossella Longo-Davide Marotta-Rosalinda Celentano-Danilo Di Ruzza-Vincenzo Monti-Danilo Maria Valli-Nuot Arquint-Abraam Fontana-Valerio Isidori-Paulo dos Santos-Arianna Vitolo-Gabriella Barbuti-Ornella Giusto-Michelle Bonev-Lucia Stara-Evelina Meghnagi-Francis Dokyi,christianity-jewry-roman empire-suffering-apostle-last supper-roman-bible-crucifixion-satan-mission-torture-brutality-jesus christ-christian film-aramaic-ancient language film,/2C9vyK6leWDb2ds65R7uIwSmh8V.jpg,/4840rkbpsiuow5ew155oVKcqJwj.jpg,1579-2024-2675-652-3981-197-616-933554-591-254-944-1885-1966-8358-482408-8839-1495-676-74-1933-9342 +11631,Mamma Mia!,Comedy-Romance,en,An independent single mother who owns a small hotel on a Greek island is about to marry off the spirited young daughter she's raised alone. But the daughter has secretly invited three of her mother's ex-lovers in the hopes of finding her biological father.,33.102,Internationale Filmproduktion Richter-Playtone-Littlestar,7/3/08,52000000,609841637,108,Released,Take a trip down the aisle you'll never forget,6.958,5740,Meryl Streep-Amanda Seyfried-Pierce Brosnan-Stellan Skarsg��rd-Colin Firth-Julie Walters-Christine Baranski-Rachel McDowall-Nancy Baldwin-Heather Emmanuel-Colin Davis-Ashley Lilley-Ricardo Montez-Mia Soteriou-Enzo Squillino Jr.-Dominic Cooper-Philip Michael-Chris Jarvis-George Georgiou-Hemi Yeroham-Maria Lopiano-Juan Pablo Di Pace-Norma Atallah-Myra McFadyen-Leonie Hill-Jane Foufas-Niall Buggy-Karl Bowe-Celestina Banjo-Emrhys Cooper-Maria Despina-Gareth Davis-Charlotte Habib-Gareth Derrick-Jennifer Leung-Kage Douglas-Lydia Louisa-Phillip Dzwonkiewicz-Kristina MacMillan-Tommy Franzen-Lauri Owen-Tom Goodall-Joanne Sandi-Aykut Hilmi-Christie Saunders-Jamie Hughes-Ward-Emma Slater-Taylor James-Helen Soraya-Jack Jefferson-Caterina Spano-Peter Le Brun-Michelle Theunissen-Sebastien Torkia-Kitty Whitelaw-Dylan Turner-Nikki Davis-Jones-Ed White-Michelle Trimboli-Sean Williams-Kirsty Mather-Lee Honey-Jones-Rebecca Lee-Gareth Chart-Clare Louise Connolly-Sonny Lee Hymas-Kirsty Swain-Tim Stanley-Lisa Reynolds-Sara West-Claire Fishenden-Adrian Allan-Benny Andersson-Anthony Backman-Mackenzie Criswell-Lori Haley Fox-Sommer Garcia-Will Jeffs-Spencer Kayden-Kirk McGee-Meghan McLeod-Nikki Rapp-Bj�_rn Ulvaeus-Rita Wilson,single parent-parent child relationship-greece-musical-single-romantic comedy-based on play or musical-based on song poem or rhyme-hotel manager-greek island-duringcreditsstinger-woman director-mother daughter relationship-lgbt interest,/mQy3BuOdf3OSORWOKTodqfRayJM.jpg,/nQlJsL0NbBM2fyzhmFGVx63FKtW.jpg,458423-350-621-683841-9880-10625-634-37056-4523-11130-9801-11887-88-508-22897-22971-122928-10947-114-2976-50546 +87827,Life of Pi,Adventure-Drama,en,The story of an Indian boy named Pi a zookeeper's son who finds himself in the company of a hyena zebra orangutan and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.,33.038,Fox 2000 Pictures-Dune Entertainment-Ingenious Media-Haishang Films-Netter Productions,11/20/12,120000000,609016565,127,Released,Believe The Unbelievable,7.397,12392,Suraj Sharma-Irrfan Khan-Ayush Tandon-Gautam Belur-Adil Hussain-Tabu-Ayaan Khan-Mohd Abbas Khaleeli-Vibish Sivakumar-Rafe Spall-G��rard Depardieu-James Saito-Jun Naito-Andrea Di Stefano-Shravanthi Sainath-Elie Alouf-T.M. Karthik-Amarendran Ramanan-Hari Mina Bala-Wang Bo-chieh-Ko I-Chen-Jag Huang-Ravi Natesan-Adyant Balaji-Chirag Agarwal-Ahan Andr�� Kamath-Om Kamath-Srilekh Katta-Swati Van Rijswijk-M. Keerthana-Indumohan Poornima-Josephine Nithya B.-Samyuktha S.-A. Deiva Sundari-G. Vasantakumary-A. Vithya-Mythili Prakash-Raj Patel-Hadiqa Hamid-Iswar Srikumar-Padmini Ramachandran,sea-loss of loved one-1970s-faith-zebra-survival-young boy-zookeeper-orangutan-teenage boy-hyena-meerkat-magic realism-cargo ship-lifeboat-injured animal-storm at sea-told in flashback-wreckage-loss of family-teenage protagonist-family loss-flying fish,/iLgRu4hhSr6V1uManX6ukDriiSc.jpg,/lcyippCCbZOliGxX7HbTNyWf98q.jpg,37724-49051-14161-70160-62177-10528-82690-49026-68728-68718-82693-1930-59967-68721-19995-41154-20352-70981-10681-18785-68734 +335988,Transformers: The Last Knight,Action-Adventure-Science Fiction,en,Autobots and Decepticons are at war with humans on the sidelines. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past in the hidden history of Transformers on Earth.,57.415,Paramount-di Bonaventura Pictures-Ian Bryce Productions-Tom DeSanto/Don Murphy Production,6/16/17,217000000,605400000,154,Released,Two worlds collide. One survives.,6.1,5872,Mark Wahlberg-Josh Duhamel-Stanley Tucci-Anthony Hopkins-Isabela Merced-Laura Haddock-Jerrod Carmichael-Santiago Cabrera-John Turturro-Glenn Morshower-Liam Garrigan-Peter Cullen-Frank Welker-Gemma Chan-Erik Aadahl-Jim Carter-Omar Sy-Ken Watanabe-John Goodman-John DiMaggio-Reno Wilson-Jess Harnell-Tom Kenny-Steve Buscemi-Steven Barr-Mark Ryan-Mitch Pileggi-Tony Hale-Gil Birmingham-Remi Adeleke-Nicola Peltz Beckham-Shia LaBeouf-Stephen Hogan-Martin McCreadie-Rob Witcomb-Marcus Fraser-John Hollingworth-Daniel Adegboyega-Benjamin Maurice Webb-Claude Knowlton-Jacob Zachar-Maggie Steed-Sara Stewart-Phoebe Nicholls-Rebecca Front-Minti Gorne-Benjamin Flores Jr.-Juliocesar Chavez-Samuel Parker-Daniel Iturriaga-Aisha Kabia-Andy Bean-Sam Yim-Mark Dexter-Rob Jarvis-Tim Downie-Elizabeth Croft-Emily Tierney-Wolfgang Young-Nicholas Khan-Leighton Sharpe-Christina Tam-Aiyaz Ahmed-Pauline McLynn-Matthew Castle-Mia Maria-Poppy Carter-Seeta Indrani-Phill Langhorne-Simon Harrison-Wendy Albiston-John Burke-Barbara Eve Harris-Granville Ames-Jim Wisniewski-Perry Yee-Brian William Price-Vincent Jerome-Alan Pietruszewski-Christoper Vasquez-Drew Waters-Krista Schaeffer-Walles Hamonde-Tom Wright-Dan Warner-Michael Richard-Charlie Bouguenon-Jandre le Roux-Eddie Hall-Kevin Kent-Jude Poyer,england-based on toy-knight-robot-transformers,/s5HQf2Gb3lIO2cRcFwNL9sn1o1o.jpg,/1n00NlOGRFZVs8coBxyZLm5l4EC.jpg,91314-8373-38356-1858-716255-424783-166426-25565-315635-282035-281338-337339-76934-297762-315267-283995-293167-673025-246655-196798-268092 +10527,Madagascar: Escape 2 Africa,Family-Adventure-Animation-Comedy,en,Alex Marty and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place but Alex and company wonder if it is better than their Central Park home.,64.592,DreamWorks Animation,10/30/08,150000000,603900354,89,Released,Still together. Still lost!,6.471,6087,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Sacha Baron Cohen-Cedric the Entertainer-Andy Richter-Bernie Mac-Alec Baldwin-Sherri Shepherd-Will.i.am-Elisa Gabrielli-Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-Quinn Dempsey Stiller-Declan Swift-Fred Tatasciore-Eric Darnell-Willow Smith-Thomas Stanley-Zachary Gordon-Meredith Vieira-Lesley Stahl-Al Roker-David Soren-Phil LaMarr-Stephen Kearin-Dan O'Connor-Edie Mirman-Fergie-Harland Williams-Danny Jacobs-Bridget Hoffman-Terrence Hardy Jr.-Conner Rayburn-Holly Dorff-David P. Smith-Lynnanne Zager-Jackie Gonneau-John Eric Bentley,africa-jealousy-dance-hunger-lion-zoo-hippopotamus-giraffe-chimp-penguin-volcano-madagascar-airplane-friendship-cartoon-zebra-slapstick comedy-sequel-friends-shark-animal-duringcreditsstinger-lemur-talking animals,/agRbLOHgN46TQO4YdKR462iR7To.jpg,/8xcm94SLAxvNmJYuGh42ziydu70.jpg,80321-953-8355-950-810-10192-9502-49444-46195-57800-425-13053-809-22794-15512-5559-38055-9836-10555-7518-49013 +74,War of the Worlds,Adventure-Thriller-Science Fiction,en,Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit a strange and powerful lightning storm touches down.,39.555,Paramount-DreamWorks Pictures-Cruise/Wagner Productions-Amblin Entertainment,6/28/05,132000000,603873119,117,Released,They're already here.,6.5,7343,Tom Cruise-Dakota Fanning-Justin Chatwin-Miranda Otto-Tim Robbins-Rick Gonzalez-Yul Vazquez-Lenny Venito-Lisa Ann Walter-Ann Robinson-Gene Barry-David Alan Basche-Roz Abrams-Camillia Sanes-Michael Brownlee-Marlon Young-John Eddins-Peter Gerety-David Harbour-Miguel Antonio Ferrer-January LaVoy-Stephen Gevedon-Julie White-Marianne Ebert-Rafael Sardina-Amy Ryan-Ed Vassallo-Michael Arthur-Danny Hoch-Sharrieff Pugh-Erika LaVonn-Christopher Evan Welch-John Michael Bolger-Omar Jermaine-Robert Cicchini-Jim Hanna-Tracy Howe-Adam Lazarre-White-Vito D'Ambrosio-Laura Zoe Quist-Ana Maria Quintana-Lorelei Llee-Mark Manley-John Scurti-Becky Ann Baker-Mariann Mayberry-Ty Simpkins-Jerry Walsh-Tommy Guiffre-Daniel Franzese-Ed Schiff-Ellen Barry-Amy Hohn-Dan Ziskie-David Conley-Daniel Eric Gold-Booker T. Washington-Maggie Lacey-Eric Zuckerman-Daniel A. Jacobs-Asha R. Nanavati-Joaquin Perez-Campbell-Dendrie Taylor-James DuMont-Travis Aaron Wade-Benny Ciaramello-Ricky Luna-Columbus Short-Kent Faulcon-Kevin Collins-Terry Thomas-Clay Bringhurst-Jorge-Luis Pallo-Suanne Spoke-Kirsten Nelson-Melody Garrett-Lauri Johnson-Takayo Fischer-Shanna Collins-Elizabeth Jayne Hong-Art Chudabala-Jeffrey Hutchinson-Dempsey Pappion-Chris Todd-Johnny Kastl-Juan Carlos Hern��ndez-Bruce W. Derdoski Jr.-John N. Morales-Morgan Freeman-Peter E. Tasciotti-David Gere-James Boss-Martin Dew-Joe Duffy-Freddie Johnson-Anthony Jennings-Ingrid Johnson-Tanda Ker�_n-Victor Magnusson-Robert O'Connor-Miho Nakamura-Vladislav Kozlov-Channing Tatum,post traumatic stress disorder-new jersey-based on novel or book-underground-airplane-dystopia-daughter-remake-alien-survival-apocalypse-creature-alien invasion-human subjugation,/6Biy7R9LfumYshur3YKhpj56MpB.jpg,/nH6hPhJq3EEv9CnBZgXU3IQnpJo.jpg,180-435-254-602-9738-217-2048-652-616-2059-8960-1593-330-1635-95-608-6479-607-601-310-956 +329648,Mayweather vs. Pacquiao,Action,en,Floyd Mayweather Jr. vs. Manny Pacquiao billed as The Fight of the Century Battle for Greatness or Legacy was a professional boxing match between the eight-division world champion Manny Pacquiao and undefeated five-division world champion Floyd Mayweather Jr. The fight took place on May 2 2015 at the MGM Grand Garden Arena in Las Vegas Nevada.,3.965,,5/2/15,0,600000000,0,Released,Fight of The Century,7,3,Floyd Mayweather Jr.-Manny Pacquiao-Vasyl Lomachenko-Gamalier Rodriguez-Brad Solomon-Adrian Granados-Jesse Hart-Mike Jimenez-Christopher Pearson-Said El Harrak-Leo Santa Cruz-Jose Cayetano,boxing,/sM2iNLwOv4nnADdZUsyX0Ylc2Gb.jpg,/2utD8HsTSAifq2eYBzT76mAf6Td.jpg, +36557,Casino Royale,Adventure-Action-Thriller,en,Le Chiffre a banker to the world's terrorists is scheduled to participate in a high-stakes poker game in Montenegro where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond���on his maiden mission as a 00 Agent���to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter Bond enters the most important poker game in his already dangerous career.,44.315,Eon Productions-Stillking Films-Columbia Pictures-Studio Babelsberg-Danjaq-Casino Royale Productions-Government of the Commonwealth of the Bahamas-Metro-Goldwyn-Mayer,11/14/06,150000000,599045960,144,Released,Everyone has a past. Every legend has a beginning.,7.5,9563,Daniel Craig-Eva Green-Mads Mikkelsen-Judi Dench-Jeffrey Wright-Giancarlo Giannini-Caterina Murino-Simon Abkarian-Isaach De Bankol��-Jesper Christensen-Ivana Miliۍeviۈ-Tobias Menzies-Claudio Santamaria-S��bastien Foucan-Malcolm Sinclair-Richard Sammel-Ludger Pistor-Joseph Millson-Darwin Shaw-Clemens Schick-Emmanuel Avena-Tom Chadbon-Ade-Urbano Barberini-Tsai Chin-Lazar Ristovski-Veruschka von Lehndorff-Charlie Levi Leroy-Tom So-Andreas Daniel-Jessica Miller-Carlos Leal-Christina Cole-J�_rgen Tarrach-John Gold-Diane Hartford-Leo Stransky-Paul Bhattacharjee-Crispin Bonham-Carter-Rebecca Gethings-Peter Brooke-Robert G. Slade-F��licit�� Du Jeu-Michaela Ochotsk��-Michael G. Wilson-Valentine Nonyela-Phil Meheux-Alessandra Ambrosio-Vlastina Sv��tkov��-Ivan G'Vera-Richard Branson-Martin Campbell-Tara Cardinal-Ben Cooke-Simona Roman-Greg Bennett-Alexander Hathaway,italy-poker-casino-based on novel or book-terrorist-banker-money-free running-torture-mi6-british secret service-montenegro,/lMrxYKKhd4lqRzwUHAy5gcx9PSO.jpg,/kjC48HRQpojr3FHx5pZF7Ro9xFg.jpg,10764-24257-37724-21-206647-36669-710-2501-714-56292-954-2503-1271-2502-36643-10528-161-85-89-272-1571 +38757,Tangled,Animation-Family,en,When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower he's taken hostage by Rapunzel a beautiful and feisty tower-bound teen with 70 feet of magical golden hair. Flynn's curious captor who's looking for her ticket out of the tower where she's been locked away for years strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade complete with a super-cop horse an over-protective chameleon and a gruff gang of pub thugs.,84.873,Walt Disney Animation Studios-Walt Disney Pictures,11/24/10,260000000,592461732,100,Released,They're taking adventure to new lengths.,7.6,10484,Mandy Moore-Zachary Levi-Donna Murphy-Ron Perlman-Brad Garrett-Richard Kiel-M.C. Gainey-Jeffrey Tambor-Paul F. Tompkins-Delaney Rose Stein-Nathan Greno-Byron Howard-Tim Mertens-Michael Bell-Bob Bergen-Susanne Blakeslee-Roy Conli-David Cowgill-Terri Douglas-Chad Einbinder-Pat Fraley-Eddie Frierson-Jackie Gonneau-Nicholas Guest-Bridget Hoffman-Daniel Kaz-Anne Lockhart-Mona Marshall-Scott Menville-Laraine Newman-Paul Pape-Lynwood Robinson-Fred Tatasciore-Hynden Walch-Kari Wahlgren-June Christopher,hostage-magic-horse-fairy tale-musical-blonde-princess-tower-selfishness-healing power-adventurer-based on fairy tale-duringcreditsstinger-healing gift-animal sidekick-magic land,/ym7Kst6a4uodryxqbGOxmewF235.jpg,/cWczNud8Y8i8ab0Z4bxos4myWYO.jpg,2062-10020-62177-109445-10198-953-812-425-10144-12-10191-9502-10193-10674-585-14160-20352-808-809-8587-46195 +10764,Quantum of Solace,Adventure-Action-Thriller-Crime,en,Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper the woman he loved 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth Bond and M interrogate Mr. White who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.,33.075,Eon Productions-Metro-Goldwyn-Mayer-Columbia Pictures-B22,10/29/08,200000000,589580482,106,Released,"For love, for hate, for justice, for revenge.",6.307,7018,Daniel Craig-Olga Kurylenko-Mathieu Amalric-Judi Dench-Giancarlo Giannini-Jesper Christensen-Gemma Arterton-Jeffrey Wright-Rory Kinnear-David Harbour-Anatole Taubman-Tim Pigott-Smith-Joaqu�_n Cos�_o-Glenn Foster-Paul Ritter-Stana Katic-Lucrezia Lante della Rovere-Neil Jackson-Oona Chaplin-Rachel McDowall-Sarah Hadland-Alexandra Prusa-Brandon Jovanovich-Fernando Guill��n Cuervo-Jes�_s Ochoa-Simon Kassianides-Guillermo del Toro-Alfonso Cuar�_n-Eva Green-Derek Lea-Tatiana Lavrentieva-Laila Alina Reischer,killing-undercover-secret agent-mi6-british secret service,/e3DXXLJHGqMx9yYpXsql1XNljmM.jpg,/3CqMIX3ZlrD0pU3fpBL6DM0Cneb.jpg,36557-37724-36669-206647-710-714-36643-56292-2501-10528-709-954-27578-45592-1571-700-49040-58574-956-534-2503 +607,Men in Black,Action-Adventure-Comedy-Science Fiction,en,After a police chase with an otherworldly being a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent Kay and new recruit Agent Jay find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.,44.031,Columbia Pictures-Amblin Entertainment-Parkes+MacDonald Image Nation,7/2/97,90000000,589390539,98,Released,Protecting the Earth from the scum of the universe.,7.178,12318,Tommy Lee Jones-Will Smith-Linda Fiorentino-Vincent D'Onofrio-Rip Torn-Tony Shalhoub-Siobhan Fallon Hogan-Mike Nussbaum-Jon Gries-Sergio Calder�_n-Carel Struycken-Fredric Lehne-Richard Hamilton-Kent Faulcon-John Alexander-Keith Campbell-Ken Thorley-Patrick Breen-Becky Ann Baker-Sean Whalen-Harsh Nayyar-Michael Willis-Willie C. Carpenter-Peter Linari-David Cross-Charles C. Stevenson Jr.-Boris Leskin-Steve Rankin-Andy Prosky-Michael Goldfinger-Alpheus Merchant-Norma Jean Groh-Bernard Gilkey-Sean Plummer-Michael Kaliski-Richard Arthur-Debbie Lee Carrington-Verne Troyer-Mykal Wayne Williams-Tim Blaney-Mark Setrakian-Brad Abrell-Thom Fountain-Carl J. Johnson-Drew Massey-Christina Benitan-Lowell Cunningham-Danny DeVito-John Elsen-Newt Gingrich-Karen Lynn Gorney-Adrian Lee-George Lucas-Patricia McPherson-Isaac Mizrahi-Fred Newman-Joe Paparone-Tony Robbins-Al Roker-Eliot Sash-Marshal Silverman-Barry Sonnenfeld-Chloe Sonnenfeld-Steven Spielberg-Dionne Warwick-Sylvester Stallone,new york city-secret identity-undercover-space marine-illegal immigration-deportation-new identity-giant cockroach-cannon-flying saucer-stay permit-superhero-based on comic-alien-buddy cop-fictional government agency,/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg,/wM1aNIXSqB8GSeQY38LOUHYMYIw.jpg,608-41154-813257-2048-602-1858-558-557-6479-22-58-18-329-425-604-285-601-87-18785-953-36658 +49519,The Croods,Animation-Adventure-Family-Fantasy-Comedy-Action,en,The prehistoric Croods family live in a particularly dangerous moment in time. Patriarch Grug his mate Ugga teenage daughter Eep son Thunk and feisty Gran gather food by day and huddle together in a cave at night. When a more evolved caveman named Guy arrives on the scene Grug is distrustful but it soon becomes apparent that Guy is correct about the impending destruction of their world.,65.672,DreamWorks Animation,3/15/13,135000000,587204668,98,Released,Meet the first modern family.,6.915,6364,Nicolas Cage-Emma Stone-Ryan Reynolds-Catherine Keener-Cloris Leachman-Clark Duke-Chris Sanders-Randy Thom,parent child relationship-stone age-daughter-father-prehistoric-ancient world-family-cavemen-aftercreditsstinger-duringcreditsstinger-pets,/p7lJkqHlK01nr0zNacunUFI5Qxy.jpg,/bNgqt819qpHcszjCzLCG5y16ldF.jpg,57800-46195-76492-80321-82690-62211-93456-81188-953-8355-62177-77950-10527-10191-13053-172385-22794-109451-9502-20352-73723 +45243,The Hangover Part II,Comedy,en,The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year Stu is playing it safe with a mellow pre-wedding brunch. However nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.,66.849,Warner Bros. Pictures-Legendary Pictures-Green Hat Films,5/25/11,80000000,586764305,102,Released,The Wolfpack Is Back,6.456,9370,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Ken Jeong-Paul Giamatti-Mike Tyson-Jeffrey Tambor-Mason Lee-Jamie Chung-Sasha Barrese-Gillian Vigman-Aroon Seeboonruang-Nirut Sirijanya-Yasmin Lee-Nick Cassavetes-Sondra Currie-Bryan Callen-Brody Stevens-Michael Berry Jr.-Andrew Howard-Penpak Sirikul-Manel Soler-Todd Phillips-Crystal the Monkey-Jessica Lee-Aedin Mincks,stag night-undercover cop-memory loss-drugs,/jrP9zmdSUpOzzUXpEqPqg3dryUr.jpg,/zzcBf3kVmhJTANaFCJXiltsy64o.jpg,109439-18785-72105-310-41154-71552-1593-41733-64688-953-14161-10528-1858-51876-58574-1865-38356-27578-38365-6479-425 +6479,I Am Legend,Drama-Science Fiction-Thriller,en,Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years Neville has faithfully sent out daily radio messages desperate to find any other survivors who might be out there. But he is not alone.,76.978,Village Roadshow Pictures-Warner Bros. Pictures-Original Film-Weed Road Pictures-Heyday Films-Overbrook Entertainment,12/12/07,150000000,585410052,101,Released,The last man on Earth is not alone,7.194,14059,Will Smith-Alice Braga-Charlie Tahan-Dash Mihok-Salli Richardson-Whitfield-Willow Smith-Emma Thompson-Darrell Foster-Joanna Numata-Samuel Glen-Pedro Mojica-Marin Ireland-Alexander DiPersia-Raul Torres-April Grace-James McCauley-Anthony C. Mazza-Steve Cirbus-Calista Hill-Gabriella Hill-Madeline Hill-Adhi Sharma-Tyree Michael Simpson-Blake Lange-Abraham Sparrow-Pat Fraley-Caitlin McHugh-Deborah Collins-Mike Patton-Katherine Brook-Vince Cupone-Lynna Davis-Anika Ellis-John Grady-Moses Harris Jr.-Kennis Hawkins-Marc Inniss-Eric Jenkins-Reed Kelly-Grasan Kingsberry-Drew Leary-Asa Liebmann-Deborah Lohse-Jon-Paul Mateo-Ian Mclaughlin-Luke Miller-Courtney Munch-Kimberly Shannon Murphy-Okwui Okpokwasili-Erin Owen-Victor Paguia-Paradox Pollack-Will Rawls-William Schultz-Hollie K. Seidel-Hannah Sim-Eric Spear-Mark Steger-Charlie Sutton-David Hamilton Thomson-Anthony Vincent-Greg Wattkis,saving the world-new york city-based on novel or book-lost civilisation-post-apocalyptic future-dystopia-infection-matter of life and death-alone-helplessness-loneliness-zombie-virus-pandemic-pets,/iPDkaSdKk2jRLTM65UOEoKtsIZ8.jpg,/lhVVIWKR13khBvjFz8XyZ2GM0JS.jpg,2048-8960-607-1271-18785-602-608-425-285-61791-1402-10528-14161-72190-8681-1858-41154-72105-58-604-557 +1726,Iron Man,Action-Science Fiction-Adventure,en,After being held captive in an Afghan cave billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.,116.068,Marvel Studios,4/30/08,140000000,585174222,126,Released,Heroes aren't born. They're built.,7.6,24538,Robert Downey Jr.-Terrence Howard-Jeff Bridges-Gwyneth Paltrow-Leslie Bibb-Bill Smitrovich-Paul Bettany-Jon Favreau-Shaun Toub-Faran Tahir-Clark Gregg-Peter Billingsley-Sayed Badreya-Tim Guinee-Will Lyman-Tom Morello-Marco Khan-Daston Kalili-Ido Mor-Kevin Foster-Garret No�l-Eileen Weisinger-Ahmed Ahmed-Fahim Fazli-Gerard Sanders-Tim Rigby-Russell Richardson-Nazanin Boniadi-Thomas Craig Plumer-Robert Berkman-Stacy Stas-Lauren Scyphers-Frank Nyi-Marvin Jordan-Jim Cramer-Donna Evans-Reid Harper-Summer Kylie Remington-Ava Rose Williams-Vladimir Kubr-Callie Croughwell-Javan Tahir-Sahar Bibiyan-Patrick O'Connell-Adam Harrington-Meera Simhan-Ben Newmark-Ricki Lander-Jeannine Kaspar-Sarah Cahill-Stan Lee-Justin Rex-Zorianna Kit-Lana Kinnear-Nicole Lindeblad-Masha Lund-Gabrielle Tuite-Tim Griffin-Joshua Harto-Micah A. Hauptman-James Bethea-Mike Cochrane-Flavia Manes Rossi-Samuel L. Jackson-Kristin J. Hooper,middle east-arms dealer-malibu-superhero-based on comic-aftercreditsstinger-marvel cinematic universe (mcu)-counterterrorism,/78lPtwv72eTNqFW9COBYI0dWDJa.jpg,/cyecB7godJ6kNHGONFjUyVN9OX5.jpg,10138-68721-1771-10195-24428-1724-76338-100402-99861-271110-118340-102899-557-1930-272-49026-155-49538-22-283995-558 +333339,Ready Player One,Science Fiction-Adventure-Action,en,When the creator of a popular video game system dies a virtual contest is created to compete for his fortune.,56.838,Amblin Entertainment-Village Roadshow Pictures-Warner Bros. Pictures-Dune Entertainment-De Line Pictures-Reliance Entertainment-Farah Films & Management,3/28/18,175000000,582890172,140,Released,A better reality awaits.,7.617,13790,Tye Sheridan-Olivia Cooke-Ben Mendelsohn-Lena Waithe-T.J. Miller-Simon Pegg-Mark Rylance-Philip Zhao-Win Morisaki-Hannah John-Kamen-Ralph Ineson-Susan Lynch-Clare Higgins-Perdita Weeks-Letitia Wright-Mckenna Grace-Lulu Wilson-Cara Pifko-Vic Chao-Cara Theobold-Isaac Andrews-Joel MacCormack-Kit Connor-Leo Heller-Antonio Mattera-Lynne Wilmot-Kae Alexander-Michael Wildman-Adolfo �lvarez-Alonso Alvarez-Jadah Marie-Arianna Jaffier-Armani Jackson-Britain Dalton-Jacob Bertrand-Gareth Mason-Ronk�__ Ad��kolu�__jo-Daniel Zolghadri-William Gross-Laurence Spellman-Daniel Eghan-Julia Nickson-Kiera Bell-Samantha Russell-James Dryden-Violet McGraw-Jayden Fowora-Knight-Turlough Convery-Rona Morison-Elliot Barnes-Worrell-Asan N'Jie-Amy Clare Beales-Racheal Ofori-Sandra Dickinson-Mark Stanley-Emily Beacock-Rosanna Beacock-Gemma Refoufi-Jane Leaney-Robert Gilbert-Stephen Mitchell-Joshua Archer-Avye Leventis-Dean Street-Joe Hurst-Eric Sigmundsson-Danielle Phillips-Khalil Madovi-Bruce Lester-Johnson-Tom Turner-Paul Barnhill-Maeve Bluebell Wells-Neet Mohan-Georgie Farmer-Kathryn Wilder-Sid Sagar-David Forman-Ian Davies-Dallas Dupree Young-Sydney Brower-Jaeden Bettencourt-Gavin Marshall-Juan Carlos Cantu,video game-based on novel or book-future-virtual reality-dystopia-nostalgia-love-film in film-evil corporation-quest-1980s-2040s-based on young adult novel-columbus ohio,/pU1ULUq8D3iRxl1fdX2lZIzdHuI.jpg,/dbrLfmFNFEJWv8rLnjpgCKlXWSy.jpg,284054-383498-299536-338970-268896-427641-284053-447332-351286-348350-363088-260513-283995-141052-335983-315635-181808-401981-353486-336843-284052 +585,"Monsters, Inc.",Animation-Comedy-Family,en,Lovable Sulley and his wisecracking sidekick Mike Wazowski are the top scare team at Monsters Inc. the scream-processing factory in Monstropolis. When a little girl named Boo wanders into their world it's the monsters who are scared silly and it's up to Sulley and Mike to keep her out of sight and get her back home.,133.603,Pixar,11/1/01,115000000,579700000,92,Released,We scare because we care.,7.84,17571,John Goodman-Billy Crystal-Mary Gibbs-Steve Buscemi-James Coburn-Jennifer Tilly-Bob Peterson-John Ratzenberger-Frank Oz-Daniel Gerson-Steve Susskind-Bonnie Hunt-Jeff Pidgeon-Samuel Lord Black-Jack Angel-Bob Bergen-Rodger Bumpass-Gino Conforti-Jennifer Darling-Patti Deutsch-Pete Docter-Bobby Edner-Ashley Edner-Katie Scarlett-Paul Eiding-Bill Farmer-Keegan Farrell-Pat Fraley-Teresa Ganzel-Taylor Gifaldi-Marc John Jefferies-Joe Lala-Noah Luke-Sherry Lynn-Danny Mann-Mona Marshall-Mickie McGowan-Laraine Newman-Kay Panabaker-Bret Parker-Phil Proctor-Josh Qualtieri-Guido Quaroni-Jan Rabson-Lisa Raggio-Joe Ranft-Sophia Ranft-Katherine Ringgold-Bob Scott-David Silverman-Jim Thornton-Lee Unkrich-Wallace Shawn,monster-panic-cheating-kidnapping-door-infant-villain-portal-rivalry-energy supply-friends-hijinks-best friend-chameleon-family-parallel world-conveyor belt-invisibility-energy company-conspirators,/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg,/vUTVUdfbsY4DePCYzxxDMXKp6v6.jpg,12-862-62211-2062-9806-10193-863-14160-10681-920-808-8587-425-62177-953-20352-9487-150540-49013-38757-10191 +460555,Operation Red Sea,Action-Thriller-War-Drama,zh,A squad of the Jiaolong Commando Unit - Sea Dragon a spec ops team of the Chinese Navy carries out a hostage rescue operation in the nation of Yewaire on the Arabian Peninsula and fiercely fights against local rebel groups and Zaka a terrorist organization.,24.837,Bona Film Group-ZAK Film Productions-The P.L.A Navy Government TV Art Central of China-Star Dream Studio Media-Emperor Film Production-Film Fireworks Production,2/16/18,70000000,579220560,139,Released,,7.1,209,Zhang Yi-Johnny Huang-Hai Qing-Du Jiang-Zhang Hanyu-Jiang Luxia-Yutian Wang-Yin Fang-Henry Prince Mak-Guo Jiahao-Simon Yam-Wang Yanlin-Wang Qiang-Huo Siyan-Jacky Cai-Huang Fenfen-David Yu-Khalid Benchegra-Hassane Guannouni-Ayoub Layoussifi-Mezouari Houssam-Hicham Akkaoui-Sanaa Alaoui-Nisrine Adam-Amal Ayouch-Chaouqi Abdellatif-Nour El Houda Abkari,red sea-historical fiction-desert-hostage situation-tank battle-uranium-peoples army-naval battleship,/6ctXBO0o5fKQvGdSJsPc8TAYCvp.jpg,/uQNB6ccHv4uR21643xqyhK5Dk6W.jpg,791348-415214-535167-339877-452557-885110-517093-614696-585511-961484-438148-453395-507086-756999-76341 +1593,Night at the Museum,Action-Adventure-Comedy-Family-Fantasy,en,Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse awakening Attila the Hun an army of gladiators a Tyrannosaurus rex and other exhibits.,44.814,1492 Pictures-21 Laps Entertainment-20th Century Fox-Ingenious Media-Sun Canada Productions,12/20/06,110000000,574480841,108,Released,Where History Comes To Life,6.576,9662,Ben Stiller-Carla Gugino-Dick Van Dyke-Mickey Rooney-Bill Cobbs-Jake Cherry-Ricky Gervais-Robin Williams-Kim Raver-Patrick Gallagher-Rami Malek-Pierfrancesco Favino-Charlie Murphy-Steve Coogan-Mizuo Peck-Kerry van der Griend-Dan Rizzuto-Matthew Harrison-Jody Racicot-Paul Rudd-Anne Meara-Martin Christopher-Martin Sims-Randy Lee-Darryl Quon-Gerald Wong-Paul Chih-Ping Cheng-Teagle F. Bougere-Pat Kiernan-Nico McEown-Meshach Peters-Matthew Walker-Jason McKinnon-Jono Lee-Jason Vaisvila-Cade Wagar-Cory Martin-Brad Garrett-Crystal the Monkey-Che Landon-Phil Proctor-Gary Sievers-Owen Wilson,night shift-skeleton-chaos-maya civilization-museum-genghis khan-natural history-dinosaur-based on children's book-magical object-security guard-duringcreditsstinger-inanimate objects come to life,/uY9k8t2FQkMj60obnAnsPKLxHCE.jpg,/rwcPe582tfTSVLwQzbO25InW3Hi.jpg,18360-181533-953-9738-950-310-809-810-425-118-1979-8355-411-9502-10527-10555-8844-32657-8960-808-854 +1892,Return of the Jedi,Adventure-Action-Science Fiction,en,Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.,42.911,Lucasfilm Ltd.,5/25/83,32350000,572700000,132,Released,"Return to a galaxy far, far away.",7.9,14819,Mark Hamill-Harrison Ford-Carrie Fisher-Billy Dee Williams-Anthony Daniels-Peter Mayhew-Sebastian Shaw-Ian McDiarmid-Frank Oz-James Earl Jones-David Prowse-Alec Guinness-Kenny Baker-Michael Pennington-Kenneth Colley-Michael Carter-Denis Lawson-Tim Rose-Dermot Crowley-Caroline Blakiston-Warwick Davis-Jeremy Bulloch-Femi Taylor-Annie Arbogast-Claire Davenport-Jack Purvis-Mike Edmonds-Jane Busby-Malcolm Dixon-Mike Cottrell-Nicki Reade-Adam Bareham-Jonathan Oliver-Pip Miller-Tom Mannion-Margo Apostolos-Ray Armstrong-Eileen Baker-Michael Henbury Ballan-Bobby Bell-Patty Bell-Alan Bennett-Sarah Bennett-Pamela Betts-Danny Blackner-Linda Bowley-Peter Burroughs-Debbie Lee Carrington-Maureen Charlton-Willie Coppen-Sadie Corre-Tony Cox-John Cumming-Jean D'Agostino-Luis De Jesus-Debbie Dixon-Margarita Fern��ndez-Phil Fondacaro-Sal Fondacaro-Tony Friel-Daniel Frishman-John Ghavan-Michael Gilden-Paul Grant-Lydia Green-Lars Green-Pam Grizz-Andrew Herd-J.J. Jackson-Richard Jones-Trevor Jones-Glynn Jones-Karen Lay-John Lummiss-Nancy MacLean-Peter Mandell-Carole Morris-Stacie Nichols-Chris Nunn-Barbara O'Laughlin-Brian Orenstein-Harrell Parker Jr.-John Pedrick-April Perkins-Ronnie Phillips-Katie Purvis-Carol Read-Nicholas Read-Diana Reynolds-Danielle Rodgers-Chris Romano-Dean Shackelford-Kiran Shah-Felix Silla-Linda Spriggs-Gerald Staddon-Josephine Staddon-Kevin Thompson-Kendra Wall-Brian Wheeler-Butch Wilhelm-Mark Dodson-Simon J. Williamson-Richard Bonehill-David Gonzales-Peter Roy-Erik Bauersfeld-Mike Quinn-Bill Kipsang Rotich-Deep Roy-Alisa Berk-Hugh Spight-Swee Lim-Richard Robinson-Gerald Home-Phil Herbert-Tim Dry-Sean Crawford-Phil Tippett-Toby Philpott-David Alan Barclay-Jasper Jacob-Peter Allen-John Altman-Glyn Baker-Dickey Beer-Ailsa Berk-Don Bies-Paul Brooke-Ben Burtt-Maurice Bush-Trevor Butterfield-Vivienne Chandler-Tony Clarkin-Kenneth Coombs-Andy Cunningham-Peter Diamond-Richard Driscoll-Douglas Farrell-Alan Flyng-Ernie Fosselius-Stuart Fox-Isaac Grand-Gordon Hann-Alan Harris-Walter Henry-Philip Herbert-Larry Holt-William Hoyland-Colin Hunt-Monty Jordan-Michael Josephs-Eiji Kusuhara-Anthony Lang-Arnold Lee-Julius LeFlore-John Maloney-Paul Markham-Richard Marquand-Hilton McRae-Billy J. Mitchell-Amanda Noar-Terry Sach-Errol Shaker-Guy Standeven-Jules Walters-Robert Watts-Paul Weston-Corey Dee Williams-Michael Stevens-Michael McCormick-David Stone-Lynne Hazelden-Paul Springer-Ronny Cush-Larry Ward-John Cannon-Dalyn Chew-Celia Fushille-Burke-Mercedes Ngoh-Jennifer Jaffe-Tina Simmons,spacecraft-sibling relationship-rebel-emperor-space battle-matter of life and death-forest-desert-space opera,/jQYlydvHm3kUix1f8prMucrplhm.jpg,/psYeKwKclG4XaIop5suj1J0Kg2C.jpg,899082-1891-10366-11-11285-1894-1893-1895-15969-10925-283564-359983-615774-950445-125521-16234-34204-13155-16690-628866-8965 +216015,Fifty Shades of Grey,Drama-Romance-Thriller,en,When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper little does she realize the path her life will take. Christian as enigmatic as he is rich and powerful finds himself strangely drawn to Ana and she to him. Though sexually inexperienced Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.,168.905,Focus Features-Michael De Luca Productions-Trigger Street Productions,2/11/15,40000000,571006128,125,Released,Are you curious?,5.9,10758,Dakota Johnson-Jamie Dornan-Jennifer Ehle-Eloise Mumford-Victor Rasuk-Luke Grimes-Marcia Gay Harden-Rita Ora-Max Martini-Callum Keith Rennie-Andrew Airlie-Dylan Neal-Elliat Albrecht-Rachel Skarsten-Emily Fonda-Anthony Konechny-Anna Louise Sargeant-Raj Lal-Matthew Hoglie,based on novel or book-eroticism-bad smell-perversion-romance-spanking-billionaire-rich-bdsm-woman director,/63kGofUkt1Mx0SIL4XI4Z5AoSgt.jpg,/mgY8An5qVCgLh97KOWeJVJarskL.jpg,341174-337167-982549-207780-222935-812340-8966-50620-24021-667854-18239-50619-157350-262500-150689-286565-102651-296096-131631-198663-597 +575264,Mission: Impossible - Dead Reckoning Part One,Action,en,Ethan Hunt and his IMF team embark on their most dangerous mission yet: To track down a terrifying new weapon that threatens all of humanity before it falls into the wrong hands. With control of the future and the world's fate at stake and dark forces from Ethan's past closing in a deadly race around the globe begins. Confronted by a mysterious all-powerful enemy Ethan must consider that nothing can matter more than his mission���not even the lives of those he cares about most.,455.243,Paramount-Skydance-TC Productions,7/8/23,291000000,567500000,164,Released,We all share the same fate.,7.586,2735,Tom Cruise-Hayley Atwell-Ving Rhames-Simon Pegg-Rebecca Ferguson-Vanessa Kirby-Esai Morales-Pom Klementieff-Henry Czerny-Shea Whigham-Greg Tarzan Davis-Frederick Schmidt-Mariela Garriga-Cary Elwes-Charles Parnell-Mark Gatiss-Indira Varma-Rob Delaney-Marcello Walton-Brian Law-Lincoln Conway-Alex James-Phelps-Marcin Doroci��ski-Ivan Ivashkin-Zahari Baharov-Adrian Bouchet-Sam Barrett-Louis Vaughan-Jean Kartal-Os Leanse-Luke Smith-Nikolaos Brahimllari-Matt Malecki-Damian Rozanek-Antonio Bustorff-Ioachim Ciobanu-Michael Kosterin-Sergej Lopouchanski-Robert Luckay-Jadran Malkovich-Mikhail Safronov-Christopher Sciueref-Andrea Scarduzio-Barnaby Kay-Gloria Obianyo-Alex Brock-Kaye Dinauto-Dana Blacklake-Arevinth V Sarma-Doroteya Toleva-Lucia Tong-Hersha Verity-Yennis Cheung-Laura Vortler-Faycal Attougui-Gaetano Bruno-Marco Sincini-Evita Ciri-Melissa Anna Bartolini-John Akanmu-Marco Lascari-Simon Rizzoni-Nicolas Wang-Lee Bridgman-Daniella Carraturo-Katie Collins-Joanna Dyce-Taylor Goodridge-Jessica Holland-Philip Hulford-Grace Jabbari-Ira Mandela Siobhan-Nicholas Tredrea-Megan Westpfel-Marc Wesley DeHaney-Rocky Taylor,race against time-mission-rome italy-chase-secret mission-secret agent-sequel-intelligence agency-rogue agent-based on tv series-secret government agency-northern norway,/NNxYkU70HPurnNCSiCjYAmacwm.jpg,/628Dep6AxEtDxjZoGP78TsOxYbK.jpg,939335-507089-968051-1050474-926393-299054-123-474412-744857-1008042-893723-1022469-678512-70829-1039690-69110-937249-951491-975902-997391 +293167,Kong: Skull Island,Action-Adventure-Fantasy,en,Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous primordial island.,71.14,Legendary Pictures-Tencent Pictures,3/8/17,185000000,566652812,118,Released,All hail the king,6.508,9374,Tom Hiddleston-Samuel L. Jackson-John Goodman-Brie Larson-Jing Tian-Toby Kebbell-John Ortiz-Corey Hawkins-Jason Mitchell-Shea Whigham-Thomas Mann-Terry Notary-John C. Reilly-Marc Evan Jackson-Eugene Cordero-MIYAVI-Will Brittain-Richard Jenkins-Allyn Rachel-Robert Taylor-James M. Connor-Thomas Middleditch-Brady Novak-Peter Karinen-Brian Sacca-Joshua Funk-Daniel F. Malone-Glenn Kiwi Hall-Garreth Hadfield-Shannon Brimelow-Jon Quested-Korey Williams-Dat Phan-Cynthy Wu-Beth Kennedy-Bryan Chojnowski-Nick Robinson-Kevin Kent-Erin Moriarty,vietnam veteran-1970s-monster-expedition-island-giant spider-giant monster-creature-spin off-u.s. soldier-giant animal-kaiju-aftercreditsstinger-giant ape-monster island-water buffalo-uncharted-monsterverse-king kong,/r2517Vz9EhDhj88qwbDVj8DCRZN.jpg,/nVodCGKYLpqNC8YwQAbivKlWCgZ.jpg,263115-305470-283995-315837-124905-337339-254-297762-395992-324552-282035-311324-281338-126889-315635-274857-335988-166426-330459-135397-284052 +41513,The Smurfs,Animation-Family-Adventure-Comedy-Fantasy,en,When the evil wizard Gargamel chases the tiny blue Smurfs out of their village they tumble from their magical world and into ours -- in fact smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple the Smurfs must find a way to get back to their village before Gargamel tracks them down.,30.498,Columbia Pictures-Sony Pictures Animation-Kerner Entertainment Company,7/29/11,110000000,563749323,103,Released,Smurf Happens.,5.8,3554,Hank Azaria-Neil Patrick Harris-Jayma Mays-Jonathan Winters-Katy Perry-Anton Yelchin-Sof�_a Vergara-Tim Gunn-Frank Welker-Madison McKinley-Meg Phillips-Mahadeo Shivraj-Julie Chang-Mark Doherty-Minglie Chen-Sean Kenin-Victor Pagan-Adria Baratta-Paula Pizzi-Andrew Sellon-Julianna Rigoglioso-Daria Rae Figlo-Bradley Gosnell-Heidi Armbruster-Finnerty Steeves-John Speredakos-Skai Jackson-Alex Hall-Eric Redgate-Jojo Gonzalez-Scott Dillin-Tyree Michael Simpson-Sean Ringgold-Mario D'Leon-Liz Smith-Tom Colicchio-Michael Musto-Joan Rivers-Olivia Palermo-Julia Enescu-Lauren Waggoner-Mr. Krinkle-Hank-Alan Cumming-Fred Armisen-George Lopez-Kenan Thompson-Jeff Foxworthy-John Oliver-Wolfgang Puck-Gary Basaraba-Paul Reubens-B.J. Novak-Tom Kane-John Kassir-Joel McCrary-Mary McGloin,moon-magic-based on comic-blue-vortex-cat and mouse-duringcreditsstinger-live action and animation,/vRhnslP2gW0QDym7BsMeSuioUfK.jpg,/iYLimHUF0C0R61v1ofg79SUIja9.jpg,77931-6477-55301-23398-46195-5559-10527-80321-22794-137116-13053-9982-9836-172385-7484-15512-50359-8355-57800-10192-45772 +254,King Kong,Adventure-Drama-Action,en,In 1933 New York an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island where they encounter Kong a giant ape who is immediately smitten with the leading lady.,44.817,Universal Pictures-WingNut Films-Big Primate Pictures-MFPV Film,12/12/05,207000000,562363449,187,Released,The eighth wonder of the world.,6.869,7289,Naomi Watts-Jack Black-Adrien Brody-Thomas Kretschmann-Colin Hanks-Jamie Bell-Andy Serkis-Kyle Chandler-Evan Parke-Lobo Chan-John Sumner-Craig Hall-Peter McKenzie-William Johnson-David Pittu-Mark Hadlow-Geraldine Brophy-David Dennis-Pip Mushin-Jim Knobeloch-Ric Herbert-Lee Donahue-Tom Hobbs-Tiriel Mora-Jed Brophy-John Wraight-William Wallace-Frank Edwards-Crawford Thomson-Richard Kavanagh-Stephen Hall-Joe Folau-Chic Littlewood-Samuel Taylor-Lorraine Ashbourne-Laura Surrich-Katie Jackson-Michael Lawrence-Ray Woolf-Eddie Campbell-Greg Smith-Phil Grieve-Matt Wilson-Jim McLarty-Latham Gaines-Camille Keenan-Peter Jackson-Billy Jackson,new york city-show business-movie business-exotic island-human animal relationship-great depression-giant insect-remake-prehistoric creature-dinosaur-creature-kaiju-empire state building-giant ape-woman in peril-1930s-giant gorilla,/6a2HY6UmD7XiDD3NokgaBAXEsD2.jpg,/14xx5Tf58mD8FRJ1B3BspiLiRxz.jpg,9738-390430-1593-74-2059-1979-1487-435-1734-559-2048-8960-331-1927-950-61791-9502-6479-558-330 +49013,Cars 2,Animation-Family-Adventure-Comedy,en,Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.,95.233,Walt Disney Pictures-Pixar,6/11/11,200000000,559852396,106,Released,Ka-ciao!,6,6745,Larry the Cable Guy-Owen Wilson-Michael Caine-Emily Mortimer-John Turturro-Eddie Izzard-Thomas Kretschmann-Guido Quaroni-Joe Mantegna-Peter Jacobson-Bruce Campbell-Tony Shalhoub-Darrell Waltrip-Brent Musburger-Jason Isaacs-David Hobbs-Stanley Townsend-Lloyd Sherr-Paul Dooley-Michel Michelis-Sig Hansen-Franco Nero-Vanessa Redgrave-Bonnie Hunt-Cheech Marin-Jenifer Lewis-Michael Wallis-Katherine Helmond-John Ratzenberger-Jeff Garlin-Patrick Walker-Lewis Hamilton-Velibor Topic-John Mainieri-Brad Lewis-Richard Kind-Edie McClurg-Teresa Gallagher-Jeff Gordon-John Lasseter-Mark Winterbottom-Daisuke Tsutsumi-Fernando Alonso-Vitaly Petrov-Jan Nilsson-Memo Rojas-Jacques Villeneuve-Sebastian Vettel-Catherine Bolt-Jess Fulton-Sonoko Konishi-Gillian Bolt,car race-sequel-anthropomorphism-best friend-duringcreditsstinger,/okIz1HyxeVOMzYwwHUjH2pHi74I.jpg,/robYRZk9LxJTwD7GlZCginji5k.jpg,920-260514-10193-863-62211-2062-862-12-9806-585-9487-10527-80321-62177-8355-14160-49444-950-9502-13053-46195 +417859,Puss in Boots,Action-Animation-Adventure-Comedy-Family,en,Long before he even met Shrek the notorious fighter lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat The Myth The Legend... The Boots.,129.022,DreamWorks Animation,10/27/11,130000000,554987477,90,Released,Live for danger. Fight for justice. Pray for mercy.,6.521,3204,Antonio Banderas-Salma Hayek-Zach Galifianakis-Billy Bob Thornton-Amy Sedaris-Constance Marie-Mike Mitchell-Guillermo del Toro-Conrad Vernon-Chris Miller-Rich Dietl-Ryan Crego-Tom Wheeler-Tom McGrath-Bob Joles-Latifa Ouaou-Bob Persichetti-Jessica Schulte-Nina Barry-Sergio Bruna-Rebecca Davis-Roberto Donati-Jossara Jinaro-Lara Jill Miller-Joshua Rush-Julie Wittner,rebel-small town-fairy tale-spin off-wild west-talking cat-pets,/n4UkIqNYSTr4DPoHCVfLrL8mbre.jpg,/eSdpZZQubPSZ47qppFfUPbKsWlw.jpg,83201-810-899579-10192-315162-809-10527-80321-41513-65714-49444-5559-172385-15512-46195-11619-22794-632065-12222-13053-737853 +381890,The Mermaid,Comedy-Fantasy-Romance,zh,A playboy business tycoon Liu Xuan purchases the Green Gulf a wildlife reserve for a sea reclamation project and uses sonar technology to get rid of the sea life in the area. Unknown to him the Green Gulf is the home of merpeople and the sonar has caused many of them to succumb to illness or die. Xuan's business ventures in the area are threatened when he crosses paths with the mermaid Shan who is sent to avenge her people.,22.619,China Film Group-Edko Films Ltd.,2/8/16,60720000,553810228,93,Released,"Half Fish, Half Human, 100% Assassin",6.4,285,Lin Yun-Deng Chao-Kitty Zhang-Show Lo-Tsui Hark-Wen Zhang-Kris Wu-Lee Sheung-Ching-Lu Zhengyu-Chiu Chi-Ling-Mei'e Zhang-Gao Shuang-Linah Matsuoka-Barbie Liu-Xu Zhenzhen-Luo Hong Ming-Kong Lian-Shun-Tenky Tin Kai-Man-Wilson Chin-Lam Tze-chung-Zheng Jifeng-Fan Shu-Zhen-Ivan Kotik-Pierre Bourdaud-Yang Neng-Sun Jialing-Li Ye-Qing-Kabby Hui-Zeng Yilian-Zhou Shuai,mermaid,/8YVB8VxQqx3J1FtOVvoHybBKNPS.jpg,/gSz01IaN06BrCMFwCbUeBPh9X1q.jpg,9470-11770-140300-269149-396535-259316-49519-177572-128-10681-297761-82702-328387-8392-87827-321612-293660-264660-22-14160-271110 +95,Armageddon,Action-Thriller-Science Fiction-Adventure,en,When an asteroid threatens to collide with Earth NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter until the mission proves otherwise.,45.61,Jerry Bruckheimer Films-Touchstone Pictures-Valhalla Motion Pictures,7/1/98,140000000,553799566,151,Released,The Earth's Darkest Day Will Be Man's Finest Hour,6.8,7004,Bruce Willis-Billy Bob Thornton-Ben Affleck-Liv Tyler-Will Patton-Steve Buscemi-William Fichtner-Owen Wilson-Michael Clarke Duncan-Peter Stormare-Ken Hudson Campbell-Jessica Steen-Keith David-Chris Ellis-Jason Isaacs-Grayson McCouch-Clark Heathcliffe Brolly-Marshall R. Teague-Anthony Guidera-Greg Collins-J. Patrick McCormack-Ian Quinn-Christopher J. Worret-Adam Smith-John Mahon-Grace Zabriskie-K.C. Leomiti-Eddie Griffin-Deborah Nishimura-Albert Wong-Jim Ishida-Stanley Anderson-James Harper-Ellen Cleghorne-Udo Kier-John Aylward-Mark Curry-Seiko Matsuda-Harry Humphries-Dyllan Christopher-Judith Hoag-Sage Allen-Steven Ford-Christian Clemenson-Andy Ryan-Duke Valenti-Michael Taliferro-Billy Devlin-Kathleen Matthews-J.C. Hayward-Andrew Glassman-Shawnee Smith-Dwight Hicks-Odile Corso-Vic Manni-Jim Maniaci-Layla Roberts-Joe Allen-Bodhi Elfman-Alexander Johnson-Kathy Neff-Victor Vinson-Joseph Patrick Kelly-Peter White-Rudy Mettia-Frank Van Keeken-Frederick Weller-Jeff Austin-Googy Gress-Matt Malloy-H. Richard Greene-Brian Brophy-Peter Murnik-Brian Hayes Currie-Andy Milder-Michael Kaplan-Patrick Richwood-Brian Mulligan-John H. Johnson-Charles Stewart-Scarlet Forge-Michael Tuck-Patrick Lander-Anne Var��ze-Fritz Mashimo-Dina Morrone-Ruben Olague-Wolfgang Muser-Jim Fitzpatrick-Franky-Charlton Heston-Michael Bay-Lawrence Tierney-Mark Boone Junior,saving the world-paris france-moon-washington dc usa-loss of loved one-cataclysm-asteroid-self sacrifice-nasa-space marine-u.s. air force-race against time-natural disaster-daughter-space-end of the world-disaster-wedding-astronaut-duringcreditsstinger-disaster movie-heroic mission-space centre-daring rescues,/eTM3qtGhDU8cvjpoa6KEt5E2auU.jpg,/sODk4VuMTt8S56zYFOr1Kx8BFqu.jpg,602-128242-215676-1572-564-621875-185605-398397-607-1573-954-197-9679-1571-1701-18-1734-2048-605-608-604 +435,The Day After Tomorrow,Action-Adventure-Science Fiction-Thriller,en,After years of increases in the greenhouse effect havoc is wreaked globally in the form of catastrophic hurricanes tornadoes tidal waves floods and the beginning of a new Ice Age. Paleoclimatologist Jack Hall tries to warn the world while also shepherding to safety his son trapped in New York after the city is overwhelmed by the start of the new big freeze.,38.677,The Mark Gordon Company-Centropolis Entertainment-20th Century Fox-Lionsgate,5/26/04,125000000,552639571,124,Released,Where will you be?,6.516,7554,Dennis Quaid-Jake Gyllenhaal-Emmy Rossum-Dash Mihok-Jay O. Sanders-Sela Ward-Austin Nichols-Arjay Smith-Tamlyn Tomita-Sasha Roiz-Ian Holm-Richard McMillan-Nassim Sharara-Carl Alacchi-Kenneth Welsh-Michel 'Gish' Abou-Samah-Kenneth Moskow-Glenn Plummer-Adrian Lester-Nestor Serrano-John Maclaren-Richard Zeman-Perry King-Mimi Kuzyk-Vitali Makarov-Russell Yuen-Chris Britton-Christian Tessier-Rick Hoffman-Alan Fawcett-Sheila McCarthy-Amy Sloan-Karen Glave-Joe Cobden-Caroline Keenan-Matt Adler-Nobuya Shimamoto-Robin Wilcock,government-saving the world-cataclysm-library-climate-climate change-greenhouse effect-tornado-twister-hurricane-hail-temperature drop-ice age-polar zone-meteorology-gulfstream-barrier ice-ice melting-third world-exodus-evacuation-natural disaster-disaster-snow-los angeles california-antarctica-scientist-cell phone-environmental-doomsday-disaster movie-helicopter crash,/kNKy8eJemg6sCAMBgh4xrD0lleX.jpg,/fXJhA3pjLMDkHPgZ2GVhRDXA5M3.jpg,74-602-14161-9738-95-8960-2048-2059-1593-608-254-9543-1979-1734-331-1858-330-7131-8373-652-6637 +72105,Ted,Comedy-Fantasy,en,John Bennett a man whose childhood wish of bringing his teddy bear to life came true now must decide between keeping the relationship with the bear or his girlfriend Lori.,63.412,Universal Pictures-MRC-Fuzzy Door Productions-Bluegrass Films-Smart Entertainment,6/29/12,50000000,549368315,107,Released,Ted is coming.,6.392,11089,Mark Wahlberg-Mila Kunis-Seth MacFarlane-Joel McHale-Giovanni Ribisi-Patrick Warburton-Matt Walsh-Jessica Barth-Aedin Mincks-Bill Smitrovich-Patrick Stewart-Norah Jones-Sam J. Jones-Tom Skerritt-Bretton Manley-Ralph Garman-Alex Borstein-John Viener-Laura Vandervoort-Robert Wu-Ginger Gonzaga-Jessica Stroup-Melissa Ordway-Max Harris-Zane Cowans-T.J. Hourigan-Owen Clarke-Kristina Ellery-Katelyn Lorren-Chanty Sok-Sarah Fischer-Cassie Djerf-Joe Siriani-Pat Shea-Josh Duvendeck-Chris Cox-Henry Penzi-Tania Cabrera-Colton Shires-Viera Andrea Moya-Heajee Kim-Lydia Hannibal-Shawn Thornton-Eric Weinstein-Danny Smith-Mike Nikitas-Robin Hamilton-Mike Henry-Johnny Lee Davenport-Chris Everett-Tara Strong-Ted Danson-Ryan Reynolds-Olivia Jordan-Alexandra Creteau-Emmalyn Anderson-John Franchi-Ronald Boone-Paul Campbell,dream-friendship-love-buddy-teddy bear-toy comes to life-wishes come true,/osJNr64CNyGhCzdlg6oHt3a6vNA.jpg,/wS9TiAS1WckeTS2IrFg5dRN9WQD.jpg,214756-45243-18785-109439-64688-41154-425-953-23483-310-20352-6479-1593-607-14161-10193-1865-585-12-71552-10528 +955,Mission: Impossible II,Adventure-Action-Thriller,en,With computer genius Luther Stickell at his side and a beautiful thief on his mind agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission should Hunt choose to accept it plunges him into the center of an international crisis of terrifying magnitude.,36.281,Paramount-Cruise/Wagner Productions,5/24/00,125000000,546400000,123,Released,Expect the impossible again.,6.1,6252,Tom Cruise-Dougray Scott-Thandiwe Newton-Ving Rhames-Richard Roxburgh-John Polson-Brendan Gleeson-Rade ��erbed�_ija-William Mapother-Dominic Purcell-Mathew Wilkinson-Nicholas Bell-Cristina Brogeras-Kee Chan-Kim Fleming-Alan Lovell-Dan Luxton-Christian Manon-Karl McMillan-Lester Morris-Kelly Ons-Nicholas Papademetriou-Brett Partridge-Candice Partridge-Natalie Reis-Daniel Roberts-Adriana Rodr�_guez-Sandra Rodr�_guez-Nada Rogic-Antonio Vargas-Anthony Hopkins-Alison Araya-Rebecca Barratt-Douglas Bunn-Caine-Fred Chen-Mark Connolly-Ryder Davis-Alan Hennessy-Patrick Marber-William Morts-Tory Mussett-Paul Roget-Shant Sarkissian-Darren Dupree Washington,dying and death-island-cia-helicopter-computer-spain-undercover-skyscraper-secret mission-spy-secret identity-ex-lover-secret agent-duel-lethal virus-rescue team-agent-research laboratory,/1VMWLpk9VXyYcEZ8w3uUhp0OF1v.jpg,/24DZfupDlhXeTchmcOkoGRhP5Vg.jpg,956-954-56292-177677-353081-2501-10764-2502-1571-296-180-1131409-1572-1573-217-36557-605-608-2503-36669-298 +246655,X-Men: Apocalypse,Action-Adventure-Science Fiction-Fantasy,en,After the re-emergence of the world's first mutant world-destroyer Apocalypse the X-Men must unite to defeat his extinction level plan.,49.061,The Donners' Company-Bad Hat Harry Productions-Genre Films-Hutch Parker Entertainment-20th Century Fox,5/18/16,178000000,543934787,144,Released,Only the strong will survive.,6.514,11989,James McAvoy-Jennifer Lawrence-Michael Fassbender-Oscar Isaac-Nicholas Hoult-Rose Byrne-Tye Sheridan-Sophie Turner-Evan Peters-Olivia Munn-Kodi Smit-McPhee-Alexandra Shipp-Lucas Till-Josh Helman-Ben Hardy-Lana Condor-Warren Scherer-Rochelle Okoye-Monique Ganderton-Fraser Aitcheson-Abdulla Hamam-Hesham Hammoud-Antonio Daniel Hidalgo-Al Maini-Berdj Garabedian-Ally Sheedy-Anthony Konechny-Emma Elle Paterson-Manuel Sinor-Gustave Ouimet-Lukas Penar-Ryan Hollyman-Joanne Boland-Nabeel El Khafif-Manuel Tadros-Abanoub Andraous-Aladeen Tawfeek-Carolina Bartczak-T. J. McGibbon-Davide Chiazzese-Sebastian Naskrent-Boris Sichon-Martin Skorek-Kamil Orzechowski-Michael Terlecki-Ahmed Osman-Ziad Ghanem-Moataz Fathi-T�_mas Lemarquis-James Loye-Zehra Leverman-Herb Luft-Stan Lee-Joan Lee-Stephen Bogaert-John Bourgeois-Conrad Coates-Dan Lett-Adrian G. Griffiths-Shawn Campbell-Joe Cobden-Henry Hallowell-Danielle Dury-Naomi Frenette-Aj Risi-Rapha�l Dury-Ilan Rosenberg-Erika Heather Mergl-Tauntaun-Mary-Piper Gaudet-Josh Madryga-Scott Cook-Allen Keng-Tally Rodin-Francis Limoges-Tsu-Ching Yu-Karl Walcott-Desmond Campbell-Ian Geldart-John Ottman-Linda Joyce Nourse-Zeljko Ivanek-Christopher B. MacCabe-Chris Cavener-Ronald Tremblay-Joseph Bellerose-Philippe Hartmann-Sebastien R. Teller-Alexander Peganov-Simon Therrien-Patrice Martre-James Malloch-Vladimir Alexis-Jason Deline-Hugh Jackman,hero-mutant-superhero-based on comic-superhuman-super power-superhero team-world domination-aftercreditsstinger-1980s,/lRxsDK4exeEgKoXqI4zdr0Vl0yk.jpg,/2ex2beZ4ssMeOduLD0ILzXKCiep.jpg,468015-803843-758982-477295-600360-750741-127585-919459-107488-56497-49538-14655-44090-36658-36668-271110-36657-2080-209112-38842-3693 +150689,Cinderella,Romance-Fantasy-Family-Drama,en,When her father unexpectedly passes away young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope Ella's fortunes begin to change after meeting a dashing stranger in the woods.,75.014,Walt Disney Pictures-Genre Films-Beagle Pug Films-Allison Shearmur Productions,3/12/15,95000000,543514353,105,Released,Midnight is just the beginning.,6.8,6487,Lily James-Cate Blanchett-Richard Madden-Stellan Skarsg��rd-Holliday Grainger-Sophie McShera-Derek Jacobi-Helena Bonham Carter-Nonso Anozie-Ben Chaplin-Hayley Atwell-Richard McCabe-Rob Brydon-Jana P��rez-Alex MacQueen-Tom Edden-Gareth Mason-Paul Hunter-Eloise Webb-Joshua McGuire-Matthew Steer-Mimi Ndiweni-Laura Elsworthy-Ella Smith-Ann Davies-Gerard Horan-Katie West-Daniel Tuite-Anjana Vasan-Stuart Neal-Tomiwa Edun-Joseph Kloska-Andy Apollo-Craig Mather-Jonny Owen-Last-Nari Blair-Mangat-Michael Jenn-Josh O'Connor-Elina Alminas-Janet Dawe-Robert J. Fraser-Alex Gillison-Rajesh Kalhan-Joe Kennard-Jo��o Costa Menezes-Gino Picciano-Julian Seager-Sarah Sharman-Zizi Strallen-Tom Swacha,magic-prince-fairy tale-kingdom-royalty-orphan-lost shoe-evil stepmother-based on fairy tale-retelling-live action and animation-live action remake,/ryKwNlAfDXu0do6SX9h4G9Si1kG.jpg,/q7vmCCmyiHnuKGMzHZlr0fD44b9.jpg,102651-11224-321612-109445-224141-222935-262500-4523-62764-10020-8966-58595-12155-286565-216015-38757-157350-50620-150540-18239-131631 +190859,American Sniper,War-Action,en,U.S. Navy SEAL Chris Kyle takes his sole mission���protect his comrades���to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States Kyle serves four tours of duty in Iraq. However when he finally returns home he finds that he cannot leave the war behind.,90.64,Village Roadshow Pictures-Malpaso Productions-Warner Bros. Pictures-Mad Chance-RatPac Entertainment-22 & Indiana Pictures,12/25/14,58800000,542307423,133,Released,The most lethal sniper in U.S. history.,7.434,11667,Bradley Cooper-Sienna Miller-Kyle Gallner-Cole Konis-Ben Reed-Elise Robertson-Keir O'Donnell-Luke Sunshine-Kevin Lacz-Troy Vincent-Brandon Salgado Telis-Chance Kelly-Marnette Patterson-Billy Miller-Leonard Roberts-Reynaldo Gallegos-Jake McDorman-Cory Hardrict-Eric Ladin-Brando Eaton-James Ryen-Luke Grimes-Sammy Sheik-Evan Gamble-Tim Griffin-Brian Hallisay-Navid Negahban-Fehd Benchemsi-Eric Close-Zack Duhame-Mido Hamada-Kathe Mazur-Sam Jaeger-Assaf Cohen-Fahim Fazli-Hector Bucio-Jonathan Groff-Melissa Hayden-Pamela Denise Weaver-James D. Dever-Owain Yeoman-Greg Duke-Max Charles-Robert Clotworthy-Anthony Jennings-Vincent Selhorst-Jones-Emerson Brooks-E.R. Ruiz-Amber Alexander-Jason Hall-Jason Walsh-Jonathan Kowalsky-Shane Habberstad-Kevin Ryan-Benjamin Mathes-Luis Jose Lopez-Had Mhidi Senhaji-Ryan Sadaghiani-Ayman Samman-Salah Salea-Aidan McGraw-Ferguson Reid-Mark Thomason-Amie Farrell-Quay Terry-Tami Goveia-Leon Farmer-Paul Meixner-Victoria Reina Sigloch-Joel Lambert-Tony Nevada-Brett Edwards-Nick Salter-Ricky Ryba-Jet Jurgensmeyer-Madeleine McGraw-Elizabeth Schmidt-Bryan Anderson-Jacob Schick-Wade White-Clint Eastwood-Erik Aud��,based on novel or book-sniper-biography-iraq-u.s. navy seal-iraq war-u.s. soldier-u.s. marine-pack-guns,/vJgtfUmZE5i4L12sOryAPuBa04K.jpg,/smAnf46gZL1jXuP9nZvkM3Uynav.jpg,228150-205596-106646-168259-207703-13223-6479-281957-260346-240832-857-1271-137113-18785-194662-193756-266856-49047-119450-16869-228967 +953,Madagascar,Family-Animation-Adventure-Comedy,en,Alex the lion is the king of the urban jungle the main attraction at New York's Central Park Zoo. He and his best friends���Marty the zebra Melman the giraffe and Gloria the hippo���have spent their whole lives in blissful captivity before an admiring public and with regular meals provided for them. Not content to leave well enough alone Marty lets his curiosity get the better of him and makes his escape���with the help of some prodigious penguins���to explore the world.,76.281,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/25/05,75000000,542063846,86,Released,Someone��s got a zoo loose.,6.882,9680,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Sacha Baron Cohen-Cedric the Entertainer-Andy Richter-Tom McGrath-Christopher Knights-Chris Miller-Conrad Vernon-Eric Darnell-David Cowgill-Elisa Gabrielli-Stephen Apostolina-Devika Parikh-David P. Smith-Cody Cameron-Bob Saget-Jeffrey Katzenberg,africa-island-lion-zoo-hippopotamus-giraffe-penguin-madagascar-friendship-cartoon-zebra-slapstick comedy-escape-animal-lemur-escaped animal-talking animals,/uHkmbxb70IQhV4q94MiBe9dqVqv.jpg,/8NCftAWfkETwrbf7QwEaDH1xpus.jpg,10527-80321-425-950-9502-809-8355-810-808-57800-920-10192-585-12-38757-49444-46195-2062-20352-13053-8587 +62177,Brave,Animation-Adventure-Comedy-Family-Action-Fantasy,en,Brave is set in the mystical Scottish Highlands where M��rida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer M��rida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right M��rida seeks out an eccentric old Wise Woman and is granted an ill-fated wish. Also figuring into M��rida��s quest ��� and serving as comic relief ��� are the kingdom��s three lords: the enormous Lord MacGuffin the surly Lord Macintosh and the disagreeable Lord Dingwall.,66.581,Walt Disney Pictures-Pixar,6/21/12,185000000,538983207,93,Released,Change your fate.,7.006,12175,Kelly Macdonald-Billy Connolly-Emma Thompson-Julie Walters-Robbie Coltrane-Kevin McKidd-Craig Ferguson-Sally Kinghorn-Eilidh Fraser-Peigi Barker-Steven Cree-Steve Purcell-Callum O'Neill-Patrick Doyle-John Ratzenberger,scotland-rebel-bravery-kingdom-archer-wish-bear-scot-rebellious daughter-turns into animal-archery-ruins-aftercreditsstinger-peace offering-woman director-quest,/1XAuDtMWpL0sYSFK0R6EZate2Ux.jpg,/qx9ts2hBYJrkIQxhryitxnLlm2u.jpg,585-62211-38757-2062-12-14160-10193-82690-109445-920-9806-10681-862-20352-863-10191-49013-150540-9487-57800-808 +1891,The Empire Strikes Back,Adventure-Action-Science Fiction,en,The epic saga continues as Luke Skywalker in hopes of defeating the evil Galactic Empire learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile rebel leader Princess Leia cocky Han Solo Chewbacca and droids C-3PO and R2-D2 are thrown into various stages of capture betrayal and despair.,40.14,Lucasfilm Ltd.,5/20/80,18000000,538400000,124,Released,The Star Wars saga continues.,8.392,16144,Mark Hamill-Harrison Ford-Carrie Fisher-Billy Dee Williams-Anthony Daniels-David Prowse-Peter Mayhew-Kenny Baker-Frank Oz-Alec Guinness-Jeremy Bulloch-Jason Wingreen-John Hollis-Jack Purvis-Des Webb-Kathryn Mullen-Marjorie Eaton-Clive Revill-Kenneth Colley-Julian Glover-Michael Sheard-Michael Culver-John Dicks-Milton Johns-Mark Jones-Oliver Maguire-Robin Scobey-Bruce Boa-Christopher Malcolm-Denis Lawson-Richard Oldfield-John Morton-Ian Liston-John Ratzenberger-Jack McKenzie-Jerry Harte-Norman Chancer-Norwich Duff-Ray Hassett-Brigitte Kahn-Burnell Tucker-Bob Anderson-Lightning Bear-Richard Bonehill-John Cannon-Mark Capri-Martin Dew-Peter Diamond-Stuart Fell-Doug Robinson-Tony Smart-Alan Harris-James Earl Jones-Mac McDonald-Ralph McQuarrie-Ralph Morse-Terry Richards-Treat Williams-Shaun Curry-Alan Austen-Jim Dowdall-Tom Egeland-Alan Flyng-Trevor Butterfield-Mercedes Burleigh-Jane Busby-Maurice Bush-Tony Clarkin-Mike Edmonds-Walter Henry-Paul Jerricho-Joe Johnston-Steven Meek-Peter Roy-Stephanie English-Michael Leader-Egbert Sen-Elaine Baker,rebellion-android-spacecraft-asteroid-rebel-space battle-snowstorm-space colony-swamp-space opera-artic,/nNAeTmF4CtdSgMDplXTDPOpYzsX.jpg,/aJCtkxLLzkk1pECehVjKHA2lBgw.jpg,11-1892-1894-1893-1895-140607-121-120-85-122-330459-105-181808-89-155-603-280-87-348-272-218 +20352,Despicable Me,Family-Animation-Comedy,en,Villainous Gru lives up to his reputation as a despicable deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.,74.231,Illumination-Universal Pictures,7/8/10,69000000,533700000,95,Released,Superbad. Superdad.,7.231,14353,Steve Carell-Miranda Cosgrove-Dana Gaier-Elsie Fisher-Jason Segel-Russell Brand-Julie Andrews-Will Arnett-Kristen Wiig-Pierre Coffin-Chris Renaud-Jemaine Clement-Jack McBrayer-Danny McBride-Mindy Kaling-Rob Huebel-Ken Daurio-Ken Jeong-Charles Bright-Katie Leigh-Ranjani Brow-Scott Menville-Holly Dorff-Edie Mirman-Jackie Gonneau-Al Rodrigo-Wendy Hoffmann-Jakob Roston-James Kyson-John Hans Tester-Tony Lee-Debi Mae West,parent child relationship-orphanage-adoptive father-life's dream-rivalry-ballet-stealing-little girl-orphan-tomboy-intelligent-evil doctor-duringcreditsstinger-supervillain-despicable-minions,/9lOloREsAhBu0pEtU0BgeR1rHyo.jpg,/euCnMxNRlHNxA4f9BMnWbmxPOse.jpg,93456-82690-585-953-12-10191-425-57800-38757-14160-62177-10193-70160-9502-9806-8587-862-2062-10681-920-950 +281957,The Revenant,Western-Drama-Adventure,en,In the 1820s a frontiersman Hugh Glass sets out on a path of vengeance against those who left him for dead after a bear mauling.,36.746,Monarchy Enterprises S.a.r.l.-Regency Enterprises-Appian Way-CatchPlay-Anonymous Content-New Regency Pictures-Hong Kong Alpha Motion Pictures Co.-M Productions-RatPac Entertainment,12/25/15,135000000,532950503,157,Released,"(n. One who has returned, as if from the dead.)",7.522,16830,Leonardo DiCaprio-Tom Hardy-Domhnall Gleeson-Will Poulter-Forrest Goodluck-Duane Howard-Arthur RedCloud-Melaw Nakehk'o-Grace Dove-Lukas Haas-Paul Anderson-Kristoffer Joner-Joshua Burge-Fabrice Adde-Christopher Rosamond-Robert Moloney-Brendan Fletcher-Tyson Wood-McCaleb Burnett-Vincent Leclerc-Stephane Legault-Emmanuel Bilodeau-Cole Vandale-Tom Guiry-Scott Olynek-Amelia Crow Show-Peter Strand Rumpel-Timothy Lyle-Kory Grim-Anthony Starlight-Jamie Medicine Crane-Veronica Marlowe-Clarence Hoof-Dion Little Child-Blake Wildcat-Paul Young Pine-Cody Big Tobacco-Dallas Young Pine-Chesley Wilson-Michael Fraser-Scott Duncan-Mariah Old Shoes-Adrian Glynn McMorran-Isaiah Tootoosis-Alex Bisping-Chris Ippolito-Jeffrey Olynek-C. Adam Leigh-Kevin Corey-Daniel Rampanen-Javier Botet-Haysam Kadri-Jordan Crawford-David Rampanen-Brad Carter-Rootie J. Boyd-Ray Chase-Glenn Ennis-Charles Fathy-Mark Krysko-Stephen Richard Lofstrom-T. Michael Morris-Bruno Stephane-Jay Tavare-Michael Villar-Jay Cardinal Villeneuve-Del Zamora-Duff Zayonce-Tighe Gill,rape-based on novel or book-parent child relationship-mountain-winter-grizzly bear-wilderness-forest-fur trapping-frontier-liar-based on true story-remake-revenge-murder-gore-native american-survival-bear-snow-scalping-nature-wild west-bear attack-indian attack-dead horse-starvation-19th century-wolves-child killing,/ji3ecJphATlVgWNY0B0RVXZizdf.jpg,/3uM41OT0RfBkE6Gb6U89LEskJBr.jpg,273248-286217-106646-76341-11324-68718-16869-194662-318846-293660-640-1422-27205-140607-49047-597-314365-64682-157336-228150-24 +72190,World War Z,Action-Drama-Horror-Science Fiction-Thriller,en,Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.,86.827,Paramount-Plan B Entertainment-GK Films-Hemisphere Media Capital-Apparatus Productions-Latina Pictures-2DUX�_-Skydance Media,6/20/13,200000000,531865000,116,Released,Remember Philly!,6.8,13813,Brad Pitt-Mireille Enos-Daniella Kertesz-James Badge Dale-Ludi Boeken-Matthew Fox-Fana Mokoena-David Morse-Elyes Gabel-Sterling Jerins-Peter Capaldi-Pierfrancesco Favino-Ruth Negga-Moritz Bleibtreu-Abigail Hargrove-Fabrizio Guido-David Andrews-John Gordon Sinclair-Gr��gory Fitoussi-Jane Perry-Lucy Russell-Mark Holden-Tim Berrington-Konstantin Khabenskiy-Michiel Huisman-Ann Ogbomo-Jonathan Howard-Mike Noble-Ernesto Cantu-Vicky Araico-Graham Hornsby-Nick Bartlett-Kevin Kiely Jnr-Ruari Cannon-Ryen Perkins-Gangnes-Khalid Laith-Noa Bodner-Troy Glasgow-Julia Levy-Boeken-Lee Nicholas Harris-Assaf Ben-Shimon-Gil Cohen-Alloro-Yaniv Rokah-Shaul Ezer-Linoy Aynesaz-Efrat Avni-Maisam Masri-Renu Setna-Ori Pfeffer-Imran Mraish-Yousef Hayyan Jubeh-Josh Wingate-Richard Thomson-Ewan Ross-Song Xuan Ke-Christian Wong-Denis Ischenko-Nikola ېuriۍko-Elen Rhys-Paula Videniece-Doron Davidson-Lee Colley-Michael Jenn-Sarah Amankwah-Anna Biczik-G��bor Czap-Katalin Dombi-Eniko Fulop-Istvan Karikas-Andrea Meszaros-Gergely M��sz��ros-Peter Moln��r-Lambert T�_th-Roland Tzafet��s-Jeno Radi-Adam Zambryzcki-Maddox Jolie-Pitt-Alma Rix-Darren Kendrick-Ryan Hartwig-Taylor Murphy,philadelphia pennsylvania-new jersey-based on novel or book-jerusalem israel-dystopia-apocalypse-zombie-epidemic-nuclear weapons-multiple perspectives-zombie apocalypse-virus,/1SWBSYJsnyhdNRfLI1T6RsCxAQ4.jpg,/kg2FOT2Oe5PSCgs3L4vLel6B7ck.jpg,68726-6479-49521-68724-49047-75612-101299-54138-76170-68721-127585-87827-75656-82700-61791-70981-10528-19908-1930-18785-57158 +345940,The Meg,Action-Science Fiction-Horror,en,A deep sea submersible pilot revisits his past fears in the Mariana Trench and accidentally unleashes the seventy foot ancestor of the Great White Shark believed to be extinct.,58.277,Warner Bros. Pictures-Di Bonaventura Pictures-Gravity Pictures-Maeday Productions-Apelles Entertainment-Flagship Entertainment Group,8/9/18,150000000,530517320,113,Released,Chomp On This,6.211,6282,Jason Statham-Li Bingbing-Rainn Wilson-Cliff Curtis-Ruby Rose-Jessica McNamee-Masi Oka-Winston Chao-Shuya Sophia Cai-Page Kennedy-Robert Taylor-��lafur Darri ��lafsson-Raymond Vinton-Mai Hongmei-Wei Yi-Vithaya Pansringarm-Rob Kipa-Williams-Tawanda Manyimo-Mark Trotter-James Gaylyn-Andrew Grainger-Steven A. Davis-Glen Levy-Edwin Wright-Sui Fong Ivy Tsui-Jeremy Tan-Douglas Lee-Tim Wong-Yoson An-Yao Yao-Leand Macadaan,ocean-based on novel or book-beach-deep sea-creature-shark-oceanic expedition-kaiju-submersible-under water-extinct-underwater facility-mariana trench,/xqECHNvzbDL5I3iiOVUkVPJMSbc.jpg,/ibKeXahq4JD63z6uWQphqoJLvNw.jpg,427641-447200-351286-346910-353081-335983-439079-345887-363088-383498-442249-415193-726166-297802-260513-523931-347375-559700-545582-333339-353486 +404368,Ralph Breaks the Internet,Family-Animation-Comedy-Adventure,en,Video game bad guy Ralph and fellow misfit Vanellope von Schweetz must risk it all by traveling to the World Wide Web in search of a replacement part to save Vanellope's video game Sugar Rush. In way over their heads Ralph and Vanellope rely on the citizens of the internet ��� the netizens ��� to help navigate their way including an entrepreneur named Yesss who is the head algorithm and the heart and soul of trend-making site BuzzzTube.,63.768,Walt Disney Pictures-Walt Disney Animation Studios,11/20/18,175000000,529221154,112,Released,Who Broke the Internet?,7.214,6690,John C. Reilly-Sarah Silverman-Gal Gadot-Taraji P. Henson-Jack McBrayer-Jane Lynch-Alan Tudyk-Alfred Molina-Ed O'Neill-Melissa Villase��or-Bill Hader-John DiMaggio-Irene Bedard-Kristen Bell-Auli'i Cravalho-Jodi Benson-Jennifer Hale-Kate Higgins-Linda Larkin-Kelly Macdonald-Idina Menzel-Mandy Moore-Paige O'Hara-Pamela Ribon-Anika Noni Rose-Ming-Na Wen-Roger Craig Smith-Maurice LaMarche-Brad Garrett-Anthony Daniels-Tim Allen-Vin Diesel-Sean Giambrone-Jaboukie Young-White-Flula Borg-Ali Wong-Timothy Simons-Glozell Green-Hamish Blake-Rich Moore-Phil Johnston-Colleen Ballinger-Dani Fernandez-Tiffany Herrera-Horatio Sanz-Rebecca Wisocky-Sam Richardson-Katie Lowes-Alex Moffat-June Squibb-Della Saba-Michaela Zee-Jamie Elman-Ana Ortiz-Dianna Agron-Jason Mantzoukas-Raymond S. Persi-Fuschia!-Corey Burton-Jason Hightower-Brian Curless-Ann Barry Colgin-Viveca Paulin-Michael Giacchino-Kevin Deters-Jeremy Milton-Jesse Averna-Nicole Scherzinger-Brittany Kikuchi-Olivier B��nard-Ben McKee-Daniel Platzman-Dan Reynolds-Wayne Sermon-Mark Rhino Smith-Kent Boyd-Rachel Crow-Jenica Bergere-John Lavelle-Josie Trinidad-Ruth Strother-Elise Aliberti-Maddix Robinson-Bradford Simonsen-Fabienne Rawley,video game-cartoon-sequel-internet-lethal virus-aftercreditsstinger-duringcreditsstinger-online gaming,/dbvAUZWOepRxwUnSOvZAGsrPjta.jpg,/qDQEQbgP3v7B9IYLAUcYexNrVYP.jpg,82690-260513-324857-297802-166428-301528-338952-360920-280217-424783-330457-363088-299537-400650-400155-984430-781837-109445-269149-447404-335983 +124905,Godzilla,Action-Drama-Science Fiction,en,Ford Brody a Navy bomb expert has just reunited with his family in San Francisco when he is forced to go to Japan to help his estranged father Joe. Soon both men are swept up in an escalating crisis when an ancient alpha predator arises from the sea to combat malevolent adversaries that threaten the survival of humanity. The creatures leave colossal destruction in their wake as they make their way toward their final battleground: San Francisco.,47.888,Legendary Pictures,5/14/14,160000000,529076069,123,Released,"The world ends, Godzilla begins.",6.269,8046,Aaron Taylor-Johnson-Elizabeth Olsen-Juliette Binoche-Bryan Cranston-Ken Watanabe-Sally Hawkins-Al Sapienza-David Strathairn-James Pizzinato-CJ Adams-Richard T. Jones-Victor Rasuk-Patrick Sabongui-Carson Bolde-Jared Keeso-Luc Roderique-Eric Keenleyside-Primo Allon-George Allen Gumapac Jr.-Ken Yamamura-Garry Chalk-Hiro Kanagawa-Kevan Ohtsji-Kasey Ryne Mazak-Terry Chen-Mas Morimoto-James D. Dever-Akira Takarada-Yuko Kiyama-Takeshi Kurokawa-James Yoshizawa-Jason Furukawa-Brian Markinson-Ty Olsson-Gardiner Millar-Kurt Max Runte-Peter Shinkoda-Christian Tessier-Bill Marchant-Derrick Yamanaka-Peter Kawasaki-Jason Riki Kosuge-Hiroyoshi Kajiyama-Tetsuro Shigematsu-Dean Redman-Taylor Nichols-Anthony Konechny-Jake Cunanan-Yuki Morita-Jill Teed-Eli Goree-Warren Takeuchi-Chuck Church-Dalias Blake-Lane Edwards-Todd Scott-Zoe Krivatsy-Serge M. Krivatsy-Lise Krivatsy-Josh Cowdery-Steven M. Murdzia-Keo Woolford-Lynne Halevi-Martin Kogan-Sandy Ritz-Kyle Riefsnyder-Eric Breker-Jesse Reid-Melody B. Choi-Catherine Lough Haggquist-Amy Fox-Rich Paul-Aaron Pearl-Dee Jay Jackson-Erika Forest-Michael Denis-Toby Levins-Taya Clyne-Grayson Maxwell Gurnsey-Justin Blayne Lowery-Marci T. House-Chris Shields-Zach Martin-Darren Dolynski-P. Lynn Johnson-Antonio Anagaran-Kevin O'Grady-Leif Havdale-Zachary Choe-T.J. Storm-Michael Rowe-Michael Leone-Bill Blair,japan-san francisco california-monster-hawaii-tsunami-remake-giant monster-golden gate bridge-dinosaur-kaiju-prehistoric creature-honolulu hawaii-disaster movie-global threat-animal horror,/iBZhbCVhLpyxAfW1B8ePUxjScrx.jpg,/zCjZfevPFBbOh2SAx2syIBHSqEI.jpg,373571-137113-91314-127585-119450-102382-929-97020-100402-68724-53182-68726-98566-137106-254-49521-293167-220638-72190-76170-184315 +400155,Hotel Transylvania 3: Summer Vacation,Animation-Comedy-Family-Fantasy,en,Dracula Mavis Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship where Dracula falls in love with the ship��s captain Ericka who��s secretly a descendant of Abraham Van Helsing the notorious monster slayer.,53.453,Columbia Pictures-Sony Pictures Animation,6/28/18,80000000,528600000,97,Released,Family vacation. It will suck the life out of you.,6.9,3866,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-David Spade-Steve Buscemi-Keegan-Michael Key-Molly Shannon-Fran Drescher-Kathryn Hahn-Jim Gaffigan-Mel Brooks-Asher Blinkoff-Sadie Sandler-Genndy Tartakovsky-Chrissy Teigen-Joe Whyte-Aaron LaPlante-Michelle Murdocca-Joyce Arrastia-Sunny Sandler-Tara Strong-Libby Thomas Dickey-Patrick Harpin-Craig Kellman-Jaime Camil-Joe Jonas-Chris Parnell-Fred Tatasciore-Kari Wahlgren-Brian T. Delaney-Robin Atkin Downes-Jessica Gee-George-Grant George-Todd Haberkorn-Rif Hutton-Lex Lang-Mona Marshall-Andrew Morgado-Michelle Ruff-Joseph Sanfelippo-Keith Silverstein-Kirk Thornton-Amanda Troop-Audrey Wasilewski-Debra Wilson-Michael-Leon Wooley,monster-vampire-vacation-cruise ship-summer vacation-dracula,/gjAFM4xhA5vyLxxKMz38ujlUfDL.jpg,/m03jul0YdVEOFXEQVUv6pOVQYGL.jpg,159824-76492-260513-459159-404368-446894-363088-585083-324852-278154-364689-360920-351286-378236-260514-109451-447200-10527-370567-335797-458423 +295693,The Boss Baby,Animation-Comedy-Family,en,A story about how a new baby's arrival impacts a family told from the point of view of a delightfully unreliable narrator a wildly imaginative 7 year old named Tim.,28.085,DreamWorks Animation-20th Century Fox,3/23/17,125000000,527965936,97,Released,Born leader,6.4,6839,Alec Baldwin-Steve Buscemi-Miles Bakshi-Jimmy Kimmel-Lisa Kudrow-Tobey Maguire-Conrad Vernon-James McGrath-David Soren-Nina Zoe Bakshi-Tom McGrath-Walt Dohrn-James Ryan-Eric Bell Jr.-ViviAnn Yee-Edie Mirman-James Izzo-Chris Miller-Chloe Albrecht-Andrea Montana Knoll-Joseph Izzo-Glenn Harmon-Brian Hopkins-Jules Winter,baby-family relationships-sibling rivalry-unreliable narrator-baby brother,/unPB1iyEeTBcKiLg8W083rlViFH.jpg,/frlfy7RFqx5J4jrcMo25PqyasL3.jpg,321612-335797-324852-277834-315837-337339-339403-293167-354912-283995-459151-313369-137116-263115-328111-395992-419430-274857-324849-297762-381288 +35,The Simpsons Movie,Animation-Comedy-Family,en,After Homer accidentally pollutes the town's water supply Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.,70.516,Gracie Films-Film Roman-20th Century Fox Animation-The Curiosity Company-20th Century Fox,7/25/07,75000000,527068851,87,Released,See our family. And feel better about yours.,6.995,7151,Dan Castellaneta-Julie Kavner-Nancy Cartwright-Yeardley Smith-Hank Azaria-Harry Shearer-Pamela Hayden-Tress MacNeille-Albert Brooks-Marcia Wallace-Joe Mantegna-Tom Hanks-Billie Joe Armstrong-Mike Dirnt-Tre Cool-Russi Taylor-Karl Wiedergott-Maggie Roswell-Philip Rosenthal,parent child relationship-garbage-pollution-environmental protection agency-quarantine-dysfunctional family-dysfunctional marriage-ecology-first love-duringcreditsstinger,/gzb6P78zeFTnv9eoFYnaJ2YrZ5q.jpg,/yajM2akz8QKOx0RdvN6OYaxe3GN.jpg,810-809-953-425-8355-9502-950-1593-10527-10192-808-10555-863-2062-13053-10193-6477-22794-37135-7518-11836 +374720,Dunkirk,War-Action-Drama,en,The story of the miraculous evacuation of Allied soldiers from Belgium Britain Canada and France who were cut off and surrounded by the German army from the beaches and harbour of Dunkirk between May 26th and June 4th 1940 during World War II.,33.516,Warner Bros. Pictures-Syncopy,7/19/17,0,527000000,107,Released,Survival is Victory,7.459,14999,Fionn Whitehead-Tom Hardy-Mark Rylance-Kenneth Branagh-Cillian Murphy-Barry Keoghan-Harry Styles-Aneurin Barnard-Damien Bonnard-Lee Armstrong-James Bloor-Tom Glynn-Carney-Jack Lowden-Luke Thompson-Michel Biel-Constantin Balsan-Billy Howle-Mikey Collins-Callum Blake-Dean Ridge-Bobby Lockwood-Will Attenborough-Tom Nolan-James D'Arcy-Matthew Marsh-Adam Long-Miranda Nolan-Bradley Hall-Jack Cutmore-Scott-Brett Lorenzini-Michael Fox-Brian Vernel-Elliott Tittensor-Kevin Guthrie-Harry Richardson-Jochum ten Haaf-Johnny Gibbon-Richard Sanderson-Kim Hartman-Calam Lynch-Charley Palmer Rothwell-Tom Gill-John Nolan-Bill Milner-Jack Riddiford-Harry Collett-Eric Richard-Michael Caine-Johnny Otto,france-beach-europe-world war ii-evacuation-pilot-british army-allies-army-royal navy-based on true story-survival-rescue mission-military officer-historical fiction-soldier-private-military-dunkirk-1940s-royal air force-raf,/ebSnODDg9lbsMIaWg2uAbjn7TO5.jpg,/eXYbyOx6GFvmpOJl6AS8QxXeIYE.jpg,339403-335984-281957-157336-419430-181808-281338-359940-1124-27205-399055-297762-16869-106646-399404-283995-315635-263115-343668-228150-77 +166428,How to Train Your Dragon: The Hidden World,Animation-Family-Adventure,en,As Hiccup fulfills his dream of creating a peaceful dragon utopia Toothless�� discovery of an untamed elusive mate draws the Night Fury away. When danger mounts at home and Hiccup��s reign as village chief is tested both dragon and rider must make impossible decisions to save their kind.,91.531,DreamWorks Animation-Mad Hatter Entertainment,1/3/19,129000000,524580592,104,Released,The friendship of a lifetime,7.8,5518,Jay Baruchel-America Ferrera-F. Murray Abraham-Cate Blanchett-Gerard Butler-Craig Ferguson-Jonah Hill-Christopher Mintz-Plasse-Kristen Wiig-Kit Harington-Justin Rupple-Robin Atkin Downes-Kieron Elliott-Julia Emelin-Gideon Emery-Ashley Jensen-AJ Kane-��lafur Darri ��lafsson-James Sie-David Tennant,flying-based on novel or book-overpopulation-viking-sequel-dragon-love interest-based on children's book,/xvx4Yhf0DVH8G4LzNISpMfFBDy2.jpg,/lFwykSz3Ykj1Q3JXJURnGUTNf1o.jpg,82702-10191-638507-264170-36891-404368-897585-299537-399579-324857-260513-146058-572988-297802-424783-287947-419468-447404-299534-450465-5589 +10528,Sherlock Holmes,Action-Adventure-Crime-Mystery,en,Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.,31.912,Warner Bros. Pictures-Village Roadshow Pictures-Silver Pictures-Wigram Productions-Internationale Filmproduktion Blackbird Dritte,12/23/09,90000000,524028679,129,Released,Nothing escapes him.,7.199,12916,Robert Downey Jr.-Jude Law-Rachel McAdams-Mark Strong-Eddie Marsan-Robert Maillet-Geraldine James-Kelly Reilly-William Houston-Hans Matheson-James Fox-William Hope-Clive Russell-Oran Gurel-David Garrick-Ky Discala-Andrew Brooke-Tom Watt-John Kearney-Sebastian Abineri-Jonathan Gabriel Robbins-James A. Stephens-Terence Taplin-Bronagh Gallagher-Ed Tolputt-Joe Egan-Jefferson Hall-Miles Jupp-Marn Davies-Andrew Greenough-Ned Dennehy-Martin Ewens-Amanda Grace Johnson-James Greene-David Emmings-Ben Cartwright-Chris Sunley-Michael Jenn-Timothy O'Hara-Guy Williams-Peter Miles-Rocco Ritchie,london england-detective-scotland yard-based on novel or book-coffin-black magic-arrest-partner-murder-steampunk-serial killer-pentagram-whodunit-buddy-clue-19th century-victorian era-sherlock holmes,/momkKuWburNTqKBF6ez7rvhYVhE.jpg,/veXdzn7LL0bFIDGmE7tTkvRg0qV.jpg,58574-1865-56292-10138-18785-58-49538-22-41154-13475-1726-2080-285-1271-607-10764-27578-8681-272-23483-1858 +10681,WALL��E,Animation-Family-Science Fiction,en,WALL��E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean upthe mess but has developed some rather interesting human-like qualities. When a ship arrives witha sleek new type ofrobot WALL��E thinks he's finally found a friend and stows away on the ship when it leaves.,60.241,Pixar-Walt Disney Pictures,6/22/08,180000000,521311860,98,Released,"After 700 years of doing what he was built for, he'll discover what he was meant for.",8.075,17199,Ben Burtt-Elissa Knight-Jeff Garlin-Fred Willard-John Ratzenberger-Kathy Najimy-Sigourney Weaver-Teddy Newton-Bob Bergen-John Cygan-Pete Docter-Paul Eiding-Donald Fullilove-Teresa Ganzel-Mickie McGowan-Laraine Newman-Lori Alan-Jeff Pidgeon-Jan Rabson-Lori Richardson-Andrew Stanton-Jim Ward-Colette Whitaker-Kim Kopf-Angus MacLane-Niki McElroy-Garrett Palmer-Sherry Lynn-Jess Harnell,garbage-space travel-dystopia-loneliness-distant future-robot-aftercreditsstinger-duringcreditsstinger,/2Wjn5vxvJmomJQkLuUwyX2hBaif.jpg,/fK5ssgvtI43z19FoWigdlqgpLRE.jpg,14160-585-10193-12-2062-9806-862-863-920-8587-10191-62177-62211-808-20352-9502-49013-150540-953-38757-425 +140300,Kung Fu Panda 3,Action-Adventure-Animation-Comedy-Family,en,While Po and his father are visiting a secret panda village an evil spirit threatens all of China forcing Po to form a ragtag army to fight back.,64.681,DreamWorks Animation-China Film Group Corporation-Oriental DreamWorks-Zhong Ming You Ying Film,1/23/16,145000000,521170825,95,Released,Grab destiny by the dumplings.,6.885,5510,Jack Black-Bryan Cranston-Dustin Hoffman-Angelina Jolie-J.K. Simmons-Jackie Chan-Seth Rogen-Lucy Liu-David Cross-Kate Hudson-James Hong-Randall Duk Kim-Steele Gagnon-Liam Knight-Wayne Knight-Barbara Dirickson-Al Roker-Willie Geist-Fred Tatasciore-Pax Jolie-Pitt-Kelly Cooney Cilella-Stephen Kearin-Mick Wingert-Ming Tsai-April Hong-Knox Jolie-Pitt-Zahara Jolie-Pitt-Shiloh Jolie-Pitt-Jean-Claude Van Damme-Radzi Chinyanganya-Lindsey Russell-Joseph Izzo-Lena Golia-Gus Culligan-Mike Mitchell,martial arts-kung fu-china-fighter-village-sequel-panda-anthropomorphism-dragon-wuxia-woman director,/oajNi4Su39WAByHI6EONu8G8HYn.jpg,/uT5G4fA7jKxlJNfwYPMm353f5AI.jpg,49444-9502-278154-10527-8355-80321-950-953-57800-15854-810-159824-38055-153518-270946-82702-50508-10192-425-49013 +280,Terminator 2: Judgment Day,Action-Thriller-Science Fiction,en,Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son John the future leader of the resistance is the target for a newer more deadly terminator. Once again the resistance has managed to send a protector back to attempt to save John and his mother Sarah.,72.923,TriStar Pictures-StudioCanal-Lightstorm Entertainment-Carolco Pictures-Valhalla Motion Pictures,7/3/91,102000000,520000000,137,Released,It's nothing personal.,8.095,11197,Arnold Schwarzenegger-Linda Hamilton-Edward Furlong-Robert Patrick-Joe Morton-Earl Boen-S. Epatha Merkerson-Castulo Guerra-Danny Cooksey-Jenette Goldstein-Xander Berkeley-Leslie Hamilton Gearren-Ken Gibbel-Robert Winley-Pete Schrum-Shane Wilder-Michael Edwards-Jared Lounsbery-Casey Chavez-Ennalls Berl-Don Lake-Richard Vidan-Tom McDonald-Jim Palmer-Gus Williams-Gwenda Deacon-Don Stanton-Dan Stanton-Colin Patrick Lynch-Noel Evangelisti-Nikki Cox-Lisa Brinegar-DeVaughn Nixon-Tony Simotes-Diane Rodriguez-Dalton Abbott-Ron Young-Charles Robert Brown-Abdul Salaam El Razzac-Mike Muscat-Dean Norris-Charles A. Tamburro-J. Rob Jordan-Terrence Evans-Denney Pierce-Mark Christopher Lawrence-Pat Kouri-Van Ling-Martin DeLuca-Joel Kramer-Richard Ruskin-Scott Shaw-Sven-Ole Thorsen-Randy Walker-William Wisher-Dalton Hamilton-Nancy Fish-Mic Rodgers-Gus Williams-Michael Albanese-Ed Arneson-Debra Casey-Anne Merrem-Gavin Kelly,cyborg-shotgun-villain-time travel-post-apocalyptic future-dystopia-moral ambiguity-mental institution-juvenile delinquent-fictional war-urban setting-troubled teen-morphing-nuclear weapons-shape shifter-savior-catch phrase-action hero-good versus evil-terminator,/5M0j0B18abtBI5gi2RhfjjurTqb.jpg,/xKb6mtdfI5Qsggc44Hr9CCUDvaj.jpg,218-296-534-562-679-348-85-603-89-1891-105-857-329-11-87101-106-18-98-607-165-121 +102899,Ant-Man,Science Fiction-Action-Adventure,en,Armed with the astonishing ability to shrink in scale but increase in strength master thief Scott Lang must embrace his inner-hero and help his mentor Doctor Hank Pym protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles Pym and Lang must plan and pull off a heist that will save the world.,120.506,Marvel Studios,7/14/15,130000000,519311965,117,Released,Heroes don't get any bigger.,7.083,18261,Paul Rudd-Michael Douglas-Evangeline Lilly-Bobby Cannavale-Corey Stoll-Anthony Mackie-Judy Greer-Abby Ryder Fortson-Michael Pe��a-David Dastmalchian-T.I.-Wood Harris-Hayley Atwell-John Slattery-Martin Donovan-Garrett Morris-Gregg Turkington-Rod Hallett-Joe Chrest-Joe Bucaro III-Jean Louisa Kelly-Dax Griffin-Hayley Lovitt-Anna Akana-Stan Lee-Tom Kenny-Norma Alvarez-Darcie Isabella Cottrell-Teddy Williams-Carol Anne Watts-Chuck David Willis-Diana Chiritescu-Neko Parham-Onira Tares-Zamani Wilder-Kylen Davis-Jim R. Coleman-Desmond Phillips-Aaron Saxton-Michael A. Cook-Ricki Lander-Rus Blackwell-Johnny Pemberton-Nicholas Barrera-Carlos Aviles-Lyndsi LaRose-Robert Crayton-Ajani Perkins-Jessejames Locorriere-Kevin Lacz-Michael Trisler-Daniel Stevens-Clay Donahue Fontenot-Michael Jamorski-Casey Pieretti-Antal Kalik-Adam Hart-Reuben Langdon-Todd Schneider-Zack Duhame-Alex Chansky-Kevin Buttimer-Danny Vasquez-Rick Avery-Erik Betts-Raul Colon-Patrick Constantine Bertagnolli Jr.-Chris Evans-Hayley Gagner-Tim Halpin-Christina July Kim-Jordi Moll��-Vanessa Ross-Sebastian Stan-Sam Medina-Sophia Slaysman,ant-shrinking-superhero-based on comic-heist-miniaturization-miniature people-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/cj2gWN7TdH1iUG6pUQyqv9N2AXc.jpg,/a7sAqMKv5tkAdMzFfIhPqIBmQ9g.jpg,99861-271110-100402-76338-363088-118340-284052-10195-283995-1771-68721-10138-24428-315635-1726-284053-284054-1724-293660-299536-127585 +693,Meet the Fockers,Comedy-Romance,en,Hard-to-crack ex-CIA man Jack Byrnes and his wife Dina head for the warmer climes of Florida to meet the parents of their son-in-law-to-be Greg Focker. Unlike their happily matched offspring the future in-laws find themselves in a situation of opposites that definitely do not attract.,26.255,Universal Pictures-Everyman Pictures-Tribeca Productions-DreamWorks Pictures,12/22/04,80000000,516642939,115,Released,Misery loves family.,6.2,4461,Ben Stiller-Robert De Niro-Dustin Hoffman-Barbra Streisand-Blythe Danner-Teri Polo-Owen Wilson-Spencer Pickren-Bradley Pickren-Alanna Ubach-Ray Santiago-Tim Blake Nelson-Shelley Berman-Kali Rocha-Dorie Barton-Jack Plotnick-Wayne Thomas Yorke-B.J. Hansen-J.P. Manoux-Myra Turley-Vahe Bejan-Kathleen Gati-Angelo Tiffe-Kyle T. McNamee-Cedric Yarbrough-Max Hoffman-Benjamin Trueblood-Roberto Garcia-Bruno Coon-Rock Deadrick-David Sutton-Bernadette P��rez-Linda O'Neil-Tiffany Turner-David Zimmerman,florida-cia-nurse-parent child relationship-anti-authoritarian upbringing-parents-in-law-orderly-just married-sex therapy-bad father-in-law-family-illegitimate son-meddling father,/59fXm6N2x7QSbvt6BaBxTNBXGL8.jpg,/tS6PvNcFxoqcjkb0iCnX7oHeD1u.jpg,1597-39451-9522-9472-1593-544-1824-5966-9339-2698-9506-8488-9398-4964-310-18360-10555-7288-8273-3981-1624 +569094,Spider-Man: Across the Spider-Verse,Action-Adventure-Animation-Science Fiction,en,After reuniting with Gwen Stacy Brooklyn��s full-time friendly neighborhood Spider-Man is catapulted across the Multiverse where he encounters the Spider Society a team of Spider-People charged with protecting the Multiverse��s very existence. But when the heroes clash on how to handle a new threat Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.,2550.738,Columbia Pictures-Sony Pictures Animation-Lord Miller-Pascal Pictures-Arad Productions,5/31/23,100000000,512609552,140,Released,It's how you wear the mask that matters,8.64,1684,Shameik Moore-Hailee Steinfeld-Brian Tyree Henry-Luna Lauren Velez-Jake Johnson-Oscar Isaac-Jason Schwartzman-Issa Rae-Daniel Kaluuya-Karan Soni-Shea Whigham-Greta Lee-Mahershala Ali-Amandla Stenberg-Jharrel Jerome-Andy Samberg-Jack Quaid-Rachel Dratch-Ziggy Marley-Jorma Taccone-J.K. Simmons-Donald Glover-Elizabeth Perkins-Kathryn Hahn-Ayo Edebiri-Nicole Delaney-Antonina Lentini-Atsuko Okatsuka-Peter Sohn-Melissa Sturm-Lorraine Velez-Nic Novicki-Taran Killam-Metro Boomin-Josh Keaton-Sofia Barclay-Danielle Perez-Yuri Lowenthal-Rita Rani Ahuja-Ismail Bashey-Oscar Camacho-Freddy Ferrari-Kerry Gutierrez-Kamal Khan-Angelo Sekou Kouyate-Andrew Leviton-David Michie-Sumit Naig-Juan Pacheco-Chrystee Pharris-Ben Pronsky-Al Rodrigo-Jaswant Dev Shrestha-Libby Thomas Dickey-Ruth Zalduondo-Jasper Johannes Andrews-Gredel Berrios Calladine-Natalia Castellanos-Russell Tyre Francis-Deepti Gupta-Sohm Kapila-Pradnya Kuwadekar-Ashley London-Christopher Miller-Andrea Navedo-Lakshmi Patel-Jacqueline Pinol-Eliyas Qureshi-Lashana Rodriguez-Dennis Singletary-Amanda Troop-Sitara Attaie-Mayuri Bhandari-June Christopher-Michelle Jubilee Gonzalez-Marabina Jaimes-Rez Kempton-Lex Lang-Phil Lord-Richard Miro-Doug Nicholas-Shakira Ja'nai Paye-James Pirri-Marley Ralph-Michelle Ruff-Narender Sood-Cedric L. Williams-Kimberly Bailey-Sanjay Chandani-Melanie Duke-Jorge R. Gutierrez-Miguel Jiron-Deepti Kingra-Mickelsen-Luisa Leschin-Caitlin McKenna-Richard Andrew Morgado-Arthur Ortiz-Eliana A. Perez-Juan Pope-Mike Rianda-Stan Sellers-Warren Sroka-Jason Linere-White-Kimiko Glenn-Peggy Lu-John Mulaney-Andrew Garfield-Denis Leary-Tobey Maguire-Cliff Robertson-Alfred Molina-Post Malone,sacrifice-villain-comic book-sequel-superhero-based on comic-alternate dimension-alternate version-super power-brooklyn new york city-superhero team-spider bite-super villain-cliffhanger-teen superhero-alternate universe-female superhero-cartoon spider,/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg,/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg,496450-667538-385687-603692-298618-447277-976573-598331-324857-447365-462883-536437-979296-313369-537210-1106591-532408-502356-1140706-820707-462376 +360920,The Grinch,Animation-Family-Comedy-Fantasy,en,The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.,43.492,Illumination-Dr. Seuss Enterprises-Universal Animation Studios,11/8/18,75000000,508575295,85,Released,Scheme big.,6.829,3341,Benedict Cumberbatch-Rashida Jones-Kenan Thompson-Cameron Seely-Angela Lansbury-Pharrell Williams-Ramone Hamilton-Sam Lavagnino-Scarlett Estevez-Michael Beattie-Scott Mosier-Lori Alan-Carter Hastings-Carlos Alazraqui-John Kassir-Cathy Cavadini-Danny Mann-Meilee Condron-Frank Welker-Tristan O'Hare-Doug Burch-Tucker Chandler-Townsend Coleman-Abby Craden-Brian T. Delaney-John DeMita-Bill Farmer-Aaron Fors-Willow Geer-Jess Harnell-Evan Kishiyama-Barbara Harris-Jeremy Maxwell-Laraine Newman-Dashiell Priestley-Alex Puccinelli-Emma Elizabeth Shannon-Joel Swetow-Mindy Sterling-Tara Strong-Regina Taufen-Jim Ward,holiday-remake-surrealism-based on children's book-christmas,/1Bc9VNd9CIHIyJtPKFqSQzrXWru.jpg,/5lWIYxYEqWi8j3ZloxXntw3ImBo.jpg,707610-881098-985932-947938-892068-864692-8871-14537-816904-404368-975714-13377-772-34134-400155-412117-938008-446894-527435-280217-654028 +580489,Venom: Let There Be Carnage,Science Fiction-Action-Adventure,en,After finding a host body in investigative reporter Eddie Brock the alien symbiote must face a new enemy Carnage the alter ego of serial killer Cletus Kasady.,237.124,Marvel Entertainment-Columbia Pictures-Pascal Pictures-Matt Tolmach Productions-Avi Arad Productions-Sony Pictures,9/30/21,110000000,506863592,97,Released,,6.873,8704,Tom Hardy-Woody Harrelson-Michelle Williams-Naomie Harris-Reid Scott-Stephen Graham-Peggy Lu-Sian Webber-Michelle Greenidge-Rob Bowen-Laurence Spellman-Little Simz-Jack Bandeira-Olumide Olorunfemi-Scroobius Pip-Amrou Al-Kadhi-Beau Sargent-Brian Copeland-Stewart Alexander-Sean Delaney-Ed Kear-Emma Lau-Louis j Rhone-Christopher Godwin-Tiffanie Thomas-Rocky Capella-Sam Robinson-Greg Lockett-Sonny Ashbourne Serkis-Otis Winston-Vaughn Johseph-Kristen Simoes-Miguel Angel Arreguin-Shaliz Afshar-Reece Shearsmith-Simon Connolly-Rachel Handshaw-Amanda Foster-Akie Kotabe-Eric Sigmundsson-Chabris Napier-Lawrence-Larry Olubamiwo-Jose Palma-Ashlen Aquila-Jamal Ajala-James D. Weston II-Che Amaro-Joshua Eldridge-Smith-Rosie Marcel-Elliot Cable-J.K. Simmons-Tom Holland,hero-anti hero-villain-psychopath-sequel-superhero-based on comic-creature-fear-aftercreditsstinger-symbiote-carnage-venom character,/rjkmN1dniUHVYAtwuV3Tji7FsDO.jpg,/vIgyYkXkg6NC2whRbYjBD7eb3Er.jpg,566525-524434-634649-512195-335983-370172-550988-453395-497698-438631-526896-335787-436969-414906-624860-425909-460458-696806-476669-509459-45454 +251,Ghost,Fantasy-Drama-Thriller-Mystery-Romance,en,Sam Wheat is a banker Molly Jensen is an artist and the two are madly in love. However when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.,38.176,Paramount,7/12/90,22000000,505000000,127,Released,"Before Sam was murdered, he told Molly he'd love and protect her forever.",7.2,4853,Patrick Swayze-Demi Moore-Whoopi Goldberg-Tony Goldwyn-Vincent Schiavelli-Rick Aviles-Martina Deignan-Rick Kleber-Phil Leeds-Armelia McQueen-Gail Boggs-Stephen Root-Alma Beltran-Vivian Bonnell-Derek Thompson-Tom Finnegan-Bruce Jarchow-Said Faraj-Dorothy Love Coates-Christopher J. Keene-Susan Breslau-Macka Foley-John Hugh-Sam Tsoutsouvas-Sharon Breslau-Angelina Estrada-Thom Curley-Laura Drake-Augie Blunt-J. Christopher Sullivan-Charlotte Zucker-Sondra Rubin-Faye Brenner-William Cort-Minnie Summers Lindsey-Mabel Lockridge-Arsenio Hall-Stanley Lawrence,corruption-fortune teller-money transfer-money laundering-pottery-heaven-hell-afterlife-murder-death-ghost-spiritism,/w9RaPHov8oM5cnzeE27isnFMsvS.jpg,/zOyXP0MS4jvU01yIxzRV394ZUJw.jpg,88-595931-114-621-2005-245729-788-619-162-771-1033569-796-1824-10020-9354-634-380-879-795-856-9602 +812,Aladdin,Animation-Family-Adventure-Fantasy-Romance,en,Princess Jasmine grows tired of being forced to remain in the palace so she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin. The couple falls in love although Jasmine may only marry a prince. After being thrown in jail Aladdin becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.,67.412,Walt Disney Pictures-Walt Disney Feature Animation,11/25/92,28000000,504050219,90,Released,Wish granted!,7.645,10174,Scott Weinger-Robin Williams-Linda Larkin-Jonathan Freeman-Gilbert Gottfried-Frank Welker-Douglas Seale-Brad Kane-Lea Salonga-Bruce Adler-Charlie Adler-Jack Angel-Corey Burton-Philip L. Clarke-Jim Cummings-Jennifer Darling-Debi Derryberry-Bruce Gooch-Jerry Houser-Vera Lockwood-Sherry Lynn-Mickie McGowan-Patrick Pinney-Phil Proctor-Hal Smith-Teddy Newton,magic-parrot-musical-tiger-sultan-flying carpet-wish-cartoon-princess-love-monkey-arab-aftercreditsstinger-genie-arabian nights-animal sidekick-magic lamp,/fhyun1mja3WwQsYr1a3x1x9BttP.jpg,/5OeY4U2rzePxWq2rkqMajUx2gz7.jpg,10020-10144-408-8587-11224-12092-9325-38757-11970-10882-12230-3170-10674-12-37135-425-10693-10530-953-808-10340 +635302,Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train,Animation-Action-Adventure-Fantasy-Thriller,ja,Tanjiro Kamado joined with Inosuke Hashibira a boy raised by boars who wears a boar's head and Zenitsu Agatsuma a scared boy who reveals his true power when he sleeps boards the Infinity Train on a new mission with the Fire Hashira Kyojuro Rengoku to defeat a demon who has been tormenting the people and killing the demon slayers who oppose it!,438.335,ufotable-Aniplex-Shueisha-STUDIO MAUSU-TOHO,10/16/20,15800000,503063688,117,Released,"With your blade, bring an end to the nightmare.",8.281,2966,Natsuki Hanae-Akari Kito-Hiro Shimono-Yoshitsugu Matsuoka-Satoshi Hino-Takahiro Sakurai-Katsuyuki Konishi-Saori Hayami-Kenichi Suzumura-Tomokazu Seki-Tomokazu Sugita-Toshiyuki Morikawa-Rina Sato-Shin-ichiro Miki-Houko Kuwashima-Kaede Hondo-You Taichi-Konomi Kohara-Aoi Koga-Rikiya Koyama-Megumi Toyoguchi-Junya Enoki-Mariya Ise-Daisuke Hirakawa-Akira Ishida-Jun Kasama-Sayaka Senbongi-Takuya Eguchi-Hibiku Yamamura-Yuya Hirose-Shinya Takahashi-Saeko Akiho-Shugo Nakamura-Mitsuki Nakae,fight-magic-psychology-supernatural-gore-survival-tragedy-coming of age-based on manga-demon-historical-family-mutilation-dark fantasy-shounen-anime-taisho,/h8Rb9gBr48ODIwYUttZNYeMWeUU.jpg,/qjGrUmKW78MCFG8PTLDBp67S27p.jpg,811948-802401-820232-47053-895003-592350-486418-810693-768744-257147-383607-739187-505262-23150-372058-843241-378064-952374-19014-895006-532067 +172385,Rio 2,Adventure-Animation-Comedy-Family,en,It's a jungle out there for Blu Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in he goes beak-to-beak with the vengeful Nigel and meets the most fearsome adversary of all: his father-in-law.,58.74,20th Century Fox-Blue Sky Studios-20th Century Fox Animation,3/19/14,103000000,500188435,101,Released,It's on in the Amazon.,6.5,3020,Jesse Eisenberg-Anne Hathaway-Will.i.am-Jamie Foxx-Leslie Mann-George Lopez-Andy Garc�_a-Bruno Mars-Bernardo de Paula-Rodrigo Santoro-Jemaine Clement-Jake T. Austin-Amandla Stenberg-Pierce Gagnon-Rita Moreno-Kristin Chenoweth-Tracy Morgan-Rachel Crow-Bebel Gilberto-Jason Harris-Janelle Mon��e-Amy Heidemann-Carlinhos Brown-Jim Conroy-Nola Donkin-Miguel Ferrer-Jeffrey Garcia-Kevin W. Keane-Philip Lawrence-Gracinha Leporace-S��rgio Mendes-Kate Micucci-Pablo Ram�_rez-Marco Antonio Regil-Peter Pamela Rose-Carlos Saldanha-Julia Scarpa Saldanha-Manoela Scarpa Saldanha-Rafael Scarpa Saldanha-Sofia Scarpa Saldanha-Cindy Slattery-Randy Thom-Claira Nicole Titman-Miriam Wallen-Claudine Barros-Mauro Blanco-Jeremy Bowker-Dennis T. Carnegie-Shanti Correa-Alberto Costa-David Cowgill-Holly Dorff-Harry Hitner-Rif Hutton-Vanessa Lemonides-Hope Levy-Henry Leyva-Anselmo Martini-Renata Becker-Ron McClary-Brian Scott McFadden-Phil Miler-Edie Mirman-Heber Moreira-Leo Nobre-Mina Olivera-Jackeline Olivier-Kleber Jorge Pimenta-Byron Thames-Annie Maginnis Tippe-Natalie Morales,sequel-travel-jungle-audition-amazon rainforest-parrots-personification,/gVNTBrjxh2YRmQFjlaqrNbHVvrd.jpg,/eg2jxQ1FFi6ENDfyMIMC5odpcU0.jpg,46195-109451-80321-13053-77950-41513-10527-57800-8355-77931-49519-22794-151960-82703-10192-15512-49444-950-810-278154-953 +274284,Rocket Power: Island of the Menehune,Animation,en,Armed with a spirit for adventure Otto Rocket Reggie Twister and Sam embark on a Hawaiian extreme sporting escapade. But amid the killer surfing and skating the gang also finds a spooky spirit in the jungle.,1.81,Nickelodeon Animation Studio-Nickelodeon Productions-Klasky-Csupo,1/1/04,0,500000000,75,Released,,0,0,Joseph Ashton-Shayna Fox-Sean Marquette-Gilbert Leal,extreme sports,/1ADnmOLJJJdE4jIvyC7hJpp8mjX.jpg,, +747121,Alha Sahma,,en,A bounty hunter has a mission kill a jew but things don't go according to plan.,0.6,,4/12/19,0,500000000,7,Released,Youpin !,10,1,Lil K-Prometheus II-Gropor,,/m7sGOqpSDGxk23qxBPkZ4qcZ2v9.jpg,, +894260,The Inexplicable Joy of Film - A Trenz Core,Drama,en,See it there : https://www.youtube.com/watch?v=OAhwdLd6CnU A tribute to a handful of films that means a lot to Trenz.,0.6,,,10000000,500000000,5,Released,The inexplicable joy of film - a Trenz core,0,0,,,/2r9rewJqNpSst1vNcMews0yuSNT.jpg,, +932541,Venom: tiempo de carnicer�_a,,pt,,0.6,,,250000000,500000000,0,Released,,0,0,,,,, +535928,Wooden Slippers (2007),,tl,The best movie of 2007,0.6,,,100,500000000,33,Released,Oh nang gewa mu?,10,1,,,/ejtnZGYX8NnQUHFMsPWqPtliFff.jpg,, +354373,Love and Germophobia,,en,If your girlfriend had the flu would you still kiss her? What about if she might have viral Meningitis? For David the answer is simple. Absolutely not. Unfortunately David's girlfriend doesn't see it this way.,0.6,,1/1/12,99999999,499999999,10,Released,"If your girlfriend had the flu, would you still kiss her? What about if she might have viral Meningitis?",5,1,T. J. Miller-Tanya R. Barnes-Gerry Bednob-Kurt Fuller-Dolores Nimon-Nate Shelkey-Kelly Stables-Angela Trimbur,hospital-germs,,, +652,Troy,Adventure-History-War-Action,en,In year 1250 B.C. during the late Bronze age two emerging nations begin to clash. Paris the Trojan prince convinces Helen Queen of Sparta to leave her husband Menelaus and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans he asks his brother Agamemnon to help him get her back. Agamemnon sees this as an opportunity for power. They set off with 1000 ships holding 50000 Greeks to Troy.,51.038,Warner Bros. Pictures-Plan B Entertainment-Nimar Studios-Radiant Productions-Helena Productions-Latina Pictures,5/3/04,175000000,497409852,163,Released,For passion. For honor. For destiny. For victory. For love.,7.142,9306,Brad Pitt-Orlando Bloom-Eric Bana-Brian Cox-Sean Bean-Brendan Gleeson-Diane Kruger-Peter O'Toole-Rose Byrne-Saffron Burrows-Garrett Hedlund-Vincent Regan-Julie Christie-Nathan Jones-Mark Lewis Jones-John Shrapnel-James Cosmo-Nigel Terry-Julian Glover-Trevor Eve-Frankie Fitzgerald-Lucie Barat-Siri Svegler-Ken Bones-Manuel Cauchi-Owain Yeoman-Tyler Mane-Louis Dempsey-Joshua Richards-Tim Chipping-Desislava Stefanova-Tanja Tzarovska-Luke Tal-Matthew Tal-Alex King-Adoni Maropis,sibling relationship-adultery-mythology-beauty-trojan war-bravery-wall-fraud-hostility-epic-sword fight-battlefield-historical fiction-ancient world-based on song poem or rhyme-pyre-ancient greece-peplum-trojan horse-bronze age-sparta greece-helen of troy-homer's iliad-muscular men-ships-sword and sandal-helmet,/a07wLy4ONfpsjnBqMwhlWTJTcm.jpg,/qZitv5zrSXfJafGThxmvbvTsuu5.jpg,787-616-1271-98-1593-4922-1495-9738-310-285-163-1966-161-58-74-591-2048-6479-197-8960-676 +863,Toy Story 2,Animation-Comedy-Family,en,Andy heads off to Cowboy Camp leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.,94.718,Pixar,10/30/99,90000000,497400000,92,Released,The toys are back!,7.589,13106,Tom Hanks-Tim Allen-Joan Cusack-Kelsey Grammer-Don Rickles-Jim Varney-Wallace Shawn-John Ratzenberger-Annie Potts-Wayne Knight-John Morris-Laurie Metcalf-Estelle Harris-R. Lee Ermey-Jodi Benson-Jonathan Harris-Joe Ranft-Andrew Stanton-Jeff Pidgeon-Jack Angel-Bob Bergen-Mary Kay Bergman-Sheryl Bernstein-Rodger Bumpass-Corey Burton-Rachel Davey-Debi Derryberry-Jessica Evans-Bill Farmer-Pat Fraley-Jess Harnell-John Lasseter-Nicolette Little-Sherry Lynn-Mickie McGowan-Phil Proctor-Jan Rabson-Carly Schroeder-Madylin Sweeten-Hannah Unkrich-Lee Unkrich-Andi Peters-Dave Foley-Frank Welker,friendship-airplane-museum-prosecution-identity crisis-flea market-collector-sequel-buddy-rescue team-garage sale-duringcreditsstinger-toy comes to life-personification-inanimate objects come to life,/2MFIhZAW0CVlEQrFyqwa4U6zqJP.jpg,/91qfG6VaxRsCh1SbIi1w2vxknsL.jpg,862-10193-585-808-9806-12-2062-920-14160-9487-62211-49013-10681-809-425-953-950-810-62177-38757-8587 +10191,How to Train Your Dragon,Fantasy-Adventure-Animation-Family,en,As the son of a Viking leader on the cusp of manhood shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon he realizes that he no longer wants to destroy it and instead befriends the beast ��� which he names Toothless ��� much to the chagrin of his warrior father.,72.156,DreamWorks Animation,3/18/10,165000000,494879471,98,Released,One adventure will change two worlds,7.8,11603,Jay Baruchel-Gerard Butler-Craig Ferguson-America Ferrera-Jonah Hill-Christopher Mintz-Plasse-T.J. Miller-Kristen Wiig-David Tennant-Ashley Jensen-Robin Atkin Downes-Philip McGrade-Kieron Elliott,flying-based on novel or book-blacksmith-arena-island-ship-training-village-forest-viking-friendship-ignorance-flight-nest-dragon-battle-combat-well-warrior-pets,/ygGmAO60t8GyqUo9xYeYxSZAR3b.jpg,/aH9KWmXFMamXkHMgLjnQmSYjScL.jpg,82702-9502-38757-20352-10193-585-10681-82690-953-12-62177-920-425-9806-14160-8587-2062-166428-8355-48649-812 +664,Twister,Action-Adventure-Drama,en,An unprecedented series of violent tornadoes is sweeping across Oklahoma. Tornado chasers headed by Dr. Jo Harding attempt to release a groundbreaking device that will allow them to track them and create a more advanced warning system. They are joined by Jo's soon to be ex-husband Bill a former tornado chaser himself and his girlfriend Melissa.,24.07,Universal Pictures-Amblin Entertainment-Warner Bros. Pictures-Constant c Productions-Twister Productions,5/10/96,92000000,494471524,113,Released,Don't breathe. Don't look back.,6.453,2738,Helen Hunt-Bill Paxton-Cary Elwes-Jami Gertz-Philip Seymour Hoffman-Lois Smith-Alan Ruck-Sean Whalen-Scott Thomson-Todd Field-Joey Slotnick-Wendle Josepher-Jeremy Davies-Zach Grenier-Gregory Sporleder-Patrick Fischler-Nicholas Sadler-Ben Weber-Anthony Rapp-Erik LaRay Harvey-Abraham Benrubi-Jake Busey-Melanie Hoopes-Alexa PenaVega-Rusty Schwimmer-Richard Lineback-J. Dean Lindsay-Dan Kelpine-Sharonlyn Morrow-Richard Lineback-Rusty Schwimmer-Taylor Gilbert-Bruce Wright-Gary England-Jeff Lazalier-Rick Mitchell-Paul Douglas-Samantha McDonald-Jennifer L. Hamilton-Anneke de Bont-Darryl Cox,husband wife relationship-tornado-twister-oklahoma-metereologist-invention-climate-barn-natural disaster-truck-disaster-storm chaser-divorce-disaster movie-motley crew,/6tagtmPVOG4QqraQ4piUFLoqaoj.jpg,/aoWQe00ctaK5k56yc7vsoqEWdHI.jpg,9619-8656-882-1637-10357-929-36955-9350-435-9772-8487-9804-1701-9208-2133-74-8367-602-1639-5503-1844 +18823,Clash of the Titans,Adventure-Fantasy-Action,en,Born of a god but raised as a man Perseus is helpless to save his family from Hades vengeful god of the underworld. With nothing to lose Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts Perseus and his warriors will only survive if Perseus accepts his power as a god defies fate and creates his own destiny.,74.203,The Zanuck Company-Legendary Pictures-Thunder Road-Moving Picture Company-Warner Bros. Pictures,3/26/10,125000000,493214993,106,Released,Titans will clash.,5.9,5914,Sam Worthington-Gemma Arterton-Mads Mikkelsen-Alexa Davalos-Jason Flemyng-Ralph Fiennes-Liam Neeson-Pete Postlethwaite-Polly Walker-Ashraf Barhom-Elizabeth McGovern-Nicholas Hoult-Liam Cunningham-Hans Matheson-Vincent Regan-Alexander Siddig-Luke Treadaway-Mouloud Achour-Tine Stapelfeldt-Luke Evans-Izabella Miko-Ian Whyte-Katherine Loeppky-Sinead Michael-Ross Mullan-Robin Berry-Graham Hughes-Martin McCann-Rory McCann-Kaya Scodelario-Tamer Hassan-Danny Huston-William Houston-Jamie Sives-Phil McKee-Geoffrey Beevers-Michael Grady-Hall-Laura Kachergus-Adrian Bouchet-David Kennedy-Nina Young-Jane March-Nathalie Cox-Agyness Deyn-Natalia Vodianova-Charlotte Comer-Louis Leterrier-Katrina Vasilieva,hades-mythology-greek mythology-zeus-mythological beast-medusa-sea monster-perseus-kraken-gods-ancient greece-based on myths legends or folklore,/6iHYLipwEyZUPNO8MM3l1yHDaFE.jpg,/hUUTJPmvBvBKILNLrBu16pRxr6M.jpg,57165-9543-1979-44833-14869-27578-38356-49529-8373-44912-20526-64635-2080-1735-58574-534-1858-9738-12437-1734-34544 +68728,Oz the Great and Powerful,Fantasy-Adventure-Family,en,Oscar Diggs a small-time circus illusionist and con-artist is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy there to save Oz from the clutches of evil.,30.268,Roth Films-Walt Disney Pictures,3/7/13,200000000,491868548,130,Released,"In Oz, nothing is what it seems.",5.9,6099,James Franco-Mila Kunis-Rachel Weisz-Michelle Williams-Zach Braff-Bill Cobbs-Joey King-Tony Cox-Stephen R. Hart-Abigail Spencer-Bruce Campbell-Ted Raimi-Tim Holmes-Toni Wynne-Rob Crites-William Dick-Gene Jones-John Lord Booth III-Suzanne Keilly-Shannon Murray-Ralph Lister-John Manfredi-Robert Stromberg-Channing Pierce-Brian Searle-Russell Bobbitt-Julie Gershenson-Dan Nelson-T.J. Jagodowski-John Paxton-Melissa Exelberth-Steve Forbes-Arnold Agee-Deborah Puette-Julius Kline III-Theresa Tilly-Betsy Baker-Ellen Sandweiss-Bella Shepard-Sasha Kida Reynolds-Ja'Vonne Cousins-Victoria Lurz-Dashiell Raimi-Oliver Raimi-Brandon Hamilton-Stevie Lee-Martin Klebba-Danielle Ragland-Bart McCarthy-Timothy Patrick Quill-Nicholas Lindsay-Abaire-Bill E. Rogers-Dan Hicks-Mia Serafino-Lanika Wise-Mikayla Bouchard-Nellie Ann Prestine-Lowery-Emma Raimi-Jayne Violassi-Jay Schwalm-Wendy Cutler-James Bird-Kenneth D. Ciszewski-Chester F. Guilmet-Robert Buck-Jim Moll-Phillip Huber-Bernie Allemon-Dan Cota-Dale Drew-Spencer Frost-Jon Overgaauw-Eduardo Piedra-Eric Potts-Jordan Rafael-Adam Romano-David Spradlin-Mani Love-Michael Witous-Christophe Zajac-Denek-Chidi Ajufo-Talia Akiva-Apollo Bacala-Kelly Bacon-Cameron Barnett-Robert T. Barrett-Colin Bryant-Ron Causey-Grady Chambless-Lee Christian-Michael Clossin-Neil Ellice-John C. Epperson-Mike Estes-Jessee Foudray-Logan Fry-Nesti Gee-Derrick Gilliam-Ryan Groves-Brice Harris-Niki Haze-Ron Heisler-Dennis Kleinsmith-Doug Kolbicz-Kef Lee-Davy J. Marr-Julia Metas-Bob Jay Mills-Reza Mir-Jessica Nichole-Jor ��l Quinn-Gene Richards-Ari Rufino-Keith Schloemp-David Schwager-Ashley Siloac-Amy Sutherland-Eric Adam Swenson-Kevin Thompson-David Waldman-Filip Watermann-Matt Weinglass-Otis Winston,circus-witch-magic-hope-illusion-magic trick-wizard-based on young adult novel,/tkzfAUEKoUp4YFNbZV9hfpZOz0z.jpg,/a4KUVG5P5hBSgAgHHindbnyubTF.jpg,81005-60304-70160-82690-20352-58595-49051-37724-68721-47964-82654-87827-1930-62177-24428-49538-49026-49521-57800-72710-72559 +420809,Maleficent: Mistress of Evil,Family-Fantasy-Adventure-Action,en,Maleficent and her goddaughter Aurora begin to question the complex family ties that bind them as they are pulled in different directions by impending nuptials unexpected allies and dark new forces at play.,101.739,Walt Disney Pictures-Roth Films,10/16/19,185000000,491730089,119,Released,Go beyond the fairy tale,7.345,5409,Angelina Jolie-Elle Fanning-Harris Dickinson-Michelle Pfeiffer-Sam Riley-Chiwetel Ejiofor-Ed Skrein-Robert Lindsay-David Gyasi-Jenn Murray-Juno Temple-Lesley Manville-Imelda Staunton-Judi Shekoni-MIYAVI-Kae Alexander-Warwick Davis-Emma Maclennan-Aline Mowat-Freddie Wise-Barry Aird-Jermaine Cope-Juliane Snekkestad-Jess Liaudin-Noor Dillan-Night-Sarah Morghad-Oliver Frank Newman-Harry Paul Newman-April Alexander-Derek Horsham-Ia �_stergren-Anthony Kaye-Lex Milczarek-Xander Pipe-Fernanda Diniz-John Carew-Rebecca Kunikowski-Ivy-Mae Hewitt-Oliviyah Hewitt-John Lebar-Richard Keep-Bruce Lester-Johnson-Elizabeth Brace-Pik-Sen Lim-Topo Wresniwiro-Chester Durrant-Elizabeth Marcano-Mortlock-Julia Bender-Mikey Brett-Brian Fisher-Josh Jefferies-Jack Parker-Russell Balogh-Michael Akinsulire-Camille Mallet De Chauny-Lonyo Engele-Mark Knightley-Darcy Vanhinsbergh-Tekle Baroti-Gielliane Althea-Martin Bishop-Adam Colborne-Ahaan Gupta-David Midthunder-Briana Akinluyi-Tom Bonington-Rayna Campbell-Tina Gray-Darrell Davis-Robert Curtis-Tom Colley-David Isiguzo-Sarah Sayuri Hare-Chloe Fung-Arjen Tuiten-Andre Bullock-Lewis Kirk-Victor Perez-Piers Horseman-Jimmy Hibbert-Jo Hannah Emblem R�nning-Holly Emblem R�nning-Robert McCrea,magic-fairy-fairy tale-villain-sequel-live action remake,/vloNTScJ3w7jwNwtNGoG8DbTThv.jpg,/skvI4rYFrKXS73BJxWGH54Omlvv.jpg,646458-611059-102651-330457-611368-420818-512200-475557-688301-420817-338967-290859-453405-481084-474350-429617-506574-320288-448119-301528-495764 +281338,War for the Planet of the Apes,Drama-Science Fiction-War,en,Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind. As the journey finally brings them face to face Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.,47.623,20th Century Fox-TSG Entertainment-Chernin Entertainment,7/11/17,150000000,490719763,140,Released,For freedom. For family. For the planet.,7.166,8171,Andy Serkis-Woody Harrelson-Steve Zahn-Karin Konoval-Amiah Miller-Terry Notary-Ty Olsson-Michael Adamthwaite-Toby Kebbell-Gabriel Chavarria-Judy Greer-Sara Canning-Devyn Dalton-Aleks Paunovic-Alessandro Juliani-Max Lloyd-Jones-Timothy Webber-Lauro Chartrand-Shaun Omaid-Roger Cross-Mercedes de la Zerda-Doug Chapman-James Pizzinato-Chad Rook-Dean Redman-Steve Baran-Sandy Robson-Levi Meaden-Billy Wickman-Albert Nicholas-Kyle Horton-Paul Luongo-Thomas Potter-Mathew Yanagiya-Skye Notary-Willow Notary-Finn Notary-Phoenix Notary-Sadie Aperlo-Matilda Aperlo-Andrew Alexander Reeves,suicide-based on novel or book-slavery-sequel-anthropomorphism-revenge-ape-avalanche-virus-father son relationship-2040s,/mMA1qhBFgZX8O36qPPTC016kQl1.jpg,/ulMscezy9YX0bhknvJbZoUgQxO5.jpg,119450-61791-315635-49679-263115-339964-297762-335988-353491-339403-293167-374720-283995-166426-282035-869-343668-341013-126889-335984-141052 +808,Shrek,Animation-Comedy-Fantasy-Adventure-Family,en,It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon Shrek teams up with an unlikely compatriot -- a wisecracking donkey.,207.13,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/18/01,60000000,487853320,90,Released,The greatest fairy tale never told.,7.716,14992,Mike Myers-Eddie Murphy-Cameron Diaz-John Lithgow-Vincent Cassel-Peter Dennis-Clive Pearse-Jim Cummings-Bobby Block-Chris Miller-Cody Cameron-Kathleen Freeman-Michael Galasso-Christopher Knights-Simon J. Smith-Conrad Vernon-Jacquie Barnbrook-Guillaume Aretos-John Bisom-Matthew Gonder-Calvin Remsberg-Jean-Paul Vignon-Val Bettin-Andrew Adamson-Jack Angel-Bob Bergen-Rodger Bumpass-Patty Cornell-Aleksandar Cvjetkovic-Charles Dennis-Paul Eiding-Bill Farmer-Susan Fitzer-Elisa Gabrielli-Gary A. Hecker-Richard Steven Horvitz-Phillip Ingram-Carole Jeghers-Mickie McGowan-Phil Proctor-Frank Welker-Patrick Pinney,magic-liberation-lordship-prince-castle-fairy tale-robin hood-enchantment-swamp-princess-parody-anthropomorphism-dragon-woman director-ogre-cartoon donkey,/jhTVNBVkdS4Wf6NXYA9kRKQU3YM.jpg,/sRvXNDItGlWCqtO3j6wks52FmbD.jpg,809-810-10192-425-863-2062-862-585-12-953-9806-10193-9502-950-8587-920-14160-38757-812-8355-10020 +787,Mr. & Mrs. Smith,Action-Comedy-Drama-Thriller,en,After five (or six) years of vanilla-wedded bliss ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other they are both coolly lethal highly-paid assassins working for rival organisations. When they discover they're each other's next target their secret lives collide in a spicy explosive mix of wicked comedy pent-up passion nonstop action and high-tech weaponry.,33.463,Epsilon Motion Pictures-Weed Road Pictures-Regency Enterprises-New Regency Pictures-Summit Entertainment,6/7/05,110000000,487287646,120,Released,Smart and sexy,6.672,9179,Brad Pitt-Angelina Jolie-Vince Vaughn-Adam Brody-Kerry Washington-Keith David-Chris Weitz-Rachael Huntley-Michelle Monaghan-Stephanie March-Jennifer Morrison-Theresa Barrera-Perrey Reeves-Melanie Tolbert-Jerry T. Adams-Elijah Alexander-Hans F. Alexander-Lauryn Alvarez-Burke Armstrong-Ron Bottitta-Earl H. Bullock-Miguel Angel Caballero-Victor A. Chapa-Maree Cheatham-Laine Collins-Noah Dahl-Merrilee Dale-Chris Daniels-Patrika Darbo-Jennifer DeMille-Tyce Diorio-Patricia Donaldson-Sabi Dorr-Greg Ellis-David Escobedo-Kaela Freeman-Megan Gallagher-Amy Hathaway-Jessica Hedden-Kathrine Herzer-Nigel Hudson-Ravil Isyanov-Stephanie Ittleson-Mark Ivanir-Benton Jennings-Simon Kinberg-Peter Lavin-Deren Tadlock-Sean Mahon-Kevin Makely-Mike McCaul-Derek Medina-Will Moore-Joel Munoz-Mark Newsom-Richie Ornelas-Jordan Osher-Edward Padilla-Eugene C. Palmer-Luis Racer-Liz Ramos-Leonard Robinson-Felix A. Ruiz-Sam Sabbah-Kim Schioldan-Ty Sharp-Jimmy Shubert-Abigail Rose Solomon-Hannah Von Kanel-Ali Marsh-Kim H. Winther-Michael Winther-Michael-John Wolfe-Jeff Yagher-Bryan Anthony-Douglas Caldwell-R.J. Durell-Melissa Hurley-Jacqui Landrum-Carol Mack-Michael Morris-Gloria Rodriguez-Linda Kathleen Taylor-Anne Vardanian-Ara Vardanian-Luis Vasquez-John W. Woodruff-Angela Bassett-William Fichtner-David Block-John Branch-Julius Callahan-Shilo Frontierro-Lisa Gabriel-Tony Longo-Janelle Marra-Heather Petrone-Bill Viney-Hawk Younkins-Matt McColm-Mo Gallini,bomb-assassin-secret identity-assault rifle-gun-married couple-hitman-decoy-secret agent-marriage crisis-marriage-dysfunctional marriage-gunfight-bullet wound,/wzIO3ytxeSNt1wRpXLIdkNbGoDm.jpg,/iFaWUETEE2umP1WY0LUAmjSpzm7.jpg,652-163-8960-1593-161-4922-27576-9738-310-37710-298-8909-350-2048-118-6479-591-608-8488-854-2059 +13448,Angels & Demons,Thriller-Mystery,en,Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati - a secret underground organization - after four cardinals are kidnapped on the night of the papal conclave.,38.453,Columbia Pictures-Imagine Entertainment-Skylark Productions-Panorama Films,5/13/09,150000000,485900000,138,Released,The holiest event of our time. Perfect for their return.,6.707,6487,"Tom Hanks-Ewan McGregor-Ayelet Zurer-Stellan Skarsg��rd-Pierfrancesco Favino-Nikolaj Lie Kaas-Armin Mueller-Stahl-Thure Lindhardt-David Pasquesi-Cosimo Fusco-Victor Alfieri-Franklin Amobi-Curt Lowens-Bob Yerkes-Marc Fiorini-Carmen Argenziano-Howard Mungo-Rance Howard-Steve Franken-Gino Conforti-Elya Baskin-Richard Rosetti-Silvano Marchetto-Thomas Morris-Jonas Fisch-August Wittgenstein-Ben Bela B�_hm-Paul Schmitz-Jeffrey Boehm-Xavier J. Nathan-Steve Kehela-Ursula Brooks-Rashmi-Yan Cui-Fritz Michel-Maria Cristina Heller-Rafael Petardi-Yesenia Adame-Kristof Konrad-Masasa Moyo-Ed Francis Martin-Cheryl Howard-Endre Hules-Norbert Weisser-Shelby Zemanek-Vanna Salviati-Raffi Di Blasio-Todd Schneider-Roberto Donati-Rocco Passafaro-Emanuele Secci-Anna Katarina-James Ritz-Felipe Torres Urso-Jose David Acevedo-Roy Allen III-Tibor Ambra-Victor of Aquitaine-Michael Ark-John Jason Bailey-Jerred Berg-Sally Berman-Yuki Bird-Anthony Bonaventura-Robert Bradvica-Ciara Bravo-Michael Patrick Breen-Aidan Bristow-Cheryl BryantBruce-Ra�_l Cardona-Christopher Casa-Patrick Casa-Pasquale Cassalia-Farouk Chakwa-Bacha Chilaia-Jimmy Clabots-Mark E. Clason-Tammy Colbert-Austin Michael Coleman-Robert Corvin-Luca Costa-Gina D'Acciaro-John Dardenne-William ""Will"" Daubert-Shervin Davatgar-Blake Dawson-Vincent De Paul-Calvin Dean-David Dedinsky-Lea Deesing-Norman Deesing-Angelique Deuitch-Paul DiVito-Brant Dorman-Allen Dula-Liz Duran-Matthew Earnest-Peter Ettinger-Jonn Faircrest-Les Feltmate-William Ferguson-Amanda Jane Fleming-David Fletcher-Gregory George Frank-Harrison Freed-Aaron Denius Garcia-Nancy Gassner-Clayton-Justin Giddings-Phil Gold-Alan Gray-Marco Greco-Roger Groh-Nancy Guerriero-Andrew Hamilton-Martin Harris-Miriam Harris-Charlie Heydt-David Hill-Kei Hirayama-Brett Hunt-Marco Infante-Clark James-Christopher Karl Johnson-Dave Johnson-Gina Juliet-Andrea Kelley-Slim Khezri-Sophiah Koikas-Michael Laren-Robert W. Laur-Adrian Lee-David Michael Lewin-Maynor Lopez-Jon Lucero-Eder L�_pez-Julie Mabry-Les Mahoney-Gary Mandarino-Albert Marrero Jr.-Stephen Marrero-Carina Aviles Marshall-Debbie McAlister-Sandra McCurdy-Anthony Molinari-Elsa Morales Myers-Mary E. Morales-Sauvion Morkunas-William Myers-Manuel Nardi-Justin Orton-Sarita Ospina-Dale Pavinski-Amelia Pawlak-David Pearl-David Pryor-Lawrence Ravettina-Paul Richard-Louis Riviere-Jarrod Robbins-Bertrand Roberson Jr.-John Robert-Adriana Roze-Franklin Ruehl-Kelly Ryan-Dylan Saccoccio-Frank Scozzari-James Seaman-Keith Shawn-Jutta Speidel-Arne Starr-Matthew Thane-GJ Tiari-Nico Toffoli-Devin Toft-James Tumminia-Julian Vada-Ryan Van de Kamp Buchanan-Ernie Ventry-Damon Viola-Shannon Watson-Denise Winsor-Jon Morgan Woodward-Allan Yates-Alfred Molina",based on novel or book-rome italy-vatican-symbolism-illuminati-quantum mechanics-prequel-anti matter-conspiracy-investigator-catholicism-cern,/hrvNVd0GDeytbDhduWa3SFKmg4A.jpg,/cj0VkGBTywa7WTIPPW9xgqmUVWl.jpg,591-207932-6637-2059-8960-10528-594-18823-298-568-8358-14161-10764-95-58574-1735-1271-310-285-6479-87 +98566,Teenage Mutant Ninja Turtles,Science Fiction-Action-Adventure-Comedy,en,When a kingpin threatens New York City a group of mutated turtle warriors must emerge from the shadows to protect their home.,95.214,Paramount-Nickelodeon Movies-Platinum Dunes-Mirage Studios,8/7/14,125000000,485004754,101,Released,Mysterious. Dangerous. Reptilious. You've never seen heroes like this.,5.9,6147,Megan Fox-Will Arnett-William Fichtner-Johnny Knoxville-Pete Ploszek-Jeremy Howard-Alan Ritchson-Noel Fisher-Tony Shalhoub-Danny Woodburn-Tohoru Masamune-Whoopi Goldberg-Minae Noji-Abby Elliott-Madison Mason-Derek Mears-Malina Weissman-Taran Killam-K. Todd Freeman-Paul Fitzgerald-Venida Evans-Mikal Vega-Harley Pasternak-Braeson Herold-Chance Kelly-Rick Chambers-Leyna Nguyen-Chris Wylde-Rick Bolander-Chris Brewster-Greg Duncan-Kevin Kent,new york city-martial arts-terrorist-hero-experiment-mutation-van-turtle-vigilante-superhero-based on comic-ninja-sewer-reboot,/azL2ThbJMIkts3ZMt3j1YgBUeDB.jpg,/gWuiOPAz3WImzFZUzHTT6c4omrD.jpg,308531-91314-127585-119450-184315-102382-198663-138103-118340-168259-240832-76338-100402-49017-122917-124905-82702-49521-177572-102651-137113 +46195,Rio,Animation-Adventure-Comedy-Family,en,Captured by smugglers when he was just a hatchling a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend Linda. Blu is thought to be the last of his kind but when word comes that Jewel a lone female lives in Rio de Janeiro Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.,64.382,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,4/3/11,90000000,484635760,96,Released,1 out of every 8 Americans is afraid of flying. Most of them don't have feathers.,6.7,5925,Jesse Eisenberg-Anne Hathaway-Leslie Mann-Jane Lynch-Will.i.am-George Lopez-Wanda Sykes-Jamie Foxx-Rodrigo Santoro-Jemaine Clement-Jake T. Austin-Tracy Morgan-Carlos Ponce-Karen Disher-Jason Fricchione-Sofia Scarpa Saldanha-Kelly Keaton-Gracinha Leporace-Phil Miler-Bernardo de Paula-Carlos Saldanha-Renato D'Angelo-Jeffrey Garcia-Davi Vieira-Thomas F. Wilson-Cindy Slattery-Justine Warwick-Bebel Gilberto-Judah Friedlander-Francisco Ramos-Tim Nordquist-Miriam Wallen-S��rgio Mendes-Ester Dean-Priscilla Avila-Anzolin Borges-Claudia Bretas-Carlinhos Brown-Ubirajara de Castro-Shanti Correa-Wendy Cutler-Heber Moreira-Fl��via de Mellow-Andrea De Oliveira-Holly Dorff-Matheus dos Santos-Lucas dos Santos-Andrea Ferraz-Marcos Daniel Ferreira-Hanna Frankel-Johnny Gidcomb-Jean Gilpin-Julia Saraiva Gomez-Nicholas Guest-Rif Hutton-Julia Kamanchek Lopes-Lorrayne Mathias-Mikael Mutti-Leo Nobre-Mina Olivera-Bianca Rossini-Julia Scarpa Saldanha-Manoela Scarpa Saldanha-Adriana Souza-Maxwell Wippich-Matthew Wolf,rio de janeiro-pet-carnival-parrot-musical-canary-jungle-samba-animal-duringcreditsstinger-pets-cartoon bird-brazilian cinema,/BSZ2dA3G369e3pHIXGhh5orzPt.jpg,/qPQTqmJ5nL96ou81spQIJ32HC9a.jpg,172385-10527-13053-80321-8355-953-22794-49444-57800-10192-950-810-9502-38757-38055-425-44896-15512-41513-49013-809 +310,Bruce Almighty,Fantasy-Comedy,en,Bruce Nolan toils as a 'human interest' television reporter in Buffalo N.Y. but despite his high ratings and the love of his beautiful girlfriend Bruce remains unfulfilled. At the end of the worst day in his life he angrily ridicules God���and the Almighty responds endowing Bruce with all of His divine powers.,40.739,Pit Bull Productions-Spyglass Entertainment-Universal Pictures-Shady Acres Entertainment,5/23/03,80000000,484592874,101,Released,In Bruce we trust?,6.701,9793,Jim Carrey-Morgan Freeman-Jennifer Aniston-Philip Baker Hall-Catherine Bell-Lisa Ann Walter-Steve Carell-Nora Dunn-Eddie Jemison-Paul Satterfield-Mark Kiely-Sally Kirkland-Tony Bennett-Timothy Di Pri-Brian Tahash-Lou Felder-Lillian Adams-Christopher Darga-Jack Jozefson-Mark Adair-Rios-Enrique Almeida-Noel Gugliemi-Rolando Molina-Emilio Rivera-Mary Pat Gleason-Don Dowe-P.J. Byrne-Albert P. Santos-Madeline Lovejoy-Jovan Allie-Koby Allie-Dan Desmond-Selma Stern-Alfred Dennis-Rina Fernandez-Robert Curtis Brown-Michael Brownlee-Ted Garcia-Maria Quiban-Shaun Robinson-Saida Pagan-Ken Rudulph-Gina St. John-Michael Villani-Christina Grandy-Allen Lulu-Jamison Yang-Bette Rae-Andrew Romero Hateley-Nick Huff-Greg Collins-Dougald Park-Susan Ware-John Rosenfeld-Carey Scott-David A. Clemons-Bradley Stryker-Michael Guarnera-Laura Carson-Zachary Aaron Krebs-Ben Livingston-Nelson Mashita-Glen Yrigoyen-Dohn Norwood-Michael Olifiers-Howard S. Lefstein-Miah Won-Darcy Fowers-Laura-Shay Griffin-Darius Rose-Micayla Bowden-Sammy Boyarsky-Dylan Ferguson-Cubbie Kile-Emily Needham-Alex Villiers-Monique Daniels-Ara Celi-Jessica Leigh Mattson-Allison McCurdy-Patti McLafferty-Janelle Pierzina-Annie Wersching-Ashley Yegan-Micah Stephen Williams-William Thomas Jr.-Tom Beyer-Max Grod��nchik-Michael Bofshever-Colby French-Manny Suarez-Shashawnee Hall-Carrie Quinn Dolin-Vanna Salviati-Scott DeFoe-David Carrera,christianity-moon-moses-street gang-lovesickness-journalism-new love-faith-prayer-god-car crash-religion-relationship-news reporter-female journalist-religious conflict-responsibility-praying-almighty,/f0QqG14SZYYZcV4VWykVc5w13dz.jpg,/8bQbejOvAKe78RXxpkfM04n0K18.jpg,854-1624-1593-2698-3049-953-10201-9339-607-45243-425-8467-118-608-9738-809-18360-772-2048-8960-2105 +61791,Rise of the Planet of the Apes,Thriller-Action-Drama-Science Fiction,en,A highly intelligent chimpanzee named Caeser has been living a peaceful suburban life ever since he was born. But when he gets taken to a cruel primate facility Caeser decides to revolt against those who have harmed him.,63.084,Dune Entertainment III-Dune Entertainment-Chernin Entertainment-Ingenious Media-Big Screen Productions-20th Century Fox,8/3/11,93000000,482860185,105,Released,Evolution Becomes Revolution.,7.3,10419,James Franco-Andy Serkis-Freida Pinto-John Lithgow-Brian Cox-Tom Felton-David Hewlett-Tyler Labine-David Oyelowo-Jamie Harris-Ty Olsson-Chelah Horsdal-Jesse Reid-Joey Roche-Madison Bell-Makena Joy-B. J. Harrison-Mattie Hawkinson-Karin Konoval-Terry Notary-Richard Ridings-Christopher Gordon-Devyn Dalton-Jay Caputo-Leah Gibson-Tracy Spiridakos-Chris Shields-Lauren Watson-Ivan Wanis-Ruiz,intelligence-zoo-cage-dystopia-alzheimer's disease-golden gate bridge-ape-monkey-medical research,/cjLsuP75UDlRdJVMXzXg3TJ4umX.jpg,/v7JTQy194gRbljdlK4OJhwnOypQ.jpg,119450-281338-1858-8373-6479-1865-49538-38356-20526-285-58574-58-39254-557-607-2048-559-41154-1771-36668-10528 +857,Saving Private Ryan,Drama-History-War,en,As U.S. troops storm the beaches of Normandy three brothers lie dead on the battlefield with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.,87.283,Paramount-Amblin Entertainment-Mutual Film Company-DreamWorks Pictures-The Mark Gordon Company,7/24/98,70000000,481840909,169,Released,The mission is a man.,8.204,13987,Tom Hanks-Tom Sizemore-Edward Burns-Matt Damon-Barry Pepper-Adam Goldberg-Vin Diesel-Giovanni Ribisi-Ted Danson-Jeremy Davies-Paul Giamatti-Dennis Farina-Joerg Stadler-Max Martini-Dylan Bruno-Daniel Cerqueira-Demetri Goritsas-Ian Porter-Gary Sefton-Julian Spencer-Steve Griffin-William Marsh-Marc Cass-Markus Napier-Neil Finnighan-Peter Miles-Paul Garcia-Seamus McQuade-Ronald Longridge-Adam Shaw-Rolf Saxon-Corey Johnson-Loclann Aiken-John Barnett-Maclean Burke-Victor Burke-Aiden Condron-Paschal Friel-Shane Hagan-Paul Hickey-Shane Johnson-Laird Macintosh-Brian Maynard-Martin McDougall-Mark Phillips-Lee Aaron Rosen-Andrew Scott-Matthew Sharp-Vincent Walsh-Grahame Wood-John Sharian-Glenn Wrage-Crofton Hardester-Martin Hub-Raffaello Degruttola-Nigel Whitmey-Sam Ellis-Erich Redman-Tilo Keiner-Stephan Grothgar-Stephane Cornicard-Michelle Evans-Martin Beaton-Anna Maguire-Nathan Fillion-Leland Orser-Michael Mantas-David Vegh-Ryan Hurst-Nick Brooks-Sam Scudder-John Walters-Dorothy Grumbar-James Innes-Smith-Harve Presnell-Dale Dye-Bryan Cranston-David Wohl-Eric Loren-Valerie Colgan-Amanda Boxer-Harrison Young-Kathleen Byron-Rob Freeman-Thomas Gizbert-Nina Muschallik-Taylor Murphy-Mac Steinmeier-Derek Lea-Leo Stransky-Vincent Ventresca,war crimes-self sacrifice-war veteran-world war ii-war ship-airplane-bravery-normandy france-parachute-troops-waffen ss-omaha beach-army-epic-cowardice-d-day-based on true story-rescue mission-war memorial-deserted town-soldier-death-military-military operation-1940s,/1wY4psJ5NVEhCuOYROwLH2XExM2.jpg,/bdD39MpSVhKjxarTxLSfX6baoMP.jpg,98-13-424-197-807-16869-497-603-280-121-1422-329-85-680-105-120-122-278-274-89-1891 +315162,Puss in Boots: The Last Wish,Animation-Family-Fantasy-Adventure-Comedy,en,Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.,904.25,DreamWorks Animation-Universal Pictures,12/7/22,90000000,480000000,103,Released,Say hola to his little friends.,8.284,5759,Antonio Banderas-Salma Hayek Pinault-Harvey Guill��n-Wagner Moura-Florence Pugh-Olivia Colman-Ray Winstone-Samson Kayo-John Mulaney-Da'Vine Joy Randolph-Anthony Mendez-Kevin McCann-Bernardo de Paula-Betsy Sodaro-Artemis Pebdani-Conrad Vernon-Cody Cameron-Kailey Crawford-Al Rodrigo-Bob Persichetti-Miguel Matrai-Pilar Uribe-Heidi Gardner-Joel Crawford-Januel Mercado-James Ryan-Natalia Cronembold-Paul Fisher-Aydrea Walden,fairy tale-talking dog-spin off-aftercreditsstinger-talking cat-fear of death,/kuf6dutpsT0vSVehic3EZIqkOBt.jpg,/jr8tSoJGj33XLgFBy6lmZhpGQNu.jpg,943822-1033456-505642-1011679-1058949-100088-135195-1078862-1047431-646389-10841-197158-631842-837925-536554 +771,Home Alone,Comedy-Family,en,Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house the plucky kid stands ready to defend his territory. By planting booby traps galore adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before Christmas Day.,9.975,Hughes Entertainment-20th Century Fox,11/16/90,18000000,476684675,103,Released,A family comedy without the family.,7.427,10519,Macaulay Culkin-Joe Pesci-Daniel Stern-Roberts Blossom-Catherine O'Hara-John Heard-Devin Ratray-John Candy-Michael C. Maronna-Hillary Wolf-Gerry Bamman-Angela Goethals-Terrie Snell-Kieran Culkin-Diana Rein-Kristin Minter-Ralph Foody-Michael Guido-Larry Hankin-Ken Hudson Campbell-Hope Davis-Billie Bird-Bill Erwin-Jeffrey Wiseman-Virginia Smith-Ray Toler-Clarke Devereux-D. Danny Warhol-Matt Doherty-Jedidiah Cohen-Senta Moses-Anna Slotky-Gerry Becker-Victor Cole-Porscha Radcliffe-Brittany Radcliffe-Peter Siragusa-Alan Wilder-Dianne B. Shaw-James Ryan-Mark Beltzman-Ann Whitney-Jim Ortlieb-Monica Devereux-Lynn Mansbach-Tracy J. Connor-Sandra Macat-Richard J. Firfer-Kate Johnson-Peter Pantaleo-Jean-Claude Sciore-Edward Bruzan-Frank Cernugel-Eddie Korosa-Robert Okrzesik-Leo Perion-Vince Waidzulis-John Hardy-Michael Hansen,burglar-holiday-family relationships-slapstick comedy-little boy-home invasion-precocious child-booby trap-home alone-suburban chicago-mischievous child-christmas-kids on their own-child rescue,/onTSipZ8R3bliBdKfPtsDuHTdlL.jpg,/6uLhSLXzB1ooJ3522ydrBZ2Hh0W.jpg,772-9714-24257-12536-21-1593-196-854-8844-601-953-165-310-9354-425-788-620-5825-134375-8871-882 +640146,Ant-Man and the Wasp: Quantumania,Action-Adventure-Science Fiction,en,Super-Hero partners Scott Lang and Hope van Dyne along with with Hope's parents Janet van Dyne and Hank Pym and Scott's daughter Cassie Lang find themselves exploring the Quantum Realm interacting with strange new creatures and embarking on an adventure that will push them beyond the limits of what they thought possible.,4425.387,Marvel Studios-Kevin Feige Productions,2/15/23,200000000,475766228,125,Released,Witness the beginning of a new dynasty.,6.507,2811,Paul Rudd-Evangeline Lilly-Jonathan Majors-Kathryn Newton-Michelle Pfeiffer-Michael Douglas-Corey Stoll-Bill Murray-William Jackson Harper-David Dastmalchian-Jamie Andrew Cutler-Katy O'Brian-Mark Weinman-Randall Park-Ross Mullan-Tom Clark-Leon Cooke-Nathan Blees-Durassie Kiangangu-Liran Nathan-Sam Symons-Grahame Fox-Nicola Peluso-Harrison Daniels-Brahmdeo Shannon Ramana-Russell Balogh-Leonardo Taiwo-Osian Roberts-Lucas Gerstel-Mia Gerstel-Tracy Jeffrey-Dinah Jeffrey-Judy Jeffrey-John Nayagam-Greta Nayagam-Cathy Chan-Adam Sai-Jamie Sai-Jakari Fraser-Patricia Belcher-Mark Oliver Everett-Ruben Rabasa-Melanie Garcia-Gregg Turkington-Sierra Katow-Ryan Bergara-Marielle Scott-Jake Millgard-Dey Young-Briza Covarrubias-Tess Aubert-David J. Castillo-Sir Cornwell-Alan Heitz-Esther McAuley-Aisling Maria Andreica-Milton Lopes-Roger Craig Smith-Matthew Wood-Loveday Smith-John Townsend-Tom Hiddleston-Owen Wilson-Abby Ryder Fortson,hero-ant-sequel-superhero-based on comic-family-superhero team-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/qnqGbB22YJ7dSs4o6M7exTpNxPz.jpg,/m8JTwHFwX7I7JY5fPe4SjqejWag.jpg,823999-676841-868759-734048-267805-965839-1033219-1035806-946310-811948-842942-772515-1058949-1105283-938992-1077280-76600-677179-802401-461191-980078 +118,Charlie and the Chocolate Factory,Adventure-Comedy-Family-Fantasy,en,A young boy wins a tour through the most magnificent chocolate factory in the world led by the world's most unusual candy maker.,186.776,Warner Bros. Pictures-Village Roadshow Pictures-The Zanuck Company-Plan B Entertainment-Theobald Film Productions,7/13/05,150000000,475000000,115,Released,Prepare for a taste of adventure.,7.049,14453,Johnny Depp-Freddie Highmore-David Kelly-Helena Bonham Carter-Noah Taylor-Missi Pyle-James Fox-Deep Roy-Christopher Lee-Adam Godley-Franziska Troegner-AnnaSophia Robb-Julia Winter-Jordan Fry-Philip Wiegratz-Blair Dunlop-Liz Smith-Eileen Essell-David Morris-Nitin Ganatra-Shelley Conn-Chris Cresswell-Philip Philmar-Tony Kirwood-Todd Boyce-Nayef Rashed-Menis Yousry-Harry Taylor-Hubertus Geller-Francesca Hunt-Garrick Hagon-Kevin Eldon-Mark Heap-Roger Frost-Oscar James-Colette Appleby-D��bora Monteiro-Annette Badland-Steve Hope Wynne-Geoffrey Holder-Elena Buda-Rene Costa-Danny Elfman-Aiko Horiuchi-Brigitte Millar-Valery Richardson-John Warman-Tracy Yarkoni-Jynine James,factory worker-london england-based on novel or book-chocolate-candy-overweight child-parent child relationship-grandparent grandchild relationship-teacher-candy bar,/wfGfxtBkhBzQfOZw4S8IQZgrH0a.jpg,/bSvUW4JQ6g4QiKvwejcfcPRd4Ke.jpg,12155-162-3933-425-1593-285-809-58-411-808-2062-62213-675-950-953-767-674-1865-310-12444-22 +89,Indiana Jones and the Last Crusade,Adventure-Action,en,In 1938 an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it and the missing man is his own father Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old man's notebook which his father had mailed to him before he went missing. Indy arrives in Venice where he enlists the help of a beautiful academic Dr. Elsa Schneider along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!,45.213,Paramount-Lucasfilm Ltd.,5/24/89,48000000,474171806,127,Released,"The man with the hat is back. And this time, he's bringing his Dad.",7.838,8802,Harrison Ford-Sean Connery-Denholm Elliott-Alison Doody-John Rhys-Davies-Julian Glover-River Phoenix-Michael Byrne-Kevork Malikyan-Robert Eddison-Richard Young-Alexei Sayle-Alex Hyde-White-Paul Maxwell-Isla Blair-Vernon Dobtcheff-J.J. Hardy-Bradley Gregg-Jeff O'Haco-Vince Deadrick Sr.-Marc Miles-Ted Grossman-Tim Hiser-Larry Sanders-Will Miles-David Murray-Frederick Jaeger-Jerry Harte-Billy J. Mitchell-Martin Gordon-Paul Humpoletz-Tom Branch-Graeme Crowther-Luke Hanson-Chris Jenkinson-Nicola Scott-Louis Sheldon-Stefan Kalipha-Peter Pacey-Pat Roach-Suzanne Roquette-Eugene Lipinski-George Malpas-Julie Eccles-Nina Armstrong-Albert Evansky-Ronald Lacey-Michael Sheard-Roy Beck-Paul Markham-Hugh Elton-Lee Richards-Nick Gillard-Tip Tipping-Chris Webb-Paul Heasman-Derek Lyons-Vic Armstrong-Peter Diamond-Martin Grace-Dickey Beer-Wayne Michaels-Graham Cole,germany-saving the world-venice italy-holy grail-riddle-nazi-entrapment-crusader-brotherhood-zeppelin-book burning-tank-nazi officer-boat chase-gestapo-single father-traveling circus-archaeologist-bible quote-medieval-boy scouts-german soldier-motorcycle chase-hindenburg-german agent-1930s-biblical archaeology-father son relationship-adolf hitler-german language-knights templar-nazi germany-the crusades-german castle,/riO8WLCG9BbuhQfBpbnXFKzBcgL.jpg,/S6lLHuyh86V6SDRkSBsbuVTE6n.jpg,87-85-217-1892-562-165-1891-196-1573-329-218-105-679-280-11-197-1895-1894-1893-1572-2501 +254128,San Andreas,Action-Drama-Thriller,en,In the aftermath of a massive earthquake in California a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.,84.289,New Line Cinema-Village Roadshow Pictures-Flynn Picture Company-Warner Bros. Pictures,5/27/15,110000000,473990832,114,Released,"A rescue pilot survived an earthquake, this is what happens next",6.207,7542,Dwayne Johnson-Alexandra Daddario-Carla Gugino-Ioan Gruffudd-Archie Panjabi-Paul Giamatti-Hugo Johnstone-Burt-Art Parkinson-Will Yun Lee-Kylie Minogue-Colton Haynes-Todd Williams-Matt Gerald-Alec Utgoff-Marissa Neitling-Morgan Griffin-Breanne Hill-Laurence Coy-Fiona Press-Dennis Coard-Ben McIvor-Nick Allen-Ducat-Claire Lovering-Sophia Emberson-Bain-Julian Shaw-Sofie Formica-Julie Brandt-Richards-Hugh Boddam-Whetham-Brad McMurray-John Reynolds-Simone Kessell-Saskia Williscroft-Arabella Morton-Hayley Sullivan-Renee Somerfield-Joey Vieira-Benjamin Blankenship-Barry Southgate-Nikki Green-Calum Grant-Eduardo Ambriz DeColosio-Michael Asberry-Teirrah McNair-Michael Yamaguchi-AnnaCorey-Stephen Chang-Hayley Gagner-Stephanie Johnston-Tom O'Reilly-Vanessa Ross-Andrea Walker-Allan Poppleton,california-earthquake-tidal wave-catastrophe-disaster movie-san andreas california-helicopter crash-rescue operation,/2Gfjn962aaFSD6eST6QU3oLDZTo.jpg,/ipjZVitWMjrVd2hoWKU2waVdxGy.jpg,168259-135397-87101-158852-294254-257344-262500-198663-260346-98566-238713-214756-99861-177677-198184-102899-166424-91314-76757-119450-157350 +159824,Hotel Transylvania 2,Animation-Comedy-Family-Fantasy,en,When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.,42.785,Columbia Pictures-Sony Pictures Animation,9/21/15,80000000,473226958,89,Released,They're back to raise a little terror,6.8,5119,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-Steve Buscemi-David Spade-Keegan-Michael Key-Asher Blinkoff-Fran Drescher-Molly Shannon-Megan Mullally-Nick Offerman-Dana Carvey-Rob Riggle-Mel Brooks-Jonny Solomon-Chris Kattan-Sadie Sandler-Sunny Sandler-Jon Lovitz-Robert Smigel-Ava Acres-Cole Sand-Rose Abdoo-Luenell-Melissa Sturm-Paul Brittain-Chris Parnell-Allen Covert-Stephen Apostolina-Brian T. Delaney-Aaron LaPlante-Steve Blum-Melendy Britt-David Cowgill-Jessica Gee-George-Grant George-Nicholas Guest-Todd Haberkorn-Jess Harnell-Bridget Hoffman-Lex Lang-Mona Marshall-Joseph Sanfelippo-Kirk Thornton-Matthew Wolf-Eva Bella-Jaeden Bettencourt-Mia Sinclair Jenness-Logan Kishi-Megan Richie-Andre Robinson-Carter Sand-Gunnar Sizemore-Fred Tatasciore-Kari Wahlgren-Audrey Wasilewski-Debra Wilson-Jim Wise-Michael-Leon Wooley-Lynnanne Zager-Nick Swardson-Jared Sandler-Jonathan Loughran,transylvania-hotel-witch-technology-magic-mummy-skeleton-only child-backpacker-marriage-wolfman-zombie-moving out-invisible person-new life-dracula,/kKFgwQnR5q08UFsAvtoYyTIiHyj.jpg,/kXzmbhCx34lFSFVKxYUf54j2TZf.jpg,76492-400155-140300-10527-93456-172385-109451-8355-80321-22794-278154-211672-38757-953-49444-105864-109445-228161-49519-150540-57800 +474350,It Chapter Two,Horror-Fantasy,en,27 years after overcoming the malevolent supernatural entity Pennywise the former members of the Losers' Club who have grown up and moved away from Derry are brought back together by a devastating phone call.,84.317,New Line Cinema-Vertigo Entertainment-Double Dream-Rideback,9/4/19,79000000,473122525,169,Released,You'll Float Again,6.9,7558,Bill Skarsg��rd-James McAvoy-Jessica Chastain-Bill Hader-Isaiah Mustafa-Jay Ryan-James Ransone-Andy Bean-Jaeden Martell-Jack Dylan Grazer-Finn Wolfhard-Sophia Lillis-Chosen Jacobs-Jeremy Ray Taylor-Wyatt Oleff-Teach Grant-Nicholas Hamilton-Javier Botet-Xavier Dolan-Taylor Frey-Molly Atkinson-Joan Gregson-Stephen Bogaert-Luke Roessler-Stephen King-Peter Bogdanovich-Will Beinbrink-Jess Weixler-Martha Girvin-Ryan Kiera Armstrong-Jackson Robert Scott-Jake Weary-Katie Lunman-Kelly Van der Burg-Jason Fuchs-Joe Bostick-Megan Charpentier-Juno Rinaldi-Neil Crone-Ry Prior-Owen Teague-Jake Sim-Logan Thompson-Connor Smith-Amanda Zhou-Rob Ramsay-John Connon-Doug MacLeod-Brandon Crane-Erik Junnola-Josh Madryga-Peter George Commanda-Kiley May-Lisa Cromarty-Kevin Allan Hess-Stephen R. Hart-Rocky L. Burnham Jr.-Billy Merasty-Sladen Peltier-Ari Cohen-Alex Bird-Brody Bover-Edie Inksetter-Martin Julien-Sonia Maria Chirila-Colin Mcleod-Declan Prior-Marko Vujicic-Eric Woolfe-Kate Corbett-Shawn Storer-Janet Porter-Scott Edgecombe-Anthony Ulc-J. Bogdan-Louise Stratten-Laura Thorne-Thomas Duhig-Carla Guerrier-Liam MacDonald-Chris D'Silva-Tristan Levi Cox-Torian Matthew Cox-Lola Del Re Hudson-Thiago Dos Santos-Divan Meyer,clown-carnival-sequel-remake-maine-creature-fear-ancient evil-loss of a friend-2016,/zfE0R94v1E8cuKAerbskfD3VfUt.jpg,/8moTOzunF7p40oR5XhlDvJckOSW.jpg,346364-475557-17439-299018-15402-418950-521029-420818-429617-48209-501170-466272-177330-525702-567609-804706-439079-138843-320288-338967-530385 +82690,Wreck-It Ralph,Family-Animation-Comedy-Adventure,en,Wreck-It Ralph is the 9-foot-tall 643-pound villain of an arcade video game named Fix-It Felix Jr. in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain Ralph escapes his game and lands in Hero's Duty a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush a kart racing game set on tracks made of candies cookies and other sweets. There Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade and one that Ralph may have inadvertently started.,88.88,Walt Disney Animation Studios-Walt Disney Pictures,11/1/12,165000000,471222889,101,Released,The story of a regular guy just looking for a little wreck-ognition.,7.3,11170,John C. Reilly-Sarah Silverman-Jack McBrayer-Jane Lynch-Ed O'Neill-Dennis Haysbert-Edie McClurg-Alan Tudyk-Jess Harnell-Mindy Kaling-Joe Lo Truglio-Raymond S. Persi-Rachael Harris-Skylar Astin-Adam Carolla-Horatio Sanz-Maurice LaMarche-Stefanie Scott-John DiMaggio-Rich Moore-Katie Lowes-Jamie Elman-Josie Trinidad-Cymbre Walk-Tucker Gilmore-Brandon Scott-Tim Mertens-Kevin Deters-Gerald C. Rivers-Martin Jarvis-Brian Kesinger-Roger Craig Smith-Phil Johnston-Reuben Langdon-Kyle Hebert-Jamie Sparer Roberts-Ava Acres-Isabella Acres-Bob Bergen-David Boat-Mike Carlsen-Reed Buck-David Cowgill-Jim Cummings-Terri Douglas-Sandy Fox-Eddie Frierson-Earl Ghaffari-Emily Hahn-Jennifer Hale-Daniel Kaz-Dave Kohut-Lauren MacMullan-Mona Marshall-Scott Menville-Laraine Newman-Paul Pape-Lynwood Robinson-Trenton Rogers-Jadon Sand-Kath Soucie-April Stewart-Fred Tatasciore-Jennifer Christine Vera-Elizabeth Daily-Will Deters-Debi Derryberry,support group-product placement-bullying-jail-racing-arcade-medal-self esteem-curiosity-precocious child-aftercreditsstinger-duringcreditsstinger-first person shooter-glitch-carefree-interrupted wedding-social reject-escape from jail-hoverboard-purpose of life,/zWoIgZ7mgmPkaZjG0102BSKFIqQ.jpg,/riKyo85CmJU48ZaSMLpuDNTZHuE.jpg,20352-62177-10191-38757-585-93456-10193-57800-62211-953-76492-9502-49519-14160-12-10681-2062-863-862-425-9806 +578,Jaws,Horror-Thriller-Adventure,en,When an insatiable great white shark terrorizes the townspeople of Amity Island the police chief an oceanographer and a grizzled shark hunter seek to destroy the blood-thirsty beast.,40.454,Zanuck/Brown Productions-Universal Pictures,6/20/75,7000000,470653000,124,Released,Don't go in the water,7.654,9184,Roy Scheider-Robert Shaw-Richard Dreyfuss-Murray Hamilton-Lorraine Gary-Jay Mello-Jeffrey Kramer-Carl Gottlieb-Susan Backlinie-Lee Fierro-Craig Kingsbury-Phil Murray-Fritzi Jane Courtney-Belle McDonald-Ted Grossman-Robert Nevin-Peter Benchley-Dorothy Fielding-David Engelbach-Joseph Oliveira-Beverly Powers-Ayn Ruymen-Christopher Sands-Rex Trailer-Joe La Creta-Denise Cheshire-Steven Spielberg,based on novel or book-beach-fishing-atlantic ocean-bathing-shipwreck-shark attack-police chief-ferry boat-dying and death-animal attack-long island new york-dead child-creature-skinny dipping-shark-great white shark-dead dog-child killed by animal-fourth of july-severed leg-fishing boat-animal horror-shark cage,/lxM6kqilAdpdhqUl2biYp5frUxE.jpg,/p3DeIBpSrg0R0yCIRhgEMvfY7mb.jpg,579-601-17692-9552-85-348-329-580-89-694-87-840-620-105-927-1366-218-539-165-679-1091 +399566,Godzilla vs. Kong,Action-Fantasy-Science Fiction,en,In a time when monsters walk the Earth humanity��s fight for its future sets Godzilla and Kong on a collision course that will see the two most powerful forces of nature on the planet collide in a spectacular battle for the ages.,80.388,Legendary Pictures,3/24/21,200000000,470116094,114,Released,One Will Fall,7.676,8925,Alexander Skarsg��rd-Millie Bobby Brown-Rebecca Hall-Brian Tyree Henry-Shun Oguri-Eiza Gonz��lez-Julian Dennison-Lance Reddick-Kyle Chandler-Demi��n Bichir-Kaylee Hottle-Hakeem Kae-Kazim-Ronny Chieng-John Pirruccello-Chris Chalk-Conlan Casal-Brad McMurray-Benjamin Rigby-Nick Turello-Daniel Nelson-Priscilla Doueihy-Kei Kudo-Bradd Buckley-John Walton-Daniel Tuiara-David Castillo-Kofi Yiadom-Jim Palmer-Drew Walton-Tara Wraith-Jason Virgil-Grisel Toledo-Jason Szabo-Jason Speer-Sen Shao-Scott M. Schewe-Charles Sans-Tasneem Roc-Jon Quested-Joel Pierce-Sofia Nolan-Shawn McBride-Victoria Liu-Sonny Le-Santi Lawson-Garreth Hadfield,giant monster-dinosaur-creature feature-kaiju-sign languages-giant ape-monsterverse-robot dinosaur-king kong,/pgqgaUx1cJb5oZQQ5v0tNARCeBp.jpg,/inJjDhCjfhh3RtrJWBmmDqeuSYC.jpg,1133698-791373-460465-513980-373571-893345-926680-458576-436969-615457-464052-497698-527774-566525-124905-412656-503736-451048-588228-580489-524434 +18785,The Hangover,Comedy,en,When three friends finally come to after a raucous night of bachelor-party revelry they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend Doug ��� who's supposed to be tying the knot. Launching a frantic search for Doug the trio perseveres through a nasty hangover to try to make it to the church on time.,121.193,Legendary Pictures-Green Hat Films-Warner Bros. Pictures,6/2/09,35000000,469310836,100,Released,Some guys just can't handle Vegas.,7.314,16005,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Heather Graham-Sasha Barrese-Jeffrey Tambor-Ken Jeong-Rachael Harris-Mike Tyson-Mike Epps-Jernard Burks-Rob Riggle-Cleo King-Bryan Callen-Matt Walsh-Ian Anthony Dale-Michael Li-Sondra Currie-Gillian Vigman-Nathalie Fay-Chuck Pacheco-Jesse Erwin-Dan Finnerty-Keith Lyle-Brody Stevens-Todd Phillips-Mike Vallely-James Martin Kelly-Murray Gershenz-Andrew Astor-Casey Margolis-Ken Flaherty-Joe Alexander-Constance Broge-Sue Pierce-Floyd Levine-Robert A. Ringler-Britt Barrett-Chauntae Davies-Alisa Allapach-Nicholas Furu-Angelica Flameno-Lily Winn-Katerina Moutsatsou-Faleolo Alailima-Rio Ahn-Joey Brander-John Jason Bailey-Cody Deal-Natalie Cohen-Carrie Keagan-Stephanie Mathis-Guile Branco-Richard Alan Reid-Tom Spano-Lanette Fugit Hannah-David Hill-Mitch Holleman-Jessica Simons-Anthony Mingilino-Michael A. Rizza-Charlene Geisler-Kaitlin Clark-Heather Roop-Joe Satriani-Carrot Top-Jaira Valenti-Anat Gerber-Victor Yerrid,blackjack-stag night-lost weekend-chapel-hit with tire iron-memory loss-las vegas-drugs,/uluhlXubGu1VxU63X9VHCLWDAYP.jpg,/2o0PKGmnSgCGkzoSePNAqse8Ure.jpg,45243-109439-72105-10528-607-23483-14160-585-22-6479-12-8681-557-425-58-20352-597-1271-51876-1865-41154 +137106,The Lego Movie,Animation-Family-Adventure-Comedy-Fantasy,en,An ordinary Lego mini-figure mistakenly thought to be the extraordinary MasterBuilder is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.,28.816,Village Roadshow Pictures-Vertigo Entertainment-Lin Pictures-LEGO-Animal Logic-Warner Animation Group-RatPac Entertainment,2/6/14,60000000,469160692,100,Released,The story of a nobody who saved everybody.,7.415,6910,Chris Pratt-Elizabeth Banks-Will Ferrell-Morgan Freeman-Will Arnett-Liam Neeson-Alison Brie-Nick Offerman-Charlie Day-Channing Tatum-Jonah Hill-Cobie Smulders-Anthony Daniels-Billy Dee Williams-Keith Ferguson-Shaquille O'Neal-Will Forte-Dave Franco-Jake Johnson-Keegan-Michael Key-Todd Hansen-David Burrows-Chris McKay-Jorma Taccone-Christopher Miller-Chris Romano-Kelly Lafferty-Graham Miller-Amanda Farinos-Craig Berry-Doug Nicholas-Chris Paluszek-Melissa Sturm-Leiki Veskimets-Jadon Sand,prophecy-parent child relationship-friendship-superhero-based on comic-part live action-based on toy-falling in love-super power-good cop bad cop-duringcreditsstinger-live action and animation-lego-father son relationship-evil tyrant,/9klB7qKC9aCeGyyM4uU5hSA6xDV.jpg,/9531Jp42H0ppRXjkxxgCulnQNZp.jpg,148107-82702-280217-324849-82690-109445-127585-62211-786553-102382-100402-124905-177572-57158-187017-93456-109451-274862-10191-137113-10193 +424783,Bumblebee,Action-Adventure-Science Fiction,en,On the run in the year 1987 Bumblebee finds refuge in a junkyard in a small Californian beach town. Charlie on the cusp of turning 18 and trying to find her place in the world discovers Bumblebee battle-scarred and broken. When Charlie revives him she quickly learns this is no ordinary yellow VW bug.,40.543,Paramount-Di Bonaventura Pictures-Bay Films-Tom DeSanto/Don Murphy Production-Allspark Pictures,12/15/18,135000000,467989645,113,Released,Every hero has a beginning.,6.7,5312,Hailee Steinfeld-John Cena-Jorge Lendeborg Jr.-John Ortiz-Jason Ian Drucker-Pamela Adlon-Stephen Schneider-Len Cariou-Glynn Turman-Gracie Dzienny-Ricardo Hoyos-Lenny Jacobson-Megyn Price-Kollin Holtz-Fred Dryer-Isabelle Ellingson-Mika Kubo-Felicia Stiles-George Anagnostou-Brandon Wardle-Krystin Goodwin-Nick Pilla-Sachin Bhatt-Tim Martin Gleason-David Waters-Antonio D. Charity-Courtney Coker-Edwin Hodge-Jake Huang-Holland Diaz-Dave Cutler-Lars Slind-Dylan O'Brien-Peter Cullen-Angela Bassett-Justin Theroux-David Sobolov-Grey DeLisle-Jon Bailey-Steve Blum-Andrew Morgado-Kirk Baily-Dennis Singletary-Vanessa Ross-Tony Toste-Nico Abiera-Jiana Alvarez-Jace Areff-Manny Avina-William W. Barbour-Jesse Stoudt-DeMark Thompson-Boston Rush Freeman,technology-based on toy-robot-spin off-1980s,/fw02ONlDhrYjTSZV8XO6hhU3ds3.jpg,/17nDJQsGVim6oows2TlN98UacbO.jpg,297802-407204-338490-56841-428078-324857-335988-287947-335983-299537-399579-363088-404368-375588-450465-480530-91314-166428-320288-338952-8373 +54138,Star Trek Into Darkness,Action-Adventure-Science Fiction,en,When the crew of the Enterprise is called back home they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for leaving our world in a state of crisis. With a personal score to settle Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death love will be challenged friendships will be torn apart and sacrifices must be made for the only family Kirk has left: his crew.,40.468,Bad Robot-Paramount-Kurtzman/Orci-Skydance Media,5/5/13,190000000,467365246,132,Released,Earth Will Fall,7.331,8335,Chris Pine-Zachary Quinto-Zoe Salda��a-Karl Urban-Simon Pegg-John Cho-Benedict Cumberbatch-Anton Yelchin-Bruce Greenwood-Peter Weller-Alice Eve-Leonard Nimoy-Noel Clarke-Nazneen Contractor-Amanda Foreman-Jay Scully-Jonathan Dixon-Aisha Hinds-Joseph Gatt-Jeremy Raymond-Tony Guma-Kimberly Arland-Sean Blakemore-Nick E. Tarabay-Beau Billingslea-Deep Roy-Anjini Taneja Azhar-Jack Laufer-Katie Cockrell-Kellie Cockrell-Jason Matthew Smith-Seth Ayott-Marco Sanchez-Lee Reherman-Scott Lawrence-Usman Ally-Nolan North-James Hiroyuki Liao-Rob Moran-Berit Francis-Akiva Goldsman-Benjamin P. Binswanger-Christopher Doohan-Andy Demetrio-Gianna Simone-Rene Rosado-Jacquelynn King-Long Tran-Ningning Deng-Jodi Johnston-Colleen Harris-Jeff Chase-Monisola Akiwowo-Paul K. Daniel-Ser'Darius Blain-Heather Langenkamp-David C. Waite-Melissa Paulo-Cynthia Addai-Robinson-Drew Grey-Douglas Weng-Charlie Haugk-Max Chernov-Marc Primiani-Jesper Inglis-Jacob Rhodes-Kentucky Rhodes-Anthony Wilson-Eric Greitens-Melissa Steinman-Adam McCann-Jon Orvasky-Gerald W. Abrams-James McGrath-Brian T. Delaney-Arlen Escarpeta-Joe Moses-Kevin Michael Richardson-David Sobolov-Matthew Wood-Fred Tatasciore-Kiff VandenHeuvel-Audrey Wasilewski-Bill Hader-Britanni Johnson-Chris Gardner-Julianne Buescher-Joe Hanna-David Acord-Elle Newlands-Candice Renee-Emily Towers-Gina Hirsch-Tom Archdeacon-Jon Lee Brody-Hiram A. Murray-Fernando Chien,spacecraft-friendship-sequel-futuristic-space-alien-mysterious force-space opera-terrorist bombing-new beginning,/7XrRkhMa9lQ71RszzSyVrJVvhyS.jpg,/npDrIM6ZbuD7nUxI7ZzNBxs4IRF.jpg,13475-188927-68721-49521-75612-37724-49538-68726-49051-70981-56292-59967-76170-49026-1930-64635-68724-58574-24428-72190-10528 +98,Gladiator,Action-Drama-Adventure,en,In the year 180 the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne Maximus is set to be executed. He escapes but is captured by slave traders. Renamed Spaniard and forced to become a gladiator Maximus must battle to the death with other men for the amusement of paying audiences.,55.201,Universal Pictures-Scott Free Productions-Red Wagon Entertainment-Mill Film-C & L-Dawliz-DreamWorks Pictures,5/4/00,103000000,465361176,155,Released,A Hero Will Rise.,8.206,16189,Russell Crowe-Joaquin Phoenix-Connie Nielsen-Oliver Reed-Richard Harris-Derek Jacobi-Djimon Hounsou-David Schofield-John Shrapnel-Tomas Arana-Ralf Moeller-Spencer Treat Clark-David Hemmings-Tommy Flanagan-Sven-Ole Thorsen-Omid Djalili-Nicholas McGaughey-Chris Kell-Tony Curran-Mark Lewis-John Quinn-Alun Raglan-David Bailie-Chick Allan-David Nicholls-Al Hunter Ashton-Billy Dowd-Ray Calleja-Giannina Facio-Giorgio Cantarini-Allan Corduner-Michael Mellinger-Said Amel-Adam Levy-Gilly Gilchrist-Paul Bateman-Nick Beardshaw-Corey Booth-Michael Dickins-Malcolm Ellul-Simon Faulkner-James Fiddy-Peter Francis-Wemyss-Ruth Frendo-Cara Higgins-Earl Hundt-Mehdi Kashani-Tom Kay-Phil Lowes-Nic Main-Ray Mangion-Antonio Meitin-Jo��o Costa Menezes-Mike Mitchell-Arnold Montey-Antone Pag��n-Norman Campbell Rees-Neil Roche-Paul Sacks-Steve Saunders-Christopher Say-Brian Smyj-Richard Stride-Tony Tomlinson-Paul Woodadge-Michael Yale,rome italy-parent child relationship-gladiator-arena-senate-roman empire-emperor-slavery-ancient rome-epic-revenge-battlefield-slave auction-historical fiction-ancient world-combat-chariot-philosopher-barbarian horde-2nd century-successor-commodus-maximus,/ty8TGRuvJLPUmAR1H1nRIsgwvim.jpg,/aZtwH3RQ0L8jbInxr7OSc9tlGMJ.jpg,857-197-121-603-1271-120-122-1422-280-16869-85-272-13-329-89-22-105-8587-497-807-550 +603,The Matrix,Action-Science Fiction,en,Set in the 22nd century The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.,66.157,Village Roadshow Pictures-Groucho II Film Partnership-Silver Pictures-Warner Bros. Pictures,3/30/99,63000000,463517383,136,Released,Welcome to the Real World.,8.202,23193,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Joe Pantoliano-Marcus Chong-Anthony Ray Parker-Matt Doran-Gloria Foster-Belinda McClory-Paul Goddard-Robert Taylor-Ada Nicodemou-Julian Arahanga-David Aston-Marc Aden Gray-Deni Gordon-Rowan Witt-Eleanor Witt-Janaya Pender-Adryn White-Natalie Tjen-Bill Young-David O'Connor-Jeremy Ball-Fiona Johnson-Harry Lawrence-Steve Dodd-Luke Quinton-Lawrence Woodward-Michael Butcher-Bernard Ledger-Chris Pattinson-Robert Simper-Nigel Harbach-Rana Morrison-Tamara Brown,saving the world-artificial intelligence-man vs machine-philosophy-prophecy-martial arts-self sacrifice-dream-fight-hacker-insurgence-simulated reality -virtual reality-dystopia-truth-cyberpunk-dream world-woman director-messiah-action hero-gnosticism,/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg,/l4QHerTSbMI7qgvasqxP36pqjN6.jpg,604-605-120-121-27205-122-155-550-11-680-280-98-105-1891-272-1726-857-49026-807-218-13 +114,Pretty Woman,Comedy-Romance,en,When a millionaire wheeler-dealer enters a business contract with a Hollywood hooker Vivian Ward he loses his heart in the bargain.,55.083,Touchstone Pictures-Silver Screen Partners IV,3/23/90,14000000,463406268,119,Released,"She walked off the street, into his life and stole his heart.",7.4,6914,Richard Gere-Julia Roberts-Ralph Bellamy-Jason Alexander-Laura San Giacomo-Alex Hyde-White-Amy Yasbeck-Elinor Donahue-Hector Elizondo-Judith Baldwin-Jason Randal-Bill Applebaum-Tracy Bjork-Gary Greene-Billy Gallo-Abdul Salaam El Razzac-Hank Azaria-Larry Hankin-Julie Paris-Rhonda Hansome-Harvey Keenan-Marty Nadler-Lynda Goodfriend-Reed Anthony-Frank Campanella-Jackie O'Brien-Cheri Caspari-Scott Marshall-Patrick Richwood-Kathleen Marshall-Laurelle Mehus-Don Feldstein-Marvin Braverman-Al Sapienza-Jeff Michalski-James Patrick Stuart-Lloyd T. Williams-R. Darrell Hunter-James Patrick Dunne-Valorie Armstrong-Steve Restivo-Rodney Kageyama-Douglas Stitzel-Larry Miller-Dey Young-Shane Ross-Carol Williard-Minda Burr-Robyn Peterson-Mariann Aalda-RC Everbeck-Michael French-Allan Kent-Stacy Keach Sr.-Lucinda Crosby-Nancy Locke-Calvin Remsberg-Lloyd Nelson-Norman Large-Tracy Reiner-Tom Nolan-John David Carson-Daniel Bardol-Karin Calabro-Bruce Eckstut-Amzie Strickland-Mychael Bates-Gary Bohn-Paul Bradley-Robert Buckingham-Selby Dessner-Rio Hackford-Robert Liguori-Garry Marshall-Charles Minsky-Blair Richwood-Randall Rutledge-John Simone,prostitute-capitalism-hotel-expensive restaurant-sports car-workaholic-fire escape-friendship-los angeles california-beverly hills-piano-bubble bath,/hVHUfT801LQATGd26VPzhorIYza.jpg,/3tuWpnCTe14zZZPt6sI1W9ByOXx.jpg,509-4806-88-251-621-8874-634-745940-462-350-978148-18240-1824-544-11820-9880-11631-4951-788-9489-9441 +920,Cars,Animation-Adventure-Comedy-Family,en,Lightning McQueen a hotshot rookie race car driven to succeed discovers that life is about the journey not the finish line when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros McQueen gets to know the town's offbeat characters.,58.241,Pixar-Walt Disney Pictures,6/8/06,120000000,461983149,117,Released,Ahhh... it's got that new movie smell.,6.949,13194,Owen Wilson-Larry the Cable Guy-Bonnie Hunt-Paul Newman-Tony Shalhoub-Cheech Marin-Michael Wallis-George Carlin-Paul Dooley-Jenifer Lewis-Guido Quaroni-Richard Petty-Michael Keaton-Katherine Helmond-John Ratzenberger-Joe Ranft-Jeremy Piven-Dale Earnhardt Jr.-Mario Andretti-Michael Schumacher-Jay Leno-Tom Hanks-Tim Allen-Billy Crystal-John Goodman-Dave Foley-Bob Costas-Darrell Waltrip-Richard Kind-Edie McClurg-Humpy Wheeler-Tom Magliozzi-Ray Magliozzi-Lynda Petty-Andrew Stanton-Mike Nelson-Jan Rabson-Jonas Rivera-Lou Romano-Adrian Ochoa-E.J. Holowicki-Elissa Knight-Lindsey Collins-Larry Benton-Douglas Keever-Sherry Lynn-Mickie McGowan-Jack Angel-Michael Bell-Bob Bergen-Susan Blu-Andrea Boerries-Marco Boerries-Rodger Bumpass-Torbin Xan Bullock-Richard Cawood-Scott Clark-Kathy Coates-John Cygan-Jennifer Darling-Paul Eiding-Bill Farmer-Brian Fee-Teresa Ganzel-Craig Good-Jess Harnell-Artie Kempner-Hooman Khalili-Sonoko Konishi-Erik Langley-Danny Mann-Laraine Newman-Teddy Newton-Colleen O'Shaughnessey-Bob Peterson-Steve Purcell-A.J. Riebli III-Dan Scanlon-Stephen Schaffer-Ken Schretzmann-Bob Scott-Matt Staudt-Jay Ward-Jim Ward-Colette Whitaker-Frank Welker,friendship-car race-success-route 66-porsche-retirement-road trip-anthropomorphism-rural area-los angeles california-aftercreditsstinger-duringcreditsstinger,/abW5AzHDaIK1n9C36VdAeOwORRA.jpg,/sd4xN5xi8tKRPrJOWwNiZEile7f.jpg,49013-12-863-585-9806-862-10193-2062-260514-953-14160-9487-62211-950-425-10681-9502-808-62177-809-8355 +508935,The Eight Hundred,War-History-Drama-Action,zh,In 1937 eight hundred Chinese soldiers fight under siege from a warehouse in the middle of the Shanghai battlefield completely surrounded by the Japanese army.,26.787,Beijing Diqi Yinxiang Entertainment-Huayi Brothers Pictures-Fin Design & Effects-Notorious Pictures-Eagle Pictures-Huayi Brothers Media Corporation-Golden Screen Cinemas-Mirada Distribution-Shaw Organisation-BGFilm-CMC Pictures-GEM Entertainment-IPA Asia Pacific-Koch Media-Look Film-Youplanet Pictures-DNEG-The Monk Studios-Far East Film Festival Udine (IT)-Shaw Organisation Release,8/14/20,80000000,460919368,147,Released,Based on the true story of one of the greatest battles of WWII.,7.1,188,Wang Qian-Yuan-Zhang Yi-Huang Zhizhong-Jiang Wu-Oho Ou-Du Chun-Vision Wei-Tang Yixin-Li Jiuxiao-Jerry Lee-Liang Jing-Hou Yong-Xin Baiqing-Yu Haoming-Liu Xiaoqing-Yao Chen-Ryan Zheng Kai-Yu Ailei-Huang Xiaoming-Augusta Xu-Holland-Ethan Juan-Song Yang-Gao Shuang-Huang Miyi-Pang Guochang-Thomas Fiquet,siege-second sino-japanese war (1937-45),/skGBLKakvPhyXaTPwZzx2zyOKz5.jpg,/IRN1JuNwr1VKp88Dscgja2uR8H.jpg,612845-51533-344556-284298-390841-33106-362682-457837-535167-574037-238811-568160-452557-20342-16411-351694-111966-312408-620249-13688-284427 +6637,National Treasure: Book of Secrets,Action-Adventure-Mystery-Thriller,en,Benjamin Franklin Gates and Dr. Abigail Chase re-team with Riley Poole and now armed with a stack of long-lost pages from John Wilkes Booth's diary Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.,29.113,Walt Disney Pictures-Jerry Bruckheimer Films-Saturn Films-Junction Entertainment-Sparkler Entertainment-NT2 Productions,12/13/07,130000000,459242249,124,Released,The Greatest Adventure History Has Ever Revealed,6.3,4556,Nicolas Cage-Jon Voight-Harvey Keitel-Ed Harris-Diane Kruger-Justin Bartha-Helen Mirren-Bruce Greenwood-Ty Burrell-Albert Hall-Joel Gretsch-Randy Travis-Christian Camargo-Michael Maize-Timothy V. Murphy-Alicia Coppola-Armando Riesco-Brent Briscoe-William Brent-Michael Manuel-Brad Rowe-Troy Winbush-Billy Devlin-Richard Cutting-Zachary Gordon-Peter Woodward-Oliver Muirhead-Larry Cedar-Alicia Leigh Willis-Rachel Cora Wood-Lisa Marie Sheldon-Natalie Dreyfuss-Michael Stone Forrest-David E. Goodman-Susan Lynskey-Patricia DiZebba-Grant Thompson-Frank Herzog-Eric Carlson-Emerson Brooks-Tim Talman-Stephen Hibbert-Emily Joyce-Glenn Beck-Susan Beresford-Demetri Goritsas-C.C. Smiff-David Ury-Peter Miles-Ben Homewood-Michael McCafferty-Hans Georg Struhar-Eddy Shalita,paris france-london england-assassination-riddle-assassin-usa president-parent child relationship-husband wife relationship-gold-treasure-family history-palace-treasure hunt-archaeologist-american civil war-archeology-secret formula,/xxoIBbvmTj1ZttzV439jAvoovTw.jpg,/knk3sl4aJLtKY8jV5ADJ4oZxijF.jpg,2059-1250-1735-9679-217-1734-27022-1979-61880-564-13811-956-18360-13448-9738-71676-1996-8960-1593-955-1701 +240832,Lucy,Action-Science Fiction,en,A woman accidentally caught in a dark deal turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.,57.904,EuropaCorp-Canal+-Cin��+-TF1 Films Production,7/25/14,40000000,458863600,89,Released,The average person uses 10% of their brain capacity. Imagine what she could do with 100%.,6.427,14706,Scarlett Johansson-Morgan Freeman-Choi Min-sik-Amr Waked-Julian Rhind-Tutt-Pilou Asb�_k-Lio Tipton-Shin Yoo-ram-Seo Chong-ju-Nicolas Phongpheth-Paul Lef��vre-Jan Oliver Schroeder-Luca Angeletti-Pierre Poirot-Pierre Grammont-Bertrand Quoniam-Lo��c Brabant-Pascal Loison-Pierre G��rard-Isabelle Cagnat-Fr��d��ric Chau-Claire Tran-Fran�_ois Legrand-Bob Martet-Alexis Rangheard-Tonio Descanvelle-Julien Personnaz-Christophe Lavalle-Renaud Cestre-Thibault Segouin-Matthew Bravais-Claire Zaniolo-Alessandro Giallocosta-Wolfgang Pissors-Sifan Shao-Paul Chan-Chou Chung-Wei-Huan Jhih-Cyuan-I. Cheng-Sheng-Frank Ma-Tseng Sheng-En-Liu Hsieh-Min-Sandra Abouav-Abel Aboualiten-Ken Lin-Hsing Feng-Hao-Hsiang Hsu-Laura D'Arista-Eunyul Hong-Samuel Churin-Mason Lee-Mohammad Aslam Ansari-Kevin Dust-Diego Llano-Timothy Reevis-Jaysson Reyes De La Cruz-German Tintaya Mamani-Kanneti Sawe Han-C��dric Chevalme,artificial intelligence-telepathy-intelligence-drug mule-telekinesis-futuristic-drugs-super power-tough girl-surgery-brain capacity-synthetic drug-human brain,/kRbpUTRNm6QbLQFPFWUcNC4czEm.jpg,/ozVwXlfxqNsariipatGwa5px3Pm.jpg,198663-157350-127585-131631-137113-119450-102651-101299-75656-118340-262500-98566-207703-100402-91314-135397-49047-76338-72190-99861-177572 +954,Mission: Impossible,Adventure-Action-Thriller,en,When Ethan Hunt the leader of a crack espionage team whose perilous operation has gone awry with no explanation discovers that a mole has penetrated the CIA he's surprised to learn that he's the No. 1 suspect. To clear his name Hunt now must ferret out the real double agent and in the process even the score.,54.761,Paramount-Cruise/Wagner Productions,5/22/96,80000000,457700000,110,Released,Expect the impossible.,6.971,8319,Tom Cruise-Jon Voight-Emmanuelle B��art-Henry Czerny-Jean Reno-Ving Rhames-Kristin Scott Thomas-Vanessa Redgrave-Ingeborga Dapk��naitۄ-Valentina Yakunina-Marek Va��ut-Nathan Osgood-John McLaughlin-Rolf Saxon-Karel Dobr�_-Andreas Wisniewski-David Shaeffer-Rudolf Pechan-Gaston ��ubert-Ricco Ross-Mark Houghton-Bob Friend-Annabel Mullion-Garrick Hagon-Ji��ina T��ebick��-Andrzej Borkowski-Maya Dokic-Sam Douglas-Olegar Fedoro-Carmela Marner-Mimi Potworowska-David Schneider-Helen Lindsay-Pat Starr-Richard D. Sharp-Randall Paul-Sue Doucette-Graydon Gould-Tony Vogel-Michael Rogers-Laura Brook-Morgan Deare-David Phelan-Melissa Knatchbull-Emilio Estevez-Marcel Iure��-Ion Caramitru-Dale Dye-Keith Campbell-Michael Cella-Harry Fielder-Toby Hinson-John Knoll-Paul Markham-Tina Simmons,mission-london england-cia-computer-paris france-undercover-espionage-secret mission-arms deal-spy-secret identity-headquarter-embassy-secret base-prague czech republic-secret agent-tgv-terrorism-agent,/l5uxY5m5OInWpcExIpKG6AR3rgL.jpg,/sra8XnL96OyLHENcglmZJg6HA8z.jpg,955-956-56292-177677-353081-2501-607-36557-1572-180-87-10764-1573-2502-89-604-1571-602-161-605-564 +616,The Last Samurai,Drama-Action-War,en,Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade Algren decides to become an ultimate warrior himself and to fight for their right to exist.,34.823,Warner Bros. Pictures-Bedford Falls Productions-Radar Pictures-Cruise/Wagner Productions,12/5/03,140000000,456758981,154,Released,"In the face of an enemy, in the heart of one man, lies the soul of a warrior.",7.563,6025,Tom Cruise-Ken Watanabe-Timothy Spall-Tony Goldwyn-Hiroyuki Sanada-Koyuki-Shin Koyamada-Billy Connolly-Togo Igawa-Shichinosuke Nakamura-Masato Harada-William Atherton-Chad Lindberg-Scott Wilson-Ray Godshall Sr.-Masashi Odate-John Koyama-Satoshi Nikaido-Shintaro Wada-Shun Sugata-Sosuke Ikematsu-Aoi Minato-Seiz�� Fukumoto-Shoji Yoshihara-Kosaburo Nomura IV-Takashi Noguchi-Noguchi Takayuki-Sven Toorvald-Yuki Matsuzaki-Mitsuyuki Oishi-Jiro Wada-Hiroshi Watanabe-Yusuke Myochin-Hiroaki Amano-Kenta Daibo-Koji Fujii-Makoto Hashiba-Shimpei Horinouchi-Takashi Kora-Shane Kosugi-Takeshi Maya-Seiji Morita-Lee Murayama-Takeru Shimizu-Shinji Suzuki-Hisao Takeda-Ryoichiro Yonekura-Ryoichi Noguchi,japan-loss of loved one-war crimes-sense of guilt-swordplay-general-samurai-war veteran-katana-sword-arms deal-homeland-emperor-language barrier-self-discovery-mountain village-foreign legion-mercenary-campaign-insurgence-leader-war strategy-gettysburg-slaughter-soldier-period drama-alcoholic-u.s. soldier-japanese army-warrior-19th century-war trauma,/lsasOSgYI85EHygtT5SvcxtZVYT.jpg,/4m0eLZzOr5W1BK9el9ASQrTwd0m.jpg,652-2024-180-70232-197-1495-74-2253-1538-855-853-9477-1372-663712-956-954-1271-9361-380-2059-98 +1271,300,Action-Adventure-War,en,"Based on Frank Miller's graphic novel ""300"" is very loosely based the 480 B.C. Battle of Thermopylae where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians and helped usher in the world's first democracy.",60.136,Virtual Studios-Legendary Pictures-Hollywood Gang Productions-Atmosphere Entertainment MM-Nimar Studios-Warner Bros. Pictures-Cruel & Unusual Films,3/7/07,65000000,456082343,117,Released,"Spartans, prepare for glory!",7.178,12970,Gerard Butler-Lena Headey-Dominic West-David Wenham-Vincent Regan-Michael Fassbender-Tom Wisdom-Andrew Pleavin-Andrew Tiernan-Rodrigo Santoro-Giovani Cimmino-Stephen McHattie-Greg Kramer-Alex Ivanovici-Kelly Craig-Eli Snyder-Tyler Neitzel-Tim Connolly-Marie-Julie Rivest-Sebastian St. Germain-Peter Mensah-Arthur Holden-Michael Sinelnikoff-John Dunn-Hill-Dennis St John-Neil Napier-Dylan Smith-Maurizio Terrazzano-Robert Paradis-Kwasi Songui-Alexandra Beaton-Fr��d��ric Smith-Loucas Minchillo-Nicholas Minchillo-Tom Rack-David Francis-James Bradford-Andrew Shaver-Robin Wilcock-Kent McQuaid-Marcel Jeannin-Jere Gillis-Jeremy Thibodeau-Tyrone Benskin-Robert Maillet-Patrick Sabongui-Leon Laderach-Dave Lapommeray-Vervi Mauricio-Charles Papasoff-Isabelle Champeau-Veronique-Natale Szalankiewicz-Ma��va Nadon-David Thibodeau-David Schaap-Jean Michel Par��-Stewart Myiow-Andreanne Ross-Sara Giacalone-Ariadne Bourbonni��re-Isabelle Fournel-Sandrine Merette-Attiow-Elisabeth Etienne-Danielle Hubbard-Ruan Vibegaard-Genevi��ve Guilbault-Bonnie Mak-Am��lie Sorel-Caroline Aspirot-Gina Gagnon-Tania Trudel-St��phanie Aubry-Mercedes Leggett-Stephania Gambaroff-Chanelle Lamothe-Sabrina-Jasmine Guilbault-Manny Cortez Tuazon-Cindy-Atif Y. Siddiqi-Camille Rizkallah-Trudi Hanley-Neon Cobran-Gary A. Hecker,epic-army-narration-blood splatter-gore-based on comic-sword fight-massacre-ancient world-based on graphic novel-ancient greece-warrior-ancient warfare-sparta greece-5th century bc-war-male protagonist-bloody death-sparta-spartans-battle of thermopylae-god king-battle axe,/h7Lcio0c9ohxPhSZg42eTlKIVVY.jpg,/xojLztOWoPax76UY4lrmS1M2Bwu.jpg,53182-14161-98-6479-10528-36557-604-27578-607-272-18785-58-2048-49538-197-605-58574-8681-652-1858-2501 +161,Ocean's Eleven,Thriller-Crime,en,Less than 24 hours into his parole charismatic thief Danny Ocean is already rolling out his next plan: In one night Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash Danny risks his chances of reconciling with ex-wife Tess.,38.898,Village Roadshow Pictures-NPV Entertainment-Jerry Weintraub Productions-Section Eight-Warner Bros. Pictures,12/7/01,85000000,450717150,116,Released,Are you in or out?,7.4,10310,George Clooney-Brad Pitt-Matt Damon-Andy Garc�_a-Julia Roberts-Bernie Mac-Elliott Gould-Casey Affleck-Scott Caan-Eddie Jemison-Don Cheadle-Shaobo Qin-Carl Reiner-Holly Marie Combs-Topher Grace-Joshua Jackson-Barry Watson-Shane West-Steven Soderbergh-Siegfried Fischbacher-Roy Horn-Wayne Newton-Henry Silva-Angie Dickinson-Wladimir Klitschko-Lennox Lewis-Jerry Weintraub-Michael Delano-Scott L. Schwartz-David Sontag-Larry Sontag-Joe La Due-Cecelia Ann Birt-Paul L. Nolan-Carol Florence-Richard Reed-Charles La Russa-Mark Gantt-Anthony Allison-Ronn Soeda-Tim Perez-Frank Patton III-Jorge R. Hernandez-Tim Snay-Miguel P��rez-Barry Brandt-William Patrick Johnson-Robert Peters-Gregory Stenson-David Jensen-John C. Fiore-Tommy Kordick-Robin Sachs-J.P. Manoux-Frankie J. Allison-Eydie Gorm��-Steve Lawrence-Jim Lampley-Larry Merchant-Jim Alfonso-John Robotham-Vincent M. Ward-James Curatola-Lori Galinski-Bill Allison-Kelly Adkins-Rusty Meyers-Joe Coyle-Scott Beringer-Viola Davis-Kerry Rossall-David Leitch-Thomas Rosales Jr.-Tony Brown-Richard Steele-Niall Binnion,prison-pickpocket-strip club-thief-caper-heist-con artist-atlantic city-salt lake city utah-las vegas-card dealer-explosives expert,/hQQCdZrsHtZyR6NbKH2YyCqd2fR.jpg,/boI3myFhWBvQcru4zZ15aJ0u3CX.jpg,163-298-2501-10528-2502-2503-36557-607-954-58574-10764-18785-107-787-1572-1271-8681-604-1422-89-85 +447404,Pok��mon Detective Pikachu,Action-Adventure-Fantasy,en,In a world where people collect pocket-size monsters (Pok��mon) to do battle a boy comes across an intelligent monster who seeks to be a detective.,41.216,Legendary Pictures-The Pok��mon Company,5/10/19,150000000,449762638,105,Released,Partner Up!,6.963,6114,Justice Smith-Ryan Reynolds-Kathryn Newton-Bill Nighy-Ken Watanabe-Chris Geere-Suki Waterhouse-Rita Ora-Karan Soni-Omar Chaparro-Josette Simon-Simone Ashley-Alejandro De Mesa-Ben Fox-Max Fincham-Diplo-Edward Davis-Kadiff Kirwan-Ryoma Takeuchi-Rina Hoshino-Ikue Otani-Kotaro Watanabe,detective-amnesia-car crash-pocket monsters-whodunit-based on video game-missing person-missing parent-buddy comedy-neo-noir-live action and animation-pikachu character-live action anime,/wgQ7APnFpf1TuviKHXeEe3KnsTV.jpg,/nDP33LmQwNsnPv29GQazz59HjJI.jpg,287947-420817-429617-373571-299534-458156-299537-399579-320288-479455-324857-301528-456740-420818-404368-280217-166428-412117-454626-383498-335983 +10195,Thor,Adventure-Fantasy-Action,en,Against his father Odin's will The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.,103.396,Marvel Studios,4/21/11,150000000,449326618,115,Released,Two worlds. One hero.,6.767,19356,Chris Hemsworth-Natalie Portman-Tom Hiddleston-Anthony Hopkins-Stellan Skarsg��rd-Kat Dennings-Clark Gregg-Colm Feore-Idris Elba-Ray Stevenson-Tadanobu Asano-Josh Dallas-Jaimie Alexander-Rene Russo-Adriana Barraza-Maximiliano Hern��ndez-Richard Cetrone-Darren Kendrick-Joshua Cox-Justice Jesse Smith-Joseph Gatt-Luke Massy-Matthew Ducey-Jason Camp-Buddy Sosthand-Blake Silver-Jamie McShane-Dale Godboldo-Patrick O'Brien Demsey-Jim Palmer-Seth Coltan-J. Michael Straczynski-Ryan Schaefer-Matt Battaglia-Stan Lee-Joel McCrary-Isaac Kappy-Juliet Lopez-Rob Mars-Carrie Lazar-Harley Graham-Alexander Wright-Hilary Pingle-Shawn-Caulin Young-Walt Simonson-Kinsey McLean-Kelly Hawthorne-Dakota Goyo-Ted Allpress-Douglas Tait-Jeremy Renner-Samuel L. Jackson-Vanessa Bednar-Michelle Csitos-Stephen Oyoung,new mexico-banishment-superhero-based on comic-redemption-norse mythology-aftercreditsstinger-marvel cinematic universe (mcu),/prSfAi1xGrhLQNxVSUFh61xQ4Qy.jpg,/1wOu8rdvPxU1ObHi20VcRhfNpbo.jpg,76338-10138-1771-1726-24428-68721-100402-1724-99861-271110-102899-284053-1930-118340-49538-284052-283995-557-1865-315635-36657 +676,Pearl Harbor,War-History-Romance-Drama-Action,en,The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7 1941.,39.364,Touchstone Pictures-Jerry Bruckheimer Films,5/21/01,140000000,449200000,183,Released,It takes a moment to change history. It takes love to change lives.,6.937,6114,Ben Affleck-Kate Beckinsale-Josh Hartnett-Cuba Gooding Jr.-Jon Voight-Tom Sizemore-Alec Baldwin-Ewen Bremner-William Lee Scott-Greg Zola-Jennifer Garner-Jaime King-Catherine Kellner-Sara Rue-Michael Shannon-Dan Aykroyd-Colm Feore-Mako-John Fujioka-Cary-Hiroyuki Tagawa-Jesse James-Reiley McClendon-William Fichtner-Steve Rankin-Brian Haley-Graham Beckel-Will Bowden-Angel Sing-Rufus Dorsey-Matthew Davis-David Hornsby-Scott Wilson-Howard Mungo-Randy Oglesby-Ping Wu-Stan Cahill-Tom Everett-Tomas Arana-Beth Grant-Sung Kang-Raphael Sbarge-Marty Belafsky-Yuji Okumoto-Josh Green-Ian Bohen-Michael Milhoan-Peter Firth-Marco Gould-Andrew Bryniarski-Nicholas Downs-Tim Choate-John Diehl-Joseph Patrick Kelly-Ron Harper-Ted McGinley-Madison Mason-Kim Coates-Glenn Morshower-Paul Francis-Scott Wiper-Eric Christian Olsen-Rod Biermann-Noriaki Kamata-Garret Sato-Eiji Inoue-Precious Chong-Jeff Wadlow-Will Gill Jr.-Seth Sakai-Curtis Andersen-Blaine Pate-John Pyper-Ferguson-Michael Shamus Wiles-Toru Tanaka Jr.-Sean Gunn-Josh Ackerman-Matt Casper-David Kaufman-Lindsey Ginter-Guy Torry-Leland Orser-Peter James Smith-Pat Healy-Thomas Wilson Brown-Chad Morgan-James Saito-Tak Kubota-Robert Jayne-Vic Chao-Frederick Koehler-Ben Easter-Cory Tucker-Abe Sylvia-Jason Liggett-Bret Roberts-Sean Faris-Nicholas Farrell-Tony Curran-Daniel Mays-Toshi Toda-Jaymee Ong-Lisa Ross-Max Thayer-Camille Carida-Winston Churchill-Tanya Dempsey-Adolf Hitler-Frieda Jane-Kathleen Mullan-Lin Oeding-Barbara Scolaro-Melissa Anne Young,army-airplane-nurse-patriotism-hawaii-world war ii-pilot-pearl harbor-u.s. air force-dyslexia-pacific war-love-pin-up,/y8A0Cvp8WQmZ3bjbnsL53lY0dsC.jpg,/zv1xOEQzebKyku349qDZ085FZlO.jpg,95-853-22-597-744-9480-98-489-114-32657-14574-210577-2024-857-285-855-808-652-424-423-1933 +37135,Tarzan,Family-Adventure-Animation-Drama,en,Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...,66.88,Walt Disney Pictures-Edgar Rice Burroughs Inc.-Walt Disney Feature Animation,6/18/99,130000000,448191819,88,Released,An immortal legend. As you've only imagined.,7.4,6016,Tony Goldwyn-Minnie Driver-Glenn Close-Alex D. Linz-Rosie O'Donnell-Brian Blessed-Nigel Hawthorne-Lance Henriksen-Wayne Knight-Taylor Dempsey-Sherry Lynn-Mickie McGowan-Jack Angel-Bob Bergen-Rodger Bumpass-Lily Collins-Jim Cummings-Debi Derryberry-Jason Marsden-Phil Proctor-Chris Sanders-Mary Kay Bergman-Aria Noelle Curzon-Danny Mann-Frank Welker-Scott Record-Joseph Ashton-Beth Anderson-Billy Bodine-Hillary Brooks,africa-gorilla-baby-adoption-feral child-tarzan-nest-jungle-anthropomorphism-camp-orphan,/ceGk1VcuI8pSXQhSlnqsqTFCPLD.jpg,/3Skg7e94WFreLgQAR0PAYSk0Zv1.jpg,10530-11970-9325-10674-10693-10545-10144-12230-10340-10895-11544-3170-11688-10882-11224-10112-408-11360-12092-11886-812 +313369,La La Land,Comedy-Drama-Romance-Music,en,Mia an aspiring actress serves lattes to movie stars in between auditions and Sebastian a jazz musician scrapes by playing cocktail party gigs in dingy bars but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair and the dreams they worked so hard to maintain in each other threaten to rip them apart.,61.838,Summit Entertainment-Black Label Media-Gilbert Films-Impostor Pictures-Marc Platt Productions-TIK Films,11/29/16,30000000,447407695,129,Released,Here's to the fools who dream.,7.902,16210,Ryan Gosling-Emma Stone-John Legend-Rosemarie DeWitt-J.K. Simmons-Ami��e Conn-Terry Walters-Thom Shelton-Cinda Adams-Callie Hernandez-Jessica Rothe-Sonoya Mizuno-Claudine Claudio-Jason Fuchs-D.A. Wallach-Trevor Lissauer-Olivia Hamilton-Anna Chazelle-Marius de Vries-Finn Wittrock-Josh Pence-Nicole Coulon-Damon Gupton-Christopher Michael Stevens-Keith Harris-Kaveh Rastegar-David Douglas-Miles Anderson-Bobo Chang-Meagen Fay-John Hindman-Valarie Rae Miller-Nicole Wolf-Corrin Evans-Kiff VandenHeuvel-Tom Everett Scott-Hemky Madera-Zo� Hall-Dempsey Pappion-Clifton 'Fou Fou' Eddie-Cal Bennett-Nedra Wheeler-Javier Gonzalez-Khirye Tyler-Briana Lee-Shaylah J. Stevens-Natalie Imani-Camryn Ray Cavaliero-Sandra Rosko-Arthur Horowitz-Reshma Gajjar-Candice Coke-Hunter Hamilton-Damian Gomez-Amanda Balen-Lou Becker-Dominic Chaiduang-Cindera Che-Chris Moss-Marissa Labog-Tiffany Daniels-Melinda Sullivan-Stephanie Landwehr-Britt Stewart-Clarice Ordaz-Nathan Prevost-Mecca Vazie Andrews-Scott Hislop-KC Monnie-Krystal Ellsworth-Sarah Mitchell-Khasan Brailsford-Morgan Larson-Becca Sweitzer-Gakenia Muigai-Michael Stein-Mario Diaz-Julie Schmid-Samantha Abrantes-Lexie Contursi-Eartha Robinson-Sybil Azur-Tara Nicole Hughes-Kayla Kalbfleisch-Martha Nichols-Anthony Marciona-Bill Prudich-Robert Roldan-Ryan Novak-Demian Boergadine-Gustavo Vargas-Robert Haynes-Jesse Houk-Ana Flavia Gavlak-Kristin Slaysman-Cameron Brinkman-Jordan Ray Fox-C.J. Stussi-Margaret Newborn-Nadia Tumanova-Crystal Nichol-Kristin Elliott-Andrea Lareo-Christopher Aber-Anna Lunberry-Shannon Leann-Jenna Curtis-Noah James-Tommy Cooley-Morgan Cohen-Jeremy Nathan Tisser-Patty Tobin-Heather Turman-Ottavio Taddei-April Martucci-Trent Kerpsack-Kaye L. Morris-Vince Donvito-Steffen Dziczek-Melvin LaThomas Brimm-Kelly Kennedy-Destinee Handly-Tommy Otis-Doran Butler-Matt Cady-Carol Connors-Patrick Cook-Aaron 'Deuce' Cooke-Bubba Dean Rambo-Nick Drago-Shaun Evaristo-Dana Fukagawa-Daniel Gaymon-Liz Imperio-Casey Johansen-Cris Judd-Yoori Kim-Bradley M. Rapier-Dana Wilson-Terrance Yates-Tracy Shibata-Dominique Domingo-Asiel Hardison-Corey Anderson-Nick Baga-Leah Adler-Noel Bajandas-Denzel Chisolm-Montana Efaw-Natalie Gilmore-Shannon Holtzapffel-Galen Hooks-Jeremy Hudson-George Lawrence Jr.-Scott Myrick-Cassidy Noblett-Brittany Parks-V�_ctor Rojas-Tony Bellissimo-Ryan Ramirez-Catalina Cat Rendic-Bryan Tanaka-Ava Bernstine-Quinn Lipton-Monie Adamson-Matthew Aylward-McKenzie Anderson-Pamela Chu-Mallauri Esquibel-Michael Higgins-Chris Jarosz-Matthew Kazmierczak-Paul Kirkland-Megan Lawson-Michael Munday-Brandon O'Neal-Chelsea Thedinga-Danny Valle-Emily Williams-Deniz Altunay-Holly Houk-Clarence Robinson-Dapo Torimiro-Sasha Fine-Eren Kayak۱ran-Ali Arda �_zdeniz-Phillip E. Walker-Susie Ganiere-Lynn Moore-Nilla Elizabeth Watkins-Andres Perez-Molina-Milica Govich-Frederick Keeve-Amanda Fields,dancing-dance-jazz-musical-ambition-casting-coffee shop-jazz club-traffic jam-hollywood-los angeles california-pianist-pier-audition-planetarium-aspiring actor-movie set-sunset-one woman show-pool party-griffith observatory,/uDO8zWDhfWwoFdKS4fzkUJt0Rf0.jpg,/nofXR1TN1vgGjdfnwGQwFaAWBaY.jpg,244786-329865-376867-334541-324786-381288-259316-334543-263115-11036-381284-64690-77338-277834-269149-597-194662-340666-274870-50646-297761 +608,Men in Black II,Action-Adventure-Comedy-Science Fiction,en,Kay and Jay reunite to provide our best last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement ��� protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay ��� who not only has absolutely no memory of his time spent with the MIB but is also the only living person left with the expertise to save the galaxy ��� to reunite with the MIB before the earth submits to ultimate destruction.,36.032,Columbia Pictures-Amblin Entertainment-Parkes+MacDonald Image Nation,7/3/02,140000000,445135288,88,Released,Back in black.,6.354,8862,Will Smith-Tommy Lee Jones-Lara Flynn Boyle-Rosario Dawson-Johnny Knoxville-Rip Torn-Tony Shalhoub-Patrick Warburton-Jack Kehler-David Cross-Colombe Jacobsen-Derstine-Peter Spellos-Michael Rivkin-Michael Bailey Smith-Lenny Venito-Howard Spiegel-Alpheus Merchant-Jay Johnston-Joel McKinnon Miller-Derek Cecil-Sean Rouse-Peter Spruyt-Kevin Cotteleer-Marty Belafsky-Rick Baker-Martha Stewart-Michael Jackson-Sid Hillman-Tom Whitenight-Nick Cannon-Andre Blair-Jeremy Howard-Mary Stein-Martin Klebba-John Alexander-Denise Cheshire-Ernie Grunwald-Chloe Sonnenfeld-John Andrew Berton Jr.-William E. Jackson-Doug Jones-Biz Markie-Peter Graves-Linda Kim-Paige Brooks-Stephanie Kemp-Barry Sonnenfeld-Victoria Jones-Michael Garvey-Michael Dahlen-Kevin Grevioux-Derek Mears-Sonny Tipton-John Richardson-Philip Goodwin-Tim Blaney-Greg Ballora-Carl J. Johnson-Thom Fountain-Brad Abrell-Richard Pearson-Rick Avery-John D. Bair-Michael Beardsley-Michael Buonomo-Kristin Charney-Patrick Coleman Duncan-Darrell Foster-Ned Gorman-Gene LeBell-Pete Macnamara-Drew Massey-Matthew McGrory-Christopher Metas-Bart Mixon-Alexandra O'Hara-David Patykewich-Martin Pfefferkorn-David C. Roehm Sr.-Leo Rogstad-Thomas Rosales Jr.-Brandee Sanders-Hannah Sim-Peter Siragusa-Daniel Browning Smith-Brian Steele-Mark Steger-Alan Tuskes-Shannon Watson-Bo Welch,saving the world-new york city-secret identity-undercover-space marine-illegal immigration-deportation-new identity-flying saucer-light-firearm-superhero-based on comic-alien-buddy cop-fictional government agency,/enA22EPyzc2WQ1VVyY7zxresQQr.jpg,/o1l6OCqA3pYDZHIc5L1s7CEzCMv.jpg,607-41154-2048-602-8960-1858-9738-950-425-36658-285-1979-558-1734-8373-564-605-604-58-557-559 +449927,Chasing the Dragon,Action-Crime-History,cn,An illegal immigrant from Mainland China sneaks into the corrupt British-colonized Hong Kong in 1963 transforming himself into a ruthless drug lord.,7.964,Mega-Vision Pictures (MVP)-Bona Film Group-Infinitus Entertainment,9/28/17,200005000,445000000,128,Released,,7.015,68,Donnie Yen-Andy Lau-Kent Cheng-Wilfred Lau-Felix Wong-Philip Keung-Michelle Hu-Raquel Xu-Philip Ng-Kent Tong-Niki Chow-Bryan Larkin-Julian Gaertner-Philippe Joly-Kenneth Tsang-Michael Chan-Terence Yin-Ricky Yi Fan-Wai-Ben Ng-Jai Day-Jason Wong,,/Lc0XGNZmsFe3uA1UMqhlBiJSY4.jpg,/vLgkglkAOgXzy8sXscFLvidgaTM.jpg,377447-57158-311324-335988-68726-49051-122917-76492-259316-121-297762-1865-24428-141052-99861-120-18785-862-129-209112-22 +1734,The Mummy Returns,Adventure-Action-Fantasy,en,Rick and Evelyn O��Connell along with their 8-year-old son Alex discover the key to the legendary Scorpion King��s might: the fabled Bracelet of Anubis. Unfortunately a newly resurrected Imhotep has designs on the bracelet as well and isn��t above kidnapping its new bearer Alex to gain control of Anubis��s otherworldly army.,91.092,Universal Pictures-Alphaville,5/4/01,98000000,443280904,130,Released,The most powerful force on earth is about to be unleashed by the two people who should know better.,6.365,6645,Brendan Fraser-Rachel Weisz-John Hannah-Oded Fehr-Arnold Vosloo-Patricia Vel��squez-Freddie Boath-Dwayne Johnson-Alun Armstrong-Adewale Akinnuoye-Agbaje-Shaun Parkes-Bruce Byron-Joe Dixon-Tom Fisher-Aharon Ipal��-Quill Roberts-Donna Air-Trevor Lovell-Brian Best-Sean Cronin-Rocky Taylor-Rene Costa-Salem Hanna-Max Cavalera,egypt-pyramid-son-mummy-nile-sequel-tomb-ancient egypt-1930s-egyptian tomb-good versus evil,/kdJsW7hcy1lrj7tdMPycTAQPAiR.jpg,/fRnhnR2JfkGBT19z7EXEmIUcDSo.jpg,1735-564-9334-296-49444-13387-282035-1995-8358-58574-47971-9480-585-2048-808-331-38365-9806-98-1593-8966 +23398,Alvin and the Chipmunks: The Squeakquel,Comedy-Family-Animation-Fantasy-Music,en,Pop sensations Alvin Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby. The boys must put aside music super stardom to return to school and are tasked with saving the school's music program by winning the $25000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.,37.126,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/21/09,75000000,443140005,88,Released,The Boys are back in town... and they have competition.,5.644,2541,Zachary Levi-David Cross-Jason Lee-Justin Long-Matthew Gray Gubler-Jesse McCartney-Amy Poehler-Anna Faris-Christina Applegate-Wendie Malick-Anjelah Johnson-Reyes-Kathryn Joosten-Kevin G. Schmidt-Chris Warren-Bridgit Mendler-Aimee Carrero-Alexandra Shipp-Gregg Binkley-Jake Zyrus-Bernard White-Adele Jacques-Joy Osmanski-Archie Hahn-Lanny Joon-Brando Eaton-Michael Bruno-Andrew Lee Schmidt-Alexander Noyes-Jason Rosen-Ali Mikles-Eric Bauza-Sean Astin-Marty Dew-Richy Jackson-Mihran Kirakosian-Janelle Ginestra-Thomasina Gross-Rachele Brooke Smith-Ryan Conferido-Hokuto 'Hok' Konishi-Ryan Feng-Dominic Sandoval-Brian Hirano-Steve Terada-Victor Kim-Brittany Anne Pirtle-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Courtney Galiano-Gee Alexander-Mark Alkofer-Tallie Brinson-Ericka Clevenger-Sean Decker-Sarah Fontenot-Paul Gonzales-David Lautman-Casper Smart-Andrew Thompson,chipmunk-aftercreditsstinger-duringcreditsstinger-woman director-live action and animation,/8mdPqOga5fty15nXmaNcK1fsNMa.jpg,/3lf6YCItKcF3Wrrs7tp1PL0eyOT.jpg,6477-55301-12133-258509-41513-8920-5559-9982-7484-9513-77931-9836-13053-42949-10527-26505-46195-22794-7518-984430-9992 +2503,The Bourne Ultimatum,Action-Drama-Mystery-Thriller,en,Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar an upgrade to Project Treadstone in a series of newspaper columns. Information from the reporter stirs a new set of memories and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.,22.843,Universal Pictures-The Kennedy/Marshall Company-Ludlum Entertainment-Motion Picture BETA Produktionsgesellschaft-Bourne Again-KanZaman Services-Peninsula Films-Studio Babelsberg,8/3/07,70000000,442824138,115,Released,Remember everything. Forgive nothing.,7.418,6926,Matt Damon-Julia Stiles-David Strathairn-Scott Glenn-Paddy Considine-Edgar Ram�_rez-Albert Finney-Joan Allen-Tom Gallop-Corey Johnson-Daniel Br�_hl-Joey Ansah-Colin Stinton-Dan Fredenburgh-Lucy Liemann-Bryan Reents-Arkie Reece-John Roberson-Russ Huards-Mark Bazeley-Sinead O'Keefe-Charles Venn-Scott Adkins-Branko Tomoviۈ-Laurentiu Possa-Trevor St. John-Albert Jones-Jeffrey Lee Gibson-Uriel Emil Pollack-Omar Hernandez-William H. Burns-Michael Wildman-Kai Martin-Michael Ahl-Glynis Brooks-James Ciccone-Sebastian Feldman-Luis Mottola-Mark Mottram-James Schram-Brian Smyj-Paul Thornton-John Warman-Chris Wilson-Ben Youcef,paris france-corruption-madrid spain-assassin-based on novel or book-europe-prosecution-dangerous-fake identity-revelation-government-interpol-sequel-flashback-conspiracy-shootout-espionage-motorcycle-foot chase-dark past-langley virginia-moscow russia-action hero-security leak-bourne-jason bourne,/15rMz5MRXFp7CP4VxhjYw4y0FUn.jpg,/qiBILuWhv7ipF0pxiEqIJdkQzj8.jpg,2502-2501-49040-324668-36557-161-1571-10764-956-8681-56292-298-562-954-89-1572-955-10528-604-1573-605 +82695,Les Mis��rables,History-Drama,en,An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France in which a paroled prisoner named Jean Valjean seeks redemption.,20.899,Universal Pictures-Working Title Films-Cameron Mackintosh Ltd.-Relativity Media,12/18/12,61000000,441809770,158,Released,Fight. Dream. Hope. Love.,7.3,4819,Hugh Jackman-Russell Crowe-Anne Hathaway-Amanda Seyfried-Sacha Baron Cohen-Helena Bonham Carter-Eddie Redmayne-Aaron Tveit-Samantha Barks-Daniel Huttlestone-Cavin Cornwall-Josef Altin-David Hawley-Adam Jones-John Barr-Tony Rohr-Richard Dixon-Andy Beckwith-Stephen Bent-Colm Wilkinson-Georgie Glen-Heather Chasen-Paul Thornley-Paul Howell-Stephen Tate-Michael Jibson-Kate Fleetwood-Hannah Waddingham-Clare Foster-Kirsty Hoiles-Jenna Boyd-Alice Fearn-Alison Tennant-Marilyn Cutts-Cathy Breeze-John Albasiny-Bertie Carvel-Tim Downie-Andrew Havill-Dick Ward-Nicola Sloane-Daniel Evans-David Stoller-Ross McCormack-Jaygann Ayeh-Adrian Scarborough-Frances Ruffelle-Lynne Wilmot-Charlotte Spencer-Julia Worsley-Keith Dunphy-Ashley Artus-John Surman-David Cann-James Simmons-Polly Kemp-Ian Pirie-Adam Pearce-Julian Bleach-Marc Pickering-Isabelle Allen-Natalya Wallace-Phil Snowden-Hadrian Delacey-Lottie Steer-Sam Parks-Mark Donovan-Lewis Kirk-Leighton Rafferty-Peter Mair-Jack Chissick-Dianne Pilkington-Robyn North-Norma Atallah-Patrick Godfrey-Mark Roper-Paul Leonard-Miles Roughley-Cameron Strefford-Alfie Davis-Joseph West-Joel Phillimore-Jacqueline Dankworth-Amelia Jefford-Chris Barnes-Richard Cordery-Killian Donnelly-Fra Fee-Gabriel Vick-George Blagden-Hugh Skinner-Stuart Neal-Alistair Brammer-Iwan Lewis-Katy Secombe-Hadley Fraser-Linzi Hateley-Gemma Wardle-Gina Beck-Katie Hall-Lisa Hull-Andrea Deck-Jessica Duncan-Kerry Ingram-John Warnaby-Michael Sarne-Freya Parks-Richard Bremmer-Alexander Brooks-Eleanor Bruce-Emma Dukes-Stephen Matthews-Peter Saracen-Sebastian Sykes-Phil Zimmerman-Bessie Carter-Helen Cotterill-Tricia Deighton-Mandy Holliday-Charlotte Hope-Jackie Marks-Sara Pelosi-Mary Roscoe-Amelia Scaramucci-Caroline Sheen-Rachael Archer-Lorna Brown-Antonia Clarke-Mary Cormack-Sonya Cullingford-Holly Dale Spencer-Amy Griffiths-Fania Grigoriou-Amanda Henderson-Alexia Khadime-Luisa Lazzaro-Gemma O'Duffy-Amy Ellen Richardson-Olivia Rose-Aaron-Robyn Miranda Simpson-Rachel Stanley-Nancy Sullivan-Rebecca Sutherland-Tabitha Webb-Gerard Bentall-Tony Bignell-Michael Cahill-Richard Colson-Kerry Ellis-Simon Fisher-Becker-Sarah Flind-Kelly-Anne Gower-James Greene-Nick Holder-Chris Howell-Alison Jiear-Terence Keely-Martin Marquez-Sally Mates-Jeff Nicholson-Adam Searles-Simon Shorten-Juliet Alderice-Sean Buckley-Valerie Cutko-Spike Grimsey-Matt Harrop-Georgina Jackson-Perry Millward-Phil Philmar-Joyce Springer-Julie Stark-Dominic Applewhite-Matthew Corner-Andy Coxon-Jonathan Dudley-Rhidian Marc-Chris Milford-Jamie Muscato-Joseph Peters-David Roberts-Stevee Davies-Jonny Purchase-Matt Seadon Young-Jos Slovick-Samuel J. Weir-Sophie Huchinson-Ella Hunt-Claire Machin-Brenda Moore-Mischa Purnell-Annette Yeo-Josephine Darvill-Mills-Jennifer Essex-Vicky Evans-Edward Lewis French-Nigel Garton-Lynn Jezzard-Nicholas Keegan-Steve Kirkham-Vanessa Lee Hicks-Ian Parsons-Gemma Payne-Clinten Pearce-Claire Piquemal-Aaron Sillis-Ian Waller-Matthew Seadon-Young,france-robbery-brothel-mayor-musical-arrest-army-barricade-rebellion-wedding-falling in love-corpse-parole-convict-girl disguised as boy-19th century,/90PyvT7SI5INKhMC6P7B5NJVx4t.jpg,/bsG8LkZx1ijrcf3fP6AvBlGTxkX.jpg,72976-82693-45269-11631-13885-114150-84892-824-12155-221518-44826-64682-87827-15121-58595-59436-38757-68734-967227-2976-96724 +9552,The Exorcist,Horror,en,12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter and ultimately turns to her last hope: Father Damien Karras a troubled priest who is struggling with his own faith.,58.691,Hoya Productions-Warner Bros. Pictures,12/26/73,15000000,441405644,122,Released,"Something almost beyond comprehension is happening to a girl on this street, in this house��_ and a man has been sent for as a last resort. This man is The Exorcist.",7.7,6859,Ellen Burstyn-Linda Blair-Jason Miller-Max von Sydow-Lee J. Cobb-Kitty Winn-Jack MacGowran-William O'Malley-Barton Heyman-Peter Masterson-Rudolf Sch�_ndler-Gina Petrushka-Robert Symonds-Arthur Storch-Thomas Bermingham-Vasiliki Maliaros-Titos Vandis-John Mahon-Wallace Rooney-Ron Faber-Donna Mitchell-Roy Cooper-Robert Gerringer-Mercedes McCambridge-Paul Bateson-Elinore Blair-William Peter Blatty-Mary Boylan-Dick Callinan-Mason Curry-Toni Darnay-Eileen Dietz-Joanne Dusseau-Bernard Eismann-Beatrice Hunter-Yvonne Jones-Don LaBonte-Barton Lane-Ann Miles-John Nicola-Vincent Russell-Gerard F. Yates,exorcism-holy water-religion and supernatural-vomit-possession-priest-ouija board-satan-paranormal phenomena-demon-strong language-catholic church-demonic possession-disturbed child-crisis of faith-sfx-supernatural horror,/4ucLGcXVVSVnsfkGtbLY4XAius8.jpg,/xcjJ5khg2yzOa282mza39Lbrm7j.jpg,578-694-377-948-805-11586-565-1970-1091-30497-539-609-7340-176-138843-23827-348-8643-764-4232-601 +788,Mrs. Doubtfire,Comedy-Drama-Family,en,Loving but irresponsible dad Daniel Hillard estranged from his exasperated spouse is crushed by a court order allowing only weekly visits with his kids. When Daniel learns his ex needs a housekeeper he gets the job -- disguised as a British nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.,18.126,20th Century Fox-Blue Wolf Productions,11/24/93,25000000,441286195,125,Released,She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.,7.2,5390,Robin Williams-Sally Field-Pierce Brosnan-Lisa Jakub-Matthew Lawrence-Mara Wilson-Robert Prosky-Anne Haney-Harvey Fierstein-Scott Capurro-Polly Holliday-Sydney Walker-Joe Bellan-Martin Mull-Terence McGovern-Karen Kahn-Eva Gholson-James Cunningham-Ralph Peduto-Scott Beach-Juliette Marshall-Drew Letchworth-Jessica Myerson-Sharon Lockwood-James P. Cullen-Kenneth Loo-Jeff Loo-Betsy Monroe-Joseph Narducci-James Cranna-Dr. Toad-Adele Proom-Rick Overton-Dan Spencer-Paul Guilfoyle-Molly McClure-Andy Prosky-William Newman-Christopher Pray-Geoff Bolt-Dick Bright-Adam Bryant-Tavia Cathcart-C. Beau Fitzsimons-Jeff Moeller-Benne Alder-Smadar Hanson,san francisco california-transvestite-parent child relationship-restaurant-nanny-social worker-mask-fake identity-custody battle-responsibility-voice acting-divorced couple,/szvidvi0Fo4j2gmMtk1sNe1rkzw.jpg,/xLjgy6mjefWzNzMKxfwfrKgoVTq.jpg,289521-879-8844-2277-786556-1593-10312-9574-771-2005-1597-772-854-801-744939-8839-838189-251-818530-10830-18360 +87101,Terminator Genisys,Science Fiction-Action-Thriller-Adventure,en,The year is 2029. John Connor leader of the resistance continues the war against the machines. At the Los Angeles offensive John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future and will ultimately change warfare forever.,100.678,Skydance-Paramount-Annapurna Pictures,6/23/15,155000000,440603537,126,Released,Reset the future,5.921,7744,Arnold Schwarzenegger-Jason Clarke-Emilia Clarke-Jai Courtney-J.K. Simmons-Lee Byung-hun-Dayo Okeniyi-Matt Smith-Courtney B. Vance-Michael Gladis-Sandrine Holt-Wayne Bastrup-Gregory Alan Williams-Otto Sanchez-Matty Ferraro-Griff Furst-Ian Etheridge-Nolan Gross-Seth Meriwether-Afemo Omilami-Teri Wyble-Kerry Cahill-Mark Adam-Kerry O'Malley-Willa Taylor-James Moses Black-Terry Dale Parks-Douglas Smith-Anthony Michael Frederick-Brandon Stacy-Brett Azar-Douglas M. Griffin-Thomas Francis Murphy-Joshua Mikel-John Edward Lee-Christion Troxell-Luke Sexton-Aaron V. Williamson-Tony Donno-Ernest Wells-Larry E. Lundy Jr.-Ross P. Cook-Christopher Heskey-Moses Munoz-Lisa McRee-Seth Carr-Bryant Prince-Michael D. Anglin-John L. Armijo-Ari Atken-Mikiah Aubert-Terri Battee-Gregory Scott Bedford-Patrick Constantine Bertagnolli Jr.-David Cleveland Brown-Carter Burch-Lori Campbell-Kyle Clements-Christopher De Stefano-Gillian Alaire Espina-Matthew Gallagher-Justin Goldsmith-Victoria Greene-Shawntae Hughes-Lizeth Hutchings-Jeffrey Johnson-Sergio Kato-Kevin Lapham-Mark Lavell-Justin Lebrun-Starlette Miariaunii-Mahal Montoya-Grinnell Morris-Bill Rainey-Gus Rhodes-Samantha Sadoff-William Schaff-Giovanni Silva-Nathan O'Neil Smith-Hannah Spiros-Todd T Taylor-Erica Teeple-Dennis Thomas IV-Joseph Velez-Edgar Leza,saving the world-artificial intelligence-cyborg-killer robot-future-time travel-dystopia-sequel-robot-duringcreditsstinger-terminator,/oZRVDpNtmHk8M1VYy1aeOWUXgbC.jpg,/g4a5YLWwi6OCp8TcvxsUNrXMbN5.jpg,534-296-500476-280-218-135397-290859-177677-49106-102899-254128-76341-99861-198184-127585-140607-246655-168259-206647-158852-91314 +296,Terminator 3: Rise of the Machines,Action-Thriller-Science Fiction,en,It's been 10 years since John Connor saved Earth from Judgment Day and he's now living under the radar steering clear of using anything Skynet can trace. That is until he encounters T-X a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis the Terminator is back to aid the now-adult Connor ��_ just like he promised.,50.774,Columbia Pictures-Intermedia Films-C-2 Pictures-IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG-Mostow/Lieberman Productions-Warner Bros. Pictures-Senator International,7/2/03,200000000,435000000,109,Released,The Machines Will Rise.,6.129,5793,Arnold Schwarzenegger-Nick Stahl-Claire Danes-Kristanna Loken-Earl Boen-David Andrews-Carolyn Hennesy-Jay Acovone-Mark Famiglietti-Moira Sinise-Chopper Bernet-Christopher Lawford-M.C. Gainey-Susan Merson-Elizabeth Morehead-Billy D. Lucas-Brian Sites-Alana Curry-Larry McCormick-Robert Alonzo-Michael Papajohn-Timothy Dowling-Jon Foster-Mark Hicks-Kim Robillard-Matt Gerald-William O'Leary-Rick Zieff-Rebecca Tilney-Chris Hardwick-Helen Eigenberg-Kiki Gorton-Walter von Huene-Jerry Katell-George A. Sack Jr.-Eric Ritter,saving the world-artificial intelligence-man vs machine-cyborg-killer robot-leather jacket-nanotechnology-rocket launcher-veterinarian-fire engine-villain-time travel-dystopia-psychiatrist-urban setting-firefighter-action hero-2030s-good versus evil-terminator,/qAnafzrd9Y5pVTWAP0tSDDMPzTR.jpg,/kbXMOnz2RhTSAbLtHX5hy5AXtwv.jpg,534-280-218-87101-74081-605-604-1571-1572-608-1573-861-1734-955-956-217-602-8373-954-163516-1858 +332562,A Star Is Born,Music-Drama-Romance,en,Seasoned musician Jackson Maine discovers ��� and falls in love with ��� struggling artist Ally. She has just about given up on her dream to make it big as a singer ��� until Jack coaxes her into the spotlight. But even as Ally's career takes off the personal side of their relationship is breaking down as Jack fights an ongoing battle with his own internal demons.,34.809,Warner Bros. Pictures-Live Nation Productions-Metro-Goldwyn-Mayer-Peters Entertainment-Gerber Pictures-Joint Effort,10/3/18,36000000,433888866,136,Released,,7.5,11237,Lady Gaga-Bradley Cooper-Sam Elliott-Andrew Dice Clay-Rafi Gavron-Anthony Ramos-Dave Chappelle-Alec Baldwin-Marlon Williams-Brandi Carlile-Ron Rifkin-Barry Shabaka Henley-Michael D. Roberts-Michael Harney-Rebecca Field-Derek Kevin Jones-Willam Belli-Dennis Tong-Josh Wells-Greg Grunberg-D.J. 'Shangela' Pierce-Eddie Griffin-Drena De Niro-Sanaa Chappelle-Leandro De Niro Rodriguez-Jacob Schick-Gabe Fazio-Benjamin Rice-Halsey-William H. Slattery III-Matthew Libatique-Robert S. Wilhelm Jr.-Luenell-Lukas Nelson-Anthony LoGerfo-Alberto Bof-Corey McCormick-Jesse Siebenberg-Tato Melgar-Don Was-Victor Indrizzo-George Doering-Michael Bearden-Lenny Castro-Chris Kelly-Don Roy King-Gena Rositano-Greg Scarnici-Michael Mancini-Richy Jackson-Christine Grady-Imani Wisdom-Christopher Martinez-Amanda Balen-Montana Efaw-Caroline M. Diamond-Sloan-Taylor Rabinor-China Taylor-Hunter Goligoski-Joey Courteau-Julian Astudillo,concert-country music-waitress-pop star-self-destruction-talent-addiction-death of father-alcoholism-remake-aspiring singer-singer-fame-tinnitus-falling in love-insecurity-alcoholic-death of mother-aspiration-death of parent-showbiz-emotional vulnerability-hearing impaired-brother brother relationship,/wrFpXMNBRj2PBiN4Z5kix51XaIZ.jpg,/dDYpjrwh1wNVQk0rEpc9P81wQt4.jpg,424694-1010821-336775-490132-487558-369972-375262-426426-743110-527508-335983-970218-484247-260513-338952-405774-447332-154738-297802-466282-282759 +68735,Warcraft,Action-Adventure-Fantasy,en,The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds one army faces destruction and the other faces extinction. From opposing sides two heroes are set on a collision course that will decide the fate of their family their people and their home.,48.424,Universal Pictures-Atlas Entertainment-Legendary Pictures-Blizzard Entertainment-Tencent Pictures,5/25/16,160000000,433677183,123,Released,Two worlds. One home.,6.4,6097,Travis Fimmel-Paula Patton-Ben Foster-Dominic Cooper-Ben Schnetzer-Toby Kebbell-Robert Kazinsky-Clancy Brown-Ryan Robbins-Daniel Wu-Anna Galvin-Callum Keith Rennie-Ruth Negga-Burkely Duffield-Dean Redman-Glenn Ennis-Terry Notary-Elena Wurlitzer-Michael Adamthwaite-Anna Van Hooft-Callan Mulvey-Adrian Glynn McMorran-Kyle Rideout-Michael Antonakos-Elisabeth Rosen-Patrick Sabongui-Kent O'Connor-Wesley MacInnes-Mackenzie Gray-Christian Sloan-Val��rie Wiseman-Dan Payne-Eugene Lipinski-Christina Jastrzembska-Travis MacDonald-Frank C. Turner-Tommy Rieder-Dylan Schombing-Donavon Stinson-Meelah Robbins-One Take Charlie-Glenn Close-Trevor Mack-Joel Sturrock-Raj Lal-Donnie MacNeil-G. Michael Gray-Michael Patric-Jill Morrison,video game-elves-orcs-magic-chase-based on comic-world of warcraft-sorcerer-fictional war-based on video game-wizard-fictional language-live action and animation-muscles-orc-sword and sorcery,/nZIIOs06YigBnvmlJ2hxZeA8eTO.jpg,/riaO9lEYnzlmkILiLG3Y6HtJaM3.jpg,246655-308531-47933-121856-278927-205584-290595-258489-188927-297761-291805-271110-153518-209112-37141-311324-257344-9543-43074-330459-302699 +316029,The Greatest Showman,Drama,en,The story of American showman P.T. Barnum founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.,47.741,Chernin Entertainment-20th Century Fox-TSG Entertainment,12/20/17,84000000,432800000,105,Released,The impossible comes true.,7.9,9033,Hugh Jackman-Zac Efron-Michelle Williams-Rebecca Ferguson-Zendaya-Keala Settle-Yahya Abdul-Mateen II-Natasha Liu Bordizzo-Paul Sparks-Sam Humphrey-Austyn Johnson-Cameron Seely-Eric Anderson-Ellis Rubin-Skylar Dunn-Daniel Everidge-Radu Spinghel-Yusaku Komori-Danial Son-Will Swenson-Linda Marie Larson-Byron Jennings-Betsy Aidem-Damian Young-Tina Benko-Fredric Lehne-Kathryn Meisle-Timothy Hughes-Gayle Rankin-Arnie Burton-Carly Adams-Sawyer Niehaus-Shuler Hensley-Will Erat-James Andrew O'Connor-Jamie Jackson-Morgan Weed-Henry Stram-Michael Barra-Luciano Acuna Jr.-Shannon Freyer-Kevin Dwane-Sandi DeGeorge-Tony Neil Butler-Frances Emily Schramm-Kenneth Wong Chan-Stacey Alyse Cohen-Tim Wilson-Jonathon Culver-Jillian Braithwaite-Adam Haas Hunter-Bob Rumnock-Ben Reed-Martha Nichols-Jonathan Redavid-Shannon Holtzapffel-Jeremy Hudson-Taylor James-Chelsea Caso-Caoife Coleman-Mishay Petronelli-Khasan Brailsford-Alex Wong-Julius Anthony Rubio-Vincent-Olivier Noiseux-DeAnna Walters-Ilia Jessica Castro-Najla Gilliam-Christina Glur-Emerson Tate Alexander-Victoria Llodra-Louise Hindsbo-Laci Justice-GiaNina Paolantonio-Rachel Quiner-Madison Smith-Brando-Daniel 'Cloud' Campos-Rod Roberts-James Babson-Loren Allred,adultery-circus-musical-biography-rags to riches-based on true story-outcast-singing-dreamer-freak show,/b9CeobiihCx1uG1tpw8hXmpi7nm.jpg,/lrNKm3HNvGdZoAfiBKu7b04FLHN.jpg,353486-354912-399055-406997-284054-392044-181808-339846-398818-391713-313369-299536-336843-283995-359940-424694-263115-141052-449176-284053-333339 +566525,Shang-Chi and the Legend of the Ten Rings,Action-Adventure-Fantasy,en,Shang-Chi must confront the past he thought he left behind when he is drawn into the web of the mysterious Ten Rings organization.,152.859,Marvel Studios,9/1/21,150000000,432243292,132,Released,You can't outrun your destiny.,7.6,7803,Simu Liu-Tony Leung Chiu-wai-Awkwafina-Zhang Meng'er-Fala Chen-Michelle Yeoh-Yuen Wah-Ben Kingsley-Florian Munteanu-Andy Le-Paul He-Jayden Tianyi Zhang-Elodie Fong-Arnold Sun-Stephanie Hsu-Kunal Dudheker-Tsai Chin-Jodi Long-Dallas Liu-Ronny Chieng-Daniel Liu-Stella Ye-Fernando Chien-Michael-Anthony Taylor-Zach Cherry-Raymond Ma-Lau Ga-Yung-Johnny Carr-Harmonie He-Lydia Sarks-Dee Bradley Baker-Benedict Wong-Jade Xu-Tim Roth-Mark Ruffalo-Brie Larson-David Chea-Bingchen Ye,martial arts-superhero-based on comic-mixed martial arts-east asian lead-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-father son relationship-stereoscopic-3d,/1BIoJGKbXjdFDAqUEiA2VHqkK1Z.jpg,/zxWAv1A34kdYslBi4ekMDtgIGUt.jpg,524434-580489-497698-62568-512195-634649-550988-370172-438631-453395-436969-451048-616037-299536-414906-335787-568124-429617-522402-624860-17422 +36669,Die Another Day,Adventure-Action-Thriller,en,James Bond is sent to investigate the connection between a North Korean terrorist and a diamond mogul who is funding the development of an international space weapon.,27.024,Eon Productions-Metro-Goldwyn-Mayer-Danjaq,11/17/02,140000000,431971116,133,Released,He's never been cooler.,6,3049,Pierce Brosnan-Halle Berry-Toby Stephens-Rosamund Pike-Rick Yune-Judi Dench-John Cleese-Michael Madsen-Will Yun Lee-Kenneth Tsang-Emilio Echevarr�_a-Mikhail Gorevoy-Lawrence Makoare-Colin Salmon-Samantha Bond-Ben Wee-Ho Yi-Rachel Grant-Ian Pirie-Sim�_n Andreu-Mark Dymond-Deborah Moore-Oliver Skeete-Joaqu�_n Mart�_nez-Michael G. Wilson-Daryl Kwan-Vincent Wong-Sai-Kit Yung-Manolo Caro-Sarllya-Paul Darrow-Lucas Hare-Cristina Contes-Madonna-Stewart Scudamore-Bill Nash-James Wallace-Thomas Ho-Aiko Horiuchi-Ami Chorlton-Tatiana Lavrentieva-Derek Lea-Catherine Porter-Albert Tang,spy-laser-espionage-mi6-british secret service-havana cuba-u.s. secret service agent-space based weapon-north korea,/bZmGqOhMhaLn8AoFMvFDct4tbrL.jpg,/ykFpThRWBJFFouxcroZGLiNJoF6.jpg,36643-714-710-709-700-708-699-253-681-707-698-682-691-667-646-660-668-10764-36670-657-658 +8358,Cast Away,Adventure-Drama,en,Chuck Nolan a top international manager for FedEx and Kelly a Ph.D. student are in love and heading towards marriage. Then Chuck's plane to Malaysia crashes at sea during a terrible storm. He's the only survivor and finds himself marooned on a desolate island. With no way to escape Chuck must find ways to survive in his new home.,29.094,Playtone-ImageMovers-20th Century Fox-DreamWorks Pictures,12/22/00,90000000,429632142,143,Released,"At the edge of the world, his journey begins.",7.658,10288,Tom Hanks-Helen Hunt-Chris Noth-Paul Sanchez-Lari White-Leonid Citer-David Allen Brooks-Semion Sudarikov-Peter Von Berg-Dmitri S. Boudrine-Nick Searcy-Fran�_ois Duhamel-Michael Forest-Lauren Birkell-Yelena Popovic-Viveka Davis-Jennifer Choe-Nan Martin-Anne Bellamy-Dennis Letts-Wendy Worthington-Valerie Wildman-John Duerler-Steve Monroe-Lisa Long-Elden Henson-Timothy Stack-Alice Vaughn-Joe Conley-Garret Davis-Jay Acovone-Christopher Kriesa-Derick Alexander-Vsevolod Boldin-Jenifer Lewis-Vince Martin-Valentina Ananina-Geoffrey Blake,exotic island-suicide attempt-volleyball-loneliness-survival-airplane crash-deserted island-tropical island,/6Zp6oj4QxpYFFvrVtb4kGc7r0jK.jpg,/ioqaIhJSkwa9DGRHGtOOUTiGRs2.jpg,594-568-13-857-745-640-497-591-37165-601-197-476761-453-1402-13223-44115-12405-329-602-98-4922 +427641,Rampage,Action-Adventure-Science Fiction,en,Primatologist Davis Okoye shares an unshakable bond with George the extraordinarily intelligent silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse it��s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America destroying everything in their path Okoye teams with a discredited genetic engineer to secure an antidote fighting his way through an ever-changing battlefield not only to halt a global catastrophe but to save the fearsome creature that was once his friend.,68.694,New Line Cinema-Flynn Picture Company-Wrigley Pictures-Twisted Media-7 Bucks Entertainment-ASAP Entertainment,4/11/18,120000000,428028233,107,Released,Big meets bigger,6.4,6222,Dwayne Johnson-Naomie Harris-Malin �kerman-Jeffrey Dean Morgan-Jake Lacy-Joe Manganiello-Marley Shelton-P.J. Byrne-Demetrius Grosse-Jack Quaid-Breanne Hill-Matt Gerald-Will Yun Lee-Urijah Faber-Bruce Blackshear-Jason Liles-Mac Wells-Allyssa Brooke-Stephen Dunlevy-Danny Le Boyer-Alan Boell-Adam Sztykiel-DJames Jones-Gary Weeks-David An-Arnold Chun-Gregory Hoyt-Suzanne Cotsakos-Ross Philips-Bernard Dowdell-Robin Meade-Chris Murphy-Maria Arcega-Dunn-Jason Sloss-Shannon Halligan-Andy John Roesgen-John Crow-Lane Carlock-Wendy Yang-Skye Notary-Willow Notary-Chase Anderson-Jeff Baird-Jasmine Bolton-Brandon Bowens-Pete Burris-Andrea Antonio Canal-Timothy Carr-David Dunston-Lex Elle-Matthew Ewald-Eric Ian-Tyler Jackson-Perry Zulu Jr.-Jessica Medina-Lauren Michele-Andrew Morgado-David Oelert-Valentina Latyna Plascencia-Rekkhan-Henardo Rodriguez-Jamin Thompson-Joey Thurmond-Robert Tinsley-Giota Trakas-Michael David Yuhl-Zion Bly-Camden Haydon,gorilla-monster-wolf-mutation-lizard-giant lizard-giant monster-creature-based on video game-giant animal-mutant animal-kaiju-albino-giant-rat-genetic experiment-destroyed city-giant gorilla-animal monster,/MGADip4thVSErP34FAAfzFBTZ5.jpg,/wrqUiMXttHE4UBFMhLHlN601MZh.jpg,447200-268896-338970-333339-345940-351286-353486-383498-284054-24006-892409-363088-299536-336843-447332-254128-335983-284053-445571-353081-339846 +143830,Mega Man X: The Day of Sigma,Action-Animation-Science Fiction,ja,"The year is 21XX. Reploids are commonplace now after Dr. Cain rediscovered Dr. Light's old lab and based several designs off of Dr. Light's original called ""Mega Man X"". X meanwhile has joined the Maverick Hunters and works with unit leader Zero under the command of Commander Sigma. It is their job to terminate reploids who have become violent.",3.804,XEBEC-CAPCOM,12/15/05,300000000,428000000,25,Released,,7.7,3,Takahiro Sakurai-Ryotaro Okiayu-Mugihito-Tomohisa Aso-Tadashi Miyazawa-Ryuzou Ishino-Daisuke Kageura-Hiroshi Shimozaki-Daisuke Egawa-Nobuyuki Kobushi-Yumiko Kobayashi-Eriko Kigawa-Yoshiro Matsumoto-Hiroto Kazuki,video game-based on video game-anime,/aeazw0wgTNWyvt48oA3OaM9dZXV.jpg,/rpfHBSzExhIFcHHfSu1pelxqWkT.jpg, +603692,John Wick: Chapter 4,Action-Thriller-Crime,en,With the price on his head ever increasing John Wick uncovers a path to defeating The High Table. But before he can earn his freedom Wick must face off against a new enemy with powerful alliances across the globe and forces that turn old friends into foes.,659.169,Thunder Road-87Eleven-Summit Entertainment-Studio Babelsberg,3/22/23,90000000,426978565,170,Released,"No way back, one way out.",7.827,4159,Keanu Reeves-Donnie Yen-Bill Skarsg��rd-Ian McShane-Laurence Fishburne-Lance Reddick-Clancy Brown-Hiroyuki Sanada-Rina Sawayama-Scott Adkins-Aim��e Kwan-Marko Zaror-Natalia Tena-Shamier Anderson-George Georgiou-Yoshinori Tashiro-Hiroki Sumi-Daiki Suzuki-Julia Asuka Riedl-Milena Rend�_n-Ivy Quainoo-Irina Trifanov-Iryna Fedorova-Andrej Kaminsky-Sven Marquardt-Raicho Vasilev-Marie Pierra Kakoma-Gina Aponte-Christoph Hofmann,new york city-martial arts-hitman-sequel-organized crime-osaka japan-aftercreditsstinger-hunted-professional assassin-neo-noir-berlin,/vZloFAK7NmvMGKE7VkF5UHaz0I.jpg,/fgw4rFs4XMWdJTWp1eMacHKQqbZ.jpg,1098239-802401-385687-19603-24791-502356-781009-525644-569094-384093-203579-1103694-649336-1076605-697843-12354-325358-347196-594767-493529-840326 +715904,"Metallica: WorldWired Tour - Live in Manchester, England - June 18, 2019",Music,en,Filmed at Etihad Stadium in Manchester England on June 18 2019. This concert is part of the WorldWired Tour by American heavy metal band Metallica in support of their tenth studio album Hardwired... to Self-Destruct which was released on November 18 2016. It is also their first worldwide tour after the World Magnetic Tour six years earlier. Set-List: 1. Hardwired / 2. The Memory Remains (with extended outro) / 3. Disposable Heroes / 4. The God That Failed / 5. The Unforgiven / 6. Here Comes Revenge / 7. Moth Into Flame / 8. Sad but True / 9. Welcome Home (Sanitarium) (followed by Kirk & Rob's solos incl. 'I Wanna Be Adored' 'ManUNkind' & 'Orion') / 10. St. Anger / 11. One / 12. Master of Puppets / 13. For Whom the Bell Tolls / 14. Creeping Death / 15. Seek & Destroy / 16. Lords of Summer / 17. Nothing Else Matters / 18. Enter Sandman (with 'The Frayed Ends of Sanity' outro).,1.619,,6/8/20,0,426900000,150,Released,,10,1,James Hetfield-Lars Ulrich-Kirk Hammett-Robert Trujillo,england-concert-hardwired,/ehM3D3KKo2OUxVVBFif1OJbtqGP.jpg,/ddygUzXBHGqnlBPcUI70ih7QOW0.jpg, +715904,"Metallica: WorldWired Tour - Live in Manchester, England - June 18, 2019",Music,en,Filmed at Etihad Stadium in Manchester England on June 18 2019. This concert is part of the WorldWired Tour by American heavy metal band Metallica in support of their tenth studio album Hardwired... to Self-Destruct which was released on November 18 2016. It is also their first worldwide tour after the World Magnetic Tour six years earlier. Set-List: 1. Hardwired / 2. The Memory Remains (with extended outro) / 3. Disposable Heroes / 4. The God That Failed / 5. The Unforgiven / 6. Here Comes Revenge / 7. Moth Into Flame / 8. Sad but True / 9. Welcome Home (Sanitarium) (followed by Kirk & Rob's solos incl. 'I Wanna Be Adored' 'ManUNkind' & 'Orion') / 10. St. Anger / 11. One / 12. Master of Puppets / 13. For Whom the Bell Tolls / 14. Creeping Death / 15. Seek & Destroy / 16. Lords of Summer / 17. Nothing Else Matters / 18. Enter Sandman (with 'The Frayed Ends of Sanity' outro).,1.244,,6/8/20,0,426900000,150,Released,,10,1,James Hetfield-Lars Ulrich-Kirk Hammett-Robert Trujillo,england-concert-hardwired,/ehM3D3KKo2OUxVVBFif1OJbtqGP.jpg,/ddygUzXBHGqnlBPcUI70ih7QOW0.jpg, +77338,The Intouchables,Drama-Comedy,fr,A true story of two men who should never have met ��� a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.,62.777,Gaumont-Cin��Cin��ma-Quad Productions-Chaocorp-Ten Films-TF1-Canal+-TF1 Films Production,11/2/11,13000000,426588510,113,Released,Sometimes you have to reach into someone else's world to find out what's missing in your own.,8.275,15633,Fran�_ois Cluzet-Omar Sy-Dominique Henry-Anne Le Ny-Clotilde Mollet-Alba Ga��a Bellugi-Audrey Fleurot-Cyril Mendy-Christian Ameri-Marie-Laure Descoureaux-Salimata Kamate-Absa Diatou Toure-Dominique Daguier-Fran�_ois Caron-Thomas Soliv��r��s-Gr��goire Oestermann-Doroth��e Bri��re-Jos��phine de Meaux-�milie Caen-Caroline Bourg-Sylvain Lazard-Jean-Fran�_ois Cayrey-Ian Fenelon-Renaud Barse-Fran�_ois Bureloup-Nicky Marbot-Benjamin Baroche-J��r��me Pauwels-Antoine Laurent-Fabrice Mantegna-Hedi Bouchenafa-Michel Winogradoff-Elliot Latil-Yun-Ping He-K��vin Wamo-Pierre-Laurent Barneron-Philippe Pozzo di Borgo,male friendship-masseuse-friendship-based on true story-aristocrat-paragliding-interracial friendship-unlikely friendship-duringcreditsstinger-quadriplegic-quadriplegia,/323BP0itpxTsO0skTwdnVmf7YC9.jpg,/bGksau9GGu0uJ8DJQ8DYc9JW5LM.jpg,13-637-37165-497-18785-14160-11324-106646-98-597-207-2062-6479-101-16869-424-8587-12405-5915-72105-807 +38700,Bad Boys for Life,Thriller-Action-Crime,en,Marcus and Mike are forced to confront new threats career changes and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas the vicious leader of a Miami drug cartel.,79.213,Columbia Pictures-2.0 Entertainment-Don Simpson/Jerry Bruckheimer Films-Overbrook Entertainment,1/15/20,90000000,426505244,124,Released,Ride together. Die together.,7.2,7347,Will Smith-Martin Lawrence-Paola Nu��ez-Vanessa Hudgens-Alexander Ludwig-Charles Melton-Kate del Castillo-Nicky Jam-Joe Pantoliano-Theresa Randle-Jacob Scipio-Michael Bay-DJ Khaled-Jay Dubb-Happy Anderson-Bianca Bethune-Dennis Greene-Lisa Ann Hadley-Gissette E. Valentin-Rose Bianco-Edelia Merida-Jasmin Lawrence-Shacai O'Neal-Carlos Guerrero-Massi Furlan-Chick Bernhard-Jennifer Badger-Jeff J.J. Authors-Keith Wheeler-Brandi Cohen-Jay Amor-Yessenia Hernandez-Anthony Molinari-Ivo Nandi-David Shae-Eduardo Rosario-Rory Markham-Brad Sanders-Damien Butler-Bilall Fallah-Norma Alvarez-Adil El Arbi-Christina Christensen-Nahima Bicelis-Erroll Castrillo-Kial Butler-Sharon Pfeiffer-Porshia C. Joseph-Ellison Kendrick-Davis Aguila-Athena Akers-Adrian De Armas-Laura Ault-Misty Autery-James William Ballard-Austin Bollinger-Mario 'Vocol' Booker-Thomas Brag-Troy Brenna-Sergio Briones-Landon Brooks-Ruben E.A. Brown-Lauren Buglioli-Ricardo Burgos-Santos Caraballo-Matthew Carter-Joe Crosson-Ellen Marguerite Cullivan-LeBron Daniel-Jos�� Alfredo Fernandez-Darin Ferraro-Fred Galle-Joseph Giambrone-Derrick Gilbert-Jenin Gonzalez-Wil Gonzalez-Steve Heinz-Elvia Hill-Cal Johnson-Julia Kay-Melissa Kennemore-Tony Kim-D.L. Lewis-Josue Louis-Charles-Hans Marrero-Ryan L. Price-Scott Rapp-Ashae Reagan-Felicia M. Reyes-Manuel Rivera-London Seabreeze-Pedro Tavarez Jr.-Robert Tinsley-Emily Towles-Joseph Velez-Jamil C. Winston,detective-police-sequel-police officer-police detective-buddy cop-buddy comedy-buddy film-action hero,/y95lQLnuNKdPAzw9F9Ab8kJ80c3.jpg,/4J1Vu6oGzt60fakP4delEPDqEhI.jpg,338762-8961-495764-512200-9737-454626-962608-443791-545609-384018-51138-42480-522627-73335-290859-448119-934293-453405-570670-530915-458156 +68718,Django Unchained,Drama-Western,en,With the help of a German bounty hunter a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.,67.235,The Weinstein Company-Columbia Pictures,12/25/12,100000000,425368238,165,Released,"Life, liberty and the pursuit of vengeance.",8.161,23743,Jamie Foxx-Christoph Waltz-Leonardo DiCaprio-Kerry Washington-Samuel L. Jackson-Walton Goggins-Dennis Christopher-James Remar-David Steen-Dana Gourrier-Nichole Galicia-Laura Cayouette-Ato Essandoh-Sammi Rotibi-Clay Donahue Fontenot-Escalante Lundy-Miriam F. Glover-Don Johnson-Franco Nero-James Russo-Tom Wopat-Don Stroud-Amber Tamblyn-Bruce Dern-M.C. Gainey-Cooper Huckabee-Doc Duhame-Jonah Hill-Lee Horsley-Zo� Bell-Michael Bowen-Robert Carradine-Jake Garber-Ted Neeley-James Parks-Tom Savini-Michael Parks-John Jarratt-Quentin Tarantino-Amari Cheatom-Keith Jefferson-Marcus Henderson-Lil Chuuch-Kinetic-Louise Stratten-Kim Robillard-Shana Stein-Shannon Hazlett-Jack Lucarelli-Victoria Thomas-Grace Collins-Sharon Pierre-Louis-Christopher Berry-Kim Collins-Dane Rhodes-J.D. Evermore-Rex Linn-Michael Bacall-Ronan Hice-Ned Bellamy-Dave Coennen-Dani��le Watts-Jon Eyez-Omar J. Dorsey-Evan Parke-Craig Stark-Brian Brown-Ritchie Montgomery-Nicholas Dashnaw-Jarrod Bunch-Edrick Browne-Kerry Sims-Jamal Duff-Todd Allen-Lewis Smith-Keniaryn Mitchell-Jakel Marshall-Carl Singleton-Ashley Toman-John McConnell-Mark Amos-Monica Rene'e Anderson-Marsha Stephanie Blake-Catherine Lambert-Deborah Ayorinde-Takara Clark-Kimberley Drummond-Tenaj L. Jackson-Carl Bailey-Ross P. Cook-Gregory Allen Gabroy-Seth Bailey-David G. Baker-Richie J. Ladner-Glen Warner-Kesha Bullard-Edward J. Clare-Jordon Michael Corbin-Mike DeMille-Gary Grubbs-Justin Hall-Sandra Linz-Kasey James-Skipper Landry-Cindy Mah-Johnny Otto-Belinda Owino-Mark Ulano-Misty Upham-Russ Tamblyn-Fatimah Taliah-Santana Draper,bounty hunter-hero-plantation-society-friendship-friends-revenge-rivalry-rescue-shootout-racism-dentist-django-aftercreditsstinger-odd couple-black slave-deadly-19th century,/7oWY8VDWW7thTzWh3OKYRkWUlD5.jpg,/2oZklIzUbvZXXzIFzv7Hi68d6xf.jpg,16869-680-27205-49026-24-155-550-393-500-11324-106646-273248-37724-1422-603-120-272-49051-13-857-807 +605,The Matrix Revolutions,Adventure-Action-Thriller-Science Fiction,en,The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.,37.937,Village Roadshow Pictures-NPV Entertainment-Silver Pictures,11/5/03,150000000,424988211,129,Released,Everything that has a beginning has an end.,6.701,8693,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Jada Pinkett Smith-Mary Alice-Harold Perrineau-Monica Bellucci-Harry Lennix-Lambert Wilson-Nona Gaye-Anthony Zerbe-Tanveer K. Atwal-Helmut Bakaitis-Kate Beahan-Francine Bell-Rachel Blackman-Henry Blasingame-Ian Bliss-David Bowers-Matt Castelli-Collin Chou-Essie Davis-Dion Horstmans-Lachy Hulme-Roy Jones Jr.-Christopher Kirby-Peter Lamb-Nathaniel Lees-Robert Mammone-Joe Manning-Maurice Morgan-Tharini Mudaliar-Rene Naufahu-Robyn Nevin-Genevieve O'Reilly-Kittrick Redmond-Rupert Reid-Kevin Michael Richardson-David Roberts-Bruce Spence-Richard Sydenham-Che Timmins-Gina Torres-Clayton Watson-Cornel West-Bernard White-Anthony Brandon Wong-Rick Shuster,saving the world-artificial intelligence-man vs machine-flying-philosophy-fortune teller-martial arts-kung fu-underground world-killer robot-temple-subway-dream-sun-hero-fight-sunlight-computer virus-key-future-precognition-super computer-machine town-ying yang-dying and death-virtual reality-dystopia-computer-faith-truth-rescue-mission-cyberpunk-woman director-action hero-gnosticism,/ynMQ4nVwkoP2gLxXXDgcdltihTD.jpg,/533xAMhhVyjTy8hwMUFEt5TuDfR.jpg,604-603-296-607-62568-534-2048-608-2501-36668-1858-36658-20526-602-180-1894-1893-1895-564-36657-280 +10020,Beauty and the Beast,Romance-Family-Animation-Fantasy,en,Follow the adventures of Belle a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff Belle soon learns the most important lesson of all -- that true beauty comes from within.,91.26,Walt Disney Pictures-Silver Screen Partners IV-Walt Disney Feature Animation,10/22/91,25000000,424967620,84,Released,The most beautiful love story ever told.,7.7,9462,Paige O'Hara-Robby Benson-Richard White-Jerry Orbach-David Ogden Stiers-Angela Lansbury-Rex Everhart-Jesse Corti-Bradley Pierce-Hal Smith-Jo Anne Worley-Mary Kay Bergman-Kath Soucie-Alvin Epstein-Tony Jay-Brian Cummings-Alec Murphy-Kimmy Robertson-Frank Welker-Alex Murphy-Sherry Lynn-Mickie McGowan-Jack Angel-Bruce Adler-Scott Barnes-Vanna Bonta-Maureen Brennan-Liz Callaway-Philip L. Clarke-Margery Daley-Jennifer Darling-Albert de Ruiter-George Dvorsky-Bill Farmer-Bruce Fifer-Johnson Flucker-Larry Hansen-Randy Hansen-Mary Ann Hart-Phyllis Kubey-Hearndon Lackey-Larry Moss-Panchali Null-Wilbur Pauley-Jennifer Perito-Caroline Peyton-Patrick Pinney-Cynthia Richards-Hewes-Phil Proctor-Stephen Sturk,princess-france-prince-castle-rose-musical-insane asylum-beast-based on fairy tale-eccentric man-toxic masculinity,/hUJ0UvQ5tgE2Z9WpfuduVSdiCiU.jpg,/g38W2qmTlpFog1TAnT86FOOLBFT.jpg,812-10144-11224-408-10882-8587-10674-38757-9325-12092-10340-12230-10693-37135-10895-11970-10530-12-3170-595931-425 +581,Dances with Wolves,Adventure-Drama-Western,en,Wounded Civil War soldier John Dunbar tries to commit suicide���and becomes a hero instead. As a reward he's assigned to his dream post a remote junction on the Western frontier and soon makes unlikely friends with the local Sioux tribe.,33.475,Tig Productions-Majestic Films International-Allied Filmmakers,3/30/90,22000000,424208848,181,Released,Inside everyone is a frontier waiting to be discovered.,7.857,3661,Kevin Costner-Mary McDonnell-Graham Greene-Rodney A. Grant-Floyd Red Crow Westerman-Tantoo Cardinal-Robert Pastorelli-Charles Rocket-Maury Chaykin-Jimmy Herman-Nathan Lee Chasing His Horse-Michael Spears-Jason R. Lone Hill-Tony Pierce-Doris Leader Charge-Tom Everett-Larry Joshua-Kirk Baltz-Wayne Grace-Donald Hotton-Annie Costner-Conor Duffy-Elisa Daniel-Percy White Plume-John Tail-Steve Reevis-Sheldon Peters Wolfchild-Wes Studi-Buffalo Child-Clayton Big Eagle-Richard Leader Charge-Redwing Ted Nez-Marvin Holy-Raymond Newholy-David J. Fuller-Ryan White Bull-Otakuye Conroy-Maretta Big Crow-Steven Chambers-William H. Burton Jr.-Bill W. Curry-Nick Thompson-Carter Hanner-Kent Hays-Robert Goldman-Frank P. Costanza-James A. Mitchell-R. L. Curtin-Justin-Teddy-Buck,countryside-based on novel or book-culture clash-desertion-mutiny-wolf-language barrier-self-discovery-dakota-buffalo-friendship-unsociability-freedom-tennessee-kansas usa-sioux-native american-snow-pawnee tribe-19th century-lakota-bison-early america,/cvaBVpS0GzKqBd63pFT8f1E8OKv.jpg,/ywWva4trKw7f3wtbz81Fe3FnrtC.jpg,177343-122440-262780-205955-179921-138949-131194-138373-150456-208895-119127-147589-126550-211572-143916-141669-187647-233795-242894-46367-223805 +2454,The Chronicles of Narnia: Prince Caspian,Adventure-Family-Fantasy,en,One year after their incredible adventures in the Lion the Witch and the Wardrobe Peter Edmund Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now with the help of a colorful cast of new characters including Trufflehunter the badger and Nikabrik the dwarf the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.,46.863,Walt Disney Pictures-Walden Media-Stillking Films-Ozumi Films-Propeler-Silverbell Films-Revolution Sun Studios,5/15/08,225000000,419665568,150,Released,Everything you know is about to change forever.,6.6,5671,Georgie Henley-Skandar Keynes-William Moseley-Anna Popplewell-Ben Barnes-Sergio Castellitto-Peter Dinklage-Warwick Davis-Vincent Grass-Pierfrancesco Favino-Cornell John-Dami��n Alc��zar-Alicia Borrachero-Sim�_n Andreu-Predrag Bjelac-David Bowles-Juan Diego Montoya-Douglas Gresham-Ashley Jones-Kl��ra Issov��-Shane Rangi-Curtis Matthew-Mana Hira Davis-Winham Hammond-Hana Frejkov��-Kristina Beranov��-Lucie Solarova-Karolina Matouskova-Alina Phelan-Joseph Moore-Isaac Bell-Lejla Abbasov��-Ephraim Goldin-Yemi A.D.-Carlos Silva Da Silva-Gomez Sandoval-Jan Filipensk�_-David Mottl-Michaela Dvorska-John Bach-Jack Walley-Marcus O'Donovan-Adam Valdez-Eddie Izzard-Liam Neeson-Ken Stott-Tilda Swinton-David Walliams-Siobhan Connors-Jaymie Bell,sibling relationship-witch-based on novel or book-lion-prince-wretch-matter of life and death-faith-uncle-epic-family relationships-battle-based on children's book-fantasy world-1940s-high fantasy-based on young adult novel-good versus evil,/qxz3WIyjZiSKUhaTIEJ3c1GcC9z.jpg,/9pBv1BOSloAUgAkF0meJWdnbV4Q.jpg,10140-411-32657-18360-2268-1593-76285-10527-8355-810-1979-24021-18239-950-13053-10192-953-27022-88751-50620-50619 +564,The Mummy,Adventure-Action-Fantasy,en,Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love���along with a curse that guarantees eternal doom upon the world if he is ever awoken.,79.812,Universal Pictures-Alphaville,4/16/99,80000000,415885488,124,Released,The sands will rise. The heavens will part. The power will be unleashed.,6.916,8555,Brendan Fraser-Rachel Weisz-John Hannah-Arnold Vosloo-Patricia Vel��squez-Oded Fehr-Kevin J. O'Connor-Jonathan Hyde-Erick Avari-Stephen Dunham-Corey Johnson-Mohamed Sa��d Afifi-Tuc Watkins-Omid Djalili-Bernard Fox-Taylor Murphy-Aharon Ipal��-Carl Chase-Abderrahim El Aadili-Jake Arnott-Mason Ball-Isobel Brook-James Traherne Burton-Peter Chequer-Porl Smith-Ian Warner,egypt-cairo-library-secret passage-pastor-pyramid-sandstorm-solar eclipse-mummy-foreign legion-nile-secret society-treasure hunt-remake-archaeologist-tomb-book of the dead-ancient egypt-opposites attract-1920s-pharoah-good versus evil,/yhIsVvcUm7QxzLfT6HW2wLf5ajY.jpg,/nCd8G7C5mbiABQuATgos1OeAshu.jpg,1734-1735-282035-603-10193-9738-607-605-22970-772-863-12437-9334-1893-6479-37135-95-24021-87-13448-2668 +10140,The Chronicles of Narnia: The Voyage of the Dawn Treader,Adventure-Family-Fantasy,en,This time around Edmund and Lucy Pevensie along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.,47.398,Fox 2000 Pictures-Walden Media,12/2/10,155000000,415686217,113,Released,Return to magic. Return to hope. Return to Narnia.,6.4,4984,Ben Barnes-Skandar Keynes-Georgie Henley-Will Poulter-Anna Popplewell-William Moseley-Simon Pegg-Liam Neeson-Tilda Swinton-Laura Brent-Gary Sweet-Terry Norris-Bruce Spence-Bille Brown-Colin Moody-Shane Rangi-Arthur Angel-Arabella Morton-Rachel Blakely-Steven Rooke-Tony Nixon-David Vallon-Jared Robinsen-Roy Billing-Neil G. Young-Greg Poppleton-Nicholas Neild-Nathaniel Parker-Daniel Poole-Mirko Grillini-Ron Kelly-Laurence Coy-Douglas Gresham-Michael Maguire-Catarina Hebbard-Tamati Rangi-Lucas Ross-Megan Peta Hill-David Sachet-Ross Price,based on novel or book-lion-magic-epic-anthropomorphism-dragon-king-fantasy world-snowing-sea voyage-quest-high fantasy-father son relationship-brother sister relationship-turned into animal-based on young adult novel-good versus evil,/z6LVJXEmY8E6s57uf8cV3RlWvws.jpg,/8LSl2BPsRmookhO0UITB6PStZJX.jpg,2454-411-32657-18360-2268-76285-10527-50619-8355-10192-50620-12444-24021-12155-1979-810-950-27022-953-1593-18239 +324668,Jason Bourne,Action-Thriller-Mystery,en,The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.,27.179,The Kennedy/Marshall Company-Captivate Entertainment-Pearl Street Films-Double Negative-Perfect World Pictures,7/27/16,120000000,415484914,123,Released,You know his name,6.3,5226,Matt Damon-Tommy Lee Jones-Alicia Vikander-Vincent Cassel-Julia Stiles-Riz Ahmed-Joe Kennard-Amy De Bhr�_n-Ato Essandoh-Scott Shepherd-Bill Camp-Vinzenz Kiefer-Stephen Kunken-Ben Stylianou-Kaya Yuzuki-Matthew O'Neill-Lizzie Phillips-Paris Stangl-Gregg Henry-Matt Blair-Akie Kotabe-Robin Crouch-Miguel Alves-Khan-Robert Stanton-Duran Fulton Brown-Charles Jarman-Jay Vincent Diaz-Richard Nunez-Sonny Robertson-James Dormuth-Dexter Emery-Jorge Luis Alvarez-Ava Katharina Maria Hoeller-Shane Williams-Frank Roskowski-Johnny Cicco-Martin Daniel Latham-Trevor White-Sasha Larkin-Barrie Brown-Stuart Jeffrey Cram-Brian Duda-Bobby Akers-Hugo Alonzo-Griffin Andrews-Jeremy Angel-Jozef Aoki-Sarah Armstrong-Alphonso Austin-Martin Ballantyne-Tim Baros-Gintare Beinoraviciute-Tom Bonello-Charles-Jean Boucher-Allen Bracken-Vin'Cenzo Burgess-Anthony Burkhalter-Eduardo Jed Camara-Hunter Cannistraci-Lenisa Ann Careaga-Nicole Chauvet-Shin-Fei Chen-Jeannine Comeau-Constance Consola-Angel Contreras-Alexander Cooper-Jesse M. Cooper-Graig Couton-Lisamarie Cowan-Roger Julian Cross-Gioacchino Jim Cuffaro-Graham Curry-Darlene Dalmaceda-Erin C. Davis-Christine de Lota-Steven I. Dillard-Timothy Skyler Dunigan-Andrew Dunkelberger-Paul Edney-Barbara Edwards-Heiko Effenberger-Aaron Egawa-Daniel Eghan-Clara Emanuel-Ricardo Ewert-Dino Fazzani-Nathan Ferguson-Joseph D Fisher-Ellie Fox-Alexander Garganera-Gladis Giada-Alex Gillison-Philip Greene-Shane Griffin-Kevin Hager-Phillip Allen Hall III-Yumiko Hanasaka-Jeanette Hatlestad-Michael Haydon-John Heartstone-David Hershwitzky-Jamie Hodge-Yusuf Hofri-Ken Holliday-Romulus Hotea-Jahmilla Jackson-Dolly Jagdeo-Bron James-Jimi James-Kyle James-Natasha Jenssen-Kyle Jerichow-Jauhara Jivanji-Mark Justice-Attila G. Kerekes-Kyle Kesterson-Marat Khairoullin-Kaveh Khatiri-Slim Khezri-Elle van Knoll-Steven Krasner-Vivian Yoon Lee-Kamil Lemieszewski-Matthew Leonhart-David Ae Levy-Raul Limon-Frank Lui Geo-Kevin Lye-Rob Marchitti-Maria Marra-Garry Marriott-Alex Martin-Jason Matthewson-Stephanie McIntyre-Amelie McKendry-Addyson Medley-Anthony Molinari-Robb Moon-Sean Moon-Ashley Nicole Murray-Celina Nessa-Brodi Nicholas-Jason Novak-Emeson Nwolie-Lisa Nygard-Pugh-Angelo Olivier-Sarah Ospina-Mac Pietowski-Dean Preston-Damon Proctor-Jon Prophet-Abigail Rich-Lovell Richards-Brian Robak-Belen Rosenberg-Andre Rutherford-Nunzio Santoro-Shane Santos-Lani Sarem-Kaleigh Saunders-Nicolas Savidis-Macris-Mark Sawtelle-Earl Vincent Sherwood II-Adonis Simmons-Neil Alexander Smith-Eric Sparks-Richard Stanley-Elicia Stokes Navarro-Alyx Stone-Aaron Strong-Paul Terry-Tony Toste-Michael Tushaus-Luke Van Bergen-Tony Vivio-Zhaleh Vossough-Marla Aaron Wapner-Don Whatley-LaFonda Whitehead-Chris Wolfe-Andie Ximenes-Alexander Yassin-Brad Hamerly-Brandon Chapmond,casino-cia-assassin-greece-amnesia-chase-flashback-hacking-las vegas-black ops-rogue agent-armored vehicle-reykjav�_k iceland-hdd,/xA7N41glw17MBQtcWSm2eBlBRuG.jpg,/7mHeyU0a538bgguOeF57I8ZroSk.jpg,2502-2503-2501-49040-188927-278924-343611-47933-297761-333484-291805-207932-258489-267860-302946-177677-68735-206647-302699-363676-246655 +76170,The Wolverine,Action-Science Fiction-Adventure-Fantasy,en,Wolverine faces his ultimate nemesis - and tests of his physical emotional and mortal limits - in a life-changing voyage to modern-day Japan.,9.372,The Donners' Company-20th Century Fox,7/23/13,120000000,415440673,126,Released,"When he's most vulnerable, he's most dangerous.",6.391,8655,Hugh Jackman-Tao Okamoto-Rila Fukushima-Hiroyuki Sanada-Famke Janssen-Svetlana Khodchenkova-Brian Tee-Hal Yamanouchi-Will Yun Lee-Ken Yamamura-Nobutaka Aoyagi-Seiji Funamoto-Shinji Ikefuji-Qyoko Kudo-Nobuaki Kakuda-Chiharu Mizuno-Takao Kinoshita-Conrad Coleby-Taris Tyler-Sarah Naylor-Liddell-Joshua Remilton-Andy Owens-Allan Poppleton-Geoff Burke-Yasuyo Shiba-Mai Ishikawa-Yaeko Kimura-Ryuta Kimura-Briden Starr-Maria Lukasheva-Tess Haubrich-Taki Abe-William Takayanagi-Temm-Kuni Hashimoto-Erich Chikashi Linzbichler-Shingo Usami-Naoya Ogawa-Atsushi Sawada-Takashi Matsuyama-Masa Yamaguchi-Eric Laciste-Hideki Sugiguchi-Garret Sato-Kosuke Masano-Yoji Tatsuta-Yoshinori Fukushige-Hiroshi Kasuga-Yumiko Nakamura-Kimi-Keiko Matsumoto-Louis Toshio Okada-Ian McKellen-Patrick Stewart-Jon Valera-Yasushi Asaya-Jeremy Marinas-Ola Endress,japan-samurai-mutant-world war i-superhero-based on comic-superhuman-duringcreditsstinger,/xNi8daRmN4XY8rXHd4rwLbJf1cU.jpg,/7D2PgX369YYePs4m44IQvROWM42.jpg,2080-36668-49538-36658-36657-127585-49521-246655-76338-68721-102382-68726-54138-75612-68724-72559-1930-100402-10195-9738-82992 +4564,Sex and the City,Comedy-Drama-Romance,en,A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.,53.376,Darren Star Productions-New Line Cinema-HBO,5/12/08,65000000,415252786,145,Released,Get Carried away.,6.6,1907,Sarah Jessica Parker-Kim Cattrall-Kristin Davis-Cynthia Nixon-Chris Noth-Candice Bergen-Jennifer Hudson-David Eigenberg-Evan Handler-Jason Lewis-Mario Cantone-Lynn Cohen-Willie Garson-Joanna Gleason-Joseph Pupo-Alexandra Fong-Parker Fong-Kerry Bish��-Polina Frantsena-Kate Rockwell-Amy Flanagan-Lena Hall-Amanda Setton-Ching Valdes-Aran-Malcolm Gets-Lorna Kelly-Daphne Rubin-Vega-Patrick DeMarchelier-Andr�� Leon Talley-Plum Sykes-Lawren Howell-Gucci Westman-Serge Normant-Mary Howard-Dave Bradford-Gilles Marini-Monica Mayhem-Gilbert Cruz-Damian Young-Rick Aiello-Rogelio T. Ramos-Rene L. Moreno-Veanne Cox-Ricardo Molina-Annaleigh Ashford-Bridget Everett-Peter Y. Kim-Suzanne Cryer-Joshua Henry-Henriette Mantel-Nancy Shayne-Kim Shaw-Michelle M. Kim-Erica K. Evans-Roxy DeVille-Van Hughes-Sara Gettelfinger-Bridget Regan-Dreama Walker-Ruby E. Crawford-Henry Strozier-Lisa Kron-Scott Burn-Julie Halston,new york city-city portrait-hotel-new year's eve-forgiveness-fashion journal-saint louis-female friendship-fashion designer-malibu-loss of libido-botox-couples therapy-romantic comedy-best friend-wedding-break-up-fashion-manhattan new york city-desire to have children-female sexuality,/AhNfnsGW95RKHQNLdgFH48UN0Zy.jpg,/osHKguxvXPIUJJzsO3DEORZZ8QD.jpg,37786-501190-34604-269381-853584-44221-518244-385281-803104-619105-4568-234951-25128-547205-87584-251266-70642-85509-702701-452006-118417 +207703,Kingsman: The Secret Service,Crime-Comedy-Action-Adventure,en,The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.,80.72,20th Century Fox-Marv Films-Cloudy Productions-TSG Entertainment,12/13/14,81000000,414351546,129,Released,Manners maketh man.,7.637,15143,Taron Egerton-Colin Firth-Samuel L. Jackson-Mark Strong-Sophie Cookson-Sofia Boutella-Michael Caine-Mark Hamill-Samantha Womack-Jonno Davies-Jack Davenport-Adrian Quinton-Alex Nikolov-Velibor Topic-Geoff Bell-Jordan Long-Theo Barklem-Biggs-Tobi Bakare-Morgan Watkins-Paul Kennington-Ralph Ineson-Edward Holcroft-Nicholas Banks-Jack Cutmore-Scott-Nicholas Agnew-Rowan Polonski-Tom Prior-Fiona Hampton-Bj�rn Floberg-Hanna Alstr�_m-Johanna Taylor-Lily Travers-Richard Brake-Andrew Bridgmont-Corey Johnson-Anne Wittman-Andrei Lenart-Simon Green-Lazara Storm-Sarah Hewson-Jayne Secker-Lukwesa Burak-James Clayton-Nick English-Charles Filmer-Bimbo Hart-Chester King-Alastair MacIntosh-Carlos Peres-Jude Poyer-Daniel Chapple,spy-great britain-secret organization-secret agent-based on comic-united kingdom-duringcreditsstinger,/ay7xwXn1G9fzX9TUBlkGA584rGi.jpg,/qzUIOTk0E3F1zjvYjcBRTKUTgf9.jpg,343668-99861-127585-135397-102899-76341-100402-75656-177572-118340-198663-137113-122917-168259-240832-131631-286217-198184-76338-205596-101299 +45269,The King's Speech,Drama-History,en,The King's Speech tells the story of the man who became King George VI the father of Queen Elizabeth II. After his brother abdicates George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques and as a result of an unlikely friendship Bertie is able to find his voice and boldly lead the country into war.,18.191,The Weinstein Company-UK Film Council-Bedlam Productions-See-Saw Films-Aegis Film Fund-FilmNation Entertainment-Momentum Pictures-Molinare Investment,11/26/10,15000000,414211549,118,Released,Find your voice.,7.7,7828,Colin Firth-Geoffrey Rush-Helena Bonham Carter-Guy Pearce-Timothy Spall-Michael Gambon-Jennifer Ehle-Derek Jacobi-Freya Wilson-Ramona Marquez-Richard Dixon-Robert Portal-Eve Best-Paul Trussell-Adrian Scarborough-Andrew Havill-Charles Armstrong-Roger Hammond-Calum Gittins-Dominic Applewhite-Ben Wimsett-David Bamber-Jake Hathaway-Patrick Ryecart-Teresa Gallagher-Simon Chandler-Claire Bloom-Orlando Wells-Tim Downie-Dick Ward-John Albasiny-Danny Emes-Anthony Andrews-John Warnaby-Roger Parrott-Dean Ambridge-Julianne Buescher-James Currie-Graham Curry-Tony Earnshaw-Sean Talo,great britain-radio-monarchy-stutter-palace-radio transmission-royal family-speech-marriage-based on true story-royalty-death of father-historical fiction-1930s-british royal family-british monarchy-george vi-winston churchill-speech therapy-corgi,/uQ538BfYLDJh3GXlzRZLo0j7PFj.jpg,/5eb7l7AE2yU0mvb38fR5qLNhDDH.jpg,12405-453-37799-68734-4922-197-8358-70-13223-72976-745-44214-423-6977-380-207-489-1402-76203-74643-591 +18360,Night at the Museum: Battle of the Smithsonian,Adventure-Fantasy-Action-Comedy-Family,en,Hapless museum night watchman Larry Daley must help his living breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart Abe Lincoln and Ivan the Terrible.,31.259,21 Laps Entertainment-1492 Pictures-Dune Entertainment-Moving Picture Company-Museum Canada Productions-20th Century Fox,5/20/09,150000000,413106170,105,Released,When the lights go off the battle is on.,6.124,6188,Ben Stiller-Amy Adams-Owen Wilson-Hank Azaria-Robin Williams-Christopher Guest-Alain Chabat-Steve Coogan-Ricky Gervais-Bill Hader-Jon Bernthal-Patrick Gallagher-Jake Cherry-Rami Malek-Mizuo Peck-Kerry van der Griend-Matthew Harrison-Rick Dobran-Randy Lee-Darryl Quon-Gerald Wong-Paul Chih-Ping Cheng-Jay Baruchel-Mindy Kaling-Keith Powell-Craig Robinson-Samuel Patrick Chu-Augustus Oicle-Kai James-Clint Howard-Matty Finochio-George Foreman-Josh Byer-Sophie Levy-Tess Levy-Christina Schild-Robert Thurston-Alberta Mayne-Clifton MaCabe Murray-Caroll Spinney-Thomas Morley-Dan Joffre-Dave Hospes-Regina Taufen-Shawn Levy-Joe Jonas-Kevin Jonas-Nick Jonas-Eugene Levy-Brad Garrett-Ed Helms-Jonah Hill-Thomas Lennon-Crystal the Monkey,museum-duringcreditsstinger-amelia earhart-smithsonian,/l9yAQn6TyrA3gv5xZZkiMMoZsiw.jpg,/kwTfPnP9f8ZyXmSniDcwonJWixY.jpg,1593-181533-32657-10527-810-8355-950-2454-88751-953-10192-1979-809-10140-9738-10555-411-310-80321-425-27022 +268,Batman,Fantasy-Action-Crime,en,"Batman must face his most ruthless nemesis when a deformed madman calling himself ""The Joker"" seizes control of Gotham's criminal underworld.",56.752,The Guber-Peters Company-Warner Bros. Pictures-Polygram Pictures,6/21/89,35000000,411348924,126,Released,Have you ever danced with the devil in the pale moonlight?,7.22,7256,Michael Keaton-Jack Nicholson-Kim Basinger-Michael Gough-Jerry Hall-Robert Wuhl-Pat Hingle-Billy Dee Williams-Jack Palance-Tracey Walter-Lee Wallace-William Hootkins-Richard Strange-Carl Chase-Mac McDonald-George Lane Cooper-Terence Plummer-Philip Tan-John Sterland-Edwin Craig-Vincent Wong-Joel Cutrara-John Dair-Christopher Fairbank-George Roth-Kate Harper-Bruce McGuire-Richard Durden-Kit Hollerbach-Lachele Carl-Del Baker-Jazzer Jeyes-Wayne Michaels-Valentino Musetti-Rocky Taylor-Keith Edwards-Leon Herbert-Steve Plytas-Anthony Wellington-Amir M. Korangy-Hugo Blick-Charles Roskilly-Philip O'Brien-Michael Balfour-Garrick Hagon-Liza Ross-Adrian Meyers-David Baxt-Sharon Holm-Clyde Gatell-Jon Soresi-Elliott Stein-Sam Douglas-Denis Lill-Paul Birchard-Paul Michael-Pat Gorman-Chris Andrews-Stephanie English,dual identity-double life-chemical-crime fighter-superhero-villain-based on comic-mobster-organized crime-criminal-super power-madness-good versus evil,/cij4dd21v2Rk2YtUQbV5kW69WB2.jpg,/92PG1J4gvxjTRLXTqDzPqjpe6fp.jpg,364-414-415-456456-123321-730392-604643-562334-2661-125249-57400-272-1924-286-89-4011-87-5548-1573-196-8536 +619,The Bodyguard,Thriller-Action-Drama-Music-Romance,en,A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long all that tension sparks fireworks of another sort and the love-averse tough guy is torn between duty and romance.,26.534,Kasdan Pictures-Tig Productions-Warner Bros. Pictures,11/25/92,25000000,411006740,129,Released,Never let her out of your sight. Never let your guard down. Never fall in love.,6.66,2613,Whitney Houston-Kevin Costner-Gary Kemp-Bill Cobbs-Ralph Waite-Tomas Arana-Michele Lamar Richards-Mike Starr-Christopher Birt-DeVaughn Nixon-Gerry Bamman-Joe Urla-Tony Pierce-Charles Keating-Robert Wuhl-Debbie Reynolds-Danny Kamin-Richard Schiff-Nathaniel Parker-Bert Remsen-Stephen Shellen-Chris Connelly-Patricia Healy-Blumen Young-Linda Thompson-Towanna King-David Foster-Ethel Ayler-Sean Cheesman-Donald Hotton-Nita Whitaker-Rob Sullivan-Jennifer Lyon-Buchanan-Victoria Bass-David Joseph Martinez-Michael George-Joe Hess-Phil Redrow-Marta Velasco-Joe Unger-Gwen Seliger-Susan Traylor-Pat Poole-Shelley A. Hill-Ken Myles-Robert L. Feist-Charles Bazaldua-Ellin La Var-Rollin Jarrett-Tony Burrer-Jorga Caye-Shaun Earl-Bruce Holman-Dan Koko-Jim Rhine-L.A. Rothman-Damon Stout-John Tesh-Mark Thomason,sibling relationship-anonymous letter-diva-bodyguard-stalker-los angeles california,/2VgZW2ZD3pNoV2j8U2GXNRwOsk9.jpg,/6LS4YtklwlHSHhNTCAiZGEXRvJZ.jpg,8367-21311-10478-251-10083-9922-9804-88-1844-73290-6520-795-3981-9772-581-7520-114-9481-820-1788-9559 +68726,Pacific Rim,Action-Science Fiction-Adventure,en,Using massive piloted robots to combat the alien threat earth's survivors take the fight to the invading alien force lurking in the depths of the Pacific Ocean. Nearly defenseless in the face of the relentless enemy the forces of mankind have no choice but to turn to two unlikely heroes who now stand as earth's final hope against the mounting apocalypse.,96.347,Double Dare You Productions-Legendary Pictures,7/11/13,180000000,411002906,131,Released,"To fight monsters, we created monsters.",6.863,11179,Charlie Hunnam-Rinko Kikuchi-Idris Elba-Max Martini-Clifton Collins Jr.-Ron Perlman-Charlie Day-Burn Gorman-Robert Kazinsky-Robert Maillet-Heather Doerksen-Larry Joe Campbell-Brad William Henke-Diego Klattenhoff-Santiago Segura-Jane Watson-Jung-Yul Kim-Joshua Peace-Mana Ashida-Joe Pingue-Milton Barnes-Brian Frank-Ellen McLain-David Fox-Jake Goodman-Robin Thomas-Julian Barnes-David Richmond-Peck-Sebastian Pigott-J.C. Kenny-Robert Morse-Mike Chute-Duncan McLeod-Louis Paquette-Matthew G. Taylor-Frank Nakashima-Terry Belleville-Farzad Sadrian-Mishu Vellani-Clive Walton-Peter Kosaka-Yiren Stark-Mark Luu-Charles Luu-Lance Luu-Willie Wong-Simu Liu-Victoria Sawal,monster-dystopia-pacific-alaska-giant robot-giant monster-apocalypse-hong kong-robot-alien invasion-kaiju-duringcreditsstinger-monster movie-2020s,/8wo4eN8dWKaKlxhSvBz19uvj8gA.jpg,/ig7qUy7drkEFZNCK7gi0hMn1WMN.jpg,49521-75612-72190-54138-268896-76170-68721-68724-70981-97020-137113-80274-72559-39254-127585-49051-76338-49047-1858-124905-57158 +343668,Kingsman: The Golden Circle,Action-Adventure-Comedy,en,When an attack on the Kingsman headquarters takes place and a new villain rises Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.,71.483,20th Century Fox-Marv Films-Cloudy Productions-TSG Entertainment-Shangri-La Entertainment,9/9/17,104000000,410902662,141,Released,Reports of my death have been greatly exaggerated.,6.979,9183,Taron Egerton-Colin Firth-Julianne Moore-Mark Strong-Halle Berry-Pedro Pascal-Channing Tatum-Jeff Bridges-Edward Holcroft-Hanna Alstr�_m-Emily Watson-Sophie Cookson-Elton John-Michael Gambon-Bruce Greenwood-Thomas Turgoose-Calvin Demba-Tobi Bakare-Gordon Alexander-Keith Allen-Tom Benedict Knight-Bj�_rn Granath-Lena Endre-Samantha Coughlan-Martyn Ford-Poppy Delevingne-Grant Gillespie-Tara Hugo-Nicholas Colicos-Jordan Mifsud-Kaye Brown-Paul Giddings-Iain McKee-Mark Arnold-Shannon Bream-James Carroll Jordan-Bill Hemmer-Stacey Swift-Alessandro De Marco-Antonio Magro-Stephen Schreiber-Count Prince Miller-Jeff Ricketts-Joe Gallina-Ammara Niwaz-Mingus Johnston-Samantha Womack-James Clayton-Bimbo Hart-Chester King-Alastair MacIntosh-Max Macintosh-Tom Parker Bowles-Carlos Peres,saving the world-spy-europe-sequel-secret government organization-agent-statesman,/34xBL6BXNYFqtHO9zhcgoakS4aP.jpg,/eVHVwP71el20fofkCHo78ebQv7Q.jpg,207703-141052-284053-283995-390043-339403-139426-339964-315635-353486-297762-166426-335984-181808-281338-291805-476669-337170-263115-374720-324552 +282035,The Mummy,Fantasy-Thriller-Action-Adventure-Horror,en,Though safely entombed in a crypt deep beneath the unforgiving desert an ancient queen whose destiny was unjustly taken from her is awakened in our current day bringing with her malevolence grown over millennia and terrors that defy human comprehension.,36.243,Secret Hideout-Sean Daniel Company-Universal Pictures-Perfect World Pictures-Conspiracy Factory-dentsu,6/6/17,125000000,409231607,110,Released,Welcome To A New World of Gods And Monsters,5.502,6500,Tom Cruise-Annabelle Wallis-Sofia Boutella-Jake Johnson-Courtney B. Vance-Russell Crowe-Marwan Kenzari-Neil Maskell-Javier Botet-Andrew Brooke-Selva Rasalingam-Shanina Shaik-Dylan Smith-Hadrian Howard-Rez Kempton-Bella Ava Georgiou-David Burnett-Stephen Thompson-James Arama-Vera Chok-Sean Cameron Michael-Martin Bishop-Simon Atherton-Matthew Wilkas-Sohm Kapila-Erol Ismail-Parker Sawyers-Rhona Croker-Timothy Allsop-Grace Chilton-Hannah Ankrah-Dylan Kussman-Peter Lofsgard-Shane Zaza-Alice Hewkin-Daniel Tuite-Noof McEwan-Maryam Grace-Sonya Cullingford-Fionn Cox-Davies-Neus Gil Cortes-Emily Thompson-Smith-St��phane Deheselle-Madeleine Fairminer-Mich��le Paleta Rhyner-Michael Haydon-Jason Matthewson-Kelly Burke-Chasty Ballesteros-Emma Louise Saunders-Ayman Khechini,egypt-monster-mummy-supernatural-horror-remake-tomb-egyptian mythology,/zxkY8byBnCsXodEYpK8tmwEGXBI.jpg,/i4ZougHEyBAboDpi6jsaTUDTjUl.jpg,109953-297762-166426-126889-274857-335988-339846-293167-353491-311324-281338-564-339964-315837-305470-337339-395992-263115-1735-283995-1734 +278154,Ice Age: Collision Course,Adventure-Animation-Family-Comedy-Science Fiction,en,Set after the events of Continental Drift Scrat's epic pursuit of his elusive acorn catapults him outside of Earth where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril Manny Sid Diego and the rest of the herd leave their home and embark on a quest full of thrills and spills highs and lows laughter and adventure while traveling to exotic new lands and locations.,38.524,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/23/16,105000000,408579038,95,Released,One small step. One giant mess.,6.1,4052,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Seann William Scott-Josh Peck-Simon Pegg-Keke Palmer-Jennifer Lopez-Neil deGrasse Tyson-Jesse Tyler Ferguson-Jessie J-Adam DeVine-Wanda Sykes-Melissa Rauch-Michael Strahan-Nick Offerman-Max Greenfield-Lilly Singh-Chris Wedge-Stephanie Beatriz-Robert Cardone-Byron Thames-Rif Hutton-Chris Campbell-Holly Dorff-Moosie Drier-Jason Fricchione-Jackie Gonneau-Hope Levy-Terence Mathews-Edie Mirman-Juan Pope-Ruth Zalduondo-David Zyler-Ashley Peldon-Carlos Ponce,fire-mammoth-fireworks-sequel-prehistoric-singing-critically bashed-cavemen-meteor crash,/tFzUkdhPOForVrEfvxydXfPLrZR.jpg,/AuplFVF0C2BzK1goJaHpgH1iczZ.jpg,57800-8355-950-425-140300-387893-10527-80321-172385-49444-953-127380-46195-324852-810-239508-9502-328111-270946-788106-10192 +2675,Signs,Drama-Thriller-Science Fiction-Mystery,en,A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.,35.466,Touchstone Pictures-Blinding Edge Pictures-The Kennedy/Marshall Company,8/2/02,72000000,408247917,106,Released,It's not like they didn't warn us.,6.675,5066,Mel Gibson-Joaquin Phoenix-Rory Culkin-Abigail Breslin-Cherry Jones-M. Night Shyamalan-Patricia Kalember-Ted Sutton-Merritt Wever-Lanny Flaherty-Marion McCorry-Michael Showalter-Kevin Pires-Clifford David-Rhonda Overby-Greg Wood-Paul L. Nolan-Ukee Washington-Babita Hariani-Adam Way-Angela Eckert-Jose L. Rodriguez-Paul Wilson-Thomas Griffin-Derek Mears-Chuck Pressler,symbolism-farm-faith-alien-family relationships-rural area-alien invasion-crop circle-alien attack-loss of faith-alien encounter-aliens,/hyZkNEbNgnciUVTyu4NZTjlCh4L.jpg,/jw88BtmMliB1Mbwf3JyfYszS4Xk.jpg,6947-74767-602-37686-745-8645-563-686-9697-9741-544-503589-75-7191-17654-601-644-6171-7453-8836-607 +667538,Transformers: Rise of the Beasts,Action-Adventure-Science Fiction,en,When a new threat capable of destroying the entire planet emerges Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.,5409.104,Skydance-Paramount-di Bonaventura Pictures-Bay Films-New Republic Pictures-Tom DeSanto/Don Murphy Production-Hasbro,6/6/23,200000000,407045464,127,Released,Unite or fall.,7.34,1007,Anthony Ramos-Dominique Fishback-Luna Lauren Velez-Dean Scott Vazquez-Tobe Nwigwe-Sarah Stiles-Leni Parker-Frank Marrs-Aidan Devine-Kerwin Jackson-Mike Chute-Tyler Hall-Sean Tucker-Jay Farrar-Lucas Huarancca-Amiel Cayo-Santusa Cutipa-Yesenia Inquillay-Sumac T'Ika-Josue Sallo-Mellissa Alvarez-Gloria Cusi-Michael Kelly-Jason D. Avalos-Lesley Stahl-Peter Cullen-Ron Perlman-Peter Dinklage-Michelle Yeoh-Pete Davidson-Liza Koshy-John DiMaggio-David Sobolov-Michaela Ja�� Rodriguez-Colman Domingo-Cristo Fern��ndez-Tongayi Chirisa-Luke Jones,peru-alien-end of the world-based on cartoon-based on toy-robot-duringcreditsstinger-1990s-brother brother relationship,/gPbM0MK8CP8A174rmUwGsADNYKD.jpg,/woJbg7ZqidhpvqFGGMRhWQNoxwa.jpg,496450-569094-298618-385687-877100-598331-462883-979296-536437-532408-976573-447277-697843-603692-763261-9281-886563-324857-129120-980372-412117 +338953,Fantastic Beasts: The Secrets of Dumbledore,Fantasy-Adventure-Action,en,Professor Albus Dumbledore knows the powerful dark wizard Gellert Grindelwald is moving to seize control of the wizarding world. Unable to stop him alone he entrusts magizoologist Newt Scamander to lead an intrepid team of wizards and witches. They soon encounter an array of old and new beasts as they clash with Grindelwald's growing legion of followers.,190.547,Warner Bros. Pictures-Heyday Films,4/6/22,200000000,406950844,142,Released,Return to the magic.,6.8,3349,Eddie Redmayne-Jude Law-Mads Mikkelsen-Ezra Miller-Dan Fogler-Alison Sudol-Callum Turner-Jessica Williams-Katherine Waterston-Oliver Masucci-Richard Coyle-William Nadylam-Maria Fernanda C��ndido-Poppy Corby-Tuech-Victoria Yeates-Aleksandr Kuznetsov-Dave Wong-Fiona Glascott-Cara Mahoney-Maja Bloom-Wilf Scolding-Kazeem Tosin Amore-Noor Dillan-Night-Manuel Klein-Valerie Pachner-Ramona Kunze-Libnow-Lucas Englander-Jan Pohl-Matthias Brenner-Peter Simonischek-Jacqueline Boatswain-David Bertrand-Stefan Race-Jessica Cartledge-Rahda Sthanakiya-Isabelle Coverdale-D�_nal Finn-Hebe Beardsall,berlin germany-prison-witch-magic-election campaign-curse-bhutan-fantasy world-wizard-magical creature-1930s-good versus evil,/jrgifaYeUtTnaH7NF5Drkgjg2MB.jpg,/zGLHX92Gk96O1DJvLil7ObJTbaL.jpg,752623-526896-675353-453395-555876-818397-864116-507086-372439-913612-438148-14543-639933-985724-629542-551-508947-924482-414906-335787-634649 +438695,Sing 2,Animation-Family-Music-Comedy,en,Buster and his new cast now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But with no connections he and his singers must sneak into the Crystal Entertainment offices run by the ruthless wolf mogul Jimmy Crystal where the gang pitches the ridiculous idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-isolated Clay and persuade him to return to the stage.,103.121,Universal Pictures-Illumination,12/1/21,85000000,406000000,110,Released,Where will your dreams take you?,7.878,4144,Matthew McConaughey-Reese Witherspoon-Scarlett Johansson-Taron Egerton-Bobby Cannavale-Tori Kelly-Nick Kroll-Halsey-Spike Jonze-Nick Offerman-Letitia Wright-Eric Andr��-Pharrell Williams-Chelsea Peretti-Bono-Garth Jennings-Adam Buxton-Jennifer Saunders-Julia Davis-Peter Serafinowicz-Edgar Wright-Wes Anderson-Scott Mosier-Jason Schwartzman-Tara Strong-Fisher Stevens-Debra Wilson-Doug Burch-Cathy Cavadini-Chris Renaud-Brian T. Delaney-Aaron Fors-Julianna Gamiz-Aaron Hendry-Barbara Harris-JP Karliak-John Kassir-Danny Mann-Regina Taufen-Will Collyer-Hudson D'Andrea-Remy Edgerly-George Griffiths-Isa Hall-Asa Jennings-Caspar Jennings-Louise Jennings-Katherine Kelloway-Igor Khait-Vida Alves McConaughhey-Jason Broad-Levi Nunez-Joy Poirel-Adeline Krupinski Polidoro-Noreen Reardon-Gary P. Rizzo-Liza Seneca-Ayden Soria-Jack Stanton-Thomas Walters-Colette Whitaker-Nora Wyman-Jason Schwartzman,stage-villain-sequel-anthropomorphism-singing-animal-illumination,/aWeKITRFbbwY8txG5uCj4rMCfSP.jpg,/6mJrgL7Mi13XjJeGYJFlD6UEVQw.jpg,585083-568124-524434-335797-634649-425909-482321-476669-624860-508943-335787-566525-774825-644495-580489-512195-646385-315162-502356-438631-508947 +399579,Alita: Battle Angel,Action-Science Fiction-Adventure,en,When Alita awakens with no memory of who she is in a future world she does not recognize she is taken in by Ido a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.,54.686,Troublemaker Studios-Lightstorm Entertainment-20th Century Fox-TSG Entertainment,1/31/19,170000000,404980543,122,Released,An angel falls. A warrior rises.,7.209,8042,Rosa Salazar-Christoph Waltz-Jennifer Connelly-Mahershala Ali-Ed Skrein-Jackie Earle Haley-Keean Johnson-Lana Condor-Jorge Lendeborg Jr.-Eiza Gonz��lez-Jeff Fahey-Idara Victor-Rick Yune-Derek Mears-Leonard Wu-Racer Rodriguez-Marko Zaror-Hugo Perez-Casper Van Dien-Billy Blair-Jamie Landau-Dimitrius Pulido-Patrick Gathron-Elle LaMont-Alex Livinalli-Neal Kodinsky-Anthony Bandmann-Alan Trong-Sam Medina-Tod Junker-John Wirt-Darcel Danielle-Emma Lindsey-Garrett Warren-Tony LaThanh-Jorge A. Jimenez-Vincent Fuentes-Ibrahima Thiam-Paul de Sousa-Gregg Berger-David Sobolov-Jeff Bottoms-Michelle Rodriguez-Jai Courtney-Edward Norton-Gene Cervenka-Zara Majidpour-Tristan Riggs-Bill Foster-Charlotte Delaney Riggs-Lisa Slaughter,martial arts-bounty hunter-extreme sports-dystopia-superhero-cyberpunk-based on manga-female cyborg-live action remake-floating city-live action anime-gunnm,/xRWht48C2V8XNfzvPehyClOvDni.jpg,/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg,287947-299537-163202-456740-297802-159878-424783-447404-458156-166428-324857-299534-450465-320288-207036-86520-126644-120268-429617-428078-479455 +1735,The Mummy: Tomb of the Dragon Emperor,Adventure-Action-Fantasy,en,Archaeologist Rick O'Connell travels to China pitting him against an emperor from the 2000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.,49.785,Universal Pictures-China Film Co-Production Corporation-Shanghai Film Group-Relativity Media-Alphaville Films-Sommers Company The-Beijing Happy Pictures-Giant Studios-Internationale Filmproduktion Blackbird Dritte-Nowita Pictures-Mel's Cite du Cinema-Hivemind,7/1/08,145000000,403449830,112,Released,A New Evil Awakens.,5.5,3934,Brendan Fraser-Jet Li-Maria Bello-John Hannah-Michelle Yeoh-Luke Ford-Isabella Leong-Anthony Wong-Russell Wong-Liam Cunningham-David Calder-Jessey Meng-Liang Tian-Albert Kwan-Wu Jing-Wei Binghua-Jing Guo-Alison Louder-Marcia Nasatir-Emerald Starr-Helen Feng-Stella Maryna Troshyna-James Bradford-Daniel Richard Giverin-Ken Tran-Allan Yuk-lun Chou-Fernando Chien-Mac Jeffrey Ong-Chris Mark-James Mark-Mike Ching-Darryl Quon-Alex Chiang-Paul Wu-Larry Lam-Brian Ho-Vi-Hung Luv-Huy Phong Doan-Kyle Burnett Cashulin-Charles Esposito-Michael Scherer-Scott Taylor-Kham Tri Vixaysy-Don Lew-Regis Attiow-Tony Wai-Wu Yungstun-Xiang Guangxu-Lam Cong-Quyen-Freda Foh Shen,china-sword-pyramid-mummy-yeti-chinese emperor-tomb-great wall of china-terracotta army-1940s-3rd century bc,/A3acM1lX5PNWQa6r5qeMAJOxbnT.jpg,/z1btePhD1jIDLbjy5OCnO0KVf5O.jpg,1734-564-841755-9334-6637-1979-88751-18823-1250-1996-217-561-57165-2059-9738-9543-7131-8960-19267-71676-36648 +70981,Prometheus,Science Fiction-Adventure-Mystery,en,A team of explorers discover a clue to the origins of mankind on Earth leading them on a journey to the darkest corners of the universe. There they must fight a terrifying battle to save the future of the human race.,114.592,Dune Entertainment-Scott Free Productions-Brandywine Productions-20th Century Fox,5/30/12,130000000,403354469,124,Released,The Search for Our Beginning Could Lead to Our End.,6.5,10820,Noomi Rapace-Michael Fassbender-Logan Marshall-Green-Charlize Theron-Idris Elba-Guy Pearce-Sean Harris-Rafe Spall-Kate Dickie-Benedict Wong-Emun Elliott-Patrick Wilson-Ian Whyte-Lucy Hutchinson-Branwell Donaghey-Vladimir Furdik-C.C. Smiff-Shane Steyn-John Lebar-Anil Biltoo-Giannina Facio-James Embree-Robin Atkin Downes-Louisa Staples-Annie Penn-Daniel James,android-space-alien-creature-spin off-creation-emergency surgery-stasis-archeological dig-god complex-cave drawing-prometheus-genetic mutation-origins of life-2090s,/omy5CiDMQnGqQUEJ9gNLOGPZQFW.jpg,/hO97RyNjBIMfzfFpUjNhsm4zImh.jpg,59967-348-679-37724-126889-13475-49026-75612-41154-49538-8077-8078-54138-56292-1930-49051-68726-70160-64635-49521-14161 +675353,Sonic the Hedgehog 2,Action-Adventure-Family-Comedy,en,After settling in Green Hills Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns this time with a new partner Knuckles in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick Tails and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.,297.805,Original Film-Blur Studio-Marza Animation Planet-Paramount-SEGA,4/8/22,110000000,402656846,122,Released,Welcome to the next level.,7.599,3716,James Marsden-Ben Schwartz-Tika Sumpter-Natasha Rothwell-Adam Pally-Shemar Moore-Colleen O'Shaughnessey-Lee Majdoub-Idris Elba-Jim Carrey-Melody Nosipho Niemann-Tom Butler-Brad Kalilimoku-Krista Alvarez-Donna Jay Fulks-Scott Patey-Leif Havdale-Johnson Phan-Colby Chartrand-Kevin Fortin-Jeff Sanca-Sook Hexamer-Maria Ameerali-Kyle Riefsnyder-Parker Rowell-Laferriere-Tammy Nera-Gerald Paetz-Corry Glass-David Jacox-Mike Mitchell-Heath Stevenson-Doug Chapman-Rhys Williams-Nilo Ghajar-Don Lew-Elizabeth Bowen-Vladimir Ruzich-Shay Kuebler-Keiran Bohay-Kevin Mylrea-Jared Khalifa-Aiden Cass-Andrew Kyrzyk-Stanislav Galimkhanov-Shaun Magee-Alex Bogomolov-Shawn Stewart-Barry Nerling-Simon Chin-Vladimir Raiman-Yvetta Fisher-Adrian Hein-Jess Lundgren-Steve Chang-Ted Barba-Brennan Dyson-Saida Dyson-Katie Wright Pere-Ha'a Keaulana-Quinn Early-Cheryl Lewis-Angela Meryl-Ashlei Tave-Mariah Dyson-Tavita Woodard-Ernie Jackson-Rob 'Sluggo' Boyce-Robert Zen Humpage-Fraser Corbett-Marcus Aurelio-Jason Triplett-Eli Olson-Mike Rufino-Nito Larioza-Chad Keaulana-Sarah Surh-Paul Lazenby,sequel-based on video game-duringcreditsstinger-hedgehog-live action and animation,/6DrHO1jr3qVrViUO6s6kFiAGM7.jpg,/yEQqrW61rwNuVRHTjgHOAU4dXNE.jpg,338953-526896-752623-818397-453395-985724-555876-507086-864116-438148-454626-335787-414906-639933-508947-629542-634649-688177-626735-978436-718789 +770,Gone with the Wind,Drama-War-Romance,en,The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.,31.978,Selznick International Pictures-Metro-Goldwyn-Mayer,12/15/39,4000000,402352579,238,Released,The greatest romance of all time!,8,3691,Vivien Leigh-Clark Gable-Olivia de Havilland-Leslie Howard-Hattie McDaniel-Thomas Mitchell-Barbara O'Neil-Evelyn Keyes-Ann Rutherford-George Reeves-Fred Crane-Oscar Polk-Butterfly McQueen-Victor Jory-Everett Brown-Howard Hickman-Alicia Rhett-Rand Brooks-Carroll Nye-Laura Hope Crews-Eddie 'Rochester' Anderson-Harry Davenport-Leona Roberts-Jane Darwell-Ona Munson-Paul Hurst-Isabel Jewell-Cammie King-Eric Linden-J. M. Kerrigan-Ward Bond-Jackie Moran-Cliff Edwards-Lillian Kemble-Cooper-Yakima Canutt-Marcella Martin-Louis Jean Heydt-Mickey Kuhn-Olin Howland-Irving Bacon-Robert Elliott-William Bakewell-Mary Anderson-John Albright-Eric Alden-John Arledge-Roscoe Ates-Trevor Bardette-Lennie Bluett-Ralph Brooks-Daisy Bufford-Ann Bupp-James Bush-Ruth Byers-Gary Carlson-Horace B. Carpenter-Louise Carter-Shirley Chambers-Eddy Chandler-Wallis Clark-Richard Clucas-Frank Coghlan Jr.-Billy Cook-Gino Corrado-Martina Cortina-Luke Cosgrave-Kernan Cripps-Patrick Curtis-Ned Davenport-Yola d'Avril-Lester Dorr-Phyllis Douglas-Joan Drake-F. Driver-Edythe Elliott-Susan Falligant-Richard Farnsworth-Frank Faylen-Kelly Griffin-George Hackathorne-Chuck Hamilton-Evelyn Harding-Inez Hatchett-Jean Heker-William Hoehne Jr.-Ricky Holt-Shep Houghton-Jerry James-Si Jenks-Tommy Kelly-Emmett King-W. Kirby-Timothy J. Lonergan-Margaret Mann-William McClain-George Meeker-Charles Middleton-Alberto Morin-Adrian Morris-Lee Murray-H. Nellman-David Newell-Naomi Pharr-Lee Phelps-Spencer Quinn-Jolane Reynolds-Marjorie Reynolds-Suzanne Ridgway-Louisa Robert-Azarene Rogers-Scott Seaton-Tom Seidel-Terry Shero-William Stack-William Stelling-Harry Strang-Dirk Wayne Summers-Emerson Treacy-Phillip Trent-Julia Ann Tuck-Tom Tyler-Dale Van Sickel-E. Alyn Warren-Blue Washington-Rita Waterhouse-John Joseph Waterman Jr.-Dan White-Ernest Whitman-Guy Wilkerson-Zack Williams-John Wray-Arthur Tovey,civil war-loss of loved one-based on novel or book-atlanta-slavery-plantation-typhus-widow-marriage crisis-romance-casualty of war-second marriage-american civil war-technicolor-reconstruction era-businesswoman-1860s-1870s-antebellum south,/lNz2Ow0wGCAvzckW7EOjE03KcYv.jpg,/ft8WRF2xqEwwGWa59naDUybKTAx.jpg,886-882-289-947-282925-1585-14292-630-872-15121-3078-15-826-907-595-164-665-14168-885-11016-239 +524434,Eternals,Science Fiction-Action-Adventure,en,The Eternals are a team of ancient aliens who have been living on Earth in secret for thousands of years. When an unexpected tragedy forces them out of the shadows they are forced to reunite against mankind��s most ancient enemy the Deviants.,113.697,Marvel Studios,11/3/21,200000000,402064899,156,Released,In the beginning...,6.914,7615,Gemma Chan-Richard Madden-Angelina Jolie-Kumail Nanjiani-Barry Keoghan-Lauren Ridloff-Lia McHugh-Brian Tyree Henry-Ma Dong-seok-Salma Hayek Pinault-Kit Harington-Harish Patel-David Kaye-Bill Skarsg��rd-Haaz Sleiman-Esai Daniel Cross-Alan Scott-Hannah Dodd-Adri�� Escudero-Sebasti��n Viveros-Nikkita Chadha-Grahame Fox-Zain Al Rafeea-Alberto Rodr�_guez-Lucia Efstathiou-Derek Horsham-Jeff Mirza-Ascension Martinez Rubio-Ozer Ercan-Ariadna Vadillo Soto-Orson Rosenberg-Harry Styles-Patton Oswalt-Brenda Lorena Garcia-Sebastian Senior-Chloe Stannage-Mahershala Ali,superhero-supernatural-based on comic-alien-super power-aftercreditsstinger-marvel cinematic universe (mcu)-sign languages-ancient-god-like,/lFByFSLV5WDJEv3KabbdAF959F2.jpg,/c6H7Z4u73ir3cIoCteuhJh7UCAR.jpg,566525-634649-453395-580489-497698-512195-425909-624860-438631-414906-335787-436969-550988-526896-616037-568124-696806-299536-429617-370172-476669 +438631,Dune,Science Fiction-Adventure,en,Paul Atreides a brilliant and gifted young man born into a great destiny beyond his understanding must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.,145.583,Legendary Pictures,9/15/21,165000000,402000000,155,Released,It begins.,7.783,9942,Timoth��e Chalamet-Rebecca Ferguson-Oscar Isaac-Josh Brolin-Stellan Skarsg��rd-Dave Bautista-Sharon Duncan-Brewster-Stephen McKinley Henderson-Zendaya-Chang Chen-Charlotte Rampling-Jason Momoa-Javier Bardem-David Dastmalchian-Babs Olusanmokun-Golda Rosheuvel-Roger Yuan-Benjamin Cl��mentine-Souad Faress-Seun Shote-Neil Bell-Oliver Ryan-Stephen Collins-Charlie Rawes-Richard Carter-Benjamin Dilloway-Elmi Rashid Elmi-Tachia Newall-Gloria Obianyo-Fehinti Balogun-Dora K��polnai-Schvab-Joelle-Jimmy Walker-Paul Bullion-Milena Sidorova-J��nos Timk�_-Jean Gilpin-Marianne Faithfull-Ellen Dubin,empire-future-epic-army-based on novel or book-prophecy-dystopia-emperor-sand-spice-hallucinogen-treason-baron-revenge-premonition-betrayal-space-water shortage-creature-desert-knife fight-destiny-giant worm-space opera-sand dune-messiah-mother son relationship-giant creature,/d5NXSklXo0qyIYkgV94XAgMIckC.jpg,/jYEW5xZkZk2WTrdbMGAPFuBqbDc.jpg,688177-370172-566525-550988-524434-414906-580489-646380-571679-512195-634649-624860-497698-436969-1032819-864507-617653-841-542178-425909-101362 +335787,Uncharted,Action-Adventure,en,A young street-smart Nathan Drake and his wisecracking partner Victor ���Sully�� Sullivan embark on a dangerous pursuit of ���the greatest treasure never found�� while also tracking clues that may lead to Nathan��s long-lost brother.,147.231,Columbia Pictures-Atlas Entertainment-PlayStation Productions-Arad Productions-Studio Babelsberg-Deutscher Filmf�_rderfonds-Medienboard Berlin-Brandenburg,2/10/22,120000000,401748820,116,Released,Fortune favors the bold.,7.043,4461,Tom Holland-Mark Wahlberg-Sophia Ali-Tati Gabrielle-Antonio Banderas-Steven Waddington-Rudy Pankow-Tiernan Jones-Pingi Moli-Jes�_s Evita-Georgia Goodman-Diarmaid Murtagh-Joseph Balderrama-Serena Posadino-Alana Boden-Jonathan Failla-Anthony Thomas-Peter Seaton-Clark-Robert Maaser-Eskindir Tesfay-Manuel de Blas-Carme Capdet-Julia Schunevitsch-Alois Knapps-Patricia Meeden-Nolan North-Matt Barkley-Jimmy Hart-Brett Praed-Carlo Kitzlinger-Pilou Asb�_k-Rub��n Doblas Gundersen,treasure hunt-lighter-treasure map-based on video game-lost treasure-duringcreditsstinger-missing relative,/rJHC1RUORuUhtfNb4Npclx0xnOf.jpg,/aEGiJJP91HsKVTEPy1HhmN0wRLm.jpg,414906-752623-526896-453395-338953-696806-634649-62568-406759-763285-675353-361743-639933-616037-505026-524434-580489-507086-476669-512195-628900 +20526,TRON: Legacy,Adventure-Action-Science Fiction,en,Sam Flynn the tech-savvy and daring son of Kevin Flynn investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra Sam quests to stop evil dictator Clu from crossing into the real world.,37.607,Walt Disney Pictures-Sean Bailey Productions,12/14/10,170000000,400062763,125,Released,The game has changed.,6.445,6501,Jeff Bridges-Garrett Hedlund-Olivia Wilde-Bruce Boxleitner-James Frain-Beau Garrett-Michael Sheen-Serinda Swan-Yaya DaCosta-Elizabeth Mathis-Kis Yurij-Conrad Coates-Ron Selmour-Dan Joffre-Darren Dolynski-Kofi Yiadom-Steven Lisberger-Donnelly Rhodes-Belinda Montgomery-Owen Best-Matt Ward-Zoe Fryklund-Dean Redman-Mi-Jung Lee-Christopher Logan-Sheldon Yamkovy-Dale Wolfe-Joanne Wilson-Catherine Lough Haggquist-Thomas Bradshaw-Shafin Karim-Rob Daly-Mike Ching-Michael Teigen-Brent Stait-Shaw Madson-Amy Esterle-Cody Laudan-Jeffrey Nordling-Christine Adams-Kate Gajdosik-Jack McGee-Dawn Mander-Michael Logie-John Reardon-Edie Mirman-Allen Jo-Aaron Toney-Kim Do Nguyen-Patrick Sabongui-Will Erichson-Cillian Murphy-Brandon Jay McLaren,artificial intelligence-secret identity-simulation-super computer-utopia-computer program-dystopia-computer simulation-sequel-deception-computer game-80s style-autocracy-light cycle,/vuifSABRpSnxCAOxEnWpNbZSXpp.jpg,/zK7wNuUQ4w0QQp9FF20YTPVgpyN.jpg,8373-38356-97-1858-64635-44912-2080-39254-58574-534-9543-49538-18823-36668-605-36658-41154-1979-604-9738-10528 +956,Mission: Impossible III,Adventure-Action-Thriller,en,Retired from active duty and training recruits for the Impossible Mission Force agent Ethan Hunt faces the toughest foe of his career: Owen Davian an international broker of arms and information who is as cunning as he is ruthless. Davian emerges to threaten Hunt and all that he holds dear -- including the woman Hunt loves.,46.283,Paramount-Cruise/Wagner Productions,4/25/06,150000000,398500000,126,Released,The mission begins 05:05:06.,6.726,6311,Tom Cruise-Philip Seymour Hoffman-Ving Rhames-Billy Crudup-Michelle Monaghan-Jonathan Rhys Meyers-Keri Russell-Maggie Q-Simon Pegg-Eddie Marsan-Laurence Fishburne-Bahar Soomekh-Jeff Chase-Michael Berry Jr.-Carla Gallo-Bellamy Young-Paul Keeley-Jane Daly-Greg Grunberg-Sabra Williams-Rose Rollins-Sasha Alexander-Tracy Middendorf-Aaron Paul-Kathryn Fiore-Colleen Crozier-Sean O'Bryan-Bruce French-Ellen Bry-Patrick Pankhurst-Tony Guma-James Shanklin-Anne Betancourt-Antonietta De Lorenzo-Andrea Sartoretti-Antonio Del Prete-Francesco De Vito-Giorgio Marchesi-Niccol�_ Senni-Paolo Bonacelli-David Waters-Michael G. Kehoe-Timothy Omundson-Jos�� Z�_��iga-William Francis McGuire-Michelle Arthur-Barney Cheng-George Cheung-Brandon Molale-Simon Rhee-Marcus Young-Jerry Trimble-Alex Kurtzman-Roberto Orci,mask-mission-berlin germany-cia-computer-the white house-shanghai china-funeral-explosive-secret mission-spy-vatican-secret identity-traitor-map-honeymoon-pretended murder-letter-covered investigation-secret agent-stamp-hard drive-e-mail-decipherment-suitcase-revenge-murder-hospital-duel-disguise-celebration-research laboratory-blast,/zje0121z523lqe8ic163ck1BYcY.jpg,/mOyF7rHVLF6uLbyb18FWTmcrjJe.jpg,955-954-56292-177677-353081-2501-2502-10764-1571-180-2503-217-36557-296-298-1573-36668-6637-605-1572-604 +572802,Aquaman and the Lost Kingdom,Action-Adventure-Fantasy,en,Black Manta still driven by the need to avenge his father's death and wielding the power of the mythic Black Trident will stop at nothing to take Aquaman down once and for all. To defeat him Aquaman must turn to his imprisoned brother Orm the former King of Atlantis to forge an unlikely alliance in order to save the world from irreversible destruction.,2141.691,Warner Bros. Pictures-The Safran Company-Atomic Monster-DC Films-Domain Entertainment,12/20/23,205000000,397860076,124,Released,The tide is turning.,6.786,756,Patrick Wilson-Yahya Abdul-Mateen II-Randall Park-Amber Heard-Nicole Kidman-Dolph Lundgren-Temuera Morrison-Indya Moore-Pilou Asb�_k-Jani Zhao-Vincent Regan-Michael Beach-Martin Short-John Rhys-Davies-Natalia Safran-Samuel Gosrani-Jay Rincon-Sohm Kapila-Ricardo Molina-Ingrid Bisu-Grant Huggair-Osian Roberts-Jonny Vaughton-Jay McDonald-Jonathan Bremner-Jack Waldouck,superhero-secret society-half-brother-sequel-revenge-dysfunctional relationship-dc extended universe (dceu)-ancient evil-underwater world-vengeance-brother brother relationship,/7lTnXOy0iNtBAdRP3TZvaKJ77F6.jpg,/jXJxMcVoEuXzym3vFnjqDW4ifo6.jpg, +58595,Snow White and the Huntsman,Adventure-Fantasy-Drama,en,After the Evil Queen marries the King she performs a violent coup in which the King is murdered and his daughter Snow White is taken captive. Almost a decade later a grown Snow White is still in the clutches of the Queen. In order to obtain immortality The Evil Queen needs the heart of Snow White. After Snow escapes the castle the Queen sends the Huntsman to find her in the Dark Forest.,39.683,Universal Pictures-Roth Films,5/30/12,170000000,396600000,127,Released,The Fairytale is Over,5.985,7620,Kristen Stewart-Chris Hemsworth-Charlize Theron-Sam Claflin-Ian McShane-Ray Winstone-Nick Frost-Noah Huntley-Toby Jones-Eddie Marsan-Lily Cole-Rachael Stirling-Hattie Gotobed-Bob Hoskins-Sam Spruell-Johnny Harris-Brian Gleeson-Vincent Regan-Liberty Ross-Chris Obi-Raffey Cassidy-Xavier Atkins-Izzy Meikle-Small-Anastasia Hille-Elliot Reeve-Mark Wingett-Jamie Blackley-Dave Legeno-Greg Hicks-Peter Ferdinando-Andrew Hawley-Joey Ansah-Gregor Truter-Tom Mullion-Matt Berry-Darren Kent-Craig Garner-Duncan Casey-Ryan Stuart,magic-immortality-fairy tale-queen-imprisonment-forest-deception-eternal youth-evil queen-evil stepmother-based on fairy tale-sorceress-live action remake,/8yKdQHaqOo1lkaErmqMuYFespYI.jpg,/KBe9fHU5rVg4daoKnFwl1Cbc28.jpg,290595-12445-408-50620-62764-24428-72105-70160-10528-165-62177-70981-8966-10195-85-44833-62213-10681-50619-1894-102651 +458423,Mamma Mia! Here We Go Again,Comedy-Romance,en,Five years after meeting her three fathers Sophie Sheridan prepares to open her mother��s hotel. In 1979 young Donna Sheridan meets the men who each could be Sophie��s biological father.,17.894,Playtone-Littlestar,7/9/18,75000000,395044706,113,Released,Discover how it all began.,7.144,2998,Amanda Seyfried-Lily James-Andy Garc�_a-Celia Imrie-Alexa Davies-Jessica Keenan Wynn-Dominic Cooper-Julie Walters-Christine Baranski-Hugh Skinner-Pierce Brosnan-Omid Djalili-Josh Dylan-Gerard Monaco-Anna Antoniades-Jeremy Irvine-Panos Mouzourakis-Maria Vacratsis-Naoko Mori-Togo Igawa-Colin Firth-Anastasia Hille-Stellan Skarsg��rd-Susanne Barklund-Cher-Jonathan Goldsmith-Meryl Streep-Sharif Afifi-Kathryn Akin-Joe Allen-Michael Anthony-Wendy Baldock-Caroline Bateson-Omari Bernard-Christopher Blades-Hannah Bodenham-Nicole Bondzie-Teneisha Bonner-Lauren Bott-Daniella Bowen-William Bozier-Dale Branston-Jacqueline Braun-Ava Brennan-Myles Brown-Charlie Bruce-Dawn Buckland-Ashley Campbell-Natalia Campbell-Vanessa Campbell-Clive Carter-Harry Carter-Chrissie Cartwright-Peter Challis-Frances Maassen Chiapetta-Javier Cid-Cassie Clare-Tom Clark-Ray Clarke-Dominic Clarson-Emma Clayton-Nicola Coates-Elliot Collins-Leon Cooke-Sarah Cortez-Joe Da Costa-Alie Coste-Robbie Culley-Charles Daish-Jo Darby-Natalie Davis-Imelda de los Reyes-Emma Deigman-Reece Darlington Delaire-Jeannine Desmier-Nathalie Desmier-Maria Despina-Kieran Donovan-Sonia Dorado-Matthew James Duff-Nathaniel Ellul-James Alan-Evans-Claire Fishenden-Nia Fisher-Jane Fowler-Tommy Franzen-Rory Furey-King-Adam Galbraith-Jenny Galloway-Jemma Geanaus-Chris George-Linda Gibbs-Louise Gold-Mark Goldthorp-Sharon Gomez-Georgia Reid Hamilton-Andrew Hamshire-Crystal Hantig-Alison Harding-Layla Harrison-Yasmin Harrison-Linzi Hateley-Pip Hersee-Leonie Hill-Jack Hinton-Todd Holdsworth-Robert Howie-Lukas Hunt-Parsifal James Hurst-Katherine Isles-Kim Ismay-Jacqui Jameson-Cherelle Jay-Alim Jayda-Alison Jenkins-Carolyn Jones-Jamie Karitzis-Nicola Keen-Craig Anthony-Kelly-Matt Kennedy-Reece Kerridge-Dan Krikler-Joshua Lacey-Mitchell Lathbury-Gemma Lawson-Peter Le Brun-Georgie Leatherland-Melvin LeBlanc-Nick Len-Paul Leonard-Rebecca Leung-Cassie Macmillian-Nikki Mae-Liam Marcellino-Joe Edward Mascot-Melli Matthews-James Paul McAllister-Fiona McDonald-Myra McFadyen-Fergal McGoff-Perry Meadowcroft-Oliver Metzler-Chanel Mian-Holly Mitchell-Scott Mobley-Andrew Monaghan-Mandy Montanez-Elander Moore-Leah Sue Morland-Jake Moyle-Rachel Muldoon-Charis Murray-Mazz Murray-Wolfgang Mwanje-Jayde Nelson-Marianna Neofitou-Robert Nerantzoulis-Jordan Nesbitt-Sam Nesti-Tom Oakley-Anu Ogunmefun-Katy Osborne-Aaron Ashley Parker-Christopher Parkinson-Tamara McKoy-Patterson-Sherrie Pennington-Nuwan Hugh Perera-Michael Peters-Thierry Picaut-Thomas Pitiris-Eve Polycarpou-Joseph Poulton-Zoe Purpuri-Aaron Renfree-Lisa Ritchie-Zach Robinson-Matt Ryan-Simone Sault-Josie Scamell-Julienne Schembri-Alessio Scozzaro-Stella Segar-Parisa Shahmir-Esther Scheills-Michael Simkins-Gregory Sims-Helen Siveter-Michael Skyers-Simon Slater-Michael Small-Duncan Smith-Philippa Stefani-Gregor Stewart-Sandy Strallen-Lizzie Stavrou-Dean Street-Adi Suissa-Antonio Susinni-Jasmine Takacs-Mikaela Taube-Melissa Odette Teo-Kenneth Tharp-Alex Thomas-Justin Thomas-Amy Thornton-Emily Tierney-Poppy Tierney-Joe Toland-Paul Tomkinson-Sebastien Torkia-Zara Treherne-Amy Trigg-Tim Wallers-Billy Warren-Tom Wheatley-Grace Cinque White-Johnny White-Chad Wilder-Laura Wilson-Amanda Wilkin-Beth Willetts-Luke Woolaston-Matthew Seadon-Young-Elena Zacharia-Benny Andersson-Bj�_rn Ulvaeus-Pedro Etchepare,greece-musical-sequel-greek island-aftercreditsstinger-lgbt interest,/aWicerX4Y7n7tUwRAVHsVcBBpj2.jpg,/gtv2H1u9eGffjxVqNfJBZuFCKxR.jpg,11631-275060-466282-683841-595931-122928-449176-462919-470174-260513-402900-104154-316029-11130-420814-454983-451480-621-454992-556803-384677 +530915,1917,War-Drama-History,en,At the height of the First World War two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.,37.846,DreamWorks Pictures-Reliance Entertainment-New Republic Pictures-Neal Street Productions-Mogambo Films-Amblin Partners,12/25/19,100000000,394638258,119,Released,Time is the enemy,7.986,10794,George MacKay-Dean-Charles Chapman-Mark Strong-Andrew Scott-Richard Madden-Claire Duburcq-Colin Firth-Benedict Cumberbatch-Daniel Mays-Adrian Scarborough-Chris Walley-Nabhaan Rizwan-Jamie Parker-Tommy French-Paul Tinto-Billy Postlethwaite-Richard McCabe-Justin Edwards-Jonny Lavelle-Gabriel Akuwudike-Pip Carter-Michael Jibson-Andy Apollo-Josef Davies-Spike Leighton-Robert Maaser-Gerran Howell-Adam Hugill-Benjamin Adams-Anson Boon-Kenny Fullwood-Ryan Nolan-Elliot Baxter-Bogdan Kumshatsky-Kye Mckee-Ivy-I Macnamara-Merlin Leonhardt-Taddeo Kufus-Jos Slovick-Luke Hornsby-Jack Shalloo-Elliot Edusah-Joe Mendes-Jacob James Beswick-Ian Wilson-Bradley Connor-John Hollingworth-Daniel Attwell-Samson Cox-Vinell-Richard Dempsey-Phil Cheadle-Jonah Russell-Michael Rouse-Kieran Geary,world war i-british army-race against time-soldier-trenches-1910s-trench warfare-no man's land,/iZf0KyrE25z1sage4SYFLCCrMi9.jpg,/2lBOQK06tltt8SQaswgb8d657Mv.jpg,515001-496243-475557-359724-466272-492188-546554-331482-2768-398978-473033-884669-181812-488621-551332-503919-501907-522627-495764-292011-525661 +8966,Twilight,Fantasy-Drama-Romance,en,When Bella Swan moves to a small town in the Pacific Northwest she falls in love with Edward Cullen a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions Bella can't stay away from him a fatal move that endangers her own life.,91.896,Summit Entertainment-Temple Hill Entertainment-Maverick Films-Imprint Entertainment-Goldcrest-Twilight Productions,11/20/08,37000000,393616788,122,Released,"When you can live forever, what do you live for?",6.288,12735,Kristen Stewart-Robert Pattinson-Billy Burke-Peter Facinelli-Elizabeth Reaser-Cam Gigandet-Ashley Greene-Anna Kendrick-Nikki Reed-Taylor Lautner-Kellan Lutz-Jackson Rathbone-Michael Welch-Gil Birmingham-Justin Chon-Christian Serratos-Jos�� Z�_��iga-Rachelle Lefevre-Edi Gathegi-Sarah Clarke-Matt Bushell-Gregory Tyree Boyce-Trish Egan-Ayanna Berkshire-Ned Bellamy-Bryce Flint-Sommerville-Solomon Trimble-Alexander Mendeluk-Hunter Jackson-Gavin Bristol-Sean McGrath-Katie Powers-Catherine Grimme-William Joseph Elk III-Victoria Geil-Stephenie Meyer-Rick Mora-Rana Morrison-Edward Stiner-Robert Zorn-Humberto Amor-Kristopher Hyatt-Sherry Nelson-Tyler Nordby-Trip Ross-Josh Turner-Maggie-Jo Turner,soulmates-based on novel or book-vampire-forbidden love-immortality-high school-teen movie-trust-desire-washington state-duringcreditsstinger-woman director-interspecies romance-based on young adult novel-supernatural power-good versus evil-high school romance-vampire human love,/3Gkb6jm6962ADUPaCBqzz9CTbn9.jpg,/mfFhgR9ILPWbYtvbdyAGUo6fbpT.jpg,18239-24021-50619-50620-602729-1116005-817479-599414-1104004-675-12444-597-672-767-674-341626-58595-12445-673-38757 +436270,Black Adam,Action-Adventure-Science Fiction,en,Nearly 5000 years after he was bestowed with the almighty powers of the Egyptian gods���and imprisoned just as quickly���Black Adam is freed from his earthly tomb ready to unleash his unique form of justice on the modern world.,257.264,New Line Cinema-Flynn Picture Company-DC Films-Seven Bucks Productions,10/19/22,200000000,393252111,124,Released,The world needed a hero. It got Black Adam.,7.054,5217,Dwayne Johnson-Aldis Hodge-Noah Centineo-Sarah Shahi-Quintessa Swindell-Marwan Kenzari-Mo Amer-Bodhi Sabongui-Pierce Brosnan-James Cusati-Moyer-Jalon Christian-Benjamin Patterson-Odelya Halevi-Uli Latukefu-Jennifer Holland-Henry Winkler-Chaim Jeraffi-Sharon Gee-Stephan Jones-A. Manuel Miranda-Djimon Hounsou-Raj Kala-E. Lloyd Napier-Kiara Rashawn-Onye Eme-Akwari-Sanna Erica-Vince Canlas-Tonea Stewart-Meghna Nagarajan-Patrick Sabongui-Alex Parkinson-Joseph Gatt-Kamen Casey-Dennis Dawson-Mike Senior-Jermaine Rivers-Regina Ting Chen-Sekou Laidlow-Cameron Moir-Donny Carrington-Boone Platt-Philip Fornah-Derek Russo-Angel Rosario Jr.-Tang Nguyen-Christopher Matthew Cook-Natasha Ellie-Daniel Danca-Yssa Mei Panganiban-Ben Jenkin-Viola Davis-Henry Cavill-Natalie Burn-Maurice T. Johnson-Tre Ryan,lightning-anti hero-superhero-based on comic-demon-superhero team-duringcreditsstinger-dc extended universe (dceu),/pFlaoHTZeyNkG83vxsAJiGzfSsa.jpg,/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg,485470-663712-505642-642721-829799-724495-49046-76600-365297-887731-631132-1023803-963954-1035806-965839-267805-238-792775-616820-899294-1077280 +348350,Solo: A Star Wars Story,Science Fiction-Adventure-Action,en,Through a series of daring escapades deep within a dark and dangerous criminal underworld Han Solo meets his mighty future copilot Chewbacca and encounters the notorious gambler Lando Calrissian.,44.469,Lucasfilm Ltd.-Walt Disney Pictures-Allison Shearmur Productions-Imagine Entertainment,5/15/18,250000000,392952373,135,Released,Never tell him the odds.,6.563,7671,Alden Ehrenreich-Joonas Suotamo-Woody Harrelson-Emilia Clarke-Donald Glover-Thandiwe Newton-Phoebe Waller-Bridge-Paul Bettany-Jon Favreau-Erin Kellyman-Linda Hunt-Ian Kenny-John Tui-Anna Francolini-Andrew Woodall-Warwick Davis-Shaquille Ali-Yebuah-Eben Figueiredo-Aaron Heffernan-Hal Fowler-Damian Farrell-Charlotte Louise-Sema-Tawi Smart-Clint Howard-Dee Tails-Attila Vajda-Anthony Daniels-Kiran Shah-Fraser Kelly-Lily Newmark-Jason Wong-Alice Hewkin-Samantha Colley-Robert Morgan-Miles Richardson-Sammy Hayman-Rona Morison-Dempsey Bovell-Joseph Charles-Dave Chapman-Katy Kartwheel-Harley Durst-Andrew Jack-Samuel Witwer-Ray Park-Toby Hefferman-Jonathan Kasdan-Richard Dixon-Deepak Anand-Al Clark-Samantha Alleyne-Juan Alonso-Derek Arnold-Belinda Chapple-Kristianne-Kaith Domingo-John Duggan-Jordan Dumaurier-Vikki Edwards-Marc Esse-Kristine Fernandez-James Filanowski-James Galvin-David Guerrero-Juke Hardy-Sarah Sayuri Hare-Ian Harrod-Philip Harvey-Robin Harvey-Marina Hayter-Brian Herring-Robert Hladik-Van-Tien Hoang-Kevin Hudson-Ty Hurley-Sean James-Tobias James-Samuels-Jackson Kai-John Kamau-Tyrone Kearns-Kamil Lemieszewski-Jorge Leon Martinez-Chelsea Li-Chelsea Mather-Obie Matthew-Kenny-Lee Mbanefo-Ashley McGuire-Daniel Prewitt-Jacqueline Ramnarine-Christina Richards-Belal Sabir-Sarah-Stephanie-Atul Sharma-Stephanie Silva-Neil Alexander Smith-Clem So-Richard Stanley-Karol Steele-A.k. Steppa-Fran Targ-Steven F. Thompson-Klemens Niklaus Trenkle-Jo Wheatley-Ray Whelan-John Whitby-Angela Yeoh-Mark Ryder-Paul Davis,spacecraft-smuggling (contraband)-prequel-spin off-space opera,/3IGbjc5ZC5yxim5W0sFING2kdcz.jpg,/ojHCeDULAkQK25700fhRU75Tur2.jpg,181808-330459-1895-1894-1893-140607-181812-11-12180-1891-383498-363088-351286-1892-299536-284054-333339-260513-284053-353081-924387 +106646,The Wolf of Wall Street,Crime-Drama-Comedy,en,A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.,114.327,EMJAG Productions-Red Granite Pictures-Appian Way-Sikelia Productions,12/25/13,100000000,392000000,180,Released,EARN. SPEND. PARTY.,8.036,21911,Leonardo DiCaprio-Jonah Hill-Margot Robbie-Matthew McConaughey-Kyle Chandler-Rob Reiner-Jon Favreau-Jean Dujardin-Joanna Lumley-Cristin Milioti-Christine Ebersole-Shea Whigham-Katarina ��as-P.J. Byrne-Kenneth Choi-Brian Sacca-Henry Zebrowski-Ethan Suplee-Barry Rothbart-Jake Hoffman-Mackenzie Meehan-Bo Dietl-Jon Spinogatti-Aya Cash-Rizwan Manji-Stephanie Kurtzuba-J. C. MacKenzie-Ashlie Atkinson-Thomas Middleditch-Jon Bernthal-Stephen Kunken-Ted Griffin-Sandra Nelson-Dan Bittner-Spike Jonze-Edward Herrmann-Jordan Belfort-Fran Lebowitz-Robert Clohessy-Welker White-Danny Flaherty-Carla Corvo-Madison McKinley-Aaron Lazar-Steve Routman-Steve Witting-Charley Morgan-Michael Nathanson-Kathleen Fellegara-John Behlmann-Ward Horton-Bret Shuford-J.T. O'Connor-Steven Boyer-Danny A. Abeckaser-Matthew Rauch-Michael Izquierdo-Donnie Keshawarz-Johnathan Tchaikovsky-Aaron Glaser-Ben Rameaka-Brian Charles Johnson-Sebastian Tillinger-Chris Riggi-Meghan Rafferty-Jos�� Ram�_n Rosario-Davram Stiefler-Dan Daily-Ben Van Bergen-Matte Osian-Michael Devine-Jason Furlani-Jeremy Bobb-Tom Greer-Sharon Jones-Emily Tremaine-Zineb Oukach-Giselle Eisenberg-Deema Aitken-Ashley Springer-R��my Bennett-Catherine Curtin-Paul Urcioli-Michael O'Hara-Michael Bryan French-Armen Garo-Garry Pastore-Louis Vanaria-Peter Youngblood Hills-Brendan Griffin-Derek Milman-Victor Verhaeghe-Chris Caldovino-Fileena Bahris-Silvia Kal-Kamron Leal-Tommy Bayiokos-Gianni Biasetti Jr.-Rick Bolander-Spenser Granese-Julian Brand-Kenneth Carrella-Austin Farwell-Zach Miko-Tyler Evan Rowe-Stefano Villabona-Gregory Brown-Tucker Bryan-Michael Jefferson-Bryan Burton-Mike Catapano-Steven Conroy-Kelsey Deanne-Maria Di Angelis-London Hall-Rosemary Howard-Chris Kerson-Natasha Kojic-Ben Leasure-Paul Jude Letersky-Will MacAdam-Jeff Moffitt-Chris Nunez-Seregon O'Dassey-Joseph Oliveira-Michael Power-Nicole Rutigliano-Sibyl Santiago-Vitaliy Shtabnoy-Madeleine Wade-Blago Simon-Jaclyn Keys-Natalie Bensel-Krista Ashworth-Paul Thornton-David Wenzel-Joe Zaso-Claudette Lal�_-Francis Brooke-Martin Klebba-Michael Dubuc,corruption-drug addiction-anti hero-con man-fraud-wall street-rise and fall-based on true story-con artist-stockbroker-wealthy-drugs-stripping-hedonism-decadence-corrupt-1980s-sharemarket fraud-financial market-black monday,/pWHf4khOloNVfCxscsXFj3jj6gP.jpg,/7Nwnmyzrtd0FkcRyPqmdzTPppQa.jpg,11324-68718-16869-1422-640-281957-27205-64682-550-680-157336-597-13-769-103-205596-500-37165-807-24-49047 +1452,Superman Returns,Science Fiction-Action-Adventure,en,Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free and that those he was closest to felt abandoned and have moved on. Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever as well as ridding himself of the Man of Steel.,26.787,DC Comics-Legendary Pictures-Bad Hat Harry Productions-Warner Bros. Pictures-Peters Entertainment-Red Sun Productions Pty. Ltd.,6/28/06,270000000,391081192,154,Released,You��ll Believe A Man Can Fly Again!,5.7,3679,Brandon Routh-Kevin Spacey-Kate Bosworth-James Marsden-Parker Posey-Frank Langella-Sam Huntington-Eva Marie Saint-Marlon Brando-Kal Penn-Tristan Lake Leabu-David Fabrizio-Ian Roberts-Vincent Stone-Jack Larson-Noel Neill-Keegan Joyce-Jordana Beatty-Rob Flanagan-Stephan Bender-Peta Wilson-Jeff Truman-Barbara Angell-Ian Bliss-Ansuya Nathan-Richard Branson-Warwick Young-Bradd Buckley-Bill Young-Karina Bracken-Raelee Hill-Frederique Fouche-Rebecca Barratt-Karen Pang-Jennifer Sciole-Donald MacDonald,saving the world-invulnerability-sequel-superhero-based on comic-super power-kryptonite-superhuman strength,/385XwTQZDpRX2d3kxtnpiLrjBXw.jpg,/8eRscFbRYl681zDfkjv1jjW1KAA.jpg,1924-8536-9531-11411-40898-415-1927-414-364-9738-1979-36668-419548-44912-559-36658-9480-238903-676701-1734-36657 +8367,Robin Hood: Prince of Thieves,Action-Adventure-Drama-Romance,en,When the dastardly Sheriff of Nottingham murders Robin's father the legendary archer vows vengeance. To accomplish his mission Robin joins forces with a band of exiled villagers (and comely Maid Marian) and together they battle to end the evil sheriff's reign of terror.,30.479,Morgan Creek Productions-Warner Bros. Pictures,6/14/91,48000000,390493908,143,Released,Sometimes the only way to uphold justice... is to break the law.,6.8,2798,Kevin Costner-Morgan Freeman-Mary Elizabeth Mastrantonio-Christian Slater-Alan Rickman-Geraldine McEwan-Michael McShane-Brian Blessed-Michael Wincott-Nick Brimble-Soo Drouet-Daniel Newman-Daniel Peacock-Walter Sparrow-Harold Innocent-Jack Wild-Michael Goldie-Liam Halligan-Marc Zuber-Merelina Kendall-Imogen Bain-Jimmy Gardner-Bobby Parr-John H. Francis-John Hallam-Douglas Blackwell-Pat Roach-Andy Hockley-John Dallimore-Derek Deadman-Howard Lew Lewis-John Tordoff-Andrew Lawden-Susannah Corbett-Sarah Alexandra-Christopher Adamson-Richard Strange-Sean Connery-Bryan Adams,england-crusade-archer-folk hero-thief-nottingham-sherwood forest-bow and arrow-friar-12th century-the crusades-living in the woods-helping the poor,/hbRnWUNJkKKVN5mkcuC5ooqjE4e.jpg,/u5Xd1fhXNX09ZJzgCJX6N3VlvEc.jpg,18848-10955-24679-29748-6520-619-9804-581-20662-879-8005-85435-8009-1844-9802-2024-9342-9476-10478-941-9772 +85,Raiders of the Lost Ark,Adventure-Action,en,When Dr. Indiana Jones ��� the tweed-suited professor who just happens to be a celebrated archaeologist ��� is hired by the government to locate the legendary Ark of the Covenant he finds himself up against the entire Nazi regime.,64.831,Paramount-Lucasfilm,6/12/81,18000000,389925971,115,Released,Indiana Jones - the new hero from the creators of JAWS and STAR WARS.,7.922,10772,Harrison Ford-Karen Allen-Paul Freeman-John Rhys-Davies-Ronald Lacey-Wolf Kahler-Anthony Higgins-Denholm Elliott-Alfred Molina-Vic Tablian-Don Fellows-William Hootkins-George Harris-Fred Sorenson-Anthony Chinn-Eddie Tagoe-Bill Reimbold-Patrick Durkin-Matthew Scurfield-Malcolm Weaver-Sonny Caldinez-Pat Roach-Christopher Frederick-Tutte Lemkow-Ishaq Bux-Kiran Shah-Souad Messaoudi-Terry Richards-Steve Hanson-Frank Marshall-Martin Kreidt-John Rees-Tony Vogel-Ted Grossman-Vic Armstrong-Peter Diamond-Nick Gillard-Romo Gorrara-Rick Lester-Rocky Taylor-Reg Harding-Harry Fielder-Billy Horrigan-Terry Leonard-Sergio Mione-Dennis Muren-Glenn Randall Jr.-Michael Sheard-Frank Welker,saving the world-riddle-nepal-himalaya mountain range-cairo-moses-egypt-whip-treasure-medallion-leather jacket-nazi-hat-mediterranean-ark of the covenant-ten commandments-treasure hunt-excavation-swastika-archaeologist-adventurer-archeology-religious history-1930s,/ceG9VzoRAVGwivFU403Wc3AHRys.jpg,/c7Mjuip0jfHLY7x8ZSEriRj45cu.jpg,89-87-217-496477-1891-1892-218-280-105-329-11-562-165-679-348-857-1893-607-1894-196-601 +47933,Independence Day: Resurgence,Action-Adventure-Science Fiction,en,We always knew they were coming back. Using recovered alien technology the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens�� advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.,74.074,20th Century Fox-TSG Entertainment-Centropolis Entertainment-Stereo D,6/22/16,165000000,389681935,120,Released,We had twenty years to prepare. So did they.,5.29,5764,Liam Hemsworth-Jeff Goldblum-Jessie T. Usher-Bill Pullman-Maika Monroe-Sela Ward-Judd Hirsch-William Fichtner-Brent Spiner-Patrick St. Esprit-Vivica A. Fox-AngelaBaby-Charlotte Gainsbourg-Deobia Oparei-Nicolas Wright-Travis Tope-Chin Han-Gbenga Akinnagbe-Robert Loggia-John Storey-Joey King-Jenna Purdy-Garrett Wareing-Hays Wellford-Mckenna Grace-James A. Woods-Robert Neary-Joshua Mikel-Joel Virgel-Arturo del Puerto-Matthew Munroe-Jacob Browne-Ryan Cartwright-Travis Hammer-Lance Lim-Zeb Sanders-Donovan Tyee Smith-Stafford Douglas-Jade Scott Lewis-Beth Bailey-Mona Malec-Omar Diop-Ron Yuan-Grace Huang-Stephen Oyoung-J.P. Murrieta-Casey Messer-Ben Wang-Nicholas Ballas-Jonathan Richards-Ivan G'Vera-Sam Quinn-Richard Beal-Alice Rietveld-Alma Sisneros-Kenny Leu-Monique Candelaria-Leilei Chen-Ava Del Cielo-Diana Gaitirira-Evan Bryn Graves-Jason E. Hill-Catharine E. Jones-Tyler Kurtz-Aaron Tyler-Michael Davis-Johnny Otto-John Christian Love,alien-alien invasion,/9S50foUIYGwiNPWOxi1WJF6IPwI.jpg,/jgiLc2X6OafvcadrNUaMeElgJrQ.jpg,602-188927-43074-68735-246655-258489-277662-852893-324668-209112-308531-297761-291805-302699-267860-205584-262504-278927-271110-127380-290595 +334298,Monster Hunt,Comedy-Fantasy-Adventure,zh,Young monster kids try to make peace between the world of humans and the world of the monsters.,21.234,Edko Films,7/16/15,0,387053506,118,Released,,6.4,289,Bai Baihe-Jing Boran-Jiang Wu-Elaine Jin-Wallace Chung-Eric Tsang-Sandra Ng Kwun-Yu-Tang Wei-Yao Chen-Yan Ni-Bao Jianfeng-Wang Yuexin-Guo Xiaodong-Li Jingjing-Zhang Yuexuan-Cindy Tian-Ludi Lin-Wei Wang-Zhang Guoqing-Zhang Bohan-Zheng Mingyang-Wang Cheng,monster-favorito,/csMASFudtPSyVEFl4qq2Sm5lflM.jpg,/ptgoTztfxbz0qFo129FwyisORRs.jpg,497984-351694-373200-348595-535167-345235-362682-10775-135397-351286-177572-168259-87827-207703-99861-76341-118340-333339-129-12-671 +373571,Godzilla: King of the Monsters,Science Fiction-Action,en,Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters including the mighty Godzilla who collides with Mothra Rodan and his ultimate nemesis the three-headed King Ghidorah. When these ancient super-species thought to be mere myths rise again they all vie for supremacy leaving humanity's very existence hanging in the balance.,60.08,Legendary Pictures-Huahua Media-TOHO,5/29/19,170000000,386600138,132,Released,Long live the king.,6.667,5202,Kyle Chandler-Vera Farmiga-Millie Bobby Brown-Ken Watanabe-Zhang Ziyi-Bradley Whitford-Sally Hawkins-Charles Dance-Thomas Middleditch-Aisha Hinds-O'Shea Jackson Jr.-David Strathairn-Anthony Ramos-Elizabeth Faith Ludlow-Jonathan Howard-CCH Pounder-Joe Morton-Randy Havens-Lyle Brocato-Jimmy Gonzales-T.C. Matherne-Kenneth Israel-Justice Leak-Al Vicente-Rose Bianco-Gabriel L. Silva-Skylar Denney-Kelli Garner-Tyler Crumley-Lexi Rabe-Zac Zedalis-Tracie Garrison-Natalie Shaheen-Jesse O'Neill-Joshua Leary-Vince Foster-Shauna Rappold-Fiona Hardingham-Orelon Sidney-Paul Ryden-Laurie Dhue-Kevin Shinick-T.J. Storm-Jason Liles-Alan Maxson-Richard Dorton-Seth Green-Eli Roth-James William Ballard-Joey Beni-Gerardo Bosco-Madeline Brumby-John David Bulla-Hans Bush-Marko Caka-Andrea Antonio Canal-Timothy Carr-Greg Clarkson-Michael Dougherty-Robin Dyke-Fred Galle-Christopher Bryan Gomez-Clare Grant-Anthony B. Harris-Kasia Hart-Cecil M. Henry-Maxwell Highsmith-Mallory Hoff-Brian Kayode-Patrick Johnson-Andrea Maiuro-Van Marten-Shaun McLane-Shaun McMillan-Roger K. Moore-Tony Morgan-Stephen Moyer-Leiloni Arrie Pharms-Sasha Rionda-Diana Rombola-Andres Salgado-Zach Shields-Beverley Simmons-Max Soliz-Thomas W. Stewart-Joey Thurmond-Robert Tinsley-Miguel Angel Varela Fimbres-Buddy Watkins-Benjamin Weaver-Jamie Wedel-Michael David Yuhl,mexico-boston massachusetts-giant monster-cryptozoology-eco terrorism-creature feature-gojira-rodan-kaiju-aftercreditsstinger-global threat-animal horror-king ghidorah-sunken city-mothra-godzilla-monsterverse,/fQ40gmFM4p03tXwMxQQKh2cCBW4.jpg,/uovH5k4BAEPqXqxgwVrTtqH169g.jpg,124905-788106-320288-458156-399566-479455-420817-447404-693841-456740-429617-586574-287947-293167-384018-571679-299534-531309-299537-864507-399579 +13475,Star Trek,Science Fiction-Action-Adventure,en,The fate of the galaxy rests in the hands of bitter rivals. One James Kirk is a delinquent thrill-seeking Iowa farm boy. The other Spock a Vulcan was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger boldly going where no one has gone before. The human adventure has begun again.,47.338,Paramount-Spyglass Entertainment-Bad Robot,5/6/09,150000000,385680446,127,Released,The future begins.,7.434,9367,Chris Pine-Zachary Quinto-Karl Urban-Zoe Salda��a-John Cho-Simon Pegg-Anton Yelchin-Leonard Nimoy-Bruce Greenwood-Eric Bana-Ben Cross-Winona Ryder-Chris Hemsworth-Jennifer Morrison-Rachel Nichols-Faran Tahir-Clifton Collins Jr.-Tony Elias-Sean Gerace-Randy Pausch-Tim Griffin-Freda Foh Shen-Kasia Kowalczyk-Jason Brooks-Sonita Henry-Kelvin Yu-Marta Martin-Tavarus Conley-Jeff Castle-Billy Brown-Jimmy Bennett-Greg Grunberg-Spencer Daniels-Jeremy Fitzgerald-Zoe Chernov-Max Chernov-Jacob Kogan-Lorenzo James Henrie-Colby Paul-Cody Klop-Akiva Goldsman-Anna Katarina-Douglas Tait-Tony Guma-Gerald W. Abrams-James McGrath-Jason Matthew Smith-Marcus Young-Bob Clendenin-Darlena Tejeiro-Reggie Lee-Jeffrey Byron-Jonathan Dixon-Tyler Perry-Ben Binswagner-Margot Farley-Paul McGillion-Lisa Vidal-Alex Nevil-Kimberly Arland-Sufe Bradshaw-Jeff Chase-Charles Haugk-Nana Hill-John Blackman-Jack Millard-Shaela Luter-Sabrina Morris-Michelle Parylak-Oz Perkins-Amanda Foreman-Michael Berry Jr.-Lucia Rijker-Pasha D. Lychnikoff-Matthew Beisner-Neville Page-Jesper Inglis-Greg Ellis-Marlene Forte-Leonard O. Turner-Mark Bramhall-Ronald F. Hoiseck-Irene Roseen-Jeff O'Haco-Scottie Thompson-Deep Roy-Majel Barrett-Ronnie Steadman-Arne Starr-Rico E. Anderson-Richard Arnold-Tad Atkinson-Leslie Augustine-Johnny Baca-Diora Baird-Sala Baker-Leo Baligaya-Corey Becker-Larry Blackman-Jessica Boss-Neil S. Bulk-Etalvia Cashin-James Cawley-Brad Champagne-Zachary Culbertson-Jeffrey De Serrano-T.C. De Witt-Calvin Dean-Christopher Doohan-Claire Dor��-Etienne Eckert-Ken Edling-Aliza Finley-Ian Fisher-Anna Florence-Mathew Thomas Foss-Massi Furlan-Tommy Germanovich Jr.-Mary Grace-Wyatt Gray-Nancy Guerriero-Jarrell Hall-Justin Rodgers Hall-Jeffery Hauser-Brad William Henke-Ryan T. Husk-Elizabeth Ingalls-Sierra Kane-Christopher Karl Johnson-Jolene Kay-Lauren Mary Kim-Sarah Klaren-Makiko Konishi-Tashana Landray-Daniel D. Lee-Anne Leighton-James Lew-Jill Lover-Steve Luna-Aaron Lynch-Justin Malachi-Nav Mann-Paul Marshall-Owen Martin-Taylor McCluskey-Matthew McGregor-Caitlin McKenna-Andrew Mew-Patrizia Milano-Heidi Moneymaker-Kevin Moser-Jonathan Dunkerley Newkerk-Westley Nguyen-Jim Nieb-Andres Perez-Molina-Mark Phelan-Damion Poitier-Rahvaunia-Bertrand Roberson Jr.-Deborah Rombaut-Leonard Jonathan Ruebe-Darth Schuhe-Ramona Seymour-William Morgan Sheppard-Katie Soo-Joseph Stephens Jr.-Joseph Steven-T.J. Storm-Kaitlin Sullivan-Paul Townsend-Scott Trimble-Errik Tustenuggee-Ravi Valleti-Jason Vaughn-A.J. Verel-Brian Waller-Steve Wharton-Wil Wheaton-Brianna Womick-Rob Wood-Lynnanne Zager,san francisco california-spacecraft-teleportation-space mission-parachute-time travel-black hole-supernova-prequel-warp speed-futuristic-warp engine-space-romulans-alternate reality-space opera-reboot-unlikely friendship-child driving car-23rd century-based on tv series-24th century,/lV5OpzAss1z06YNagOVap1I35mH.jpg,/q7M0JpPixbEYT8EhnI7wTEMONxz.jpg,54138-188927-49538-10528-56292-11-2080-36657-59967-1726-1891-10138-70981-193-201-36668-272-37724-199-10764-1771 +9836,Happy Feet,Animation-Comedy-Family,en,Into the world of the Emperor Penguins who find their soul mates through song a penguin is born who cannot sing. But he can tap dance something fierce!,53.385,Kennedy Miller Productions-Animal Logic,11/16/06,100000000,384335608,108,Released,WARNING: May Cause Toe-Tapping.,6.16,4539,Elijah Wood-Robin Williams-Brittany Murphy-Hugh Jackman-Nicole Kidman-Hugo Weaving-Anthony LaPaglia-Elizabeth Daily-Magda Szubanski-Miriam Margolyes-Carlos Alazraqui-Lombardo Boyar-Jeffrey Garcia-Johnny A. Sanchez-Fat Joe-Alyssa Shafer-Cesar Flores-Danny Mann-Mark Klastorin-Michael Cornacchia-Seishirou Katou-Arif S. Kinchen-Steve Irwin-Nicholas McKay-Tiriel Mora-Lee Perry-Alan Shearman-Larry Moss-Peter Carroll-Giselle Loren-Michelle Arthur-Denise Blasor-Dee Bradley Baker-Roger Rose-Chrissie Hynde-Richard Carter-J. Grant Albrecht-Logan Arens-Charles Bartlett-Shane Baumel-T.J. Beacom-Kwesi Boakye-A.J. Buckley-Erin Chambers-Rickey D'Shon Collins-Scotty Cox-Django Craig-Nicholas DeLaurentis-Olivia DeLaurentis-Chris Edgerly-Efrain Figueroa-Jeff Fischer-Sonje Fortag-Spencer Ganus-Khamani Griffin-Khadijah Haqq McCray-Aldis Hodge-Fisher Keene-Michael Krepack-Libby Lynch-Diane Michelle-Ryan Munck-Christian Pikes-Steve Pinto-Zo� Raye-Noreen Reardon-Eliana Reyes-Nicole Richmond-Aimee Roldan-Kyndell Rose-Alyssa Smith-Mari Weiss-Billy 'Sly' Williams-Rachel York-Charlotte Gillman-Warren Coleman-Felix Williamson-Carly Andrews-Cassandra Swaby-Winston Cooper-Henry Nixon-Kelly Tracey-Yann Le Berre-Belinda Bromilow-Alan Zitner-Dasi Ruz-Helmut Bakaitis-Simon Westaway-Craig Ricci Shaynak,ocean-fish-zoo-penguin-tap dancing-love-crush-snow-anthropomorphism-singing-antarctica-family-duringcreditsstinger,/zP4CK9O70P8GDilfTkPm4lrmaks.jpg,/9DUAR7p4SGqt2ISH2lmSzNx3uni.jpg,65759-9928-5559-11619-10527-6477-10555-9408-7518-13053-7484-9982-953-15512-950-8920-8355-22794-810-12222-7443 +260514,Cars 3,Animation-Adventure-Comedy-Family,en,Blindsided by a new generation of blazing-fast racers the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game he will need the help of an eager young race technician with her own plan to win inspiration from the late Fabulous Hudson Hornet and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing��s biggest stage!,106.248,Pixar,6/15/17,175000000,383925276,102,Released,It's not over until lightning strikes.,6.8,4928,Owen Wilson-Cristela Alonzo-Chris Cooper-Nathan Fillion-Armie Hammer-Larry the Cable Guy-Bonnie Hunt-Lea DeLaria-Kerry Washington-Tony Shalhoub-Guido Quaroni-Lloyd Sherr-Paul Dooley-Cheech Marin-Jenifer Lewis-Lewis Hamilton-Bob Costas-Bob Peterson-Katherine Helmond-John Ratzenberger-Michael Wallis-Ray Magliozzi-Tom Magliozzi-Junior Johnson-Margo Martindale-Chase Elliott-Ryan Blaney-Darrell Waltrip-Shannon Spake-Humpy Wheeler-Jeff Gordon-Daniel Su��rez-Kyle Petty-Mike Joy-Ray Evernham-Richard Petty-Jason Pace-Angel Oquendo-Madeleine McGraw-Andra Day-Bubba Wallace-Isiah Whitlock Jr.-Paul Newman,trainer-sequel-travel-racing-anthropomorphism-high tech,/jJ8TnHvWHaVadW5JJjGYsM07j9i.jpg,/4mlS1MitcOqdPLhxEFyk9Qwf5rr.jpg,502235-1034541-49013-920-514231-863-127380-62211-10193-241408-324852-2062-9806-862-9487-12-105864-585-150540-260513-42085 +1571,Live Free or Die Hard,Action-Thriller,en,John McClane is back and badder than ever and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.,27.82,Dune Entertainment-Cheyenne Enterprises-Wintergreen Productions-20th Century Fox-Ingenious Media,6/20/07,110000000,383531464,128,Released,The old school cop is back!,6.604,5342,Bruce Willis-Justin Long-Timothy Olyphant-Cliff Curtis-Maggie Q-Mary Elizabeth Winstead-Kevin Smith-Christina Chang-Sung Kang-Zeljko Ivanek-Yorgo Constantine-Jonathan Sadowski-Andrew Friedman-Cyril Raffaelli-Chris Palermo-Jake McDorman-Matt O'Leary-Yancey Arias-Allen Maldonado-Chris Ellis-Nadine Ellis-Tim Russ-Rosemary Knower-Gerald Downey-Jim Cantafio-Regina McKee Redwing-Tony Colitti-Tim DeZarn-Kurt David Anderson-Ethan Flower-Nick Jaine-Joe Gerety-Edward James Gage-David Walrod-Edoardo Costa-John Reha-Rick Cramer-Vito Pietanza-Dennis Depew-Howard Tyrone Ferguson-John Lacy-Diana Gettinger-Melissa Knowles-Chad Stahelski-Michael Papajohn-Clay Cullen-Matt McColm,washington dc usa-hostage-fbi-kidnapping-hacker-transport of prisoners-ex-cop-sequel-cyber terrorism-action hero-based on magazine newspaper or article,/31TT47YjBl7a7uvJ3ff1nrirXhP.jpg,/aRqTPOPt8BOHE0ngppM9jnuuaeS.jpg,1572-1573-562-47964-27578-39514-534-2501-296-10764-2503-956-76163-36557-49040-56292-2502-14869-954-604-955 +425,Ice Age,Animation-Comedy-Family-Adventure,en,With the impending ice age almost upon them a mismatched trio of prehistoric critters ��� Manny the woolly mammoth Diego the saber-toothed tiger and Sid the giant sloth ��� find an orphaned infant and decide to return it to its human parents. Along the way the unlikely allies become friends but when enemies attack their quest takes on far nobler aims.,109.263,20th Century Fox-Blue Sky Studios-20th Century Fox Animation,3/10/02,59000000,383257136,81,Released,They came. They thawed. They conquered.,7.34,11802,Ray Romano-John Leguizamo-Denis Leary-Goran Visnjic-Jack Black-Cedric the Entertainer-Stephen Root-Diedrich Bader-Alan Tudyk-Lorri Bagley-Jane Krakowski-Peter Ackerman-P.J. Benjamin-Josh Hamilton-Chris Wedge-Denny Dillon-Mitzi McCall-Tara Strong-Darin De Paul-Dann Fink-Patrick Pinney-Phil Proctor,human evolution-loss of loved one-parent child relationship-squirrel-mammoth-sloth-dying and death-stone age-prehistoric-saber-toothed tiger-cavemen-prehistoric creature-road movie-prehistoric adventure-prehistoric times-neanderthal-prehistoric man-ground sloth,/gLhHHZUzeseRXShoDyC4VqLgsNv.jpg,/a9ykRAWtQnI3SsZDfh8sCJo5cWI.jpg,950-8355-57800-953-808-809-9502-12-585-10527-2062-810-8587-9806-920-862-863-38757-812-20352-278154 +15512,Monsters vs Aliens,Animation-Family-Adventure-Science Fiction,en,When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day she mysteriously grows to 49-feet-11-inches. The military jumps into action and captures Susan secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...,30.914,DreamWorks Animation-Paramount,3/19/09,175000000,381509870,94,Released,"When aliens attack, monsters fight back.",6.202,4160,Reese Witherspoon-Seth Rogen-Hugh Laurie-Will Arnett-Kiefer Sutherland-Rainn Wilson-Paul Rudd-Stephen Colbert-Julie White-Jeffrey Tambor-Amy Poehler-Ed Helms-Ren��e Zellweger-Sean Bishop-Rich Dietl-Rob Letterman-Tom McGrath-Chris Miller-Mike Mitchell-Kent Osborne-Latifa Ouaou-Geoffrey Pomeroy-David P. Smith-Lisa Stewart-Conrad Vernon-John Krasinski-Stephen Kearin,alien-giant robot-duringcreditsstinger-3d,/iDKQEevFHSzopWLMpySp9IpP5xW.jpg,/na71ASQOjgIkLc3xkqXghyHc2UK.jpg,13053-38055-22794-9928-10527-5559-7518-46195-10192-810-12222-9836-953-10555-80321-950-49444-8355-9982-11619-9408 +105,Back to the Future,Adventure-Comedy-Science Fiction,en,Eighties teenager Marty McFly is accidentally sent back in time to 1955 inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.,67.613,Universal Pictures-Amblin Entertainment,7/3/85,19000000,381109762,116,Released,He's the only kid ever to get into trouble before he was born.,8.315,18805,Michael J. Fox-Christopher Lloyd-Lea Thompson-Crispin Glover-Thomas F. Wilson-Claudia Wells-Marc McClure-Wendie Jo Sperber-George DiCenzo-Frances Lee McCain-James Tolkan-J.J. Cohen-Casey Siemaszko-Billy Zane-Harry Waters Jr.-Donald Fullilove-Lisa Freeman-Cristen Kauffman-Elsa Raven-Will Hare-Ivy Bethune-Jason Marin-Katherine Britton-Jason Hervey-Maia Brewton-Courtney Gains-Richard L. Duran-Jeff O'Haco-Johnny Green-Jamie Abbott-Norman Alden-Read Morgan-Sachi Parker-Robert Krantz-Gary Riley-Karen Petrasek-George Buck Flower-Tommy Thomas-Granville 'Danny' Young-David Harold Brown-Lloyd L. Tolbert-Paul Hanson-Lee Brownfield-Robert DeLapp-Tony Pope-Charles L. Campbell-Huey Lewis-Kiki Ebsen-Randy Feelgood-Hal Gausman-Deborah Harmon-Arthur Tovey-Ethel Sway-Janine King-Richard Patrick-Tom Tangen-Tom Willett,flying car-race against time-clock tower-car race-lightning-guitar-plutonium-inventor-journey in the past-invention-time travel-bullying-mad scientist-fish out of water-terrorism-teenage love-destiny-hidden identity-love and romance-teenage life-changing the past or future-1950s,/fNOH9f1aA7XRTzl1sAOx9iF553Q.jpg,/5bzPWQ2dFUl2aZKkp7ILJVVkRed.jpg,165-196-1891-85-218-11-603-329-89-13-280-10681-348-121-8587-862-857-87-1892-607-120 +497698,Black Widow,Action-Adventure-Science Fiction,en,Natasha Romanoff also known as Black Widow confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. Pursued by a force that will stop at nothing to bring her down Natasha must deal with her history as a spy and the broken relationships left in her wake long before she became an Avenger.,82.963,Marvel Studios,7/7/21,200000000,379751131,134,Released,Her world. Her secrets. Her legacy.,7.32,9123,Scarlett Johansson-Florence Pugh-Rachel Weisz-David Harbour-Ray Winstone-Olga Kurylenko-Ever Anderson-Violet McGraw-O.T. Fagbenle-William Hurt-Ryan Kiera Armstrong-Liani Samuel-Michelle Lee-Lewis Young-C.C. Smiff-Nanna Blondell-Simona Zivkovska-Erin Jameson-Shaina West-Yolanda Lynes-Claudia Heinz-Fatou Bah-Jade Ma-Jade Xu-Lucy-Jayne Murray-Lucy Cork-Eniko Fulop-Lauren Okadigbo-Aur��lia Agel-Zhan�� Samuels-Shawarah Battles-Tabby Bond-Madeleine Nicholls-Yasmin Riley-Fiona Griffiths-Georgia Curtis-Svetlana Constantine-Ione Butler-Aubrey Cleland-Kurt Yue-Doug Robson-Marcel Dorian-Zolt��n Nagy-Liran Nathan-Judit Varga-Szathmary-Noel Krisztian Kozak-Martin Razpopov-Olivier Richters-Nina Novich-Andrew Byron-Ed Ashe-Dawid Szatarski-Cali Nelle-Geoffrey D. Williams-Robert Pralgo-Jacinte Blankenship-Josh Henry-Jose Miguel Vasquez-Valentina Herrera-Danielle Jalade-Aria Brooks-Sophie Colgrove-Caister Myung Choi-David Turner-Edward L. Oliver-Rob Horrocks-Oliver Simms-Yuuki Luna-Kalina Vanska-Jordyn Curet-Chad J. Wagner-Joakim Skarli-Ian Wilson-Tyrone Kearns-Gavin Lee Lewis-Ahmed Bakare-Zoltan Rencsar-Adam Prickett-Luigi Boccanfuso-Roman Green-Clem So-Graham Kitchen-Daniel Joseph Woolf-John Wolfe-Paul O'Kelly-Shane Askam-Obie Matthew-Ty Hurley-Stephen Samson-Marian Lorencik-Julia Louis-Dreyfus-Jeremy Renner-Dale Liner,spy-assassin-hero-kgb-based on comic-female assassin-female spy-female hero-aftercreditsstinger-marvel cinematic universe (mcu)-woman director,/kwB7d51AIcyzPOBOHLCEZJkmPhQ.jpg,/keIxh0wPr2Ymj0Btjh4gW7JJ89e.jpg,566525-524434-436969-588228-451048-550988-429617-299534-299536-580489-299537-508943-634649-363088-379686-385128-284053-337404-101638-315635-271110 +929,Godzilla,Science Fiction-Action-Thriller,en,French nuclear tests irradiate an iguana into a giant monster that viciously attacks freighter ships in the Pacific Ocean. A team of experts including Niko Tatopoulos conclude that the oversized reptile is the culprit. Before long the giant lizard is loose in Manhattan as the US military races to destroy the monster before it reproduces and it's spawn takes over the world.,48.185,TOHO-TriStar Pictures-Independent Pictures (II)-Fried Films-Centropolis Entertainment,5/20/98,130000000,379014294,138,Released,Size does matter.,5.601,3478,Matthew Broderick-Jean Reno-Maria Pitillo-Hank Azaria-Kevin Dunn-Michael Lerner-Harry Shearer-Arabella Field-Vicki Lewis-Doug Savant-Malcolm Danare-Lorry Goldman-Christian Aubert-Philippe Bergeron-Frank Bruynbroek-Fran�_ois Giroday-Nicholas J. Giangiulio-Robert Lesser-Ralph Manza-Greg Callahan-Chris Ellis-Nancy Cartwright-Richard Gant-Jack Moore-Steve Giannelli-Brian Farabaugh-Stephen Xavier Lee-Bodhi Elfman-Rich Grosso-Lloyd Kino-Toshi Toda-Clyde Kusatsu-Masaya Kato-Glenn Morshower-Lola Pashalinski-Rob Fukuzaki-Dale Harimoto-Gary W. Cruz-Derek Webster-Stuart Fratkin-Frank Cilberg-Jason Edward Jones-Roger McIntyre-David Pressman-Robert Faltisco-Christopher Darius Maleki-Scott Lusby-Ali Afshar-Terence Paul Winter-Kirk Geiger-Pat Mastroianni-Eric Saiet-Burt Bulos-Robert Floyd-Seth Peterson-Jamison Yang-Nathan Anderson-Mark Munafo-Dwight Schmidt-Dwayne Swingler-Lawton Paseka-Greg Collins-James Black-Thomas Giuseppe Giantonelli-Paul Ware-Montae Russell-Christopher Carruthers-Daniel Pearce-Mark Fite-Craig 'Radioman' Castaldo-Eric Paskel-Lee Weaver-Leonard Termo-Joshua Taylor-Al Sapienza-Stoney Westmoreland-Gary Warner-Ed Wheeler-Bill Hoag-Joseph Badalucco Jr.-Jonathan Dienst-Benjamin Baird-Madeline McFadden-Julian M. Phillips-Raymond Ramos-Gary A. Hecker-Frank Welker-Al Leong-Ed Godziszewski-Steven Ho-George Cheung-John Koyama-Al Goto-Norman Fessler,new york city-atomic bomb-intelligence-missile-destroy-pregnancy-boat accident-flowerpot-atomic bomb test-us army-giant monster-creature-kaiju-military-animal horror-godzilla,/tqQ9Nt5C1Z5PRDPxYXQ4qwy5v5V.jpg,/z6fmvhQXS5hbXSizx4DGajjBmGD.jpg,876457-39264-39462-586221-124905-522348-1678-39466-12561-39464-10643-39465-19545-18627-38582-19336-1680-39468-18289-331-15766 +36955,True Lies,Action-Thriller,en,A fearless globe-trotting terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman while terrorists smuggle nuclear war heads into the United States.,38.228,Lightstorm Entertainment-20th Century Fox,7/15/94,115000000,378882411,141,Released,"When he said I do, he never said what he did.",7.042,3456,Arnold Schwarzenegger-Jamie Lee Curtis-Tom Arnold-Bill Paxton-Tia Carrere-Art Malik-Eliza Dushku-Grant Heslov-Charlton Heston-Marshall Manesh-James Allen-Dieter Rauter-Jane Morris-Katsy Chappell-Crystina Wyler-Ofer Samra-Paul Barselou-Charles A. Tamburro-Jean-Claude Parachini-Uzi Gal-Majed Ibrahim-Armen Ksajikian-Mike Akrawi-Mike Cameron-Charles Cragin-Louai Mardini-Gino Salvano-Scott Dotson-Tom Isbell-John Bruno-Sergio Kato-Sayed Badreya-Ray Buffer-Max Daniels-Joan Quinn Eastman-Richard Givens-Loren Janes-Lane Leavitt-Cassidy McMillan-Jody Millard-Erik Parillo-Manny Perry-Charlie Picerni-Dale Resteghini-William Shipman-Matt Sigloch-Ryken Zane,spy-terrorist-florida-gun-kidnapping-horseback riding-florida keys-secret agent-terrorist plot-top secret-mushroom cloud-jackhammer-special agent-key west,/pweFTnzzTfGK68woSVkiTgjLzWm.jpg,/jRZ3joUcg8YDCQYl4Tog5xhY6wk.jpg,10999-861-865-9268-9593-9739-9802-9350-1701-951-1637-942-9493-56870-702557-8452-9387-90-941-106-754 +76341,Mad Max: Fury Road,Action-Adventure-Science Fiction,en,An apocalyptic story set in the furthest reaches of our planet in a stark desert landscape where humanity is broken and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.,115.397,Warner Bros. Pictures-Village Roadshow Pictures-RatPac Entertainment-Kennedy Miller Mitchell,5/13/15,150000000,378858340,121,Released,What a Lovely Day.,7.586,21158,Tom Hardy-Charlize Theron-Nicholas Hoult-Hugh Keays-Byrne-Riley Keough-Zo� Kravitz-Rosie Huntington-Whiteley-Abbey Lee-Courtney Eaton-Josh Helman-Nathan Jones-John Howard-Richard Carter-Iota-Angus Sampson-Jennifer Hagan-Megan Gale-Melissa Jaffer-Melita Juri��iۈ-Gillian Jones-Joy Smithers-Antoinette Kellerman-Christina Koch-Jon Iles-Quentin Kenihan-Coco Jack Gillies-Chris Patton-Stephen Dunlevy-Richard Norton-Vincent Roxburgh-John Walton-Ben Smith-Petersen-Russ McCarroll-Judd Wild-Elizabeth Cunico-Greg Van Borssum-Robert Jones-Sebastian Dickins-Darren Mitchell-Crusoe Kurddal-Shyan Tonga-Cass Cumerford-Albert Lee-Ripley Voeten-Riley Paton-Maycn Van Borssum-Hunter Stratton Boland-Nathan Jenkins-Fletcher Gill-Whiley Toll-Ferdinand Hengombe-Gadaffi Davsab-Noddy Alfred-Jackson Hengombe-Christian Fane-Callum Gallagher-Abel Hofflin-Lee Perry-Hiroshi Kasuga,rescue-future-australia-chase-dystopia-post-apocalyptic future-survival-on the run-on the road-convoy-peak oil-dark future,/8tZYtuWezp8JbcsvHYO0O46tFbo.jpg,/nlCHUWjY9XWbuEUQauCBgnY8ymF.jpg,276137-468316-166258-170370-135397-286217-293660-281957-118340-140607-157336-207703-99861-264660-102899-68718-1083961-194662-127585-27205-87101 +341174,Fifty Shades Darker,Drama-Romance,en,When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability shadowy figures from Christian��s past start to circle the couple determined to destroy their hopes for a future together.,92.892,Universal Pictures-dentsu-Fuji Television Network-Perfect World Pictures-Michael De Luca Productions,2/8/17,55000000,378827494,118,Released,Every fairy tale has a dark side.,6.5,7025,Dakota Johnson-Jamie Dornan-Eric Johnson-Eloise Mumford-Bella Heathcote-Rita Ora-Luke Grimes-Victor Rasuk-Max Martini-Bruce Altman-Kim Basinger-Marcia Gay Harden-Andrew Airlie-Robinne Lee-Amy Price-Francis-Fay Masterson-Ashleigh LaThrop-Paniz Zade-Carmen Dollard-Bill Dow-Julia Dominczak-Shiraine Haas-Elizabeth McLaughlin-John Callander-Ellen Ewusie-Stephan Miers-Albert Nicholas-Michael Meneer-Michael St. John Smith-Derek Green-Michelle Harrison-Mark DeCarlo-Stephanie Florian-Lucia Walters-Colin Lawrence-Isaiah Dobbs,based on novel or book-boat-eroticism-kiss-sequel-bdsm,/7CBO9GhsUeMSsWQb47WTPZnKjdj.jpg,/9dWH18IZf0KdGx0kJaONzWcmD69.jpg,216015-337167-164431-18239-24021-50620-925130-222935-321612-8966-50619-296096-262504-417678-351819-286565-200727-272693-262500-283378-22971 +12405,Slumdog Millionaire,Drama-Romance,en,"A teenager reflects on his life after being accused of cheating on the Indian version of ""Who Wants to be a Millionaire?"".",21.806,Celador Films-Film4 Productions,11/12/08,15000000,378410542,120,Released,What does it take to find a lost love?,7.732,9879,Dev Patel-Saurabh Shukla-Anil Kapoor-Raj Zutshi-Jeneva Talwar-Freida Pinto-Irrfan Khan-Azharuddin Mohammed Ismail-Ayush Mahesh Khedekar-Jira Banjara-Sheikh Wali-Mahesh Manjrekar-Sanchita Choudhary-Himanshu Tyagi-Sharib Hashmi-Virendra Chatterjee-Feroze Khan-Sunil Kumar Agrawal-Virender Kumar-Devesh Rawal-Rubina Ali-Ankur Vikal-Tiger-Chirag Parmar-Nazneen Shaikh-Farzana Ansari-Anupam Shyam-Salim Chaus-Harvinder Kaur-Narendra Singh Bhati-Tanay Chheda-Ashutosh Lobo Gajiwala-Satya Mudgal-Janet de Vigne-William Relton-David Gilliam-Mia Drake-Kinder Singh-Christine Matovich Singh-Thomas Lehmkuhl-Siddesh Patil-Najma Shaikh-Saeeda Shaikh-Alka Satpute-Tabassum Khan-Tanvi Ganesh Lonkar-Sitaram Panchal-Nigel Caesar-Ajit Pandey-Kedar Thapar-Amit Leonard-Rajesh Kumar-Sagar Ghopalkar-Pradeep Solanki-Abdul Hamid Shaikh-Dheeraj Waghela-Shruti Seth-Arfi Lamba-Taira Colah-Varun Bagri-Ankur Tewari-Anjum Sharma-Madhur Mittal-Sarfaraz Khan-Syed Fazal Hussain-Umar Khan-Imran Hasnee-Homai Billimoria-Udayan Baijal-Sandeep Kaul-Rufee Ahmed-Rhea Lawyer-Deepali Dalvi-Anisha Nagar-Farrah Shaikh-Mamta Sharma-Neha M. Khatarawalla-Tanya Singh-Anand Tiwari-Faezeh Jalali-Meghana Jhalani-Rupali Mehra-Anju Singh-Saurabh Agarwal-Mark Boucher-Andre Nel-Yuvraj Singh-Sachin Tendulkar-Amitabh Bachchan,slum-based on novel or book-cheating-suspicion-mumbai (bombay) india-game show-quiz-orphan-duringcreditsstinger-taj mahal india,/5leCCi7ZF0CawAfM5Qo2ECKPprc.jpg,/9IZvClXvhSxlp41eT0CyUEsyjqy.jpg,1006970-45269-37799-70-4922-1402-194-745-8358-640-13223-453-11324-37165-2062-77338-808-773-5915-683841-7326 +82675,Taken 2,Action-Crime-Thriller,en,In Istanbul retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.,51.707,EuropaCorp-Grive Productions-M6 Films-Cin��+-20th Century Fox-Canal+-Dune Entertainment-Taken 2-Fox International Productions,9/27/12,45000000,376100000,91,Released,First they took his daughter. Now they're coming for him.,6.3,6332,Liam Neeson-Maggie Grace-Famke Janssen-Leland Orser-D.B. Sweeney-Jon Gries-Rade ��erbed�_ija-Luke Grimes-Kevork Malikyan-Alain Figlarz-Frank Alvarez-Murat Tuncelli-Ali Yildirim-Ergun Kuyucu-Cengiz Bozkurt-Hakan Karahan-Saruhan Sari-Naci Ad۱g�_zel-Aclan B�_y�_kt�_rko��lu-Mehmet Polat-Yilmaz Kovan-Erdogan Yavuz-Luran Ahmeti-Cengiz Daner-Melis Erman-Erkan ���_�_nc�_-Ugur Ugural-Alex Dawe-Olivier Rabourdin-Micha�l Vander-Meiren-Rochelle Gregorie-Luenell-Emre Melemez-��lkay Akda��l۱-Myl��ne Pilutik-Nathan Rippy-Atilla Pekoz-Serdar Okten-Mesut Makul-Mustafa Akin-Murat Karatas-Cuneyt Yanar-Baris Adem-Hasan Karagulle-Gazenfer Kokoz-Remzi Sezgin-Ahmet Orhan Ozcam-Melike Acar-Yasemin Yeltekin-Baris Aydin-Kenneth James Dakan-Adil Sak-Bekir Aslanta��-Ercan Kurt-Cetin Arik-Tamer Avkapan-Eraslan Sa��lam-Mohammed Mouh-Julian Vinay-Gaelle Oilleau-�a��an Atakan Arslan,kidnapping-fbi-turkey-police chase-teenage daughter-stealing a car-ex-husband ex-wife relationship-albanian-u.s. embassy,/yzAlcuJhpnxRPjaj7AHBRbNPQCJ.jpg,/m4c1V53pQ4Z1Jk6rC0Ve3OTcWqW.jpg,260346-8681-59967-49040-278-49026-8909-225574-10138-72105-2062-76163-48138-59961-82690-18785-1893-68718-37724-1271-808 +324857,Spider-Man: Into the Spider-Verse,Action-Adventure-Animation-Science Fiction,en,"Miles Morales is juggling his life between being a high school student and being a spider-man. When Wilson ""Kingpin"" Fisk uses a super collider others from across the Spider-Verse are transported to this dimension.",108.301,Columbia Pictures-Lord Miller Productions-Pascal Pictures-Sony Pictures Animation-Avi Arad Productions,12/14/18,90000000,375540831,117,Released,More than one wears the mask.,8.406,12468,Shameik Moore-Jake Johnson-Hailee Steinfeld-Mahershala Ali-Brian Tyree Henry-Lily Tomlin-Lauren V��lez-Zo� Kravitz-John Mulaney-Kimiko Glenn-Nicolas Cage-Kathryn Hahn-Liev Schreiber-Chris Pine-Natalie Morales-Edwin H. Bravo-Oscar Isaac-Greta Lee-Stan Lee-Jorma Taccone-Joaqu�_n Cos�_o-Marvin 'Krondon' Jones III-Kim Yarbrough-Lake Bell-Jessica Mikayla Adams-Gredel Berrios Calladine-Sarah D. Cole-Kelby Joseph-Mimi Davila-Claudia Choi-Melanie Haynes-Joseph Izzo-Nick Jaine-Muneeb Rehman-Carlos Zaragoza-Post Malone-David Applebee-Juan Carlos Arvelo-Adam Brown-Jon Bruno-Darcy Rose Byrnes-Oscar Camacho-June Christopher-Alycia Cooper-Michelle Jubilee Gonzalez-Terrence Hardy Jr.-Bridget Hoffman-Rif Hutton-Miguel Jiron-Harrison Knight-Lex Lang-Donna Lynn Leavy-Andrew Leviton-Caitlin McKenna-Scott Menville-Christopher Miller-Arthur Ortiz-Juan Pacheco-Devika Parikh-Shakira Ja'nai Paye-Courtney Peldon-Chrystee Pharris-Jacqueline Pinol-Juan Pope-Al Rodrigo-Joseph Sanfelippo-Justin Shenkarow-Dennis Singletary-Warren Sroka-Melissa Sturm-Holly Walker-Jason Linere-White-Ruby Zalduondo-Ruth Zalduondo-Cliff Robertson,superhero-based on comic-aftercreditsstinger-alternate universe,/iiZZdoQBEYBv6id8su7ImL0oCbD.jpg,/x2IqsMlpbOhS8zIUJfyl1yO4gHF.jpg,429617-16355-299534-299536-299537-315635-297802-404368-363088-335983-559-260513-284053-284054-287947-557-424783-102382-383498-82879-558 +466272,Once Upon a Time��_ in Hollywood,Comedy-Drama-Thriller,en,Los Angeles 1969. TV star Rick Dalton a struggling actor specializing in westerns and stuntman Cliff Booth his best friend try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate who has just married the prestigious Polish director Roman Polanski��_,36.842,Heyday Films-Columbia Pictures-Bona Film Group,7/24/19,95000000,374251247,162,Released,"In this town, it can all change��_ like that",7.435,11783,Leonardo DiCaprio-Brad Pitt-Margot Robbie-Emile Hirsch-Margaret Qualley-Timothy Olyphant-Julia Butters-Austin Butler-Dakota Fanning-Bruce Dern-Mike Moh-Luke Perry-Damian Lewis-Al Pacino-Nicholas Hammond-Samantha Robinson-Rafa�� Zawierucha-Lorenza Izzo-Costa Ronin-Damon Herriman-Lena Dunham-Madisen Beaty-Mikey Madison-James Landry H��bert-Maya Hawke-Victoria Pedretti-Sydney Sweeney-Harley Quinn Smith-Dallas Jay Hunter-Kansas Bowling-Parker Love Bowling-Cassidy Vick Hice-Ruby Rose Skotchdopole-Danielle Harris-Josephine Valentina Clark-Scoot McNairy-Clifton Collins Jr.-Marco Rodr�_guez-Ram�_n Franco-Ra�_l Cardona-Courtney Hoffman-Dreama Walker-Rachel Redleaf-Rebecca Rittenhouse-Rumer Willis-Spencer Garrett-Clu Gulager-Martin Kove-Rebecca Gayheart-Kurt Russell-Zo� Bell-Michael Madsen-Perla Haney-Jardine-James Remar-Monica Staggs-Craig Stark-Keith Jefferson-Omar Doom-Kate Berlant-Victoria Truscott-Allison Yaple-Bruce Del Castillo-Brenda Vaccaro-Lew Temple-Daniella Pick-David Steen-Mark Warrack-Gabriela Flores-Heba Thorisdottir-Breanna Wing-Kenneth Sonny Donato-Sergio Gonzalez-Casey O'Neill-Michael Graham-Emile Williams-Vincent Laresca-JLouis Mills-Gilbert Saldivar-Maurice Compte-Eddie Perez-Hugh McCallum-Zander Grable-Ed Regine-Michael Bissett-Lenny Langley Jr.-Gillian M. Berrow-Chad Ridgely-Chic Daniel-Corey Burton-Michaela Sprague-Ryan Ramirez-Kayla Jenee Radomski-Kerry Westcott-William DeAtley-Brianna Joy Chomer-Quentin Tarantino-Johnny Otto-Gina Aponte,movie business-male friendship-celebrity-based on true story-fame-hollywood-los angeles california-historical fiction-buddy-struggling actor-satanic cult-revisionist history-western filmmaking-1960s-stunt double-old hollywood,/wQKeS2JrsRF8XSfd9zqflrc5gad.jpg,/xwgBHC2FgoIrQitl8jZwXXdsR9u.jpg,475557-496243-398978-594040-492188-515001-530915-16869-546554-359724-500-106646-68718-273248-680-419704-393-24-11324-429617-103 +272,Batman Begins,Action-Crime-Drama,en,Driven by tragedy billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home Gotham City. Unable to work within the system he instead creates a new identity a symbol of fear for the criminal underworld - The Batman.,93.893,Warner Bros. Pictures-DC Comics-Syncopy-Legendary Pictures-Patalex III Productions Limited,6/10/05,150000000,374218673,140,Released,Evil fears the knight.,7.703,19888,Christian Bale-Liam Neeson-Katie Holmes-Michael Caine-Gary Oldman-Cillian Murphy-Morgan Freeman-Tom Wilkinson-Mark Boone Junior-Linus Roache-Ken Watanabe-Rutger Hauer-Gus Lewis-Emma Lockhart-Larry Holden-Colin McFarlane-Christine Adams-Vincent Wong-Sara Stewart-Richard Brake-Gerard Murphy-Charles Edwards-Tim Booth-Rade ��erbed�_ija-Risteard Cooper-Andrew Pleavin-Jo Martin-Shane Rimmer-Jeremy Theobald-Jack Gleeson-Jonathan Patrick Foo-Spencer Wilding-Dave Legeno-Khan Bonfils-Mark Strange-Grant Guirey-Rodney Ryan-Dean Alexandrou-Hayden Nickel-Catherine Porter-John Nolan-Karen David-Jonathan D. Ellis-Tamer Hassan-Tom Wu-Ronan Leahy-Mark Chiu-Turbo Kong-Stuart Yung Sai-Kit-Chike Chan-Tenzin Clive Ball-Tenzin Gyurme-Jamie Cho-David Murray-John Kazek-Darragh Kelly-Patrick Nolan-Joseph Rye-Kwaku Ankomah-Timothy Deenihan-Lucy Russell-David Bedella-Flavia Masetto-Emily Steven-Daly-Martin McDougall-Noah Lee Margetts-Joe Hanley-Karl Shiels-Roger Griffiths-Stephen Walters-Richard Laing-Matt Miller-Alexandra Bastedo-Soo Hee Ding-Conn Horgan-Phill Curr-John Judd-Sarah Wateridge-Charlie Kranz-Terry McMahon-Cedric Young-Tom Nolan-Leon Delroy Williams-Roger Yuan-Joe Sargent-Mel Taylor-Ilyssa Fradin-Jeff Christian-John Burke-Alex Moggridge-Earlene Bentley-Jay Buozzi-Jordan Shaw-Omar Mostafa-Patrick Pond-Poppy Tierney-Rory Campbell-Fabio Cardascia-Mark Rhino Smith-Ruben Halse-Dominic Burgess-Nadia Cameron-Blakey-Mark Straker-T.J. Ramini-Kieran Hurley-Emmanuel Idowu-Jeff Tanner-Joey Ansah-Adam Kirley,martial arts-undercover-loss of loved one-secret identity-crime fighter-superhero-based on comic-rivalry-ninja-vigilante-tragic hero-super power-haunted by the past-evil doctor-master villain-unfulfilled love,/4MpN4kIEqUjW8OPtOQJXlTdHiJV.jpg,/lh5lbisD4oDbEKgUxoRaZU8HVrk.jpg,49026-155-1726-121-10138-557-120-27205-1771-603-122-1930-1891-11-22-558-49538-10528-10195-49521-98 +3981,What Women Want,Comedy-Romance,en,Advertising executive Nick Marshall is as cocky as they come but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion but after an accident enables him to hear women's thoughts he puts his newfound talent to work against Darcy his new boss who seems to be infatuated with him.,35.56,Paramount-Icon Productions,12/15/00,70000000,374111707,127,Released,He has the power to hear everything women are thinking. Finally... a man is listening.,6.4,3420,Mel Gibson-Helen Hunt-Marisa Tomei-Alan Alda-Ashley Johnson-Mark Feuerstein-Lauren Holly-Delta Burke-Valerie Perrine-Judy Greer-Sarah Paulson-Ana Gasteyer-Lisa Edelstein-Loretta Devine-Diana Maria Riva-Eric Balfour-Andrea Baker-Robin Pearson Rose-Christopher Emerson-Ashlee Turner-Sierra Pecheur-Joe Petcka-Brian Callaway-Coburn Goss-Christian Michel-Perry Cavitt-Crystal McKinney-Jeanne Marie Rice-Kathrin Middleton-Logan Lerman-Kelly Cooper-Palmer Davis-Katie Miller-Dana Waters-Gregory Cupoli-Alexondra Lee-Aviva Gale-Shirley Prestia-T.J. Thyne-Norman H. Smith-Audrey Wasilewski-Angela Oh-Robert Briscoe Evans-Chris Rolfes-Katie Kneeland-Jeanine O'Connell-Kelley Hazen-Brooke Elliott-Kristina Martin-Harmony Rousseau-Lisa Long-Heidi Helmer-Marla Martensen-Sally Meyers Kovler-Ashley Quirico-Regan Rohde-Liz Tannebaum-LeShay N. Tomlinson-Cristine Rose-Arden Myrin-Rachel Duncan-Alex McKenna-Regiane Gorski-Juliandra Gillen-Lisa Anne Hillman-Tracy Pacheco-Jamie Gutterman-Maggie Egan-Juanita Jennings-Hallie Meyers-Shyer-Kate Asner-Caryn Greenhut-Jennifer Greenhut-Marnie Mosiman-Nnenna Freelon-Gil Hacohen-Nancy Monsarat-Jacqueline Thomas-Rory Byrne-Victoria Garcia-Kelleher-Gertrude Wong-Andi Eystad-Greg Bronson-Kira Coplin-Kiva Dawson-David C. Fisher-Elizabeth Friedman-Melanie Good-Drew Howerton-Kimberly Lyon-Krista McRoberts-Bette Midler-Andy Schofield-Nancy Sinclair-Melinda Songer-Lauren Stewart-Tracey Stone-Dean Teaster-Gena Vazquez-Nancy Wetzel,telepathy-womanizer-single father-super power-teenage daughter-misogyny-advertising executive-woman director-female psyche,/n5NOxrcgeiCxvEn47FG9bvlHNsV.jpg,/xXHtSqFx8mLjzNGX9oCKQEx2yTa.jpg,17439-15402-18896-1597-693-390056-544-9489-15566-1493-9029-114-634-2024-9919-4806-8346-1824-4327-8488-1844 +862,Toy Story,Animation-Adventure-Family-Comedy,en,Led by Woody Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner the duo eventually learns to put aside their differences.,111.892,Pixar,10/30/95,30000000,373554033,81,Released,,7.966,16430,Tom Hanks-Tim Allen-Don Rickles-Jim Varney-Wallace Shawn-John Ratzenberger-Annie Potts-John Morris-Erik von Detten-Laurie Metcalf-R. Lee Ermey-Sarah Freeman-Penn Jillette-Jack Angel-Spencer Aste-Greg Berg-Lisa Bradley-Kendall Cunningham-Debi Derryberry-Cody Dorkin-Bill Farmer-Craig Good-Gregory Grudt-Danielle Judovits-Sam Lasseter-Brittany Levenbrown-Sherry Lynn-Scott McAfee-Mickie McGowan-Ryan O'Donohue-Jeff Pidgeon-Patrick Pinney-Phil Proctor-Jan Rabson-Joe Ranft-Andrew Stanton-Shane Sweet-Nathan Lane-John Lasseter-Ernie Sabella-Jonathan Benair-Anthony Burch,martial arts-jealousy-friendship-bullying-elementary school-friends-rivalry-rescue-mission-buddy-walkie talkie-toy car-boy next door-new toy-neighborhood-toy comes to life-resourcefulness,/uXDfjJbdP4ijW5hWSBrPrlKpxab.jpg,/lxD5ak7BOoinRNehOCA85CQ8ubr.jpg,863-10193-585-12-9806-2062-14160-920-808-10681-8587-425-9487-62211-49013-953-809-62177-812-10020-9502 +270946,Penguins of Madagascar,Family-Animation-Adventure-Comedy,en,Skipper Kowalski Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.,79.781,DreamWorks Animation,11/22/14,132000000,373552094,92,Released,The movie event that will blow their cover,6.514,3627,Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-John Malkovich-Benedict Cumberbatch-Ken Jeong-Annet Mahendru-Peter Stormare-Andy Richter-Danny Jacobs-Werner Herzog-Sean Charmatz-Billy Eichner-Stephen Kearin-Ava Acres-Kelly Cooney-Susan Fitzer-Chris Sanders-Emily Nordwind-Mike Mitchell-Hope Levy-Walt Dohrn-Jim Pirri-Elizabeth Pan-Jeff Fischer-Stephen Apostolina-Al Rodrigo-Steve Alterman-Carter Hastings-Cullen McCarthy-Nicholas Guest-Adriano Aragon-Lynnanne Zager-Angie Wu,spy-wolf-zoo-penguin-madagascar-cartoon-revenge-rescue-anthropomorphism-spin off-animal-talking animals,/dXbpNrPDZDMEbujFoOxmMNQVMHa.jpg,/msnknPOg9dx86b0YozXOFP8PgBI.jpg,80321-10527-82703-950-953-82702-228161-8355-172385-93456-177572-57800-278154-211672-15512-140300-181533-49444-9502-109451 +2080,X-Men Origins: Wolverine,Adventure-Action-Thriller-Science Fiction,en,After seeking to live a normal life Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.,6.254,20th Century Fox-The Donners' Company-Seed Productions,4/28/09,150000000,373062864,107,Released,Witness the origin.,6.3,9402,Hugh Jackman-Liev Schreiber-Danny Huston-Lynn Collins-Taylor Kitsch-Dominic Monaghan-Kevin Durand-Will.i.am-Daniel Henney-Ryan Reynolds-Tim Pocock-Julia Blake-Max Cullen-Troye Sivan-Michael-James Olsen-Peter O'Brien-Aaron Jeffery-Alice Parkinson-Philip A. Patterson-Anthony Gee-Adelaide Clemens-Karl Beattie-Tom O'Sullivan-Myles Pollard-Stephen Anderton-Chris Sadrinna-Septimus Caton-Matthew Dale-Nathin Butler-Peter Barry-David Ritchie-Asher Keddie-Socratis Otto-Stephen Leeder-James D. Dever-Martin Obuga-Rita Affua Connell-John Shrimpton-Henry Browne-Tahyna MacManus-Daniel Negreanu-Alexandra Davies-Don Battee-Evan Sturrock-Rob Flanagan-Hakeem Kae-Kazim-Alison Araya-Eric Breker-Eileen Bui-Adrian G. Griffiths-Byron Chief-Moon-Mike Dopud-Kanako Takegishi-Panou-Jade Tang-Joelle Tang-Johnson Phan-Elizabeth Thai-Warwick Young-Beatrice King-Scott Adkins-Dennis Kreusler-Patrick Stewart,corruption-mutant-boxer-army-prequel-superhero-based on comic-spin off-aftercreditsstinger-duringcreditsstinger,/yj8LbTju1p7CUJg7US2unSBk33s.jpg,/wvqdJLVh0mSblly7UnYFPEk04Wd.jpg,36668-36657-49538-36658-76170-127585-38356-1858-8373-558-10138-1979-246655-1771-10195-1724-9738-559-1930-13475-1726 +856289,Creation of the Gods I: Kingdom of Storms,Action-Fantasy-War,zh,Based on the most well-known classical fantasy novel of China Fengshenyanyi the trilogy is a magnificent eastern high fantasy epic that recreates the prolonged mythical wars between humans immortals and monsters which happened more than three thousand years ago.,37.092,Beijing Jingxi Culture and Tourism-Century Changshengtian Film-Tencent Penguin Pictures-Maoyan Entertainment-Huaxia Film Distribution-��__�__叫�__���__��_�����_�__�_��΃�Ώ�,7/20/23,85000000,372945000,148,Released,,7.3,115,Kris Phillips-Li Xuejian-Huang Bo-Yu Shi-Chen Muchi-NaranNarana Erdyneeva-Xia Yu-Yuan Quan-Chen Kun-Ci Sha-Wu Yafan-Hou Wenyuan-Tim Huang-Li Yunrui-Xu Huanshan-Gao Shuguang-William Feng-Wang Luoyong-Yang Lixin-Ding Yongdai-Gao Dongping-Yang Le-Xu Chong-Shan Jingyao-Wu Hankun-Bayalag-Willington Liu-Xu Xiang-Liu Han-Figo Tsui-Sun Rui-Geng Yeting-Jin Zhihao-Qu Yuchao-Huang Tao-Fan Wendong-Jiang Baocheng-Aren-Mi Tiezeng-Senggerenqin-Ma Wenzhong-Ning Wentong-Zhang Jingwei-Yang Tianhao-Li Zeyu-Xia Chenxu-Song Ningfeng-Yu Ying-Wu Chao-Yang Dapeng-Zhao Lei-Zhang Zhenxuan-Song Duyu-Wen Bo-Tumenbayaer-Mu Xiaobo-Chun Xiao-Qilemug-Zhang Xuehan-Bo Qian-Bayaertu-Ha Ha-Wang Feihu-Xiao Long-Han Pengyi-Yan Guanying-Hao Feng-Wang Qianglong-Wu Hsing-Guo-Nashi-Liu Chao-Zhang Yilong-Sun Huangchen-Alijang Kuerban,monster-based on novel or book-mythological beast-high fantasy-physical immortality-chinese mythology,/kUKEwAoWe4Uyt8sFmtp5S86rlBk.jpg,/2C3CdVzINUm5Cm1lrbT2uiRstwX.jpg,565770-802286-871975-1127631-313865-1088080-73475-980489-20299-1063239-950071-1026563-264859-37959-876797-217316-371709-762430-572522-542507-1073170 +2268,The Golden Compass,Adventure-Fantasy,en,After overhearing a shocking secret precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North unaware that it's part of her destiny.,27.779,Depth of Field-New Line Cinema-Scholastic Productions-Ingenious Media,12/4/07,180000000,372234864,113,Released,There are worlds beyond our own - the compass will show the way.,6,4111,Nicole Kidman-Daniel Craig-Dakota Blue Richards-Ben Walker-Freddie Highmore-Ian McKellen-Eva Green-Jim Carter-Tom Courtenay-Ian McShane-Sam Elliott-Christopher Lee-Kristin Scott Thomas-Edward de Souza-Kathy Bates-Simon McBurney-Jack Shepherd-Magda Szubanski-Derek Jacobi-Clare Higgins-Charlie Rowe-Steven Loton-Michael Antoniou-Mark Mottram-Paul Antony-Barber-Jason Watkins-Jody Halse-Hattie Morahan-John Bett-John Franklyn-Robbins-Jonathan Laury-Tommy Luther-James Rawlings-Joao de Sousa-Habib Nasib Nader-Theo Fraser Steele-Bill Hurst-Elliot Cowan-Sam Hoare-Thomas Arnold-David Garrick-Brian Nickels-Gary Kane-Alfred Harmsworth-Charles Evanson-Patrick Cleary-Tarek Khalil-Madrios Ohannessian-Sandra Wolfe-Hewson Osbourne-Albert Kenrick-John Cartier-Chris Abbott-Alexander Mercury-David Forman-Spencer Wilding-Caridad Angus,england-compass-experiment-polar bear-steampunk-airship-animal-alternative universe-based on young adult novel,/lyaS7S4emzEaYUcSnCvyqfJpOcA.jpg,/qifYc5jT4CZxmLH9DfOlipioSPp.jpg,2486-2454-10140-27022-411-8204-32657-2309-88751-2270-1265-9836-11774-10196-1735-1979-9992-18360-118-58595-1593 +17578,The Adventures of Tintin,Adventure-Animation-Mystery,en,Intrepid young reporter Tintin and his loyal dog Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy with the help of salty cantankerous Captain Haddock and bumbling detectives Thompson and Thomson travel half the world one step ahead of their enemies as Tintin endeavors to find the Unicorn a sunken ship that may hold a vast fortune but also an ancient curse.,33.283,Paramount-Columbia Pictures-WingNut Films-Amblin Entertainment-Nickelodeon Movies-Hemisphere Media Capital-The Kennedy/Marshall Company-DreamWorks Pictures,10/24/11,130000000,371940071,107,Released,"This year, discover how far adventure will take you.",6.9,4840,Jamie Bell-Daniel Craig-Andy Serkis-Nick Frost-Simon Pegg-Cary Elwes-Tony Curran-Toby Jones-Daniel Mays-Sebastian Roch��-Phillip Rhys-Mark Ivanir-Gad Elmaleh-Jacquie Barnbrook-Joe Starr-Enn Reitel-Mackenzie Crook-Sonje Fortag-Ron Bottitta-Nathan Meister-Kim Stengel,riddle-captain-treasure-morocco-liquor-treasure hunt-based on comic-sunken treasure-plot-reporter-1950s,/mKYkNro2btaWMsnYSuyqrBdHQo3.jpg,/5parN40mSwZMCP4Ig11lE6keeFi.jpg,46195-44826-44896-217-49444-58574-953-89-80321-13053-15512-38055-87-10191-10527-9502-57800-20526-10140-10528-81188 +72559,G.I. Joe: Retaliation,Science Fiction-Adventure-Action-Thriller,en,Framed for crimes against the country the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.,27.013,Paramount-Metro-Goldwyn-Mayer-Di Bonaventura Pictures-Hasbro-Saints LA-Skydance Media,3/27/13,130000000,371876278,110,Released,,5.6,5049,Dwayne Johnson-Bruce Willis-Jonathan Pryce-Adrianne Palicki-Ray Park-Ray Stevenson-�lodie Yung-Lee Byung-hun-D.J. Cotrona-Luke Bracey-Channing Tatum-Joseph Mazzello-RZA-Arnold Vosloo-Walton Goggins-Matt Gerald-Joe Chrest-DeRay Davis-Ravi Naidu-Terry Dale Parks-Grant Goodman-Naim Alherimi-Douglas M. Griffin-James Carville-Ryan Hansen-Joanna Leeds-Ilia Volok-Dikran Tulaine-Robert Catrini-Marcelo Tubert-James Lew-Ajay Mehta-Augustus Cho-Raja Deka-Tiffany Lonsdale-Chip Carriere-Jim Palmer-Arnold Chon-Dennis Keiffer-Amin Joseph-Edgar Leza-Aaron V. Williamson-Ricardo Vargas-Mikal Vega,assassin-technology-missile-warhead-president-rescue-conspiracy-explosion-battle-surveillance-cobra,/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg,/pEhXq18GVe1dg2ltplcxtGWfSje.jpg,14869-82992-47964-117263-76163-75612-81005-68721-60304-76170-64635-39514-68726-49521-37724-24428-56292-49051-119283-59967-44833 +534,Terminator Salvation,Action-Science Fiction-Thriller,en,All grown up in post-apocalyptic 2018 John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.,56.554,Columbia Pictures-The Halcyon Company-Wonderland Sound and Vision-Warner Bros. Pictures-Mandate International-Intermedia Films,5/20/09,200000000,371353001,117,Released,The End Begins.,6,5751,Christian Bale-Sam Worthington-Moon Bloodgood-Helena Bonham Carter-Anton Yelchin-Common-Zach McGowan-Bryce Dallas Howard-Jane Alexander-Michael Ironside-Ivan G'Vera-Dorian Nkono-Chris Browning-Beth Bailey-Victor J. Ho-Buster Reeves-Jadagrace-Kevin Wiggins-Greg Serano-Bruce McIntosh-Po Chan-Babak Tafti-Treva Etienne-Michael Papajohn-Dylan Kenin-Chris Ashworth-Diego Joaquin Lopez-Greg Plitt-Omar Paz Trujillo-Terry Crews-Isaac Kappy-Boots Southerland-David Midthunder-Rafael Herrera-Maria Bethke-Marc Maurin-Anjul Nigam-Emerson Brooks-Lorenzo Callender-David Douglas-Joe Basile-Esodie Geiger-Roland Kickinger-Brian Steele-Linda Hamilton-John Gibbs-Luke Kearney-Aaron Mastriani-Frank Powers-Mark Rayner,saving the world-artificial intelligence-prophecy-san francisco california-cyborg-killer robot-gas station-post-apocalyptic future-dystopia-army-firearm-wartime-los angeles california-terminator,/gw6JhlekZgtKUFlDTezq3j5JEPK.jpg,/5tKiuZvvV1lic7v65rdoGPmoOvf.jpg,296-218-280-87101-8373-1858-1571-45592-27578-2080-38356-20526-605-10764-604-64635-2048-36658-36668-44943-41154 +1771,Captain America: The First Avenger,Action-Adventure-Science Fiction,en,During World War II Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull ��� Adolf Hitler's ruthless head of weaponry and the leader of an organization that intends to use a mysterious device of untold powers for world domination.,50.265,Marvel Studios,7/22/11,140000000,370569774,124,Released,When patriots become heroes,6.994,20138,Chris Evans-Tommy Lee Jones-Hugo Weaving-Hayley Atwell-Sebastian Stan-Dominic Cooper-Toby Jones-Neal McDonough-Derek Luke-Bruno Ricci-JJ Feild-Kenneth Choi-Richard Armitage-Stanley Tucci-Samuel L. Jackson-Lex Shrapnel-Michael Brandon-Martin Sherman-Natalie Dormer-Oscar Pearce-William Hope-Nicholas Pinnock-Marek Oravec-David Bradley-Leander Deeny-Sam Hoare-Simon Kunz-Kieran O'Connor-Jenna Coleman-Sophie Colquhoun-Doug Cockle-Ben Batt-Mollie Fitzgerald-Damon Driver-David McKail-Amanda Walker-Richard Freeman-Katherine Press-Sergio Covino-Marcello Walton-Anatole Taubman-Jan Pohl-Erich Redman-Rosanna Hoult-Naomi Slights-Kirsty Mather-Laura Haddock-James Payton-Ronan Raftery-Nick Hendrix-Luke Allen-Gale-Jack Gordon-Ben Uttley-Patrick Monckeberg-Amanda Righetti-Stan Lee-Fabrizio Santino-Caroline Royce,new york city-world war ii-nazi-shield-superhero-based on comic-super soldier-heroism-period drama-brooklyn new york city-aftercreditsstinger-marvel cinematic universe (mcu)-origin story-soldiers-war,/vSNxAJTlD0r02V9sPYpOjqDZXUK.jpg,/4NWWpT0jiMUak8r6jfpvG4eBgFU.jpg,10138-10195-100402-1726-68721-24428-76338-1724-99861-271110-102899-1930-118340-49538-284052-283995-49026-2080-315635-272-284053 +137113,Edge of Tomorrow,Action-Science Fiction,en,Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.,46.847,RatPac Entertainment-Village Roadshow Pictures-VIZ Media-3 Arts Entertainment-Warner Bros. Pictures,5/27/14,178000000,370541256,114,Released,Live. Die. Repeat.,7.598,12326,Tom Cruise-Emily Blunt-Bill Paxton-Brendan Gleeson-Noah Taylor-Kick Gurry-Dragomir Mrsic-Charlotte Riley-Jonas Armstrong-Franz Drameh-Masayoshi Haneda-Tony Way-Terence Maynard-Lara Pulver-Madeleine Mantock-Assly Zandry-Sebastian Blunt-Beth Goddard-Ronan Summers-Aaron Romano-Usman Akram-Bentley Kalu-Mairead McKinley-Andrew Neil-Martin Hyder-Tommy Campbell-John Dutton-Harry Landis-Rachel Handshaw-Martin McDougall-Anna Botting-Jane Hill-Erin Burnett-Dany Cushmaro-David Kaye-Jackson-Johnny Otto,deja vu-based on novel or book-restart-dystopia-training-thriller-alien-time loop-military officer-soldier-based on manga-alien invasion-war hero-exoskeleton-soldiers-war,/xjw5trHV7Mwo61P0kCTy8paEkgO.jpg,/4V1yIoAKPMRQwGBaSses8Bp2nsi.jpg,127585-119450-100402-75612-124905-91314-240832-68724-68726-118340-49047-207703-57158-102382-49521-148107-286217-72190-76338-198663-157350 +544,There's Something About Mary,Romance-Comedy,en,For Ted prom night went about as bad as it��s possible for any night to go. Thirteen years later he finally gets another chance with his old prom date only to run up against other suitors including the sleazy detective he hired to find her.,28.541,20th Century Fox,7/15/98,23000000,369884651,119,Released,Love Is In The Hair.,6.579,4398,Cameron Diaz-Ben Stiller-Matt Dillon-Lee Evans-Chris Elliott-Lin Shaye-Jeffrey Tambor-Markie Post-Keith David-W. Earl Brown-Sarah Silverman-Khandi Alexander-Marnie Alexenburg-Danny Murphy-Richard Tyson-Rob Moran-Jackie Flynn-Hillary Matthews-Willie Garson-David Shackelford-David Goryl-Lori Brener-Jeffrey P. Lerner-Cory Pendergast-Brett Favre-Warren Tashjian-Kelly Roarke-Herbie Flynn-Caryl Lippman West-Ken Rogerson-Brad Blank-Steve Sweeney-Cindy Oliver-Will Coogan-Steve Tyler-Maureen Griffin-Mariann Farrelly-Jonathan Richman-Tommy Larkins-Lenny Clarke-Daniel Greene-Michael Budge-James Gifford-Sean Gildea-Zen Gesner-Tracy Anne George-Jesse Farrelly-A.B. Cassidy-Zack Lee-Valerie Bruce-Kelly O'Brien-Mike Charpentier-Peter Grundy-Michael 'The Cannon' Gannon-Peter Conway-Ann Conway-Susan O'Day-Heather Rosbeck-Jack Shields-Fallon Shields-Bob Grundy-Nancy Farrelly-Bill Beauchene-Kathy Beauchene-Manny Barrows-Max Murphy-Sheila Mone-Barbara O'Connor-Tim Sheehan-Richie Balsbaugh-Jim Blake-Tim Robbie-Providence Wissel-Ruth Michelle Meyer-Billy Meyer-Brian McGlaughlin-Brian Mone-John Stroehman-Pete Anicelli-Duana Knight-Kelley Schneider-Meda Thomas-Jeanie Flynn-Kevin Civale-Tom Leasca-Mercy Lopez-Michael Cheney-Scott Rosenberg-George Bedard-Terry Mullany-Rick Coleman-Michael Burke-Kris Meyer-Emilio Diaz-Billy Smith-Ed Nelson-Brian Stuebe-Don Daley-Clem Franek-Julia Hissom-James 'Sporty' Ahern-Robin Gau-Paul Pelletier-Monique Pelletier-Jon Mone-Nicholas Greenbury-Andrew Greenbury-Phil Rosenberg-John-Eliot Jordan-John Adamonis-Kyle Adamonis-Neil Pomfret-Ruth Pomfret-Josh Miller-Richard Fitzpatrick-Deborah Smith Ford-James Gaiero-Paul Homza-Debbie Howard-Richard Jenkins-Don Julio-Rick Michaels-Cord Newman-Al Quinn-Jevon White-Harland Williams,surgeon-stalker-romantic comedy-dream girl-taboo-screwball comedy-frisbee-troubadour-intellectual disability,/g03pwohXHOI75InM3zraiaEGguO.jpg,/egJQ3nIon5fT8wyXcKRHzvmtZpD.jpg,8467-1597-8872-6957-8699-693-496-55721-12133-11381-9522-37136-137-9472-1824-854-9767-2675-3981-813-9390 +210577,Gone Girl,Mystery-Thriller-Drama,en,With his wife's disappearance having become the focus of an intense media circus a man sees the spotlight turned on him when it's suspected that he may not be innocent.,62.884,Regency Enterprises-New Regency Pictures-Pacific Standard-TSG Entertainment-Artemple - Hollywood-20th Century Fox,10/1/14,61000000,369330363,149,Released,You don't know what you've got 'til it's...,7.892,17106,Ben Affleck-Rosamund Pike-Neil Patrick Harris-Tyler Perry-Carrie Coon-Kim Dickens-Patrick Fugit-Lisa Banes-David Clennon-Boyd Holbrook-Lola Kirke-Casey Wilson-Missi Pyle-Emily Ratajkowski-Scoot McNairy-Sela Ward-Lee Norris-Jamie McShane-Leonard Kelly-Young-Kathleen Rose Perkins-Pete Housman-Lynn Adrianna-Cyd Strittmatter-Ricky Wood-Donna Rusch-Mark Atteberry-Darin Cooper-Kate Campbell-Brett Leigh-Antonio St. James-Lauren Glazier-Julia Prud'homme-Cooper Thornton-Casey Ruggieri-Ashley Didion-Lexis Nutt-L.A. Williams-Blake Sheldon-Sean Guse-Fred Cross-Scott Takeda-Mark T Anderson-Kathy Sweeney-Meadows-Marc Abbink-Christina Alex-Samuel Baca-Bill Blair-Thomas R. Baker-Gregoer Boru-Will C.-Caroline Clements-Nancy DeMars-Davina Joy-Michael James Kelly-Elester Latham-Aaron Massey-Orion McCabe-Roz McHenry-Bryan McKinley-Teebone Mitchell-Justin Nesbitt-Mark Parrish-Jaclyn Rose-Sahlima-Joel Shock-Robert Tarpinian-Tracy Weisert-Michelle Winters-Tracy Brotherton-Matilde Matteucci-Dale Shane-Jamie Eddy-Joey Courteau,based on novel or book-infidelity-wife-investigation-marriage crisis-disappearance-psychological thriller-whodunit-missing person-search party-criminal lawyer-murder suspect-missing wife,/qymaJhucquUwjpb8oiqynMeXnID.jpg,/h2JaQWLKhapm7AuSViJwGiv8ngC.jpg,11324-242582-807-146233-205596-106646-157336-194662-244786-550-1124-152601-49047-27205-77-16869-286217-37799-120467-44214-419430 +5503,The Fugitive,Action-Thriller-Drama,en,Wrongfully convicted of murdering his wife and sentenced to death Richard Kimble escapes from the law in an attempt to find the real killer and clear his name.,35.63,Warner Bros. Pictures,8/6/93,44000000,368875760,131,Released,A murdered wife. A one-armed man. An obsessed detective. The chase begins.,7.462,3911,Harrison Ford-Tommy Lee Jones-Joe Pantoliano-Jeroen Krabb��-Daniel Roebuck-L. Scott Caldwell-Tom Wood-Ron Dean-Joseph F. Kosala-Andreas Katsulas-Sela Ward-Julianne Moore-Miguel Nino-John Drummond-Tony Fosco-Joseph F. Fisher-James Liautaud-David Darlow-Tom Galouzis-James F. McKinsey-Mark D. Espinoza-John E. Ellis-Gene Barge-Thomas Charles Simmons-Joe Guzaldo-Dick Cusack-Nicholas Kusenko-Joan Kohn-Joe Guastaferro-Andy Romano-Richard Riehle-Thom Vernon-Ken Moreno-Eddie Bo Smith Jr.-Frank Ray Perilli-Otis Wilson-Pancho Demmings-Jim Wilkey-Danny Goldring-Nick Searcy-Kevin Crowley-Michael James-Michael Skewes-Ila Cathleen Stallings-Linda Casaletto-Cody Glenn-Cynthia Baker-Johnny Lee Davenport-Mike Bacarella-Bill Cusack-David U. Hodges-Lillie Richardson-Peter J. Caria IV-Tighe Barry-Monika Chabrowski-Lonnie Sima-Oksana Fedunyszyn-Orlando Garc�_a-Afram Bill Williams-Bruce L. Gewertz-Jane Lynch-Joseph Rotkvich-Steven Lilovich-Noelle Bou-Sliman-Roxanne Roberts-Alex P. Hernandez-Theron Touch�� Lykes-Joel Robinson-Greg Hollimon-Cheryl Lynn Bruce-Marie Ware-Bernard McGee-Ann Whitney-Lily Monkus-Willie Lucas-Turk Muller-Ana Mar�_a Alvarez-Eugene F. Crededio-Maurice Person-Terry Hard-Pam Zekman-David Pasquesi-Brent Shaphren-Stephen A. Landsman-B.J. Jones-Dru Anne Carlson-Margaret Moore-Manny Lopez-John M. Watson Sr.-Kirsten Nelson-Juan Ram�_rez-Neil Flynn-Allen Hamilton-Eric Fudala-Lester Holt-Jay Levine-Sal Richards-Darren W. Conrad-Kevin Mukherji-John-Clay Scott-Suzy Brack-Gene Kelly,chicago illinois-escape-chase-doomed man-surgeon-death sentence-u.s. marshal-flashback-remake-betrayal-fugitive-on the run-conspiracy-police corruption-doctor-home invasion-disguise-one armed man-framed for murder-action hero-manhunt,/b3rEtLKyOnF89mcK75GXDXdmOEf.jpg,/hxtjTfIZdNGBLjuqPoUKDYzxg83.jpg,9772-11808-9802-9869-1669-881-1637-9331-9798-941-1701-87-89-754-9386-861-36955-85-943-1572-664 +228161,Home,Fantasy-Comedy-Animation-Science Fiction-Family,en,When Earth is taken over by the overly-confident Boov an alien race in search of a new place to call home all humans are promptly relocated while all Boov get busy reorganizing the planet. But when one resourceful girl Tip manages to avoid capture she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there��s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.,39.146,DreamWorks Animation,3/18/15,135000000,368871007,94,Released,Worlds Collide,6.781,3531,Jim Parsons-Rihanna-Steve Martin-Jennifer Lopez-Matt Jones-Brian Stepanek-April Lawrence-Lisa Stewart-Stephen Kearin-April Winchell,spacecraft-space-alien-alien invasion-alien friendship-awful leader-taking resposibility,/ln7DqfqyKosTw1xoa92Q7FRT3Jh.jpg,/jqVFrhFLqrOn72TImJuIzYWKByv.jpg,82703-270946-82702-177572-172385-159824-15512-105864-297270-170687-211672-150540-109451-175112-950-49519-136799-76492-228165-10009 +331,Jurassic Park III,Adventure-Action-Thriller-Science Fiction,en,In need of funds for research Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.,2.505,Universal Pictures-Amblin Entertainment,7/18/01,93000000,368780809,92,Released,"This time, it's not just a walk in the park!",6.131,6744,Sam Neill-William H. Macy-T��a Leoni-Alessandro Nivola-Trevor Morgan-Michael Jeter-John Diehl-Bruce A. Young-Laura Dern-Taylor Nichols-Mark Harelik-Julio Oscar Mechoso-Blake Michael Bryan-Sarah Danielle Madison-Linda Park-Sonia Jackson-Bruce French-Bernard Zilinskas-Rona Benson-Frank Clem-Craig Hosking-Rick Shuster-Sean Coffey-Karin M. Gaarder-Edward C. Gillow-Craig Richards-Brad Everett Young,rescue-mission-exotic island-island-airplane-velociraptor-dna-tyrannosaurus rex-paleontology-spinosaurus-dinosaur-creature-scientist-amusement park-paragliding-pterodactyl-pterosaur-costa rica-animal horror,/oQXj4NUfS3r3gHXtDOzcJgj1lLc.jpg,/oenFbrSPvTWzgmvlUikBhHtEVpg.jpg,330-329-135397-351286-933908-1734-217-564-608-8373-1858-36657-9738-36658-1979-1894-36668-38356-87-254-89 +8346,My Big Fat Greek Wedding,Comedy-Drama-Romance,en,A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.,12.501,Ontario Film Development Corporation-Gold Circle Films-HBO-MPH Entertainment Productions-Playtone,2/22/02,5000000,368744044,95,Released,Love is here to stay... so is her family.,6.5,1874,Nia Vardalos-John Corbett-Lainie Kazan-Michael Constantine-Andrea Martin-Joey Fatone-Louis Mandylor-Gia Carides-Christina Eleusiniotis-Marita Zouravlioff-Gerry Mendicino-Bess Meisler-Jayne Eastwood-Fiona Reid-Bruce Gray-Frank Falcone-Stavroula Logothettis-Ian Gomez-Petra Wildgoose-John Kalangis-Kaylee Vieira-Melissa Todd-Sarah Osman,parent child relationship-greece-culture clash-midlife crisis-restaurant-bad mother-in-law-mother-in-law-parents-in-law-son-in-law-father-in-law-patriarch-bad father-in-law-greek-wedding-family-xenophobia,/wSH8ZNE8sMbvJwetK5DC87bhqd2.jpg,/hMEzWWCxsqWLDgrbUaU0orEmcZt.jpg,302688-858-3981-17403-20825-23049-9489-9801-1493-4806-9919-2280-11232-245-8874-11287-634-1597-9889-9820-2005 +335977,Indiana Jones and the Dial of Destiny,Adventure-Action-Fantasy,en,Finding himself in a new era and approaching retirement Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.,237.98,Lucasfilm Ltd.,6/28/23,294700000,368407504,155,Released,A legend will face his destiny.,6.606,917,Harrison Ford-Phoebe Waller-Bridge-Mads Mikkelsen-Boyd Holbrook-Olivier Richters-Ethann Isidore-Toby Jones-Antonio Banderas-Karen Allen-John Rhys-Davies-Shaunette Ren��e Wilson-Thomas Kretschmann-Martin McDougall-Alaa Safi-Francis Chapman-Alfonso Rosario Mandia-Chase Brown-Nasser Memarzia-Amedeo Bianchimano-Anna Francolini-Gabby Wong-Adolfo Margiotta-Niccolo Cancellieri-Antonio Iorio-Manuel Klein-Holly Lawton-Guy Paul-Harriet Slater-Alton Fitzgerald White-Ian Porter-Daniel Anderson-Cory Peterson-Charles Hagerty-Ali Saleh-Amara Khan-Jill Winternitz-Billy Postlethwaite-Clara Greco-Joe Gallina-Nicholas Bendall-Thulani Storm-Edoardo Strano-Angelo Spagnoletti-Hicham Ouaraqa-Adil Louchgui-David Mills-Rhyanna Alexander-Davis-Gary Fannin-Gunnar Cauthery-Aron von Andrian-Nikola Trifunovic-Henry Garrett-Elena Saurel-Mike Massa-Anthony Ingruber-Christian Sacha Mehja-Stokes-Angus Yellowlees-Matthew Staite-Corrado Invernizzi-Joerg Stadler-Thorston Manderlay-Basil Eidenbenz-Johann Heske-Joshua Broadstone-Bruce Lester-Johnson-Martin Sherman-Allon Sylvain-William Meredith-Kate Doherty-Duran Fulton Brown-Eliza Mae Kyffin-Mauro Cardinali-Mark Killeen-Bharat Doshi-A��ssam Bouali-Douglas Robson-Mohammed R. Kamel-Bryony Miller-Tiwa Lade-Brodie Husband-Hannah Onslow,ancient rome-treasure hunt-sequel-flashback-knife fight-archaeologist-adventurer-1960s-nazi germany,/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg,/35z8hWuzfFUZQaYog8E9LsXW3iI.jpg,575264-437894-432342-432373-747188-976573-298618-432615-8052-614479-884605-346698-16084-28985-1076366-432347-977013-111637-667538-872585-697843 +337167,Fifty Shades Freed,Drama-Romance,en,Believing they have left behind shadowy figures from their past newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs. Grey and he relaxes into an unfamiliar stability new threats could jeopardize their happy ending before it even begins.,188.422,Universal Pictures-Perfect World Pictures,1/17/18,55000000,368307760,105,Released,Don't Miss the Climax,6.699,7194,Dakota Johnson-Jamie Dornan-Eric Johnson-Luke Grimes-Rita Ora-Eloise Mumford-Victor Rasuk-Marcia Gay Harden-Andrew Airlie-Max Martini-Brant Daugherty-Arielle Kebbel-Fay Masterson-Dylan Neal-Kim Basinger-Gary Hudson-Jennifer Ehle-Callum Keith Rennie-Tyler Hoechlin-Ashleigh LaThrop-Amy Price-Francis-Robinne Lee-Kirsten Alter-Hiro Kanagawa-Jaclyn Jonet-Guillaume Campanacci-Ben Corns-Michelle Harrison-Laura Jacobs-John Emmet Tracy-Brad Harder-Adil Zaidi-Nathan Dellemme-Jordan Gardiner-Tenz McCall-Catherine Lough Haggquist-Benita Ha-P. Lynn Johnson-Kwesi Ameyaw-Marci T. House-Fraser Aitcheson,based on novel or book-eroticism-sequel-bdsm,/9ZedQHPQVveaIYmDSTazhT3y273.jpg,/9ywA15OAiwjSTvg3cBs9B7kOCBF.jpg,341174-216015-164431-925130-454983-8966-336843-24021-18239-50620-50619-537915-222935-419478-466282-351819-296096-417678-462919-449176-321612 +8488,Hitch,Comedy-Drama-Romance,en,Dating coach Alex 'Hitch' Hitchens mentors a bumbling client Albert who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert ��� now Allegra's boyfriend ��� it threatens to destroy both relationships.,24.876,Columbia Pictures-Sony Pictures-Overbrook Entertainment,2/11/05,70000000,368100420,118,Released,The cure for the common man.,6.5,5124,Will Smith-Eva Mendes-Kevin James-Amber Valletta-Julie Ann Emery-Adam Arkin-Robinne Lee-Nathan Lee Graham-Michael Rapaport-Jeffrey Donovan-Paula Patton-Philip Bosco-Kevin Sussman-Navia Nguyen-Matt Malloy-Maria Christina Thayer-Ato Essandoh-Marlyne Barrett-Jack Hartnett-David Wike-Frederick B. Owens-Jenna Stern-Austin Lysy-Adam LeFevre-Joe Lo Truglio-Ryan Cross-Beau Sia-Fran Kranz-Amy Hohn-Mimi Weddell-Caprice Benedetti-Rain Phoenix-Anya Avaeva-Brielle Barbusca-Kimberly Cash-Valbona Coba-Michelle Deighton-Michelle DiBenedetti-Alexa Lane-Christina Lauren-Rebecca Mader-Amy Metroka-Maria Nomi-Jennifer Pedersen-Keri Uribe-Olivia Weston-Dianne Zaremba-Joanna Lu-Mercedes Renard-Tony Travis-Ptolemy Slocum,speed date-romantic comedy-dating,/x3W9H3nhGQbWSlyI8Amp2F6Z6cz.jpg,/a6tIX4fGgp60w2d9pqYRbFM91ne.jpg,8960-1402-9339-1824-11321-1597-8961-2048-9737-787-9522-693-310-6479-10201-8487-4964-3563-608-9029-10555 +10555,Shark Tale,Animation-Action-Comedy-Family,en,Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast the two form an unlikely friendship.,47.205,DreamWorks Animation-DreamWorks Pictures,9/20/04,75000000,367275019,90,Released,Behind every little fish is a great white lie.,6,5713,Will Smith-Robert De Niro-Ren��e Zellweger-Jack Black-Angelina Jolie-Ziggy Marley-Martin Scorsese-David P. Smith-Doug E. Doug-Michael Imperioli-Vincent Pastore-Peter Falk-Katie Couric-Frank Vincent-Missy Elliott-Christina Aguilera-Phil LaMarr-Shelley Morrison-David Soren-Bobb'e J. Thompson-Kamali Minter-Emily Lyon Segan-Lenny Venito-Saverio Guerra-Mark Swift-James Madio-Frank Vincent-Joseph Siravo-Steve Alterman-Jenifer Lewis-Sean Bishop-James Ryan-Latifa Ouaou-David Yanover,fish-hero-mission of murder-threat of death-secret love-shark-woman director,/r08DpyPyhXcJTfNZAICNGMzcQ8l.jpg,/7ZmZxar3bYORcl0TPA4oceyxcaE.jpg,5559-810-7518-9836-10527-953-9982-809-9928-950-10192-11619-37135-7443-9502-8916-15512-8355-7484-13053-8920 +1572,Die Hard: With a Vengeance,Action-Thriller,en,"New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all until a genius named Simon engages McClane his new ""partner"" -- and his beloved city -- in a deadly game that demands their concentration.",47.557,20th Century Fox-Cinergi Pictures Entertainment,5/19/95,90000000,366101666,128,Released,Think fast. Look alive. Die hard.,7.242,5344,Bruce Willis-Jeremy Irons-Samuel L. Jackson-Graham Greene-Colleen Camp-Larry Bryggman-Anthony Peck-Nicholas Wyman-Sam Phillips-Kevin Chamberlin-Sharon Washington-Stephen Pearlman-Michael Alexander Jackson-Aldis Hodge-Mischa Hausserman-Edwin Hodge-Robert Sedgwick-Tony Halme-Bill Christ-Anthony Thomas-Glenn Herman-Kent Faulcon-Akili Prince-Ardie Fuqua-Mike Jefferson-Andre Ware-Michael Lee Merrins-Birdie M. Hale-Daryl Edwards-Barbara Hipkiss-Aasif Mandvi-Bill Kux-Scott Nicholson-Ralph Buckley-Charles Dumas-Michael Cristofer-Phyllis Yvonne Stickney-J.R. Horne-Michael Tadross-Elvis Duran-John McTiernan Sr.-Greg A. Skoric-Sven Toorvald-T. Alloy Langenfeld-Timothy Adams-John C. Vennema-Gerrit Vooren-Willis Sparks-Tony Travis-Danny Dutton-James Saito-Patrick Borriello-V�_ctor Rojas-Jeffrey Dreisbach-Joe Zaloom-John Doman-Patricia Mauceri-Franchelle Stewart Dorn-Kharisma-Gerry Becker-Richard Council-John Robert Tillotson-Ray Aranha-Phil Theis-Flip-Dory Binyon-David Vitt-John Glenn Hoyt-Bray Poor-Shari-Lyn Safir-Ivan Skoric-Faisal Hassan-Richard Russell Ramos-Angela Amato Velez-Richard V. Allen-Shirley J. Hatcher-David P. Martin-James Patrick Whalen Sr.-Paul Simon-Carl Brewer-Vernon Campbell-Ali A. Wahhab-David Sontag-Ralph A. Villani-Carlo Giuliano-Jeannie Epper-Keith Schwabinger-Michael Luggio-Drew Nelson,new york city-bomb-taxi-riddle-robbery-detective-helicopter-gold-fbi-fistfight-police-sequel-revenge-deception-flashback-shootout-explosion-cargo ship-simon says-dump truck-aqueduct-bomb threat-action hero-federal reserve bank-nyc subway,/lwTE6cUhGxRaJvQ5VPdletIGDPh.jpg,/qk0A79253qOG8bStPIEN7VEXSij.jpg,1573-1571-562-514759-47964-27578-87-954-89-941-280-2501-296-95-85-39514-36557-955-2503-604-10764 +287947,Shazam!,Action-Comedy-Fantasy,en,A boy is given the ability to become an adult superhero in times of need with a single magic word.,99.043,New Line Cinema-The Safran Company-Seven Bucks Productions-DC Films-Warner Bros. Pictures,3/29/19,80000000,366080049,132,Released,Just say the word.,7.04,8575,Zachary Levi-Mark Strong-Asher Angel-Jack Dylan Grazer-Adam Brody-Djimon Hounsou-Faithe Herman-Meagan Good-Grace Caroline Currey-Michelle Borth-Ian Chen-Ross Butler-Jovan Armand-D.J. Cotrona-Marta Milans-Cooper Andrews-Ethan Pugiotto-John Glover-Landon Doak-Wayne Ward-Paul Braunstein-Nadine Roden-David Kohlsmith-Caroline Palmer-Emily Nixon-Michael Xavier-Keisha T. Fraser-Andi Osho-Lotta Losten-Lisa Truong-Carson MacCormac-Evan Marsh-Joseph Pierre-Jhaleil Swaby-Misha Rasaiah-Luke Gallo-Lovina Yavari-Craig Henry-Shawn Stewart-Kerri Kamara-Adam Rodness-Cliff Saunders-Simon Northwood-Ken Mohabir-Paloma Nu��ez-Ilan O'Driscoll-Bryce Arden Poe-Tosh Robertson-Rachel Boyd-Jeff Sanca-Dan Skene-Angelica Lisk-Hann-Cassandra Ebner-John Stead-Allen Keng-Mitra Suri-Stephannie Hawkins-Eli Martyr-Seth Green-David Choi-Nneka Elliott-Aria Anthony-Brian Kaulback-Chemika Bennett-Heath-Deborah Tennant-Martin Roach-Allison Brennan-Damir Andrei-Steve Newburn-Neil Morrill-Stephen Alexander-Pearl Sun-Anthony Gritsyuk-Jesse Bond-Harper Gunn-Matthew Binkley-Violetta Pioro-Jackson Reid-Hazel Gorin-Steve Blum-Darin De Paul-Fred Tatasciore-Callie Presniak-Craig Warnock-Pamela Matthews-Ava Preston-Manuel Rodriguez-Saenz-Ali Badshah-Tabitha Tao-Lisa Codrington-David F. Sandberg-Ryan Handley-Bill R. Dean,philadelphia pennsylvania-secret identity-magic-superhero-based on comic-wizard-superhuman strength-aftercreditsstinger-duringcreditsstinger-christmas-dc extended universe (dceu)-flossing,/xnopI5Xtky18MPhK40cZAGAOVeV.jpg,/OIGX2lm5tmlCKvZUghtwHzoxxO.jpg,299537-297802-299534-429617-447404-399579-324857-320288-363088-707610-335983-458156-456740-299536-424783-329996-384018-141052-373571-383498-420817 +439079,The Nun,Horror-Mystery-Thriller,en,A priest with a haunted past and a novice on the threshold of her final vows are sent by the Vatican to investigate the death of a young nun in Romania and confront a malevolent force in the form of a demonic nun.,156.28,New Line Cinema-Atomic Monster-The Safran Company,9/5/18,22000000,365582797,96,Released,Pray For Forgiveness,5.9,6204,Taissa Farmiga-Demi��n Bichir-Bonnie Aarons-Jonas Bloquet-Ingrid Bisu-Patrick Wilson-Vera Farmiga-Lili Taylor-Charlotte Hope-Sandra Teles-Maria Obretin-August Maturo-Jack Falk-Lynnette Gaza-Ani Sava-Michael Smiley-Gabrielle Downey-David Horovitch-Tudor Munteanu-Lili Bord��n-Scarlett Hicks-Izzie Coffey-Jared Morgan-Laur Dragan-Eugeniu Cozma-Manuela Ciucur-Beatrice P��ter-Ana Udroiu-Andreea Sovan-Dana Voicu-Andreea Moldovianu-Beatrice Rubica-Claudia Susanu-Boiangiu Alma-Gabriela Irina Dinca-Dee Bradley Baker-Debra Wilson-Mark Steger-Lidiya Korotko-Emma Appleton-Jonny Coyne-Natalie Creek-Flynn Hayward-Daniel Mandehr-Samson Marraccino-Jamie Muscato-Lourdes Nadres-Simon Rhee-Sandra Rosko-HayRae Rummel-Claudio Lee Smith,rome italy-nun-exorcism-father-supernatural-priest-spirit-demon-spin off-evil nun-demonic possession-romania-murder mystery-ancient evil-the conjuring universe,/sFC1ElvoKGdHJIWRpNB3xWJ9lJA.jpg,/fgsHxz21B27hOOqQBiw9L6yWcM7.jpg,396422-259693-138843-521029-250546-480414-17439-823991-406563-423108-424139-439015-15402-474350-460019-345940-91586-493922-442249-346910-447332 +509,Notting Hill,Romance-Comedy-Drama,en,William Thacker is a London bookstore owner whose humdrum existence is thrown into romantic turmoil when famous American actress Anna Scott appears in his shop. A chance encounter over spilled orange juice leads to a kiss that blossoms into a full-blown affair. As the average bloke and glamorous movie star draw closer and closer together they struggle to reconcile their radically different lifestyles in the name of love.,26.347,Notting Hill Pictures-Bookshop Productions-PolyGram Filmed Entertainment-Working Title Films-Universal Pictures,5/21/99,42000000,363889678,124,Released,Can the most famous film star in the world fall for the man on the street?,7.261,5323,Julia Roberts-Hugh Grant-Gina McKee-Tim McInnerny-Rhys Ifans-Emma Chambers-Hugh Bonneville-Richard McCabe-James Dreyfus-Dylan Moran-Roger Frost-Henry Goodman-Julian Rhind-Tutt-Lorelei King-John Shrapnel-Emily Mortimer-Dorian Lough-Sanjeev Bhaskar-Paul Chahidi-Matthew Whittle-Mischa Barton-Clarke Peters-Ann Beach-Samuel West-Tony Armatrading-Andy de la Tour-Rupert Procter-Maureen Hibbert-David Sternberg-Arturo Venegas-Phillip Manikum-Patrick Barlow-Yolanda Vazquez-Melissa Wilson-Emma Bernard-September Buckley-Dennis Matsuki-Alec Baldwin-Simon Callow-Omid Djalili-Matthew Modine-Taylor Murphy,london england-england-bookshop-movie business-roommate-birthday-new love-paparazzi-press conference-wheelchair-bath tub-cohabitant-interview-friendship-fame-falling in love-celebration-group of friends-movie star-dinner party-famous actor,/fQqfLeD7h4nCXK0N5HEa4dAExk1.jpg,/egyi9TQjLhNEQuEsK1dXovdHOHL.jpg,114-634-4806-8874-712-508-462-9801-594084-245-350-9441-1581-11631-11820-11172-88-788-1934-2642-4348 +9487,A Bug's Life,Adventure-Animation-Comedy-Family,en,"On behalf of ""oppressed bugs everywhere"" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.",74.571,Pixar-Walt Disney Pictures,11/25/98,120000000,363258859,95,Released,An epic presentation of miniature proportions.,6.967,8283,Dave Foley-Kevin Spacey-Julia Louis-Dreyfus-Hayden Panettiere-Phyllis Diller-Richard Kind-David Hyde Pierce-Joe Ranft-Denis Leary-Jonathan Harris-Madeline Kahn-Bonnie Hunt-Michael McShane-John Ratzenberger-Brad Garrett-Roddy McDowall-Edie McClurg-Alex Rocco-David Ossman-Carlos Alazraqui-Jack Angel-Bob Bergen-Kimberly J. Brown-Rodger Bumpass-Anthony Burch-Jennifer Darling-Rachel Davey-Debi Derryberry-Paul Eiding-Jessica Evans-Bill Farmer-Sam Gifaldi-Brad Hall-Jess Harnell-Brenden Hickey-Kate Charlotte Hodges-Denise Johnson-David L. Lander-John Lasseter-Sherry Lynn-Mickie McGowan-Courtland Mead-Christina Milian-Kelsey Mulrooney-Ryan O'Donohue-Jeff Pidgeon-Phil Proctor-Jan Rabson-Jordan Ranft-Brian M. Rosen-Rebecca Schneider-Francesca Marie Smith-Andrew Stanton-Hannah Swanson-Russi Taylor-Travis Tedford-Ashley Tisdale-Lee Unkrich-Jordan Warkol-Pat Fry-Kath Soucie,winter-fight-ant-invention-collector-ant-hill-grass-duringcreditsstinger,/Ah3J9OJVc2CNCuH2zMydXy9fmIC.jpg,/hwwFyowfcbLRVmRBOkvnABBNIOs.jpg,863-920-12-862-2062-585-9806-10193-62211-49013-856245-14160-62177-950-37135-812-9325-897192-12092-10681 +181533,Night at the Museum: Secret of the Tomb,Adventure-Comedy-Fantasy-Family,en,When the magic powers of The Tablet of Ahkmenrah begin to die out Larry Daley spans the globe uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.,43.941,Moving Picture Company-21 Laps Entertainment-1492 Pictures-TSG Entertainment,12/17/14,127000000,363204635,98,Released,One Final Night to Save the Day.,6.2,5291,Ben Stiller-Robin Williams-Owen Wilson-Steve Coogan-Ricky Gervais-Dan Stevens-Rebel Wilson-Skyler Gisondo-Rami Malek-Patrick Gallagher-Mizuo Peck-Ben Kingsley-Dick Van Dyke-Mickey Rooney-Bill Cobbs-Andrea Martin-Rachael Harris-Matt Frewer-Brad Garrett-Regina Taufen-Percy Hynes White-Brennan Elliott-Kerry van der Griend-Matthew Harrison-Jody Racicot-Randy Lee-Darryl Quon-Paul Chih-Ping Cheng-Gerald Wong-Anjali Jay-Matty Finochio-Patrick Sabongui-Amir M. Korangy-Louriza Tronco-Sophie Levy-Jin Sangha-James Neate-Alice Eve-Hugh Jackman-Kishore Bhatt-Dmitrious Bistrevsky-Hannah Blamires-Jill Buchanan-Arpit Chaudhary-Michael Denis-Theo Devaney-John Dryden-Jordan Gardiner-Ian Hawes-Nils Hognestad-Tony Honickberg-Todor Jordanov-Zivile Kaminskaite-Shaun Lucas-Sid Man-Craig March-Stuart Matthews-Martyn Mayger-Doris McCarthy-Pete Meads-Leah Perkins-Jacqueline Ryan-Andrea Sandell-Steve Saunders-Bomber Hurley-Smith-Celeste White Steele-Ella Olivia Stiller-Quinn Dempsey Stiller-Winson Ting-Stefano Villabona-Seth Whittaker-Buppha Witt-Brian Woodward-Crystal the Monkey,night watchman-museum-natural history-smithsonian,/xwgy305K6qDs3D20xUO4OZu1HPY.jpg,/taC97dzVlFBl0vWzmp6PCBWOQtM.jpg,18360-1593-32657-950-10527-8355-10192-425-810-102651-57800-270946-118-953-10140-10555-80321-2454-411-278154-76285 +13804,Fast & Furious,Action-Crime-Drama-Thriller,en,When a crime brings them back to L.A. fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.,15.183,dentsu-Universal Pictures-Relativity Media-Original Film-One Race,4/2/09,85000000,363164265,107,Released,New model. Original parts.,6.666,6341,Vin Diesel-Paul Walker-Michelle Rodriguez-Jordana Brewster-John Ortiz-Laz Alonso-Sung Kang-Tego Calderon-Gal Gadot-Don Omar-Jack Conley-Liza Lapira-Shea Whigham-Mirtha Michelle-Greg Cipes-Ron Yuan-Alejandro Pati��o-Joe Hursley-Cesar Garcia-Brandon T. Jackson-Mousa Kraish-Neil Brown Jr.-Wilmer Calderon-Joseph Julian Soria-Don Theerathada-Robert Miano-Luis Moncada-McCaleb Burnett-Greg Collins-Monique Gabriela Curnen-Jimmy Lin-Roger Fan-Brendan Wayne-Breon Ansley-Assaf Cohen-Loren Lazerine-Lou Beatty Jr.-Julian Starks-Christopher Gehrman-Marco Rodr�_guez-Naureen Zaim-Becky O'Donohue-Alexandra Castro-Leigh Folsom Boyd-Jeff Lam-Gilbert J. Menchaca-Frank Miranda-Rana Morrison-Kristen DeLuca-Holly Weber-Bruna Rubio-Ashley Green Elizabeth-Valenzia Algarin-Liberty Cordova-Lexi Baxter-Christian Calloway-Jerald Garner-Meredith Giangrande-Victoria Gracie-Fatimah Hassan-Adrienne McQueen-Christina Neferis-Lindsay Rosenberg,sibling relationship-gambling-car race-ex-lover-fast-cop-street race-car crash-paul walker-vin diesel,/AmY8rE2HzWzZs5S81CygXXYDjki.jpg,/3ZiM6gm2XL8qnhZCXsTjixvaH4v.jpg,584-9615-51497-9799-82992-168259-337339-8373-38356-1858-27578-988334-2080-36668-76163-1571-1979-1865-58-36657-558 +577922,Tenet,Action-Thriller-Science Fiction,en,Armed with only one word - Tenet - and fighting for the survival of the entire world the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.,57.341,Warner Bros. Pictures-Syncopy,8/22/20,205000000,363129000,150,Released,Time runs out.,7.202,8088,John David Washington-Robert Pattinson-Elizabeth Debicki-Kenneth Branagh-Dimple Kapadia-Himesh Patel-Aaron Taylor-Johnson-Michael Caine-Cl��mence Po��sy-Martin Donovan-Andrew Howard-Yuri Kolokolnikov-Mark Krenik-Anthony Molinari-Rich Ceraulo Ko-Denzil Smith-Jonathan Camp-Julia-Maria Arnolds-Laurie Shepherd-Wes Chatham-Fiona Dourif-Kenneth Wolf Andersen Haugen-Marcel Sabat-Marek Angelstok-Klaus Peeter R�_�_tli-Daniel Olesk-Bern Colla�_o-Ingrid Margus-Carina Velva-Glenn Lawrence-Katie McCabe-Ronald Pelin-Schezaad Ausman-Anterro Ahonen-Aleksei Podlesnov-Lisa Marie-Trent Buxton-Jess Weber-Jeremy Theobald-Jefferson Hall-Adam Cropper-Josh Stewart-Juhan Ulfsak-Jan Uusp��ld-Jack Cutmore-Scott-Kaspar Velberg-Sergo Vares-Rain Tolk-Henrik Kalmet-Sean Avery-John Orantes-Seb Carrington-Matthew Marsden-Ivo Uukkivi-Sander Rebane-Loora-Eliise Kaarelson-Martin T��numaa-Andres Oja-Anton Klink-Tony Christian-Tom Nolan-Viktoria Jelizarova,spy-assassin-mumbai (bombay) india-time travel-arms dealer-espionage-terrorism-terrorist attack-nuclear weapons-terrorist plot-backwards-alternate timeline-oslo norway-time paradox-kiev russia-spy thriller-shot on film,/aCIFMriQh8rvhxpN1IWGgvH0Tlg.jpg,/yY76zq9XSuJ4nWyPDuwkdV7Wt0c.jpg,703363-464052-508442-340102-790331-496243-475557-788106-1023076-337401-466272-530915-157336-524047-1124-499932-374720-754721-539885-546554-438631 +163,Ocean's Twelve,Thriller-Crime,en,Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome Paris and Amsterdam ��� but a Europol agent is hot on their heels.,25.641,Village Roadshow Pictures-Jerry Weintraub Productions-Section Eight-WV Films III-Warner Bros. Pictures,12/9/04,110000000,362744280,125,Released,Twelve is the new eleven.,6.6,6421,George Clooney-Brad Pitt-Matt Damon-Catherine Zeta-Jones-Andy Garc�_a-Don Cheadle-Bernie Mac-Julia Roberts-Casey Affleck-Scott Caan-Vincent Cassel-Eddie Jemison-Carl Reiner-Elliott Gould-Shaobo Qin-Eddie Izzard-Jeroen Krabb��-Robbie Coltrane-Cherry Jones-Candice Azzara-Jared Harris-Ed Kross-Anne Jacques-David Sontag-Larry Sontag-Don Tiffany-Dina Connolly-Nelson Peltz-Mini Anden-Jennifer Liu-Leah Zhang-Craig Susser-James Schneider-Nerissa Tedesco-Nichelle Hines-Michael Van Der Heijden-Johan Widerberg-Jeroen Willems-Chris Tates-Michael Delano-David Lindsay-Nasser Faris-Youma Diakite-Andrea Buhl-Sylvia Kwon-Francesca Lancini-Raquel Faria-Elena Potapova-Jessie Bell-Anne-Solenne Hatte-Denny Mendez-Martina Stella-Mattia Sbragia-Carlo Antonazzo-Mingming Gao-Amelie Kahn-Ackermann-Luciano Miele-Antonio De Matteo-Ana Caterina Morariu-Adriano Giannini-Giulio Magnolia-Marco Matronelli-Scott L. Schwartz-Giselda Volodi-Mathieu Simonet-Karl A. Brown-Marc Bodnar-Antonella Elia-Albert Finney-Topher Grace-Jerry Weintraub-Bruce Willis,rome italy-sequel-heist-faberg�� egg-golden egg-goon,/Ad55M8newGWemFWCsMAkxO3fDwl.jpg,/5b5HrewiViLWEdMR4dmbd7ajQ8Q.jpg,298-161-787-9654-2502-2503-652-2501-956-2059-955-1571-608-954-591-9679-58574-8960-39514-4108-607 +86834,Noah,Drama-Adventure,en,A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.,31.97,Paramount-Regency Enterprises-Protozoa Pictures,3/7/14,125000000,362600000,138,Released,The end of the world is just the beginning.,5.659,5955,Russell Crowe-Jennifer Connelly-Ray Winstone-Anthony Hopkins-Emma Watson-Logan Lerman-Douglas Booth-Nick Nolte-Mark Margolis-Kevin Durand-Leo McHugh Carroll-Marton Csokas-Finn Wittrock-Madison Davenport-Gavin Casalegno-Nolan Gross-Skylar Burke-Dakota Goyo-Ariane Rinehart-Adam Griffith-Sophie Nyweide-Don Harvey-Sami Gayle-Barry Sloane-Arna Magnea Danks-Vera Fried-Thor Kjartansson-Gregg Bello-Mellie Maissa Rei Campos-Oliver Lee Saunders-Frank Langella-J�_hannes Haukur J�_hannesson-Arnar Dan-Jack Angel-Rick Bolander-Joe Barlam-Ezra Barnes-Joseph Basile-Gabriel F. Bellotti-Anne Bergstedt Jordanova-Andres Bjornsson-Jean Burns-Lucas McHugh Carroll-Adam Celentano-Ludovic Coutaud-Angela Dee-Jeff El Eini-Joe Fionda-Jim Ford-Bradley Growden-Tommi Thor Gudmundsson-Jonathan Haltiwanger-Eythor Atli Hilmarsson-David Itchkawitz-Chris Kapcia-Shana Kaplan-Danielle Kay-Austin Kennedy-Chris Kepford-Bjarni Kristj��nsson-Anna Kuchma-Kirk Larsen-Jerry Lobrow-David Madison-Raymond Mamrak-Branden Marlowe-Davy J. Marr-Brian Matthews-Mara McCann-Kevin Medina-Lauren Meley-Jon Michael-R�_is�_n Monaghan-Julian Murdoch-Paul Nandzik-Hayden Oliver-Simon Pearl-Joseph Piazza-Max Abe Plush-Marek Radin-Greg Sammis-Giovanni Sanseviero-Rob Scebelo-Sarah Schoofs-George Schroeder-Max Kolby-Maria Shamkalian-David Shannon-McKenzie Shea-Christian Paul Sherwood-Lawrence Smith-Stephen Stanton-Thomas W. Stewart-Boriana Williams-Ray Zupp,genesis-fairy tale-bible-god-apocalypse-flood-old testament-noah-noah's ark,/trtD17IqSWV9Nbn4OILztc9GuCX.jpg,/5z75Q6nqgwgYfpMB9fVHQcw9gMz.jpg,157353-76649-53182-97020-102651-124905-102382-157350-147441-76285-82700-91314-57201-57158-184315-225574-127585-68724-32657-100402-58595 +869,Planet of the Apes,Thriller-Science Fiction-Action-Adventure,en,After a spectacular crash-landing on an uncharted planet brash astronaut Leo Davidson finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home Leo must evade the invincible gorilla army led by Ruthless General Thade.,40.679,Tim Burton Productions-20th Century Fox-The Zanuck Company,7/25/01,100000000,362211740,119,Released,You'll be sorry you were ever born human.,5.725,3501,Mark Wahlberg-Tim Roth-Helena Bonham Carter-Michael Clarke Duncan-Kris Kristofferson-Estella Warren-Paul Giamatti-Cary-Hiroyuki Tagawa-Glenn Shadix-Charlton Heston-Chad Bannon-Linda Harrison-Melody Perkins-Lisa Marie-Lucas Elliot Eberl-Evan Parke-Chris Ellis-Deep Roy-Kevin Grevioux-Dana Schick-Rick Baker-Martin Klebba-David Warner-Erick Avari-Philip Tan-Spitfire Brown-Nils Allen Stewart-Freda Foh Shen-Lisa Lackey,gorilla-space marine-space suit-revolution-chimp-slavery-space travel-time travel-dystopia-alien planet-ape-human subjugation-2020s,/ijUi5kIYpiosJFPosuDwyaDJAc5.jpg,/rF0Y0fYVsNFEvGve8Nq0Ij9EDCM.jpg,871-1705-1687-1688-1685-61791-119450-364-75-881460-2668-8487-395-12098-1452-9480-74-929-8645-8698-414 +109439,The Hangover Part III,Comedy,en,This time there's no wedding. No bachelor party. What could go wrong right? But when the Wolfpack hits the road all bets are off.,69.939,Legendary Pictures-Green Hat Films-BenderSpink,5/23/13,103000000,362000072,100,Released,It all ends.,6.213,7751,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Ken Jeong-John Goodman-Mike Epps-Jeffrey Tambor-Melissa McCarthy-Heather Graham-Sasha Barrese-Jamie Chung-Sondra Currie-Gillian Vigman-Oliver Cooper-Mike Vallely-Grant Holmquist-Harrison Forsyth-Todd Phillips-Betty Murphy-Oscar Torre-Lela Loren-Jim Lau-Jonny Coyne-Silvia Curiel-Roger Schueller-Jenny Ladner-Scott Anthony Leet-Tim Sitarz-Danny Le Boyer-Damion Poitier-Lewis Tan-Tiffany Tynes,las vegas,/vtxuPWkdllLNLVyGjKYa267ntuH.jpg,/o8ZS811VjYbBi4pRYwILLdWCVey.jpg,45243-18785-72105-310-1593-41733-138832-41154-38365-64688-71552-18360-953-195589-214756-109418-2105-810-51540-82992-57214 +36643,The World Is Not Enough,Adventure-Action-Thriller,en,Greed revenge world dominance and high-tech terrorism ��� it's all in a day's work for Bond who's on a mission to protect a beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.,31.31,Metro-Goldwyn-Mayer-Eon Productions-Danjaq,11/17/99,135000000,361832400,128,Released,As the countdown begins for the new millennium there is still one number you can always count on.,6.3,2502,Pierce Brosnan-Sophie Marceau-Robert Carlyle-Denise Richards-Robbie Coltrane-Judi Dench-Desmond Llewelyn-John Cleese-Samantha Bond-Maria Grazia Cucinotta-Michael Kitchen-Colin Salmon-Goldie-David Calder-Serena Scott Thomas-Ulrich Thomsen-John Seru-Claude-Oliver Rudolph-Patrick Malahide-Omid Djalili-Jeff Nuttall-Diran Meghreblian-John Albasiny-Patrick Romer-Jimmy Roussounis-Justus von Dohn��nyi-Hassani Shapi-Carl McCrystal-Kourosh Asad-Daisy Beaumont-Nina Muschallik-Daz Crawford-Peter Mehtab-Sean Cronin-Paul Heasman-Mark Henson-Derek Lea-Judi Shekoni-Michael G. Wilson,mission-oil-mi6-heiress-bilbao spain-british secret service,/wCb2msgoZPK01WIqry24M4xsM73.jpg,/vnGpNq9LEBblBJihCkMEp5NLRwc.jpg,714-36669-710-708-709-700-699-707-691-253-682-681-698-667-36670-660-668-657-646-658-10764 +497984,Monster Hunt 2,Adventure-Comedy-Fantasy,zh,The sequel to Monster Hunt. Set in a world where monsters and humans co-exist the franchise tells the story of Wuba a baby monster born to be king. Wuba becomes the central figure in stopping an all-out monster civil war.,13.168,EDKO Films,2/16/18,0,361682618,110,Released,,6.8,104,Tony Leung Chiu-wai-Bai Baihe-Jing Boran-Chris Lee-Tony Yang-Eric Tsang-Zhang Li-Jiang Chao-Liu Beige-Cheng Zuo-Chen Xingyu,monster-sequel,/9wOkj2VXLvqUPQ77MUzgzuz6Cv5.jpg,/gKDuRB6Uj3gzF8Dd85DOtkxi7KC.jpg,334298-373200-10775-535167-494858-351286-135397-429617 +6477,Alvin and the Chipmunks,Comedy-Family-Fantasy-Animation,en,A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin brainy Simon and chubby impressionable Theodore.,42.033,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/13/07,60000000,361366633,92,Released,The Original Entourage,5.806,3919,Jason Lee-David Cross-Cameron Richardson-Jane Lynch-Justin Long-Matthew Gray Gubler-Jesse McCartney-Veronica Alicino-Allison Karman-Tiara Parker-Kira Verrastro-Beth Riesgraf-Adriane Lenox-Don Tiffany-Frank Maharajh-Kevin Symons-Jayden Lund-Alexis Boyd-Kyndra Reevey-Jay Bird-Natalie Cohen-Kevin Fung-Kevin Fisher-Jillian Barberie-Lorne Green-Greg 'G-Spot' Siebel-Oliver Muirhead-Erin Chambers-Chris Classic-Adam Riancho-Axel Alba-Rosero McCoy-Criscilla Anderson-Tucker Barkley-Celestina Aladekoba-Laura Edwards-Christopher Scott-Miss Prissy-Bryan Gaw-Michelle Maniscalco-Nick Drago-Melanie Lewis-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Colette Claire-Sommer Fehmel-Lisa Mason Lee-Rae Sunshine Lee-Eddie Mariano-Meghan Noone-Chris Rossi-Jameel Saleem-Melanie Stephens-Brianna Womick-Maria Zambrana-Gregg Lee,pop-pop star-record producer-surprise-approach-forest-concert-friendship-chipmunk-anthropomorphism-songwriter-talking to animals-duringcreditsstinger-live action and animation,/wEssFe5LCywsLfAcwELVXE38Fbj.jpg,/lKkkogTlIQT8o83GFQZZ3CA9MzB.jpg,12133-23398-55301-258509-5559-9982-8920-41513-9836-13053-10527-22794-7518-7484-810-9928-10555-15512-9513-10137-9408 +38575,The Karate Kid,Action-Adventure-Drama-Family,en,Twelve-year-old Dre Parker could have been the most popular kid in Detroit but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse Dre's feelings make him an enemy of the class bully Cheng. With no friends in a strange land Dre has nowhere to turn but maintenance man Mr. Han who is a kung fu master. As Han teaches Dre that kung fu is not about punches and parries but maturity and calm Dre realizes that facing down the bullies will be the fight of his life.,51.46,Columbia Pictures-Sony Pictures-Overbrook Entertainment-Jerry Weintraub Productions-China Film Group-Zwart Arbeid,6/10/10,40000000,359126022,140,Released,A Challenge He Never Imagined. A Teacher He Never Expected.,6.5,5288,Jaden Smith-Jackie Chan-Taraji P. Henson-Wenwen Han-Yu Rongguang-Tess Liu-Xu Ming-Wang Ji-Zhensu Wu-Zhiheng Wang-ZhenWei Wang-Jared Minns-Zhao Yi-Shijia L�_-Bo Zhang-Luke Carberry-Cameron Hillman-Ghye Samuel Brown-Liang Geliang,martial arts-duringcreditsstinger-karate kid-the karate kid,/o4gwFcm6qRgnC9Gff4giy0POHdF.jpg,/9Cip74Gl1xOkRP0e4OAiPZp8C4k.jpg,1885-8856-10495-710832-18360-57277-11231-1593-8960-9502-13053-88751-75149-27022-32657-49444-8355-9543-10527-23172-5175 +772,Home Alone 2: Lost in New York,Comedy-Family-Adventure,en,Instead of flying to Florida with his folks Kevin ends up alone in New York where he gets a hotel room with his dad's credit card���despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses the Wet Bandits he's determined to foil their plans to rob a toy store on Christmas Eve.,38.514,20th Century Fox-Hughes Entertainment,11/19/92,18000000,358994850,120,Released,Guess who's alone in New York this Christmas!,6.7,8379,Macaulay Culkin-Joe Pesci-Daniel Stern-Catherine O'Hara-John Heard-Devin Ratray-Hillary Wolf-Maureen Elisabeth Shay-Michael C. Maronna-Gerry Bamman-Terrie Snell-Jedidiah Cohen-Senta Moses-Daiana Campeanu-Kieran Culkin-Anna Slotky-Tim Curry-Brenda Fricker-Eddie Bracken-Dana Ivey-Rob Schneider-Leigh Zimmerman-Ralph Foody-Clare Hoak-Monica Devereux-Bob Eubanks-Rip Taylor-Jaye P. Morgan-Jimmie Walker-Patricia Devereux-Aimee Devereux-A.M. Columbus-Joe Liss-Teri McEvoy-Ally Sheedy-Harry Hutchinson-Clarke Devereux-Sandra Macat-Venessia Valentino-Andre Lachaumette-Rick Shafer-Rod Sell-Ron Canada-Cedric Young-William D'Ambra-Mark Morettini-Fred Krause-James Cole-Donald Trump-Warren Rice-Thomas Civitano-Daniel Dassin-Donna Black-Abdoulaye NGom-Peter Pantaleo-Michael Goldfinger-Mario Todisco-Anthony Cannata-Eleanor Columbus-Karen Giordano-Fran McGee-Leonard Tepper-Kevin Thomas-Al Cerullo-Dan Buckman-Laurence S. Chess-Chris Columbus-Jonathon Gentry-Eric Ian-Karen Jensen-Clark-Jeffrey Landman-Eden Riegel-Mike Sode-Paul Zimmerman-Michael Hansen,holiday-new york city-burglar-slapstick comedy-sequel-little boy-family relationships-home invasion-family-precocious child-home alone-mischievous child-christmas-kids on their own-child rescue,/uuitWHpJwxD1wruFl2nZHIb4UGN.jpg,/pnkcE3Q3fPNM9XzWEN1gJJRYYX4.jpg,771-24257-9714-21-12536-707610-953-1593-310-854-425-10020-8844-950-988334-8871-812-809-10527-8355-411 +76492,Hotel Transylvania,Animation-Comedy-Family-Fantasy,en,Welcome to Hotel Transylvania Dracula's lavish five-stake resort where monsters and their families can live it up and no humans are allowed. One special weekend Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!,36.996,Columbia Pictures-Sony Pictures Animation,9/20/12,85000000,358375603,91,Released,Even monsters need a vacation,6.953,7908,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-Fran Drescher-Steve Buscemi-Molly Shannon-David Spade-Cee Lo Green-Sadie Sandler-Jon Lovitz-Luenell-Chris Parnell-Brian George-Brian Stack-Jackie Sandler-Rob Riggle-Paul Brittain-Robert Smigel-Jonny Solomon-Jim Wise-Craig Kellman-Brian McCann-James C.J. Williams-Ashley Lambert-Rose Abdoo-Kirk Baily-Ranjani Brow-Corey Burton-Cam Clarke-Michael Corbett-Allen Covert-Rachel Crane-Collin Dean-Eddie Frierson-Bridget Hoffman-Rif Hutton-Tom Kenny-Scott Menville-Edie Mirman-Jessica Pennington-Alec Rosenthal-Katie Silverman-John Hans Tester-Sarah Thyre-Chris Titone-David Zyler-Maddie Taylor,hotel-witch-vampire-love-romance-zombie-invisible person-duringcreditsstinger-nosferatu-protective father-magical creature-father daughter relationship,/eJGvzGrsfe2sqTUPv5IwLWXjVuR.jpg,/5rARlA8beRAVXPYzSaF2NoS8Ry5.jpg,159824-80321-400155-953-57800-38757-81188-46195-82690-8355-49519-62177-20352-10527-950-22794-9502-93456-10191-62211-425 +180,Minority Report,Action-Thriller-Science Fiction-Mystery,en,John Anderton is a top 'Precrime' cop in the late-21st century when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.,26.947,DreamWorks Pictures-20th Century Fox-Cruise/Wagner Productions-Amblin Entertainment-Blue Tulip Productions-Ronald Shusett/Gary Goldman-Digital Image Associates,6/20/02,102000000,358372926,145,Released,The system is perfect until it comes after you.,7.33,7604,Tom Cruise-Colin Farrell-Samantha Morton-Max von Sydow-Peter Stormare-Tim Blake Nelson-Kathryn Morris-Neal McDonough-Steve Harris-Lois Smith-Mike Binder-Daniel London-Jessica Capshaw-Patrick Kilpatrick-Jessica Harper-Ashley Crow-Arye Gross-Fiona Hale-George Wallace-Frank Grillo-William Mapother-Jason Antoon-Vanessa Asbert-Tyler Patrick Jones-Richard Coca-Keith Campbell-Kirk B.R. Woller-Klea Scott-Anna Maria Horsford-Sarah Simmons-Eugene Osment-James Henderson-Vene L. Arcoraci-Erica Ford-Keith Flippen-Radmar Agana Jao-Karina Logue-Elizabeth Anne Smith-Victoria Garcia-Kelleher-Jim Rash-Stephen Ramsey-Tom Choi-Tom Whitenight-William Morts-Michael Dickman-Matthew Dickman-Ann Ryerson-Dominic Scott Kay-Joel Gretsch-Bertell Lawrence-William Mesnik-Franklin Scott-Severin Wunderman-Max Trumpower-Allie Raye-Rocael Leiva-Nicholas Edwin Barb-Catfish Bates-Caroline Lagerfelt-Danny Parker-Lopes-Vanessa Cedotal-Katy Boyer-Adrianna Kamosa-Kari Gordon-Elizabeth Kamosa-Raquel Gordon-Laurel Kamosa-Pamela Roberts-Clement Blake-Jerry Perchesky-Victor Raider-Wexler-Nancy Linehan Charles-Nadia Axakowsky-Dude Walker-Tony Hill-Drakeel Burns-Morgan Hasson-Andrew Sandler-Bonnie Morgan-Kathi Copeland-Ana Maria Quintana-Lucille M. Oliver-Gene Wheeler-Tonya Ivey-David Stifel-Kurt Sinclair-Rebecca Ritz-Beverly Morgan-John Bennett-Maureen Dunn-Ron Ulstad-Blake Bashoff-David Doty-Gina Gallego-David Hornsby-Anne Judson-Yager-Meredith Monroe-Benita Krista Nall-Shannon O'Hurley-Jorge-Luis Pallo-Elizabeth Payne-Ethan Sherman-Jarah Mariano-Miles Dinsmoor-Paul Thomas Anderson-Cameron Crowe-Cameron Diaz,self-fulfilling prophecy-washington dc usa-based on novel or book-future-precognition-hologram-dystopia-murder-conspiracy-police chase-murder investigation-tech noir-neo-noir-missing son-future noir-backyard surgery-surveillance state-2050s,/ccqpHq5tk5W4ymbSbuoy4uYOxFI.jpg,/qq4H9JfBKQ5DarMLI6lhUQjn9D7.jpg,74-954-602-605-956-604-2048-2501-955-87-89-607-2502-217-2503-187-616-296-608-63-95 +372058,Your Name.,Romance-Animation-Drama,ja,High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night they suddenly switch places. Mitsuha wakes up in Taki��s body and he in hers. This bizarre occurrence continues to happen randomly and the two must adjust their lives around each other.,81.82,CoMix Wave Films-TOHO-KADOKAWA-East Japan Marketing & Communications-AMUSE-voque ting-Lawson Entertainment-4Kids Entertainment,8/26/16,0,357986087,106,Released,"It was almost like seeing something out of a dream, nothing more or less than a breathtaking view.",8.519,9936,Ryunosuke Kamiki-Mone Kamishiraishi-Ryo Narita-Aoi Yuki-Nobunaga Shimazaki-Kaito Ishikawa-Kanon Tani-Masaki Terasoma-Sayaka Ohara-Kazuhiko Inoue-Chafurin-Yuka Kato-Kana Hanazawa-Shinya Hamazoe-Masami Nagasawa-Etsuko Ichihara-Yuka Terasaki-Takashi Onozuka-Kanami Satou-Shinjir�� G��da-Yasuhiro Kikuchi-Tamari Hinata-Nozomi Yamane-Yuuki Shin-Tatsuya Murakami-Nodoka Hasegawa-Baron Yamazaki-Suguru Inoue-Ryoko Usami-Miho Morisaki-Tsuyoshi Minamijima-Aika Oomae-Tomohiro Yamaguchi-Takayuki Nakatsukasa-Hiroki Matsukawa-Shouko Negoro-Yuki Ominami-Manami Hanawa-Miho Tabata-Eriko Tomioka-Eiji Yamamoto-Y��hei Namekawa,time travel-race against time-comet-natural disaster-supernatural-afterlife-romance-school-body-swap-nonlinear timeline-star crossed lovers-anime-dreams,/q719jXXEzOoYaps6babgKnONONX.jpg,/dIWwZW7dJJtqC6CgWzYkNVKIUm8.jpg,158358-378064-129-748918-568160-619433-198375-240-225145-990982-4935-38142-936511-238-504253-12477-128-8392-110420-278-496243 +744,Top Gun,Action-Drama,en,For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy as well as personal demons will threaten Pete's dreams of becoming an ace pilot.,117.253,Paramount-Don Simpson/Jerry Bruckheimer Films,5/16/86,15000000,356830601,110,Released,Up there with the best of the best.,7.027,7143,Tom Cruise-Kelly McGillis-Val Kilmer-Anthony Edwards-Tom Skerritt-Michael Ironside-John Stockwell-Barry Tubb-Rick Rossovich-Tim Robbins-Clarence Gilyard Jr.-Whip Hubley-James Tolkan-Meg Ryan-Adrian Pasdar-Randall Brady-Duke Stroud-Brian Sheehan-Ron Clark-Frank Pesce-Pete Pettigrew-Troy Hunter-Linda Rae Jurgens-T.J. Cassidy,loss of loved one-lovesickness-fighter pilot-self-discovery-pilot-dying and death-training camp-air force-airplane-dangerous-battle assignment-u.s. navy-hostility-secret love-cowardliness-pilot school-based on magazine newspaper or article,/xUuHj3CgmZQ9P2cMaqQs4J0d4Zc.jpg,/jILeJ60zPpIjjJHGSmIeY4eO30t.jpg,361743-1029446-380-2119-851238-485918-9390-954-811108-7520-616-9361-955-1368-956-1669-180-2253-881-2024-676 +258489,The Legend of Tarzan,Fantasy-Action-Adventure,en,Tarzan having acclimated to life in London is called back to his former home in the jungle to investigate the activities at a mining encampment.,42.166,Village Roadshow Pictures-Warner Bros. Pictures-Dark Horse Entertainment-Jerry Weintraub Productions-RatPac Entertainment-Beagle Pug Films-Riche Productions,6/29/16,180000000,356743061,109,Released,Human. Nature.,5.883,5757,Alexander Skarsg��rd-Christoph Waltz-Samuel L. Jackson-Margot Robbie-Djimon Hounsou-Jim Broadbent-Casper Crump-Simon Russell Beale-Yule Masiteng-Osy Ikhile-Mens-Sana Tamakloe-Sidney Ralitsoele-Antony Acheampong-Edward Apeagyei-Ashley Byam-Charles Babalola-William Wollen-Mimi Ndiweni-Matt Cross-Madeleine Worrall-Rory J. Saper-Hadley Fraser-Genevieve O'Reilly-Ben Chaplin-Paul Hamilton-Christopher Benjamin-Bentley Kalu-Abi Adeyemi-Joy Isa-Alex Ferns-Ian Mercer-Charlie Anson-Liv Hansen-Alicia Woodhouse-Miles Jupp-Teresa Churcher-Matt Townsend-Faisal Mohammed-Ella Purnell,africa-animal attack-feral child-tarzan-jungle,/eJrfz178xBGlxjDGxnBXTzWWa4w.jpg,/sIZUWHQvrDzVcgBbJcjs3LUtbUp.jpg,278927-47933-290595-68735-297761-44507-308531-291805-302699-246655-209112-283366-188927-43074-324668-294272-241259-262504-299687-332567-333484 +14,American Beauty,Drama,en,Lester Burnham a depressed suburban father in a mid-life crisis decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.,27.872,Jinks/Cohen Company-DreamWorks Pictures,9/15/99,15000000,356296601,122,Released,Look closer.,8.031,10841,Kevin Spacey-Annette Bening-Thora Birch-Wes Bentley-Mena Suvari-Chris Cooper-Allison Janney-Peter Gallagher-Scott Bakula-Sam Robards-Barry Del Sherman-John Cho-Hal Fort Atkinson-Kent Faulcon-Ara Celi-Sue Casey-Brenda Wehle-Lisa Cloud-Amber Smith-Joel McCrary-Marissa Jaret Winokur-Dennis Anderson-Matthew Kimbrough-Erin Cathryn Strubbe-Alison Faulk-Krista Goodsitt-Lily Houtkin-Carolina Lancaster-Mona Leah-Chekesha Van Putten-Emily Zachary-Nancy Anderson-Reshma Gajjar-Stephanie Rizzo-Heather Joy Sher-Chelsea Hertford-Elaine Corral Kendall-David C. Fisher-Tom Miller-Bruce Cohen,adultery-parent child relationship-midlife crisis-coming out-first time-virgin-estate agent-cheerleader-rose-satire-loneliness-dark comedy-suburbia-coming of age-marijuana-love affair-exercise-extramarital affair-quitting a job-retired army man-closeted homosexual-gay-teenager,/wby9315QzVKdW9BonAefg8jGTTb.jpg,/DztBnZaqmla2sGUW9s8AyOmskT.jpg,317927-73-350556-185-500-77-627-489-453-641-745-629-141-274-24-115-37165-1422-13241-510-38 +72545,Journey 2: The Mysterious Island,Adventure-Action-Science Fiction,en,Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather who is thought to be missing on a mythical island.,76.422,New Line Cinema-Contrafilm-Walden Media,1/19/12,79000000,355692760,94,Released,Believe the Impossible. Discover the Incredible.,6.1,3765,Dwayne Johnson-Josh Hutcherson-Michael Caine-Vanessa Hudgens-Luis Guzm��n-Kristin Davis-Anna Colwell-Stephen Caudill-Branscombe Richmond-Walter Bankson-Cody Easterbrook-Paul Leo Klink,giant lizard-mission-missing person-duringcreditsstinger,/hLZHJjsZ83Wfn3MRteNb6ew0WC7.jpg,/9f33P2UvXw8HnLNB3cHdzI64Xpq.jpg,88751-65404-32657-18360-220638-13836-1593-76285-6795-38575-27022-46529-50619-44912-46195-1265-58595-1979-1735-49529-24021 +568,Apollo 13,History-Drama-Adventure,en,The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970 risking the lives of astronaut Jim Lovell and his crew with the failed journey turning into a thrilling saga of heroism. Drifting more than 200000 miles from Earth the astronauts work furiously with the ground crew to avert tragedy.,22.112,Imagine Entertainment-Universal Pictures-TF1 International,6/30/95,52000000,355237933,140,Released,"Houston, we have a problem.",7.4,4800,Tom Hanks-Bill Paxton-Kevin Bacon-Gary Sinise-Ed Harris-Kathleen Quinlan-Roger Corman-Chris Ellis-Xander Berkeley-Tracy Reiner-Joe Spano-David Andrews-Mary Kate Schellhardt-Emily Ann Lloyd-Miko Hughes-Max Elliott Slade-Jean Speegle Howard-Michele Little-Andrew Lipschultz-Mark Wheeler-Endre Hules-Clint Howard-Christian Clemenson-Brett Cullen-Thom Barry-Gabriel Jarret-Jim Lovell-Neil Armstrong-Jules Bergman-Pope Paul VI-Marc McClure-Ben Marley-Loren Dean-Tom Wood-Googy Gress-Patrick Mickler-Ray McKinnon-Max Grod��nchik-Ned Vaughn-Andy Milder-Geoffrey Blake-Wayne Duvall-Jim Meskimen-Joseph Culp-John Short-Ben Bode-Todd Louiso-Christopher John Fields-Kenneth White-James Ritz-Karen Martin-Maureen Hanley-Meadow Williams-Walter von Huene-Brian Markinson-Steve Rankin-Austin O'Brien-Louisa Marie-Arthur Senzy-Carl Gabriel Yorke-Ryan Holihan-Rance Howard-Jane Jenkins-Todd Hallowell-Matthew Michael Goodall-Taylor Goodall-Misty Dickinson-Lee Anne Matusek-Mark D. Newman-Mark McKeel-Patty Raya-Jack Conley-Jeffrey Kluger-Bruce Wright-Ivan Allen-Jon Bruno-Reed Rudy-Steve Bernie-Steve Ruge-Herbert Jefferson Jr.-John Dullaghan-John Wheeler-Paul Mantee-Julie Rowen-Thomas Crawford-Frank Cavestani-John M. Mathews,moon-florida-nasa-spaceman-race against time-houston-based on true story-space-rescue-survival-disaster-explosion-astronaut-hypothermia-apollo program-lunar mission-spacecraft accident,/oYUZHYMwNKnE1ef4WE5Hw2a9OAY.jpg,/32zua2oKjn2EaRk7am3qK8zAlEj.jpg,8358-602-95-9800-857-19259-13448-855-601-2280-4147-591-594-13-686-156140-1669-197-89-1701-2502 +380,Rain Man,Drama,en,When car dealer Charlie Babbitt learns that his estranged father has died he returns home to Cincinnati where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.,24.954,United Artists-Star Partners II Ltd.,12/11/88,25000000,354825435,134,Released,A journey through understanding and fellowship.,7.759,5501,Dustin Hoffman-Tom Cruise-Valeria Golino-Gerald R. Molen-Jack Murdock-Michael D. Roberts-Ralph Seymour-Lucinda Jenney-Bonnie Hunt-Kim Robillard-Beth Grant-Dolan Dougherty-Marshall Dougherty-Patrick Dougherty-John-Michael Dougherty-Peter Dougherty-Andrew Dougherty-Loretta Wendt Jolivette-Donald E. Jones-Bryon P. Caunar-Donna J. Dickson-Earl Roat-William Montgomery Jr.-Elizabeth Lower-Robert W. Heckel-W. Todd Kenner-Kneeles Reeves-Jack W. Cope-Nick Mazzola-Ralph Tabakin-Ray Baker-Isadore Figler-Ralph M. Cardinale-Sam Roth-Nanci M. Harvey-Kenneth E. Lowden-Jocko Marcellino-John Thorstensen-Blanche Salter-Jake Hoffman-Royce D. Applegate-June Christopher-Anna Mathias-Archie Hahn-Luisa Leschin-Ira Miller-Chris Mulkey-Tracy Newman-Julie Payne-Reni Santoni-Bridget Sienna-Ruth Silveira-Jonathan Stark-Lynne Marie Stewart-Arnold F. Turner-Gigi Vorgan-Jon Bielich-Richard A. Buswell-Pui Fan Lee-Matt Mattingly-Billie Perkins-Jill Senter-Aaron Weiler-Mark Winn-Darryl Wooten-Michael C. Hall,individual-loss of loved one-mentally disabled-autism-yuppie-car dealer-egocentrism-road trip-blackjack-cincinnati-travel-convertible-las vegas-psychiatrist-disability-duringcreditsstinger-asperger's syndrome,/iTNHwO896WKkaoPtpMMS74d8VNi.jpg,/mrfbeWcjgSaZ9NEb0xJMR9xzSeB.jpg,581-881-811108-792-7520-744-2604-117-489-207-9390-1366-745-9800-453-8358-37247-2119-616-11873-89 +10567,Dinosaur,Family-Animation,en,An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.,44.982,Walt Disney Pictures-Walt Disney Feature Animation,5/19/00,127500000,354248063,82,Released,You have never seen anything like this.,6.5,2221,D.B. Sweeney-Alfre Woodard-Ossie Davis-Max Casella-Hayden Panettiere-Samuel E. Wright-Julianna Margulies-Peter Siragusa-Joan Plowright-Della Reese-Cathy Cavadini-Edie Lehmann Boddicker-Matt Adler-Sandina Bailo-Lape-Zachary Bostrom,cataclysm-asteroid-migration-leader-comet-prehistoric-prehistoric egg-dinosaur-birth-death-nesting grounds-cavern-prehistoric creature-prehistoric adventure-lemur-prehistoric times,/rSje3FS7ycJSglowlngjsvDt7vO.jpg,/laeEtakR2pLKu3CeRwB2lU5Y53X.jpg,13700-11319-10948-37135-9982-12233-10545-3170-10009-10112-11544-7443-11360-10865-9325-10340-11688-11135-49948-9016-11970 +49538,X-Men: First Class,Action-Science Fiction-Adventure,en,Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto they were two young men discovering their powers for the first time. Before they were arch-enemies they were closest of friends working together with other mutants (some familiar some new) to stop the greatest threat the world has ever known.,2.172,The Donners' Company-Bad Hat Harry Productions-20th Century Fox,6/1/11,160000000,353624124,132,Released,Witness the moment that will change our world.,7.294,11844,James McAvoy-Michael Fassbender-Kevin Bacon-Rose Byrne-Jennifer Lawrence-January Jones-Nicholas Hoult-Oliver Platt-Jason Flemyng-Lucas Till-Edi Gathegi-Zo� Kravitz-Caleb Landry Jones-Matt Craven-Laurence Belcher-Bill Milner-Morgan Lily-Beth Goddard-�va Magyar-�lex Gonz��lez-Corey Johnson-Demetri Goritsas-Glenn Morshower-Don Creech-James Remar-Ludger Pistor-Wilfried Hochholdinger-Greg Kolpakchi-Andrei Zayats-Rade ��erbed�_ija-Ray Wise-Michael Medeiros-Olek Krupa-Yuri Naumkin-Gene Farber-David Agranov-Katrine De Candole-James Faulkner-Annabelle Wallis-Juan Herrera-Greg Savage-Jarid Faubel-Gregory Cox-Josh Cohen-David Crow-Kieran Patrick Campbell-Sasha Pieterse-Brendan Fehr-Michael Ironside-Jason Beghe-Venya Manzyuk-Tony Curran-Randall Batinkoff-Peter Stark-Leonard Redlich-Carlos Peres-Sean Brown-Neil Fingleton-Marios-Georg Nikoloff-Arthur Darbinyan-John F. Kennedy-Hugh Jackman-Rebecca Romijn-David Joseph Martinez-Johnny Otto-Josh Ramsay,cia-nuclear war-mutant-mine-superhero-based on comic-superhuman-historical fiction-cuban missile crisis-world war iii-1960s,/vUvlOY575rztBuJV3a0dbHW5MQR.jpg,/bMiOfPhplZu1Lql3hGTRV087QA.jpg,36668-36657-2080-36658-127585-76170-246655-1771-1930-10138-10195-38356-13475-1726-558-56292-68721-10528-1858-1865-41154 +329996,Dumbo,Family-Fantasy-Adventure,en,A young elephant whose oversized ears enable him to fly helps save a struggling circus but when the circus plans a new venture Dumbo and his friends discover dark secrets beneath its shiny veneer.,26.865,Walt Disney Pictures-South Australian Film Corporation-Tim Burton Productions-Moving Picture Company-Infinite Detective-Secret Machine Entertainment-British Film Commission,3/27/19,170000000,353284621,112,Released,Soar to new heights.,6.7,3945,Colin Farrell-Michael Keaton-Danny DeVito-Eva Green-Alan Arkin-Nico Parker-Finley Hobbins-Roshan Seth-Deobia Oparei-Joseph Gatt-Miguel Mu��oz Segura-Sharon Rooney-Zenaida Alcalde-Michael Buffer-Phil Zimmerman-Ragevan Vasan-Frank Bourke-Zelda Rosset Colon-Benjamin French-Jana Posna-Jo Osmond-Jewels Good-Lars Eidinger-Tom Seekings-Douglas Reith-Sandy Martin-Heather Rome-Scott Haney-Erick Hayden-Greg Canestrari-Chris Rogers-Max Gill-Peter Brookes-Simon Connolly-Nick Bartlett-Harry Taylor-Vincent Andriano-Liam Bewley-Ben Crowe-Josef Davies-Clive Brunt-Richard Leeming-Angela Ashton-Alice Bonifacio-Philip Rosch-Joseph Macnab-Rob Heanley-Amerjit Deu-Lucy DeVito-Richard James-Clarke-Matthew Castle-Bret Jones-Zee Asha-Carol Been-Jessica Barker-Wren-Arabella Neale-Rosie Akerman-Tim Southgate-Anatoli Akerman-Kamil Lemieszewski-Zo� Scott-Suan-Li Ong-Bern Colla�_o-Paul Riddell-Will Rowlands,circus-elephant-missouri-remake-live action and animation-1910s-live action remake-dumbo,/deTOAcMWuHTjOUPQphwcPFFfTQz.jpg,/5tFt6iuGnKapHl5tw0X0cKcnuVo.jpg,726166-662018-872325-287947-450647-579955-800377-526213-549087-420817-611059-725867-613689-11360-420818-611740-664524-251735-645488-811741-510276 +402,Basic Instinct,Thriller-Mystery,en,A violent police detective investigates a brutal murder that might involve a manipulative and seductive novelist.,33.585,Carolco Pictures-Canal+,3/20/92,49000000,352927224,127,Released,A brutal murder. A brilliant killer. A cop who can't resist the danger.,6.887,3379,Michael Douglas-Sharon Stone-George Dzundza-Jeanne Tripplehorn-Leilani Sarelle-Denis Arndt-Bruce A. Young-Chelcie Ross-Dorothy Malone-Wayne Knight-Daniel von Bargen-Stephen Tobolowsky-Benjamin Mouton-Jack McGee-Bill Cable-Stephen Rowe-Mitch Pileggi-Mary Pat Gleason-Freda Foh Shen-William Duff-Griffin-James Rebhorn-David Wells-Mary Ann Rodgers-Adilah Barnes-Irene Olga L�_pez-Juanita Jennings-Craig C. Lewis-Michael David Lally-Peter Appel-Michael Halton-Keith McDaniel-Eric Poppick-Ron Cacas-Kayla Blake-Bradford English-Ashlyn Gere-Jeanne Basone-Doreen Foo Croft-Christa Connor-Anne Lockhart-Patricia Anne Isgate-Hayward-Ken Liebenson-Lindy Rasmusson-Byron Berline-Eddie Dunbar-Tom McKibbin-Julia Bond-Dave LaBrucherie-Pui Fan Lee-Andy Rolfes-Bob Sallese-Theodore Carl Soderberg-Damon Stout-Chase Watson,california-sexual obsession-san francisco california-detective-jealousy-eroticism-suspicion of murder-bisexuality-dying and death-dangerous-lover-striptease-sadism-police-psychopath-celebrity-femme fatale-sociopath-dead-neo-noir-erotic thriller-manipulative woman-novel writing-killed during sex,/76Ts0yoHk8kVQj9MMnoMixhRWoh.jpg,/7FRraud59N3s10bbf9bfYjvwx3v.jpg,813257-3093-62568-24963-15395-10998-407-861-5503-8984-2649-957606-400-17422-10068-5548-1813-36955-9326-14-345 +392044,Murder on the Orient Express,Drama-Mystery-Crime,en,Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.,40.764,The Mark Gordon Company-Scott Free Productions-Genre Films-20th Century Fox,11/3/17,55000000,352794081,114,Released,Everyone is a suspect,6.705,9188,Kenneth Branagh-Tom Bateman-Michelle Pfeiffer-Johnny Depp-Josh Gad-Willem Dafoe-Judi Dench-Derek Jacobi-Leslie Odom Jr.-Daisy Ridley-Pen��lope Cruz-Olivia Colman-Lucy Boynton-Marwan Kenzari-Manuel Garcia-Rulfo-Sergei Polunin-Miranda Raison-Phil Dunster-Hayat Kamille-Joseph Long-Gerard Horan-Rami Nasr-Adam Garcia-Ziad Abaza-Asan N'Jie-Ekran Mustafa-Andy Apollo-Sid Sagar-Michael Rouse-Matthew Hawksley-Kate Tydman-Pip Jordan-Yasmin Harrison-Jack Riddiford-Hadley Fraser-Maxime Durand-Yassine Zeroual,venice italy-detective-based on novel or book-europe-professor-orient express-knife-investigation-princess-remake-murder-snow-whodunit-train-stabbing-alps mountains-murder mystery-1930s-steam train,/kc2gJjebceoFgOQbukzPzP8SXVZ.jpg,/2J283YNxKhxAqHeVegUJ5mzLfGb.jpg,776182-505026-353486-141052-343668-316029-181808-399055-259316-359940-166426-406997-284053-118-374720-399404-904551-446354-754721-723567-354912 +710,GoldenEye,Adventure-Action-Thriller,en,When a powerful satellite system falls into the hands of Alec Trevelyan AKA Agent 006 a former ally-turned-enemy only James Bond can save the world from a dangerous space weapon that -- in one short pulse -- could destroy the earth! As Bond squares off against his former compatriot he also battles Xenia Onatopp an assassin who uses pleasure as her ultimate weapon,22.872,Eon Productions-United Artists,11/16/95,58000000,352194034,130,Released,No limits. No fears. No substitutes.,6.9,3377,Pierce Brosnan-Sean Bean-Izabella Scorupco-Famke Janssen-Joe Don Baker-Judi Dench-Robbie Coltrane-Tch��ky Karyo-Gottfried John-Alan Cumming-Desmond Llewelyn-Samantha Bond-Michael Kitchen-Serena Gordon-Simon Kunz-Pavel Douglas-Olivier Lajous-Billy J. Mitchell-Constantine Gregory-Minnie Driver-Michelle Arthur-Ravil Isyanov-Vladimir Milanovich-Trevor Byfield-Peter Majer-Kate Gayson-Simone Bechtel,cuba-falsely accused-secret identity-computer virus-secret base-secret intelligence service-kgb-satellite-special car-cossack-electromagnetic pulse-time bomb-st. petersburg russia-red army,/z0ljRnNxIO7CRBhLEO0DvLgAFPR.jpg,/5jVWJiPpmk216Q7vjjlwNXXE6ee.jpg,714-36669-36643-709-708-700-698-681-699-682-658-253-646-707-691-657-660-667-668-36670-10764 +640,Catch Me If You Can,Drama-Crime,en,A true story about Frank Abagnale Jr. who before his 19th birthday successfully conned millions of dollars worth of checks as a Pan Am pilot doctor and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture he revels in the pursuit.,68.168,Parkes/MacDonald Productions-Kemp Company-Splendid Pictures,12/16/02,52000000,352114312,141,Released,The true story of a real fake.,7.966,14082,Leonardo DiCaprio-Tom Hanks-Christopher Walken-Martin Sheen-Nathalie Baye-Amy Adams-James Brolin-Jennifer Garner-Chris Ellis-Brian Howe-Steve Eastin-John Finn-Elizabeth Banks-Ellen Pompeo-Guy Thauvette-Kitty Carlisle-Kelly McNair-Sarah Rush-Jasmine Jessica Anthony-Celine du Tertre-Frank John Hughes-Nancy Lenehan-Candice Azzara-Kaitlin Doubleday-Matthew Kimbrough-Joshua Boyd-Jonathan Dankner-Maggie Mellin-Thomas Kopache-Margaret Travolta-Jimmie F. Skaggs-Alex Hyde-White-Lilyan Chauvin-Eugene Fleming-Robert Ruth-Jennifer Manley-James Morrison-Robert Symonds-Jennifer Kan-Robert Curtis Brown-Kelly Hutchinson-Steve Witting-Wendy Worthington-Jane Bodle-J. Patrick McCormack-Brian Goodman-Ray Proscia-Sarah Lancaster-Jill Matson-Mike Baldridge-Joel Ewing-Ritchie Montgomery-Jim Antonio-Angela Sorensen-Jonathan Brent-Benita Krista Nall-Shane Edelman-Andrew Meeks-Morgan Rusler-Jane Edith Wilson-Dave Hager-Kyle Davis-Patrick Thomas O'Brien-Jaime Ray Newman-Deborah Kellner-Mercedes Cornett-Amy Acker-Robert Peters-James DuMont-Thomas Crawford-Malachi Throne-Alfred Dennis-Max Kerstein-Donna Kimball-Jan Munroe-Stephen Dunham-Brandon Keener-Anthony Powers-Lauren Cohn-Jeremy Howard-Jack Knight-Jamie Anderson-Kam Heskin-Ana Maria Quintana-Gerald R. Molen-Stan Bly-Jamie Moss-Jessica Collins-Frank Abagnale Jr.-Roger L��ger-Jean-Fran�_ois Blanchard-Mathieu Gaudreault-Guy-Daniel Tremblay-Alex Bisping-Patrice Dussault-Paul Todd-Jake Wagner-Ashley Cohen-Kelly Cohen-Ellis Hall-Steven Meizler-Fred Datig-Joe Garagiola-Dominic Bond-Jean-Fran�_ois Brousseau-Francis Campeau-Rapha�l Cardin-Marc-Antoine C��t��-Antoine Drolet-Dumoulin-L��on Dussault-Gagn��-Simon Houle-Gauthier-Vincent G��n��reux-S��bastien Jean-Pascal Larouche-William Lauzon-Florent Legault-Jason McNally-Julien Normandeau-David Parent-Lalibert��-Alexandre Pepin-Nicolas Radeschi-Jonathan Ren��-Samuel St-Amour-Jesse Heiman-Ryan Izay-Nick Zano-Nicole Andrews-Evis Xheneti-Gina Aponte,fbi-con man-biography-based on true story-attempted jailbreak-engagement party-mislaid trust-bank fraud,/ctjEj2xM32OvBXCq8zAdK3ZrsAj.jpg,/Ag6qhzsJd3k1NKuNrG9RmhZDMh7.jpg,11324-1422-106646-857-8358-13-1372-37165-594-745-16869-64682-1124-497-489-597-807-2567-24-68718-393 +615656,Meg 2: The Trench,Action-Science Fiction-Horror,en,An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.,8763.998,Apelles Entertainment-Warner Bros. Pictures-di Bonaventura Pictures-CMC Pictures-Gravity Pictures-China Film Group Corporation,8/2/23,129000000,352056482,116,Released,Back for seconds.,7.079,1365,Jason Statham-Wu Jing-Shuya Sophia Cai-Sergio Peris-Mencheta-Skyler Samuels-Cliff Curtis-Page Kennedy-Sienna Guillory-Melissanthi Mahut-Kiran Sonia Sawar-Felix Mayr-Whoopie van Raam-Guo Tao-Robin Hill-Dai Lele-Sui Fong Ivy Tsui-Stewart Alexander-Li Xin-Billy Clements-Ron Smoorenburg-Rui Shang-Sara Dee-Jonny James-Bai Narisu-Kenneth Won-Able Wanamakok,based on novel or book-sequel-kaiju,/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg,/qlxy8yo5bcgUw2KAmmojUKp4rHd.jpg,1006462-298618-569094-1061181-346698-1076487-616747-1083862-614930-1003581-980489-614479-1040148-872585-57084-667538-1149381-457332-724209-884605 +75656,Now You See Me,Thriller-Crime,en,An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.,54.155,Summit Entertainment-K/O Paper Products-SOIXAN7E QUIN5E-See Me Louisiana,5/29/13,75000000,351723989,116,Released,4 amazing magicians. 3 impossible heists. 1 billion dollars. This is no illusion.,7.3,14308,Woody Harrelson-Morgan Freeman-Jesse Eisenberg-Isla Fisher-Mark Ruffalo-M��lanie Laurent-Dave Franco-Michael Caine-Michael Kelly-Justine Wachsberger-Common-David Warshofsky-Kerry Cahill-Jos�� Garcia-Caitr�_ona Balfe-Jessica Lindsey-Stephanie Honor��-Elias Koteas-Odessa Feaster-Diego Mir�_-Conan O'Brien-Joe Chrest-David Joseph Martinez-Anthony Molinari,paris france-new york city-bank-fbi-vault-magic-new orleans louisiana-investigation-heist-conspiracy-money-escape-las vegas-magician,/tWsNYbrqy1p1w6K9zRk0mSchztT.jpg,/xEY0MV2jSQBz9iOJfCFvLTiPGMA.jpg,291805-101299-70160-131631-207703-18785-240832-198663-72105-157350-12444-72190-49521-6479-131634-10528-12445-767-118-68721-1865 +9740,Hannibal,Crime-Drama-Thriller,en,After having successfully eluded the authorities for years Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he's discovered leaving a deserving few dead in the process. He returns to America to make contact with now disgraced Agent Clarice Starling who is suffering the wrath of a malicious FBI rival as well as the media.,6.614,Dino De Laurentiis Company-Universal Pictures-Scott Free Productions-Metro-Goldwyn-Mayer,2/8/01,87000000,351692268,131,Released,"His genius undeniable. His evil, unspeakable.",6.762,4113,Anthony Hopkins-Julianne Moore-Gary Oldman-Ray Liotta-Giancarlo Giannini-Zeljko Ivanek-Frankie Faison-Francesca Neri-Hazelle Goodman-David Andrews-Francis Guinan-James Opher-Enrico Lo Verso-Ivano Marescotti-Fabrizio Gifuni-Alex Corrado-Marco Greco-Robert Rietti-Terry Serpico-Boyd Kestner-Peter Shaw-Kent Linville-Don McManus-Harold Ginn-Ted Koch-William Powell-Blair-Aaron Craig-Andrea Piedimonte-Ennio Coltorti-Mark Margolis-Ajay Naidu-Kelly Piper-Judie Aronson-Derrick Simmons-Chuck Jeffreys-Gano Grills-Giannina Facio-Renne Gjoni-Roberta Armani,venice italy-fbi-serial killer-cannibal-aftercreditsstinger,/v5wAZwRqpGWmyAaaJ8BBHYuNXnj.jpg,/i2nmKc0xqj4E4g1RiwXaQagNfsa.jpg,9533-1248-274-1041681-48171-832544-11454-646389-6145-20662-9481-4982-217-9705-11322-604-3021-98-187-1573-605 +854,The Mask,Romance-Comedy-Crime-Fantasy,en,When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki his entire life changes. While wearing the mask Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately under the mask's influence Ipkiss also robs a bank which angers junior crime lord Dorian Tyrell whose goons get blamed for the heist.,47.766,Dark Horse Entertainment-New Line Cinema,7/29/94,23000000,351583407,101,Released,From zero to hero.,6.922,8964,Jim Carrey-Cameron Diaz-Peter Riegert-Peter Greene-Amy Yasbeck-Richard Jeni-Orestes Matacena-Tim Bagley-Nancy Fish-Johnny Williams-Reg E. Cathey-Jim Doughan-Denis Forest-Joseph Alfieri-B.J. Barie-Catherine Berge-Philip Boardman-Krista Buonauro-Debra Casey-Blake Clark-Christopher Darga-Suzanne Dunn-Joely Fisher-Kevin Grevioux-Peter Jazwinski-Howard Kay-Robert Keith-Beau Lotterman-Scott McElroy-Richard Montes-Ivory Ocean-Robert O'Reilly-Louis Ortiz-Daniel James Peterson-Jeremy Roberts-Eamonn Roche-Randi Ruimy-Ben Stein-Nils Allen Stewart-Chris Taylor-Bullet Valmont-Wendy L. Walsh-Meadow Williams-Anne Fletcher-Garret Sato,dual identity-bank-mockery-villain-transformation-slapstick comedy-superhero-based on comic-surrealism-balloon-dog-urban setting-jail cell-wisecrack humor-super villain-norse mythology-supernatural power-the mask,/xbbXp9px4o8Oe7IbGd0yIbla8mZ.jpg,/bdhA6nWf5IIyfiGjdegYPu0iK9e.jpg,310-8467-1624-3049-1593-10214-9273-771-772-607-10201-808-8844-2123-809-608-8871-1597-18360-810-118 +381719,Peter Rabbit,Animation-Adventure-Family,en,Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.,20.197,Columbia Pictures-Animal Logic-2.0 Entertainment-Olive Bridge Entertainment-Screen Australia-Screen NSW-Sony Pictures Animation,2/7/18,50000000,351266433,93,Released,Who said the countryside was peaceful?,6.7,1545,James Corden-Rose Byrne-Margot Robbie-Sam Neill-Domhnall Gleeson-Daisy Ridley-Elizabeth Debicki-Sia-Felix Williamson-Fayssal Bazzi-Ewen Leslie-Rachel Ward-Bryan Brown-David Wenham-Fletcher Sheridan-Marianne Jean-Baptiste-Terenia Edwards-Colin Moody-Christian Gazal-Alexandra Gluck-Taryn Gluck-Will Reichelt-Jessica Freedman-Shana Halligan-Katharine Hoye-Chris Mann-Chad Reisser-Vauxhall Jermaine,human animal relationship-based on children's book-rabbit-duringcreditsstinger-live action and animation-peter rabbit-food allergies,/cBWtdp8mgce4QQkH697LpaL0Iik.jpg,/1wj8H9gdtkb98Tl3zu0hrHfW0qw.jpg,77859-957997-77900-116776-522478-729700-855397-312966-364689-165864-346648-370567-400155-284019-387592-378236-72197-268531-445571-136799-374853 +64682,The Great Gatsby,Drama-Romance,en,An adaptation of F. Scott Fitzgerald's Long Island-set novel where Midwesterner Nick Carraway is lured into the lavish world of his neighbor Jay Gatsby. Soon enough however Carraway will see through the cracks of Gatsby's nouveau riche existence where obsession madness and tragedy await.,40.489,Village Roadshow Pictures-Warner Bros. Pictures-Bazmark Films-Red Wagon Entertainment-Spectrum Films-A+E Studios,5/10/13,105000000,351040419,143,Released,Reserving judgments is a matter of infinite hope... I come to the admission that it has a limit.,7.381,11084,Leonardo DiCaprio-Tobey Maguire-Carey Mulligan-Joel Edgerton-Elizabeth Debicki-Isla Fisher-Jason Clarke-Amitabh Bachchan-Callan McAuliffe-Adelaide Clemens-Steve Bisley-Richard Carter-Jack Thompson-Vince Colosimo-Max Cullen-Mal Day-Charlize Skinner-Brendan Maclean-Kate Mulvany-Kahlia Greksa-Garrett William Fountain-David Furlong-Daniel Gill-Iota-Barry Otto-John O'Connell-Ben McIvor-Brian Rooney-Gemma Ward-Goran D. Kleut-Denning Isles-Ryan Cooper-Kate Rutherford-Heather Mitchell-Nick Tate,based on novel or book-infidelity-obsession-hope-long island new york-1920s,/nimh1rrDDLhgpG8XAYoUZXHYwb6.jpg,/tb440cwQMRoVHnhYJlzlxfv1ikm.jpg,106646-640-597-11324-454-1422-4922-68718-118-82693-1907-281957-4148-266856-350-2567-27205-1372-120467-162-37799 +1637,Speed,Action-Adventure-Crime,en,Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows it will blow bad enough any day but a nightmare in LA traffic. And that's still not the end.,36.404,20th Century Fox-The Mark Gordon Company,6/9/94,30000000,350448145,116,Released,Get ready for rush hour.,7.1,5301,Keanu Reeves-Sandra Bullock-Dennis Hopper-Jeff Daniels-Joe Morton-Alan Ruck-Glenn Plummer-Richard Lineback-Beth Grant-Hawthorne James-Carlos Carrasco-David Kriegel-Natsuko Ohama-Daniel Villarreal-Simone Gad-Loretta Jean-Sherri Villanueva-Margaret Medina-Jordan Lund-Robert Mailhouse-Patrick Fischler-Patrick John Hurley-Susan Barnes-Rick Dano-Michael Sottile-Jane Crawley-Anne O'Sullivan-Beau Starr-John Capodice-Thomas Rosales Jr.-James DuMont-Antonio Mora-Patty Toy-Todd Gordon-Bruce Wright-Mark Kriski-Dagny Hultgreen-Richard Schiff-Joseph Carberry-Sandy Martin-Neisha Folkes-LeMelle-Jim Mapp-Milton Quon-Sonia Jackson-Carmen Williams-Paula Montes-Loyda Ramos-Julia Vera-Marylou Lim-Brian K. Grant-Barry Kramer-Robin McKee-Paige Goodman-Christina Fitzgerald-Tara Thomas-Cece Tsou-Michael N. Fujimoto-Richard Gelb-Veronica Cartwright-Scott Wilder,bomb-airport-bus-bus ride-highway-bomb planting,/xKxYPmN4ZVHbNbmgm1ya2ivBn2P.jpg,/bWjvYgY2kfhnfzvEDk96yiCz2oJ.jpg,1639-754-861-1701-36955-9802-602-563-5503-664-942-876572-8467-5548-1089-941-1493-4108-1572-854-544 +153518,The Angry Birds Movie,Animation-Adventure-Comedy,en,An island populated entirely by happy flightless birds or almost entirely. In this paradise Red a bird with a temper problem speedy Chuck and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies it��s up to these unlikely outcasts to figure out what the pigs are up to.,42.821,Columbia Pictures-Rovio Entertainment-Rovio Animation,5/11/16,73000000,349779543,97,Released,Why so angry?,6.2,3191,Jason Sudeikis-Josh Gad-Danny McBride-Maya Rudolph-Bill Hader-Peter Dinklage-Sean Penn-Keegan-Michael Key-Kate McKinnon-Tony Hale-Hannibal Buress-Ike Barinholtz-Tituss Burgess-Ian Hecox-Anthony Padilla-Jillian Bell-Billy Eichner-Danielle Brooks-Blake Shelton-Charli XCX-Romeo Santos-Cristela Alonzo-Adam Brown-Ava Acres-Geoffrey Arend-Malena Brewer-Catherine Winder-Alex Borstein-John Cohen-Max Charles-Clay Kaytis-Matthew J. McCarthy-Vincent Oswald-Fergal Reilly-Samantha Cohen-Kevin Bigley-Maddie Taylor-Josh Robert Thompson-Ali Wong-Mckenna Grace-Bella Lardieri-Aidan McGraw-Fred Tatasciore-Eileen Marra-Indra Raval-Joaquin Raval-Sofie Wolfe-Judah Friedlander,island-pig-rivalry-anthropomorphism-based on video game-duringcreditsstinger-anger management-animal kingdom,/nsaaZryqabtrdKwXcNud2Bm39mu.jpg,/o4mhrLxv6I70kvYA42qANGUF7ya.jpg,892409-454640-651166-929472-140300-328111-278154-136799-332210-127380-159824-278927-172385-270946-257344-68735-228161-308531-258509-105864-378236 +8656,Deep Impact,Action-Drama-Science Fiction,en,A seven-mile-wide space rock is hurtling toward Earth threatening to obliterate the planet. Now it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile an enterprising reporter uses her smarts to uncover the scoop of the century.,37.202,Paramount-DreamWorks Pictures-Zanuck/Brown Productions-Manhattan Project,5/8/98,75000000,349464664,120,Released,Oceans Rise. Cities Fall. Hope survives.,6.2,2562,Robert Duvall-T��a Leoni-Elijah Wood-Vanessa Redgrave-Morgan Freeman-Maximilian Schell-Leelee Sobieski-James Cromwell-Jon Favreau-Laura Innes-Mary McCormack-Richard Schiff-Blair Underwood-Charles Martin Smith-Una Damon-Dougray Scott-Derek de Lint-Suzy Nakamura-Alimi Ballard-W. Earl Brown-Denise Crosby-Jason Dohring-Tucker Smallwood-Mike O'Malley-Kurtwood Smith-Ron Eldard-Merrin Dungey-Gary Werntz-Bruce Weitz-Betsy Brantley-O'Neal Compton-Rya Kihlstedt-Aleksandr Baluev-Caitlin Fein-Amanda Fein-Mark Moses-Charles Dumas-Katie Hagan-Hannah Leder-Kimberly Huie-William Fair-Ellen Bry-Lisa Ann Grant-Concetta Tomei-Charlie Hartsock-Don Handfield-Cynthia Ettinger-Jennifer Jostyn-Stephanie Patton-Michael Winters-Sommer Garcia-Mic Rodgers-Thomas Rosales Jr.-Shannon Frank,usa president-nasa-metereologist-space mission-comet-natural disaster-tsunami-astronomer-astronaut-tidal wave-woman director-disaster movie,/a3vQS7JKqlOb3MdVJHuTCP9s7Mg.jpg,/w53FK3MoMLavk1sxErUiGMnLpf2.jpg,221518-664-9341-9619-736545-95-435-379880-10357-929-9772-2157-602-10153-9268-9208-74-6950-8487-9739-1701 +400650,Mary Poppins Returns,Fantasy-Family-Comedy,en,Mary Poppins returns to the Banks family and helps them evade grave dangers by taking them on magical musical adventures.,22.555,Walt Disney Pictures-Marc Platt Productions-Lucamar Productions,12/13/18,130000000,348807090,131,Released,Magic Always Returns.,6.5,2969,Emily Blunt-Ben Whishaw-Emily Mortimer-Pixie Davies-Nathanael Saleh-Lin-Manuel Miranda-Joel Dawson-Julie Walters-Meryl Streep-Colin Firth-Jeremy Swift-Kobna Holdbrook-Smith-Dick Van Dyke-Angela Lansbury-David Warner-Jim Norton-Noma Dumezweni-Tarik Frimpong-Sudha Bhuchar-Steve Nicolson-Christian Dixon-Christopher Godwin-John Dagleish-Karen Dotrice-Ian Conningham-Billy Barratt-Felix Collar-Kate Attwell-Chris O'Dowd-Mark Addy-Edward Hibbert-Jon-Scott Clark-Calvin Chen-Craig Stein-Leon Cooke-Alex Sturman-Tara Nicole Hughes-Johanna Thea-Jag Patel-Nina Kumar-David Gambier-Jeremy Azis-Bern Colla�_o-Steve Carroll-Martyn Mayger-Fran Targ-Raj Awasti-Ash-Shay Barclay-Ashley Birchall-Michael Carroll-Jack Harrison-Cooper-Sean Corrie-Momar Diagne-Antony Edwards-Aston Newman Hannington-Jake Moyle-Marlon Pelayo-James Revell-Charles Ruhrmund-Christopher Scott-Zac Smith-Johnny White-Jahrel Thomas-Teneisha Bonner-Lavinia Fitzpatrick-Hannah Kenna-Thomas-Jennifer Leung-Rachel Muldoon-Cassie Rogers-Lorraine Stewart-Antonio Raul Corbo-Johnny Bishop,london england-based on novel or book-nanny-magic-musical-sequel-family relationships-animated scene-female protagonist-housekeeper-family-discipline-depression era-live action and animation-1930s,/uTVGku4LibMGyKgQvjBtv3OYfAX.jpg,/oGzToOBTRdXVOrHj8r0VgK3d2sU.jpg,433-708510-602495-106006-54793-473553-512218-404368-368186-13141-572125-426543-448446-557648-250777-45759-573921-113529-297802-420814-576697 +73723,The Lorax,Animation-Family,en,A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax the grumpy yet charming creature who fights to protect his world.,73.291,Universal Pictures-Illumination-dentsu-Comcast-Hell,3/1/12,70000000,348800000,86,Released,Meet the original force of nature.,6.493,3364,Danny DeVito-Ed Helms-Zac Efron-Rob Riggle-Taylor Swift-Jenny Slate-Betty White-Nasim Pedrad-Joel Swetow-Michael Beattie-Elmarie Wendel-Dave B. Mitchell-Dempsey Pappion-Danny Cooksey-Stephen Tobolowsky-Chris Renaud-Sherry Lynn-Mickie McGowan-Jack Angel-Bob Bergen-Debi Derryberry-Danny Mann-Fletcher Sheridan-John Cygan-Bill Farmer-Jess Harnell-Mona Marshall-Laraine Newman-Jan Rabson-Claira Nicole Titman-Jim Ward,aftermath-tree-musical-family business -money-tragic villain-consumerism-air-based on children's book-animal killing-walled city-reforestation-tree cutting-mad family-clothes factory-meme-social-abused child-illumination-singing animals-fish trio-biggering-unless,/tePFnZFw5JvjwjQjaKkqDPNMLPU.jpg,/tsku2v6q5fd5DOOF53Kmzetu322.jpg,44896-46195-38055-13053-70160-62177-80321-82881-953-41513-5559-17578-12222-808-920-10191-120-45772-11036-22794-16996 +198663,The Maze Runner,Action-Mystery-Science Fiction-Thriller,en,Set in a post-apocalyptic world young Thomas is deposited in a community of boys after his memory is erased soon learning they're all trapped in a maze that will require him to join forces with fellow ���runners�� for a shot at escape.,110.595,20th Century Fox-Ingenious Media-Gotham Group-Dayday Films-Temple Hill Entertainment-TSG Entertainment,9/10/14,34000000,348319861,113,Released,Remember. Survive. Run.,7.17,15343,Dylan O'Brien-Kaya Scodelario-Ki Hong Lee-Aml Ameen-Blake Cooper-Thomas Brodie-Sangster-Will Poulter-Dexter Darden-Chris Sheffield-Joe Adler-Alexander Flores-Jacob Latimore-Randall D. Cunningham-Patricia Clarkson-Don McManus-Michael Bow-Jerry Clark-Michael Deville-Dylan Gaspard-Cory Gooding-Cazi Greene-Dustin Guitreau-Tyler Harrison-Landon Hazel-Gary Hood-Nick Killebrew-John Langston-Chad Martinez-Lester Millet-Sawyer Pierce-Weston Rachal-Bryce Romero-Johnny Stockwell-SanChavis Torns-Lane Westerhaus-Gentry Williams-Adriana Acosta-Duane Cothren-James Dashner-Mark Gibson-Darryl Harvey-Janet L'Aube-Travis Michael Myers-Zach Nichols-Tommy Sheppard-Andrew Varenhorst-Carol Jean Wells-Jeff Wiesen,based on novel or book-maze-post-apocalyptic future-dystopia-escape-memory loss-erased memory-trapped-runner-based on young adult novel,/ode14q7WtDugFDp78fo9lCsmay9.jpg,/vHJlbhsXrZ5yrO2KqCbGSIU6fRX.jpg,294254-336843-131631-157350-262500-101299-131634-240832-102651-122917-70160-109445-135397-127585-118340-177572-12445-119450-12444-672-675 +43956,Tom and Jerry Meet Sherlock Holmes,Family-Animation-Adventure-Comedy,en,Tom and Jerry need to learn to work together in order to help Sherlock Holmes with an investigation of a jewel theft. But still they are cat and mouse!,12.949,Warner Bros. Animation,8/24/10,35770488,347988775,49,Released,,6.6,63,Michael York-Malcolm McDowell-John Rhys-Davies-Billy West-Grey DeLisle-Phil LaMarr-Kath Soucie-Jeff Bergman-Greg Ellis-Jess Harnell-Richard McGonagle,london england-england-detective-cartoon-anthropomorphism-animal-sherlock holmes,/8TAd3Cky2D8dHzWIirna1IHa2N3.jpg,/8rrUYhHEq3KKWP0kZjl0OaBm3D2.jpg,24696-14787-403850-343977-42246-661728-42313-5917-104711-405204-184352 +2059,National Treasure,Adventure-Action-Thriller-Mystery,en,Modern treasure hunters led by archaeologist Ben Gates search for a chest of riches rumored to have been stashed away by George Washington Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence and Gates is in a race to find the gold before his enemies do.,34.916,Walt Disney Pictures-Jerry Bruckheimer Films-Saturn Films-Junction Entertainment,11/19/04,100000000,347512318,131,Released,The greatest adventure history has ever revealed.,6.608,5860,Nicolas Cage-Diane Kruger-Justin Bartha-Sean Bean-Jon Voight-Harvey Keitel-Christopher Plummer-David Dayan Fisher-Stewart Finlay-McLennan-Oleg Taktarov-Stephen A. Pope-Annie Parisse-Mark Pellegrino-Armando Riesco-Erik King-Don McManus-Ron Canada-Hunter Gomez-Deborah Yates-Arabella Field-Sharon Wilkins-Alexandra Balahoutis-Dior Raye-Yves Michel-Beneche-Jason Earles-Terrence Currier-Rod McLachlan-Elizabeth Greenberg-Jody Halse-Liam Noble-Joshua Bitton-Michael Russo-Fern D. Baguidy Jr.-Thomas Q. Morris-Antony Alda-John Travis-Heidi Albertsen-Adriana Alveario,new york city-philadelphia pennsylvania-riddle-washington dc usa-treasure-translation-expedition-secret society-constitution-wall street-historical figure-treasure hunt-historical fiction-church-archaeologist-based on myths legends or folklore-revolutionary war-father son conflict-father son relationship-decipher-archaeology-declaration of independence-secret history-hidden clues-arctic circle,/pxL6E4GBOPUG6CdkO9cUQN5VMwI.jpg,/xXWT0je8dTFFNBq6P2CeTZkPUu2.jpg,6637-1250-9679-1734-1593-27022-9738-1701-754-564-1735-13811-8960-591-217-1979-9802-435-74-9654-254 +77931,The Smurfs 2,Fantasy-Family-Comedy-Animation,en,The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs Gargamel kidnaps Smurfette and brings her to Paris where he has been winning the adoration of millions as the world�_s greatest sorcerer. It's up to Papa Clumsy Grouchy and Vanity to return to our world reunite with their human friends Patrick and Grace Winslow and rescue her! Will Smurfette who has always felt different from the other Smurfs find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?,28.639,Columbia Pictures-Sony Pictures-Sony Pictures Animation-Kerner Entertainment Company-Hemisphere Media Capital-NeoReel,7/30/13,105000000,347434178,105,Released,Get ready to get naughty!,5.8,1939,Hank Azaria-Neil Patrick Harris-Jayma Mays-Brendan Gleeson-Katy Perry-Jacob Tremblay-Nancy O'Dell-Karim Babin-Gaston Morrison-Jocelyn Blanchard-Erika Rosenbaum-Carolina Bartczak-James A. Woods-Henri Pardo-Vanessa Matsui-Dusan Dukic-Ruth Chiang-Andy Quesnel-Myl��ne Dinh-Robic-Martin-Guy B��langer-Robert Reynaert-Patrick Sabongui-Martin St-Antoine-Patrick Baby-Joshua Spreekmeester-Bruno Paviot-Gunther Love-Ga�lle Pietri-Janicke Askevold-Beatrice Rosen-Mathilde Snodgrass-Mr. Krinkle-Hank-Christina Ricci-Jonathan Winters-J.B. Smoove-George Lopez-Anton Yelchin-John Oliver-Frank Welker-Tom Kane-Fred Armisen-Jeff Foxworthy-Alan Cumming-Gary Basaraba-Adam Wylie-Joel McCrary-Kenan Thompson-Kevin Lee-Paul Reubens-Shaquille O'Neal-B. J. Novak-Jimmy Kimmel-Shaun White-Mario L�_pez-John Kassir-Sean Kenin-Patricia Summersett,based on cartoon,/4zu8hbjp7bedcbetQssylLhpguk.jpg,/aIyvMthA7UGV6ix6AUUM88ZXfeU.jpg,41513-137116-55301-23398-172385-77950-6477-109451-49519-661095-151960-51170-80321-50359-7484-10527-46195-93456-10192-116711-22794 +5175,Rush Hour 2,Action-Comedy-Crime,en,It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing the counterfeiting and the true allegiance of sexy customs agent Isabella.,44.304,New Line Cinema,8/3/01,90000000,347325802,90,Released,Get ready for a second Rush!,6.696,3432,Jackie Chan-Chris Tucker-John Lone-Zhang Ziyi-Roselyn S��nchez-Alan King-Harris Yulin-Kenneth Tsang-Lisa LoCicero-Meiling Melan�_on-Maggie Q-Lucy Lin-Cindy Lu-Audrey Quock-Ernie Reyes Jr.-Jeremy Piven-Verena Mei-Joel McKinnon Miller-Angela Little-Julia Schultz-Saul Rubinek-Gianni Russo-Michael Chow-Teresa Lin-Tanya Newbould-Don Cheadle-Andy Cheng-Simon Rhee-Patricia Chan-Gelbert Coloma-William Duen-James Duke-Mars-Bradley James Allan-James Lew-Roger Lim,martial arts-los angeles california-criminal investigation-interracial friendship-buddy cop-duringcreditsstinger-action hero-good versus evil,/aBQf2vMiCINeVC9v6BGVYKXurTh.jpg,/zzFTSEAZcLGSbGipQVflSNUqpij.jpg,5174-2109-6038-8584-8961-9737-10771-10610-10204-4108-23172-10622-1729-9335-38575-36955-8697-9404-25676-42580-90 +2048,"I, Robot",Action-Science Fiction,en,In 2035 where robots are commonplace and abide by the three laws of robotics a technophobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death his investigation leads him to believe that humanity may be in danger.,33.634,Davis Entertainment-Laurence Mark Productions-Canlaws Productions-20th Century Fox-Overbrook Entertainment-Mediastream Vierte Film GmbH & Co. Vermarktungs KG,7/15/04,120000000,347234916,115,Released,One man saw it coming,6.9,11181,Will Smith-Bridget Moynahan-Alan Tudyk-James Cromwell-Bruce Greenwood-Shia LaBeouf-Chi McBride-Jerry Wasserman-Peter Shinkoda-Terry Chen-David Haysom-Scott Heindl-Adrian Ricard-Fiona Hogan-Sharon Wilkins-Craig March-Darren Moore-Emily Tennant-Tiffany Lyndall-Knight-Aaron Douglas-Angela Moore,chicago illinois-future-man vs machine-hero-artificial intelligence (a.i.)-based on novel or book-grandparent grandchild relationship-homicide-detective-dystopia-hologram-murder-robot as menace-car accident-robot-grandmother-robotics-humanoid robot-talking robot-self-driving car-homicide investigation-2030s-robot companion-old robot-new robot,/efwv6F2lGaghjPpBRSINHtoEiZB.jpg,/lOXVbF2mBK0xUt8sLInF3TIk5YS.jpg,6479-607-608-602-8960-1071170-41154-605-1858-604-9738-558-180-8373-557-310-425-534-1271-285-564 +136799,Trolls,Family-Animation-Fantasy-Adventure-Comedy-Music,en,Lovable and friendly the trolls love to play around. But one day a mysterious giant shows up to end the party. Poppy the optimistic leader of the Trolls and her polar opposite Branch must embark on an adventure that takes them far beyond the only world they��ve ever known.,49.736,DreamWorks Animation,10/13/16,125000000,346864462,92,Released,Find your happy place.,6.7,3170,Anna Kendrick-Justin Timberlake-Zooey Deschanel-Russell Brand-James Corden-Gwen Stefani-Iris Dohrn-Liam Henry-Aino Jawo-Caroline Hjelt-Ron Funches-Kunal Nayyar-Glozell Green-Meg DeAngelis-Ricky Dillon-Kandee Johnson-Christine Baranski-John Cleese-Christopher Mintz-Plasse-Walt Dohrn-Jeffrey Tambor-Quvenzhan�� Wallis-Rhys Darby-Grace Helbig-Curtis Stone-Mike Mitchell-Nina Zoe Bakshi-Zo� Crawford-Riley Crawford-Ollie Mitchell-Emmett Mitchell-Phoebe Dohrn-Um Sang-hyun,based on toy-troll,/zKu5MNy9QW1a5ZHgv7iAp3kRZpE.jpg,/gWCWHybWuVg3GmZpdY8qWGb85HR.jpg,484510-332210-335797-892409-277834-326911-328111-153518-295693-446893-651166-278154-228161-525702-127380-140300-159824-378236-172385-49519-77950 +47971,xXx: Return of Xander Cage,Action-Adventure-Crime,en,Extreme athlete turned government operative Xander Cage comes out of self-imposed exile thought to be long dead and is set on a collision course with deadly alpha warrior Xiang and his team in a race to recover a sinister and seemingly unstoppable weapon known as Pandora's Box. Recruiting an all-new group of thrill-seeking cohorts Xander finds himself enmeshed in a deadly conspiracy that points to collusion at the highest levels of world governments.,125.625,Rox Productions-Revolution Studios-Maple Cage Productions-Huahua Media-Roth-Kirschenbaum Films-Shanghai Film Group-One Race-Paramount,1/13/17,85000000,346147658,107,Released,"There are no more patriots, just rebels and tyrants.",6.139,8586,Vin Diesel-Donnie Yen-Ruby Rose-Toni Collette-Samuel L. Jackson-Ice Cube-Rory McCann-Nina Dobrev-Deepika Padukone-Tony Jaa-Kris Wu-Hermione Corfield-Michael Bisping-Shawn Roberts-Tony Gonzalez-Ariadna Guti��rrez-Andrey Ivchenko-Nicky Jam-Neymar Jr-Al Sapienza-Helena-Alexis Seymour-Megan Soo-Kristen Kurnik-Bailey Rose King-Pilar Cruz-Charles Carroll-H��ctor An�_bal-Curtis Fletcher-Terry Chen-Jenny Itwaru-Julie Abcede-Josh Pagcaliwangan-Nyjah Huston-Roberta Mancino-Nina Buitrago-Dani Lightningbolt-Courtney Friel-Jelena Saviۈ-Glorianna Sulbaran-Rebecca Leung-Daniel Kash,airplane-tattoo-spy-extreme sports-parachute-secret agent-swimming pool-sequel-back from the dead-dominican republic-free fall,/hba8zREJpP1AYhaXgb2oJLQeO0K.jpg,/4QLdZ2A8mkDWp2rpfgDrwmeCtUW.jpg,1015606-8965-43641-899082-635744-433460-125521-101180-38554-388523-40721-38931-89403-120657-503210-152736-143901-378142-43311-163521-454181 +10530,Pocahontas,Adventure-Animation-Family-Romance,en,Pocahontas daughter of a Native American tribe chief falls in love with an English soldier as colonists invade 17th century Virginia.,45.907,Walt Disney Pictures-Walt Disney Feature Animation,6/14/95,55000000,346079773,81,Released,An American legend comes to life.,6.935,5097,Irene Bedard-Mel Gibson-David Ogden Stiers-John Kassir-Christian Bale-Judy Kuhn-Billy Connolly-Frank Welker-Russell Means-Linda Hunt-Danny Mann-Joe Baker-Michelle St. John-James Apaumut Fall-Gordon Tootoosis-Jim Cummings-Charlie Adler-Debi Derryberry-Phil Proctor,culture clash-forbidden love-colony-musical-gold rush-princess-native american-colonisation-virginia-star crossed lovers-intercultural relationship-based on myths legends or folklore-17th century-shamanism-animal sidekick,/kZ1ft0QZ4e3zDUPMBftEkwI9ftd.jpg,/9YAVIwBcBrLXeukg2dgMGfYB1uu.jpg,10545-37135-10693-10340-10882-10144-10674-10895-12230-3170-13761-9325-11224-10112-11970-11360-408-12092-10948-11544-11886 +8871,How the Grinch Stole Christmas,Family-Comedy-Fantasy,en,The Grinch decides to rob Whoville of Christmas - but a dash of kindness from little Cindy Lou Who and her family may be enough to melt his heart...,106.655,Universal Pictures-Imagine Entertainment-LUNI Productions GmbH and Company KG,11/17/00,123000000,345823040,104,Released,He puts the mean in green.,6.74,6727,Jim Carrey-Taylor Momsen-Jeffrey Tambor-Christine Baranski-Bill Irwin-Molly Shannon-Clint Howard-Josh Ryan Evans-Mindy Sterling-Bryce Dallas Howard-Lacey Kohl-Rachel Winfree-Rance Howard-Jeremy Howard-T.J. Thyne-Nadja Pionilla-Jim Meskimen-Michael Dahlen-David Costabile-Mary Stein-James Ritz-Deep Roy-Jessica Sara-Mason Lucero-Ben Bookbinder-Michaela Gallo-Landry Allbright-Reid Kirchenbauer-Rebecca Chace-Suzanne Krull-Steve Kehela-Lillias White-Rain Pryor-John Alexander-Kevin Isola-Gavin Grazer-Walter Franks-Verne Troyer-Clayton Martinez-Q'orianka Kilcher-Caroline Williams-John Short-Grainger Esch-Eva Burkley-Rick Baker-Bill Sturgeon-Mark Setrakian-Jurgen Heimann-Tim Blaney-Charles Croughwell-Frank Welker-Anthony Hopkins,holiday-based on novel or book-christmas party-new love-santa claus-village-thief-surrealism-public humiliation-christmas-surreal world,/1WZbbPApEivA421gCOluuzMMKCk.jpg,/sy0vo1cmpKqwPRiMUiJ45jyLsX7.jpg,854-772-310-10719-1624-17979-771-11774-5255-1593-10555-58224-360920-118-8839-10201-8467-18360-3049-8844-10137 +188927,Star Trek Beyond,Action-Adventure-Science Fiction,en,The USS Enterprise crew explores the furthest reaches of uncharted space where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.,34.073,Paramount-Bad Robot-Perfect Storm Entertainment-Alibaba Pictures Group-Skydance Media-Sneaky Shark-Huahua Media,7/7/16,185000000,343471816,122,Released,,6.8,5989,Chris Pine-Zachary Quinto-Karl Urban-Zoe Salda��a-Simon Pegg-John Cho-Anton Yelchin-Idris Elba-Sofia Boutella-Joe Taslim-Lydia Wilson-Deep Roy-Melissa Roxburgh-Anita Brown-Doug Jung-Danny Pudi-Kim Kold-Fraser Aitcheson-Matthew MacCaull-Emy Aneke-Shohreh Aghdashloo-Greg Grunberg-Jennifer Cheon-Jarod Joseph-Jeremy Raymond-Harry Han-Gina Brinkman-Adam DiMarco-Fiona Vroom-Richard Laurence-Doug Chapman-Dan Payne-Anthony Shim-Andrea Yu-Shea Whigham-Christian Sloan-Jake Huang-Priya Rajaratnam-Luka Hays-Thomas Cadrot-Jennifer W. Evans-Roxanne Fernandes-Jake Foy-Jodi Haynes-Nathan Jean-Tarun Keram-J.P. Mulcaster-Edwin Rodriguez-Alex Rose-Polina Soldatova-Lia Lam-Ian Nsenga-Sara Forsberg-Jeff Bezos-Christian Mandel-Carlo Ancelotti,spacecraft-sequel-stranded-hatred-lgbt-space opera-gay,/wFovfotIztxGVtUpLlaNG3ACMpl.jpg,/m4F1KRK5jAoQHi2mKDFE2jFKEIb.jpg,33370-13475-54138-193-246655-47933-201-330459-174-200-43074-324668-172-297761-140607-154-199-168-209112-152-271110 +7518,Over the Hedge,Family-Comedy-Animation,en,A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food by invading the new suburban sprawl that popped up while they were hibernating ��� and learns a lesson about family himself.,46.832,DreamWorks Animation,5/17/06,80000000,343397247,83,Released,Taking back the neighborhood... One snack at a time.,6.549,4178,Bruce Willis-Garry Shandling-Steve Carell-Wanda Sykes-William Shatner-Nick Nolte-Thomas Haden Church-Allison Janney-Eugene Levy-Catherine O'Hara-Avril Lavigne-Omid Djalili-Sami Kirkpatrick-Shane Baumel-Madison Davenport-Ariel Winter-Michaela Jill Murphy-Paul Butcher-Zoe Randol-Jessica DiCicco-Debra Wilson-Sean Bishop-Jeannie Elias-Kejon Kesse-Sean Yazbeck-Geoffrey Pomeroy-Joel McCrary-Lee Bienstock-Brian Stepanek-Steve Alterman-Erin Lander-Kirk Baily-Jordan Orr-Michelle Ruff-Nicholas Guest-Greyson Spann-David Hiller-April Lawrence-Bridget Hoffman-Marcelo Tubert-Sandy Holt-Talula Holt-Pat Fry,suburbian idyll-garbage-entrapment-squirrel-garden-grizzly bear-turtle-forest-racoon-suburb-animal,/PHNurftfUJTStsTgIkaxglvm2k.jpg,/ohDtIpcfP2NXtvAANsQFsh76BO0.jpg,11619-7484-5559-9982-10555-9408-10527-9928-9836-22794-953-810-6477-13053-15512-1267-12222-7443-8920-10192-38055 +55301,Alvin and the Chipmunks: Chipwrecked,Comedy-Fantasy-Family-Music-Animation,en,Playing around while aboard a cruise ship the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.,37.189,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/14/11,75000000,342695435,87,Released,"Sun, Sea and Squeaks.",5.697,1915,Jason Lee-David Cross-Jenny Slate-Justin Long-Matthew Gray Gubler-Jesse McCartney-Amy Poehler-Anna Faris-Christina Applegate-Alan Tudyk-Michael P. Northey-Sophia Aguiar-Lauren Gottlieb-Tera Perez-Andy Buckley-Chad Krowchuk-Luisa d'Oliveira-Tucker Albrizzi-Nelson Wong-Michael Bagdasarian-Amber-Rochelle DeMarco-Marcela Caceres-Natalie Sutcliffe-Ian Harmon-Phyllis Smith-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Eoin Bates-Seth Robert Dusky-Wendell Kinney-Jeremy Palko-Rachael Wegener,sequel-chipmunk-cruise ship-live action and animation-overboard,/i2KJbbpodyxizppc8F9NbUb7Iiq.jpg,/j8M9FjI1seC6OmUluDGkOZIwZt.jpg,23398-6477-12133-258509-41513-77931-297692-984430-5559-42949-26505-46195-9513-8920-13053-9836-7484-50359-12222-80321-172385 +8909,Wanted,Action-Thriller-Crime,en,Doormat Wesley Gibson discovers that his recently murdered father - who Wesley never knew - belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society he hones his innate killing skills and turns avenger.,33.731,Universal Pictures-Spyglass Entertainment-Bazelevs Production-Kickstart-Marc Platt Productions-Top Cow Productions-Relativity Media-Ringerike Zweite Filmproduktion-Revolution Sun Studios,6/19/08,75000000,342463063,110,Released,Choose your destiny.,6.5,6310,James McAvoy-Angelina Jolie-Morgan Freeman-Terence Stamp-Thomas Kretschmann-Common-Kristen Hager-Marc Warren-David O'Hara-Dato Bakhtadze-Konstantin Khabenskiy-Chris Pratt-Lorna Scott-Sophiya Haque-Brian Caspe-Mark O'Neal-Bridget McManus-Brad Calcaterra-Ekbal Kabir Siam,loss of loved one-assassin-secret society-mission of murder-based on comic-revenge-based on graphic novel-rejuvenation,/cbDMsV4VJAL2xJ2JXdWWjmUXZkT.jpg,/qqhzXiNyCotzJdyEbi41EtzYYYI.jpg,1995-27576-8960-4108-1858-8373-137562-1487-787-7451-277-2048-9679-1996-1979-36658-8681-13387-608-39254-602 +888,The Flintstones,Fantasy-Comedy-Family,en,Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.,34.284,Hanna-Barbera Productions-Amblin Entertainment,5/26/94,46000000,341631208,91,Released,Yabba-Dabba-Doo!,5.318,2138,John Goodman-Elizabeth Perkins-Rick Moranis-Rosie O'Donnell-Kyle MacLachlan-Halle Berry-Elizabeth Taylor-Dann Florek-Richard Moll-Irwin Keyes-Jonathan Winters-Harvey Korman-Lainey Silver-Melanie Silver-Hlynur Sigur��sson-Marin�_ Sigur��sson-Sheryl Lee Ralph-Jean Vander Pyl-Janice Kent-Jack O'Halloran-Becky Thyre-Rod McCary-Kate Pierson-Fred Schneider-Keith Strickland-Jim Doughan-Laraine Newman-Jay Leno-Alan Blumenfeld-Sam Raimi-Messiri Freeman-Alex Zimmerman-Tommy Terrell-Tabbie Brown-Andy Steinfeld-Bradford Bryson-Dean Cundey-Lita Stevens-Joseph Barbera-William Hanna,manager-jealousy-bad mother-in-law-adoption-family's daily life-stone age-plan-friendship-best friend-dinosaur-cavemen,/ocsb0qiGlcn6UlcDRHa3xxSCc8Y.jpg,/ge7Ut4a2ly41pCS5nSIjyINoUnp.jpg,882-889-181562-8839-885-3050-9327-60568-554-555-880-10137-12139-11674-9598-332-886-11806-11011-42515-10603 +447332,A Quiet Place,Horror-Drama-Science Fiction,en,A family is forced to live in silence while hiding from creatures that hunt by sound.,91.585,Paramount-Platinum Dunes,4/3/18,17000000,340952971,91,Released,"If they hear you, they hunt you.",7.396,12541,Emily Blunt-John Krasinski-Millicent Simmonds-Noah Jupe-Cade Woodward-Leon Russom-Rhoda Pell,deaf-fireworks-pregnancy-post-apocalyptic future-alien life-form-child in peril-creature-alien invasion-parenting-survival horror-human vs alien-sign languages,/nAU74GmpUk7t5iklEp3bufwDq4n.jpg,/roYyPiQDQKmIKUEhO912693tSja.jpg,520763-333339-493922-164431-419430-925130-376570-346364-300668-284054-299536-383498-405774-32119-427641-363088-460019-439079-138843-260513-338970 +4523,Enchanted,Comedy-Family-Fantasy-Romance,en,"The beautiful princess Giselle is banished by an evil queen from her magical musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan. Shocked by this strange new environment that doesn't operate on a ""happily ever after"" basis Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?",47.652,Walt Disney Pictures-Josephson Entertainment-Andalasia Productions-Right Coast,11/20/07,85000000,340487652,107,Released,This fairytale princess is about to meet a real Prince Charming.,6.8,5130,Amy Adams-Patrick Dempsey-James Marsden-Timothy Spall-Idina Menzel-Rachel Covey-Susan Sarandon-Julie Andrews-Jeff Bennett-Kevin Lima-Emma Rose Lima-Teala Dunn-Fred Tatasciore-Courtney Williams-William Huntley-Samantha Ivers-Elizabeth Mathis-Edmund Lyndeck-Tonya Pinkins-Isiah Whitlock Jr.-Tibor Feldman-Jodi Benson-Matt Servitto-Christopher Maggi-Muriel Kuhn-Marilyn Sue Perry-John Rothman-Marlon Saunders-Paul Klementowicz-Michaela Conlin-Cathleen Trigg-Paige O'Hara-Danny Mastrogiorgio-Canedy Knowles-Lillian Lifflander-Matte Osian-Judy Kuhn-Joseph Siravo-Margaret Travolta-Tony Machine-Jon McLaughlin-Helen Stenborg-Anita Keal-Kater Gordon-Raymond W. Abbiw-Veronica Archul-Jonathan Arons-Simone Assboeck-Dimitre Atanasov-Judy Ayres-Kathleen Banovich-Barbara G. Barclay-Nicole Barth-Margery Beddow-Carol Bentley-Tom Berklund-Heather Berman-Tetyana Bilych-Timothy Bish-Corey Bradley-Lee Van Bradley-Adrian Brian-Lou Brock-Vitalii Buza-Michelle Aguilar Camaya-Oscar Campisi-Christa Capone-Iresol Cardona-Marcus Choi-Olivia Cipolla-Angel G. Clemente-Jason Colacino-Keltie Knight-Rachel B. Coppola-Kristine Covillo-Leonard J. Coyne-Evan Crook-James Cunneen-Paul Daggett-Jennifer Thomas Damalas-Bill Davies-Richard Diaz-James Du Chateau-Joey Dudding-Hilary Elliot-Harvey Evans-Charles Fetta-Michael Fielder-Paul Frolov-Linda Gammon-Gabriela Garcia-Ingrid Gartner-Charles Goddertz-Aaron Hamilton-Jules Helm-Barbara Hendel Coyne-Khetanya Henderson-Cynthia Henn-Seymour Hewitt-Bonnie Herbert Diaz-Betina Hershey-Eric Hoffman-Linda Rose Iennaco-Ruth Taveras-Marc Inniss-Joan Jaffe-Sydney James-Anna Kaiser-Violetta Klimczewska-Joseph Knebel-Joey Lauren Koch-Vicky Lambert-Jacey Lambros-Susan Lehman-Sarah Lewis-Kenneth Ley-George Marcy-Michelle Marmolejo-Natalie Mavor-Angelina McCoy-Richard McMurrich-Gilberto Melesio-Marina Micalizzi-Bert Michaels-Thomasz Mielnicki-Mayumi Miguel-Nell Mooney-Shannon Moore-Eric Neumann-Michelle Officer-Lance Olds-Adesola A. Osakalumi-Don Percassi-Jerry Petardi-Dawn Noel-Heather Gehring Plotkin-Donna Marie Portelli-Caity Quinn-Amir Raissi-Cristina Ram-Elizabeth Ramos-Kelvin Roche-Christopher Rodrick-Raymond Rodriguez-Luis Salgado-Alys Schaefer-Tony Scheppler-Barbara Schmidt-Paul J. Schmidt-Thomas Schneider-Nia-Imani E. Scriven-Carlos Sierra Lopez-Solomon Singer-Patrick Taverna-Mic Thompson-Rafael Tillis-Latonya Tolbert-Rainer Trubere-Regine Urbach-Vanessa Villalobos-Snejana Urbin-Robert Vance-Mayte Vicens-Kim Villanueva-Dan Weltner-Isabella Zubor-Jeff Watson-Rolando Morales-Matos-Iba Fitzgerald-Fatima Alonzo-Austin Applegate-Lothar Beer-Jessica Blandino-Joeann Boyd-Alex Blake-Richard Branker-Tyrone Brown-Augustin Bustamante-Leonel Cruz-Afferina English-Robert Fabien-Shandra Fallen-Raphael Gibbs-James E. Graseck-Pinkney Grissom-Kenneth Harry-Michael Hashim-Desmond Hill-Amelia Hoy-Ferdinand Huber-Tony 'Machine' Krasinski-Renita Leonce-Alexander Mattis-Nakima McEachern-Frank Miroddi-Susan Mitchell-Ralph Nader-Sandra Park-Jose Pinto-Carlina Ramirez-�ngel Ramos-Raymond Ramos-Russell Ramos-Tashawna Reid-Eganam Segbefia-Carl Slater-Harvey Thompson-Leslie Torres-Donnell Tribble-Tony Ventura-Lisa Washinton-Kevin Patrick Wright-Wilbur Pauley-Ev Depaolis-Tara Stiles-Tex Allen-Emanuele Ancorini-James Balsamo-AJ Billions-Robert Bizik-Matt Brockman-Peter Conboy-Tom Coughlin-Dono Cunningham-Elli-Eddie Eniel-John Farrer-Nicky Figueredo-Roy William Gardner-Thelma Guti��rrez-Hristo Hristov-Erica Huang-Edward M. Kelahan-Katharine Leonard-Racheline Maltese-Alicia Rachel Marek-Keith Moyer-Loukas Papas-Vincent Petrosini-Shannan Leigh Reeve-Robert Sciglimpaglia-Paul Thornton-Gerrold Vincent-Bill Walters-Steven Weisz-Gail Yudain-Ted Yudain,princess-new york city-magic-fairy tale-poison-queen-prince-musical-portal-female protagonist-manhattan new york city-evil queen-fantasy world-evil witch-true love-part animation-live action and animation-central park new york city,/8KCNzCArLlvLdQoHx6npua2VSVc.jpg,/dOeaWGpouIaONuhRKOj2SrTEWe7.jpg,9880-11130-10330-10096-10947-11887-11224-13649-10882-9820-10198-10521-10625-11247-20048-62764-14442-2976-1824-11283-350 +53182,300: Rise of an Empire,Action-Drama-War,en,Greek general Themistocles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistocles faces the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia the vengeful commander of the Persian navy.,56.011,Warner Bros. Pictures-Legendary Pictures-Hollywood Gang Productions-Atmosphere Entertainment MM-Nimar Studios-Cruel & Unusual Films,3/5/14,110000000,337580051,102,Released,Seize your glory!,6.09,5844,Sullivan Stapleton-Eva Green-Lena Headey-Callan Mulvey-David Wenham-Rodrigo Santoro-Jack O'Connell-Andrew Tiernan-Ashraf Barhom-Andrew Pleavin-Hans Matheson-Peter Mensah-Ben Turner-Christopher Boyer-Fred Ochs-Price Carson-John Michael Herndon-David Pevsner-Peter Ferdinando-Igal Naor-Luke Roberts-George Georgiou-Farshad Farahat-Christopher Sciueref-Steven Cree-Caitlin Carmichael-Jade Chynoweth-Kevin Fry-David Sterne-Gregor Truter-Vincent Walsh-Nick Court-Mark Killeen-Stefan Ivanov-Atanas Srebrev-Mark Aaron Wagner-Nancy McCrumb-Bo Roberts-Gregory Shelby-Wayne Dalglish-Velimir Velev-Dimo Alexiev-Georgi Stanislavov-Dimiter Doichinov-Velizar Peev-Aleksandar Belovski-Gerard Butler-Michael Fassbender,based on comic-based on graphic novel-ancient greece-duringcreditsstinger-sea battle-hand to hand combat-naval warfare-sparta greece-5th century bc-athenian,/aOg92xVWjBRmALsHCJsz2lWnmsG.jpg,/Admlp6IYUI9UJEx451dvGldK7Mh.jpg,1271-703402-97020-64686-124905-86834-184315-138103-225574-68724-91314-82700-102382-49017-76649-137113-136797-119450-127585-57158-80274 +414,Batman Forever,Action-Crime-Fantasy,en,Batman must battle a disfigured district attorney and a disgruntled former employee with help from an amorous psychologist and a young circus acrobat.,46.556,Warner Bros. Pictures-Tim Burton Productions-Polygram Pictures,6/16/95,100000000,336529144,121,Released,"Courage now, truth always, Batman forever!",5.41,4835,Val Kilmer-Jim Carrey-Nicole Kidman-Tommy Lee Jones-Chris O'Donnell-Michael Gough-Pat Hingle-Drew Barrymore-Debi Mazar-Elizabeth Sanders-Ren�� Auberjonois-Joe Grifasi-Philip Moon-Jessica Tuck-Dennis Paladino-Kimberly Scott-Michael Paul Chan-Jon Favreau-Greg Lauren-Ramsey Ellis-Michael Scranton-Eileen Seeley-David U. Hodges-Jack Betts-Tim Jackson-Daniel Reichert-Glory Fioramonti-Larry A. Lee-Bruce Roberts-George Wallace-Bob Zmuda-Rebecca Budig-Don Wilson-Sydney D. Minckler-Maxine Jones-Terry Ellis-Cindy Herron-Dawn Robinson-Gary Kasper-Amanda Trees-Andrea Fletcher-Ria Coyne-Jed Curtis-William Mesnik-Marga G�_mez-Kelly Vaughn-John Fink-Noby Arden-Marlene Bologna-Danny Castle-Troy S. Wolfe-Christopher Caso-Gary Clayton-Oscar Dillon-Keith Graham-Kevin Grevioux-Mark Hicks-Corey Jordan-Randy Lamb-Maurice Lamont-Sidney S. Liufau-Brad Martin-Deron McBee-Mario Mugavero-Joey Nelson-Jim Palmer-Robert Powell-Peewee Piemonte-Peter Radon-Fran�_ois Rodrigue-Joe Sabatino-Mike Sabatino-Ofer Samra-Matt Sigloch-Mike Smith-Kimberly Auslander-Ed Begley Jr.-George Cheung-Erik Cord-Scott Cranford-Michael Dane-Gunnel Eriksson-Holiday Freeman-Nancy Gassner-Clayton-Mitch Gaylord-Timothy Guest-Jenny Inge Devaney-Bob Kane-Joe Kent-Patrick Leahy-Susan Lewis-Marshall Dancing Elk Lucas-Gorja Max-Bob McGovern-Ve Neill-Velvet Rhodes-Dana Walsh-Harry Williams Jr.-Ilona Wilson,riddle-superhero-villain-rose-based on comic-partner-robin-broken neck-psychologist-criminal-district attorney-millionaire-super power-falling down stairs-tied up-tommy gun-beretta-knocked out-disfigurement-father figure-good versus evil,/mzzNBVwTiiY94xAXDMWJpNPW2US.jpg,/98kbLdg6rDqhYySxROTluRbLy5t.jpg,415-364-268-2661-1452-272-8536-125249-1924-9531-9480-1927-9738-9273-3049-11411-14919-618353-36586-142061-40662 +9543,Prince of Persia: The Sands of Time,Adventure-Fantasy-Action,en,A rogue prince reluctantly joins forces with a mysterious princess and together they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time ��� gift from the gods that can reverse time and allow its possessor to rule the world.,55.368,Walt Disney Pictures-Jerry Bruckheimer Films,5/19/10,200000000,336365676,116,Released,Defy the Future,6.256,6145,Jake Gyllenhaal-Gemma Arterton-Ben Kingsley-Alfred Molina-Steve Toussaint-Toby Kebbell-Richard Coyle-Ronald Pickup-Reece Ritchie-G�_sli �_rn Gar��arsson-Claudio Pacifico-Thomas DuPont-Dave Pope-Domonkos Pardanyi-Massimiliano Ubaldi-Vladimir Furdik-Christopher Greet-William Foster-Elliot James Neale-Selva Rasalingam-Darwin Shaw-Daisy Dodge Hill-Charlie Banks-Jesse Matthews-Rohan Siva-Dimitri Andreas-Stephen A. Pope-Trampas Thompson-Joseph Beddelem-Farzana Dua Elahe-Rachid Abbad-Aziz El Kibachi-Simon De Selva-Felix Augusto Quadros-Amin Mohammad Fouladi-Masoud Abbasi-Mehrdad Azmiri-Zartosht Safari-Ali Nourbakhsh-Parham Bahadoran-Ehsan Parvidan-Shohreh Shojaeifard-Babak Babakinejad,persia-sandstorm-brother against brother-armageddon-based on video game,/lkp1GFmWyf7k2WKvKIQuuGyichI.jpg,/dnOrJdHW697UvKvtX4lYVasomBu.jpg,18823-20526-1979-57165-49529-44912-8373-1996-58574-32657-34544-9738-39254-1735-27022-14869-27576-1858-20662-8960-2080 +4922,The Curious Case of Benjamin Button,Drama-Fantasy-Romance,en,I was born under unusual circumstances. And so begins The Curious Case of Benjamin Button adapted from the 1920s story by F. Scott Fitzgerald about a man who is born in his eighties and ages backwards: a man like any of us who is unable to stop time. We follow his story set in New Orleans from the end of World War I in 1918 into the 21st century following his journey that is as unusual as any man's life can be. Benjamin Button is a grand tale of a not-so-ordinary man and the people and places he discovers along the way the loves he finds the joys of life and the sadness of death and what lasts beyond time.,44.56,Paramount-Warner Bros. Pictures-The Kennedy/Marshall Company,12/25/08,150000000,335802786,166,Released,"Life isn't measured in minutes, but in moments.",7.574,11406,Brad Pitt-Cate Blanchett-Taraji P. Henson-Julia Ormond-Jason Flemyng-Mahershala Ali-Jared Harris-Elias Koteas-Phyllis Somerville-Tilda Swinton-Faune Chambers-Donna DuPlantier-Jacob Tolano-Earl Maddox-Ed Metzger-Danny Vinson-David Jensen-Joeanna Sayler-Fiona Hale-Patrick Thomas O'Brien-Marion Zinser-Peter Donald Badalamenti II-Danny Nelson-Paula Gray-Lance E. Nichols-Rampai Mohadi-Troi Bechet-Elle Fanning-Ted Manson-Clay Cullen-Edith Ivey-Robert Towers-Sonya Leslie-Yasmine Abriel-Madisen Beaty-Tom Everett-Don Creech-Christopher DesRoches-Joshua Desroches-Richmond Arquette-Josh Stewart-Ilia Volok-David Ross Paterson-Taren Cunningham-Myrton Running Wolf-Stephen Monroe Taylor-Devyn A. Tyler-Adrian Armas-Wilbur Fitzgerald-Ashley Nolan-Louis Herthum-Katta Hules-Rus Blackwell-Joel Bissonnette-Deneen Tyler-Spencer Daniels-Chandler Canterbury-Charles Henry Wyson-Jessica Cropper-Katherine Crockett-Bianca Chiminello-Emma Degerstedt-Megan Brown-Clay Chamberlin-Leslie Augustine-Blake Balu-Aliane Baquerot-Brett Beoubay-Allen Boudreaux-Eve Brent-David E. Brown-Jake Carpenter-Walter Delmar-Louis Dupuy-Marian Filali-Ron Flagge-Joe Fontana-Garrett Forbes-Tiffany Forest-Debby Gaudet-Simone-Elise Girard-Geraldine Glenn-Zuri Goldman-Malerie Grady-Bob Harter-Rhonda Huete-Grant James-Christopher Karl Johnson-Shiloh Jolie-Pitt-Spencer Kayden-Jonathan Lane-Shane LeCocq-Kevin Lorio-Audrey Lynn-Angelina McCoy-Harlon Miller-Valeska Miller-Jay Oliver-Antonia Putiloff-Sean Ross-Ross Rouillier-Robert W. Savina-Andy Sims-Chaz Smith-Logan Douglas Smith-Terry Lee Smith-Lauren Swinney-Dennis Thomas IV-Michel Th��riault-Yvette Tucker-Gelsey Weiss-Autumn Withers-Brianna Womick-Michael Wozniak,diary-navy-funeral-tea-travel-hospital-based on short story-reverse aging,/9H2awZmNisMVJGp362Stv0bfUTs.jpg,/2fswjyrY3GEzeoVn6mF8pNeNcgf.jpg,787-652-37799-12405-162-1402-896559-11324-640-44214-6479-297-8358-16869-807-11321-118-591-745-310-45269 +9802,The Rock,Action-Adventure-Thriller,en,When vengeful General Francis X. Hummel seizes control of Alcatraz Island and threatens to launch missiles loaded with deadly chemical weapons into San Francisco only a young FBI chemical weapons expert and notorious Federal prisoner have the stills to penetrate the impregnable island fortress and take him down.,33.256,Don Simpson/Jerry Bruckheimer Films-Hollywood Pictures,6/7/96,75000000,335062621,137,Released,Alcatraz. Only one man has ever broken out. Now five million lives depend on two men breaking in.,7.1,4235,Sean Connery-Nicolas Cage-Ed Harris-William Forsythe-David Morse-John Spencer-Michael Biehn-Vanessa Marcil-Claire Forlani-Tony Todd-Gregory Sporleder-John C. McGinley-Bokeem Woodbine-Steve Harris-Greg Collins-Brendan Kelly-Danny Nucci-Celeste Weaver-Todd Louiso-David Bowe-Raquel Krelle-Jim Maniaci-Billy Devlin-Jim Caviezel-Ingo Neuhaus-John Laughlin-Willie Garson-John Enos III-Xander Berkeley-Raymond Cruz-Matthew James Gulbranson-Philip Baker Hall-Pat Skipper-Stuart Wilson-Stanley Anderson-David Marshall Grant-Anthony Clark-Raymond O'Connor-Harry Humphries,san francisco california-war veteran-fbi-mercenary-gas attack-alcatraz prison-prison escape-shootout-u.s. navy seal-terrorism-british spy-chemist-commando-hostage situation-tourist attraction-u.s. marine-military-island prison-tourists in peril-nerve gas-disillusioned-terrorist threat-chemical weapon-fbi agent-chemical warfare-navy seals,/j5mxLNWjUlXUUk8weFBtnF4afIR.jpg,/1SsHEx1sCfVZY6Nj0sMyFTlEDql.jpg,1701-754-9679-36955-1669-9798-5503-861-1637-95-2059-9705-1572-941-6637-602-2503-1571-1573-1830-563 +291805,Now You See Me 2,Crime-Thriller-Action-Mystery,en,One year after outwitting the FBI and winning the public��s adulation with their mind-bending spectacles the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.,30.832,Summit Entertainment-Lionsgate-K/O Paper Products-TIK Films,6/2/16,90000000,334901337,129,Released,You haven't seen anything yet.,6.825,9809,Jesse Eisenberg-Mark Ruffalo-Woody Harrelson-Morgan Freeman-Dave Franco-Daniel Radcliffe-Lizzy Caplan-Michael Caine-Jay Chou-Sanaa Lathan-David Warshofsky-Tsai Chin-Richard Laing-Henry Lloyd-Hughes-Brick Patrick-Zach Gerard-Ben Lamb-James Richard Marshall-Jim Pirri-Christopher Logan-Varada Sethu-Justine Wachsberger-Simon Connolly-Dino Fetscher-Martin Delaney-Danielle Bird-Tai Yin Chan-Bruce Chong-Missy Malek-Krystal Ellsworth-Jessica Lee Keller-Luis Rosado-Savannah Guthrie-Gia Labarbera-Alexander Cooper-Michael Cooke,magic-secret society-illusion-vigilante-revenge-heist-on the run-illusionism-magician,/A81kDB6a1K86YLlcOtZB27jriJh.jpg,/qWE206uqSbEXLVATvbB6fUIX8WE.jpg,75656-297761-246655-131634-259316-262504-328387-283366-198663-294254-271110-262500-325133-101299-131631-127380-278927-207703-269149-293660-302699 +58574,Sherlock Holmes: A Game of Shadows,Adventure-Action-Crime-Mystery,en,There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes�� intellectual equal but his capacity for evil and lack of conscience may give him an advantage over the detective.,32.782,Warner Bros. Pictures-Village Roadshow Pictures-Silver Pictures-Wigram Productions-Lin Pictures,11/22/11,125000000,334615000,129,Released,The game is afoot.,7.125,9463,Robert Downey Jr.-Jude Law-Noomi Rapace-Jared Harris-Rachel McAdams-Eddie Marsan-Kelly Reilly-Stephen Fry-Paul Anderson-Geraldine James-William Houston-Wolf Kahler-Iain Mitchell-Jack Laskey-Patricia Slater-Karima McAdams-Richard Cunningham-Marcus Shakesheff-Mark Sheals-George Taylor-Michael Webber-Mike Grady-Alexandre Carril-Victor Carril-Thorston Manderlay-Affif Ben Badra-Daniel Naprous-Lancelot Weaver-Vladimir Furdik-Alexander Devrient-Fatima Adoum-Stanley Kaye-Thierry Neuvic-Martin Nelson-Mark Llewelyn-Evans-Anthony Inglis-Ian Wilson-Pope-Pamela Hay-Laurence Dobiesz-Peter Stark-Roman Jankoviۍ-Fredrick Ruth-Carsten Hayes-Jonathan Christie-James McNeill-Laurentiu Possa-Maitland Chandler-Joe Egan-Clive Russell-Sala Baker,paris france-london england-detective inspector-steampunk-buddy-criminal mastermind-19th century-sherlock holmes,/y1MYZkwhZK6L0Jy4YMuPktzDOfn.jpg,/nVMalJRUsOeGP5xPx9ULmirZ4cJ.jpg,10528-46541-1865-56292-49538-285-20526-41154-58-38356-10138-10764-2080-27578-1858-36557-64635-2501-36668-39514-8373 +479306,Never Say Die,Comedy-Fantasy,zh,A boxer and a journalist accidentally exchange bodies after they are struck by current embarking a series of adventures.,3.511,New Classics Media-Fun Age Pictures,9/30/17,0,334530869,100,Released,,5.353,34,Allen Ai Lun-Ma Li-Shen Teng-Xue Haowen-Chang Yuan-Yin Zheng-Wang Zhi-Wang Chengsi-Tian Yu-Gao Zhiheng,china-sports-boxing,/6GOMHYKPPsie8u5Cyl7PXNaGl8S.jpg,/lyGuft4aGUrCTvsOBNlvb6YcRCE.jpg, +36218,Pok��mon: Jirachi - Wish Maker,Family-Action-Animation-Adventure-Fantasy-Science Fiction,ja,Ash May Brock and Max come upon the festival of the Wishing Star of Seven Nights. During their enjoyment the legendary Pokemon--Jirachi descends from the heavens and befriends Max. Jirachi with the power to grant any wish is sought after by many people wanting to claim its power. One man seeks to use its legendary power to revive an ancient Pokemon known as Groudon unaware of the dangers hidden within Jirachi's powers,18.127,Shogakukan Production-OLM-Pikachu Project,7/19/03,0,334000000,81,Released,,6.5,221,Rica Matsumoto-Y��ji Ueda-KAORI-Fushigi Yamada-Ikue Otani-Tomiko Suzuki-Shin-ichiro Miki-Megumi Hayashibara-Inuko Inuyama-Koichi Yamadera-Papaya Suzuki-Riho Makise-Unsho Ishizuka,comet-wish-anime,/5TBXNazCYqi28PSqDVdeFnap3Wd.jpg,/yWl2xNPc30P9SAbCUduFpeiztUd.jpg,34065-33875-16808-12600-34067-47292-10991-39057-25961-12599-88557-50087-227679-150213-350499-115223-36897-10228-303903-137773-382190 +9738,Fantastic Four,Action-Adventure-Fantasy-Science Fiction,en,"During a space voyage four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong ��_ thing. Together these ""Fantastic Four"" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.",35.959,Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 3 KG-1492 Pictures-Marvel Enterprises-20th Century Fox-Bernd Eichinger Productions-Constantin Film,6/29/05,100000000,333535934,106,Released,4 times the action. 4 times the adventure. 4 times the fantastic.,5.771,8447,Ioan Gruffudd-Jessica Alba-Chris Evans-Michael Chiklis-Julian McMahon-Hamish Linklater-Kerry Washington-Laurie Holden-David Parker-Kevin McNulty-Maria Menounos-Michael Kopsa-Andrew Airlie-Pascale Hutton-G. Michael Gray-David Richmond-Peck-Penelope Parkes-Aonika Laurent-Jason Schombing-Jason Diablo-Colin Lawrence-Paul Belsito-Dee Jay Jackson-Morgan Reynolds-Gina Holden-Donavon Stinson-Douglas Weston-Tony Alcantar-Brenda Crichlow-Peter Bryant-Lorena Gale-Danielle Dunn-Morris-Nicole Mu��oz-Daniel Bacon-Bobby Bysouth-Kenny Bartram-Ronnie Renner-Brian Deegan-Marlaina Mah-Tre Verhoeven-Juanita Mirehouse-Stefanie Singer-Jamie Little-Doug Abrahams-Ron Chartier-Stan Lee-Barbara Christabella-Sanja Banic-Ed Hodson-John Speredakos-Jason Kaufman-Preston Thomas Peet-Steven Fulani Hart-Bethann Schebece-Lou Torres-Peggy Gormley-Maurice Tyson-Jaimie McVittie-Jenni Squair-Lia Salmond-Ellen Ewusie-Ylenia Aurucci-Michelle Zembruski-Kathleen Mullan-Georgia Dewson-Sienna Rose-Hector A. Leguillow-Ben Mulroney-Terry David Mulligan-Lauren S��nchez-Mark S. Allen-Jon Brady-Taryn Winter Brill-Sara Edwards-Heidi Eng-Jim Ferguson-Sam Hallenbeck-Mike Waco-Marian Etoile Watson-Richard Ho-Dave Holmes-Andrew Hunsaker-Taylor Johnson-Bonnie Laufer-Krebs-Lisa Fuller Magee-Bret Martin-Liam Mayclem-Scott Patrick-Shaheem Reid-Sam Rubin-Maria Salas-Devon Soltendieck-Patrick Stoner-Lee Thomas-Tony Toscano-Jennifer Lothrop,flying-sibling relationship-fire-marriage proposal-radiation-dna-missile-mask-transformation-friendship-superhero-based on comic-space-laboratory-explosion-scientist-super power-space station-brooklyn bridge-fantastic four-superhuman strength-invisibility-elasticity,/8HLQLILZLhDQWO6JDpvY6XJLH75.jpg,/jkBEPKRq4HWlLwsMFMdDiYwaCle.jpg,1979-559-36658-36668-1593-558-1250-608-44912-36657-1734-557-1927-2080-564-950-8960-1724-1858-166424-953 +714,Tomorrow Never Dies,Adventure-Action-Thriller,en,A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now James Bond must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.,24.957,Eon Productions-United Artists-Danjaq,12/11/97,110000000,333011068,119,Released,Yesterday is a memory. Today is history. Tomorrow is in the hands of one man.,6.3,2673,Pierce Brosnan-Michelle Yeoh-Jonathan Pryce-Teri Hatcher-Judi Dench-Ricky Jay-Desmond Llewelyn-G�_tz Otto-Samantha Bond-Vincent Schiavelli-Joe Don Baker-Colin Salmon-Geoffrey Palmer-Julian Fellowes-Terence Rigby-Nina Young-Daphne Deckers-Colin Stinton-Al Matthews-Cecilie Thomsen-Mark Spalding-Bruce Alexander-Anthony Green-Christopher Bowen-Julian Rhind-Tutt-Gerard Butler-Michael Byrne-Pip Torrens-Hugh Bonneville-Jason Watkins-Brendan Coyle-Nadia Cameron-Blakey-Vincent Wang-Dinny Powell-Romo Gorrara-Laura Brattan-Antje Schmidt-Sophie Sch�_tt-Khan Bonfils,london england-england-spy-china-intelligence-missile-manipulation of the media-secret intelligence service-special car-media tycoon-navy-motorcycle-secret service-hamburg germany,/gZm002w7q9yLOkltxT76TWGfdZX.jpg,/yUHP5AectnhcG4dWJ53L3uQvOgu.jpg,36643-36669-710-708-709-700-699-682-698-681-691-253-707-667-660-668-36670-646-657-658-10764 +87,Indiana Jones and the Temple of Doom,Adventure-Action,en,After arriving in India Indiana Jones is asked by a desperate village to find a mystical stone. He agrees ��� and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.,44.819,Paramount-Lucasfilm,5/23/84,28000000,333000000,118,Released,If adventure has a name... it must be Indiana Jones.,7.3,7934,Harrison Ford-Kate Capshaw-Ke Huy Quan-Amrish Puri-Roshan Seth-Philip Stone-Roy Chiao-David Yip-Ric Young-Chua Kah Joo-Rex Ngui-Philip Tan-Dan Aykroyd-Akio Mitamura-Michael Yama-D.R. Nanayakkara-Dharmadasa Kuruppu-Stany De Silva-Ruby de Mel-Denavaka Hamine-Iranganie Serasinghe-Dharshana Panangala-Raj Singh-Frank Olegario-Ahmed El Shenawi-Arthur F. Repola-Nizwar Karanj-Pat Roach-Moti Makan-Mellan Mitchell-Bhasker Patel-Arjun Pandher-Zia Gelani-Debbie Astell-Maureen Bacchus-Corinne Barton-Carol Beddington-Sharon Boone-Elizabeth Burville-Marisa Campbell-Christine Cartwright-Andrea Chance-Jan Colton-Louise Dalgleish-Lorraine Doyle-Vanessa Fieldwright-Brenda Glassman-Elaine Gough-Sue Hadleigh-Sarah-Jane Hassell-Samantha Hughes-Julie Kirk-Deirdre Laird-Vicki McDonald-Nina McMahon-Julia Marstand-Gaynor Martine-Lisa Mulidore-Dawn Reddall-Rebekkah Sekyi-Clare Smalley-Lee Sprintall-Jenny Turnock-Ruth Welby-Yash Agnihotri-Dickey Beer-Kenneth Coombs-Sidney Ganis-Billy Horrigan-Kathleen Kennedy-Brad Kesten-Alex Klaus-Katie Leigh-Patrick Loh-George Lucas-Tress MacNeille-Frank Marshall-Anthony Powell-Steven Spielberg-Guy Standeven-Ron Taylor,riddle-treasure-wind-elephant-heart-crocodile-bridge-skeleton-treasure hunt-mystery-torture-india-monkey-archaeologist-conveyor belt-child driving car-mine car-rope bridge-splits-adventurer-archeology-1930s,/o45ddOd2UV5nHbxU8WHkVsQNC6j.jpg,/iO73omOyLwUPW22EpaZkJNC72ec.jpg,89-85-217-1892-196-1573-165-1894-1891-329-607-1893-1895-218-562-1572-601-105-954-620-330 +105864,The Good Dinosaur,Adventure-Animation-Family,en,An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.,54.922,Pixar,11/14/15,175000000,332207671,93,Released,Little Arms With Big Attitude,6.742,4897,Frances McDormand-Raymond Ochoa-Jeffrey Wright-Steve Zahn-Sam Elliott-Anna Paquin-John Ratzenberger-A.J. Buckley-Marcus Scribner-Peter Sohn-Maleah Nipay-Padilla-Jack Bright-Ryan Teeple-Jack McGraw-Mandy Freund-Steven Clay Hunter-David Boat-Carrie Paff-Calum Grant,tyrannosaurus rex-friendship-cartoon-friends-alternate history-dinosaur-fear-storm-nature-journey,/8RSkxOO80btfKjyiC5ZiTaCHIT8.jpg,/cF3H9pyUF6dsvqlYUcH0TyBAMTG.jpg,127380-62211-150540-49013-62177-2062-9487-920-863-14160-12-453204-10193-9806-260514-585-159824-269149-862-228161-10681 +165,Back to the Future Part II,Adventure-Comedy-Science Fiction,en,Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight Marty finds himself bound for 1955 and face to face with his teenage parents -- again.,34.419,Universal Pictures-Amblin Entertainment,11/22/89,40000000,332000000,108,Released,"Roads? Where we're going, we don't need roads!",7.749,11328,Michael J. Fox-Christopher Lloyd-Lea Thompson-Thomas F. Wilson-Elisabeth Shue-James Tolkan-Jeffrey Weissman-Casey Siemaszko-Billy Zane-J.J. Cohen-Charles Fleischer-E. Casanova Evans-Jay Koch-Charles Gherardi-Ricky Dean Logan-Darlene Vogel-Jason Scott Lee-Elijah Wood-John Thornton-Theo Schwartz-Lindsey Whitney Barry-Judy Ovitz-Stephanie Williams-Marty Levy-Flea-Jim Ishida-Nikki Birdsong-Al White-Junior Fann-Shaun Hunter-George Buck Flower-Neil Ross-Tamara Carrera-Tracy Dali-Jennifer Brown-Irina Cashen-Angela Greenblatt-Cameron Moore-Justin Mosley Spink-Lisa Freeman-John Erwin-Harry Waters Jr.-David Harold Brown-Tommy Thomas-Lloyd L. Tolbert-Granville 'Danny' Young-Wesley Mann-Joe Flaherty-Marc McClure-Crispin Glover-Stephanie E. Williams-Mary Ellen Trainor,skateboarding-flying car-car race-lightning-guitar-inventor-time travel-sequel-car crash-diner-alternate history-thunderstorm-tunnel-high school dance-hoverboard-2010s,/hQq8xZe5uLjFzSBt4LanNP7SQjl.jpg,/iGkZLNllCJH9QqKIAIkg5NSy8I6.jpg,196-105-89-85-87-329-607-218-601-280-1891-558-620-562-608-863-1894-1892-217-1895-36658 +311324,The Great Wall,Action-Adventure-Fantasy,en,European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.,37.049,Legendary East-Universal Pictures-Atlas Entertainment-Le Vision Pictures-Kava Productions-China Film Group Corporation-dentsu-Fuji Television Network-Legendary Pictures,12/16/16,150000000,331957105,103,Released,1700 years to build. 5500 miles long. What were they trying to keep out?,6,4813,Matt Damon-Jing Tian-Willem Dafoe-Andy Lau-Pedro Pascal-Zhang Hanyu-Han Lu-Lin Gengxin-Eddie Peng-Huang Xuan-Ryan Zheng Kai-Karry Wang-Chen Xuedong-Pilou Asb�_k-Numan Acar-Johnny Cicco-Yu Xintian-Liu Enjia-Stephen Chang-Li Heng-Li Jingmu-Kenny Lin,monster-china-archer-female soldier-historical fiction-explosion-period drama-british soldier-great wall of china-15th century-female general-war,/p70dq1YxabemdZDm5K6Q8G10wSn.jpg,/jmg9qYhzPZdYuNaOZr5xrQPK6cQ.jpg,940609-927575-154634-588361-37634-43205-79544-86184-24212-52795-293167-244971-121856-289339-282035-105444-115969-25627-68735-462677-648457 +550988,Free Guy,Comedy-Adventure-Science Fiction,en,A bank teller called Guy realizes he is a background character in an open world video game called Free City that will soon go offline.,88.432,Berlanti Productions-21 Laps Entertainment-Maximum Effort-Lit Entertainment Group-20th Century Studios,8/11/21,110000000,331526598,115,Released,Life's too short to be a background character.,7.59,6912,Ryan Reynolds-Jodie Comer-Joe Keery-Lil Rel Howery-Utkarsh Ambudkar-Taika Waititi-Channing Tatum-Aaron W Reed-Britne Oldford-Camille Kostek-Mark Lainer-Mike Devine-Sophie Levy-Vernon Scott-Naheem Garcia-Anabel Graetz-Ric Plamenco-Kenneth Israel-Michael Malvesti-Colin Allen-Michael Tow-Hugh Jackman-Dwayne Johnson-Tina Fey-John Krasinski-Chris Evans-Alex Trebek-Lara Spencer-Matthew Cardarople-Jonathan De Azevedo-Destiny Claymore-Ninja-Pokimane-Lannan Eacott-Se��n McLoughlin-DanTDM-Charlotte Levy-Colette Levy-Mariama Conde-Olivia Z. Cote-Ryan Doyle-Bob Gilliam-Terri Schwartz-Eugene Nomura-Euri Nomura-Octavia Chavez-Richmond-Raj Jawa-Charlie Lehmer-Elainy Mata-Jack McLaglen-Jose Guns Alves-Minh-Anh Day-Ella Faria-Francisco Marquez-Owen Burke-Timothy John Smith-Justin Johnston-Patrick Vincent Curran-Lily Steven-Gabrielle Lorthe-Briana Mitchell-Rosario Corso-Regina Taufen-Liam Campos-Piper Acord-Brett Schneider-Omar Ghonim-Tait Fletcher-Emma Jonnz-Janelle Feigley-Brandon Scales,video game-artificial intelligence-gun-hero-virtual reality-code-gamer-breaking the fourth wall-bank robbery-bank teller-programmer-heroic,/xmbU4JTUm8rsdtn7Y3Fcm30GpeT.jpg,/7py8kUCYaOdFn1TfVS87BDBySOz.jpg,566525-436969-438631-451048-497698-512195-580489-524434-370172-696806-385128-568620-425909-631843-634649-335787-999115-940270-337404-688177-476669 +187017,22 Jump Street,Crime-Comedy-Action,en,After making their way through high school (twice) big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team and Schmidt infiltrates the bohemian art major scene they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men college might be the best thing that ever happened to them.,29.272,Columbia Pictures-Original Film-MRC-LStar Capital-Metro-Goldwyn-Mayer-Stephen J. Cannell Productions-75 Year Plan Productions-Storyville Films-JHF Productions,6/5/14,50000000,331333876,112,Released,They're not 21 anymore,6.8,7282,Jonah Hill-Channing Tatum-Peter Stormare-Wyatt Russell-Amber Stevens West-Jillian Bell-Ice Cube-Keith Lucas-Kenneth Lucas-Nick Offerman-Jimmy Tatro-Caroline Aaron-Craig Roberts-Marc Evan Jackson-Joe Chrest-Eddie J. Fernandez-Rye Rye-Johnny Pemberton-Stanley Wong-Dax Flame-Diplo-Tyler Forrest-John Bostic-Richard Grieco-Dustin Nguyen-Ian Hoch-Kate Adair-Drew Cross-Katrina Despain-Oscar Gale-Janeline Hayes-Jackie Bohne-Jason Richard Allan Foster-Toby Nichols-Toby Holguin-Eddie Perez-Mickey Facchinello-Tom Ventura-Brian Schacter-Sam Schweikert-Jack Maloney-Rob Riggle-Dave Franco-Queen Latifah-Patton Oswalt-H. Jon Benjamin-Anna Faris-Bill Hader-Seth Rogen-Will Forte-Ramiro 'Ramir' Delgado Ruiz-Rachel Acuna-Vanessa Amaya-Chris Angerdina-John L. Armijo-Eric Berris-Libby Blake-Renaldo Brady-Emanuel Brooks-Tom Bui-Gustavo Cardozo-Blas Sien Diaz-Eddie Eniel-Joseph Fischer-Julian Garnik-Juan Gaspard-Kurt Grossi-Lyle R. Guidroz-Christopher Heskey-Skyler Joy-Adam Karchmer-Kurt Krause-Joshua Lamboy-Jaci LeJeune-Jacqueline Harris Matherne-Ashlyn McEvers-Quintin McKemie II-Anna Medley-David Stephen Mitchell-Jesse Moore-Jean Pierre Prats-Anthony Ramsey-Lisa Raziano-Gus Rhodes-Edwin Richardson-Jeff Sanders-Larissa Santiago-William Schaff-Robert Segari-Carl Singleton-Anne Speed-Sean Stevens-John Teal Jr.-Steve Terada-Joseph Uzzell-Donald Watkins-Stephen Daniel Wayne-Steven Williams-Michael Wozniak-Jesse Yarborough-Don Yesso-Ahmed Zakzouk,high school-undercover cop-buddy cop-buddy comedy-aftercreditsstinger-duringcreditsstinger,/850chzYHYbT3IISl6Q7dbBuFP2B.jpg,/kdyYOwpKvvD2fSbwfnMM2YPAzfq.jpg,64688-37949-86369-10988-437816-195589-412186-405908-228967-109414-193893-168530-137106-138832-102382-127585-8363-101299-98566-225886 +1597,Meet the Parents,Comedy-Romance,en,Greg Focker is ready to marry his girlfriend Pam but before he pops the question he must win over her formidable father humorless former CIA agent Jack Byrnes at the wedding of Pam's sister. As Greg bends over backward to make a good impression his visit to the Byrnes home turns into a hilarious series of disasters and everything that can go wrong does all under Jack's critical hawklike gaze.,15.363,Tribeca Productions-Universal Pictures-Nancy Tenenbaum Films-DreamWorks Pictures,10/6/00,55000000,330444045,108,Released,First comes love. Then comes the interrogation.,6.7,5367,Ben Stiller-Robert De Niro-Teri Polo-Blythe Danner-Nicole DeHuff-Jon Abrahams-Owen Wilson-James Rebhorn-Tom McCarthy-Phyllis George-Kali Rocha-Bernie Sheredy-Judah Friedlander-Peter Bartlett-John Elsen-Mark Hammer-Amy Hohn-William Severs-John Fiore-Marilyn Dobrin-Marci Reid-Frank Santorelli-Russell Hornsby-Patricia Cook-Cody Arens-Cole Hawkins-Spencer Breslin-Ina Rosenthal-Kim Rideout-Kresh Novakovic-John Joseph Gallagher-G. A. Aguilar-Lynn Ann Castle,nurse-cia-airport-cat-orderly-airplane-father-in-law-epistaxis-daughter-lost baggage-urn-pavilion-volleyball-hospital-wedding,/5tXJ9ctuyEOMUFLaeqRisbXowWs.jpg,/qcVrlyPFlPgCsmzorvELvpJN9Be.jpg,693-39451-544-1593-9472-9522-1824-854-310-18360-1624-8488-788-9398-8467-9339-3981-2698-3049-2105-9506 +856,Who Framed Roger Rabbit,Fantasy-Animation-Comedy-Crime,en,'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.,27.276,Amblin Entertainment-Silver Screen Partners III-Touchstone Pictures,6/21/88,70000000,329803958,104,Released,"It's the story of a man, a woman, and a rabbit in a triangle of trouble.",7.514,5015,Bob Hoskins-Christopher Lloyd-Joanna Cassidy-Charles Fleischer-Stubby Kaye-Alan Tilvern-Richard LeParmentier-Lou Hirsch-Betsy Brantley-Joel Silver-Paul Springer-Richard Ridings-Edwin Craig-Lindsay Holiday-Mike Edmonds-Morgan Deare-Danny Capri-Christopher Hollosy-Jean-Paul Sipla-Laura Frances-Joel Cutrara-Billy J. Mitchell-Eric B. Sindon-Ed Herlihy-James O'Connell-Eugene Gutierrez-April Winchell-Mae Questel-Mel Blanc-Tony Anselmo-Mary T. Radford-Joe Alaskey-David L. Lander-Fred Newman-June Foray-Russi Taylor-Les Perkins-Richard Williams-Wayne Allwine-Pat Buttram-Jim Cummings-Jim Gallant-Frank Sinatra-Tony Pope-Peter Westy-Cherry Davis-Jack Angel-Jeff Arbaugh-Corey Burton-Nancy Cartwright-Amy Irving-Mickie McGowan-Kathleen Turner-Frank Welker,falsely accused-based on novel or book-movie business-suspicion of murder-mental breakdown-innocence-cartoon-whodunit-los angeles california-love sickness-private detective-movie star-cartoon rabbit-neo-noir-1940s-live action and animation,/lYfRc57Kx9VgLZ48iulu0HKnM15.jpg,/tym6NH7ybFeldBuYYp0RSLpjZFq.jpg,2300-927-9340-196-10144-12092-879-9354-9325-165-601-10693-12230-2978-928-620-10895-4011-11360-10112-11886 +44214,Black Swan,Drama-Thriller-Horror,en,A journey through the psyche of a young ballerina whose starring role as the duplicitous swan queen turns out to be a part for which she becomes frighteningly perfect.,45.569,Fox Searchlight Pictures-Cross Creek Pictures-Protozoa Pictures-Phoenix Pictures-Dune Entertainment,12/3/10,13000000,329400000,108,Released,Perfection is not just about control. It's also about letting go.,7.68,13837,Natalie Portman-Mila Kunis-Vincent Cassel-Barbara Hershey-Winona Ryder-Benjamin Millepied-Ksenia Solo-Kristina Anapau-Janet Montgomery-Sebastian Stan-Toby Hemingway-Sergio Torrado-Mark Margolis-Tina Sloan-Abraham Aronofsky-Charlotte Aronofsky-Marcia Jean Kurtz-Shaun O'Hagan-Chris Gartin-Deborah Offner-Stanley B. Herman-Michelle Rodriguez Nouel-Kurt Froman-Marty Krzywonos-Leslie Lyles-John Epperson-Arkadiy Figlin-Tim Fain-Sarah Lane-Liam Flaherty-Patrick Heusinger-Marina Stavitskaya-Olga Kostritzky-Christine Redpath-Alexandra Damiani-Rebecca Azenberg-Laura Bowman-Holly L. Fusco-Abigail Mentzer-Barette Vance-Lillian di Piazza-Megan Dickinson-Jessy Hendrickson-Genevi��ve Lebean-Rachel Jambois-Ryoko Sadoshima-Kaia A. Tack-Lauren Fadeley-Sarah Hay-Adrianna de Svastich-Jamie Wolf-Carrie Lee Riggins-Gina Artese-Daralina Komar-Tim Lacatena-Alyson Cambridge-Anne Bergstedt Jordanova,new york city-dancing-dancer-nightmare-competition-obsession-insanity-paranoia-hallucination-ballet dancer-ballet-female protagonist-psychological thriller-fear-heartbreak-mental illness-madness-reality vs fantasy-swan lake-ballerina-stage performance-self-harm-mother daughter relationship-self destructiveness-theater-pointe shoes,/rH19vkjAzCZ0HIUvrgB3rowm68h.jpg,/hqh5O4KssfJWI62HGAgrjHXbxhD.jpg,11324-162-641-683841-694-194-350-122928-65754-10681-141-752-10528-1124-807-4922-27205-24-37799-14160-12 +9671,Crocodile Dundee,Adventure-Comedy,en,When a New York reporter plucks crocodile hunter Mick Dundee from the Australian Outback for a visit to the Big Apple it's a clash of cultures and a recipe for good-natured comedy as na��ve Dundee negotiates the concrete jungle. He proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.,17.114,Paramount-Rimfire Films,9/26/86,5000000,328203506,104,Released,There's a little of him in all of us.,6.4,1626,Paul Hogan-Linda Kozlowski-Mark Blum-David Gulpilil-Michael Lombard-John Meillon-Ritchie Singer-Reginald VelJohnson-Rik Colitti-John Snyder-Steve Rackman-Caitlin Clarke-Anne Francine-Irving Metzman-Paul Greco-Maggie Blinco-Gerry Skilton-Terry Gill-Peter Turnbull-Khristina Totos-Graham 'Grace' Walker-David Bracks-Brett Hogan-J.J. Cole-Gwyllum Evans-Clarie Hague-Jan Saint-Peter Bucossi-Sullivan Walker-Bobby Alto-Anne Carlisle-Paige Matthews-Nancy Mette-Barry Kivel-Tony Holmes-Dan Lounsbery-Dolores Messina-Danny Aiello III-Dhonna Harris Goodale-Tony LaFortezza-Joe Pentangelo,new york city-prostitute-hotel-journalist-culture clash-subway-crocodile-wilderness-knife-tourist-limousine-poacher-fish out of water-adventurer-australian outback-kangaroo,/pduPduL1ub5kok3lPYT15ryC9L6.jpg,/8nSB593brq5iI3RTLGnjNqnhK46.jpg,9396-53460-9290-9336-96-10328-9354-10157-12154-8009-12118-951-90-10303-9493-2605-9326-8856-10136-623-10345 +807,Se7en,Crime-Mystery-Thriller,en,"Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the ""seven deadly sins"" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind while his novice partner Mills scoffs at his efforts to unravel the case.",70.903,New Line Cinema-Juno Pix-Cecchi Gori Pictures,9/22/95,33000000,327311859,127,Released,Seven deadly sins. Seven ways to die.,8.371,19950,Morgan Freeman-Brad Pitt-Gwyneth Paltrow-John Cassini-Peter Crombie-Reg E. Cathey-R. Lee Ermey-Kevin Spacey-Daniel Zacapa-Andrew Kevin Walker-George Christy-Endre Hules-Hawthorne James-Bob Mack-William Davidson-Bob Collins-Jimmy Dale Hartsell-Richard Roundtree-Charline Su-Dominique Jennings-Allan Kolman-Beverly Burke-Gene Borkan-Julie Araskog-Mario Di Donato-Alfonso Freeman-John C. McGinley-Harrison White-Bob Stephenson-Michael Reid MacKay-Richard Portnow-Tudor Sherrard-Mark Boone Junior-Pamala Tyson-Lennie Loftin-Sarah Reinhardt-Emily Wagner-Martin Serene-Michael Massee-David Correia-Ron Blair-Jennifer Mueller-Leland Orser-Lexie Bigham-Evan Mirand-Paul Eckstein-Harris Savides-Rachel Flanagan-Heidi Schanz-Brian Evers-Shannon Wilcox-Richard Schiff-James Deeth-John Santin-Charles A. Tamburro-Richmond Arquette-Duffy Gaver-Charles S. Dutton-Arthur Max,drug dealer-rage and hate-police-s.w.a.t.-sadism-self-fulfilling prophecy-psychopath-detective-rain-investigation-pension-evisceration-pride and vanity-immoderateness-insomnia-murder-serial killer-religion-seven deadly sins-depravity-neo-noir,/6yoghtyTpznpBik8EngEmJskVUO.jpg,/dYjZ27hDw2QFaEIfzbNGwW0IkV9.jpg,550-594417-680-11324-274-77-16869-629-13-27205-1124-1422-278-769-857-603-101-155-500-424-694 +458156,John Wick: Chapter 3 - Parabellum,Action-Thriller-Crime,en,Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin��s guild the High Table John Wick is excommunicado but the world��s most ruthless hit men and women await his every turn.,84.255,Thunder Road-Lionsgate-87Eleven,5/15/19,55000000,326709727,131,Released,Every action has consequences.,7.446,9559,Keanu Reeves-Halle Berry-Ian McShane-Laurence Fishburne-Mark Dacascos-Asia Kate Dillon-Lance Reddick-Anjelica Huston-Sa��d Taghmaoui-Jerome Flynn-Randall Duk Kim-Margaret Daly-Robin Lord Taylor-Susan Blommaert-Unity Phelan-Jason Mantzoukas-Andrea Sooch-Sergio Delavicci-Cecep Arif Rahman-Yayan Ruhian-Tiler Peck-Baily Jones-India Bradley-Olivia MacKinnon-Sarah Villwock-Eliza Blutt-Harrison Coll-Boban Marjanoviۈ-Maxim Beloserkovsky-Charles Askegard-Stefaniya Makarova-Jeff G. Waxman-A��ssam Bouali-Mustapha Adidou-Alexey Golousenko,new york city-martial arts-casablanca morocco-morocco-secret society-secret organization-black humor-sahara desert-bratva (russian mafia)-sequel-organized crime-one man army-professional assassin-baba yaga-dog man friendship,/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg,/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg,324552-245891-603692-384018-320288-429617-299534-287947-373571-584249-447404-420817-299537-49679-458012-479455-475557-399579-456740-383498-299536 +350,The Devil Wears Prada,Comedy-Drama-Romance,en,Andy moves to New York to work in the fashion industry. Her boss is extremely demanding cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.,49.64,Fox 2000 Pictures-Dune Entertainment-Major Studio Partners-Peninsula Films,6/29/06,35000000,326551094,109,Released,Meet Andy Sachs. A million girls would kill to have her job. She's not one of them.,7.38,10630,Anne Hathaway-Meryl Streep-Emily Blunt-Stanley Tucci-Simon Baker-Adrian Grenier-Tracie Thoms-Rich Sommer-Daniel Sunjata-David Marshall Grant-James Naughton-Tibor Feldman-Rebecca Mader-Jimena Hoyos-Gisele B�_ndchen-George C. Wolfe-John Rothman-Stephanie Szostak-Colleen Dengel-Suzanne Dengel-Heidi Klum-Valentino Garavani-Bridget Hall-Ines Rivero-Alyssa Sutherland-Robert Verdi-Paul Keany-David Callegati-Rori Cannon-Stan Newman-James Cronin-Eric Seltzer-Lindsay Brice-Steve Benisty-John Graham-Wells Dixon-Ilona Alexandra-Frank Anello-Alexander Blaise-Marie Brandt-Carl Burrows-Dono Cunningham-Guy A. Fortt-Alexie Gilmore-Toree Hill-Vivian Kalinov-Tim Krueger-Hector Lincoln-Nina Lisandrello-Zev McAllister-Denis McKeown-Mateo Moreno-Matt Murray-Ingrid Sophie Schram-Bobby Shue-Brandhyze Stanley-Jen Taylor-Taylor Treadwell-Donatella Versace-Lauren Weisberger-Laura D. Williams,paris france-new york city-journalist-based on novel or book-journalism-fashion journal-assistant-job entrant-job interview-editor-in-chief-fashion-fashion magazine-bullied-city life-fashion industry,/8912AsVuS7Sj915apArUFbv6F9L.jpg,/3tWw50B1xXlCnJ9A7NX4nNzZF4j.jpg,10625-9880-11631-11130-10521-162-11036-787-118-50544-4523-24803-114-310-222935-44214-634-18240-1593-621-12155 +260346,Taken 3,Thriller-Action,en,Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.,70.651,EuropaCorp-Grive Productions-M6-TSG Entertainment-Taken 3-20th Century Fox-Fox International Productions,12/16/14,48000000,325771424,109,Released,It Ends Here,6.229,5151,Liam Neeson-Forest Whitaker-Famke Janssen-Maggie Grace-Dougray Scott-Sam Spruell-Don Harvey-Dylan Bruno-Leland Orser-David Warshofsky-Jon Gries-Jonny Weston-Andrew Borba-Judi Beecher-Andrew Howard-Cedric Cirotteau-Catherine Dyer-Jimmy Palumbo-Robert Pralgo-Tony Williams-Al Vicente-Alexander Wraith-Shelley Calene-Black-Adam J. Smith-Jimmy Gonzales-David Clark-Michael Shikany-Robert Bryan Davis-Nazareth Dairian-Tony DeMil-Stefanie Kleine-Johnny Harvill-Angie Dillard-Wallace Langham-Franck Neel-Anton Yakovlev-Ellen Ho-Haley Craft-Stephanie Honor��-Steve Coulter-Mike Davies-Jonathan Waite-Lauren Sivan-Cornelius Peter-Kevin Fry-Katie Mary Garland-Al Sapienza-Chad Donella-Pete Thias-Cedric Camus-Karim Ben Haddou-Vincent Parisi-Scott Thrun-Laurent Desponds-Amanda Nima-Alex Disdier-Martin Vaughan Lewis-Abbey Ferrell-Ashante P.T. Stokes-C��dric Chevalme,revenge-murder-on the run-fugitive-framed-framed for murder-father daughter relationship,/vzvMXMypMq7ieDofKThsxjHj9hn.jpg,/Ivj0wsH0RU2IEGc8LdvCr97WL1.jpg,977897-82675-884361-30762-8681-852161-559672-74595-504047-643274-498580-303233-551649-17710-241554-168259-225574-8-254128-1034362 +2133,The Perfect Storm,Action-Adventure-Drama-Thriller,en,In October 1991 a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail.,20.215,Baltimore Spring Creek Productions-Radiant Productions-Warner Bros. Pictures,6/29/00,120000000,325756637,130,Released,The storm is coming.,6.4,1920,George Clooney-Mark Wahlberg-Diane Lane-John C. Reilly-William Fichtner-John Hawkes-Allen Payne-Mary Elizabeth Mastrantonio-Dash Mihok-Josh Hopkins-Todd Kimsey-Bob Gunton-Karen Allen-Cherry Jones-Christopher McDonald-Michael Ironside-Rusty Schwimmer-Janet Wright-Chris Palermo-Wiley M. Pickett-Hayden Tank-Merle Kennedy-Jennifer Sommerfeld-Joseph D. Reitman-Sandy Ward-Melissa Samuels-Steven Barr-Billy Mayo-Marcio Rosario-Brad Martin,based on novel or book-u.s. air force-natural disaster-biography-based on true story-disaster-shark-tragic event-thunderstorm-new england-jamaican-meteorologist-rescue boat-marina-city hall-the flemish cap-male camaraderie-storm at sea-1990s-man vs nature,/aOYHJclz1yZdFT3hdMY8TeYU4fk.jpg,/cmOWlfDvBSMyLaeZ85M87GmkH8v.jpg,6415-664-361751-6623-9772-503-9619-10782-2103-11652-2655-11678-1844-9341-602-2024-8656-11775-9631-869-10357 +10545,The Hunchback of Notre Dame,Drama-Animation-Family,en,At the urging of his gargoyle pals Quasimodo leaves Notre Dame tower against the wishes of his guardian the evil Judge Claude Frollo. He ventures out to the Festival of Fools and finds his first true friend a Romani woman named Esmeralda who entrusts him with a secret. When the secret is revealed Quasi soon finds himself fighting to save the people and city he loves.,53.222,Walt Disney Pictures-Walt Disney Feature Animation,6/21/96,100000000,325338851,91,Released,Join the party!,7.1,4421,Tom Hulce-Demi Moore-Heidi Mollenhauer-Tony Jay-Kevin Kline-Charles Kimbrough-Mary Wickes-Jane Withers-Jason Alexander-Paul Kandel-Mary Kay Bergman-David Ogden Stiers-Gary Trousdale-Corey Burton-Bill Fagerbakke-Jim Cummings-Patrick Pinney-Frank Welker-Jack Angel-Joan Barber-Scott Barnes-Bob Bergen-Susan Blu-Maureen Brennan-Rodger Bumpass-Victoria Clark-Philip L. Clarke-Jennifer Darling-Debi Derryberry-Jonathan Dokuchitz-Bill Farmer-Laurie Faso-Merwin Foard-Dana Hill-Judy Kaye-Eddie Korbich-Alix Korey-Michael Lindsay-Sherry Lynn-Mona Marshall-Howard McGillin-Mickie McGowan-Anna McNeely-Bruce Moore-Denise Pickering-Phil Proctor-Jan Rabson-Peter Samuel-Kath Soucie-Gordon Stanley-Mary Stout-Marcelo Tubert-Frank Stancati,paris france-based on novel or book-judge-obsession-dance-sword-mockery-ugliness-cathedral-musical-fool-bell-religion-orphan-army captain-festival-angry mob-notre dame cathedral-witch hunt-15th century,/r7V92gY3AMO6li17MmGTixAnFcv.jpg,/oslaee3VX9kJAjVezbjZKlEJDzn.jpg,10530-10340-10882-10693-10895-11360-37135-10112-12230-3170-9325-12092-11970-10144-11224-11886-11544-408-10674-12448-10948 +17979,A Christmas Carol,Animation-Family-Fantasy,en,Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence what opportunities he wasted in his youth his current cruelties and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness and must decide what his own future will hold: death or redemption.,76.594,Walt Disney Pictures-ImageMovers Digital,11/4/09,200000000,325300000,94,Released,Season's Greedings,6.9,4220,Jim Carrey-Gary Oldman-Colin Firth-Robin Wright-Cary Elwes-Bob Hoskins-Daryl Sabara-Steve Valentine-Sage Ryan-Amber Gainey Meade-Ryan Ochoa-Bobbi Page-Ron Bottitta-Fionnula Flanagan-Samantha Hanratty-Julian Holloway-Jacquie Barnbrook-Lesley Manville-Molly C. Quinn-Fay Masterson-Leslie Zemeckis-Paul Blackthorne-Michael Hyland-Kerry Hoyt-Julene Renee-Raymond Ochoa-Callum Blue-Matthew Henerson-Aaron Rapke-Sonje Fortag,london england-based on novel or book-holiday-greed-victorian england-money-ghost-lesson-christmas music-moneylender-christmas-19th century-scrooge-christmas eve,/t41VHjYItCYHBh2hijsTID44cNv.jpg,/bFntIQxWBwtzYAFc68xF1GKAfiv.jpg,493092-5255-9444-8871-12222-891676-856245-10895-408-1026624-10340-12092-9487-9303-13053-10545-3170-11774-10198-9836-12230 +695721,The Hunger Games: The Ballad of Songbirds & Snakes,Drama-Science Fiction-Action,en,64 years before he becomes the tyrannical president of Panem Coriolanus Snow sees a chance for a change in fortunes when he mentors Lucy Gray Baird the female tribute from District 12.,1329.764,Lionsgate-Color Force,11/15/23,100000000,322300000,157,Released,Everyone hungers for something.,7.3,1211,Tom Blyth-Rachel Zegler-Peter Dinklage-Jason Schwartzman-Hunter Schafer-Josh Andr��s Rivera-Viola Davis-Fionnula Flanagan-Mackenzie Lansing-Isobel Jesper Jones-Ashley Liao-Jerome Lance-Knox Gibson-Aamer Husain-Nick Benson-Lilly Cooper-Luna Steeples-Max Raphael-Hiroki Berrecloth-Zoe�� Renee-Ayomide Adegun-Kaitlyn Akinpelumi-Sofia Sanchez-Am��lie Hoeferle-Irene B�_hm-Cooper Dillon-Luna Kuse-Kjell Brutscheidt-Dimitri Abold-Athena Strates-Dakota Shapiro-George Somner-Vaughan Reilly-Flora Thiemann-Honor Gillies-Eike Onyambu-Konstantin Taffet-Burn Gorman-Scott Folan-Carl Spencer-Michael Greco-Daniela Grubert-Victoria Paige Watkins-Clemens Schick-Dexter Sol Ansell-Rosa Gotzler-Joshua Kantara-Florian Burgkart-Aaron Finn Schultz-Mekyas Mulugeta-Emma Frieda Br�_ggler-Yalany Marschner-Serena Oexle-Anni Baumann-Seyna Sylla-Aminata Lucia Yade Toscano-Levi Strasser-Chieloka Jairus-Tim Torok-Varvara Kanellakopoulou-Marc Aden Gray-Cameron MacConomy-Ghaith Saleh-Riley Chung-Denise Hansen-Raphael Zari-Mona Vojacek Koper-Steven McMichael-Donald Sutherland-Jonas Martens,daughter-based on novel or book-arena-fight-mentor-dystopia-riot-exploration-president-prequel-survival-murder-snow-creature-battle-spin off-fight to the death-young adult-origin story-based on young adult novel-death game-teenager,/mBaXZ95R2OxueZhvQbcEWy2DqyO.jpg,/5a4JdoFwll5DRtKMe7JLuGQ9yJm.jpg,609681-466420-968051 +38055,Megamind,Animation-Action-Comedy-Family-Science Fiction,en,Bumbling supervillain Megamind finally defeats his nemesis the superhero Metro Man. But without a hero he loses all purpose and must find new meaning to his life.,54.257,DreamWorks Animation,10/28/10,130000000,321885765,96,Released,His brain is off the chain.,6.945,6021,Will Ferrell-Tina Fey-Brad Pitt-Jonah Hill-David Cross-Ben Stiller-Justin Theroux-Jessica Schulte-Tom McGrath-Emily Nordwind-J.K. Simmons-Ella Olivia Stiller-Quinn Dempsey Stiller-Brian Hopkins-Christopher Knights-Mike Mitchell-Jasper Johannes Andrews-Jack Blessing-Stephen Kearin,saving the world-date-prison-secret identity-fish-gun-dna-mayor-anti hero-rain-museum-one-sided love-superhero-anthropomorphism-reporter-duringcreditsstinger-alien baby-stronger villain-invincible,/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg,/waIZRQ9mw497jmN0mAQOS5b4oR3.jpg,15512-10527-49444-22794-46195-13053-953-9502-810-10192-5559-44896-8355-80321-10555-809-950-7518-38757-425-81188 +259693,The Conjuring 2,Horror-Thriller,en,Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.,102.582,New Line Cinema-Dune Entertainment-The Safran Company-Evergreen Media Group-Atomic Monster,6/8/16,40000000,321834351,134,Released,The next true story from the case files of Ed and Lorraine Warren.,7.288,7448,Patrick Wilson-Vera Farmiga-Madison Wolfe-Frances O'Connor-Simon McBurney-Lauren Esposito-Benjamin Haigh-Sterling Jerins-Maria Doyle Kennedy-Patrick McAuley-Simon Delaney-Franka Potente-Bob Adrian-Steve Coulter-Chris Royds-Abhi Sinha-Daniel Wolfe-Annie Young-Elliot Joseph-Cory English-Emily Tasker-Kate Cook-Shannon Kook-Thomas Harrison-Jennifer Collins-Bonnie Aarons-Javier Botet-Joseph Bishara-Nancy DeMars-Robin Atkin Downes-Jason Liles-Emily Brobst,london england-england-1970s-spirit-single mother-demon-paranormal investigation-demonic possession-ghost-christmas-valak,/zEqyD0SBt6HL7W9JQoWwtd5Do1T.jpg,/4mfFtlGeInPrQVm1hpv7th02yjx.jpg,138843-250546-396422-49018-91586-345911-423108-280092-439079-82507-565-321258-23827-300669-1020402-376570-521029-335796-406563-242224-283445 +943,Lethal Weapon 3,Adventure-Action-Comedy-Thriller-Crime,en,Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.,23.724,Silver Pictures-Warner Bros. Pictures-St. Petersburg Clearwater Film Commision,5/15/92,35000000,321731527,118,Released,The magic is back again!,6.696,2577,Mel Gibson-Danny Glover-Joe Pesci-Rene Russo-Stuart Wilson-Steve Kahan-Mary Ellen Trainor-Darlene Love-Traci Wolfe-Ebonie Smith-Damon Hines-Thomas A. Geas-Gregory Millar-Nick Chinlund-Alan Scarfe-Delores Hall-Mark Pellegrino-John Cenatiempo-Pete Antico-Sven-Ole Thorsen-Paul Tuerpe-Veronica Alicino-Miguel A. N�_��ez Jr.-Philip Moon-Vince Howard-Paul Hipp-Lauren Shuler Donner-Marian Collier-James Oliver-Jan de Bont-Mic Rodgers-Stephen T. Kay-Norman D. Wilson-Anthony Johnson-Jason Rainwater-J. Mills Goodloe,showdown-police-sequel-mixed martial arts-los angeles california-rookie cop-wisecrack humor-buddy cop-lapd-maverick cop-aftercreditsstinger-action hero,/8FnOudDHPOY7MFJnvQMR1qpuyek.jpg,/kmt9XmhmX36sJduuDVFlTgEWh9U.jpg,944-942-941-81996-2112-3595-9359-18501-9350-9739-1573-1572-90-36955-29514-9319-881-96-10139-306-37137 +20943,The Ugly Truth,Comedy-Romance,en,A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys however lead to an unexpected result.,26.367,Lakeshore Entertainment-Relativity Media,7/24/09,38000000,321682600,96,Released,The battle of the sexes is on.,6.494,3176,Katherine Heigl-Gerard Butler-Eric Winter-Nick Searcy-Bree Turner-John Michael Higgins-Kevin Connolly-Cheryl Hines-Bonnie Somerville-Jesse D. Goins-Noah Matthews-John Sloman-Yvette Nicole Brown-Nate Corddry-Allen Maldonado-Steve Little-Dan Callahan-Tess Parker-Arielle Vandenberg-Rocco DiSpirito-Valente Rodriguez-Jamison Yang-Blake Robbins-Tom Virtue-Adam J. Harrington-J. Claude Deering-Alexis Krause-Craig Ferguson-Jade Marx-Berti-Mimi Michaels-Earl Carroll-Marc D. Wilson-Jeff Newburg-Ryan Surratt-Vicki Lewis-Yolanda Pecoraro-Brooke Stone-Stephanie Mace-Ashley Ausburn-Kevin Bangos-Melinda Bennett-April Betts-Skyler Caleb-Adam Clark-Sandra Daubert-Sabrina Diaz-Kim Donovan-Christina Gabrielle-Steven Galarce-Jerald Garner-Lejla Hadzimuratovic-Justin Rodgers Hall-Stephen Hansen-James Howarth-Alexandra Nicole Hulme-Courtney Kocak-Bruna Matsin-Tina Mayer-Taylor McCluskey-Erin Micklow-Bob Morrisey-Barnett O'Hara-Shanna Olson-Sandra Plazinic-Calo Rodriguez-Ashton Shane-Anthony Simone-Rich Skidmore-Chris Spinelli-Holly Weber-Tracy Weisert-Tamara Witmer-Carolina Zaballa,surgeon-sexism-romantic comedy-romance-television producer-morning show-relationship-sex toy-misogyny-opposites attract-sacramento,/2rq96Ihbqb1eU3TEBVtgFlqbeX7.jpg,/5etQ5b9reaWiSJtc9cZK5ULVADp.jpg,6557-38408-37821-18240-27573-9029-41630-10521-32856-6023-10184-50546-50544-37056-12556-9919-4964-10096-878508-54054-62838 +20662,Robin Hood,Action-Adventure-Drama,en,When soldier Robin happens upon the dying Robert of Loxley he promises to return the man's sword to his family in Nottingham. There he assumes Robert's identity; romances his widow Marion; and draws the ire of the town's sheriff and King John's henchman Godfrey.,31.602,Scott Free Productions-Imagine Entertainment-Relativity Media,5/12/10,200000000,321669741,140,Released,"Rise and rise again, until lambs become lions.",6.379,4082,Russell Crowe-Cate Blanchett-Max von Sydow-William Hurt-Mark Strong-Oscar Isaac-Danny Huston-Eileen Atkins-Mark Addy-Matthew Macfadyen-Kevin Durand-Scott Grimes-Alan Doyle-Douglas Hodge-L��a Seydoux-Jonathan Zacca��-Robert Pugh-Gerard McSorley-Velibor Topic-Ciaran Flynn-Simon McBurney-Denise Gough-John Nicholas-Thomas Arnold-Pip Carter-Mark Lewis Jones-Bronson Webb-Denis M��nochet-Jamie Beamish-John Atterbury-Luke Evans-Roy Holder-Mark Ryder-Ruby Bentall-Ned Dennehy-Nicolas Simon-Lisa Millett-Stuart Martin-Jessica Raine-Steve Evets-Eric Rulliat-Abraham Belaga-Jack Downham-Richard Riddell-David Bertrand-Arthur Darvill-Giannina Facio-Hannah Barrie-Lee Battle-Nicky Bell-Andrea Ware-John O'Toole-Ralph Ineson-Zuriel de Peslouan-Jake Curran-Samuel Dupuy-Nick Lucas-Alan Charlesworth-Lothaire Gerard-Mat Laroche-Chris Jared-Joseph Hamilton-James Hamilton-James Burrows-Danny Clarke-Tom Blyth-Lee Nicholas Harris-Michael Koltes-Umit Ulgen-Robert J. Fraser-Ryan Stuart-Harvey Walsh-Will Richardson,robin hood-archer-knight-sherwood forest-historical fiction-bow and arrow-middle ages-medieval-king of england-12th century,/9NS5QGOfck24yL3bZqWeW06PgPC.jpg,/h7AKqgIh86HDgJIzENeR2ng1Knn.jpg,8367-9543-1495-27576-18823-652-19959-27022-10528-34544-22972-1735-40805-37834-530973-9477-12113-2253-2059-44912-254 +16869,Inglourious Basterds,Drama-Thriller-War,en,"In Nazi-occupied France during World War II a group of Jewish-American soldiers known as ""The Basterds"" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.",65.797,The Weinstein Company-Universal Pictures-A Band Apart-Zehnte Babelsberg Film-Visiona Romantica-Peninsula Films,8/19/09,70000000,321457747,153,Released,Once upon a time in Nazi occupied France...,8.216,20559,Brad Pitt-M��lanie Laurent-Christoph Waltz-Eli Roth-Michael Fassbender-Diane Kruger-Daniel Br�_hl-Til Schweiger-Gedeon Burkhard-Jacky Ido-B.J. Novak-Omar Doom-August Diehl-Denis M��nochet-Sylvester Groth-Martin Wuttke-Mike Myers-Julie Dreyfus-L��a Seydoux-Richard Sammel-Alexander Fehling-Rod Taylor-Samm Levine-Paul Rust-Michael Bacall-Arndt Schwering-Sohnrey-Petra Hartung-Volker Michalowski-Ken Duken-Christian Berkel-Tina Rodriguez-Lena Friedrich-Ludger Pistor-Jana Pallaske-Wolfgang Lindner-Michael Kranz-Rainer Bock-Andr�� Penvern-Sebastian H�_lk-Buddy Joe Hooker-S�_nke M�_hring-Carlos Fidel-Hilmar Eichhorn-Patrick Elias-Eva L�_bau-Salvadore Brandt-Jasper Linnewedel-Wilfried Hochholdinger-Olivier Girard-Michael Scheel-Leo Plank-Andreas Tietz-Bo Svenson-Enzo G. Castellari-Christian Br�_ckner-Samuel L. Jackson-Bela B.-Noemi Besedes-H��l��ne Cardona-Jake Garber-Sabrina Rattey-Alex Boden-Guido F�_hrwei��er-Harvey Keitel-Andrew Napier-Gregory Nicotero-Quentin Tarantino-Vitus Wieser-Bea-Marie R�_ck-Daniela Schwerdt-Anne-Sophie Franck,paris france-guerrilla warfare-self sacrifice-dynamite-mexican standoff-world war ii-jew persecution-nazi-masochism-sadism-anti-semitism-swastika-german occupation of france-british politics-adolf hitler,/7sfbEnaARXDDhKm0CZ7D7uc2sbo.jpg,/8pEnePgGyfUqj8Qa6d91OZQ6Aih.jpg,68718-24-500-680-393-550-807-11324-1422-857-273248-106646-98-13-27205-155-185-603-769-77-1124 diff --git a/openai-demo-service/src/main/resources/templates/get-capital-prompt.st b/openai-demo-service/src/main/resources/templates/get-capital-prompt.st index bd4ebca..8d5fbd2 100644 --- a/openai-demo-service/src/main/resources/templates/get-capital-prompt.st +++ b/openai-demo-service/src/main/resources/templates/get-capital-prompt.st @@ -1 +1,11 @@ -What is the capital of {country}. \ No newline at end of file +What is the capital of {country}. +You are a helpful assistant, conversing with a user about the subjects contained in a set of documents. +Use the information from the DOCUMENTS section to provide accurate answers. If unsure or if the answer +isn't found in the DOCUMENTS section, simply state that you don't know the answer. + + +QUESTION: +{input} + +DOCUMENTS: +{documents} diff --git a/openai-demo-service/src/main/resources/templates/rag-prompt-template.st b/openai-demo-service/src/main/resources/templates/rag-prompt-template.st new file mode 100644 index 0000000..695963d --- /dev/null +++ b/openai-demo-service/src/main/resources/templates/rag-prompt-template.st @@ -0,0 +1,11 @@ +You are a helpful assistant, conversing with a user about the subjects contained in a set of documents. +Use the information from the DOCUMENTS section to provide accurate answers. If unsure or if the answer +isn't found in the DOCUMENTS section, simply state that you don't know the answer. + + +QUESTION: +{input} + +Document contains below information about movie id,title,genres,original_language,overview,popularity,production_companies,release_date,budget,revenue,runtime,status,tagline,vote_average,vote_count,credits,keywords,poster_path,backdrop_path,recommendations +DOCUMENTS: +{documents} \ No newline at end of file diff --git a/openai-demo-service/tmp/moviesvector.json b/openai-demo-service/tmp/moviesvector.json new file mode 100644 index 0000000..9bc83e5 --- /dev/null +++ b/openai-demo-service/tmp/moviesvector.json @@ -0,0 +1,2906 @@ +{ + "35ba5479-3b40-401e-8b0b-35dc53e7f0fb" : { + "text" : "Vithya-Mythili Prakash-Raj Patel-Hadiqa Hamid-Iswar Srikumar-Padmini Ramachandran,sea-loss of loved one-1970s-faith-zebra-survival-young boy-zookeeper-orangutan-teenage boy-hyena-meerkat-magic realism-cargo ship-lifeboat-injured animal-storm at sea-told in flashback-wreckage-loss of family-teenage protagonist-family loss-flying fish,/iLgRu4hhSr6V1uManX6ukDriiSc.jpg,/lcyippCCbZOliGxX7HbTNyWf98q.jpg,37724-49051-14161-70160-62177-10528-82690-49026-68728-68718-82693-1930-59967-68721-19995-41154-20352-70981-10681-18785-68734\r\n335988,Transformers: The Last Knight,Action-Adventure-Science Fiction,en,Autobots and Decepticons are at war with humans on the sidelines. Optimus Prime is gone. The key to saving our future lies buried in the secrets of the past in the hidden history of Transformers on Earth.,57.415,Paramount-di Bonaventura Pictures-Ian Bryce Productions-Tom DeSanto/Don Murphy Production,6/16/17,217000000,605400000,154,Released,Two worlds collide. One survives.,6.1,5872,Mark Wahlberg-Josh Duhamel-Stanley Tucci-Anthony Hopkins-Isabela Merced-Laura Haddock-Jerrod Carmichael-Santiago Cabrera-John Turturro-Glenn Morshower-Liam Garrigan-Peter Cullen-Frank Welker-Gemma Chan-Erik Aadahl-Jim Carter-Omar Sy-Ken Watanabe-John Goodman-John DiMaggio-Reno Wilson-Jess Harnell-Tom Kenny-Steve Buscemi-Steven Barr-Mark Ryan-Mitch Pileggi-Tony Hale-Gil Birmingham-Remi Adeleke-Nicola Peltz Beckham-Shia LaBeouf-Stephen Hogan-Martin McCreadie-Rob Witcomb-Marcus Fraser-John Hollingworth-Daniel Adegboyega-Benjamin Maurice Webb-Claude Knowlton-Jacob Zachar-Maggie Steed-Sara Stewart-Phoebe Nicholls-Rebecca Front-Minti Gorne-Benjamin Flores Jr.-Juliocesar Chavez-Samuel Parker-Daniel Iturriaga-Aisha Kabia-Andy Bean-Sam Yim-Mark Dexter-Rob Jarvis-Tim Downie-Elizabeth Croft-Emily Tierney-Wolfgang Young-Nicholas Khan-Leighton Sharpe-Christina Tam-Aiyaz Ahmed-Pauline McLynn-Matthew Castle-Mia Maria-Poppy Carter-Seeta Indrani-Phill Langhorne-Simon Harrison-Wendy Albiston-John Burke-Barbara Eve Harris-Granville Ames-Jim Wisniewski-Perry Yee-Brian William Price-Vincent Jerome-Alan Pietruszewski-Christoper Vasquez-Drew Waters-Krista Schaeffer-Walles Hamonde-Tom Wright-Dan Warner-Michael Richard-Charlie Bouguenon-Jandre le Roux-Eddie Hall-Kevin Kent-Jude Poyer,england-based on toy-knight-robot-transformers,/s5HQf2Gb3lIO2cRcFwNL9sn1o1o.jpg,/1n00NlOGRFZVs8coBxyZLm5l4EC.", + "embedding" : [ 2.5361186E-4, -0.05528398, -0.015536704, -0.021105953, -0.019962145, 0.032135513, 0.004731818, -0.015618404, -0.012261877, -0.029820668, 0.02233146, 0.027274337, 0.013426108, -0.011689974, 0.0013421002, 0.0048611774, 0.02621223, -0.024891406, 0.011758057, -0.022848895, -0.0031846159, 0.014106946, -0.0035777993, 0.010818503, -0.0012025286, 0.009620229, 0.024510138, -0.013466959, -0.0056543527, -0.0033292938, 0.0026910088, -0.018913656, -0.002929302, -0.025109274, -0.014678849, -0.0025718624, 0.030637672, -0.014896717, 0.03248955, -0.006576887, 0.010505318, 0.008449189, -0.009892564, 1.6010311E-4, -0.013296749, 0.021160418, -0.0019625132, -0.016081374, -0.012425278, 0.037446044, 0.03829028, 0.021214886, -0.019294925, -0.021378286, -0.014869483, -0.008980243, -0.0075709093, -0.0027624967, 0.016612427, 0.0026518607, 0.022181675, -0.00798622, -0.024156103, -0.0099810725, -0.010838928, -0.022413159, 0.004265445, -0.015400536, 0.0046671387, -0.0047352226, 0.037446044, 0.033170387, -0.005773499, 0.01095467, 0.0130652655, -0.029847901, -0.019036207, -0.015305219, -0.0042824657, 0.0069921976, 0.004347145, -0.018750256, -0.020302564, -0.004456079, 0.010464467, -0.01881834, -0.010961479, 0.013678019, -0.022631027, 0.0038433257, 0.012833781, 0.03436866, 3.89141E-4, 0.015196285, 0.026539033, 0.020397881, -0.0063283816, 0.031835947, -0.015700106, -0.046269692, -0.0032016367, -0.027070085, 0.007897711, -0.008244938, -0.010246599, 0.0032918476, 0.003829709, 0.010546167, 0.018123886, -0.010872969, 0.006137747, 0.016231159, 0.00418034, -0.05046365, 6.9700705E-4, -0.014706083, 0.026076064, -0.0058177537, -0.009279811, -0.022808045, 0.009511295, 0.010852545, -0.0047182017, -0.02905813, 0.035131197, 0.024550987, 0.027560288, -0.0035063114, -0.006927518, -0.008939392, 0.017524749, -0.0127384635, 0.010791269, 0.007829627, -0.018178351, 0.042375304, -0.050599817, -0.006736884, -0.013998012, -0.017701766, 0.03265295, 0.02332548, -0.016408175, -0.03962472, -0.03314315, 0.003945451, 0.0062194476, -0.0015003949, 0.0064236987, 0.0034416318, 0.020425115, 0.011805716, 0.0078840945, 0.012357194, 0.02132382, 0.00714879, -0.020384265, -0.009797247, -0.0034688653, -0.001977832, -0.0094295945, 3.8105604E-4, -0.007216874, -0.004469696, 0.017715383, 0.024469288, 0.012677188, -0.006930922, -0.007904519, -0.003884176, -0.010015114, 0.037745614, -0.029984068, 0.020969784, -0.00919811, 0.0411498, 0.019540027, 0.0012910374, -0.030664906, -0.015332453, -0.0061990223, -2.9190895E-4, 0.036492873, 0.027669221, -0.011029562, 0.01095467, 0.011451681, -0.024537371, 0.014692466, -0.003788859, 0.0045037377, 0.03453206, 0.008136004, -0.003426313, -0.64924634, -0.03303422, -0.0043641664, -0.017089013, 0.008204088, 0.013242283, -0.0020816596, -0.0065258243, -0.028186658, 0.003904601, -0.0360299, 0.023025913, 0.010382767, -0.026484566, -0.018423453, -0.021051485, 0.008755566, -0.02851346, 0.029956834, 0.0016961356, -0.01429758, 0.0077206935, 0.018586854, 0.020520432, 0.0033020603, -0.0030722776, 0.0040033227, -0.012289111, 0.013072073, 0.007768352, -0.012670379, 0.010804886, 0.010682335, -0.006393061, 0.043628044, -0.00564414, -0.01613584, 0.047740303, 0.036492873, 0.0150465015, -0.025054807, -0.0065360367, 0.010668718, 0.024210569, -0.0030144064, 0.022522094, 0.014597149, -0.001006788, 0.011642315, 0.004360762, 0.0035471616, 0.0077206935, -0.0076798433, -0.011982734, 0.0019182587, 0.0068424135, 0.037473276, -0.041939568, 0.021977423, -0.00861259, -0.006287531, 0.026225848, 0.012806547, 0.0028493034, -0.0016561364, 0.021582538, 0.01702093, 0.0017974101, 0.0029037704, -0.046487562, 0.0061479597, 0.015754571, 0.00982448, -0.00940917, 0.012854205, 0.0076389927, 0.044581216, 0.003079086, 0.0059096664, 0.029275998, 0.008224512, -0.008850883, -0.0048781983, 0.013861844, 0.021963807, -0.00579052, -0.020683832, 0.009504487, 0.0057666907, 0.008959817, 0.0209017, 0.019117907, 0.0031675948, -0.0024629284, -0.0017906018, -0.005695203, 0.0023471862, 0.0062909354, 0.023311865, -0.035485234, -0.006631354, -0.024496522, 0.03382399, -0.0041360855, 0.011560615, -0.0073530413, -0.019185992, 6.599865E-4, 0.032952517, 0.0013284835, -0.01429758, 0.001776985, -0.02207274, -0.002103787, -0.0022978254, -0.027601138, 0.02370675, 0.02027533, -0.004980324, -5.480739E-4, 0.010457659, -0.0037514127, 0.01212571, 0.0013106115, 0.016408175, 0.023189314, -0.005256063, -0.011451681, 0.012234644, 0.016530726, 0.0018518771, -0.011124879, 0.018736638, -0.014038862, -0.021963807, 0.012731655, 0.02776454, 0.004622884, 0.009735972, 0.0064577404, -0.021882106, 0.01028745, -0.010709569, -0.009347894, -0.0052832966, -0.032925285, -0.044581216, -0.0011072115, -0.009034709, 2.4850556E-4, -0.02132382, 0.007809202, 0.011608274, 0.010103623, 0.0022382522, -0.005422868, -0.022903362, -0.019226842, 0.007496017, -0.0239927, 0.020656599, 0.0150465015, -0.014406514, -0.015455004, 0.018382603, 0.006212639, -0.013623551, 0.0100900065, -0.005473931, -0.02663435, 0.010375958, -0.016571576, -0.0050143655, 0.026307547, -0.020207247, 0.03216275, -0.008605782, -0.01099552, -0.007237299, -9.90618E-4, -4.6977765E-4, 0.002199104, -0.026470948, -0.001925067, 0.026702434, 0.02023448, 0.017320497, 0.0012484852, -0.009681504, 0.024047168, -0.013746102, -0.009402361, -0.0010714675, 0.00802707, -0.012200601, -5.49776E-4, -0.006651779, 0.0118738, 0.011118071, 0.0039011969, 0.037391577, 0.019077057, 0.009878947, -0.0064951866, 0.008251746, -0.026348397, 0.0010416808, -0.031291276, 0.015958823, 0.0044084205, 0.022835279, -0.008292597, -0.01601329, -0.006382848, -1.3127392E-4, 0.031318508, -0.002876537, 0.016489876, -0.014460981, -0.0061445553, 0.0059471126, -0.0076866513, 0.008074729, 0.011261047, -0.013895886, 0.020656599, 0.0048645814, -0.007591334, -8.850883E-4, -0.013310366, -0.0130652655, 0.005661161, -0.010471275, 0.019894062, 0.0055590356, 0.006501995, 0.01964896, -0.010682335, 0.05313253, 0.001006788, 0.012997181, 0.021936573, 0.009273002, -0.009259385, -0.011628699, 0.01007639, 0.017089013, 0.016353708, -0.01484225, 0.024346737, -0.02479609, 0.020534048, -0.0026842004, -0.0027369654, 0.009504487, -0.0071964487, -0.004044173, 0.0011327429, 0.044799086, 0.01668051, 0.004214382, -0.016435409, 0.021119568, 0.019417476, 0.021936573, -0.008455997, -0.0209017, 0.013664402, -0.0031829136, -0.028295591, -0.040005993, -0.0070330477, 0.0011472106, -0.0031114258, -0.0035846077, -0.025653943, -0.0073802746, 0.019989379, -0.0057803076, 0.026035212, -0.011689974, -0.03349719, 0.015863506, 0.024169719, -0.0100900065, -0.0105325505, -0.029956834, -0.019063441, -0.03951579, -0.0024680346, -0.0052662753, 0.02203189, -0.0032544015, 0.0037480085, -0.010219365, -0.020724684, 0.013201432, -0.022385925, 0.0357848, 0.022590177, 7.9487736E-4, 0.013446534, 4.295657E-4, 0.0056169066, 0.013718869, -0.028350059, -0.0033616335, -0.0014008224, 0.004357358, -0.011022754, 0.0072304904, -0.01625839, -0.027492205, 0.001299548, -0.017660916, -0.01300399, -5.0126633E-4, 0.011438064, 0.007012623, -0.012098476, -0.00706709, -0.012132518, -0.018164735, 0.0077615436, 0.0827898, 0.030610438, 0.010988711, 0.007788777, -0.018205585, 0.0013582702, -0.011853375, -0.027546672, -0.007659418, -0.007713885, 0.013330791, -0.011090837, 0.02604883, -0.015686488, 0.012493362, -0.007870478, -0.0076253763, 0.0038126882, 0.010232982, -0.018450687, -0.015482237, -0.018191969, 0.022712728, 6.748798E-4, 0.0049598985, -0.016203925, 0.029875135, 0.02813219, -0.0055658435, 0.0020033633, -0.016803062, 0.0037786462, -0.005589673, -0.0069343266, -0.004262041, 0.00940917, 0.0070602815, 0.035539698, 0.022154441, 0.012078051, 0.0030620652, 0.010294258, 0.020316182, -0.0086602485, 0.014147796, -0.02011193, -0.003463759, 0.022140825, 0.005279892, -0.030093003, 0.016925612, 0.008054304, -0.018845573, -0.025490543, 0.01116573, 0.0012927395, -0.007727502, -0.012554637, -0.02007108, 0.015087351, 0.011063604, -0.015863506, 0.0013063563, -0.0037514127, -0.0145018315, -0.019036207, -0.022059124, -0.015196285, -0.023053147, 0.010852545, -0.009708738, -0.01275208, -0.007924944, -0.004289274, 0.001814431, -0.014529065, 0.02086085, -0.023652283, 0.0071692155, 0.007843244, -0.035349064, -0.022317842, 0.019540027, -0.034477595, -0.010430425, 0.0024152698, -0.018954506, 0.012078051, 0.0030484484, 0.022086358, 0.0033190812, -0.0061990223, -0.0083198305, -0.0031948283, 0.03616607, 0.004633097, 0.009708738, -0.012861014, 0.009627038, 0.0018042185, 0.006508803, -0.030801073, -0.015196285, -0.037800077, -0.010505318, 0.006559866, 0.0039658765, 0.0069649643, -0.006835605, -0.02023448, -0.025681177, -0.015849888, -0.0022059125, 0.011002328, -0.0029258977, 0.009974265, 0.019580876, 0.0145018315, 0.008340255, 0.0023727175, -0.0051505333, -0.0156047875, 0.006175193, -7.4679323E-4, 4.1637447E-4, 0.021378286, -0.0035948202, -0.028676862, -0.017497515, 0.029466633, 0.010600635, 0.016367326, 0.0054398887, 0.010028731, -0.027206253, -5.4466975E-4, 0.012064435, -0.004745435, -5.438187E-4, -0.0028135595, -0.021609772, -0.003135255, 0.010042348, -0.0065939077, -0.008844075, -0.026647966, 0.0052832966, -0.009974265, 0.021732323, 0.020329798, -0.0067505003, 0.008272171, -0.023774834, 0.0026076064, -0.018368987, -0.053159766, -0.019403858, -0.005062024, 0.027451355, 0.021459987, 0.027083702, -0.0013991203, 0.017756233, 0.012139327, 0.009415978, 0.026688816, -8.404084E-4, 0.005994771, -0.040959165, 0.013487384, 0.0151690515, 0.022426777, 0.019077057, 0.019063441, -0.0017369858, 0.027424121, 0.008735141, 0.010736802, 0.0053990385, -0.0127384635, -0.00957257, 0.029875135, -0.012398045, 0.010566593, -0.03101894, -0.008149621, 0.03624777, -0.010566593, -0.021677855, 0.00882365, 0.03428696, -0.008081537, 0.0035812035, -0.014270347, 0.005062024, -0.014923951, -0.004963303, -0.025681177, -0.0018637917, 0.003024619, -0.0076321843, 0.005661161, -0.01706178, -0.0018637917, -9.012582E-4, 0.032462317, -0.026947536, -0.03311592, 0.027914323, -0.00495309, -0.013596318, -0.024659922, -0.021146802, -0.02570841, -0.019240458, -0.00844238, -0.0207383, 0.0093206605, -0.02144637, -0.03436866, 0.031372976, -0.003737796, 0.043573577, 0.016748594, 0.040060457, 0.03382399, 0.0021208078, -0.028050492, 0.013780144, -0.020030228, -0.0028561119, 0.02299868, 0.017865168, -0.006985389, -0.007931753, 0.008156429, -0.016380941, -0.04460845, -0.03788178, 0.018709404, 0.02395185, 0.024850557, -0.020329798, -0.005552227, -0.038072415, 0.011805716, -0.0028118575, 0.0064066774, 0.009218535, -0.037772845, -0.01534607, 0.0021633601, 0.0022654857, 0.018586854, 0.013235474, -0.016653277, 0.008265363, -0.0041497024, -6.119024E-4, -0.018600471, -0.011111262, 0.026062446, -0.021214886, 0.02328463, 0.010021923, 0.0017582619, 0.0052118083, 2.6573925E-4, -0.002200806, 0.031999346, -0.0057973284, 0.016734978, -0.0042245947, 0.019349393, 0.003645883, 0.0020986805, -0.013078881, -0.014774166, -0.033088684, -0.010825311, 0.017116247, 0.0012493362, 0.008170046, -0.011404023, -0.017279647, -0.0072985743, 2.5978193E-4, 0.0043539535, 0.0029122808, -0.036383938, -0.0012110391, -0.002861218, -3.0829158E-4, -0.012922289, -0.015141819, 0.0077206935, -0.0047352226, 0.029194297, -0.005678182, -0.012016776, -0.012493362, -0.0062024263, -0.037146475, -0.015904356, -0.007829627, -0.0070466646, 0.002859516, -0.022168057, -0.017729, 0.01036915, -3.6999246E-4, 0.0018246436, -0.014120563, -0.0060696634, -0.0054160594, 0.032326147, -0.026416482, -0.011642315, 0.0038433257, 0.030583205, 0.010178516, -0.016734978, 0.013773336, 0.0024152698, 0.03180871, -0.025027573, 0.007128365, 0.0071147485, -0.036901373, -0.008421956, 0.015945205, 0.029466633, 0.011860183, -0.0052288296, -0.019635344, -0.009150451, -0.015536704, 0.011812525, -0.001062106, -0.0042245947, 0.020057462, 0.017674532, 0.026470948, 0.014420131, -0.0099810725, -0.022168057, 0.007604951, -0.013596318, -0.017974101, 0.004044173, 8.5104647E-4, 0.010832119, -0.0041905525, -0.0037309877, -0.016585194, -0.0068458174, -0.035812035, -0.0024373971, 0.0022263376, 0.013970778, 0.024319503, 0.01237762, 0.0023199527, 0.023611432, -0.0044492707, 0.009048326, 0.0054671224, 0.0046296925, 0.005582865, 0.015291602, 3.2297213E-4, 0.0075028255, -0.04640586, -0.0048611774, 0.02299868, 0.013235474, 0.020261714, 0.041912336, -0.024823323, 0.008918967, -0.013242283, 0.014855866, 0.0104236165, 4.6467135E-4, 0.038753252, -0.047604132, -0.014855866, 0.008966626, 0.009919797, 0.003004194, -0.0013608233, 0.01651711, -0.0074892086, -0.009810863, -0.018641321, -0.023720367, 0.011921459, -0.032625716, 0.03248955, 0.018260052, -8.684929E-4, 0.030474272, 0.015455004, -0.0053718053, -0.012629529, -0.0077615436, 0.013582701, -0.014324814, 0.0020612346, -2.8169638E-4, 0.038807716, -0.016612427, 0.020139163, -0.03804518, -0.008428764, 0.0026093083, 0.013929929, -0.016299242, 0.026770517, 0.0055386103, -0.05827966, 0.0074619753, 0.0014084819, 0.014542682, -0.012186985, 0.0062568933, -0.015318836, 0.0075436756, -0.010137665, -0.017729, -0.025858195, -0.027587522, -0.0020578303, -0.014556298, -0.042375304, 0.005130108, 0.17157096, -0.029575566, 0.01734773, 0.025803728, 0.009164068, 9.055134E-4, 0.023570582, 0.0063624233, 0.012799739, 0.0013080584, -0.0072100656, 0.02199104, -0.0020186822, -0.0061683846, 0.004762456, -0.0049735154, -0.028213892, -0.011866991, -0.012697613, -0.025299909, -0.012520595, -0.01714348, 0.0062637017, -0.007645801, 0.012609104, 0.0011667847, 0.0029088769, 0.009524912, 0.018164735, 0.01220741, -0.028377293, -0.024687156, -0.0031199362, 0.0019693214, -0.011022754, -0.001134445, -0.0013769931, 0.00882365, 0.019880446, 0.0026042021, -0.0033105707, -0.0035437574, 0.003591416, -0.0053990385, -0.019880446, 0.035267364, -0.02826836, -0.005722436, -0.017606448, 0.017374964, -0.03189041, -0.00497692, 0.023379948, 0.025095658, 0.011574232, -0.010491701, -0.006614333, 0.0038024755, 0.0047386265, -0.0053275507, 0.002546331, 0.03101894, -0.023379948, 0.016843911, -0.015005651, 0.021065101, -0.025803728, -0.0036867333, 0.025218207, -0.019294925, -0.0014961397, -0.01977151, -0.025681177, 0.0016033715, -0.017756233, -0.009878947, 0.0017284753, 2.814836E-4, 0.0033378042, 0.009844906, -0.015686488, -0.020915318, 0.008775991, -0.010566593, -0.008387914, -0.026906684, 0.010280641, -0.026362015, -0.017429432, 0.008047495, -0.022971446, -0.022304226, -0.009940223, -0.0066347583, 0.0071964487, -0.0019761298, 0.021351052, 0.011853375, -0.008524082, -0.0017063482, -0.027791772, 0.013637168, 0.039107285, -3.0914263E-4, -0.020833617, -0.009565762, 0.005167554, 0.02412887, 0.012316344, -0.024442054, -0.009947031, -0.0025803728, -0.0016314561, -0.014379281, -0.0072985743, 0.0209017, -0.0010493402, -0.011764866, 0.032925285, -0.0010314683, -2.1382542E-4, -0.026647966, 0.019798744, -0.0021820832, -0.019090675, -0.033333786, -0.0417217, 0.034423128, -0.007271341, -0.028295591, 0.018954506, -0.04640586, 0.0028288784, -0.0147196995, 0.0030654692, 0.012554637, 0.029956834, -0.0077751605, 0.025994362, 0.0057462654, 0.0010050859, -0.012370811, 0.0034552487, -0.016925612, 0.004966707, -0.0209017, 0.021432754, 0.00501777, -0.0089462, -0.03826305, -0.009055134, -0.0025956917, 0.008816841, 0.0048986236, 0.029902369, -0.0023556966, -0.03755498, -0.03929792, -0.0141750295, 0.0096474625, -0.035185665, 0.025000341, 0.026443714, -0.011907842, -0.021555305, -0.003608437, -0.17494792, 0.00869429, 0.016326476, -0.02930323, 0.008313022, 0.007890902, 0.02574926, 0.012261877, 2.8510057E-4, -0.008265363, 0.018368987, 0.008285788, -0.044227183, -0.0073530413, 0.0019267692, 0.012350386, -0.017443048, 0.025722029, 0.02897643, -0.0031982325, 0.021351052, -0.005167554, 8.9615193E-4, -0.015128202, -0.0013335898, 0.02491864, 0.0052356375, 0.018559622, 0.027519438, -0.01843707, -0.028676862, -1.0595528E-4, 0.011553806, -0.0075300587, -0.014093329, 7.093472E-4, -0.01881834, -0.009613421, -0.0036390745, 0.0018654938, 0.025722029, -0.0058143493, 0.015291602, 0.008585356, 0.010260216, 0.003313975, 0.011342747, -0.02905813, -0.0010221067, -0.011866991, -0.019335775, -0.017674532, 0.019226842, -0.0237476, 0.007754735, 0.021214886, 0.0079998365, -0.006597312, 0.01199635, -0.0053275507, -0.025953513, -0.010382767, 0.011812525, -0.015781805, -0.007788777, -0.02487779, -0.024469288, 0.011560615, -0.04452675, 0.004176936, -0.018709404, 0.022481242, 0.03349719, -0.0014357154, 0.006958156, -0.011240621, -0.04874794, 0.003281635, -0.00861259, 0.014106946, -0.020016612, 0.045452688, -0.00535138, 0.008455997, 0.018872807, -0.010695952, 0.007312191, -0.012595488, -0.018532388, -0.0013446534, 0.005681586, -0.02554501, -0.026062446, 0.002364207, -0.008844075, 0.013984395, -0.0025701602, 0.016340092, 0.012364003, 3.459504E-4, 0.0036867333, -0.007897711, -0.014352047, 0.009136835, 0.02905813, 0.03630224, 0.009674696, 0.017551983, 0.03477716, 0.013072073, 0.008789607, 0.010246599, 0.0052628713, 0.0046092677, -0.005970942, -0.0074483585, 0.003191424, -0.025490543, 0.035485234, 0.01659881, 0.050490882, 0.0013838016, -0.010341916, -0.012173369, -0.003445036, -0.03540353, -0.096896745, 0.010920628, 0.011111262, 0.022835279, -0.029275998, 0.012649954, -0.019853212, 0.02077915, -0.023407182, 0.01613584, -0.012057626, -0.02562671, 0.001814431, -0.007673035, 0.020888085, -0.0043539535, -0.022317842, -0.0052458504, -0.010729994, 0.014787783, 0.009579379, -0.004742031, -6.731777E-4, -0.012200601, -0.027996024, 0.0039794934, -0.03428696, 0.02203189, -6.77433E-4, -0.0020680428, 0.010798077, -0.021105953, 0.0055794604, -0.0360299, -0.028050492, -0.01308569, -0.021677855, -0.018995356, 0.013814186, -0.046160758, 0.0012059328, -0.0027744113, 0.027206253, -0.020207247, -0.009627038, -0.010648293, -0.012261877, 0.03477716, -0.011172538, -0.037909012, 0.010103623, -0.015414153, -0.052696794, 0.011866991, 0.037909012, 0.001464651, 0.018341754, 0.014474598, 0.002105489, -0.018954506, -0.019390242, -0.0037786462, -0.023883767, 0.016081374, 0.0048271352, 0.011281472, -0.007931753, -0.012064435, 0.03632947, -0.025259059, -0.014147796, 0.020874467, -0.038399216, -0.009293427, -0.028921962, -0.0010408298, -0.031345744, -0.0065870993, 0.02077915, -0.020493198, 0.0064781657, -0.025177358, 0.016408175, -0.0051369164, -0.011424447, 0.026457332, 0.026906684, -0.0032952519, -0.003959068, -0.02750582, 0.007550484, 0.027723689, 0.004102044, -0.0094295945, 0.0017480494, 0.015727337, 0.009518104, 0.0063488064, -0.0027965386, 0.018586854, -0.0075300587, -0.007877286, -0.077452034, 0.033687823, 0.0032544015, -0.0150601175, -0.009926606, -0.006682417, 0.0018808127, -0.008850883, -0.0037582212, 0.029902369, -0.008898541, 0.009701929, -0.018641321, -0.022971446, -0.0152779855, -0.0028850473, 0.0021293182, 6.49774E-4, 0.0069377306, -0.011002328, -0.0072645326, 0.013364834, 0.023339098, 0.025817346, -0.004524163, 0.021146802, 0.015877122, 0.0019727256, -0.0085513145, -0.003611841, 0.032135513, -0.025776494, -0.0077070766, 0.00802707, -0.021010635, -0.007053473, -0.0020254906, 3.3297192E-4, 0.006832201, 0.032544017, 0.0021888914, -0.018450687, 0.009912989, -0.012663571, -0.010818503, 0.011894225, -0.01815112, 0.0064032734, 0.009041517, 0.010539359, 0.01609499, 0.0046296925, -0.0071419817, -0.01062106, 0.012023584, -0.014270347, 0.057789456, 0.0082108965, 0.0074007, -0.008156429, 0.00995384, -0.007897711, 0.018164735, -0.020316182, -0.0046637347, 0.016340092, -0.005252659, -0.014324814, -0.0035880117, -0.034395892, -0.0054160594, -2.2701664E-4, 0.030310871, 0.030746605, 0.0029020684, 0.011621891, -0.009143643, 0.01948556, -0.005198192, 0.018191969, 0.001850175, -0.02170509, -0.032707416, 0.028921962, 0.0151690515, 0.017674532, 0.0032220618, 0.0151690515, -0.0038467299, 0.007387083, -0.0176473, 0.003884176, 0.016108608, -1.8254947E-4, -0.01613584, 0.028785795, -0.016993696, -0.010410001, -0.012915481, 0.038480915, -0.0031063196, 0.0011965713, 0.008585356, -0.022726344, -0.037146475, -0.0010672122, -0.018450687, -0.012915481, -4.3828893E-4, 0.03251678, 0.02655265, 0.010920628, 0.0035403532, 0.0010467871, -0.01990768, 0.020820001, -0.0017165607, -0.017633682, -0.028758561, 0.032298915, 0.008176854, 0.01738858, 0.022426777, 0.0023761217, 0.04858454, 0.039651956, 0.010927436, -0.009082368, -0.0031965305, 0.0068424135, -0.0054671224, 0.010764035, -0.026266698, 0.0148831, -0.022481242, -0.004687564, 0.0011404023, 0.031345744, -0.018614087, 0.06269149, 0.008421956, 0.0066109286, 0.01546862, -0.022358691, 0.0035233323, 0.019063441, 0.032925285, -0.014665232, -0.01546862, -0.003959068, -0.008170046, 0.012588679, -0.019934911, -0.0017378369, 0.010559784, -0.020084696, 0.0053037214, -0.0079930285, -0.014447364, 0.011308705, -0.009810863, 0.039461322, 0.007870478, 0.0057564783, -0.013970778, 0.019431092, -0.0034586526, -0.007700268, -0.026566265, -0.011240621, -0.009014284, -0.019322159, -0.006685821, 0.03415079, -0.003463759, -0.003152276, -0.008142812, 0.020888085, -0.0012638039, 0.0031267446, -0.0022842088, -0.0143928975, -0.013569085, 0.015577554, -0.012152943, 0.005201596, -0.039461322, -0.025694795 ], + "id" : "35ba5479-3b40-401e-8b0b-35dc53e7f0fb", + "metadata" : { + "source" : "movies.csv" + } + }, + "d96508c0-1e0a-48b7-a2d6-03e9059f983a" : { + "text" : "563,7671,Alden Ehrenreich-Joonas Suotamo-Woody Harrelson-Emilia Clarke-Donald Glover-Thandiwe Newton-Phoebe Waller-Bridge-Paul Bettany-Jon Favreau-Erin Kellyman-Linda Hunt-Ian Kenny-John Tui-Anna Francolini-Andrew Woodall-Warwick Davis-Shaquille Ali-Yebuah-Eben Figueiredo-Aaron Heffernan-Hal Fowler-Damian Farrell-Charlotte Louise-Sema-Tawi Smart-Clint Howard-Dee Tails-Attila Vajda-Anthony Daniels-Kiran Shah-Fraser Kelly-Lily Newmark-Jason Wong-Alice Hewkin-Samantha Colley-Robert Morgan-Miles Richardson-Sammy Hayman-Rona Morison-Dempsey Bovell-Joseph Charles-Dave Chapman-Katy Kartwheel-Harley Durst-Andrew Jack-Samuel Witwer-Ray Park-Toby Hefferman-Jonathan Kasdan-Richard Dixon-Deepak Anand-Al Clark-Samantha Alleyne-Juan Alonso-Derek Arnold-Belinda Chapple-Kristianne-Kaith Domingo-John Duggan-Jordan Dumaurier-Vikki Edwards-Marc Esse-Kristine Fernandez-James Filanowski-James Galvin-David Guerrero-Juke Hardy-Sarah Sayuri Hare-Ian Harrod-Philip Harvey-Robin Harvey-Marina Hayter-Brian Herring-Robert Hladik-Van-Tien Hoang-Kevin Hudson-Ty Hurley-Sean James-Tobias James-Samuels-Jackson Kai-John Kamau-Tyrone Kearns-Kamil Lemieszewski-Jorge Leon Martinez-Chelsea Li-Chelsea Mather-Obie Matthew-Kenny-Lee Mbanefo-Ashley McGuire-Daniel Prewitt-Jacqueline Ramnarine-Christina Richards-Belal Sabir-Sarah-Stephanie-Atul Sharma-Stephanie Silva-Neil Alexander Smith-Clem So-Richard Stanley-Karol Steele-A.k. Steppa-Fran Targ-Steven F. Thompson-Klemens Niklaus Trenkle-Jo Wheatley-Ray Whelan-John Whitby-Angela Yeoh-Mark Ryder-Paul Davis,spacecraft-smuggling (contraband)-prequel-spin off-space opera,/3IGbjc5ZC5yxim5W0sFING2kdcz.jpg,/ojHCeDULAkQK25700fhRU75Tur2.jpg,181808-330459-1895-1894-1893-140607-181812-11-12180-1891-383498-363088-351286-1892-299536-284054-333339-260513-284053-353081-924387\r\n106646,The Wolf of Wall Street,Crime-Drama-Comedy,en,A New York stockbroker refuses to cooperate in a large securities fraud case involving corruption on Wall Street corporate banking world and mob infiltration. Based on Jordan Belfort's autobiography.,114.327,EMJAG Productions-Red Granite Pictures-Appian Way-Sikelia Productions,12/25/13,100000000,392000000,180,Released,EARN. SPEND. PARTY.,8.036,21911,Leonardo DiCaprio-Jonah Hill-Margot Robbie-Matthew McConaughey-Kyle Chandler-Rob Reiner-Jon Favreau-Jean Dujardin-Joanna Lumley-Cristin Milioti-Christine Ebersole-Shea Whigham-Katarina ��as-P.J.", + "embedding" : [ 0.01579538, -0.028185768, -0.010809499, -0.043670375, -0.02950993, 0.03750896, -0.009329949, 0.013153808, -0.023767384, -0.037103605, 0.034752537, 0.022159472, 0.01434961, 0.008775962, 0.0037630566, 0.012883571, 0.008951616, -0.029374812, 0.0061512804, -0.02336203, -0.0018477486, -0.004276508, -0.029320765, 0.015092762, 0.00977584, 0.010762207, 0.032941945, 4.1781244E-4, -0.020443464, -0.006472187, 0.010356851, -0.017970791, 0.0016290252, -0.025875237, -0.017470852, -0.003513087, 0.0048507624, -0.035320036, 0.027537197, -3.0127255E-4, 0.005732412, 0.008573283, -0.018605849, -0.008938104, -0.019132812, 0.005745924, 0.012910594, -0.005296654, -0.0028037135, 0.03915741, 0.022429708, 0.038049433, -0.022956673, -0.029131599, -0.014322585, 0.018795015, -0.0196868, 0.010120393, -0.003942089, 0.0016847617, 0.014038836, -0.012633601, -0.033725634, -0.020267809, -0.033428375, -0.017984303, -0.016727699, -0.026213033, 0.0048440066, 0.0119985435, 0.027834458, -0.003712387, 0.012072858, 0.0028020246, 0.017106032, -0.03167183, -0.024064645, -0.00211123, -0.0034624175, -0.004675108, 0.008958371, -0.012957886, -0.013140297, 0.008221975, 0.011160807, 0.011890449, -0.01316732, 0.027442614, -0.03991407, 0.0097825965, 0.0051615355, 0.024253812, 0.005462175, 8.9093915E-4, 0.0010378808, 0.012059347, -0.018376147, 0.017065495, -0.022497268, -0.043319065, -0.0063438243, -0.0028172256, -0.0017649884, -0.011829644, -0.001536131, 0.003945467, 0.006141146, 0.008559772, 0.023780897, 0.01667365, 0.023240421, 0.0010260579, 0.02518613, -0.045345847, -0.0021956793, -0.029347789, 0.027212912, -0.014444192, -0.012302561, -0.031104332, 0.035157893, 0.019267932, 0.016173713, -0.038995266, 0.020389417, 0.032860875, 7.6004287E-4, -0.021294711, 0.0043305554, 0.0073774825, 0.025388809, -0.004803471, 0.037563007, 0.014795501, -0.029185645, 0.050210122, -0.010714916, 0.009573162, -0.027429102, -0.0077895946, 0.020875843, 0.026388688, -0.027118329, -0.0107892305, -0.036617175, 0.005441907, 0.021551438, -7.807329E-4, 0.027942553, 0.013336219, 0.021578461, 0.024388932, 0.015849426, 0.012680893, 0.007958493, 0.0034691733, 0.0039758687, 0.0077490592, 0.0031769793, -0.01998406, -0.0036414498, -0.030753024, -0.013572676, -0.0049757473, 0.0069721267, 0.022159472, 0.01258631, -0.021646021, 7.996284E-5, -0.0034252598, -0.008559772, 0.029969335, -0.015646748, 0.02756422, -0.0041684126, 0.019457096, 0.0041819247, -0.015065738, -0.03461742, -0.010370363, 0.006080343, 0.017781625, 0.0382386, 0.025848214, 0.013045713, -0.0039792466, 0.02272697, -0.023037743, 0.015227881, 0.0014390144, -0.005232473, 0.030725999, 6.430807E-4, -0.0052831424, -0.63213944, -0.021754116, 0.0049318336, 0.0015766667, 0.030185524, 0.005938468, 0.004800093, 7.9846726E-4, -0.032212306, -0.015930498, -0.02596982, 0.019051742, 0.03059088, -0.011883692, -0.012376876, -0.0110392, 0.011694526, -0.022213519, -5.408972E-4, 0.008580039, -0.027537197, 0.020659653, 0.015876452, -0.0067525585, 0.020484, -1.8177692E-4, -0.0029337655, -0.026942674, -0.0020943403, 0.001223669, -0.004262996, 0.022375662, 0.013275416, 0.021943282, 0.03923848, 0.0012126906, -0.024713216, 0.05085869, 0.021578461, 0.041238237, -0.03613075, -0.013282171, 0.004570391, -0.0027175755, -0.027280472, 0.02034888, 0.008904324, 0.008167927, -0.011586431, 0.0012920728, -0.009147538, 0.010498726, -0.013518629, -0.0068538976, -0.009971762, -0.007154537, 0.005171669, -0.030969214, 0.024037622, 0.011316193, -0.013930741, 0.013957765, 0.008127391, 0.0042866417, -0.0017176969, 0.021821676, -0.003948845, -0.002254794, 0.011593187, -0.03469849, 0.0072828997, 0.004820361, -0.0097488165, -0.0051412676, 0.008654355, 0.011782354, 0.036157772, 0.0063336906, -0.010802742, 0.022740481, -0.019808406, -0.001484617, 0.0019592217, 0.009525871, 5.535646E-4, -0.014200979, -0.028807314, 0.0045129657, 0.011795865, 0.009248877, 0.011113515, 0.014727942, 0.014187466, 0.003729277, -0.0063404464, 0.0017312088, -0.006924835, 0.0086746225, 0.025429346, -0.064965084, -0.010937861, -0.035293013, 0.04494049, -0.015335976, 0.022591852, 0.012309317, -0.0026398823, -0.008181439, 0.034022897, -0.013106517, -0.01262009, -0.0026533941, -0.023172863, -0.008282778, -0.0053844815, -0.027185889, 0.017497875, 0.009802864, -0.004367713, -0.01847073, 0.0012008677, 0.0018578826, 0.0044318945, -0.019497633, 0.0056344513, 0.029699096, -0.012356608, -0.014133419, 0.006272887, 0.020443464, 0.0060904766, -0.0026128585, 0.015916986, -0.017876208, -8.875612E-4, 0.0031617782, 0.013065982, -0.014106396, 0.008093612, -0.0026922408, -0.016903354, -0.010667624, -0.008701646, -0.012998422, -0.020727213, -0.010958129, -0.027753387, 7.2246295E-4, -0.009552894, -0.020429952, -0.010566285, 0.0051378896, -0.0072761434, 0.011674258, 0.022767507, 0.0033796572, -0.026496783, -0.019727334, 0.008620575, -0.03123945, -0.0143901445, 0.014565799, 0.0058033494, -0.0135997, 0.02675351, -0.009742061, -9.812998E-4, 0.010039322, 5.1218446E-4, -0.010606821, 0.01572782, -0.008289534, 0.006499211, 0.016119665, -0.0020436707, 0.027010234, 9.973451E-4, 0.021092033, 0.014741453, -0.005522978, 1.3459093E-4, -0.0027530442, -0.02748315, -0.02387548, 0.025510415, 0.02352417, 0.021524414, 0.0062391073, -0.0038812854, -5.0563962E-5, -0.028942432, 0.001915308, -0.0042697517, -0.002242971, 0.008424653, 0.044264898, 0.0110392, -0.0018190359, -2.8670506E-4, -0.005009527, 0.031158378, 0.022321614, 0.017551923, -0.009458311, 0.0063607143, -0.026280593, -0.010113637, -0.027672317, -0.0044014924, 0.0035198429, 0.022564828, -0.014498239, -0.018443707, 0.009863667, 0.018214004, 0.028510053, -0.012937618, 0.0046311943, -0.01674121, 0.002557122, 0.007985517, -0.01680877, 0.001916997, 0.008316558, -0.021010963, 0.0108230105, 0.019227395, -0.012782232, 0.0039826245, -0.014849548, 9.3147473E-4, -0.0028442494, 0.009275901, 0.0069586146, -0.008525992, -0.025415834, 0.025659047, -0.010032565, 0.026483271, -0.020443464, -0.0020909624, 0.015403535, 0.02518613, 0.0027091305, 0.008573283, -0.010512237, 0.009323193, 0.016146688, -0.0056986324, 0.04739965, -0.014295561, 0.0344823, 0.00404005, 0.0037765685, 0.005235851, -0.01345107, -0.009600186, 0.025807677, 0.031077309, 0.02942886, 0.02201084, -0.025280714, 0.020902868, 0.0074990895, 0.013248391, -0.010985153, -0.018943645, 0.0020892734, 0.005620939, -0.02178114, -0.018767992, -0.009208341, 0.0034725515, -0.0012895394, -0.010410898, -0.008539503, 0.0030975968, 0.0069383467, 0.020321857, 0.006391116, -0.013890206, -0.028591122, 0.013288927, 0.03383373, -0.020024596, -0.024834823, -0.012998422, -0.014471216, -0.035644323, -0.0111337835, -0.021429831, 0.036968485, -0.02056507, 4.2309053E-4, -0.006080343, 0.0036448278, 0.025618512, -0.01363348, 0.016335854, 0.01443068, 0.006826874, 0.017619483, 0.0021348759, 5.6264285E-5, 0.038995266, -0.0052020713, 5.1682914E-4, -0.006891055, 0.0022007462, -0.0076139406, 0.011214854, -0.0062593753, -0.042075973, 0.00905971, -0.010478457, 0.002957411, -0.002018336, 0.0057594357, -0.0032428496, -0.015376512, -0.012748452, -0.028212791, -0.031077309, -5.294965E-4, 0.07972005, 0.039833, 0.012444435, 0.0114107765, -0.009897447, 7.934003E-4, -0.013701039, -0.014160443, -0.009073223, -0.03323921, 0.026429223, -0.023767384, 0.022416197, -0.0045805248, 0.020821797, -0.008235486, -0.015268416, -0.010694647, 0.0074990895, -0.008735426, -0.018889599, -0.026604878, 0.019497633, 0.030753024, 0.009802864, -0.0036583396, 0.03237445, 0.01208637, 0.0072491197, 0.013214611, -0.0039657345, 0.005833751, 0.002981057, 0.021051498, 0.009147538, -0.0066410857, 0.030455763, 0.0075396253, 0.033590518, 0.015606213, -0.0042292164, -0.0012034012, 0.00937724, 3.0211703E-4, -0.0013461204, -0.01724115, -0.018795015, 0.029672073, 0.018132934, -0.027239935, 0.012606578, 0.0133497305, -0.021389294, -0.012309317, 0.025334762, -4.9022766E-4, -9.3231926E-4, -0.011262146, -0.004462296, -8.056454E-4, -0.006097233, -0.040508594, 0.0068944334, -0.017578946, -0.0061141225, -0.022037866, 0.0018578826, -0.0010328138, -0.011599943, -0.0051547796, 0.007776083, -0.018268052, -0.00423935, -0.010444677, 0.007451798, -0.0018021461, 0.04083288, -0.00573579, 0.011282414, 0.02590226, -0.027658803, -0.024564585, 0.018295076, -0.011593187, -0.01298491, 0.020524535, -0.0026736618, 0.016862817, -0.002139943, -0.0022564828, -9.821443E-4, 0.0016991181, -0.023159351, -0.015525142, 0.037049554, 0.0067964722, 0.016538532, 0.025105061, 0.007127513, 0.0061343904, -0.0017920121, -0.015335976, 0.001539509, -0.008870545, -0.024659168, -0.001542887, -5.9114445E-5, 0.0030097698, -0.019213883, -0.0022514157, -0.020159714, -0.013538897, -0.0051446455, 0.0015893341, 0.0071680485, -0.012653869, 0.025388809, 0.016335854, -0.0050770864, 0.018132934, 0.0046649743, -0.01594401, 0.017903231, 0.032617662, -0.0040231603, 0.017011449, -0.013126785, -0.019997573, 0.0027158866, 0.037752174, -0.0041278773, 0.026348153, -0.016822282, -0.017484363, -0.0054925764, -0.02553744, 0.004999393, -0.0031364434, -0.026523806, 0.019511145, -0.013221368, -0.0057391683, 0.01434961, -6.743269E-4, -0.011431045, -0.034644444, 0.007127513, -0.0026365041, 0.017106032, 0.02684809, 9.289413E-4, 0.012728184, -0.028320886, -0.010795986, -0.016579067, -0.031536713, -0.017592458, -0.004262996, 0.03167183, 8.4238086E-4, 0.028888384, -0.010370363, 0.03715765, 0.005539868, 0.010309559, 0.020294834, -0.021375783, -0.016416926, -0.021646021, 0.008654355, 0.018646386, 0.002013269, 0.011924228, 0.008971884, 0.0067897164, 0.021308225, -0.0030486165, 0.01674121, -0.009113759, -0.0068336297, -0.030401714, -0.0024270702, -0.02495643, -0.007242364, -0.01774109, -0.013011933, 0.035806462, -0.0040907194, -0.0017565435, -0.002957411, 0.02864517, 0.0038542617, 0.0077895946, -0.021362271, 0.016849305, -0.023780897, -2.8754954E-4, -0.021078521, -0.012998422, -8.4322534E-4, -0.014484728, 0.026131963, -8.8925014E-4, -0.009870423, -0.0068741655, 0.03180695, -0.016754722, -0.016187225, 0.027996602, -0.03237445, 0.0035299768, -0.035509203, -0.008005785, -0.026145475, -0.016943889, 0.004246106, -0.008140904, -1.0682824E-4, -0.017808648, -0.041724663, 0.027537197, 0.019592216, 0.03680634, 0.008323314, 0.039130386, 0.020929892, 0.025226668, -0.024105182, 0.013660504, -0.0078098625, -0.013397022, 0.017349245, 0.022902625, -0.018849064, -0.006509345, 0.0013486538, -6.7390467E-4, -0.032401472, -0.030266596, 0.033590518, 0.017416805, 0.01788972, -0.024037622, -0.003827238, -0.027726363, 0.010964885, -0.008769206, 0.002670284, 0.01918686, -0.038860146, -0.019592216, 0.0043373113, 0.0065194787, -0.0020943403, -0.0044791857, -0.021510903, 0.0141469315, -0.022632387, 0.004114365, -0.013829402, -0.009079979, 0.02596982, -0.019889478, 0.020605607, 0.0023628888, 0.0143901445, -5.668653E-5, -0.003938711, 0.0052662524, 0.028401958, -0.028023625, 0.01020822, 0.012505239, 0.0025773898, 0.010768963, 0.01622776, -0.016552044, -0.024902383, -0.028212791, -0.011309437, 0.033995874, 0.0030739512, 0.0056986324, 0.021524414, -0.008303046, -0.01298491, 0.009519114, -0.007154537, 0.005546624, -0.029104574, 0.016633116, 0.0011240189, 0.0070734657, -0.004357579, -0.0060904766, 0.0028020246, -0.006499211, -0.0026331262, -0.008897568, -0.0038947973, -0.015660262, -0.0016780057, -0.027645292, -0.033320278, -0.01644395, -0.01237012, -0.0018561935, -0.025307737, 0.0037157652, 0.0025706338, 0.005083842, -0.0218487, -0.0086746225, -0.01443068, 0.0040839636, 0.021740604, -0.0084787, -0.012741696, 4.3533565E-4, 0.024699705, -0.006695133, -0.0133497305, 0.008938104, 0.020511024, 0.034752537, -0.019092277, 0.0050297948, -0.008816497, -0.023186374, 0.002655083, 0.008505724, 0.033968847, 0.018362636, 0.0012126906, -0.023321493, -7.127513E-4, 8.580039E-4, 0.02791553, -0.012606578, -0.0016856062, 0.03902229, 0.0328879, 0.043237995, 0.017592458, -0.0028054027, -0.042454306, 0.0029726122, -0.002025092, -0.034455277, -0.002768245, -0.0020115802, 0.0091610495, 3.2407383E-4, -0.008742182, -0.029672073, -0.008026052, -0.02336203, -0.036671225, -0.0038643957, 0.02329447, 0.025672559, -0.0031212426, 5.0563962E-5, 0.019267932, 0.015700797, -0.0037934585, -0.027591245, -0.026658926, 0.00901242, 1.4440814E-4, 0.018565314, 0.017295197, -0.03215826, -0.006380982, 0.008607063, 0.017997814, 0.006891055, 0.015998058, -0.017484363, -0.017187102, -0.008140904, 0.011464824, -0.010735183, 0.0037495447, 0.010768963, -0.03259064, -0.0023865346, 0.023037743, 0.022186495, -0.012262025, 0.005191937, 0.01572782, -0.021618998, -0.0038407499, -0.003955601, -0.013471337, -0.005212205, -0.016565556, 0.006918079, 0.010627088, -0.0018882842, 0.035509203, 0.018740969, -0.006080343, 0.0042731296, 4.5306998E-4, 0.016849305, -0.0017768113, -2.7783788E-4, -0.004134633, 0.007951737, -0.021740604, 0.009147538, -0.035968605, 0.0023865346, -0.016430438, 0.0059114443, 0.010012298, 0.030861119, 0.0021517659, -0.07036983, 0.0022733726, -0.022132449, 0.016943889, -0.017551923, -0.0043204213, -0.013775354, -0.021470366, -0.004908188, 0.0029067416, -0.013086249, -0.012863304, 0.016470972, -0.0052865203, -0.017187102, 0.0404005, 0.17824863, 8.2422426E-4, 0.015619725, 0.038968243, 0.008735426, 0.012059347, 0.03440123, 0.020902868, -0.011079736, 0.011640479, 0.0034928191, -0.00211123, -8.516702E-4, 0.0027141974, 0.015565678, -0.02272697, -0.03461742, -0.025956308, -0.011782354, -0.029591002, -0.0065228567, 0.011120272, -0.005830373, -0.030888142, -0.0012878504, -6.025451E-4, -0.022429708, 0.012647113, 0.025267202, 0.019362515, -0.0062188394, -0.008897568, -0.0053912373, 0.007127513, -0.014754965, -0.008748937, -0.01348485, 0.004171791, 0.009802864, 0.0047359113, 0.012579554, 0.009086735, -0.019038228, -0.015227881, 0.0102690235, 0.020038107, -0.029266717, 0.017687041, -0.02546988, -0.0021602106, -0.04321097, 3.1879576E-4, 0.013133541, 0.029536955, -0.0057594357, -0.00510411, 0.00133852, 0.007134269, -0.0147684775, 0.015227881, 0.017916743, 0.031401593, -0.020186739, 0.018997693, -0.015525142, 0.003911687, -0.034239087, -0.011154051, 0.015714308, -0.027942553, -0.00844492, -0.02950993, -0.012262025, -0.0010860168, -0.0024912516, -0.010836522, 0.012282292, -0.006512723, 0.0097150365, 0.02294316, -0.024267323, -0.021321736, 9.517426E-4, -0.006742425, -0.022281079, -0.014876572, 0.013545653, -0.018308587, -0.008221975, -0.0121741975, -0.013174077, -0.022443222, -0.016552044, -0.021389294, -0.00959343, 8.3309144E-4, 0.017646506, 0.009235365, -0.010039322, -0.0032698733, -0.033536468, 0.032995995, 0.015538654, -0.012376876, -0.035157893, -0.020794773, 0.0013494983, 2.731404E-5, 0.028401958, -0.010194709, -0.02942886, -0.03275278, 0.005455419, -0.011518871, 0.008100368, 0.023997087, 0.008235486, -0.01940305, 0.048156317, -0.020754237, 0.0043913587, -0.02834791, 0.026942674, 0.0067593143, -0.0065025887, -0.022916136, -0.023307981, 0.0029591003, 0.003406681, -0.025861725, 0.019930013, -0.013930741, 0.0054689306, -0.0033847243, 0.005401371, 0.010262268, 0.01680877, -0.008350338, 0.0067762043, -0.015214369, -9.297858E-4, -0.013457825, 0.0064248955, 0.0028222925, 0.0051446455, -0.023997087, 0.004347445, -0.021389294, -0.0048912982, -0.03404992, -0.037860267, -0.005090598, 0.013971277, 0.011032444, 0.028158743, 0.0076409644, -0.011383753, -0.03604968, -0.025105061, 0.026213033, -0.04321097, 0.022483757, 0.014133419, -0.021875722, -0.03991407, 0.004053562, -0.17230341, 0.016200736, -0.008877301, -0.02864517, 0.00999203, 0.016714187, 0.01020822, -0.0016340922, 0.003837372, -0.028212791, 0.018443707, 0.0071477806, -0.03737384, 0.0011915783, 0.0044791857, 0.019200372, -0.0042123264, 0.025456369, 0.022254055, -0.0105797965, 0.044183824, -0.00490481, -0.01767353, 0.0067491806, 0.0064586755, -0.006931591, 0.02387548, -0.0054891985, 0.0035806464, -0.00955965, -0.03440123, -0.011275658, 0.02459161, 0.01767353, -0.018646386, 0.013532141, -0.021956794, -0.029807191, -0.0022801287, -0.008667867, 0.036644198, 0.014052348, 0.021402806, 0.01717359, 0.010329827, 0.01356592, 0.036076702, -0.020038107, 0.012059347, -0.021092033, -0.017335733, -0.046048462, 0.023537682, 3.3230762E-4, 0.0016222693, 0.03326623, 0.002013269, -3.4814185E-4, 0.005235851, -0.019930013, -0.03202314, 0.0025081413, 0.0022733726, -0.010147417, -0.0044150045, -0.013437558, -0.01270116, 0.005397993, -0.027456125, 0.013721307, -0.0226459, 0.002253105, 0.011532384, 6.0212286E-4, 5.4205833E-5, -0.020956915, -0.03872503, 0.0103028035, -0.005127756, 0.011640479, -0.017984303, 0.045183703, 0.0026128585, 0.025037501, 0.007046442, -0.002337554, 0.011275658, 0.0012473147, 0.0032648062, -0.023861967, 0.01652502, -0.006478943, -0.02834791, 0.0020453597, -0.0021044742, 0.008789473, 0.0012397143, 0.016065616, 0.013863182, -0.005023039, -0.0030384825, -0.0130389575, -0.0169574, 0.023051256, 0.04013026, 0.00407383, -0.010816255, 0.016281808, 0.014565799, 0.006249241, -0.01990299, 1.544365E-4, 0.01883555, 0.008086856, -0.017376268, 0.0105460165, -0.024267323, -0.026577855, 0.005428395, 0.01529544, 0.041589547, -0.0072491197, 0.007046442, -0.007586917, -0.00575268, -0.0059452243, -0.09339406, -0.009877179, 0.010627088, 0.03888717, -0.017051984, 0.055993203, -0.0036887412, 0.021916257, -0.034374204, 0.028753266, 0.0027023747, -0.032401472, 0.015444071, 0.0027344653, 0.012863304, -0.0033492555, -0.012106638, -0.0055939155, -0.010336583, 0.030888142, 0.005428395, -0.023186374, 0.0033745903, -0.02646976, -0.022024354, 0.024213277, -0.02834791, 0.019092277, 0.007134269, 0.012099883, 0.011735062, -0.02502399, 0.01645746, -0.022902625, -0.013788867, -0.041319307, -0.01270116, -0.016822282, -0.003496197, -0.05050738, 0.015687285, 0.023172863, 0.00826251, -0.031969093, -0.018092398, 0.004773069, -0.04134633, 0.016484486, 0.0049588573, -0.015673773, -0.016565556, -0.024402443, -0.03059088, -0.007242364, 0.017632995, 0.02078126, 0.028510053, 6.329468E-4, 0.0049487236, -0.019930013, -0.009667745, -0.0020453597, -0.01702496, 0.012417411, 0.01276872, 0.0011071292, -0.004144767, -0.012194466, 0.011174319, -0.0056547187, -0.029104574, 0.025875237, -0.034968726, -0.014687406, -0.010187952, -0.0021872343, -0.032482542, -0.012559286, 0.02294316, -0.021983817, 3.475085E-4, -0.034725513, 0.0011907339, -0.009370484, 0.012072858, 0.025983332, 0.008985396, 0.012978154, -0.0054486627, -0.048994053, -0.014295561, 0.006911323, 0.0012836279, -0.0074788216, 0.0095056025, 0.008647598, 0.014417169, 0.003742789, 0.008965128, -0.0025909017, -0.021267688, 0.0039961366, -0.072045304, 0.03737384, -0.038103484, -0.010329827, -0.004678486, -0.0047392896, -0.0034691733, -0.0051615355, 1.8336035E-4, 0.014309074, 0.002553744, 0.0161602, -0.006475565, -5.2991876E-4, 0.0059182006, 0.020105667, 0.00789769, -0.015903475, 0.017687041, 0.0053608357, -0.0108230105, 0.020646142, 0.03102326, -0.00510411, 0.0037360329, 0.013775354, -0.0042866417, -0.0015378201, -0.007053198, -0.015430559, 0.02907755, -0.018673409, -0.003502953, -2.4553607E-4, -0.008005785, -0.03802241, 0.0100258095, -0.001431414, 0.017497875, 9.965006E-4, -0.0032580504, -0.01153914, 0.004979125, -0.010633844, -0.010221732, 0.013714551, -0.012579554, 0.0072828997, 0.015471094, 0.013944253, 0.033293255, 0.010323071, 0.0059249564, -0.019538168, 0.014809012, -0.02063263, 0.0528044, -0.003079018, -0.0068944334, -0.029104574, 0.02748315, -7.96356E-4, 0.022051377, -0.022875601, 0.003969113, -8.723603E-4, 0.015362999, 0.0010243689, 0.00934346, -0.022753995, -0.017511388, -0.01471443, 0.014890084, 0.021875722, 0.017876208, 0.020835308, 0.0042123264, -0.0030621283, -0.0031330655, 0.025375297, 0.021618998, -0.017714066, -0.02063263, 0.023199886, -6.397027E-4, 0.02322691, -0.013876693, 0.007553137, 0.009586674, 0.012924107, -0.012836279, 0.018889599, 0.019159837, -0.0049926373, 0.01428205, 0.012201222, -0.012944374, -0.0027462882, 0.002670284, 0.033725634, -0.015700797, -0.0029134976, -0.008404385, -0.019646263, -0.01997055, 7.629986E-4, -0.018295076, -0.018822039, 0.017768113, 0.011883692, 0.03210421, 0.0060229176, -0.026361665, 9.998786E-4, -0.035238966, 0.021997329, -0.005661475, -0.015619725, -0.016322343, 0.037860267, 0.02734803, 0.007114001, 0.03461742, -0.0058067273, 0.058965813, 0.005107488, 0.011694526, -0.022091912, -0.008600308, 0.0054925764, -0.0035468666, -0.0014111463, -0.021294711, 0.013538897, -0.025577975, -0.0032715623, 0.0039218212, 0.020362392, -0.020605607, 0.07463959, 0.023280958, -0.012214733, 0.018268052, -0.013890206, 0.02236215, 0.024010599, 0.018159958, -0.015011691, -0.007404506, 0.0045230994, -0.01825454, -0.004219082, -0.033752657, 0.016660139, -0.0011181075, 0.027104817, 0.024321372, -0.013721307, -6.407584E-5, 0.0019862454, 0.0067728264, 0.017849185, 0.014228002, -0.0066647315, -0.016849305, 0.02380792, -0.0022902624, 0.012099883, -0.04480537, 0.0065532583, -0.029618025, -0.0025723227, 0.0045332336, 0.019565193, -0.0034286377, 0.0022193252, 0.005191937, 0.007046442, 0.0077895946, -0.008863789, 0.009302924, -0.025429346, -0.022929648, 0.029834216, -0.013680771, -0.00930968, -0.020267809, -0.014444192 ], + "id" : "d96508c0-1e0a-48b7-a2d6-03e9059f983a", + "metadata" : { + "source" : "movies.csv" + } + }, + "cbe3f3d4-e2c1-4b22-a784-219b38b8d055" : { + "text" : "1593,Night at the Museum,Action-Adventure-Comedy-Family-Fantasy,en,Chaos reigns at the natural history museum when night watchman Larry Daley accidentally stirs up an ancient curse awakening Attila the Hun an army of gladiators a Tyrannosaurus rex and other exhibits.,44.814,1492 Pictures-21 Laps Entertainment-20th Century Fox-Ingenious Media-Sun Canada Productions,12/20/06,110000000,574480841,108,Released,Where History Comes To Life,6.576,9662,Ben Stiller-Carla Gugino-Dick Van Dyke-Mickey Rooney-Bill Cobbs-Jake Cherry-Ricky Gervais-Robin Williams-Kim Raver-Patrick Gallagher-Rami Malek-Pierfrancesco Favino-Charlie Murphy-Steve Coogan-Mizuo Peck-Kerry van der Griend-Dan Rizzuto-Matthew Harrison-Jody Racicot-Paul Rudd-Anne Meara-Martin Christopher-Martin Sims-Randy Lee-Darryl Quon-Gerald Wong-Paul Chih-Ping Cheng-Teagle F. Bougere-Pat Kiernan-Nico McEown-Meshach Peters-Matthew Walker-Jason McKinnon-Jono Lee-Jason Vaisvila-Cade Wagar-Cory Martin-Brad Garrett-Crystal the Monkey-Che Landon-Phil Proctor-Gary Sievers-Owen Wilson,night shift-skeleton-chaos-maya civilization-museum-genghis khan-natural history-dinosaur-based on children's book-magical object-security guard-duringcreditsstinger-inanimate objects come to life,/uY9k8t2FQkMj60obnAnsPKLxHCE.jpg,/rwcPe582tfTSVLwQzbO25InW3Hi.jpg,18360-181533-953-9738-950-310-809-810-425-118-1979-8355-411-9502-10527-10555-8844-32657-8960-808-854\r\n1892,Return of the Jedi,Adventure-Action-Science Fiction,en,Luke Skywalker leads a mission to rescue his friend Han Solo from the clutches of Jabba the Hutt while the Emperor seeks to destroy the Rebellion once and for all with a second dreaded Death Star.,42.911,Lucasfilm Ltd.,5/25/83,32350000,572700000,132,Released,\"Return to a galaxy far, far away.\",7.", + "embedding" : [ 0.012147035, -0.034962047, -0.009329459, -0.039887786, -0.008512964, 0.014094577, 0.00816495, -0.015406323, -0.010788442, -0.019020317, 0.026837252, 0.026582934, 0.03116066, -0.008820822, 0.010667975, 0.014683524, 0.014616598, -0.019970663, 0.0117120175, -0.011671863, 0.0029045804, 0.005293832, -0.023932671, 0.0038750048, 0.035765156, 0.009590469, 0.012153728, -0.005541458, 0.002531469, -0.007053981, 0.013070612, -0.006006592, -0.0027004567, -0.022219371, -0.021402877, -0.016985772, 0.004283252, -0.016503906, 0.03860281, -0.0066256556, 0.014094577, 0.025645973, -0.014228429, 0.005501302, -0.019582493, 0.015031538, 0.042377427, -0.001806997, -0.008379112, 0.020278523, 0.0014447611, 0.030063076, -0.017052697, -0.02452162, -0.018337674, -0.009295996, -0.0037143829, 0.005524726, -0.011082916, -0.020546226, -0.0017467638, -0.017079469, -0.021657195, 0.014134732, -0.014737065, -8.215144E-4, -0.0047249626, -0.010306575, 0.010453813, 0.0027824407, 0.009476695, 0.016503906, 0.030196927, -0.0020512762, 0.028189154, -0.03116066, -0.0070071328, 0.0082318755, 0.009911713, -0.0020813928, 0.0057355426, -0.0036407644, -0.015339397, 0.011952951, 0.020773774, 0.024762552, 0.002347423, 0.0061939843, -0.029447358, 0.0076228506, 0.015807878, 0.022152444, 8.683625E-4, 0.007810243, 0.006692582, 0.014683524, -0.01148447, 0.0063345283, -0.0055983444, -0.038094174, 0.019769887, -0.0034366406, -0.0063612987, -0.008881056, -0.01931479, -0.0015409669, 0.015647255, -0.005246984, 0.0064516487, -0.0030183543, -5.3164194E-4, 0.01806997, 0.01436228, -0.037344605, 0.003854927, -0.017547948, 0.014415821, -0.009992024, 0.0023992904, -0.02501687, 0.022205986, 0.025164107, 0.016075581, -0.0287781, 0.025351498, 0.024454692, 0.027734058, -0.003955316, 0.0011829138, -0.006605578, 0.014094577, -0.0074956915, 0.021148559, 0.009784554, -0.043207306, 0.04272544, -0.0025046987, 0.005866048, -0.02509718, 9.905021E-4, 0.034132168, 0.033891235, -0.024146834, -0.011825792, -0.026984489, 0.01223404, 0.0010507354, 0.012776138, 0.01835106, -0.0014556365, 0.04751733, 0.0092424555, -0.0039687008, 0.022379993, 0.015312627, 0.0055983444, -0.0024059832, -0.008031098, -0.012856449, -0.023102792, -0.0176818, 0.0045643407, 9.938483E-4, -0.029179655, 0.0072212955, 0.022393377, 0.015419708, -0.00718114, -0.016959002, -0.005052899, -0.0022938824, 0.028215924, -0.011571473, 0.024401153, -0.003694305, 0.040664125, 0.012213961, -0.02449485, -0.047008693, -0.020813929, -0.007468921, 0.011732096, 0.03298104, 0.03514944, -0.007890554, 0.0058961646, 0.016892076, -0.020332063, 0.013385164, -0.01964942, 0.0064717266, 0.006993748, -0.028189154, -0.0068398183, -0.65191096, 0.0072012176, -0.0047115777, -0.019221094, -0.0029832183, 0.0074622286, 0.004497415, -0.0030902997, -0.04007518, -0.028537167, -0.02880487, 0.0077633946, 0.014148117, -0.0065085357, -0.03597932, -0.012990301, 0.006157175, -0.01970296, 0.0138938, 0.0057455814, -0.0368092, 0.029126115, 0.025779825, -0.016985772, 0.009951869, 0.01475045, -0.005899511, -0.0023306916, 0.0023424036, -1.6794197E-4, -0.015647255, -0.002036218, -1.7442541E-4, 0.011410852, 0.029607981, 6.3370384E-4, -0.007515769, 0.05236276, 0.0249901, 0.03362353, -0.022152444, -0.015018153, 0.0020880855, 0.021068247, 0.0017501101, 0.0032994428, 0.019127399, 0.0023055943, 0.0019826773, -0.002094778, 4.0364634E-5, -0.013974111, 0.0063612987, -0.0083858045, 0.009068448, 0.025525507, 0.026569549, -0.03533683, 0.028296234, -0.006096942, -0.022768162, 0.01682515, 0.011611629, 0.0070740585, -0.014188273, 0.043153767, 0.0065654228, -0.0040757824, 0.0042631743, -0.04500092, 0.005538111, 0.021617038, -0.026904179, -0.0012004818, -0.010841982, 0.015392938, 0.0270648, 0.0033914656, -0.0052771005, 0.022313068, 0.016048811, -0.013840259, -7.1526965E-4, 0.014991383, 0.031428363, -0.0022386685, -0.024561774, 0.0023340378, 0.014937842, 0.0021784352, 9.6289517E-4, 0.0013995861, -0.0012188865, 0.013043841, -0.018498296, 0.022527229, -0.015018153, 0.0026971104, 0.010099106, -0.048159815, -0.0055749207, 0.0067260447, -3.5930797E-4, -0.018913236, 0.003095319, 0.010915601, -0.0077968575, 0.0019994087, 0.035791926, -0.02009113, -0.0122875795, 0.0010365136, -0.015152005, -0.008720434, 0.0046212277, -0.024026368, 0.03196377, 0.0048387363, 0.011082916, 0.004959203, 0.0013560844, -0.0023758665, 5.7849E-4, -0.02333034, 0.011290385, 0.031026809, -0.0038181178, -0.02338388, -0.003992125, 0.008506271, 0.021617038, 0.014215044, 0.031776376, -0.0070941364, 0.0051900973, 0.016048811, 0.032392096, -0.006100288, 0.019609263, 0.006742776, -0.014148117, -0.003048471, -0.012742675, -0.0051733656, -0.0044505666, -0.019421872, -0.02175089, 0.0016062196, -0.0029597941, 0.008084639, -0.039138217, 0.019301405, -0.0062876805, -0.0012339448, -0.008225183, 0.01234112, -0.03769262, -0.011149841, 0.0038114253, -0.019890353, 0.010627819, 0.0122875795, -0.005983168, -0.019769887, 0.01438905, -0.016530676, -0.012789523, 0.014322124, -0.009088526, -0.03201731, 0.0060333624, -0.009918406, 0.0037545383, 0.022045365, 0.008024406, 0.004136015, -0.019328175, -0.021175329, 0.01355917, 6.4541586E-4, 0.006535306, 0.018391214, -0.0114041595, -0.0043434855, 0.019984048, 0.009249148, 0.014522902, -0.010065643, -0.013217849, 0.019743117, 0.01187264, -0.019006932, -0.017280245, -0.01029319, 0.004336793, 0.013150923, -0.0137064075, 0.0118391765, 0.008305494, 0.025913676, 0.02786791, 0.021135172, 0.0090216, -0.00442045, 1.2496304E-4, -0.029875685, 0.010427042, -0.018712457, 0.01088883, -0.011370696, 0.017869193, 0.0014171541, -0.007375225, -0.02618138, 0.013023764, 0.014964612, -0.017253475, 0.001074996, -0.021416262, -0.001830421, 0.012381276, -0.0026971104, 0.025592431, 0.011939566, -0.04197587, 0.009208992, 0.012769446, -0.0016723088, -0.019047087, -3.197799E-4, -0.003660842, -0.002312287, -0.025057025, 0.0063211434, 0.0061939843, 0.016236203, 0.018203821, -0.012749368, 0.02205875, 0.0050662844, -0.011845869, 0.020224981, 0.04018226, -9.4783684E-4, -0.015874803, -4.965059E-4, 0.012508435, 0.010286498, -0.018364444, 0.01765503, -6.253381E-4, 0.0041995947, -0.0031555523, 0.018217208, 9.135374E-4, 0.0042163264, -0.0031572254, 0.009516851, 0.037665848, 0.01718655, 0.0058392775, -0.014844146, 0.01521893, 0.0038883898, 0.0114041595, 0.0012741003, 8.9680596E-4, -0.015259086, 0.017360557, -0.021817816, -0.021108402, -0.0070472886, -0.0021985131, 0.0012623882, -0.0010791788, -0.019943893, 0.010366809, 0.010788442, 0.0052402914, 0.01599527, 0.010975834, -0.027345888, 0.0154464785, 0.014027651, -0.010908908, -0.028135613, -0.030625254, -0.014844146, -0.02302248, -0.0063044117, -0.03774616, 0.026382158, -0.019783271, -0.0077834725, -0.016865306, -6.2659296E-4, 0.017387327, -0.013800103, 0.0204793, 0.027734058, -0.014107962, 0.02636877, -0.012093495, -0.008017713, 0.011952951, -0.013311544, 0.008144872, -0.008620045, 0.008506271, -0.01835106, 0.002429407, 0.0122741945, -0.019876968, 0.009389692, -0.022540614, -3.4383137E-4, -0.02341065, -0.0030652024, 0.022567386, -0.008673586, -0.0089479815, -0.02869779, -0.015379553, 0.003982086, 0.068692654, 0.034158938, 0.0055548428, 0.019087242, -0.0074622286, -0.004671422, -0.013164308, -0.00925584, -0.003821464, -0.009757784, 0.0014748777, -0.015004768, 0.023129562, 0.031749606, 0.0127092125, -0.012193884, 4.559321E-4, 0.008499579, 0.002922985, -0.010105798, -0.022554, 0.002464543, 0.011638399, 0.029982766, 0.013010379, -0.042190034, 0.017936118, -0.0037478458, -0.014469362, -0.005651885, -0.017454254, 0.017025927, -9.625815E-5, 0.017373942, -0.010560893, 5.1365566E-4, 0.019743117, 0.0068097017, 0.0154464785, 0.0023976173, 0.0016990792, 0.013773333, 0.0010515719, -0.0075291544, 0.01602204, -0.012321043, -0.003394812, 0.021322565, 0.0062307934, -0.026997874, 0.02509718, -0.00697367, -0.0073484546, 0.016316514, 0.025726283, 0.0018153627, -0.01934156, 0.0060601328, -0.017842423, -0.0021349336, -4.714087E-4, -0.030705564, 0.026623089, -0.012434817, -0.022540614, -0.006270949, -0.0026418965, -0.01654406, -0.02955444, 0.0166913, -0.009791247, -0.023209874, -0.012615516, -0.016610987, 0.019180939, -0.008439345, 0.011116378, 0.0033429444, 0.012568668, 0.012481664, -0.010366809, -0.016972387, -0.017614875, -0.035042357, -0.017949503, -0.0032057466, 0.0016304802, 0.020318678, 4.239332E-4, 0.011571473, 0.0072547584, -0.014429206, 0.0075090765, -0.002484621, 0.014134732, -0.010989219, 0.009235763, 0.013867029, 0.009309381, 0.013960726, -0.01208011, -0.020318678, -0.004915701, -0.018605378, -0.02055961, -0.010400272, -0.006729391, 0.008767282, -0.0042865984, -0.0111096855, -0.021630423, -0.018525066, 0.01231435, 0.0070071328, -0.001139412, -0.0011193343, 0.014201658, 0.016624372, 0.0021432992, -0.0050127436, -0.001830421, 0.0046647293, 0.015955115, 0.01856522, 0.01205334, 0.02789468, 0.0068532038, -0.03113389, -0.0027004567, 0.017668415, 0.0026887446, 0.012762753, -0.021563498, 0.001092564, -0.026770327, -0.029233197, -0.004340139, 0.002002755, -0.011705325, 0.003841542, -0.024923174, -0.0059296275, 0.005628461, -0.015031538, -0.009470003, -0.020224981, 0.002934697, -0.020251753, 0.010614434, 0.035631303, -0.017922733, -0.0023875786, -0.02175089, -0.012300965, 0.0045108, -0.026529394, -0.005949705, -0.010808519, 0.034239247, 0.014603213, 0.040476732, -0.02432084, 0.02581998, -0.0075760023, 0.008265338, 0.021630423, -0.011437622, 0.0028811563, -0.028938724, -0.004888931, 0.024802707, -0.0035738386, 0.009302689, 0.02136272, 0.007234681, 0.021938283, 0.02947413, 0.003346291, -0.008084639, -0.0377997, -0.019020317, 0.012843064, -0.025538892, -9.988678E-4, -0.027653746, -0.0111230705, 0.060661558, 0.004801927, -0.0073484546, -0.016892076, 0.019863581, -0.008439345, 0.016530676, -0.030089848, 0.007020518, -0.011156534, 0.013840259, -0.032472406, -0.009951869, -0.00379804, 0.0037946939, 0.0093829995, -0.006926822, 0.001748437, 7.320011E-5, 0.015058309, -0.01394734, -0.015513404, 0.0031053578, -0.010012102, -0.025619203, -0.025753055, 0.0032760187, -0.047062233, 0.014696909, 0.0068866666, 0.0075291544, 0.0020395643, -0.027546667, -0.028831642, 0.034747884, -0.007877168, 0.04004841, 0.011183304, 0.032258242, 0.018056585, 0.009503466, -0.019836811, 0.027305733, -0.022246141, -0.0068665887, 0.026810482, 0.009603854, 0.0060735177, -0.0015183794, -0.0038582734, -0.0030217005, -0.025927061, -0.047249626, 0.031508673, 0.015754336, 0.0159685, -0.025110567, -0.0103801945, -0.013258005, -0.00154264, 0.0134387035, 0.011397466, 0.023959443, -0.015031538, -0.013264697, 0.0060166307, -0.010701438, 0.0051900973, 0.006893359, -0.03699659, 0.036407642, -0.021175329, 0.013974111, -0.014442591, -0.0031672642, 0.024802707, -0.018096741, 0.011819099, 0.012180499, 0.012394661, 0.003580531, -0.017025927, 0.0027924797, 0.03672889, -0.018725844, 0.008539734, -0.013083997, 0.016463751, -0.005180058, 0.00863343, -0.023517732, 0.0038950825, -0.03182992, -0.003210766, 0.023758665, -2.7397757E-5, -0.016744839, -0.010975834, -0.017360557, 0.007709854, 0.007107522, 0.01026642, 0.0074019954, -0.048454292, 0.021028092, 0.009188915, -5.287139E-4, -0.0045509553, -0.008459423, 0.012776138, -0.0046848073, 0.033918004, -0.00899483, 0.0051164785, -0.016182663, -0.014348895, -0.03257949, -0.022674466, -0.0073484546, -0.0021198753, 0.032204702, -0.02615461, -0.008599968, 0.0017124643, -9.980312E-4, 0.005939666, 0.013445396, -0.02382559, -0.0010289844, 0.02618138, -0.004751733, -4.8939505E-4, -0.009992024, 0.041547548, 0.02092101, -3.4885082E-4, 0.003142167, 0.0033780807, 0.048079506, -0.024508234, 0.0041962485, 0.0031706106, -0.013077305, -0.011283693, -0.0038515807, 0.036514726, 0.016731454, -0.00961724, -0.039807476, -0.0041125915, -0.010192802, 0.0385225, -0.010895523, -0.0035035664, 0.03274011, 0.013907185, 0.040637355, 0.025886906, 0.008091331, -0.02208552, 0.029822143, -0.020439144, -0.022326453, -0.012173806, 0.0061805993, 0.021911513, -0.009316074, 0.0037880011, -0.011009296, 0.010186109, -0.009557007, -0.02205875, -0.0047015385, 0.008432653, 0.055521656, 0.0025850097, -0.0151653895, 0.020854084, -0.023932671, 0.008325571, -0.026248304, 0.009055063, 0.006652426, -0.016463751, 0.03038432, 0.034078624, -0.008098024, 0.00430333, -6.6633016E-4, 0.023464192, 0.008265338, 0.023303568, -0.021844586, 0.0048286975, 8.177498E-4, 0.0039185067, -0.008037791, 0.0057823905, 0.029313507, -0.034935277, -0.016771609, -0.004728309, 0.008519656, -0.019930508, -0.0030250468, -8.231875E-4, -0.017869193, 0.0156071, 0.0010114164, -0.03129451, -0.0016455385, -0.0030618561, 0.023397265, 0.01851168, -0.0051499414, 0.017507793, 0.012066725, -0.013933955, -0.007120907, -0.019047087, 0.023303568, -0.013733177, -0.016396824, 0.022487074, 0.031240972, -0.021402877, 0.03191023, -0.018993547, 0.0030334126, 0.0044171037, 0.01392057, -0.0433947, 0.01806997, 0.009295996, -0.047329936, 0.0026301846, -0.0065185744, -0.018940005, 0.012294272, 0.009557007, -0.040744435, -0.004373602, -0.008954674, 0.006019977, -0.0052804467, -0.019194324, 0.0035704924, -0.018699072, -0.024829477, 0.007107522, 0.1621211, -0.007756702, 0.0058158534, 0.040396422, 0.010821904, 0.034747884, 0.005317256, 0.0087940525, -0.01853845, 0.001783573, -0.0159685, 0.005317256, 8.48703E-4, 0.0032776918, 0.0031588986, -0.018618762, -0.023076022, -0.022232756, -0.030759105, -0.029099345, 0.002176762, -0.01148447, -0.028911952, -0.0049926657, 0.013137538, -0.011912795, 0.01125023, -0.006993748, 0.025806595, 2.4114209E-4, -0.028189154, -0.03373061, -0.021804431, -0.006240832, -0.032285012, -0.0048286975, -0.013432011, 0.00575562, -9.573529E-5, 0.008553119, 0.007268144, -0.015540174, -0.016637757, 0.0046881535, -0.0028393278, 0.015232315, -0.011564781, 0.0044003725, -0.0201179, 0.018083356, -0.049096778, -0.010467198, 0.017588105, 0.028269464, -4.5216756E-4, -0.014134732, -0.0020747003, 0.001012253, 0.005973129, 0.0039620083, 0.010841982, 0.033971544, -0.034346327, 0.0010858714, -0.01086206, 0.0022721314, -0.04489384, -0.0012648979, 0.016731454, -0.027198652, -0.0072012176, -0.012515128, -0.04936448, -0.02452162, -0.00795748, -0.0073484546, -0.0038515807, 0.007990942, -0.0029296775, -6.2659296E-4, -0.012501743, -0.032177933, 0.009751092, -0.017708572, -3.8001314E-4, -0.04109245, 0.011618322, -4.3292638E-4, -0.01602204, -0.023196489, -0.006762854, -0.008432653, -0.02302248, 0.010527431, -0.002175089, -0.004708231, 0.04489384, 0.016276358, -0.010754978, -0.0057723518, -0.017052697, 0.019033702, 0.021643808, -0.010012102, -0.017360557, -0.015821263, 0.007870476, 0.0091019105, 0.042082954, -0.030705564, 0.019127399, -0.022982325, -0.0056552314, -0.0076161576, -0.022420147, 0.012334428, 0.008901133, -0.0063378746, 0.046553597, -0.039031137, -0.008077946, -0.0057790442, 0.0163299, -0.009496774, 0.0022738045, -0.048507832, -0.012622209, 0.011102993, 0.010801827, -0.039004367, 0.01189941, -0.030732336, 0.024227146, 0.0058760867, -0.011745481, -1.7128827E-4, 0.013666252, 0.004259828, 0.013365085, 0.005732196, -0.0038181178, -0.003533683, 0.0053875283, 0.010788442, 0.009717628, -0.022179216, 6.010775E-4, -0.017400712, -0.0159685, -0.015874803, -0.0015342743, -0.00798425, -0.0017450907, 0.008338957, 0.027158497, 0.002176762, -0.039486233, -0.039191756, -0.020238366, 0.039834246, -0.021630423, 0.005464493, 0.0312142, -0.0073016067, -0.017614875, -0.014629983, -0.17090176, 0.015874803, 0.012608823, -0.018364444, 0.014522902, 0.0109691415, 0.02258077, 0.0015359474, 2.576644E-4, -0.017708572, 0.0065754615, 0.016677914, -0.0675683, 0.00819172, 0.011384081, 0.023477577, -0.007053981, 0.006993748, 0.022808319, -0.0065955394, 0.0343731, 0.0011619995, -0.016731454, -0.00471827, 0.0017969582, 0.008539734, 0.020747002, 0.0019542337, -0.009362922, -0.016316514, -0.021376105, 0.0070472886, -0.0062910267, -0.004360217, -0.003543722, 0.008332264, -0.0043200613, 0.0049424716, -0.0016371728, -0.012930067, 0.028617479, -0.0075090765, 0.0368092, -0.0034366406, 0.009784554, 0.008546427, 0.012602131, -0.0061270585, 0.011799022, -0.039057907, 0.0011293731, -0.045081228, 0.020144671, -0.004694846, -0.0115447035, 0.029126115, -0.012013184, -0.010848675, 0.004788542, -0.02175089, -0.03030401, -0.018110126, 0.022835089, -0.009583777, -0.016209433, -0.043930106, -0.009704243, 0.011825792, -0.015740952, 0.008593275, -0.010647898, -0.0017551295, 0.015660642, 0.004243097, 0.015727567, -0.013291467, -0.018297518, 0.006147136, -0.011732096, 0.0034801424, -0.026047528, 0.046928383, -0.021737505, 0.017882578, 0.028082073, -0.022527229, -0.0022687851, 0.002705476, -0.019515568, -0.009771169, -0.0036675348, -0.008419268, -0.025860135, 0.0019492144, 0.021951668, 0.012086802, 0.0054778783, 0.006746122, 0.014094577, -0.0023256722, -0.013244619, -0.011564781, -0.009429848, 0.028430087, 0.024053138, 0.028885182, 0.020211596, 0.019194324, 0.022687852, 0.002347423, -0.0055983444, 0.023116177, 0.006833126, 0.024414537, -0.016744839, 0.0076161576, -0.0038950825, -0.010821904, 0.006257564, 0.0070807515, 0.03298104, -0.0070472886, -0.012735982, -0.01806997, -0.0031153967, -0.034694344, -0.08620045, 0.005661924, -0.0043669096, 0.03790678, -0.03528329, 0.029393818, -0.010520739, 0.021978438, -0.012501743, 0.029126115, -0.00430333, -0.007944094, 0.014723679, -0.0027740751, 0.024588544, 0.010708131, -0.007281529, -0.008499579, -0.02172412, 0.026342, 0.003945277, 0.01721332, 0.0052536763, -0.006009938, -0.026301846, -0.0038883898, -0.032392096, 0.046285894, 0.015419708, 0.020934395, 0.00347345, -0.017066084, -0.0024344265, -0.047035463, -0.04117276, -0.0057723518, -0.026569549, -0.011183304, 0.007448843, -0.056324765, 0.0021098363, 0.014027651, 0.002451158, -0.028296234, 0.0018371136, -0.027466355, -0.01635667, 0.023865746, -0.0028627517, -0.020439144, -0.021509957, -0.0058359313, -0.028671019, -0.0030350857, 0.020800544, 0.021563498, 0.009496774, 0.009055063, -0.014977997, -0.019127399, 0.00462792, 0.0022721314, -0.018484911, 0.0013493918, 0.013800103, 0.013217849, -0.0018036508, -0.009115296, 0.0089479815, 0.0011544704, 0.0052436376, 0.032177933, -0.026342, -0.017695187, -0.020666692, 0.016811766, -0.01931479, 0.0038716584, 0.024374383, -0.03603286, 0.0033446176, -0.028537167, -0.006408147, -0.019863581, 0.020840699, 0.021175329, 0.0176818, -9.045442E-6, 0.013826873, -0.009945177, -0.002588356, 0.004571033, 0.007087444, -0.017708572, -0.0068532038, 0.04529539, 0.020827314, -0.0049190475, 0.0073283766, -5.688694E-4, -0.0052269064, -0.003200727, -0.07163739, 0.022353223, 0.0056385, -0.01591496, -0.009864865, -0.008653508, 0.0058627017, -0.014496132, 0.020854084, 0.0027790945, -0.024387768, -0.0035571072, -0.0030350857, -0.0093829995, -0.009188915, 0.0065185744, -0.0049056625, 0.0024193681, -0.0069201295, -0.0019642727, -0.007683084, 0.0026669938, 0.005146595, 0.011424237, -0.011317155, 0.007816935, 0.0019726385, 0.020412374, -0.0010256381, -0.014844146, 0.048882615, -0.020987935, 0.0014631656, 0.009403077, -0.0033663686, -0.03788001, -0.021831201, -0.016463751, 0.020599766, 0.019033702, -0.024976715, -0.03035755, -0.010192802, -0.014790606, -0.0069870553, 0.016972387, -0.017936118, 0.019943893, 0.014549673, -0.0031338013, 0.025257803, 0.015647255, -0.0154598635, -6.638204E-4, 0.0133517, -0.016129121, 0.044465512, 0.008338957, 0.011143148, -0.009322766, 0.016637757, 0.0041259765, 0.03030401, -0.023611428, -0.010601049, -0.00795748, 0.0018287479, 0.009898328, 0.0012749368, -0.033596758, 0.005166673, 0.0020663345, 0.0075893877, 0.03035755, 0.014817376, 0.007970865, -0.00985148, -0.0060467473, 3.8252288E-4, 0.016945617, 0.021817816, -0.017360557, -0.026944334, 0.016959002, 0.022299683, 0.02576644, 0.0057957754, 0.023343725, 0.0014280296, 0.0180432, -0.023838976, 0.019823426, 0.0063780304, 0.011283693, -0.00824526, 0.023785435, -0.02006436, -0.014924457, -0.008004327, 0.024414537, -0.013492244, 0.009864865, -0.010467198, -0.02045253, -0.013746562, 0.004370256, -0.019194324, -0.029688291, 0.02714511, 0.019609263, 0.01651729, 0.01892662, -0.0038649659, 0.008720434, -0.025364885, 0.0012950145, 0.007261451, -0.014201658, -0.012816294, 0.023250028, 0.011143148, 0.01223404, 0.031080348, -0.0140008805, 0.037585538, 0.0053440263, 0.02452162, -0.0277876, 0.0070807515, 0.012153728, -0.007642928, 0.016142506, -0.027252192, -0.0041494006, -0.00510644, -0.005812507, 9.444906E-4, 0.033891235, -0.029581212, 0.07227988, -0.0068866666, 0.0010657936, 0.016530676, -0.033864465, 0.015660642, 0.012448202, -1.9701287E-4, -0.0076161576, -4.1473092E-4, 0.0029430627, 0.0039519696, 0.010420349, -0.03373061, -0.01889985, -0.01003218, 0.0082184905, -0.0042865984, -0.001991043, -0.026261691, 0.017721957, -0.011471085, 0.0180432, -0.0011879333, -0.0053206026, -0.005006051, 0.03439987, -0.004500761, -0.013104075, -0.027171882, 2.002546E-5, -0.015285856, -0.004407065, 0.004892277, 0.0067126593, -0.011076222, -0.0055514965, 0.0028677713, 0.014924457, 0.003741153, -0.0125552835, 0.015392938, -0.016102351, -0.006722698, 1.3311963E-4, -0.0057288497, 0.014897686, -0.012200576, -0.042297117 ], + "id" : "cbe3f3d4-e2c1-4b22-a784-219b38b8d055", + "metadata" : { + "source" : "movies.csv" + } + }, + "4351eed9-a3bb-4a9e-9027-d969d4fe5923" : { + "text" : "3,2673,Pierce Brosnan-Michelle Yeoh-Jonathan Pryce-Teri Hatcher-Judi Dench-Ricky Jay-Desmond Llewelyn-G�_tz Otto-Samantha Bond-Vincent Schiavelli-Joe Don Baker-Colin Salmon-Geoffrey Palmer-Julian Fellowes-Terence Rigby-Nina Young-Daphne Deckers-Colin Stinton-Al Matthews-Cecilie Thomsen-Mark Spalding-Bruce Alexander-Anthony Green-Christopher Bowen-Julian Rhind-Tutt-Gerard Butler-Michael Byrne-Pip Torrens-Hugh Bonneville-Jason Watkins-Brendan Coyle-Nadia Cameron-Blakey-Vincent Wang-Dinny Powell-Romo Gorrara-Laura Brattan-Antje Schmidt-Sophie Sch�_tt-Khan Bonfils,london england-england-spy-china-intelligence-missile-manipulation of the media-secret intelligence service-special car-media tycoon-navy-motorcycle-secret service-hamburg germany,/gZm002w7q9yLOkltxT76TWGfdZX.jpg,/yUHP5AectnhcG4dWJ53L3uQvOgu.jpg,36643-36669-710-708-709-700-699-682-698-681-691-253-707-667-660-668-36670-646-657-658-10764\r\n87,Indiana Jones and the Temple of Doom,Adventure-Action,en,After arriving in India Indiana Jones is asked by a desperate village to find a mystical stone. He agrees ��� and stumbles upon a secret cult plotting a terrible plan in the catacombs of an ancient palace.,44.819,Paramount-Lucasfilm,5/23/84,28000000,333000000,118,Released,If adventure has a name... it must be Indiana Jones.,7.3,7934,Harrison Ford-Kate Capshaw-Ke Huy Quan-Amrish Puri-Roshan Seth-Philip Stone-Roy Chiao-David Yip-Ric Young-Chua Kah Joo-Rex Ngui-Philip Tan-Dan Aykroyd-Akio Mitamura-Michael Yama-D.R. Nanayakkara-Dharmadasa Kuruppu-Stany De Silva-Ruby de Mel-Denavaka Hamine-Iranganie Serasinghe-Dharshana Panangala-Raj Singh-Frank Olegario-Ahmed El Shenawi-Arthur F.", + "embedding" : [ 0.0041762386, -0.032558177, -0.014108543, -0.03277798, -0.027571417, 0.030799761, 0.004619277, -0.01853206, -0.02107352, -0.027406566, 0.018463371, 0.03340991, 0.025208546, -0.0016940212, 0.0075076134, 0.020111887, 0.00926603, -0.011443444, 0.035058424, -0.025277235, -0.01349035, -0.008874508, -0.007349631, 0.011395362, -0.001590989, 0.006872248, 0.022941837, -0.009451488, -0.014658049, -0.0026874233, -0.003166523, 0.0033536982, 0.0019335711, -0.0077480217, -0.016457677, 0.014190969, -0.0034000627, -0.020963619, 0.03258565, 0.009925436, 0.014163494, 0.0021070086, -0.012975189, 0.0025706536, -0.0018545797, 0.011106872, 0.020592704, -0.017336886, -0.008084593, 0.023642456, 0.024521666, 0.037833426, -0.026128968, -0.026458671, -0.012061637, 0.0029741963, -0.011031315, 0.006154457, -0.015207553, -0.0048253415, 0.015894435, -0.027667582, -0.03461882, 0.002744091, -0.024109537, -0.003798454, -0.0014510369, -0.017680326, -0.0022340817, 0.013050746, 0.01516634, 0.020139363, 0.019466218, 0.012178407, 0.020812506, -0.03706412, -0.032091096, 5.7182874E-4, -0.014603098, -0.0010638075, 0.007857922, -0.022227481, -0.023683669, -0.007878529, 0.015894435, 0.01516634, -0.017762752, 0.025084907, -0.006491029, 0.009568257, 0.015619682, 0.05124135, -0.009918567, 0.004955849, 0.0038637077, 0.02692575, -0.026183918, 0.02228243, -0.014864113, -0.023381442, -0.0057079843, -0.007906005, -0.0047841286, -0.015180078, -0.003554611, 0.004025125, 0.0029604586, -0.018257307, 0.03005793, 0.016718693, 0.014905326, -0.0030755114, 0.01430087, -0.03415174, -0.01430087, -0.028821543, 0.019301366, -0.029590849, -0.008785212, -0.017501738, 0.020688867, 0.016004335, 0.007397712, -0.039179713, 0.057862885, 0.030909661, 0.017213248, -0.009211079, 0.019081565, 0.0046810964, 0.023779834, -4.524831E-4, 0.027049389, 0.013991773, -0.025277235, 0.046185903, -0.031156939, -0.0066833557, -0.016457677, -0.01945248, 0.043520804, 0.025194809, -0.017900128, -0.019356318, -0.009156128, 0.011573951, 0.00822197, -0.0066902246, 0.0035408735, 0.005450404, 0.015207553, 0.034289118, 0.016636267, 0.0013325498, 0.0073908437, -0.011663246, -0.008695918, -0.00914926, 9.3587587E-4, -0.012830944, 0.009849879, -0.006010212, -0.011450312, -0.017419312, 0.014424508, 0.028986394, 0.010145238, -0.019095302, -0.012714175, 0.013064484, 0.0024950965, 0.018861763, -0.007342762, 0.011429706, 0.011718196, 0.009533914, 0.01893045, -0.01979592, -0.02860174, -0.032915354, -0.002817931, 0.012975189, 0.045141842, 0.042229466, -0.013627727, 0.011883047, 0.02038664, -0.01638899, 0.013476612, -0.0059209173, -7.6115044E-4, 0.017831441, 0.0020434721, -0.0044681635, -0.6369863, -0.019479956, -0.02199394, -0.0120272925, 0.018724386, 0.019411268, 0.0016553841, 0.009733109, -0.030909661, -0.020922406, -0.03456387, 0.022708299, 0.028093448, -0.015042702, -0.013627727, -0.0061578914, 0.0112991985, -0.026101492, 0.00862723, 0.0051550446, -0.02917872, 0.03272303, 0.024507927, -0.0015351799, 0.016595054, -0.0013771971, -0.02906882, -0.02790112, 0.008448641, -0.0138681345, -0.018655699, 0.015976861, 0.011141215, 0.008805819, 0.038410407, 0.0053988877, -0.012597404, 0.050636895, 0.021952728, 0.038685158, -0.024398027, -0.01082525, 0.010481809, 1.8878505E-4, -0.013847528, 0.032558177, 0.011051921, 0.0063090054, -0.0025019655, -0.011415969, -0.0011994666, 0.0065631517, -0.023463868, -0.023299016, -0.0077480217, 0.0028316684, 0.013820053, -0.04398788, 0.035855208, -0.0069684116, -0.012830944, 0.029041344, 0.005134438, 0.0045643267, -0.01592191, 0.027585156, -0.0040800753, -0.0045093764, 0.009664421, -0.038547784, 0.010577973, 0.005766369, -0.01579827, -0.010117763, -0.0060823346, 0.0026805545, 0.03319011, 0.01024827, -0.0111137405, 0.02350508, 7.9034286E-4, -0.0049592834, -0.011361018, 0.020524016, 0.025689363, -0.006872248, -0.036432188, 0.0072878115, 0.00972624, -3.2283424E-4, 0.016292825, 0.026568571, 0.023642456, 0.02535966, -0.01581201, 0.0015403315, -0.014506934, -0.014259657, 0.029425997, -0.04555397, -0.008489854, -0.0017129104, 0.027406566, -0.018023767, 0.015235029, 0.01980966, -0.0031974327, 0.0014476025, 0.027392829, -0.018339733, -0.0023250934, -0.0022838805, -0.012631749, -7.517058E-4, -0.011189298, -0.03272303, 0.030799761, 0.015880696, -0.006855076, -0.008531067, 0.009217948, 0.006607799, -0.0040491656, -0.013971167, 2.1854097E-5, 0.030662384, 0.010110894, -0.004859686, 0.009451488, 0.013181253, -0.0012363865, -0.0014690675, 0.01702092, -0.020400377, 0.014149756, -0.0016674045, 0.0047841286, -0.004110985, -0.007768628, 0.004670793, -0.008579148, -0.005512223, -0.010000993, -0.0062094075, 0.0010955757, -0.017158296, -0.04135026, 0.0035717832, -0.009794928, -0.02588169, -5.392019E-4, 0.020276738, 0.007967824, 0.005409191, 0.013641464, -0.0021671108, -0.015276242, -0.010818382, 0.0010457769, -0.013675808, -0.0023096385, 0.0062918332, 1.2825363E-4, -0.00943775, 0.03373961, -0.01829852, -0.0020743818, 0.007590039, -0.012638617, -0.020881193, 0.017405573, 0.003630168, 9.03249E-4, 0.004794432, -0.008606624, 0.012906501, -0.018861763, 0.015358668, 0.012240226, -0.0012690134, -0.0010947172, -0.008242576, -0.021334535, -0.010804644, 0.041020557, 0.016361514, 0.007665596, -0.00356148, 0.0032094533, 0.0057114186, 0.009856747, -0.014548147, 0.001101586, 0.0070542716, -0.0011170409, 0.014232182, 0.005543133, -0.015976861, 0.010186451, 2.1550903E-4, 0.043465853, 0.028107185, 0.015427356, -0.0016957384, 0.017803965, -0.023546293, 0.0020898366, -0.013366711, 0.02483763, -0.006964977, 0.0269807, -0.01210285, -0.018394683, 8.955216E-4, 0.009231686, 0.024329338, -0.017130822, 0.0071779103, -0.017419312, -0.0049833246, 0.010756562, -0.0039461334, 0.016471416, 0.017089609, -0.03989407, -0.0075007444, 0.020977357, -0.011711327, 0.0066215363, -0.014712999, -0.0018751861, -0.006642143, 0.0031390479, 0.010000993, -0.0024573181, -0.020372901, 0.041322783, -0.007919742, 0.043493327, -0.012075375, -0.012137194, 0.010612317, 0.019479956, 0.0032764242, -9.873919E-4, -0.0051790853, 0.011979211, 0.020263001, -0.015894435, 0.052477736, -0.02083998, 0.021513125, -0.009678159, -0.003884314, 0.005783541, -0.009527044, 0.001967915, 0.017144559, 0.03607501, 0.013291155, 0.026760899, -0.027695056, 0.029673275, 0.01673243, 0.007878529, 0.009932305, -0.022598397, 0.012137194, 0.009527044, -0.023092952, -0.013813185, -0.01916399, 0.0044784667, -6.3236017E-4, -0.005604952, -0.020166837, 0.013078221, 0.01505644, 2.6359071E-4, 0.018916713, -0.011766278, -0.028354462, 0.010481809, 0.027887383, -0.001797912, -0.037943326, -0.011848704, -0.011086266, -0.040031448, -0.020881193, -0.010818382, 0.04115793, -0.014630573, -0.0060342527, -0.008029643, 0.004725744, 0.0031682404, -0.012336389, 0.00279389, 0.023065476, -0.002817931, 0.0054160594, -0.0042174514, -0.010632924, 0.029618325, -0.018106192, 0.008537935, -0.0017103346, -0.00416937, -0.011395362, 0.010289483, 0.0021310495, -0.054043826, 0.017062133, -0.015949385, 0.0048322105, -0.01534493, 0.0061063753, 0.017872654, -0.025675626, -0.009849879, -0.027049389, -0.033657186, 0.013394186, 0.08297527, 0.035278227, 0.0041247224, 0.0019455915, 0.005965565, 0.0052546426, -0.009733109, -0.012006686, -0.01360712, -0.020853719, 0.017391836, -0.020345427, 0.024480453, 0.016402727, 9.530479E-4, -0.008428034, -0.009849879, -0.01487785, 0.0063983, -0.013613989, -0.024535403, -0.014383296, 0.025950378, 0.031569067, 0.009478963, -0.01579827, 0.023656195, 0.014658049, 0.0037812819, 0.021252109, -0.0012964886, 0.0060789003, 0.013105697, -0.0012441139, -0.006425775, -0.009142391, 0.028876493, 0.0049833246, 0.012521847, -0.0036164303, 7.156445E-4, 0.018367209, -2.5006774E-4, -0.00804338, 0.004608974, -0.022955576, -0.024054585, 0.013916217, 0.031101989, -0.021568075, 0.02067513, 0.006477291, -0.021238372, -0.01766659, 0.0049077673, -0.006923764, -0.012590536, -0.0173781, -0.0116563765, 0.011415969, -0.003942699, -0.041102983, 0.035168327, -0.009506438, -0.0037950196, -0.0068276008, -0.020592704, -0.008716525, -0.01945248, 0.008702787, 0.0050520124, -0.0075419573, -0.004523114, -0.0024641869, 0.01574332, -0.0066490117, 0.031019563, -0.007342762, 0.030772286, 0.006085769, -0.027708795, -0.025538249, 0.005738894, -0.021265848, -0.0066661835, 0.019933298, -0.009417144, 0.0057526315, -0.010378777, -7.581453E-4, 0.0025345923, -0.0050588814, -0.016512629, -0.009375931, 0.03874011, 0.02107352, 0.008325002, -0.006848207, 0.009087441, 0.016911019, 0.0011968908, -0.022241218, -0.004303312, -0.020757554, -0.0011883047, 0.008476116, -0.008194495, 0.0066730524, -0.014891588, -0.01581201, -0.022145055, -0.039701745, 0.009259161, 0.0012346692, 0.011154953, 0.007782366, 0.019205203, 0.011676983, 0.002744091, 0.0065871924, -0.0053714123, -0.0089157205, 0.018559534, 0.008524198, -0.010729087, 0.02791486, -0.0058213198, -0.028326988, 0.005924352, 0.021444436, -0.014369559, 0.015963122, -0.016952232, 0.0017120518, -0.009650683, -0.009293505, 0.007878529, 0.0047326125, -0.010131501, 0.013085091, -0.02542835, -0.011141215, 0.018394683, 0.011519001, -0.015028965, -0.023244066, 0.0045437203, -0.015619682, 0.010433728, 0.012611142, -0.015235029, 0.0065528485, -0.020716341, -0.01181436, -0.010914545, -0.030140355, -0.028120924, -0.012466897, 0.025194809, 0.017900128, 0.03033268, -0.012178407, 0.024576616, 0.012068505, 0.024865106, 0.026719686, -0.019878346, -0.015715845, -0.030030454, -0.007301549, 0.010028468, 0.0052374704, 0.007851054, 0.007335893, 2.213046E-4, 0.013504088, 0.005714853, 0.01071535, 0.008668443, -0.03687179, -0.029233672, 0.009588864, -0.025277235, -0.007624383, -0.019081565, -0.006295268, 0.021348273, -0.010976364, -3.1360428E-4, -0.013476612, 0.029590849, -0.0031579372, 0.007892267, -0.039097287, 0.009760585, -0.018545797, 0.007109222, -0.02298305, 0.0026942922, -0.0076518585, -0.016567579, 0.028162137, 0.008675312, -0.009918567, 0.003097835, 0.035580456, -0.019988248, -0.008853901, 0.02755768, -0.010962627, -0.010577973, -0.02796981, -0.020166837, -0.0229281, -0.013531563, 0.006624971, 4.520538E-4, -0.0015600793, -0.024562879, -0.029975504, 0.02732414, 0.008249445, 0.036459662, 0.011134347, 0.044482436, 0.023202853, 0.010042205, -0.014046724, 0.012727912, -0.0030755114, -0.0058934423, 0.030579958, 0.0323109, -0.00851046, -0.009224817, -0.022433545, -0.011786885, -0.03178887, -0.031651493, 0.035223275, -0.0017558405, 0.005680509, -0.023889733, 0.012082243, -0.023120428, 0.0021121602, -0.004313615, 0.016485153, 7.529937E-4, -0.021966467, -0.014603098, 5.044285E-4, -0.00396674, 0.01430087, 0.006662749, -0.023477605, 0.0017481131, -0.030387633, 0.0120272925, -0.01853206, -0.0016279089, 0.03335496, -0.026252607, 0.013126303, 0.0016802836, 0.02384852, -0.005072619, 0.010378777, 0.006120113, 0.028120924, -0.011718196, 0.016595054, -0.0027732835, 0.007912873, 0.013936823, 0.009520176, -0.013215598, -0.008462379, -0.013820053, 0.001155678, 0.025277235, -0.01707587, -0.0037881508, -0.0072465986, -0.015592207, -0.013909347, -0.008469247, 0.006212842, 0.009355324, -0.032668076, -0.006061728, -0.0068138633, 0.0027732835, 0.0030497534, -0.008469247, -0.002194586, 0.0065116356, 0.0023182246, -0.0053988877, -0.003891183, -0.009307243, -0.007521351, -0.040031448, -0.01788639, -0.014712999, 0.0036232993, 0.009121785, -0.026513621, 0.008256314, -0.0064875945, 0.007672465, -0.0044441223, 0.010969495, -0.0143970335, -0.0010792624, 0.016567579, -0.003257535, 0.007109222, -0.014960276, 0.022378596, 0.004289574, 0.00299652, -0.009458357, 0.0024332772, 0.026128968, -0.012590536, 0.007260336, 0.0045986706, -0.012116588, -0.006212842, -0.006144154, 0.018271044, 0.002963893, -0.0103856465, -0.03288788, -0.021664238, -0.006662749, 0.04151511, -0.005591214, -7.139273E-4, 0.0350859, 0.017034657, 0.04632328, 0.021100996, 0.0017558405, -0.041954715, 0.008606624, -0.01505644, -0.016292825, 0.005512223, 0.010000993, 0.007919742, 0.016952232, 0.002356003, -0.024178224, -0.0059861713, -0.031129465, -0.031816345, -0.014060462, 0.020606441, 0.016581316, 0.022612134, 0.013442269, 0.023807308, 0.0029776308, -0.001325681, -0.020427853, -0.020166837, 0.010859595, -0.0069168955, 0.029728226, 0.021444436, -0.030442582, 0.006329612, 0.0033966284, 0.011422837, 0.0065974956, 0.02606028, -0.0063776937, -0.026170181, -0.013442269, -0.0053061587, 0.0052889865, -0.00868905, 0.03376709, -0.021389486, -0.010110894, 0.012885895, 0.0324208, 0.0032695553, -0.0063536526, -0.0067657814, -0.0076175146, -5.8470777E-4, -0.005209995, -0.026554834, 0.0020881193, -0.02854679, 0.027200501, -0.0026977265, -0.012995795, 0.03717402, 0.01667748, -0.009197341, 0.010454334, -0.012226488, -0.004196845, 0.0010921414, -0.002539744, 0.0103856465, 0.025043694, -0.03373961, 0.010392515, -0.024562879, 6.605867E-5, 4.4046267E-4, 0.0045505892, -0.009884223, 0.04313615, 0.016237875, -0.066050515, 0.0041487636, -0.018971663, 0.0050588814, -0.017130822, 0.0019644806, -0.03533318, -0.017391836, 0.0019026614, -0.0013668939, -0.0077480217, -0.040333673, -0.0071435664, -0.007225992, -0.0075763017, 0.016018074, 0.18518321, -0.0063124397, 0.014451984, 0.043108676, 0.011979211, 0.016141713, 0.032832928, 0.0154960435, -0.0069031576, 0.011573951, 0.0025294407, 0.0094858315, 0.003671381, 4.0890908E-4, 0.03236585, -0.021636764, -0.019370055, -0.018628223, -0.028326988, -0.021087257, -0.016485153, -0.007912873, 7.80469E-4, -0.013435399, -0.0019026614, -0.0042586643, 7.422612E-4, 0.008579148, 0.028436888, -0.005079488, -0.006329612, -0.014081068, -0.00793348, 0.01099697, -0.034701247, -0.0064086034, -0.007404581, 0.006120113, 0.005924352, 0.0052855522, -0.004159067, -0.0082013635, -0.009011883, -0.013964298, -0.009087441, 0.011470919, -0.026705947, -0.008517329, -0.023051739, 0.007906005, -0.043273527, -0.012047899, 0.024288125, 0.002489945, -0.00903249, -0.018284783, 0.014974014, 0.0054332316, 0.0018425593, -0.005604952, 0.0050520124, 0.036844317, -0.029590849, 0.0025139858, -0.004011387, 0.024178224, -0.02912377, -0.02073008, 0.0019095303, -0.038932435, 0.0050211027, -0.01730941, -0.022996789, -0.0013565907, -0.016416464, -0.0068241665, 0.012034162, -7.2766497E-4, 9.685027E-4, 0.008537935, -0.0151251275, -0.011780015, 0.008874508, 2.3353967E-4, -0.0151113905, -0.020482803, 0.0114846565, -0.035360653, -0.010275746, -0.008146413, 6.357946E-4, -0.040828228, -0.0043788687, -0.021197159, -0.018848024, -0.007857922, 0.026939487, 0.015193816, -0.01314004, -0.0020726644, -0.031101989, 0.04313615, 0.008675312, 8.577431E-4, -0.034536395, -0.009011883, 0.0023233762, 0.012494372, 0.04157006, -0.011477788, -0.015853222, -0.026912011, -0.0058522294, -0.01192426, -0.010907676, 0.018133668, -0.0039014863, -0.011312936, 0.04626833, -0.01019332, -0.0010054226, -0.030552484, 0.025400873, 0.00712296, -0.009156128, -0.029343572, -0.028958919, 0.015523519, -0.006964977, -0.034811147, 0.029316097, -0.030387633, 0.0055225263, 5.220298E-4, 0.0067760847, 0.00741145, 0.010619186, 0.0044647288, 0.0024933794, -0.013991773, 0.0069615426, -0.03011288, 0.0114846565, 0.00879895, 0.011738802, -0.01736436, 0.002313073, -0.016979707, -0.01424592, -0.023202853, -0.004766957, -0.016883545, 0.002744091, 0.02397216, 0.042009663, -0.010158976, -0.011594557, -0.046185903, -0.018463371, 0.037805952, -0.04302625, 0.02762637, 0.019122778, -0.013167516, -0.021210896, 0.002455601, -0.17639114, 0.03503095, 0.016567579, -0.039646793, 0.019878346, 0.006010212, 0.035113376, 0.002938135, 0.015358668, -0.016828593, 0.023477605, -0.00628153, -0.035992585, -0.011711327, 0.0017687195, 0.012714175, 0.0056427303, 0.02107352, 0.04272402, -0.011937998, 0.030799761, 6.2162767E-4, -0.0058900076, -0.010687874, 0.020290475, -1.4864543E-4, 0.016114237, -0.009478963, 0.008297527, 0.0039117895, -0.021004831, -0.016114237, 0.013689546, 0.0031132898, 0.0011050204, -4.0032304E-4, -0.012432553, -0.0059861713, 8.6718774E-4, -0.00943775, 0.025222285, 0.011010708, 0.030964613, 0.014039855, 0.019905822, 0.010687874, 0.015070178, -0.014699262, 0.021458173, 0.001075828, -0.006202539, -0.04214704, 0.026760899, -0.0034086488, -0.002962176, 0.024233175, 0.017062133, 0.0069168955, 0.007116091, 0.004622712, -0.034701247, -0.007679334, 0.008524198, -0.021677976, -0.007596908, -0.009245424, -0.0024075191, 0.017625377, -0.023889733, 0.024411764, -0.030964613, 0.0055500013, 0.013304892, 0.01099697, 8.9638017E-4, -0.018669436, -0.015770797, 0.011100003, -0.0076518585, 0.01192426, -0.030662384, 0.031541593, -0.007720547, 0.021623025, 0.011450312, -0.011999818, 0.01082525, -0.00182367, 0.0064875945, -0.009396537, 0.0063090054, -0.027145552, -0.03989407, 8.8092533E-4, 0.004955849, 0.0065631517, 1.2267272E-4, 0.026087755, 0.009849879, -0.011793753, -0.00579041, -0.012137194, -0.006844773, 0.03904234, 0.008901983, 0.0040800753, 0.008737131, 0.007016493, 0.016127974, 0.0063158744, -0.0042414926, -0.005089791, 0.015386143, 0.012315783, -0.016746167, 0.01882055, -0.022048892, -0.026596047, 5.615255E-4, 0.017680326, 0.040526003, -0.0070474027, -0.0033279401, -0.004481901, 0.0018751861, -0.01239134, -0.088140614, 0.007301549, 0.030662384, 0.036432188, -0.012686699, 0.039866596, 0.009348456, 0.015015227, -0.036377236, 0.020249262, -4.2286134E-5, -0.020798767, 0.023395179, -0.0029415695, -4.35955E-4, -0.007947218, -0.02044159, -0.008984408, -0.012604273, 0.021609288, 0.00926603, -0.005165348, -3.3828907E-4, -0.0105848415, -0.012995795, 0.016911019, -0.02692575, 0.011148085, 0.009410275, 0.0154960435, 0.017226985, -0.01592191, -0.010495547, -0.035415605, -0.029728226, -0.0045437203, -0.010893938, -0.008840163, 0.0014476025, -0.04533417, -0.0033210714, 0.00275096, -0.0040526, -0.010358171, -0.017831441, 0.0020709473, -0.03948194, 0.020771293, -6.460978E-4, -0.021142209, -0.017213248, -0.005357675, -0.02818961, -0.014273395, 0.01979592, 0.03665199, 0.020867456, 0.0051859543, -0.009396537, -0.012707305, -0.014122281, -0.0125836665, -0.017858915, 0.017529212, 0.012714175, 0.018078718, -0.008634099, -0.0175979, 0.0058487947, -0.023642456, -0.024672778, 0.03618491, -0.043932933, -0.0045093764, -0.020606441, 0.0070199277, -0.026596047, -0.015619682, 0.029563375, -0.02379357, -0.0064086034, -0.016279088, 0.009080572, -0.024920056, 0.014864113, 0.029233672, 0.014108543, 0.007967824, 0.0062918332, -0.034536395, -0.017817702, 0.027420305, -0.006930633, -0.0051516104, 0.0025569159, 0.034893572, 0.002752677, 0.0026805545, -1.031932E-4, 7.736001E-4, -0.0025775223, 0.001051787, -0.08132675, 0.028436888, -0.020908669, -0.017845178, 0.0046467525, -0.010687874, -0.0027887383, -0.0071710413, 0.005824754, 0.018655699, -0.0066318396, -4.5827866E-5, 0.003123593, 7.087757E-4, -0.0027715664, 0.01424592, 0.020015724, -2.4126709E-4, -6.64987E-4, 0.0010217361, -0.021293322, 0.022776986, 0.009540782, -0.0057045496, -0.01395743, 0.012892763, 0.012755387, 0.0057698037, -0.02269456, -0.01702092, 0.03827303, -0.025181072, 7.315287E-4, 0.0028660125, -0.026019067, -0.025483299, 0.004066338, 0.004306746, 0.025029957, 0.0147542115, -0.0056942464, -0.024920056, 2.498531E-4, -0.004066338, -0.015152603, 6.8344694E-4, -0.019012876, 0.007480138, -0.005553436, 0.00587627, 0.020757554, 0.0069958866, -0.013902479, -0.0029518728, 1.4102533E-4, -0.018669436, 0.051378727, 0.024343075, 0.0023748924, -0.03200867, 0.026788373, -0.012061637, 0.012624879, -0.02083998, 0.0045711957, -0.0040319934, 0.0054160594, -0.017694063, 9.2986564E-4, -0.013648333, -0.011196166, -0.013002665, 0.004399475, 0.042531695, 0.021966467, 0.021458173, 0.006113244, 0.0019765012, -0.0012853268, 0.0076587275, 0.0147404745, -0.024178224, -0.036981694, -0.0012054768, 0.0094858315, 0.01945248, 0.0010105742, 0.009307243, 0.011821228, 0.007960955, 0.015894435, 0.008778344, 0.015592207, -3.5095346E-4, 0.0045711957, 9.3587587E-4, -0.018092455, -0.011031315, -0.005409191, 0.038575258, 0.006144154, 0.0067245685, -0.010371909, -0.023807308, -0.03288788, 0.0032386456, -0.019136515, -0.034811147, 0.02020805, 0.005419494, 0.021210896, 0.034811147, -0.011306067, 0.0011634054, -0.046790358, 0.009059966, -0.009293505, -0.017103346, -0.005045144, 0.033822037, 0.014506934, 0.013586514, 0.011759409, -0.01678738, 0.061874274, 0.0107702995, 0.018985402, -0.020015724, -0.0037950196, 0.003274707, -0.007109222, -0.006728003, -0.01134728, 0.003376022, -0.0093003735, -0.0042414926, -0.014520672, 0.043795556, -0.014019249, 0.070941105, -9.240701E-5, -0.0028677296, 0.014342083, -0.013813185, 0.004677662, 0.015894435, 0.017900128, -0.013194991, -0.016224138, -0.0038259292, 6.9090606E-6, 0.002084685, -0.016292825, 0.0068619447, -0.009863617, 0.017446786, 0.012157801, -0.019315105, -0.020331688, 0.00547101, 0.0032506662, 0.019356318, 0.0056015174, -0.00741145, -0.0024143881, 0.01772154, -0.014218444, -0.0030497534, -0.04077328, -0.0049592834, -0.023834784, -0.0053370683, -0.0012604273, 0.025634414, -0.009863617, -1.7300824E-4, 0.0067657814, 0.0188755, 0.012405078, -0.028409414, 0.006051425, -0.020345427, -0.024672778, 0.021815352, 0.005924352, -0.017268198, -0.033712137, -0.006205973 ], + "id" : "4351eed9-a3bb-4a9e-9027-d969d4fe5923", + "metadata" : { + "source" : "movies.csv" + } + }, + "66a78473-1b5d-4a7e-8b02-b11fb34b8cc7" : { + "text" : "Mazza-Steve Cirbus-Calista Hill-Gabriella Hill-Madeline Hill-Adhi Sharma-Tyree Michael Simpson-Blake Lange-Abraham Sparrow-Pat Fraley-Caitlin McHugh-Deborah Collins-Mike Patton-Katherine Brook-Vince Cupone-Lynna Davis-Anika Ellis-John Grady-Moses Harris Jr.-Kennis Hawkins-Marc Inniss-Eric Jenkins-Reed Kelly-Grasan Kingsberry-Drew Leary-Asa Liebmann-Deborah Lohse-Jon-Paul Mateo-Ian Mclaughlin-Luke Miller-Courtney Munch-Kimberly Shannon Murphy-Okwui Okpokwasili-Erin Owen-Victor Paguia-Paradox Pollack-Will Rawls-William Schultz-Hollie K. Seidel-Hannah Sim-Eric Spear-Mark Steger-Charlie Sutton-David Hamilton Thomson-Anthony Vincent-Greg Wattkis,saving the world-new york city-based on novel or book-lost civilisation-post-apocalyptic future-dystopia-infection-matter of life and death-alone-helplessness-loneliness-zombie-virus-pandemic-pets,/iPDkaSdKk2jRLTM65UOEoKtsIZ8.jpg,/lhVVIWKR13khBvjFz8XyZ2GM0JS.jpg,2048-8960-607-1271-18785-602-608-425-285-61791-1402-10528-14161-72190-8681-1858-41154-72105-58-604-557\r\n1726,Iron Man,Action-Science Fiction-Adventure,en,After being held captive in an Afghan cave billionaire engineer Tony Stark creates a unique weaponized suit of armor to fight evil.,116.068,Marvel Studios,4/30/08,140000000,585174222,126,Released,Heroes aren't born. They're built.,7.6,24538,Robert Downey Jr.-Terrence Howard-Jeff Bridges-Gwyneth Paltrow-Leslie Bibb-Bill Smitrovich-Paul Bettany-Jon Favreau-Shaun Toub-Faran Tahir-Clark Gregg-Peter Billingsley-Sayed Badreya-Tim Guinee-Will Lyman-Tom Morello-Marco Khan-Daston Kalili-Ido Mor-Kevin Foster-Garret No�l-Eileen Weisinger-Ahmed Ahmed-Fahim Fazli-Gerard Sanders-Tim Rigby-Russell Richardson-Nazanin Boniadi-Thomas Craig Plumer-Robert Berkman-Stacy Stas-Lauren Scyphers-Frank Nyi-Marvin Jordan-Jim Cramer-Donna Evans-Reid Harper-Summer Kylie Remington-Ava Rose Williams-Vladimir Kubr-Callie Croughwell-Javan Tahir-Sahar Bibiyan-Patrick O'Connell-Adam Harrington-Meera Simhan-Ben Newmark-Ricki Lander-Jeannine Kaspar-Sarah Cahill-Stan Lee-Justin Rex-Zorianna Kit-Lana Kinnear-Nicole Lindeblad-Masha Lund-Gabrielle Tuite-Tim Griffin-Joshua Harto-Micah A. Hauptman-James Bethea-Mike Cochrane-Flavia Manes Rossi-Samuel L. Jackson-Kristin J. Hooper,middle east-arms dealer-malibu-superhero-based on comic-aftercreditsstinger-marvel cinematic universe (mcu)-counterterrorism,/78lPtwv72eTNqFW9COBYI0dWDJa.jpg,/cyecB7godJ6kNHGONFjUyVN9OX5.", + "embedding" : [ 4.0022886E-5, -0.027400117, -0.008762544, -0.058178898, -0.011976392, 0.03950012, -1.7972743E-4, -0.006389927, -0.012663112, -0.042631563, 0.022785362, 0.022359595, 0.021741547, 0.02056039, 0.00872134, -0.0032052645, 0.016206587, -0.012285416, 0.0036052787, -0.022977643, -0.015121569, 0.0056929067, -0.009620944, 0.006194212, -0.0072174245, 0.011571228, 0.025697052, -0.009909366, 0.0037632242, -0.004370971, 0.004329768, -0.02450216, -0.0027743478, -0.029061979, -0.019928606, 0.003423298, 0.021892626, -0.03381408, 0.020766405, -0.0069015333, 0.006479201, -0.002334847, -0.008295574, -0.006280052, -0.019255621, 0.007409706, 0.017387744, -0.0102664605, -0.01612418, 0.032605454, 0.032577984, 0.019434169, -0.017566292, -0.020120889, 0.0049443822, -0.022167314, -0.015300116, 0.015986836, 7.1375933E-4, 0.004989019, 0.019145746, -0.00607747, -0.037055396, 0.0067744902, -0.008165098, -0.017332807, -0.0071144165, -0.020601593, -0.0032533347, 0.008769411, 0.030682638, 0.006819127, 5.751278E-4, -0.012731784, 0.0069358693, -0.032303296, -0.020890014, -0.011262204, -0.008783146, 0.011852783, 0.010699093, -0.0026507382, -0.0026661893, 0.0074577765, 0.017799776, 0.008226902, -0.004580421, 0.032962546, -0.021054827, 0.017882181, 0.0026885078, 0.025751991, -9.152687E-5, 0.0051435307, -0.0016180833, 0.029776167, -0.030462887, 0.017566292, -0.01320562, -0.042576622, 0.0050164876, -0.008542794, -0.008535926, -0.014517255, 0.005919524, 0.0016575698, -0.00634529, -0.004302299, 0.013816801, 0.0047177644, 0.0050199213, -0.0072105573, 0.013356699, -0.038895804, 0.0035949778, -0.019640185, 0.0146820685, -0.022744158, -0.02271669, -0.014503521, 0.033704206, 0.030133262, -0.0057135085, -0.024241207, 0.042329405, 0.0349403, -0.008741942, -0.024694443, 0.0049958862, 0.006403662, 0.036643367, -0.0066268453, 0.016701024, 0.013562715, -0.016769696, 0.035434738, -0.028979573, 0.013803067, -0.02237333, -0.021823954, 0.017428948, 0.02246947, -0.016137915, -0.017607493, -0.027880821, -0.0034936867, 0.017360276, -0.0057959147, 0.00595386, 0.008206301, 0.002166601, 0.012759252, 0.012312885, 0.016893305, 0.015602273, -0.003773525, -0.004460245, -0.00228506, -0.0036087122, -0.019214418, 0.006396794, -0.009071568, 0.00872134, -0.012319752, 0.0035743762, 0.022648018, 0.010644156, -0.019365497, -0.02190636, 0.00798655, -0.006819127, 0.017071852, -0.03499524, 0.011584962, -0.014558459, 0.012312885, 0.006520404, -0.0034627842, -0.026054148, -0.004099717, -0.011770376, 0.00970335, 0.0353798, 0.034665614, -0.016275259, 0.002388068, 0.035022706, -0.008741942, -0.0026164022, -0.03634121, 0.0073410342, 0.02359569, 0.0020241064, -0.010293929, -0.6249699, -0.020491717, -0.012367822, 7.210557E-4, 0.0038112947, 0.0139266765, 0.0103694685, -0.0032121316, -0.026054148, 0.0014395362, -0.027166633, 0.033402048, 0.017222932, -0.018170604, -0.02281283, -0.023142455, 0.008302442, -0.0254361, 0.01634393, -0.0032292996, -0.021466859, 0.014448583, 0.022661751, 0.0017580026, -0.008632068, 0.0036945522, 0.0018009226, -0.026521116, 0.0070320102, 0.009545404, -0.022496939, 0.024172535, 0.010602953, 0.0034524836, 0.040983435, 0.015217709, -0.02099989, 0.049773447, 0.019983545, 0.02690568, -0.029501481, -0.002994098, 0.011282805, 0.0072723622, -0.01095318, 0.03178139, 0.006262884, -0.0072448933, -0.002738295, -0.008000285, 0.0020172393, 0.010520547, -0.016742228, -0.003021567, 0.0023228296, 0.011694837, 0.02006595, -0.0383739, 0.027702274, 0.0045975884, -0.019145746, 0.01634393, -0.0076775267, -0.0018747449, 0.00470403, 0.02643871, -0.001591473, -0.007162487, 0.0012635643, -0.020958686, 0.011193532, 0.009476732, -0.017648697, 0.004291998, 0.015286381, 0.012587572, 0.024708176, -0.0018438426, 0.011557493, 0.024447223, 0.0029580453, -0.0033580596, 0.0047005964, 0.008783146, 0.021851422, -0.0035091378, -0.04812532, 0.013665723, 0.013528379, 0.0104381405, 0.0081857, -0.003251618, 0.0067916582, 5.6493427E-5, -0.0048585422, -0.009730819, -0.0077393316, 0.007876676, 0.02312872, -0.06109059, -0.016508743, -0.015616007, 0.044884004, -0.015149037, 0.021288311, 0.0029837973, -0.011234735, -0.011571228, 0.024447223, -0.026946882, -0.012560104, -6.6182617E-4, -0.0096484125, -0.0075058467, -0.0050782925, -0.037797056, 0.010863907, 0.009730819, -0.006668049, 0.0015940482, 0.0027777813, 0.02568332, 0.001703065, -0.0034919698, 0.017415212, 0.031149607, 0.002925426, -0.010980649, 0.011914588, 0.020532921, -0.0031863796, -0.009490467, 0.020477982, -0.015863227, 0.013631387, 0.010870773, 0.0070526116, -0.020725202, 0.027633602, -0.0074989796, -0.014517255, -0.0035366067, -0.009669014, -0.0073685027, -0.011763509, -0.024268676, -0.035764363, -0.0022387065, -0.008886154, -0.015547335, -0.0068981, 0.016646087, 0.009208912, 0.0237193, 0.0045048813, -0.0020086553, -0.02178275, -0.023060048, 0.006177044, -0.019544045, -0.0048276396, 0.02972123, 0.0069702053, -0.028059369, 0.019598981, 0.00840545, -0.009971171, -0.012257948, -0.001664437, -0.022826564, 0.013143816, -0.025985476, 0.00578218, 0.011378946, -0.03016073, 0.010493077, 0.004340069, 0.019338029, -0.005912657, -0.018761184, -0.012608174, -0.006578775, -0.026823273, -0.002259308, 0.021988766, 0.030765044, 0.017703636, -0.015107835, 0.00892049, 0.019585246, -0.028979573, -0.019296825, -0.0025786327, -0.010362601, 0.0068328613, 0.015203975, 0.021672875, -0.0027777813, -0.022112375, -0.012271682, 0.024872988, 0.015300116, 0.016247788, -0.0048997453, 0.012237346, -0.04491147, -0.0024224038, -0.037961867, 0.00935999, -0.01671476, 0.024955396, -0.010074179, -0.021727813, 0.0034370322, 0.008638934, 0.010458741, -0.011969525, 0.0012275116, -0.015327585, 0.013006472, 0.011804712, 0.0140296845, 0.014709537, 0.012724916, -0.031698983, 0.015533601, 0.014366177, -0.0061049387, -0.001454129, -0.0049855853, 0.0026043847, 0.008604598, 7.457347E-5, 0.0051709996, 9.777172E-4, 6.3392817E-4, 0.018349152, -0.016261524, 0.053179577, -0.017552556, -0.008178832, 0.0136519885, 0.018005792, -8.492792E-5, 0.0018987801, -0.010177187, 0.03315483, 0.006012231, -0.0056517036, 0.046175037, -0.014434849, 0.021631671, -0.0049615502, -6.0989294E-4, 0.023568222, -0.015300116, -0.0032911045, 0.018733714, 0.035956647, 0.013645121, 0.015547335, -0.0254361, 0.0237193, -0.004257662, 0.004106584, 0.00616331, -0.01793712, 0.004120318, -0.014599661, -0.029116917, -0.020230763, -0.01784098, 0.013336098, 0.0026009511, -0.0059675947, -0.027482525, -0.014901819, 0.0140640205, 0.015368788, 0.020354373, -0.006698951, -0.028265385, -0.0023760502, 0.017374009, -0.011900853, -0.012676846, -0.0021614505, -0.009909366, -0.027235305, -0.013013339, -0.011145461, 0.037797056, -0.02533996, 0.008700739, -0.0017940553, -0.0010978932, 0.023870379, -0.016893305, 0.018568901, 0.019269357, -0.008254372, 0.007656925, -0.0010807252, -0.0074303076, 0.02928173, -0.01815687, 0.0073066982, -0.013700059, -0.005957294, -0.022071173, 0.0014266602, -0.006317822, -0.04134053, 0.027427586, 0.001022354, -0.01893973, -0.00599163, 0.004463678, -0.0027863653, -0.026246428, -0.009627811, -0.034555737, -0.033292174, 0.008391716, 0.08509831, 0.04765835, 0.0026576053, 0.0059332587, -0.009806358, 0.012113736, -0.006025966, -0.00852906, -0.004233627, -0.021975031, 0.0059160907, -0.0069633382, 0.010788367, 0.009332521, 0.0194067, -0.003945205, -0.005716942, -0.013425371, -0.0012824491, -0.014764475, -0.022084907, -6.502378E-4, 0.018266745, 0.03125948, 0.01646754, -0.0070457445, 0.009929967, 0.0049306476, -0.0010635572, 0.0024670407, 9.777172E-4, 0.008687004, 0.007959082, 0.018678777, -0.0017940553, -0.0050920267, 0.029336667, 0.015670944, 0.027963229, -0.0012927499, 0.0035400402, 0.012930932, 0.0013107763, 0.0012687147, 0.026356304, -0.019489106, -0.010396937, 0.028100573, 0.02815551, -0.035956647, 0.0181294, -0.0014747307, -0.010925711, -0.013466574, 0.01953031, -0.002223255, -8.665545E-4, -0.01203133, -0.013178152, 0.009504201, -0.015272647, -0.024474692, 0.017648697, -0.02193383, -0.0035675091, -0.03040795, -3.6095706E-4, -0.014709537, -0.021137234, -0.004971851, 0.015863227, -0.022043703, -0.0011133443, 0.0028275684, 0.014324974, -0.0026885078, 0.023568222, -0.0024584567, 0.0176899, 0.0037769587, -0.036451083, -0.03447333, 0.019736325, -0.023389675, 0.009442396, 0.004322901, -0.01744268, 0.006286919, -0.011543759, 0.014833147, -0.012429628, -0.0073616356, -0.03384155, 8.8844367E-4, 0.03246811, 0.020299435, 0.00793848, 0.0025408631, -0.0034730851, 9.7085006E-4, 0.0048482413, -0.022881502, -0.012752386, -0.016165383, -0.012244213, -0.008680138, -0.0054731565, 0.009243248, -0.029611355, -0.025463568, -0.013356699, -0.023348471, 0.010039843, -0.004219893, 0.009442396, -2.2082332E-4, 0.02168661, 0.012704316, -0.016865836, -0.012024462, -0.0018695944, -0.018445292, 0.020011013, 0.02597174, 0.0024327047, 0.03087492, -0.013480308, -0.019653918, -0.004027611, 0.01996981, -0.0048619756, 0.025930537, -0.010287061, -0.0049237804, -0.01600057, -0.016110444, 0.0019811864, -0.006448298, -0.005902356, 0.015849492, -0.019997278, 0.020766405, 0.006709252, 0.0176899, -0.014833147, -0.027757213, 0.011221001, -0.0036842513, 0.0027091093, 0.010417539, -0.014764475, 0.012457096, -0.02190636, -0.010960047, -0.016975712, -0.035544615, -0.026054148, -0.018321684, 0.043895125, 0.015176507, 0.03222089, -8.3994406E-4, 0.036588427, -0.003976107, 0.012271682, 0.016288992, -0.01906334, -0.011193532, -0.016069243, 0.0010644156, 0.02006595, 0.026795805, 0.0020326904, -0.01242276, -7.725597E-5, 0.024639504, 0.009147107, 0.01229915, 0.0071762213, -0.025065271, -0.03603905, 0.020697733, -0.02606788, 0.009902499, -0.011770376, -0.006359025, 0.029336667, -0.0074509094, -0.0145447245, -0.011976392, 0.035984114, -0.0103694685, 0.013384168, -0.025010332, 0.024570832, -0.040901028, 0.0019880536, -0.011708572, -0.017676165, 0.009689615, -0.021988766, 0.014599661, 0.005888622, -0.030133262, -0.008487856, 0.019324293, -0.023664363, -0.024872988, 0.020807609, -0.002916842, -0.010307663, -0.028649949, -0.008171965, -0.03246811, -0.019544045, 0.0031022565, -0.008817482, -2.5819052E-5, -0.01345284, -0.032605454, 0.022263454, -0.0075882534, 0.048180256, 0.013123214, 0.043235876, 0.03606652, 0.009799491, -0.0022987942, 0.0050679916, -0.0070663462, 0.009744553, 0.02815551, 0.032605454, -0.02837526, -0.015272647, 0.0054010507, -0.011530024, -0.025916804, -0.03131442, 0.033374578, 0.024831787, 0.023884112, -0.035214987, -0.009353123, -0.03156164, -0.006595943, 0.010808969, -0.006413962, 0.008398582, -0.016412603, -0.019997278, 0.0015073498, -0.016934508, 0.008947958, 0.014970491, -0.030737575, 0.015341319, -0.020148357, 0.011035587, -0.020162093, -0.02609535, 0.03584677, -0.006441431, 0.020670265, 0.0030507524, 0.003952072, 0.006094638, -0.006307521, 0.012264814, 0.034088768, -0.0049787182, 0.014393645, 5.49805E-4, -0.020601593, 0.024364816, 0.014956756, -0.017662432, -0.01665982, -0.01671476, -0.009435529, 0.011159196, -0.011900853, -0.004460245, 0.0023296967, -0.018788652, -0.014057153, 0.009160842, -0.004267963, 0.006819127, -0.040928498, 0.0062079467, -0.021604203, 0.004714331, -0.00616331, -0.008261238, -0.0024859256, -0.009346256, 0.013260558, -0.012965268, 0.009057834, -0.017923385, -0.023211127, -0.033704206, -0.011921455, -0.006283486, -0.010081046, 0.00418899, -0.018335417, 0.010493077, 0.0056242347, -9.854428E-4, 0.002942594, -0.013466574, -0.010733429, 0.0036670833, 0.02271669, -0.007959082, -0.0038559313, 0.0067126853, 0.02293644, -0.0031795125, -0.004340069, -0.009469865, 0.014160161, 0.034583207, -0.023060048, 0.008906755, 0.01229915, -0.041148245, 0.008226902, 0.022840299, 0.02465324, 0.01284166, -0.0015305267, -0.04040659, -0.008817482, -0.012601308, 0.03244064, 0.0012189276, 2.716835E-4, 0.026974352, 0.021150969, 0.038511243, 0.021027358, -0.004405307, -0.028237917, 0.0057478445, -0.013665723, -0.026850741, -0.010754031, 0.012209877, 0.00660281, 0.006231982, -6.672716E-6, -0.026617257, 0.0038284624, -0.03266039, -0.0100261085, -0.0030267173, 0.013665723, 0.042054716, 0.011214133, -0.006084337, 0.018980933, 0.022675486, -0.005637969, -0.01315755, -0.010994383, 0.011852783, 0.012972136, 0.022524407, 0.0072860965, -0.030737575, 0.0012163523, 0.0067195524, 0.017772308, 0.019132013, 0.018019525, -0.011337743, -0.002300511, -0.011681103, 9.742836E-4, -0.007924746, -0.012367822, 0.028814761, -0.029446542, -0.008384848, 0.017277868, 0.014043419, -0.008632068, 0.013391035, 0.009435529, -0.0029237093, -4.5709783E-4, 0.010946313, -0.027152898, 0.0014678634, -0.031671513, 0.022002501, 0.007952214, -0.01675596, 0.02928173, 0.031149607, -0.008838083, 0.010513679, 0.0034524836, 0.0137206605, -0.012573838, 0.008082692, 0.0068946662, 0.0379344, -0.014228833, -0.0031692116, -0.019585246, 0.010245859, -0.008384848, 0.004027611, 0.010582351, 0.025175145, 0.0066096773, -0.052163232, -0.0073135654, -0.0073891045, 0.006204513, -0.022318391, 0.0058062156, -0.016440071, -0.0055727307, -0.0021253976, -0.011955791, -0.014393645, -0.021796485, 0.005957294, 0.0048276396, -0.010987516, 0.00872134, 0.19843453, -0.0070526116, 0.008851818, 0.04510375, -0.007952214, 0.0011116276, 0.031698983, 0.02290897, 7.2234333E-4, 0.015162772, -0.0010644156, 4.979389E-6, 0.01987367, 0.0012446796, 0.012821058, -0.014050286, -0.018637573, -0.02190636, -0.012237346, -0.021178437, -0.004240494, 0.014668333, -0.006681783, -0.017456416, 0.0070526116, 0.009517936, -0.008728208, 0.014146427, 0.02509274, 0.013761864, -0.010630421, -0.013102612, 0.0058233836, 0.011433884, -0.01288973, 0.004151221, -0.0055040587, 0.010822703, 0.01612418, 0.010857039, -0.020972421, -0.0010489644, -0.028924635, 0.0026799238, -0.0071487525, 0.012903464, -0.018101932, -0.0031520436, -4.6782783E-4, 0.0054559885, -0.03359433, 0.010527413, 0.028485134, 0.019420434, -0.0031262916, 0.0076637925, 0.012683714, 0.0072860965, -0.0036602162, -0.002061876, 0.012663112, 0.03631374, -0.020711467, 0.019324293, 0.005843985, 0.003114274, -0.027496258, -0.002149433, 0.01229915, -0.0144760525, -0.0053873165, -0.03222089, -0.011893986, 0.015423725, -0.0077324645, -0.018568901, 3.5151467E-4, 0.006441431, -0.0035572082, 0.024763115, -0.03205608, -0.012807324, 0.0036396147, -0.0012936083, -0.02781215, -0.017511353, 0.015547335, -0.009984905, -0.022016235, -0.013775598, -0.023142455, -0.022991378, -0.0051606987, 0.008123894, 5.97017E-4, 0.004783003, 0.031836327, 0.014077755, -0.017167993, -0.0014343859, -0.029309198, 0.0120794, 0.02768854, 0.008268106, -0.029583886, -0.02134325, -0.0054113516, 0.008611466, 0.027784681, -0.025367428, -0.020107154, -0.023430878, -0.0013399619, -0.010520547, 0.0075882534, 0.03540727, 0.00323445, -0.017634964, 0.04384019, -0.011715439, 0.003907435, -0.028540073, 0.018335417, -0.0010961763, -0.007759933, -0.025944272, -0.029116917, 0.0037460562, 0.0027588967, -0.03428105, 0.013528379, -0.023321003, 0.015739616, -0.016783431, 0.004480846, 0.0015253762, 0.017662432, -0.018953465, 0.016508743, -0.0099574365, -0.006194212, -0.0066440133, 0.007162487, 0.004003576, -0.0017571441, -0.010568617, 0.020821342, 0.003962373, -0.014819412, -0.041889906, -0.03403383, -0.0027846484, 0.015986836, 0.0056860396, 0.039912153, -0.0017751706, -0.009655279, -0.023993988, -0.0086252, 0.04650466, -0.035901707, 0.039005682, 0.02665846, -0.002163167, -0.028649949, -0.013933543, -0.17612988, 0.027317712, 0.020972421, -0.034775488, 0.02903451, 0.011076789, 0.039609995, -0.0021253976, 0.01225108, -0.011832181, 0.031451765, -0.0010300796, -0.028292853, 0.002746879, -0.0031966805, 0.02187889, -0.008851818, 0.021769015, 0.037577305, 0.0019331161, 0.046861757, -0.015712148, -0.009181443, 0.011097391, 0.01562974, 0.0060877707, 0.013411636, 0.011447618, 0.0014163594, -0.0024807751, -0.036396146, -0.012608174, 0.009250115, 0.004195858, -0.012848526, -0.008384848, -0.009380592, -0.00854966, -0.0176899, 0.0039829747, 0.035324864, -0.0015949066, 0.020546654, 0.015066631, 0.023417143, 0.024460956, 0.04169762, -0.007753066, 0.016247788, -0.021411922, -0.009806358, -0.036506023, 0.036286272, -0.0075264485, -0.008446652, 0.019640185, 0.009270716, 0.0075676516, 0.010898243, -0.0023056616, -0.022538142, -0.0060190987, 0.009641545, -0.012772988, -0.0068225604, -0.0142013645, -0.011653634, 0.021645406, -0.03859365, 0.005971028, -0.03246811, 0.021260843, 0.024241207, 3.2168528E-4, -0.0024515896, -0.010115381, -0.038154148, 0.0011536891, -0.010836437, 0.005716942, -0.009380592, 0.036588427, -0.0037975602, 0.0022198216, 0.014091489, -0.019887405, -0.0032481845, -1.5869664E-4, -0.0019880536, -0.021123499, -0.010939445, -0.016179116, -0.044362094, -0.0032396005, 5.69119E-4, -0.0022541576, -0.009387459, 0.0035606418, 0.00806209, -0.014572193, 8.026037E-4, -0.011063055, -0.019420434, 0.015588538, 0.02362316, 0.014888084, 0.0024361382, 0.03200114, 0.005023355, -4.7083222E-4, -0.016701024, 0.003986408, 0.033017486, 0.008886154, -0.008117028, 0.015767084, -0.023458347, -0.017428948, -0.0068397284, 0.025669584, 0.06515597, -0.0013614219, -0.0074165734, -0.015258913, -0.008268106, -0.0181294, -0.092679694, 0.003224149, 0.011756642, 0.034143705, -0.022112375, 0.03557208, -0.008776278, 0.00909217, -0.024213739, 0.04309853, 0.0061736107, -0.038264025, 0.016357664, 0.004552952, 0.0031863796, 0.012477698, -0.021109765, -0.016275259, -0.01937923, 0.022634283, -0.0046078893, -0.0011699988, -0.004199291, -0.0071830885, -0.011193532, 0.017511353, -0.027935758, 0.018898528, 0.019667653, 5.073142E-4, -0.010671625, -0.01847276, 0.018541433, -0.036231335, -0.01350091, -0.023101252, -0.012216744, -0.028100573, 0.009023498, -0.04378525, 0.0016283842, 0.015794555, -0.009840694, -0.0353798, -0.01266998, 0.0019897704, -0.025738256, 0.02834779, -3.8070025E-4, -0.024721911, -0.006111806, -0.015753351, -0.035736896, -0.010877641, 0.013768731, 0.004041346, 0.023060048, 0.0038490642, -0.01671476, -0.028704885, -0.009181443, -0.0069873733, -0.018005792, 0.016865836, 0.01173604, 0.016742228, -0.011845916, -0.021370718, 0.02494166, -0.022400798, -0.007993418, 0.029171854, -0.04265903, -0.0135146445, -0.010719695, 0.006396794, -0.013727528, -0.020326905, 0.0267546, -0.026328836, 0.0052190702, -0.028869698, 0.016137915, -0.026644725, 0.031149607, 0.0139266765, 0.018101932, 0.020436779, 0.006657748, -0.03974734, 0.002164884, 0.02646618, 0.0024206871, -0.0026747733, 9.940268E-4, 0.00771873, 0.017511353, 0.0014240851, -0.002266175, 0.003979541, -0.014489787, -0.012875996, -0.07235279, 0.035764363, -0.0100261085, -0.0075264485, -0.011845916, -0.0232798, -0.011845916, -0.0072998307, -0.017799776, 0.019887405, -0.0053117773, 0.014057153, -0.0067710564, -1.1588396E-5, -0.005826817, 0.010925711, -9.305052E-4, -0.009373724, -7.317857E-4, 0.0035846771, -0.020258233, 0.02834779, 0.0301882, -0.0014395362, 0.012615042, 0.028485134, 0.0022352727, 0.0050679916, -0.023307268, -0.017181728, 0.038840868, -0.0051813005, 0.0028104004, 0.0030953893, 0.0051916013, -0.033978894, -0.008741942, -6.7899417E-4, 0.012759252, 0.0035366067, -0.008467254, -0.035984114, 7.476661E-4, -0.008144496, -0.0044018733, 0.029748699, -0.01173604, 0.0054010507, 0.0075951205, 0.015725883, 0.024186268, 0.0057547116, -0.008178832, -0.027509993, 0.018829856, -0.011550626, 0.048482414, 0.008611466, -0.001977753, -0.015945632, 0.034665614, -0.0021769016, 0.03131442, -0.026960617, -0.0076088547, 0.0038284624, 0.0051950347, -0.0030833716, 0.0016893306, -0.02724904, -0.018362885, 1.8648733E-4, 0.0098544285, 0.044829063, 0.017030649, 2.931435E-4, 0.0054491214, 0.017827244, -0.0076981285, 0.009263849, 0.015149037, 0.006767623, -0.038950745, 0.03787946, 0.0022129545, -0.003114274, -0.006321255, 0.007917878, 0.012587572, -0.0033323076, 0.004233627, 0.019914873, 0.014091489, -0.0038902673, 0.01600057, 0.0010326548, -0.020230763, -0.0014197931, -0.0026644727, 0.03065517, -0.0070869476, -0.017044384, -0.0052774413, -0.023458347, -0.033456985, 0.0071762213, -0.021508062, -0.006386494, 8.459529E-4, 0.024694443, 0.035462208, 0.008645802, -0.005569297, 0.0074165734, -0.03331964, 0.016824633, -0.0057032076, -0.0073066982, -0.015121569, 0.04422475, 0.005995063, 0.0047624013, 0.04510375, -0.015863227, 0.046037693, 0.011935189, 0.021727813, -0.025573444, 0.005895489, -0.0036155793, 0.0035400402, -0.015931899, -0.019173216, 0.0032035476, -0.018074464, 0.01134461, 0.0099917725, 0.027784681, -0.022387063, 0.06603497, 0.013459707, -0.0036876851, 0.0024000856, -0.015272647, 0.025545975, 0.01705812, 0.024021456, -0.019571513, -0.01859637, -0.02528502, -0.01734654, 0.0076431907, -0.034363456, 0.0056070667, -0.0031177076, 0.01198326, 0.024570832, -0.016632352, -0.018925996, -0.019324293, -0.003267069, 0.037824523, -0.0028464533, -0.0051160622, -0.0017468433, 0.024721911, -0.006647447, 0.0014876067, -0.03903315, -0.0034851027, -0.010987516, 0.0028344358, -0.015904428, 0.036835648, -0.008927356, -0.001133946, 0.0070217093, 0.028292853, 0.0028601878, -0.017909652, -0.019832466, -0.033978894, -0.029666293, 0.011996994, -0.024200004, -0.012635644, -0.028100573, -0.015135303 ], + "id" : "66a78473-1b5d-4a7e-8b02-b11fb34b8cc7", + "metadata" : { + "source" : "movies.csv" + } + }, + "8b7d20a6-fb9f-4dff-b329-54df5bfa3771" : { + "text" : "Mitchell-Dempsey Pappion-Danny Cooksey-Stephen Tobolowsky-Chris Renaud-Sherry Lynn-Mickie McGowan-Jack Angel-Bob Bergen-Debi Derryberry-Danny Mann-Fletcher Sheridan-John Cygan-Bill Farmer-Jess Harnell-Mona Marshall-Laraine Newman-Jan Rabson-Claira Nicole Titman-Jim Ward,aftermath-tree-musical-family business -money-tragic villain-consumerism-air-based on children's book-animal killing-walled city-reforestation-tree cutting-mad family-clothes factory-meme-social-abused child-illumination-singing animals-fish trio-biggering-unless,/tePFnZFw5JvjwjQjaKkqDPNMLPU.jpg,/tsku2v6q5fd5DOOF53Kmzetu322.jpg,44896-46195-38055-13053-70160-62177-80321-82881-953-41513-5559-17578-12222-808-920-10191-120-45772-11036-22794-16996\r\n198663,The Maze Runner,Action-Mystery-Science Fiction-Thriller,en,Set in a post-apocalyptic world young Thomas is deposited in a community of boys after his memory is erased soon learning they're all trapped in a maze that will require him to join forces with fellow ���runners�� for a shot at escape.,110.595,20th Century Fox-Ingenious Media-Gotham Group-Dayday Films-Temple Hill Entertainment-TSG Entertainment,9/10/14,34000000,348319861,113,Released,Remember. Survive. Run.,7.17,15343,Dylan O'Brien-Kaya Scodelario-Ki Hong Lee-Aml Ameen-Blake Cooper-Thomas Brodie-Sangster-Will Poulter-Dexter Darden-Chris Sheffield-Joe Adler-Alexander Flores-Jacob Latimore-Randall D. Cunningham-Patricia Clarkson-Don McManus-Michael Bow-Jerry Clark-Michael Deville-Dylan Gaspard-Cory Gooding-Cazi Greene-Dustin Guitreau-Tyler Harrison-Landon Hazel-Gary Hood-Nick Killebrew-John Langston-Chad Martinez-Lester Millet-Sawyer Pierce-Weston Rachal-Bryce Romero-Johnny Stockwell-SanChavis Torns-Lane Westerhaus-Gentry Williams-Adriana Acosta-Duane Cothren-James Dashner-Mark Gibson-Darryl Harvey-Janet L'Aube-Travis Michael Myers-Zach Nichols-Tommy Sheppard-Andrew Varenhorst-Carol Jean Wells-Jeff Wiesen,based on novel or book-maze-post-apocalyptic future-dystopia-escape-memory loss-erased memory-trapped-runner-based on young adult novel,/ode14q7WtDugFDp78fo9lCsmay9.jpg,/vHJlbhsXrZ5yrO2KqCbGSIU6fRX.jpg,294254-336843-131631-157350-262500-101299-131634-240832-102651-122917-70160-109445-135397-127585-118340-177572-12445-119450-12444-672-675\r\n43956,Tom and Jerry Meet Sherlock Holmes,Family-Animation-Adventure-Comedy,en,Tom and Jerry need to learn to work together in order to help Sherlock Holmes with an investigation of a jewel theft. But still they are cat and mouse!,12.949,Warner Bros. Animation,8/24/10,35770488,347988775,49,Released,,6.", + "embedding" : [ 0.007860835, -0.01806112, -0.022907127, -0.02159815, -0.032167457, 0.04247218, 0.018994117, -0.0057998896, -0.015540641, -0.022712173, 0.018325701, 0.020400573, 0.012873945, 0.00196869, 0.012066277, 0.021305718, 0.017838316, -0.017462334, 0.010903514, -0.03283587, -0.011411788, 0.01262329, -0.016376158, 0.011599779, 0.012094128, 0.014384841, 0.027599955, -0.017615512, -0.008445698, -0.0031749697, 0.009545797, -0.016933171, 0.0071645696, -0.033866342, -0.015582416, -0.009880004, 0.0027728765, -0.032668766, 0.038016085, -0.0055492343, 0.014677272, 0.006242018, -0.021194315, -0.011446601, -0.023812272, 0.003509177, 0.009462245, -0.0262492, -0.021472821, 0.013695538, 0.024090778, 0.022280488, -0.011920061, -0.040271983, -9.2581526E-5, 0.016710367, -0.015944475, -0.003173229, 0.0018224743, 0.006548375, 0.013904417, -0.02079048, -0.028658278, -0.024981998, -0.002066167, -0.014287363, 3.572711E-4, -0.020428423, -0.002485667, 5.0316045E-5, 0.019718232, 0.01162763, 0.017364856, -0.016835693, 0.03553738, -0.03233456, -0.018019345, 6.978971E-5, -1.4393109E-4, 0.0040522637, 0.0144823175, -0.015763445, 0.0029782746, 0.006026176, 0.017183827, 0.0032898535, -0.012024501, 0.019244771, -0.018186448, 0.010638934, 0.004929558, 0.043168448, -0.0051593254, 8.250743E-4, 0.011363049, 0.025970694, -0.02583144, 0.01779654, -0.022726098, -0.036762808, 0.0067189597, 0.0061584665, -0.010555382, -0.009775564, 0.009148926, -0.009302104, 0.005970475, 0.006635408, 0.019565053, 6.5100804E-4, 9.225515E-4, -0.0027659137, 0.0021410156, -0.045842104, -0.013270816, -0.01732308, 0.024926297, -0.014524094, -0.0077285445, 0.0032463367, 0.046426967, 0.024522463, -0.00270325, -0.027488552, 0.03865665, 0.0238819, -6.296849E-4, -0.0070601297, -0.008334295, -0.0039304174, 0.030245762, -0.017963644, 0.027739208, 0.0020696486, -0.03144334, 0.04873857, -0.03503607, 0.002288972, -0.027265748, -0.021486746, 0.024007227, 0.030217912, -0.024035078, -0.0121010905, -0.022391891, 0.010638934, 0.017309155, -0.012504924, 0.015262134, -0.0043690647, 0.015039329, 0.017671213, -0.004257662, 0.016000176, 0.021431046, -0.011947912, 0.01186436, -3.4682715E-4, -0.021570299, -0.016947096, -0.018701686, -0.0012367412, -0.014621571, -0.016250832, 0.007672843, 0.011370012, 0.017420556, 0.00262492, -0.010590195, 8.355183E-5, -0.0047763796, 0.025218727, -0.028212668, 0.024257882, -0.012275157, 0.0015230803, -0.0040835957, 0.006579707, -0.021820953, -0.013340442, 2.92649E-4, 0.0020713892, 0.0170585, 0.05049316, -0.028797532, 0.0039338986, 0.007084499, -0.0038050897, 0.010771223, -0.018938415, -0.011725107, 0.020275244, 0.002734582, 0.0043342514, -0.6358851, -0.014677272, -0.0012471852, -0.016264757, 0.0073455987, 0.025608636, -0.016069802, -0.009914817, -0.019216921, -0.012922684, -0.012588476, 0.021375343, 0.029605199, -0.012275157, -0.017267378, -0.014914002, 0.0029277955, -0.021361418, 0.0021149057, 0.002734582, -0.022865351, 0.0364286, 0.018047195, -0.017295228, 0.004386471, -0.0065135616, 0.010952253, -0.021723477, 0.008334295, 0.007888686, -0.029187439, 0.022405816, 0.010722485, -0.0018433623, 0.04327985, 0.014538019, -0.01782439, 0.058263477, 0.0123238955, 0.021862729, -0.024424985, -9.974E-4, -0.0032184862, 0.014036708, -0.020929733, 0.02254507, 0.012163755, -0.0045083174, 0.0075335903, -0.014802599, -0.012108053, 0.010882626, -0.014440541, -0.028324071, 0.0116415555, 0.008027938, 0.023812272, -0.028713979, 0.029605199, 0.011808659, -0.009733789, 0.021862729, 0.0028790568, 0.0216817, -0.018353552, 0.03612224, 0.015206434, -0.0059182546, 0.016793918, -0.040327683, 0.011293422, 0.011321274, -0.01104973, 0.0061410596, 0.010611082, 0.012943571, 0.034841113, 0.010109772, 0.00889827, 0.012511887, -0.0090862615, 0.0016893136, 0.0026962874, 4.1297232E-4, 0.030496418, 0.0065588187, -0.016041951, 0.022767873, 0.020609451, -0.003704131, 0.015972326, 0.0062002423, -0.008612801, 0.0026632147, -0.0013211634, -0.009065374, -0.026499856, 0.01690532, 0.02351984, -0.069515124, -0.017949719, -0.014496243, 0.019537203, -0.019690381, 0.0089748595, 0.012658102, -9.2581526E-5, -0.011251647, 0.03152689, 0.0014891373, -0.014078484, -0.009859116, -0.005218508, -0.026973316, 0.010207249, -0.038238887, 0.026416304, -0.0053682053, -0.0118156215, -0.017476259, -0.0030966399, -0.0064160842, -0.0016518893, -0.01598625, 0.019119443, 0.026541632, -0.0068686567, -0.014607646, 0.009364768, 0.027683508, -0.0054273875, -0.005152363, 0.014649421, -0.024243956, 0.02034487, 0.0069835405, 0.011982725, -0.0062002423, 0.022740023, -0.017392706, -0.008494436, -0.0037842018, -0.006993985, -0.012922684, 9.338658E-4, -0.014579794, -0.012184642, 2.469566E-4, 0.0046789027, -0.010346502, -0.0075823287, 0.023185633, -9.086262E-4, 0.008640652, 0.013451845, -0.002236752, -0.021807028, -0.014412691, 0.0028285775, -0.0013829569, 0.011432676, 0.028630428, -0.003986119, -0.034506906, 0.01684962, -0.005772039, -0.013702501, -0.0057546324, 0.0028773162, -0.011188983, 0.0050270353, -0.023185633, -0.006934802, -4.3190204E-4, -0.011279497, 0.030635672, -0.0055109398, 0.016111579, 0.0027293598, 0.0036310235, -0.009462245, -0.0048703756, -0.015122881, -4.3103172E-4, 0.023686944, 0.01714205, 0.026109947, -0.012908758, -0.009838228, 0.0134657705, -0.0118156215, 0.019885335, 0.012762542, -1.7134653E-4, 0.0015213396, 0.014050633, 0.013793015, 0.004020932, 0.008431773, 0.0012785171, 0.029298842, 0.017448407, 0.027725283, -0.0060958024, 0.020748705, -0.046315566, 0.0093717305, -0.030579971, 0.0050165914, -0.0030548638, 0.014635496, -0.015248209, -0.020567676, -0.008779905, -0.0071297563, 0.03506392, -0.007860835, 0.0020330946, -0.022698248, -4.2646247E-4, 0.012024501, -0.010694634, 0.024703491, 0.009114113, -0.020191692, -0.0018015864, -9.678087E-4, -0.00627335, -0.021068987, -0.013472733, -2.0050263E-4, 0.015665969, 0.005806852, 0.0057128565, 0.004282031, -0.015108956, 0.017337006, 0.0021723476, 0.047485292, 9.756417E-4, 0.008953971, 0.02755818, 0.017991494, -0.005632786, 0.004417803, -0.012901795, 0.017239528, 0.01640401, 0.0015761704, 0.02811519, -0.020219544, 0.030134361, -0.018645983, 0.020330945, 0.00535428, -0.01309675, 0.010687672, 0.0010217692, 0.023575542, 0.01758766, 1.4338712E-4, -0.014705122, 0.016891396, -0.006154985, 0.013632874, -0.008076677, -0.026137797, -0.002346414, -0.0097129, -0.040717594, -0.01173207, -0.009643274, -0.005469164, 0.013437919, -0.0026736585, -0.00501311, -0.0062907566, 0.01574952, 0.010381315, 0.01987141, -0.01359806, -0.041748066, 0.01002622, 0.01622298, -0.015289986, -0.012240344, -2.3085545E-4, -0.015067181, -0.032752316, -0.014719048, 0.005629305, 0.021779178, -0.0077076564, 0.0131246, -0.0020243912, -0.002330748, 0.02396545, -0.025761815, 0.009302104, 0.016598964, -0.0012654621, 0.026792288, -0.0074500386, -0.009204627, 0.010249024, -0.013354368, -0.014064559, -0.0035927289, -0.014412691, -0.008055789, -0.0031540818, -0.0045605376, -0.030106511, 0.016821768, -0.025455458, -0.011195946, -0.020275244, 0.0029573867, 0.005121031, -4.517021E-4, -0.025427608, -0.022141235, -0.026764438, 0.007644993, 0.082326405, 0.04982474, -0.0018259557, -0.018994117, 0.015095031, 0.0024369285, -0.021375343, -0.010325613, 0.0031244904, -0.016501486, 0.03333718, 0.0033612205, 0.015359612, 0.014113297, 0.008891308, -0.005396056, -0.009622386, 0.0024421504, -0.017921869, -0.009267291, -0.03141549, 0.008591914, 0.024452835, 0.019690381, 0.009176776, -0.01354236, 0.014454467, 0.016557189, 0.009128038, -0.004933039, -0.012282119, 0.0019303955, 0.0061515034, 0.02491237, 0.0054552383, -0.0052846535, 0.038016085, 0.010235099, 0.029326692, 3.102732E-4, 0.016543264, 0.00889827, 0.004971334, -0.01175992, 0.021500671, -0.030719224, -0.02461994, 0.022921052, 0.03871235, -0.035453826, 0.014579794, 0.0053159855, -0.012685953, 0.007303823, 0.025525084, 0.0042193676, -0.018854864, -0.010255988, -0.012525812, 0.022308338, 0.0054447944, -0.038155336, 0.008536212, -0.013242966, -0.004396915, -0.017852241, -0.016055876, -0.0075823287, -0.008041864, -0.007700694, 0.011446601, 0.0065135616, -0.014886151, -2.8176984E-4, 0.031081282, 0.009434395, 0.013535397, -0.0042437366, 0.014210774, 0.019801784, -0.027655656, -0.022224788, 0.01026295, -0.0046440894, -0.012115016, 0.017573735, -0.0073455987, 0.009148926, 0.0064404537, 0.011147207, -0.009796453, -0.004247218, -0.028686129, -0.021013286, 0.024592089, -2.6286734E-5, -0.013020161, 0.014774749, -3.3529525E-4, 8.081029E-4, 0.012073239, -0.029159589, -0.011509265, -0.009796453, -0.019258697, -0.019773934, -0.0020400572, 0.012922684, -0.013138525, -0.027780984, -0.010785149, -7.7938195E-4, 0.00992178, 0.011787771, 0.0048529687, 0.008543175, 0.008779905, 0.0068999887, -0.00889827, 0.005559678, -0.007617142, -0.015443164, 0.010186361, 0.014983629, -0.021542447, 0.020149916, 0.004414322, -0.027279673, -0.011564966, 0.01643186, -0.0075196647, 0.02118039, -0.0028912416, -0.010938328, -0.016209055, -0.02714042, -2.7176103E-4, 0.023157783, -0.0075196647, 0.022196937, -0.0182143, 0.0067189597, 0.009114113, 0.0068442877, -0.006252462, -0.030162212, 0.006242018, -0.014858301, 0.036261495, 0.024759192, -0.0011462267, 9.6606807E-4, -0.026346678, 0.004299438, -0.0038259777, -0.045842104, -0.02070693, 0.0047311224, 0.028017715, 0.018799162, 0.043029193, 0.0025866255, 0.019732157, 0.009058411, 0.0047659357, 0.026555557, -0.012588476, 0.0060644704, -0.031638294, -0.008076677, 0.010443979, 0.024995923, 0.018604208, 0.0019303955, 0.014788674, 0.03336503, 0.01002622, 0.0047311224, 0.0148304505, -0.031164832, -0.020177767, 0.009427432, -0.030385016, 0.005002666, -0.01128646, -0.019690381, 0.04049479, 0.009761639, -0.012045389, -0.0020017626, 0.033114377, -0.0090375235, 0.034924667, -0.012330858, 0.026388453, -0.026096022, -0.014454467, -0.029243141, -0.022294413, -0.009357805, -0.011620667, 0.018854864, 1.8646855E-4, -0.020720854, -0.0010487495, 0.0284494, -0.012170717, -0.02026132, 0.018088972, 0.0019878373, -0.02070693, -0.029354544, -0.012456185, -0.031081282, 0.012992309, 0.0027450258, -0.010269913, 0.0028912416, -0.040940396, -0.025608636, 0.008598876, -0.016766068, 0.042249378, 0.02118039, 0.037626173, 0.009128038, -0.009420469, -0.020330945, 0.0067015532, 0.007603217, -0.0116415555, 0.028017715, 0.017267378, -0.0057581137, -0.006593632, -0.0078956485, -0.0030165692, -0.029967258, -0.040411238, 0.03500822, 0.021723477, 0.014844376, -0.030774925, -0.0141481105, -0.024717417, 0.00944832, -0.019899262, 0.01057627, 1.5034978E-4, -0.030802775, -0.026945466, 0.015874848, -0.0040070065, 0.005834703, 0.006652815, -0.02782276, 0.015665969, -0.020623377, 0.004605795, -0.0171142, -0.01244226, 0.043864712, -0.026861914, 0.026861914, 0.015652044, 0.00422633, -0.0063847527, -0.007157607, -0.0033664426, 0.03372709, -0.015025404, 0.017518034, -0.015025404, 4.081855E-4, 0.023338811, 0.0050165914, -0.01782439, -0.026973316, -0.025733965, -8.8295137E-4, 0.046789024, 0.0021114245, 0.0103395395, 0.012692916, -0.0135771725, -0.01732308, 0.011216833, -0.012087165, 0.008745092, -0.043057043, 0.015122881, -0.010548418, 0.02170955, -3.9882943E-4, -0.001937358, -0.018353552, -0.017476259, 0.009155888, -0.0049852594, 0.010047108, -0.0152760595, -0.017155977, -0.033977743, -0.010478793, -0.008362146, -0.014900077, 0.0074500386, -0.016710367, -8.4509194E-4, 0.0046336455, 0.009880004, -0.007679806, -0.009671125, -0.029326692, 0.0137999775, 0.013556285, -0.0028076896, -0.0050618486, -0.007881722, 0.024480687, -0.020637302, -0.0019512834, -9.2429214E-4, 0.023561617, 0.01162763, -0.01230997, -0.0012280379, -0.014691197, -0.019523278, -0.008696353, 0.02034487, 0.029270992, 0.019899262, 0.0077285445, -0.044031814, -0.0121010905, -0.0038329402, 0.029660901, -0.008438735, 0.014329139, 0.020748705, 0.013222078, 0.022948904, 0.025163027, -0.0073734494, -0.030607821, 0.0072411587, -0.020177767, -0.035899438, -0.01640401, -0.0013742535, 0.010687672, 0.013173339, 0.006047064, -0.04236078, 0.010478793, -0.031721845, -0.03687421, -0.016209055, 0.03609439, 0.04199872, -0.0069382833, -0.007255084, 0.021960206, 0.014788674, 0.01173207, -0.007289897, -0.005343836, 0.027126495, 0.016083729, 0.016863545, 0.011216833, -0.022586845, -0.007693731, 6.636278E-4, 0.013249928, 0.012748617, 0.0046023135, -0.022001982, -0.014635496, -0.015248209, 0.008696353, 0.003986119, -0.0055179023, 0.016139429, -0.020135991, -0.010116735, 0.0040348573, 0.01104973, 0.005472645, 0.0023655612, 0.028574726, -0.0011392641, 0.013876567, -0.0032271894, -0.010207249, -0.009399581, -0.03960357, 0.036372896, -0.0047346037, -4.8259887E-4, 0.011871323, 0.03378279, -0.011216833, 0.009594535, -0.007021835, -0.0061584665, -0.02758603, -0.002454335, -0.010464867, 0.033142228, -0.032223158, 0.010611082, -0.031777546, -6.157596E-4, -0.011084543, -8.459623E-4, 0.008250743, 0.029855855, 0.012282119, -0.044950884, -6.7102566E-4, -0.026012471, 0.0013907899, -0.00133857, 0.008020976, -0.02170955, -0.008995747, -0.0025570341, 9.869561E-4, -0.023171708, -0.020163842, 0.0058625536, -0.01622298, -0.016487561, 0.008543175, 0.17568165, -0.011126319, 0.0047763796, 0.04979689, 0.0053925747, 0.017629437, 0.031638294, 0.019008042, -0.009914817, 0.019801784, 0.001136653, 0.008953971, 2.619698E-4, 9.6606807E-4, 0.024703491, -0.01782439, -0.02533013, -0.031359788, -0.029744452, -0.022767873, -0.015220359, 0.0025396275, 0.0056049353, -0.011913098, 0.005343836, 0.012330858, -0.015554566, 0.011537115, 0.0063186074, 0.01118202, -0.005465682, -0.030190062, -0.0125467, -0.00461972, -0.008118453, -0.0035927289, -0.008174154, 0.009859116, 0.014788674, -0.01199665, -0.021347493, -0.0065901508, 0.012010576, 7.058389E-4, -0.014732973, 0.016181204, -0.027878461, 0.015554566, -0.016236907, 0.012804318, -0.03369924, 0.0074709263, 0.033392884, 0.021458896, -0.01574952, -0.012087165, 0.0025204802, 0.013674649, -0.008383034, 0.005813815, 9.208108E-4, 0.039965626, -0.032975122, 0.019314399, -0.017044574, 0.018910564, -0.039074406, -0.0065344493, 0.012010576, -0.024940223, -0.017183827, -0.050326053, -0.0037180565, 0.0020087252, -0.0050096284, -0.02370087, 0.009051449, 0.01404367, -0.016585039, 0.025887143, -0.019648606, -0.015415313, 0.0046580145, -0.016320458, -0.023617318, -0.0074012997, 0.025636487, -0.015289986, -0.0025692189, -0.023269186, -0.0020940178, -0.007749432, -0.0025378868, -0.006242018, -0.0012724248, 0.008626726, 0.02580359, 0.014565869, -0.0021479784, -0.0037633139, -0.055701222, 0.014162036, 0.01918907, 3.8338106E-4, -0.034339804, -0.034534756, -0.004118409, 0.0033594798, 0.034117, -0.019648606, -0.008459623, -0.036762808, -0.007798171, -0.013709463, 0.003074011, 0.03612224, 0.0048251185, 0.0014360471, 0.013061936, 0.0045500933, 0.0021044617, -0.028853232, 0.007408262, 0.011488377, -0.012240344, -0.03553738, -0.027864536, -0.009859116, 0.023102082, -0.027767058, 0.012595438, -0.019620756, 0.011648518, 0.004640608, -0.0032237081, 6.3534203E-4, 0.013834791, -0.0051767323, -0.0064508975, 0.016334383, -0.006583188, -0.014746899, 0.008376071, 0.0062594246, 0.020456273, -0.02346414, 0.014510168, 0.005646711, -0.024299657, -0.04052264, -0.023004605, -0.0051628067, -0.010276875, -0.0078120963, 0.029493798, -0.021319643, -0.01666859, -0.052024942, -0.007394337, 0.020748705, -0.05054886, 0.024870595, 0.012121978, 0.0073107854, -0.019913187, -0.01175992, -0.18002635, 0.018130748, 0.004637127, -0.026374528, 0.022475442, 0.0012175939, 0.03793253, 0.0106737465, -0.013145488, -0.02008029, 0.034367654, 0.008835606, -0.025636487, 8.665239E-5, -0.002779839, 0.025664337, 0.0036136168, 0.04606491, 0.021291792, 3.3355458E-4, 0.030022958, -0.0016022804, -0.017643362, 0.013967081, -0.001162763, 0.0036205794, 0.01758766, -0.0018207337, -6.0760023E-5, -0.0018607689, -0.034924667, -0.018534582, 0.0138626415, 0.0103395395, -0.0037354631, -1.907114E-4, -0.009796453, -0.014649421, 9.886967E-4, -0.0017197753, 0.022837501, 0.013632874, 0.01776869, 0.009281216, 0.009329954, 0.0029051667, 0.025873218, -0.022461517, 0.0033351106, -0.010221174, -0.016654665, -0.027948087, 0.011676368, -0.0077285445, 0.012790393, 0.014551944, 0.010715523, -0.0061515034, 0.013034086, -0.006015732, -0.020024588, -0.0028024677, 0.0018799162, 0.009838228, -0.007289897, -0.03790468, 0.0041114464, 0.01404367, -0.038907304, 0.016891396, -0.028964635, 0.0058172964, 0.030969879, -0.0029747933, 0.0078120963, -0.027001167, -0.0057755206, 0.0060818773, 0.009956594, 0.016654665, 0.00196869, 0.041135352, -0.013479696, 0.0017754764, 0.01889664, -0.015206434, 0.008612801, 0.0044665416, 0.0055318275, -0.006785105, 0.0019547648, -0.014746899, -0.011342161, -0.0037319819, 0.015067181, 0.026012471, -0.012191605, -0.007986163, 0.034451205, -0.017169902, -0.0050862175, -0.016961021, -0.0031906355, 0.022266563, 0.02170955, 0.005465682, 0.030022958, 0.020149916, 0.014886151, -0.010959215, -0.009984444, -0.0060366197, 0.027154345, 0.014565869, -0.014203811, 0.004480467, -0.009928742, -0.029298842, -0.007791208, 0.027210047, 0.058374878, 0.0031123057, 0.0028842788, 0.0024734824, 0.0064787483, -0.0047171973, -0.08516717, -0.0024491132, 0.0040905583, 0.030385016, -0.022976754, 0.04286209, -0.011913098, 0.026834063, -0.017726913, 0.031805396, 0.010750336, -0.040049177, 0.013834791, -0.0067607355, -0.004020932, -0.012818243, -0.021096837, -0.017016724, -0.0065866695, 0.017281303, -0.012003614, -0.009636311, -0.0011018398, -0.027460702, -0.02144497, 0.015819147, -0.030579971, 0.009552759, 0.009155888, 0.017337006, 0.009232477, -0.0062002423, 0.016724292, -0.036818508, -0.0043342514, -0.009058411, -0.010534493, -0.022781799, 0.0159584, -0.04233293, 0.0021044617, 0.0024160405, -0.0028390216, -0.018910564, -0.009566685, -0.004933039, -0.04138601, 0.026931541, -0.0069730966, -0.009350843, -0.017754763, -0.012358708, -0.009824303, -0.020191692, 0.022322264, 0.011230758, 0.018409254, 1.3925305E-4, -0.02574789, -0.031164832, -0.0034343284, -0.015540641, -0.018297851, 0.01039524, 0.009288179, 0.0048947446, -0.010694634, -0.0048251185, 0.011982725, -0.023742646, -0.015248209, 0.03330933, -0.027502477, -0.00832037, -0.02189058, 0.012999273, -0.024062928, -0.011342161, 0.026388453, -0.023116007, 0.0024874078, -0.033615686, 0.016278682, -0.006966134, 0.019384025, 0.0052359146, 0.014071521, 0.0155127905, -0.008417847, -0.034089148, 0.0070357607, 0.015679894, -0.009601498, 0.011516227, -0.017740838, 0.016153354, 0.017128125, 0.0027136938, 9.886967E-4, 0.014607646, -8.5074914E-4, -0.0142247, -0.07419403, 0.030997729, -0.019091593, -0.0072690095, -0.010242062, -0.017100275, 0.02073478, -0.019077668, 0.016961021, 0.01963468, 8.24204E-4, 0.0127834305, 0.0053716865, 0.0012010576, 0.010012294, -0.0028999448, 0.0020574639, 0.0018886195, 0.0061166906, 0.013751239, -0.013166376, 0.029187439, 0.0159584, -0.0015239506, -0.010597157, 0.026026396, -0.003968712, 0.0239376, -0.022656472, -0.0072272336, 0.022934977, -0.019021967, 0.013723388, 0.008647614, -0.0072481213, -0.011745995, -0.0048599318, -0.0066737025, 0.022043759, 0.015471014, -0.017629437, -0.030190062, -0.013041048, -0.019941038, 0.0053264294, 0.0037842018, -0.013354368, 0.0101654725, 0.00934388, 0.004863413, 0.031136982, 0.012031464, -0.014329139, -0.0089748595, 0.010381315, -0.017016724, 0.051885687, 0.0027937645, 0.0074500386, -0.022670398, 0.024814894, 0.0030304946, 0.035342425, -0.018813087, -0.0012767764, -0.0056397486, -0.0035056956, -0.01104973, 0.0020383166, -0.029605199, -0.02028917, -0.010402203, 0.008995747, 0.04422677, 0.010618045, 0.017991494, -0.0073664864, 0.004609276, -0.012142866, 0.03467401, 0.022113385, -0.0057650763, -0.028045565, 0.024675641, 5.8355735E-4, 0.008313407, -0.011168095, 0.008654578, 0.004661496, 0.021486746, 0.004553575, 0.009789489, 5.3873524E-4, -0.0040696706, 0.0017728654, 0.013048011, -0.023199558, -0.021250015, -3.4051723E-4, 0.015039329, -0.009643274, -0.011648518, -0.021988057, -0.026680885, -0.009845191, 0.0018311776, -0.018325701, -0.02073478, 0.0058172964, 0.016362233, 0.015401388, 0.0140854465, -0.0040487824, 0.0075335903, -0.034534756, 0.01984356, -0.001341181, -0.01755981, -0.016417935, 0.04431032, 0.014426616, 0.007394337, 0.036651403, -0.0010600638, 0.034924667, 0.022196937, 0.014426616, -0.044087518, 0.0121498285, -6.144541E-4, -2.3433678E-4, -0.011488377, -0.015707744, 0.010416129, 5.0174614E-4, -0.003302038, 0.00404182, 0.028282296, -0.010360427, 0.07424973, 0.015471014, -0.0014456208, 0.017392706, -0.02488452, 0.00947617, 0.023561617, 0.035425976, -0.0044769854, -0.015122881, -0.0074291504, -0.0111332815, 0.0090862615, -0.026653035, -0.0043586204, -0.007422188, 0.008591914, 0.029688751, -8.585821E-4, -0.014886151, -0.0155127905, -0.008849531, 0.017392706, 8.366063E-5, -0.010729448, -0.010799075, 0.020887958, -0.01425255, -0.0010522308, -0.024494613, 0.004473504, -0.013347405, -0.007658918, -0.0065448936, 0.025413683, -0.019885335, 0.0046440894, 0.025525084, 0.014329139, 0.014315214, -0.023450214, -0.016766068, -0.019439727, -0.02325526, 0.024787044, -0.010193324, -0.009963556, -0.029688751, -0.020832257 ], + "id" : "8b7d20a6-fb9f-4dff-b329-54df5bfa3771", + "metadata" : { + "source" : "movies.csv" + } + }, + "9dc72440-5215-4b5a-aed8-f7a2a89cff93" : { + "text" : "571,Spyglass Entertainment-The Kennedy/Marshall Company-Hollywood Pictures-Barry Mendel Productions,8/6/99,40000000,672806292,107,Released,Not every gift is a blessing.,7.939,10229,Bruce Willis-Haley Joel Osment-Toni Collette-Olivia Williams-Donnie Wahlberg-Mischa Barton-Trevor Morgan-Glenn Fitzgerald-Bruce Norris-Angelica Page-Greg Wood-M. Night Shyamalan-Peter Anthony Tambakis-Jeffrey Zubernis-Lisa Summerour-Samia Shoaib-Janis Dardaris-Sarah Ripard-KaDee Strickland-Kate Kearney-Patch-Nico Woulard-Keith Woulard-Patrick McDade-Jose L. Rodriguez-Firdous Bamji-Hayden Saunier-Neill Hartley-Heidi Fischer-Michael J. Lyons-Samantha Fitzpatrick-Holly Cross Vagley-Marilyn Shanok-Carol Nielson-Jodi Dawson-Tony Michael Donnelly-Ronnie Lea-Carlos Xavier Lopez-Gino Inverso-Ellen Sheppard-Tom McLaughlin-Candy Aston-Dennis-Gina Allegro-Bob Bowersox-Matt Casale-Kym Cohen-Colleen June McQuaide-Jonathan Nation-Sean Oliver-Alison Robertson,philadelphia pennsylvania-child abuse-loss of loved one-sense of guilt-confidence-psychology-dying and death-marriage crisis-afterlife-single-paranormal phenomena-psychological thriller-cowardliness-single mother-school play-ghost-child-spiritism-ghost child,/4AfSDjjCy6T5LA1TMz0Lh2HlpRh.jpg,/paUKxrbN2ww0JeT2JtvgAuaGlPf.jpg,197-274-8358-497-37165-63-640-629-807-187-14-98-85-73-453-752-857-1933-489-601-77\r\n49521,Man of Steel,Action-Adventure-Science Fiction,en,A young boy learns that he has extraordinary powers and is not of this earth. As a young man he journeys to discover where he came from and what he was sent here to do. But the hero in him must emerge if he is to save the world from annihilation and become the symbol of hope for all mankind.,102.904,DC Entertainment-Syncopy-Peters Entertainment-Warner Bros. Pictures,6/12/13,225000000,668045518,143,Released,You will believe that a man can fly.,6.", + "embedding" : [ 0.0049869623, -0.03856861, -0.020500805, -0.060161497, -0.015634801, 0.025822995, 6.994016E-4, -5.6159485E-4, -0.03204374, -0.03226492, 0.03030193, 0.038872734, 0.012593549, -0.0090753725, 0.0055191815, 0.016975716, 0.008978606, -0.020694338, -0.0052012326, -0.027578628, -0.007340477, -0.0051839524, -0.01288385, 0.002178988, 0.022740273, 0.011093658, 0.023652647, -0.009946277, -0.01356122, -0.01595275, 0.02491062, -0.013395334, -0.009586857, -0.0070743673, -0.02233938, 0.004904019, 0.010692766, -0.014750073, 0.02804864, -0.002958309, 0.0021772601, 0.026279183, -0.00198891, -0.0074510677, -0.013478276, 0.013678723, 0.021081407, -0.013388421, 0.002077037, 0.020030793, 0.024177955, 0.022380851, -0.013450629, -0.021261116, -0.0036114869, -4.6698772E-4, 0.0010074148, 0.008211381, 0.009890981, -0.00588897, 0.01766691, -0.020390213, -0.035029694, -0.010865564, -0.02012756, -0.011522198, -0.0054569743, -0.0135750435, -0.0092067, 0.0040676747, 0.015441267, 0.030246636, 0.003939804, 0.0038983324, 0.010112164, -0.03655032, -0.02294763, 0.015192437, -0.004838356, 0.013512837, 0.02016903, -0.023403818, -0.017459553, 0.0045618783, 0.0045653344, 0.004575702, -0.007070911, 0.024302369, -0.034559682, 0.023251755, 0.023984421, 0.024330018, -0.0024675615, 0.004133338, 0.0029928687, 0.021302588, -0.021288766, 0.039563924, -0.0118125, -0.0248415, -0.0031380192, 1.2765483E-4, 0.012462222, -0.009828774, 0.0057472754, -0.00859845, -0.0063589816, 0.005007698, 0.029113077, -8.4800826E-4, -0.008971694, -0.0037359018, 0.024288546, -0.030218987, 0.00788652, -0.00745798, 0.01780515, -0.015399795, 0.002844262, -0.011086746, 0.02540828, 0.022242613, 0.005660876, -0.038236834, 0.042162813, 0.020016968, -0.016270699, -0.015496562, -0.0043476084, -0.0013728834, 0.03143549, -0.010022309, 0.028615419, 0.012406927, -0.029748976, 0.03978511, -0.022353204, 0.012469134, -0.034283206, -0.013395334, 0.028311294, 0.04454052, -0.01202677, -0.0035354556, -0.030053101, 0.0026196241, 0.0052703517, 0.009718183, 0.025933586, -0.005315279, 0.02502121, 0.018510167, 0.012621197, 0.020887872, 0.025117978, -0.0030308843, -0.011833236, -0.0011439255, -0.011515287, -0.011328665, -0.014238589, -0.0038706847, -0.0049074753, -0.014051967, -0.0050837295, 0.021938488, 0.0019267023, -0.025753876, -0.009669799, -0.007547835, -0.006552516, 0.02691508, -0.011059099, 0.009642152, -0.016422762, 0.0128631145, -0.008301236, -0.012489869, -0.033840843, -0.026348302, 0.0064039095, 0.007527099, 0.034891456, 0.04108455, 0.0065352363, 0.004340696, 0.013022088, -0.03373025, 0.014805368, -0.014805368, -0.0034628804, 0.016823653, 5.361071E-4, -0.013630339, -0.64231247, -0.006462661, -0.021814073, -0.0061308877, 0.0024520096, 0.018136922, 0.009918629, 0.0046448214, -0.04332402, -0.009096108, -0.022781743, 0.026417423, 0.010160547, -0.014038144, -0.028311294, -0.0059338976, -0.009234347, -0.034062024, 0.0146533055, -0.006331334, -0.028532475, 0.016657768, 0.009745831, -0.00524616, 0.007921079, 6.3849014E-4, -0.0012355087, -0.008729776, -0.009821862, 0.002206636, -0.010022309, 0.01798486, -0.0052496158, 0.011667349, 0.04033806, 0.024634143, -0.018040154, 0.04614409, 0.039066266, 0.032126684, -0.035140287, 0.0013400518, 0.008667569, 0.0033142737, -0.027274502, 0.025698582, 0.02287851, 0.007112383, -0.0020027338, -0.010713502, -0.01434918, 0.0122894235, -0.014390652, -0.010264226, -0.003715166, 0.0011568854, 0.014252414, -0.020210503, 0.014694777, -9.86679E-4, -0.015690096, 0.027329799, 0.011943826, 9.88407E-4, 0.0028062463, 0.020431684, 8.203605E-4, -0.010831005, 0.0059546335, -0.027689219, 0.007921079, 0.014874488, -0.020265799, -0.012787083, 9.080557E-4, 0.005004242, 0.040310416, -5.261712E-4, -0.00240881, 0.028076287, -0.011909267, -0.016298346, -0.0072575337, 0.007872696, 0.030412521, -0.01138396, -0.031739615, 0.0042231935, 0.017957212, -0.006376262, 0.008805808, 0.012330895, -0.008335795, -5.2314723E-4, -0.005771467, 0.0025453207, -0.004890195, 0.017155427, 0.01631217, -0.06220743, -0.02869836, -0.008142262, 0.011653526, -0.0048660035, 0.020113736, 0.015164789, -6.0609047E-4, -0.025187097, 0.023459114, -0.016892774, 0.01224104, -7.102015E-4, -0.011280281, -0.004036571, -0.0036495025, -0.023403818, 0.0145841865, 0.0061827274, -0.0055917567, 4.149862E-5, -0.0117848525, 0.004935123, 0.011363224, -0.005273808, 0.011743381, 0.024786206, -0.011059099, -0.0046586455, 0.020431684, -0.0037462697, 0.004040027, -0.005035346, 0.016464233, -0.021274941, 0.005650508, -0.0048348997, 0.006338246, -0.021855544, 0.03265199, -0.01070659, -0.028159231, -9.002798E-4, -0.00960068, -0.010789533, -0.012303247, -0.014501243, -0.026928905, -0.019159889, 0.0015603697, -0.021330237, -0.019533133, 0.014805368, 0.0045204065, 0.00198891, 0.0051563047, -0.002937573, -0.030854886, -0.014957431, 0.013015177, -0.014307709, 0.0020511171, 0.024012068, -0.017100131, -0.02159289, 0.022145845, -0.0073543005, -0.0035371836, -0.001306356, -6.687299E-4, -0.00917214, 0.016837478, -0.009448618, -0.016934246, 0.013243271, -0.0093518505, 0.020155208, -0.006262215, 0.014031231, 0.009960101, -0.0024675615, 0.0037981092, 0.0015992493, -0.03279023, -0.018966354, 0.045591135, 0.029610736, 0.021039935, -0.010119075, -0.0056124926, -0.0046690134, -0.015468914, 0.0024848413, -0.017583966, 0.0068289936, -0.020708162, 0.025905939, -0.0039743637, 0.0060997843, 0.006113608, 0.024136484, 0.05349839, 0.01969902, 0.014280061, -0.011701909, 0.0048487238, -0.027315974, -0.008633009, -0.020708162, -0.0071607665, -0.01730749, 0.02741274, -0.0044063595, -0.0047588684, 0.009158316, 0.012980618, 0.008232117, -0.01976814, 0.011549846, -0.019146064, -0.01680983, 0.009455529, -0.007755193, 0.01866223, -0.0036391346, -0.016754534, 0.0072022383, 0.01509567, -0.0107757095, -0.010181283, -0.015303028, 3.4694684E-5, 0.017653087, 0.012876938, 0.007019072, 0.0036011192, -0.016892774, 0.025975058, -0.013042824, 0.045839965, -0.0011309657, -0.005795659, 0.011321752, 0.0276201, 0.007236798, -0.011819412, -0.011038363, 0.014086527, 0.01006378, -0.033066705, 0.027523331, -0.014902135, 0.017722206, -0.011370136, 0.019546958, 0.008328884, -0.015123318, -1.9018626E-4, 0.0052807196, 0.018040154, 0.011902355, 0.009476265, -0.029776623, 0.028615419, -0.0050629936, 0.017113956, 0.009593768, -0.028366588, 0.0048832833, -0.004672469, -0.028670713, -0.013333126, 0.0015145781, 0.0029202932, 0.021095231, -0.0044512874, -0.009614504, 0.014280061, 0.024689438, 0.016146284, 0.022201141, -0.008854191, -0.017957212, 0.008785072, 0.026251536, -0.00834962, -0.01920136, -0.017224547, -0.016146284, -0.04343461, -0.012337807, -0.010416289, 0.025919763, -0.024067365, 0.0053947666, -0.005349839, -0.016298346, 0.021648185, -0.00810079, 0.007416508, 0.011204249, -0.0049454905, 0.015482739, 0.011798676, 0.0010238306, 0.015620977, -0.0069395844, 0.0033712971, -0.018109275, -0.015137142, -0.016464233, 0.013782402, 0.0017158883, -0.04531466, 0.03334318, -0.004630998, -0.019132242, -0.004703573, 2.736695E-4, -0.0060617686, -0.010865564, -0.023625, -0.024426784, -0.021509947, 0.017860444, 0.0821691, 0.034144968, 0.0066389153, 0.010305698, -0.0147915445, -0.006034121, -0.016574824, -0.016436586, 0.015620977, 0.0023224107, 0.016713062, -0.009310379, 0.02276792, 0.009870246, 0.009144492, -0.0029081975, 0.0035337277, -0.013222535, -0.011888531, -0.018261338, -0.023652647, -0.017611615, 0.031131363, 0.027675394, 0.0022532914, -0.009234347, 0.021606714, 0.0065179565, -0.0042197374, 0.0054258704, -0.013747842, 0.0033246416, 0.01024349, 0.008543154, -0.006355526, -0.012807819, 0.038347427, -0.0010799901, 0.029444851, 0.008404915, 0.010215842, 3.7475658E-4, 7.079335E-5, 0.005277264, 0.006148168, -0.02030727, -0.017321313, 0.015413619, 0.04282636, -0.032569047, 0.01780515, -0.010125987, -0.022643505, -0.008259764, 0.024717085, 0.003163939, -0.009911717, -0.0082735885, -0.038347427, -3.3220495E-4, 3.728126E-4, -0.048272967, 0.018053979, -0.013920641, 0.011681173, -0.0147224255, -0.0024934812, -0.008619186, -0.01405888, -0.003079268, 0.00899243, -0.009068461, -0.012247952, -0.016353643, 0.035084993, -0.007547835, 0.018828116, -0.0090753725, 0.012731788, -0.00852933, -0.019754315, -0.031214306, 0.0015033463, -0.019823434, -0.016339818, 0.016768359, -0.008411827, 0.011501463, -0.01609099, 0.018924883, -0.009801126, 0.002170348, -0.021924663, -0.014335357, 0.034089673, -0.006452293, 0.004651733, 0.022242613, 0.013886081, 0.014680954, -0.007665338, -0.0026818314, -0.018523991, -0.008404915, -0.022961454, -0.0054258704, -0.0031432032, 0.014238589, -0.023652647, -0.019906377, -0.0088472795, -0.021081407, 0.023998244, 0.0038395808, 0.0015016183, 0.006238023, -4.3523603E-4, 0.025878292, -0.0155242095, 1.2754684E-4, -0.0076791616, -3.723806E-4, 0.01277326, 0.026251536, -0.01131484, 0.012835466, -0.010513056, -0.030965477, 0.0036633264, 0.040559243, -0.011321752, 0.013637251, -0.019533133, -0.006749506, 1.9925818E-4, -0.024855325, 0.003269346, 0.009711271, -0.012033682, 0.006110152, -0.0077137216, -0.002289579, 0.015690096, -0.004368344, -0.0058578663, -0.028145406, -0.0046413657, -0.012393103, 0.021178175, 0.013187976, -0.016865125, 0.0075340113, -0.03326024, -0.0028719096, -0.0012674764, -0.043738734, -0.013201799, 6.739138E-4, 0.039563924, 0.014210942, 0.049876537, -0.0082805, 0.030136045, 0.018786645, 0.018828116, 0.024993563, -0.016713062, -0.011764117, -0.02251909, 0.0053429273, 0.0015353139, 0.009344938, 0.016505705, 0.023721768, 0.008861103, 0.022671152, 0.0033764811, 0.00824594, 0.001964718, -0.011377048, -0.01306356, 0.007727545, -0.031103715, 0.00717459, -0.028214525, -0.012185745, 0.022104373, 0.0054777097, -0.018040154, -0.018385751, 0.042854007, -0.010589087, 0.027758338, -0.0023742502, 0.020721987, -0.009752743, -0.0017556319, -0.022422323, -0.009628328, -0.0056366846, -0.005470798, 0.009497001, -8.402323E-4, -0.0145841865, -0.002856358, 0.028477179, -0.030274283, -0.01570392, 0.018869588, 0.012621197, -0.008328884, -0.025422104, 0.0023707943, -0.04147162, -0.0053843986, -0.009738919, -0.0174872, -0.0010886301, 0.0035423676, -0.049572412, 0.028186878, -0.0057058036, 0.04752648, 0.012545166, 0.05067832, 0.021744953, -0.0036114869, -0.017279841, 0.011701909, 0.0017884637, 0.002835622, 0.02583682, 0.03436615, -0.009821862, 0.0013495557, 3.6914062E-4, -0.009545385, -0.02983192, -0.030633703, 0.02037639, 0.021496123, 0.025463575, -0.022132022, 0.004796884, -0.015275381, 0.0101328995, 0.014003584, 0.00462063, 0.005588301, -0.03829213, -0.013581956, -0.008785072, -5.799547E-5, -9.86679E-4, 0.012303247, -0.025477398, 0.009192876, -0.027025674, 0.024578847, -0.018814292, -0.012130449, 0.039646868, -0.016008046, 0.013782402, 0.010264226, 0.003381665, 1.6545449E-4, -0.011729557, 0.0027941505, 0.026998024, -0.01577304, 0.006573252, -0.006863553, -0.002934117, 0.0078104883, 0.021178175, -0.023459114, -0.022740273, -0.023224108, 0.003618399, 0.019781962, 0.010437025, -0.0019802698, 0.0023621544, -0.020334918, -0.018869588, 0.007775929, -0.019159889, 0.003170851, -0.03386849, 0.012856202, 0.0012752523, 0.006884289, -0.014680954, -0.0056470525, 0.0010350625, 0.004672469, 0.022408498, 1.967742E-4, -0.010070692, -0.008128437, -0.019671371, -0.0429093, -0.016851302, -0.02080493, 0.0042819446, 0.009738919, -0.018441048, 0.015620977, 0.009469354, 0.0076860734, -0.008950958, 0.013250182, -0.014542715, -0.02019668, 0.02283704, -0.0067978897, -0.013692547, 0.010575263, 0.021399356, 2.2744591E-4, -0.0043476084, 4.4149996E-4, 0.0069326726, 0.027689219, -0.0177775, 0.016436586, -0.012199569, -0.005792203, -0.006030665, 0.006210375, 0.020473156, 0.016077165, 0.0030291562, -0.03519558, 0.0026489997, -0.009932453, 0.029721327, -0.0037531815, -0.005349839, 0.032956116, 0.018814292, 0.04564643, 0.0349744, -0.007506363, -0.031131363, -0.0011205977, -0.009939365, -0.020141384, -0.009116844, 0.0034801601, 0.017072484, -7.862328E-4, 0.0076100426, -0.033702604, -0.0149297835, -0.021814073, -0.026362127, 0.011252633, 0.010748061, 0.040946312, 0.026403598, -0.012434574, 0.007775929, 0.010105251, 0.011003803, -0.027205383, 2.3154989E-4, 0.015731568, 0.013022088, 0.02452355, 0.00795564, -0.022256436, -0.020293446, 0.011819412, 0.014093439, 0.023168812, 0.029997805, -0.009890981, -0.014307709, 0.0042923125, -0.0017141603, -0.011674261, 1.3456677E-4, 0.018288985, -0.041803394, 0.0076584257, 0.0073957723, 0.012565901, -0.00654906, -0.0018731349, 0.011176602, -0.017017188, 0.0014359548, 0.0013746114, -0.016961893, 0.0011447895, -0.024703262, 0.013581956, 0.02502121, -0.0026645516, 0.035140287, 0.028974839, -0.0061412556, 0.019823434, -0.007865784, 0.01859311, -0.0076998975, -0.0184134, 0.004592982, 0.008819631, -0.026541837, 0.008328884, -0.020514628, 0.014107263, 0.005781835, 0.0054984456, 2.9246134E-4, 0.036246195, 0.009462441, -0.06652048, -0.0028909175, 0.0028857335, 0.0011750292, -0.009517737, -0.011363224, -0.02473091, -0.008619186, -0.015966574, 0.01687895, -0.016478058, -0.012476046, -0.008093878, -0.004050395, -0.01591128, 0.016008046, 0.18015271, -0.004485847, 0.0055019017, 0.05322191, -0.0062587587, -0.0034473285, 0.029278964, 0.018966354, -0.015607153, 8.432563E-4, -0.018703701, -0.0067978897, -0.0010532064, -0.0034231367, 0.011605142, -0.016782183, -0.030993124, -0.016519528, -0.012365455, -0.028449532, -0.0034231367, 0.0053083673, -0.010824093, -0.029472498, 0.0017158883, -1.20418896E-4, -0.013029001, 0.008826544, 0.032707285, 0.0136441635, -0.021869367, -0.017224547, -0.0054777097, 0.0037635495, -0.017390434, -0.018053979, -0.015814511, 0.008508594, 0.01595275, 0.013740931, -9.477993E-4, 0.0053049116, -0.002616168, -0.0034196808, 0.014985079, 0.033702604, -0.027827457, -0.00462063, -0.018012507, 0.0021271484, -0.05756261, -0.0068324497, 0.020334918, 0.025463575, -0.0141487345, -0.007299005, 0.002726759, 0.005450062, -0.00795564, -0.0018230233, 9.5643924E-4, 0.028421884, -0.034836162, 0.008902575, 0.0027440388, 0.02019668, -0.01705866, -0.0036114869, 0.017763678, -0.037352107, -0.012731788, -0.0117157325, -0.011245721, -0.0021167807, 0.003967452, -0.00895787, 0.0012588365, 0.009904806, 0.0058371304, 0.012600461, -0.02562946, -0.013962112, -0.01759779, -0.014708601, -0.029251317, -0.012676492, 0.014238589, 0.0019128785, -0.0078035765, -0.030080749, -0.004254297, -0.005650508, -0.017943388, 0.010271138, -0.02137171, -0.002401898, 0.027067143, 0.018081626, -0.009317291, -0.0082044685, -0.031324897, 0.034642626, 0.025380632, 0.0016061614, -0.025090331, -0.018358104, 0.01009834, 0.017943388, 0.026403598, -0.019132242, 0.0024502815, -0.023320874, -0.0014307708, -0.0077413693, -0.005826763, 0.012676492, 0.001200085, -0.0208464, 0.04885357, -0.015662448, -3.7734854E-4, -0.022850864, 0.026928905, 0.010519967, 0.0062760385, -0.0050802734, -0.037988003, 0.0031276513, 0.0061827274, -0.040310416, 0.015496562, -0.017832797, 0.009379498, 0.009144492, -0.0055399174, 0.0022411954, 0.017749853, 0.010374817, -0.007126207, 0.006407365, 0.0026576396, -0.012303247, -0.00372899, 0.009165228, 0.004375256, -0.04075278, -0.0021599801, -0.006680387, -0.00831506, -0.025795348, -0.024647966, -8.207925E-4, 0.013111944, -9.4607135E-4, 0.038706847, -0.0017953756, -0.02908543, -0.04478935, -0.0144459475, 0.040199824, -0.049157694, 0.02380471, 0.01938107, -0.011653526, -0.03500205, -0.0015206261, -0.17860444, 0.018855764, 5.8967463E-4, -0.028919544, 0.020625219, -0.01245531, 0.017680734, 0.0048245317, -0.0017729118, -0.008660656, 0.018261338, 0.009040813, -0.037407402, -0.0087090405, -4.272441E-4, 0.012531341, -0.013194887, 0.051950116, 0.03326024, -0.010043044, 0.03729681, -0.009144492, -0.0023604264, 0.008577714, 0.007416508, 0.0064246454, 0.026113298, -0.0075962185, -0.007914168, -0.018745173, -0.033923786, -0.0044063595, 0.0016856486, 0.006905025, -0.009524649, -0.0057438193, -0.0135750435, -0.010851741, -0.0058198506, -0.004575702, 0.047028817, 0.011515287, 0.02376324, 0.014528891, 0.019035473, 0.023113517, 0.03411732, -6.700259E-4, -0.0020908609, -0.007333565, -0.012006034, -0.03179491, 0.010651294, -0.001746128, -0.0037704615, 0.01866223, -0.0025366808, -0.004696661, 0.008211381, -0.004810708, -0.03757329, -0.012538253, 0.005152849, -0.031684317, -0.023818534, -0.027592452, -0.015233909, 0.016063342, -0.0288366, 0.021814073, -0.015178613, 0.011335576, 3.6849262E-4, 0.003272802, -0.006034121, -0.0138031375, -0.020597572, 0.013664899, 0.0056435964, 0.0288366, -0.012365455, 0.043738734, 0.005135569, 0.0055917567, 0.003929436, -0.010105251, 0.02016903, -4.6250578E-5, 0.019311951, -0.0074718036, -0.014017408, -0.03596972, -0.023224108, -0.0013694274, 0.023486761, -0.004993874, 0.0028788217, 0.014542715, 0.019477839, -0.0045273188, -0.0063693495, -0.005159761, 0.0030809958, 0.030412521, 0.03533382, 0.005481166, -0.005045714, 0.026210064, 0.0022377395, 0.0028805495, -0.015980398, -8.056726E-4, 0.015150965, 0.016657768, -0.018316632, 0.012676492, -0.012517517, -0.004914387, -0.0050802734, 0.014833016, 0.04307519, -0.0014895224, -0.005774923, -0.020459333, -0.010036132, -0.015040374, -0.07492539, -0.0075340113, 0.0015361779, 0.02073581, -0.01895253, 0.038375072, 0.005598669, 0.019298127, -0.0076929857, 0.03793271, -0.0052046883, -0.02197996, 8.838639E-4, -0.007060543, 0.00899243, -0.004582614, -0.010112164, -0.012282511, -0.008093878, 0.021758776, -0.005667788, -0.00745798, -0.011010715, -0.012800907, -0.020500805, 0.006009929, -0.03361966, 0.007990199, 0.005712716, 0.0052876314, 0.014874488, -0.032209624, 0.017210722, -0.0349744, -0.013581956, -0.024896797, -0.03776682, -0.018040154, 0.0012337808, -0.042881656, 0.0018731349, 0.020279622, 0.015869807, -0.02797952, -0.009787302, -0.0021859, -0.03668856, 0.03298376, 0.010651294, -0.016602471, -0.010796445, -0.007969463, -0.025587989, -0.0065248683, 0.0049973303, 0.018330457, 0.022118198, 0.0035302716, -0.008162998, -0.015109493, 0.004454743, -0.009503913, -0.013920641, 0.009061549, 0.012593549, 0.0094900895, -0.0076169544, -0.005118289, 0.022532914, -0.024219427, -0.022809392, 0.020929344, -0.037960358, -0.012517517, -0.018606933, -0.013920641, -0.034089673, -0.023154989, 0.017404256, -0.022892334, 0.0058474983, -0.024993563, 0.0104301125, -0.0076998975, 0.022436148, 0.020099912, 0.00924126, 0.016160108, 0.00849477, -0.02195231, -0.006697667, 0.012952969, -0.0042404733, 0.0069223046, -0.00745798, 0.003715166, 0.025352985, -0.0043994477, 0.004572246, 0.032209624, -0.01759779, -0.018067803, -0.06817935, 0.034172617, -0.009801126, -0.013015177, -0.011218074, 0.006670019, 0.0056263166, -0.021537594, -2.840374E-4, 0.013201799, -0.00834962, 0.022214964, -0.013616515, -1.4925463E-4, -0.0029859566, 0.008819631, -0.0087781595, 0.0054673417, -5.024114E-4, 0.0074095964, -0.03621855, 0.0021668922, 0.033813193, -0.009628328, 0.006490309, 0.023293227, -0.004814164, 0.005118289, -0.014003584, -0.019339599, 0.03596972, -0.0122756, -0.0137132825, 0.003832669, -0.007630778, -0.026486542, -0.013657987, -0.007506363, 0.037628584, 2.087081E-5, -0.013305478, -0.015980398, -0.0138031375, -0.0054224143, -0.009573032, 0.017155427, -0.016270699, 0.007540923, 0.008978606, 0.012144273, 0.035029694, 0.009870246, -0.010962332, -0.00953156, 0.011031451, -0.014404477, 0.045425247, 0.015468914, 0.0023293227, -0.024758557, 0.023472937, -0.013001353, 0.012400014, -0.03179491, -0.0066147232, -2.3889382E-4, 0.015026551, 9.606512E-5, 0.0011594774, -0.023707943, -0.014134911, -0.0046551893, 0.024081187, 0.03657797, 0.020224327, 0.011874707, 0.0061792713, 6.0522644E-4, 0.007416508, 0.013333126, 0.026638605, -0.0073681246, -0.025491223, 0.015206261, -0.005315279, 0.036716208, 0.0015076662, 0.013360774, 0.007430332, 0.018869588, -0.008176821, 0.012144273, 0.0113494005, -0.0061308877, 0.012897674, 0.011321752, -0.012386191, -0.018689876, -0.0014756985, 0.03400673, 0.006455749, -0.010402465, -0.0073888605, -0.014487419, -0.025919763, -7.2251336E-5, -0.012966793, -0.03395143, 0.01888341, 0.01334695, 0.027177736, 0.010056868, -0.011487639, 0.009358763, -0.042771064, 0.00834962, 0.004164442, -0.023749415, -0.0034853441, 0.039425686, 0.0136441635, 0.0076998975, 0.031020772, -0.0043061366, 0.04932358, 0.018800467, 0.015192437, -0.029887214, 0.003388577, 0.00859845, 0.004579158, -0.0023189548, -0.019076945, 0.015427443, -0.007133119, -0.008004023, -0.00196299, 0.016464233, -0.0071815024, 0.07326653, 0.012579725, 0.006697667, 0.013879169, -0.016422762, 0.005702348, 0.012911498, 0.020542275, -0.004582614, -0.009980837, 0.011121307, -0.016768359, 0.02515945, -0.035444412, 0.010727325, -0.015717745, 0.002636904, 0.011142042, -0.02452355, -0.011971475, 0.0035665594, -0.0055917567, 0.011142042, 0.0023327786, -0.005432782, -0.0057403636, 0.02562946, -0.014860664, 0.0037773733, -0.0417481, -0.010768797, -0.005771467, 0.0012648844, 0.0013988032, 0.026859786, -5.7109876E-4, -0.0027077512, 0.0011707093, 0.024012068, 0.013533572, -0.0062864064, 0.009476265, -0.020763459, -0.011301016, 0.016104812, -0.0017867356, -0.017044837, -0.03138019, -0.029389555 ], + "id" : "9dc72440-5215-4b5a-aed8-f7a2a89cff93", + "metadata" : { + "source" : "movies.csv" + } + }, + "dedc72dd-06f4-4133-8f27-6f32dfa692c0" : { + "text" : "Jaz Hutchins-Luka Hays-Alexander Capon-Pete Davidson-Shadrach Agozino-Ludmilla-Miraj Grbiۈ-Meadow Walker Thornton-Allan-Michael Irby-Shahir Figueira-Ben-Hur Santos-Debby Ryan-Josh Dun-Dwayne Johnson-Gal Gadot-Paul Walker-Ali Baddou,sequel-revenge-racing-family-cliffhanger-cars,/fiVW06jE7z9YnO4trhaMEdclSiC.jpg,/4XM8DUTQb3lhLemJC51Jx4a2EuA.jpg,19603-445954-781009-603692-697843-502356-298618-747355-1061181-569094-640146-447365-346698-121342-1076487-447277-325358-960033-667538-3-12354\r\n346364,It,Horror-Fantasy,en,In a small town in Maine seven children known as The Losers Club come face to face with life problems bullies and a monster that takes the shape of a clown called Pennywise.,80.898,New Line Cinema-Vertigo Entertainment-Lin Pictures-KatzSmith Productions,9/6/17,35000000,701842551,135,Released,Your fears are unleashed,7.236,17373,Jaeden Martell-Jeremy Ray Taylor-Sophia Lillis-Finn Wolfhard-Chosen Jacobs-Jack Dylan Grazer-Wyatt Oleff-Bill Skarsg��rd-Nicholas Hamilton-Jake Sim-Logan Thompson-Owen Teague-Jackson Robert Scott-Stephen Bogaert-Stuart Hughes-Geoffrey Pounsett-Pip Dwyer-Molly Atkinson-Steven Williams-Elizabeth Saunders-Megan Charpentier-Joe Bostick-Ari Cohen-Anthony Ulc-Javier Botet-Katie Lunman-Carter Musselman-Tatum Lee-Edie Inksetter-Martha Gibson-Kasie Rayner-Isabelle N��lisse-Jocelyn Mattka-Don Tripe-Liz Gordon-Paige Rosamond-Neil Crone-Sonia Gasc�_n-Janet Porter-Memo D�_az Capt.-Chantal Vachon-Roberto Campanella-Cyndy Day-David Katzenberg-Bobby Leigh-Aimee Lenihan-Kylie Lenihan-Kate Moyer-Sherry Nelson-Jimmy Star-Kelly Van der Burg,based on novel or book-small town-clown-bullying-abandoned house-murder-flashback-balloon-maine-school-creature-fear-summer-killer-missing person-death of brother-well-child-demonic-town history,/9E2y5Q7WlCVNEhP5GiVTjhEhx1o.jpg,/tcheoA2nPATCm2vvXw2hVQoaEFD.jpg,474350-396422-633365-419430-138843-49018-259693-101638-440021-315635-250546-381288-284053-376570-283995-447332-339403-298250-297762-694-22970\r\n157336,Interstellar,Adventure-Drama-Science Fiction,en,The adventures of a group of explorers who make use of a newly discovered wormhole to surpass the limitations on human space travel and conquer the vast distances involved in an interstellar voyage.,201.998,Legendary Pictures-Syncopy-Lynda Obst Productions,11/5/14,165000000,701729206,169,Released,Mankind was born on Earth. It was never meant to die here.,8.", + "embedding" : [ 0.012105488, -0.025806855, -0.010045851, -0.025561336, -0.021564819, 0.028725812, -0.004252266, -0.018032063, -0.005329825, -0.031262852, 0.018673142, 0.028289333, 0.017909303, 0.0038498864, 0.013783207, 0.017513745, 0.016845385, -0.04342972, 0.0022096778, -0.02202858, 0.01114387, -0.0023750628, -0.014990346, -0.003278712, 7.966605E-4, 0.016026985, 0.028480293, -0.006325544, 0.008395412, -0.008449972, 0.0069120633, -0.02260146, 0.0022898128, -0.015931506, -0.038082846, -2.5937287E-4, 0.01042095, -0.03235405, 0.03186301, -0.015999705, 0.025534056, -9.90604E-4, -0.023679018, -0.009643471, -0.018263943, -0.0022096778, 0.005367335, -0.013496768, -0.004153376, 0.009643471, 0.02215134, 0.026652535, -0.014894866, -0.035382126, -0.006751794, -2.8175098E-4, -0.0016888009, -0.0015097761, 0.013694547, 0.016572585, 0.019368783, -0.028207494, -0.022205899, -0.015440466, -0.020610021, -0.002344373, -0.007986212, -0.017513745, -0.0077270526, -0.013462667, 0.020241741, 0.017609224, 0.0035463967, -0.013101208, 0.01048233, -0.047548994, -0.017500104, -0.005606035, 0.0035361666, 0.009029672, 0.016613504, -0.006451714, -0.018291224, -0.0014040662, 0.0020903281, -0.006410794, -0.008143072, 0.012998908, -0.045066517, 0.008095332, 0.0068916036, 0.032545008, 0.0026052375, 0.0022744678, 0.01065965, 0.02148298, -0.020105341, 0.02163302, -0.017581943, -0.03407269, -0.0015217111, -0.0072973934, -0.0076179327, -0.015672345, 0.016640784, -0.014813026, 0.004487556, 0.0047126156, 0.019791622, 0.018768622, 0.017036345, 1.791314E-4, 0.013564968, -0.046730597, -0.007113253, -0.015876945, 0.024824778, -0.016899943, -0.0141446665, -0.03314517, 0.023283457, 0.028343894, 0.0013819012, -0.023037938, 0.016968144, 0.02310614, -0.005179785, -0.012282808, -0.0028047224, -0.008422692, 0.020269021, -0.0048660655, 0.014103747, 0.0027638024, -0.011648549, 0.043757077, -0.013346728, -0.0013725237, -0.031044612, -0.017950224, 0.026297895, 0.030580852, -0.026557054, -0.017500104, -0.029135013, 0.013762747, 0.01055053, -0.0024551977, 0.006421024, -0.0011483164, 0.036118686, 0.015126746, 0.015031266, 0.014267427, 0.026679816, 0.006100484, 0.008804612, 8.5122045E-4, -0.003391242, -0.012630628, -0.026106935, -0.0027876724, 7.4380555E-4, -0.020569101, 0.006373284, 0.02243778, 0.03186301, -0.0195461, 0.01043459, 0.007467893, -0.021892179, 0.036964364, -0.030308051, 0.012842048, -0.012310089, 0.02181034, 0.006417614, 0.012807948, -0.02096466, -0.0058310945, 0.001040049, 0.007842992, 0.011982729, 0.026625255, -0.0037203066, 0.0028439374, 0.026393374, -0.02280606, 0.008852351, -0.022560539, -0.008409052, 0.029489653, -0.0014040662, -0.011614449, -0.63813317, -0.019518822, -2.90276E-4, -0.007481533, 0.013742287, 0.023583539, -4.0664212E-4, 0.007986212, -0.02217862, -0.007181453, -0.016572585, 0.018959582, 0.025861416, -0.012357828, -0.022219539, -0.019777982, 0.014690266, -0.015331346, -0.01035957, -0.0010153266, -0.01031865, 0.03265413, 0.026338816, -0.007747513, 0.0034253418, 0.018905023, 7.425268E-4, -0.03467285, 0.004272726, -0.004167016, -0.0028575773, 0.015535945, 0.010311831, 0.0039044463, 0.04370252, 1.998045E-4, -0.005936804, 0.047221635, 0.029871572, 0.03109917, -0.027034454, -0.01072785, 6.790156E-4, 0.005360515, -0.006550604, 0.016190665, 0.02134658, 0.0030809322, 0.007106433, -0.006629034, -0.0028933822, 0.0027672125, 0.008572732, -0.016640784, -0.005360515, 0.004347746, 0.014813026, -0.02155118, 0.016558945, 0.005346875, -0.02178306, 0.011737209, -0.0015285311, -7.8909456E-5, 0.015126746, 0.031208292, 0.004337516, 0.008088512, 0.0094456915, -0.022928819, 0.02212406, 0.008681851, -0.0146493465, -0.007467893, 0.007392873, 0.018714063, 0.035955008, 0.001031524, 0.011975909, 0.011900889, -0.01010041, -6.078319E-4, -0.005005875, 0.007631573, 0.016899943, -0.0046580555, -0.030880932, 0.015658705, 0.0037748665, -0.002187513, 0.008436332, 0.034727406, -0.012378288, 0.0046785157, -0.013196687, -0.004044256, -0.0123851085, 0.01051643, 0.026447935, -0.0636169, -0.009002391, -0.023788137, 0.018673142, -0.01033229, 0.025274897, 0.001588206, 0.0033776017, -0.0035532166, 0.02153754, -0.026093295, -0.015685985, -0.0019317631, -0.029598773, -0.017186385, -0.0017314259, -0.03175389, 0.015099466, 0.012371468, 0.0056435447, -0.014717546, 0.022246819, 0.016722625, 0.011273449, -0.015672345, 0.011900889, 0.006427844, -0.01049597, 0.0033571417, -0.0070245937, 0.004364796, -0.0060800244, -0.004398896, 0.03249045, -0.023378938, 5.7543697E-5, 0.018482182, 0.008027133, -0.009050132, 0.018523103, -0.0017629684, -0.030990051, 0.0070041334, 0.0057492545, 0.007365593, -0.012589708, -0.029844292, -0.015672345, -0.004289776, -0.0011807114, 1.2381219E-5, -0.0036384666, 0.0034986567, -0.0016470285, 0.014226506, 0.002153413, -0.0013043238, -0.028125653, -0.0195461, 0.0035804966, -0.018018423, 0.009575271, 0.0152358655, 6.4065313E-4, -0.02123746, 0.023542618, -0.0019743883, -0.012501048, -7.574455E-4, 0.0146493465, -0.013844587, 0.02144206, -0.009684391, 0.0029752222, 0.017186385, -0.0067790737, 0.029271413, -0.013905967, 0.015031266, -0.007986212, 0.0033861268, -0.010045851, -0.009466151, -0.012507868, -0.001676866, 0.013892327, 0.025179416, 0.012746568, -0.01023681, 0.0045080157, 0.004388666, -0.0054764547, -3.2693346E-4, -0.016217945, -9.121742E-4, -8.618767E-4, 0.02115562, 0.013148948, 0.0011474639, 0.005087715, 0.007304213, 0.04160196, 0.018086623, -0.010946089, 8.524992E-4, 0.016490744, -0.032872368, -0.0035327566, -0.04402988, -3.6231216E-4, 0.003166182, 0.026297895, -0.02140114, -0.008947832, 0.009745771, 0.012248709, 0.031181011, -0.010066311, 0.017800184, -0.018741343, 0.0043818457, -0.014976706, -0.005534425, 0.0219331, 0.005265035, -0.02035086, 0.009459331, 0.026679816, -0.02048726, -2.2655167E-4, -0.018700423, -0.01155989, 0.007624753, 0.01001175, 0.024483778, -0.012794308, -0.0025302176, 0.02095102, 0.0037544065, 0.029571492, -0.015126746, -0.012255529, 0.0215921, 0.016054265, -1.0023526E-5, -0.0018806133, -0.009179711, 0.006185734, 0.0045762155, -0.013674087, 0.038273804, -0.008531812, 0.027307255, -0.011484869, 0.014240147, 0.006581294, -0.034836527, -0.0066460837, 0.012910248, 0.028371174, 0.005302545, 0.013046647, -0.027893774, 0.025452217, 0.007965753, 0.0084431525, -9.897515E-4, -0.038273804, 0.003307697, -0.01010041, -0.022396859, -0.023992738, -0.015808744, 0.0010732965, -0.0019726832, -0.015194946, -0.013210327, -0.011423489, 0.0029325972, 0.015604146, 0.008088512, -0.0207055, -0.029080452, 0.016245225, 0.024538336, -0.007195093, -0.019914381, -0.013530867, -0.015931506, -0.016545305, -0.0119622685, -0.019205103, 0.03229949, -0.005326415, 5.4304197E-4, -0.0084431525, 0.008702312, -0.0030059123, -0.011696289, 0.017077263, 0.03161749, 0.0014117387, 0.014772106, 0.0028337073, 8.341705E-4, 0.027552774, -0.0034168167, 0.014458386, -0.012016829, -0.0028848574, 0.005012695, 0.012930708, 0.0035770866, -0.035054766, 0.028807653, -0.016831744, -0.01091199, 7.5062556E-4, 0.00977305, 0.0025251026, -0.005531015, -0.02110106, -0.017650144, -0.03077181, -0.014785746, 0.08183993, 0.050195154, 4.5992332E-4, 0.011675829, 0.0015873535, 0.014922146, -0.017418263, 0.0039862865, -0.011648549, -0.0144856665, 0.037319005, -0.018318502, 0.025247617, 0.0025506776, 0.015181306, -2.2868291E-4, -0.011866789, -0.0040135663, -0.005340055, -0.0054730447, -0.01108931, -8.375805E-4, 0.014321987, 0.027702814, -7.9623424E-4, -0.016477104, 0.007897553, 0.015372266, 0.0013137013, 0.0145675065, -0.011982729, -0.0015796811, 0.005606035, 0.016136104, 0.013776387, 9.582091E-4, 0.011539429, 0.015685985, 0.04435724, -0.0038567064, -0.0017731984, 0.0050399755, 0.0048728855, -0.016367985, 0.015617785, -0.015522306, -0.002279583, 0.034209087, 0.023406219, -0.033499807, 0.030308051, -0.0056367246, -0.030308051, -0.01107567, 0.02066458, -0.0040135663, -0.0038976264, -0.008436332, -0.02194674, -0.011825869, -0.010216351, -0.04389348, 0.01080969, -0.006267574, -0.01057781, -0.019818902, -0.0034458018, 0.0020681631, -0.02018718, 0.01065283, 0.018182103, -0.015290426, -0.013742287, 0.0072837532, 0.019082341, -4.872566E-5, 0.015426826, -0.016804464, 0.015126746, 0.019109622, -0.028453013, -0.023488058, 0.01036639, -0.025015736, 0.012289628, 0.007065513, 0.009507071, 0.030335331, -0.00984807, 0.0013264888, -0.0017800183, 0.0058345045, -0.014662987, -0.019723421, 0.041138202, -0.009677571, 0.015454105, 0.0133058075, -0.0038123764, 0.002968402, 0.01040731, -0.030553572, -0.014840306, -0.014253787, -0.023065219, -0.015249506, 5.0851575E-4, 0.01075513, -0.016272504, -0.03202669, -0.023556259, -0.013251248, 0.0040203864, 0.007958933, -0.0020050781, 0.0059265746, 0.01098019, 0.0045557558, -0.012992088, 0.0062846243, 0.005575345, -0.018877743, 0.015194946, 0.030689972, 2.4466726E-4, 0.023938177, 2.4807727E-4, -0.03562765, -0.024579257, 0.026420655, 0.01010041, 0.013592247, -0.015808744, -0.012692008, -0.024347378, -0.024442857, 0.013674087, 0.002363128, -0.007467893, 0.003232677, -0.017036345, -0.0048387856, 0.004245446, -0.009411591, -0.012016829, -0.033172447, 5.6861696E-4, -0.004214756, 0.02110106, 0.024033658, 0.004494376, 0.017895663, -0.024388297, -0.0101140505, -0.007338313, -0.013701367, -0.026079655, -0.005496915, 0.030553572, -3.7062404E-4, 0.04132916, 0.0034082918, 0.026475215, -0.008402232, -0.0058310945, 0.025111217, -0.0100322105, -0.011423489, -0.02194674, 0.002242073, 0.007529273, 0.017595584, 0.013258068, -5.56682E-4, -0.003135492, 0.039119482, 0.023938177, 0.026597975, -0.0048115053, -0.023883618, -0.019723421, 0.009493431, -0.023283457, 0.020078061, -0.033499807, -0.036582448, 0.023201618, -0.017309144, -0.013810487, -0.008361313, 0.03219037, -0.009752591, 0.017759264, -0.003028077, 0.020923741, -0.018195743, -0.0012838638, -0.02209678, 0.0059470343, -0.0039726463, -0.005295725, 0.02127838, 0.0028780373, -0.02144206, -0.004487556, 0.029407812, -0.0048456057, -0.020105341, 0.034154527, -0.01033229, 0.009002391, -0.030280773, 0.0018550382, -0.008647752, -0.008545452, -0.01035275, -0.024497418, 0.0026597974, -0.040156122, -0.03175389, 0.012357828, 0.0066017536, 0.0397742, 0.02217862, 0.046103157, 0.03044445, 0.0013486537, -0.02157846, 0.018359423, -0.023829058, 0.0017322784, 0.028071094, 0.019559741, -0.017745623, -3.2480218E-4, -0.0060459245, -0.011348469, -0.027348174, -0.048340116, 0.022396859, 0.03186301, 0.036473326, -0.03470013, -0.0072564734, -0.012207788, 0.007481533, -0.008579552, 0.005333235, 0.005159325, -0.037973724, -0.01010723, -0.0039794664, -1.0629599E-4, 0.012562429, 0.0010937565, -0.0141446665, 0.014512947, -0.025561336, -0.009486611, -0.015699625, -0.011662189, 0.027143575, -0.030471731, 0.028262053, 0.012746568, 0.0066938237, 0.005619675, 0.004490966, 7.6000305E-4, 0.03093549, -0.028507574, 0.016777184, -0.005384385, -0.0023921127, 0.0077406927, 0.005288905, -0.01057781, -0.018413983, -0.014035547, -9.181416E-4, 0.0438662, 0.015113106, 6.265869E-5, -0.012200968, -0.0060288743, -0.016804464, -0.007222373, 0.001566041, 0.024988456, -0.039174043, 0.014253787, 0.008470432, 3.0743253E-5, -0.012705648, 0.0047876355, 0.005657185, -0.012180509, 0.013271708, -0.009998111, 5.767157E-4, -0.013033008, -0.034427326, -0.044439077, -0.010079951, -3.721159E-4, -0.003277007, 0.013162588, -0.016354345, 0.0026717326, -0.004971775, -0.0036691565, 0.0059674946, 0.0035088868, -0.0025285126, -0.009288832, 0.026666176, -0.016272504, -0.008988752, 0.0023665377, 0.025738657, -0.007236013, -0.0038908063, -0.0027348173, 0.008190813, 0.029871572, -0.024933897, 0.018141182, -6.6281814E-4, -0.030853651, -0.019750701, 0.020582741, 0.014472026, 0.013210327, 0.016122464, -0.025356736, -0.009888991, -0.0025046426, 0.018577663, -0.008224912, 0.009698031, 0.027593695, 0.027470935, 0.03246317, 0.015399545, -0.013121667, -0.025479496, 0.018741343, -0.014308346, -0.02197402, -4.539558E-4, -0.0045046057, 0.006663134, 0.003370782, -0.008790972, -0.028753093, -0.0012599939, -0.02134658, -0.007351953, -0.0057083345, 0.034891088, 0.036637004, 0.019668862, 0.002320503, 0.026938975, -0.005462815, 0.025697736, -0.0019078932, 0.007856633, 0.025206696, 0.02181034, 0.003215627, 0.024988456, -0.018905023, -0.013994627, 0.007597473, 0.03330885, 0.015986064, 0.03156293, -0.009486611, -0.004238626, -0.018236663, 8.16268E-4, -0.0018806133, -0.006328954, 0.016886305, -0.027934695, -0.007549733, -0.0019556333, 0.017281864, 0.019136902, 0.0019249432, 0.024961177, -0.016599864, -0.0030127321, -0.012091849, -0.02260146, 0.0025114627, -0.02127838, 0.028589413, 0.0093638515, 0.01031865, 0.040047, 0.037837323, -0.024592897, 0.009486611, 0.009452512, 0.008981932, -0.024333738, -3.143591E-4, -0.006062974, 0.024674738, -0.03107189, 0.0040101563, -0.027102655, 0.0015123336, -0.0030809322, 0.004600086, -0.005220705, 0.04261132, 0.008913731, -0.03347253, -0.0029530572, -0.01105521, 0.003152542, -0.016217945, -0.0026256975, -0.019218743, -0.017868383, -0.0072087334, 0.0049479054, -0.0057560746, -0.028152933, -0.010386851, -0.022505978, -0.014676626, 0.0040544863, 0.18899566, -0.007454253, 0.02215134, 0.048858434, -0.0014535112, 0.017350065, 0.035245728, 0.008218092, -0.013339908, 0.010543711, -0.014826667, 0.0050365655, -0.007590653, 7.3655933E-4, 0.028480293, -0.015726905, -0.016177025, -0.024524696, -0.019341502, -0.029107733, -0.01034593, 0.007386053, -3.3993405E-4, -0.014772106, -3.9300212E-4, 7.7108556E-4, -0.023010658, 0.012071389, 0.015958784, 0.008068052, 0.0020715732, -0.019055063, -7.4977305E-4, -0.0029308922, -0.023706298, -0.014622066, -0.007761153, 0.0028746272, 0.01048915, 0.020159902, 0.018536743, -0.018782262, 0.0077884328, -0.016299784, -0.008218092, 0.009582091, -0.017350065, -0.0024330327, -0.0106255505, -0.0013631462, -0.04465732, 0.008538632, 0.013980987, 0.033881728, -0.014240147, 9.582091E-4, 0.011716749, 0.009438871, -0.014472026, -0.018495822, 0.016872665, 0.03189029, -0.02151026, 0.011832689, -0.012357828, 0.009418411, -0.023256179, -0.0146493465, -0.0036896165, -0.02168758, -9.692916E-4, -0.025274897, -0.015031266, 0.0051456853, 0.013230788, -0.019368783, -0.002109083, 0.02112834, 0.0055105546, 0.019368783, -0.026925335, 8.874517E-4, -0.0013443913, -0.012528328, -0.018168462, -0.028343894, 0.02017354, -0.024101857, -0.018523103, -0.0221377, -7.95808E-4, -0.015099466, -0.011894069, -0.011819049, 0.0038430665, 0.014703906, 0.014294706, 0.015590506, -0.012480589, -0.0011193315, -0.024592897, 0.021087421, 0.023201618, -0.001069034, -0.02160574, -0.018304862, 0.006461944, 0.0011730389, 0.03344525, -0.02114198, -0.005132045, -0.01057781, 0.0013639987, -0.009166071, 0.0014211162, 0.019750701, 0.018604944, 0.002218203, 0.03224493, -0.022751499, -0.0041397363, -0.0040544863, 0.012705648, 0.024824778, -0.0028882674, -0.040483482, -0.038819402, 0.007672493, -0.0050297454, -0.029244132, 0.0077270526, -0.03219037, 0.0046682856, -0.008361313, 0.0059981844, 0.008524992, 0.016708985, -0.006219834, 0.0026308126, -0.017090904, -0.015358626, 0.0012540263, 0.001504661, 0.008422692, 1.9367717E-5, -0.034809247, -4.21774E-4, 0.0072837532, -0.015304065, -0.035409406, -0.03153565, -0.02085554, -0.007188273, 0.016381625, 0.034836527, -0.006298264, -0.027102655, -0.039992444, -0.012528328, 0.026720734, -0.03183573, 0.03259957, -0.006704054, -0.0051559154, -0.031208292, -0.023774497, -0.17535567, -0.0016896534, 0.016040625, -0.0066938237, 0.017922943, -2.2344802E-6, 0.017963864, 0.017336424, 0.008484072, -0.019027783, 0.017172744, 0.0010204415, -0.019177822, -4.6631705E-4, 0.004323876, 0.005176375, 0.006448304, 0.030117093, 0.020296302, -0.011593989, 0.041165482, -0.0015217111, -0.01101429, 0.0065233237, 0.012221429, 0.024811137, 0.01016179, 9.957191E-4, -0.0017510334, -0.013537687, -0.039037645, -0.0045557558, 0.008927371, 3.3354032E-4, -0.015495026, 0.010946089, -0.0026938976, -0.013374007, -0.01113023, -0.0068029435, 0.035382126, 0.017786544, 0.026161496, 0.008797792, 0.029462373, 0.007379233, 0.039365005, -0.024974817, 0.0045455256, -0.029216852, -0.02176942, -0.040483482, 0.024115497, -0.009261551, 2.2804354E-4, 0.027580054, 0.017009065, -0.0070586936, 0.011198429, -0.009343391, -0.036637004, -0.009104691, 0.011273449, -3.7275528E-4, 0.0033486169, -0.0442754, 0.0027194724, 0.007386053, -0.038191963, 0.0075770128, -0.028262053, 0.0066085737, 0.013449027, 0.02082826, 0.0049138055, -0.02066458, -0.03229949, 0.016995424, -0.015222225, 0.018632222, -0.0047910456, 0.048176434, -0.0066938237, 0.004521656, 0.008409052, 0.0024705427, 0.0012821588, -1.2307958E-4, 0.018304862, -0.0059197545, -0.0014586261, 0.006451714, -0.030853651, -0.0059163445, -0.0015217111, 0.033881728, -0.0010170315, 0.018823182, 0.02243778, 0.0077338726, -0.0029206623, -0.007113253, -0.016818104, 0.027607335, 0.018891383, 0.013551327, 0.0059981844, 0.024020018, 0.013217147, -0.013073928, -0.011457589, -0.0052309353, 0.023624457, 0.008477252, -0.020582741, 0.0030059123, -0.0131353075, -0.023624457, 0.0070109535, 0.031017331, 0.049758673, -0.012923888, -0.015795106, -0.015208586, -0.003132082, -0.017718343, -0.079766646, 0.0061584543, 0.005043385, 0.027293615, -0.026393374, 0.02066458, -0.012862508, 0.009547991, -0.02249234, 0.049431313, 0.02155118, -0.020623662, 0.004310236, 0.012269168, 0.009016031, -0.017063623, -0.0071746334, -0.012644269, -0.018400343, 0.035927728, 0.0077747926, -0.009275191, -0.011907709, -0.016845385, -0.035845887, 0.0034065868, -0.025834136, 0.033199728, 0.006438074, 0.008934191, 0.0077679725, -0.01058463, 0.010782409, -0.030499011, -0.009643471, -0.025902336, -0.030198932, -0.03276325, 0.0073246732, -0.05215931, 0.008286293, 0.027157215, 0.018413983, -0.023542618, -0.02119654, -0.009091051, -0.018905023, 0.033172447, -0.009991291, -0.02086918, -0.023024298, -0.029680612, -0.039010365, 0.0035566266, 0.012105488, 0.01010041, 0.03328157, 0.028371174, -0.01077559, -0.025602257, -6.274394E-4, -0.022710579, -0.027470935, 0.011900889, 0.013142128, 0.0113757495, -0.002240368, -0.005084305, 0.019518822, -0.014853946, -0.03161749, 0.019055063, -0.029844292, -0.0045046057, -0.026147855, 0.0073314933, -0.028207494, -0.012807948, 0.016327064, -0.03077181, -0.008402232, -0.03161749, 0.026502496, -0.023624457, 0.007795253, 0.013749107, 0.014622066, 4.509721E-4, -0.012855688, -0.029571492, 0.0099503705, 0.005244575, 0.008422692, 0.004224986, -0.0028337073, 0.014472026, 0.017254584, 0.008095332, 1.3703924E-4, 0.0135581475, 0.009541171, -0.010298191, -0.07709321, 0.03461829, -0.016627144, -0.009200172, -0.0140628265, -0.009370672, 0.007638393, -0.0027194724, -0.0124669485, 0.025752297, -0.015849665, 0.024524696, -0.006134584, -0.008436332, -0.008149892, -0.002260828, -0.012112308, -0.019246021, -0.018291224, -0.002073278, -0.014526586, 0.013333088, 0.020241741, 0.011928169, -0.008640932, 0.031262852, -0.001658111, 0.029107733, -0.002040883, -0.0040919962, 0.03377261, -0.02175578, -0.0015941735, 0.006219834, 0.004201116, -0.02175578, -0.0056299046, -0.006383514, 0.018482182, 0.007488353, -0.007304213, -0.029762452, -0.0088591715, -0.017841103, -0.002098853, 0.009875351, -0.008906912, -0.0013836062, -8.6571294E-4, 0.012923888, 0.026379736, 0.012964807, -0.013967347, -0.028234774, 0.016395265, -0.024388297, 0.050031472, 0.0041022263, -0.0022915178, -0.012098669, 0.0217967, -4.803833E-4, 0.016681705, -0.026611615, 0.005606035, -0.012869328, -3.392947E-4, -0.002988862, -0.0030127321, -0.038846683, -0.008156712, -0.009998111, 0.0037339465, 0.03169933, 0.0036862066, 0.0018908433, -0.003331567, 0.009131972, -0.011853149, 0.012807948, 0.026025096, -0.002225023, -0.027661894, 0.017390983, 0.004224986, 0.013367187, 0.009329751, 0.022969738, -0.012835228, 0.0071337135, -0.019232381, 0.016204305, 0.013203507, -3.4419656E-5, 0.004149966, 0.024770217, -0.025929615, -0.015385905, 0.0034526219, 0.013830947, -0.004436406, -0.014894866, -0.027730094, -0.009322931, -0.015781466, -0.0038839863, -0.012330549, -0.028889492, 0.019041423, 0.018959582, 0.018986862, 0.007924832, -0.012357828, 0.0088591715, -0.034154527, 0.018700423, -0.0046819258, -0.005118405, -0.01068011, 0.048476513, 0.0077747926, 0.011273449, 0.027880134, -0.001647881, 0.046676036, 0.008640932, 0.008320392, -0.03262685, 0.013292167, 0.0056674145, 0.0013034713, -0.016149744, -0.029980691, 0.01058463, 0.009268371, -0.017472824, 0.008409052, 0.016422546, -0.017854743, 0.08604104, 0.014867586, -0.0049922355, 0.03208125, -0.02073278, 0.016558945, 0.016913584, 0.0213875, -0.01049597, -0.017568303, -0.020105341, -0.013755927, 0.0055617047, -0.036118686, -0.0047126156, -0.0011790064, 0.016381625, 0.02119654, -0.003996516, -0.016777184, 0.0038942164, 0.0027603924, 0.036418766, 0.008524992, -0.008415872, -0.008136252, 0.014840306, -0.011805409, -0.004296596, -0.04097452, 0.0045557558, -0.012623808, 5.39632E-4, 8.000705E-4, 0.03142653, -0.017513745, -0.005353695, 0.005568525, 0.009554811, -0.0039692363, -0.002081803, 0.001070739, -0.025738657, -0.0058208643, 0.019777982, -0.0033895369, -0.008115793, -0.036773406, -0.04452092 ], + "id" : "dedc72dd-06f4-4133-8f27-6f32dfa692c0", + "metadata" : { + "source" : "movies.csv" + } + }, + "e9504457-1dc9-45a7-ba5b-d4ed50eac5ec" : { + "text" : "Davis-Glen Levy-Edwin Wright-Sui Fong Ivy Tsui-Jeremy Tan-Douglas Lee-Tim Wong-Yoson An-Yao Yao-Leand Macadaan,ocean-based on novel or book-beach-deep sea-creature-shark-oceanic expedition-kaiju-submersible-under water-extinct-underwater facility-mariana trench,/xqECHNvzbDL5I3iiOVUkVPJMSbc.jpg,/ibKeXahq4JD63z6uWQphqoJLvNw.jpg,427641-447200-351286-346910-353081-335983-439079-345887-363088-383498-442249-415193-726166-297802-260513-523931-347375-559700-545582-333339-353486\r\n404368,Ralph Breaks the Internet,Family-Animation-Comedy-Adventure,en,Video game bad guy Ralph and fellow misfit Vanellope von Schweetz must risk it all by traveling to the World Wide Web in search of a replacement part to save Vanellope's video game Sugar Rush. In way over their heads Ralph and Vanellope rely on the citizens of the internet ��� the netizens ��� to help navigate their way including an entrepreneur named Yesss who is the head algorithm and the heart and soul of trend-making site BuzzzTube.,63.768,Walt Disney Pictures-Walt Disney Animation Studios,11/20/18,175000000,529221154,112,Released,Who Broke the Internet?,7.214,6690,John C. Reilly-Sarah Silverman-Gal Gadot-Taraji P. Henson-Jack McBrayer-Jane Lynch-Alan Tudyk-Alfred Molina-Ed O'Neill-Melissa Villase��or-Bill Hader-John DiMaggio-Irene Bedard-Kristen Bell-Auli'i Cravalho-Jodi Benson-Jennifer Hale-Kate Higgins-Linda Larkin-Kelly Macdonald-Idina Menzel-Mandy Moore-Paige O'Hara-Pamela Ribon-Anika Noni Rose-Ming-Na Wen-Roger Craig Smith-Maurice LaMarche-Brad Garrett-Anthony Daniels-Tim Allen-Vin Diesel-Sean Giambrone-Jaboukie Young-White-Flula Borg-Ali Wong-Timothy Simons-Glozell Green-Hamish Blake-Rich Moore-Phil Johnston-Colleen Ballinger-Dani Fernandez-Tiffany Herrera-Horatio Sanz-Rebecca Wisocky-Sam Richardson-Katie Lowes-Alex Moffat-June Squibb-Della Saba-Michaela Zee-Jamie Elman-Ana Ortiz-Dianna Agron-Jason Mantzoukas-Raymond S. Persi-Fuschia!-Corey Burton-Jason Hightower-Brian Curless-Ann Barry Colgin-Viveca Paulin-Michael Giacchino-Kevin Deters-Jeremy Milton-Jesse Averna-Nicole Scherzinger-Brittany Kikuchi-Olivier B��nard-Ben McKee-Daniel Platzman-Dan Reynolds-Wayne Sermon-Mark Rhino Smith-Kent Boyd-Rachel Crow-Jenica Bergere-John Lavelle-Josie Trinidad-Ruth Strother-Elise Aliberti-Maddix Robinson-Bradford Simonsen-Fabienne Rawley,video game-cartoon-sequel-internet-lethal virus-aftercreditsstinger-duringcreditsstinger-online gaming,/dbvAUZWOepRxwUnSOvZAGsrPjta.jpg,/qDQEQbgP3v7B9IYLAUcYexNrVYP.", + "embedding" : [ 0.015978025, -0.023306394, 0.0038991557, -0.011482929, -0.013771341, 0.021957865, -0.020977117, -0.025962587, -0.011394389, -0.04001998, 0.023510717, 0.032718856, 0.0333182, 6.857576E-4, 0.0062692976, 0.011823466, 0.014425173, -0.02254359, 0.01810298, -0.038439885, -0.0011527198, 0.0028707322, -0.009092354, -0.003493916, 0.0056903837, 0.007648475, 0.026316747, -0.00394002, -0.015583001, -0.009555486, 0.013975664, -0.014370687, -0.0019972532, -0.0134171825, -0.002697058, 0.004396341, 0.0044950964, -0.027896842, 0.015460408, -0.002009172, 0.001927443, 0.0062488653, -0.01566473, -0.009371595, -0.01683618, -0.008370414, 0.008772249, -0.010556666, -0.009289866, 0.03187432, 0.029940067, 0.011864331, -0.006010489, -0.04200872, -0.024273522, 0.00624546, -0.016740829, -0.016359428, -9.157269E-5, -0.003766346, 0.008302307, 2.8817996E-4, -0.023905741, -0.004760716, -0.0082818745, 0.0073556127, -0.0015077303, 0.0070831827, 0.010965311, -0.0011024906, 0.054540504, 0.020691065, 0.026452962, 0.015337815, 0.016727207, -0.02915002, -0.024913732, -0.0065485383, 0.0032504315, 0.009065111, 0.00832955, 0.0037629406, -0.013737287, 0.0028349757, 0.018402653, 0.0062045953, -0.0067971307, 0.02127679, -0.04217218, -0.0054417914, 0.0077710683, 0.0561206, -4.2780038E-4, 0.011578279, 0.009419271, 0.031029789, -0.025935344, 0.023006722, -0.028550673, -0.044950966, 0.0255267, 0.008847168, -0.00169758, -0.016509265, -0.009351163, 0.0062795137, 5.9977185E-4, -0.0012940429, 0.025376864, 0.0055473577, 8.138849E-4, 0.0039706687, 0.0077165826, -0.039693065, -0.015215221, -0.016413914, 0.011632765, -0.0030290822, -0.019696696, -0.010549855, 0.029667638, 0.021399384, -0.016141484, -0.016550127, 0.040319655, 0.028577916, -0.013614694, -0.0025472215, 0.014520524, -0.023170179, 0.03530694, 0.008765439, 0.021344898, 0.0029660827, -0.033290956, 0.04489648, -0.023401745, 0.0028468946, 0.0034479434, -0.0181166, 0.025826372, 0.024287144, -0.022230295, -0.016495643, -0.012048221, 0.0062148115, 0.009930077, 0.0136487475, 0.009208137, 0.013832638, 0.018688705, 0.014915547, -0.0023497096, 0.022611698, 0.014125501, 8.151619E-4, -0.01258627, -0.002593194, 0.0025472215, -0.017598985, 0.005217036, 0.003548402, 0.0032095672, -0.019519616, -0.0034802945, 0.01710861, 0.021508357, -0.015324193, -0.01611424, -0.015446787, -0.026452962, 0.017803308, -0.02560843, 0.008554305, -0.015800945, 0.0057618967, 0.015623866, 0.0027685708, -0.029013805, -0.013049401, 0.01637305, 6.406364E-5, 0.015433165, 0.02887759, 0.005802761, 0.012681621, 0.040755544, -0.020718308, 0.00959635, -0.027174901, 0.016127862, 0.028659645, 0.018225573, -0.00457342, -0.63116604, -0.01457501, 0.0028877591, -0.0181166, 0.014043772, 0.023837633, -0.012286597, -0.0033713225, 0.009875591, 0.011578279, -0.033890303, 0.011074283, 0.010420451, -0.02752906, -0.012804215, -0.0049309847, 0.0047028246, -0.016795315, 0.020759173, 0.001403015, -0.014792955, 0.024954597, 0.018034872, 0.0023735473, 0.010869961, 0.008847168, -0.012293408, 9.0157334E-4, 0.0012761648, 0.020255178, -0.023796769, 0.014738468, 0.01376453, 0.0027089769, 0.03702325, -0.00788004, -0.00787323, 0.055003636, 0.032010537, 0.020568471, -0.03808573, 0.0062080007, 0.0111219585, -4.8909715E-4, -0.007845987, 0.019124594, 0.010938068, -0.0040421817, -3.1627432E-4, -0.0087381955, -0.0048594717, -0.009848348, -0.012456866, -0.009024247, 0.003422403, -0.013049401, 0.007042318, -0.02887759, 0.02262532, 0.023674175, -0.024600437, 0.015596623, -0.003073352, 0.022243917, -0.0116668185, 0.025322378, -0.017340176, 0.008990193, 0.019928262, -0.013144752, 0.014833819, 7.2066276E-4, -0.018634219, -0.015174356, 0.00497866, 0.029858338, 0.039965495, 0.004406557, 0.0070559396, 0.014901926, -0.005921949, -0.013989286, 0.022911372, 0.0049003363, 0.027351981, -0.007825554, -0.028550673, 0.0017537688, 0.015610244, -0.017898656, 0.013505722, 0.013784963, 0.008322739, 0.004733473, -0.011728115, 0.002194765, -0.014588632, 0.0025046542, 0.020895388, -0.05666546, -0.008431711, -0.021549221, 0.012279786, -0.027651655, 0.013880313, 0.004808391, 0.0019666047, -0.011482929, 0.017149474, -0.015174356, -0.018988378, -0.010917636, -0.031465676, -0.0035892664, -0.005084227, -0.02534962, -0.0041988287, 0.004209045, 0.004444016, 0.0052919546, 6.6447404E-4, 0.001615851, 0.014275337, 0.0031074057, 0.005394116, 0.025227027, -0.007021886, -0.024818381, -0.0068924814, 0.018675083, 0.002358223, 0.013355886, 0.016441157, -0.009201326, 0.007314748, 0.031302217, 0.017612606, -0.0073896665, 0.010454505, -0.022707049, -0.017980386, -0.018075736, -0.012477298, -0.018157465, -0.010515802, -1.8197478E-4, -0.01556938, -0.0013638531, -0.0104613155, -0.013423993, -6.095623E-4, 0.002925218, -0.005966219, 0.034462407, 3.2883164E-4, 0.008404468, -0.0191927, -0.012599892, -0.0013774746, -0.007341991, 0.009351163, -0.0017358905, 0.0018218763, -0.022053216, 0.014656739, -0.008792682, -0.015773702, 0.004379314, -0.0064293505, -0.024477843, -0.0072806943, -0.023919363, 0.00493439, 0.02498184, -0.009637214, 0.04375227, -6.7341316E-4, 0.0050808215, -0.015079006, -0.019860154, 0.0073283697, -0.019397022, -0.010631585, -0.015732838, 0.020064477, 0.012020978, 0.023510717, 0.019301672, -0.0022066839, 0.0035994826, 0.008227389, -9.6882955E-4, -0.0044303946, -0.021944243, -0.003919588, 0.0076348535, 0.015637487, 0.00438953, 0.008247822, 0.017040502, 0.034380678, 0.023279151, -0.0021419816, -0.009269434, 0.023088451, -0.032773342, 0.008063931, -0.04010171, 0.008888032, 0.019792046, 0.020486744, -0.003865102, -0.014670361, -0.00796858, 0.014275337, 0.02996731, -0.017721578, 0.0023241693, -0.021385763, 0.027447332, -0.005738059, -0.012266165, 0.014425173, 0.01991464, -0.021017982, 0.011360335, 0.008745006, -0.0017554715, -0.008411279, -0.039420635, -0.0049037416, -0.0023275746, 0.0031142165, 0.010652017, -0.018143844, -8.611345E-4, 0.016155105, -0.00237525, 0.019397022, -4.5376638E-4, 0.0074577737, 0.038903017, 0.027447332, -0.0034683757, 0.03113876, 0.010652017, 0.022734292, -0.0017341878, -0.02363331, 0.036015257, -0.016441157, 0.03187432, -0.021521978, -0.0056256815, 0.0070355074, -0.00588449, 0.014261715, 0.018688705, 0.012518163, 0.0022305213, 0.0054315752, -0.031084273, 0.002664707, 0.01556938, -0.0025455188, -0.013458047, -0.023551581, 0.0027549493, -0.0054996824, -0.022461861, -0.021467492, -0.009453325, 5.452859E-4, 0.011619143, 0.011816655, -0.005530331, -0.011557847, 0.0036437525, -0.009752997, 0.026044317, -3.2776746E-4, -0.0280603, 0.009446514, 0.03304577, -0.01611424, -0.012300218, -0.009875591, -0.005533736, -0.028550673, 0.007430531, 0.0096576465, 0.015991647, 0.015964404, 0.010440883, -0.016863422, -0.019941883, -0.00240079, -0.014043772, 0.00398429, 0.021058846, 0.012865512, 0.027147658, -0.00323681, -0.0019785236, 0.03620596, -0.016386671, -0.00248933, 0.009044679, 0.0068958867, -0.0089697605, -0.016849801, -0.0011910304, -0.035170726, -0.009562297, -0.00796858, -0.013049401, -0.016550127, -0.015882675, -1.6505433E-4, -0.035443157, -0.01494279, -0.025199784, -0.024150928, -0.008785871, 0.07502725, 0.03849437, 6.683051E-4, 0.013723666, 6.2148116E-4, 0.010985743, -0.024382494, -0.0036505633, -0.008499819, -0.016264077, 0.019056486, 9.050851E-5, 0.02942245, 0.009712133, 0.018184708, 0.0010624774, -0.0036267256, -0.0179259, 0.004546177, -0.0053600622, -0.037895028, -0.00805712, 0.031057032, 0.025717402, 0.00197001, -0.018756812, 0.024396116, 0.019601345, -0.0070082643, 0.023211043, -0.015106249, 0.017094988, 0.006064975, 0.016945152, -0.009569108, -0.0036233203, 0.014643118, 0.01892027, 0.041327644, 0.029613152, -0.0013229887, 0.0087109525, -0.0031074057, -0.016032511, -0.0026664096, -0.023864876, -0.009671268, 0.024832003, 0.017503634, -0.05094443, 0.04200872, -0.0030801627, -0.02371504, -0.0181166, -1.7335493E-4, -0.023851255, -0.006579187, -0.020037234, 0.007076372, -0.003313431, 0.008499819, -0.030730115, -2.9946025E-4, -0.03457138, -0.014193608, -0.005329414, 0.0073079374, -0.015596623, -0.01185752, -0.009466946, 0.006688159, -0.02841446, -0.024614058, -0.0206502, -0.0042941794, -0.011006176, 0.041327644, -0.012933618, 0.016277699, 0.010624774, -0.02560843, -0.012286597, -0.014506903, -0.019342536, 0.011843898, 0.02000999, 0.0073351804, 0.008826735, -0.002041523, -0.0030682439, 0.030212497, -3.8374332E-4, -0.028714132, -0.0070355074, 0.030757358, 0.031274974, 0.009889212, 0.024096442, 0.011101526, -0.020350529, 0.010781421, -0.0329368, -0.018634219, -0.008118417, -0.01475209, -0.024382494, -0.005605249, 7.300275E-4, -0.007478206, -0.030648386, -0.0333182, -0.012967672, 0.019492373, 0.005823193, 0.015269707, 0.024110064, 0.026303126, 0.015882675, -0.019328915, 0.009807483, 0.017803308, -0.032282967, -0.0038514805, 0.006960589, -0.01221849, 0.0381947, 0.015092627, -0.033726845, 0.017394662, 0.013090266, 0.015160735, 0.010120778, -0.025404107, -0.0074577737, -0.020118963, -0.010229751, 0.0018984972, -0.0047096354, -0.02381039, -0.0012259354, -0.024287144, 0.005087632, 0.01855249, -0.0053430353, 0.009902834, -0.030702872, 0.009650836, -0.016413914, 0.025880858, 0.027460953, -0.024886489, -0.0050637946, -0.018225573, -0.0014864467, 4.959079E-4, -0.031928807, -0.038903017, -0.006616646, 0.03367236, 0.012647567, 0.028223759, 0.0030563253, 0.02643934, 0.008322739, 0.017340176, 0.015732838, -0.0136759905, -0.01547403, -0.033563387, 0.0055916277, 0.009194516, 0.02018707, 0.023864876, 0.013028969, 0.014098258, 0.02462768, 0.011585089, 0.022148566, -0.0011799629, -0.0193834, -0.009092354, 0.003946831, -0.017094988, -0.013573829, -0.0164684, -0.011544226, 0.045277882, 0.0054315752, -0.0049752546, 0.004716446, 0.031247731, -0.023142936, 0.008302307, -9.288164E-4, 0.020936253, -0.018429896, -0.014438795, -0.022584455, -0.02389212, 0.0116395755, -0.004873093, 0.0041102893, 0.003095487, 0.00692313, -7.074669E-4, 0.023401745, -0.0069197244, -0.015392301, 8.598575E-4, -0.0103182895, -5.103808E-4, -0.03367236, -0.00796858, -0.037050493, -0.010897204, -0.0032129725, -0.012238922, 0.012300218, -0.021985108, -0.03955685, 0.012102707, 0.010754178, 0.03429895, -0.0027532466, 0.049745735, 0.05214312, 0.022284782, -0.01991464, -0.0034377272, -0.014983655, -0.011619143, 0.029204506, 0.020105341, -0.017980386, -0.0028690295, 0.0027549493, -4.746243E-4, -0.040237926, -0.041491102, 0.012450055, 0.022816021, 0.014179987, -0.026847987, -0.009569108, -0.01999637, 0.023687797, -0.013083455, -0.008472576, -0.009609971, -0.01240238, -0.009998185, 0.0088539785, 0.0070355074, 0.016495643, -1.3632147E-4, 0.0044576377, 0.0024995462, -0.0034104842, -0.008704142, 0.005676762, -0.0014362175, 0.035361428, -0.032555398, 0.0072466405, 0.017394662, 0.0075258813, -2.7881516E-4, -0.005956003, -0.006129677, 0.03367236, -0.016550127, 0.018334545, -0.0071376683, -0.014357066, 0.008499819, 0.009562297, -0.011959681, -0.02887759, -0.03168362, 0.008431711, 0.042771526, 9.134922E-4, 0.02515892, 0.0017997413, -0.016482022, -0.009446514, 0.018579733, -0.012061843, 0.014098258, -0.043697786, 0.02381039, 0.0025336, -0.005945787, -0.0040864516, 5.9466384E-4, 0.0074918275, -0.002041523, 0.0051319017, -0.016890666, 0.0036641848, -0.02126317, -0.015896296, -0.046422087, -0.021113332, -0.0015741352, -0.011877952, 0.010726935, -0.009705322, -0.020078098, -0.011516983, -0.0104613155, -0.015909918, -0.015882675, 0.0030699465, 0.020214314, 0.010406829, -0.019723939, -0.021889757, -0.005717627, 0.018361788, 0.0021760354, 0.0044474215, -0.016250456, 0.017190339, 0.027106794, -0.026180532, 0.007566746, -0.01702688, -0.03051217, -0.014697604, 0.0072806943, 0.03168362, 0.023374502, 0.00628973, -0.03865783, -0.016904287, -0.01728569, 0.018933892, -0.014139122, 0.009201326, 0.03184708, 0.014983655, 0.010168454, 0.027978571, 7.491828E-4, -0.033181984, 0.009501, -0.016849801, -0.027665276, -0.0044678533, 0.0046585547, 0.011169634, 0.0083091175, -0.0062590814, -0.030375956, -0.0033968627, -0.02209408, -0.011442064, -0.0047300677, 0.009848348, 0.0327461, -0.009085543, 0.01847076, 0.019070107, -0.015637487, -0.0013289481, -0.024750274, 0.009609971, 0.029722124, 0.003461565, 0.013103887, 0.012007357, -0.03187432, -6.2190683E-4, 0.019533237, 0.021031603, 9.231762E-5, 0.027188523, -0.0240692, -0.009351163, -0.0026715177, 0.010277425, -0.011959681, -0.0139620425, 0.01763985, -0.02923175, 0.0017724984, 0.0046313116, 0.013832638, -0.012770161, -0.017353797, 0.013873503, -0.008860789, -0.00237525, -0.0023888715, -0.011251363, 0.009466946, -0.014411552, 0.019778425, -0.003912777, 0.0042975848, 0.028468944, 0.029640395, -0.014193608, -0.009582728, -0.0019155241, 0.001927443, 0.0076076104, -0.002298629, -0.003258945, 0.035061754, -0.024791138, 0.03999274, -0.034516893, 0.008792682, -0.008785871, 0.0046313116, -0.013914367, 0.023687797, 0.016618235, -0.031274974, -7.8579056E-4, -0.014248094, 0.015405922, -0.019437887, -0.003538186, -0.010897204, -0.023606068, -0.0038719128, 0.006534917, -0.008860789, -0.02163095, 0.0044303946, -0.0022901155, -0.016073376, 3.3926062E-4, 0.210425, 0.005993462, 0.016972395, 0.052905925, -0.0076007997, 0.0017759037, 0.031710863, 0.016127862, 0.0040660193, 0.017272068, -0.0014396228, 0.024314387, 0.01113558, -0.0037459137, -0.0017895252, -0.007410099, -0.019683074, -0.011530604, -0.0033202418, -0.008370414, 0.0014753792, -0.008636034, -0.011605522, -0.016727207, -0.005084227, -0.004011533, -0.0095418645, -5.6656945E-4, 0.012661189, 0.013655558, -0.0011791115, -0.002348007, -0.0014592037, 0.014874683, -0.014452416, -0.011823466, 0.007566746, 0.007982202, 0.017898656, 0.0102025075, -0.00461769, -0.0071921544, -0.015501273, -0.0065519437, -0.01041364, 0.009501, -0.018443517, -0.025390485, -0.014561389, 0.011734926, -0.041436616, -0.0031874322, 0.019328915, 0.028169272, -0.012879133, 0.0035824557, -0.008888032, 0.0062795137, -0.013069834, 0.0045121233, 0.0077710683, 0.041436616, -0.022666184, 0.018838542, -0.0034019707, 5.291103E-4, -0.039311662, -0.012865512, 4.0226008E-4, -0.03176535, -0.010883583, -0.030348713, -0.01909735, 0.0059355707, -0.024954597, -0.023960227, 0.009521432, 0.012776972, 0.020677444, 0.032201238, -0.039148204, -0.002783895, 0.0024110063, -0.016046133, -0.0028366784, -0.0202688, 0.035061754, -0.024736652, -0.005411143, -0.019233564, -0.031465676, -0.01781693, -0.013737287, 0.027297495, -0.0032623503, 0.008888032, 0.019179078, -0.008138849, -0.0031874322, -3.8289197E-4, -0.016768072, 0.017272068, 0.02942245, 0.010999365, -0.017994007, -0.019315293, -0.006994643, -0.0023888715, 0.01956048, -0.011203688, -0.027951328, -0.012245732, 0.001774201, -0.029122777, -0.004130721, 0.030266983, 0.013389939, -0.024818381, 0.022816021, -0.004873093, -0.0054179537, -0.029940067, 0.0051829824, 0.008288685, -0.008724574, -0.025567565, -0.013063023, 0.01394161, -0.011653197, -0.024041956, 0.010182075, -0.0077506364, 0.0052374685, -0.021767166, -0.00932392, 0.010372776, 0.028005814, -0.009991374, 0.015719216, -0.009337542, -0.011503361, -0.0059968675, 0.015201599, 0.0059798406, 0.0067017805, -0.029558666, 0.0084249005, 0.007348802, -0.010652017, -0.012824647, -0.042226665, -0.0043146117, 0.021644572, 0.005966219, 0.028223759, -0.012783783, -0.017994007, -0.027215766, -0.02879586, 0.04255358, -0.028496187, 0.016890666, 0.028986562, -0.023320016, -0.019628588, -0.017367419, -0.17479114, 0.018756812, 0.013737287, -0.030566657, 0.012879133, 0.029912824, 0.031002546, -0.010447694, 0.008663277, -0.008520251, 0.029803852, 0.0117826015, -0.028959319, -0.008213768, -0.0057891393, 0.029912824, -0.019179078, 0.028686889, 0.016059754, -0.02055485, 0.038358156, -0.0026664096, -0.026480205, -9.815997E-4, 0.015828189, 0.010631585, 0.0057346537, 0.0044678533, 0.011585089, 0.0011135581, -0.032964043, -0.024464222, 0.02761079, 0.013042591, -0.0041205054, -0.0052987654, -0.008016256, -0.017680714, -0.007410099, 0.02218943, 0.033835817, 0.016059754, 0.018538868, 0.01683618, 0.016986016, 0.01475209, 0.022529969, -0.023224665, -0.0060036783, -0.015092627, -0.021508357, -0.041273158, 0.015814567, -0.011387578, -0.005506493, 0.022420997, 0.001160382, 0.012048221, 0.0063135675, -0.0037322922, -0.024028335, -0.007049129, 0.013887124, -0.029803852, 9.4584323E-4, -0.030920817, -0.029994553, -0.009923266, -0.03612423, 0.010795043, -0.023211043, 0.0093988385, 0.027134037, 0.014057393, 0.002380358, -0.012933618, -0.030893574, -0.006810752, -0.008765439, 0.00914684, -0.008676899, 0.03448965, -0.008772249, 0.020881766, 0.010897204, -0.011530604, 0.0044712587, -0.002925218, 0.011435254, -0.0018167682, -2.8562592E-4, -0.021126954, -0.02661642, -0.009071922, -0.010631585, 0.010795043, 0.013560208, 0.01376453, 0.0065757814, 0.0069810213, -0.008636034, -0.003602888, -0.0030563253, 0.021154197, 0.007825554, 4.6909056E-4, 0.0028571107, 0.03429895, 0.03683255, -0.0033151337, 0.004001317, 0.011864331, 0.02915002, 0.0127565395, -0.025744645, 0.007144479, -0.016686343, -0.021726301, 0.007777879, 0.016877044, 0.05748275, 0.0060343267, 0.00788004, -0.0070627504, -0.0068482114, -0.018075736, -0.081129685, 6.6745374E-4, 0.018389031, 0.032092266, -0.03729568, 0.032718856, 0.006950373, 0.022461861, -0.017885035, 0.026452962, 0.010004995, -0.022121323, -0.0061058397, -0.009712133, -0.0045393663, -0.016223213, -0.005506493, 0.0040047225, -0.029776609, 0.026044317, -3.5841585E-4, -0.008002634, -0.0056631407, -0.0087109525, -0.020432258, 0.0166591, -0.034462407, 0.022693427, 0.00624546, 0.0019342537, 0.0228024, -0.021426627, 0.007369234, -0.03612423, -0.020718308, -0.03258264, -6.7043345E-4, -0.022489104, 0.0073351804, -0.061405744, 0.017721578, 0.014466038, 0.007171722, -0.024273522, -0.025662916, 0.011476118, -0.029640395, 0.024518708, -0.028114786, -0.022162188, 0.0022952235, -0.00260341, -0.0387668, -0.005056984, 0.014179987, -0.0070082643, 0.01457501, 0.0034343218, -0.0107473675, -6.7522225E-5, 0.0012131652, -0.0036437525, -0.03448965, 5.366128E-5, 0.0050808215, 0.016454779, 0.014179987, 0.0013766233, 0.016264077, -0.032010537, -0.01629132, 0.021644572, -0.019219942, -4.4908398E-4, -0.024654923, 0.0026544908, -0.011646386, -0.0050672, 0.005186388, -0.028577916, 8.1941864E-4, -0.027624412, 0.0028434892, -0.03500727, 0.010795043, 0.017272068, 0.010645206, 0.0029882176, -0.012606703, -0.043398116, 4.2545918E-4, 0.0118098445, 6.8958866E-4, 0.010393208, 0.015501273, 0.009126408, -9.77343E-4, -0.0062318384, 0.0015630677, 0.015092627, -0.0025029515, 0.0030324876, -0.072085, 0.02036415, -0.016509265, -0.0028400838, -0.004580231, -0.014466038, -0.005802761, 5.1798965E-5, -0.0017912278, 0.0012923402, -0.011060662, 0.03184708, -0.003521159, 2.889249E-5, -0.017885035, -0.008206957, 0.006722213, -0.020350529, -4.1524306E-4, 0.012497731, 0.0064191343, 0.024832003, 0.009262623, -7.9217565E-4, -0.0017980386, 0.009977752, 0.0014464335, 0.016345806, -0.015038141, -0.020418637, 0.008125228, -0.0117826015, 0.0072125867, 0.0119528705, 0.00248933, -0.018334545, -0.007021886, 0.0166591, 0.015773702, 0.02000999, -0.009439703, -0.026711771, -0.014275337, -0.02017345, -0.00814566, 0.011564658, -0.018974757, 0.013137941, 2.2603184E-4, -6.572376E-4, 0.021113332, 0.007593989, -0.01566473, -0.01403015, 0.013567018, -0.017040502, 0.0611878, -6.832036E-5, 0.008343171, 0.0027685708, 0.012954051, 0.005261306, 0.025458593, -0.027924085, -0.005867463, 0.0034632676, -0.0027004634, -6.955481E-4, 0.004052398, -0.023919363, -0.020582093, 7.32688E-5, 0.0132741565, 0.042934984, 0.01802125, 0.013287778, -0.0020483339, -0.008295496, -0.012742918, 0.0074237203, 0.01693153, -9.126408E-4, -0.040564843, 0.01710861, 0.008636034, 0.011012986, 0.015405922, 0.013451236, -0.005312387, 0.008983382, 0.002167522, 0.016386671, 0.0037186707, -0.0033985653, 0.0065655652, 0.030403199, -0.014534146, -0.010508991, -0.0026000047, 0.009902834, 0.015038141, 0.0010675854, -0.0029762988, -0.018675083, -0.039611336, 0.024818381, -0.015460408, -0.00407283, 0.023197422, 0.017871413, 0.014261715, 0.005867463, -0.022734292, 0.018947514, -0.016482022, 0.0074918275, -0.014016529, -0.019410644, -0.023238286, 0.039093718, 0.0041954233, -0.0042975848, 0.041627318, -0.0202688, 0.042853255, 0.024014713, 0.0383854, -0.025935344, 0.003902561, -0.012184436, 0.0013357588, -0.016441157, -0.0240692, 0.01339675, -0.010536234, -0.004147748, 0.012422812, 0.02988558, -0.02127679, 0.07061388, 0.022856886, 1.872957E-4, 0.018974757, -0.01294724, 0.01420723, 0.013832638, 0.018007629, -0.021971487, -0.008622413, 0.0010377883, -0.017326554, 0.0013417182, -0.02108609, -0.019124594, -0.00217263, 0.017040502, 0.01085634, -0.021739922, -0.013621504, 0.001138247, -0.0048492556, 0.04102797, -0.006109245, -0.0202688, -0.003144865, 0.014643118, -0.02517254, -0.011108337, -0.03160189, -0.0092558125, -0.021644572, -0.0114080105, -0.017885035, 0.025336, 0.0062590814, 0.009548675, -8.794384E-4, 0.0039536417, 0.01566473, 0.004723257, -0.0073079374, -0.025649294, -0.02687523, 0.023388123, -8.4410765E-4, -0.011278606, -0.021290412, -0.012885944 ], + "id" : "e9504457-1dc9-45a7-ba5b-d4ed50eac5ec", + "metadata" : { + "source" : "movies.csv" + } + }, + "534ae1a3-7941-491a-82ac-a98cd569a606" : { + "text" : "Jon Voight-Tom Sizemore-Alec Baldwin-Ewen Bremner-William Lee Scott-Greg Zola-Jennifer Garner-Jaime King-Catherine Kellner-Sara Rue-Michael Shannon-Dan Aykroyd-Colm Feore-Mako-John Fujioka-Cary-Hiroyuki Tagawa-Jesse James-Reiley McClendon-William Fichtner-Steve Rankin-Brian Haley-Graham Beckel-Will Bowden-Angel Sing-Rufus Dorsey-Matthew Davis-David Hornsby-Scott Wilson-Howard Mungo-Randy Oglesby-Ping Wu-Stan Cahill-Tom Everett-Tomas Arana-Beth Grant-Sung Kang-Raphael Sbarge-Marty Belafsky-Yuji Okumoto-Josh Green-Ian Bohen-Michael Milhoan-Peter Firth-Marco Gould-Andrew Bryniarski-Nicholas Downs-Tim Choate-John Diehl-Joseph Patrick Kelly-Ron Harper-Ted McGinley-Madison Mason-Kim Coates-Glenn Morshower-Paul Francis-Scott Wiper-Eric Christian Olsen-Rod Biermann-Noriaki Kamata-Garret Sato-Eiji Inoue-Precious Chong-Jeff Wadlow-Will Gill Jr.-Seth Sakai-Curtis Andersen-Blaine Pate-John Pyper-Ferguson-Michael Shamus Wiles-Toru Tanaka Jr.-Sean Gunn-Josh Ackerman-Matt Casper-David Kaufman-Lindsey Ginter-Guy Torry-Leland Orser-Peter James Smith-Pat Healy-Thomas Wilson Brown-Chad Morgan-James Saito-Tak Kubota-Robert Jayne-Vic Chao-Frederick Koehler-Ben Easter-Cory Tucker-Abe Sylvia-Jason Liggett-Bret Roberts-Sean Faris-Nicholas Farrell-Tony Curran-Daniel Mays-Toshi Toda-Jaymee Ong-Lisa Ross-Max Thayer-Camille Carida-Winston Churchill-Tanya Dempsey-Adolf Hitler-Frieda Jane-Kathleen Mullan-Lin Oeding-Barbara Scolaro-Melissa Anne Young,army-airplane-nurse-patriotism-hawaii-world war ii-pilot-pearl harbor-u.s. air force-dyslexia-pacific war-love-pin-up,/y8A0Cvp8WQmZ3bjbnsL53lY0dsC.jpg,/zv1xOEQzebKyku349qDZ085FZlO.jpg,95-853-22-597-744-9480-98-489-114-32657-14574-210577-2024-857-285-855-808-652-424-423-1933\r\n37135,Tarzan,Family-Adventure-Animation-Drama,en,Tarzan was a small orphan who was raised by an ape named Kala since he was a child. He believed that this was his family but on an expedition Jane Porter is rescued by Tarzan. He then finds out that he's human. Now Tarzan must make the decision as to which family he should belong to...,66.88,Walt Disney Pictures-Edgar Rice Burroughs Inc.-Walt Disney Feature Animation,6/18/99,130000000,448191819,88,Released,An immortal legend. As you've only imagined.,7.4,6016,Tony Goldwyn-Minnie Driver-Glenn Close-Alex D.", + "embedding" : [ 0.0070763086, -0.03505867, -0.012571883, -0.026865758, -0.010197419, 0.04773145, -0.0031446523, -0.014381319, -0.023677383, -0.033632647, 0.0054720314, 0.025076501, 0.014448585, -0.008569598, -0.009820732, 0.014865629, 0.012121206, -0.0078027737, 0.0030118034, -0.020152682, -0.003507885, 0.0016849956, -0.020475555, 0.0031766035, 0.0140584465, 0.011872324, 0.032394964, -0.011670528, -2.3458771E-4, 0.0015033793, 0.0091279, -0.018349972, 0.003608783, -0.02463255, -0.010661549, 0.002593077, -0.003558334, -0.041973542, 0.038260497, -0.0022971097, 0.0033329953, 7.8784477E-4, -0.010708635, -0.0052601458, -0.0073991823, 0.00228702, 0.004943999, -0.007486627, -0.013749026, 0.026314182, 0.029623635, 0.02445766, -0.005704097, -0.021995751, -0.023341056, -0.006319574, -0.022897106, 0.004436146, -0.008529239, 0.0023895996, 0.012289369, -0.016264748, -0.023462133, -0.017583147, -0.025412828, -0.015941875, -0.0079709375, -0.023246884, -0.0062220395, 0.008213093, 0.027282802, 0.01517505, 0.013278169, 0.01403154, 0.025964404, -0.030995848, -0.030538443, -0.0018027099, -0.008401435, 0.0037264973, 0.022950917, -0.001925469, -0.013735573, -0.0027343342, 0.023071995, 0.011367834, 2.0389791E-4, 0.028224517, -0.032529496, 0.023986803, 0.005694007, 0.026045121, -0.004143542, 0.008811753, 0.012780406, 0.02067735, -0.017932927, 0.021188566, -0.009100994, -0.03656541, 0.011246757, -0.0043688808, 0.002808326, -0.0145831155, -0.002268522, 0.008031476, -0.013675034, -0.007944031, 0.014636927, 0.022237906, 0.010042708, 0.0013587589, 0.020502461, -0.0479467, -0.0022668403, -0.02744424, 0.023071995, -0.0042242603, -0.007069582, -0.0056906436, 0.040305365, 0.021551799, 0.004688391, -0.032825463, 0.024524925, 0.043749347, -0.0013041059, -0.0228702, -0.0022348894, 0.0021070852, 0.036915194, 2.766285E-4, 0.015201956, 0.004550497, -0.021511441, 0.041220173, -0.019533841, 0.0026939749, -0.018148176, -0.011475459, 0.027659489, 0.02300473, -0.024215505, -0.020152682, -0.021511441, 0.014677287, 0.025964404, -6.158978E-4, 0.022897106, 0.014273695, 0.020623539, 0.028143799, 0.0027814198, 0.0047623827, 0.03145325, 6.821121E-5, 0.0055359337, -0.0042915256, -0.010210872, -0.02383882, 7.6808553E-4, -0.0030151668, -0.006534823, -0.0014781548, 0.0070359497, 0.016695246, 0.0155920945, -0.016251294, 0.0039821053, -0.010748994, -0.01060101, 0.032933086, -0.01777149, 0.010594283, -0.002821779, 0.022506967, -0.003401942, -0.01610331, -0.026637057, -0.01372212, -0.008899198, 0.013897009, 0.02436349, 0.03172231, -0.005868897, -0.0051794276, 0.022103375, -0.021767048, 0.0015849385, -0.022533873, -0.0015908242, 0.024188599, 0.008926105, -0.014959801, -0.6440248, -0.01610331, -0.01618403, 0.011166039, 0.032098997, 0.008515786, -0.0045807664, -0.0110247815, -0.035865854, -0.012006855, -0.033525024, 0.012518071, 0.031587783, -0.014085352, -0.01548447, -0.012518071, 0.007392456, -0.018094365, 0.019520387, 5.860489E-4, -0.030027227, 0.029650541, 0.0132983485, -0.0024080975, 0.018793922, 0.0032371422, -0.014502397, -0.037184253, 0.011199671, 0.01337234, -0.034681983, 0.02911242, 0.012538251, 0.0016883588, 0.040359177, 0.014044994, -0.017663866, 0.06317557, 0.017973287, 0.021605613, -0.022157187, 0.003082432, 0.018995719, -0.0077086026, -0.021632519, 0.022453155, -0.008455248, 0.012511345, 0.0038442116, -0.0028234606, -0.009807279, 0.014744552, -0.016560715, -0.01860558, -0.0091279, -0.009417141, 0.020287212, -0.042134978, 0.02674468, 0.0049406355, -0.02626037, 0.021659425, 0.0143140545, 0.022089923, 0.007715329, 0.027874738, 0.0016252976, 0.006407019, 0.0101167, -0.024309676, 0.0074664475, 0.012632422, -0.017663866, -0.0070763086, 0.007042676, 0.015578642, 0.0120404875, 4.468938E-4, -0.013271443, 0.021350004, -0.00817946, -9.448671E-5, 0.0076413373, 0.009935084, 0.014798365, -0.008704129, -0.037372597, 0.018672844, 0.013775932, -2.646469E-4, 0.006928325, 0.010251231, 0.0055830195, 0.013688487, -0.007843133, -0.013331981, -0.007150301, -0.001943967, 0.020650445, -0.06925634, -0.011213125, -0.036323257, 0.037776187, -0.013358887, 0.010883524, -8.4123656E-4, -0.008340896, -0.025668435, 0.021753596, -0.013614495, -0.012168291, -0.00392493, -0.010439574, -0.012518071, -0.008172733, -0.02449802, 0.017125744, 0.020381384, -0.005868897, -0.0058857133, 0.01680287, 0.006790431, -0.0041099093, 0.0029613546, 0.012726594, 0.04426056, -0.010944063, -0.015726626, 0.013937369, 0.0025039506, 0.0045572235, -0.008805027, 0.012612242, -0.021282738, 0.030107945, 8.879019E-4, 0.01746207, 1.08885695E-4, 0.019197514, 0.005613289, -0.02647562, -0.00505835, -0.0061177784, -0.006262399, -0.0016900405, -0.012726594, -0.01978945, 0.0092489775, -0.007372276, -0.009121174, -0.0074664475, 0.012666055, -0.011845418, 0.004896913, 0.011408194, 0.007473174, -0.03522011, -0.02172669, 0.0145831155, -0.01058083, 0.0076211574, 0.02841286, 0.003457436, -0.019937433, 0.026529431, -0.003279183, -0.0095180385, 0.007574072, -0.017031573, -0.004146905, 0.01895536, -0.026933024, 0.006040423, 0.006887966, -0.020852242, 0.009390235, 7.1553455E-4, 0.030592255, 0.006534823, -0.0028739097, -0.004469779, -0.0068408805, -0.025507, -0.006296031, 0.026421808, 0.021793954, 0.01785221, -2.186122E-4, -0.017448617, 5.7911213E-5, -0.022332078, -0.00187502, -0.0013453058, 0.0029479014, 5.7553867E-4, 0.021107849, -0.0036625953, 0.007822953, 0.00961221, -0.0051121623, 0.031641595, 0.024565285, 0.013749026, -0.0038610278, 0.0034473462, -0.019210968, 0.0013352161, -0.017650412, 0.010426121, -0.0057511823, 0.02217064, -0.009134627, -0.008011296, 0.013345434, 0.006568456, 0.021323098, -0.008697403, -0.0066155414, -0.011986675, 0.0023610117, 0.00864359, -0.01323781, 0.01517505, 0.007964211, -0.03008104, 0.010614463, -0.0013848242, -0.0052937786, 0.0022786118, -0.011515819, -0.00914808, -0.001637069, 5.902529E-4, 0.010883524, -0.0010543835, -0.029785072, 0.020381384, -0.004782562, 0.034332205, -0.01804055, -0.015255769, 0.01808091, 0.027215537, 0.0097601935, 0.008105468, -0.009840912, 0.013668307, 0.0077355085, -0.023246884, 0.038233593, 0.008354349, 0.026139293, 8.9631E-4, 0.016708698, 0.007843133, -0.01948003, -0.0033884891, 0.0078095007, 0.022601139, 0.03188375, 0.026179653, -0.033390492, 0.02436349, 0.005095346, 0.013446332, -0.008771394, -0.014717646, -2.1493364E-4, 0.0048767338, -0.018834282, -0.02387918, -0.0072848313, 0.019036077, -0.0021827586, 0.0019843262, -1.4199283E-4, -0.0055964724, 0.008650317, 0.021807408, 0.023327604, -0.0076413373, -0.042161886, 0.021605613, 0.026085481, -0.024888158, -0.0277133, -0.014287149, -0.016426185, -0.018592127, -0.006188407, -0.0035146116, 0.025184125, -0.021027131, 0.0039316565, -0.0026452076, 0.0133118015, 0.018915, -0.013318528, 0.017515883, 0.0046177623, 0.0040628235, 0.013762479, 0.0021255834, -0.008320717, 0.021928485, -0.021619065, -0.010210872, -0.0070292233, -0.0115359975, -0.006605452, 0.010372308, -0.006363297, -0.027955456, -0.0059058927, -0.012336454, -0.0014066854, -0.011966496, 0.0019826444, 0.017704224, -0.0274846, -0.025708795, -0.030592255, -0.03131872, 0.0045034112, 0.0910503, 0.044610344, 0.011697435, 0.0047859256, -0.011462006, -0.0030403913, -0.017219914, -0.00334813, -0.007843133, -0.017879115, 0.023260338, -0.016116764, 0.03672685, -0.0058655334, 0.010917157, 0.0014377956, -0.025843326, -0.015538283, 0.0051020724, -0.01610331, -0.017381351, -0.014139164, 0.027296256, 0.044152938, 0.015551736, -0.0070090434, 0.017542789, 0.0150808785, 0.0107758995, 0.0011233304, -0.006723166, 0.0028032812, 0.0038072155, 0.03368646, 0.002963036, -0.0021709874, 0.014112258, 0.009363329, 0.018403783, 0.007896946, -0.0056401948, 0.015148144, 0.010668276, -0.012141385, 0.015766984, -0.02449802, -0.018726658, 0.028466672, 0.03414386, -0.040170833, 0.013641401, 0.0067164395, -0.007997843, -0.011636896, 0.006622268, -0.002167624, -0.008152554, -0.0057780887, -0.0082467245, 0.013231083, -0.003169877, -0.027740207, 0.01777149, -0.01856522, 0.008192913, -0.023758102, -0.013459785, -0.010802806, -0.011381287, -0.0068576965, 0.016789418, -0.0145696625, -0.0037735829, -0.0061715906, 0.021269286, -0.0054316726, 0.024080975, -0.012114479, 0.021484535, -0.00391484, -0.024659457, -0.019493481, 0.0027915097, -0.030215569, -0.0050886194, 0.0041637216, -0.0076211574, 0.027054101, -0.0043487013, -0.0051155253, 8.5090596E-4, 0.0048700073, -0.0028419585, -0.020018151, 0.04517537, 0.0059159826, 0.011805058, 0.020569727, 0.011757974, -0.0055729295, 0.0010148651, -0.026367994, -0.007876766, -0.012518071, -0.0107758995, -0.0012578609, 6.726529E-4, -0.0037164073, -0.017421711, -0.035381544, -0.017340992, -0.017421711, -0.0039316565, 0.006040423, 0.01684323, 0.012719867, 0.014044994, 0.019466575, -0.011246757, 0.0014714283, 0.012329728, -0.036134914, 0.01469074, 0.021619065, -0.0024080975, 0.033471208, 0.0019506934, -0.015928421, 0.009544945, 0.02700029, 0.0036424156, 0.005818448, -0.019345498, -1.9990404E-4, -0.0033868074, -0.017744584, -0.0030084401, 0.0063363905, -0.011112226, 0.020125775, -0.01908989, 0.00621195, 0.017650412, 0.008630137, -0.017610054, -0.029946508, 0.010291589, 4.4100807E-4, 0.015807344, 0.017166102, -0.0058150846, 0.007896946, -0.013479965, -0.006790431, -0.007634611, -0.03893315, -0.017717678, 0.019775996, 0.028708827, 0.010822985, 0.03554298, -1.7016017E-4, 0.03734569, 0.011031508, 0.0033683095, 0.020246852, -0.035354637, 0.002552718, -0.0230989, -3.539836E-4, 0.012215377, 0.012659328, 0.0011636895, 0.008576325, 0.014435132, 0.009975443, 0.0013368977, 0.010143606, -0.0023778281, -0.021820862, -0.019628013, 0.014287149, -0.024793986, 0.0023929628, -0.006914872, 0.006433925, 0.042646196, -0.0015714854, -0.0016479996, -0.007533713, 0.021336552, -0.008650317, 0.010883524, -0.041220173, 0.00636666, -0.030592255, -0.0010829712, -0.016506903, -0.010130153, -0.006248946, -0.010560651, 0.021982297, 0.006111052, -0.010540471, -0.00555275, 0.02581642, -0.018793922, -0.025359016, 0.032045186, -0.011287116, -0.025143767, -0.04054752, -0.010224325, -0.037291877, -0.012605516, 0.0034103503, -0.0036592318, -1.5880915E-4, 1.8518975E-4, -0.052278586, 0.020381384, 0.007870039, 0.055076823, 0.02217064, 0.038152874, 0.018390331, 0.016735604, -0.01639928, 0.018148176, -7.3571416E-4, 0.0074328147, -0.0023711016, 0.014004634, -0.020354478, -0.002026367, 0.014166071, -0.007762415, -0.0492651, -0.025359016, 0.010177239, 0.022897106, 0.01922442, -0.02075807, -0.0041603586, -0.017273728, 0.016749058, -0.009222072, 0.0055863825, 0.00831399, -0.0369421, -0.020811882, 0.014166071, -0.006514644, -0.011831965, 0.010540471, -0.028305234, 0.025507, -0.01930514, 0.02040829, -0.012349907, -0.017139196, 0.04095111, -0.022668405, 0.012390267, 0.010204145, 0.0023929628, 0.0035953298, -0.009060635, 0.0028570932, 0.034386016, -0.014421679, 0.028305234, -0.0066895336, 0.0021205384, 0.008946284, 0.031964466, -0.013715393, -0.024242412, -0.026314182, -0.004816195, 0.03368646, 0.007728782, -0.0039114766, 0.01781185, -0.016856682, -0.008287084, 0.008556145, -0.017690772, -0.005969795, -0.040359177, 0.025695343, 0.008092015, 0.008038202, -0.005912619, -0.002963036, -0.019022625, -0.016991213, 0.004540407, -0.014771459, -0.003095885, -0.014421679, -0.025399374, -0.048054326, -0.034036238, -0.017098837, -0.013648128, 0.011509092, -0.017246822, -0.010641369, -0.010917157, 0.005794905, 1.1750406E-4, 0.0033464483, -0.013231083, 0.006961958, 0.012639148, -0.0044428725, -0.0075673456, -0.008623411, 0.01658762, 5.3770194E-4, 0.0016681793, -0.003494432, 0.0065550026, 0.03231425, -0.010318496, 0.014959801, -0.0053980397, -0.02019304, -0.010318496, 0.012585336, 0.03879862, 0.025654983, -0.014704193, -0.032986898, -0.015632454, -0.00668617, 0.031587783, 6.976147E-6, -0.0052702357, 0.032045186, 0.0052298764, 0.03527392, 0.018457597, -0.0016774283, -0.04469106, 0.016009139, -0.01420643, -0.030296288, -0.01777149, 0.0023492402, 0.0069081457, 0.014865629, -0.01205394, -0.0360811, 0.0012402039, -0.032018278, -0.020919506, -0.008132374, 0.024336582, 0.019533841, 0.00864359, 0.00179262, 0.009827459, 0.01785221, -0.0038610278, -0.018753564, -0.025143767, -0.0032438687, 0.007937305, 0.02757877, 0.02242625, -0.033794083, -0.022211, 4.238239E-5, 0.01847105, 0.0013789386, 0.0068173376, -0.029838884, -0.015067426, -0.010870071, 0.011905957, -0.009524765, -0.002332424, 0.024928518, -0.018753564, -0.003188375, 0.0034641626, 0.0030202116, -0.017300634, 0.00685097, 0.0077086026, -0.014731099, 0.0063733864, -0.006457468, -0.0138162915, -0.0064776475, -0.02591059, 0.014125711, 0.024255864, -0.0054720314, 0.027376974, 0.010762447, 0.0012275915, 0.006444015, -0.008192913, 0.013923916, -3.6680605E-4, 0.0030101219, 0.003292636, 0.022453155, -0.03409005, 0.011031508, -0.0365116, 0.009349876, 0.0054316726, -0.0073857293, -0.007997843, 0.046251614, 0.012080846, -0.058386274, 0.010325222, -0.011811785, 0.008132374, -0.023946444, -0.0041132728, -0.022116829, -0.020166134, 0.0067769783, 0.0042410768, -0.02410788, -0.023515947, -0.0063464805, -0.016614527, -0.016547263, 0.018444143, 0.17833374, -0.011710888, 0.0072848313, 0.042134978, 0.0079709375, 0.002821779, 0.036699943, 0.03522011, -0.0021642607, 0.002757877, -0.0044529624, -0.0017505792, 0.005196244, 0.0017943017, 0.021107849, -0.026583243, -0.02889717, -0.025897138, -0.02067735, -0.019870168, -0.002337469, -0.011078593, 0.0049002767, -0.023892632, 0.014300602, 0.0043722442, -0.017529335, -5.091142E-4, 0.011071867, -0.004540407, -0.007997843, -0.013991181, -0.008414888, 0.0077355085, -0.038072154, -0.00505835, -0.0024249137, 0.008670496, 0.00947768, 0.0031850117, 0.005630105, 0.00963239, -0.015888061, -0.0055729295, 0.0047993786, 0.032098997, -0.008401435, 0.010722088, -0.01697776, 0.0092624305, -0.036054198, -0.007977664, 0.0067433454, 0.026193105, -0.018269254, -0.006803884, 0.009645843, -0.003736587, 0.0076951496, 0.0067803417, 0.015901515, 0.028359048, -0.02525139, 0.015390299, -0.010634643, 0.022977823, -0.022372436, -0.0035684237, 0.011805058, -0.03285237, -0.00829381, -0.031991374, -0.007446268, 0.016372371, 0.003672685, -0.011320748, 0.0071906596, -0.0029966687, 0.0064271986, 0.00555275, -0.029166231, -0.010109973, 0.008704129, -0.004711934, -0.007883492, -0.01939931, 0.022762574, -0.025184125, -9.114447E-4, -0.024524925, -0.0067164395, -0.029166231, 4.8683255E-4, -0.009437321, -0.015148144, 0.007997843, 0.013749026, 0.018390331, -0.014636927, -0.0066895336, -0.023125807, 0.02854739, 0.018928453, -0.0013183998, -0.021699784, -0.0145696625, 0.005401403, 0.0038105787, 0.026717775, -0.016816324, -0.026273824, -0.026273824, 0.005105436, -0.0049742684, 0.006467558, 0.018376878, -0.001513469, -0.009188439, 0.043830063, -0.017906021, 0.0048498274, -0.031641595, 0.020341024, 0.010527018, -0.004180538, -0.038368125, -0.030269383, 0.01372212, -2.6801016E-4, -0.03637707, 0.015107784, -0.01060101, 0.010997876, 0.008791573, 2.9533668E-4, -0.0038105787, 0.02116166, 0.007042676, 0.0077086026, -0.0070494027, -0.004678301, -0.015565189, 0.014852176, 0.0035280646, 0.0024820892, -0.022924012, 0.00877812, -0.013607768, -0.019237874, -0.018793922, -0.028789544, -0.008327443, 0.011879051, 0.016950853, 0.04038608, -0.0059193457, -0.015888061, -0.03610801, -0.0051928805, 0.03616182, -0.026367994, 0.022197546, 0.029785072, -0.016856682, -0.026879212, -0.006296031, -0.1719839, 0.022372436, 0.009188439, -0.026206559, 0.008186186, 0.0030757056, 0.02405407, -0.0012839263, -0.0070494027, -0.025762606, 0.03522011, 0.005630105, -0.038825527, -2.446775E-4, -3.9980808E-4, 0.021753596, -0.020636993, 0.027686395, 0.030054133, 2.136724E-4, 0.03748022, -0.0027511504, -0.006824064, -0.0072848313, 0.018161628, 0.0034742523, 0.0316685, -0.010083067, 0.011166039, -0.014435132, -0.04358791, -0.009444047, 0.012080846, -0.0029781708, -0.013977728, 0.0036525053, -0.019143702, -0.01882083, -0.00701577, -0.009275883, 0.04339957, 0.008509059, 0.02335451, 0.008381256, 0.007426088, 0.028520484, 0.026421808, -0.009444047, 0.007183933, -0.005983248, -0.026233464, -0.0391484, 0.01009652, 0.011159312, 0.0030588892, 0.00819964, 0.018094365, 0.003686138, 0.011926136, -0.009376782, -0.025668435, -0.009484407, 6.251468E-4, -0.011885777, -0.0070763086, -0.009033728, -0.021928485, 0.0013654855, -0.02265495, 0.0076278844, -0.02494197, 0.011172765, 0.016762512, -0.0073251906, 0.013923916, -0.028655015, -0.026596697, -0.0023879178, -5.612448E-4, 0.012847671, -0.021592159, 0.050798748, -0.00848888, 0.01856522, -5.461101E-4, 0.008609957, 0.0021894854, -0.0020095506, -0.002113812, -0.022856746, 0.018228894, -0.016076405, -0.050610404, -0.0076682433, -0.008966464, -0.0032085543, -9.0177535E-5, 0.005912619, 0.012632422, -0.022022657, 0.008805027, -0.016870135, -0.013897009, 0.01618403, 0.033229053, 0.018309612, 0.011475459, 0.03414386, 0.019453123, 0.013755753, -0.006975411, -7.9709373E-4, 0.020556273, 0.002478726, -0.016372371, 0.014098805, -0.021672877, -0.019426217, 0.014408226, 0.010237778, 0.043695536, 0.007204113, 0.006988864, -0.010540471, -0.00458413, -0.012760226, -0.084269956, 0.012444079, 0.015780438, 0.03984796, -0.02265495, 0.039874867, -0.0029613546, 0.019210968, -0.024336582, 0.018417237, 0.0010409304, -0.034332205, 0.008852112, -0.007183933, 0.0013394201, 0.008838659, -0.019358952, -0.006467558, -0.026529431, 0.023906086, 7.9331006E-4, -0.019614559, -0.0031967831, -0.019950885, -0.0035717872, 0.0063128476, -0.024188599, 0.019601107, 0.0075269863, 0.019358952, 0.012343181, -0.021094397, 0.019426217, -0.04622471, -0.024188599, -0.010419394, -0.0125517035, -0.020744616, -0.0026653872, -0.04200045, 0.0016547262, 0.0020246853, -0.017018119, -0.033713363, -0.01697776, -0.0075807986, -0.048673164, 0.023637025, -5.772203E-4, -0.005741093, -0.0016311833, 0.0070292233, -0.021444175, -0.013681761, 0.020650445, 0.023771554, 0.02383882, 0.008576325, -0.0033262686, -0.0073991823, 0.0024114607, 0.006642448, 0.0027343342, 0.016022593, 0.0137423, 0.0073655494, 0.01469074, -0.007775868, 0.007688423, -0.02722899, -0.022211, 0.025722248, -0.025856778, -0.01290821, -0.017421711, 0.007298284, -0.033013806, -0.0070628556, 0.02498233, -0.036323257, 0.0072915577, -0.032664027, 0.0025611261, -0.023448681, 0.019345498, 0.021121303, 0.007022497, 0.004180538, -0.012578609, -0.04380316, -0.008912651, 0.012941842, -0.011166039, 0.0018918364, -0.005798268, 8.462815E-4, 0.020556273, -0.0021608975, -0.006914872, 0.011253484, -0.00817946, -0.004385697, -0.06866441, 0.033309773, -0.030861316, -0.008771394, -0.008105468, 0.0013150364, 9.047182E-4, -0.014004634, -0.0075471657, 0.01658762, -0.009269157, 0.008549418, -0.009854365, 0.007876766, 0.008697403, 0.010049434, -6.726529E-5, -5.133183E-4, 0.00866377, 0.0032943178, -7.357141E-5, 0.02265495, 0.028708827, -0.005613289, -0.0035146116, 0.011583083, -0.0022550689, 0.017515883, -0.021269286, -0.008320717, 0.033847895, -0.015215409, -0.013183997, 0.0031026115, -0.006100962, -0.023435228, 0.0048464644, -0.002510677, 7.008203E-4, 0.0087444885, -0.003534791, -0.009578577, -0.003975379, -2.5182444E-4, -0.02040829, 0.008556145, -0.0077691413, 0.01097097, 0.026179653, 0.0042410768, 0.030107945, 0.009827459, 0.0017043344, -0.005959705, 0.024551831, -0.017193008, 0.04684355, -0.004345338, -0.013695214, -0.02889717, 0.02019304, 0.013964275, 0.012497892, -0.020825334, -0.0048700073, -0.0024030525, -0.0020818608, -0.007937305, 0.008381256, -0.023246884, -0.017959833, -0.0031631503, 0.022251358, 0.028655015, 0.028332142, 0.026663963, 0.006225403, 0.006087509, -0.011636896, 0.022560779, 0.0043756072, 0.0011048324, -0.027054101, 0.015376846, 9.459182E-4, 0.019829808, 0.0018144812, 0.013500145, 0.016937401, 0.010029255, -0.007426088, 0.007372276, 0.0059058927, 3.0731832E-4, 0.003598693, 0.02362357, -0.0057679988, -5.725958E-4, -0.0012755181, 0.018376878, -0.010695182, -0.0036625953, -0.010143606, -0.021363458, -0.029004794, -0.0077960473, -0.030646067, -0.02313926, 0.004994448, 6.343958E-4, 0.028170705, 0.022251358, -0.01141492, 0.012027035, -0.04377625, 0.0035314278, 0.0011931182, -0.021040583, -0.014502397, 0.030672973, 0.017677318, 0.0011191263, 0.03809906, -0.008011296, 0.03575823, 0.0107758995, 0.009908178, -0.02841286, 2.0368771E-4, -0.0027881465, 0.008502333, -0.008401435, -0.025076501, 0.003095885, -8.504855E-4, 0.0014504079, 0.014704193, 0.031587783, -0.01922442, 0.069525406, -0.004385697, -0.0023593302, 0.0040729134, -0.019251326, 0.03145325, 0.013426152, 0.025345562, -0.01860558, -0.005095346, -6.705509E-4, -0.028655015, 0.006618905, -0.03139944, 0.012995655, -0.010291589, 0.021350004, 0.0097534675, -0.0034641626, 2.2870199E-4, -0.008044929, -0.00877812, 0.026650509, 0.012618969, -0.016479997, -0.018834282, 0.013089826, -0.006060603, 0.0024400484, -0.03852956, 0.007486627, -0.027363522, 0.0030067586, 0.003393534, 0.027255896, -0.0076413373, -0.012699687, 0.009033728, 0.015713172, 0.009713109, -0.02027376, -0.005946252, -0.028466672, -0.013009108, 0.02854739, -0.012531524, 0.0050650765, -0.026852304, -0.010957516 ], + "id" : "534ae1a3-7941-491a-82ac-a98cd569a606", + "metadata" : { + "source" : "movies.csv" + } + }, + "1cb021a1-b7ea-423e-a62e-bf137e670a87" : { + "text" : "Set in a world where monsters and humans co-exist the franchise tells the story of Wuba a baby monster born to be king. Wuba becomes the central figure in stopping an all-out monster civil war.,13.168,EDKO Films,2/16/18,0,361682618,110,Released,,6.8,104,Tony Leung Chiu-wai-Bai Baihe-Jing Boran-Chris Lee-Tony Yang-Eric Tsang-Zhang Li-Jiang Chao-Liu Beige-Cheng Zuo-Chen Xingyu,monster-sequel,/9wOkj2VXLvqUPQ77MUzgzuz6Cv5.jpg,/gKDuRB6Uj3gzF8Dd85DOtkxi7KC.jpg,334298-373200-10775-535167-494858-351286-135397-429617\r\n6477,Alvin and the Chipmunks,Comedy-Family-Fantasy-Animation,en,A struggling songwriter named Dave Seville finds success when he comes across a trio of singing chipmunks: mischievous leader Alvin brainy Simon and chubby impressionable Theodore.,42.033,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/13/07,60000000,361366633,92,Released,The Original Entourage,5.806,3919,Jason Lee-David Cross-Cameron Richardson-Jane Lynch-Justin Long-Matthew Gray Gubler-Jesse McCartney-Veronica Alicino-Allison Karman-Tiara Parker-Kira Verrastro-Beth Riesgraf-Adriane Lenox-Don Tiffany-Frank Maharajh-Kevin Symons-Jayden Lund-Alexis Boyd-Kyndra Reevey-Jay Bird-Natalie Cohen-Kevin Fung-Kevin Fisher-Jillian Barberie-Lorne Green-Greg 'G-Spot' Siebel-Oliver Muirhead-Erin Chambers-Chris Classic-Adam Riancho-Axel Alba-Rosero McCoy-Criscilla Anderson-Tucker Barkley-Celestina Aladekoba-Laura Edwards-Christopher Scott-Miss Prissy-Bryan Gaw-Michelle Maniscalco-Nick Drago-Melanie Lewis-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Colette Claire-Sommer Fehmel-Lisa Mason Lee-Rae Sunshine Lee-Eddie Mariano-Meghan Noone-Chris Rossi-Jameel Saleem-Melanie Stephens-Brianna Womick-Maria Zambrana-Gregg Lee,pop-pop star-record producer-surprise-approach-forest-concert-friendship-chipmunk-anthropomorphism-songwriter-talking to animals-duringcreditsstinger-live action and animation,/wEssFe5LCywsLfAcwELVXE38Fbj.jpg,/lKkkogTlIQT8o83GFQZZ3CA9MzB.jpg,12133-23398-55301-258509-5559-9982-8920-41513-9836-13053-10527-22794-7518-7484-810-9928-10555-15512-9513-10137-9408\r\n38575,The Karate Kid,Action-Adventure-Drama-Family,en,Twelve-year-old Dre Parker could have been the most popular kid in Detroit but his mother's latest career move has landed him in China. Dre immediately falls for his classmate Mei Ying but the cultural differences make such a friendship impossible. Even worse Dre's feelings make him an enemy of the class bully Cheng. With no friends in a strange land Dre has nowhere to turn but maintenance man Mr. Han who is a kung fu master.", + "embedding" : [ 0.012866331, -0.029443713, -0.012757583, -0.037790176, -0.02527048, 0.01973789, -0.0027187176, -0.010861277, -0.012118684, -0.038442668, 0.018432906, 0.017073547, 0.03542489, -0.0026405544, -0.00103906, 0.009372779, 0.019289302, -0.02155943, 0.0052267346, -0.027472641, 0.0029854919, 0.0068443716, -0.024971422, -0.0092640305, 0.0028546536, 0.014096551, 0.027513422, -0.0025538953, -0.015102477, -0.024944235, 0.0078027197, -0.019262115, -0.0010662471, 2.8164216E-4, -0.008298886, -0.011792438, 8.86132E-4, -0.029498087, 0.034745213, -0.012145871, 0.004458697, 0.0277717, -0.0065249223, 0.0042378013, 0.006504532, 0.006463751, 0.025936566, -0.0011333654, -0.011425411, 0.015170445, 0.012716802, 0.03284211, -0.017155109, -0.0267114, -0.009807774, 0.0044281115, -0.005393256, 0.008285292, -0.0069565186, -0.005566574, -5.4119475E-4, 1.2212989E-4, -0.02363925, -0.017902756, -0.027418267, 0.00888341, -0.012370165, -0.013077032, 0.014803418, 0.008829036, 0.031020569, 3.9400166E-4, 0.015238413, -0.0077687358, 0.017753227, -0.02849216, -0.035560828, 0.013036251, 0.011296272, -0.003931945, 0.010263159, -0.019656328, -0.013131406, 0.0057874704, 0.02599094, 0.026154064, -0.015428723, 0.008081389, -0.031183692, 0.0042717853, -0.010956432, 0.023883935, 0.0052709137, -0.00595739, 0.0014774532, 0.024536427, -0.010548624, 0.025895786, -0.030694323, -0.030639948, -0.013369294, -0.005005839, -0.007503661, -0.0146538885, -0.0072113983, 0.026167657, -0.010643779, -0.010066052, 0.029253403, -0.0066744518, -0.021083655, 0.0061646923, 0.03276055, -0.04556571, -0.018731965, -0.019846639, 0.016217152, -0.009311608, 0.0074560833, -0.00998449, 0.011901187, 0.039312657, 0.009705822, -0.025678288, 0.036349256, 0.034826774, -0.013797492, -0.01507529, 0.004931074, -0.027948417, 0.020376788, -0.008067795, 0.022796448, 0.009699025, -0.024087839, 0.050105967, -0.026317187, 0.0084144315, -0.01602684, -0.028084353, 0.047414437, 0.031509936, -0.03015058, -0.016353087, -0.026792962, 0.005077205, 0.009060127, 0.0027153192, 0.013111016, -0.005981179, 0.035859887, 0.0050126356, 0.019724296, 0.009766993, 0.034908336, 0.016597772, 0.0057636816, -0.0028444584, -0.0030075815, 0.001172447, -0.0138722565, 0.0042479965, -0.012560476, -0.0092640305, -0.011860406, 0.023965497, 0.021776928, 0.0020594287, 0.0044892826, -0.0011996342, -0.014123738, 0.036458004, -0.015605439, 0.0054748175, -0.0065181255, 0.017698852, 0.0074220994, 0.0040101083, -0.04110701, -0.011520566, -0.005033026, -0.004210614, 0.017997911, 0.02633078, -3.1626332E-4, 0.0044722906, 0.0123361815, -0.016312307, 0.016217152, -0.004808732, 0.018310564, 0.027092021, 0.018541655, -0.0035071457, -0.6485773, 0.0026490504, -0.008230918, 0.0018810128, 0.008156153, 0.008951378, 0.02079819, -0.010766122, -0.019044617, -0.01066417, -0.018093066, 0.006086529, 0.02720077, -0.028655283, -0.019180553, 0.0038265951, 0.0013236756, -0.029008718, 0.01617637, -0.0014910467, -0.011432208, 0.026792962, -0.007564832, -0.005583566, -0.0016839057, 2.8185456E-4, -0.01206431, -0.0075240512, 0.0048936917, 0.010426282, -0.013838273, 0.030069018, 0.014205299, 0.0014834004, 0.03958453, -0.021056468, -0.024305336, 0.03218962, 0.018528061, 0.007089056, -0.024250962, -0.012492508, 0.0067152325, -0.006823981, -0.004424713, 0.007870687, 0.019860232, -0.014626701, 0.013246952, -0.0015556163, -0.009930116, 2.1293081E-4, 0.022660512, -0.0152112255, -0.013484839, -0.009576683, 1.5972466E-4, -0.018555248, 0.012832347, -0.007952249, -0.002781588, 0.03257024, 0.028193101, 0.021763334, -0.0047135768, 0.031401187, -0.0067050373, 0.010283549, 0.0123021975, -0.026072502, 0.001977867, 0.005835048, -0.012186652, -0.016380275, 2.580658E-4, 0.037219245, 0.028709657, -0.0061646923, -0.0016864545, 0.016230745, 0.001664365, 0.0027238152, 0.008210528, 0.0032029892, 0.019656328, -0.031129317, -0.027486235, 0.014164519, 0.005705909, -0.003131623, 0.011221507, 0.022592545, -0.0039625308, -0.012200246, 0.014721856, 0.017019173, -0.019262115, 0.008951378, 0.02189927, -0.046381325, -0.023870341, -0.003141818, -0.0068681603, -0.019330082, -0.0085775545, 0.015795749, -0.00667785, -0.0029481095, 0.036458004, -0.018038692, -0.003877571, 0.007496864, -0.012247823, -0.015523878, 0.008998956, -0.028736845, 0.010032068, 0.0025114154, 0.022742074, -0.0050024404, -0.0120847, -9.863847E-4, 0.014164519, -0.02174974, -0.0046524056, 6.078883E-4, -0.001146959, 0.010467063, -0.004475689, -0.0034289826, -0.005998171, -0.0047781463, 0.020512724, -0.012220636, 0.013389684, 0.009916523, 0.031836182, 0.007857094, 0.018528061, 9.226648E-4, -0.02556954, -0.0041902238, -0.00315881, -0.009291218, -0.0012743989, -0.015890904, -0.008006623, 0.0016320802, -0.008570758, 4.655804E-4, 0.003277754, -0.0021155023, -0.0035989024, 0.020213665, 8.5512165E-4, -0.0017433777, -0.019493205, -0.021817708, 0.003877571, -0.0052165394, 0.0043329564, 0.004227606, -0.016366681, -0.01032433, 0.0199282, 0.003867376, 0.005991374, 0.009454341, -0.017889163, -0.033739287, 0.0021155023, -0.013430465, -0.0116497055, 0.014830605, -0.009597073, 0.02633078, -0.010487453, 0.0028733448, -0.012166262, -0.005022831, -0.0023465932, -0.0018164433, -0.0089038005, -0.03156431, 0.041949812, 0.009821367, 0.011853609, -0.016910424, -0.008346464, 0.008570758, 0.00101782, 0.008631929, -0.014218893, 0.009257234, 0.0013678548, 0.014314048, -0.0020016558, 0.0124653205, 0.020893345, 0.020104917, 0.0387961, 0.022823635, -0.01829697, -0.008169747, 0.0048155286, -0.050975956, 0.00292602, -0.050405025, 0.015034509, 0.010942838, 0.020023355, 0.010392298, 3.1626332E-4, -0.0019761678, 0.010956432, 0.019520393, -0.004407721, -0.00958348, -0.013430465, -0.017032767, -0.008930988, -0.011133148, 0.023516908, 0.013831476, -0.011439005, 0.013913037, -0.007129837, 0.017630884, 0.008101779, -0.019805858, -0.005219938, -0.0021002095, 0.015061696, 0.007150227, -0.009182469, -0.0072046015, 0.035859887, -0.02272848, 0.03363054, -0.0030160774, -0.0078095165, 0.025583133, 0.032407116, -0.021681773, 0.00958348, -0.008557164, 7.248144E-5, -0.0030449638, -0.019452425, 0.040209834, -0.02781248, 0.021287559, -0.018215409, 0.022307077, 0.0036023008, -0.02272848, -0.0012947893, 0.0057195025, 0.029715585, 0.01263524, 0.00534228, -0.0089377845, 0.011751657, 0.018555248, 0.027527016, -0.0010535031, -0.015931685, -0.007530848, -0.015292787, -0.036539566, -0.01151377, -0.027024053, -0.010528234, -0.013437262, 0.010263159, -0.007857094, -4.1163084E-4, 0.011486582, 0.015306381, 0.023122694, 0.003948937, -0.015279193, 0.0068511683, 0.018609622, -0.018038692, -0.010752528, -0.017263858, -0.013471246, -0.03936703, -0.011078774, -0.022646919, 0.02811154, 0.0018878096, 0.0051077907, -0.03360335, -0.005620949, 0.023815967, -0.019085398, 0.015360755, 0.024278149, 0.0060117645, 0.032923672, -0.021885676, -0.01757651, 0.012771176, -0.012193449, 0.00924364, 0.017562917, 0.006351604, 0.00816295, 0.0019387855, -0.0062938314, -0.03186337, 0.031428374, -0.017331826, 0.0037620256, -0.007598816, -0.005349077, 0.021573024, -0.0025827817, -0.009318405, -0.019860232, -0.020784596, 0.0023346988, 0.08107216, 0.016570585, 0.027255144, 0.025528759, 0.0060559437, 0.03303242, -0.029634023, -0.026004534, 0.0029820935, -0.0029141256, 0.001621885, -0.028383411, 0.025256887, 0.01259446, 0.019452425, -0.020254446, -0.01670652, -0.018460093, 0.013790695, -4.9319235E-4, -0.00712304, 0.0058146575, 0.017494949, 0.031999305, -0.0045062746, -0.0071434304, 0.013831476, 0.03333148, -0.0044960794, -0.005230133, -0.020553505, -0.0049106837, 0.015007322, 0.008108576, -0.0137091335, 0.0047985367, 0.02041757, 0.015687, 0.020336008, 0.007979436, 0.0025369034, 0.024495646, 9.7024237E-4, -0.033875223, 0.01443639, -0.008679506, -0.0083804475, 0.009671838, 0.031836182, -0.024726737, 0.026534684, -0.004672796, -0.016747301, 0.0062938314, 0.018922275, -0.01371593, -0.017644478, -0.0025470986, -0.014300454, 0.006650663, 0.014803418, -0.027975604, 0.023666438, -0.0035513248, -0.012485711, -0.020471944, -0.017780414, -0.016448243, 0.0011461094, 0.019452425, -2.4532177E-4, -0.018990243, -0.014178112, -0.0011452598, 0.0022293485, -0.003415389, 0.03610457, 0.0011121255, -0.014762637, 0.010902057, -0.031074943, -0.03993796, -0.002662644, -0.01935727, -0.016788082, 0.008108576, 0.02249739, 0.030259328, 0.0020985103, -0.008761068, 0.011622518, 0.021695366, -0.002249739, -0.0041868254, 0.033956785, -0.02909028, 0.011418615, 0.026303593, 0.007401709, 2.0921382E-4, 0.008591148, -0.027092021, -0.0026303593, -0.0037348385, -0.0025046186, -0.030422451, -0.011207913, -0.008047405, -0.025216106, -0.023571283, -0.00835326, -9.957303E-4, 0.01848728, 3.9081567E-4, 0.023272224, -6.682098E-4, 0.02359847, -0.0016694625, -0.008428025, 0.0042751837, 0.009012549, -0.010229175, 0.013729524, 0.041895438, -0.0010951335, 0.022062393, 0.0025318058, -0.03126525, -0.0036090976, -0.0048733014, -0.010283549, 0.018052286, 0.006059342, 0.010161207, -0.013838273, -0.013287732, 0.0037110497, 0.022116767, -0.011316663, -8.103053E-5, -0.026575465, 0.0012438133, 0.013573198, -0.010059255, 0.004020304, -0.024753924, 0.0049446677, -9.311608E-4, 0.008149357, 0.020240853, -0.01814744, 0.008869817, -0.0095902765, -0.0031825989, -0.0112894755, -0.042683866, -0.021817708, 0.0034629665, 0.02446846, 0.011010806, 0.045157902, 5.662579E-4, 0.029878708, 0.0028036775, 0.006426369, 0.009556293, -0.022674106, 5.3057476E-4, -0.023992684, -0.0042819805, 0.010752528, 0.009814571, 0.015428723, 0.0017773616, -0.0084144315, 0.022959571, 0.0023075116, 0.024495646, 0.008033811, -0.010059255, 0.0051485715, 0.021396307, -0.031319626, 0.008631929, -0.013260545, -0.017331826, 0.023421753, -0.01742698, -0.0054748175, -0.013056641, 0.014749044, -0.009338795, 0.01996898, -0.015143258, 0.007829906, -4.659521E-5, -0.0061646923, -0.027214363, 0.001446018, 0.009379576, -0.003483357, 0.015143258, -0.019031024, -0.023421753, 0.008203731, 0.019805858, 0.004611625, -0.04499478, -0.005862235, -0.0035683168, -0.016502617, -0.027717326, 0.0059336014, -0.04273824, -0.017087141, -0.0033661122, -0.023245037, 0.008258105, -0.008597945, -0.02537923, 0.024957828, -0.009991287, 0.048964106, 0.01772604, 0.047604747, 0.020132104, 0.011445802, -0.024441272, -0.0032114852, 7.918265E-4, -0.025120951, 0.017590104, 0.028818406, -0.0065521095, 0.016638553, -0.008047405, 0.0029651015, -0.043472294, -0.043390732, 0.0044688922, 0.029253403, 0.009998084, -0.013654759, 0.0027510023, 0.0023652844, 0.023748, -0.027499828, 7.6506415E-4, 0.0042649885, -0.03697456, -0.016339494, 0.0042989724, -0.010827293, 0.0049174805, 0.006008366, -0.017399793, 0.009556293, -0.009331998, -0.014082957, -0.01034472, -0.005117986, 0.021097248, -0.0076395967, -6.643866E-4, -0.00271362, 0.008842629, 0.015700594, 0.0019557774, -0.0011800934, 0.03542489, -0.01916696, 0.018623216, -0.004122256, -0.008040608, 0.0015105875, 0.019901013, -0.018908681, -0.021314746, -0.032298367, -0.0031995908, 0.016910424, 0.014191706, -0.005903016, -0.017821195, -0.01988742, -0.010331127, 0.005298101, -0.01935727, 0.018242596, -0.045212276, 0.01704636, 0.0046592024, 3.311313E-4, 0.005223336, -0.0053388816, -0.0022191533, -0.0025097162, 0.033875223, 7.832243E-6, -0.006949722, -0.018500874, -0.00886302, -0.035778325, -0.0220488, -0.010922448, -0.030803071, 0.017658072, -0.013668353, 0.009957303, 0.002302414, -0.016570585, -1.4857367E-4, -0.008394041, -0.008971768, 0.028329037, 0.0231091, -0.0039251484, -0.01564622, -0.0011104263, 0.03792611, 0.018364938, -0.005352475, 0.014477172, 0.0015912994, 0.03958453, -0.022211922, 0.015034509, -0.008210528, -0.041841064, -0.0036566753, -0.0031622085, 0.0430373, 0.010222378, 0.006942925, -0.035506453, 0.0034714625, -0.0012242725, 0.04518509, -0.013178984, 0.00517236, 0.03485396, 0.006025358, -0.0073473346, 0.014368422, -0.0045980313, -0.016461836, 0.0051485715, -0.012356572, -0.023326598, 0.006351604, 0.0069395266, 0.023652844, -8.4874965E-4, -0.0057364944, -0.031890556, -9.0737204E-4, -0.028954344, -0.0135120265, 3.2019274E-5, 0.031428374, 0.009352389, -0.00727257, -5.3524756E-4, 0.02083897, -0.013573198, 0.021205997, -0.037137683, 0.005903016, 0.0035139425, 0.013070235, 0.008978565, 0.029253403, -0.018555248, -0.006609882, 0.0015369251, 0.021192404, 0.0026677416, 0.02909028, -0.023435347, -0.020743815, -0.009746603, -0.007021088, -0.0042411997, -0.0028427592, 0.026031721, -0.03352179, -0.0012208741, 0.0011393126, 0.01121471, -0.022633325, -0.016733708, 0.016298713, -0.022932384, 0.02996027, -0.015252006, -0.007850297, -0.0059879757, -0.018460093, 0.025392823, 0.0021970638, 7.829057E-4, 0.017685259, 0.020662254, -0.021681773, -0.0124993045, -0.013974208, -0.0021426894, -0.018025098, -0.0060525453, 0.008971768, 0.016502617, -0.030667135, 0.01647543, -0.0184465, -0.0029803943, 0.0010152712, 0.022782855, -0.010106833, 0.037599865, 0.010630186, -0.04700663, -0.01761729, -0.0010186696, 0.017685259, -0.019098992, -0.0032760547, -0.009936913, -0.003965929, -0.017223077, -0.0045504537, -0.017644478, -0.016244339, 0.006942925, -0.017032767, -0.0366755, 2.6762376E-5, 0.19172397, -0.011262288, 0.015632626, 0.03129244, 0.016869644, 0.0052165394, 0.0101136295, 0.008686303, -0.010235972, 0.010392298, -0.007700768, 0.024876267, 0.0057296976, 0.0026218633, 0.0033661122, -0.015999652, -0.02401987, -0.019819451, -0.026045315, -0.027839668, -0.022456607, -0.008652319, -0.009318405, -0.018759152, -0.008618335, -0.001450266, -0.018364938, 7.977737E-4, 0.019194147, 0.023177069, -0.015347161, -0.010766122, -0.0026388553, 0.010766122, -0.026752181, -0.003704253, -0.01647543, -1.5292787E-4, 0.01263524, 0.008849426, -0.014558733, -0.010371908, 0.00905333, 3.657525E-4, -0.00727257, 0.023285817, -0.020172885, -0.0153743485, -0.016937612, 0.021695366, -0.021437088, -0.003440877, 0.021437088, 0.030069018, -0.02518892, -0.0018691184, -0.007408506, -7.433994E-4, -0.011472989, -0.0016312306, 0.0060049677, 0.040101085, -0.024876267, 0.0071026497, -0.019751484, 0.008047405, -0.020906938, -4.2097643E-4, 0.021423494, -0.03564239, -0.012349775, -0.024332523, -0.017807601, -0.008924191, 0.005573371, -0.01704636, -0.00262866, 0.023041133, 0.00907372, 0.0144907655, -0.009189266, -0.03542489, 0.0077415486, -0.016448243, -0.0097533995, -0.018174628, 0.024223775, -0.0048834966, 0.002516513, -0.01473545, -0.009168875, -0.01734542, -0.026344374, 0.008128966, 0.017984318, 4.383932E-4, 0.0076192063, 0.009617464, -0.0012395653, -0.00994371, -0.013151797, 0.034527715, 0.044233534, 0.0031554117, -0.017875569, -0.022510983, 0.0026915304, -0.0011588534, 0.019683516, -0.0133489035, -0.0061578956, -0.045538522, -0.0039625308, -0.02662984, 0.0037008545, 0.021545837, 0.004988847, 7.6846255E-4, 0.01905821, -0.017685259, -0.012118684, -0.010847683, 0.0031078341, -0.008998956, -0.0048936917, -0.023081914, -0.014884979, 0.019221334, 0.0032981443, -0.01263524, 0.017929943, -0.033467416, -0.0019591758, 0.008509587, -0.005189352, 0.015687, 0.026208438, 0.01681527, 0.0032641604, 0.0019438831, -3.275205E-4, -0.01662496, 0.018174628, 0.0054000528, 0.01405577, -0.010140817, 0.0070142914, 0.01761729, -0.006015163, -0.030966194, -0.016013246, -0.013811085, 0.0012166261, -0.00462182, 0.025052983, -0.003415389, -0.039802026, -0.009535902, -0.007761939, 0.029606836, -0.049426287, 0.010358314, 0.013879053, -0.0153743485, -0.028655283, -0.018052286, -0.17497666, 0.01587731, 0.015700594, -0.020145698, 0.02151865, 0.009454341, 0.017671665, 0.01666574, 0.0019727694, -0.020893345, 0.015564659, 0.023136288, -0.038687352, -0.008081389, 0.015510284, 0.012580866, 0.0016677633, 0.019615548, 0.022361452, -0.007306554, 0.027744513, 0.0020934127, -0.018745558, 0.012689615, 0.004142646, 0.017997911, 0.015986059, -0.0023245036, -9.447544E-4, -0.012050716, -0.024998609, -0.01973789, 0.0016584178, 0.0038537823, -0.010895261, 0.0053728656, -0.007265773, -0.017508542, 0.007986233, -0.0067424197, 0.023612063, 0.019901013, 0.018364938, -0.0027034248, 0.014517953, 0.02068944, 0.0209885, -0.02132834, -0.003072151, -0.01996898, -0.0072929603, -0.03469084, 0.024985015, -0.007755142, 0.014789824, 0.02030882, -0.008128966, 0.004159638, 0.0037246433, -0.0011112759, -0.019316489, 0.001874216, 0.01085448, -0.013987802, 0.0011155239, -0.019248521, -0.004132451, 0.022198329, -0.030966194, 0.010772918, -0.019656328, -0.0021239982, 0.0070142914, -0.0055427854, -0.0049514645, -0.016652146, -0.02249739, 0.010779715, 0.0040101083, 0.03145556, -0.027894042, 0.021967238, -0.011608925, 0.014585921, 0.011500176, 0.002739108, 0.010399095, -0.017481355, -0.003965929, -0.032515865, 0.0032063876, 0.0026575464, -0.03322273, 0.004628617, 0.015551065, 0.012866331, -0.0040848735, 0.007299757, 0.018011505, 0.0071706176, -0.002584481, -0.01070495, -0.009495121, 0.020594286, 0.028519347, 0.008930988, 0.02170896, 0.033494603, 0.024713144, -7.5911696E-4, -0.0072793667, 0.025474384, 0.026507497, 0.016502617, 0.0018521264, -0.00939317, -0.0032998435, -0.016801676, 0.00665746, 0.004519868, 0.036077384, -3.615045E-4, -0.02595016, -0.010650576, -0.01405577, -0.014694669, -0.07829907, 0.015741374, -0.008183341, 0.030422451, -0.036158945, 0.033005234, -0.011744861, 0.032488678, -0.0055088014, 0.023231443, 0.0022616333, -0.05035065, 0.0068375748, -0.009889335, 0.017644478, -0.0010985319, -0.015986059, 0.02287801, -0.025827818, 0.03276055, -0.0027527015, -0.0059845774, -1.9477063E-4, -0.0046693976, -0.024155807, 0.010602999, -0.0326518, 0.031156505, 0.009277624, -3.245469E-4, 0.012485711, -0.022810042, 0.025841411, -0.039312657, -0.007401709, -0.028709657, -0.04262949, -0.022606138, 0.014123738, -0.07530848, 0.020213665, 0.007021088, 0.016828863, -0.03227118, -0.015347161, -0.0038130016, -0.03164587, 0.016991986, 0.0016754097, -0.030259328, -0.027282331, -0.029389339, -0.03534333, 0.006609882, 0.025392823, 0.009495121, 0.010643779, -0.0062326603, -0.014042176, -0.0043499484, 0.004482486, -0.019452425, -0.04662601, 0.005196149, -0.0051757586, 0.010555421, 0.0021155023, 0.012492508, 0.021926457, -0.020893345, -0.022823635, 0.016720114, -0.024713144, -0.004880098, -0.008455212, 0.004937871, -0.006942925, -0.015496691, 0.0277717, -0.026847336, -0.008829036, -0.02889997, -0.018079473, -0.026575465, 0.016502617, 0.019031024, 0.0056787217, 0.0031299237, 0.0109632285, -0.030694323, 0.0013585092, 0.022103174, -0.0035683168, -0.010630186, -0.0039693275, 0.025936566, 0.014463578, 0.0028733448, -0.0063957833, 0.015768562, 0.0041086623, -0.007986233, -0.07220914, 0.014314048, 0.006426369, -0.0068001924, -0.009814571, -0.015890904, 0.014178112, -0.006667655, 0.004458697, 0.005835048, -0.015319974, 0.009821367, -0.0041120606, -0.012682818, -0.013253748, 0.0034204866, 0.010569015, -0.00979418, -0.013253748, -0.0040610847, -0.012132278, 0.019914607, 0.015360755, 0.008122169, -3.585309E-4, 0.017304638, -0.0069123395, 0.031917743, -0.007700768, -0.016393868, 0.015700594, -0.03458209, 0.0066982405, 0.014708263, 0.010548624, -0.022334265, -0.009026143, 0.011901187, 0.015768562, 0.022211922, -0.008754271, -0.017059954, 1.2425389E-4, -0.033983972, 0.0012132277, 0.038170796, -0.019669922, 0.008618335, 0.019996168, -3.5045968E-4, 0.025447197, 0.013070235, -0.0047271703, -0.01734542, -2.584906E-4, -0.01810666, 0.048474737, 0.008319276, 0.00801342, 0.011833219, 0.011275882, -0.008400838, 0.017821195, -0.02412862, 0.0042989724, 0.009298014, 0.0069293315, -0.020675847, 0.011799235, -0.03651238, 0.0075172544, -0.0070074946, 0.011371037, 0.0018419313, 0.016149184, 0.01829697, -0.0025827817, 0.005654933, -0.014354829, 0.01897665, 0.012560476, -0.01049425, -0.02306832, 0.010915651, 0.018840713, 0.01170408, 0.01829697, 0.012458524, -0.0152112255, 0.01791635, -0.027024053, 0.010405892, -0.005671925, 0.020091323, -0.014681076, 0.040943887, -0.011928374, -0.017929943, 0.015387942, 0.0366755, 0.009699025, 0.0062190667, -0.017155109, -0.0140693635, -0.011071977, 0.004356745, -0.009128095, -0.024998609, 0.010161207, 0.024645176, 0.01689683, 0.017603697, -0.013233358, 0.008387244, -0.028247476, 0.0033661122, -0.009800977, -0.022320671, -0.024971422, 0.03678425, 0.009196063, 0.014585921, 0.016747301, -0.01757651, 0.029878708, 0.016869644, 0.019112585, -0.011676893, 7.455234E-4, 0.0026932296, 0.012417743, -0.012451727, -0.04205856, -0.0035921056, -0.00479174, -0.006290433, 0.008108576, 0.034935523, -0.013763508, 0.05807181, 0.030177766, -0.0069735106, 0.0188679, -0.027037647, 0.008183341, 0.02928059, 0.007469677, -5.0083874E-4, 0.0026660424, -0.007626003, -0.018392125, -6.558906E-4, -0.018541655, 0.0015828034, 0.011887593, 0.004064483, 0.005607355, 0.0018011504, -0.011670096, 0.01350523, 0.001600645, 0.036158945, 0.025012203, -0.011323459, -0.004852911, 0.029878708, -0.0059166094, -0.020403976, -0.042765427, -0.0033780066, -0.013219764, -0.010004881, -0.012968283, 0.020036949, -0.011676893, 6.908304E-5, 0.0020645263, 0.025392823, 0.0018538256, 1.4698067E-4, 0.002086616, -0.019629141, 0.0075512384, 0.014150925, -0.022796448, -0.009270827, -0.031972118, -0.027159989 ], + "id" : "1cb021a1-b7ea-423e-a62e-bf137e670a87", + "metadata" : { + "source" : "movies.csv" + } + }, + "ca825757-6e60-455b-9248-db0e0b2f0dd7" : { + "text" : ",/2utD8HsTSAifq2eYBzT76mAf6Td.jpg,\r\n36557,Casino Royale,Adventure-Action-Thriller,en,Le Chiffre a banker to the world's terrorists is scheduled to participate in a high-stakes poker game in Montenegro where he intends to use his winnings to establish his financial grip on the terrorist market. M sends Bond���on his maiden mission as a 00 Agent���to attend this game and prevent Le Chiffre from winning. With the help of Vesper Lynd and Felix Leiter Bond enters the most important poker game in his already dangerous career.,44.315,Eon Productions-Stillking Films-Columbia Pictures-Studio Babelsberg-Danjaq-Casino Royale Productions-Government of the Commonwealth of the Bahamas-Metro-Goldwyn-Mayer,11/14/06,150000000,599045960,144,Released,Everyone has a past. Every legend has a beginning.,7.5,9563,Daniel Craig-Eva Green-Mads Mikkelsen-Judi Dench-Jeffrey Wright-Giancarlo Giannini-Caterina Murino-Simon Abkarian-Isaach De Bankol��-Jesper Christensen-Ivana Miliۍeviۈ-Tobias Menzies-Claudio Santamaria-S��bastien Foucan-Malcolm Sinclair-Richard Sammel-Ludger Pistor-Joseph Millson-Darwin Shaw-Clemens Schick-Emmanuel Avena-Tom Chadbon-Ade-Urbano Barberini-Tsai Chin-Lazar Ristovski-Veruschka von Lehndorff-Charlie Levi Leroy-Tom So-Andreas Daniel-Jessica Miller-Carlos Leal-Christina Cole-J�_rgen Tarrach-John Gold-Diane Hartford-Leo Stransky-Paul Bhattacharjee-Crispin Bonham-Carter-Rebecca Gethings-Peter Brooke-Robert G. Slade-F��licit�� Du Jeu-Michaela Ochotsk��-Michael G. Wilson-Valentine Nonyela-Phil Meheux-Alessandra Ambrosio-Vlastina Sv��tkov��-Ivan G'Vera-Richard Branson-Martin Campbell-Tara Cardinal-Ben Cooke-Simona Roman-Greg Bennett-Alexander Hathaway,italy-poker-casino-based on novel or book-terrorist-banker-money-free running-torture-mi6-british secret service-montenegro,/lMrxYKKhd4lqRzwUHAy5gcx9PSO.jpg,/kjC48HRQpojr3FHx5pZF7Ro9xFg.jpg,10764-24257-37724-21-206647-36669-710-2501-714-56292-954-2503-1271-2502-36643-10528-161-85-89-272-1571\r\n38757,Tangled,Animation-Family,en,When the kingdom's most wanted-and most charming-bandit Flynn Rider hides out in a mysterious tower he's taken hostage by Rapunzel a beautiful and feisty tower-bound teen with 70 feet of magical golden hair. Flynn's curious captor who's looking for her ticket out of the tower where she's been locked away for years strikes a deal with the handsome thief and the unlikely duo sets off on an action-packed escapade complete with a super-cop horse an over-protective chameleon and a gruff gang of pub thugs.,84.873,Walt Disney Animation Studios-Walt Disney Pictures,11/24/10,260000000,592461732,100,Released,They're taking adventure to new lengths.,7.", + "embedding" : [ -0.0043620663, -0.025462454, -0.018240128, -0.024342924, -0.01815821, 0.023960646, -0.018922767, -0.006758131, -0.037927452, -0.033394724, 0.023332618, 0.02721001, -0.007843528, -0.00971396, 0.022349618, 0.031674474, 0.016151251, -0.02461598, 0.014403693, -0.02804283, -0.012929192, -4.3283612E-4, -0.027865345, 0.001875552, -0.010983669, 0.0019847744, 0.020820504, -0.019578101, -0.0032049925, -0.010321509, 0.007427118, 0.0072291526, -0.019359656, -0.0072428053, -0.009304376, -8.609791E-4, 0.0059730955, -0.0059526167, 0.019550795, 0.002228818, 0.011775532, 0.02118913, -0.015987417, -2.2719096E-4, -0.026814079, 0.022431534, -0.0028704992, -0.016219515, -0.011051933, 0.030609556, 0.019974032, 0.038992368, -0.02427466, -0.027387496, -0.029490028, -0.01105876, -0.016164903, 0.0028619661, 0.00603112, -0.006665975, 0.01570071, -0.022021951, -0.02431562, -0.030254584, -0.022445187, -0.0036350554, -0.002662294, -0.0031418484, -0.01064235, 0.0058092624, 0.030964527, 0.027483067, 0.01785785, 0.0014915674, 0.017530182, -0.018840851, -0.039756924, 0.01658814, -0.005205126, 0.0037374513, 0.02319609, 0.0040173335, -0.003979788, 0.0091610225, 0.009229287, 0.017775932, -0.0046214694, 0.027223663, -0.029189665, 0.009522821, 0.033121668, 0.031920224, -0.0110655865, 0.018171864, -0.010437558, 0.017885156, -0.010246419, 0.017434614, -0.015632445, -0.031674474, 0.025994912, 0.0029234036, 0.003240831, -0.0045668585, -0.014799625, -0.01624682, -0.0035326595, -0.020711282, 0.02412448, 0.0056181233, -0.010458037, 1.6679336E-5, 0.030773388, -0.02192638, -0.009277071, -0.020055948, 0.027182706, -0.0027254382, 0.008512515, -0.0068537006, 0.009932404, 0.03211136, 0.026841385, -0.026745817, 0.038500868, 0.016629098, 0.0037749964, -0.007754785, 0.002186153, 0.00401392, 0.025558023, 0.0040002675, 0.01628778, 0.002314148, -0.022103867, 0.03533342, -0.021830812, -0.00428015, -0.03200214, -0.03317628, 0.026049523, 0.024752509, -0.02437023, -0.034022752, -0.003449036, 0.0046248827, -0.011563913, -0.0058911787, 0.015373042, -0.008225806, 0.02583108, 0.020028643, 0.01899103, 0.013611832, 0.0061301026, 0.011120197, -0.007345201, -0.006771784, 0.0069048987, -0.025380537, -0.0055362065, -0.0056010573, -0.022499798, -0.0038978716, 0.010833489, 0.029872306, 0.004007094, -0.010198634, 0.011434211, 0.018786239, -0.003764757, 0.021953687, -0.01105876, 0.012471824, 0.003645295, 0.022308659, -0.0018806718, -0.021243742, -0.020247087, -0.012608352, 0.008676348, 0.013966804, 0.03904698, 0.026158746, 0.0012867755, 0.0068298085, 0.035688393, -0.012512783, -2.0439187E-5, -0.020875117, -0.009515995, 0.011529781, 0.0015623912, -0.0023278007, -0.6409166, -0.005181234, -0.019864809, 0.0064031584, 0.0038739792, 0.014444652, -2.2761761E-4, 0.018431267, -0.02989961, 0.004112903, -0.026732164, -0.007154062, 0.013857582, -0.018363003, -0.03459617, -0.02153045, 0.0025445388, -0.010539954, -0.0031367284, 0.018868156, -0.040794536, 0.022827465, -8.28127E-4, 0.010403426, 0.016478918, 0.008573952, -0.02221309, -0.02847972, 0.0097549185, 0.00804832, 0.004710213, 0.0045259, -0.0010239593, 0.00846473, 0.0313195, 0.0010794237, 0.002943883, 0.032029446, 0.038418952, 0.030746084, -0.0038159548, 0.0054850085, 0.0045327265, -0.00829407, -0.008969883, 0.022636326, 0.018281085, 0.0055532726, -0.018144557, 0.0058980053, -0.009399946, -0.017980725, 0.001627242, -0.008908446, -0.015550528, -0.0014028242, 0.010341989, -0.027128095, 0.012540088, -6.2376185E-4, -0.014076027, 0.017898807, 0.0011903526, 0.011639004, 0.006304176, 0.0072496315, -0.017393654, -0.008594431, 0.014430999, -0.028152054, 0.006665975, 0.0059082448, -0.011215767, -0.017448265, 0.0037272116, 0.0019745347, 0.029244276, 0.0025889103, -0.021557756, 0.022376923, -0.0037784097, -0.015059028, -0.027032524, 0.019974032, 0.023059562, 0.0038466735, -0.01605568, 0.014990764, 0.024656938, 0.022049256, 0.009686654, 0.015373042, 0.025175745, 0.023346271, -0.013666443, 0.019291392, -0.019550795, -0.014116985, 0.04016651, -0.05474769, -0.013393387, -0.0234828, 0.004235778, 0.010376121, 0.027619595, 0.0125673935, -0.008157542, -0.007775264, 0.036780618, -0.019632712, -0.0069526834, -0.014813277, -0.018772587, 0.012362601, -0.004215299, -0.035852227, 0.01869067, 0.009748092, 0.006925378, -0.009270244, 0.0052085393, 0.014212554, 0.011284031, -0.022295006, -0.004577098, 0.028534332, 0.004426917, -0.014458305, 0.017461918, -0.0036555345, 0.016123945, 0.014949805, 0.021735242, -0.026363539, -0.013434346, -0.018294739, 0.023660285, 0.011010976, 0.005266564, -0.008751439, -0.025039217, -0.01297015, -0.0021537277, 0.00343709, -0.019072948, -0.027865345, -0.023373576, 0.0049866815, -0.009925579, 5.836568E-4, -0.009427251, 0.011884754, -0.0028005287, 0.009010841, 0.015059028, 0.0017902221, -0.022991298, -0.014403693, 0.008997189, -0.015768973, -0.005652255, 0.008990362, -0.015782624, -6.570405E-4, 0.027169053, -0.003049692, -0.0061266897, 0.014390041, -0.0017262247, -0.027687859, 0.0100006685, -0.0073520276, -0.014881541, 0.015236514, -0.0039320034, 0.03762709, -0.01757114, 0.022813812, 0.004816022, -0.0059867483, -0.013905367, -0.004665841, -0.03317628, -0.018554142, 0.0147859715, 0.015823584, 0.007372507, -8.341001E-4, -0.010123543, 0.001909684, -0.0036043366, -0.008403292, -0.017038682, 0.013919019, 0.006290523, 0.03211136, 0.030746084, -0.0031776868, -0.002670827, 0.028588943, 0.043415874, 0.030172667, -0.015782624, -0.0062222593, 0.0054099183, -0.029626554, 0.018827198, -0.004443983, 0.030937223, -0.026677553, 0.015878195, -0.0025530718, -0.028534332, 0.003645295, 0.0013192008, 0.029380804, -0.009099585, 0.0066113635, -0.0051948866, 0.0010444385, 0.0048945253, -0.005116383, 0.01157074, 0.01736635, -0.009249765, 0.008505688, 0.02026074, -0.014485611, -0.010382947, -0.017093293, 0.005720519, -0.015045375, -0.0023243874, -0.012642483, 0.0057102796, -0.008335029, 0.035743006, -0.0061915405, 0.037408646, -0.02378316, 0.0022987886, 0.02001499, 0.027182706, -0.012813143, 0.002483101, -0.017584793, 0.0051744073, 0.014772319, -0.009031321, 0.059963055, -0.022786507, 0.028015526, -0.012424039, 0.009830009, 0.015059028, 0.0046726675, 0.010082586, 0.011966671, 0.019646365, 0.0100348005, 0.021325659, -0.006860527, 0.0072428053, 0.0023482798, 0.018581448, -0.014062374, -0.012505956, 0.007884487, -0.0057102796, -0.013591353, -0.006027707, -0.011693615, -0.0019301632, 0.010833489, 0.0078162225, -0.0048467405, 1.8559261E-4, 0.0043279347, 0.012840449, 0.027769776, -0.008696827, -0.02264998, 0.01580993, 0.015973764, -0.014854236, -0.043579705, -0.0041845804, 0.0072837635, -0.041531786, 0.006225672, -0.012676615, 0.018977378, -0.02192638, -0.0070448397, -0.011127024, -0.02153045, 0.008874314, -0.015386694, 0.024902688, 0.012389907, 0.0070243604, -0.00586046, -0.0071950206, -0.005996988, 0.029025832, 0.015373042, 0.0024557956, 0.009236112, -0.0035190068, -0.006857114, 0.016984072, 0.012041761, -0.041613705, 0.01013037, -0.018417614, -1.9583221E-4, -0.005406505, 0.0044303304, 0.017748628, -0.004095837, -0.014321777, -0.016274126, -0.026063176, 0.0026059763, 0.07470807, 0.03273939, 0.0035121802, -0.013352429, -0.006925378, -0.0052085393, -0.00561471, -0.023018604, -0.005239258, 0.012000803, 0.027114442, -0.006990229, 0.010103065, 0.027387496, 0.022062909, -0.0073929857, -0.0011604872, -0.00301556, 0.005116383, -0.016123945, -0.019823851, -7.0653186E-4, -0.002194686, 0.04134065, -0.006409985, -0.014499263, 0.015181903, 0.014731361, 0.0056761475, 0.0049627894, -0.005389439, 0.012860929, 0.0031828068, -0.006061839, -0.0018721388, -0.012826797, 0.010423905, 0.0059355507, 0.018417614, 0.014321777, 0.008696827, -7.03972E-5, -0.018868156, 0.0040924237, 0.010758399, -0.026950607, -0.018963726, 0.008485209, 0.015154597, -0.02314148, 0.019373309, -1.7289979E-4, -0.009502342, -0.01458118, 0.012587872, 0.008894793, -0.020369964, -0.023059562, -0.0020496252, -0.0026588808, 0.01015085, -0.043688927, 0.03257556, -0.016069334, 0.014335429, -0.024097174, -0.012929192, -0.010062106, -0.004044639, 0.01653353, 0.0029199906, -0.021161824, -0.027715163, -0.014362736, 0.023400882, -0.009686654, 0.016970418, -0.0038808056, 0.006027707, 0.026008565, -0.025325926, -0.035114978, -0.008567126, -0.038500868, -0.031537946, 0.0047375183, 0.019305045, 0.007140409, -0.006508968, 0.013256859, -0.004682907, -0.0073929857, 0.002662294, -0.010048454, 0.030172667, 0.008287244, -0.0030650513, 0.018390309, 0.018376656, 0.010410252, 0.01323638, -0.010273725, -0.02452041, -0.012089546, 0.011925712, -0.021489492, 0.0094750365, 0.01550957, -0.016765626, -0.007686521, -0.030227277, -0.010628697, -0.0032510706, 0.017639404, 0.0040173335, -0.003109423, 0.026390843, 0.016437959, -0.0015530048, -0.0028722058, 0.0067274123, 5.2520575E-4, 0.013359255, 0.024656938, -0.0082531115, 0.023810467, -0.0065294467, -0.03151064, 0.011918886, 0.018322045, 0.025066523, 0.014635791, -0.027619595, -0.026445454, -0.021066256, -0.014854236, 0.011010976, -0.022909382, -0.008628563, 0.018322045, -0.020683978, 0.008655869, -0.004652188, 0.0076114307, 1.9967205E-4, -0.030063445, -0.011140677, 0.0084101185, 0.005133449, 0.02529862, -6.766664E-4, -0.0045497925, -0.039320037, -0.0034763417, 0.007106277, -0.03953848, -0.049450405, 2.159914E-4, 0.024097174, -1.3727453E-4, 0.03929273, 0.0052631507, 0.026267968, 0.0035633782, 0.022049256, 0.0048876987, -0.01458118, 0.0020445052, -0.035551865, 0.009659349, 0.01333195, 0.03694445, 0.016219515, 0.0052119526, -0.008778744, 0.01565975, 0.011318163, 0.021830812, -0.0066113635, -0.0139121935, -0.024793467, 0.016956765, -0.03405006, -0.018322045, -0.033121668, -0.009256592, 0.015427653, -0.023701243, 0.0016579607, -0.0068707666, 0.015864542, -0.011133851, 0.004409851, -0.024056217, 0.02187177, -0.0021298353, -0.017407307, -0.025121134, 0.010935885, 0.0037579306, -0.0074339444, 0.023400882, -0.008061972, -0.023428189, -0.0032852027, 0.020342657, -0.016915808, -0.008191674, 0.016123945, -0.008683175, -0.0046078167, -0.033531252, 0.0018363002, -0.02168063, -0.00922246, 0.009365814, -0.026855038, 0.007618257, -0.028015526, -0.052426714, 0.02563994, -0.007570472, 0.05597644, 0.013133984, 0.037763618, 0.017393654, 0.011461518, -0.01918217, 0.008662695, -0.006188127, -0.0012688562, 0.033640474, 0.030363806, -0.03893776, -0.0025360058, -0.019113906, -0.010171329, -0.039401952, -0.028943915, 0.02910775, -3.065478E-4, 0.021803506, -0.027783427, 4.6974132E-4, -0.0293535, 0.019687323, -0.01785785, 0.0025479519, 0.015236514, -0.04658332, -0.012785838, 0.0121305045, -2.2207116E-4, 0.015550528, -0.006625016, -0.022527104, 0.027919956, -0.002080344, -0.0040514655, -0.008894793, 0.0011801131, 0.041422565, -0.021325659, 0.013338776, 4.5267533E-4, 0.0058638733, -0.010348815, -0.0108198365, 0.008492036, 0.024192745, -0.017557489, 0.01658814, 0.0051573412, -0.010505822, -0.0027595703, 0.026336232, -0.0293535, -0.018868156, -0.011365948, -0.014171597, 0.02215848, 0.0038296077, -0.01849953, -0.010826662, -0.01458118, -0.0072769374, -0.019127559, 0.002641815, 0.006188127, -0.036726005, 0.003979788, -0.018581448, -0.005167581, 0.0058297412, 0.0040480522, 0.010328336, 4.164101E-4, 0.022868423, -0.006898072, -0.006304176, -0.014035068, 0.0033244544, -0.04027573, -0.020779546, -0.0217762, -0.016137598, 0.0015214328, -0.030964527, -0.005942377, 4.223832E-4, -0.018458573, -0.024411188, 0.011802837, -0.008055146, 0.0057648905, 0.026513718, -0.011031454, 0.0045566186, -0.0045873374, 0.023769507, 0.020970685, -0.0013243207, 0.021503145, 0.012922366, 0.0121305045, -0.035688393, 0.0017902221, -0.013564047, -0.019878462, -0.010669655, 0.0030377458, 0.019086601, -0.010929058, -0.021653324, -0.020670325, -0.0065772315, -0.012335296, 0.02910775, -0.006010641, -0.010608218, 0.04300629, 0.030254584, 0.025708204, -9.480156E-4, -0.01996038, -0.019346004, 0.0015137531, -0.017093293, -0.019987686, -0.002314148, 0.009399946, 0.010089412, 0.013024761, -0.01291554, -0.026786774, 0.00661819, -0.022690937, -0.022062909, -0.0037067325, 0.041313343, 0.051798686, 0.018144557, 0.0027971154, 0.034268502, -0.0058911787, 0.011959844, -0.017393654, 0.0054372237, 0.017161557, -0.017639404, 0.0073861596, 0.03385892, -0.045108818, 0.010321509, 0.0044337437, 0.0046214694, -0.007741132, 0.02989961, -0.0135981785, -0.015878195, -0.012267032, 0.0039422433, 0.015564181, -0.0076319096, 0.014212554, -0.03306706, 3.460129E-4, 0.0117414, 0.030554945, -0.0024694484, 0.007761611, -8.9596433E-4, -0.01996038, -0.0019642953, -0.027319234, -0.01927774, 0.0025854972, -0.015495917, 0.012144157, -0.0077684377, -0.0039183507, 0.025421495, 0.019359656, 3.323601E-4, 0.004652188, -0.01815821, -0.024779813, -0.021475838, 0.010485343, 9.3948265E-4, 0.032766696, -0.010021148, 0.0038227811, -0.011748226, 0.013639137, -9.37776E-4, 0.0036555345, 0.0020666912, 0.02823397, 0.014895194, -0.04658332, 0.010328336, -0.025312273, 0.018513184, -0.0012074186, 8.4348646E-4, -0.015864542, -0.01550957, -0.018786239, -0.006270044, -0.016328737, 0.0020137865, 0.015960112, -0.0051983, -0.0041572745, 0.010307857, 0.19255896, -0.0026981325, -0.0020581582, 0.059963055, -0.010512648, 0.019318698, 0.02910775, 0.008430598, -0.009830009, 0.028425109, -0.010444384, 0.006990229, -0.016820237, -0.0025496585, -0.0017560901, -0.0074749026, -0.021120867, -0.031592555, -0.008949404, -0.008362334, -0.027278274, -0.011468343, 7.944217E-4, -0.017680364, -0.010082586, -0.001080277, -0.0036726005, -0.002471155, 0.04456271, 0.0055737514, -0.0139121935, -0.01605568, -0.01560514, 0.011031454, -0.013468478, -0.0076592155, 0.0025121134, 0.010205461, 2.111916E-4, 0.0028397804, -0.0035838573, 0.0029626554, -0.0016579607, -0.013755186, 0.0063963323, 0.01677928, -0.024943648, -0.007993708, -0.015359389, -0.008000535, -0.050187655, -9.036441E-4, 0.010601391, 0.016205862, -0.0013021348, -0.0028175947, 0.018185517, 5.77257E-4, -0.009106411, -0.010526301, -0.0038671528, 0.028561637, -0.024588674, -0.0039695487, -0.011871101, 0.025448801, -0.027619595, 0.012096372, 0.010294204, -0.029244276, -0.011215767, -0.023346271, -0.0176121, 0.0048706327, -0.024684245, -0.011331816, 0.006048186, 0.014963458, 0.012116851, 0.0077138264, -0.011727747, -0.017707668, 0.008259938, -9.2071004E-4, -0.0070380135, -0.020929728, 0.017202515, -0.011557087, -0.008430598, -0.008075626, -9.88974E-4, -0.017052336, -0.02158506, -0.002641815, -0.012212421, -0.011365948, 0.033722393, 0.013605005, -0.016356042, -0.01776228, -0.033531252, 0.022991298, 0.01323638, 0.013270512, -0.016656404, -0.011823316, -0.0017799825, 0.008949404, 0.03484192, -0.01967367, -0.009502342, -0.045955293, 0.001222778, -0.011727747, 0.0059560295, 0.017065987, 0.0020752242, -0.010683308, 0.033148974, -0.019619059, -0.004508834, -0.03552456, -0.004228952, -0.002462622, -2.2591102E-4, -0.028834693, -0.0244658, 0.0025769642, -0.0023039083, -0.017967071, 0.01467675, -0.017939767, 0.0060038143, 7.765024E-4, 0.0018653125, 0.01047169, 0.028015526, 0.006324655, 0.003993441, 0.005546446, 0.02026074, -0.015523222, 0.01570071, 0.018717974, 0.014881541, -0.033613168, 1.3844782E-4, 7.031187E-4, -0.0066454955, -0.008997189, -0.0039183507, -0.020069601, -8.652456E-4, -0.014171597, 0.023551064, -0.012273858, -0.006051599, -0.029326193, -3.123076E-4, 0.022499798, -0.039893452, 0.025489759, 0.014007763, -0.011959844, -0.0062120194, -0.004286976, -0.1756295, 0.031128362, 0.00528363, -0.024629634, 0.011932539, 0.012212421, 0.024629634, 0.014308124, 0.003573618, -0.022226742, 0.017625753, -0.0015274059, -0.03694445, -0.022759201, 0.012069066, 0.032084055, -0.012383081, 0.033831615, 0.010089412, 0.0026179226, 0.04849471, -0.008771918, -0.012949672, 0.0020206128, 0.020137865, -0.0059014186, 0.0039183507, -0.013857582, -0.013325123, -0.010731093, -0.02103895, -0.009420426, 0.0024813947, 0.024452148, 0.002824421, 0.009591085, -0.008662695, -0.009563779, 0.0019386963, -0.0071267565, 0.02118913, 0.036425643, 0.0058980053, 0.006734239, -0.0018363002, 0.030609556, 0.026991567, -0.015837237, -0.008116583, -0.0013029882, 0.013591353, -0.028698165, 0.04194137, -0.014048721, 0.027196357, 0.023605675, -0.007754785, -0.002670827, 0.010683308, 0.0045805112, -0.025462454, -0.014362736, 0.0110655865, -0.02103895, -0.0073929857, -0.03235711, -0.008423772, 0.029135054, -0.030855305, 0.01649257, -0.02422005, -0.012437692, 0.0091610225, 4.0723712E-4, 0.010321509, 0.0060550123, -0.022021951, -0.0016460145, 0.0043313475, 0.01766671, -0.02001499, 0.051116046, -0.0011297684, 0.0017304912, 0.01516825, -0.023592021, 0.016110292, -0.0011357415, 0.004478115, -0.014458305, 0.015946459, -0.01707964, -0.0035019408, -0.01550957, 8.029547E-4, 0.010970017, -0.007857181, 0.007638736, 0.0045907507, -0.012656136, -0.0059867483, -0.008014188, -0.001875552, 0.012212421, 0.019168517, 0.0130862, 0.012533261, 0.029080443, 0.030554945, 0.0070789717, -3.7118523E-5, 0.018117253, 0.018089946, 0.032766696, -0.014895194, 0.01147517, -0.024179092, -0.026076829, -0.00628711, -0.0036896665, 0.03869201, -0.0039661354, 0.0027186119, 0.010676482, -0.01291554, -0.009352162, -0.08573952, -0.015086333, 0.004317695, 0.040876452, -0.028998526, 0.031428725, -0.008061972, 0.024192745, 0.0037988888, 0.02020613, -0.0038978716, -0.015263819, 0.007181368, -7.649829E-4, 0.01467675, 0.0023687591, -0.011563913, -5.567779E-4, 0.0027407976, 0.03260286, -0.015332083, -0.019905768, 0.0073929857, -0.037954755, -0.009952884, 0.009768572, -0.032411724, 0.017939767, -0.007672868, -0.0026776535, 0.021912728, -0.014758666, -8.97671E-4, -0.034268502, -0.026199704, -0.0185951, -0.004635122, -0.020779546, 0.02138027, -0.043197427, 0.008061972, 0.00878557, -0.0025206464, -0.03323089, 0.0025445388, 0.01570071, -0.033640474, 0.01840396, -0.016014723, -0.021653324, -0.016219515, -0.011871101, -0.0077820905, 0.007959576, 0.02916236, 0.025407843, 0.014704055, 0.003129902, -0.005911658, -0.011243072, 0.025558023, -0.028561637, -0.01952349, 0.0030718779, 0.005662495, 6.148022E-4, -0.010949538, 0.0052460846, 0.026800428, -0.0029490027, -0.01382345, 0.02505287, -0.033039752, -0.013509436, -0.023373576, 0.0056590815, -0.03306706, -0.027537677, 0.029817693, -0.029626554, -8.5841917E-4, -0.030636862, -9.770278E-4, -0.017448265, 0.013325123, 0.01869067, 0.023578368, 0.021899076, -0.008860661, -0.037408646, -0.0128472755, 0.013837103, 0.00511297, -0.02158506, 0.0014454891, 0.028152054, 0.008116583, 6.920258E-4, 5.4099184E-4, 0.0038432605, -0.009959711, -0.017502878, -0.07623718, 0.02387873, -0.017243475, 0.0012697094, 0.0030172665, 0.0020018404, 0.00846473, 0.0038569132, 0.011857448, 0.009802704, -0.0065908846, -0.0076455623, 0.013980458, 0.011352295, -0.007304243, 0.0047614104, 0.02613144, 5.934697E-4, -0.007925444, 0.021025296, -0.031838305, 0.013639137, 0.04144987, -0.0051061437, 0.015564181, 0.016683709, 0.010901753, 0.027428456, -0.0064543565, -0.01575532, 0.02725097, -0.018868156, -0.010526301, 0.004201646, -0.018485878, -0.024752509, 0.00444057, 0.0043279347, 0.019455226, 0.016724668, -0.014622138, -0.020806853, -0.013843929, -2.4340364E-4, -0.0063963323, 0.020192476, -0.03101914, 0.0069526834, 0.03713559, 0.020315351, 0.027906302, 0.009686654, -0.016997723, -0.0039149374, 0.008573952, -0.005652255, 0.037517868, 0.0015717775, 0.008887966, -0.019291392, 0.030636862, -0.0024557956, 0.0232507, -0.0528636, -0.003573618, 0.015823584, -0.0051027304, 0.0079390975, 0.009973363, -0.016328737, 0.007017534, -0.0011954724, 0.010014322, 0.018458573, 0.005648842, 0.020274393, -5.3075224E-4, -0.0019284566, -0.0028312474, 0.0031947528, 0.021980992, -0.01560514, -0.026267968, -0.0021810331, 4.1854335E-4, 0.025953954, -0.018854503, -3.7395846E-4, -0.011946191, 0.016451612, 0.003836434, 0.0024438493, 0.01096319, -0.0044337437, 0.010894926, 0.019113906, -0.017584793, -0.012656136, 0.0018175277, 0.033394724, 0.0041845804, -0.004703386, -0.015919153, -0.011652657, 8.387933E-4, -0.0039695487, -0.016478918, -0.036234505, 0.017789586, 0.0059696827, 0.022595368, 0.014499263, -0.009488689, 0.015823584, -0.021216435, 0.008457904, -0.0033329874, -0.039156202, -0.0077479584, 0.039593093, 0.012075893, 0.0090518, 0.035497256, -0.022882076, 0.036671393, 0.01056726, 0.017134251, -0.01819917, 3.3891985E-5, -0.02113452, -0.00971396, 0.012028108, -0.019619059, 0.0036964929, -0.007986882, -0.012348949, 0.003611163, 0.02514844, -0.022322312, 0.07159523, 0.031128362, 0.007638736, 0.00812341, -0.018390309, 0.0047136256, 3.829181E-4, 0.012744879, -0.01840396, -0.018813545, -0.0073520276, -0.014731361, -0.0065704053, -0.030473027, -0.013263686, 7.701027E-4, 0.009242939, 0.02989961, -0.022854771, -0.023578368, 0.010164502, 0.0038569132, 0.012615178, 0.004153861, -0.0058160885, -0.016956765, 0.04035765, -0.00973444, -0.014704055, -0.02241788, 0.0066420822, -0.025162091, -1.5572713E-4, -0.014717707, 0.02558533, -0.010178155, -0.006334895, 0.0016340683, 0.014758666, 0.02779708, -0.022240395, -1.1316883E-4, -0.02774247, -0.03680792, 0.008007362, 0.009707134, -0.016670058, -0.0078162225, -0.029244276 ], + "id" : "ca825757-6e60-455b-9248-db0e0b2f0dd7", + "metadata" : { + "source" : "movies.csv" + } + }, + "a27231b2-1ff7-4323-9d36-151b85b5ea1e" : { + "text" : "Hudson-Isabella Acres-Stephen Apostolina-Kimberly Bailey-David Boat-June Christopher-Antonio Raul Corbo-David Cowgill-Wendy Cutler-Hudson D'Andrea-Grey DeLisle-Jessica DiCicco-Terri Douglas-Robin Atkin Downes-Nick Fisher-Jackie Gonneau-Franck Gourlat-Daniel Kaz-Phil LaMarr-Arnaud L��onard-Mimi Maynard-Scott Menville-Melanie Minichino-Max Mittelman-Matt Nolan-Capri Oliver-Arthur Ortiz-Paul Pape-Michael Ralph-Akai Robinson-Lynwood Robinson-Maddix Robinson-Kaitlyn Robrock-Violet Grace Schaffer-Pepper Sweeney-Fred Tatasciore-Jean-Alain Velardo-Kari Wahlgren-Matthew Wood,princess-magic-kingdom-winter-queen-castle-musical-sequel-dam-spirit-frozen-personification-mother daughter relationship,/mINJaa34MtknCYl5AjtNJzWj8cD.jpg,/xJWPZIYOEFIjZpBL7SVBGnzRYXp.jpg,109445-512200-181812-475557-546554-420809-420818-420817-454626-496243-508965-508439-495764-301528-458897-326359-429617-530915-466272-38757-359724\r\n346698,Barbie,Comedy-Adventure-Fantasy,en,Barbie and Ken are having the time of their lives in the colorful and seemingly perfect world of Barbie Land. However when they get a chance to go to the real world they soon discover the joys and perils of living among humans.,441.504,LuckyChap Entertainment-Heyday Films-NB/GG Pictures-Mattel-Warner Bros. Pictures,7/19/23,145000000,1445638421,114,Released,She's everything. He's just Ken.,7.14,7064,Margot Robbie-Ryan Gosling-America Ferrera-Kate McKinnon-Ariana Greenblatt-Simu Liu-Will Ferrell-Michael Cera-Helen Mirren-Issa Rae-Alexandra Shipp-Emma Mackey-Emerald Fennell-Rhea Perlman-Hari Nef-Kingsley Ben-Adir-Ncuti Gatwa-Connor Swindells-Sharon Rooney-Ritu Arya-Ana Kayne-Nicola Coughlan-Dua Lipa-John Cena-Scott Evans-Jamie Demetriou-Andrew Leung-Will Merrick-Zheng Xi Yong-Asim Chaudhry-Ray Fearon-Erica Ford-Hannah Khalique-Brown-Mette Towley-Marisa Abela-Lucy Boynton-Rob Brydon-Tom Stourton-Chris Taylor-David Mumeni-Olivia Brody-Isla Ashworth-Eire Farrell-Daisy Duczmal-Isabella Nightingale Mercado-Genvieve Toussaint-Manuela Mora-Aida Sexton-Ann Roth-Millie-Rose Crossley-Anvita Nehru-Kayla-Mai Alvares-Luke Mullen-Patrick Luwis-Mac Brandt-Paul Jurewicz-Oraldo Austin-Benjamin Arthur-Carlos Jacott-Adam Ray-George Basil-Ptolemy Slocum-Deb Hiett-James Leon-Oliver Vaquer-Tony Noto-Christopher T.", + "embedding" : [ 1.12045804E-4, -0.025812645, 0.009263299, -0.037324056, -0.021695621, 0.04322873, -0.0027610455, 0.0024410961, -0.0087419, -0.050081406, 0.016969172, 0.024133332, 0.018662028, -0.0039917505, 0.005434063, 0.0037716797, 0.017172316, -0.018215114, 0.0051124203, -0.03848874, -0.0032079592, 0.0024580245, -0.014301234, 0.019840254, -0.023889562, 0.015303404, 0.032990348, -0.008105387, -0.017537972, -0.018932885, 0.0068526748, -0.019041227, 0.0018824541, -0.025731387, -0.012974036, 0.005051478, 0.009987841, -0.017172316, 0.006791732, 0.018878713, -0.005352806, 0.005129349, -0.02164145, -0.01251358, -0.002859231, 0.011369211, 0.004526693, -0.014030377, -0.019772539, 0.022440478, 0.024675045, 0.034127947, -0.012256266, -0.0184318, 9.793163E-4, 0.011213467, -0.007746502, -0.0055864197, 3.6904227E-4, 0.0048551066, 0.01442312, -0.0032655161, -0.025663674, -0.0033163019, -0.02841287, -0.014165806, -0.0061416756, -0.010942611, -3.8491277E-4, 0.009398728, 0.033261202, 0.004069622, 0.0075569022, -0.007441788, 0.023415562, -0.028439954, -0.020815337, -0.0010216377, -0.011883838, 0.018838083, 0.013427721, -0.0056101196, -0.024972988, 0.0048754206, 0.016874373, 0.0110915825, -0.023347849, 0.025094874, -0.02249465, 0.020341339, 0.012723493, 0.041007705, -0.008362701, 0.0024326318, 0.011267639, 0.021898765, -0.022751963, 0.031771492, -0.025663674, -0.034561317, -0.005105649, -2.7614686E-4, -0.0013661336, -0.0118161235, 0.020666366, 0.013305835, -0.008897643, -0.0110306395, 0.016603516, 0.003988365, 0.0072589596, 0.002744117, 0.031040179, -0.024106247, -0.0014973297, -0.013922035, -0.0045605497, -0.021844594, -0.013725664, -0.0130417505, 0.023984361, 0.034832172, -0.011348896, -0.03442589, 0.018878713, 0.03066098, -0.008965357, -0.014355405, -0.019339168, -0.0093581, 0.029956752, -0.017104601, 0.015425289, 0.022873849, -0.017632771, 0.036051027, -0.032340292, 0.0034771229, -0.013305835, -0.027166927, 0.028900411, 0.03171732, -0.013962664, 6.242401E-4, -0.014030377, 0.0026103815, 0.019447511, -0.006500561, 0.016075345, 0.01939334, 0.013461579, 0.02827744, 0.006456547, 0.014477291, 0.0270315, 0.009622185, -0.0011782267, -0.0028693883, 0.0048314063, -0.010421212, -0.0051090345, 0.0040526935, -0.004980378, -0.012472952, 0.013637635, 0.020056939, 0.0023970818, -0.018648485, -0.009378414, -0.011355667, -0.018662028, 0.005711691, -0.046533182, 0.021099737, -1.8441533E-4, 0.012208866, 0.0050243917, 0.0017927329, -0.026056414, -0.01117961, 0.0030691451, 0.0029337166, 0.009432585, 0.040140964, -0.0022125607, 0.0072589596, 0.017700486, -0.019894425, 0.013109464, -0.014192891, 0.0014600869, 0.028575383, 0.023578076, 0.001099509, -0.63142115, -0.014842948, -9.723333E-5, -0.022426935, 0.018215114, 0.014964833, 0.0019146183, 0.002987888, -0.021316422, -0.009094014, -0.034209203, 0.029983837, 0.015411747, -0.008843471, -0.010935839, -0.008775758, 0.010962925, -0.03697194, 0.013353236, 0.008471044, -0.018025514, 0.005654134, 0.019190198, -0.0025748315, 0.0051902914, 0.002209175, 0.004381107, -0.016684772, 0.0074959593, -0.0033078375, -0.02306345, 0.031581894, 0.0053765057, -0.0026543958, 0.0436621, -0.009168499, -0.020232996, 0.048347924, 0.026828356, 0.037892852, -0.036944855, 0.0020246538, 0.006097662, -0.002676403, 0.0026425458, 0.022345679, 0.016319117, 0.0074688736, -9.5392345E-4, 2.1837822E-4, -0.00549162, -3.8364314E-4, -0.0035279086, -0.020774709, -0.016264945, -0.00821373, 0.024201047, -0.028683726, 0.033450805, 0.012019266, -0.019921511, 0.014937747, -0.0037987654, 0.007685559, -0.016549345, 0.042253647, 0.015452375, -0.0052512344, -3.6015478E-4, -0.027288813, -7.03381E-4, 0.014016835, -0.01619723, 6.0604187E-4, 0.019664196, 5.372829E-7, 0.032042347, 3.5042086E-4, -0.020381967, 0.020449681, 0.009168499, -0.00537312, 0.012764122, 0.008240815, 0.022508193, 0.0036531799, -0.04352667, 0.014260606, 0.0031063878, -0.013197493, 0.024471903, 0.02349682, 4.4352785E-4, -0.0025866816, -0.009588327, -0.012567751, -0.011118668, 0.0076178447, 0.019339168, -0.06885178, -0.0021550036, -0.009344556, 0.008653872, -0.0031910306, 0.008037672, 0.01589929, -0.007848073, -9.3445566E-4, 0.025907444, -0.02827744, -0.022169622, -0.005440834, -0.015086719, -0.0023649177, -0.0124187805, -0.028521212, 0.015872203, -0.0027390386, -0.016522259, 0.0021448466, -0.0065310323, 0.015316946, -0.006094276, -0.013813692, 0.013603779, 0.022142535, -0.00348728, -0.013651178, 0.018269286, 0.013366778, 0.015208604, -0.017741114, 0.023686418, -0.017524429, 0.025149046, 0.0064463895, 0.014802319, 7.5332023E-4, 0.013508978, -0.015276318, -0.024688588, -0.006151833, -0.012642236, -0.010956154, 3.4386106E-4, -0.012987579, -0.02192585, -0.009425813, -0.0073673027, -0.0084575005, -0.008173102, 0.016115975, 0.0090601565, 0.027302356, -0.00520722, 0.0042050504, -0.022088364, -0.018188028, 0.008653872, -0.01117961, 0.0025765244, 0.037053198, -0.00955447, -0.014721062, 0.008443958, 0.014098092, -0.012669322, -0.0083762435, -1.6108568E-5, -0.0073673027, 0.012114067, -0.025352187, -0.010915525, 0.010725926, -0.004313393, 0.022034192, -0.0039849794, 0.0124797225, 0.0052275346, -0.004973606, 0.003768294, -0.01394912, -0.030390123, -0.013922035, 0.030146351, 0.022318592, 0.013989749, 0.0057150763, -0.0054679196, 0.008132473, -0.01867557, -0.01858077, -0.0023784605, 0.004838178, -0.0048551066, 0.0014414656, -9.2175923E-4, 0.009276842, -0.016671231, 0.01098324, 0.043255817, 0.014612719, 0.014436662, -0.013014665, 0.011978637, -0.034317546, -0.012533894, -0.02631373, 0.017253572, -0.013624093, 0.029035838, -0.009195585, -0.017890086, 0.012696408, 0.011098353, 0.008748672, -0.012919865, 0.011877066, -0.005478077, -7.097292E-4, 0.0091007855, -0.0016132903, 0.019650655, 0.01829637, -0.025270931, 3.3412714E-4, 0.0033196874, -0.018377628, 0.0062872614, -0.014978376, -0.0077058733, 0.002347989, 3.4682354E-4, 6.4836326E-4, -0.02082888, -0.0042829216, 0.01576386, -0.009182042, 0.035834342, -0.0073402165, 0.0036362512, 0.0060062474, 0.012432323, 0.018513056, 0.008105387, -0.019650655, 0.012601608, 0.020720538, -0.019420426, 0.03090475, -0.014653347, 0.0054509914, -0.0061450615, 0.0020280397, 0.023347849, -0.008139244, -0.0036667227, 0.014219977, 0.029631725, 0.025677215, 0.0116942385, -0.025514701, 0.0068831462, -0.0027288813, 0.004929592, 4.9642957E-4, -0.022020651, -0.0065750466, -0.019637112, -0.037324056, -0.019379796, -0.009182042, -0.003407716, 0.0050210063, -0.008261129, -0.018662028, -0.018106772, -0.0022633465, 0.0176734, 0.021627909, 0.012520351, -0.04184736, 0.021289337, 0.02927961, -0.0044285073, -0.013271979, 0.007407931, -0.01877037, -0.04680404, -0.0052986345, 0.006487018, 0.027370071, -0.012730265, 0.0124594085, -0.0064497753, 0.0038461653, 0.027505498, -0.006930546, 0.020666366, 0.0030319022, -9.714075E-6, -0.009154957, -0.013834006, -0.0051462776, 0.024160419, -0.018364085, 0.0021211465, 0.004601178, -0.0030065095, -0.013617321, -0.0064260755, 0.009263299, -0.043147475, 0.021519566, -0.01686083, -0.0015743546, -0.01604826, 0.0088841, -0.0024343247, -0.022345679, -0.021384137, -0.026584586, -0.019176655, 0.012486494, 0.08689083, 0.024160419, -0.0017123222, 0.026516872, -0.01967774, 0.023104077, -0.0031436307, -0.007055817, 0.005698148, -0.008870557, 0.016779574, -0.024390647, 0.012215638, -0.0042761504, 0.014477291, -0.015438832, -0.0012120837, -0.015967002, -1.16489544E-4, -0.01661706, -0.030254694, -0.0071099885, 0.007082903, 0.037215713, 0.008010587, -0.0023936962, 0.020612195, -8.8367E-4, 0.0096831275, 0.009947212, -6.623293E-4, 0.0013695193, 0.0062297042, 0.018851627, 0.0010614197, -0.010021698, 0.03415503, -0.0063075754, 0.03266532, 0.0023886175, 0.00998107, 0.020084025, 0.010089412, -0.015533633, 0.010644669, -0.010610811, -0.024038533, 0.028006583, 0.043066215, -0.032123607, 0.015452375, 0.012452637, -0.011348896, -0.00983887, 0.017063973, -0.008498129, -0.0072521884, -0.0023632247, -0.009229442, 0.006097662, -0.009574785, -0.021086195, 0.012432323, -0.021411223, 0.0028863167, -0.02789824, -0.018039057, -0.0040289937, -0.027668012, -0.02559596, 0.0016319116, -0.0042490647, -0.0097237555, -0.0029557238, 0.008633558, 0.019203741, 0.020273624, -0.012147923, -0.0025274316, -0.0045876354, -0.034317546, -0.025392815, 0.014030377, -0.013305835, 0.006013019, 0.010563412, -0.011985409, 0.005268163, -0.017632771, 0.026327271, -0.018932885, 0.016129516, -0.028358698, -0.007055817, 0.02474276, 0.0097643845, 0.011125439, 0.0068526748, -0.012506808, -0.0050785635, -0.011064497, -0.021465395, 1.5151047E-4, -0.015804488, -0.01151141, -0.01686083, -0.022332136, -0.009628956, -0.03697194, -0.037947025, -0.027329441, -0.012012495, -0.007570445, -0.004001908, 0.01165361, 0.0020669752, 0.01742963, 0.027302356, -0.009127871, 0.009818556, 0.007936101, -0.01504609, 0.028006583, 0.027952412, -0.022955107, 0.045937296, -0.007082903, -0.027789898, -0.0048618778, 0.030390123, -0.010150355, -7.8336836E-4, -0.022873849, -0.0063075754, -0.014585634, -0.011105125, 0.0042084362, 0.0091007855, -0.00783453, 0.02168208, -2.6514332E-4, 0.016021173, 0.020463225, -3.5888513E-4, 0.006046876, -0.029902581, 0.011003554, -0.0065750466, 0.020070482, 0.034452975, 4.9854565E-4, 0.0131026935, -0.014924205, 0.0020957538, -0.008450729, -0.021560194, -4.4776E-4, -0.016820202, 0.040276393, 0.016752487, 0.042443246, 8.7097357E-4, 0.028331611, 3.67561E-4, 0.012994351, 0.023754133, -0.026720013, -0.014842948, -0.0258939, 0.0020551253, -0.0015641975, 0.03978885, 0.0181474, 0.0047230637, 0.0021431537, 0.021329965, 0.0026323886, 0.013603779, 0.0012205481, -0.018743284, -0.025636587, 0.013691806, -0.03702611, 5.996937E-4, -0.0062195472, 0.011626524, 0.032936174, -0.00609089, 2.3488356E-4, -0.01222918, 0.025419902, -0.020612195, 0.028629554, -0.013258436, 0.01839117, -0.008518443, -0.013922035, -0.017402543, -0.020165281, 0.008450729, -0.0058301906, 0.024092704, -0.005149663, -0.029929666, -0.0010775018, 0.030850578, -0.0137866065, -0.01504609, 0.02039551, -0.023713505, -0.001622601, -0.03634897, -0.016170146, -0.034750916, -0.011958323, -0.008030902, -0.005593191, 0.0017554901, -0.021506023, -0.04355376, 0.016522259, -0.0077261874, 0.023997905, 0.013712121, 0.053846315, 0.026801271, 0.012364608, -0.02784407, 0.0013754442, -0.007963187, 6.7375606E-4, 0.028439954, 0.02536573, -0.0104482975, -0.012066666, 0.008267901, -0.012093752, -0.03689068, -0.032692406, 0.029360866, 0.03410086, 0.014314777, -0.025799101, 0.010549868, -0.020855967, 0.0065174894, -0.01265578, -0.0049329777, -0.007665245, -0.029740067, -0.008146016, -0.0059893187, -0.00969667, 0.010001384, 0.013590235, -0.029252524, 0.006629218, -0.017267115, 0.0027508885, -0.016630601, -0.019989224, 0.03759491, -0.031500634, 0.0264627, 0.01442312, 0.0032502804, 0.020855967, 0.004665507, 0.016644144, 0.03315286, -0.0065852036, 0.00797673, 0.009486756, 0.007651702, 0.008945043, -0.0016835437, -0.009588327, -0.014978376, -0.018499512, -0.0010021698, 0.02574493, 0.0017537972, 0.012364608, 0.0090601565, -0.014802319, -0.0111525245, 0.015560718, -0.017267115, 0.017565057, -0.03992428, 0.00711676, -0.009419042, 0.009527384, -0.007827759, -0.01026547, -0.0053900485, -0.0024123176, -0.007672016, -0.0025477458, -0.004695978, -0.014991919, -0.024350017, -0.033938345, -0.016887916, -0.0036599513, 0.008152787, 0.0069034602, -0.010014927, -6.591552E-5, 0.003011588, 0.008945043, -0.0058775907, -0.0014787083, -0.019718368, -0.0041373363, 0.008491358, -0.010306098, -0.008030902, 0.0015396511, 0.03328829, 0.0025020388, -0.011965095, -0.014247063, 0.008003816, 0.039815936, -0.011822895, 0.010576954, 0.0075433594, -0.041874446, 8.307683E-4, 0.0175786, 0.022386307, 0.024011446, -2.708567E-5, -0.031419378, -0.005440834, -0.020354882, 0.031311035, -0.008003816, 0.016292032, 0.022047736, 0.020801796, 0.044528842, 0.044447586, 8.768986E-4, -0.026151216, 0.0070964457, -0.011931238, -0.035509314, -0.0086471, 0.016982716, 0.0181474, 1.2378999E-4, -0.01413872, -0.041007705, 0.007001646, -0.021898765, -0.011917695, -0.005708305, 0.01901414, 0.033071604, -0.0026645528, 0.0053087915, 0.016630601, 0.002385232, 0.0040763933, -0.034263372, -0.005508548, 0.022887392, 0.019596484, 0.03559057, 0.002837224, -0.019190198, 0.0023564533, 0.014341863, 0.0017190936, 0.016386831, 0.022657163, -0.013989749, -0.010400898, -0.016779574, -0.0030894594, -0.009601871, -0.0012713337, 0.028060755, -0.025758473, -0.01189061, 0.020801796, 0.0027864384, -0.005660905, 0.008768986, 0.008857015, -0.0014490833, -0.002187168, -0.003927422, -6.631757E-4, 0.009148185, -0.018160943, 0.027505498, 0.007969959, 0.009730527, 0.01705043, 0.022589449, -0.00807153, 0.016292032, -0.00816633, -0.0014897119, -0.0038393938, -0.004103479, -0.0032519733, 0.028142013, -0.029550467, 0.0011469088, -0.027762812, -0.013346464, 0.015276318, -0.0010885054, 0.009033071, 0.036755256, -0.0010385662, -0.04991889, -0.004966835, -0.0018790684, 0.0043438645, -0.013014665, 0.0030776092, -0.020774709, -0.0070964457, -0.002860924, -0.0041474933, -0.035698913, -0.0124797225, 0.0116942385, -0.0019061541, -0.0020517395, 0.0034449587, 0.20043397, -0.011809353, -0.004682435, 0.04379753, -0.0029912738, -0.011105125, 0.017510885, 0.035509314, -0.0034500372, 0.01973191, -0.005728619, 0.006165376, 0.010813954, 0.0027051813, 0.018228656, -0.03095892, -0.015845118, -0.02699087, -0.02364579, -0.02054448, -0.0062093902, -0.0041948934, -9.894734E-4, -0.01872974, 0.010157127, -0.0067985035, -0.0090737, 0.019799626, 4.329475E-4, 0.014626262, -0.0058301906, -0.02302282, 0.007868388, 0.003825851, -0.013150093, -0.013962664, -0.010671754, -8.214576E-4, 0.010021698, 0.0084778145, -0.017998429, -0.007407931, -0.032990348, 0.010996782, -0.0056812195, 0.009297157, -0.023429105, -0.0039951364, -0.009520614, 0.0033112234, -0.03066098, 0.0036260942, 0.018404713, 0.022900935, 0.0053765057, -0.002442789, 0.014788777, -6.627525E-4, -0.0264627, -0.012066666, 0.017808829, 0.041901533, -0.023943733, 0.025487617, 0.00437095, 0.0057150763, -0.033938345, -0.010190983, 0.006768032, -0.023821848, -0.008152787, -0.026503328, -0.015493004, 0.008870557, -0.015181518, -0.026435615, 0.0074959593, 0.020720538, -0.0027001027, 0.01151141, -0.026300186, -0.008945043, -0.0060604187, -0.007062589, -0.026977329, -0.028764982, 0.010184213, -0.009161728, -0.01088844, -0.029062925, -0.015222147, -0.013434493, -0.014599176, 0.0032705946, 0.0024444817, -0.0024918816, 0.007746502, 0.0015819725, -0.0034043302, 0.0020026467, -0.015926374, 0.01591283, 0.03542806, 0.010224841, -0.026706472, -0.012716723, 0.0034601944, 0.004452207, 0.031934004, -0.011978637, -0.0050311633, -0.018039057, -0.0051733633, -0.011836438, 0.0090398425, 0.02789824, 0.012858923, -0.011206696, 0.025920987, 0.011430153, 0.012080209, -0.020734081, 0.014098092, 0.003058988, -0.013475121, -0.02588036, -0.021885222, 0.0024004676, 0.0013525906, -0.027383612, -2.4165497E-4, -0.009581556, 0.0145720905, -0.022223793, 0.010143584, 1.2950336E-4, 0.02727527, -0.005579648, -0.004018836, 0.005081949, 5.7398345E-5, -0.0059148334, 0.026679385, 0.009195585, 0.0013128086, -0.033125777, 0.01633266, -0.0059723905, -0.016007632, -0.0432829, -0.033450805, -0.0019264683, 0.026706472, 0.009479985, 0.04585604, 0.013698578, -0.02211545, -0.023848932, -0.016698316, 0.042741187, -0.030417208, 0.029008754, 0.024011446, -0.0038156938, -0.023049906, -0.024187503, -0.17291492, 0.019542312, 0.01088844, -0.034507144, 0.030444294, 0.013475121, 0.014599176, -0.004689207, 0.01127441, -0.0071912454, 0.03735114, 0.0047129067, -0.0258939, 0.003673494, -0.016508717, 0.008660643, -0.023131162, 0.018079685, 0.04599147, -0.0070084175, 0.0353468, -0.00437095, 0.0064328467, -0.0067985035, 7.892934E-5, -0.0032248877, 0.020706994, 0.017497344, 0.017402543, -0.016495174, -0.034317546, -0.02493236, 0.0084168725, -0.0034009446, -0.024824018, -0.006568275, -0.014910662, -0.012892779, 6.6148286E-4, -0.0061484473, 0.02555533, 0.001975561, 0.018824542, 0.014991919, 0.021045566, 0.024729216, 0.029117096, -0.008051216, 0.013624093, -0.020463225, -0.018377628, -0.034344632, 0.026692929, -0.012080209, -0.0073402165, 0.034778003, 0.007868388, 0.027166927, 0.004983763, 0.0010538019, -0.015872203, 0.001244248, 0.012303666, -0.010434754, -9.88627E-4, -0.01170101, -0.006524261, 0.007861616, -0.03545514, 7.6982554E-4, -0.023049906, 0.017605687, 0.0170098, 0.005071792, 0.01705043, -0.027586756, -0.03442589, -0.001006402, -4.3887252E-4, 0.01705043, -0.019569397, 0.035942685, -0.01967774, 0.009588327, -0.018878713, -0.0051801344, 0.0033806302, -0.007299588, -6.2466325E-4, 0.0063515897, 0.008200187, -0.03542806, -0.029740067, -0.0013348158, -0.007780359, 0.010008155, -8.6208613E-4, 0.004997306, 0.0077668163, -0.008450729, -0.003802151, -0.012100523, -0.014666891, 0.013989749, 0.017686943, 0.0016759259, -0.0048043206, 0.028006583, 0.030254694, 0.0069610174, -0.008206958, 0.0028981667, 0.024444818, 0.0028761597, -0.016589973, 0.017903628, -0.022630079, -0.023672877, 0.007428245, 0.007360531, 0.055850655, -0.0039037224, 9.1329496E-4, -0.009398728, -0.0056812195, -0.001674233, -0.08840763, 0.003199495, 0.007218331, 0.029442124, -0.034642573, 0.034696743, 5.192302E-5, 0.013224578, -0.015533633, 0.017890086, 0.0052952487, -0.02784407, 0.015276318, -0.006334661, 0.010421212, 7.719416E-4, -0.015100261, -0.0123781515, -0.004381107, 0.028439954, -0.012547437, 0.0087419, -0.009845641, -0.012994351, -0.017226487, 0.015357575, -0.025528245, 0.011660381, 0.013265207, 0.014721062, 0.0052139917, -0.01939334, 0.016887916, -0.024092704, -0.03892211, -0.034642573, -0.034696743, -0.019948596, 0.004675664, -0.05536311, 0.013319379, 0.009297157, 0.002303975, -0.0123578375, -0.013434493, -0.002325982, -0.020761166, 0.02574493, -0.019799626, -0.022426935, -0.016237859, -0.035509314, -0.035617657, -0.0038563223, 0.020896595, 0.0043574073, 0.019799626, 0.01060404, -0.009926898, -0.02096431, -0.008626786, -0.006236476, -0.029442124, 0.008362701, 0.0062601757, -0.0050074635, 0.009798242, -0.01342095, 0.016292032, -0.019650655, -0.04122439, 0.014504377, -0.03930131, -3.8977974E-4, -0.005335877, 0.0028050598, -0.031554807, -0.009547699, 0.0264627, -0.030254694, 2.0092067E-4, -0.038326222, 0.027952412, -0.0069034602, 0.007936101, 0.005522091, 0.010130041, 0.009127871, -0.0104279835, -0.043012045, -0.0124797225, 0.017524429, -2.8397632E-4, -0.0022802749, -3.9702725E-5, 0.014788777, 0.010082641, -8.6758786E-4, -0.005603348, 0.0049363635, -0.004763692, -0.016278489, -0.07491896, 0.03821788, -0.024444818, -0.0044285073, -0.018472428, -0.019555854, -0.011958323, 0.0048754206, -0.01886517, 0.021275794, -0.00537312, 0.034480058, -0.004834792, -0.007231874, -0.011660381, 0.016454546, 0.0014169192, -0.0076449304, -0.008674186, -0.012384923, -0.022995735, 0.020341339, 0.02111328, -0.004025608, 1.9065772E-4, 0.017456714, -0.0011528338, 0.015452375, -0.0104482975, -0.016779574, 0.03615937, -0.024431275, -0.007685559, 0.014043921, -0.012953722, -0.01327875, 0.0020246538, 0.0022921248, 0.02039551, -0.0030403666, -0.0069000744, -0.024146875, -0.011565581, -0.009148185, -5.3409557E-4, 0.021533107, -0.010319641, 0.014301234, 0.0036971942, 0.008410101, 0.027789898, 0.0072251027, -9.6069486E-4, -0.02292802, 0.024851102, -0.01910894, 0.059967674, 0.0037276654, -0.0010969697, -7.393542E-4, 0.033315375, 0.0017774971, 0.027735727, -0.020178825, 0.009906584, -0.0044488213, 0.01604826, -0.010685297, 0.015438832, -0.028683726, -0.027370071, -0.007198017, -0.004790778, 0.041116048, 0.009547699, 0.026259558, 0.0016209082, 0.012100523, -0.011064497, 0.01614306, 0.024580246, -0.0025460531, -0.032259032, 0.023510363, -0.0097440705, -0.0038766367, 0.0054137483, 0.013346464, 0.0040560793, 0.0041339505, -0.009547699, -0.0013923728, 0.016684772, 0.001244248, 0.0016446081, 0.018025514, -0.015777403, -0.023429105, 0.002117761, 0.04179319, -0.0066495324, -0.010306098, -0.010692068, -0.038109537, -0.022101907, 0.016684772, -0.018066142, -0.013427721, 0.011626524, 0.01323135, 0.024769846, 0.0074824165, -0.0083762435, 0.010218069, -0.027613841, 0.015181518, -0.0268419, -0.014964833, -0.032882005, 0.045828953, -0.0064328467, -9.5011455E-5, 0.044068385, -0.011172839, 0.034480058, 0.010969697, 0.02196648, -0.027004413, 0.019027684, -0.009737299, 0.00360578, -0.007820987, -0.020855967, 0.01633266, -0.0024732603, 0.017551515, 0.017267115, 0.022670707, -0.011863524, 0.067822516, 0.031202693, -0.012330752, 0.018255742, -0.009256528, 0.011612982, 0.02124871, 0.022914477, -0.004682435, -0.006757875, -0.010055555, -0.0019315468, 0.016454546, -0.026882527, 0.004905892, 0.0056135054, 0.017605687, 0.02277905, -0.016752487, -0.012811522, -0.01829637, 0.0062838756, 0.037811596, 0.0040560793, -0.012188552, -0.011450468, 0.023104077, -0.0131026935, -0.0024614104, -0.03052555, 0.01657643, -0.029794239, -0.007793902, -0.008423643, 0.027519042, -0.009087242, -0.008809614, 0.037757427, 0.024241675, 0.010800411, 4.4691356E-4, -0.009676356, -0.026584586, -0.017077515, 0.032692406, -0.0071709314, -0.0053663487, -0.044962212, -0.0038461653 ], + "id" : "a27231b2-1ff7-4323-9d36-151b85b5ea1e", + "metadata" : { + "source" : "movies.csv" + } + }, + "b8438d0f-bc78-41e7-9182-87b58f9a544e" : { + "text" : "427641,Rampage,Action-Adventure-Science Fiction,en,Primatologist Davis Okoye shares an unshakable bond with George the extraordinarily intelligent silverback gorilla who has been in his care since birth. But a rogue genetic experiment gone awry mutates this gentle ape into a raging creature of enormous size. To make matters worse it��s soon discovered there are other similarly altered animals. As these newly created alpha predators tear across North America destroying everything in their path Okoye teams with a discredited genetic engineer to secure an antidote fighting his way through an ever-changing battlefield not only to halt a global catastrophe but to save the fearsome creature that was once his friend.,68.694,New Line Cinema-Flynn Picture Company-Wrigley Pictures-Twisted Media-7 Bucks Entertainment-ASAP Entertainment,4/11/18,120000000,428028233,107,Released,Big meets bigger,6.4,6222,Dwayne Johnson-Naomie Harris-Malin �kerman-Jeffrey Dean Morgan-Jake Lacy-Joe Manganiello-Marley Shelton-P.J. Byrne-Demetrius Grosse-Jack Quaid-Breanne Hill-Matt Gerald-Will Yun Lee-Urijah Faber-Bruce Blackshear-Jason Liles-Mac Wells-Allyssa Brooke-Stephen Dunlevy-Danny Le Boyer-Alan Boell-Adam Sztykiel-DJames Jones-Gary Weeks-David An-Arnold Chun-Gregory Hoyt-Suzanne Cotsakos-Ross Philips-Bernard Dowdell-Robin Meade-Chris Murphy-Maria Arcega-Dunn-Jason Sloss-Shannon Halligan-Andy John Roesgen-John Crow-Lane Carlock-Wendy Yang-Skye Notary-Willow Notary-Chase Anderson-Jeff Baird-Jasmine Bolton-Brandon Bowens-Pete Burris-Andrea Antonio Canal-Timothy Carr-David Dunston-Lex Elle-Matthew Ewald-Eric Ian-Tyler Jackson-Perry Zulu Jr.-Jessica Medina-Lauren Michele-Andrew Morgado-David Oelert-Valentina Latyna Plascencia-Rekkhan-Henardo Rodriguez-Jamin Thompson-Joey Thurmond-Robert Tinsley-Giota Trakas-Michael David Yuhl-Zion Bly-Camden Haydon,gorilla-monster-wolf-mutation-lizard-giant lizard-giant monster-creature-based on video game-giant animal-mutant animal-kaiju-albino-giant-rat-genetic experiment-destroyed city-giant gorilla-animal monster,/MGADip4thVSErP34FAAfzFBTZ5.jpg,/wrqUiMXttHE4UBFMhLHlN601MZh.jpg,447200-268896-338970-333339-345940-351286-353486-383498-284054-24006-892409-363088-299536-336843-447332-254128-335983-284053-445571-353081-339846\r\n143830,Mega Man X: The Day of Sigma,Action-Animation-Science Fiction,ja,\"The year is 21XX. Reploids are commonplace now after Dr. Cain rediscovered Dr. Light's old lab and based several designs off of Dr. Light's original called \"\"Mega Man X\"\". X meanwhile has joined the Maverick Hunters and works with unit leader Zero under the command of Commander Sigma. It is their job to terminate reploids who have become violent.\",3.804,XEBEC-CAPCOM,12/15/05,300000000,428000000,25,Released,,7.", + "embedding" : [ 0.008106592, -0.03146638, -0.023986448, -0.033706356, -0.010759901, 0.014226536, -9.974908E-4, -0.0016099853, -0.025693098, -0.023093121, 0.026306426, 0.019359823, 0.031946372, -0.018866494, 0.025133103, 0.020533144, 0.026719755, -0.034159686, 0.014546533, -0.009726577, 0.016866513, -2.1458136E-4, -0.015479858, -0.025013104, 0.014479867, 0.015413192, 0.0086732535, -0.019199824, 0.0051232865, -0.008533255, -0.004093296, -0.027679747, 6.329109E-4, -0.0047166236, -0.023866449, -0.014106537, 0.0045966245, -0.017719837, 0.042079613, -0.021893132, 0.027039751, 0.020666476, -0.010726568, 0.004576625, 0.025879763, 0.023493119, 0.009713245, -0.025213102, -0.027919743, 0.027173085, 0.009213249, 0.023173122, -0.012279888, -0.019813152, -0.0035199677, -0.00583328, 6.424941E-4, 9.6874115E-5, 0.008619921, -0.01951982, 0.00979991, -0.0072799334, -0.036079668, -0.02001315, -0.019093158, -2.0301898E-4, -0.006699939, -0.023146454, 0.0016741513, 0.004646624, 0.02877307, -0.004459959, 0.020133149, 0.010853234, 0.006363275, -0.02989306, -0.0327997, -0.006959936, -0.0013666542, 0.0057732803, 0.015226527, -0.010846567, -0.0068266043, 0.004919955, 0.022746459, 0.014973196, -0.0256131, 0.00691327, -0.019239824, 0.005989945, -0.0043199603, 0.0138398735, 0.0015408192, 0.009359914, 0.0029283066, 0.0055999486, -0.0093199145, -0.002008315, -0.023439785, -0.050132874, -0.013186546, 0.016866513, -0.0057499474, -0.010579903, 0.0065699397, 0.0049266214, 0.017853169, 0.0033216362, 0.021573136, -4.999954E-4, 0.00290664, -4.1624618E-4, 0.0035699673, -0.046479575, 0.0020116481, -0.017879836, 0.020946475, 0.0034266352, -0.0012408219, -0.011333229, 0.030879717, 0.021026473, 0.012406553, -0.0061499435, 0.030826384, 0.027973076, -0.0030133056, -0.0124465525, -5.8853628E-5, 0.0027316415, 0.050559536, -0.01494653, 0.03213304, -0.0039899633, -0.022599792, 0.053039514, -0.012266554, -0.0010999899, -0.014973196, -0.014306536, 0.046826236, 0.042959604, -0.023026455, -0.0028933068, -0.031999707, 0.007893261, 0.014706532, -0.0013091547, 0.014999863, -0.0024849772, 0.02213313, 0.009653245, 0.027106417, 0.01590652, 0.026799755, -0.0042666276, 0.0028433073, 0.007453265, -0.01602652, -0.0047799563, 0.011413229, 0.0017266509, -0.014266536, -0.0128198825, -0.008259924, 0.040239632, 0.02582643, -0.019039825, -0.0018616496, -0.009559913, -0.024399776, 0.042826273, 0.0031633044, 0.030986382, -0.008219925, 0.024999771, 0.009079916, -0.0018049835, -0.011026566, 0.001264155, 0.0055299494, 0.012513218, 0.016253185, 0.018693162, -0.008926584, 0.0100332415, 0.021586468, -0.021053141, 0.024546443, -0.012799882, 0.0033749691, 0.010459905, -0.0028799735, -0.018653162, -0.6459674, -0.014613199, -0.006096611, 5.908279E-4, 0.008266591, 0.02715975, 0.0075265975, -0.018039834, -0.012533219, 0.004269961, -0.019253157, 0.02607976, 0.019093158, -0.029759727, -0.026679756, -0.025466433, 0.010579903, -0.021213138, -2.8749736E-4, -0.0067532714, -0.056692813, 0.020493146, 0.018453164, 1.2583219E-4, -0.021226471, 0.007319933, 0.0066032726, -0.0035733005, 0.016973177, 0.005426617, -0.0291464, 0.0013891539, 0.0017616506, 9.099917E-4, 0.034773014, -0.020093149, 0.004946621, 0.03754632, 0.021106474, 0.021786466, -0.024799773, -0.011286563, -0.014413201, 0.008046593, -0.010419904, 0.020786475, 0.01303988, -0.010453237, 0.00469329, -0.00763993, -0.016186519, 0.00761993, 0.0066432725, -0.016679848, -0.008573255, 0.0040366296, 0.02079981, -0.026693089, 0.01905316, -0.014746532, 0.00401663, 0.015253194, 0.00398663, 0.009393247, -0.00838659, 0.02507977, -0.017119844, -0.009366581, 0.0037366324, -0.017386507, 0.011139898, 0.01967982, -0.001969982, 0.0012466552, 0.0063032755, 0.013799873, 0.020653144, 0.01199989, -0.004053296, 0.02250646, 0.0012683218, 0.005143286, -0.011113231, 0.026093094, 0.012066556, -0.015626524, -0.0329597, 0.004729957, 0.02981306, -0.011406562, 0.007806595, 6.19161E-4, 0.0014766532, 0.0031233048, -0.0033616358, 0.008333257, 0.0051599527, 0.016573181, 0.0034599684, -0.043172937, -0.017613173, -0.009986575, 0.014733198, -0.007439932, 0.018053168, -0.0101532405, -0.01527986, -0.0067566046, 0.04197295, 0.006289942, 5.966612E-4, 0.010013241, -0.0017683171, -0.0041466285, -0.0072066006, -0.025146436, 0.031706378, 0.013353211, -0.0019016493, -0.007893261, 0.0029233065, 0.018786494, 0.001888316, -0.028213074, 0.0181865, 0.017959835, -0.00654994, -0.02474644, 0.0031616376, 0.007986593, 0.004093296, -0.008079926, 0.010386571, -0.009019917, -9.724911E-4, 0.03205304, 0.0096599115, 0.011739892, 0.014346535, -0.008873252, -0.022533126, -0.005573282, -0.013093214, -0.010619903, -0.010253239, -0.006699939, -0.02026648, -0.004719957, -0.010066574, -0.014333202, 0.023946447, -4.5666247E-4, -0.0021583135, 0.007879928, -1.0760318E-4, -0.004799956, -0.019293157, -0.026959753, 0.0041766283, 0.0029916393, 0.022413127, 0.0025249769, -0.0057066143, -0.024093112, 0.011013232, -0.0218798, -0.012913215, 0.018573163, -0.008973251, -0.020733144, 0.0048466222, -0.024319777, -0.023426453, 0.013513209, 0.009579912, 0.005463283, -0.003556634, -0.0036033003, 0.0104932375, -0.0071732677, 0.0025766431, 0.014493201, 0.0037166325, 0.016973177, 0.02570643, 0.011333229, 0.01997315, 0.0045999577, -0.008446589, 0.002379978, -0.009079916, 0.021533135, 0.0011391562, 0.0124465525, 0.0028433073, 0.0064999405, -0.0033583026, 0.02362645, 0.01307988, 0.035946336, 0.045066252, 0.02034648, -0.017213175, -0.013773207, 0.012193222, -0.035893004, 0.006209943, -0.035759673, 0.006746605, -0.013293211, 0.015853189, -0.008899919, 0.007026602, -0.0025983094, 0.014586533, 0.0042966274, -0.013919872, 0.026493091, -0.02831974, -0.004983288, 0.014386535, -0.0121065555, 0.0046632905, 0.002811641, -0.034106355, 0.032533035, 0.021119807, 0.03221304, 0.002151647, -0.020813143, -0.01382654, 0.006353275, -0.018093167, -0.018253166, 0.025959762, 0.0026216425, 0.010799901, -0.01021324, 0.02022648, -0.019533154, 0.0015924854, 0.021493137, 0.041866284, -0.0034666348, 1.7749837E-4, -0.0057866136, 4.924955E-4, 0.020093149, -0.028533071, 0.02973306, -0.019133158, 0.029413063, -0.006139944, 0.015746523, -0.0018783162, -0.0122932205, -0.0013374877, 0.014066538, 0.0506662, 0.0075132647, 0.0071266014, -0.019386489, 0.015919855, 0.0067966045, 0.016879845, -2.3812281E-4, -0.018253166, -0.0021299804, 0.012466553, -0.01839983, -0.014719865, -0.023479784, -0.0011133231, -0.0068332707, -0.023639783, -0.0072799334, 0.008686587, -0.009246582, 0.0042266278, 0.012793216, 9.191582E-4, -0.031493045, -8.137425E-4, 0.022599792, -0.00952658, -0.011566561, -0.011939891, 0.0014058205, -0.04567958, -0.0057132808, -0.0073265997, 0.029253066, -0.019786485, -0.0128198825, -0.030746385, 0.0049666213, 0.01914649, -0.0133132115, 0.0056299483, -0.010073241, 0.028666403, 0.03845298, 0.008559922, 0.0033733025, 0.026759755, -0.018053168, 0.016639847, -0.0063099423, -0.004679957, -0.008093259, 0.01270655, -0.0054666167, -0.027386416, 0.011393229, -0.0217198, -0.011026566, -0.012513218, 0.012419886, 0.014719865, -0.0027083084, -0.024253111, -0.027759746, -0.019533154, -0.035146344, 0.06874604, 0.021359805, 0.0066866055, -0.0041666287, 0.003298303, 0.009259915, -0.00805326, -0.0051266197, -0.015119862, -0.007026602, 0.0010049908, -0.01598652, 0.01877316, 0.014786531, 0.02091981, -0.009906576, -0.008559922, -0.023879781, -0.011679893, -0.007166601, -0.009179916, 0.016506515, 0.0037666322, 0.035653006, 0.012659884, -0.020893142, 0.005109953, 0.010626569, -0.0051799524, 0.0031733043, -0.017359842, -6.570773E-4, -0.0011891557, 0.013259878, -0.0013883206, -0.009059917, 0.008393256, -0.026693089, 0.029386397, 0.019439822, 0.010266572, 0.018279832, 4.183295E-4, -0.014266536, 0.019159824, -0.014919863, -0.015053195, 0.025213102, 0.023666449, -0.029626396, 0.03882631, -0.003566634, -0.029573062, 0.012933215, 0.0036433, -8.255133E-5, -0.0069066035, -0.015439859, -0.033066362, 9.7165775E-4, -0.0020749809, -0.035439674, 0.004049963, -0.011133231, -0.0045266254, -0.0030016392, 0.0059766117, 4.3124604E-4, -0.005306618, 0.003203304, 0.0029916393, -0.043226272, 0.0073399325, -0.0035933005, 0.020106483, -0.022653125, 0.010579903, -0.011973224, 0.004456626, 0.011879891, -0.037306324, -0.015799856, -0.008506589, -0.01851983, -0.004699957, -0.0039666304, -0.0070399353, 0.012553218, -0.0016766513, 0.01197989, 0.025426434, -0.008866586, 0.0062032766, 0.0010849901, 0.037146326, -0.008873252, 0.014413201, 0.017133176, 0.011073232, -8.949918E-4, 0.0033049698, -0.024626441, -0.026706422, -0.0050766203, -0.0014466534, -0.010533237, 0.00438996, 0.016213184, -0.016466515, -0.028799737, -0.02337312, -0.011219897, 0.0050899535, 0.0015333192, 0.008919918, -0.009979908, 0.038719647, 0.00875992, -0.007133268, -0.011873225, 0.0056199483, -0.008073259, 0.020213148, 0.02054648, -0.006616606, 0.02802641, -0.017613173, -0.023826448, -0.013273212, 0.01160656, 0.0067999377, 0.0181465, -0.008939918, 0.009993242, -0.024239779, -0.014226536, -0.010646569, 0.008846586, -0.018759828, -0.0015541525, -0.029973058, -0.003776632, 0.010439904, 0.0068266043, -0.013773207, -0.02623976, 1.3541542E-4, 0.0038466314, 0.0037832987, 0.026053095, -0.012219888, -0.010726568, -0.010479904, -0.008493256, -0.009533246, -0.025653098, -0.028426407, -0.0035366341, 0.03895964, 0.011379896, 0.04306627, -0.020493146, 0.015999854, 0.02017315, 0.0070066024, -0.008106592, -0.021986466, 0.0014674865, -0.037626322, 0.0014358201, 0.012006557, 0.025653098, 0.013339878, -0.0029766394, -0.005769947, 0.008886585, 0.022159796, -0.005989945, -0.00398663, -0.019159824, -0.0027266417, 0.027546413, -0.014266536, 9.2665816E-4, -0.021586468, -0.028746404, 0.050319538, -0.0048832884, 0.00469329, -0.008286591, 0.020199815, 1.20623896E-4, -0.002998306, -0.029039733, 0.02283979, -0.011493228, 0.013113213, -0.020239815, -0.0056399484, -4.2707942E-4, -0.011433229, 0.023159787, -4.256211E-4, -0.005516616, -0.0054099504, 0.018639829, -0.0013391544, -0.025746431, 0.025933096, -0.01647985, -0.014319869, -0.030826384, 0.0020149816, -0.043946262, -0.010119908, 0.0061132773, 0.005396617, 0.018439831, -0.008086593, -0.043172937, 0.042506278, 0.012926548, 0.042452943, 0.012393219, 0.03885298, 0.024813106, 0.018693162, -0.032159705, 0.026266426, -0.015799856, 0.0025983094, 0.023359787, 0.022146463, -0.0026216425, -0.015213194, -0.0034533017, -0.015119862, -0.044612925, -0.046826236, 0.030159723, 0.03258637, 0.016933179, -0.02217313, 0.009279915, -0.022226462, 0.01627985, -0.0117665585, 0.014493201, 0.021786466, -0.032986365, -0.018119834, -0.0048199557, 0.010019908, 0.010413238, -0.0030733051, -0.034986347, 0.013399878, -0.010306573, 0.00584328, -0.017999835, -8.791586E-4, 0.028559739, -0.008446589, -0.0024799772, 0.0046832906, -0.006373275, 0.008666587, -0.003776632, 0.021519803, 0.033039697, -0.01867983, 0.024626441, -9.474913E-4, 0.0052266186, -0.005513283, 0.018666495, -0.02034648, -0.01739984, -0.017079843, 0.0012808216, 0.020946475, 0.006759938, -0.017826503, -0.015839854, -0.015799856, -0.0068232706, -0.0018283166, -0.008293257, 0.018266499, -0.041759618, 0.024813106, -0.00398663, -2.8666403E-4, -0.011126565, 0.019213157, -0.0063566086, -0.0038932976, 0.023133121, -0.021906465, 0.010846567, -0.01199989, -8.049926E-4, -0.036293, -0.01627985, -0.008886585, -0.005693281, 0.014186537, -0.023893114, -0.004983288, -0.004843289, -0.022693126, 9.08325E-4, -0.004769956, -0.01266655, 0.031253047, 0.02877307, -0.01011324, -0.011659893, -0.012859882, 0.03367969, 0.016706513, -3.752049E-4, 0.0048166225, -0.012319887, 0.026546424, -0.0218398, -7.354099E-4, 0.00832659, -0.012133222, -0.009986575, 0.020066483, 0.033599693, -0.0072732666, -0.006043278, -0.03362636, -0.0045532915, -0.009753244, 0.025279768, 0.0022999789, -0.021906465, 0.020066483, 0.01264655, 0.032079704, 0.02295979, 0.006629939, -0.025159769, 0.018546497, -0.010906567, -0.024413109, -0.0072399336, -0.0013649875, 0.012119889, -0.008359923, -0.004913288, -0.033359695, -0.012113222, -0.030826384, -0.018053168, -0.0042599607, 0.0116132265, 0.054292835, 0.007593264, 0.005699948, 0.027493082, -0.003408302, 0.02370645, -0.01647985, -1.1520728E-4, -0.0046732905, 0.012739883, 0.021599801, 0.03479968, -0.014053204, -0.0019133158, 0.023613118, 0.010653236, -1.4458201E-4, 0.015533191, -0.03026639, 0.00761993, -0.014079871, 5.929112E-4, -0.0014733198, -0.0018933159, 0.03122638, -0.028746404, -0.0064932737, 0.015293193, 0.03167971, 0.010733235, 0.004293294, 0.014506534, -0.00763993, 0.011639893, -0.0023683116, -0.023119789, -8.358257E-4, -0.019759819, 0.0052899513, 0.011599894, -0.0047366233, 0.013986538, 0.026386425, -0.024799773, 0.008379923, 0.006406608, 0.011166564, -0.00545995, 0.009379914, 0.0152665265, 0.01494653, -0.030426389, 0.032853033, -0.024346443, -0.009486579, -3.3228862E-4, -0.008146592, -0.036826327, 0.028239742, 0.012753217, -0.041172955, -0.016053187, -0.009053251, 0.0100332415, -0.0037832987, -0.0042432942, -0.01531986, -0.0073399325, 0.0037499657, -0.008306591, -0.015506525, -0.03861298, 0.0025233102, -0.009213249, -0.02623976, 0.018133167, 0.1631985, -0.012946548, 0.03130638, 0.040612962, 0.0062666093, 0.023426453, 0.018426498, 5.2749517E-4, -0.009039917, 0.018653162, 0.0067866044, 0.017733172, -0.0029949725, 0.0020966474, -0.003456635, -0.0015241527, -0.03293303, -0.009126583, -0.013986538, -0.018373165, 0.011393229, 1.6471204E-5, -0.024026446, -0.010093241, -2.2416461E-4, -0.015306527, -0.010386571, -0.00765993, 0.009286582, 3.566634E-4, -0.017053178, -0.01631985, -0.0024999771, 0.018533163, -0.040746294, 0.0152665265, -0.009419913, 0.018159833, 0.0055632824, 0.008539922, 0.004729957, 0.0039232974, 0.0035299677, -2.3437286E-4, -0.0057166144, 0.012886548, -0.017626505, -0.003216637, -0.0077865953, 0.0013833207, -0.049172882, 0.0042599607, -0.0011149897, 0.033893023, -0.0015949854, -0.021226471, 0.005033287, -0.0064166076, -0.0032299703, -0.001161656, 2.837474E-4, 0.027599746, -0.025186436, 0.0145332, 0.0017866503, 0.016533181, -0.022733126, 0.0062332763, 0.018599829, -0.021599801, -0.026853086, -0.01997315, -0.025439767, -0.008786586, -0.0072466005, -0.014519867, 0.004996621, 0.013733207, 0.014359868, -0.010753235, -0.013639875, -0.022346461, -0.0022366461, -0.012613217, -0.023346452, -0.019813152, 0.021279804, -0.013299878, -0.004283294, -0.005363284, -0.013759874, -0.03181304, -0.007853261, -0.008153259, -0.025266435, 0.004953288, -0.006333275, 0.011379896, 0.0024249777, -0.009686578, -0.034933012, 0.031333048, 0.018319832, -0.015999854, -0.027213084, -0.022426462, -0.0066666054, 0.022653125, 0.026746422, -0.016759846, -0.026186427, -0.03666633, 0.0010441571, -0.024066446, 0.007559931, 0.01280655, 0.0046399576, -0.012626551, 0.050506204, -0.023786448, -0.009406581, -0.030719718, 0.001637485, -0.011719893, -0.0059832786, -0.029973058, -0.0075999303, 0.016173186, 0.020359814, -0.027599746, 0.011133231, -0.015466525, 9.199916E-4, -0.00838659, -9.846915E-7, 0.0056866147, 0.006253276, -0.0073065995, 0.012739883, -0.016599847, -0.0026899753, -8.74992E-5, 0.023013122, 0.003489968, 0.018026501, -0.021066474, 0.019199824, 0.027106417, -0.0038499648, -0.015773188, -0.01669318, -0.027759746, 0.0016533182, 0.012246555, 0.013086547, -0.007153268, -0.025599765, -0.03458635, -0.014493201, 0.020319814, -0.03242637, 0.011066565, 0.014279869, -0.017093176, -0.026813088, -0.016759846, -0.16970511, 0.014173203, 0.01301988, -0.021186473, 0.020853141, 0.024933105, 0.018173167, 0.012179889, 0.022106465, -0.017319841, 0.0119532235, 0.008359923, -0.035759673, -0.010766568, 0.006739938, 0.002648309, -0.014693199, 0.019559821, 0.009906576, -0.004049963, 0.033493027, -0.02034648, -0.020893142, 0.0073132664, 0.0036799663, 0.017973168, 0.0047066235, -0.011939891, 0.0014899863, -0.0026116427, -0.03325303, -0.0041466285, 0.0109399, -3.181221E-4, -0.0057766135, 0.0030966382, -0.009399914, 0.007113268, -0.019466488, -0.0028033077, 0.032106373, 0.01309988, 0.011553227, -0.011093232, 0.0103732385, 0.024319777, 0.026746422, -0.01274655, 0.0012316554, -0.018546497, -9.808243E-4, -0.042239614, 0.018079834, -0.0023199788, 0.009913242, 0.0044399593, -0.0082999235, -8.758253E-4, 0.0018283166, -0.028879736, -0.03325303, -0.01665318, 0.025573099, -0.02407978, -0.008566588, -0.023079788, -0.026653089, 0.036692996, -0.034719683, 0.01855983, -0.019933151, 0.021186473, 0.001711651, -0.0025249769, -0.0029883059, -0.0065666065, -0.012859882, 0.013433211, 0.009339915, -0.0027333084, -0.024519775, 0.036133002, -0.021226471, 0.010266572, 0.0217598, -0.022986457, 0.017786503, 0.0030099724, 0.0015391526, -0.007899928, 0.0019183158, -0.0064266077, -0.0327997, -0.020853141, 0.01926649, 0.015506525, -0.015933188, 0.019493155, 0.016146518, -0.0064232745, -0.01985315, 0.004613291, -0.012699883, 0.011086565, 0.04530625, 0.0038932976, 0.024213111, 0.01947982, 0.030826384, -0.005693281, -0.00944658, 0.0036566332, -0.009633245, 0.015866522, -0.008266591, 0.014226536, -0.019693153, -0.0127865495, 0.01160656, 0.01751984, 0.038132984, -0.004513292, -0.011366563, -0.007519931, -0.008786586, -0.021426471, -0.09338581, 0.0044966256, -0.009599912, 0.02391978, -0.045146253, 0.026053095, -0.0077465954, 0.04338627, -0.012986547, 0.028133076, 0.011899891, -0.0070199356, 0.022519793, -0.0031549712, 0.013273212, 0.0029099733, -0.007353266, 0.01056657, -0.011033232, 0.03047972, 0.012279888, -0.011186564, 0.004943288, 0.019879818, -0.024239779, 0.016919846, -0.031119715, 0.024853105, 0.019186491, 0.011526561, 0.02470644, -0.027866412, 0.0254931, -0.026146427, -0.033813022, -0.02411978, -0.030666385, -0.035199676, 0.026746422, -0.044452924, 0.0028649739, 0.022039797, 0.011406562, -0.035013013, -0.00617661, -0.010893233, -0.010646569, 0.027786411, -0.013546542, -0.037626322, 0.0012216555, 0.0038399647, -0.03437302, -0.004616624, 0.035386343, 0.005559949, 0.008559922, 0.018319832, -0.0046732905, -0.015679857, 0.004833289, 0.004766623, -0.044079594, 0.011333229, -0.017426508, 0.016226517, -0.011733226, 0.00797326, 0.021453137, -0.009893242, 0.013426543, 0.02134647, -0.009499913, -0.02578643, -0.02482644, 0.017599838, -0.018653162, -0.022333128, 0.022053132, -0.02097314, -0.007939927, -0.02603976, 0.0021666468, -0.022559794, 0.006759938, 0.020893142, 0.0037899653, -6.9082703E-4, -0.0036366333, -0.023426453, -0.01415987, 0.018919827, 0.0067166053, -0.018359832, -0.017426508, 0.025306435, 0.01635985, -0.001312488, -0.0103732385, 0.013959872, -0.025053104, 0.0019049825, -0.06815937, 0.03474635, 0.0031583044, -0.012226555, -0.015173194, -0.011993224, 0.013879873, -0.0147731975, 0.0055532823, -0.003169971, -0.020679811, 0.02262646, 3.6249668E-4, 0.0027983077, -0.012693217, 0.0033733025, 0.015626524, -0.012833215, 0.0027516414, 0.004983288, -0.009826576, -0.0038399647, 0.010726568, 0.006449941, 0.009973242, 0.01967982, 8.182217E-5, 0.038879644, -0.025226435, -0.0014191536, -0.00397663, -0.021519803, -0.013366544, 0.015866522, -0.0073799323, -0.022413127, 0.0031283046, -7.974927E-4, 0.009619912, 0.03181304, -0.018826494, -0.010413238, -0.004909955, -0.028213074, 0.005073287, 0.039119642, -0.017733172, -0.0033966356, 0.019613154, -6.058278E-4, 0.022746459, 0.018733162, -0.017653171, -0.0034966345, 0.012953214, -0.03399969, 0.0325597, 0.005703281, 0.009653245, 0.014706532, 0.028933069, 0.0020749809, 0.026333092, -0.015893187, -0.010759901, 6.458274E-4, 0.003221637, 0.0041432953, -0.005503283, -0.025426434, 0.0145732, -0.008999918, 0.033733025, 0.0044099595, 0.0067532714, -0.0030566386, -0.017733172, 0.011906558, 0.0064932737, 0.011346563, 0.020026483, -0.018119834, -0.018866494, 0.010659902, 0.0055532823, 0.026679756, -0.009593246, 0.02765308, -0.007166601, 0.017333174, -0.021426471, 0.024346443, 0.0012791549, 0.019746486, 0.0018233167, 0.021146473, -0.013279879, -0.020026483, 0.0047799563, 0.026866421, 0.0038032986, -0.0066466057, -0.011406562, -0.02470644, -0.02449311, 0.013226545, -0.012606551, -0.035359677, 0.018759828, 0.024693107, 0.025959762, 0.006946603, -0.01594652, 0.0053466177, -0.0217598, -0.01131323, 0.0033099696, -0.017973168, -0.020359814, 0.05866613, 0.027186418, 0.0067099384, 0.03354636, -0.011806559, 0.018879827, 0.034026355, 0.030799719, -0.026146427, -0.0018916493, -0.029706394, 0.0015866521, -0.001235822, -0.037599657, 0.002251646, -0.011539894, -0.008946585, -0.012006557, 0.03562634, -0.02209313, 0.058612797, 0.0041099624, 0.007433265, 0.015533191, -0.02839974, 0.024479775, 0.027186418, 0.026746422, -0.013166546, -0.01665318, -0.0067999377, -0.02973306, 0.0057499474, -0.009853243, -0.024933105, 0.00543995, 0.023879781, 0.0049399547, 0.009359914, -0.034479685, 0.021973131, 2.6312258E-4, 0.023026455, -0.0029266397, -0.023679784, 0.002136647, 0.025919762, -0.011039899, -0.013853206, -0.028213074, 0.004249961, -0.021599801, -0.00869992, 2.2791458E-4, 0.0101865735, -0.014319869, -0.004239961, 0.004063296, 0.017053178, -0.013633208, -0.016893178, -0.015839854, -0.0072399336, -0.0069199367, 0.029679729, 0.008753253, -0.017119844, -0.029093066, -0.032693032 ], + "id" : "b8438d0f-bc78-41e7-9182-87b58f9a544e", + "metadata" : { + "source" : "movies.csv" + } + }, + "ffcc4980-ba19-4991-ba51-e4627f5c7e9d" : { + "text" : ",863-10193-585-12-9806-2062-14160-920-808-10681-8587-425-9487-62211-49013-953-809-62177-812-10020-9502\r\n270946,Penguins of Madagascar,Family-Animation-Adventure-Comedy,en,Skipper Kowalski Rico and Private join forces with undercover organization The North Wind to stop the villainous Dr. Octavius Brine from destroying the world as we know it.,79.781,DreamWorks Animation,11/22/14,132000000,373552094,92,Released,The movie event that will blow their cover,6.514,3627,Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-John Malkovich-Benedict Cumberbatch-Ken Jeong-Annet Mahendru-Peter Stormare-Andy Richter-Danny Jacobs-Werner Herzog-Sean Charmatz-Billy Eichner-Stephen Kearin-Ava Acres-Kelly Cooney-Susan Fitzer-Chris Sanders-Emily Nordwind-Mike Mitchell-Hope Levy-Walt Dohrn-Jim Pirri-Elizabeth Pan-Jeff Fischer-Stephen Apostolina-Al Rodrigo-Steve Alterman-Carter Hastings-Cullen McCarthy-Nicholas Guest-Adriano Aragon-Lynnanne Zager-Angie Wu,spy-wolf-zoo-penguin-madagascar-cartoon-revenge-rescue-anthropomorphism-spin off-animal-talking animals,/dXbpNrPDZDMEbujFoOxmMNQVMHa.jpg,/msnknPOg9dx86b0YozXOFP8PgBI.jpg,80321-10527-82703-950-953-82702-228161-8355-172385-93456-177572-57800-278154-211672-15512-140300-181533-49444-9502-109451\r\n2080,X-Men Origins: Wolverine,Adventure-Action-Thriller-Science Fiction,en,After seeking to live a normal life Logan sets out to avenge the death of his girlfriend by undergoing the mutant Weapon X program and becoming Wolverine.,6.254,20th Century Fox-The Donners' Company-Seed Productions,4/28/09,150000000,373062864,107,Released,Witness the origin.,6.3,9402,Hugh Jackman-Liev Schreiber-Danny Huston-Lynn Collins-Taylor Kitsch-Dominic Monaghan-Kevin Durand-Will.i.am-Daniel Henney-Ryan Reynolds-Tim Pocock-Julia Blake-Max Cullen-Troye Sivan-Michael-James Olsen-Peter O'Brien-Aaron Jeffery-Alice Parkinson-Philip A. Patterson-Anthony Gee-Adelaide Clemens-Karl Beattie-Tom O'Sullivan-Myles Pollard-Stephen Anderton-Chris Sadrinna-Septimus Caton-Matthew Dale-Nathin Butler-Peter Barry-David Ritchie-Asher Keddie-Socratis Otto-Stephen Leeder-James D. Dever-Martin Obuga-Rita Affua Connell-John Shrimpton-Henry Browne-Tahyna MacManus-Daniel Negreanu-Alexandra Davies-Don Battee-Evan Sturrock-Rob Flanagan-Hakeem Kae-Kazim-Alison Araya-Eric Breker-Eileen Bui-Adrian G.", + "embedding" : [ 5.838662E-4, -0.03649589, -0.0038402395, -0.038102802, -0.016790833, 0.028924357, 0.010084033, -0.028760942, -0.019800384, -0.03420809, 0.041125968, 0.035052396, 0.024675582, -0.011575189, -0.0012553975, -8.3749904E-4, 0.0142715275, -0.030803623, 0.015497136, -0.029632486, -0.002030765, 0.015960144, -0.016804451, 9.063065E-6, 0.01489795, 0.0148026245, 0.014748153, -0.004007058, -0.003574691, -0.00231674, 0.014870714, -0.012814416, -0.012004153, -0.01674998, -0.020304244, -0.009818484, 0.011227934, -0.034289796, 0.026963383, -0.026622936, 0.004388359, 0.006029312, -0.004592627, -0.0049194554, -0.006274434, 0.017675996, -0.009171636, -0.012079051, -0.0040513165, 0.022047332, 0.010948768, 0.0113709215, -0.0044530435, -0.020072741, 0.004834344, -0.022741843, -0.020998755, -0.0051441505, -0.0016443578, -7.068526E-4, 0.017444491, -0.011718177, -0.025424564, -0.024975173, -0.021843065, -0.0025159016, -0.0016869137, -0.030095493, -4.2747345E-4, -0.0020682141, 0.027440008, 0.008116251, 0.02059022, -0.014162585, 0.00818434, -0.018942457, -0.029469071, -0.004997758, 0.00559354, 0.014407706, 0.010758118, -0.014843479, -0.007108528, 0.017321931, 0.009375904, 0.0055731134, 0.0020171471, 0.018424978, -0.03448045, 0.027698748, 0.0065059373, 0.036741015, -0.005528855, 0.0076055806, 0.008075397, 0.006465084, -9.6431543E-4, 0.0034793657, -0.013243379, -0.056813754, -0.005283734, -5.323736E-4, 0.003385743, -0.0067476546, -0.009981899, 0.0021175789, 0.002177157, -0.016096322, 0.011643279, 0.014557503, -0.0010604917, 9.260152E-4, 0.035079632, -0.04226987, 0.014148967, -0.024621109, 0.018928839, -0.0036598027, -0.016409533, -0.018343272, 0.018329654, 0.041316617, 0.006209749, -0.0102474475, 0.0433593, 0.016858924, 7.557918E-4, -0.015442665, -0.0051135104, -5.7492947E-4, 0.021216642, -0.022360543, 0.01335913, 8.877149E-4, -0.038266215, 0.0595918, -0.019446319, 0.015783112, -0.012542059, -0.02832517, 0.033391017, 0.03478004, -0.005971436, -0.0122969365, -0.035760526, -0.0014869012, 0.016613802, -0.02116217, 0.027167652, 0.0022452464, 0.028733706, 0.029605249, 0.0043202695, 0.026677407, 0.010826207, 0.010335963, -0.0010000623, -0.013856183, -0.0030197627, -0.012698664, 6.664245E-4, -0.003203604, -0.0076191984, -0.017812174, -0.013250188, 0.03260118, 0.026296107, -0.014230674, -0.008177531, -0.0025465416, -0.015606079, 0.01860201, -0.006124637, 0.01797559, 0.012249274, 0.023409119, -0.0062301755, -0.0107445, -0.026786352, -0.008163913, 0.0147073, -0.008293283, 0.023177614, 0.037558086, -0.023436354, 0.0045551774, 0.025873953, -0.035706054, 0.01361787, -0.021638796, -0.0016290378, 0.011677324, 0.0041772816, 0.0068259574, -0.63840574, -0.012235656, 0.003137217, -0.019541644, 0.025356475, 0.010608321, 0.0030350827, -0.0047219964, -0.03344549, -0.0013532758, -0.021203024, 0.012698664, 0.030395087, -0.02685444, -0.013052729, -0.01937823, 0.014189821, -0.0182888, 0.012310554, 0.016763598, -0.040445074, 0.004378145, 0.020753635, 0.012473969, 0.003516815, -0.009825293, 0.008395417, -0.02020892, 0.01956888, 0.004847962, -0.008592876, 0.0022316284, 0.021298349, -0.013331895, 0.031920288, 0.0035134105, -0.0015890353, 0.055996682, 0.035597112, 0.029714193, -0.035923943, 0.008606494, 0.009736777, 0.021883918, -0.008007308, 0.003385743, 0.0063186917, 0.009001412, -0.0022486509, -0.010526613, -0.010070415, 0.0063833767, 0.0075987717, -0.010649174, -0.0073808855, 0.009621025, 0.006260816, -0.027657894, 0.02818899, 0.004538155, -0.0010460226, 0.021965625, 0.007265134, 0.0055731134, 0.010506187, 0.03145728, -0.008674583, -0.009103546, 0.01425791, -0.024661964, 0.018724572, 0.004490493, -0.019296521, 0.008102633, 0.007694097, 0.012828033, 0.0015056258, -0.0052394755, -0.0029686957, 0.017784938, -5.2471354E-4, -9.4559084E-4, -0.016777216, 0.006887238, 0.036114592, -0.011030475, -0.04439426, 0.00244611, 0.017635142, 0.005511833, 0.0055629, 0.0226329, 0.021407291, -0.009566554, -0.028080048, -0.0076260073, -0.008048161, -0.0020511916, 0.011486674, -0.05637798, -0.0154699, -0.010267874, 0.014652829, -0.014407706, 0.025492653, -0.0065638134, -0.0059884586, -0.01342722, 0.030912565, 0.0020052313, -0.01847945, 0.0016035042, -0.0017047871, -0.014489414, -0.02270099, -0.03172964, 0.015306486, 0.0150886, -1.2436946E-4, 0.0063186917, -8.672881E-4, 0.009941045, -0.0022009884, -0.015006893, 0.013760858, 0.0222516, -0.002212904, -0.0059680315, 0.009137591, -0.0026180355, 0.004647098, 0.0011081542, 0.0020256583, -0.011391348, 0.009042266, 0.013052729, 0.02384489, 0.0039491826, 0.008334137, 0.002692934, -0.04834344, -0.0067680813, -0.015646933, -0.018724572, 0.0035338374, -0.019596115, -0.0265957, -0.013352321, -1.0059138E-4, -0.005219049, -0.011221125, -0.0033806362, 0.0029618868, 0.011847547, 0.006182513, 0.006369759, -0.00722428, -0.01425791, 0.025370093, -0.02531562, 0.0019030974, 0.02000465, -0.0038844976, -0.019269286, 0.006931496, -0.0052156444, -0.005331396, 0.009055884, 0.005927178, -0.0179075, 0.00926696, -0.01572864, -0.017921118, 0.009253343, -0.0067374413, 0.024825377, -0.008701819, 0.0035270285, 0.005498215, -0.019868473, 0.010581085, -0.004725401, -0.019092254, -0.019895708, 0.021461764, 0.012991448, 0.01726746, -0.0035236238, -0.027916634, 0.009035457, -0.01195649, -0.0099887075, -0.0052326666, -0.002890393, -0.011200698, 0.012201612, -0.013788094, 0.022142656, 0.0064548706, 0.007442166, 0.045892224, 0.017349167, -8.88566E-4, -0.010227021, 0.019800384, -0.036604837, 0.0062812427, -0.030721916, 0.0033704229, -0.015074982, 0.02832517, -0.0077077146, -0.017349167, -0.003887902, 0.007067675, 0.017784938, -0.025261149, -6.157831E-4, -0.015034129, 0.0030929588, -0.008878851, -0.0014545588, 0.016763598, 0.012991448, -0.012317363, 0.010240639, 0.0031593458, -0.003925351, -0.009103546, -0.009028648, -0.012187994, 0.001863946, 0.0029891224, -0.0035066016, 0.012283319, -0.002023956, 0.02780769, -0.0025090927, 0.04041784, -0.0115071, 0.0022963134, 0.015388194, 0.029169478, -8.29839E-4, -0.011718177, -0.01751258, 0.010914723, 0.019391848, -0.023885744, 0.04346824, -0.020031886, 0.021843065, -0.0040649343, 0.017471727, 0.008769908, -0.015810348, 0.006471893, 0.014189821, 0.031865817, 0.010438098, -0.00308615, -0.028461348, 0.014040024, 0.0062233666, 0.012950595, -0.001995018, -0.019201197, -2.619312E-4, 0.0032802045, -0.02359977, -0.015320104, -0.012378644, -0.010254256, 0.0035134105, -0.009008221, -0.021025991, -0.0074149305, 0.013788094, -1.6649974E-4, 0.036141828, -0.008517978, -0.030395087, 0.01489795, 0.025261149, -0.02244225, -0.021829447, -0.0053109694, -0.021666031, -0.04521133, -0.0033840407, -0.0020256583, 0.022864403, -0.010410862, -0.0062165577, -0.010887487, -0.0050352076, 0.019201197, -0.017880263, 0.0051747905, 0.029768664, 0.0056922697, 0.019173961, -9.235948E-6, -0.00502159, 0.030013787, -0.005535664, 0.009416757, -0.007108528, -0.008048161, 0.018452214, -0.0036529936, 0.0073945033, -0.043114178, 0.008980986, -0.035324756, -0.011936063, -0.016382298, 0.01189521, 0.020494895, -0.013005066, -0.02538371, -0.033581667, -0.021271113, -0.005038612, 0.064821064, 0.030395087, 0.009273769, 0.016082704, -0.009777631, -0.0037619367, -0.004071743, -0.011391348, -8.877149E-4, -0.012651001, 0.012249274, 0.004827535, 0.014611974, 0.005920369, 0.018697336, -0.007156191, -0.018125385, -0.012480778, -0.010601512, -0.01739002, -0.019705059, -0.0054880017, 0.017076809, 0.041779626, 0.006465084, -0.009321433, 0.012862079, 0.016191648, -0.004538155, 0.0040445076, -0.008729055, -6.5493444E-4, -0.008266048, 0.009423566, -0.0017754298, 0.013148054, 0.019228432, 0.022564812, 0.021897536, 0.014611974, -0.0039559915, 0.017744085, 0.0035644774, -0.0084703155, 0.017104045, -0.014162585, -0.0067068012, 0.021121318, 0.046082873, -0.03766703, 0.02832517, -0.0053824633, -0.010921532, 0.0030027404, 0.012862079, 0.007959645, -0.008027734, -0.0058114263, -0.023776801, -0.013195716, 0.0017720254, -0.024021924, 6.494022E-4, -0.010696837, -0.009478037, -0.02039957, -0.0025737775, -0.002883584, -0.024021924, 0.01093515, 0.007448975, -0.038211744, -0.010655983, -0.015333721, 0.010063606, -5.284904E-5, 0.020031886, -0.009382713, 0.0037993859, 0.013706386, -0.010860251, -0.034044676, 0.006720419, -0.014121732, 0.0030555096, 0.012807607, -0.012072242, 0.023109525, -5.8003614E-4, -0.0015269037, 0.0035780955, 0.0035508596, -0.025438182, 0.010124886, 0.030531265, 0.0031218966, 0.013862992, 0.030749151, 0.00805497, 0.0011856058, 0.004950096, -0.0130186835, -0.016450386, -0.013440838, -0.004616458, -0.010431289, 0.004698165, 0.0061042104, -0.032383297, -0.032764595, -0.022605665, -0.014843479, -7.3919503E-4, 0.0032699911, 0.005818235, -0.003959396, 0.021461764, 0.025043264, -0.011357304, 0.012249274, 0.0054777884, -0.005219049, 0.009219298, 0.039927594, -6.3791213E-4, 0.040499546, -0.037176784, -0.018847132, -0.009409948, 0.01137773, 0.011234743, 0.011289215, -0.01406726, -0.0016647846, -0.013100391, -0.015783112, 0.014108114, -0.002912522, -0.011820312, 0.0066829696, -0.017948354, 0.014353235, 0.022564812, 0.0062710294, -9.634643E-4, -0.027848545, 0.0012426306, -0.004265798, 0.013985553, 0.032982484, -0.006955327, 0.0051203193, -0.01636868, -0.02538371, -0.015932908, -0.031375572, -0.025982896, 0.0017958566, 0.0460284, 0.021965625, 0.035815, -0.0075443, 0.007748568, 0.011520718, 0.012610148, 0.0139378905, -0.026119076, -9.93679E-5, -0.027780455, 0.003109981, 0.01195649, 0.025138589, 0.006516151, 0.0023099312, -0.0018520304, 0.009212489, 0.019854855, 0.004783277, 0.012330982, -0.019814001, -0.0031984972, 0.011718177, -0.019705059, -5.528004E-4, -0.017117662, -0.013536163, 0.039301172, -0.0014247696, -0.011588807, 0.008586067, 0.026050985, 0.0035712866, 0.0186701, -0.02173412, -0.011541145, -0.014080877, -0.010465333, -0.025465418, -0.011282406, 0.002890393, -0.022278836, 0.017689614, -0.0052564978, -0.004711783, 0.009532509, 0.021856682, -0.024512166, -0.029714193, 0.00179075, -0.009287387, -0.024539402, -0.031947523, -0.00502159, -0.028733706, 0.00562418, 0.003874284, -0.016028233, 0.007448975, -0.023136761, -0.04316865, 0.021652414, -0.005678652, 0.03913776, 0.009641452, 0.060735703, 0.030122729, 0.009001412, -0.015265632, 0.010227021, -0.0017064894, 0.0067748902, 0.025370093, 0.027630659, -0.016845306, -0.011888401, -0.008810762, -0.0026622936, -0.023286559, -0.03300972, 0.03676825, 0.014162585, 0.021080462, -0.014040024, -0.013059538, -0.025370093, 0.02379042, -0.005545878, 0.0012349706, 0.011296024, -0.027113179, -0.0134885, 0.017049573, 0.0013856184, 0.015783112, 0.009518892, -0.016681891, 0.016014615, -0.01010446, 0.0069451137, -0.0065638134, 0.0010749607, 0.008449889, -0.01297783, 0.011364113, 8.962261E-4, 0.009103546, 0.014652829, -0.0014554099, 0.0039559915, 0.027617041, -0.023899361, 0.015170308, -0.019841237, -0.005133937, 0.004551773, 0.02231969, -0.029877607, -0.020154448, -0.024838995, -0.0038402395, 0.022741843, 0.0053892722, 0.01853392, -0.0074149305, -0.012010962, -0.0057773814, 0.0037653411, -0.018615628, -0.005695674, -0.030286143, 0.02249672, -0.0107785445, 0.0066591385, -0.0122969365, 0.0014869012, 0.0107445, 0.001106452, 0.009096737, 0.0012409284, 0.007830275, -0.005658225, -0.019160343, -0.042787347, -0.0297959, -0.019323757, -0.020671926, 0.0052462844, -0.02020892, -0.01163647, 0.004228349, -0.0018741594, -0.007911983, -0.0028529437, -0.019214815, 0.015932908, 0.018588392, -0.001157519, -0.011010048, 0.0035780955, 0.023232087, -0.0046709296, -3.2363718E-4, 0.009239725, 0.006417421, 0.036741015, -0.023436354, 0.015415429, 0.018438596, -0.027290212, -0.017853027, 0.017430874, 0.025247531, 0.01950079, -0.0034708546, -0.043005235, -0.009178445, -0.014421324, 0.035569876, -0.009614216, 0.005634394, 0.024335135, 0.01956888, 0.025982896, 0.016954249, -0.007775804, -0.028842648, -0.00463348, 0.006955327, -0.02640505, -0.01624612, 0.0030350827, 0.008409034, 0.012004153, -0.012283319, -0.029741429, -0.020562984, -0.029823136, -0.021625178, -0.011915636, 0.02090343, 0.057903185, 0.017417256, -7.740908E-4, 0.020740015, 0.0029091176, 0.016600184, -0.017675996, -0.014012788, 0.015320104, 0.013563399, 0.028788177, 0.027113179, -0.024062777, 1.8894795E-4, 0.019432701, 0.0055663045, 0.006720419, 0.033990204, -0.029632486, 0.0015337126, -0.019609733, 0.008218384, 0.013958317, 0.005702483, 0.02818899, -0.04180686, -0.014966039, 0.02026339, 0.0066216895, -0.0052530933, -0.004973927, 0.0036666116, -0.02295973, 0.011091756, -0.025397329, -0.010431289, 2.8640084E-4, -0.032710124, 0.0109079145, 0.008613303, 0.013025492, 0.021148553, 0.013195716, -0.008089015, 0.011309641, -0.012106286, -0.008456698, -8.102633E-4, 8.2473224E-4, -0.0022878023, 0.022523958, -0.032328825, 0.020413188, -0.026323343, -0.003874284, -0.011118991, 0.007258325, -0.013515736, 0.021012373, 0.0051679816, -0.059156027, -0.011275597, -0.0074966378, 0.0047560413, -0.002337167, 0.010301919, -0.041588977, -0.0011873081, 0.0014920079, 0.0042317533, -0.01751258, -0.031538986, 0.0066455207, 0.0037244875, -0.005147555, 0.015905673, 0.17735915, -0.011595616, 0.02404916, 0.03292801, 0.00825243, 0.0027848545, 0.017281078, 0.03431703, 0.0023218468, 0.026636554, 0.024471313, 0.017158516, -0.008347754, 0.0014732833, 0.013032302, -0.00888566, -0.028652, -0.020835342, -0.005219049, -0.020821724, 0.004776468, -0.003029976, -0.008919705, -0.01815262, -8.132156E-6, 0.0074694017, -0.014421324, 0.0065501956, 0.015769493, 0.0073672677, -0.02571054, -0.011520718, -0.011929254, 0.014680064, -0.03606012, -0.010683219, -0.003196795, 0.009287387, 0.005964627, 0.010533422, 0.0022826956, -0.010703646, -0.0053926767, -0.010540231, 0.004936478, 0.028434113, -0.019459937, 0.005688865, -0.033363782, 0.014353235, -0.03823898, -0.002352487, 0.010901105, 0.013849374, -0.0072719427, -0.0090626925, 0.002985718, -0.0186701, -0.0032138175, -0.0013234868, 0.01425791, 0.028597528, -0.025724158, 0.0025805864, -0.003225733, 0.020249773, -0.033854026, 9.5112315E-5, 0.017703231, -0.02320485, -0.0064923195, -0.019487172, -0.009069501, 0.010519804, -0.00773495, -0.017689614, 0.011459438, 0.01086706, 0.025342856, 0.010342772, -0.03714955, -0.0087358635, 0.0128212245, -0.020603837, -0.026146311, -0.02052213, 0.019214815, -0.00875629, -0.006417421, -0.0021243878, -0.008014116, -0.030721916, -0.008266048, 0.0057944036, 0.0045619863, 0.010438098, 0.01771685, 0.011309641, 0.0012511418, -0.012896123, -0.044966206, 0.029006064, 0.01329785, -0.01950079, -0.026827205, -0.010669601, -0.00543353, 0.02123026, 0.026078222, -0.008545213, -0.025206678, -0.030830858, -9.677199E-4, -0.008872042, 0.006356141, 0.01751258, 0.0301772, -0.023667859, 0.037394673, -0.010397244, -0.0049398826, -0.025778629, 0.02173412, -0.006546791, -0.003670016, -0.025410946, -0.030858094, 0.007823466, 0.005927178, -0.01847945, 0.007142573, -0.008912896, 0.0030163582, -0.011575189, -0.013726813, 0.022905258, 0.02609184, 0.0060837837, 0.012814416, -5.949307E-4, 0.006853193, -0.012950595, 0.0058114263, 0.0035644774, 0.019364612, -0.030340616, 0.02116217, -0.0045347507, -0.016845306, -0.036223534, -0.029523542, -0.013869801, 0.013849374, 0.012365026, 0.034344267, 0.013903845, -0.031048745, -0.041153204, -0.015715022, 0.039164994, -0.029387364, 0.013318277, 0.013120818, -0.021666031, -0.016940631, -0.010158931, -0.17452663, 0.0074081216, 0.009151209, -0.027603423, 0.01937823, 0.01982762, 0.027971106, 0.0063186917, 0.007775804, -0.013447647, 0.023000583, 0.019364612, -0.041071497, -0.004126215, 0.0099206185, 0.021761356, -0.022237983, 0.038320687, 0.0062369844, -0.0041194055, 0.038838167, -0.010152122, -0.012058624, 0.009559745, 0.0034385123, 3.6784208E-5, 0.009981899, -0.007591963, -0.0028818818, -0.036332477, -0.036741015, -0.0014613677, 0.009866147, 0.015606079, -0.02244225, -0.0020273605, -0.019936562, -0.0056207757, -0.0026639958, -0.014026406, 0.026949765, 0.011132609, 0.0182888, -0.005164577, 0.011976917, 0.0074013122, 0.029196713, -0.005147555, 0.0076260073, -0.025410946, -0.007959645, -0.0328463, 0.019160343, -0.01534734, 0.01566055, 0.022483103, -0.0071698087, -0.001565204, 0.013665533, -0.0018230923, -0.013536163, -0.01853392, 0.005695674, -0.020862577, 0.004013867, -0.03069468, -0.012998257, 0.022878023, -0.026990619, 0.008068589, -0.017240224, 0.017662378, 0.029959314, 0.002737192, 0.0037687456, -0.0045960313, -0.050658476, -0.00767367, -0.0024954746, 0.013672342, -0.023667859, 0.044775557, -0.021706885, 0.020290626, 0.010812589, -0.01010446, 0.011466247, -0.014203439, 0.014938803, -0.005797808, -0.0051611727, -0.01899693, -0.014407706, -0.014775389, 0.013291041, 0.008790336, -0.02097152, 0.004704974, 0.008906087, -9.864445E-4, -0.025356475, -0.026813587, -0.0067748902, 0.013903845, 0.019868473, 0.011854356, 0.0023933407, 0.030286143, 0.0282707, -0.0010255958, -0.001011978, 0.018043678, 0.024961555, 0.005933987, -0.017553436, 0.012732709, -0.02417172, -0.014244292, 3.6087356E-4, 0.011684133, 0.03377232, -0.0053348006, 0.0057501458, -0.01202458, -0.013883418, -3.266161E-4, -0.089660056, -0.006696588, 0.0031831772, 0.042732876, -0.028297935, 0.036550365, -0.007830275, 0.019555261, -0.007258325, 0.031293865, 0.012181185, -0.022619283, 0.018193474, -0.011595616, 0.015524372, -0.0016852114, -0.016477622, -0.012249274, -0.0097231595, 0.027072325, -0.0027933656, -0.013985553, -0.007551109, -0.002772939, -0.030749151, 0.013032302, -0.034453213, 0.03126663, 0.028488584, 0.017403638, 0.015578844, -0.0109079145, 0.022129038, -0.035460934, -0.034453213, -0.020562984, -0.009491656, -0.046300758, 0.017948354, -0.044857264, 0.020454042, 0.011827121, 0.00623358, -0.045810517, 0.016491242, -0.014394089, -0.01956888, 0.039328407, -0.009954663, -0.033990204, -0.019514408, -0.0073672677, -0.031893052, -0.005505024, 0.016028233, 0.01361787, 0.0147073, 0.005038612, -0.0022486509, -0.0147073, 0.005467575, -0.00978444, -0.024621109, 0.014462179, 6.936603E-4, 0.013474883, 0.010145313, -6.4259325E-4, 0.02749448, -0.0045960313, -0.006219962, 0.016913395, -0.024321517, -0.016450386, -0.012896123, -0.0013558292, -0.018847132, -0.0012136927, 0.011132609, -0.022333307, 0.007115337, -0.036741015, -0.014285146, -0.005416508, -0.004007058, 0.015769493, 0.026241636, 0.019487172, -0.002934651, -0.038266215, -4.1108945E-4, 0.03235606, -6.545089E-4, 4.036422E-4, -0.008225193, 0.024321517, 0.016355062, -0.0039151376, 8.060077E-4, 0.02219713, -0.00965507, -0.0020477872, -0.076750316, 0.027440008, -0.003407872, -0.016150795, 0.0056752474, -0.006219962, 0.008586067, -0.010853442, 0.008143486, 0.023123143, -0.011690942, 0.015851201, -0.015592461, 0.0037449142, 0.0071017193, 0.02818899, 0.009178445, -0.00377215, -7.027034E-5, -0.0018247946, -0.005171386, -0.0017737276, 0.03371785, 0.0031780705, 0.0012468862, 0.022592047, 0.0056377985, 0.014693682, -0.01444856, 0.002206095, 0.026868058, -0.005467575, -0.008245621, 0.009961472, -0.010703646, -0.03279183, -0.015156689, -0.008232002, 0.026936147, 0.016940631, -0.010581085, -0.022687372, 0.0049773315, -0.0097231595, 0.004807108, 0.0254518, -0.028461348, 0.0134816915, 0.020168066, 0.0011073031, 0.029469071, 4.9098806E-5, -0.0121607585, -0.023123143, 0.015415429, -0.024757288, 0.061716188, 0.011404966, 0.006495724, -0.0024256832, 0.023191232, 0.010465333, 0.024730053, -0.039873123, -0.009130782, 0.004936478, 0.002023956, -0.0011302832, -0.011309641, -0.033799555, -0.0022248195, -0.013985553, 0.011575189, 0.035079632, 0.017567053, 0.0018367103, -0.021638796, 0.00559354, -0.0021669436, 0.015320104, 0.016355062, -0.014543885, -0.026527612, 0.029932078, 0.0036087355, 0.03862028, -0.008715437, 0.005896538, -0.0010128291, 0.013338704, -0.026486758, -3.6853363E-4, 0.0110440925, 0.0071698087, 0.004133024, 0.012930168, -0.008163913, -0.014421324, -0.01010446, 0.021434527, 0.0037449142, 0.0023627004, -0.022905258, -0.024757288, -0.017594289, 0.008116251, -0.0036359713, -0.038511336, 0.017689614, 0.013781285, 0.020127213, 0.016164413, -0.018615628, 0.0074217394, -0.038456865, 0.024239808, 3.9981215E-4, -0.0071357638, -0.015905673, 0.036877193, 0.016804451, 0.01118708, 0.030967036, -0.012548868, 0.042787347, -0.0027286808, 0.024893466, -0.04417637, 0.009838911, -0.004047912, -0.0039049243, 0.009260152, -0.018057296, 0.009518892, -0.014598357, 0.0014656233, 0.015102218, 0.035569876, -0.0055799223, 0.07130317, 0.026377814, 0.009981899, 0.025329238, -0.01534734, 0.0059305825, 0.018874368, 0.012194803, -0.02295973, -0.007115337, -5.4514036E-4, -0.014353235, 2.793791E-4, -0.035923943, -0.00543353, 2.3022712E-4, 0.016327826, 0.0041023833, -0.015755875, -0.017567053, -5.6088605E-4, -0.0063016694, 0.017471727, 0.014244292, -0.026895294, -0.014312382, 0.023422737, -0.009648261, -0.031484514, -0.02474367, 4.659865E-4, -0.017812174, -0.007006394, 0.00623358, 0.009838911, 0.0016264843, -0.0065093418, 0.0016341445, 0.03230159, 0.016273355, -0.0026708047, -0.014584739, -0.024117248, -0.010124886, 0.019541644, -0.0063084783, 0.0074694017, -0.024702817, -0.026990619 ], + "id" : "ffcc4980-ba19-4991-ba51-e4627f5c7e9d", + "metadata" : { + "source" : "movies.csv" + } + }, + "cace690d-09c6-41fe-a9b6-1b7af2d73809" : { + "text" : "865,6149,Dwayne Johnson-Jason Statham-Idris Elba-Vanessa Kirby-Helen Mirren-Eiza Gonz��lez-Eddie Marsan-Eliana Su'a-Cliff Curtis-Lori Pelenise Tuisano-John Tui-Joshua Mauga-Joe Anoa'i-Rob Delaney-Alex King-Tom Wu-John Macdonald-Georgia Meacham-Laura Porta-Ima Caryl-Shiloh Coke-Joshua Coombes-Meesha Garbett-Harry Hickles-Lucy McCormick-Stephen Mitchell-Akie Kotabe-Felicity Dean-Pete White-Peter Basham-Noah Maxwell Clarke-Joel MacCormack-Vineeta Rishi-Ryan Reynolds-David Mumeni-Gavin Esler-Ansu Kabia-Stephanie Vogt-Dan Li-Adam Ganne-Antonio Mancino-Dan H. McCormick-Thalissa Teixeira-James Dryden-Katia Elizarova-Ella-Rae Smith-Rain Chan-Lee Anne Nyagodzi-Maria Sergejeva-Mackenzie Proll-Jack Kane-Nathan Jones-Spencer Wilding-Axel Nu-Stephen Dunlevy-Timothy Connolly-David Leitch-Michael Wildman-Jobe Allen-Manoj Anand-Lasco Atkins-Pualani Avaeoru-Leo Ayres-Philip John Bailey-Lyon Beckwith-Daniel Bernhardt-Kishore Bhatt-Martin Bratanov-Sergio Briones-Jill Buchanan-Abbey Butler-Conlan Casal-Tim Connolly-Samantha Corcoran-Richard Curtis-James 'JD Knight' Dunn-Daniel Eghan-Viktorija Faith-Francesca Fraser-Vikrem Singh-Michel Alexandre Gonzalez-Mark Gooden-Sonia Goswami-Layne Hannemann-Kevin Hart-Patrick Doran-Ruth Horrocks-Kalanikauleleiaiwi Jardine-Kyle Leatherberry-Westley LeClay-Steven Lewington-Marian Lorencik-Teresa Mahoney-Stephen McGowan-Peter Parker Mensah-Kelemete Misipeka-Pingi Moli-Richard James Montgomery-Sascha Panknin-Hio Pelesasa-Richard Price-Peter Rooney-Israel Ruiz-Rubens Saboia-Ben Santos-Dave Simon-David Sturgeon-Matt Symonds-Matt Townsend-Rutvig Vaid-Jay Waddell-Nicholas Walker-Ryan Bailey-Kevin Hart,london england-biological weapon-secret organization-family clan-spin off-family reunion-buddy comedy-samoa-aftercreditsstinger-duringcreditsstinger-buddy movie-mother son relationship-father daughter relationship-brother sister relationship,/qRyy2UmjC5ur9bDi3kpNNRCc5nc.jpg,/hpgda6P9GutvdkDX5MUJ92QG9aj.jpg,337339-429617-458156-423204-420818-168259-9615-13804-51497-512200-320288-479455-584-453405-82992-373571-299534-385128-509967-290859-9799\r\n102651,Maleficent,Fantasy-Adventure-Action-Family-Romance,en,A beautiful pure-hearted young woman Maleficent has an idyllic life growing up in a peaceable forest kingdom until one day when an invading army threatens the harmony of the land. Maleficent rises to be the land's fiercest protector but she ultimately suffers a ruthless betrayal ��� an act that begins to turn her heart into stone. Bent on revenge Maleficent faces an epic battle with the invading King's successor and as a result places a curse upon his newborn infant Aurora.", + "embedding" : [ 0.012740446, -0.033196278, -0.030646846, -0.029841762, -0.019308586, 0.037221696, -0.006353451, -0.008694902, -0.022300813, -0.034994297, 0.027346004, 0.023092479, 0.020059997, -0.0074872766, 0.005682548, 0.019442767, 0.017725255, -0.019389095, 0.013733383, -0.022153215, 0.0045554307, -0.0105868485, -0.028016906, 0.014572011, 0.0043910597, 0.016571302, 0.028714646, -0.012069544, -0.011532822, -0.0039382004, 0.007567785, -0.004347451, 0.015658874, -0.027399676, -0.027721709, -0.0015237883, -0.0057261563, -0.039341748, 0.0324717, -0.001691514, 0.007829437, 0.0012269138, -0.016061416, 3.2517826E-4, -0.011734093, 0.016222432, 0.012297651, 0.004216625, -0.012123216, 0.023656037, 0.022247141, 0.037221696, -0.008185016, -0.02439403, -0.016437123, 0.012129925, -0.014129216, 4.6334232E-4, 0.011868273, 0.016329776, 0.01616876, -0.016853081, -0.033410966, -0.026728773, -0.017765509, -0.007769056, -0.006719093, -0.01796678, 4.8640464E-4, 0.009084025, 0.013364387, 0.013565658, 0.0128746275, -0.0022273976, 0.010452667, -0.043796543, -0.026084706, 0.0015615266, -0.009714674, 0.0019925816, 0.014330487, -0.0072256248, -0.010466086, 0.007306133, 0.009412768, 0.012861209, -0.024689227, 0.016920172, -0.021522567, 0.008755283, 0.001257943, 0.03102255, -0.015980909, 0.0010742833, 0.0055483673, 0.021750674, -0.026205469, 0.02342793, -0.019040225, -0.027963234, 0.0020965717, -0.0018131152, -0.0137132555, -0.0101037985, -0.0059073004, 0.005605394, -0.001411412, 0.0011774347, 0.018973134, 0.014437831, -0.01928175, -0.005397414, 0.028177923, -0.030834699, -0.0021988843, -0.026353067, 0.017148279, -0.014625683, -0.012337904, -0.018986553, 0.03689966, 0.034457576, -0.0034517956, -0.038402483, 0.03255221, 0.019805055, 0.0017208661, -0.022287395, -0.0064708586, 0.0045923307, 0.027104478, -0.017362967, 0.013283878, -0.005625521, -0.025816346, 0.03698017, -0.026634846, -0.007769056, -0.0125190485, -0.015913818, 0.028607301, 0.02930504, -0.023937816, -0.026688518, -0.031183569, 0.002255911, 0.018436413, -0.011707257, 0.020153925, 0.0059676818, 0.022448411, 0.019040225, 0.008741865, 0.013679711, 0.02260943, 0.005129053, -0.0020294813, -0.017309295, -0.0011891754, -0.028902499, 0.0031331168, -0.006705675, -0.006621812, -0.018785281, 0.0031079578, 0.013780346, 0.020314941, -0.023172988, -5.2288495E-4, 0.0029536502, -0.011304715, 0.026916625, -0.028446285, 0.012351323, 0.004642648, 0.0080709625, 0.0025343357, -0.014249979, -0.023897562, -0.012002453, 0.0010642197, 0.013646166, 0.03877819, 0.03891237, -0.008896173, 0.0019892273, 0.032176506, -0.008936427, 0.01561862, -0.015793055, 0.002125085, 0.024286686, 2.0001293E-4, -0.01237145, -0.6496487, -0.013485149, -0.004706384, -0.0013065834, 0.022783864, 0.014424413, 5.1072484E-4, -0.014437831, -0.024528211, -0.022072706, -0.030297976, 0.01866452, 0.019469604, -0.0093658045, -0.027252076, -0.01748373, -0.002802697, -0.010170888, 0.02114686, -8.134698E-4, -0.031264078, 0.02660801, 0.0069706813, -0.015873563, -0.005645648, 0.010553303, -0.012398286, -0.0159004, 0.0112980055, 0.0068331463, -0.015833309, 0.023132732, 0.0030609947, 0.00552824, 0.04054937, -0.004374287, -0.015189243, 0.056087486, 0.0073396782, 0.024071997, -0.028634137, 0.0060280627, 0.014598847, -0.0043172603, -0.011002808, 0.020422285, -0.0016160375, -0.0012864564, 0.005192789, 0.0014357322, -0.0041159894, 0.004511822, -0.014129216, -0.004082444, -0.00808438, -0.005964327, 0.017577657, -0.04001265, 0.022381322, -0.0023783508, -0.017725255, 0.027560692, -0.007386641, 0.026876371, 0.0051391167, 0.03102255, 0.0065647853, -0.0013703193, -7.7489286E-4, -0.029251367, 0.00535716, 0.0116535835, -0.0069371364, -0.009479858, 0.0076080393, 0.009627457, 0.03579938, 0.0058804643, -0.0072189155, 0.017054353, 0.009499986, 0.0033746418, 0.008715029, 0.015310005, 0.017295878, -0.001479341, -0.03461859, 0.003376319, 0.014880627, 0.0010340292, 0.012485503, 0.0131295705, 0.0091376975, -7.3841255E-4, 0.0024286686, -0.007319551, -0.0058167283, 0.0028781735, 0.03689966, -0.0678417, -0.023414513, -0.030458992, 0.038187794, -0.016557883, 0.024756318, 0.0034081868, -0.026165213, -0.013860854, 0.024836827, -0.008527176, -0.006460795, 0.0034383775, -0.0076214573, -0.006232688, -0.008741865, -0.031612948, 0.0023179697, 0.015001389, -0.011251042, -0.013793765, 0.010123925, 0.0058234376, 0.0028312104, -0.02052963, 0.010258106, 0.034135543, -0.017336132, 0.008446668, 0.007641584, 0.018852372, 0.0048372103, 0.014303651, 0.021468895, -0.014397576, 0.017161697, 0.014303651, 0.020301523, -0.014961136, 0.0144512495, 0.0029402322, -0.020153925, -0.009412768, -0.019254914, -0.0064943405, -0.02191169, -0.010627102, -0.021388385, 0.0053605144, -0.008741865, -0.013834018, -0.019603783, 0.00960733, 0.003084476, 0.022421576, 0.007769056, 0.006400414, -0.02509177, -0.01866452, 0.01651763, -0.019093897, 0.013377804, 0.006890173, -0.015041644, -0.02743993, 0.026299395, 2.541045E-4, -0.017537402, 0.010593557, 0.0029385549, -0.019228078, 0.011566366, -0.0055483673, -5.1595316E-6, 0.0146793565, -0.00167558, 0.02702397, -0.017430058, 0.028392611, 0.0011782732, 0.010653938, 0.0049378457, -0.012297651, -0.0189463, -0.004897591, 0.03005645, 0.01844983, 0.007909945, -0.018007034, 0.004921073, -0.001535529, -0.009828728, -0.008634521, 0.011828018, -0.013847437, 0.008305779, 0.012183597, -0.002802697, 0.004230043, -0.003944909, 0.0052632336, 0.04054937, 0.025789509, 0.016155342, 0.0019288459, 0.0090102265, -0.027104478, -0.001574106, -0.022783864, 0.026004197, -4.3189375E-5, 0.023454767, -0.017228788, -0.0151624065, -0.0051189894, 0.0066184574, 0.017228788, -0.0026249078, 0.010566721, -0.0065882667, 0.00514918, 0.0036161668, -0.012586139, 0.0142231425, 0.029466057, -0.029895434, -0.0053169057, 0.0047600563, -0.01624927, 0.008312487, -0.0063903504, -0.008151471, 0.0050552534, -0.002328033, 0.0046225213, -0.012794119, -0.009701257, 0.026916625, -3.3083902E-4, 0.036416613, -0.024997843, -4.3189377E-4, 0.01161333, 0.029117187, 0.0037235112, 0.021482311, -0.012968553, 0.01271361, 0.011418768, -0.006957263, 0.05487986, -0.00829236, 0.02487708, -0.011136988, 9.845501E-4, -0.0023062287, -0.027748546, -0.00466613, 0.01721537, 0.037758417, 0.019080479, 0.019040225, -0.03630927, 0.023615783, 0.003317615, 0.011975617, 0.008574139, -0.01678599, -7.4176706E-4, -0.01223056, -0.034457576, -0.030297976, -0.011271169, 0.01064723, 0.0179802, -0.004726511, -0.009728093, -0.009130989, -0.0018382741, 0.013142988, 0.02419276, 0.0013208401, -0.0346991, 0.017792346, 0.026259141, -0.012418414, -0.030432157, -0.023615783, -0.0079502, -0.026420157, -0.01209638, 0.0034081868, 0.042830445, -0.02391098, 0.0030995714, -0.019644037, 0.0030190633, 0.015216079, -0.015578366, 0.021173697, 0.020382032, -0.0061622434, 0.011204079, -0.0048271464, -0.004099217, 0.017362967, -0.0208785, 0.009687838, -0.014531758, -7.023515E-4, -0.0040254174, -0.01631636, 0.0059609725, -0.031317748, 1.6887885E-4, -0.02156282, -0.007520822, -0.009090735, 0.0017913108, 0.017443476, -0.01928175, -0.024447702, -0.029385548, -0.009499986, 0.0013904463, 0.08614393, 0.037060678, 0.010076962, 0.009084025, -0.013122861, 0.009848855, -0.009513403, -0.011854854, -0.010412414, -0.014665938, 0.02874148, -0.020355195, 0.010305069, 6.232059E-5, 0.008272233, -0.0071786614, -0.0056791934, 0.0048070196, -0.009996453, -0.005806665, -0.014572011, -0.020771155, 0.028983006, 0.026903208, 0.015538112, -0.010774701, 0.014504922, 0.0106874835, 0.006343387, 0.01678599, -0.005206207, 0.0038711098, 0.009151116, 0.02018076, 0.0056791934, -0.0042870697, 0.019617202, -0.0019707773, 0.02592369, 0.0037033842, -0.013599202, 0.013189952, 0.013901109, -0.0031901435, 0.014920881, -0.031049388, -0.009822018, 0.017067771, 0.025494311, -0.033759836, 0.02066381, 0.013344259, -0.011204079, -0.024286686, 0.019603783, 0.0019288459, -0.009714674, -0.0010457699, -0.018275395, 0.016047997, -6.7509606E-4, -0.028956171, 0.003225366, -0.006209207, -0.016182179, -0.007836146, -0.02059672, -0.010211143, -0.01009038, 0.008091089, 6.834824E-4, -0.026205469, -0.0035624946, -0.0020026453, 0.014397576, 0.0028882371, 0.028365776, -0.010667357, 0.004894237, 0.01666523, -0.03075419, -0.016772574, 2.6794185E-4, -0.030915206, -0.015081898, 0.0015246269, -7.0360943E-4, 0.03684599, -0.009338968, 9.5687533E-4, 0.005729511, 0.006262879, -0.00473322, -0.010097089, 0.035396837, 0.0075006946, -0.0014717933, 0.016437123, 0.0052431063, 0.010029999, 0.010848501, -0.036094576, -0.0068566278, -0.013498567, -0.016678646, -0.019429348, -0.002874819, 0.0036228758, -0.014196306, -0.026621427, -0.039744288, -0.018261978, 0.0038174377, -0.0047868923, 0.0050418354, 0.009922654, 0.015256332, 0.0179802, -0.020019744, 0.0068163737, 0.010640521, -0.008647939, 0.016732318, 0.02121395, -0.009667711, 0.023749964, -0.0020546403, -0.024702646, 6.620973E-4, 0.035208985, 0.005487986, 0.002131794, -0.009090735, 0.0025108543, -0.018033871, -0.025454057, 0.0026232305, 0.007540949, -0.010378868, 7.983745E-4, -0.026299395, 0.0079434905, 0.006088444, -0.009620748, -0.009996453, -0.029251367, 0.012686774, -0.010962554, 0.013283878, 0.023454767, -0.0057731196, 0.0039013005, -0.015444186, -0.007265879, 0.0036899662, -0.023709709, -0.016624974, -0.0012000776, 0.038939208, 0.003787247, 0.041864343, -0.0065614306, 0.020771155, 0.012599557, 0.013652874, 0.018476667, -0.030002778, -0.012129925, -0.023105897, 0.014062125, 0.00994949, 0.01616876, 0.006407123, 0.006799601, -0.005977745, 0.011995744, 8.0340623E-4, 0.0036295848, -0.0070310626, -0.027265495, -0.026031034, 0.0017376386, -0.035879888, 1.5304972E-4, -0.021254204, -0.010560012, 0.03601407, -0.010707611, 0.004491695, -0.0071920794, 0.02425985, -5.979422E-4, 0.015014808, -0.03386718, 0.020838246, -0.023629202, 0.010278233, -0.01458543, -0.01555153, -0.0039851633, -0.016987262, 0.022273976, 0.0041025714, -0.013263751, -0.012324487, 0.03062001, -0.0060012266, -0.018758446, 0.020462539, -0.027829053, -0.010009872, -0.021307876, -0.0035490764, -0.03724853, -0.014491503, -0.0047701197, -0.008238688, 0.008372868, -0.02121395, -0.036443446, 0.020462539, 0.0054242504, 0.044252757, 0.019429348, 0.053350203, 0.03579938, 0.008117925, -0.025521148, 0.01997949, -0.008869337, -0.0014005098, 0.029278204, 0.01810096, -0.014290232, -0.00933226, 0.009110861, -0.009023644, -0.041622818, -0.024085416, 0.012317778, 0.02052963, 0.025990779, -0.018624265, -0.0012302683, -0.013693129, 0.008614394, -0.0036765481, 0.0060850894, 0.004280361, -0.037275366, -0.033223115, -0.0022659746, -0.009533531, 0.0076348754, 0.010331905, -0.023172988, 0.014357323, -0.024058579, 0.0061488254, -0.0034383775, -0.011378514, 0.028499957, -0.021992197, 0.009714674, 0.005555076, 0.01513557, 0.014115797, -0.0040052906, 0.010667357, 0.029895434, -0.011673711, 0.027386257, 0.008379578, 0.009540239, 0.014733029, 0.010278233, -0.019509858, -0.017322714, -0.019322004, -0.0050887987, 0.030002778, -0.010969263, -0.0047030295, -0.00328407, -0.01886579, -0.023240078, 0.011036353, -0.007963617, 0.013927945, -0.023253495, 0.010855209, -0.0019355549, -0.003512177, -0.0014516662, -5.040158E-4, -0.003362901, -0.011895109, 0.0033645781, 0.005783183, -0.009855564, -0.01651763, -0.012572721, -0.040683553, -0.03163978, -0.015886981, -0.0049713906, 0.004280361, -0.012780701, 0.0054074777, -0.016772574, -0.0028395967, -0.017255623, -5.090476E-4, -0.025749255, -2.2014002E-4, 0.016598139, -0.011700547, -0.0159004, 0.003290779, 0.037007004, 0.001059188, 0.0071518254, 0.005702675, 0.009694547, 0.028714646, -0.026621427, 0.01596749, -0.009070608, -0.009573785, -0.009513403, -0.0019976136, 0.029949106, 0.01831565, -0.009936072, -0.024917334, -0.013418059, -0.010244688, 0.032659553, -0.0069103003, 0.0021485665, 0.041649655, 0.0141694695, 0.042186376, 0.034323394, -0.0073799323, -0.025547983, 0.0012101411, -0.019268332, -0.026151797, -0.0017015776, -6.373578E-5, 0.020341776, 0.004028772, -0.006477568, -0.021307876, 0.0034484412, -0.017913109, -0.03220334, -0.0026517438, 0.03284741, 0.026997134, 0.003525595, 0.006329969, 0.0073396782, 0.0040589627, -0.013290587, -0.019201241, -0.0045789126, 0.0016386803, 0.004082444, 0.016598139, 0.01969771, -0.03193498, -0.006719093, 0.013565658, 0.02052963, -2.7129636E-4, 0.022153215, -0.019053644, -0.0085540125, -0.011090025, 0.0026114897, -0.013706547, -0.005578558, 0.031076225, -0.017430058, -3.2098513E-4, 6.4155094E-5, 0.012277524, -0.013860854, 0.008869337, 0.015216079, -0.0149342995, -0.0075946213, 1.0246994E-4, -0.018194888, -0.0074403137, -0.02750702, 0.01997949, 0.006675484, -0.0046225213, 0.03614825, 0.010063544, -0.010888754, 0.014048708, -0.01230436, 0.018624265, -0.0054544406, 0.009573785, 0.003200207, 0.022824118, -0.030029615, 0.014129216, -0.029868599, -0.0052229795, 0.0034216049, 0.004588976, -0.017242204, 0.030297976, 0.0051055714, -0.04401123, -0.0030022906, -0.008104508, 0.008735156, -0.021468895, -2.4089609E-4, -0.021052934, -0.009372514, -0.0125190485, 0.008392995, -0.023830472, -0.017685002, 0.009627457, -0.009312132, -0.008091089, 0.028956171, 0.17529352, -0.00815818, 0.012237269, 0.05190105, 0.009406059, 0.013444895, 0.033437803, 0.0071518254, -1.1069898E-4, 0.012411704, -0.003539013, -0.0026534211, 0.003435023, 0.003820792, 0.022273976, -0.021187114, -0.026031034, -0.013532112, -0.020784574, -0.03158611, -0.0016009421, -0.0015036612, -0.012626393, -0.020234432, 0.011720674, -0.012311068, -0.0033712871, 0.00801729, 0.014424413, 0.0012361386, -0.011928654, -0.014800118, -0.0017275751, 0.025400385, -0.030351648, -0.010741156, 0.0032102705, 0.006303133, 0.013022226, -0.0050686714, -2.042847E-5, 0.008741865, -0.010372159, -0.009674421, -1.3522887E-4, 0.020690646, -0.02909035, 0.0060582533, -0.028338939, 0.006413832, -0.049244273, 0.0034719226, 0.013089316, 0.023803636, -0.013116152, -0.0015078543, 0.0042401063, 0.0022642973, -5.765572E-4, 0.00276412, 0.020811409, 0.04001265, -0.025521148, 0.011532822, -0.0029402322, 0.01921466, -0.04022734, -0.021160278, 0.005900591, -0.021925109, -0.02218005, -0.030351648, -0.01153953, 0.013176533, -0.009318842, -0.015108734, 0.0056154574, 0.0031918206, 0.00573622, 0.013304005, -0.018610848, -0.011740801, 6.0716714E-4, -0.009902528, -0.008238688, -0.018194888, 0.0109223, -0.014518339, -0.0047533475, -0.014115797, -0.011163825, -0.027144732, -0.0017342841, -0.0015455927, -0.0031012488, 0.0014650843, 0.021200532, 0.014021872, -0.025722418, -0.011351678, -0.029734418, 0.029734418, 0.024555048, -0.0029536502, -0.02812425, -0.010794828, 0.0011849822, 0.008050835, 0.015846727, -0.011727383, -0.015779637, -0.022971716, -3.597717E-4, -0.020301523, -0.007373223, 0.014920881, 5.8745936E-4, -0.014840373, 0.046560664, -0.020610139, 0.005031772, -0.013156407, 0.018812118, -0.008325906, -0.0031398258, -0.023401095, -0.03496746, 0.011760929, -0.0028328877, -0.023682874, 0.008151471, -0.025615074, 0.013022226, -0.0041495347, 0.006876755, 0.0114254765, 0.04105926, -0.006930427, 0.014317068, -0.0047432836, 0.0033863825, -0.005914009, 0.020704065, 0.01816805, 2.2915528E-4, -0.015913818, 0.0044547953, -0.0033981234, -0.010566721, -0.037838925, -0.035155315, -0.00898339, 0.009459731, 0.012847791, 0.055658106, 0.0103587415, -0.013511985, -0.03448441, 6.759347E-4, 0.03987847, -0.026849534, 0.013156407, 0.019335423, -0.0062796515, -0.023870727, -0.008580849, -0.17153646, 0.0063064876, -9.107507E-4, -0.033276785, 0.019858727, 0.017725255, 0.028285267, 0.0065614306, 0.013116152, -0.025896853, 0.027211823, 0.0035222403, -0.050559245, -0.0019137507, 2.7821507E-4, 0.032042325, 4.3357103E-4, 0.033276785, 0.03075419, -0.009580494, 0.048305012, -0.0011438895, -0.015860146, -0.013498567, 0.021254204, 0.008453377, 0.027829053, 0.0031498892, 0.0074872766, -0.009674421, -0.035477348, -0.013639457, 0.012257396, -0.0026735482, -0.011546239, 0.0013225174, -0.010627102, -0.016155342, -0.0074604405, -0.006460795, 0.040737227, 0.021374967, 0.011861564, 0.020368613, 0.028231595, 0.018087544, 0.009486567, -0.016745737, 0.030163797, -0.019201241, -0.010331905, -0.027882725, 0.019724546, -0.0042199795, 0.0036262304, 0.024487957, 0.005605394, -0.0011774347, 0.017403223, -0.011599911, -0.022622846, -0.017819181, 0.007279297, -0.008761993, 0.0065211765, -0.011459022, -0.018409576, 0.021576239, -0.042669427, 0.0090370625, -0.02507835, -7.019322E-4, 0.009432895, 0.0017627975, 0.017108025, -0.03172029, -0.044843152, 0.010479503, 0.0012537498, 0.01851692, -0.024152506, 0.030807862, -0.011982326, 0.01956353, 0.009661002, -0.00829236, -8.055028E-4, -4.0610592E-4, -0.009043772, -0.0021368258, 0.012914881, -0.01485379, -0.035477348, 0.001257943, -0.002542722, -0.0019858726, 8.109539E-4, 0.008460086, 0.015672293, 0.011868273, 0.011700547, -0.01859743, -0.020475958, 0.023387676, 0.028446285, 0.011841437, 0.026218886, 0.014424413, 0.027399676, 0.003116344, -3.7360907E-4, 3.4090254E-4, 0.023723127, 0.0059475545, -0.026084706, 0.013605911, -0.016383449, -0.024246432, -0.00656814, 0.010721029, 0.034860115, 0.005038481, 0.012136634, -0.011633457, -0.015672293, -0.024984425, -0.08823715, -0.0067761196, 0.007587912, 0.039905306, -0.036470283, 0.027560692, -0.009734802, 0.010674066, -0.022649683, 0.02425985, 0.008245397, -0.028285267, 0.012217143, -0.0036463575, 0.010412414, 0.002601426, -0.030512664, -0.0089901, -0.008788829, 0.03214967, -0.004968036, -0.009104153, 0.0072054975, -0.0034383775, -0.016329776, 0.019496439, -0.015216079, 0.016423704, 0.010318487, 0.016289523, 0.0020563174, -0.021240788, 0.014545175, -0.023978071, -0.034511246, -0.03185447, -0.011116861, -0.01306248, -4.3189377E-4, -0.049646817, 0.016061416, 0.0045185313, 0.0012973585, -0.02364262, -0.022126378, -0.0050518992, -0.034940623, 0.023092479, -0.010466086, -0.02260943, -0.0062796515, -0.013364387, -0.033706162, -0.009318842, 0.022730192, 0.021106606, 0.0268227, 0.011103444, 0.0019640683, -0.030915206, -0.008466795, -0.00718537, -0.025588239, 0.018342486, -6.6545187E-4, 0.014209724, 0.0010650584, -0.016128507, 0.019268332, -0.015632039, -0.018396158, 0.019107316, -0.033357292, -0.0071518254, -0.018812118, 0.01844983, -0.02211296, -0.0065345946, 0.027131315, -0.037275366, 0.011163825, -0.031371422, 0.010875337, -0.019952653, 0.01147915, 0.007990454, 0.019778218, 0.01859743, -0.011371804, -0.033437803, -0.010996099, 0.012700193, 0.0056422935, 4.9604883E-4, -0.006917009, 0.02460872, 0.011183952, -0.0022307523, 0.0017066093, 0.009506695, -0.0016630007, 0.008278942, -0.07406768, 0.032766897, -0.015511275, -0.008748574, -0.017725255, -0.015189243, 0.01810096, 0.0017510566, 0.0054645045, 0.013927945, -0.007554367, 0.0033746418, -0.0024118961, 0.00760133, 0.004749993, 0.017711837, -0.0124922125, -0.0115529485, -0.0046493574, 0.001831565, -0.018691355, 0.010600266, 0.020932171, 0.001655453, 0.010828373, 0.020382032, 0.0151624065, 4.448925E-4, -0.021858018, -0.010278233, 0.031693455, -0.018409576, -0.010727738, 0.0093658045, -0.010888754, -0.0375974, -0.012136634, -0.002816115, 0.012351323, -0.0017292523, -0.0050116447, -0.025145441, -0.007574494, -0.006155534, -0.004736575, 0.016302941, -0.017403223, 0.01057343, 0.008755283, 0.023320585, 0.031908143, 0.007346387, -0.0046829022, -0.012532467, 0.020677228, -0.03241803, 0.046426482, 0.0043273238, -0.0065278853, -0.022273976, 0.01624927, 1.9602945E-4, 0.01721537, -0.029385548, 0.0026735482, 0.0044246046, 0.002059672, -0.0010273202, -0.005793247, -0.024326941, -0.008547303, 0.0020764447, 0.012056125, 0.027936397, 0.0189463, 0.021576239, -6.734188E-4, 0.008647939, 0.010808246, 0.027225241, 0.02702397, -0.012800828, -0.038321976, 0.01623585, 9.35071E-4, 0.022770446, -0.0017627975, 0.022300813, -5.73622E-4, 0.010492922, -0.0072256248, 0.0066151028, 0.016383449, 0.010895464, 0.011351678, 0.020207597, -0.005820083, -0.018033871, -0.00177957, 0.026688518, -0.013874273, 0.0034417321, 0.0026534211, -0.010727738, -0.025400385, -0.008949845, -0.0067761196, -0.022569174, 0.0115529485, 0.02322666, 0.02010025, 0.018409576, -0.016007744, 0.011385223, -0.034242887, 0.013169824, 0.0014558594, -0.014733029, -0.007990454, 0.046614334, 0.007997163, 0.0042266883, 0.026769027, -0.015430767, 0.03912706, 0.015310005, 0.014075544, -0.02750702, 0.0044346685, -0.0014659229, -0.0068968823, -0.0076952567, -0.029063515, 0.005524886, -0.010996099, 0.005820083, 0.015484439, 0.03163978, -0.0129752625, 0.065533794, 0.020905335, -0.0117810555, 0.024662392, -0.018355904, 0.029761255, 0.017456895, 0.026178632, -0.022743609, -0.010962554, -0.006504404, -0.017148279, 0.004297133, -0.024407448, 1.3103573E-4, 0.0018399513, 0.017577657, -5.996195E-5, -0.011915236, -0.0080709625, -0.013116152, 5.1659526E-4, 0.019496439, 0.0071920794, -0.021898272, -0.0053336783, 0.017671583, -0.002242493, -9.4261864E-4, -0.033437803, 0.0023900918, -0.02743993, 0.005233043, 0.0013451604, 0.03212283, -0.002802697, 0.0035356584, 0.0061354074, 0.02522595, 0.01230436, -0.015256332, -6.172307E-4, -0.02011367, -0.024353776, 0.019456185, -0.006128698, 0.002450473, -0.024930753, -0.008969972 ], + "id" : "cace690d-09c6-41fe-a9b6-1b7af2d73809", + "metadata" : { + "source" : "movies.csv" + } + }, + "00721454-584b-4caa-afe7-6934c043e0d1" : { + "text" : "33,7604,Tom Cruise-Colin Farrell-Samantha Morton-Max von Sydow-Peter Stormare-Tim Blake Nelson-Kathryn Morris-Neal McDonough-Steve Harris-Lois Smith-Mike Binder-Daniel London-Jessica Capshaw-Patrick Kilpatrick-Jessica Harper-Ashley Crow-Arye Gross-Fiona Hale-George Wallace-Frank Grillo-William Mapother-Jason Antoon-Vanessa Asbert-Tyler Patrick Jones-Richard Coca-Keith Campbell-Kirk B.R. Woller-Klea Scott-Anna Maria Horsford-Sarah Simmons-Eugene Osment-James Henderson-Vene L. Arcoraci-Erica Ford-Keith Flippen-Radmar Agana Jao-Karina Logue-Elizabeth Anne Smith-Victoria Garcia-Kelleher-Jim Rash-Stephen Ramsey-Tom Choi-Tom Whitenight-William Morts-Michael Dickman-Matthew Dickman-Ann Ryerson-Dominic Scott Kay-Joel Gretsch-Bertell Lawrence-William Mesnik-Franklin Scott-Severin Wunderman-Max Trumpower-Allie Raye-Rocael Leiva-Nicholas Edwin Barb-Catfish Bates-Caroline Lagerfelt-Danny Parker-Lopes-Vanessa Cedotal-Katy Boyer-Adrianna Kamosa-Kari Gordon-Elizabeth Kamosa-Raquel Gordon-Laurel Kamosa-Pamela Roberts-Clement Blake-Jerry Perchesky-Victor Raider-Wexler-Nancy Linehan Charles-Nadia Axakowsky-Dude Walker-Tony Hill-Drakeel Burns-Morgan Hasson-Andrew Sandler-Bonnie Morgan-Kathi Copeland-Ana Maria Quintana-Lucille M. Oliver-Gene Wheeler-Tonya Ivey-David Stifel-Kurt Sinclair-Rebecca Ritz-Beverly Morgan-John Bennett-Maureen Dunn-Ron Ulstad-Blake Bashoff-David Doty-Gina Gallego-David Hornsby-Anne Judson-Yager-Meredith Monroe-Benita Krista Nall-Shannon O'Hurley-Jorge-Luis Pallo-Elizabeth Payne-Ethan Sherman-Jarah Mariano-Miles Dinsmoor-Paul Thomas Anderson-Cameron Crowe-Cameron Diaz,self-fulfilling prophecy-washington dc usa-based on novel or book-future-precognition-hologram-dystopia-murder-conspiracy-police chase-murder investigation-tech noir-neo-noir-missing son-future noir-backyard surgery-surveillance state-2050s,/ccqpHq5tk5W4ymbSbuoy4uYOxFI.jpg,/qq4H9JfBKQ5DarMLI6lhUQjn9D7.jpg,74-954-602-605-956-604-2048-2501-955-87-89-607-2502-217-2503-187-616-296-608-63-95\r\n372058,Your Name.,Romance-Animation-Drama,ja,High schoolers Mitsuha and Taki are complete strangers living separate lives. But one night they suddenly switch places. Mitsuha wakes up in Taki��s body and he in hers. This bizarre occurrence continues to happen randomly and the two must adjust their lives around each other.,81.82,CoMix Wave Films-TOHO-KADOKAWA-East Japan Marketing & Communications-AMUSE-voque ting-Lawson Entertainment-4Kids Entertainment,8/26/16,0,357986087,106,Released,\"It was almost like seeing something out of a dream, nothing more or less than a breathtaking view.\",8.", + "embedding" : [ 0.01520733, -0.023944037, -0.01741881, -0.032571536, -0.021746209, 0.043792743, -0.00902338, -0.009446564, -0.013548721, -0.045567386, 0.020845236, 0.025650425, 0.010961836, -0.009876573, 0.0050713853, 0.0040270756, 0.015371143, -0.03609352, 0.010750244, -0.036257334, 0.0019538142, -0.0036482576, -0.02324783, 0.013214269, 0.0032540818, 0.009849272, 0.032052793, -0.013637453, -0.0055252844, -0.01629942, 0.01718674, -0.014019684, 6.0832733E-4, -0.023043064, -0.0148797035, -0.0039349305, 0.0017524605, -0.019439172, 0.009890225, 8.275982E-5, 0.010299758, 6.398955E-4, -0.009262274, -0.0014956491, -0.020135378, 0.004177238, 0.011589787, -1.853564E-4, 2.2876264E-5, 0.03511064, 0.03227121, 0.031615958, -0.017596273, -0.018142316, -0.013132362, 0.007330643, -0.018278828, -0.0076377927, -0.008886869, 0.015289237, 0.024653893, -0.015234632, -0.020381099, -0.0104772225, -0.015930839, -0.01766453, -0.021063654, -0.0241215, -0.0074466774, 6.3392316E-4, 0.016354023, 0.011753601, 0.01990331, 0.0067026922, 0.014060637, -0.027916508, -0.025814237, -0.016640697, -0.0069313482, 1.7479812E-4, 0.009562599, -0.017459761, -0.007501282, 0.0014145956, 0.017323252, 0.009132588, -0.0034895635, 0.03857802, -0.033991247, 0.0062487926, 0.021404931, 0.051164337, -0.012729654, 0.009603552, 0.01167852, 0.014620332, -0.01744611, 0.025745982, -0.030960703, -0.04240033, -0.008190663, -0.006456972, -0.003148286, -0.0128661655, -0.01155566, 0.0032336053, 0.010552304, -0.010784372, 0.019370917, 0.0062078396, 0.0049314615, -0.009159891, 0.016667997, -0.032789953, -0.0014043574, -0.019193452, 0.02275639, -0.02472215, -0.011753601, -0.019398218, 0.03909676, 0.032189302, -0.0058768005, -0.039752014, 0.032871857, 0.034428086, -0.0085046375, -0.0104772225, 0.005641319, -0.004586771, 0.024189757, -0.008825439, 0.032243907, 0.015111772, -0.020599516, 0.045703895, -0.028831132, 0.011364544, -0.023329737, -0.004887095, 0.031506747, 0.030714983, -0.02435357, -0.010279281, -0.02042205, 0.002088619, 0.021309374, 0.0018889715, 0.027315859, 0.0037574663, 0.017623575, 0.024749452, 0.0044400217, 0.021418583, 0.02671521, -0.0022985046, 4.705898E-5, 0.006416019, -0.0118901115, -0.018633757, -0.008033675, -0.010402141, -0.0076514436, -7.670214E-4, -0.0021705255, 0.016367674, 0.012197262, -0.015862582, -0.0072487365, -0.006190776, -0.012791084, 0.032844555, -0.036066215, 0.008313523, -0.010108642, 0.011664868, 0.0019469887, -0.007207783, -0.032380417, -0.030196242, 0.00463455, 0.0066822153, 0.039642807, 0.040871404, -0.0035151592, 0.0026312503, 0.019384569, -0.02064047, 0.013541895, -0.0015502535, 0.0044468474, 0.025786936, 0.010251979, -0.0028445488, -0.63734275, -0.023288783, -0.0095899, -0.0090643335, 0.021773512, 0.02323418, 0.0023496964, 0.004538992, -0.025377402, -0.0034673805, -0.032844555, 0.028612714, 0.0067880116, -0.012654574, -0.023889432, -0.014183497, -0.0014052105, -0.01595814, 0.017159438, -3.0416367E-4, -0.03650305, 0.015903536, 0.020708725, 0.0052044834, 0.009398785, -7.072978E-4, -0.014975261, -0.01520733, -0.008600196, 0.005941643, -0.029349873, 0.027902856, 0.005672034, 0.0046208985, 0.04005234, 0.005122577, -0.017841993, 0.05465902, 0.033363298, 0.035902403, -0.030332753, -0.009323704, 0.020831585, 0.007726525, -0.025950748, 0.026660606, -0.0046789157, -0.012204087, -0.009460215, -0.0138422195, 3.2272062E-4, 0.004753997, -0.017678179, -0.0095011685, -0.0019725845, -0.009801493, 0.009767365, -0.03066038, 0.026974581, 3.553553E-4, -0.027274907, 0.019466475, 0.0037233387, 0.012634097, -0.009412436, 0.021923672, -0.0046516135, -0.009125763, 0.010804849, -0.0309061, 0.00908481, 0.007542235, -0.014497473, -0.0040885056, 0.0010716117, 0.011698996, 0.03699449, -6.3349656E-4, -4.1571876E-4, 0.013705708, 0.0010886756, -0.011630741, 0.007951768, 0.006187363, 0.014947959, -0.015548607, -0.038168486, 0.018756617, 0.016190208, -0.0036004786, 0.0036175426, 0.018237876, 0.010873104, 0.004037314, -0.0064057806, -0.010033562, -0.024940567, 0.0014581085, 0.02436722, -0.06044709, -0.011903763, -0.021705255, 0.03562938, -0.01756897, 0.0030271322, 0.004801776, -0.013589674, -0.013978731, 0.025950748, -0.0076855714, 0.0026090674, -0.00324555, -0.026646955, -0.025500262, -0.00590069, -0.029950522, 0.012449807, 0.026237423, -0.0040612034, -0.011398672, 0.008866392, 0.0034622613, 0.011828681, -0.004170412, 0.010013085, 0.026428537, -0.0018497246, -0.0036584958, -0.0010639329, 0.009849272, 0.005515046, -0.0042864466, 0.016995624, -0.022278601, 0.017637227, -0.015002564, 0.010176898, -0.0028172466, 0.011473753, -0.009296401, -0.024435475, -0.0034281334, -0.011193905, -0.0073169917, -0.005047496, -0.008477336, -0.026059957, 0.0011415735, -0.0066378494, -0.01941187, 4.2126453E-4, 0.015630513, 0.0072146086, 0.011535183, -0.0016133898, 7.068712E-4, -0.030742286, -0.018210573, 0.009876573, -0.024804056, 0.0077060484, 0.016586091, -0.0012183611, -0.014920657, 0.02929527, -0.0020647296, -0.015412097, 0.009856097, 0.010333885, -0.014893355, 0.015657816, -0.016463231, -0.0031704688, 0.021363977, -0.004965589, 0.022019232, -0.007999547, 0.026783466, 0.010497699, -0.0047812993, -5.0466426E-4, -0.015002564, -0.01781469, -0.012531714, 0.018879477, 0.009337355, 0.035793196, -0.021131909, -0.008941473, 0.008613846, -0.012217738, 0.0010212732, -0.0029128043, 0.0059348173, 0.015002564, 0.025800586, 0.0123269465, -0.0062692696, 0.0109959645, -0.006426257, 0.046113428, 0.018852174, 0.022073835, -0.0080268495, 0.01558956, -0.030005127, -0.003298448, -0.020463005, 0.0064637978, -0.0030510218, 0.020189984, -0.017609924, -0.015343841, 0.011664868, 0.011651217, 0.018128667, -0.0068596797, -0.0044127195, -0.016545137, 0.0040304884, 0.0071395272, -0.018483594, 0.023657363, 0.0013779083, -0.017978504, 0.0061464095, 0.021609697, -0.010211025, 0.0015775557, 0.0067095174, -0.016804509, -0.011262161, 0.014852401, 0.024298966, 0.010859453, -0.019643938, 0.015480352, 0.002573233, 0.043246698, -0.0026056545, -0.010040387, 0.034428086, 0.01878392, -0.0039212797, -0.0033052736, -0.026019005, 0.014920657, 0.022865599, 0.003914454, 0.03633924, -0.0138422195, 0.024148803, -0.01322792, 5.3708564E-4, 0.0026943868, -0.015794327, -0.0038769136, 0.015289237, 0.02410785, 0.03117912, 0.008245267, -0.022729088, 0.010026736, -0.0044263704, -0.0015374556, 0.0019981803, -0.013309826, 0.009828795, -0.0038871518, -0.03314488, -0.014524775, -0.0119105885, 0.02051761, 0.0012729655, -0.012197262, -0.008279394, 0.0029008596, 0.01743246, 0.019480126, 0.026551398, -0.010668337, -0.042345725, 0.010920883, 0.027370464, -0.015548607, -0.024653893, -0.0129822, -0.026660606, -0.025295496, -0.022223998, -0.010531827, 0.02943178, -0.01629942, 0.0017012688, -0.012019797, -8.7292414E-5, 0.025077078, -0.012784258, 0.0017362498, 0.020503959, -0.008013198, 0.01304363, -5.6054845E-4, -0.0038427857, 0.016586091, -0.018005807, -0.0052317856, 0.00234799, -0.0074603283, -0.009214495, 0.0043615275, -0.0043239873, -0.046795983, 0.009603552, -0.025309147, -0.0052625006, -0.009153065, -0.0043035108, -0.0033922994, -0.014633983, -0.017364204, -0.017623575, -0.024899613, 0.006620785, 0.08976966, 0.0345919, 0.010743419, 0.007678746, -0.019916961, -0.0067675347, -0.029759407, -0.012777434, -0.012251866, -0.0060883923, 0.021295723, -0.009187193, 0.02904955, -0.001359138, -0.0019316312, -7.8877783E-4, -0.0068972204, 0.0035834147, -0.003214835, -0.008177011, -0.0058768005, -0.021159211, 0.03188898, 0.032844555, 5.550027E-4, -0.019466475, 0.01718674, 0.021473186, 0.0099584805, 0.012169959, -0.003900803, 0.011528357, 0.0061327587, 0.01594449, 9.5728366E-4, 6.160061E-4, 0.028967643, 0.009009728, 0.01218361, -0.0012942953, -0.00810193, 0.014497473, 0.009781016, -0.008320348, 0.0068357904, -0.031807072, -0.014033335, 0.02236051, 0.040025037, -0.03549287, 0.021200165, 0.018592803, -0.025199939, -0.01741881, 0.011487404, -0.0058836257, -0.011023266, -0.0095899, -0.0148387505, 0.00779478, 4.900533E-5, -0.04054378, 0.016285768, -0.0042727957, -0.013146013, -0.02236051, -0.015057168, -0.011009616, -0.023561805, 0.007508107, 0.005194245, -0.021363977, -0.01410159, -0.0061805374, 0.016381325, 0.0059791836, 0.03041466, -0.005412663, 0.0041669994, 0.017678179, -0.035410963, -0.019916961, 0.008757183, -0.01706388, -0.0039997734, 0.0073511195, -0.011378195, 0.026646955, 0.004992891, 0.016435929, -0.01192424, 0.0032114221, -0.01878392, -0.013057281, 0.033117577, 0.0070166676, 0.018115016, 0.011473753, -2.4507998E-4, 3.0181737E-4, 0.014306357, -0.035410963, -0.010272455, -0.0075763627, -0.023957688, -0.010763896, -0.0024708498, 0.004603835, -0.022810996, -0.026292026, -0.011849158, -0.021814464, 3.992948E-4, 0.00534782, 0.014784146, 0.008395429, 0.0039997734, 0.022920204, -0.0064672106, 0.005194245, 0.010681989, -0.0099994335, 0.018975034, 0.011658043, -0.009671807, 0.021254769, -0.0030322515, -0.018128667, 2.882196E-5, 0.04103522, 0.0020613167, 0.0061429967, -0.017459761, -0.014320008, -0.02114556, -0.031124517, 0.0085046375, 0.006753884, -0.0024862073, 0.012313296, -0.01829248, 0.013698882, 0.0012695526, 0.009808319, -0.01582163, -0.028039368, 0.0054911566, -0.028721923, 0.018838523, 0.02014903, 0.0036584958, 0.0057539404, -0.01755532, -0.009241797, 8.88175E-4, -0.03352711, -0.021582395, -0.0026312503, 0.023643712, -8.941473E-4, 0.043956555, 5.972358E-4, 0.029622896, 0.0046823286, 0.012449807, 0.020367447, -0.029950522, -0.0026892675, -0.023971338, 0.00853194, 0.01893408, 0.025800586, 0.0052283728, -4.820546E-4, -0.0019316312, 0.034155063, 0.011023266, 0.016367674, 0.0015289236, -0.026264723, -0.015794327, 0.0072487365, -0.025158985, 0.001508447, -0.009159891, -0.009610377, 0.019725846, 0.006190776, -0.0025937099, -0.014674936, 0.03524715, -0.0015289236, -0.0028616127, -0.0358751, 0.016777206, -0.018702013, 0.0074193752, -0.019070592, -0.015193678, 0.004098744, -0.012142657, 0.0143609615, 0.01754167, -0.01106422, -0.014497473, 0.027056487, -0.02064047, -0.014128893, 0.028640017, -0.011152952, -0.007760653, -0.020408401, -0.012299645, -0.020203633, -0.010354362, -0.0148797035, -0.01769183, 0.0040134247, -0.028257785, -0.027152047, 0.027479673, -0.0057266383, 0.0408441, 0.01954838, 0.047069006, 0.02211479, -0.0022421938, -0.012449807, 0.010436269, -0.010129119, 0.0018121841, 0.025377402, 0.041881587, -0.023971338, 0.0018309543, 0.00491781, -0.004269383, -0.03931518, -0.03115182, 0.012907119, 0.038086582, 0.028994946, -0.030114336, 0.008129233, -0.021473186, 0.026292026, -0.0077060484, 0.0072555616, 0.012081227, -0.030687682, -0.013678406, -0.005801719, -0.0045935963, -0.0029418129, 0.012709178, -0.01902964, 0.02670156, -0.029895918, 0.018374385, -0.010074515, -0.015193678, 0.037376724, -0.015425747, 0.017282298, -1.2094025E-4, 0.016190208, -0.0023036238, 0.0012473697, -0.0062419674, 0.033090275, -0.012094879, 0.011262161, -0.0094806915, 0.001196178, 0.013767138, 0.0040612034, -0.011071045, -0.014265404, -0.020995397, -0.008579719, 0.039642807, 0.015302887, 0.010586431, 0.003206303, -0.016913718, -0.021541443, 0.0042727957, -0.011152952, 9.385134E-4, -0.04745124, 0.008682102, 1.1678093E-4, 0.0076446184, 5.1021E-4, -0.01410159, 8.591664E-4, -0.0045458176, 0.0046720905, -0.0011842332, -0.011821856, -0.018319782, -0.011835507, -0.047669657, -0.028721923, -0.012907119, -0.0056617954, 0.014415566, -0.024339918, 8.689781E-4, -0.00408168, 0.0028633191, -0.0016389857, 0.00451169, -0.007630967, -0.0023991815, 0.015726073, -0.014661286, -0.011323591, 0.0016065643, 0.020695074, 7.8835123E-4, -0.00840908, -0.001574143, 0.003535636, 0.038386904, -0.016381325, 0.011132475, -0.007235085, -0.019398218, -0.0034776188, 0.018469945, 0.014947959, 0.009262274, -0.0032660267, -0.026469491, -0.014633983, -0.012572667, 0.026769815, -0.0010306584, -0.0027029186, 0.031506747, 0.021746209, 0.021705255, 0.033199485, -0.0049382867, -0.023916734, 0.011132475, -0.008518289, -0.020080773, -0.0016278941, 0.0059484686, 0.003407657, 0.011296288, -0.012129006, -0.026756164, -0.015494003, -0.029950522, -0.041772377, -0.0050952747, 0.0119720185, 0.032353118, 0.012094879, -0.0018036522, 0.0080882795, 0.0031824135, -0.0010144477, -0.022537973, -0.0033325758, 0.018401688, 0.008927822, 0.038769137, 0.020217285, -0.028612714, -0.0053853607, 0.004893921, 0.013500942, 0.012811561, 0.012954897, -0.018852174, -0.0077060484, -0.008293046, -0.012395202, -0.023015762, 0.006654913, 0.0059860093, -0.041007917, 0.010306584, 0.009289577, 0.011282638, 0.0064399084, 0.02349355, 0.0114532765, -0.0074193752, 7.700076E-4, -0.008661626, -0.023589108, -0.0028274849, -0.021869069, 0.022674484, 0.007501282, 0.008886869, 0.04799728, 0.027302207, 0.002590297, 0.007078097, -0.006265857, 0.0075831884, -0.020039821, 0.0030885623, 0.0069688885, 0.021241117, -0.01902964, 0.008920996, -0.02524089, 0.0016944433, -0.003504921, 0.0051567047, -0.012081227, 0.03571129, 0.019985216, -0.06563451, -0.0026141864, -0.011466928, 0.0027865316, -0.018742966, 0.0014879704, -0.013152839, -0.012586318, 0.0011757014, 0.0057948935, -0.018142316, -0.02509073, 0.016913718, -0.016640697, -0.024326267, 0.015152725, 0.17964853, 0.003580002, 0.006003073, 0.052447543, 0.001904329, 0.0038325475, 0.017145786, 0.027657136, -0.0057641785, 0.010804849, -0.0046789157, 0.0027762933, -0.0028343105, 0.004784712, 0.02671521, -0.021527791, -0.028339691, -0.035656683, -0.021964626, -0.038004674, -4.560322E-4, 0.004477562, -0.002300211, -0.023889432, 0.0049758274, 0.0010408966, 0.0011526651, 0.003329163, 0.023903083, 0.008477336, -0.0078084315, -0.01830613, -0.0094397385, 0.00661396, -0.025077078, -0.009357831, -0.0010084753, 0.010347537, 0.023944037, 0.004556056, -0.00636824, -0.0067368196, -0.009569424, -0.011098348, 0.013685232, 0.031588655, -0.02014903, 0.006364827, -0.018333433, 0.0075217583, -0.040980615, -9.248623E-4, 0.011992495, 0.020736028, -0.01508447, -0.007501282, 0.0063306997, 0.004112395, -0.016749905, 0.01644958, 0.008142884, 0.034974128, -0.031861678, 0.021609697, -0.0029076852, 0.006620785, -0.031424843, -0.0070576207, 0.008402254, -0.035056036, -0.013746662, -0.01830613, -0.008477336, 0.0011159778, 0.005044083, 0.0042864466, 0.015289237, 0.0028701446, -0.0049007465, 0.022660833, -0.031561352, -0.017773738, -2.1447164E-4, -0.006750471, -0.01804676, -0.016599743, 0.015016214, -0.016531486, 0.0031363412, -0.026428537, -0.008750358, -0.02410785, -7.1327016E-4, -0.016053699, -0.0016287473, 0.007815257, 0.026346631, 0.016667997, -0.007938117, 0.005504808, -0.03571129, 0.029158758, 0.012470284, 0.0030527283, -0.026565049, -0.013316652, -0.0024247773, 0.011023266, 0.017923899, -0.019275358, -0.011787728, -0.025104381, -9.231559E-4, -0.011187079, -0.013726185, 0.031479444, -0.0015178322, -0.012975374, 0.042946372, -0.013630628, 0.0076855714, -0.02212844, 0.015917188, 0.016927369, 1.6807922E-4, -0.029677501, -0.033581715, -0.0021790576, -0.0029537575, -0.037786257, 0.030714983, -0.0075149327, 0.021937324, 0.0062999846, 0.003610717, -0.0024845009, 0.022155741, -0.014661286, -0.011084696, 0.0038257218, 0.003100507, -0.01533019, 0.0050713853, 0.015794327, -6.680509E-4, -0.025077078, 0.005412663, -0.007569537, -0.02226495, -0.030796891, -0.011350893, -0.016408628, 0.013603325, 0.019589335, 0.052201822, 0.0017055348, -0.018961383, -0.04526706, -0.0072282595, 0.039861225, -0.02992322, 0.015111772, 0.018087713, -0.007173655, -0.024217058, 0.0043239873, -0.17517097, 0.015794327, -0.0045799455, -0.023411643, 0.021432234, 0.0099789575, 0.020449353, 0.003549287, 0.012265517, -0.027233953, 0.040625684, 0.010415792, -0.03620273, -0.0042864466, 0.0028530806, 0.012313296, -0.00939196, 0.019466475, 0.03994313, -0.0036755598, 0.042618748, -9.0011966E-4, -0.011808205, 0.0050406703, 0.023438945, 0.013801266, 0.023397991, -0.006886982, 0.014729541, 0.0013087996, -0.03426427, -0.01087993, 0.010313409, 0.0044468474, -0.009746889, -0.0071190507, -0.030087033, -0.009862923, 1.5261507E-4, -0.008115581, 0.032298513, 0.0052693263, 0.021486837, 0.014374613, 0.012115355, 0.010374839, 0.027479673, -0.017500715, 0.01212218, -0.014265404, -0.010238328, -0.044666413, 0.01829248, -7.209489E-4, -0.009569424, 0.028394297, 0.012538539, 0.0022677896, 0.0048222523, -0.0034707931, -0.030332753, -0.0067129303, 0.0016296005, -0.009125763, -0.012190436, -0.016586091, -0.005207896, 0.003148286, -0.02509073, 0.012299645, -0.030769588, 0.01793755, 0.0062487926, 0.0057505276, -0.0031943584, -0.025786936, -0.02732951, 0.013309826, 0.006876744, 0.01743246, -0.028585412, 0.044939436, -0.010668337, 0.015043517, -0.0018241288, -0.014947959, 0.01106422, -0.0032353117, -0.00834765, -0.018702013, 0.012975374, -0.005678859, -0.03909676, 0.0047812993, -0.0036516704, 0.0133030005, -0.01335078, 0.011719473, 0.0042625573, -0.007938117, 0.0019026226, -0.015412097, -0.0080882795, 0.022892902, 0.019630287, 0.014620332, 0.0027421655, 0.025991702, 0.0114532765, -7.243617E-4, -0.014442868, -0.011057395, 0.034236968, -0.011582961, -0.017801039, -0.001024686, -0.016859114, -0.017459761, 0.009159891, 0.024954218, 0.038496114, -0.003214835, 3.1973445E-4, -0.017746435, -0.0057368763, -0.004723282, -0.085728936, 0.0024213647, 0.005545761, 0.053621538, -0.030387357, 0.0482157, -0.012770608, 0.013398559, -0.02880383, 0.022920204, 0.011228033, -0.033363298, 0.0069961906, -0.0119720185, 0.011391846, 0.0020732614, -0.02236051, -0.0148797035, -0.0076104905, 0.02200558, -0.016149256, -0.015111772, -0.0066344365, -0.011883286, -0.01706388, 0.017077532, -0.025855191, 0.020476656, 0.01422445, 0.015139074, 0.0072623873, -0.0234799, 0.017746435, -0.038086582, -0.024449127, -0.01766453, -0.030250847, -0.023903083, -0.0010374839, -0.053594235, 0.0060815667, 0.010149596, 0.003945169, -0.017323252, -0.019725846, 5.5990855E-5, -0.03822309, 0.030769588, -0.0129480725, -0.01890678, -0.0058119576, -0.02423071, -0.030005127, -0.014251753, 0.018524548, 0.032544233, 0.025814237, 0.006654913, -0.024899613, -0.014920657, -0.017241344, -0.0045458176, -0.018811222, 0.026073609, 0.012279168, 0.008456859, -0.0073169917, -0.018770268, 0.017091183, -0.011187079, -0.026141863, 0.025527565, -0.025759634, -0.010504524, -0.018961383, 1.7351833E-4, -0.027315859, -0.015043517, 0.031752467, -0.028339691, 2.7435519E-5, -0.03377283, 0.008647975, -0.009910702, 0.017746435, 0.023834828, 0.013664755, 0.009644505, -0.0021602872, -0.034318876, 0.0059860093, 0.010381664, 0.0033957122, 0.008695753, -0.0026056545, 0.009289577, 0.008948299, -2.4635976E-4, -0.0010050625, -5.724932E-4, -0.013180141, -0.005184007, -0.07808431, 0.019876007, -0.02745237, 0.0030544344, -0.01508447, -0.0042113657, 0.004276208, -0.0060474393, -0.0036653215, 0.03153405, -0.0063443505, 0.021377629, -0.0067026922, 0.007603665, -0.002801889, 0.016872765, -0.0010801436, 0.0026414886, 0.010497699, 0.0071531786, -0.028148577, 0.0056856847, 0.021814464, 0.0062829205, 0.0052010706, 0.016504185, 0.013576023, 0.0016586091, -0.015343841, -0.0014683469, 0.03363632, -0.013944603, 0.0049416996, 0.01316649, -0.007630967, -0.020476656, -0.006747058, 0.013869522, 0.00516353, 0.0072487365, -0.01471589, -0.016995624, 0.004996304, 0.0051294025, -0.005515046, 0.0038530242, -0.012729654, 0.00828622, 0.025950748, 0.0128456885, 0.028339691, 0.0036277808, -0.0021363979, -0.012251866, 0.008839089, -0.015548607, 0.042236514, 4.6371095E-4, -6.9695285E-5, -0.019698543, 0.017828342, 0.0054331394, 0.024817707, -0.02509073, 0.010681989, 0.0024896201, -0.007965419, -0.0032830904, -1.3139188E-4, -0.023165923, -0.023793874, -0.01545305, 0.0123679, 0.043082885, 0.015234632, 0.020626819, 0.0025322798, 0.0019538142, -0.005344407, 0.011658043, 0.024926916, -0.0014367787, -0.031807072, 0.017241344, -0.006876744, 0.012702352, -0.008682102, 0.030087033, 0.0068187267, 0.015644165, -0.0046720905, 0.0042727957, 0.018469945, -0.01447017, 0.023807526, 0.021104608, -0.01063421, -0.015466701, 0.012381552, 0.02645584, -0.013139187, 0.0032045967, -0.026687909, -0.018524548, -0.02817588, -0.0055082203, -0.029104155, -0.017487064, 0.011821856, 0.014060637, 0.02670156, 0.0051567047, -0.009856097, 0.011262161, -0.039124064, 0.01681816, -0.0104772225, -0.020108076, -0.004071442, 0.039533596, 0.009378308, 0.009617203, 0.035056036, -0.016667997, 0.04859793, 8.689781E-4, 0.015220981, -0.034919523, -5.535096E-5, 0.008129233, 0.007869861, 0.0040134247, -0.015275585, 0.015739722, -0.0062112524, -0.0040885056, 0.020340145, 0.029650198, -0.023275133, 0.07579093, 0.008108756, -0.0011014735, 0.0042147785, -0.012832038, 0.017746435, 0.027288556, 0.01582163, -0.012047099, -0.0013582848, 0.0063341125, -0.006136171, 0.020968096, -0.02720665, 0.0032574947, -0.018893128, 0.0063443505, 0.021855418, 0.0023241004, -0.019398218, -0.008108756, -0.009726412, 0.013849045, 0.013712534, -0.012272342, -0.0047812993, 0.014033335, -0.007842559, 0.005501395, -0.028093971, 8.229056E-4, -0.022456067, -0.00469598, 0.0050099553, 0.023698317, -0.001820716, -0.003161937, 0.0051259897, 0.030196242, 0.00655253, -0.014019684, 0.0061805374, -0.031015309, -0.007542235, 0.012565841, -0.01316649, -0.0025186287, -0.032789953, -0.015835281 ], + "id" : "00721454-584b-4caa-afe7-6934c043e0d1", + "metadata" : { + "source" : "movies.csv" + } + }, + "54700766-bf47-403e-836b-2502df5a5bf5" : { + "text" : "211672,Minions,Family-Animation-Adventure-Comedy,en,Minions Stuart Kevin and Bob are recruited by Scarlet Overkill a super-villain who alongside her inventor husband Herb hatches a plot to take over the world.,31.314,Illumination-Universal Pictures,6/17/15,74000000,1156730962,91,Released,\"Before Gru, they had a history of bad bosses\",6.393,9706,Sandra Bullock-Jon Hamm-Michael Keaton-Allison Janney-Steve Coogan-Jennifer Saunders-Geoffrey Rush-Steve Carell-Pierre Coffin-Katy Mixon-Michael Beattie-Hiroyuki Sanada-Dave Rosenbaum-Alex Dowding-Paul Thornley-Kyle Balda-Ava Acres-Sherry Lynn-Mickie McGowan-Carlos Alazraqui-Lori Alan-Daniel Barker-Bob Bergen-Melanie Bond-Jim Cummings-John Cygan-Brian T. Delaney-Bill Farmer-Keith Ferguson-Jess Harnell-Eve Karpf-John Kassir-Lewis Macleod-Danny Mann-Mona Marshall-Gary Martin-Laraine Newman-Andy Nyman-Alexander Polinsky-Jan Rabson-Christopher Ragland-Mindy Sterling-Tara Strong-Jim Ward-Colette Whitaker-James Daniel Wilson,assistant-aftercreditsstinger-duringcreditsstinger-evil mastermind-minions,/vlOgaxUiMOA8sPDG9n3VhQabnEi.jpg,/c7xTZ9EA6GpH72xJC5s0x0KKR1a.jpg,93456-20352-324852-150540-177572-109445-135397-425-269149-270946-62211-159824-950-953-8355-10527-131631-257344-328111-57800-38757\r\n271110,Captain America: Civil War,Adventure-Action-Science Fiction,en,Following the events of Age of Ultron the collective governments of the world pass an act designed to regulate all superhuman activity. This polarizes opinion amongst the Avengers causing two factions to side with Iron Man or Captain America which causes an epic battle between former allies.,79.957,Marvel Studios,4/27/16,250000000,1153337496,147,Released,United we stand. Divided we fall.,7.443,21401,Chris Evans-Robert Downey Jr.-Scarlett Johansson-Sebastian Stan-Chadwick Boseman-Daniel Br�_hl-Elizabeth Olsen-Paul Bettany-Don Cheadle-Anthony Mackie-Tom Holland-Jeremy Renner-Paul Rudd-Emily VanCamp-Martin Freeman-William Hurt-John Kani-Marisa Tomei-Frank Grillo-John Slattery-Hope Davis-Alfre Woodard-Michael A.", + "embedding" : [ 0.0020696598, -0.044719256, -0.018469265, -0.058209386, -0.0023982825, 0.031839896, 0.0014547368, -0.005384103, -0.024550447, -0.033061445, 0.017486716, 0.046498466, 0.017075108, 9.2860835E-4, -2.1200217E-6, 0.024099005, 0.015866838, -0.018814486, 0.010496013, -0.027152874, -0.0012398042, -0.0068446486, -0.023528064, 0.023196122, 0.003148472, 0.0038272939, 0.025532996, -0.015189676, 0.0038837239, 0.0021924784, 0.020182086, -0.02028831, -0.009068661, -0.028175255, -0.026103936, -0.012315056, 0.0037476276, -0.03016691, 0.041054614, -0.009719268, -0.0010721734, 8.1740774E-4, -0.011996392, -0.016358113, -0.018482544, 0.0026522183, 0.018163878, 0.0036613226, -0.013397188, 0.032450672, 0.014618736, 0.05388086, -0.010529207, -0.02740515, -0.004783287, -0.012573971, -0.02016881, 0.021124803, -3.5165128E-4, -0.0039833067, 0.017247718, -0.0104296245, -0.025028443, -0.004590761, -0.029901356, -0.017712437, 0.0022024366, -0.03130879, 2.7364487E-4, 0.0050787157, 0.0283877, 0.022266684, 0.013204661, 0.012646998, 0.014791345, -0.038983293, -0.03555765, 0.0042720963, 0.0015875137, 0.011093509, 0.004175833, -0.006509387, 0.006658761, 0.0048330785, 0.009971544, 0.034707878, 0.002550976, 0.009002273, -0.040762503, 0.010197265, -5.9210195E-4, 0.026170325, -0.0017543146, 0.015813727, 0.0035285458, 0.021138081, -0.023196122, 0.029662356, -0.014472681, -0.036805753, 0.014924122, -0.0063865683, -0.016132392, -0.011664449, -0.008205611, 0.017592937, 1.2790148E-4, -0.01901365, 0.00833175, 0.01918626, -0.003584976, -0.022651738, 0.0147647895, -0.03295522, 0.00195348, -0.02579855, 0.0065691364, -0.013589715, -0.01528262, -0.02016881, 0.03959407, 0.032610003, 0.02745826, -0.02229324, 0.05175643, 0.018801207, -0.01039643, -0.025599385, -0.011637894, 0.0015866838, 0.03510621, 0.009579852, 0.015415397, -0.0012398042, -0.024895666, 0.039142627, -0.021788687, 0.0100976825, -0.021284135, -0.010542485, 0.02073975, 0.03056524, -9.875281E-4, -0.0147647895, -0.014393015, -2.7094784E-4, 0.011697643, -0.009772379, 0.014300071, -2.0943479E-4, 0.0074089505, 0.010575679, 0.0062438333, 0.015508341, 0.024391115, -0.0016115794, 0.01706183, -0.012188918, 0.008836302, -0.017778825, 0.012733304, 0.0024978651, -0.013968129, -0.015508341, -0.009566574, 0.015840283, 0.01597306, -0.026223436, -0.010230459, 0.008152501, 0.011232925, 0.025134664, -0.0053741443, 0.0119100865, 0.004398234, 0.015402119, 0.0043451237, -0.011471923, -0.0229704, -0.010993926, -5.937616E-4, 0.009068661, 0.0181506, 0.028626697, 0.001792488, 0.009274466, 0.03441577, -0.004331846, 0.0125142215, -0.0155348955, -0.0015966421, 0.014167294, 0.0010771526, -0.007428867, -0.64412725, -0.010847872, -0.0016588812, -0.013171467, -0.0022555473, 0.016915776, 0.019026928, -0.005221451, -0.03792108, -0.010183987, -0.016517445, 0.009015551, 0.03027313, -0.014977233, -0.026064103, -0.017792104, -0.0104296245, -0.02389984, 0.010715094, 0.0016157287, -0.030246574, 0.015813727, 0.01108687, 0.0036214895, -0.0045409696, -0.0042720963, -0.0014638652, -0.0073558395, -0.0070039807, -1.4947772E-4, -0.021430189, 4.7924157E-4, 0.024656668, 0.007282812, 0.033884663, 0.013224578, -0.017938158, 0.030538684, 0.018070934, 0.03130879, -0.037867967, -0.0077076983, 0.019810311, -0.007455422, -0.02378034, 0.019916533, 0.008657053, 0.0037708636, 0.0013161509, -0.007309368, -0.008086112, 0.017274274, 0.001820703, 0.009460353, -0.014844456, 0.0058455025, 0.0053177145, -0.030538684, 0.0028098908, -4.8505058E-4, -0.012839525, 0.0049426197, -0.0029443274, 0.013954851, -0.005739281, 0.029237472, -0.017473439, -0.0073226453, 0.018641874, -0.031627454, 0.019212816, -0.009320937, -0.004431429, 0.005354228, 0.014844456, 0.0121822795, 0.03821319, -0.0030455699, 5.248836E-4, 0.021151358, 8.9541415E-4, -0.009294382, 0.009427159, 0.015893394, 0.01304533, -0.0022306517, -0.027670704, 0.0049260226, 0.022558793, -0.0029609245, 0.0011302632, 0.02229324, 0.0065459004, 0.0037675442, -0.012109252, 0.010894343, -0.016424501, 0.011332507, 0.025001887, -0.055819403, -0.017380495, -0.01631828, 0.024510613, 8.414735E-4, 0.03531865, 0.009579852, 0.009566574, -0.011724199, 0.029662356, -0.0032812487, -0.002682093, 0.008982357, -0.024099005, -0.009287743, -0.01177731, -0.035982538, -4.7467736E-4, 0.010210543, 0.0026555378, 6.5102166E-4, -0.0027484815, 0.01263372, 0.009699352, -0.007083647, 0.0068180934, 0.017101662, -0.01716805, 0.0050521605, -0.010522569, 0.0145390695, 0.0026571974, 0.011206369, 0.01108687, -0.015110009, 0.029688912, 0.025440052, 0.0152029535, -0.017845213, 0.025878215, -0.0035185874, -0.022107352, -0.018734818, -0.0044944976, 0.001004955, -0.012739942, -0.015362286, -0.02878603, -0.009101856, -0.0038903628, -0.0049260226, -0.016238613, 0.02091236, 2.1928933E-4, 0.0017161412, 0.011624617, -6.920995E-4, -0.02188163, -0.025692327, 0.0281487, -0.04232927, -0.0058620996, 0.008431332, 0.0046339133, -0.02372723, 0.013915018, 0.008803108, -0.010496013, 0.003843891, 0.0014920803, -0.014154016, 0.020606972, -0.015933227, -0.0017941477, 0.0030322922, -0.0061044176, 0.025373664, -0.005739281, 0.015242787, 0.0030870626, -0.016517445, -0.012261946, -0.0031551109, -0.02476289, -0.005895294, 0.04750757, 0.027378595, 0.008869496, -0.005596546, -0.0033343595, -0.005606504, -0.023275789, -0.012939108, -0.012507583, -0.014300071, -0.0014505875, 0.0345751, -0.004803204, -0.0018904109, 0.0047434545, 0.0070637306, 0.030777682, 0.05037555, 0.0091948, -0.0081193065, 0.01154495, -0.031521235, 0.0048994673, -0.020062588, 0.005204854, -0.0031750274, 0.03590287, 0.0010198925, -0.01688922, -0.011677727, 0.010927537, 0.018336488, -0.012049503, 1.9760935E-4, -0.021337247, 0.005911891, 0.0049160644, 0.0090553835, 0.015056899, 0.0020945554, -0.0363012, -0.012919191, 0.031919565, -0.014645291, -0.0036812392, 0.0045044557, -0.0012057801, -0.008517637, -3.1036598E-4, -0.002595788, 0.0061741252, 0.004623955, 0.024829278, -0.006439679, 0.03895674, -0.016185503, -0.015043621, 0.024377836, 0.019425258, -0.005095313, -0.006140931, -0.01769916, 0.026010992, 0.019119872, -0.004574164, 0.056616064, -0.025957882, 0.026555378, -0.010502652, 0.013576437, -0.0020431043, -0.0014041156, 0.007070369, 0.017911602, 0.034787543, 0.028812585, 0.007647949, -0.016610388, 0.019544758, -1.786264E-4, 0.00993835, 2.9148677E-4, -0.0144328475, 0.004049695, 0.005765836, -0.03417677, -0.012208835, -0.009546658, -4.026874E-4, -0.0039667096, -0.009201438, -0.01533573, -0.0033061446, 0.014778067, 0.012341612, 0.036221534, -0.0023385328, -0.030724572, 0.0073160063, 0.02056714, -0.015667673, -0.021111526, -0.012759859, -0.0077408925, -0.016119115, 9.966565E-4, -0.012799692, 0.038399074, -0.019093316, 0.0067981766, -0.013523326, 0.009360771, 0.016451057, -0.020753028, 0.012746581, 0.018867595, -0.0062936246, 5.186597E-8, -0.017619492, -0.022890735, 0.0348141, 0.010608873, 0.011551589, 0.012507583, -0.012520861, -0.0027766966, -0.004789926, 0.006731788, -0.042701047, 0.022744682, -0.020128977, -0.012494305, -0.008922607, 0.005536796, 0.0048729116, -0.003349297, -0.008570748, -0.0152029535, -0.008942523, 0.0061940416, 0.073930174, 0.037257195, 0.0017476758, 0.0075550047, -0.015880115, 0.016225336, -0.012062781, -0.019411981, 0.0019003692, -0.011916726, 0.023249233, -0.022226851, 0.024550447, 0.006957509, 0.017765548, -0.0024679904, -0.0047534127, -0.017619492, 0.00798653, 0.002091236, -0.012301778, -0.005496963, 0.025785271, 0.049393002, 0.0039235572, -0.010794761, 0.009891878, 0.010569041, -0.0052015344, 0.020845972, -0.004819801, -0.0039534317, 0.00580235, 0.001580045, -1.5010012E-4, -0.0037177529, 0.013450298, 0.022160463, 0.021443468, 0.02010242, 0.0038472102, -0.0011476902, -0.008823024, 0.001631496, 0.008703525, -0.03279589, -0.0046339133, 0.015003788, 0.03210545, -0.029795134, 0.025174499, -0.0062239165, -0.01419385, -0.008517637, 0.030193465, -0.0035086293, -0.010575679, -0.007481978, -0.01688922, -0.003740989, 0.00844461, -0.042488605, 0.015083455, -0.0041426388, -0.0074023115, -0.026130492, -0.016305001, -0.008192334, -0.012288501, 0.015574729, -0.007687782, -0.01906676, -0.0060181124, 0.0019551397, 0.0055865874, -6.8670546E-4, 0.017101662, -0.015149843, -0.0052480064, 0.0036281284, -0.040125176, -0.021496577, 0.003970029, -0.022107352, -0.0052081733, 0.012056141, 0.006360013, 0.023182845, -0.013742408, -6.501918E-4, 0.017021997, 1.6389647E-4, -0.010881066, -0.021669189, 0.034389213, 0.0054936437, 0.012972302, 0.009606408, -0.0064330404, 0.0070238975, 0.008510998, -0.016212057, -0.0037011558, -0.008969079, -0.005440533, -0.01212253, 0.004235583, 0.021695744, -0.024125561, -0.023196122, -0.023594452, -0.020580418, 0.0023285747, -0.006864565, 0.01327105, -0.015468507, 0.029317137, -0.0017991269, -0.004072931, 0.0052314093, -0.005324353, -0.010635429, 0.004793246, 0.0232094, -2.464671E-4, 0.023435121, -0.008192334, -0.018681709, -0.018575486, 0.027883146, 0.01114662, 0.016530722, -0.012115891, 0.013822074, -0.019544758, -0.02740515, -0.0025061637, 0.006296944, -0.017818658, -1.7426966E-4, -0.015096732, 0.009002273, 0.0101574315, -0.0064230817, -0.0087234415, -0.024842557, 0.016809555, -0.007966613, 0.014339904, 0.031521235, 0.0035783371, 0.017353939, -0.03314111, 0.0010041252, -0.0100976825, -0.028361144, -0.02131069, -0.009666157, 0.047826234, 0.007090286, 0.04602047, 0.008491082, 0.028254922, 0.0029659038, 0.02246585, 0.019319037, -0.019372148, -0.010303486, -0.028175255, -0.0012854462, 0.019319037, 0.031680565, 0.026900597, -0.001499549, 0.023873284, 0.0099914605, 0.014645291, 0.0011709261, 0.0025260802, -0.023461675, -0.0056629344, 0.006250472, -0.02780348, 1.7727789E-4, -0.016557278, -0.014300071, 0.03497343, -0.0038505297, -0.0017526549, -0.006154209, 0.029317137, 0.007169952, 0.012686832, -0.013636187, 0.019730646, -0.023926396, 0.0031617496, -0.022996956, -8.070345E-4, 0.011916726, -0.0043052905, 0.011206369, -9.858684E-4, -0.024231782, -0.015229509, 0.024962055, -0.022917291, -0.03027313, 0.020075865, -0.008969079, -0.005244687, -0.03781486, -0.01062879, -0.040762503, -0.011392257, 0.009679435, -0.0069907033, -0.0028646614, -0.019345593, -0.041399833, 0.019624423, 0.010927537, 0.029210916, -0.0021493258, 0.04745446, 0.020660084, 0.030459018, -0.015163121, 0.016039448, -0.02424506, 4.406533E-4, 0.032025784, 0.020779584, -0.03091046, -0.015481785, 0.00729609, -0.002763419, -0.022147184, -0.043577373, 0.020301586, 0.015349008, 0.03521243, -0.012520861, -0.0015584687, -0.011631255, 0.008564109, 0.011458646, -6.5714186E-5, 0.0033393388, -0.028122146, -0.03959407, -0.0011443708, 0.005009008, 0.0070637306, 0.021828521, -0.026847487, 0.028015923, -0.008935885, 0.015441952, -0.01039643, -0.012779775, 0.025466608, -0.025692327, 0.033884663, 0.0013285987, -0.005191576, -0.008716803, 0.007820559, 0.011611339, 0.029210916, -0.026064103, 0.007289451, 0.0029161123, -0.004544289, 0.008630497, 3.3858107E-4, -0.03401744, -0.029290581, -0.036646422, -0.011332507, 0.036168423, -0.008218889, -0.01918626, -0.0025376983, -0.010389792, -0.017327383, 0.0051849373, -0.010190626, 0.011332507, -0.018455988, 0.018190434, -0.0045708446, 0.0062770275, 0.0073757563, -0.0025211012, -0.003228138, -0.0026007672, 0.004952578, -0.00884958, -0.0027451622, -0.022319796, -0.005749239, -0.01878793, -0.01740705, -0.011843698, -0.013636187, 0.019956367, -0.028998472, 0.0043052905, -0.0015178059, -0.013888462, -0.008597303, -0.00953338, -0.006313541, -0.004285374, 0.002131069, -0.010496013, -0.012945746, -0.0043617208, 0.03338011, -0.010197265, 2.7903894E-4, 0.015388841, 0.025094831, 0.03199923, -0.019943088, 0.009028829, 0.011319229, -0.010987287, -0.01264036, 0.023302345, 0.01597306, 0.014844456, -0.0074089505, -0.042674493, -0.01350341, 0.014472681, 0.02067336, -0.020713195, -0.02125758, 0.026050825, 0.0038903628, 0.045675248, 0.015096732, -1.4242396E-4, -0.01728755, -0.008603943, -0.012673554, -0.0071035633, 0.0033127833, 0.014366459, 0.01229514, 0.0044148313, 6.004005E-4, -0.023700675, -4.5144142E-4, -0.038292855, -0.016172225, -0.0068313708, 0.022266684, 0.037097864, 0.0032032423, 0.009752463, 0.029157804, 0.0066454834, 0.0062703886, -0.008922607, -0.0074421447, 0.005135146, 0.020885805, 0.013861907, 0.015999615, -0.017738992, -8.2985556E-4, 0.015176399, 0.024523892, 0.0070106196, 0.035079654, -0.02131069, -0.0077076983, -0.0075284494, 0.012706748, 0.009068661, -0.013835352, 0.030485574, -0.017885046, -0.019279204, -0.0027600995, 0.01068854, -0.007720976, 0.008311833, 0.0033177624, -0.015481785, -0.0058554607, -0.005808989, -0.010011378, -0.023315622, -0.02516122, 0.008404777, 0.018920707, 0.0111399805, 0.027617592, 0.025373664, -0.0075218105, -1.7727789E-4, 0.012832887, -0.009852045, -0.010422986, 5.2695826E-4, 0.0061044176, 0.018216988, -0.03319422, 0.01901365, -0.027537927, -0.009088578, 0.004401554, 0.018933984, -0.019823588, 0.024523892, 2.0577825E-5, -0.036062203, 0.015189676, -0.015880115, 0.009095217, -0.030007577, -0.014180572, -0.018522376, -0.02545333, 0.014300071, 0.0073226453, -0.022014407, -0.014379737, 0.0053210338, 0.016836109, -0.0074421447, 0.024736334, 0.18525031, -0.0076545877, 0.010569041, 0.063945346, 0.0019285843, 0.012527499, 4.1907706E-4, 0.01108687, -0.011047037, -0.009732546, 0.0035916148, 0.00764131, 0.0010837914, 0.0032430755, 0.016265169, -0.00930766, -0.017911602, -0.015216231, -0.013410466, -0.012461111, 0.004355082, 6.7010836E-4, -0.02486911, -0.02234635, -0.0024845875, -0.0099981, -0.01562784, 0.018402876, 0.015946504, 0.011226286, -0.021323968, -0.012321695, -0.009606408, 0.01718133, -0.020500751, -0.011378979, -0.004205708, 0.008132584, -0.011571506, 0.010104321, -0.0011958218, 0.002212395, -0.014924122, -0.010695178, 0.01390174, 0.02602427, -0.019531481, 0.007979891, -0.021948019, 0.00873008, -0.042462047, -0.02073975, 0.018774651, 0.017021997, -0.009885239, 0.0077541703, 0.0060347095, -0.008683609, -0.015269342, 0.014963956, 0.011252841, 0.02624999, -0.031813342, 0.0054538106, 0.005865419, 0.013430382, -0.034389213, 0.00327461, 0.016610388, -0.03723064, -0.008252083, -0.021297412, -0.012713387, 0.007090286, -0.0069840644, -0.014924122, -0.0029675635, 0.0011012183, 0.02378034, 0.007893586, -0.030193465, -0.008291917, 0.0020016115, 0.0099981, -0.012222112, -0.008364944, 0.016305001, -0.010987287, -0.0072695347, -0.013529965, -0.010821316, -0.020819416, -0.015933227, 0.004866273, -0.016942332, 0.014034517, 0.020009477, 0.01108687, -0.0079068635, -0.014393015, -0.02545333, 0.012866081, 0.037655525, 0.0056529758, -0.03274278, -0.016411223, -0.014485958, 0.013217939, 0.027723813, -0.0060811816, -0.01562784, -0.028042478, 6.725979E-4, -0.01212253, 0.0077807256, 0.015986336, -0.0038007384, -0.011272757, 0.049658556, -0.021841798, -0.013915018, -0.02281107, 0.011299313, 0.0018439391, -0.009818851, -0.027644148, -0.021031858, 0.021828521, 8.945843E-4, -0.02775037, 0.019093316, -0.031839896, 0.0059782793, -0.0015036983, 6.72183E-4, 0.017353939, 0.016052725, 0.0019468411, 0.0016207079, -0.019558035, 0.0051085907, -0.013071884, 0.018336488, -0.0012829567, 0.005181618, -0.015946504, 0.02056714, 0.0034920322, 0.007940058, -0.042674493, -0.016676778, -0.015269342, 0.016172225, -0.004906106, 0.03412366, 0.0040994864, -0.022226851, -0.01908004, -0.012129169, 0.03383155, -0.022837624, 0.035026543, 0.017088385, -0.018748097, -0.03861152, -0.014326626, -0.16878597, 0.009918434, 0.020195365, -0.018628597, 0.02659521, 0.016862664, 0.01728755, 0.00453765, 0.007110202, -0.020713195, 0.023913117, 0.0027269053, -0.04262138, -0.011252841, 8.7051844E-4, 0.018057657, -0.026303101, 0.039142627, 0.02096547, -0.010117599, 0.041452944, 0.008882774, -0.0061044176, -0.008437972, 0.017778825, -0.0036513645, 0.018230267, 0.0062205973, -0.008743358, -0.014525792, -0.032849003, -0.02676782, 0.012149085, 9.3607703E-4, -0.009586492, 0.015667673, -0.015003788, -0.009852045, -0.0064429985, -0.0019850144, 0.036885418, 0.016265169, 0.028281476, 0.00637661, 0.012487667, 0.004716899, 0.011458646, -0.0072230627, 0.015946504, -0.027046653, -0.0020265072, -0.033512887, 0.021974575, -0.010389792, -0.013954851, 0.024099005, -0.020593695, -0.0046637882, 0.0030654864, -0.0050820354, -0.028122146, -0.01194992, 0.00781392, -0.011226286, -0.005510241, -0.033990882, -0.014114183, 0.017128218, -0.04174505, 0.0053343116, -0.014087628, 0.00649279, 0.002131069, -0.0023136372, 0.0050123273, -0.018602042, -0.024975333, 0.0011850337, -0.019026928, 0.024563724, -0.0047600516, 0.053509086, -0.006313541, 0.0030306324, -0.0031949438, -0.027325483, 0.0034621574, 1.5777629E-4, 0.017260995, -0.01947837, -0.011365701, -0.02165591, -0.024829278, -0.01607928, 0.0071500354, 0.009712629, -0.013111718, 0.00499905, 0.0036845587, -0.015654394, -0.008258723, -0.020036032, -0.015946504, 0.0059318077, 0.033592552, 0.010515929, 0.022850903, 0.005921849, 0.011863615, -0.016158948, 0.0038272939, -0.0019236051, 0.020341419, 0.0057923915, -0.011325869, 0.010761566, -0.02740515, -0.014353181, -0.011976475, 0.018920707, 0.03919574, -0.0011576485, -0.015096732, -0.015827006, -0.012899275, -0.018044379, -0.09129739, 0.004716899, 0.004036417, 0.03813352, -0.01878793, 0.024935499, -0.017566383, 0.02550644, -0.019239372, 0.035531096, 6.265409E-4, -0.027962813, 0.022545515, -0.0029210916, 0.01533573, -0.0018505779, -0.030724572, -0.015959783, -0.008006446, 0.021217747, 0.004056334, -8.547512E-4, 0.005882016, -0.013410466, -0.022213573, 0.024444224, -0.031866454, 0.017353939, 0.0054538106, 0.027591037, 0.01757966, -0.01809749, 0.023050068, -0.021908186, -0.019265926, -0.025825104, -0.018203711, -0.033327, -0.0093873255, -0.053854305, 0.009805573, 0.019677535, 0.005968321, -0.024736334, -0.005566671, 0.0019551397, -0.0121822795, 0.024444224, 0.0020364656, -0.03497343, -0.0031036597, -0.020859249, -0.022890735, -0.005676212, 0.009818851, 0.013277689, 0.032610003, 0.0024381157, -0.008882774, -0.03215856, -0.0018821124, -0.0056629344, -0.030485574, 0.015242787, 0.0077076983, 0.008298555, 0.0092213545, -0.009393965, 0.022837624, -0.008862858, -0.029449914, 0.02459028, -0.042090274, -0.0037443081, -0.023103178, -0.0036911974, -0.017672604, -0.014844456, 0.017991269, -0.021005305, -0.015375564, -0.02585166, 0.005785753, -0.018216988, -0.0018655153, 0.022797791, 0.002854703, 0.014525792, -0.013981407, -0.041798163, 0.0037476276, 0.025054999, 0.008079474, -0.003428963, 0.0030190144, 0.014884289, 0.006134292, 6.3857384E-4, 0.0026854125, 0.009971544, -0.0080595575, -0.008610581, -0.07047797, 0.02609066, -0.0166635, -0.009413881, -0.010077766, -0.0073160063, 0.012036225, -0.0024729695, -0.007077008, 0.010907621, -0.0027883146, 0.008696886, -0.009626324, 0.00448122, 3.4708707E-4, 0.02602427, -0.001384199, -0.009334215, -6.9085474E-4, 0.014353181, -0.020421086, 0.008909329, 0.028201811, 0.009845406, 0.0029625844, 0.025891492, 0.01728755, 0.0056662536, -0.006755024, -0.0046106772, 0.030087242, -0.0127864145, -0.012374806, -0.0056529758, -0.006456276, -0.021589521, -0.017154774, 0.008816386, 0.026064103, 0.0042787353, 0.00465383, -0.031813342, 0.0018290016, -0.014618736, -0.017433606, 0.023010235, -0.024138838, 0.005324353, 0.016265169, 0.019531481, 0.028865695, 0.0054471716, -0.0035716982, -0.025214331, 0.02441767, -0.014977233, 0.04700302, 0.007495255, -0.009095217, -0.014804623, 0.0283877, 0.005732642, 0.025240887, -0.011724199, -0.013251133, 0.0068512876, 0.006904398, 0.008716803, -0.010721734, -0.031282235, 0.0039036404, -0.0010788122, 0.011378979, 0.007070369, 0.029078139, 0.007913503, -0.009374049, 0.0026455794, -0.010582318, 0.015508341, 0.021948019, -0.008033002, -0.0036181703, 0.010555763, 0.010847872, 0.03234445, -0.022837624, 0.014525792, -0.0026787736, 0.015694229, -0.022372905, 0.0024845875, 0.0060380287, 1.7001666E-4, 0.01424696, 0.027909702, -0.009042106, -0.01108687, -0.0025924686, 0.004955897, -0.0062537915, -0.008484443, -0.015773894, -0.013430382, -0.026064103, -0.0028264879, -0.0053110756, -0.004448026, 0.008862858, 0.033353556, 0.024577001, 0.0019335634, -0.0062438333, 0.005755878, -0.036407422, 0.008411416, -0.008657053, -0.01597306, -0.009606408, 0.045462806, 0.008378222, 0.0077873645, 0.040178288, -0.018880874, 0.054544747, 0.0123482505, 0.0019435217, -0.029104693, 0.00965288, 0.0047600516, 0.010018016, -0.011631255, -0.029927911, -0.0032314574, -0.016145669, 0.0037841413, 0.022107352, 0.04142639, -0.027245818, 0.061396033, 0.022439294, -0.0032663115, 0.019239372, -0.014286793, -0.007900225, 0.02039453, 0.015866838, -0.034840655, -0.007422228, -0.009427159, -0.002275464, -0.0035816566, -0.027883146, -0.008464526, -0.0036911974, 0.013583075, 0.011963198, -0.025493162, -0.022890735, -0.009944988, -5.348419E-4, 0.022598626, 0.01780538, -0.0021874993, -0.01269347, 0.016862664, -0.006117695, -0.010057849, -0.05101288, 0.0057426, -0.020753028, -0.020593695, 0.010900983, 0.027245818, 0.02619688, 0.003521907, -0.0050123273, 0.022040963, -8.037151E-4, -0.023913117, 0.0073890337, -0.026356213, -0.01229514, 0.0075284494, -0.01068854, -0.006446318, -0.03096357, -0.007422228 ], + "id" : "54700766-bf47-403e-836b-2502df5a5bf5", + "metadata" : { + "source" : "movies.csv" + } + }, + "509a8920-a907-4ca5-b528-bb1b2037fc49" : { + "text" : "2,3191,Jason Sudeikis-Josh Gad-Danny McBride-Maya Rudolph-Bill Hader-Peter Dinklage-Sean Penn-Keegan-Michael Key-Kate McKinnon-Tony Hale-Hannibal Buress-Ike Barinholtz-Tituss Burgess-Ian Hecox-Anthony Padilla-Jillian Bell-Billy Eichner-Danielle Brooks-Blake Shelton-Charli XCX-Romeo Santos-Cristela Alonzo-Adam Brown-Ava Acres-Geoffrey Arend-Malena Brewer-Catherine Winder-Alex Borstein-John Cohen-Max Charles-Clay Kaytis-Matthew J. McCarthy-Vincent Oswald-Fergal Reilly-Samantha Cohen-Kevin Bigley-Maddie Taylor-Josh Robert Thompson-Ali Wong-Mckenna Grace-Bella Lardieri-Aidan McGraw-Fred Tatasciore-Eileen Marra-Indra Raval-Joaquin Raval-Sofie Wolfe-Judah Friedlander,island-pig-rivalry-anthropomorphism-based on video game-duringcreditsstinger-anger management-animal kingdom,/nsaaZryqabtrdKwXcNud2Bm39mu.jpg,/o4mhrLxv6I70kvYA42qANGUF7ya.jpg,892409-454640-651166-929472-140300-328111-278154-136799-332210-127380-159824-278927-172385-270946-257344-68735-228161-308531-258509-105864-378236\r\n8656,Deep Impact,Action-Drama-Science Fiction,en,A seven-mile-wide space rock is hurtling toward Earth threatening to obliterate the planet. Now it's up to the president of the United States to save the world. He appoints a tough-as-nails veteran astronaut to lead a joint American-Russian crew into space to destroy the comet before impact. Meanwhile an enterprising reporter uses her smarts to uncover the scoop of the century.,37.202,Paramount-DreamWorks Pictures-Zanuck/Brown Productions-Manhattan Project,5/8/98,75000000,349464664,120,Released,Oceans Rise. Cities Fall. Hope survives.,6.2,2562,Robert Duvall-T��a Leoni-Elijah Wood-Vanessa Redgrave-Morgan Freeman-Maximilian Schell-Leelee Sobieski-James Cromwell-Jon Favreau-Laura Innes-Mary McCormack-Richard Schiff-Blair Underwood-Charles Martin Smith-Una Damon-Dougray Scott-Derek de Lint-Suzy Nakamura-Alimi Ballard-W. Earl Brown-Denise Crosby-Jason Dohring-Tucker Smallwood-Mike O'Malley-Kurtwood Smith-Ron Eldard-Merrin Dungey-Gary Werntz-Bruce Weitz-Betsy Brantley-O'Neal Compton-Rya Kihlstedt-Aleksandr Baluev-Caitlin Fein-Amanda Fein-Mark Moses-Charles Dumas-Katie Hagan-Hannah Leder-Kimberly Huie-William Fair-Ellen Bry-Lisa Ann Grant-Concetta Tomei-Charlie Hartsock-Don Handfield-Cynthia Ettinger-Jennifer Jostyn-Stephanie Patton-Michael Winters-Sommer Garcia-Mic Rodgers-Thomas Rosales Jr.-Shannon Frank,usa president-nasa-metereologist-space mission-comet-natural disaster-tsunami-astronomer-astronaut-tidal wave-woman director-disaster movie,/a3vQS7JKqlOb3MdVJHuTCP9s7Mg.", + "embedding" : [ 0.0154579105, -0.035579253, -0.002095116, -0.042437244, -0.02398925, 0.036429644, -0.009710914, -0.009704056, -0.01272843, -0.026485559, 0.038020696, 0.030970683, 0.017460443, 0.0045537055, 0.0077289552, 0.0226588, 0.017460443, -0.013283927, 0.010595595, -0.033631586, -2.0156062E-4, -0.010458435, -0.005901301, 0.026773594, 0.005541256, 0.008867381, 0.049871307, -0.0028992153, -0.011768311, -0.0066728247, 0.008997683, -0.027692566, -0.00419709, -0.030449476, -0.008030707, -0.002511739, 0.0058464366, -0.029873407, 0.02357777, -0.010396713, 0.008970251, 0.016582621, -0.0076192273, -0.010760187, -0.010527015, 0.010588737, 0.020162491, -0.008922245, -3.8790508E-4, 0.025813475, 0.029023016, 0.036594238, -0.031299867, -0.010602453, -0.01221408, -0.002460304, -0.026430694, -0.011658584, -0.0018430849, -0.0019922461, 0.004310247, -0.014511508, -0.0286664, -7.8995473E-4, -0.021835841, -0.012467827, -0.004344537, -0.020765994, -9.1296993E-4, 0.011658584, 0.028200056, 0.017240988, 0.016253438, -0.00257689, 0.023152575, -0.029708814, -0.026115227, -0.0069814343, -9.798354E-4, 0.0032661178, 0.011912329, -0.007194032, -0.01238553, 0.006446511, 0.01385314, 0.023193723, -0.017007817, 0.028803559, -0.02979111, 0.007797535, 0.009210281, 0.04235495, 0.007118594, 0.0060384604, 0.0042176642, 0.01944926, -0.004190232, 0.026060363, -0.019366965, -0.038020696, -0.0025014519, 9.92694E-4, -0.0015696225, -0.01020469, -0.0050851996, 0.011075654, 0.007687807, 8.311027E-4, 0.01795422, 0.010088104, 0.005201786, -0.013942295, 0.014648668, -0.026965618, -0.022974268, -0.007255754, 0.02419499, -0.012543264, -0.011631152, -0.03047691, 0.039886072, 0.017007817, 0.0020196782, -0.038404744, 0.029023016, 0.03478373, -0.012646134, -0.026897037, 0.028776128, -0.0022802819, 0.021835841, -0.0067962683, 0.01573223, -5.889299E-4, -0.019462977, 0.040654168, -0.022480492, 0.0110139325, -0.014936703, -0.02293312, 0.026910754, 0.031382162, -0.03050434, -0.012344383, -0.024098977, 0.004793735, 0.014717247, 0.0064876587, 0.022741096, 0.009800068, 0.018749746, 0.030943252, 0.00573328, 0.019188657, 0.0051092026, -0.0013604538, -0.010561305, -6.026459E-4, 0.004862315, -0.034674, -0.0052943686, -0.018900622, 0.009649192, -0.015485342, -0.008346174, 0.022768527, 0.018859474, -0.025017949, -0.0076329433, 0.001598769, -0.008757654, 0.02456532, -0.037472058, 0.0068031265, 0.002016249, 0.017597603, 0.008401038, -0.012241513, -0.033686448, -0.0065836706, -0.0017847919, -0.0022957122, 0.03579871, 0.033357266, 0.004245096, 0.025004232, 0.032671466, -0.032232553, 0.0061138985, -0.01958642, 0.015430478, 0.020244787, -0.015649933, -0.017144976, -0.63159347, -0.018928053, 0.009518891, -0.012995891, 0.02419499, 0.022645084, 0.008983967, -0.007715239, -0.026320966, -0.0054280995, -0.021959284, 0.03047691, 0.018228538, -0.017460443, -0.031217571, -0.0016759214, 0.008956536, -0.013414229, 0.018845757, 0.0022905688, -0.025443144, 0.025991783, 0.023015415, -0.01395601, 0.016637484, 0.012220939, -0.006782552, -0.01600655, 0.008661642, 0.003094668, -0.012803867, 0.018571438, 0.0066488218, -0.010286986, 0.039639182, 0.0031786785, -0.018818326, 0.048307683, 0.020368231, 0.024894506, -0.024935653, -0.0016999244, 0.013791419, -1.2655136E-4, -0.016555188, 0.01719984, -0.0021379786, 0.0057504247, -0.015375614, 7.779533E-4, -0.005661271, 0.00873708, 0.003269547, 0.011974051, 0.0020231071, -0.0104241455, 0.01378456, -0.04644231, 0.022274753, 0.008826233, -0.0153344665, 0.027953168, -0.0030089433, 0.019092645, -0.010362423, 0.022069013, -0.015224738, -0.01825597, 0.014621235, -0.033905905, 0.013798277, 9.849789E-4, -0.004941182, -0.014538939, 0.012172933, 0.020601403, 0.029955702, -0.0013861713, -0.010492725, 0.02224732, -0.0023385747, -0.0098343585, 0.0054486734, 0.0068957093, 0.028035464, -0.005541256, -0.033741314, 0.0103007015, 0.022507925, -0.0052086436, 0.009470885, 0.022137593, 0.0065116617, -6.4207934E-4, -0.012906738, -0.021273486, -0.014168608, 0.009175991, 0.032150257, -0.054863922, -0.009018257, -0.019655, 0.03511291, -0.01559507, 0.013846283, 0.012666708, -0.008215873, -0.0040119244, 0.029571654, 0.0010407, -0.0046840073, -0.014250904, -0.030586638, -0.010348707, -0.012961602, -0.02839208, 0.013750271, 0.026101511, -0.008798801, 0.0066488218, -0.0014376062, 0.0047388715, -0.007660375, -0.024112694, 0.0069197123, 0.028008033, 0.008332458, 5.284939E-4, 4.076218E-4, 0.0066762534, 0.004221093, 0.01671978, 0.021726113, -0.010280128, 0.0146761, 0.013482809, 0.012467827, -0.01255698, 0.0163083, -0.00648423, -0.018996634, -0.004430262, -0.015553922, -0.016966669, -0.018736029, -0.0022751384, -0.03845961, 0.009470885, -0.008819375, -0.014456644, -0.014072596, 0.012502116, 0.0076329433, 0.01648661, 0.008174725, 0.004406259, -0.030586638, -0.014909271, 0.010479009, -0.018214822, 2.3681497E-4, 0.017460443, -0.010225263, -0.023838375, 0.022768527, 0.0015799095, -0.0052223597, -0.0052840817, 0.005644126, -0.00996466, 0.023522906, -0.007146026, 6.249344E-4, 0.018242255, -0.006912854, 0.0193121, -0.019161224, 0.025703747, -0.006508233, 2.3960104E-4, 0.0038541905, 0.0060041705, -0.03036718, -0.006614532, 0.032534305, 0.018173674, 0.025840908, -0.01648661, -0.00319068, 0.008250162, -0.020656267, 0.0024157271, -0.0011992911, -0.013208489, 0.0037993267, 0.024990516, -0.003142674, -0.014922987, -0.007989558, -0.009107411, 0.04976158, 0.01917494, 0.0103007015, -0.012316951, 0.012755862, -0.028117761, 4.6634334E-4, -0.020807143, -0.001695638, -0.009498317, 0.016239721, -0.016226005, -0.017117543, 0.0011744308, 0.005140064, 0.021287203, -0.010533873, 0.004430262, -0.006902567, 0.008064996, -0.0028066325, -0.013139909, 0.02671873, 0.012296377, -0.03047691, 0.009738347, 0.013503383, -0.027212506, -0.009505174, -0.009902938, 0.005853295, 0.018173674, -0.0046908655, 0.011953477, -0.0011752881, -0.01614371, 0.00610704, 0.004042785, 0.030614069, -0.009800068, -0.015636219, 0.007111736, 0.013976584, 0.0124129625, -0.0016673489, -0.00825702, 0.024935653, 0.01259127, -0.020505391, 0.035990734, -0.012989034, 0.016267153, -0.001788221, -0.0028066325, 0.00955318, -0.007914121, 0.0074134874, 0.02419499, 0.032122828, 0.027802292, 0.015540206, -0.021904422, 0.021246053, 0.007084304, 0.005891014, 7.1237376E-4, -0.014250904, -0.0036827407, -0.015060146, -0.029955702, -0.020532822, -0.0078935465, 0.012406104, 0.008887955, -0.008318742, -0.008476476, -0.0073449076, 0.016445462, 0.017035248, 0.009841216, 0.013352507, -0.024236137, 0.015389331, 0.02685589, -0.023029132, -0.01713126, -0.0130027495, -0.008387323, -0.031025548, -0.015430478, -0.024702482, 0.042162925, -0.028913287, 0.018105095, -0.005740138, -0.013434803, 0.014319484, -0.007084304, 0.01719984, 0.021040315, -0.0062236264, 0.009155417, -0.009059405, -0.011336258, 0.026636435, 0.005877298, -0.009683482, -0.011631152, -0.00835989, -0.010698465, -2.0756136E-4, 0.0067002564, -0.038925953, 0.022823391, -0.014785827, -0.009779494, -0.013709122, 0.0044234036, 0.011939761, -0.0059355907, -0.008449044, -0.029983133, -0.015101295, 0.0065870997, 0.07126824, 0.041339967, 0.006326496, 0.0132976435, -0.010431003, 0.011267678, -0.0169941, -0.0068819933, -0.0058567235, -0.036566805, 0.01378456, -0.0031718204, 0.015169875, -2.7453393E-4, 0.023042848, -0.00965605, 9.4125915E-4, -0.010629885, -0.001798508, -0.00641565, -0.024153842, -0.019010348, 0.015759662, 0.03173878, 0.0013518813, -0.015704798, 0.023015415, 0.017830774, 0.0091485595, 0.02607408, -0.002890643, 0.024935653, -6.54188E-5, 0.009374873, 0.0014993282, -0.0023625777, 0.024496742, 0.016747212, 0.027925737, -3.3196958E-4, 7.0723024E-4, -0.0033758457, 0.012961602, -0.020381948, 0.018475426, -0.018036515, -0.0072831856, 0.040242687, 0.023248587, -0.036539372, 0.021136327, 0.0068099843, -0.013702265, -0.02412641, 0.017529024, -0.0026506132, 0.0046737203, -0.0047628745, -0.02412641, -0.0028923573, 0.006782552, -0.035442095, 0.0121660745, -0.014964134, -0.0067208307, -0.008291311, -0.015169875, 0.007543789, -0.024757344, 0.007050014, 0.011590004, -0.034893453, -0.012193507, -0.0086067775, 0.015841957, -0.0017050678, 0.029571654, -0.014182324, 0.00580186, -0.005479534, -0.02511396, -0.021588953, 0.017885638, -0.0189692, -0.0044336906, 0.015169875, -0.0065870997, 0.03681369, -0.0058224336, 0.0043856846, -0.0053389454, -0.006179049, -0.027596554, -0.008407896, 0.04614056, 0.0060041705, 0.019353248, 0.0131741995, -0.005513824, 0.0041696583, 7.7966775E-4, -0.02488079, -0.014977851, -0.0084353285, -0.020395663, -0.023906954, 0.0021414075, 0.0058224336, -0.009992092, -0.024222422, -0.026224954, -0.025415713, 0.0017239273, -0.012639276, 0.011219672, -0.0052120727, 0.023426894, 0.0075643635, -0.027157642, 0.00257689, 0.0011684301, -0.017323283, 0.011932903, 0.032314852, -0.008812518, 0.02593692, -0.01593797, -0.039502025, -0.016418029, 0.022480492, -0.0065596676, 0.022343332, -0.01917494, -0.008133576, -0.008935961, -0.019325817, 0.0012490115, 0.0061961943, -0.0091485595, 0.0086067775, -0.029571654, 0.004800593, 0.0028992153, -0.0013673118, -0.009889222, -0.032205123, -0.0029266474, -0.0021448364, 0.018653734, 0.03245201, 2.777486E-4, 2.1859843E-5, -0.023797227, -0.014977851, -0.0038884806, -0.02839208, 0.0025323129, 0.004924037, 0.0306415, 0.014250904, 0.035332367, -0.0015936255, 0.025292268, 0.0047354423, 0.020231072, 0.021835841, -0.003077523, -0.027020482, -0.023742363, 0.0033449847, 7.7495293E-4, 0.00573328, 0.0010732755, 1.1401409E-4, -0.005455531, 0.011027648, 0.009779494, 0.006384789, -0.0072694696, -0.02924247, -0.021163758, 0.0020488247, -0.02671873, -3.1739636E-4, -0.017995367, -0.012179791, 0.031656485, -0.002825492, 2.2867111E-4, -0.013270211, 0.03678626, 0.00218427, 0.0040736464, -0.008922245, 0.024332149, -0.018612586, -0.006868277, -0.024387013, -0.015979117, -0.0028940719, -0.0096629085, 0.017625036, 0.0020042476, -0.020505391, -0.0023574342, 0.032534305, -0.019161224, -0.008421612, 0.023399463, -0.030614069, -0.014415496, -0.024373297, -0.012735288, -0.036429644, -0.00549325, -0.0030432332, -7.2994735E-4, 0.005578975, -0.012755862, -0.022041582, 0.017076395, -0.0039227703, 0.025676316, 0.015238455, 0.043836273, 0.023330882, 0.016047698, -0.019133793, 0.009162275, -0.009395447, -0.0015524776, 0.028584104, 0.019641284, -0.019764729, 9.635476E-4, 0.007790677, -1.7595032E-4, -0.021369498, -0.036045596, 0.018146243, 0.026115227, 0.02064255, -0.018091379, -0.006868277, -0.023125144, 0.008887955, 0.0073586237, -0.013565104, 0.008215873, -0.021012882, -0.01518359, -0.0016844939, -0.0037684657, 0.0075232154, 0.015403046, -0.027390813, 0.013078188, -0.029461926, 0.008949677, -0.00999895, -0.01859887, 0.024798494, -0.033000648, 0.014388064, -0.013222205, 0.014038306, 0.010026382, -0.0059218747, -0.0018859473, 0.029681383, -0.020121343, 0.018832041, 0.006189336, 2.779629E-4, 0.018159958, 0.015046431, -0.025552873, -0.008757654, -0.021108894, -0.0039330577, 0.04070903, -5.7489247E-5, -9.661194E-4, 0.010389855, -0.015375614, -0.0126598505, 0.009175991, -0.0075643635, 2.145265E-4, -0.028940719, 0.018489141, -0.007091162, -0.0023094283, -0.028858423, 0.0026488989, 0.0121180685, -0.0034958606, 0.009121127, -0.0016159139, -0.0062339134, -0.029297335, -0.007783819, -0.044796392, -0.026979335, -0.0038130425, -0.014566371, 0.009052548, -0.023221156, -4.6077123E-4, -0.0036553089, 0.0025906058, -0.01115795, 0.004416546, -0.0086547835, 0.0073997714, 0.0148681225, -0.012570696, -0.0145252235, -0.0066865403, 0.042135492, -0.004426833, -0.016431745, 0.0026540423, 0.023015415, 0.029269902, -0.026348399, 0.018736029, -0.007776961, -0.026032932, -0.0051949276, 0.004053072, 0.023769794, 0.041641716, -0.0047080102, -0.024867073, -0.008798801, -0.0023540051, 0.033165243, -0.010725897, 0.017240988, 0.0326166, 0.02756912, 0.037856106, 0.018749746, -0.0019408113, -0.040078096, -0.0027860585, 0.0027517686, -0.024757344, 0.0031203856, 0.009381731, 0.017048964, 0.007578079, -0.014100028, -0.030888388, 0.002739767, -0.011830034, -0.027047914, 0.001846514, 0.013530815, 0.038075563, 0.018269686, -5.764998E-4, 0.008750795, 0.014250904, 0.007639801, -0.018749746, -0.017652467, 0.020862006, 0.0075986534, 0.018585153, 0.020039048, -0.017240988, -0.013530815, 0.012159217, 0.03258917, 0.014223472, 0.03453684, -0.0032626889, -0.013400513, -0.0019545273, -0.0073791975, -0.010808193, -0.0067379754, 0.021177474, -0.036676534, -0.0125364065, 0.010959068, 0.012193507, -0.006203052, 0.01030756, 0.0036244479, -0.019421829, 0.0053080847, -0.005013191, -0.01279701, 0.0074957833, -0.029736245, 9.815498E-4, 0.0032626889, -0.010677891, 0.030860957, 0.018557722, -0.017090112, -0.0029815112, -0.005716135, 0.019984184, -6.231127E-5, -3.2253985E-4, 0.011871181, 0.019655, -0.022850825, 0.0071871737, -0.02951679, 0.015965402, -0.029324766, 3.7376047E-4, -0.0010664175, 0.029105311, 7.993845E-4, -0.04682636, -0.008586204, -0.01593797, 0.0051366347, -0.01719984, 0.0010638457, -0.019024065, -0.013222205, 0.006624819, 0.013290785, -0.017693615, -0.027185073, 0.014374347, 0.009477743, -0.010698465, 0.021232339, 0.190707, -0.0045537055, 0.017227272, 0.03917284, -0.0019716723, 0.0061276145, 0.020807143, 0.01671978, -0.00859992, 0.013729696, 0.006662538, 0.0025408855, 0.0034735722, -3.0860957E-4, 0.003603874, -0.019065212, -0.016116276, -0.030614069, -0.008174725, -0.025786044, -0.0033244109, 0.005345803, -0.0050611966, -0.022631368, -0.012220939, 0.008215873, -0.0014598947, -0.0015361898, 0.028282352, 0.019956753, -0.003573013, -0.008572488, 0.0011692874, 0.0026488989, -0.018310834, -0.0148681225, -0.007674091, 0.005071484, 0.019847024, -0.004876031, 0.011809459, 0.010904205, -0.007742671, -0.009134843, 0.006782552, 0.018146243, -0.023618918, 0.0032575454, -0.0037616077, 0.018242255, -0.04353452, 0.0064979456, 0.023358315, 0.02965395, -0.014429212, -0.007578079, 0.0031683915, -0.0010106963, 0.0027037626, 0.010568163, 0.017391864, 0.041449692, -0.032945786, 0.020903155, 4.059073E-4, 0.0033175529, -0.026732447, -0.008709648, 0.0103007015, -0.027514257, -0.014799543, -0.030284885, -0.014744679, -0.004323963, -0.0056304103, -0.016829507, -0.004419975, 0.0054280995, -0.0013501669, 0.027020482, -0.036731396, -5.2163587E-4, 0.010540731, -0.024524173, -0.011500849, -0.023193723, 0.025758611, -0.026540423, -0.0073106177, -0.025155108, -0.017337, -0.027116494, -0.009628618, 6.3093513E-4, -0.007276328, -0.010780761, 0.021108894, 0.01153514, -0.013373081, -0.011768311, -0.033960767, 0.03173878, 0.02951679, -0.009690341, -0.017995367, -0.026828459, -0.013791419, 0.004852028, 0.025415713, -0.019641284, -0.01600655, -0.02105403, 0.0037513208, -0.009498317, -0.004317105, 0.028913287, 0.009011399, -0.01706268, 0.030394614, -0.019984184, -0.0071666, -0.018159958, 0.02477106, 0.00825702, -0.0072694696, -0.03511291, -0.044412345, 0.01368169, -0.0016947809, -0.03119014, 0.02398925, -0.015649933, 0.012611845, 0.0065459516, 0.0046428596, 0.0031958234, 0.022741096, -0.007324334, 0.007043156, -0.0066865403, -0.005626981, 6.900853E-4, 0.012598128, 0.018063946, 0.013009608, -0.024496742, 0.008339317, -0.008689074, -0.015156158, -0.018379414, -0.02951679, -0.0018653733, 0.012207223, 0.008990825, 0.0386242, 0.008641068, -0.010225263, -0.046250287, -0.028076611, 0.048609436, -0.034646567, 0.027870873, 0.009779494, -0.0022425628, -0.026636435, -0.006984863, -0.175784, 0.014237188, -0.0023488617, -0.0223159, 0.014717247, 0.0011341402, 0.01532075, 0.0052052145, 0.01951784, -0.024949368, 0.02552544, -0.0017187839, -0.04309561, 0.008545056, 0.0054040966, 0.020176208, -0.0010407, 0.025319701, 0.04194347, -0.013139909, 0.03972148, -0.0030586636, -0.01115795, -0.007050014, 0.004296531, 0.0050749127, 0.0193121, 0.014031448, 0.0071871737, -0.005757283, -0.050749127, -0.009141701, 0.027116494, 0.0074477773, -0.009272003, -0.0068271295, -0.010053813, -0.01518359, -0.009011399, -0.0034907172, 0.034180224, 0.016870657, 0.014086312, 0.010506441, 0.021355782, 0.0040496434, 0.016555188, -0.012611845, 0.025292268, -0.0103007015, 0.0061207563, -0.04282129, 0.014936703, -0.0061721914, -0.0061996235, 0.025854623, 0.0034289951, 0.0034187082, 0.0032506874, 0.012138643, -0.03047691, -0.015005283, -0.004330821, -0.0013758843, -0.0068168426, -0.0216301, -0.020285936, 0.0051263478, -0.037170306, 0.012481542, -0.018297119, 0.0154579105, 0.011891755, 0.0051743537, 0.006916283, -0.024510458, -0.043177906, 0.01958642, -0.016966669, 0.011199098, -0.012783294, 0.03887109, -0.005177783, 0.0075575053, -7.835254E-4, -0.009114269, 0.0024071545, 0.0058464366, 0.002263137, -0.014826975, -0.004149084, -0.015718514, -0.038157858, 0.009210281, -0.002539171, 0.0032866918, -0.007824967, 0.013098761, 0.025209973, -0.00856563, 0.0040462143, -0.0125844125, -0.01972358, 0.031629052, 0.0153344665, 0.01600655, -0.004149084, 0.02112261, 0.006340212, 0.007674091, -0.017240988, -0.001226723, 0.02173983, 0.01600655, -0.015773378, 0.01518359, -0.021698682, -0.010629885, -0.0046634334, 0.021534089, 0.052367613, -3.4932888E-5, 2.0327512E-4, -0.015238455, 0.0036518797, -0.017858207, -0.10100448, -0.017487876, 0.012399247, 0.04476896, -0.02180841, 0.043561954, 9.884079E-4, 0.016527757, -0.035304934, 0.035167776, -0.0021002595, -0.023893239, 0.02286454, -0.0054863924, 0.0143332, -0.004077075, -0.012392389, -0.014552656, 0.003194109, 0.021040315, -0.008414754, -0.012673566, 0.00610704, -0.024469309, -0.027034197, 0.03245201, -0.021218622, 0.022178741, 0.013194773, -0.0023557197, 0.0040702173, -0.02286454, 0.01593797, -0.030559205, -0.024140125, -0.019161224, -0.021383213, -0.030860957, -0.0032952644, -0.0479785, 0.0018002224, 0.02211016, -0.0016656345, -0.014744679, -0.007914121, -0.0062099104, -0.03385104, 0.025717463, -0.02405783, -0.023372032, -0.02412641, -0.021698682, -0.028474376, -0.004855457, -0.0033192674, 0.025017949, 0.035140343, 0.015773378, -0.009717773, -0.035469525, 3.8254727E-4, 0.010190974, -0.032369714, 0.024853356, 0.011274536, 0.0074340613, -0.013523957, -0.00818844, 0.018626302, -0.0326166, -0.03105298, 0.037225172, -0.038130425, -0.00856563, -0.020148775, -1.9052354E-4, -0.027102778, -0.01818739, 0.041422263, -0.02692447, 0.0045159864, -0.037307467, 0.02075228, -0.012783294, 0.019915603, 0.016884372, 0.019216089, 0.007104878, 0.0047114394, -0.030175157, -0.0052223597, 0.013030182, -0.0036655958, 0.00283235, -0.0038027556, 0.019078929, 0.00846276, 6.137901E-4, 4.6334296E-4, 0.0121180685, -0.026348399, 0.006477372, -0.07379197, 0.030257454, -0.019010348, -4.042464E-5, -0.015718514, -0.016664917, -6.292206E-4, -0.015101295, -0.0069677182, 0.017446727, -0.0013304502, 0.013873714, -0.009162275, -2.3852948E-4, -0.012316951, 0.017721048, 0.0020385375, -0.011576287, 0.005589262, 8.769655E-4, -0.024496742, 0.014017732, 0.028200056, 7.119451E-4, 0.004077075, 0.022837108, -0.0054589603, 6.626533E-4, -0.018694881, -0.02029965, 0.02279596, -0.007749529, -0.0060556056, 0.00257689, -0.01088363, -0.035881005, -0.0069197123, -0.003331269, 0.018722314, 0.0053835222, -3.3711307E-4, -0.020697415, -0.003627877, -0.022741096, -0.0062339134, 0.013571963, -0.00880566, 0.013674833, 0.0036758827, 0.011171666, 0.014566371, 0.014360632, 0.0046119983, -0.018516574, 0.022576503, -0.01866745, 0.04570165, 0.0062819193, -0.0073037595, -0.009340582, 0.017652467, 0.0012412963, 0.031546757, -0.02474363, 0.009388588, -0.0034067067, 0.008641068, -0.015677366, -0.006460227, -0.034619134, -0.020313367, -0.011857465, 0.020532822, 0.023865806, 0.00897711, 0.0059390194, -0.009601186, -0.009011399, -0.001788221, 0.01023898, 0.033000648, -0.011349974, -0.024483025, 0.024812208, -0.0075369314, 0.007927837, 3.7054578E-4, 0.015759662, 0.005688703, 0.0033432702, -0.015060146, 0.01262556, 0.019668717, -0.0057024187, 0.012063205, 0.017666183, -0.017076395, -0.0020248217, 0.006991721, 0.036155324, -0.00972463, -0.0115282815, -0.009052548, 0.0016064842, -0.025319701, 0.007989558, -0.027459392, -0.00559612, 0.012742146, 0.01552649, 0.024496742, 0.016116276, -0.014374347, 0.012241513, -0.037828676, 0.016939236, -0.015046431, -0.0041696583, -0.0022699947, 0.037389763, 0.016870657, 0.004227951, 0.025168825, -0.011171666, 0.05919817, -0.0018842329, 0.01781706, -0.02272738, -0.0026437552, 0.0038850515, 0.0073517654, -0.0052703656, -0.028776128, 0.014346915, -0.011075654, 0.006288777, 0.00152676, 0.038102996, -0.016637484, 0.06605616, 0.00709802, -0.0047080102, 0.011267678, -0.0032884064, 0.026416978, 0.014854407, 0.015924253, 1.825672E-5, -0.012097495, 0.0051846406, -0.008572488, 0.013585679, -0.02525112, 0.017295852, -0.011281394, 0.019531555, 0.026609002, -0.01706268, -0.012700998, 0.005167496, -1.0372711E-4, 0.034289952, 0.010492725, -0.025168825, -0.005013191, 0.01518359, -0.015677366, -0.0026471843, -0.03483859, 0.003242115, -0.027870873, -0.0033158383, -0.0046085697, 0.023083996, -0.005040623, -0.0014007445, -0.009326867, 0.026430694, 0.009107411, -0.013565104, -0.0057881437, -0.02456532, -0.025305985, 0.010869915, -0.010101819, -0.011692873, -0.04013296, -0.016322017 ], + "id" : "509a8920-a907-4ca5-b528-bb1b2037fc49", + "metadata" : { + "source" : "movies.csv" + } + }, + "67818e02-5315-4efc-995b-d4cc81836930" : { + "text" : "Luthor plots his ultimate revenge that could see millions killed and change the face of the planet forever as well as ridding himself of the Man of Steel.,26.787,DC Comics-Legendary Pictures-Bad Hat Harry Productions-Warner Bros. Pictures-Peters Entertainment-Red Sun Productions Pty. Ltd.,6/28/06,270000000,391081192,154,Released,You��ll Believe A Man Can Fly Again!,5.7,3679,Brandon Routh-Kevin Spacey-Kate Bosworth-James Marsden-Parker Posey-Frank Langella-Sam Huntington-Eva Marie Saint-Marlon Brando-Kal Penn-Tristan Lake Leabu-David Fabrizio-Ian Roberts-Vincent Stone-Jack Larson-Noel Neill-Keegan Joyce-Jordana Beatty-Rob Flanagan-Stephan Bender-Peta Wilson-Jeff Truman-Barbara Angell-Ian Bliss-Ansuya Nathan-Richard Branson-Warwick Young-Bradd Buckley-Bill Young-Karina Bracken-Raelee Hill-Frederique Fouche-Rebecca Barratt-Karen Pang-Jennifer Sciole-Donald MacDonald,saving the world-invulnerability-sequel-superhero-based on comic-super power-kryptonite-superhuman strength,/385XwTQZDpRX2d3kxtnpiLrjBXw.jpg,/8eRscFbRYl681zDfkjv1jjW1KAA.jpg,1924-8536-9531-11411-40898-415-1927-414-364-9738-1979-36668-419548-44912-559-36658-9480-238903-676701-1734-36657\r\n8367,Robin Hood: Prince of Thieves,Action-Adventure-Drama-Romance,en,When the dastardly Sheriff of Nottingham murders Robin's father the legendary archer vows vengeance. To accomplish his mission Robin joins forces with a band of exiled villagers (and comely Maid Marian) and together they battle to end the evil sheriff's reign of terror.,30.479,Morgan Creek Productions-Warner Bros. Pictures,6/14/91,48000000,390493908,143,Released,Sometimes the only way to uphold justice... is to break the law.,6.8,2798,Kevin Costner-Morgan Freeman-Mary Elizabeth Mastrantonio-Christian Slater-Alan Rickman-Geraldine McEwan-Michael McShane-Brian Blessed-Michael Wincott-Nick Brimble-Soo Drouet-Daniel Newman-Daniel Peacock-Walter Sparrow-Harold Innocent-Jack Wild-Michael Goldie-Liam Halligan-Marc Zuber-Merelina Kendall-Imogen Bain-Jimmy Gardner-Bobby Parr-John H. Francis-John Hallam-Douglas Blackwell-Pat Roach-Andy Hockley-John Dallimore-Derek Deadman-Howard Lew Lewis-John Tordoff-Andrew Lawden-Susannah Corbett-Sarah Alexandra-Christopher Adamson-Richard Strange-Sean Connery-Bryan Adams,england-crusade-archer-folk hero-thief-nottingham-sherwood forest-bow and arrow-friar-12th century-the crusades-living in the woods-helping the poor,/hbRnWUNJkKKVN5mkcuC5ooqjE4e.jpg,/u5Xd1fhXNX09ZJzgCJX6N3VlvEc.", + "embedding" : [ 0.006863206, -0.033494353, -0.016624438, -0.033985313, -0.02070213, 0.025639001, -0.012355817, -0.028612034, -0.033303425, -0.0156152425, 0.019502006, 0.030003086, 0.010671552, 0.0062938295, 0.011428448, -1.7899569E-4, 0.019392904, -0.03237606, 0.009382783, -0.032594264, 0.01221262, -0.008803179, -0.003767433, 0.007405307, 0.010705647, 0.0031281628, 0.019870225, -0.016692627, 0.008353132, -0.0044254554, 0.014701513, 0.012887689, 0.004207251, -0.00427203, -0.03436717, 0.006205184, 0.0098464675, -0.017169949, 0.02728917, -0.018124592, 0.0035560476, 0.023484234, -0.0021206727, -0.005335776, -0.030057637, 0.00995557, 0.014919717, -0.014074176, -0.0058301454, 0.034612652, 0.031775996, 0.04413181, -0.022706881, -0.023497872, 0.0034588785, -0.013365012, 0.01984295, -0.004769809, 0.02893934, -0.016038014, 0.011210244, -0.022679606, -0.028312003, -0.0034946776, -0.012717217, -0.009123666, -0.016092565, -0.022979638, -0.010194231, 0.0038867635, 0.03071225, 0.0484959, 0.012294447, -0.0033122725, -0.013228633, -0.043231722, -0.03859488, -0.002644022, -0.0068836627, 0.0070302687, 0.0054414687, 0.0030122418, -0.014510584, 0.0069961743, 0.011217063, 0.004745943, -0.0070302687, 0.024029745, -0.025011664, 0.022502314, -0.0015368059, 0.014919717, 0.006447254, 0.02026572, -0.0013850856, 0.014906079, -0.028666586, -1.12511574E-4, -0.006754104, -0.0550693, 0.011960321, -0.012846776, -0.009969207, -0.010576088, -0.005836964, -0.015465227, -0.0028485884, -0.011319347, 0.025188955, -0.005386918, -0.007718976, 5.749171E-4, 0.022856897, -0.032321505, 0.012669485, -0.03450355, 0.009546436, -0.023770627, -0.006266554, -0.014019624, 0.022679606, 0.021138538, -0.008741808, -0.020688493, 0.04304079, 0.027684666, 0.006682506, -0.009294138, -0.006757513, 0.0048379977, 0.03554002, -0.015560692, 0.018520087, -0.02117945, -0.0105965445, 0.056078497, -0.01641987, 0.01708812, -0.016038014, -0.018779205, 0.03592188, 0.033739835, -0.014237829, -0.0073916693, -0.030603148, 0.011762573, -0.0032815875, -0.001114035, 0.023838816, -0.0034367172, 0.028475657, 0.023470595, 0.026798211, -0.004220889, 0.015342487, 0.009614626, -0.011332984, 0.003475926, 0.01202851, -0.021629497, 0.011285252, -0.0021343105, -0.017974576, -5.378394E-4, -8.0377585E-4, 0.023743352, 0.022979638, -0.010576088, -0.0124376435, 0.00861225, -0.011469361, 0.028530208, -0.031094108, 0.022679606, -0.010562451, 0.014237829, 0.003743567, -0.010044215, -0.04145881, -0.009607807, 0.0063176956, 0.008932737, 0.02272052, 0.033439804, -0.01367868, 0.017497255, 0.02314329, -0.04053144, 0.019447455, -0.010896576, 0.0013441724, 0.025325332, -0.009450972, -0.021793151, -0.6275555, -0.015642518, -0.0050152885, -0.011864857, 0.001425999, -7.973832E-4, -1.7409462E-4, 0.0020405508, -0.033248875, -0.02351151, -0.028666586, 0.01777001, 0.0019126968, -0.025966307, -0.026048135, -0.022638693, -0.010030577, -0.021820426, 0.019802038, 0.007282567, -0.037503857, 0.012751312, 2.0616468E-4, -0.02167041, -0.0028860923, 0.0010151613, 0.00898047, -0.02314329, 0.020729406, -0.012539926, -0.013337736, 0.023566062, 0.013324098, -0.0013015544, 0.04004048, 0.0037265196, -0.023334218, 0.027561927, 0.030603148, 0.028121075, -0.034339897, -9.807472E-5, 0.017115397, 0.006157452, -0.024479792, 0.017388152, 0.01587436, -0.0054551065, 0.011346621, -0.004347038, -0.0117693925, -0.0068120644, -0.0038731256, -0.0013663338, 0.012178525, 0.036603767, 0.018001853, -0.029539403, -0.0017507483, 0.011332984, -0.011748936, 0.019652022, 0.0020985114, 0.010037396, 0.0014907784, 0.03022129, 0.0057687755, -0.002240003, -0.0032406743, -0.04312262, 0.004565242, 0.00616768, -0.002417294, -0.0121853445, 0.009689633, 0.005386918, 0.049668748, -0.010698828, -0.011319347, 0.019652022, 0.0036378743, -0.013603672, -0.015792534, 0.012587659, 0.03755841, -0.017742734, -0.020170256, 0.0019689526, 0.01617439, 0.013324098, 0.018110953, 0.021097625, 0.013112713, 0.0011984188, -0.016269855, 0.012778588, 7.031974E-5, 0.0019399723, 0.027930146, -0.048332244, -0.014537859, -0.022447763, 0.02424795, -0.0030003088, 0.017756373, 0.006645002, -0.005018698, -0.007664425, 0.008721352, -0.029130269, -0.01496063, 0.002693459, -0.021602223, 0.007139371, -0.0030991824, -0.018656464, 0.019583832, -0.003651512, 1.5129398E-4, -0.012014872, 0.017033571, 0.02649818, 0.009614626, -0.021097625, -9.3418703E-4, 0.017851837, -0.009621444, -0.004404999, -0.0019433817, 0.005973342, 0.007248473, 0.0067609227, 0.020620303, -0.015287937, -0.002986671, 0.01929744, 0.031421416, -0.018356433, 0.0025553766, 0.008796359, -0.024561618, 0.010882937, -0.004023141, -0.008046282, -0.014374206, -0.035949152, -0.02117945, -0.008203116, -0.026484543, 0.010651096, -0.017756373, 0.006876844, 0.009948751, 0.008503147, -0.014919717, -0.009328232, -0.014456033, -0.016815366, 0.0011174445, -0.02124764, 0.008407683, 0.013842333, 0.004125424, -0.032021478, 0.021697687, 0.007603055, -0.011817125, 0.014878804, 0.011987597, -0.0166108, 0.011230701, -0.017265413, -0.0036105986, 0.022761432, -0.0031298674, 0.013780964, -0.0076166927, 0.024207035, 0.008312219, -0.0173336, -0.0010322084, 0.0026031088, -0.030821353, -0.00488573, 0.015315212, 0.030439496, 0.019038321, -0.018670103, -0.011530732, -0.004353857, -0.013344554, -0.0037162914, 0.0084213205, -0.026484543, -0.0013458771, 0.007855354, 0.013480932, 0.004916415, -0.0022434127, 0.009730547, 0.02760284, 0.034585375, 0.0010390274, -0.007828078, 0.003261131, -0.025052577, 0.006416569, -0.020783957, -1.675421E-5, -0.013815057, 0.042468004, -0.009232768, -0.02607541, 7.42619E-5, 0.017169949, 0.013624129, 0.0015146445, -0.00915776, -0.022079544, -0.003798118, 0.0017038685, -0.0017140968, 0.029321197, 0.0012904736, -0.01996569, -0.001844508, 0.015928911, -0.00274801, 0.011871676, -0.007255292, -0.0057687755, 0.014892441, -0.0055539804, 0.0092191305, 0.00500506, 0.008462234, 0.04249528, -0.0049607377, 0.03316705, -0.007528047, 0.0028059704, 6.0176646E-4, 0.020402098, 9.0350205E-4, 9.90869E-5, -0.020783957, 0.017660908, -0.0011523913, -0.027248258, 0.028312003, -0.016651712, 0.027275532, 0.001489926, 0.0013279775, 0.017538168, -0.02467072, -0.009048658, 0.0048414073, 0.037176553, 0.0070575443, 0.0084213205, -0.028039249, 0.036603767, 0.01905196, 0.009703271, 0.0034520596, -0.024929838, 0.018970134, -0.0093009565, -0.006876844, -0.0071189143, 0.005543752, 0.019692935, -0.009375964, 0.002270688, -0.01624258, 0.0064711203, 0.025420796, 0.0056119408, 0.035321817, 0.010330608, -0.021970442, -0.0071802842, 0.032021478, -0.006662049, -0.027616477, -0.010105585, -0.012246715, -0.012608116, 0.008830454, 0.004231117, 0.025843568, -0.01796094, -0.006754104, -0.0046197935, -0.018738292, 0.002393428, -0.033357978, 0.0010628934, 0.006477939, -0.00549602, 0.009048658, 0.022966, -0.004162928, 0.04366813, 0.0036958347, 0.012567202, -0.0047288956, 0.018056404, -0.020865783, -0.0079235425, -0.0028690451, -0.036876522, 0.024616169, -0.011373897, -0.013658224, -0.012314904, -0.0066279545, -0.0019092873, 1.8741275E-4, -0.02124764, -0.0396859, -0.02180679, -4.1509952E-4, 0.09213675, 0.026061771, 0.00222807, 0.013160445, -0.012560383, 0.0057449094, -0.012008053, -0.015287937, 0.008278124, -0.018792842, 0.025243506, -0.0098055545, 0.0040947394, 0.013044524, 0.020770319, -0.016351683, -0.0066415924, 0.0051993984, -0.0066279545, -0.013951436, -0.031857822, -0.023116015, 0.036712866, 0.03144869, 0.0064881677, -0.008509967, 0.011898952, 0.008312219, 0.010371521, 0.007718976, 0.0019450865, 0.009860105, 0.010166955, 0.024452515, 0.008694076, 0.0051005245, 0.0149469925, 0.008019007, 0.027098242, 0.0052778157, 0.0031895328, 0.007637149, 0.0012972925, -0.0016228942, 0.0024888925, -0.033194326, -0.016719902, 0.021124901, 0.03095773, -0.045986548, 0.024466153, -0.003010537, -0.025966307, -0.0038458502, -8.157356E-7, -0.0034554692, 0.018124592, -0.009614626, -0.026157236, 0.018438261, 0.00354241, -0.022215921, 0.032103304, -0.015669795, -0.0065188524, -0.019938415, 0.01050108, -0.009573712, -0.020524839, 0.01422419, 0.008932737, -0.023470595, -0.007834897, 0.01446967, 0.024138847, -0.009744184, 0.03755841, -0.012308084, 0.0017933663, -0.0055778464, -0.043504477, -0.041622464, 0.012594477, -0.026470905, -0.020006604, 0.021684049, -0.008039463, 0.015287937, -0.016992657, 0.012260352, -0.01050108, -2.0232906E-4, -0.005888106, -0.01618803, 0.025175318, 0.0030702022, 3.9123342E-4, 0.012710398, 0.009914656, -0.012246715, 0.004064054, -0.015737982, -0.018370071, 0.0046436596, -0.0053460044, -0.0053800987, 0.0073302994, 0.021193089, -0.036903795, -0.017674545, -0.008898643, -0.032703366, 0.014374206, 0.0011489819, 0.006331333, 0.0017490436, 0.023947919, -9.989664E-4, -0.010466986, -0.01959747, -0.009444153, 0.0021701097, 0.0076780627, 0.010971583, -0.013419562, 0.029566677, -0.004916415, -0.008284943, -0.005850602, 0.027180068, 0.0047800373, 0.021847703, -0.0055301143, -5.3443E-4, -0.012389911, -0.025679914, -0.001856441, -0.0021956805, -0.0069723083, 0.004745943, -0.023320582, 0.012655848, 0.0028554073, 6.424667E-5, -0.009580531, -0.016228942, -0.0031162298, 0.01429238, -0.017660908, 0.013883246, -0.012539926, 0.011762573, -0.020661216, -0.0059187906, 0.0047561713, -0.036221907, -0.017906388, -0.012635391, 0.031639617, 0.0086736195, 0.03826757, -0.015724344, 0.030194016, -0.0051687136, 0.002032027, 0.014565134, -0.0042413455, -0.022093182, -0.044677325, -0.0043027154, 0.014633324, 0.017497255, 0.009232768, 0.0030582692, 0.024534343, 0.028257452, 0.003445241, 0.01508337, 0.0032594262, 0.006447254, -0.015424314, 0.002925301, -0.02222956, -0.0032952253, -0.024534343, -0.009185036, 0.037149277, 0.00341967, -0.0121853445, -0.017674545, 0.023347856, -0.007868991, 0.016147116, -0.0019502006, 0.015383401, -0.018642828, 0.011708023, -0.019065598, 0.0046982104, 0.006399522, -0.008721352, 0.0053221383, -0.009028202, 0.002301373, -0.008837272, 0.022079544, -0.023347856, -0.027698305, 0.022420488, 0.007534866, -0.003658331, -0.01996569, -0.013092256, -0.032130577, 0.002754829, -0.011926227, 0.012362636, 7.0916384E-4, -0.022134095, -0.048877757, 0.031148659, -0.009205492, 0.030330393, 0.008134928, 0.05324184, 0.031066833, 0.017265413, -0.0062188217, 0.014756064, -0.013146807, -0.008557699, 0.017838199, 0.01392416, -0.021588584, -0.0028383601, -0.02131583, -0.011701204, -0.041813392, -0.037122, 0.01887467, 0.010971583, 0.0197884, -0.017197223, -0.017906388, -0.012430824, -0.014251466, 0.009137304, 0.0014831071, -7.769265E-4, -0.02839383, -0.012764949, -0.002332058, 0.0030003088, 0.008516786, -0.014524221, -0.0280938, 0.016542612, -0.028011972, -2.6551026E-4, -0.014387844, -0.011789849, 0.03676742, -0.006965489, 0.021465845, 0.0016450556, 0.00885773, -0.0065188524, 2.5357722E-4, -4.7646946E-4, 0.023456959, -0.0037265196, 0.036167357, 0.001303259, 0.0018189371, -0.009491886, 0.020470288, -0.019324716, -0.01416964, -0.009566893, -0.0031963515, 0.012751312, 0.0037231103, -0.016583525, -0.016147116, -0.02681185, -0.011680747, 0.008032644, -0.018233694, 0.016256217, -0.035894603, 0.002906549, -0.009382783, -0.011551188, 0.016310768, 0.004957328, -0.004101558, -0.0076439683, 0.02778013, -0.012955878, -0.0047970843, -0.007657606, -0.0016689217, -0.039767727, -0.009791916, 0.0035560476, -0.0033736425, 0.023347856, -0.009355508, 0.007316662, -0.015656156, -0.021370381, -0.028993892, 0.007821259, -0.00818266, -0.009246406, 0.0092805, -0.015969824, -0.007405307, -0.0047800373, 0.019406542, -0.0046129744, 0.0144014815, 0.008823635, -0.0046913917, 0.020443013, -0.021397656, 0.0025639, 0.0037367481, -0.014306017, 0.0044425023, 0.019815674, 0.040149584, 0.027548289, -0.01710176, -0.025639001, -0.003989047, -0.015887998, 0.009191855, -0.014142364, -0.002282621, 0.03564912, 0.0016263037, 0.028993892, 0.031639617, -0.019201975, -0.02638908, 0.015683431, -0.008639526, -0.022638693, -0.019147424, 0.0050971154, 0.0062563256, 0.010582907, -0.024779823, -0.024152484, -0.014060537, -0.04244073, -0.017047208, -0.018997408, 0.015737982, 0.05182351, 0.023579698, 0.0022945541, 0.018001853, -0.0029628049, 0.018779205, 0.001977476, -0.0038151653, 0.018956495, 0.03513089, 0.019761125, 0.02107035, -0.034121692, -0.010521537, 0.017197223, 0.007596236, 0.015274298, 0.029512128, -0.011169331, -0.019733848, -0.02351151, 0.016883556, 0.011708023, -0.00665523, 0.0028537028, -0.032294232, 0.00604494, 0.015315212, 0.016869918, -0.022911448, 0.01013968, -0.017115397, -0.014374206, -0.011162512, 0.012321722, -0.017756373, 0.011585283, -0.044977356, 0.018751929, 0.009573712, -0.0090077445, 0.031066833, 0.031148659, -0.0014771406, 0.015097008, -0.0078076213, 0.0051584854, -0.015315212, -0.009423696, -0.014892441, 0.01611984, -0.011039772, 0.013705956, -0.030330393, 0.025734466, 1.8933056E-4, -0.0077462513, -0.012103518, 0.014333293, 0.0052232645, -0.04694119, -0.015465227, -0.009041839, 0.0058403737, -8.7111234E-4, -0.0057244524, -0.012123975, 0.009853287, -0.0067609227, -0.003095773, -0.020783957, -0.031530518, -0.0017209157, -0.01434693, -0.008169022, 0.002601404, 0.20423919, -0.008878186, 0.008878186, 0.04786856, 0.0021513577, 0.019747486, 0.00708482, 0.0095123425, -0.020415736, 0.006876844, 0.007439402, 0.0035014965, -0.0054994295, 6.303205E-4, 0.019502006, -0.010705647, -0.017742734, -0.010773836, -0.014183277, -0.0027207343, 0.0036446932, 0.020729406, -0.001511235, -0.019897502, 0.007773527, -0.0066586398, -0.009703271, 0.014565134, 0.03297612, 0.021970442, -0.030194016, -0.018206418, 0.005001651, -0.0010390274, -0.00952598, 0.00421407, 0.012492194, 0.010944308, 0.0052948627, 0.012239896, 0.008046282, -0.003310568, -8.336085E-4, -0.005506248, 0.0066347737, 0.014906079, -0.016597163, 0.009430516, -0.007855354, 0.006951852, -0.040804196, -0.014606048, 0.016801728, 0.028966617, 0.0010049329, -0.003658331, 0.019079236, -0.0048652734, -0.0072757485, -0.0027428959, 0.01062382, 0.035267264, -0.018833756, -0.011264795, 4.94369E-4, 0.028366555, -0.022788707, 0.009853287, 0.019952053, -0.026334528, -0.011442087, -0.015274298, -0.014824253, 0.019283801, -0.016160753, -0.019952053, 0.0112238815, 0.009485067, 0.011708023, 0.0144423945, -0.004347038, -0.014333293, 0.006645002, -7.654197E-4, -0.009137304, -0.022024993, 0.006314286, -0.011257976, -0.03090318, -0.016706264, -0.0061097196, 2.133032E-4, 0.0013347964, 0.01757908, -0.00824403, -0.0032474932, 0.032921568, 0.009757822, -0.018506449, 0.0022297748, -0.02992126, 0.012403549, 0.017497255, 0.0061949557, -0.011087504, -0.005301682, -2.8255748E-4, -1.3616457E-4, 0.013474113, -0.012376273, 0.0061131287, -0.029266648, 0.004306125, -0.015410677, -0.010310152, 0.030057637, 0.008169022, -0.007009812, 0.03431262, -0.007841716, 0.008878186, -0.0058540115, 0.02319784, -0.007528047, 0.014374206, -0.043640852, -0.027875595, 0.00580287, -0.004145881, -0.018983772, 0.010882937, -0.03090318, 0.0057790037, -0.009539618, -4.5095192E-5, 6.802902E-5, 0.011080685, 0.00812129, 0.020647578, -0.007950818, -0.007698519, -0.0016092565, 0.012444462, 0.01001694, 0.0079235425, -0.009723728, 0.0026337937, -0.009000926, -0.025802655, -0.026116323, -0.0066893245, -0.016542612, 0.0067131906, 0.015928911, 0.02992126, 0.0105147185, -0.021411294, -0.046804816, 0.00427203, 0.035867326, -0.04066782, 0.020497562, 0.02540716, -0.013153626, -0.011789849, 0.0011830763, -0.17434521, 0.021302192, 0.007378032, -0.02400247, 0.016992657, 0.015519778, 0.056133047, -0.006610907, 0.001258084, -0.0031724854, 0.030548597, 0.01208988, -0.06180636, -0.022256834, 0.009703271, 0.010098767, -0.01996569, 0.035403643, 0.018356433, 0.011673928, 0.04017686, -0.010473805, -0.014660599, 0.0028298367, 0.012499013, 5.0331885E-4, 0.020838507, 0.023920642, -0.010385159, -0.008087195, -0.026402716, -0.0015717526, 0.020156618, -0.007657606, 0.0048652734, -0.010391979, -0.021274917, -0.0013024067, -0.016024375, -0.015369763, 0.038813084, 0.004541376, 0.024588894, 0.022502314, 0.013440019, 0.025611727, 0.027125519, 0.0015027114, -0.00787581, -0.00854406, 0.004248164, -0.029375749, 0.005216446, -0.020183895, 0.0059631136, -0.0039413148, 4.884025E-4, -0.006989355, -0.0018820118, -0.0039106295, -0.036685593, -0.02533897, 0.003034403, -0.015042457, -0.00873499, -0.01991114, -0.012444462, 0.031912375, -0.015765259, 0.017374516, -0.00421407, 0.021015799, 0.015806172, 0.011687566, 0.006863206, -0.013637766, -0.019829312, 0.0030855448, 0.011394354, 0.006304058, -0.01666535, 0.030739525, 4.479154E-4, 0.005642626, -0.0053460044, -0.019038321, -0.004234527, -0.0072757485, 0.01471515, -0.006743876, -0.009396421, -0.035076335, -0.040776923, -0.017742734, -0.012301265, 0.0114352675, 0.0058846963, 0.0041936133, -0.0024189989, 4.4109652E-4, -0.004186794, -0.001123411, -0.015383401, -0.0034912683, 0.008537242, 0.011128417, 0.0031844184, 0.020674855, 0.01807004, 0.0052778157, -0.016256217, -0.010453348, 0.013965073, 0.008434959, -0.013671861, 0.0059051528, 0.00702345, -0.024452515, 2.542165E-4, 0.012539926, 0.06944351, -0.0027019826, 0.004285668, -0.011708023, -0.013733231, -0.021588584, -0.10239235, 0.0016143706, 0.020483926, 0.018697377, -0.019488368, 0.032103304, 9.5975783E-4, 0.005063021, -0.009021383, 0.029130269, -0.01196714, -0.015097008, 0.004711848, -0.0050289263, 0.01410145, 0.0037231103, -0.008469054, -0.021083986, 0.014524221, 0.033139773, -0.0054244217, 0.010330608, -0.012608116, -0.043068066, -0.014851528, 0.009723728, -0.036794696, 0.021043073, 0.013869609, 0.004490235, -0.0035833232, -0.020961247, 0.00799855, -0.015587967, -0.012328541, -0.034612652, -0.032212406, -0.02778013, 0.014156002, -0.057605926, 0.0052369023, -0.004428865, 0.011469361, -0.036249183, 0.0059187906, -0.0064438446, -0.025366247, 0.029321197, 0.019065598, -0.010091947, -0.012567202, -0.022447763, -0.026839124, -0.007078001, 0.010541993, 0.010419253, 0.008850911, 0.0025673097, -0.01380142, -0.018601913, -0.020920334, -0.011626196, -0.025529899, 0.011742117, 0.0065052146, 0.011217063, 0.010480624, 0.0030616787, 0.027984697, -0.033876214, -0.022952361, 0.027248258, -0.037503857, 0.0058233263, -0.023525147, -0.00531191, -0.045413762, -0.015792534, 0.0261436, -0.026457267, 0.009628263, -0.021370381, 0.008394046, -0.019583832, 0.0072143786, 0.018601913, 0.0095532555, 0.0056119408, -0.0041902037, -0.026934588, 0.007432583, 0.025639001, 0.014510584, 0.004957328, -6.699553E-4, 0.025543537, -3.771695E-4, 0.013569578, 0.004098149, 0.017347239, -0.002490597, 6.571699E-4, -0.067970626, 0.025325332, -0.015247023, -0.005813098, -0.028284729, -0.0064711203, 0.008448596, -0.007848535, -0.022570504, 0.020142982, 0.0069075287, 0.012253533, -0.01349457, 0.007841716, -0.0051107532, 0.006252916, -0.0073984885, -0.0036651497, 0.0051993984, -0.012587659, -0.005843783, 0.011919408, 0.026334528, -0.0018070041, -3.1089847E-4, 0.034830857, 0.010985221, 0.007037088, -0.018479174, -0.024561618, 0.018833756, -0.009600988, -0.0056869485, 0.008107652, 0.0050289263, -0.03736748, -0.02576174, 0.008591793, 0.013337736, 0.011708023, -0.008073558, -0.012969516, -0.0032270364, -0.007037088, -0.0038935824, 0.029484851, -0.019624745, 0.015137921, 0.019311078, 0.015274298, 0.03155779, 0.010862481, -0.007596236, -0.022611417, 0.01641987, -0.031666894, 0.051387105, 0.0102624195, 0.0054551065, -0.0058096885, 0.01892922, -6.3287764E-4, 0.016283493, -0.028011972, 0.009457791, -0.014537859, 0.020974886, -0.00787581, -0.0205112, -0.022325024, -0.011169331, -0.00598357, 0.011203425, 0.03150324, 0.006740466, 0.029621229, 0.012246715, 0.0068666157, -0.012417187, 0.012430824, 0.02411157, -0.027220983, -0.029239371, 0.02191589, -0.003462288, 0.011653472, -0.0022911448, 0.0064097503, 0.017360877, 0.016501697, -0.008503147, 0.009123666, 0.025352608, -0.008407683, 0.0011984188, -0.0019467912, -0.02229775, -0.0043129437, 0.0071666464, 0.0144014815, 0.011564826, 0.0060415305, -0.012205801, -0.028066523, -0.039304044, 0.0056085316, -0.018192781, -0.027616477, 0.006887072, 0.01831552, 0.013883246, 0.00329693, 0.002655955, 0.0102624195, -0.03204875, 0.011039772, -0.01013968, 4.003963E-4, -0.015397038, 0.046695713, 0.020783957, 0.015260661, 0.033385254, -0.010323789, 0.03938587, 0.021656774, 0.02400247, -0.015369763, -0.002466731, -0.010207868, -0.009150942, -0.01312635, -0.041813392, 0.010671552, -0.02314329, 0.013603672, 0.0028775688, 0.034912683, -0.023075102, 0.058587845, 0.018260969, -0.01880648, 0.0037299292, -0.024411602, 0.0011975664, 5.6042697E-4, 0.0166108, -0.0055505713, -0.0053766896, 0.012117156, -0.0016015852, 0.001783138, -0.028257452, -0.014933354, 0.028230177, 0.01532885, 0.022147734, -0.01831552, -0.011946684, -0.0015027114, -0.011933045, 0.008128108, 0.008584974, -0.010166955, -0.015110645, 0.036658317, 0.006587041, -0.0039242674, -0.04366813, -0.014196915, -0.025925394, 0.02149312, -0.008141747, 0.036549214, -6.665458E-4, 0.02131583, -0.021588584, 0.025379883, 0.0018734882, -0.017033571, 0.010194231, -0.01508337, -0.044977356, 0.014974268, 0.0032952253, 0.010773836, -0.025379883, -0.022815984 ], + "id" : "67818e02-5315-4efc-995b-d4cc81836930", + "metadata" : { + "source" : "movies.csv" + } + }, + "04410cf5-d8a6-4cd3-bf5d-5e4e3f29fe27" : { + "text" : ",297762-284053-209112-315635-284054-49521-283995-181808-271110-263115-99861-703363-102899-363088-299536-76338-383498-284052-353486-343668-297761\r\n177572,Big Hero 6,Adventure-Family-Animation-Action-Comedy,en,A special bond develops between plus-sized inflatable robot Baymax and prodigy Hiro Hamada who team up with a group of friends to form a band of high-tech heroes.,97.839,Walt Disney Pictures-Walt Disney Animation Studios,10/24/14,165000000,657827828,102,Released,From the creators of Wreck-It Ralph and Frozen.,7.741,14274,Scott Adsit-Ryan Potter-Daniel Henney-T.J. Miller-Jamie Chung-Damon Wayans Jr.-G��nesis Rodr�_guez-James Cromwell-Alan Tudyk-Maya Rudolph-Abraham Benrubi-Katie Lowes-Billy Bush-Daniel Gerson-Paul Briggs-Charlie Adler-Marcella Lentz-Pope-David Shaughnessy-Cam Clarke-Nicholas Guest-Terri Douglas-Tim Mertens-Yuri Lowenthal-Sundra Oakley-Brian R. Norris-Stan Lee-Shane Sweet-Frank Welker-David Cowgill-Kirk Baily-Charlotte Gulezian-Reed Buck-Roy Conli-Cooper Cowgill-Jackie Gonneau-Marlie Crisafulli-Bridget Hoffman-Kelly Hoover-Leah Latham-James Taku Leung-Yumi Mizui-Michael Powers-Lynwood Robinson-Josie Trinidad-Daniel Howell-June Christopher-Phil Lester,sibling relationship-san francisco california-martial arts-hero-talent-friendship-cartoon-superhero-based on comic-revenge-tokyo japan-best friend-another dimension-robot-east asian lead-boy genius-aftercreditsstinger-moral dilemma-teen superhero-dead brother,/2mxS4wUimwlLmI1xp6QW6NSU361.jpg,/5tub2Kw6NboWFblA1CgDEwB59jP.jpg,150540-109445-269149-82702-9806-14160-118340-585-12-127585-10681-2062-99861-131631-62177-102651-198663-293660-211672-38757-62211\r\n22,Pirates of the Caribbean: The Curse of the Black Pearl,Adventure-Fantasy-Action,en,Jack Sparrow a freewheeling 18th-century pirate quarrels with a rival pirate bent on pillaging Port Royal. When the governor's daughter is kidnapped Sparrow decides to help the girl's love save her.,127.575,Walt Disney Pictures-Jerry Bruckheimer Films,7/9/03,140000000,655011224,143,Released,Prepare to be blown out of the water.,7.789,18945,Johnny Depp-Orlando Bloom-Keira Knightley-Geoffrey Rush-Jack Davenport-Jonathan Pryce-Lee Arenberg-Mackenzie Crook-Damian O'Hare-Giles New-Angus Barnett-David Bailie-Michael Berry Jr.-Isaac C. Singleton Jr.-Kevin McNally-Treva Etienne-Zoe Salda��a-Guy Siner-Ralph P. Martin-Paula J.", + "embedding" : [ 2.0063297E-4, -0.038832735, -0.015411318, -0.033149894, -0.022027768, 0.01687262, 0.007942445, -0.003064674, -0.017170293, -0.042729538, 0.037696168, 0.032419246, 0.0213783, -0.0042418335, 0.010134397, 0.018591003, 0.0147212595, -0.019876407, 0.027115261, -0.027237037, 0.0030409954, 6.6553487E-4, -0.028333012, 0.0058587366, 0.007462109, -0.0018452314, 0.031472106, -0.013232897, 0.004366991, -0.019835815, 0.020647649, -0.013368202, -0.011473923, -0.0048101177, -0.01780623, -0.010026152, 0.0032135104, -0.037425555, 0.018158024, -0.0062105316, 5.1928848E-5, -0.0015188064, -0.015979603, -0.0054156105, -0.017657394, 0.012116625, 0.005354723, -0.013489977, -0.0071847322, 0.03444883, 0.017616801, 0.027710607, -0.01127773, -0.03710082, 0.0037716462, -0.011128893, -0.024138536, 0.009978795, -4.6553617E-4, 0.008876054, 0.0213783, -0.00830777, -0.028657746, -0.023177866, -0.017021457, -0.008957237, -0.014464179, -0.028333012, 0.016574947, -0.0018706012, 0.03896804, 0.023096683, 0.013347907, 0.001068915, 0.01068915, -0.017643863, -0.028495379, -4.4989143E-4, -0.0046646637, 0.024057353, 0.006525117, 0.0032287322, 0.001724302, 0.010303529, 0.010472661, 0.015303074, -9.953425E-4, 0.022257786, -0.04419084, 0.013611753, 0.011196546, 0.042891905, 0.002274827, 0.003463826, 0.018469227, 0.005476498, -0.030010803, 0.019849345, -0.018333921, -0.034421768, 0.009816429, 0.0014156358, -0.01635846, -0.012996112, 0.010289998, 0.021337708, 0.0077259555, -0.010871813, 0.01116272, 0.0063999593, -0.0046951077, 0.0019416368, 0.015533094, -0.03875155, -0.0076380065, -0.017657394, 0.0033302114, 0.0010046448, -0.0014122532, -0.025559247, 0.020972382, 0.035937194, 0.0118527785, -0.016087847, 0.03683021, 0.018942798, -0.0038900387, -0.016913213, 0.0025792648, -0.011135659, 0.031986266, -0.0011949184, 0.016777907, 0.0069953045, -0.018117433, 0.056449536, -0.01685909, 0.0048845354, -0.023949109, -0.02522098, 0.021080628, 0.032987528, -0.016101377, -0.01756268, -0.022298379, -0.0056354823, 0.014031201, -0.011967788, 0.009593174, 0.0048439438, 0.020688241, 0.019172817, 0.002301888, 0.035017114, 0.021148281, 0.002394911, -0.0014452339, -0.013111122, 0.00558136, -0.016818497, 0.003791942, -0.007840965, -0.009904377, -0.006139496, 9.606704E-4, 0.019186348, 0.018712778, -0.027209975, -0.0061225826, 0.00926844, -0.0125563685, 0.022190135, -0.0120895635, 0.019619325, 0.006619831, 0.019429898, -0.0021784217, -0.010418539, -0.027467057, -0.0040422576, 0.006355985, -0.007766547, 0.020972382, 0.025599837, 3.0591773E-4, -0.003463826, 0.031959206, -0.019389307, 0.018712778, -0.02992962, 0.0018790578, 0.032581612, -0.00892341, 9.031655E-4, -0.6403748, -0.018009188, -0.011318321, -0.030362599, 0.018469227, 0.014518301, -0.003791942, -0.0032676326, -0.029226031, -0.008402484, -0.027047608, 0.027494118, 0.032500427, -0.02352966, -0.017170293, 0.0016143661, 0.013591457, -0.027020548, 0.021202402, 0.007868026, -0.03823739, 0.005912859, -9.200787E-4, 0.011676881, -0.0068329377, 0.003490887, -0.0022765184, -0.013503509, -0.007049427, 0.0026300044, -0.00949846, 0.011541576, 0.02329964, 0.0054595848, 0.030714393, -0.0025623515, -0.0035111827, 0.052796282, 0.038859796, 0.03539597, -0.030524965, 0.0024524156, 0.026114, 0.010472661, -0.015587216, 0.0040524057, 0.013077295, 0.009085777, -0.010797394, -0.0143153425, -0.0113859745, -0.020444691, -0.0018858231, -0.008503963, -0.011460393, -0.0107432725, 0.01689968, -0.021675972, 0.022934316, -0.006606301, -0.012779623, 0.022663703, -0.0068633812, 0.0053784014, -0.0069682435, 0.030281415, -0.0058012316, -0.017021457, 0.014247689, -0.019023981, 0.012887867, -0.010053213, -0.020688241, -8.5580855E-4, 0.0014308577, 0.01588489, 0.02968607, -5.8984826E-4, -0.013009642, 0.023150805, 0.012475185, 0.0031086484, -0.002812667, 0.010059979, 0.018388044, 0.010668854, -0.020593528, 0.013571161, 0.018130964, -0.0055509163, 0.020174079, 0.017711516, 0.011663351, -0.002090473, -0.01593901, -0.00422492, -0.01570899, 0.010939466, 0.030579086, -0.05861443, -0.025721613, -0.02256899, 0.021784216, -0.005232948, 0.03366406, -0.0025572777, 0.0016414272, -0.006197001, 0.027629424, -0.013104357, -0.006792346, 0.003301459, -0.0127322655, -0.009234614, 0.0076312413, -0.035287727, 0.02421972, -0.004265512, 0.008889584, -0.004739082, -1.01796395E-4, 0.010377947, 0.0062375925, -0.015844297, 0.0073335688, 0.0327981, 0.0023881455, -0.008835462, 0.00213783, 0.0063221585, 0.006281567, 0.00782067, 0.0013386807, -0.008930176, 0.008314535, 0.0088692885, 0.015776644, -0.0014156358, 0.01660201, -0.008219821, -0.030957943, -0.013868834, -0.011859545, 0.0026553744, -0.01080416, -0.0150189325, -0.022704296, 4.422805E-4, 4.896375E-4, -0.001442697, -0.014193567, 0.0109191695, 0.001890897, 0.01225193, 0.0037987074, -0.0021885696, -0.014775382, -0.0017877265, 0.024788003, -0.0109327, 0.015262483, 0.008388953, 0.0019399454, -0.019064572, 0.016953804, -0.0011433332, -0.004255364, 0.008558085, 0.003775029, -0.02375968, 0.0081656985, -0.021919522, -0.015993133, 0.0053648707, -0.017765637, 0.030957943, -0.02305609, 0.013293785, 0.01784682, -0.019037511, 0.005040137, 0.006075226, -0.031174432, 0.010188519, 0.035720702, 0.021094158, 0.017034987, -0.009836724, -0.02255546, 0.0045225928, -0.03112031, -0.009214317, -0.0037412024, 0.0018249355, -0.003910335, 0.016453173, 0.0024084414, 0.013111122, 0.014585954, 0.0066299792, 0.037371434, 0.03921159, 0.001163629, -0.015587216, -0.0058688847, -0.043568432, 0.0124413585, -0.017467964, 0.011717473, -0.010120866, 0.019091634, -0.015276013, -0.006325541, -0.01259696, 0.009593174, 0.013503509, -0.007340334, 0.0038088553, -0.0127255, 0.011900136, 0.009376685, -0.01152128, 0.014518301, 0.010405008, -0.014680668, -0.0032930023, 0.022650173, -0.0026705961, -0.013212602, -0.013016408, -1.6405816E-4, -0.006782198, -0.014991871, 0.0076853633, -0.0012287449, 0.016304336, 0.024625637, -2.8646752E-4, 0.045976877, -0.011575403, -0.007428283, 0.023434946, 0.016317867, 0.011108598, -0.011988085, -0.019254, 0.022271318, 0.0036803149, -0.015045993, 0.04259423, -0.017183824, 0.013402029, -0.0023492451, 0.008788105, 0.007955975, -0.01449124, 0.0057640225, 0.012624022, 0.03756086, 0.021229465, 0.011426566, -0.0156684, 0.012055738, 0.015519563, 0.0150189325, -0.013922956, -0.01684556, 0.010520018, 3.6638245E-4, -0.019402837, -0.008503963, -0.019213408, 0.003791942, 0.007225324, -0.004018579, -0.014261221, -0.005720048, -0.0055881254, 0.0077733123, 0.028847175, -0.005655778, -0.03371818, 0.016818497, 0.021270055, -0.013097592, -0.02397617, -0.008605442, 0.0038460644, -0.028657746, 0.008294239, -0.009877316, 0.037371434, -0.0038934215, -9.4375724E-4, -0.010120866, -0.0060008075, 0.007529762, -0.01711617, 0.01707558, 0.013483212, -0.008409249, 0.01104771, -0.009491694, -0.02539688, 0.026763467, -0.009491694, 0.01139274, -0.0077530164, -0.01246842, -0.0039509265, -7.496781E-4, -0.009796132, -0.038616244, 0.017955067, -0.020552935, -0.0076447716, -0.01116272, 0.004387287, 0.011142424, -0.009309032, -0.020552935, -0.01714323, -0.012191043, 0.004627455, 0.07355218, 0.031174432, 0.009762306, -0.008030393, -0.012421063, 0.0094578685, -0.010161458, -0.002985182, -0.007915383, -0.0057809358, 0.026222244, -0.010641793, 0.037696168, 0.0046578986, 0.009640531, -0.016588477, 0.003612662, 0.001524726, -0.005469733, -0.013936487, -0.030443782, -0.0020566466, 0.015154238, 0.03222982, 0.011230373, -0.023556722, 0.013009642, 0.03277104, -6.6342077E-4, 0.016588477, 0.005077346, 0.006355985, 8.30333E-5, 5.213498E-4, -0.0033606552, -0.0083213, 0.022920785, 0.024057353, 0.019267531, 0.020579996, 0.002005907, 0.0016617231, 1.073989E-4, 0.0026147827, 0.011933963, -0.02472035, -0.014843035, 0.02419266, 0.030795576, -0.045002673, 0.034530014, -0.0027416316, -0.020011712, -0.009613469, 0.027507648, -7.594032E-4, -0.016574947, -0.011514515, -0.0061631743, 8.156396E-4, 0.016074317, -0.037858535, 0.0112709645, -0.0101005705, -0.007056192, -0.026208714, -0.021094158, -0.020228202, -0.013097592, 0.014707729, -0.003764881, -0.018888675, -0.010486191, -0.013564396, 0.0113250865, -0.002132756, 0.033934668, -0.009180492, 0.014193567, 0.013936487, -0.02327258, -0.028847175, 0.0072320895, -0.029496642, 0.0014410056, 0.0103305895, -0.0028177411, 0.020728832, -0.0036870802, 0.011602463, 0.018658655, -0.0058519715, -0.0039576916, -0.011440096, 0.03271692, 0.0051416163, 0.020187609, 0.024084413, 0.011176251, -0.003643106, 0.0014037966, -0.010350886, -0.0023813802, -0.009877316, -0.005117938, -0.012691674, -0.0022308526, 0.009484929, -0.012015146, -0.024030292, -0.030687332, -0.00833483, -0.005334427, 0.0029395162, 0.01519483, 0.0046308376, 0.011514515, 0.0088084005, 0.0023577018, 0.009539052, -0.009681122, -3.7885594E-4, 0.0019839199, 0.02375968, -0.005232948, 0.01714323, -0.026641691, -0.03128268, -0.011534811, 0.032933407, 0.016344927, 0.0028042106, -0.021229465, -0.0068532336, -0.020620588, -0.025735144, 0.012076033, -1.840369E-4, -0.014707729, 0.0016084465, -0.030362599, 0.014951279, 0.02591104, -0.0043263994, 0.006799111, -0.029009541, 0.006535265, -0.010817691, 0.007428283, 0.02587045, 0.009708184, 0.016466703, -0.021730095, -0.010709446, -0.006098904, -0.02325905, -0.04248599, -0.0030545262, 0.048087645, 0.02258252, 0.032473367, 0.013503509, 0.019375775, 0.012651082, 0.021770686, 0.0143694645, -0.01666966, -0.0027399403, -0.036018375, 0.013591457, 0.010993588, 0.03539597, 0.0019873024, 0.00903842, -6.156409E-4, 0.008740748, 0.020850608, 0.016493764, -0.0034232342, -0.018496288, -0.01733266, -0.0033352855, -0.027494118, -0.01127773, -0.020715302, -0.013138183, 0.037885595, -0.013469682, 0.006575857, -0.0071238447, 0.026722874, -4.6987017E-5, 0.012170747, -0.008388953, 0.016290806, -0.020025242, -0.011169485, -0.023678496, -0.020918261, -0.002259605, -0.012975817, 0.010871813, -3.7658323E-5, -0.016547887, 0.005703135, 0.019159287, -0.02278548, -0.017048517, 0.022217195, -0.017657394, -0.010770333, -0.045516837, -0.0065014386, -0.038372695, -0.013740294, 0.012170747, -0.013767354, 0.007556823, -0.019795224, -0.0318239, 0.019605795, 0.0055779773, 0.029902559, 0.021215932, 0.04559802, 0.032581612, 0.019091634, -0.019605795, 7.0274394E-4, -0.019023981, -0.0038731256, 0.030552026, 0.020106426, -0.035477154, -0.003338668, 0.006728076, -0.011480688, -0.037154943, -0.03896804, 0.0230155, 9.877316E-4, 0.022880193, -0.015803706, 0.0074959355, -0.03087676, 0.013618519, -0.0031086484, 0.0020887817, 0.016818497, -0.027209975, -0.024639167, -0.0029361336, -5.188128E-4, 0.010432069, 0.019511081, -0.025383348, 0.023150805, -0.013672641, -0.006799111, -0.019781692, -0.010695916, 0.0244768, -0.025478063, 0.020404099, 0.014410056, 0.020945322, 0.002416898, -2.7314838E-4, 0.021107689, 0.030524965, -0.021540666, -9.0908515E-4, -0.009194022, 0.009342859, 0.0032456454, 0.019402837, -0.026574038, -0.029794315, -0.03561246, -0.0034739738, 0.038913917, 0.008463372, 0.0020549553, -0.0069479477, -0.014991871, -0.02637108, 0.013280254, -0.0040084315, -1.9608755E-4, -0.039942242, 0.0113250865, -0.008977533, -0.0028820112, 0.007955975, -0.016818497, 2.5560093E-4, -0.006870147, 0.009701419, -0.0028143586, 5.251552E-4, -0.022731356, -0.013882364, -0.040835258, -0.020187609, -0.006291715, -0.00867986, 0.009356389, -0.02401676, 0.003538244, 0.0023475538, -0.019971121, -0.005070581, 2.0887816E-4, 0.009484929, 0.0033251375, 0.017711516, -0.02232544, -0.009931438, 0.0100396825, 0.033447567, 0.0026401524, -0.0028549503, 0.021905992, 0.01198132, 0.035423033, -0.034042913, 0.012319583, 0.0030663654, -0.009721714, -0.02539688, 0.007827435, 0.024530923, 0.010465896, -0.006149644, -0.05436583, -0.0018181703, -0.0019500933, 0.026222244, -0.008842227, -6.723002E-4, 0.024747413, 0.01543838, 0.037939716, 0.0177927, -0.004766143, -0.028603625, -4.5750238E-4, -0.010763568, -0.011528045, 0.0014367774, -0.0044786185, 0.014870096, -1.7843439E-4, -0.019592265, -0.023462007, -0.012048972, -0.020309385, -0.039942242, -0.0076447716, 0.026763467, 0.032500427, -0.0013361437, 0.014125914, 0.032392185, -0.002484551, 0.006829555, -0.017156763, -0.016818497, 0.0066232136, 0.008571615, 0.014477709, 0.013273489, -0.023096683, -0.012116625, 0.022744887, 0.022163073, 5.2980636E-4, 0.04248599, -0.011108598, -0.010249406, -0.014044731, 0.013801181, 0.0055204723, -0.0034553693, 0.035991315, -0.046274547, -0.020133488, 0.005723431, 0.015045993, -0.0024946989, -0.013449386, 0.010580906, -0.023177866, -0.007895087, -0.0177927, -0.02258252, -0.011413035, -0.025139797, 0.0135441, 0.0037242894, 0.002005907, 0.018983388, 0.022393093, -0.002780532, -0.0043196343, 0.0028515675, 0.0013691245, 0.0053208964, -0.011419801, 0.0010367798, 0.009599939, -0.046734586, 0.019105164, -0.029604886, 0.0035111827, -0.019105164, 0.0062172967, -0.014085323, 0.025532184, 0.0063796635, -0.055069417, -0.002205483, 0.0029767253, -9.395289E-4, -0.017034987, 0.0032371888, -0.019497551, -0.011886605, 0.0042418335, -0.002195335, -0.02968607, -0.022230726, 0.0124413585, 0.0028769374, -0.010655324, 0.018942798, 0.1710264, -0.010134397, 0.023556722, 0.041214116, -0.0012684909, 0.010628263, 0.009660827, 0.019727571, -0.014518301, 0.016750846, -0.00231711, 0.006907356, 0.0017437522, -0.0039644567, 0.011068006, -0.0046071587, -0.020241732, -0.02450386, -0.009965264, -0.022609582, -0.01331408, -0.0012659539, -0.029902559, -0.015316605, -0.007313273, -0.0041099107, -0.004360226, 0.0076447716, 0.017440904, 0.008118342, -0.0135441, -0.013483212, -0.0056896047, 0.023840863, -0.02710173, -0.016439643, 0.0055509163, 0.013388499, 0.0048067346, 0.00844984, -0.0027111878, -0.0013251501, -0.0109191695, -0.01829333, 0.012928459, 0.015627807, -0.019254, -0.012421063, -0.017968597, 0.009464634, -0.039996363, -0.00492851, 0.021107689, 0.020985913, -0.004417731, -0.007387691, 0.0036295753, -0.0035483919, -0.0010198667, 0.0026046347, 0.020755894, 0.038102083, -0.023867926, 0.009593174, -0.0057640225, 0.021797748, -0.03969869, -0.008964002, 0.014585954, -0.04400141, -0.0066299792, -0.022406623, -0.029090725, -0.001632125, -0.01222487, -0.01449124, 0.009525521, 0.012644317, 0.018821022, 0.006903973, -0.015817236, -0.020918261, -0.004823648, -0.0103305895, -0.0143694645, -0.029767253, 0.013740294, -0.019091634, 0.004925127, -0.012833745, -0.007583884, -0.028387135, -0.013922956, -0.008429545, -0.012752562, 0.009633766, 0.017697984, 0.005933155, -0.018577471, -0.0022663705, -0.021094158, 0.028008278, 0.026560508, -0.0052092695, -0.035747766, -0.017995657, -0.0067382236, 0.012948755, 0.03325814, -0.014504771, -0.01616903, -0.024869187, 0.006650275, -0.01948402, -0.0055881254, 0.01519483, 0.0076853633, -0.009796132, 0.040835258, -0.014058262, -0.006240975, -0.020309385, 0.014410056, -6.139496E-4, -0.0075365272, -0.027358811, -0.022460746, 0.0068227896, -0.0017708133, -0.032960467, 0.0038798908, -0.019984651, 0.017210884, 0.0010342429, -0.0034942697, 0.016818497, 0.01850982, 0.0046984903, 0.0070697227, 0.0039509265, 0.009667592, -0.022217195, 0.009058717, 0.012218105, 0.0156007465, -0.030335536, 0.036207803, -0.009363154, 8.080287E-4, -0.044082597, -0.018604534, -0.0059060934, 0.010662089, 0.0029648861, 0.045489773, 0.011534811, -0.025369817, -0.02779179, -0.008490432, 0.029821375, -0.040023424, 0.022771949, 0.016263744, 0.0042215376, -0.03323108, -0.012989347, -0.1731913, 0.013638814, 0.009099308, -0.028305952, 0.020620588, 0.011940728, 0.01635846, 0.010709446, 0.020065835, -0.021946583, 0.031688593, 0.0015839223, -0.039455142, -0.0018029484, 0.005791084, 0.011656586, -0.015140708, 0.042729538, 0.020715302, -0.009829959, 0.034962993, 0.008267178, -1.6109835E-4, -0.0032253496, 0.01282698, 0.008104811, 0.010371181, 0.0017995657, 0.0051855906, -0.014193567, -0.034854747, -0.015776644, 0.012421063, 0.012881102, -0.0073335688, 0.006092139, -0.032554552, -0.004975867, 0.009904377, -0.01591195, 0.042891905, 0.028089462, 0.014626546, 0.0113859745, 0.0031323268, 0.017765637, 0.013158479, -0.013855304, 0.0047627604, -0.026682284, -0.008443075, -0.036992576, 0.022487806, 0.005239713, 0.007698894, 0.027507648, -0.011832483, -8.786414E-4, -0.0010875196, -5.3540887E-5, -0.029063663, -0.009917907, 0.005720048, -0.030903822, -0.0021631997, -0.023394356, -0.012860807, 0.018726308, -0.038047962, 0.0045293584, -0.020444691, 0.012678144, 0.012536073, 0.009674357, -9.826577E-4, -0.0056997524, -0.033582874, -0.011446862, 0.0032574846, 0.021689503, -0.00890988, 0.039888117, -0.013632049, 0.010810925, 0.004786439, -0.025099207, -0.0050367545, -0.020322915, -1.4006253E-4, -0.010986823, 0.008016863, -0.002374615, -0.028224768, 0.0025877215, -0.0030629826, 0.014978341, -0.0055001765, 0.0017911091, 0.0046951077, -0.00985702, -0.012461655, -0.01129126, 5.1289314E-4, 0.00925491, 0.019727571, 0.015790174, 0.0032202755, 0.017062047, 0.034800626, -0.004001666, -0.0013911116, -0.011724238, 0.017224414, 0.014518301, -0.020295855, 0.012076033, -0.02348907, -0.020322915, 0.012488715, 0.008612207, 0.029307215, -0.0051416163, -0.0092210835, -0.0056320997, -0.0026925832, -0.0068667643, -0.09049245, -0.0016076008, 0.01365911, 0.038372695, -0.026073407, 0.036938455, -0.005970364, 0.01948402, -0.018618064, 0.036505476, 0.009471399, -0.022284849, 0.004559802, -0.0109800575, 0.026966425, 0.0056151864, -0.017887414, 0.00665704, -0.0021885696, 0.028333012, -0.009376685, -0.016818497, 0.004231686, -0.0110950675, -0.020092895, 0.018374514, -0.03959045, 0.03512536, 0.011785126, 0.016926743, 0.03512536, -0.013686171, 0.010405008, -0.042702477, -0.035071235, -0.013719997, -0.005804614, -0.015343666, 0.010147927, -0.057531983, 0.029280152, 0.013192305, 0.006014338, -0.032581612, -0.013212602, 0.003106957, -0.005828293, 0.030335536, -0.035747766, -0.037209067, -0.0065657087, -0.008598677, -0.026804058, 0.0013564395, 0.01543838, 0.010411773, 0.017048517, 0.014112384, -0.0033843338, -0.02591104, -0.00890988, -0.011886605, -0.03128268, 0.010364416, 0.014761851, 0.014531831, 5.7716337E-5, -0.011717473, 0.01639905, -0.0046646637, -0.02518039, 0.03775029, -0.029659009, -0.010810925, -0.033041652, -0.0030968091, -0.021445952, -0.010587671, 0.02587045, -0.025139797, 0.0012346645, -0.029117785, 0.0029631946, -0.006734841, 1.3446003E-4, 0.014856566, 0.019023981, 0.012914929, -0.006954713, -0.03282516, 0.009667592, 0.028468318, 0.00222747, 0.005476498, 0.0028109758, 0.022163073, 0.017765637, 0.008152168, -0.0066435095, 1.604641E-4, -0.023313172, 1.6944924E-4, -0.07317332, 0.026898772, -0.0033420506, -0.0014985106, -0.010993588, -0.01021558, 0.02231191, -4.2790428E-4, 0.0063221585, 0.0063221585, 0.002000833, 0.01804978, -0.005571212, -0.0060650776, -0.0036972282, 0.0073606297, 0.005090877, -0.0032930023, -0.003849447, -0.0016380446, -0.021513605, 0.008267178, 0.03637017, 0.0118527785, 0.008030393, 0.02519392, 0.0020025242, 0.02522098, -0.0041132933, -0.020471752, 0.018320391, -0.0050671985, -0.008862523, 8.810726E-5, -0.018807491, -0.028928358, -0.018117433, -0.0101005705, 0.0171297, 0.0023644671, 0.0044414094, -0.028684808, -0.013307315, -0.025965163, 9.336093E-4, 0.014220629, -0.02424678, 0.020566465, 0.010154692, 0.004427879, 0.039996363, 0.0069885394, -0.012928459, -0.02587045, 0.015614278, -0.033636995, 0.051686775, -0.002770384, -2.5073838E-4, -0.014558893, 0.03087676, 5.378401E-4, 0.036749028, -0.033528753, 0.0068024937, 0.004410966, 0.0012126773, -0.0027788407, 0.0021665825, -0.018861614, 0.0039779874, -0.0017082344, 0.021784216, 0.03536891, 0.020972382, 0.007807139, -0.019700509, 0.019835815, -0.003517948, 0.019849345, 0.024057353, -0.018658655, -0.018942798, 8.274789E-4, -0.0018706012, 0.027818851, -0.009904377, 0.004559802, -0.016764376, 0.02232544, -0.02516686, 0.010262937, 0.00510779, 0.004370374, -3.46298E-4, 0.02519392, -0.0062375925, -0.028576562, -0.0038900387, 0.017508557, -0.017900944, -5.6701544E-4, -0.029253092, -0.026019285, -0.027115261, 6.071843E-4, -0.0064574643, -0.014464179, 0.03271692, 0.029090725, 0.027900035, 0.011298026, -0.015790174, 0.008916645, -0.031012066, 0.0071170796, -0.014856566, -0.017386781, -0.01807684, 0.05155147, 0.014504771, 3.2283092E-4, 0.03896804, -0.01611491, 0.04010461, 0.008429545, 0.015776644, -0.032202754, 0.009451102, -0.010547079, 8.600368E-4, -0.003301459, -0.02160832, 0.009309032, -0.011426566, -0.0030054778, 0.019281061, 0.033366386, -0.009809663, 0.07209087, 0.017454434, -0.0038223858, 0.02420619, -0.018239208, -7.179658E-4, 0.0068532336, 0.0122045735, -0.018117433, -0.0044515575, -0.0021344475, 9.031655E-4, 0.010783864, -0.01612844, -0.008855758, -0.012082798, 0.014396526, 0.013814712, -0.0042080074, -0.015478971, -6.5580977E-4, -0.006125965, 0.017386781, 0.017982127, -0.03206745, -0.019605795, 0.027954157, -0.009843489, -0.0040794667, -0.031174432, 0.00362281, -0.011731003, -0.009092542, 0.005002928, 0.02756177, 0.013462917, -0.005818145, 0.005818145, 0.012461655, 0.0022629877, -0.0049724844, 0.014694199, -0.02327258, 0.0016397359, 0.013456152, -0.012921694, -0.002569117, -0.027494118, -0.016344927 ], + "id" : "04410cf5-d8a6-4cd3-bf5d-5e4e3f29fe27", + "metadata" : { + "source" : "movies.csv" + } + }, + "4db35ed2-f61f-4e96-86af-447f25a8626e" : { + "text" : "There he assumes Robert's identity; romances his widow Marion; and draws the ire of the town's sheriff and King John's henchman Godfrey.,31.602,Scott Free Productions-Imagine Entertainment-Relativity Media,5/12/10,200000000,321669741,140,Released,\"Rise and rise again, until lambs become lions.\",6.379,4082,Russell Crowe-Cate Blanchett-Max von Sydow-William Hurt-Mark Strong-Oscar Isaac-Danny Huston-Eileen Atkins-Mark Addy-Matthew Macfadyen-Kevin Durand-Scott Grimes-Alan Doyle-Douglas Hodge-L��a Seydoux-Jonathan Zacca��-Robert Pugh-Gerard McSorley-Velibor Topic-Ciaran Flynn-Simon McBurney-Denise Gough-John Nicholas-Thomas Arnold-Pip Carter-Mark Lewis Jones-Bronson Webb-Denis M��nochet-Jamie Beamish-John Atterbury-Luke Evans-Roy Holder-Mark Ryder-Ruby Bentall-Ned Dennehy-Nicolas Simon-Lisa Millett-Stuart Martin-Jessica Raine-Steve Evets-Eric Rulliat-Abraham Belaga-Jack Downham-Richard Riddell-David Bertrand-Arthur Darvill-Giannina Facio-Hannah Barrie-Lee Battle-Nicky Bell-Andrea Ware-John O'Toole-Ralph Ineson-Zuriel de Peslouan-Jake Curran-Samuel Dupuy-Nick Lucas-Alan Charlesworth-Lothaire Gerard-Mat Laroche-Chris Jared-Joseph Hamilton-James Hamilton-James Burrows-Danny Clarke-Tom Blyth-Lee Nicholas Harris-Michael Koltes-Umit Ulgen-Robert J. Fraser-Ryan Stuart-Harvey Walsh-Will Richardson,robin hood-archer-knight-sherwood forest-historical fiction-bow and arrow-middle ages-medieval-king of england-12th century,/9NS5QGOfck24yL3bZqWeW06PgPC.jpg,/h7AKqgIh86HDgJIzENeR2ng1Knn.jpg,8367-9543-1495-27576-18823-652-19959-27022-10528-34544-22972-1735-40805-37834-530973-9477-12113-2253-2059-44912-254\r\n16869,Inglourious Basterds,Drama-Thriller-War,en,\"In Nazi-occupied France during World War II a group of Jewish-American soldiers known as \"\"The Basterds\"\" are chosen specifically to spread fear throughout the Third Reich by scalping and brutally killing Nazis. The Basterds lead by Lt. Aldo Raine soon cross paths with a French-Jewish teenage girl who runs a movie theater in Paris which is targeted by the soldiers.\",65.797,The Weinstein Company-Universal Pictures-A Band Apart-Zehnte Babelsberg Film-Visiona Romantica-Peninsula Films,8/19/09,70000000,321457747,153,Released,Once upon a time in Nazi occupied France...,8.216,20559,Brad Pitt-M��lanie Laurent-Christoph Waltz-Eli Roth-Michael Fassbender-Diane Kruger-Daniel Br�_hl-Til Schweiger-Gedeon Burkhard-Jacky Ido-B.J.", + "embedding" : [ -0.0067119696, -0.034430042, -0.019090327, -0.0450073, -0.008850356, 0.024432918, 0.0022581224, -0.023137745, -0.028143052, -0.02781926, 0.024527358, 0.03081435, 0.007170677, -0.0068772393, 0.01778166, 0.025633654, 0.023906754, -0.022301277, 0.013241805, -0.022382226, 0.0014005756, 0.0061352123, -0.00236774, 0.0015430785, 0.006833392, -5.6200096E-4, 0.012931503, -3.8323997E-4, -0.005204306, -0.019859334, 0.01063122, -0.016203167, -0.0077440613, -0.012992214, -0.032190472, -5.0761376E-4, 0.010030854, -0.02678042, 0.01144745, -0.0024284513, 0.005413423, 0.0066681225, -0.0019748032, -0.0053324746, -0.011528398, 0.012358119, 0.008681714, -0.013525125, -0.012277171, 0.02008869, 0.029222364, 0.036858495, -0.009551909, -0.012310899, -0.014543725, -0.009990379, -0.010853828, 0.017714202, -0.002323893, 0.009443978, 0.019967267, -0.012061308, -0.02781926, 3.0060517E-4, -0.0047928183, -0.0026527457, -0.006880612, -0.025080506, -0.016324589, -0.00232052, 0.025255894, 0.030598486, 0.012142257, 0.0017235259, 0.023178218, -0.015784934, -0.025444774, -0.003194088, 0.0010599178, 0.0062498893, 0.0045297365, -0.020264078, -0.014085018, 0.02201796, 0.017093599, 0.008695205, -0.021626709, 0.040771, -0.0398266, 0.008128567, -0.0039900807, 0.028439863, -0.009693569, 0.0033475526, 0.00965984, 0.0076293848, -0.021950502, 0.027589906, -0.024136107, -0.034349095, 0.0030676061, 0.0017623137, -0.0058046733, -0.018793516, 0.01950856, -0.005696742, -0.0076833502, -0.012796589, 0.009875702, -0.006705224, 0.0066310214, 0.006590547, 0.0315159, -0.034430042, 0.0034706616, -0.038045738, 0.025215419, -0.010530035, -0.005986807, -0.013430685, 0.007420268, 0.028277967, 0.004421805, -0.045951694, 0.04608661, 0.024338478, 6.813155E-4, -0.015919847, 0.0013398643, 0.0012783099, 0.020466449, -1.9046057E-4, 0.011831954, 0.009369775, -0.01961649, 0.03407927, -0.017916575, 0.013073163, -0.025471756, -0.005676505, 0.029249348, 0.047948424, -0.017660238, -0.012621202, -0.024851153, 0.008755916, -0.009626111, -0.00840514, 0.03750608, -0.0045466004, 0.01652696, 0.021883044, 0.027320078, -0.013228314, 0.02686137, -0.0033981455, -0.0018837362, 0.005224543, 7.850306E-4, -0.024486884, 6.362037E-4, 0.012580727, -0.020115672, -0.0025599925, 0.0054673883, 0.028439863, 0.016472995, -0.01826735, -0.023852788, -0.0038686579, -0.004469025, 0.018955411, -0.02781926, 0.041310657, 0.0065264627, -0.0022024706, 0.0061048567, -0.012870792, -0.0060913656, -0.0016493232, 0.00271683, 0.00928208, 0.026456628, 0.043172467, -0.010577255, 0.011204605, 0.028250983, -0.03024771, -3.701702E-4, 0.0053763213, -0.016864246, 0.02976202, 0.009437231, -0.009578891, -0.6281594, -0.0016940135, -0.018496705, -0.015096872, 0.014961959, 0.024689255, -0.010469324, 0.0072111515, -0.040636085, 0.0015717477, -0.03291901, 0.024365462, 0.022679036, -0.012918012, -0.026901845, -0.022301277, -0.0042801453, -0.022139382, -9.0223714E-4, -0.0011088242, -0.030031849, 0.020061707, 0.005622539, 0.007582165, 0.0051975604, 0.010368138, -0.007453996, -0.028224, -0.0013719064, -0.006297109, -0.022193346, 0.0027033386, 0.017943557, -0.0047995644, 0.029896934, -0.006148704, -0.015542088, 0.043523245, 0.02695581, 0.016486486, -0.021963993, -0.007217897, 0.019454593, 0.0074270135, -0.014719114, 0.026240766, 0.0028247612, 0.0039698435, -0.0045466004, -0.0060508912, -0.0034065775, 0.013349737, -0.010516543, -0.019049851, -0.0042126887, 0.018995887, 0.010044345, -0.030085813, 0.018901447, -0.00208948, -0.02908745, 0.007642876, 0.015717477, 0.0038180652, -0.0095721455, 0.01807847, -0.011346264, 0.004337484, 0.023137745, -0.01961649, 0.005470761, 0.013194585, -0.008877339, -0.015515106, 0.020021232, 0.015015924, 0.028466847, 5.48615E-5, -0.01072566, 0.0028298204, -0.011379993, -0.014867519, -0.013228314, 0.0340253, 0.020156147, 0.0058620116, -0.029735038, 0.009524926, 0.0136195645, -0.0033441798, 0.002868608, 0.034753837, 0.0050592734, 0.008513071, -0.0034301875, 0.012958487, 0.002939438, 0.009653094, 0.034942716, -0.05930818, -0.00835792, -0.021127526, 0.021869553, -2.0300335E-4, 0.012877538, -0.0024739848, -0.017053125, 0.012229951, 0.028574778, -0.011002233, 0.0074472507, -0.002927633, -0.014476269, -0.02811607, -0.00362244, -0.023542486, 0.02126244, 0.0095721455, 0.00840514, -0.008546799, 0.0059092315, 9.523029E-5, -0.009275335, -0.017754678, 0.0018736176, 0.019090327, -7.277976E-5, -0.009390011, 6.378901E-4, -0.0036595413, 6.298796E-4, 0.0035246273, 0.02620029, -0.024041668, 0.014665148, 4.6292355E-4, 0.019063342, 0.005949706, 0.0056023025, -0.0143548455, -0.03537444, -0.0012707209, 0.0014882697, -0.015906356, -0.008917813, -0.008297209, -0.008782899, -0.011278807, -0.0056596408, 0.0047961916, -0.013727495, 0.008614257, -0.0061655683, -0.0011366501, 0.0018095336, 0.0021586234, -0.013882646, -0.03351263, -0.0015725909, -0.020142654, 0.021100543, 0.020830715, -0.01420644, -0.0056157936, 0.02512098, 2.877462E-4, 0.001863499, 0.011602601, -8.280344E-4, -0.024136107, 0.010557017, -0.01701265, 0.005157086, 0.005700115, -0.015137346, 0.02897952, -0.028844606, 0.023515504, 0.01005109, -0.014516742, -0.001676306, 0.003237935, -0.03305392, -0.025984429, 0.021990975, 0.016540451, 0.011069691, -0.013201332, -0.020061707, -0.0030558011, -0.03291901, -0.0028180154, -0.021397354, -0.0016122218, -3.8724524E-4, 0.004340857, 0.01749834, 0.008371412, 0.008816628, 0.0078857215, 0.007420268, 0.030868314, 0.013066418, 0.0017091912, 0.0033155107, -0.025485247, 0.02018313, -0.0043003825, 0.01682377, -0.020655328, 0.02745499, 0.004138486, -0.0052380348, -0.0043678395, 0.008196023, 0.037802894, -0.016999159, 0.0030068948, 0.005207679, 0.007865484, 0.018712567, -9.0223714E-4, 0.0123311365, 0.012627947, -0.035617284, -0.02126244, 0.02830495, -0.022436192, 0.015218295, -0.013059672, -0.012310899, -0.0028837859, -0.007352811, 0.0053493385, 0.014031053, -0.006948069, 0.010341155, -0.016203167, 0.04309152, -0.016446011, 0.011980359, 0.009221369, 0.024797186, 0.0035549828, -0.008715442, -0.012506524, 0.009788008, 0.024419427, -0.022058433, 0.04646437, -0.011272062, 0.033215817, -0.0011754379, 0.015447649, 0.0024722985, -0.0033374343, 0.002915828, 0.009889194, 0.041499536, 0.03661565, 0.0034942715, -0.007851993, 0.007980161, 0.011845446, 0.0049547153, -0.0019124054, -0.014557216, -0.005743962, 0.010084819, -0.034160215, -0.02000774, -0.020061707, 0.017646747, 0.01892843, -0.009221369, -0.003106394, -5.75914E-4, 0.030760383, 0.021748131, 0.0324603, -0.015960323, -0.027198656, 0.03237935, 0.01856416, -0.016122218, -0.014678639, -0.0044184322, -0.0059294687, -0.030301675, 0.0051773232, -0.0071167117, 0.017066617, -0.022517141, -0.0050221724, -0.0023255795, -0.018280841, 0.010105056, -0.038990136, 0.0012783099, -0.005234662, -0.008776153, 0.001711721, 0.0025363825, -0.011015725, 0.022368735, -0.022881407, 0.0049074953, -0.0035549828, 0.0045938203, -0.0013778089, 0.0018382027, 0.013160857, -0.022422701, 0.012675167, 0.0029192008, -0.0025195184, -2.1522993E-4, -0.014732605, 0.0035077631, -0.023717875, -0.024513867, -0.01506989, -0.018213386, -0.006212788, 0.090716146, 0.037640996, -0.0027724819, 1.19525335E-4, 0.0046579046, 0.0019849217, -0.010590746, -0.01923873, 0.0109212855, 0.0030406234, 0.025485247, -0.017363427, 0.039502807, 0.015528597, 0.00536283, 0.0019916673, 0.008958288, 0.003130004, -0.007022272, -6.855316E-4, -0.022517141, -0.0053122374, 0.02715818, 0.02590348, -0.0050660195, -0.027873226, 0.022436192, -0.005673132, 0.0028534303, -0.0051537133, -0.009234861, 0.011379993, -0.010840337, 0.010138785, 0.01023997, -7.968356E-4, 0.0373172, 0.003264918, 0.0261868, 0.002092853, 0.0093293, 0.0023964092, 0.014085018, -0.0053763213, 0.017957048, -0.024176583, -0.03294599, 0.021896536, 0.01845623, -0.034376077, 0.01671584, -0.00865473, -0.030976245, -0.007555182, 0.012364864, -8.453203E-4, 0.0022412583, 0.010138785, -0.011939886, 0.024743222, -0.013471159, -0.031273056, 0.015177821, -0.021208474, 0.013882646, -0.015231786, -0.013268788, -0.010138785, -0.024905117, 0.004516245, 0.02077675, -0.023164727, -0.005001935, 0.009430486, 0.026335206, 0.0043678395, 0.017268987, -0.0029782257, -0.0021417593, -0.017619764, -0.02715818, -0.04001548, -0.001863499, -0.035860132, -0.020210112, 0.017660238, 0.0019714304, -0.0044116867, -0.018105455, 0.010975251, 0.0060002985, -0.0037573539, -0.015811916, -0.019346662, 0.026240766, -0.010111801, 0.006371312, 0.015299243, 0.023636926, -0.0047725816, 0.004607312, -0.022571106, -0.018793516, -0.0034537974, -0.009167404, -3.786023E-4, -0.0027741683, 0.0035954572, -0.029411243, -0.014287389, -0.011521652, -0.036561683, -6.083776E-4, 0.002851744, 0.018348299, 0.0011307476, -0.001513566, 0.014827045, -0.0013913002, 0.0034419924, 0.015784934, -0.0051233578, 0.01836179, 0.007905958, -0.010044345, 0.017376918, -0.018105455, -0.009646349, -6.121721E-4, 0.03138099, 0.0059362142, 0.005696742, -0.009336046, -0.016270624, -0.0053459657, -0.046329454, 0.009599129, -0.0019208376, -0.032028574, 0.019737912, -0.019872827, 8.95913E-5, -0.005224543, 0.0019393882, 0.0015295871, -0.020979121, 0.012445813, -0.021302914, 0.007467488, 0.0033559848, -0.04616756, -0.0145841995, -0.021275932, -0.005612421, 0.0150294155, -0.023704384, -0.007170677, 9.1235567E-4, 0.043334365, 0.027562922, 0.044602554, 0.0028180154, 0.042147122, 0.023002831, 0.010260207, 0.0332428, -0.01999425, 5.485096E-4, -0.03138099, 0.007325828, -1.1731191E-4, 0.028089087, 0.012897775, -1.4671893E-4, 0.002554933, 0.01778166, -0.0020591244, 0.02686137, -0.008364665, -0.014867519, -0.023205202, 0.010132039, -0.027846241, -0.0053763213, -0.014651656, -0.006590547, 0.0398266, -0.0047725816, -0.005983434, -0.00468826, 0.034726854, -0.011926394, 0.009970142, -0.02076326, 0.008418632, -0.024851153, 0.007892467, 0.010671695, -0.006975052, 0.007352811, -0.01110342, 0.006239771, 9.081396E-4, -0.018604636, -0.010604237, 0.023960719, -0.026443137, -0.03672358, 0.016553944, 0.013714004, -0.008506325, -0.022058433, -0.0029259466, -0.009416995, -0.0016349886, -0.0037607267, -0.010138785, 5.497744E-4, -0.026645508, -0.035698235, 0.011568872, -0.017660238, 0.041985225, 0.0097407885, 0.040231343, 0.035293493, 0.0047084973, -0.012479542, 0.02153227, -0.0104760695, -0.011852192, 0.015447649, 0.020210112, -0.013808444, -0.005157086, -0.015231786, -0.003726998, -0.02897952, -0.03343168, 0.034564957, 0.015784934, 0.016284116, -0.03391737, -0.0056259125, -0.025728093, 0.00961262, -0.009976887, -0.016081745, -0.0057540806, -0.03294599, -0.028331932, -0.006388176, 0.00413174, -0.0023407573, 0.0066478853, -0.03407927, 0.018321317, -0.026038395, 0.021788605, -0.0014722486, -0.003372849, 0.04916265, -0.012054563, 0.0029107688, 0.009875702, 0.001000893, -0.01585239, -0.0077170786, -0.001425872, 0.032514267, -0.016648384, 0.018631618, -0.014543725, 2.767844E-4, 0.015110364, 0.025728093, -0.014934976, -0.011501416, -0.0031553004, 0.0015439217, 0.03785686, 3.1409657E-4, -0.021087052, 0.015582562, -0.013032689, -0.015096872, -5.3459656E-4, 0.003929369, 0.014246915, -0.032325387, 6.378901E-4, -0.0024166463, 0.009949905, -0.0075281993, -0.020560889, -0.006857002, 0.005413423, 0.017916575, -0.02889857, 0.003821438, -0.0021856062, -0.008007144, -0.01757929, -0.011670058, -7.837658E-4, -0.009309064, 0.024567833, -0.023340115, 0.015285752, 0.008573783, 0.0021940384, -0.021761622, 0.016864246, -0.041040827, -8.811568E-4, 0.03961074, -0.0053088646, -0.0058451477, -0.0038990136, 0.0076361303, 0.01807847, -4.1717928E-4, 0.023205202, -0.018240368, 0.015690494, -0.010766135, -0.00724488, 0.008047618, -0.002013591, -0.0035920842, 0.012445813, 0.008553545, 0.0010928031, 0.0020439466, -0.04222807, 0.004981698, -0.0042362986, 0.015353209, -0.013309263, -0.009713805, 0.03486177, 0.010988742, 0.03092228, 0.034699872, -0.016486486, -0.032136507, 0.0060036713, -0.019818861, -0.014840536, -0.013208077, -0.0025245775, 0.03523953, 0.0020827344, -0.013788207, -0.021087052, 0.0014739351, -0.046707213, -0.026928827, -0.010712169, 0.015110364, 0.04174238, 0.0108133545, 0.0063072275, 0.0018483213, 0.0025684247, 0.019184766, -0.012803335, -0.0067558168, 0.010874066, 0.008236498, 0.015177821, 0.024581324, -0.05720352, -0.0036055758, 0.018820498, 0.005946333, 0.011946632, 0.013801699, -0.009619365, -0.02753594, 5.312237E-4, -0.009153913, -0.013788207, -0.004890631, 0.012540253, -0.036264874, -0.007265117, 0.021073561, 0.021424338, -0.016176185, 0.009464215, -0.0048198015, -0.012020834, -0.0010025793, 0.0015793366, -0.019306188, 0.008587274, -0.024109125, 0.03499668, 0.040636085, -6.808939E-4, 0.001989981, 0.019009378, -0.01875304, 0.010044345, -0.001195675, -0.0056191664, -0.0076563675, -0.007373048, -0.004340857, 0.03273013, -0.022692528, 0.013727495, -0.02298934, -0.0033897134, -0.011413721, -0.0013373346, -0.0012766233, 0.04069005, 0.019683948, -0.057527315, 0.009720551, -0.009720551, 0.001374436, -0.011636329, -0.003463916, -0.021316405, 0.00102113, -1.0703526E-4, 0.0067794267, -0.018213386, -0.022746494, 0.010469324, -0.009390011, -0.013896138, 0.0228949, 0.20409784, 0.0011509848, 0.016553944, 0.045061264, 0.0037877094, 0.0073460652, 0.010874066, 0.0144627765, -0.0013963595, 0.00879639, -0.0027657363, -0.0016830517, 0.0203855, 0.0076361303, 0.022840934, -0.006722088, -0.002033828, -0.01478657, -0.022058433, -0.029789003, 0.015137346, 0.011697041, -0.005214425, -0.035401423, -0.0011788107, -0.009835228, -0.007265117, 0.01281008, 0.011784734, 0.0035684742, -0.020655328, -0.018011015, -0.0095721455, 0.006229652, -0.031812713, 0.0070290174, -0.0042295526, 0.02250365, -0.0036123213, -0.0020439466, 0.012567236, -2.4558557E-4, -0.03013978, -0.018982394, 0.016108727, 0.0053291013, -0.019252222, 0.020223603, -0.021464812, 0.014314371, -0.048191268, -0.010212987, 0.0044184322, 0.006462379, 0.0031519274, -0.0017656864, 0.017430885, 0.0050120535, -0.011285553, -0.0140175605, 0.0065972926, 0.009268589, -0.015879374, 0.0065163444, -0.00480631, 0.0332428, -0.037155304, 0.0114272125, 0.024716238, -0.021856062, 0.002760677, -0.024783695, -0.010374884, 0.001855067, -0.006954815, -0.015501615, 0.0047084973, -0.013322754, 0.009855465, 0.012425576, -0.0216402, -0.01624364, 0.013302517, 6.964933E-4, -0.03032866, -0.007986907, 0.003919251, 0.0047523445, -0.0028433118, -0.01566351, -0.017174548, -0.031839695, -0.014719114, -5.1182986E-4, 0.0057979277, -0.0037303711, 0.0299509, 0.012027579, -0.020695802, -0.010671695, -0.028817622, 0.02976202, 0.029815985, -0.0059429603, -0.02135688, 9.384953E-4, 0.0067018513, 0.028547794, 0.020398991, -0.01883399, -0.0119938515, -0.024675764, -0.0026038394, -0.010577255, 0.010853828, 0.011150639, -0.02270602, -0.010550272, 0.031758748, -0.009443978, 0.0016080058, -0.015123855, 0.025822533, 0.012884283, -0.013012452, -0.016742824, -0.040824965, 0.0015270574, 0.009234861, -0.028871588, -5.826597E-4, -0.025728093, -3.6574333E-4, 0.0017066617, 0.006233025, -0.010071327, 0.017174548, 0.001743763, 0.0078250095, -0.010637966, 0.007912704, -0.008506325, 0.0013457668, 0.018955411, 0.0046815146, -0.019967267, 0.018091962, -0.013896138, -0.005207679, -0.009727296, -0.03024771, -0.02648361, 0.018577652, 0.0047827, 0.019656964, 0.009194386, -0.025579687, -0.04881187, -0.0016434207, 0.02154576, -0.05051179, 0.02957314, 0.022449683, -0.014867519, -0.029438227, -0.002033828, -0.17204228, 0.021141019, 0.03364754, -0.039367896, 0.025161454, -0.012567236, 0.031839695, -0.0024959084, -0.015393683, -0.0012985469, 0.024419427, -4.186549E-4, -0.039961517, 0.0036460499, 0.0033812812, 0.023960719, -0.02231477, 0.045924712, 0.024055159, 0.013896138, 0.034376077, -0.01072566, -0.0017488223, -0.010233224, 0.010374884, -0.0061318395, 0.025957447, -0.0026780423, -0.014044544, -0.0076361303, -0.024999557, -0.0050660195, 0.015191312, -0.010658203, 0.003952979, 0.002689847, -0.030301675, -0.006300482, 0.005403304, -0.004512872, 0.0348078, 0.021505285, 0.025768567, -0.005497744, -2.7889246E-4, 0.043172467, 0.042983588, -0.015326226, 0.0050660195, -0.0029984629, -0.00719766, -0.026240766, 0.006415159, -0.011562127, -0.01086732, 0.019063342, -0.007305591, 0.0031721646, 5.8982696E-4, 0.0022733002, -0.044386692, -0.021194983, 0.023178218, -0.006233025, -0.008647985, -0.02259809, 0.004266654, 0.0046005663, -0.02638917, 0.0066276486, -0.0071841683, 0.024473393, 0.019400628, 0.0012243442, -0.0015894552, -0.014894501, -0.023893263, 0.002514459, 0.0029613615, 0.022652054, -0.012229951, 0.030193744, 0.0110899275, -0.0034453652, 0.01575795, -0.020075198, 0.03267616, -0.012769607, 0.011110165, -0.01691821, -0.007899213, -0.025161454, -0.03594108, -2.0479519E-4, -0.0049513425, 0.008465851, 0.016864246, 0.013309263, 0.0051773232, -0.036588665, -0.0045938203, -0.009012253, -0.015353209, 0.019373644, 0.039313927, 0.018860972, -0.0037438625, 0.013727495, -0.002725262, 0.0020253959, -0.008108329, 0.012155748, 0.032406334, 0.0034487383, -0.032244436, 0.024001194, 8.3646656E-4, -0.029438227, 0.011508161, -0.0010135411, 0.053857654, 0.0064488873, 0.019090327, -0.018145928, -0.0078115184, -0.009646349, -0.09055425, -0.0018584399, 0.01739041, 0.024851153, -0.0091741495, 0.043253418, -0.014260406, 0.002221021, -0.02106007, 0.015677003, 0.0036696598, -0.015609546, 0.02192352, 0.0061318395, 0.015501615, 0.014813554, -0.0027741683, -0.016675366, -0.01038163, 0.014934976, -0.0100173615, 0.0027792277, -6.0036714E-4, -0.03634582, -0.0057776906, 0.008863848, -0.017525325, -0.004337484, -0.013039434, 0.01710709, -0.0013769657, -0.0084995795, 0.020641835, -0.040474188, -0.012337882, -0.012796589, -0.045924712, -0.014894501, 0.0059294687, -0.048380148, -0.0013170976, 0.010624475, 0.0084995795, -0.023798823, -0.022058433, -0.0048164283, -0.018995887, 0.022733003, 0.0064691245, -0.025957447, 0.006749071, -0.014773079, -0.019859334, -0.022530632, 0.02841288, 0.029303312, 0.019845843, 0.0051975604, -0.025093997, -0.024109125, 0.002963048, -0.011555381, -0.018011015, 0.013032689, 0.0074472507, 0.0028213882, 0.006553446, -1.791826E-5, 0.014934976, -0.0043948223, -0.02965409, 0.019589508, -0.024689255, -0.013383465, -0.017268987, -0.0060677556, -0.03650772, -0.0257146, 0.05207679, -0.033782456, -0.007615893, -0.022071924, 0.016270624, -0.024864644, 0.015865883, 0.016108727, 0.011751006, 0.011757752, -0.0076293848, -0.019832352, -0.020790242, 0.03170478, -0.0037135067, -0.008661476, 0.0075889104, 0.011663312, -0.014638165, 0.018132437, -0.007872229, -0.007548436, -0.02018313, -0.011278807, -0.069129914, 0.030382624, -0.016594417, -0.012877538, -0.00947096, 7.179952E-4, 0.01575795, -0.0046815146, -0.017741187, 0.009390011, 0.0013314321, 0.01941412, 0.0034268147, 0.01555558, -0.01478657, -0.024028176, -0.009653094, -0.008047618, -0.0073190825, 0.010084819, -0.0178761, 0.011831954, 0.01343743, 3.0292402E-4, 0.018388772, 0.013100145, -0.0058957404, 0.011514907, 0.0016678738, -0.0077642985, 0.016945194, -0.024581324, -0.016081745, 9.604715E-6, -0.008472597, -0.0049479697, -0.010610983, 0.011629583, 0.03197461, 0.023448046, -0.0067625623, -0.026739947, -0.003865285, -0.0024402563, 0.0014773079, -0.0023458165, -0.025498739, 0.014746096, 0.013369974, 0.007265117, 0.025067015, 0.0064016674, -0.007838502, -0.024959084, 0.011777989, -0.011440704, 0.047678594, -0.0088368645, -0.0023019696, -0.022260804, 0.03294599, 0.019549033, 0.011609347, -0.007305591, 0.023124253, 0.015218295, 0.0038821492, -0.013606073, 0.0053965584, -0.031542886, -0.027387535, -0.01353187, 0.008647985, 0.021963993, 0.03210952, 0.0105840005, 0.007265117, 0.0044521606, 0.019751403, 0.009814991, 0.020749768, -0.0016265565, -0.02000774, 0.015299243, 2.124895E-4, 0.022247313, -0.0071099657, 0.0056394036, 0.0035583558, 0.025674127, 0.015582562, 0.017039634, 0.017161056, 0.0024183327, -0.0032008337, 0.0029967765, -0.023947228, -0.0076766047, 0.0082702255, 0.029708054, -0.015798425, -0.011683549, -0.033377714, -0.033107888, -0.011042708, 0.005784436, -0.011312536, -0.033998318, 0.011589109, 0.010509797, 0.04514221, 0.010374884, 0.0046713958, 0.0045432276, -0.024594815, 0.015784934, -0.015150838, -0.01362631, -0.024810677, 0.037560046, 0.015312735, -0.008135312, 0.04476445, 0.016446011, 0.01488101, 0.0043442296, 0.006708597, -0.025876498, -0.009720551, -0.019252222, 0.014192949, 0.013923121, -0.027023267, 0.021114035, -0.027077232, -0.012938249, 0.027401026, 0.038396515, -0.027765293, 0.0645968, 0.023893263, -0.019022869, 0.032892022, -0.011521652, -0.0067625623, 0.011474432, 0.0028028376, -0.02000774, -0.0040170634, 0.02192352, 0.0063139736, 0.01923873, -0.02908745, -0.0038281837, -0.009012253, 0.0027876596, 0.016324589, -0.01730946, -0.007872229, 0.009646349, 0.003797828, 0.0050120535, 0.0057675717, -0.0012943308, -0.0039867074, 0.034942716, -0.006948069, -0.0042160614, -0.023758348, -0.0315159, -0.020304551, -0.0010430536, -0.006280245, 0.038342547, 0.0011113537, 0.008088092, 0.0056056753, 0.0037438625, -0.002323893, -0.020925155, 0.0030338778, -0.005743962, -0.0074000307, 0.022368735, 0.0032834685, -0.017768169, -0.015096872, -0.020169638 ], + "id" : "4db35ed2-f61f-4e96-86af-447f25a8626e", + "metadata" : { + "source" : "movies.csv" + } + }, + "5760bdbe-fde7-4b0d-9d18-73483747c557" : { + "text" : "Levin-Dan Madsen-Iain McCaig-Rick McCallum-Jo��o Costa Menezes-Taylor Murphy-Lorne Peterson-Andrew Raven-Robby the Robot-Steve Sansweet-Mike Savva-Christopher Scarabosio-Jeff Shay-Christian Simpson-Paul Martin Smith-Scott Squires-Tom Sylla-Bill Tlusty-Matthew Wood-Jeff Olson-Michael Dondero,prophecy-senate-queen-taskmaster-galaxy-apprentice-taxes-space opera,/6wkfovpn7Eq8dYNKaG5PY3q2oq6.jpg,/wDe8LzwuvHYYiuwyNfxdYQq8ti4.jpg,1894-1895-1892-1891-11-140607-330459-181808-12180-87-558-89-85-217-557-121-285-348350-36657-58-36658\r\n329,Jurassic Park,Adventure-Science Fiction,en,A wealthy entrepreneur secretly creates a theme park featuring living dinosaurs drawn from prehistoric DNA. Before opening day he invites a team of experts and his two eager grandchildren to experience the park and help calm anxious investors. However the park is anything but amusing as the security systems go off-line and the dinosaurs escape.,30.184,Universal Pictures-Amblin Entertainment,6/11/93,63000000,920100000,127,Released,An adventure 65 million years in the making.,7.944,15357,Sam Neill-Laura Dern-Jeff Goldblum-Richard Attenborough-Bob Peck-Wayne Knight-Ariana Richards-Joseph Mazzello-Martin Ferrero-Samuel L. Jackson-BD Wong-Gerald R. Molen-Miguel Sandoval-Cameron Thor-Christopher John Fields-Whit Hertford-Dean Cundey-Jophery C. Brown-Tom Mishler-Greg Burson-Adrian Escober-Richard Kiley-Brad M. Bucklin-Laura Burnett-Michael Lantieri-Gary Rodriguez-Lata Ryan-Brian Smrz-Rip Lee Walker-Robert 'Bobby Z' Zajonc,exotic island-island-triceratops-brontosaurus-electric fence-dna-tyrannosaurus rex-paleontology-dinosaur-amusement park-theme park,/oU7Oq2kFAAlGqbU4VoAE36g4hoI.jpg,/79bJL9ydAMYVltuNTt4VhxORqIz.jpg,330-331-85-607-105-89-601-135397-280-165-87-1891-8587-857-218-557-22-98-862-558-602\r\n424694,Bohemian Rhapsody,Music-Drama,en,Singer Freddie Mercury guitarist Brian May drummer Roger Taylor and bass guitarist John Deacon take the music world by storm when they form the rock 'n' roll band Queen in 1970. Hit songs become instant classics. When Mercury's increasingly wild lifestyle starts to spiral out of control Queen soon faces its greatest challenge yet ��� finding a way to keep the band together amid the success and excess.,55.063,20th Century Fox-Regency Enterprises-GK Films-TSG Entertainment,10/24/18,52000000,910800000,135,Released,Fearless lives forever,7.", + "embedding" : [ 0.012468613, -0.044608876, -0.026422389, -0.042961698, -0.021372836, 0.03807416, -0.007493319, -0.013737752, -0.022182925, -0.018186487, 0.007830856, 0.033888705, 0.021534855, -0.0032352912, 0.0043778536, 0.018064974, 0.02057625, -0.009734564, 0.0060689133, -0.012502367, -0.0054107164, -0.0054377196, -0.0054748487, 3.9090993E-4, 0.01674183, 0.023951618, 0.016039753, -0.0029551357, -0.0083371615, 0.013278701, 0.012529369, 0.0031542822, -0.0033922459, -0.016201772, -0.024262153, -0.0051913173, 0.0064705824, -0.010348882, 0.038101166, -0.00923501, 0.00580901, 0.024545683, -0.012036566, -0.011003703, -0.024208147, 0.0032673571, 0.015324175, -0.01693085, -0.0064705824, 0.022736486, 0.03256556, 0.035454877, -0.03245755, -0.02030622, 0.0019712155, -0.018456517, -0.014338568, 0.0029939523, 0.012205334, -4.594721E-4, 0.010672917, -0.006841873, -0.017538417, -0.016107261, -0.0053735874, -0.008303408, 0.007830856, -0.007452815, 0.0033686182, 0.0044588624, 0.015297173, 0.011273732, 0.014892128, 0.0045162435, 0.030945383, -0.036345974, -0.013278701, 7.70428E-4, -0.0062241806, 0.003540762, 0.0076418356, -0.0026969197, -0.025085742, -0.003032769, 0.0091607515, -0.004755895, -0.018280998, 0.024302656, -0.012029815, 0.013211194, 0.004090947, 0.043771785, -0.01180704, -0.0016159579, 0.0058225114, 0.036372975, -0.0192126, 0.020022688, -0.0015999249, -0.037507102, 0.0074798176, -0.0022901879, -0.015432187, -0.019928178, -0.007986123, -0.00608579, 0.0062714354, -0.0025146499, 0.013920021, -0.0020741643, 0.0146491015, -0.0019931553, 0.004327223, -0.043420747, -0.0038951759, -0.032403544, 0.01042314, -0.027732031, -0.0048234025, -0.017335895, 0.0411795, 0.023263043, 0.021561857, -0.031890485, 0.03172847, 0.035373867, -0.006315315, -5.944869E-4, 0.005954151, 0.0043204725, 0.013487974, -0.009403778, 0.019901175, 0.021737376, -0.022925505, 0.03318663, -0.022939008, -4.1158404E-4, -0.020751769, -0.0121378265, 0.021669868, 0.018497022, -0.029487224, -0.015702216, -0.02424865, 0.013319206, 0.0025703434, 0.009761567, 0.020076694, -9.189442E-4, 0.019091086, 0.010369133, 0.0128196515, 0.02515325, 0.027137967, -0.015958745, 0.0010050162, 0.0014083727, -0.018280998, -0.026098354, 7.9363363E-4, 6.6494767E-4, -0.0037432841, -0.011226477, 0.0070747733, 0.024478177, 0.033375647, -0.006787867, 0.0053904643, 0.0066798553, -0.022830997, 0.027475504, -0.037453093, 0.011651774, -0.011206225, 0.028488114, -0.004354226, -0.012104074, -0.034968823, -0.00997759, 0.018348506, 0.0090527395, 0.01629628, 0.047714215, 0.0018446392, 0.0016724954, 0.025099244, -0.017268388, 0.009856078, -0.0056132386, 0.011368243, 0.010490647, 0.0016505554, -0.0054005906, -0.63986194, -0.01591824, 0.008870469, -0.012542871, 0.015405184, 0.036291968, 0.01024087, -0.011874548, -0.028974168, -0.013157188, -0.035157844, 0.0026294123, 0.025855327, -0.010942946, -0.013089681, -0.018902067, 0.012576625, -0.03807416, 0.024127137, 0.005994655, -0.034644786, 0.030000279, 0.017727438, -0.0025045238, 0.004766021, 0.024167642, -0.01180704, -0.00416183, 0.020657258, -0.012144578, -0.03164746, 0.008357414, 9.9489E-4, -0.006241057, 0.036643006, 0.0020100323, -0.018051473, 0.0466611, 0.01702536, 0.039316297, -0.01490563, -0.023276545, 0.007972621, 0.0051440625, -0.006423327, 0.018726546, 8.316065E-4, 0.011645023, 0.008499179, -0.011645023, -0.013150438, -0.0023458814, -3.5942405E-5, 0.001134124, -0.007358304, 0.005974403, 0.016593315, -0.03521185, 0.022533963, 8.1599545E-4, -0.026921943, 0.014581594, 0.0035340113, 0.025180252, -0.005677371, 0.023992123, 0.011543762, -0.019509632, 0.0028218084, -0.05249374, 0.01674183, 0.0067372364, -0.002593971, -0.016080258, 0.0021686745, 0.0019560263, 0.034644786, 0.008053631, -0.0018041347, 0.024302656, 0.001690216, -0.009457784, -0.008647695, 0.018118981, 0.030027283, -0.0037432841, -0.041935585, -2.0420982E-4, 0.018132482, -0.00932952, 0.015756221, 0.015594205, 0.0031272795, 0.012887158, -0.0127116395, -0.012934414, -0.00653809, -0.0041010734, 0.038452204, -0.07279996, -0.006804744, -0.014014532, 0.029946273, -0.012212085, 0.021143312, 0.0031627207, -0.0033078615, -0.0022766865, 0.026854435, -0.0032606064, -0.016458299, -0.0012573249, -0.005451221, 0.008033378, -0.0066427262, -0.029784257, 0.02333055, 0.0074865683, -0.009869579, -0.0037095305, 0.010362383, 0.0026378508, 0.0073313015, -0.019374618, 0.0044723637, 0.017173877, -0.009802071, -0.010564905, 0.016498804, 0.023938118, 0.0072030374, -5.151657E-4, 0.03639998, -0.0059068957, 0.0036487738, 0.008613941, 0.014716608, -0.004333974, 0.014163048, -0.007270545, -0.021872392, -0.019158594, -0.007209788, -0.0028167453, -0.016053256, -0.016728329, -0.02250696, -0.0029382587, -0.004509493, -0.01995518, -0.012002812, 0.014028033, 0.0076620877, 0.013406966, -0.0015222915, 0.0039728093, -0.033618674, -0.019266605, -0.0048605315, -0.023222538, 0.018497022, 0.015661713, -0.02296601, -0.048902348, 0.00933627, -0.010051848, -0.012448361, 0.002808307, 0.004766021, -0.02223693, 0.0073245508, -0.009707561, -8.9953584E-4, 0.008235901, -0.024559185, 0.0013231447, -0.0048099007, 0.011604519, 4.4301717E-4, -0.01490563, -0.009997843, -1.0321246E-4, -0.016228775, -0.004631006, 0.026368383, 0.013879517, 0.01995518, -0.0028690635, -0.0035745157, 0.017484412, -0.0061600483, 1.1592283E-4, -0.00352051, -0.012968168, 0.0069026295, 0.005360086, -0.0024792086, 0.011915052, -0.010841685, 0.0027188598, 0.030351318, 0.027516007, 0.019644648, -0.016309783, 0.008377666, -0.02222343, 0.015337677, -0.038290184, 0.011773287, 0.013022173, 0.016390791, -0.01363649, -0.011665275, -0.007830856, 3.2023812E-4, 0.015324175, -0.017376399, 0.007783601, -0.025760816, 0.014176549, 0.011854296, 0.0039120526, 0.03237654, 0.011854296, -0.028569123, 0.016161267, 0.013420467, -0.016242275, -0.007844358, -0.0021332332, -0.0137850065, 0.007986123, -0.015769724, 7.767568E-4, 6.1980216E-4, 0.010747175, 0.009869579, -0.016674323, 0.036345974, -0.009032487, -0.0037500348, 0.016404293, 0.019226102, 0.0066427262, 0.011739533, -0.011847545, 0.011496507, 0.008620692, -0.026314376, 0.034617785, -0.018632038, 0.01637729, -0.009667057, 0.0018530776, -0.0035002576, -0.016714828, 0.014770615, 0.0058225114, 0.027083961, 0.007452815, 0.0057212505, -0.013332708, 0.014068538, -0.0016978106, 0.010558154, -0.0028066193, -0.008154891, -0.0011754723, 0.016107261, -0.034266748, -0.028839152, -6.290844E-4, 0.0024218273, 8.0840086E-4, -0.0013121747, -0.016080258, -0.007581079, 0.022898503, -0.00695326, 0.024397166, 0.003311237, -0.027678026, 0.016620317, 0.034320753, -0.013974028, -0.018132482, -0.00704102, -0.01490563, -0.021939898, -0.009066241, -0.005677371, 0.030621348, -0.027340489, 0.01590474, -0.012110824, -0.005471473, 0.023587078, -0.01710637, 0.005640242, -0.0029737002, -0.010092353, 0.019712156, 0.0043204725, -0.0152566675, 0.021426842, -0.024127137, -0.0021112934, -0.008539683, -0.0015130092, -5.0799304E-4, -0.0019492756, 0.014365571, -0.027786037, 0.007034269, -0.013920021, -0.0155807035, 0.002690169, -0.0010058599, -0.007932117, -0.013339458, -0.015607706, -0.019968683, -0.024356663, -0.0028336223, 0.07571628, 0.045526978, 0.014743612, 0.02057625, -0.0046343817, 0.0102746235, -0.027948055, -0.022020908, -0.0029888893, -0.008904223, 0.013562232, 0.020468237, 0.013737752, 0.018362008, 0.011226477, -0.016026251, -0.0027458626, 0.0025551543, -0.006933008, -0.022722984, -0.031701464, -0.003145844, 0.022709483, 0.03310562, 0.0104163885, -0.022385446, 0.021615863, 0.0128196515, 0.004725517, 0.009018986, 0.008985233, 0.010517649, 0.0036386477, 0.005454596, 0.006001406, -0.0022378697, 0.030756362, 0.0051373118, 0.04063944, 0.0034867562, 0.0030293937, 0.020562747, 0.009491538, -0.012360601, 0.02588233, -0.01747091, -0.011543762, 0.017632928, 0.01765993, -0.04063944, 0.011354742, 0.0032167267, -0.020144202, -0.009835825, 0.010834934, -0.0013847451, -0.0010142984, -0.0078713605, -0.009862828, 0.0031964744, 0.0025095867, -0.043123715, 0.016404293, -0.005397215, 0.0014725047, -4.337349E-4, -0.018267497, 0.010821433, -0.016309783, 0.0053735874, 0.0037905395, -0.026867937, -0.0053735874, -0.005397215, 0.024748206, -0.0052351975, 0.02434316, 0.004739018, 0.023519572, 0.021818385, -0.02551779, -0.02296601, 0.008397918, -0.032160517, -0.0070545212, 0.008816464, -0.003787164, 0.02185889, 6.210679E-4, 0.019590642, 0.0038985512, -0.0041955835, -0.0026294123, -0.014379072, 0.026206365, -0.0035711403, 0.012158079, 0.020333223, 0.010119356, -5.9617456E-4, 0.005606488, -0.0384252, -0.01490563, -0.010551403, -0.010436641, 0.00795912, 0.0011636585, 0.013015423, -0.016903847, -0.03372669, -0.021467347, -0.02067076, -0.004182082, 0.0040436923, 0.011948806, -0.008404668, 0.022817494, 0.00212817, 0.009120247, 3.4597534E-4, 0.015864234, -0.023924615, 0.02754301, 0.018740049, -0.010726922, 0.025355771, -0.017673433, -0.034860812, -0.010443391, 0.020441234, -0.00149782, 0.034347754, -0.00841817, -0.0012505742, -0.012725141, -0.016701326, 0.0030563967, 0.0023036893, 5.619989E-4, 0.015189161, -0.02973025, 0.011179222, 0.0101666115, 0.0057280012, -0.0058697667, -0.030378321, 0.012482114, -0.018321503, -0.0013273639, 0.023398058, -0.030243305, 0.009322769, -0.017524917, 0.0014471895, 0.0053837136, -0.03129642, -0.016795836, -0.002118044, 0.021345833, 0.0036386477, 0.048632316, -0.0016556185, 0.018037971, 0.012590126, 0.02781304, 0.011894801, -0.01718738, -0.003976185, -0.027016453, -0.011510008, -0.0027559889, 0.010146359, 0.010517649, 0.004202334, -0.00580901, 0.030567342, 0.004327223, 0.012185082, -0.0046343817, -0.03126942, -0.034644786, 0.015027143, -0.032511555, -0.0074393135, -0.017862452, -0.0019745908, 0.04455487, 0.0057145, -0.00695326, -0.004786273, 0.023749096, -0.018510524, 0.01325845, -0.02497773, 0.02040073, -0.027705029, -2.3015797E-4, -0.032538556, -0.017362898, 0.0016404294, -0.0024623317, 0.019617645, 0.0065718433, -0.004627631, -0.003417561, 0.0219534, -0.017335895, -0.025396276, 0.030297313, -0.009241761, -0.023857107, -0.017457409, 0.005174441, -0.022722984, -0.005289203, 0.004631006, -0.0017433781, 0.0070140166, -0.019820167, -0.044203833, 0.039532322, -9.03755E-4, 0.046499085, 0.012799399, 0.044392854, 0.025733814, 0.011172472, -0.015958745, 0.012590126, -0.009869579, -0.00850593, 0.028839152, 0.030486332, -0.02168337, -0.0018328254, -3.058928E-4, -0.020441234, -0.052898783, -0.035049833, 0.025558295, 0.002455581, 0.010382635, -0.0044892407, -0.00430022, -0.02589583, 0.015297173, -0.010436641, -0.007284046, 0.0027576764, -0.03402372, -0.0104163885, 3.9934836E-4, -0.011199474, 0.016971355, 0.006045286, -0.029217195, 0.016336786, -0.007419061, -0.0061870515, -0.0010843372, -0.022763489, 0.04050443, -0.008276405, 0.01765993, 0.004013314, 0.006987014, -7.130467E-4, 0.003631897, 8.4974914E-4, 0.0338617, -0.012056818, 0.026692418, 9.9489E-4, -0.003922179, -0.0076148324, 0.0019712155, -0.009316019, -0.0059102713, -0.017160377, 3.1517507E-4, 0.017862452, 0.0010404575, -0.01590474, 0.0019830293, -0.014028033, 0.0010531151, 0.024302656, -0.0012682949, 0.008019877, -0.03604894, 0.028461112, 0.0021382961, 0.005248699, -0.011840794, -6.645258E-4, 5.755004E-4, -0.0265169, 0.0028336223, 0.001069992, 0.008539683, -0.013771505, -0.016809337, -0.026962448, -0.021426842, -0.01427106, 2.748816E-4, -0.0013189254, -0.018051473, -0.0019425248, 0.0028150578, -8.29075E-4, 0.002894379, -0.008391167, -0.021048801, 0.004728892, 0.02725948, -0.011523509, 0.009903332, -0.013163939, 0.034968823, 0.016026251, -0.0046411324, 0.0017821948, 0.010780929, 0.017376399, -0.013987529, 0.0019644648, -0.003567765, -0.037210066, -0.0064267027, 0.0054107164, 0.03329464, 0.02369509, -0.010841685, -0.03421274, -0.005025924, -0.009835825, 0.016093759, -0.007243542, -0.0072502927, 0.02762402, 0.020265715, 0.032943603, 0.020522244, -0.010659415, -0.036291968, 0.0017028736, -0.009667057, -0.020792274, -0.012090572, -0.0052757016, 0.016080258, -0.0021990528, -0.010369133, -0.026881438, 0.0037635365, -0.0142170545, -0.020616753, 0.008073882, 0.0011383432, 0.04811926, 0.011550513, 0.0075945803, 0.016242275, 0.0033821198, 0.015769724, 2.7952273E-4, 0.0014117481, 0.020103697, 0.0067642396, 0.015067647, 0.023263043, -0.025720311, -0.010915943, 0.012239088, 0.008303408, 0.01545919, 0.015621208, -0.018632038, 0.0046985135, 0.0048706573, 0.0059777787, 0.0036285217, -0.0058866437, 0.036616, -0.023114527, -0.005194693, -0.0011256855, 0.0070005152, -0.0014893815, 0.006824996, 0.008971731, -0.008742206, 0.0124618625, 0.0025602174, -0.02260147, 0.019779662, -0.0265169, 0.039667338, 0.00521157, 0.0073245508, 0.019536635, 0.02919019, -0.018497022, 0.008040129, -0.01655281, 0.0119218035, -0.033051614, -0.012239088, 0.0026024096, 0.031242415, -0.020967793, 0.020873282, -0.019064084, 0.002914631, -0.0036622754, 0.01198931, -0.018861562, 0.0256258, 0.0026294123, -0.054653976, 5.1305606E-4, -0.01929361, -0.009883081, -0.0019847169, -1.654722E-5, -0.014068538, -0.0058596404, -0.015445689, 0.012326848, -0.02919019, -0.0228715, 0.008937977, -0.009640054, -0.018429514, 0.012799399, 0.19096488, -0.0155807035, -0.007925366, 0.04517594, 0.017592423, 0.019793164, 0.028002061, 0.013373212, -0.013947025, 0.0103083765, 0.005994655, 0.01473011, 0.009228258, 0.0076890904, 0.028893158, -0.014203553, -0.008843467, -0.036102947, -0.030027283, -0.016107261, 0.0055389805, -0.0028707513, -0.009586048, -0.012974919, 0.0045297453, 0.010888941, -0.012448361, 0.008715203, 0.016404293, 0.014298063, -0.020387229, -0.00603516, 0.0035610143, 0.0067541134, -0.023830105, -1.0885565E-4, -0.0048807836, 0.0054377196, 0.005157564, 0.010051848, 0.016471801, 0.004668135, 1.2098588E-4, -0.009086493, -0.0026344755, 0.0011121841, -0.027340489, -0.009363273, -0.033159625, 0.0021906146, -0.04647208, -0.0011839106, 0.0016075195, 0.021345833, 0.014406075, -0.01290066, 0.0025045238, 0.0025804695, -0.007081524, -0.008499179, 4.3668837E-4, 0.03245755, -0.026489897, 0.0060149077, 0.0052081943, 0.00859369, -0.029514227, 0.006291688, 0.017254887, -0.031107401, -0.014784116, -0.03758811, -0.018956073, 0.010936196, -0.012421357, -0.027380994, -0.005528854, 0.004988795, 0.017983966, 0.006328817, -0.021035299, 0.004273217, -0.0028910036, -0.012502367, -0.011739533, -0.035265855, 0.037264075, -0.017956963, -0.004782898, -0.012536121, -0.011023955, -0.02553129, -0.020117199, -0.008762458, -0.003296048, 0.00877596, 0.01290066, 0.017133374, -0.015931742, -0.0014792555, -0.036426984, 0.025288265, 0.01363649, -0.0065279636, -0.024586188, -0.017808447, -0.010956448, 0.0063558198, 0.03372669, -0.026759926, -0.025544792, -0.0041415775, 0.011894801, -0.01482462, 0.008526182, 0.024626693, -0.008559936, -0.012455111, 0.032214522, -0.011233228, -0.014568092, -0.023411559, 0.00923501, -0.018794054, -0.0032403541, -0.03861422, -0.023384556, 0.017362898, 0.0016117387, -0.04096348, 0.005829262, -0.018037971, 0.010220617, -0.0027154842, -0.0020252215, 0.002315503, 0.023128029, -0.009430781, 0.005836013, -0.0045972527, -0.014514087, 0.0040200646, -7.64732E-5, 0.0017585673, 0.013116684, -0.029865265, 0.0069465092, -0.0041584545, -0.0046613845, -0.020198207, -0.011334489, 0.012529369, -0.007756598, 0.004408232, 0.031539448, 7.349866E-4, -0.022641975, -0.03831719, -0.021669868, 0.013852514, -0.041017484, 0.01995518, 0.0011214664, -0.02094079, -0.02624687, -0.0027897425, -0.17271088, 0.010409638, 0.021021798, -0.025477285, 0.025031736, 0.015405184, 0.032889597, 0.01590474, 0.0024724577, -0.016849842, 0.01911809, 1.5748206E-4, -0.046526086, -0.009808823, 0.008364164, 0.015486193, -0.009653555, 0.029352209, 0.026044346, -0.0040841964, 0.026300875, -0.0037702871, -0.013143687, 0.006575219, 0.018888565, 0.01161802, 0.018159484, 7.6241145E-4, 0.0040031876, -0.012421357, -0.037399087, -0.0034968823, 0.0015357928, -0.0135352295, -0.012934414, 6.444845E-5, 0.006835122, -0.0127116395, -0.0071220286, -0.0055929865, 0.021899395, 0.019496132, 0.029109182, 0.007243542, 0.027286483, 0.014244057, 0.029217195, -0.019536635, 6.147391E-4, -0.010537902, -0.0082291495, -0.036534995, 0.032916598, -0.0060250335, 0.0048504053, 0.016485302, -0.0037905395, -3.1011202E-4, 0.0062140543, 0.011381744, -0.034644786, -0.021116309, 0.02122432, -0.0020961042, -0.010463644, -0.02296601, -0.023938118, 0.01718738, -0.042502645, 0.008836716, -0.0059474004, -8.316065E-4, 0.026827432, 0.018780554, -0.0014750363, -0.015148656, -0.024775209, 0.0075338236, -0.009282265, 0.003706155, -0.0023610706, 0.04474389, -0.004144953, 0.012515868, 0.012488865, -0.022115417, 0.011969059, 6.957479E-4, 0.0068756267, -0.009397027, 0.0055491067, -0.010686418, -0.050090477, 0.0060250335, 0.0054208427, 0.017740939, -0.010477145, 0.018969573, 0.002026909, -0.011847545, 1.2457221E-4, -0.0011012141, -0.0265169, 0.01728189, 0.021440344, 0.010402887, 0.0053904643, 0.025288265, 0.025922833, 0.0155807035, 0.0014674417, 0.014527588, 0.017740939, 0.03194449, -0.030324316, -0.0018581406, -0.0053837136, -0.023384556, 0.01427106, 0.044527866, 0.0448249, -0.0011164033, 0.010099104, -0.007675589, -0.0021703623, -0.0142170545, -0.09310618, 0.0066427262, 0.018078476, 0.036967043, -0.024748206, 0.034239743, -0.012387604, 0.02076527, -0.033078615, 0.027043456, 0.01628278, -0.03091838, 0.015486193, -0.012563123, 0.0023948243, -0.009012235, -0.0070477705, -0.013676995, -0.026044346, 0.018402511, 0.009653555, 0.005076555, 0.015877735, -0.0089447275, -0.016228775, 0.005252074, -0.038209178, 0.024667196, 0.0047423933, 0.0023441939, 0.0038985512, -0.016701326, 0.006457081, -0.030999389, -0.038182173, -0.015189161, -0.020198207, -0.028704138, 0.019752659, -0.037750125, 0.009761567, 0.009525292, 0.003311237, -0.023708591, -0.0031424686, -0.004691763, -0.028029064, 0.026354881, -0.026287373, -0.027299983, -0.014473583, -0.01564821, -0.020535745, 0.010807931, 0.01819999, 0.0010252683, 0.036616, 0.017794946, -0.015175659, -0.025369273, -0.005160939, 0.00951854, -0.014946134, 0.0042495895, -0.0075135715, 0.003996437, 0.0036251463, -0.016363788, 0.022074914, -0.024100134, -0.003577891, 0.026867937, -0.03172847, -0.020265715, -0.029865265, 0.007263794, -0.031971496, -0.01381201, 0.03448277, -0.03742609, -0.0048267776, -0.025571795, 0.01903708, -0.021899395, 0.029352209, 0.02415414, 0.0058191363, 0.011145469, 0.00932952, -0.03259256, 0.0028336223, 0.018618535, 0.003306174, -0.0038276685, -0.009322769, 0.018443016, 0.005086681, -0.0018159485, -0.0019678401, 0.0061532976, -0.0016024564, -0.012880408, -0.080090754, 0.023249542, -0.019455627, -0.025652803, 0.0034800053, -0.006824996, -0.007992874, -0.007284046, 0.0024522056, 0.0070882747, -0.015324175, 0.015391682, 0.0051474376, -0.013609488, -0.019793164, 0.012009563, 0.0098425755, 8.0713513E-4, 0.007938867, -0.0030614596, -0.007371806, 0.008904223, 0.030486332, 0.0010607097, 0.0124618625, 0.012029815, 0.011320988, 0.009572546, -0.021656368, -0.020562747, 0.038641226, -0.017362898, -0.0026783552, 0.0030243306, -0.013521728, -0.034104727, -0.008107636, 0.002006657, 0.00299564, 0.010234118, 1.6454924E-4, -0.039532322, -0.007506821, -0.013163939, -0.021534855, 0.011327738, -0.024032626, 0.01024762, 0.0057212505, 0.010915943, 0.012158079, 0.017430406, -0.010720172, -0.009390277, 0.009903332, -0.002268248, 0.027218975, 0.012698138, 0.008134639, -0.015796727, 0.022803992, -0.0033179878, 0.03126942, -0.026651913, -0.007709343, -0.009208007, 0.0059879045, -0.0035475127, -0.0042833434, -0.021035299, -0.0256123, -0.010220617, 0.0064267027, 0.039208286, 0.009370024, 0.0072772955, -6.7001075E-4, 0.015499694, -0.0058393884, 0.007749847, 0.029379211, -0.00649421, -0.026476394, 0.030297313, 0.014352069, 0.017308893, 4.7381743E-4, 0.023452064, -2.0558106E-4, 0.025868827, -0.008154891, 0.020873282, 0.01819999, 0.0043609766, -0.012954666, 0.014662603, -0.024451174, -0.018010968, -0.014163048, 0.022533963, 0.003567765, 0.0012885471, 5.898457E-4, -0.019820167, -0.016863344, -0.011955557, -0.016998358, -0.021291828, 0.010659415, 0.018267497, 0.014392573, 0.029055176, -0.013866016, 0.0038310438, -0.025679808, -0.010679668, -0.0018733297, -0.010834934, -0.024667196, 0.028623128, 0.016336786, 0.0072502927, 0.052682757, -0.002342506, 0.060216583, 0.016215272, 0.014851623, -0.023843607, -0.0046883877, 0.0022716234, -0.012043317, -0.010045098, -0.022182925, 0.003952557, -8.273873E-4, 0.005022549, 0.004290094, 0.025085742, -0.024275653, 0.0740961, 0.0013805259, -0.010578406, 0.034752797, -0.029217195, 0.009687309, 0.018118981, 0.008195396, -0.008532933, -0.015337677, 0.012907411, -0.005454596, 0.015378181, -0.029784257, 0.0053870887, -0.009086493, 0.015418686, 0.02919019, -0.030000279, -0.02964924, -0.016390791, 0.0011737846, 0.028434109, -0.0049449154, -0.012482114, -0.011361492, 0.016633818, -0.018145984, -0.005788758, -0.02250696, 0.011118465, -0.032052502, -0.013974028, 0.009086493, 0.0191991, -0.0032977355, 0.0016834653, 5.037738E-4, 0.014244057, -0.0059102713, -0.023209037, -1.6518212E-4, -0.0076890904, -0.0135352295, 0.008208897, 0.007520322, -0.005150813, -0.03248455, -0.008114387 ], + "id" : "5760bdbe-fde7-4b0d-9d18-73483747c557", + "metadata" : { + "source" : "movies.csv" + } + }, + "c6437d72-eafa-44cf-90ff-f6d43634f27e" : { + "text" : "Michael De Geus-Terence O'Rourke-Anne Grimenstein-Dante Rosalina-Robert Clotworthy-June Christopher-Gary Sinise-Henry Goodman-Dean Barlage-Joel Thingvall-Thomas Kretschmann-Elizabeth Olsen-Nestor Serrano-Aaron Taylor-Johnson,washington dc usa-future-shield-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-political thriller,/tVFRpFw3xTedgPGqxW0AOI8Qhh0.jpg,/1RWLMyC9KcFfcaoViMiJGSSZzzr.jpg,1771-76338-99861-271110-68721-10138-10195-102899-118340-24428-1726-284052-1724-283995-127585-284053-102382-315635-363088-284054-49521\r\n50619,The Twilight Saga: Breaking Dawn - Part 1,Adventure-Fantasy-Romance,en,The new found married bliss of Bella Swan and vampire Edward Cullen is cut short when a series of betrayals and misfortunes threatens to destroy their world.,61.355,Summit Entertainment-Sunswept Entertainment-TSBD Canada Productions-TSBD Louisiana-TSBD Productions-Temple Hill Entertainment-Total Entertainment,11/16/11,110000000,712171856,117,Released,Forever is just the beginning,6.206,8133,Kristen Stewart-Robert Pattinson-Taylor Lautner-Billy Burke-Peter Facinelli-Michael Sheen-Elizabeth Reaser-Kellan Lutz-Nikki Reed-Jackson Rathbone-Ashley Greene-Anna Kendrick-Sarah Clarke-Christian Camargo-Gil Birmingham-Julia Jones-Booboo Stewart-M�_a Maestro-Casey LaBow-Maggie Grace-MyAnna Buring-Ty Olsson-Christian Sloan-James Pizzinato-Ian Harmon-Gabriel Carter-Christian Serratos-Michael Welch-Justin Chon-Christopher Heyerdahl-Jamie Campbell Bower-Andy Rukes-Alex Rice-Paul Becker-Stephanie Moseley-Kiowa Gordon-Tyson Houseman-Chaske Spencer-Bronson Pelletier-Alex Meraz-Tinsel Korey-Tanaya Beatty-Sienna Joseph-Carolina Virguez-Sebasti��o Lemos-Mackenzie Foy-Ali Faulkner-Charlie Bewley-Daniel Cudmore-Stephenie Meyer-Melissa Rosenberg,based on novel or book-vampire-hybrid-teen movie-werewolf-supernatural creature-dead-duringcreditsstinger-based on young adult novel,/qs8LsHKYlVRmJbFUiSUhhRAygwj.jpg,/yLpMWckfrzRiNZxB2tgBa5TkUKh.jpg,24021-50620-18239-8966-58595-12444-1029119-675-32657-767-12445-674-131631-10140-672-1865-222935-70160-597-673-411\r\n119450,Dawn of the Planet of the Apes,Science Fiction-Action-Drama-Thriller,en,A group of scientists in San Francisco struggle to stay alive in the aftermath of a plague that is wiping out humanity while Caesar tries to maintain dominance over his community of intelligent apes.,67.225,TSG Entertainment-Chernin Entertainment-Ingenious Media,6/26/14,170000000,710644566,130,Released,One last chance for peace.,7.", + "embedding" : [ 0.0052758288, -0.035476457, -0.018814512, -0.04433195, -0.0028388659, 0.038173977, -0.0016919096, -4.259576E-4, -0.029917935, -0.033732608, 0.025789913, 0.0337871, 0.015585664, 0.0036716226, 0.008950857, 0.018582907, 0.018201439, -0.023324, 0.012261448, -0.03463178, -0.0032748287, 0.005565335, -0.0206946, 0.008153863, -0.0031896797, 0.0073023736, 0.024808997, -0.018106073, -0.004690004, -4.4756416E-5, 0.018760016, -0.013821377, -0.007275126, -0.017983457, -0.019754557, 0.012690599, 0.008487647, -0.023855329, 0.032124996, -3.2824918E-4, 0.011335028, 0.008099368, -0.005211116, -0.022615561, -0.017465752, -7.2461757E-4, 0.009059848, 0.0011435504, -0.0069243126, 0.019999785, 0.02396432, 0.040217552, -0.026389362, -0.018991621, -0.012404499, -0.01475461, -0.024182301, 0.002028248, 0.007901822, 0.0062090615, 0.021280425, -0.016580204, -0.038282968, -0.013875873, -0.0077247126, -0.013310484, -0.014945343, -0.0118595455, -0.008038061, 0.009311889, 0.04302406, 0.013875873, 0.022983404, 0.0043800618, 0.020776343, -0.039972324, -0.022533817, -0.010926313, 0.004863708, -0.0063452995, 0.011260097, -0.008930421, -0.0083377855, -1.6550827E-4, 0.015013463, 0.009850031, -0.01824231, 0.008310538, -0.03370536, 0.018051578, -0.0074931076, 0.031116832, -0.0041893283, 0.011062551, -0.013051631, 0.025258584, -0.011716495, 0.017234147, -0.029291239, -0.024141429, 0.0031147485, -0.0029155, -0.016770937, -0.02193437, -0.013964428, -0.009938586, 0.0041859224, -0.0064985678, 0.016157864, -0.0016552956, 7.2908784E-5, -0.010074823, 0.0017659892, -0.05316019, -0.005040818, -0.008174299, 0.009216522, -0.013201493, -5.189828E-4, -0.011573445, 0.040626265, 0.040953238, 0.0013002245, -0.025912529, 0.045748826, 0.037056822, 0.0074590477, -0.015027086, -0.008310538, -0.004918203, 0.016157864, -0.008344597, 0.025817161, 0.0065394393, -0.020354005, 0.06424999, -0.028719038, 0.018542035, -0.008630698, -0.018937126, 0.036348384, 0.032724444, -0.023174137, -0.021198682, -0.023392119, 0.00483646, 0.0047308756, -0.005745851, 0.018719144, 8.8129163E-4, 0.015027086, 0.01735676, 0.019277722, 0.020626482, 0.028528303, -0.009781911, 0.010102071, 0.004918203, -0.007670217, -0.013290048, -0.003004055, -0.009318701, 0.003961129, -0.020776343, -0.0034212847, 0.016689194, 0.015572039, -0.011212413, -0.0018068607, 0.004942045, -0.020081528, 0.02186625, -0.01870552, 0.017629238, -0.006651836, 0.012595233, 0.0010481835, -8.050833E-4, -0.030762613, -0.01678456, 0.008453588, 3.844475E-4, 0.027329406, 0.038282968, -0.012486242, 0.009536683, 0.03414132, -0.0136102075, 0.016934423, -0.0066245883, -0.0038453266, 0.012431746, 0.0332149, -0.01059253, -0.6395572, -0.017002542, -0.0012414716, -0.0077860197, 1.0659584E-4, 0.011900417, 0.01198216, -0.0017404445, -0.030708117, -0.011777802, -0.026389362, 0.0121115865, 0.012881333, -0.013194681, -0.027043305, -0.010756015, -0.004781965, -0.024155054, 0.01294264, 0.0011776099, -0.031035088, 0.019686436, 0.011593881, -0.021839002, 9.1875717E-4, 0.014495757, 0.0044822404, -0.024086935, 0.011069363, 0.0018562471, -0.01262248, 0.021007948, 0.0055312756, 0.00807212, 0.037601776, 0.0023194572, -0.017574742, 0.05038093, 0.024345787, 0.021716388, -0.028637294, -0.0011571742, -7.459048E-4, 0.014155162, -0.027302159, 0.029917935, 0.009768288, 0.0034485324, -0.0018903067, -0.002266665, 0.003967941, 0.007213819, -0.0010354113, -0.0015335325, -0.006811916, -0.0049011735, 0.018977998, -0.03324215, 0.035885174, 0.0026021518, -0.03310591, 0.016879927, 0.007438612, 0.012213765, 0.003482592, 0.03591242, -0.0030483324, -0.0019158514, 0.009039412, -0.026307618, 0.01980905, 0.014999839, -0.00959799, -0.00293253, 0.015599287, 0.009768288, 0.036457375, 0.0011529168, 0.011668812, 0.023446614, -0.0047070337, -0.011866357, 0.0012687193, 0.029454725, 0.0198363, -0.011042115, -0.047737908, 0.0019533169, 0.013528465, 1.0617009E-5, 0.008194734, 0.010306429, 0.011157918, 0.0046116672, -0.0072478787, 0.010503974, -0.0049045794, 0.0037159, 0.030244907, -0.058201008, -0.01102168, -0.015381306, 0.026511976, -0.015544792, 0.0384737, 0.012983511, 7.4462756E-4, -0.020422123, 0.04152544, -0.02204336, -0.018542035, 0.0065190033, -0.020721847, -0.008637509, -0.007036709, -0.025980648, 0.0053235125, 0.019563822, -0.00760891, -0.015694654, 0.0013870763, 0.01813332, 0.0048160246, -0.02058561, 0.017901715, 0.022928908, -0.0035047308, -0.009931773, -0.0017949399, 0.008385468, 0.0070912046, -0.0112464735, 0.03182527, -0.019114235, 0.009482187, 0.01678456, 0.011416771, -0.006079635, 0.0058480296, 0.001099273, -0.021403039, -0.006324864, -0.006232903, -0.0076634055, -0.010769639, -0.028719038, -0.021430288, -0.009318701, -0.0050816895, -0.013160622, -0.0035830678, 0.0209807, 0.0068561933, 0.008112992, 0.01230232, -0.0023603288, -0.029209495, -0.032124996, 0.007452236, -0.017397633, 3.512394E-4, 0.023119643, 0.0019941884, -0.030817108, 0.0136715155, 0.0036511868, 0.0014603045, 0.011048928, 0.0026821918, -0.02449565, 0.017193276, -0.009795535, 0.01148489, -0.0022394173, -0.019781804, 0.013753258, -0.01888263, 0.029127752, 0.0026345085, -0.001250838, 0.003654593, -0.0023892794, -0.0127655305, -0.004856896, 0.019931667, 0.02893702, 0.02175726, -0.01632135, 0.01187317, 7.6719205E-4, -0.01475461, -0.016266854, -0.009890902, -0.0074726716, 0.012758719, 0.021021573, 0.014345895, 0.0070230854, -0.01020425, 0.00307558, 0.035013247, 0.017465752, 0.01603525, -0.001130778, 0.0019039304, -0.028119588, 0.0012653134, -0.028746285, 0.012234201, -0.010197438, 0.014209656, -0.014645619, -0.014359519, 0.0048398664, 0.0023109424, 0.025544684, -0.016539332, 0.008467211, -0.018283183, -0.006226091, 0.007445424, 2.0978572E-4, 0.01052441, 0.013146997, -0.027370278, 0.0041654864, 0.010415419, -0.014877224, -0.01087863, -0.019795427, -0.0031811646, 0.007854139, -5.147254E-4, -0.0031402933, -0.011273721, -0.003392334, 0.017765477, -0.016839055, 0.032506462, -0.017152404, -0.009162026, 0.014018923, 0.031552795, 0.0027196575, 0.006559875, -0.011294156, 0.016076121, 0.011232849, -0.014209656, 0.038064986, -0.024018815, 0.024795374, -0.010285993, 0.004383468, 0.0101088835, -0.0134194745, 0.0045742015, 0.009495811, 0.03741104, 0.0145775, 0.016798185, -0.017234147, 0.014713738, -0.0010073121, -0.011300968, 0.008474023, -0.023201386, -7.420731E-4, -0.0031385901, -0.04103498, -0.017615614, -0.0043357844, 0.0014441261, 0.0268117, -0.009318701, -0.01475461, -0.011655188, 0.013140186, 0.007915447, 0.02051749, -0.005565335, -0.03253371, 0.001015827, 0.033923343, -0.015027086, -0.019686436, 0.0044992706, -0.013978051, -0.018514788, -0.016716441, -0.004666162, 0.02482262, -0.019577445, 0.016076121, -0.01877364, -0.002200249, 0.020258637, -0.017792724, 0.007104828, 0.014740986, -0.00419614, 0.02087171, -0.0033667893, 0.0066824895, 0.016934423, -0.016294103, -0.00952987, -0.012554361, -0.0011222631, -0.011035304, 0.007888199, 2.9099654E-4, -0.046593506, 0.014659243, 0.013555713, -0.010163379, -0.0062976163, -0.0010728767, 0.006651836, -0.018937126, -0.01247943, -0.029890686, -0.023215009, -0.013038007, 0.07841878, 0.05343267, 0.0050714714, 0.010674272, -0.0072478787, 0.018678274, -0.015204196, -0.01422328, -0.008024437, -0.023078771, 0.021634644, -0.0065769046, 0.014563876, -0.001736187, 0.01596713, -0.009032601, 0.004642321, -0.004107585, -0.0044958643, -0.0069481544, -0.017792724, -0.008882739, 0.026076013, 0.03907315, 0.010912689, -0.007976754, 0.01824231, 0.0019465049, 0.0031896797, 0.0038146728, -0.012704223, -0.0013181057, -0.002920609, 0.023405744, 0.003879386, -0.0047070337, 0.026035143, 0.014591124, 0.030408392, -0.0034263937, 0.0069890255, 0.020503867, 0.0022751798, -0.017166028, 0.010476727, -0.029781695, -0.011634752, 0.01614424, 0.031580042, -0.030653622, 0.010687896, -0.006478132, -0.021035196, -0.014073418, 0.011335028, 0.0030960157, -0.0019005245, -0.0012610559, -0.031225823, 0.00799719, -0.0024642106, -0.044141214, 0.0098772785, -0.013201493, 0.008474023, -0.0056300485, -0.00824923, 0.0015505623, -0.028637294, -0.012581608, 0.0109739965, -0.031062337, -0.0071593234, 0.00952987, 0.017656486, -0.0046525383, 0.022234093, -0.011389524, 0.02325588, 0.012847274, -0.042806078, -0.023841705, 0.020721847, -0.020953454, 0.008971293, 0.0058241882, 8.714995E-4, 0.021825379, 0.005984268, 0.01831043, -0.009979457, -0.0065939347, -0.0154221775, -0.009720604, 0.03370536, 0.004386874, 0.01934584, 0.022710927, 0.0057117916, -0.0018681679, 9.4855926E-4, -0.029590962, -0.010653837, -0.007118452, -0.013712387, 0.007854139, -0.0012014516, -0.0018715739, -0.022561066, -0.01912786, -0.01934584, -0.0201224, 0.0058241882, -0.010292805, 0.0065087858, -0.012738283, 0.01379413, 0.016988918, -0.0114372065, -9.898565E-5, -0.0075680385, -0.019563822, 0.021593774, 0.021375792, -0.006140942, 0.033977836, -0.015340434, -0.015272316, -0.002833757, 0.017179651, -0.019182354, 0.011232849, -0.01603525, -0.005595989, -0.010449479, -0.029318485, -0.0045980434, -4.2787346E-4, -0.015721902, 0.023828082, -0.014059794, 0.0069890255, -0.013896309, 0.005902525, -0.003313997, -0.034822512, 0.003654593, -0.0091824625, 0.015899012, 0.021839002, -0.007983565, 0.004608261, -0.023419367, -0.0023586259, -0.008256042, -0.03743829, -0.025844408, -0.015653783, 0.03313316, 0.0078064557, 0.0379015, -0.012676976, 0.030817108, 0.007983565, 0.0070707686, 0.030108668, -0.019046117, -8.744797E-4, -0.02723404, 0.004386874, -0.0052179275, 0.027220415, 4.1424963E-4, -0.0056232368, 0.011491702, 0.008916798, 0.008453588, 0.015939884, 0.012172894, -0.029645458, -0.031389307, 0.007445424, -0.025830785, -0.008937234, -0.015136077, -0.011103423, 0.041089475, 0.0073228097, -0.01081051, -0.018392174, 0.036103155, -0.0036137213, 0.015463049, -0.029236743, 0.010449479, -0.02822858, 0.0010430746, -0.020067904, -0.013637455, 0.0024454778, -0.013875873, 0.0132628, 0.002176407, -0.026157757, -0.0015531168, 0.023092395, -0.0072410665, -0.022779047, 0.021389415, -0.0060319514, -0.008521707, -0.02997243, -6.773599E-4, -0.020272262, -0.0013530168, 0.008330973, -0.019277722, 0.0032782345, -0.026321243, -0.04242461, 0.036675356, -0.008031249, 0.043541767, 0.011471266, 0.034958754, 0.027533764, 0.015367682, -0.02208423, 0.012697411, -0.015095206, -0.0048671137, 0.030163163, 0.018841758, -0.010224686, -0.007016273, 0.0031436991, 0.0038351086, -0.034195818, -0.03896416, 0.028283074, 0.029945182, 0.026539225, -0.02467276, -0.005984268, -0.016239608, 0.010265557, -0.0049624806, -0.007963129, 0.0024846464, -0.03089885, -0.014618372, 0.0012533925, -0.008133427, 0.008644321, 0.0021627832, -0.032588206, 0.01859653, -0.029754449, 0.008010813, -0.011103423, -0.011137483, 0.03858269, -0.005500622, 0.007860951, 0.0047444995, -0.0015505623, 0.0051429966, 0.0015914339, -0.004931827, 0.031198574, -0.021675516, 0.02009515, 0.0030687682, -0.009291453, 0.016525708, 0.014672867, -0.0118799815, -0.007275126, -0.02937298, -0.009155215, 0.020449372, 0.0013215117, 0.0030483324, 0.0040292484, -0.012929017, -0.014414014, 0.003228848, -2.797143E-4, 0.011355463, -0.03310591, 0.011151106, -0.004134833, 0.0044073095, -0.00967292, 0.0077110888, -0.008024437, -0.007445424, 0.011253285, -0.009373196, -0.017329514, -0.014291399, -0.030980593, -0.028555552, -0.02893702, -0.019427584, -0.015313187, -0.0012261448, -0.018637402, 0.0011026788, 0.011621129, -0.007670217, -0.009093908, -0.007513543, -0.022465698, -0.0018903067, 0.019931667, -0.010830946, -0.014659243, 4.2489325E-4, 0.029999677, -0.005667514, -0.015027086, -0.0018903067, 0.007949506, 0.028637294, -0.009230146, 0.021007948, 0.0027383901, -0.024141429, 0.0044890526, 0.015231444, 0.036566366, 0.0030193818, 8.8554906E-4, -0.036648106, -0.0045878254, -0.007063957, 0.016062498, -0.0013300265, -0.0031726498, 0.020340381, 0.015258691, 0.025367575, 0.02009515, -0.0050306, -0.03708407, 6.441518E-4, -0.01049035, -0.028528303, -0.00814024, 0.0027094395, 0.013964428, 0.007888199, 0.0011520652, -0.028528303, -0.0044413693, -0.0116483765, -0.017588368, 0.0024591016, 0.026552849, 0.03874618, 0.008617073, 0.0010243418, 0.009121155, 0.009761475, 0.0052145217, -0.023378495, -0.009993081, 0.020626482, 0.013392227, 0.022179598, 0.018691897, -0.03430481, -0.0069106887, 0.018582907, 0.022520194, 0.005599395, 0.019468455, -0.017424881, 0.0020640106, -9.919852E-4, -0.009890902, -0.0151497, 0.004277883, 0.022751799, -0.032806188, 0.008167488, 0.018324053, 0.0118391095, -0.002508488, 0.012281884, 0.017942587, -0.02122593, 0.017479377, -0.0074862954, -0.018010706, 0.007213819, -0.031661786, 0.034958754, 0.017084286, -0.007077581, 0.023569228, 0.032016005, -0.013964428, 0.0103404885, -0.004969293, 0.012309132, -0.020258637, -0.005286047, 0.005027194, 0.023541981, -0.023364872, 0.012329568, -0.032261234, 0.018787265, -0.018255934, 0.0051327785, 0.0015233147, 0.018814512, 0.027288536, -0.058854952, 0.009093908, -0.012615669, 0.0024642106, -0.011607504, -0.0035047308, -0.035530955, -0.008187923, -0.0055483053, 8.144497E-4, -0.018392174, -0.026893444, -0.0021372386, -0.00419614, -0.017234147, 0.023759963, 0.18931676, -0.0044822404, 0.001702979, 0.05934541, -0.0011784615, 0.011634752, 0.011157918, 0.006876629, 0.0012567985, 0.011266909, -0.004928421, 0.005837812, 0.004369844, -0.0018375143, 0.015163325, -0.006239715, -0.0209807, -0.018146943, -0.011634752, -0.01660745, -0.006474726, 0.016961671, -0.009482187, -0.017506624, 0.0071320757, 0.005027194, -2.288378E-4, 0.0015565228, 0.012145646, 0.007275126, -0.017452128, -0.013603396, 0.0063827652, 0.012540737, -0.01919598, -0.0063725472, 8.041254E-5, 0.008453588, 0.0075203553, 3.2803632E-4, -0.01148489, 3.8125442E-4, -0.014986215, -0.014032546, -0.0011580257, 0.029699953, -0.02023139, -0.02698881, -0.010183814, 0.0050816895, -0.041143972, 9.919852E-4, 0.015163325, 0.02197524, 0.0057083857, -0.015585664, 0.010224686, 0.016770937, -0.004281289, -6.0966646E-4, 0.008276477, 0.030762613, -0.035285722, 0.030135917, -0.0032680167, 0.011001244, -0.035421964, 0.009441315, 0.023419367, -0.029699953, -0.02115781, -0.026035143, -0.0017251177, 0.0022138727, -0.015313187, -0.00799719, -0.0016161271, 0.011702872, 0.0138826845, 0.012404499, -0.033160407, -0.008453588, 0.011900417, -0.012820026, -0.018405797, -0.018405797, 0.021198682, -0.0053882254, -0.0027247663, -0.0026855979, -0.008221982, -0.027452022, -0.003967941, 0.0073500574, -0.008133427, -0.0038214847, 0.025122346, 0.0071797594, -0.017819973, -0.006457696, -0.026293995, 0.025980648, 0.030517383, -0.003726118, -0.017220523, -0.0044652107, -0.0066143703, 0.010653837, 0.022438452, -0.013072067, -0.010728767, -0.012847274, -0.002264962, -0.0043085366, 0.010326864, 0.025258584, -0.0035796617, 0.0010822432, 0.035994165, -0.018637402, 0.0067472025, -0.029018762, 0.009993081, -7.4931077E-4, -9.5026224E-4, -0.032206737, -0.02118506, 0.0028507868, 0.002276883, -0.028964266, 0.01379413, -0.026035143, 0.014795481, -4.1573975E-4, 0.008644321, 0.0051429966, 0.012506678, -0.016961671, 0.011954912, -0.003411067, -0.010429043, -0.015708279, 0.010824135, 0.0011827189, -9.085393E-4, -0.029999677, 0.0076634055, -0.012254637, -0.008010813, -0.035530955, -0.013392227, -0.0048534903, 0.014972591, 0.0011707981, 0.031007841, -0.0063418937, -0.02542207, -0.033896092, -0.01645759, 0.038282968, -0.04302406, 0.030353896, 0.005912743, -0.005807158, -0.03953636, -0.0077996436, -0.17493, 0.011675624, 0.017220523, -0.030599127, 0.018923502, 0.014809106, 0.014196033, 0.007935882, -0.0070230854, -0.012833649, 0.03348738, 0.010476727, -0.0484191, -0.005418879, 0.011157918, 0.020640105, -0.008446775, 0.039100397, 0.027956102, 0.00165785, 0.040762506, -0.0077996436, -0.007602098, -0.0014424232, 0.02880078, -0.0037976431, 0.037738014, 0.023337623, 0.009332324, -0.0055210576, -0.038555443, -0.012472618, 0.023296753, 0.0023194572, 0.0014671164, 0.0015147998, -0.01002714, -0.017642861, -0.0035762559, 0.004969293, 0.03880067, 6.27122E-4, 0.025081474, 0.010149755, 0.0056164246, 0.010633401, 0.032588206, -0.013324107, 0.0070026494, -0.01440039, -0.010517598, -0.02449565, 0.021893498, -0.018201439, -0.016512085, 0.028119588, 0.009059848, 0.015054334, 0.0036205333, -0.00469341, -0.022547442, -0.020721847, 0.008024437, -0.00487052, -0.0066927075, -0.009781911, -0.006318052, 0.023487486, -0.033296645, 0.006290804, -0.027452022, 8.310537E-4, 0.00959799, 0.0048262426, -0.0019465049, -0.020599233, -0.03822847, 0.012806402, -0.0032884523, 0.0060353572, -3.5507113E-4, 0.033977836, -0.010136131, 0.016362222, 0.0031011247, -0.01888263, 0.00613413, 0.009025789, 0.010960373, -0.008474023, 0.0037738015, -0.012200141, -0.024945237, 0.0043425965, 0.0050953133, 0.007949506, 0.0037397419, -0.0027009246, 0.0022019518, -0.0177791, 0.0077860197, -0.0013717496, -0.022697303, 0.026757205, 0.02844656, 0.012588421, -0.0019345841, 0.018514788, -0.0012380657, 0.007343245, -0.006410013, 0.006798292, 0.031852517, 0.0029699954, -0.026144134, 0.014087042, -0.018337678, -0.023759963, 0.0076429695, 0.02425042, 0.05130735, 0.0059331786, 0.01262248, -0.017247772, -0.00453333, -0.02204336, -0.09520333, 0.009175651, 0.009720604, 0.026511976, -0.033078663, 0.037738014, -0.014904472, 0.027547387, -0.027642755, 0.03291518, 0.0030926098, -0.026920691, 0.025108721, 0.0018102666, 0.0023977943, 0.0068051037, -0.012888145, -0.023187762, -0.0051225605, 0.02478175, 0.0071320757, -0.015108829, 0.023106018, -0.009638861, -0.012908581, 0.006617776, -0.024740878, 0.013637455, 0.01539493, 0.011770991, 0.0177791, -0.027956102, 0.01873277, -0.02758826, -0.013303672, -0.034277562, -0.021770883, -0.02940023, 0.0033514625, -0.04408672, 0.009775099, 0.0143050235, 5.7305244E-4, -0.018623779, -0.012860897, 0.0043289727, -0.041089475, 0.011954912, -0.0056232368, -0.030163163, -0.0074931076, -0.01963194, -0.03125307, -0.010142943, 0.015830893, 0.013991675, 0.024482025, 0.0060660113, -0.023446614, -0.029046008, 0.01685268, -0.011253285, -0.02513597, 0.011178354, 0.001939693, 0.007963129, -0.004097367, -0.012315944, 0.01912786, -0.014822729, -0.01841942, 0.026225876, -0.039454617, -0.029100504, -0.025026979, 0.003954317, -0.022138726, -0.01784722, 0.0265256, -0.02893702, -0.005105531, -0.029808944, 0.017002542, -0.008235606, 0.020449372, 0.023215009, 0.023392119, 0.025394822, -0.003807861, -0.035776183, -0.0033310268, 0.02208423, 0.0065905284, 1.9254306E-4, -0.004618479, 0.016294103, 0.020558363, 0.007765584, 0.012615669, 0.008181111, -0.0062635564, 0.00853533, -0.0781463, 0.040735256, -0.027601883, -0.010333677, -0.018174192, -0.020953454, -0.009100719, 0.0059604263, -0.0076293456, 0.026825326, -0.0045265183, 0.005902525, -0.015708279, 0.012227389, -0.0037772073, 1.3772842E-4, -0.0028780345, 0.0016442261, 0.017683733, -0.0048058066, -0.015081582, 0.009025789, 0.014523004, 0.015313187, 0.0013751555, 0.013126562, -6.722509E-4, 0.0039270697, -0.020967077, -0.008078932, 0.02880078, -0.024904365, -0.006801698, 0.0082969135, -0.018569283, -0.031661786, -0.016225984, 0.01568103, 0.012206953, 0.0023228633, -0.018964374, -0.0297272, 0.0023654378, -0.020735472, -0.01446851, 0.005262205, -0.021498406, 0.003078986, 0.00407012, 0.015803644, 0.029291239, 0.013344543, -0.016062498, -0.03302417, 0.01731589, -0.017247772, 0.04395048, 0.012642916, -0.013787318, -0.009141591, 0.027751746, 0.010769639, 0.029236743, -0.02076272, 0.008937234, 0.00888955, 0.0038282967, -0.01279959, 0.015435802, -0.017288642, -0.011893605, -0.0013564228, 0.017574742, 0.040299293, 7.599544E-4, -0.0035490082, 0.01219333, 0.012820026, 0.0036137213, 0.01912786, 0.0206946, -0.0013019274, -0.021212306, 0.030026926, -0.0021559715, 0.017111532, 0.0025749041, 0.026552849, 0.008984917, 0.009005353, -0.007261502, 0.015381306, 0.02570817, 0.004608261, -0.0043800618, -6.411716E-4, -0.0065394393, -0.0060421694, -0.0030091638, 0.025190465, -0.012397687, -0.0066688657, -0.0014151755, -0.020285886, -0.025476566, 0.009073472, -0.0206946, -0.023201386, 0.012418123, 0.016702818, 0.012315944, 0.0236101, -0.004536736, 0.013392227, -0.038827922, 0.0061784075, -0.013460346, -0.012329568, -0.011287345, 0.02431854, 0.008637509, 0.0109535605, 0.03089885, -0.0030585502, 0.04106223, 0.01539493, 0.022547442, -0.018201439, 0.014168785, 0.00981597, 0.0019209603, -0.01446851, -0.023691844, 0.0020606045, -0.012486242, 0.008916798, -6.156269E-4, 0.024522897, -0.009652485, 0.07989015, 0.031144079, -0.0049011735, 0.015408554, -0.022738175, 0.021566525, 0.0198363, 0.023296753, -0.008494459, -4.7853708E-4, 3.9104655E-4, -0.018433044, 0.006467914, -0.03580343, -0.011171542, 6.509637E-4, 0.020136023, 0.015354059, -0.012220577, -0.011559822, -0.018473916, -0.020653728, 0.01963194, -8.6937076E-4, -0.016225984, 0.0018494352, 0.025571933, -0.009850031, -0.0043562204, -0.041198466, 0.0069175004, -0.027465645, -0.0017693952, -0.0023773587, 0.020381253, -0.0038214847, -0.009795535, 0.0057186033, 0.0121115865, -0.004294913, -0.01934584, -0.0109739965, -0.0198363, -0.014945343, 0.019713685, -0.0098772785, -0.009420879, -0.019427584, -0.015054334 ], + "id" : "c6437d72-eafa-44cf-90ff-f6d43634f27e", + "metadata" : { + "source" : "movies.csv" + } + }, + "06a8eced-9cc9-4130-8320-92aec2b930f5" : { + "text" : ",339403-335984-281957-157336-419430-181808-281338-359940-1124-27205-399055-297762-16869-106646-399404-283995-315635-263115-343668-228150-77\r\n166428,How to Train Your Dragon: The Hidden World,Animation-Family-Adventure,en,As Hiccup fulfills his dream of creating a peaceful dragon utopia Toothless�� discovery of an untamed elusive mate draws the Night Fury away. When danger mounts at home and Hiccup��s reign as village chief is tested both dragon and rider must make impossible decisions to save their kind.,91.531,DreamWorks Animation-Mad Hatter Entertainment,1/3/19,129000000,524580592,104,Released,The friendship of a lifetime,7.8,5518,Jay Baruchel-America Ferrera-F. Murray Abraham-Cate Blanchett-Gerard Butler-Craig Ferguson-Jonah Hill-Christopher Mintz-Plasse-Kristen Wiig-Kit Harington-Justin Rupple-Robin Atkin Downes-Kieron Elliott-Julia Emelin-Gideon Emery-Ashley Jensen-AJ Kane-��lafur Darri ��lafsson-James Sie-David Tennant,flying-based on novel or book-overpopulation-viking-sequel-dragon-love interest-based on children's book,/xvx4Yhf0DVH8G4LzNISpMfFBDy2.jpg,/lFwykSz3Ykj1Q3JXJURnGUTNf1o.jpg,82702-10191-638507-264170-36891-404368-897585-299537-399579-324857-260513-146058-572988-297802-424783-287947-419468-447404-299534-450465-5589\r\n10528,Sherlock Holmes,Action-Adventure-Crime-Mystery,en,Eccentric consulting detective Sherlock Holmes and Doctor John Watson battle to bring down a new nemesis and unravel a deadly plot that could destroy England.,31.912,Warner Bros. Pictures-Village Roadshow Pictures-Silver Pictures-Wigram Productions-Internationale Filmproduktion Blackbird Dritte,12/23/09,90000000,524028679,129,Released,Nothing escapes him.,7.199,12916,Robert Downey Jr.-Jude Law-Rachel McAdams-Mark Strong-Eddie Marsan-Robert Maillet-Geraldine James-Kelly Reilly-William Houston-Hans Matheson-James Fox-William Hope-Clive Russell-Oran Gurel-David Garrick-Ky Discala-Andrew Brooke-Tom Watt-John Kearney-Sebastian Abineri-Jonathan Gabriel Robbins-James A. Stephens-Terence Taplin-Bronagh Gallagher-Ed Tolputt-Joe Egan-Jefferson Hall-Miles Jupp-Marn Davies-Andrew Greenough-Ned Dennehy-Martin Ewens-Amanda Grace Johnson-James Greene-David Emmings-Ben Cartwright-Chris Sunley-Michael Jenn-Timothy O'Hara-Guy Williams-Peter Miles-Rocco Ritchie,london england-detective-scotland yard-based on novel or book-coffin-black magic-arrest-partner-murder-steampunk-serial killer-pentagram-whodunit-buddy-clue-19th century-victorian era-sherlock holmes,/momkKuWburNTqKBF6ez7rvhYVhE.jpg,/veXdzn7LL0bFIDGmE7tTkvRg0qV.", + "embedding" : [ 0.0037269888, -0.039042067, -0.019142248, -0.042180583, 0.003902854, 0.030275865, -0.014272135, -0.0233089, -0.022104898, -0.03135811, 0.024702292, 0.030059416, 0.0012403567, -0.01622018, 0.0014737163, 0.016517797, 0.018655237, -0.025581619, 0.01862818, -0.026122741, -0.017302427, 0.001361264, -0.01735654, 0.022970697, -0.009300562, 0.02132027, 0.02876072, -0.012621708, -0.0015312107, -0.008434764, 0.025108134, 0.0032653427, -0.00994991, -0.006175573, -0.030600538, -0.0077110115, 0.0069399104, -0.02669092, 0.028490158, -0.015219101, 0.004017843, 0.0105722025, -0.015381439, -0.0077380673, -0.013731011, 0.009577888, 0.012175281, -0.009469663, -0.0036864046, 0.01841173, 0.01897991, 0.03747281, -0.011465056, -0.028733663, -0.002722528, 0.0059151575, -0.024729349, 0.02245663, 0.022564854, 0.0056006294, 0.01650427, -0.0031875563, -0.020021573, -0.018330561, -0.01479973, -0.01869582, -0.02060328, -0.01899344, 0.009550831, 0.011194495, 0.026474472, 0.002260882, 0.028787775, -0.0056175394, 0.015070292, -0.02195609, -0.011870899, -0.017153619, 0.0019362079, 0.011438, 0.01020018, -0.022497214, -0.0069602025, 0.0053469776, 0.0013807106, 0.024729349, -0.0051846406, 0.009943146, -0.04391218, 0.013933932, 0.00832654, 0.028084315, 0.0048464383, 0.0018770224, 0.0077854157, -0.0062465956, -0.0041666515, 0.019575147, -0.025432808, -0.040421933, 0.0023234494, -0.0067133144, -0.0029677248, -0.0023437415, -0.00832654, -0.004051663, -0.0026396685, -0.016166067, 0.011282427, 0.00227441, 0.005715618, -0.0134469215, 0.022402517, -0.030708764, 0.0068621235, -0.029734742, 0.014218022, -0.004271494, -0.005394326, -0.023944719, 0.024093527, 0.03931263, 0.0021543484, -0.0341449, 0.019723956, 0.033712, 0.004947899, -0.00931409, 0.0035443595, -0.012398494, 0.017735327, -0.00821155, 0.012689348, -1.7903582E-4, -0.04929636, 0.055573393, -0.0103422245, -0.004988483, -0.02550045, -0.018682292, 0.021496136, 0.02959946, -0.015192045, -0.03847389, -0.025879236, 0.004653663, 0.0077110115, -0.013832472, 0.012161753, -0.017153619, 0.028354876, 0.014705034, 0.003473337, 0.021469079, 0.010538382, 0.0047246856, 0.005313157, -0.026907371, -0.008279191, -0.016436629, -0.0016859382, -0.0027546573, -0.0016749466, -0.023592988, 0.008833842, 0.02301128, 0.023998832, -0.023200674, -0.004788944, -0.0075419103, -0.012445843, 0.034442518, -0.024986383, 0.021266157, -0.0052150786, 0.021847865, 0.0071563595, -0.01777591, -0.02854427, -0.010565438, 0.0021881685, -0.008258899, 0.040638383, 0.0348213, -0.005725764, 0.0077786515, 0.017248314, -0.03230508, -0.0034767191, -0.02408, 9.1060955E-4, 0.009902562, -0.012750225, 0.0011566516, -0.63549554, -0.014028629, 0.015192045, -0.02514872, 0.024594067, 0.012046764, 0.010714247, -4.912388E-4, -0.019399282, -0.025067551, -0.018587595, 0.023214202, 0.023078922, -0.011329776, -0.022334876, -0.0061146966, 0.0042681126, -0.01998099, 0.01735654, 0.010680427, -0.02840899, 0.014650921, 0.0054957867, 0.005610775, 0.0032450506, -0.012851685, -0.017248314, -0.007832764, 0.019994518, -0.005424764, -0.007217236, 0.0074742697, 0.03300854, 0.013020786, 0.031763956, -3.4644592E-4, -0.004342517, 0.04491326, 0.024918742, 0.013020786, -0.032629754, 0.011262135, 0.030194696, 0.018019415, -0.007643371, 0.010463977, 0.005576955, -0.012094112, 0.023633573, -2.9000844E-4, -0.017153619, -0.013467213, 0.001197236, -7.2079356E-4, -0.0037066967, 0.0024401292, 0.011593573, -0.03419901, 0.034523685, 0.005418, 0.013223708, 0.033684943, -0.006747135, 0.016517797, -0.011782967, 0.026176853, -0.0071631237, -0.018371146, 0.0119453035, -0.03563299, 0.019358696, 0.011329776, -0.009638764, 0.0044642696, -0.009638764, 0.024796989, 0.039637305, -0.005756202, 0.018858157, 0.02337654, 0.016856, 0.013088427, 5.6564325E-4, 0.01479973, 0.03195335, -0.004038135, -0.01784355, 0.014596809, 0.006155281, 0.003916382, -6.00309E-4, 0.027813753, 0.014177438, -0.0021915506, -0.017329482, 0.007406629, 0.0011109944, 0.0010957753, 0.0365529, -0.05914481, -0.015137932, -0.01162063, -0.0046164608, -0.0027732584, 0.014745618, 0.008265663, -0.0121076405, -0.023904135, 0.03235919, 0.007988337, -0.00928027, -0.0031368257, -0.024607595, -0.0023133033, -0.0015100731, -0.024742877, 0.01649074, 0.013068135, 0.0038250673, -0.010423393, -0.009746989, 0.010863056, 0.008083033, -0.016761303, 0.015124405, 0.025054023, -0.01331164, 0.0014627248, 0.0020528876, 0.0061485167, 0.018465843, -0.0065915617, 0.019250471, -0.019953933, 0.011133618, -0.0025145337, 0.027759641, 0.006615236, 0.019723956, -0.0049039326, -0.029870022, -0.0046976293, -0.016166067, -0.0073186965, -0.008367124, 0.0057460563, -0.015192045, 0.008928539, 0.0020427415, -0.0055059325, -0.02322773, 0.0038757978, -0.0060910224, -0.005431528, -0.0074539776, 6.6076266E-4, -0.036931686, -0.002556809, 0.007068427, -0.020156855, 0.0076907193, 0.028571326, -0.018912269, -0.008854135, 0.011167438, -0.0035037752, -0.03138517, 0.011072742, 0.0022963933, -0.016693663, 0.008238607, -0.024052944, -0.005610775, 0.023092449, -0.00821155, 0.011695034, -0.010950989, 0.022429572, -0.016693663, -0.017018337, 0.0062093935, -3.0781688E-5, -0.018317034, -0.01122155, 0.026055101, 0.014245079, 0.016057843, -0.02811137, -0.009422314, 0.007095483, -0.01954809, -0.0024891684, -0.011465056, -0.017004808, -0.0052894833, 0.0126284715, 0.0101460675, 0.0093952585, 0.008590337, 0.008164202, 0.047267146, 0.019385753, 0.009733461, 0.0013747922, 0.011397416, -0.030789932, -0.002715764, -0.015354382, 0.0074539776, -0.020075686, 0.02245663, -0.009719932, -0.009057056, -0.008556517, -0.009571124, 0.02585218, -0.0317369, 0.006946674, -0.017938247, 0.011580045, 0.012242922, -0.025608674, 0.03874445, 0.012642, -0.015530247, -0.0044439775, 0.007081955, -0.010430157, -0.003483483, -0.0053435955, -0.008421236, 0.0023775618, -0.013791888, -0.0051812585, 0.0073119327, 0.022930112, 0.03617411, -0.017721798, 0.039691415, -0.016734248, -0.0016512725, 0.02145555, 0.022402517, -0.012601416, -0.004075337, -0.0049073147, -0.0050189216, 6.383567E-4, -0.011275663, 0.036579955, -0.017194202, 0.019994518, -0.0027428202, 0.0090029435, 0.011444764, -0.012378202, 0.012736697, 0.015665527, 0.026907371, 0.020386832, 0.003141899, -0.007913932, 0.03682346, -8.2563626E-4, 0.018722877, 0.010403101, -0.024553483, -0.0050189216, -0.004339135, -0.023768853, -0.01125537, -0.0110930335, -0.008407708, -0.008570045, 4.912388E-4, -0.015137932, -0.01954809, 0.011864135, 0.003033674, 0.05008099, -0.0016876293, -0.045346156, 0.02152319, 0.023038337, -0.014921484, -0.02103618, -0.009503483, -0.015124405, -0.021915507, -0.009212629, 0.0011388961, 0.01876346, -0.010477506, -0.006669348, -0.013866292, -0.015219101, 0.011627393, -0.013291349, 0.008238607, 0.04767299, -0.010910405, 0.013879821, -0.012026472, -0.0032737977, 0.01933164, -0.012655528, -0.010781888, -0.013751304, -0.00237418, 0.0014356686, -0.0025348258, 0.019669842, -0.0380951, 0.006476573, -0.018722877, 0.0041091572, -0.008035686, 0.013670135, 0.017329482, -0.0059827976, -0.025730427, -0.03249447, -0.026163327, -0.0032856348, 0.07126598, 0.031222831, -0.007041371, -0.006523921, -0.011072742, 0.00449809, -0.01764063, -0.014177438, -8.2479074E-4, -0.0036999325, 0.028354876, -0.008576809, 0.021617888, 0.009632, 0.007494562, -0.003885944, -0.0095575955, -0.0036255282, -0.016071372, -0.008028922, -0.029842967, -0.01742418, 0.018601123, 0.031763956, 0.012378202, -0.02018391, 0.014177438, 0.0022202977, -0.0034496628, 0.0055296067, -0.016396046, 9.292107E-4, 0.007203708, 0.0068655056, 0.0026430506, 0.0041734157, 0.008915011, -7.685646E-4, 0.021360854, 0.004254584, 0.002538208, 0.019669842, 0.010876584, -0.009422314, 0.014055685, -0.009537304, -0.006466427, 0.010869821, 0.028436044, -0.028733663, 0.021022651, 0.008170966, -0.014610337, -0.0084144715, 0.019859236, 0.0026751799, -0.010639843, -0.020008044, -3.0311377E-4, -0.0057291463, -0.009990495, -0.027448494, 0.015340854, -0.012445843, -0.020833258, -0.022618966, -0.004220764, -0.016166067, -0.010680427, 0.03295443, -0.021293214, -0.023633573, -0.007460742, -0.003334674, 0.009632, -0.012560831, 0.034740135, -0.0101798875, -0.0036864046, 0.014907955, -0.02337654, -0.040340763, -0.0017315955, -0.023024809, -0.011789731, 0.001505, -0.007352517, 0.023417125, -3.2404004E-4, 0.005830607, 0.008225079, -0.0013451994, 8.470909E-5, -0.014772674, 0.036363505, 0.0017451236, 0.008542988, 0.01735654, 0.022213124, 0.002573719, 0.0075960224, -0.004308697, -0.013453686, -0.023971776, 0.012635236, -7.140295E-4, 0.0069804946, 0.015083821, -0.01543555, -0.04128773, -0.012026472, -0.01899344, 0.004944517, 0.010017551, 0.024039416, -0.0058745733, -0.0012496574, 0.013271056, -0.009956674, -0.00516773, 0.011390652, 0.0063818763, 0.011059213, 0.03038409, -0.016598966, 0.028030202, -0.013534854, -0.01473209, -0.008962359, 0.02797609, 0.009138225, 0.02018391, -0.011282427, 0.0027360562, -0.032873258, -0.016747775, -0.007224, -0.012567596, -0.017762382, 0.0062804157, -0.006006472, -0.0065746517, 0.0062770336, -0.004044899, -0.007927461, -0.029626517, 0.008928539, -0.007940989, 0.007183416, 0.042180583, 0.0034175338, 4.3924016E-4, -0.02995119, -0.0069196178, -0.0134807415, -0.02508108, -0.025825124, -0.010064899, 0.021969618, 0.019710427, 0.04412863, 0.0044101574, 0.0020106123, 0.011228315, 0.002867955, 0.024093527, -0.027002068, -0.0017417416, -0.042045303, -0.002235517, 0.007866585, 0.0013857837, 0.015909033, 0.0039840224, 0.0068519777, 0.019886293, 0.010159596, -8.501559E-4, -0.0023555786, -0.024945797, -0.022213124, -0.0024756405, -0.01735654, 0.015246158, -0.017924719, -0.010423393, 0.04786238, -0.01207382, 0.0071225394, -0.015692584, 0.024445258, -0.0022405898, 0.029193617, -0.015354382, 0.0043526627, -0.008955595, -0.0037337528, -0.030005304, -0.02025155, 0.021293214, 9.7064045E-4, 0.020765617, 0.0026227585, -0.003612, 0.004971573, 0.01327782, -0.014813258, -0.025270471, 0.0038622697, -0.01714009, -0.027218517, -0.038906787, -0.004545438, -0.013602494, -0.002079944, 0.015706113, -0.013818944, 0.020562697, -0.010761595, -0.02968063, 0.013271056, -0.019006966, 0.042451147, 0.0049918653, 0.045724943, 0.030005304, 0.014299191, -0.021685528, 0.009638764, -0.010024315, -0.0037878652, 0.02832782, 0.0025889382, -0.015192045, -0.011498877, -0.007819236, 2.8155337E-4, -0.024323506, -0.03958319, 0.022037258, 0.030167641, 0.015990201, 0.0015024635, -0.003608618, -0.037094023, 0.011552989, -0.005390944, 0.016896585, 0.011613865, -0.0155708315, -0.01466445, 0.00513391, -0.0042951684, 0.024742877, 0.012006179, -0.0034936292, 0.019710427, -0.001571795, 0.0035342134, -0.025175774, -0.005242135, 0.029870022, -0.03468602, 0.0041125393, 0.008346831, 0.005810315, 0.007819236, 0.0011558062, 4.0605408E-4, 0.03187218, -0.024418203, 0.0019125337, -0.014840315, 0.013223708, 0.0011667977, 0.015922561, -0.026799146, -0.010687191, -0.03712108, -0.010957753, 0.031304, 0.0020123033, -0.002272719, -0.0033634214, -0.01292609, -0.012459371, 0.0013054607, -0.011525933, 0.007812472, -0.032521527, 0.0083806515, 0.0020765618, -0.015151461, 0.010152832, -0.009090876, -0.0073389886, 0.006774191, 0.02351182, -0.012729933, 0.007717775, -0.012378202, -7.626461E-4, -0.040178426, -0.013697191, -0.012384966, -0.01622018, 0.02237546, -0.02458054, -0.0029136124, 2.8810604E-4, -0.003612, -0.007514854, -0.007224, -0.008238607, -0.0022963933, 0.012763753, -0.0016918568, -0.0026734888, -0.007494562, 0.037337527, 0.006594944, -0.009077349, 0.0095914155, 0.009929618, 0.0369858, -0.022646023, 0.0071766516, 0.007535146, -0.01558436, -0.0061180787, 0.008975888, 0.019737484, 0.0086444495, 0.007075191, -0.048430562, -9.3682023E-4, -0.017938247, 0.024134113, -0.028652495, 0.01118773, 0.042613484, 0.010524854, 0.015043236, 0.0131222475, -0.009807865, -0.02585218, 0.0058407527, -0.015449079, -0.030573484, -0.0047415956, 0.0056310673, 0.018303506, 0.01876346, -3.4623456E-4, -0.020914428, 0.0042681126, -0.026975011, -0.023268314, 0.00628718, 0.04328989, 0.05035155, -0.0026515056, 0.0024468934, 0.019453393, -0.009970202, 0.01862818, 0.008482113, -0.006801247, -0.006155281, 0.010321933, 0.026596224, 0.044318024, -0.03073582, -0.013413101, 0.007521618, 0.021198517, -0.0039332923, 0.029220674, -0.028165484, 0.004494708, -4.595323E-4, 5.411236E-4, -0.0012116096, -0.005999708, 0.020982068, -0.03468602, -0.0010002331, 0.01479973, -0.005424764, -0.01051809, -0.004843056, 0.0010044607, -0.01834409, -0.005888101, -0.026839731, -0.0026751799, -6.988104E-4, -0.023971776, 0.012209102, -0.009462899, -0.0025720282, 0.03625528, 0.026082158, -0.0035206855, 0.0044372133, -0.0058136964, 0.0026802528, -0.014028629, -0.006618618, -0.021712584, 0.029383011, -0.043371055, 0.008164202, -0.027921978, 0.012973438, -0.013866292, 0.022497214, -0.014840315, 0.047970608, 3.6652668E-4, -0.04821411, -0.007514854, -9.790955E-4, -0.0015667219, 0.0027546573, 0.0051237643, -0.018032944, -0.0068452135, -0.0027648034, -0.0012986966, -0.015773753, -0.035470653, 0.00570209, -0.010666898, -0.027286157, 0.0071563595, 0.18657942, -0.020576226, 0.026258023, 0.05338184, 0.0111268535, 0.020305663, 0.014853843, 0.026717978, -0.0066964044, -0.0015244466, -1.639224E-4, 0.010761595, -0.011796494, -5.4408284E-4, 0.013947461, -0.013947461, -0.0429111, -0.019575147, -0.008468584, -0.023322428, -0.011776202, -3.7899788E-4, -0.03576827, -0.013250764, -0.0055093146, -0.0025585, -0.016937168, -0.0035409776, 0.011512404, 0.003608618, -0.024255864, -0.0017772528, -0.00510009, 0.012351146, -0.02443173, -0.0067369887, 0.019778067, 0.01734301, -0.006463045, 0.014218022, -1.5398771E-4, 0.0025060787, -0.009219393, -0.007081955, 0.016856, 0.014475056, -0.012242922, 0.0124661345, -0.022727191, 0.009449371, -0.03349555, -0.0046164608, 0.021617888, 0.02408, 0.0041362136, -0.019088134, 0.0041497415, -0.0089691235, -0.013731011, 5.3985533E-4, 0.004812618, 0.039258517, -0.02238899, 0.011728854, -0.01536791, 0.005255663, -0.04080072, 0.017545933, 0.015340854, -0.020413887, -0.015814338, -0.02408, -0.020373303, 0.0015455843, -0.033874337, -0.021929033, -0.0013654915, 0.020549169, 0.0028730282, 0.031033438, -0.018655237, -0.025743956, 0.018912269, 0.006172191, -0.023971776, -0.036309395, -0.0022388988, -0.015638473, -0.008346831, -0.016666606, -0.003913, -0.018384675, -0.015990201, 0.01757299, 0.0036559664, -0.0012927781, 0.027813753, 0.02379591, 0.0026058482, -0.0013654915, -0.03344144, 0.024391146, 0.024350561, -0.005154202, -0.023119505, -7.364354E-4, -0.007210472, -0.0063818763, 0.02867955, -0.014962068, -0.012831394, -0.030275865, 6.1425986E-4, -0.012648764, -0.015110876, 0.010220472, -6.780955E-4, -0.021090291, 0.025513977, -0.016125483, -5.411236E-5, -0.025879236, 0.025608674, 0.011891191, -0.011640921, -0.03847389, -0.014975595, -0.001811073, 0.0032112303, -0.04623901, 0.01048427, -0.042721707, 0.011451528, -0.01466445, -0.006784337, 0.029572405, 0.012784045, -0.005827225, 0.021049708, -0.0031943202, 0.006747135, -0.0048498204, 0.017600045, 0.021144405, 0.011661214, -0.027678471, 0.013203416, -0.011552989, -0.006916236, -0.015489663, -0.029166562, 0.0119114835, 0.020657394, 0.002110382, 0.052597214, 0.01352809, -0.015273213, -0.028246652, -0.021442022, 0.038636226, -0.043262832, 0.019926876, 0.010748068, -0.016680134, -0.018952854, -0.0071157753, -0.17305133, 0.010281349, 0.010166359, -0.027177932, 0.0146238655, 0.020346247, 0.042018246, 0.0019311348, 0.0091652805, -0.016314877, 0.0052353707, 0.0084144715, -0.057683777, -0.0155708315, 0.0031182247, 0.029653573, -0.014096269, 0.031249888, 0.021212045, -0.0017823258, 0.038446832, 0.0042681126, -0.0022997754, 0.008373887, 0.004383101, -0.0024790224, 0.013237236, 0.010091955, -0.005269191, -0.011214786, -0.0369858, -0.00628718, 2.9782936E-4, 0.002568646, 0.001980174, -0.008651214, 0.005421382, -0.0049952473, -0.009408787, -0.008637685, 0.03279209, 0.014569753, 0.02867955, 0.006283798, 0.005556663, 0.008164202, 0.0046841013, -0.012587887, 0.012067056, -0.005570191, 0.0011651068, -0.016612494, 0.02393119, -0.00913146, 6.865506E-4, 0.011431236, -0.0019446629, -0.0030472022, 0.0069602025, -0.014434472, -0.029004226, -0.0034902473, 0.0017028484, -0.002529753, -0.0077042473, -0.020156855, -0.011377123, 0.02577101, -0.038203325, 0.006195865, -0.025229888, 0.00359509, 0.01536791, 0.015611416, 9.2667417E-4, -0.02188845, -0.027705528, -0.0012310562, 0.007988337, 0.013514562, -0.015503191, 0.046915416, -0.0155708315, 0.006009854, 0.014542697, -0.032169797, 0.002707309, -0.0032281405, -0.010741304, 0.0052861013, 0.010606023, -0.011363596, -0.016707191, -0.009151753, 0.010653371, 0.00227441, 0.0015371292, -0.007805708, 0.008015393, -0.004859966, 0.0037878652, -0.015476135, -0.010842764, 0.026406832, 0.021617888, 0.02103618, 0.006493483, 0.027286157, 0.019006966, 0.014583281, -0.0030962415, 0.005539753, 0.029274786, 0.014556224, -0.01692364, 0.021942561, -0.018519955, -0.018682292, -2.910653E-4, 0.014177438, 0.0448862, -0.0015143006, 0.0055093146, -0.0040415167, -0.01622018, -0.012445843, -0.08906894, -0.003309309, 0.01140418, 0.031033438, -0.0365529, 0.02734027, -0.010193416, 0.020697977, -0.020806203, 0.021225573, -0.0040990114, -0.009618472, 0.007494562, -0.007068427, 0.0184929, 0.017505348, -0.01586845, -0.012973438, 0.0053368313, 0.03433429, 0.004356045, -0.004068573, -0.0101460675, -0.016044315, -0.033035595, -0.007332225, -0.031276945, 0.0209009, 0.020129798, -5.7652913E-5, 0.012560831, -0.029058337, 0.020129798, -0.02946418, -0.035660043, -0.015449079, -0.0068824156, -0.013893348, 0.028625438, -0.07278112, 0.02414764, 0.0122699775, 0.012209102, -0.02620391, 0.0036897864, -0.013467213, -0.028923057, 0.039664358, -0.0073051685, -0.026893843, -0.0077583594, -0.018046472, -0.029653573, -0.005414618, 0.02521636, 0.008759438, 0.022916585, 0.004816, -0.0037168427, 0.002392781, -2.015474E-4, -0.014745618, -0.03901501, 0.008759438, 0.012053528, 7.706784E-4, -0.0056547415, -0.00479909, 0.029058337, -0.01466445, -0.025811596, 0.026379775, -0.03985375, 0.007021079, -0.024837574, 0.01140418, -0.017802967, 0.0032518145, 0.01699128, -0.035578877, 0.0050155395, -0.043506335, -7.588413E-4, -0.031709842, 0.012838157, 0.013541618, 0.02508108, -0.0031469718, -0.0059253033, -0.037770428, 0.00513391, 0.025135191, -0.0044033932, -0.0066862586, -0.01381218, 0.040692493, 0.020738563, 0.013433393, 0.0062770336, 0.018587595, -0.017721798, -0.0032585787, -0.0731058, 0.025933348, -0.007900405, -0.018858157, 0.004200472, -0.0049580447, 0.007399865, -0.0042410563, 0.008502404, 0.02797609, -0.0020714889, 0.0066862586, -0.013514562, -0.0055296067, 0.0067403708, -0.001959882, 0.0018229102, -0.0104098655, -0.0077854157, 0.009205865, 0.0068824156, -0.0011625702, 0.020156855, 0.013264292, -0.00719018, 0.027353797, 0.012215865, 0.024188224, -0.011769438, 0.003591708, 0.036579955, -0.023755325, 7.157205E-4, 0.0068790335, -0.015949618, -0.017532405, -0.0224431, 0.0028189158, 0.028273707, 0.008779731, -0.02627155, -0.027177932, -0.012804337, -0.013020786, -7.0092414E-4, 0.017857078, -0.025811596, 0.008428, 0.02025155, 0.0069940225, 0.018898742, 0.011458293, -0.0025145337, -0.016531326, 0.017018337, -0.024255864, 0.04751065, 0.025135191, 0.004974955, -0.017667685, 0.01735654, -0.014691506, 0.023322428, -0.038528, 0.0060977866, 0.018357618, 0.012148225, -0.0105722025, 2.0101896E-4, -0.005861045, -0.01699128, -0.0064224605, 0.0038013933, 0.026717978, 0.004065191, 0.027867865, -0.014759146, 0.020427415, -0.010991573, 0.009889034, 0.014028629, -0.028652495, -0.009287034, 0.0124661345, 0.01235791, 0.01543555, -0.0073592807, -0.004193708, 0.0019040786, 0.010098719, -0.0069027077, 0.0017907809, 0.020346247, 0.012094112, 0.001800927, 0.024458786, -0.016396046, -0.018005887, -0.0041463594, 0.019453393, -0.0038250673, 0.013636314, -0.016571911, -0.011708562, -0.014488584, 2.7711448E-4, -2.3695295E-4, -0.022686606, 0.007771888, 0.00871209, 0.023349483, 0.0048667304, -0.011275663, 0.015462607, -0.029707685, 0.004159888, 0.002862882, -0.014136854, -0.016179595, 0.03598472, 0.0056784158, 0.015124405, 0.03116872, -0.019656315, 0.06320324, 0.014813258, 0.035497706, -0.012899034, 0.0013392809, -0.0056547415, -0.029491236, 0.014190966, -0.034090787, -0.0012158371, 0.005418, -0.013223708, 0.003162191, 0.028246652, -0.0090029435, 0.065313615, 0.016707191, 9.740225E-4, 0.01416391, -0.020021573, 0.017018337, 0.008793258, 0.02669092, -0.029761799, -0.0053638876, 0.017004808, -0.009138225, 0.0021881685, -0.02705618, -0.0045995507, 0.0054552024, 0.004951281, 0.005022303, -0.013933932, -0.0038385955, -0.0033955507, 0.0021966237, 0.013413101, -0.011072742, -0.012148225, -0.010416629, 0.032278024, -0.0051812585, -0.008874427, -0.021942561, 0.008867663, -0.012479663, -7.7701965E-4, -0.0018127641, 0.026095685, 0.0043898653, -0.00994991, -0.011106562, 0.035010695, 0.0060876403, -0.00453191, 0.007920696, -0.02811137, 0.0078598205, 0.005262427, -0.0029558877, 0.009300562, -0.022294292, -0.012662292 ], + "id" : "06a8eced-9cc9-4130-8320-92aec2b930f5", + "metadata" : { + "source" : "movies.csv" + } + }, + "dd2c4aa0-689e-4e93-8e53-b6dce0c6d471" : { + "text" : "As Han teaches Dre that kung fu is not about punches and parries but maturity and calm Dre realizes that facing down the bullies will be the fight of his life.,51.46,Columbia Pictures-Sony Pictures-Overbrook Entertainment-Jerry Weintraub Productions-China Film Group-Zwart Arbeid,6/10/10,40000000,359126022,140,Released,A Challenge He Never Imagined. A Teacher He Never Expected.,6.5,5288,Jaden Smith-Jackie Chan-Taraji P. Henson-Wenwen Han-Yu Rongguang-Tess Liu-Xu Ming-Wang Ji-Zhensu Wu-Zhiheng Wang-ZhenWei Wang-Jared Minns-Zhao Yi-Shijia L�_-Bo Zhang-Luke Carberry-Cameron Hillman-Ghye Samuel Brown-Liang Geliang,martial arts-duringcreditsstinger-karate kid-the karate kid,/o4gwFcm6qRgnC9Gff4giy0POHdF.jpg,/9Cip74Gl1xOkRP0e4OAiPZp8C4k.jpg,1885-8856-10495-710832-18360-57277-11231-1593-8960-9502-13053-88751-75149-27022-32657-49444-8355-9543-10527-23172-5175\r\n772,Home Alone 2: Lost in New York,Comedy-Family-Adventure,en,Instead of flying to Florida with his folks Kevin ends up alone in New York where he gets a hotel room with his dad's credit card���despite problems from a clerk and meddling bellboy. But when Kevin runs into his old nemeses the Wet Bandits he's determined to foil their plans to rob a toy store on Christmas Eve.,38.514,20th Century Fox-Hughes Entertainment,11/19/92,18000000,358994850,120,Released,Guess who's alone in New York this Christmas!,6.7,8379,Macaulay Culkin-Joe Pesci-Daniel Stern-Catherine O'Hara-John Heard-Devin Ratray-Hillary Wolf-Maureen Elisabeth Shay-Michael C. Maronna-Gerry Bamman-Terrie Snell-Jedidiah Cohen-Senta Moses-Daiana Campeanu-Kieran Culkin-Anna Slotky-Tim Curry-Brenda Fricker-Eddie Bracken-Dana Ivey-Rob Schneider-Leigh Zimmerman-Ralph Foody-Clare Hoak-Monica Devereux-Bob Eubanks-Rip Taylor-Jaye P. Morgan-Jimmie Walker-Patricia Devereux-Aimee Devereux-A.M. Columbus-Joe Liss-Teri McEvoy-Ally Sheedy-Harry Hutchinson-Clarke Devereux-Sandra Macat-Venessia Valentino-Andre Lachaumette-Rick Shafer-Rod Sell-Ron Canada-Cedric Young-William D'Ambra-Mark Morettini-Fred Krause-James Cole-Donald Trump-Warren Rice-Thomas Civitano-Daniel Dassin-Donna Black-Abdoulaye NGom-Peter Pantaleo-Michael Goldfinger-Mario Todisco-Anthony Cannata-Eleanor Columbus-Karen Giordano-Fran McGee-Leonard Tepper-Kevin Thomas-Al Cerullo-Dan Buckman-Laurence S.", + "embedding" : [ 0.014994781, -0.033156507, -0.015848478, -0.033404354, -0.0077176997, 0.013989622, 0.0022736578, -0.011394107, -0.019690117, -0.037342377, 0.035139285, 0.031531725, 0.026505927, 0.022691827, 0.006086036, -0.0069259643, 0.026175464, -0.0057865535, 0.024894917, -0.03307389, 0.0053356085, -0.009590327, -0.02083297, -0.0063820765, -0.007931124, 0.014471548, 0.02886048, -0.003259885, -0.009356248, -0.02103951, 0.008640244, -0.0031634995, -0.008454358, -0.012041264, 0.007435429, 0.009617865, 0.0075180447, -0.0058794967, 0.022526596, -0.0034320012, 7.426823E-4, 0.0021135896, -0.011414761, 0.002265052, -0.010106675, 0.014953474, 0.016289096, -0.03205496, -0.010574833, 0.02886048, 0.02822709, 0.04089486, -0.010278792, -0.030182334, -0.0048330287, -0.0168261, -0.005222012, 0.028116936, -0.0015275332, -0.008709091, -0.015697017, -0.0067504058, -0.018946575, -0.009734904, -0.028612632, 0.026767544, -0.003354549, -0.020956894, 8.532671E-4, 0.0043614297, 0.024881149, 0.005235781, 0.014609241, 0.026863929, 0.014388932, -0.018189263, -0.0077521233, -0.006289134, -0.005376917, 0.011896687, -0.0023252927, -0.021590283, -0.017569643, 0.013817505, 0.018161723, -9.3803444E-4, -0.013204771, 0.026203003, -0.024289068, 0.013053308, -0.008254703, 0.017597182, 0.0068571176, 0.015036089, -0.02161782, 0.02021335, 0.010519755, -4.027524E-4, -0.0116213, -0.027084239, 0.0044027376, -0.018065339, 0.0030877683, -0.0035903484, -0.023352755, 0.01703264, -0.013452618, -0.020860508, 0.009535249, -0.0075662374, -0.0017306305, -0.009487056, 0.024013681, -0.051029075, -7.55591E-4, -0.027538626, 0.0041480055, -0.0016635051, -0.007469852, -0.01846465, 0.020351045, 0.02263675, 0.015449169, -0.03464359, 0.049597066, 0.0091428235, -0.0024801975, -0.011869147, -0.0064268266, -0.005631649, 0.042739946, 0.009652289, 0.024578223, 0.010519755, -0.022182362, 0.025280459, -0.025101457, 0.017266719, -0.019304577, -0.026313156, 0.026891468, 0.019524885, -0.023201292, -0.023793373, -0.02642331, -0.016192712, 0.017597182, 0.017913876, -0.001756448, -0.0090326695, 0.013693581, 0.014595471, 0.010994797, 0.006736636, 0.025239151, 0.021135895, -0.008612705, -0.014981013, 0.004478469, -0.0044233915, 0.0131910015, -0.018850189, 0.0015507689, -4.453512E-4, -0.0063717496, 0.02146636, 0.015972402, -0.022430211, -0.009528364, -0.0056385337, -0.0018347609, 0.037700377, 0.0020206466, 0.010326984, 0.004719432, 0.0078072003, 0.03343189, -0.02186567, -0.046512738, -0.0057762265, 0.019538654, -8.2701934E-4, 0.049266603, 0.02985187, -0.010086021, 0.021342434, 0.009459518, -0.020585123, -0.010781372, -0.016068788, 0.03166942, 0.014705626, -0.003597233, -0.025514537, -0.6331681, -0.022760674, -0.006722867, 0.0051979157, 0.0059001506, 0.013452618, 0.007208235, 0.013645389, -0.028667709, 0.003325289, -0.013177233, 0.0044233915, 0.0033184043, 0.0046230466, -0.01641302, -0.0066884435, 0.017927645, -0.023338985, 0.01663333, -9.862271E-4, -0.013989622, 0.039820854, -0.002390697, -0.0038037726, 0.015586862, 0.0068399063, -0.013184117, -0.007690161, 0.0076075452, -2.1923328E-4, -0.020158274, 0.022746906, 0.012048149, 0.017308027, 0.04287764, -0.008357973, -0.007476737, 0.043593645, 0.040454242, 0.007986201, -0.02483984, 0.0054285517, 0.008715975, -0.021741744, -0.007153158, -0.0014647107, 0.028557554, -0.012144534, 0.014375162, 0.015600631, -0.008764167, -0.0066781165, -0.01966258, -0.02742847, -0.025900077, -0.012089456, -0.005356263, -0.014554163, 0.013803736, -0.014567933, -0.0063683074, 0.031531725, 0.018767573, 0.0102650225, -0.008750399, 0.01966258, -0.021948285, -0.0017968953, 0.003703945, -0.0018932805, 0.0033906933, 1.8405699E-4, -0.030953415, -0.008089472, 0.001352835, 0.018175492, 0.036048062, -0.0068295794, 2.5795947E-4, 0.025845, 0.0047676247, -0.009101516, -0.0016075673, 0.012192726, 0.025390612, -0.0039621196, -0.014065353, 0.031366494, -1.8513271E-4, -0.003240952, 0.014333854, 0.0056901686, 0.016894948, 3.5606584E-4, 0.0068433485, 0.008323549, -0.014037814, 0.002151455, 0.006347653, -0.05650926, -0.015710786, -0.002495688, 0.031944804, -0.007435429, -0.02161782, 0.024233991, -0.012178957, -0.015752094, 0.02803432, -0.006709098, -0.0048467983, -0.008771053, -0.025569614, 0.008185856, -0.009590327, -0.029246021, 2.491385E-4, 0.0048158173, 0.03464359, 0.0073390435, -0.0037177145, -0.0078003155, -0.0059689973, -0.01002406, 0.008199626, 0.028364785, -0.01131149, 0.0057314765, 0.007153158, -7.6032424E-4, 0.0046643545, -0.009893252, 0.010457793, -0.008729745, 0.021177202, 0.0029328635, 0.005177262, 0.0027521413, 0.007903585, -0.018712496, -0.02785532, -4.883803E-4, -0.0025421593, -0.019125575, -0.0071256193, -0.0089294, -0.015104936, -0.015724555, -0.01030633, -0.0026678042, -0.0104096, 0.0038726192, 0.00742166, 0.0037659071, -0.009789981, -0.007180697, -0.03227527, 0.011979302, 0.0020068774, -0.025005072, -0.0012263295, 0.01722541, -0.028805403, -0.005569687, 0.0372873, -0.0041548903, 2.2912998E-4, 0.0050774342, -0.012998232, -0.019359654, 0.0034423282, -0.0044027376, 0.018203031, 0.030430181, 0.011215106, 0.022581672, -0.007951778, 0.018519726, -0.007600661, 0.0027108334, -0.0025834674, -0.011428529, -0.026753774, -0.009955213, 0.025087688, 0.005538706, 0.012826115, -0.00310498, -0.024784762, 0.012633344, -0.005538706, -0.007834739, -0.006936291, 0.0068399063, -0.012984462, 0.013445734, 0.0057108225, 0.008178972, 0.0070223496, 0.020474968, 0.020805432, -0.0062443833, -3.0098858E-4, -0.015449169, 0.012185842, -0.024881149, 0.0066746743, -0.021204742, 0.015132475, -0.020791663, 0.010746948, 0.0010060205, -0.016178943, -0.003807215, -0.009246093, 0.028640172, -0.027910396, 0.011373453, -0.016619561, -0.0027332087, -0.006240941, -0.0043511027, 0.029246021, 0.013934544, -0.010953489, 0.004103255, -0.0010731458, 0.0059345737, 0.0061514406, -0.022306288, -0.019566193, -0.018588573, 0.0122891115, 0.014251239, -0.031201262, 0.0059242467, 0.03065049, -0.006220287, 0.02968664, -0.025734846, 0.0041342364, 0.012055034, 0.0352219, -0.0011024056, 0.016853638, -0.023201292, 0.0077039306, 7.994807E-4, -0.004946626, 0.031283878, -0.009218555, 0.023986142, -0.0048089325, -0.007160043, 0.012302881, -0.010230599, -0.008399281, 9.96554E-4, 0.029548945, 0.024798533, -0.012578268, -0.0016161731, 0.036350984, 0.011180682, 0.046595354, 0.009549018, -0.007256428, 0.012247804, -0.03626837, -0.020557584, -0.0054973983, -0.022457749, 0.005641976, -0.0065989434, 0.0066092703, -0.008089472, -0.0045748544, 0.0028640172, 0.011614416, 0.01151803, -0.013087732, -0.032578193, 0.029989563, 0.017018871, -0.013535234, -0.014650549, -0.010037829, -0.004485354, -0.044227034, -7.796873E-4, -0.035579905, 0.009893252, 0.006502558, 0.01864365, -0.014774472, -0.011979302, 0.001006881, -0.01823057, 0.013163463, 0.0144027015, 0.0080206245, -0.0043786415, -0.01663333, 0.0057624574, 0.009487056, 0.005098088, -0.0051049725, 6.5103034E-4, 0.001346811, 0.009624749, 0.015476707, -0.0075455834, -0.025845, 0.023517987, 0.0059689973, -0.0057073804, -0.0033080773, -0.0082615875, 0.0024165143, -0.021122126, -0.017073948, -0.023738295, -0.030402644, 0.006292576, 0.080908485, 0.044337187, 0.007772777, -0.0023889758, -0.006048171, 0.0072908513, -0.018547265, -0.0052048, 0.0042306213, 0.0026678042, 0.016261559, -0.04133548, 0.015903557, 0.012041264, 0.018974112, -0.021493897, -0.0011669493, -0.012488767, -0.008640244, -6.716843E-4, -0.0014156575, 0.0072908513, 0.018423341, 0.033789895, 0.0017469815, -0.0017814048, 0.02026843, 0.014884627, 0.032550655, 0.004237506, -0.0013356233, 0.00900513, 0.023999913, 0.012901846, -0.025087688, 0.0027779588, 0.032192655, 0.0034199532, 0.037920687, -0.00360756, -0.006488789, 0.013101501, 0.018051568, -0.024949994, 0.02003435, -0.021053279, -0.020323506, 0.0034199532, 0.027869089, -0.04764182, 0.02645085, -5.58948E-4, -0.023132445, -0.004791721, 0.02344914, -0.025459459, -0.0045817387, -0.019579962, 0.0034595397, 0.013383772, -0.012592036, -0.026010232, 0.01642679, -0.021962054, -0.005666072, -0.016715946, -0.007456083, -0.015407861, 0.0019982716, 0.021590283, 0.007827855, -0.0046437006, -0.008151433, -0.0063683074, 0.0034113473, -0.018134184, 0.023394063, -0.0031221916, 0.010368292, -0.014113545, -0.0127503835, -0.04144563, -0.0105954865, -0.022691827, 0.0017409575, 0.0140928915, 0.0017530057, 0.009886366, -0.004340776, 1.0332363E-4, 0.014526625, 0.007820969, -0.012447459, -0.015352784, 0.00940444, -0.020736584, 0.017734874, 0.029246021, 0.017500797, 0.0057418034, -0.0019500789, -0.038003303, 0.009865712, -0.021576513, -0.00810324, -0.024523146, -0.0045782966, -0.0022771, -0.032440502, -0.022003362, 9.302892E-4, -0.018285647, 0.004764182, -0.005903593, 0.029218482, -0.0017366546, 0.013762428, 0.016357943, -0.00860582, -0.0052598775, 0.00853009, -0.015049859, 0.0090326695, 0.038113456, -0.0041617746, 0.01312904, 0.009225439, -0.02461953, -0.0034113473, 0.030017102, 0.0037831187, 0.0027435357, 0.01524263, -9.5610664E-4, -0.0017056736, -0.01801026, -0.0026299388, 0.010223715, 0.0091428235, 0.017789952, -0.019524885, 0.00465747, 0.0055180523, -0.020888047, 0.019469809, -0.021135895, -0.013783082, -0.0078072003, 0.010643679, 0.0072633126, -0.019497346, 0.010746948, -0.015504247, 0.009370018, -0.031338956, -0.028750325, -0.02702916, 0.004309795, 0.023283908, 0.022072209, 0.05089138, 0.01221338, 0.033597123, 0.0052288966, -0.006798598, 0.028392322, -0.035166826, -0.0041239094, -0.045576427, 0.013452618, 0.017872568, 0.008089472, 0.018987883, 0.01562817, 0.0021979266, 0.010698756, 0.024151376, 0.018161723, 0.0013743496, -0.021480128, -0.009225439, 0.009060208, -0.020915587, 0.0059621125, -0.02344914, -0.0066230395, 0.011910455, -0.013672927, -0.0057521304, -0.015779633, 0.032605734, -0.0035094535, -0.008213395, -0.00912217, -0.0026901795, -0.009163477, -0.0017762413, -0.02183813, -0.007931124, 0.003283981, -0.017115256, 0.013431964, -0.0044130646, -0.030898338, -0.0041307937, 0.023696987, -0.0058140922, -0.039793313, -0.014003391, -0.010698756, -0.006344211, -0.0206402, -0.0032461155, -0.025776153, -0.0052461084, -0.0015542111, -0.025982693, 0.022939675, 0.0075868913, -0.034726206, 0.033018813, -0.0010283956, 0.048991214, -1.2758128E-4, 0.039132386, 0.020516276, 0.008860553, -0.006788271, 0.0065507507, 0.023917297, -0.023986142, 0.028915556, 0.022182362, -0.0026264964, 0.029246021, -0.026919007, 0.0059552277, -0.049376756, -0.030953415, 0.041252863, 0.016647099, 0.027552394, -0.033514507, -4.5180556E-4, -0.030815722, 0.0069190795, -0.01642679, 0.031972345, 4.5395704E-4, -0.03125634, -0.051166765, -0.0032116922, 3.1303673E-4, 0.016757254, 0.008771053, -0.026326926, 0.004950068, -0.019483577, -0.0035696942, -0.015614401, -0.0076075452, 0.034092817, -0.016963793, -0.00555936, 0.004740086, 0.021769283, 0.002810661, -0.002476755, -0.017721105, 0.029301098, -0.01211011, 0.018285647, 0.008578282, -0.008254703, 0.0093631325, 0.014967243, -0.019786503, -0.007917355, -0.015077397, 0.012709076, 0.013542119, 0.020557584, -0.01801026, 0.022320056, -0.02664362, -0.0035249442, 0.004082601, -0.02044743, 0.02464707, -0.048165057, 0.003168663, -0.0061893063, -0.002256446, -0.008805475, -0.024178913, 0.010196176, 0.012385497, 0.024536915, -0.025321767, 0.022058439, -0.03188973, -0.011049873, -0.05645418, -0.006709098, -0.0064440384, -0.020461198, 0.017652258, -0.013955198, -0.0044233915, -0.016096327, -0.008110126, -0.0058140922, -0.0059380163, -0.008722859, 0.0066746743, 0.010898411, -0.008151433, -0.005683284, 0.00610669, 0.014912166, 0.011862263, -0.010629909, -0.013383772, -0.01681233, 0.0061961906, -0.006967272, 0.020695277, -0.0055524753, -0.01901542, 0.025266688, 0.0023270138, 0.039600544, 0.0024612646, -0.0029552388, -0.027937936, 0.00811701, -0.015063629, 0.04987245, 0.0017134189, 0.013714235, 0.041776095, 0.0055042827, 0.005641976, 0.015256398, 0.0015464659, -0.017789952, 0.02121851, -0.0013209934, -0.019304577, -0.007414775, 0.021700436, 0.012812345, 0.026189232, -0.0052943006, -0.015559323, -0.0045163347, -0.03125634, -0.017996492, -0.016674638, 0.031807113, 0.013652273, 0.0072013508, -0.021934515, 0.005683284, -0.013776197, 0.014306316, -0.02724947, -0.0023528314, 0.015545554, -0.0052770893, 0.034313127, 0.018987883, -0.008041278, -0.007208235, 0.005903593, 0.015118705, -1.0999315E-4, 0.024178913, -0.014086007, -0.022457749, -0.005383801, 0.0055628023, 0.004705663, -0.0017203036, 0.007834739, -0.025335535, -4.216852E-4, 0.017252948, 0.022609212, -0.0050326837, -0.01002406, -0.003345943, -0.0054767444, -0.0126195755, 0.0028967191, -0.010189291, -0.01391389, -0.034781285, 0.013796851, 0.0027727953, -0.0030791627, 0.022953445, 0.026010232, -0.015793402, -0.0178588, -0.027166855, -0.01542163, -0.013046424, -0.0033924144, 8.519762E-4, 0.03131142, -0.013838159, 0.013996506, -0.011772762, 0.0046540275, -0.013480158, 0.013817505, -0.0032461155, 0.042822562, 0.01602748, -0.0464852, -0.0018192704, -0.011456069, -0.012165188, -0.003325289, -0.01840957, -0.022980982, -0.004743528, -0.014884627, -0.006495673, -0.01862988, -0.029934486, -0.012034379, -0.012041264, -0.020598892, 0.010030945, 0.21854654, -0.002244398, 0.014237469, 0.027345855, 0.008488782, 0.023752065, 0.012653998, 0.024757225, -0.016592022, 5.3571234E-4, 0.0063855187, 0.01620648, 7.8399025E-4, -0.006041286, 0.0059930934, -0.02084674, -0.031944804, -0.013624735, -0.017404411, -0.040344086, -0.012199611, -0.009445748, -0.0064233844, -0.030980954, 0.011531799, 0.00931494, -0.0058140922, 0.011462953, 0.011951763, 0.013535234, -0.028998172, -0.0114973765, 0.007827855, 0.02021335, -0.031338956, -0.0031221916, -0.02366945, 0.008378627, 0.016743485, 0.0079104705, 0.01645433, -0.0034440493, -9.165199E-4, -0.0025955155, -0.010113561, 0.030678028, -0.024192683, 0.003628214, -0.017707337, -0.0028054975, -0.035690058, -0.009900136, 0.024082528, 0.02724947, -0.022898367, 0.0027435357, 0.0010473283, 0.007944893, -0.006715982, 0.014788242, 0.0047469707, 0.025569614, -0.02585877, 0.020392353, 0.005631649, 0.0016626446, -0.028116936, -0.0039380235, 0.0018192704, -0.02404122, -0.014196161, -0.04108763, -0.017721105, -0.015187552, -0.007917355, -0.025721077, 0.0059104776, -0.0024199567, 0.015311476, 0.035194363, -0.0105059855, -0.03505667, -0.009308055, -0.010141099, -0.009810636, -0.024702147, 0.014168623, -0.0063820765, -0.013975852, -0.014554163, -0.017184103, -0.03290866, -0.02327014, 0.014967243, 0.0036867335, 0.013067078, 0.026010232, 0.012206496, -0.008729745, -0.008839899, -0.04367626, 0.0061445558, 0.024702147, -0.005872612, -0.025087688, -0.027400933, 0.01783126, 0.0075868913, 0.017363103, -0.010987911, 0.0027486992, -0.041418094, 0.006512885, -0.02745601, 0.0011979302, 0.030815722, 0.018478418, -0.014540395, 0.026547235, -0.024468068, -0.0064543653, 0.00180378, 0.014196161, 0.004072274, 0.004227179, -0.009769327, -0.021769283, 0.004750413, 0.010623025, -0.027042931, 0.02182436, -0.02464707, 0.014306316, -0.0048915483, -5.129069E-4, 0.006440596, 0.021301126, 0.018189263, 0.014444009, -4.0103123E-4, -7.1729516E-4, -0.0142237, -0.004234064, 0.0064268266, 0.02522538, -0.01562817, -0.0094732875, -0.0028175456, 0.005235781, -0.034891438, -0.0024388896, -0.0035387133, 0.0017134189, -0.011834725, 0.03147665, -0.014788242, -0.045961965, -0.012006841, -0.02043366, 0.044612575, -0.03321158, 0.024468068, 0.011483607, -0.017500797, -0.03786561, -0.01481578, -0.17690814, 0.038278688, 0.010974143, -0.033734817, 0.02066774, 0.02146636, 0.025610922, 0.017349334, 0.007896701, -0.015903557, 0.01703264, 0.022209901, -0.017803721, 8.9328416E-4, -0.003166942, 0.037535146, -0.02364191, 0.027937936, 0.02886048, -0.007972432, 0.026987853, -0.013473272, -0.0054733017, 0.009080862, -0.004678124, 0.0016351059, 0.010678102, -0.002769353, -0.012488767, -0.010182407, -0.023159984, -0.009487056, 0.0071393885, -0.0035163383, 0.009149709, 0.003848523, 0.0082409335, -0.019497346, -0.013246079, -0.008144548, 0.026684929, 0.021920746, 0.024715917, 0.0035800214, 0.0066746743, 0.028364785, 0.03646114, -1.1295139E-4, -0.0010869151, -0.009624749, -0.0029414694, -0.03211004, 0.0139620835, -0.014650549, 2.9797654E-4, -0.0032134133, 0.0093837865, 0.00350429, -0.0048399135, 0.008743513, -0.02006189, 0.0036867335, 0.007669507, -0.0116075305, -0.013762428, -0.018395802, 0.005759015, 0.003473309, -0.008612705, 0.015462939, -0.037782993, -0.0046058353, 0.010120445, 0.010905296, 0.0067504058, -0.0033184043, -0.026092848, 0.01902919, -0.00992079, 0.014292547, -0.02183813, 0.03527698, -0.01843711, 0.0066092703, 0.006123902, 0.0031910383, 0.01151803, -0.011999956, 0.017748645, -0.008461243, -0.0027297663, -0.0068261367, -0.029025711, -0.0037521378, -0.0058794967, 0.0016703898, 0.008943168, -9.079141E-4, -0.003776234, 0.003283981, -0.01484332, -0.025542075, -0.007896701, 0.014209931, 0.017913876, 0.012254688, -0.00122719, 0.026437081, 0.023765834, -0.013328695, -0.018740036, 0.021190973, 0.03125634, 0.011731454, 0.021659128, 0.009845058, -0.0025524863, -0.023063598, 0.006977599, 0.0039242543, 0.056178797, 0.0030034313, -0.014994781, -0.010691871, -0.008165202, 0.0037727917, -0.092309475, 0.014788242, 0.020695277, 0.04106009, -0.014967243, 0.026836392, -0.002036137, 0.028474938, -0.014526625, 0.02365568, -0.010478447, -0.022003362, 0.011111835, -0.007820969, 0.010478447, -0.022388903, 0.015999941, -0.022402672, -0.03390005, 0.04106009, -0.017473258, 3.0615207E-4, 0.007862277, -0.0064646923, -0.022801982, 0.034505896, -0.029934486, 0.01722541, 0.0026437081, 0.010836449, 0.015779633, -0.016922485, 0.02968664, -0.033156507, 0.009101516, -0.02302229, -0.01941473, -0.01580717, 0.01846465, -0.04910137, 0.013163463, 0.010168637, 1.3238172E-5, -0.014540395, -0.0023132446, -0.003996543, -0.02605154, 0.015641939, 0.016963793, -0.02908079, -0.047779515, -0.014981013, -0.042850103, -0.012048149, 0.023944834, 0.022485288, 0.022664288, -0.004678124, -0.008888091, -0.018919036, 0.006994811, -0.007628199, -0.030678028, 0.008323549, 0.013452618, 0.003827869, 0.006251268, 0.005380359, 0.018326955, -0.010271908, -0.009094631, 0.016220251, -0.032192655, -0.009039554, -0.0036832911, 0.011263298, -0.026684929, -0.024949994, 0.022347596, -0.022127286, -0.0089294, -0.026946545, -0.005882939, -0.05628895, 0.02026843, 0.021369973, 0.002600679, 0.007476737, 0.0051049725, -0.036185753, -0.008654013, 0.019827811, -0.014678087, 0.017184103, 0.0019690117, 0.02623054, 0.019538654, 0.009927674, -0.0033614335, 0.022581672, -0.009569672, -0.0010378619, -0.060419746, 0.007793431, -0.0046505854, 0.0039896583, -0.020337274, 0.0019845022, 0.025555845, -0.00476074, 2.8399206E-4, 0.010602371, -0.0011557617, 4.845077E-4, 0.015876018, -0.002213417, -0.03343189, -0.008908746, 0.013968968, -0.008578282, -0.007208235, 0.003996543, -0.023614371, 0.0034457706, 0.010285676, -0.015283938, 0.005886381, 0.016578253, 0.012908731, 0.025514537, -0.002452659, 6.850233E-4, 0.015160013, -0.019469809, 0.00820651, 0.015049859, 0.01212388, -0.031201262, 0.02382091, 0.011758993, 0.022512827, 0.02547323, -0.007917355, -0.014485317, 0.009493941, -0.017046409, 0.001735794, 0.02304983, -0.013638505, 0.023366524, 0.01642679, -0.0024354472, 0.029190943, 0.0030550663, -0.0064440384, -0.0066230395, 0.03125634, -0.010444024, 0.042409483, -0.0066987704, -0.014347624, -0.014719395, -0.0070120227, -2.9797654E-4, 0.008874322, -0.017872568, 3.7177146E-4, 0.002149734, -0.0057831113, -0.008681552, -0.01131149, -0.02788286, 0.007979317, -0.001908771, 0.0023545525, 0.001274522, 0.005824419, 0.01840957, 0.0064853462, -0.0014974128, -0.011600646, 0.0016290818, 0.013445734, -0.0049672797, -0.039710697, 0.02482607, -0.00675729, 0.03384497, 0.007593776, 0.011359683, 0.0062340563, -0.0026092848, 0.012502536, 0.015999941, -0.013122155, -0.019855348, 0.008137664, 0.041886248, -0.02241644, -0.006030959, 0.011132489, 0.01723918, 0.017996492, -0.014237469, -0.014168623, 1.9134504E-5, -0.017087717, 0.011132489, -0.006123902, -0.02182436, 0.0015817498, 0.022884598, 0.027469778, -4.8106536E-4, -0.020488737, 0.0028158245, -0.027015392, 0.012337305, -0.012998232, -0.037920687, -0.016702177, 0.041831173, 0.004488796, 0.010602371, 0.032082498, -0.012571382, 0.03585529, 0.02547323, 0.01801026, -0.0030739992, -0.0016015432, -0.00801374, 0.012206496, 0.004530104, -0.030347565, -0.010636794, 0.0025972365, -0.012667768, -0.00164113, 0.021686668, -0.027993012, 0.049211524, 0.019001652, -0.0046023927, 0.0052977432, -0.013803736, 0.014499086, -0.015889786, 0.0010559342, -0.011194452, -0.0050189146, 0.010127329, -0.013838159, 0.010581717, -0.028474938, -0.0051152995, -0.010395831, 0.015958633, 0.014760704, -0.0046299314, -0.0105059855, 0.01880888, 0.0048227017, 0.028419862, 0.00430291, -0.01762472, -0.0043751993, 0.0103751775, -0.007166927, -0.0031703843, -0.038361307, -0.010650563, -0.01484332, -0.004667797, -0.015765863, 0.02642331, -0.013080847, 0.0028278725, 0.0072701974, 0.0066884435, 0.0067917136, -0.021521436, -0.006450923, -0.022306288, -0.02803432, 0.011462953, -0.015201322, -0.01623402, -0.012860538, -0.019566193 ], + "id" : "dd2c4aa0-689e-4e93-8e53-b6dce0c6d471", + "metadata" : { + "source" : "movies.csv" + } + }, + "1306693f-7f2c-44cf-adef-dbe8adca6d7d" : { + "text" : "Pictures-Legendary Pictures-Hollywood Gang Productions-Atmosphere Entertainment MM-Nimar Studios-Cruel & Unusual Films,3/5/14,110000000,337580051,102,Released,Seize your glory!,6.09,5844,Sullivan Stapleton-Eva Green-Lena Headey-Callan Mulvey-David Wenham-Rodrigo Santoro-Jack O'Connell-Andrew Tiernan-Ashraf Barhom-Andrew Pleavin-Hans Matheson-Peter Mensah-Ben Turner-Christopher Boyer-Fred Ochs-Price Carson-John Michael Herndon-David Pevsner-Peter Ferdinando-Igal Naor-Luke Roberts-George Georgiou-Farshad Farahat-Christopher Sciueref-Steven Cree-Caitlin Carmichael-Jade Chynoweth-Kevin Fry-David Sterne-Gregor Truter-Vincent Walsh-Nick Court-Mark Killeen-Stefan Ivanov-Atanas Srebrev-Mark Aaron Wagner-Nancy McCrumb-Bo Roberts-Gregory Shelby-Wayne Dalglish-Velimir Velev-Dimo Alexiev-Georgi Stanislavov-Dimiter Doichinov-Velizar Peev-Aleksandar Belovski-Gerard Butler-Michael Fassbender,based on comic-based on graphic novel-ancient greece-duringcreditsstinger-sea battle-hand to hand combat-naval warfare-sparta greece-5th century bc-athenian,/aOg92xVWjBRmALsHCJsz2lWnmsG.jpg,/Admlp6IYUI9UJEx451dvGldK7Mh.jpg,1271-703402-97020-64686-124905-86834-184315-138103-225574-68724-91314-82700-102382-49017-76649-137113-136797-119450-127585-57158-80274\r\n414,Batman Forever,Action-Crime-Fantasy,en,Batman must battle a disfigured district attorney and a disgruntled former employee with help from an amorous psychologist and a young circus acrobat.,46.556,Warner Bros. Pictures-Tim Burton Productions-Polygram Pictures,6/16/95,100000000,336529144,121,Released,\"Courage now, truth always, Batman forever!\",5.41,4835,Val Kilmer-Jim Carrey-Nicole Kidman-Tommy Lee Jones-Chris O'Donnell-Michael Gough-Pat Hingle-Drew Barrymore-Debi Mazar-Elizabeth Sanders-Ren�� Auberjonois-Joe Grifasi-Philip Moon-Jessica Tuck-Dennis Paladino-Kimberly Scott-Michael Paul Chan-Jon Favreau-Greg Lauren-Ramsey Ellis-Michael Scranton-Eileen Seeley-David U. Hodges-Jack Betts-Tim Jackson-Daniel Reichert-Glory Fioramonti-Larry A. Lee-Bruce Roberts-George Wallace-Bob Zmuda-Rebecca Budig-Don Wilson-Sydney D. Minckler-Maxine Jones-Terry Ellis-Cindy Herron-Dawn Robinson-Gary Kasper-Amanda Trees-Andrea Fletcher-Ria Coyne-Jed Curtis-William Mesnik-Marga G�_mez-Kelly Vaughn-John Fink-Noby Arden-Marlene Bologna-Danny Castle-Troy S. Wolfe-Christopher Caso-Gary Clayton-Oscar Dillon-Keith Graham-Kevin Grevioux-Mark Hicks-Corey Jordan-Randy Lamb-Maurice Lamont-Sidney S.", + "embedding" : [ 0.007851254, -0.028658777, -0.0037964724, -0.046794835, -0.019536369, 0.03390654, 0.0012507626, -0.0063115926, -0.022717655, -0.03863769, 0.01383996, 0.028495636, 0.020324893, 0.0036163353, 0.0095098745, 0.0062096287, 0.017320342, -0.009047636, -0.0029093826, -0.022092273, 0.015362628, 6.173091E-4, -0.017864153, 0.016694961, -0.0025168199, -0.0018030695, 0.01990344, -0.01324177, -0.0134253055, -0.0037556866, 0.011447197, -0.009713803, -0.0016144355, -0.0088641, -0.01684451, 0.0036843116, 0.0062130275, -0.008673767, 0.0049962527, 0.003422603, -0.0049486696, 7.822577E-5, -0.0020409862, -0.023886846, -0.024947276, -0.006369373, 0.013935127, -0.018435154, -0.0061416524, 0.028169349, 0.029583255, 0.045054644, -0.015688913, -0.040133167, -0.0074026114, 0.0051661935, 0.0066582714, -0.0045340145, 0.013065031, -0.0027037545, 0.0011139604, -0.020542417, -0.01995782, -0.014723651, -0.01203859, -0.010665471, -0.016626986, -0.008476635, 0.0016620188, -0.0033070436, 0.03757726, 0.029420111, -0.0010051985, -0.0026578705, 3.3005646E-5, -0.03869207, -0.018489534, -0.006382968, -0.012595995, 0.009829363, 0.019753892, -0.02179318, -0.011542364, 0.0049520684, 0.0071171112, 4.0637038E-4, -0.013935127, 0.010747042, -0.035374828, 0.013792377, 0.010624684, 0.016830914, -0.004166943, -0.001118209, 0.007191885, 0.025654228, -0.021711607, 0.03257421, 0.0018234623, -0.031785686, 0.0061518485, -0.0129970545, 0.00511861, -0.012242518, -0.0063523785, -0.01495477, 0.004129556, 0.005349729, 0.018707057, 0.008830112, 0.015281056, -1.4843246E-5, 0.018027296, -0.041084833, -0.0054550925, -0.0070355395, 0.02939292, -0.016518224, 5.7439914E-4, -0.02524637, 0.007626933, 0.014152651, -0.0049622646, -0.03211197, 0.03306364, 0.034640685, -0.0012889992, -0.017768987, 4.6434934E-6, -0.008306695, 0.0460335, -0.0020783732, 0.018639082, -0.011222876, -0.017836962, 0.047474597, -0.01930525, 0.016749343, -0.024485037, 0.00434708, 0.028577207, 0.0331724, -0.021072632, -0.0127931265, -0.028414063, 0.016300699, 0.00280232, -0.003062329, 0.009618636, 0.010930577, 0.029175397, 0.012194935, 0.02101825, 0.0185847, 0.020134559, -0.022173846, -0.019536369, 0.008741743, 0.0076881116, -0.012045388, -2.2984462E-4, -0.010434351, -0.0065665036, -0.011386018, 0.0046937587, 0.011698709, 0.020066584, -0.027408015, -0.012963067, -0.0012686064, -0.010189637, 0.024022799, -0.027611945, 0.023125513, -0.022690466, 0.022690466, -0.0039392225, -0.008660171, -0.026986564, -0.0320304, 0.0085242195, 0.006580099, 0.015009151, 0.037115023, -0.008558207, 0.01684451, 0.032383874, -0.042906597, 0.0142342225, -0.013092222, -6.512972E-4, 0.022010703, 0.0022941977, -0.011046137, -0.6377802, -8.590496E-4, -0.0061416524, -0.009938125, 0.0073686233, 0.0020511828, -0.0024828317, 0.010203232, -0.034477543, -0.024784133, -0.020719154, 0.010774232, 0.021915536, -0.0037862759, -0.009496279, -0.0147644365, -0.011528769, -0.02993673, 0.014438151, 0.0036571212, -0.015009151, 0.0053769196, 0.016966866, -0.014478937, 0.0023944627, 0.011521971, -0.008163945, -0.03387935, 0.017714605, 0.009863351, -0.024349086, 0.015389818, 0.012745542, 0.007429802, 0.040241927, 0.008945672, -0.017755391, 0.0526136, 0.02410437, 0.027979016, -0.037849165, -0.0013178891, -0.005016646, 0.0019424207, -0.019849058, 0.023343038, 0.027217682, -0.010944173, -0.009054434, -0.0038712462, 0.0014716854, -0.014111865, 0.0061756405, -0.010815018, -0.009659423, 0.02353337, -0.004513622, -0.025232777, 0.015906438, 0.007987207, -0.028250922, 0.015267461, 0.0039562164, 0.0017197985, -0.01438377, 0.035565164, 0.0057100034, -0.0041873357, 0.008204731, -0.029637637, -0.0074026114, -0.0029416713, -0.004680163, -0.015960818, 0.013166996, 0.0071103135, 0.041601453, -0.0037726806, -0.0028702964, 0.020895893, -0.004598592, -0.0041499487, -0.0065902956, 0.018815821, 0.017238772, -0.0036979069, -0.039997213, 0.003225472, 0.009605041, 0.0131534, 0.014451746, 0.024688967, -0.004901086, -5.1964642E-5, -0.02182037, 0.011175292, -0.005115211, 0.030698065, 0.01552577, -0.068193756, -0.013418508, -0.016178342, 0.020651178, -0.0060158963, 0.020868702, 0.021344535, -0.020460844, -0.014778032, 0.022622488, -0.025069633, -0.0026901593, 0.022377774, -0.025926134, 0.0049996516, -0.0057575866, -0.0308884, 0.023682918, 0.0030045493, -0.0058425567, -0.004360675, 0.0054245032, 0.0064475453, 0.019223677, -0.016382271, 0.008830112, 0.038365785, -0.009414707, -5.297897E-4, 0.0082931, 0.005529866, 0.016708557, -0.0075725517, 0.023601346, -0.015974414, 0.016341485, 0.02075994, 0.022690466, -0.017456295, 0.011331637, -0.01492758, -0.011889042, 3.9851063E-4, -0.015253866, -4.3759696E-4, -0.0067636347, -0.012738746, -0.018231224, 0.0035007757, 0.0030691267, 0.0047107525, -0.023614941, 0.012045388, 0.002990954, 0.014003103, 0.0054143067, 0.0022738047, -0.043912645, -0.02075994, 0.009312743, -0.01767382, 0.0047889254, 0.021657227, -0.0038270617, -0.023125513, 0.02298956, -0.0015778982, -0.017605843, 0.0064373487, 0.0022721055, -0.014179842, 0.0076541235, -0.025395919, -0.014152651, 0.021371726, -0.00620623, 0.031350635, -0.0070763254, 0.008585398, 0.0059343246, -0.010305196, 0.025776586, 0.0068010218, -0.0268778, 8.535265E-4, 0.029610446, 0.016559009, 0.01793213, -0.0058663487, -0.00955066, 0.006845206, -0.030099874, -0.016858105, -0.0011887343, -0.009740993, -8.267609E-4, 0.024580205, 0.013228174, 0.010998554, -0.0065699024, 0.012310495, 0.02827811, 0.01853032, 0.011426804, -0.0042451154, -0.0010765735, -0.020039393, 0.013805972, -0.030942779, -0.0030674273, -0.013336936, 0.034151256, -0.0038712462, -0.018938178, 0.014533318, 0.013173793, 0.023084728, -0.008225123, -9.941524E-4, -0.0015022747, -0.0016280307, 0.009210779, -0.01021003, 0.008442648, 0.009394315, -0.020596797, -0.0050506336, 0.021154203, -0.0061858366, -0.0060090986, -0.021698013, -0.013255364, 0.020542417, 7.583598E-5, -0.014546913, -0.0046223835, 0.008170743, 0.02050163, 0.001072325, 0.038311403, -0.016858105, -0.011420007, 0.013914734, 0.03635369, -3.7195743E-4, -0.001103764, -0.012419257, 0.010774232, 0.004863699, -0.022065084, 0.023343038, -0.01884301, 7.9999526E-4, -0.0089796595, 0.008646577, 0.021997107, -0.009707006, -0.0027768288, 0.006848605, 0.024634585, 0.021861155, 0.009129208, -0.016259914, 0.026687467, 0.00580517, 0.026769038, -0.0052375686, -0.027802277, 0.00997891, -0.008422255, -0.028876303, -0.02679623, 0.0013943624, -0.0027564361, 0.014247818, -0.0051220087, -0.012052185, 0.005839158, 0.009965315, 0.004428651, 0.030480541, -0.0076881116, -0.03436878, 0.00734823, 0.026320396, -0.009768184, -0.022663275, -0.011154899, -0.028006205, -0.034559116, -0.008687362, -0.0074501946, 0.016151153, -0.025545467, -0.0053395326, -0.011311244, -0.0056726164, 0.020406464, -0.023982013, -1.462551E-4, 0.022785632, 0.0029059837, 0.01604239, -0.014125461, 0.0145876985, 0.011617137, -0.0079940045, 0.029991113, 0.0030249422, -1.8141157E-4, -0.009727398, 0.0041499487, -0.002719049, -0.036897495, 0.036707163, 0.010957768, 0.0015320142, -0.006121259, -0.014193436, 0.0068146167, -0.0059785093, -0.012935876, -0.046278216, -0.032411065, -0.009061231, 0.084779955, 0.031976018, 0.011243268, 0.001509922, -0.011630733, 0.0028584003, -0.01850313, -0.010441149, -0.0020290904, -0.005611438, 0.032818925, -0.0037352939, 0.018081676, 0.010903387, 0.010196434, -0.028332492, 3.708953E-4, -0.0014657375, -0.0017079028, -0.0157297, -0.028114969, -0.0030946177, 0.01930525, 0.024811324, 0.0076677185, -0.012990258, 0.028658777, 0.0012711554, 0.005444896, 0.023261465, -0.017660225, -1.0886818E-4, -0.0014062582, 0.023098322, 0.0050506336, -0.0034090078, 0.019549964, 0.003228871, 0.038664877, 0.007103516, 0.0038780437, 0.013751591, 0.0059207296, -0.0082931, 0.008014398, -0.034504734, -0.024702562, 0.01575689, 0.024580205, -0.039208688, 0.021548465, 0.011814268, -0.013506876, -0.01080822, 0.028441254, -0.01326896, -0.0056148367, 0.004612187, -0.020787131, 0.0023349836, -5.7439914E-4, -0.032411065, 0.014275008, -0.01770101, 0.0014750841, -0.024485037, -0.004309693, -0.013350531, -0.019713106, 0.023179894, 0.011542364, -0.019264463, -0.016246319, -0.01149478, 0.026510729, 0.0033818174, 0.017605843, -0.008109564, 0.008388267, -0.007015147, -0.03208478, -0.031785686, 0.0052715563, -0.016368676, -0.006974361, 0.0168717, -0.009285552, 0.0071510994, -0.019549964, 0.011481185, 0.0023723703, -0.0023536768, -0.012398864, -0.01653182, 0.026184443, 0.0016178342, -0.0054245032, 0.0046971575, 0.0147644365, -0.01046834, 0.0031303053, -0.0059173307, -0.010604291, -0.017456295, -0.014737247, -0.019468391, -0.0022975965, 0.0134253055, -0.011800673, -0.011297649, -0.022717655, -0.028821921, 0.002321388, 0.0041227583, 0.0069335755, 1.7578228E-4, 0.028577207, 0.007694909, -0.004302895, 0.0020035994, 0.0056284317, -0.006620885, 0.02104544, 0.02464818, -0.0027751296, 0.03714221, 0.0055570565, -0.023071133, -0.0042485143, 0.032302305, -0.011950221, 0.020365678, -0.016287105, -0.0021718405, -0.016382271, -0.015865652, 0.0151179135, -0.010366375, -0.011284054, 0.010182839, -0.013384519, 0.0011793876, 0.008327088, -7.039788E-4, -0.0054177055, -0.02371011, 0.017333938, -0.0062776045, 0.009625434, 0.026198039, 0.002018894, -0.0054143067, -0.03923588, 0.0011318042, -0.014451746, -0.026089277, -0.010386768, -0.013377721, 0.013092222, 0.0033733204, 0.039562166, 0.008313493, 0.031296257, -0.004384467, -0.009394315, 0.039453402, -0.012827114, -0.014071079, -0.038882405, 0.007769683, -0.0070355395, 0.038420163, -0.015022746, 0.0034192044, 0.013799175, 0.02207868, 0.002362174, 0.021371726, 0.0032611596, -0.016028795, -0.026687467, 0.0057983724, -0.02879473, 0.0040989667, -0.02925697, -0.0072734565, 0.026469944, -0.0023587751, -0.017741796, -0.022527322, 0.041084833, -0.0032203738, 0.031758495, -0.005315741, 0.031214684, -0.02016175, -0.0036333294, -0.021888345, 0.0024471441, -0.0065631047, -0.0157297, 0.009387517, -0.007355028, -0.010685863, -0.0053633247, 0.02044725, -0.027231278, -0.014275008, 0.017877748, 0.003296847, -0.015797675, -0.015634533, -0.014478937, -0.02734004, -0.012024995, -0.013119413, -0.00671945, 0.008945672, -0.018204033, -0.042988166, 0.035728306, -0.0053429315, 0.040541023, -0.0027615342, 0.04486431, 0.024457848, 0.02319349, -0.016164748, 0.0129970545, -0.020664774, -0.003045335, 0.020460844, 0.0102440175, -0.018543916, -0.015036342, -0.0056488244, 0.012283305, -0.03771321, -0.037821975, 0.041846167, 0.027380824, 0.028033396, -0.027924635, 4.6393776E-4, -0.030154254, -0.009414707, 5.824713E-4, 0.016001604, 0.0053973123, -0.031241875, -0.024607394, -7.524119E-4, 0.003291749, 0.01884301, 0.0058663487, -0.025545467, 0.0045510083, -0.009448696, 0.007341433, -0.013051436, -0.008170743, 0.044891503, -0.024281109, 0.0049554673, 0.024471443, 0.0070355395, -0.011195685, 2.685061E-4, 0.018775035, 0.028305301, -0.010271208, 0.010250815, 0.0016135857, -0.010278006, 0.018000105, 0.026551515, -0.013642829, -0.028849112, -0.012303697, 0.0026663677, 0.016966866, 0.004381068, -0.00929235, -6.478984E-4, -0.024729753, -0.010413959, 0.019549964, -0.0029518676, 0.014995556, -0.03817545, 0.02990954, 0.0018268612, -0.0070559327, 0.009543862, 7.0355396E-4, -0.0018829416, 0.0038678474, 0.014601294, -0.0060668783, -0.002931475, -0.0057779793, -0.019468391, -0.040187545, -0.018095272, -0.0152946515, -0.011141304, 0.0041363537, -0.0059921048, 0.0038440558, -0.013262162, -0.0023502782, -0.0060294913, 0.0066004917, -0.015267461, -0.019264463, 0.016830914, -0.008707755, -0.014030294, -5.055732E-4, 0.020664774, -0.0024352483, -4.3271118E-4, 0.0068757953, 0.008218326, 0.01987625, -0.019495582, 0.013391317, 0.0016883595, -0.02187475, -0.009856553, 0.0030980166, 0.03687031, 0.019155702, -0.010148851, -0.028441254, -0.012120161, -0.013139805, 0.028577207, -0.0052477648, 0.010012899, 0.026361182, 0.021888345, 0.037223782, 0.025790181, -0.0074705877, -0.018992558, 0.0072938493, 0.0046937587, -0.03268297, -0.011345233, -9.831062E-4, 0.008966065, -0.011589947, -0.019767487, -0.026769038, -0.022037894, -0.025735801, -0.027979016, -0.014533318, 0.005448295, 0.04312412, 0.012018197, -0.01063828, 0.023601346, 0.0057201996, 0.007769683, -0.011052934, 0.0039222282, 0.0154442, 0.013656424, 0.029746398, 0.005876545, -0.030643685, -0.019509178, 0.0122969, 0.020623988, 0.006665069, 0.030181445, -0.02135813, -0.008184338, -0.016681366, 0.010325589, 0.015063533, 0.0036197342, 0.027571158, -0.037985116, 0.002890689, -0.011426804, 0.011420007, -0.020719154, 0.007681314, 0.014805223, -0.01324177, -2.4152803E-4, 0.0034209038, -0.026701063, -0.009319541, -0.012262912, 0.029637637, 0.023084728, -0.005856152, 0.041764595, 0.025885347, -0.010427553, 0.014832413, -0.01998501, 0.0033376329, -0.019264463, -0.01738832, -0.01095097, 0.020229725, -0.027843064, 0.012636781, -0.02827811, 0.014968365, 0.0049656634, 0.0021684417, 0.0073618256, 0.03325397, 0.016830914, -0.043967023, 0.0057983724, -0.023941228, 0.0045849965, -0.007423004, 0.0029688617, -0.031377826, -0.0037794784, 0.0022483137, -0.0014487434, -0.025640633, -0.021806775, -8.356828E-4, 8.038189E-4, -0.011018947, 0.02264968, 0.18261135, -0.01246684, -0.0034905793, 0.046631694, -0.011413209, 0.006994754, 0.022024298, 0.0082931, 0.0065529086, 0.010740244, -0.0070695276, 0.009469089, -0.0018353582, 4.5968924E-4, 0.017225176, -0.026809825, -0.026701063, 0.0012533118, -0.015226675, -0.011216078, -0.0042621098, 0.0038304606, -0.00938072, -0.025749395, 0.003514371, -0.0017163998, -0.0060158963, 0.020202534, 0.028468445, 0.0038474544, -0.017143605, -0.014574103, -0.0024811323, -0.0050574313, -0.012276507, -0.00803479, 0.007511373, -0.0070695276, 0.012426055, 0.009747791, 0.00774929, -0.005139003, -0.008544612, -0.017578652, 0.002470936, 0.005023443, -0.02353337, 0.0012448147, -0.012806721, 8.8369095E-4, -0.033553068, -0.015349032, 0.02353337, 0.025382323, -0.02047444, -0.010543113, 0.016735747, -0.0040038, -0.006243617, 0.0030045493, -0.0025864956, 0.032764543, -0.018870201, 0.00580517, -0.006746641, 0.0025491086, -0.021997107, -0.0023553763, 0.010305196, -0.03319959, -0.0024131562, -0.025858158, -0.01627351, -0.0030419363, -0.006916581, -0.010930577, 0.0061552473, 0.018108867, 0.014832413, 0.023288656, -0.025858158, -0.011406411, 0.0062232236, 0.0017656826, -0.02067837, 0.001612736, 0.0157297, 0.008245517, -0.01741551, -0.031296257, -0.015852056, -0.008102766, -0.012595995, 0.0018268612, -0.01078103, 0.0041057644, 0.019495582, 0.020651178, -0.015770486, 0.0052137766, -0.032438256, 0.02135813, 0.04040507, -0.0028668975, -0.013017448, -0.020773536, -0.009870148, 0.0067262477, 0.014152651, -0.022948775, -9.210779E-4, -0.025980515, -0.0018574505, -0.013656424, 0.011929828, 0.016395867, 0.0070763254, -0.01767382, 0.034640685, -0.01054991, 0.0023519776, -0.013078626, 0.01964513, 0.004901086, 0.0078444565, -0.03219354, -0.04372231, 0.005825563, 0.009822565, -0.040160354, 0.025613442, -0.030317398, 0.003199981, -0.014642079, 0.0075317663, 0.009965315, 0.013364127, 0.004601991, 0.0077560875, 0.0040615797, -0.0029059837, -0.0047175502, 0.0094079105, 0.0016033893, 0.007715302, -0.029637637, -0.0032781537, -0.01824482, -0.00969341, -0.022119464, -0.02353337, -0.007660921, 0.021833966, -5.1237084E-4, 0.04644136, 0.0014980262, -0.016178342, -0.037876356, -0.0022007304, 0.037985116, -0.02933854, 0.026782634, 0.024675371, -0.022853607, -0.028849112, -0.009190386, -0.17423667, 0.028957874, 0.0031354036, -0.031187493, 0.0038984367, 0.016450247, 0.016001604, 0.002576299, -0.0066072894, -0.012079376, 0.020719154, 0.020610392, -0.047855265, -0.0054720864, 0.009985708, 0.01409827, -0.014642079, 0.040133167, 0.025056038, 0.0018727451, 0.04986736, -0.0142342225, -0.0050914194, 0.008762136, 0.018312795, -0.010631482, 0.018734248, 0.02153487, -8.819916E-4, -0.0073686233, -0.046631694, -0.006253813, 0.012623185, 0.007171492, -0.013486484, 0.010033292, -0.009931327, -0.021453299, -0.02018894, -0.009496279, 0.042988166, -0.0010247417, 0.025368728, 0.018856606, 0.01956356, 0.013588448, 0.034015305, 0.0068146167, 0.013214579, -0.0053089433, -0.0053021456, -0.04312412, 0.009326339, -0.011148102, 0.002685061, 0.03812107, 0.012208531, -0.005985307, 0.015566557, -0.013228174, -0.027503181, -0.0056318305, 0.0024148556, -0.008531016, -0.0026782635, -0.035075735, -0.015240271, 0.008286302, -0.012657174, 0.006124658, -0.015539366, 0.0039528175, -0.0023502782, -0.0056488244, 0.02021613, -0.025327943, -0.03548359, -0.0026986562, 0.0085242195, 0.017959319, -0.008707755, 0.048371885, -0.016001604, 0.013588448, 0.00386105, -0.01721158, 0.0055468604, 0.010984958, -5.302146E-4, -0.0019492183, -0.0015685515, -0.02322068, -0.038365785, 0.0020290904, -0.006994754, 0.0068622003, 0.0029263766, 0.0034158055, 0.015960818, -0.016722152, 0.007355028, -0.0062300214, -0.013860353, 0.011882245, 0.026809825, 0.013126209, -0.006287801, 0.03213916, 0.00926516, 0.0011623935, -0.028522825, -0.008000802, 0.013833162, 2.221973E-4, -0.0069505693, -0.0045000263, -0.005155997, -0.030779636, 0.0037930736, 0.015593747, 0.061341748, -0.0045680027, 0.0080959685, -0.012405662, -0.018938178, -0.015634533, -0.086085096, 0.005438098, 0.008789326, 0.026592301, -0.025178395, 0.027870255, 0.0020035994, 0.021208582, -0.0021208583, 0.023982013, -0.0017045039, -0.014710056, 0.021249369, -0.004680163, 0.021290155, 0.009713803, -0.007355028, -0.001675614, -0.019767487, 0.02739442, -0.0076541235, -0.0010833711, -0.0043538776, -0.032873303, -0.028305301, 0.020148154, -0.028033396, 0.014342984, -4.2909993E-5, 0.014207032, 0.013975913, -0.026646681, -8.484283E-4, -0.027666325, -0.0067160516, -0.029692017, -0.022595298, -0.026633086, 0.0064033605, -0.040595405, 0.0046631694, 0.0052137766, 0.029692017, -0.016654177, -0.010053684, 0.010509125, -0.02822373, 0.03426002, 0.009224374, -0.019862654, -0.014873199, -0.029093826, -0.015784081, -0.026170848, 0.008456243, 0.01679013, 0.029882351, -0.012398864, -0.014207032, -0.0029552665, -0.003291749, -0.002107263, -0.02156206, -0.002324787, 0.0073618256, 0.0052545625, 0.0016977063, -0.008082374, 0.012480436, -0.031568162, -0.026728254, 0.017524272, -0.044701166, -0.015675317, -0.028604398, 0.0038882403, -0.034722257, -0.005655622, 0.018910987, -0.024158752, 0.01998501, -0.026401967, 0.011406411, -0.010298398, 0.014642079, 0.015321842, 0.018475939, 0.0157297, -0.00774929, -0.03154097, -0.0038066688, 0.014519722, 0.00952347, -0.0019696113, 0.0015218179, 0.009890541, 0.020787131, 0.016599795, -0.0016934578, 0.018258415, -0.010203232, -0.013724401, -0.07651404, 0.033933733, -0.018258415, 0.01606958, -0.011719102, -0.009462291, -0.011345233, 0.0021922335, -0.0035245675, 0.010101267, 9.686613E-4, 0.019291654, -0.016055984, -0.008048385, -0.012827114, 0.013255364, -0.013574853, -0.0023689715, -0.0027785283, 0.0036707164, -0.022690466, 0.014003103, 0.022173846, -0.004904485, -3.1247822E-4, 0.033281162, 0.008279504, 0.013724401, -0.02221463, -0.013364127, 0.03042616, -0.014723651, 0.0036163353, 0.01355446, 0.0010876197, -0.02550468, -0.020433655, -0.006240218, 0.024457848, 0.00463258, -0.004377669, -0.009115612, -0.008075576, -0.010305196, -0.0058493544, 0.0062606107, -0.016491033, 0.0018625486, 0.011284054, 0.016341485, 0.030643685, 0.005981908, 0.007824064, -0.028060587, 0.03322678, -0.012344483, 0.042335596, 0.011583149, 0.006627682, -0.019808274, 0.028550016, -0.0049860566, 0.031377826, -0.030670874, 0.008327088, 0.02047444, 0.0050064493, 0.0015354131, -0.012691162, -0.02827811, -0.031133113, -0.009890541, -0.003837258, 0.033145208, 0.01741551, 0.018924583, 0.014601294, 4.8772944E-4, -0.007728897, 0.019549964, 0.007266659, -0.009598243, -0.017116414, 0.022595298, 0.003439597, 0.0135272695, -0.015145103, 0.015267461, 0.008068779, 0.009258362, -0.016966866, 0.0050880206, 0.019998606, -0.0034005109, 0.016164748, 0.009102017, -0.017877748, -0.016137557, 0.0066106883, 0.026102873, -0.011093721, -0.0024624388, -0.009462291, -0.0088641, -0.028849112, 0.01495477, -0.004166943, -0.028305301, 0.005964914, 0.016477438, 0.02874035, 0.0014546913, -0.0013017448, 0.009652625, -0.045081835, 0.02438987, -0.0064781345, -0.0075317663, -0.02161644, 0.030534921, 0.021983512, 0.015376223, 0.040622596, -0.010651875, 0.053184602, 0.010645078, 0.0128203165, -0.016694961, 0.0068588015, 0.008823315, -0.005359926, -0.016994057, -0.016368676, 0.009605041, -0.012303697, 0.013282555, 0.019577153, 0.036679972, -0.021684418, 0.0697708, 0.03765883, -3.305344E-4, 0.013520472, -0.015321842, 0.013133007, -0.0036537223, 0.018448748, -0.011630733, -0.0147644365, 0.0076541235, -0.005825563, -0.0029977516, -0.04929636, -0.001984906, -0.0012091271, 0.017456295, 3.5411367E-4, -0.015430604, -0.012215328, 0.003016445, -0.004897687, 0.022445751, -0.0066004917, -0.008456243, -0.008197933, 0.028604398, -0.0020052989, -0.0066004917, -0.031921636, 0.005407509, -0.024661776, 0.01741551, -0.013935127, 0.037767593, 2.9612143E-4, 0.016382271, -0.0010901687, 0.018557511, 0.024253918, -0.020284107, -0.008857302, -0.008415457, -0.031133113, 0.021412512, 0.0043198895, -0.011705507, -0.024553014, -0.028658777 ], + "id" : "1306693f-7f2c-44cf-adef-dbe8adca6d7d", + "metadata" : { + "source" : "movies.csv" + } + }, + "663cb370-ff30-496f-a70b-49858f282f5e" : { + "text" : "249,7173,Vin Diesel-Paul Walker-Dwayne Johnson-Jordana Brewster-Tyrese Gibson-Ludacris-Matt Schulze-Sung Kang-Gal Gadot-Tego Calderon-Don Omar-Joaquim de Almeida-Elsa Pataky-Michael Irby-Fernando Chien-Alimi Ballard-Yorgo Constantine-Geoff Meed-Joseph Melendez-Jeirmarie Osorio-Mark Hicks-Esteban Cueto-Corey Michael Eubanks-Luis Da Silva Jr.-Eva Mendes-Luis Gonzaga-Benjamin Blankenship-Jay Jackson-Arlene Santana-Kent Shocknek-Sharon Tay-Devon Aoki-Johnny Strong-Chad Lindberg-Gregory Marshall Smith,car race-fbi-freedom-escaped convict-street race-prison escape-car crash-heist-organized crime-on the run-money-fugitive-police chase-duringcreditsstinger,/gEfQjjQwY7fh5bI4GlG0RrBu7Pz.jpg,/lvSxooYCRuF3S2kHWXYTrcOtYco.jpg,13804-9615-584-82992-9799-168259-337339-8373-1858-38356-25391-4108-27578-36658-558-2502-56292-76163-988334-39254-9738\r\n41154,Men in Black 3,Action-Comedy-Science Fiction,en,Agents J and K are back...in time. J has seen some inexplicable things in his 15 years with the Men in Black but nothing not even aliens perplexes him as much as his wry reticent partner. But when K's life and the fate of the planet are put at stake Agent J will have to travel back in time to put things right. J discovers that there are secrets to the universe that K never told him - secrets that will reveal themselves as he teams up with the young Agent K to save his partner the agency and the future of humankind.,34.21,Columbia Pictures-Hemisphere Media Capital-Amblin Entertainment-Parkes+MacDonald Image Nation-Imagenation Abu Dhabi FZ,5/23/12,225000000,624026776,106,Released,Back in time.,6.502,9426,Will Smith-Tommy Lee Jones-Josh Brolin-Jemaine Clement-Emma Thompson-Michael Stuhlbarg-Mike Colter-Nicole Scherzinger-Michael Chernus-Alice Eve-David Rasche-Keone Young-Bill Hader-Cayen Martin-Clarke Thorell-Adam Mucci-Tom McComas-Douglas Crosby-Woodie King Jr.-Jack O'Connell-Tobias Segal-Jon Shaver-Gerritt Vandermeer-Alexandra O'Hara-Violet O'Hara-Valence Thomas-Chloe Sonnenfeld-Lanny Flaherty-Jonathan O'Hara-Rick Baker-Joseph D'Onofrio-Joseph R. Gannascoli-Katy Frame-Kevin Townley-Stephen Brian Jones-Tyler Johnson-Kati Rediger-Victor Joel Ortiz-Charlie Barnett-Ian Blackman-Jeremy Beiler-Liliane Klein-Britt Chandler Johnson-Jared Johnston-Ken Arnold-Jonathan Drew-Joel Brady-David Pittu-Lenny Venito-Anthony J. Gallo-James Martin Kelly-Will McLaughlin-Kimmy Suzuki-Kirk Larsen-Rebecca Glasscock-Barry Sonnenfeld-Susan Ringo-Stephanie Ellis-Ben Mac Brown-Amy Erwitt-Brad Abrell-Tim Blaney-Thom Fountain-Carl J.", + "embedding" : [ 0.0064864075, -0.023702918, -0.011663447, -0.037333775, -0.044800527, 0.03147855, -9.32505E-4, -0.016679334, -0.019566657, -0.03513135, 0.024938423, 0.02962529, 0.021473635, 0.0036292993, 0.012099903, 0.005657141, 0.012355062, -0.018935475, 0.004193335, -0.022682283, 0.009407305, -0.008426958, -0.011549297, 0.022239111, 0.0058048647, 0.026831971, 0.030216184, -0.0012665617, -0.008910417, -0.009944482, 0.016598757, -0.011374715, 0.006667705, -0.027302, -0.018989192, 0.0027815676, 0.011032265, -0.022883724, 0.035937116, 0.008453817, 0.004646578, 0.01812971, -0.0032247384, -0.014624633, -4.6709186E-4, 0.0039314614, 0.023152312, -0.01424861, -0.0048043733, 0.020157551, 0.016867345, 0.035910256, -0.014584345, -0.029813303, -0.0072653135, -0.012986245, -0.020130694, 0.0030434413, 4.7170822E-4, 0.007137734, 0.0041329027, -0.019096628, -0.035292502, -0.0016753195, -0.032982644, -0.011408288, -0.009461023, -0.015913857, 0.003652801, 0.009145432, 0.005398625, -0.006311825, 0.010703244, -0.001415964, 0.0090447115, -0.04407534, -0.015752705, -0.0019237638, -8.0786325E-4, -0.0023551837, 0.012482641, -0.010139208, -0.012502786, 0.027261714, 0.0071310196, 0.0068825753, -0.016383886, 0.017310517, -0.025448741, 1.6220215E-4, 0.0047372263, 0.045069117, -0.0036360142, 9.84544E-4, 0.008628399, 0.010246644, -0.01815657, 0.014544057, -0.021191617, -0.03558795, 0.010944974, -0.0017475026, 0.0021050607, -0.010924829, 0.0027412793, -0.001272437, -2.6292278E-4, -0.005076319, 0.019311499, 0.02023813, 0.0094341645, 0.008977564, 0.015497545, -0.041738622, -0.016947921, -0.012603506, 0.017861122, -0.025569607, -0.015108092, -0.02755716, 0.031048808, 0.038461845, 0.00884327, -0.035023917, 0.036420573, 0.027369149, 0.016545039, -0.0063353265, 0.0017491813, 0.0097833285, 0.013368983, -0.011784311, 0.0042839833, 0.0135569945, -0.02962529, 0.033868983, -0.023246318, 0.0068422873, -0.025139865, -0.008527678, 0.032767773, 0.03327809, -0.022185395, -0.0012539716, -0.02871209, 0.010716673, 0.025462171, -0.0055463486, 0.00929987, 0.011294139, 0.026039636, 0.029786443, 0.020802164, 0.012314774, 0.011166559, -0.0025834837, -0.0062748943, -0.004243695, -0.0015066125, -0.018035704, 0.008084508, -0.0076413373, -0.0016073331, -0.005942516, 0.009367017, 0.025878483, 0.014315757, -0.028524078, -0.018331151, -0.0030971589, -0.018089423, 0.03676974, -0.026053065, 0.022400264, -0.012361777, 0.008695547, -8.8885945E-4, -0.004713725, -0.03400328, -0.006795284, 0.029813303, 0.010219785, 0.029544713, 0.047620706, -0.0038273833, 0.009313299, 0.031075668, -0.04047626, 0.002544874, -0.016128728, 0.009622176, 0.021876518, 0.0072988872, -0.0120394705, -0.63128996, -0.010871111, 0.002618736, 0.0012942599, 0.018062564, 0.0120529, -0.0054120542, -0.003881101, -0.033922702, -0.0032801346, -0.026147071, 0.028309207, 0.010877826, -0.0024743697, -0.023273177, -0.025703901, 0.007419752, -0.022628564, 0.004404848, 0.01377858, -0.028443502, 0.0121670505, 0.012449068, -0.00390796, 0.005254259, 0.017323945, -0.006422618, -0.012630365, 0.012583362, 0.005761219, -0.017122505, 0.017834263, -0.004686866, -0.0025129793, 0.03561481, -0.008541108, -0.0055295615, 0.052240424, 0.023971505, 0.039912224, -0.025891913, 1.9378227E-4, 0.014060598, -0.0084806755, -0.011831315, 0.029544713, 0.010320505, -0.0047372263, -0.0039583202, -0.0076211933, 0.010857682, 0.0040959716, -0.008870129, -0.0044518514, -0.01881461, -0.0042873407, 0.0014394654, -0.023340324, 0.026039636, 0.004324272, -0.009830332, 0.022574848, -4.1232503E-4, 0.016665904, -0.011838029, 0.020264987, -0.0030014743, -0.0062681795, 1.9787403E-4, -0.026093354, -8.494105E-4, 0.007930069, -0.014087456, -0.003065264, 0.0241058, 0.0045324275, 0.025139865, 5.992876E-4, -0.015282675, 0.025180154, -0.012858665, -0.007533902, 0.012261056, 0.006328612, 0.0266171, 0.0059828046, -0.04042254, 0.012287915, 0.010266788, 0.0038139538, 0.013980021, 0.014342615, 0.012059615, 0.01470521, -0.009581888, -0.014141174, -0.0062010325, 0.005210613, 0.02801376, -0.05737046, -0.02156764, -0.03539994, 0.044478223, -0.0052609732, 0.023340324, 0.0149872275, -0.011851459, -0.020452999, 0.018478876, -0.023286605, -0.006674419, -0.0010953366, -0.009111858, 0.0033758192, -0.012502786, -0.030162467, -0.008198658, 0.014114316, -0.002353505, -0.018049134, -0.011106126, 0.006177531, 0.005741075, -0.021312483, 0.011811171, 0.036904033, 0.011804456, -0.0053583365, 0.011441862, -0.0016031364, -0.0042403378, 0.014194892, 0.025099577, -0.014893222, 0.016504752, 0.0030014743, 0.009353587, -0.0050595324, 0.014087456, 8.552859E-4, -0.015484116, -0.006150672, -0.013832298, -0.008467246, 0.004277269, -0.017203081, -0.03008189, 0.0042403378, 9.014495E-4, -0.02133934, -0.0018062564, 0.0138591565, -0.0042067645, 0.018680317, 0.011132985, -0.005452343, -0.022333117, -0.026079925, 0.009951197, -0.025824765, 0.007507043, 0.0140337385, 0.010474944, -0.02526073, 0.020251557, -0.0061909603, -0.01743138, -0.0032616693, -0.010709959, -0.005757862, 0.00815837, -0.015027516, 0.009179005, -0.0012321488, 0.00470701, 0.018908616, -0.0041161156, 0.032257456, 0.012791518, 0.0017642895, 2.5431954E-4, -0.015833281, -0.020735018, -0.0011683591, 0.029356701, 0.02597249, 0.007325746, -0.0027446367, -0.016800199, 0.0044249925, -0.013107109, -0.014544057, -0.007836063, -0.0043007703, 0.007554046, 0.028604655, 0.006785212, -0.009736326, -0.0030467985, -5.002457E-4, 0.037575502, 0.0195398, 0.010931544, -0.010857682, 0.015228957, -0.03650115, -0.013066821, -0.027718313, 0.009863906, -0.0036292993, 0.028550936, -0.0071847374, -0.017364234, 0.02550246, 0.013845727, 0.013013103, -0.030269902, 0.016169015, -0.009172291, 0.009729612, 0.012502786, -0.0012732764, 0.023380611, -0.007392893, -0.027637737, 0.017337374, 0.012778088, -0.0062950384, 4.7548523E-4, -0.008809696, -0.012811662, 0.011435147, 0.006718065, 0.017055357, 0.0011700378, -0.011562726, 0.027396007, -0.007648052, 0.04160433, -0.018640028, -0.008205373, 0.022843435, 0.028336067, 0.0151618095, 0.012207339, -0.014329186, 0.011804456, 0.014584345, -0.00964232, 0.04890993, -0.007023584, 0.025005572, -0.0028571081, 0.004508926, -0.005492631, -0.021231905, -0.015282675, 0.00620439, 0.020291846, 0.022413693, 0.019392075, -0.020506717, 0.027530301, 0.003740092, 0.0067113503, 0.006436047, -0.017310517, -0.009917623, -0.002951114, -0.014315757, -0.014678351, -0.013248118, 0.011556012, 0.0068355724, 0.0048614484, -0.0072921724, 0.0030568705, 0.008937276, 0.017297087, 0.00872912, 0.016370457, -0.03053849, 0.011979039, 0.040905997, -0.021836229, -0.030726502, -0.010179496, -0.00700344, -0.03373469, -0.01320783, -0.008185228, 0.034809045, -0.022910582, 0.0044249925, -0.013133968, 0.008279234, 0.016504752, -0.012670653, 0.015309533, 0.012422209, -0.0059525883, 0.020493288, -0.0011700378, -0.0036964465, 0.026549954, 3.3930255E-4, 0.0077756313, 0.0038743862, 0.009078285, 5.46829E-4, 0.0015603302, 0.003040084, -0.03795153, 0.009555029, -0.015269245, -0.0060868827, -0.0055732075, 9.568458E-4, 0.010226499, -0.029195549, -0.0068019987, -0.03120996, -0.0238775, -0.0031659845, 0.07461383, 0.037145764, 0.0067247795, 0.0129661, -0.018075993, 0.01607501, 0.0011398216, -0.0073593194, -0.018465446, -0.015309533, 0.0092192935, -0.028416643, 0.0082188025, 0.0033808553, 0.010730103, -0.010152638, -0.0060969545, -0.015658699, -0.0059055854, -0.0079166405, -0.034970198, -0.01627645, 0.018586311, 0.035023917, 0.017377663, -0.0014151246, 0.020627582, 0.016451033, -0.00315927, 0.016142158, -0.0022762858, 0.010938259, 0.015322963, 1.3691708E-4, 0.014302327, -0.0050158864, 0.025985919, 0.011159844, 0.031585984, 0.012677368, -0.009937767, 3.758138E-4, 0.001969088, -0.0016283166, 0.013274977, -0.028926961, -0.015457257, 0.023031447, 0.036125127, -0.037011467, 0.028765807, 0.00871569, -0.018559452, -0.026388802, 0.003075336, -0.009031282, 8.2171237E-4, -0.020103835, -0.020990176, 0.012099903, -4.280626E-4, -0.033654116, 0.007379464, -0.011898462, -9.5516717E-4, -0.011979039, -0.00987062, -0.015121521, -0.019647235, -0.0026455948, 0.002073166, -0.017189652, -0.008735835, -0.0029645434, 0.01975467, -0.0020983461, 0.03394956, -0.015322963, 0.016383886, 0.01034065, -0.029786443, -0.02685883, 0.0038978877, -0.020869311, -0.018331151, 0.007023584, -0.014946939, 0.021124471, -0.013765151, 0.008594826, 0.0010021701, -0.004052326, -0.010535376, 0.007090731, 0.03792467, 0.013530136, 0.022373406, 0.012321488, 0.021218477, 0.0115963, -0.0030887655, -0.029276125, -0.0034983626, -0.029544713, -0.027530301, -0.01906977, 0.009890764, 0.001740788, -0.007789061, -0.020278417, -0.034406163, -0.024468394, 0.0054556997, -6.681134E-4, 0.014127744, 0.0016216019, 0.020076975, 8.4185647E-4, -0.011885032, 0.00838667, 0.0059190146, -0.0259322, 0.025623323, 0.033358667, 0.0031240177, 0.028873242, -0.002395472, -0.030807078, 0.009776615, 0.040798564, 0.002904111, 0.022574848, -0.025126437, 0.009494596, -0.0053684087, -0.017740257, 0.002432403, 0.016410746, 0.006053309, 0.015873568, -0.019593516, 0.005428841, 0.01881461, 0.0072183106, -0.0036225847, -0.03126368, 0.0011163201, -0.012267771, 0.004811088, 0.02135277, 4.96049E-4, 0.008554538, -0.02458926, -0.014382903, -0.02137963, -0.037038326, -0.029947596, -0.004743941, 0.042248942, 0.02137963, 0.03881101, -0.012449068, 0.017041927, 0.0037333774, 0.01674648, 0.033654116, -0.026831971, -0.0057914355, -0.028389784, -0.004931953, 0.014799216, 0.010676385, 0.0140337385, 0.005979447, -0.0053180484, 0.026294796, 1.0773696E-5, 0.020761875, 0.011220276, -0.009837046, -0.025838194, 0.010004914, -0.027852608, -0.0045861453, -0.03521193, -0.012449068, 0.01377858, -0.0053113336, -0.0069430075, 0.011529153, 0.02135277, -0.0028856455, 0.0149872275, -0.031048808, 0.004905094, -0.019150347, 9.2411163E-4, -0.02339404, -0.009293156, 0.009890764, -0.009541599, 0.024616119, 0.007990502, -0.0084806755, 7.256081E-4, 0.034728467, -0.015309533, -0.022547988, 0.020842452, -0.014275468, -0.0163436, -0.026590243, -0.011388144, -0.029920736, -0.027167708, -0.006389044, -0.008702261, 0.0042101215, -0.02088274, -0.04568687, 0.024078941, 0.01633017, 0.037575502, 0.013496562, 0.047755, 0.03169342, 0.013100395, -0.014154604, 0.005724288, -0.0036326568, -0.0038609568, 0.011200132, 0.015510974, -0.028228631, -0.0064125457, 0.013980021, 0.004304128, -0.024508683, -0.03169342, 0.016585328, 0.017807405, 0.013053391, -0.0213662, 0.0020076975, -0.034352444, 0.0036494436, -0.0056604985, 0.021205047, 0.014302327, -0.028362924, -0.035265643, 0.0045257127, -0.0070840167, 0.0069698663, 0.009273011, -0.04157747, 0.022776289, -0.02914183, 0.0036024407, -0.012328203, -0.014476909, 0.04015395, -0.014530627, 0.022789717, -0.003491648, 2.6334243E-4, -2.2850989E-4, -0.0033187442, 0.0075674755, 0.026523095, -0.022682283, 0.024441537, 0.0012858665, 0.0027832463, 0.0043511307, 0.0215945, -0.026254507, -0.030216184, -0.017176222, 0.0029846875, 0.026039636, 7.696734E-4, 0.0037703083, 0.0038038818, -0.016491322, -0.030296762, -7.3400146E-4, -0.008574681, 0.007889781, -0.04157747, 0.010072062, -8.611613E-4, 0.019338358, -0.00871569, -0.016263021, -0.009172291, 0.006415903, -0.00487152, -0.01399345, 0.004629791, -0.021970524, -0.011267279, -0.042786118, -0.033170655, -0.014382903, -0.005304619, 0.0055362764, -0.005532919, -2.9649632E-4, 0.0069430075, 0.0020647726, -0.010743532, -7.470112E-4, -0.016652474, 0.009602032, 0.0127310855, -0.0033069935, -0.009884049, 0.0058182944, 0.027490012, -0.00534155, 0.006620702, -0.0072653135, 0.0058887987, 0.029974455, -0.017955128, 0.008856699, 0.007426467, -0.015833281, 0.0021906733, 0.007742058, 0.038434986, 0.008359811, -0.0058854413, -0.027476583, -0.014678351, -0.007513758, 0.036689162, 0.0054355557, 0.00602645, 0.023743207, 0.017525386, 0.025623323, 0.025771048, -0.0066274162, -0.017485099, 0.007856208, -0.0035420083, -0.011260564, -0.004173191, 0.019405505, 0.0016635688, 0.0065904856, -0.012717656, -0.022561418, -0.007668196, -0.022736, -0.041416317, 0.0058048647, 0.010830823, 0.024401248, 0.004166476, -0.0046230764, 0.004945382, 0.0051971837, 0.0057377177, -0.017605964, -0.0053281207, 0.013805439, -0.0027412793, 0.03263348, 0.012193909, -0.019445794, -0.00746004, -0.001802899, 0.010286932, 0.026012776, 0.01814314, -0.020144124, -7.944339E-4, -0.0026120213, -0.0022981088, -0.016357027, -0.004062398, 0.011247135, -0.033358667, -0.009179005, 0.0059525883, 0.012026042, 0.0056034233, 0.0012791518, 0.014288898, -0.010179496, -0.012173765, 0.009917623, -0.03381527, -0.009380447, -0.037736658, 0.014141174, 0.0011280709, -0.00227125, 0.038220115, 0.03924075, 0.00493531, 0.006167459, -0.0056034233, 0.013751721, -0.007990502, -0.006093597, 0.0072183106, 0.03647429, -0.021540781, 0.015725845, -0.0245624, 0.0019623733, -0.0022108175, 0.0037132334, -0.0049386676, 0.03521193, 0.014369475, -0.064998366, 0.004112758, -0.0047506555, 0.014342615, -0.0073190313, 0.001646782, -0.029034395, -0.013140683, -0.0044082054, 0.0026355227, -0.013637572, -0.01066967, -0.0072048814, -0.006234606, -0.0059123, 0.005116607, 0.17726828, -0.004297413, 0.0052307574, 0.037521787, 0.0096960375, 0.019002622, 0.024240095, 0.009017852, 3.9302022E-4, 0.0047573703, -0.0035923687, 0.005019244, -9.5894415E-5, -7.004279E-4, 0.012670653, -0.023085164, -0.032203738, -0.018774323, -0.02366263, -0.018734034, -0.0077286283, 0.008930561, -0.009931052, -0.032794632, 0.02202424, 3.8588585E-4, -0.010367509, 0.020533577, 0.018237146, 0.020587293, -0.009145432, -0.007399608, 1.516055E-4, 0.0018817968, -0.008541108, 0.0032616693, -0.01332198, -0.007668196, 0.006160744, 0.007090731, -0.004693581, 0.011314282, -0.011844744, -0.014463481, 0.006033165, 0.020949887, -0.03129054, 0.011535868, -0.023689488, -5.3675694E-4, -0.05307305, -0.010803965, -3.3237803E-4, 0.02667082, -0.013368983, -0.010468229, 0.015819851, 4.9479003E-4, -0.010427941, 0.008232231, 0.0076346225, 0.03008189, -0.036957752, 0.021057323, -0.013315265, 0.015108092, -0.012851951, -0.010924829, 0.009803473, -0.0252473, -0.005986162, -0.035641667, 4.93531E-4, 0.0055732075, 0.01563184, -0.017793976, 0.0054019825, 0.009897479, 0.014194892, 0.017135933, -0.021554211, -0.022534559, 0.02158107, -0.011173273, -0.012657224, -0.008413529, 0.011891747, -0.020788735, -0.0061372425, -0.011918606, -0.007903211, -0.027113989, -0.016518181, -0.009474453, -0.021178188, -0.021043893, 0.0222794, 0.012972815, -0.026361942, -0.013019818, -0.02477727, 0.029517855, 0.022897152, -0.012845236, -0.028336067, -0.01297953, 0.0019086556, 0.00814494, 0.034352444, -0.019915823, -0.017713398, -0.015873568, -0.002842, -0.015081233, -7.100803E-4, 0.023635771, 0.0034782186, -0.011945465, 0.043323293, -0.019808387, 0.0063353265, -0.04018081, 0.020426141, 0.0031760568, 0.0033170655, -0.021043893, -0.035937116, -0.0011247136, -0.0021856374, -0.030672785, 0.017283658, -0.017109076, 0.013429415, -0.009796758, 0.010790535, -0.0102600735, 0.015698986, 0.008353096, 0.0049285954, -0.0024760484, -0.0052038985, 0.0036796597, 0.023689488, 0.007755487, 0.005684, -0.041067153, 0.009125288, -0.016518181, -0.021245334, -0.030404195, -0.028416643, 0.0048345895, 0.013201115, 0.020399282, 0.047889296, 0.014866362, -0.021701936, -0.03486276, -0.02667082, 0.03521193, -0.028765807, 0.014087456, 0.022171965, -0.005539634, -0.027181135, -0.013281692, -0.17039242, 0.015215527, 0.0014445015, -0.030914513, 0.025878483, 0.0042201937, 0.034459878, 0.006197675, 0.004962169, -0.013201115, 0.027194565, 0.0024877992, -0.038300693, -0.00504946, 0.012878809, 0.010709959, -0.013348838, 0.041174587, 0.042839836, -0.0038139538, 0.03625942, -0.021688506, -6.8448053E-4, -0.016155586, 0.0033237804, -6.383169E-4, 0.019915823, -0.0021000248, 0.011811171, -0.0055094175, -0.03924075, -0.009333444, 0.011629874, 0.00815837, -0.028765807, 0.00700344, -0.018022275, -0.0140337385, -0.007513758, -0.0049688835, 0.040073376, 0.008574681, 0.01560498, 0.005636997, 0.027422866, 0.021043893, 0.028255489, -0.030135607, 0.011112841, -0.015766133, -0.008755979, -0.046143472, 0.009474453, 0.002202424, 0.0023786852, 0.022655424, 0.0011624837, -5.648748E-4, 0.006620702, 0.008682117, -0.03811268, -0.01138143, 0.0052509014, -0.010528661, -0.006818786, -0.008708976, -0.029114973, -0.0028638227, -0.04657321, 0.015121521, -0.039777927, 0.019365218, 3.836039E-6, -3.0258152E-4, 0.017229939, -0.03765608, -0.035426795, 0.006956437, 0.003518507, 0.0117775975, -0.018183429, 0.03150541, -0.0050125294, 0.00940059, -0.010468229, 0.011307567, 0.022883724, 7.4533257E-4, -0.0025314447, -0.006956437, 0.0031626273, -0.018653458, -0.030350478, 0.005153538, -0.007876352, 0.006587128, -0.0060566664, 0.017364234, 0.007896496, 0.009897479, -0.0035050774, -0.0238775, -0.024266953, 0.014476909, 0.023944648, 0.0074734697, 0.0103473645, 0.024710124, 0.021997383, 0.003303636, -0.010642812, -0.004700295, 0.008930561, 0.027825749, -0.005056175, 0.023474617, -0.014208321, -0.016907634, 1.4872028E-5, 0.034137573, 0.04772814, -3.1664042E-4, -0.009165576, -0.022574848, -0.0079166405, -0.01607501, -0.09529513, -0.0063084676, 0.022319688, 0.03561481, -0.012529644, 0.041255165, -4.41492E-4, 0.01791484, -0.026697677, 0.023770064, -0.0031659845, -0.03531936, 0.023528336, -0.0015905463, 0.013691288, -0.0025650184, -0.013704718, -1.5265468E-5, -0.028282348, 0.023488047, -0.0034614317, -0.00648305, -0.018425157, -0.00895742, -0.016236164, 0.025381595, -0.015578122, 0.020090405, 3.699384E-4, 0.011240421, -0.009293156, -0.016545039, 0.020385852, -0.038058963, -0.020251557, -0.03768294, -0.021070752, -0.028201772, 0.0071780225, -0.049742553, 0.0072048814, 0.0024407962, 0.0039616777, -0.014047168, -0.010803965, -0.008755979, -0.023958078, 0.041201446, 0.019351788, -0.020627582, -0.019324929, -0.023541765, -0.041470036, -0.021258764, 0.0126437945, 0.021889947, 0.029007537, -0.00884327, -0.020936457, -0.011112841, -0.001582153, 0.0034983626, -0.010018344, 0.0222794, 0.0041429745, 5.3130125E-4, -0.009884049, -0.0096087465, 0.0238775, -0.01674648, -0.02523387, 0.019029481, -0.038676716, -0.021151328, -0.016169015, 0.01747167, -0.016249591, -0.009266296, 0.02413266, -0.023998365, -0.0011826279, -0.025435312, 5.619371E-4, -0.010555521, 0.023488047, 0.009212579, 0.0059828046, 0.013100395, -0.011878318, -0.040529974, -0.011529153, 0.008406814, 0.0072988872, 0.010636097, 0.002763102, 0.019620376, 0.007950214, 0.009152146, -0.0041530468, 0.0145977745, 5.753665E-4, -0.00390796, -0.07429153, 0.017619392, -0.0231926, 0.0038508847, -0.01767311, -0.002187316, -0.010817394, 0.009125288, -0.0035520804, 0.024065511, -0.0022494271, 0.021043893, -0.008285949, -0.0040388964, -0.0075809048, 0.024428107, -0.0016736409, -0.0057545044, 0.0066777766, -0.0011801099, -0.018975765, 0.0118246, 0.019083198, 0.0021587785, 0.004794301, 0.022924012, -5.7389767E-5, 0.008541108, -0.020936457, -0.013462989, 0.022776289, -0.009863906, 0.004099329, -0.0026053065, -0.009286441, -0.029813303, -0.005841796, 0.0029578288, 0.0053381925, -0.0035621524, 0.0023770065, -0.01948608, -0.0018096137, -0.0041530468, 0.009017852, 0.012697512, -0.019351788, 0.0042403378, 0.0016501393, 0.021446776, 0.01539011, 0.008776123, -0.019351788, -0.014476909, 0.023112023, -0.009541599, 0.03628628, 0.019808387, 0.0026271294, -0.025019001, 0.025542747, 0.0071310196, 0.03403014, -0.03878415, 0.015860138, -0.0054758443, 0.0029796516, -0.0065401252, -0.0033422457, -0.03397642, -0.025354736, 3.443386E-4, 0.0140337385, 0.0259322, 0.009863906, -5.153538E-4, 0.0056672134, 0.006197675, -0.006996725, 0.026778255, 0.02595906, -0.007930069, -0.032928925, 0.025556177, -8.401778E-4, 0.017256798, -2.794997E-4, 0.011119556, 0.007480184, 3.5000412E-4, -0.017605964, 0.011200132, 0.017552245, -0.008836555, 0.006167459, 0.016947921, -0.016625617, -0.004965526, -0.0051837545, 0.045310847, -0.010998691, -0.0063991165, -0.008037505, -0.014785786, -0.021889947, 0.012549789, -0.009152146, 0.0054556997, 0.0044585657, 0.014664921, 0.026549954, 0.0057645766, -0.024025224, 0.006519981, -0.043430727, 0.004475353, -0.007822635, -0.010877826, -0.012415495, 0.042812977, 0.02249427, 0.005418769, 0.022198824, -0.009830332, 0.059519168, -0.0063151824, 0.024857847, -0.036125127, -3.176896E-4, 0.0068960045, 0.0044854246, -0.007836063, -0.022252541, 0.008151655, -0.02339404, 0.014288898, 0.0163436, 0.043430727, -0.018452017, 0.085572235, 0.0121670505, -0.01079725, 0.01539011, -0.015363251, 0.0067885695, 0.011441862, 0.022158535, -0.018532593, -0.009904194, 0.0018398298, -0.011576156, 0.016410746, -0.04805045, 0.019674093, -0.015349821, 0.027960042, 0.01332198, -0.01171045, -0.011065838, -0.009555029, -0.008460532, 0.011690306, 0.015296104, -0.003013225, -0.012569932, 0.010716673, 9.467738E-4, -0.0037870952, -0.027033413, 0.007849493, -0.031935148, -0.008970849, 0.0037468069, 0.021272194, -0.010642812, 0.004555929, 0.011932035, 0.027167708, 0.011670162, -0.016142158, -0.0023786852, -0.017820833, -0.02203767, 0.01701507, -0.019163776, -0.018290864, -0.03655487, -0.008326237 ], + "id" : "663cb370-ff30-496f-a70b-49858f282f5e", + "metadata" : { + "source" : "movies.csv" + } + }, + "41340f84-bbca-4d07-bbdc-142c456cb89e" : { + "text" : "Curtin-Justin-Teddy-Buck,countryside-based on novel or book-culture clash-desertion-mutiny-wolf-language barrier-self-discovery-dakota-buffalo-friendship-unsociability-freedom-tennessee-kansas usa-sioux-native american-snow-pawnee tribe-19th century-lakota-bison-early america,/cvaBVpS0GzKqBd63pFT8f1E8OKv.jpg,/ywWva4trKw7f3wtbz81Fe3FnrtC.jpg,177343-122440-262780-205955-179921-138949-131194-138373-150456-208895-119127-147589-126550-211572-143916-141669-187647-233795-242894-46367-223805\r\n2454,The Chronicles of Narnia: Prince Caspian,Adventure-Family-Fantasy,en,One year after their incredible adventures in the Lion the Witch and the Wardrobe Peter Edmund Lucy and Susan Pevensie return to Narnia to aid a young prince whose life has been threatened by the evil King Miraz. Now with the help of a colorful cast of new characters including Trufflehunter the badger and Nikabrik the dwarf the Pevensie clan embarks on an incredible quest to ensure that Narnia is returned to its rightful heir.,46.863,Walt Disney Pictures-Walden Media-Stillking Films-Ozumi Films-Propeler-Silverbell Films-Revolution Sun Studios,5/15/08,225000000,419665568,150,Released,Everything you know is about to change forever.,6.6,5671,Georgie Henley-Skandar Keynes-William Moseley-Anna Popplewell-Ben Barnes-Sergio Castellitto-Peter Dinklage-Warwick Davis-Vincent Grass-Pierfrancesco Favino-Cornell John-Dami��n Alc��zar-Alicia Borrachero-Sim�_n Andreu-Predrag Bjelac-David Bowles-Juan Diego Montoya-Douglas Gresham-Ashley Jones-Kl��ra Issov��-Shane Rangi-Curtis Matthew-Mana Hira Davis-Winham Hammond-Hana Frejkov��-Kristina Beranov��-Lucie Solarova-Karolina Matouskova-Alina Phelan-Joseph Moore-Isaac Bell-Lejla Abbasov��-Ephraim Goldin-Yemi A.D.-Carlos Silva Da Silva-Gomez Sandoval-Jan Filipensk�_-David Mottl-Michaela Dvorska-John Bach-Jack Walley-Marcus O'Donovan-Adam Valdez-Eddie Izzard-Liam Neeson-Ken Stott-Tilda Swinton-David Walliams-Siobhan Connors-Jaymie Bell,sibling relationship-witch-based on novel or book-lion-prince-wretch-matter of life and death-faith-uncle-epic-family relationships-battle-based on children's book-fantasy world-1940s-high fantasy-based on young adult novel-good versus evil,/qxz3WIyjZiSKUhaTIEJ3c1GcC9z.jpg,/9pBv1BOSloAUgAkF0meJWdnbV4Q.jpg,10140-411-32657-18360-2268-1593-76285-10527-8355-810-1979-24021-18239-950-13053-10192-953-27022-88751-50620-50619", + "embedding" : [ 0.018785674, -0.03474044, -0.014580541, -0.009928785, -0.013955268, 0.048015468, -0.001701464, -0.024186382, -0.032761555, -0.041199304, 0.014456861, 0.025450671, 0.0048750676, 0.0030267334, 0.009695167, 0.023045775, 0.026261464, -0.033448666, 0.0049334723, -0.03443811, -0.0067302734, 9.447806E-4, -0.027773114, -0.0024100493, -0.0010100564, 0.009282899, 0.0234443, -0.0147179635, -0.004318506, -0.007681925, 0.009131733, -0.011694666, 0.01080829, -0.024928465, -0.031167453, -0.011303011, 0.004184519, -0.03212941, 0.031194936, -0.015473788, 4.366926E-5, 0.016147159, -0.026646247, -0.009550873, -0.014099562, 0.012017609, 0.0032620698, 0.014058335, -0.0043081995, 0.027594464, 0.028281577, 0.03163469, -0.021025663, -0.019733889, -0.020008735, -0.0030095556, -0.010698352, 0.009186703, 0.004009305, 0.0039509004, 0.01719157, 0.0089805685, -0.018716963, -0.017645067, -0.030287948, -0.007922415, -0.010780806, -0.010650254, 4.917153E-4, -0.0033960568, 0.021534126, 0.03465799, 0.014415634, 0.0033754434, 0.024969691, -0.026605021, -0.016202128, 0.0020132416, 2.4671658E-4, 0.019775117, 0.010038723, -0.0056205858, -0.011715279, 0.008334682, 0.010402893, 0.005926351, 0.006201196, 0.037131596, -0.023238167, 0.001819132, -0.011866444, 0.035537492, 0.013776619, -0.0026866123, 0.013536129, 0.010128048, -0.0024375338, 0.023664176, -0.0065241395, -0.03831343, 0.004809792, -0.015679922, 0.001843181, -0.015872315, -0.014023979, 0.00409863, -0.0035059948, -0.010334182, 0.024543682, -0.0022674734, -0.0076956674, 0.0036451353, 0.022125043, -0.036636874, 0.0024633007, -0.028089186, -6.566225E-4, -0.015267654, -0.0018689478, -0.01815353, 0.014731706, 0.022358662, 0.0060878224, -0.02465362, 0.023774115, 0.026921093, -0.014250726, -0.007180332, -0.017947396, -0.01804359, 0.015034036, -0.003923416, 0.009997496, -8.554559E-4, -0.018359663, 0.047960497, -0.029600834, -0.0025766743, -0.023293136, -0.012113805, 0.021190569, 0.03674681, -0.008506461, -0.02222124, -0.010794547, 0.0031435427, -4.713838E-6, -0.0048991167, 0.026000362, 0.005658377, 0.0330364, 0.017109117, 0.005256416, 0.019280395, 0.010904485, -0.0063386187, -0.0037344599, -0.0041570347, 0.0030267334, -0.015157716, -0.0057099103, -4.07544E-4, -0.012855887, -0.007125363, 0.017796231, 0.018002365, 0.031112483, -0.0084721055, 0.0038547048, 0.008904986, -0.00795677, 0.005428194, -0.019541498, 0.0120588355, 0.011172459, 0.024062702, 0.010361666, 0.011227429, -0.020256096, -0.013597969, -0.009234801, 0.012079449, 0.02932599, 0.050269198, -0.029600834, 5.599972E-4, 0.018716963, -0.024433743, 0.0067921137, -0.0015125078, -0.008279714, 0.0131444745, -0.0019428125, -0.017383963, -0.64555657, -0.018758189, -0.006496655, -0.01767255, 6.48463E-4, 0.024928465, 0.012313068, 0.018194756, -0.02465362, 3.8864836E-4, -0.019582724, 0.008733208, 0.025052145, -0.011069393, -0.0148279015, -0.016119674, -0.0076132137, -0.0059847557, 0.040787037, -0.017164087, -0.013900299, 0.022193754, 0.018744446, -0.0047823074, 0.0011612212, 0.011337367, -0.0066890465, -0.01178399, 0.011935156, 0.003306732, -0.021465415, 0.003464768, 0.023471786, 0.009997496, 0.03636203, 0.011289269, -0.021121858, 0.04323316, 0.041803963, 0.01712286, -0.024763558, 0.0025457542, -0.0030404758, 0.016614396, -0.0038066069, 0.006187454, 0.026646247, 0.0057339594, -0.0017117707, -0.011090007, -0.0010555775, 0.005758008, 0.01293147, -0.017631324, 0.008513332, -0.004421573, 0.023664176, -0.034932833, 0.036774296, 0.012079449, -0.026027845, 0.014731706, 0.014608026, 0.0064829127, -0.012065707, 0.03408081, -0.008059837, -0.0067062243, 0.017947396, -0.026893608, 0.012045094, 0.021877682, 7.5926003E-4, -0.01438815, 0.0042978926, 0.016806787, 0.041556604, -0.004438751, 0.0016722616, 0.008052967, -8.614681E-4, -0.0074964045, -0.0023911537, 0.019156715, 0.035070255, -0.0112343, -0.008664497, 0.02065462, 0.0013166806, 0.0014841644, -0.0021712775, 0.013350609, -0.005606843, 3.1714566E-4, -0.006723402, 0.0039612073, -0.0060809515, -0.0060569025, 0.025052145, -0.054749176, 0.0016482127, -0.016779304, -0.0017418319, -0.03218438, 0.01438815, 0.005610279, -0.004383782, -0.0065859794, 0.0376538, -0.018552056, -5.5613223E-4, 0.004356297, -0.010938841, -0.008630142, 0.003234585, -0.03177211, 0.027402073, 0.0155150145, 0.009042409, -3.2058122E-4, 0.0029253843, 0.024117671, -0.006843647, -0.017136602, 0.0081835175, 0.03347615, -0.02465362, -0.010547187, 7.287694E-4, 0.014051463, -0.005459114, 0.0019840393, 0.03861576, -0.011680923, -7.1545655E-4, 0.0014764344, 0.03636203, 0.013062021, 0.007517018, -0.008678239, -0.03666436, -0.009805105, -0.01032731, -0.012601655, -0.0076063424, -0.025698032, -0.01591354, -3.9680785E-4, -0.01912923, -0.011763377, -0.017892426, -0.010588414, -0.0023550803, -0.012409263, -1.5986117E-4, 0.014676737, -0.019170457, -0.0034870992, 0.006266472, -0.019349106, 0.012636011, 0.019459045, -0.016559428, -0.011364851, 0.0155425, -0.014017108, 0.0043872176, 0.02191891, 0.008568301, -0.02769066, 0.014017108, -0.009008054, 0.002459865, 0.016834272, -0.018290952, 0.02385657, -0.017947396, 0.012361165, 0.0070841364, -0.0040402254, -0.012216872, -0.0018448988, -0.009695167, -0.014065206, 0.006218374, 0.016683107, 0.010842646, 7.747201E-4, -0.0071734614, 0.009633326, -0.008087322, -0.012216872, -0.022564797, -0.0026539746, -0.009248543, 0.014017108, 0.007826218, 0.013165088, 0.01578986, -0.004500591, 0.027086, 0.008025481, 0.010691481, -0.013158217, 0.013460547, -0.038176008, -0.0016233048, -0.029243536, -0.0023791292, -0.008959956, 0.03234929, -7.171744E-4, -0.025491897, -0.017947396, -0.009983754, 0.024392517, -0.0030284512, 0.0055724876, -0.02028358, 0.005393838, 0.0013218339, -0.023210682, 0.020778302, 0.028047958, -0.029188566, 0.005926351, 0.015597468, -0.024090188, -0.001415453, -0.019816343, -0.009489032, -0.015872315, 0.004476542, -0.009406579, -0.028281577, 0.004318506, 0.023760373, -0.018758189, 0.043865304, -0.016957952, -0.0064348145, 0.029710773, -0.0064760414, -0.00801174, -0.0038203492, -0.01365981, 0.0023877183, 0.01536385, -0.008808791, 0.025162084, -0.0065413173, 0.024749815, -0.01147479, 0.0031933584, -1.352754E-4, -0.012814661, 0.006558495, 0.0069192294, 0.036334544, 0.024474971, 8.137996E-4, -0.032239348, 0.013110119, -0.003916545, 0.005259851, -0.009516517, -0.02356798, -0.008726337, -0.01737022, -0.022070074, -0.029435927, -0.018744446, 0.009949398, 0.007008554, -0.009262285, -0.0019153279, -0.0034939703, 0.01943156, 0.013515515, 0.024323806, -0.011268656, -0.015569984, 0.015432562, 0.023224425, -0.01937659, -0.019184198, -0.02470859, -0.030013103, -0.023155713, -0.014037722, -0.011323624, 0.017796231, 0.0038100425, -4.5467565E-5, 0.004930037, -0.007255915, 0.0053766603, -0.014264469, 0.002562932, 0.03237677, -0.014223242, -0.00458648, -0.01408582, 0.0141407885, 0.017837457, -0.014745448, -0.0038959316, 0.009131733, -3.6996749E-4, 0.0023207248, -0.004840712, 0.003495688, -0.03735147, 0.004706725, -0.014236985, -0.005163655, -0.004620836, 0.014443118, 0.010499089, -0.015171458, -0.015899798, -0.021479158, -0.021396704, 0.0065688016, 0.08734582, 0.022633508, 0.007633827, 0.019953765, 0.0033187566, -0.0016310349, -0.011804604, -0.034328174, 0.00227778, -0.009193574, 0.009372223, -0.00795677, 0.011378594, 0.007523889, 0.005795799, 0.004854454, 9.1901387E-4, -0.012409263, -0.019459045, -0.0076406985, 0.013804103, -0.018249726, 0.01804359, 0.025326991, -0.010581543, -0.021863941, 0.029298505, 0.016105933, 2.2996818E-4, 0.005136171, -0.015391335, -0.001179258, -0.009056151, 0.012402392, 0.007207817, 0.00941345, 0.027086, 0.030810153, 0.032569163, -0.006503526, 0.0103547955, 0.008547688, 1.1105198E-5, -0.024914723, 0.003030169, -0.023155713, -0.0058198483, 0.018126044, 0.03097506, -0.02623398, 0.033531122, 0.002071646, -0.0064348145, -0.0042291814, 0.008211002, -0.004112372, -0.004232617, 0.01967892, -0.00795677, 0.0052907714, 0.0034905348, -0.0349878, 0.003552375, -0.020805785, 0.009221058, -0.015212685, -0.014704222, -0.016573168, -0.018895611, 0.009014925, -0.009440934, -0.02088824, 0.008204131, -0.0049266014, 0.0060981293, 0.002492503, 0.0372965, -0.016476974, 0.013989624, 0.015899798, -0.028886236, -0.019940024, 0.009324125, -0.027951762, -0.0016447771, 0.0022314, -0.0040127407, 0.019321622, -0.02452994, 0.014539314, -0.009035538, 0.006589415, -0.037818708, -0.016559428, 0.040429737, -9.026949E-4, -0.0061427914, 0.021520384, 0.017095376, -0.007949899, 0.029958133, 7.785851E-4, -0.014772933, -0.026783671, 0.006503526, -0.008107935, -0.0033428054, -0.009083636, -0.016683107, -0.017411448, -0.013062021, -0.01998125, 0.0035420682, 0.0033909034, -0.01408582, 0.009537131, -0.009097378, 0.0049884412, 0.006805856, -0.009035538, -0.008540817, -0.008664497, 0.0022657556, 0.014415634, -0.01682053, 0.04675118, -0.018263467, -0.015405077, -0.009997496, 0.015281397, 5.982179E-4, 0.022001363, -0.017274024, 0.0020905416, -0.026673732, -0.0047032894, 0.018442117, 0.003054218, -0.02442, 0.0043872176, -0.011694666, -0.006455428, 0.0120382225, -0.013027665, -0.004809792, -0.022839641, 0.0011096877, -0.019280395, 0.014127047, 0.032624133, -0.015968509, -7.3392276E-4, -5.604267E-4, -0.005349176, 0.004840712, -0.03182708, -0.050956313, 0.0016087036, 0.02811667, -0.0036691842, 0.04482726, -0.01177712, 0.023609208, -6.3257356E-4, 0.0069261007, 0.03600473, -0.02094321, 0.007853704, -0.04161157, -0.010430378, 0.017150344, 0.02179523, 0.020256096, 0.020448487, -0.0070119896, 0.04331561, 0.0056755547, -0.0020063703, -0.011412949, -0.026453856, -0.026151527, 0.010471605, -0.0221113, 0.012649753, -0.022798413, -0.017026665, 0.050049324, -0.009317255, -0.010499089, -0.027731886, 0.036224604, -0.014291953, 0.016174644, -0.0110419085, 0.013549872, -0.02088824, -0.0020287016, -0.026769929, -0.022606023, 0.014608026, -0.021327993, 0.010615898, -0.0072833993, -0.006091258, -0.007365853, 0.016559428, -0.006685611, -0.029600834, 0.014704222, -0.015130231, -0.004747952, -0.022180013, -0.0039886916, -0.017603839, 0.0026075945, -9.954552E-4, -0.009344739, 0.0033084499, -0.028391516, -0.022358662, 0.024365032, -0.012553557, 0.04985693, 0.01682053, 0.042408623, 0.024296321, -0.0064897835, -0.025656804, 0.022482343, -0.0055656163, -0.021850199, 0.019623952, 0.025107114, -0.0088706305, -0.0034183878, -0.007675054, -0.0032139719, -0.038725697, -0.0376538, 0.024378775, 0.02470859, 0.01699918, -0.029903164, -0.012031351, -0.01834592, 0.0069604563, -0.017397705, -0.010540316, 0.005713346, -0.026124042, -0.0048063565, 0.00801861, 0.0017529974, 0.011852702, -0.009372223, -0.01845586, 0.024571165, -0.003504277, -0.012017609, -0.02216627, -0.012649753, 0.028996175, -0.022509826, 0.01864825, 0.014360664, 7.193216E-4, -0.0052392376, -0.0035248904, -0.009248543, 0.0357024, -0.0028927464, 0.015954766, -0.011406078, 0.0074551776, 0.0014850233, 0.0010040441, -0.017576354, -0.01706789, -0.037763737, -0.0104647335, 0.020242354, 0.004088323, -9.238451E-5, 0.010361666, -0.015638696, 9.138605E-4, 0.012608526, 0.00370354, 0.01238865, -0.035729885, -3.8950727E-4, 0.0053354334, -0.012642882, -0.007523889, -0.016257098, 0.0036176508, -0.0016507893, 0.02355424, -0.015776118, 0.007874317, -0.0155150145, -0.0025921343, -0.03146978, -0.012161903, -0.0112617845, -0.005689297, 0.014869128, -0.015185201, -0.009722651, -0.0026179012, 0.012045094, -0.010128048, -0.007523889, -0.010086821, -0.0030525, 0.014154531, -0.016504457, -0.010588414, -0.013391836, 0.033970874, 0.016229613, -0.002690048, 0.009124863, 0.004744516, 0.035894793, -0.024818527, 0.004452493, 0.010107434, -0.028281577, -0.0022125044, 0.008355296, 0.02472233, 0.0120588355, 0.00555531, -0.023045775, -0.016435746, -0.010918228, 0.005861075, -0.002499374, 0.0015099312, 0.031799596, 0.0188269, 0.01863451, 0.0330364, -0.017713778, -0.027773114, -0.0034750747, -0.021589095, -0.036581904, 0.005380096, 0.007111621, 0.0151164895, -0.0028017038, 0.0041913902, -0.03146978, 0.013817846, -0.037159078, -0.01967892, 0.018016107, 0.02296332, 0.035894793, -6.510397E-4, 0.008059837, 0.012306197, -0.008279714, -0.002674588, -0.020366034, -0.008032353, 0.0037413312, 0.018139787, 0.026275206, 0.03540007, -0.03168966, -0.0037378955, 0.0168755, 0.017768746, 0.0034286946, 0.032101925, -0.014676737, -0.017109117, -0.011509146, 0.018950582, -0.009791362, -0.00552439, 0.0058164126, -0.03383345, -0.0024650185, 0.012244357, 0.015556241, -4.3212976E-6, 0.0013570485, 0.02161658, -0.010237986, 0.009221058, 0.005163655, -0.012216872, 0.0059503997, -0.009303512, 0.016573168, -0.0072902706, 5.3938385E-4, 0.025972877, 0.011763377, -0.02696232, -0.001724654, -0.0035558105, 0.0078056054, -0.01433318, 0.009729522, -0.0052014464, 0.03644448, -0.006994812, 0.022207497, -0.023829084, 0.006297392, -0.013962139, 0.016367035, -0.0016507893, 0.040099923, 0.020792045, -0.051643424, 0.0044353153, -0.010189888, 0.0053835316, 0.0037963002, -0.00400587, -0.008032353, -0.024076445, -0.0103547955, -0.0047342097, -0.021657806, -0.006929536, 0.005988191, -0.0033428054, -0.016270839, 0.0012514049, 0.19250162, -0.010732708, 0.023128228, 0.03685675, -0.0011620801, 0.019665178, 0.0152264275, 0.017864943, -9.6539396E-4, 0.014553056, -0.0267287, 0.016009737, 0.0013287051, 0.0018655122, 0.007523889, -0.009660811, -0.024736073, -0.029051144, -0.015391335, -0.02440626, -0.0031109047, -0.00801861, 0.01573489, -0.013762876, 0.010931971, 0.008753821, 0.0014429376, -0.008815662, 0.019156715, 0.005658377, -0.01961021, -0.0077025383, -0.011014423, 0.0028137283, -0.030095557, -0.0015133667, 0.009262285, 0.023059517, -0.0032500452, 0.008156033, 0.009262285, -0.019733889, -0.009846332, -0.021767745, -0.0057099103, 0.040374767, -0.012072578, -0.0041879546, -0.012842145, 0.0152264275, -0.021341734, 0.015212685, 0.0042601014, 0.019747632, 7.4337056E-4, -0.0052839, 0.0032895543, 0.01998125, 0.0021420752, -0.008959956, 0.001677415, 0.030535309, -0.021300508, 0.019623952, -0.0011698102, 0.011083135, -0.030287948, -0.004723903, 0.016724333, -0.03638951, -0.027168455, -0.03443811, -0.015336365, 0.023485528, -3.9251338E-4, -0.02465362, 0.0038237846, 0.012484846, 0.0017779053, 0.021699034, -0.02325191, -0.015089005, 0.0063008275, -0.010457862, -0.003837527, -0.04196887, 0.0080941925, -0.03649945, -0.013989624, -0.021685291, -0.022056332, -0.0053972737, 0.008403393, -0.024255095, 0.012952083, 0.0063386187, 0.02088824, 0.008252229, -0.0024907852, -0.0025062452, -0.028226608, 0.025162084, 0.030755185, 0.0026556924, -0.029161083, -0.016490716, -0.006747451, -0.0025491898, 0.022578537, -0.005084637, -0.009475291, -0.0044628, 0.008726337, -0.009509646, -0.006946714, 0.016806787, 0.0053045135, -0.029490896, 0.026797412, -0.013302511, -0.001052142, -0.011248042, 0.0060740802, 0.017466417, -0.017081633, -0.023183197, -0.0033032964, 0.014023979, 0.0017529974, -0.028858753, 0.011694666, -0.035729885, 0.013020794, -0.002808575, 0.004328813, 0.015322623, 0.023032032, -0.018607024, 0.0140102375, 0.0017418319, 0.0040642745, -0.015460046, 0.018387148, -4.95473E-5, 0.004706725, -0.018923096, 0.005933222, -0.005727088, -0.015762376, -0.028748814, -0.026797412, -0.002104284, 0.010073079, -0.0054659853, 0.03696669, 0.0015494402, -0.026385145, -0.050131775, -0.011117491, 0.0445799, -0.03383345, 0.02143793, 0.012711593, -0.00525298, 0.0023842826, -0.0033239098, -0.1768904, 0.012512331, 0.0074826623, -0.027484527, 0.019692663, 0.01475919, 0.017768746, 0.021960136, 0.010945712, -0.015872315, 0.030095557, 0.022125043, -0.030892607, -0.0014180298, 0.0013999931, 0.015460046, -0.03594976, 0.027195938, 0.0051224288, 0.010595284, 0.040209863, -0.0030765492, -0.005995062, -0.004105501, 0.016449489, 0.009427193, 0.024268836, 0.008946213, 0.004407831, -0.010313569, -0.00299066, -0.0067062243, 0.0045521245, -0.006249294, -0.004352862, 0.0059366575, -0.026467599, -0.006627206, 0.007681925, 0.0044971555, 0.027347103, 0.016353292, 0.027429556, 0.011584728, 6.1024236E-4, 0.006242423, 0.016243355, -0.0012909138, 0.014704222, -0.02483227, -0.018978065, -0.010588414, 0.018758189, -0.013975881, 0.009681424, 0.026756186, 0.014910355, 0.00400587, 0.012636011, 0.0051464774, -0.028047958, -0.007846832, 0.0134330625, -0.0023172891, -0.007372724, -0.022344919, -0.0071734614, 0.016119674, -0.033256277, 0.015212685, -0.016353292, 5.419605E-4, 0.021726517, 0.011433563, -0.017562613, -0.02088824, -0.04136421, 0.0015992558, -0.02058591, 0.015748633, -0.0077506364, 0.027965505, -0.020984435, -0.0081835175, 0.0040470962, -0.027168455, -0.0031023158, 0.0073864665, 2.098916E-4, 0.008808791, -0.004772001, -0.02216627, -0.03699417, -0.007317755, 0.0068470826, 0.018071076, -0.006733709, 0.0012196258, 0.018194756, -0.024296321, -0.0039886916, -0.035922274, -0.012361165, 0.014374407, 0.035015285, 0.012794047, 0.006774936, 0.007462049, 0.018304694, 0.012869629, 0.007420822, 0.007675054, 0.022180013, 0.007097879, -0.03309137, 0.003590166, -0.013474289, -0.019665178, 0.014415634, 0.011680923, 0.050049324, 0.015047778, 0.009667682, -0.032239348, 0.0022623201, -0.010560929, -0.105650514, -0.0036039085, 0.006235552, 0.027663175, -0.03405333, 0.034630504, -0.027264649, 0.014580541, -8.696276E-4, 0.03941281, 0.0069604563, -0.01104878, 9.705473E-4, 0.0033668545, 0.012134418, 0.0020407261, -0.01937659, -0.013639196, 0.0073933373, 0.015831087, 0.001701464, -0.011419821, -0.010114306, -0.011117491, -0.026852382, 0.01032044, -0.041941386, 0.03177211, 0.02216627, 0.0058988663, 0.0036004728, -0.025450671, 0.011028166, -0.028748814, -0.03564743, -0.01080829, -0.02064088, -0.006108436, 0.012581042, -0.044717323, 0.0072009456, 0.010588414, 0.0038718826, -0.023169456, -0.0015168022, 7.218983E-4, -0.029408444, 0.030947575, -0.010024981, -0.027786857, 0.0059503997, -0.012842145, -0.03138733, -0.0019325058, 0.029848196, 0.029738257, 0.012539815, -0.002057904, 0.0016018326, -0.011797733, 0.0075994716, 0.0034750747, -0.01719157, 0.017919911, 0.03369603, 0.013666681, 0.011605341, 0.007730023, 0.01602348, -0.012828402, -0.02483227, 0.015776118, -0.01998125, -0.003274094, -0.014484345, -8.5728105E-5, -0.05312759, -0.003837527, 0.021973878, -0.03638951, 0.013728521, -0.027099743, 0.020984435, -0.0307277, 0.012223743, 0.02993065, 0.016930468, 0.014690479, -0.006946714, -0.02277093, -9.3790947E-4, 0.025244538, 0.0045074625, -0.013591098, -0.001977168, 0.024557425, 0.018895611, 0.022784673, 0.011495403, 0.0050743306, -0.010822032, 0.007943028, -0.06953585, 0.02465362, -0.0047101607, -0.015281397, -6.250448E-6, -0.0055209543, 0.01178399, -0.0071872035, -0.010416635, 0.02501092, -0.029765742, 0.01845586, -0.001788212, 0.0071734614, 4.6036582E-4, -0.009530259, 0.0029614577, -0.0016224459, -0.0020115238, 7.0944434E-4, -7.206099E-4, 0.014044593, 0.031414814, 0.0049884412, -0.02817164, 0.020792045, 0.021025663, 0.01299331, -0.0147179635, -0.0061187427, 0.02836403, -0.027910536, 0.016586911, 0.011921413, -0.013543, -0.024076445, -0.004486849, 0.006946714, 0.030013103, 0.031607203, -0.01822224, -0.028748814, -0.013027665, -0.012807789, 0.0012187669, 0.027965505, -0.025849197, 0.018950582, 0.021382961, 0.0136323245, 0.022344919, 0.013618583, 0.0016834273, -0.032569163, 0.011165589, -0.010011239, 0.055491257, 0.0059126085, 0.0059641423, -0.007730023, 0.023609208, 2.273915E-4, 0.027676918, -0.013776619, 0.009296641, -0.01178399, 0.009440934, -0.008568301, -0.0065172683, -0.006050031, -0.009489032, -0.006661562, 0.008506461, 0.03757135, 0.014690479, 0.006235552, 7.1631547E-4, 0.026206495, -0.0029322554, 0.008657626, 0.006747451, -0.01603722, -0.020434745, 0.02289461, 0.0049334723, 0.0064829127, 0.004912859, -0.020187384, 0.001764163, 0.004318506, 0.0022657556, 8.374191E-4, 0.0138315875, -0.0015795013, -0.004991877, 0.011811475, -0.021726517, -0.009330996, -0.0030817024, 0.018607024, -0.005125864, 9.420965E-5, 0.004730774, -0.028638877, -0.026288949, -0.007784992, -0.02762195, -0.043865304, -0.003569553, 0.0150065515, 0.0038512691, -0.001748703, -0.01815353, -0.0011131233, -0.032211866, 0.021108115, -0.019912539, -0.008252229, -0.018359663, 0.032761555, 0.00495065, 0.017232798, 0.041639056, -0.0014343488, 0.026550053, 0.006211503, 0.015954766, -0.012416135, -1.3012205E-4, 0.010533445, -5.965001E-4, -0.010423507, -0.016655622, 0.011124362, -0.01311699, -0.01481416, 0.0061496627, 0.01275282, -0.02314197, 0.06156534, 0.031194936, 0.0018809723, 0.020132415, -0.017054148, 0.025052145, 0.008808791, 0.013962139, -0.016724333, 0.0050502815, -8.814374E-5, -0.00868511, 0.00370354, -0.051176187, -0.016724333, 0.004864761, -0.008650755, 0.013838459, -0.003473357, -0.010093692, 0.0050056195, -0.0031572848, 0.02550564, 0.0015846547, -0.013824716, -0.01998125, 0.045294497, -0.020572167, -0.009035538, -0.023348104, 0.0073933373, -0.021547869, -0.0070051188, -0.015418819, 0.029683288, -0.009592099, -0.020132415, 0.004548689, 0.010430378, 0.0035936018, 4.264396E-4, -0.00643825, -0.027305877, -0.0038787536, 0.014250726, -0.005885124, 0.006235552, -0.013914041, -0.03188205 ], + "id" : "41340f84-bbca-4d07-bbdc-142c456cb89e", + "metadata" : { + "source" : "movies.csv" + } + }, + "7d2939e3-ebbe-4eda-8eec-fcc3d4c390cc" : { + "text" : "Jeremy Piven-Verena Mei-Joel McKinnon Miller-Angela Little-Julia Schultz-Saul Rubinek-Gianni Russo-Michael Chow-Teresa Lin-Tanya Newbould-Don Cheadle-Andy Cheng-Simon Rhee-Patricia Chan-Gelbert Coloma-William Duen-James Duke-Mars-Bradley James Allan-James Lew-Roger Lim,martial arts-los angeles california-criminal investigation-interracial friendship-buddy cop-duringcreditsstinger-action hero-good versus evil,/aBQf2vMiCINeVC9v6BGVYKXurTh.jpg,/zzFTSEAZcLGSbGipQVflSNUqpij.jpg,5174-2109-6038-8584-8961-9737-10771-10610-10204-4108-23172-10622-1729-9335-38575-36955-8697-9404-25676-42580-90\r\n2048,\"I, Robot\",Action-Science Fiction,en,In 2035 where robots are commonplace and abide by the three laws of robotics a technophobic cop investigates an apparent suicide. Suspecting that a robot may be responsible for the death his investigation leads him to believe that humanity may be in danger.,33.634,Davis Entertainment-Laurence Mark Productions-Canlaws Productions-20th Century Fox-Overbrook Entertainment-Mediastream Vierte Film GmbH & Co. Vermarktungs KG,7/15/04,120000000,347234916,115,Released,One man saw it coming,6.9,11181,Will Smith-Bridget Moynahan-Alan Tudyk-James Cromwell-Bruce Greenwood-Shia LaBeouf-Chi McBride-Jerry Wasserman-Peter Shinkoda-Terry Chen-David Haysom-Scott Heindl-Adrian Ricard-Fiona Hogan-Sharon Wilkins-Craig March-Darren Moore-Emily Tennant-Tiffany Lyndall-Knight-Aaron Douglas-Angela Moore,chicago illinois-future-man vs machine-hero-artificial intelligence (a.i.)-based on novel or book-grandparent grandchild relationship-homicide-detective-dystopia-hologram-murder-robot as menace-car accident-robot-grandmother-robotics-humanoid robot-talking robot-self-driving car-homicide investigation-2030s-robot companion-old robot-new robot,/efwv6F2lGaghjPpBRSINHtoEiZB.jpg,/lOXVbF2mBK0xUt8sLInF3TIk5YS.jpg,6479-607-608-602-8960-1071170-41154-605-1858-604-9738-558-180-8373-557-310-425-534-1271-285-564\r\n136799,Trolls,Family-Animation-Fantasy-Adventure-Comedy-Music,en,Lovable and friendly the trolls love to play around. But one day a mysterious giant shows up to end the party. Poppy the optimistic leader of the Trolls and her polar opposite Branch must embark on an adventure that takes them far beyond the only world they��ve ever known.,49.736,DreamWorks Animation,10/13/16,125000000,346864462,92,Released,Find your happy place.,6.", + "embedding" : [ 0.009505689, -0.038348433, -0.020571912, -0.017260866, -0.010550569, 0.03875553, -0.0092750015, -8.4599614E-4, -0.027044738, -0.046978865, 0.018007208, 0.018170048, 0.031264964, -7.6203264E-4, 0.010998374, 0.0115140285, 0.02281094, -4.851226E-4, 0.017220156, -0.022078168, 0.008386175, 0.013800551, -0.017125167, 9.956887E-4, 0.0040302495, 0.008521874, 0.02484642, -0.008996819, -0.015361085, 0.003969185, 0.007748392, -0.007992649, -0.017695101, -0.034060355, -0.010543783, 0.0015707116, 0.012477489, -0.0108830305, 0.023896528, 0.0028361015, 0.014384055, 0.013454519, -0.0063473033, -0.013176337, -0.017654391, 0.009146088, 0.0045662588, 9.524348E-4, -0.015578203, 0.029989397, 0.032920487, 0.028225316, -0.011948264, -0.027465403, -0.0108966, -0.0046578557, -0.015306805, 0.015238957, -5.275284E-4, 0.008372606, -0.0016724856, -0.01038773, -0.039108347, -3.1719555E-4, -0.012586048, -0.010062054, -0.010285956, 3.793201E-4, 0.0102723865, -0.0024357904, 0.023462294, 0.00836582, 0.026434094, -0.008467594, 0.025606332, -0.04057389, -0.0179665, 0.0074973493, 0.0024001696, 0.0054008057, 0.013054208, -0.0016097251, 6.4287224E-4, 0.016623082, -0.0030617004, 0.013963389, -0.025253516, 0.011480104, -0.02969086, 0.003182133, 0.012301081, 0.041469503, -0.011568308, -0.002060923, 0.013664852, 0.021345396, -0.026610501, 0.018631423, -0.025660612, -0.031400662, 0.018631423, -0.017708672, -0.009817796, -0.011120503, 0.005119231, 0.00645247, 2.1107498E-4, -0.0019862887, 0.022010317, 0.017613683, -0.005404198, -0.0026681744, 0.007476995, -0.048362993, -0.014397625, -0.0130406385, 0.027560392, -0.003986147, -0.026149126, -0.02776394, 0.03178062, 0.044020634, 0.01880783, -0.035390202, 0.055799276, 0.029338043, 0.015076118, -0.010916955, -0.010611633, -0.006109831, 0.023299456, -0.005142978, 0.025457064, 0.013502014, -0.027004028, 0.03457601, -0.03080359, 5.0717365E-4, -0.024697151, -0.013949819, 0.024520742, 0.02285165, -0.02779108, -0.012280726, -0.014411194, 0.0041422006, 0.009695667, 0.006160718, 0.00421005, 0.010835536, 0.01982557, 0.021006148, 0.007761962, 0.018129338, 0.023367304, -0.013814121, 0.0020015547, 0.02088402, -0.0020015547, -0.011018729, -0.014071948, -0.010347021, 0.0038267013, -0.030260794, 0.017247297, 0.027383983, 0.018129338, -0.014791151, -0.0028632411, -0.0015249134, -0.008800056, 0.042229414, -0.03178062, 0.007958725, -0.0120636085, 0.006584776, -0.002591844, -0.020571912, -0.022960208, -0.0037622445, 0.013502014, 0.0027648597, 0.016134568, 0.031997737, 0.0034840624, 0.013508799, 0.027031166, -0.0051226234, 0.0030481305, -0.018929958, 0.0032364123, 0.020354794, 0.008026574, -0.0047155274, -0.63441825, -0.023625132, 0.0016003958, 0.013128842, 0.026026998, 0.024235776, -0.0024798925, -0.019472754, -0.025253516, -0.0096617425, -0.020395504, 0.02369298, 0.034223195, -0.006075906, -0.020463353, -0.01091017, 0.017369425, -0.029120926, 0.009403915, 0.008935755, -0.027207576, 0.014519754, 0.0116565125, -0.013420595, 0.0092546465, -0.0075855535, -0.0123689305, -0.0070970384, 0.009838151, 0.015713902, -0.017762952, 0.025049968, 0.008169058, -0.0016741819, 0.032024875, -0.0062590996, -0.017179446, 0.059056044, 0.023855818, 0.029935118, -0.04041105, 0.013529154, 0.005149763, 0.002527387, 9.0409216E-4, 0.022376705, 0.0057773693, -0.00939713, -0.013637712, -0.0133663155, 0.001573256, 0.027506113, -4.1345676E-4, -0.0099263545, 0.0023136616, -0.0123825, 0.0094785495, -0.020110536, 0.011303696, 0.005994487, -0.024656441, 0.008080853, -0.002520602, 0.012599618, -0.013542724, 0.02776394, -3.4687962E-4, -0.019974839, 0.0010245247, -0.03161778, 0.0122264465, 0.0125317685, -0.03568874, 8.37515E-4, 4.2935895E-5, 0.018590713, 0.024602162, -0.0026393384, -8.879779E-4, 0.017369425, -0.007829811, -0.009166443, 0.0055331117, 0.021440383, 0.017450845, 0.0015130397, -0.036285814, 0.021494662, -0.0074498546, -0.00942427, 0.016175278, 0.027506113, -0.0015300021, 0.0038504486, -0.019187786, 2.3620043E-4, -0.002520602, 0.010238462, 0.017355856, -0.05748194, -0.0052718916, -0.026529083, 0.058079015, 0.0018081843, 0.011710792, -0.003562089, -0.005600961, -0.0052583218, 0.015985299, -0.010102763, -0.0103130955, 9.6261216E-4, -0.008223337, -0.0070902533, -0.014994699, -0.025416354, 0.0047664144, 0.0316992, -7.4464624E-4, -0.018672131, -3.5705703E-4, -0.010550569, 0.0068493886, -0.0082369065, 0.011948264, 0.025321364, -0.0056348857, -0.0061369706, -0.0055161496, -0.0014299243, -0.017423704, 0.0105980635, 0.024547882, -0.024927838, 0.009953494, 0.0069308076, 0.018346455, -0.006096261, 0.007375221, -4.0773198E-4, -0.019350626, 0.0048342636, -0.016066719, -0.0057502296, -0.0068426034, -0.028171036, -0.031997737, 0.0014969255, -0.004037034, -0.0062658843, 0.0020660118, 0.012192522, 4.995406E-4, 0.016107427, 0.008352251, -5.945296E-4, -0.039026927, -0.0178308, 0.013312036, -0.019187786, 0.015279666, 0.0036977876, -0.009498904, -0.023584422, 0.023204466, 0.013658067, -0.01579532, 0.022390274, -0.023163756, -0.025850588, 0.010584493, -0.019228496, 0.006459255, 0.008297971, -0.016595943, 0.036557212, -0.02675977, 0.007205597, -0.007612693, -0.0066390554, -0.017328715, 4.1133648E-4, -0.029338043, -0.018319314, 0.02871383, 0.025226375, 0.021291114, 5.453389E-4, -0.019622022, 0.002927698, -0.02088402, 0.0032347161, -0.001135628, -0.0059707398, 0.0035519116, 0.013535938, 0.002454449, 0.0033246165, 0.0107201915, 0.0037181424, 0.021399675, 0.016012438, -0.0016394091, -0.026556222, 0.0034569227, -0.03289335, 0.0020711003, -0.025945578, 0.009078238, -0.0020236059, 0.021521803, -0.0062658843, -0.012816736, -0.0040743514, 0.0098652905, 0.03259481, -0.017247297, 0.0127353165, -0.021481093, 0.0074905646, 8.3200226E-4, -0.015578203, 0.014981129, 0.0063269488, -0.011609018, 0.015021838, 0.022037458, -0.012009329, -0.004573044, -0.021956038, -0.02764181, 0.007273447, 0.020029118, 0.010204537, -0.0043457486, -0.009729592, 0.021277545, -0.010767686, 0.029663721, -7.1411405E-4, -0.00791123, 0.021426814, 0.012491059, 0.0034671, 0.008881476, 0.0039725774, 0.024480034, 0.017098028, -0.0054618698, 0.06030447, -0.027478972, 0.018319314, -0.019309916, -0.002702099, -2.2665912E-4, -0.018088628, -9.074846E-4, 0.0016300798, 0.032459114, 0.015103257, 0.026976887, -0.021481093, 0.027573962, 0.024181496, 0.016270265, -0.0049869246, -0.015347515, -0.0034314792, -0.0142619265, -0.027207576, -0.015496784, -0.010916955, 0.007042759, -0.004501802, 0.0017191321, -0.013617357, -0.023665842, 0.015428934, 0.01883497, 0.023557283, -0.0027665559, -0.024018658, 0.013712347, 0.025022827, -0.0104962895, -0.008738992, -0.010706622, -0.017654391, -0.02579631, -0.015374655, -0.014017669, 0.033219025, -0.010754117, 0.023353735, -0.004355926, 0.0041998727, 0.0013671637, -0.019540602, 0.017342284, 0.011276556, 0.0018336277, 0.01787151, -0.006662803, -0.011310481, 0.010408085, -0.018522862, -0.002295003, 0.001573256, -0.006001272, -0.02281094, -1.9411265E-4, 0.01675878, -0.034250334, 0.008732207, -0.020544773, -0.005855396, -2.2249806E-5, -0.01779009, -0.0061200084, -0.0027309349, -0.014709732, -0.02678691, -0.018224327, 0.0058384337, 0.07832525, 0.03883695, 0.012728532, 0.009485334, -0.012273941, -7.2598766E-4, -0.0084404545, -0.0188214, -3.6447804E-4, -0.015903879, 0.02974514, -0.022227436, 0.027370414, 4.1981763E-4, 0.025484202, -0.009010389, 0.008691497, -0.0027360236, 0.0075651985, -0.0039590076, -0.00843367, -0.0140583785, 0.016595943, 0.02568775, 0.019364195, -0.0135698635, 0.0335447, 0.015646052, 2.4425754E-4, 0.012728532, -0.012090748, 0.014709732, -8.52357E-4, 0.0025816665, -0.014750442, -0.013128842, 0.0356616, 0.025714891, 0.033436142, 0.015388225, -0.0054075904, 0.019404905, 0.0026885292, -0.0122468015, 0.0128370905, -0.030939288, -0.010726977, 0.03574302, 0.032269135, -0.039352603, -0.005773977, 0.01389554, -0.015659623, -0.014859, 0.019594882, 0.0053906282, -0.0053227786, -0.011073008, -0.03066789, -0.0014299243, 0.0053227786, -0.03861983, 0.020599052, -0.0217932, -0.010584493, -0.018550003, -0.0106387725, 0.0043287864, -0.0017725633, -0.0011466534, -0.0050581666, -0.0135495085, -0.019147078, -0.0017522086, 0.017993638, -0.014370485, 0.034250334, -0.007436285, 0.0027699482, 0.024765, -0.036937166, -0.038891226, 0.010380945, -0.0059809173, -0.017572973, 0.0034772775, -0.0061573256, 0.03278479, -0.011215492, -0.0037588521, 0.0081554875, 0.0010092586, -0.0120839635, -0.0097635165, 0.058133293, 0.0018200579, 0.017681532, 0.02380154, 0.0014299243, -0.00694777, -0.015238957, -0.03148208, 0.0018081843, -0.026949748, -0.014764011, -0.0042270124, -0.01038773, 0.00836582, -0.010693052, -0.020219097, -0.023679411, -0.019459184, 0.0036977876, 0.002520602, 0.010157042, -0.0023849034, 0.020219097, 0.0018522863, -0.0013060994, -9.488303E-5, 3.765637E-4, -0.01492685, 0.007476995, 0.015510353, 0.0019862887, 0.015252526, -0.0036876104, -0.03254053, -0.0025155134, 0.027058307, -0.0019795038, 0.014899709, -0.023964379, 0.0012857445, -0.010340236, -0.028143896, 0.006255707, 0.0026902254, -0.012077178, 7.039367E-4, -0.031916317, 0.017993638, 0.0073684356, -5.381299E-4, -0.0034467452, -0.028903808, 0.0028785071, -0.0067408294, 0.008922185, 0.028903808, -0.0022101915, 0.033110466, -0.018875679, 0.014587603, 0.004749452, -0.028361013, -0.020517632, -0.01781723, 0.037127145, 0.0050140643, 0.023285884, -0.0018811222, 0.025877729, -0.0015961551, 0.016080288, 0.029202346, -0.022553112, -0.0026766555, -0.029365184, -0.0016707894, 0.0059809173, 0.020232666, -0.0047155274, 0.0110255135, -0.019106368, 0.0118872, 0.009675313, 0.03696431, -0.005651848, -0.028632412, -0.0115750935, 2.891547E-5, -0.023760831, 0.0021728743, -0.010340236, -0.008705067, 0.028958088, -0.012199307, -0.001682663, 0.008067284, 0.025918439, -0.0037758143, 0.004013287, -0.009648173, 0.0126335425, -0.03088501, -0.013318821, -0.02374726, -0.0027122763, -0.002272952, -0.009994204, 0.02088402, 0.0072327373, -0.019391334, -0.0097228065, 0.03286621, -0.0075041344, -0.05167404, 0.00566881, -0.015266096, -0.015578203, -0.016541664, -3.8568096E-4, -0.02670549, -0.024371475, -0.018251466, -0.0020371757, 0.015469644, -0.022308854, -0.039624, 0.014451904, 0.0023798146, 0.035254505, 0.020653332, 0.041035265, 0.037425682, 0.025511343, -0.005315994, -0.0058655734, -0.0034704925, -0.0015613823, 0.02879525, 0.018550003, -0.019594882, -0.0027411124, 0.008080853, -0.008494735, -0.045404762, -0.045296203, 0.018617852, 0.025416354, 0.015591772, -0.034494594, -0.005950385, -0.028496712, 0.0059910947, -0.0047528446, 0.017627252, 0.005885928, -0.017980069, -0.01342738, 0.013108488, -3.693547E-4, 0.013183122, -0.0022933069, -0.02781822, 0.008521874, -0.010367376, -0.004878366, 2.5295073E-4, -0.018427875, 0.030912148, 0.0019625414, 0.0096820975, -0.0010465757, 0.0049631773, -0.0031923102, -0.007734822, -5.1226234E-4, 0.03389752, -0.032350555, 0.020504063, -8.2776166E-4, -0.020164816, 0.017193016, 0.00617768, -0.0070088343, -0.008576154, -0.020096967, -0.0031957028, 0.028550992, 0.015130397, -0.0018387164, 0.0033602375, -0.019079227, -0.023597991, 0.025579192, -0.013176337, 0.009675313, -0.03861983, 0.0108966, -0.0059028906, 0.015401795, 0.0034263905, 8.879779E-4, -0.0022390275, 3.0823732E-5, 0.0031058025, -0.0140583785, -0.0022390275, -0.016555233, -0.015130397, -0.037289985, -0.027112586, 7.734822E-4, -0.014750442, 0.001034702, -0.03259481, 0.0030786628, 0.0077212523, -0.0023408013, -0.00791123, -0.0103334505, -0.02183391, 0.0040947064, 0.0084608095, -0.0048206937, -0.020042688, 0.014750442, 0.032404833, -0.0016351686, -0.0012374019, 0.011120503, -0.001587674, 0.015632482, -0.020422645, 0.021684641, -0.0068493886, -0.0132645415, -0.0042778994, 0.0052922466, 0.030477913, 0.019269206, -3.080783E-4, -0.04765736, 2.5676726E-4, -0.006890098, 0.029935118, 0.005977525, 0.011805781, 0.019187786, 0.033137605, 0.036122974, 0.031264964, -0.006584776, -0.039705418, 0.026447663, -0.017247297, -0.020748321, -0.0028445825, -9.388649E-4, 0.015523924, 0.010978019, -0.014044808, -0.013793766, -0.008006219, -0.020531204, -0.04032963, -0.01141904, 0.02884953, 0.026216976, -0.011303696, 0.010978019, 0.0075177043, 0.007985865, 0.027085448, -0.005031027, -0.008040144, 0.015727472, -0.0027563784, 0.010604848, 0.022091737, -0.025986288, -0.015062548, 0.013976959, 0.020205526, 0.007748392, 0.021358965, -0.011798996, 0.006781539, -0.014736871, 0.0059164604, -0.0101299025, -0.006052159, 0.02990798, -0.022213865, -0.022363134, -0.012592833, 0.013590218, -4.4340588E-5, -0.0073887906, 0.0046680328, -0.015225386, -0.0063235564, -0.007660188, -0.0100484835, 0.008854336, -0.02982656, 0.037127145, -0.0015783447, -0.0073005864, -0.0016428016, 0.0119211245, 0.0059300303, -0.008148703, -0.0074159303, 0.0056348857, -0.014180507, 0.004864796, 0.003292388, 0.018278606, -0.027899638, 0.020626191, -0.023340164, -0.003867411, -0.009756732, 0.0038063466, 0.0066967276, 0.020544773, 0.012681037, -0.04236511, 0.0111272875, -0.016148137, 0.0098449355, -0.035987277, -0.0064219376, -0.02681405, -0.018482154, -0.0111883525, 0.0086643575, -0.01978486, -0.027845358, 0.005346526, -0.0058893207, -0.023625132, 0.0118600605, 0.18726411, -0.014356915, 0.0065712063, 0.04673461, -0.00985172, 0.007904445, 0.023041628, 0.009057883, -0.0013646194, 0.0010805003, 0.0046816026, -3.9649443E-4, 0.012993144, 0.0056755953, 0.024507172, -0.019323485, -0.0318349, -0.017559404, -0.014682592, -0.022376705, -0.017980069, -0.014166937, -0.013237402, -0.02183391, 0.006527104, 0.021589652, -0.018265035, 0.001063538, 0.016270265, -4.762174E-4, -0.018115766, -0.011568308, 0.007958725, -0.0011746413, 8.81193E-4, -0.017586542, -0.008046929, 0.009139303, 0.025416354, -0.0012034773, -0.0125724785, -0.008182627, -0.0012704785, -0.012443565, -0.0039284755, 0.02769609, -0.028930949, 0.0045153718, -0.021630362, 0.0046137534, -0.0418766, -0.0021287722, 0.03150922, 0.035471622, -0.003969185, -0.007823026, 0.0051226234, 0.009668527, -0.01141904, 0.0120839635, 0.020476924, 0.028361013, -0.031047847, 0.014316206, -0.0026902254, 0.008087639, -0.029392324, -0.007931585, 0.012491059, -0.032350555, -0.0012764153, -0.03254053, -0.0073005864, -0.0070902533, -0.022607392, -0.02982656, -0.0026257685, 0.027343275, 0.0048410487, 0.019757722, -0.036340095, -0.012070393, 0.007103823, -0.013298466, -0.008589723, -0.01282352, 0.022525974, -0.015768182, 0.002810658, -0.0075991233, -0.009037529, -0.030152235, -3.0341366E-4, 0.00320588, -0.017722242, 0.017600112, 0.016677361, -0.0027699482, -0.0208026, -0.0045866137, -0.04469913, 0.015998868, 0.032486252, 3.721111E-4, -0.02576917, -0.008189413, 0.0027733408, 0.007646618, 0.0071920273, -0.02089759, -0.02186105, -0.017260866, 0.009213937, -0.012240017, 0.012871015, 0.014099088, -0.006883313, -0.022566682, 0.050208494, -0.0091528725, 0.0027886068, -0.016785922, 0.0054008057, 0.003460315, -0.013990529, -0.03281193, -0.029582301, 0.0028717222, -0.006839211, -0.014614742, 0.011588663, -0.015564633, 0.012952434, 6.3926775E-5, 0.007307371, 0.0024442717, 0.026922608, 0.0045119794, 0.012097533, -0.0060351966, -0.0066967276, -0.0010024736, 0.005862181, -5.805357E-4, 0.009139303, -0.019228496, 0.010367376, -0.0064728246, -0.0050581666, -0.031292103, -0.009193582, -0.008610078, 0.0188214, 0.006771362, 0.052026857, -6.666195E-4, -0.028361013, -0.027981058, -0.007219167, 0.038972646, -0.040546753, 0.037507102, 0.025755601, -0.004674818, -0.047304545, -0.017084457, -0.17380281, 0.010116333, 0.013393455, -0.04383066, 0.024466462, 0.021589652, 0.008107993, 0.0037622445, 0.0062523144, -0.021603223, 0.036095835, 0.013488444, -0.028252454, -0.02177963, 0.014723302, 0.029419463, -0.0133731, 0.046381794, 0.024439324, 0.005804509, 0.03677433, 0.00793837, -0.018984238, 2.096968E-4, 7.5779203E-4, 0.0074023604, 0.016310975, 0.003677433, 0.01093731, -0.016473813, -0.043776378, -0.0068799206, 0.008684712, 0.012972789, -0.010326666, 0.008128348, -0.0063099866, -0.030505052, -0.008080853, -0.017423704, 0.043694958, 0.01779009, 0.023258746, 0.0033195277, 0.013169552, 0.030586472, 0.04431917, -0.029283764, 0.0140583785, -0.021399675, -0.003612976, -0.041225243, 0.02879525, -0.0064931796, 0.008501519, 0.02772323, -0.007979079, -6.572902E-4, 0.009695667, 0.02173892, -0.010095978, -0.0120839635, 0.007795886, -0.013271326, -0.009498904, -0.03378896, -0.012524984, 0.005244752, -0.027058307, 0.016460244, -0.023245176, 0.015523924, 0.0115547385, -0.009444625, 0.0053600958, -0.01488614, -0.031427804, -0.0050751287, 0.005621316, 0.007741607, 0.0048478334, 0.026434094, -0.0012908332, 0.015469644, 0.010625203, -7.2641176E-4, 0.02369298, -0.009471765, 0.0030718779, -0.01992056, -0.0012026291, -0.0047460594, -0.026230546, 0.0018675524, -0.006126793, -0.007035974, 0.0026495159, 0.013128842, 0.009702452, -0.022322426, -2.7542582E-4, -0.011710792, -0.011100148, 0.025307795, 0.017111598, 0.011201922, 0.0065372814, 0.024683582, 0.0098856455, -0.0047155274, -0.012518199, 9.3038374E-4, 0.018346455, 0.011459749, -0.02779108, 0.0023662448, -0.009797441, -0.016080288, 0.013257756, 0.022702381, 0.034358893, 9.617641E-4, -0.0046782102, -0.0032516785, -0.013793766, -0.02776394, -0.07745678, 8.629585E-4, 0.0109848045, 0.03853841, -0.04060103, 0.037941337, -6.187009E-4, 0.019391334, -0.027424693, 0.026610501, 0.017410135, -0.030857868, 0.0031091948, 0.002454449, -0.0051260157, -0.020151246, -0.018658562, -0.0025121209, -0.019011378, 0.022458123, 0.0029734962, 0.0023119655, 0.008392961, -0.016215986, -0.01583603, 0.0103334505, -0.032377694, 0.026311964, 0.0032431972, 0.009878861, 0.013033854, -0.027899638, 0.015768182, -0.050072797, -0.01388197, -0.020463353, -0.026135556, -0.0338161, -0.00249007, -0.044129197, 0.0051531554, 0.0032313236, 0.008202982, -0.019418474, -0.025199236, -0.0098245805, -0.03568874, 0.0237744, -0.01792579, -0.020137677, -0.008935755, -0.021263976, -0.015211817, 0.0056925574, 0.01974415, 0.0109440945, 0.042880766, 0.00847438, -0.0070766835, -0.027288994, 1.7778641E-4, -1.3792493E-4, -0.030857868, 0.022783801, 0.0066899424, 0.0021440384, 0.009634603, -3.5790514E-4, 0.020504063, -0.017654391, -0.014641882, 0.018712841, -0.028930949, -0.011059439, -0.020205526, -0.0068493886, -0.007904445, -0.01575461, 0.02574203, -0.028279595, -0.008806841, -0.026094846, 0.0061369706, -0.0114326095, 0.020992579, 0.0131424125, 0.013922679, -0.008162273, -0.0010219803, -0.028686691, -0.00993314, 0.025334934, -0.002549438, 0.003999717, 0.0044678776, 0.0028886846, 7.298042E-4, -0.008284401, -0.005848611, 0.0046646404, -0.019119937, -0.0011517422, -0.07425429, 0.022308854, -0.021956038, -0.0045119794, -0.0121246725, -0.017437274, 0.021046858, -0.0052752844, 0.018970668, 0.016419534, 7.917167E-4, 0.011785426, -0.0015571418, 0.0022271539, -0.007531274, -0.0055941762, 0.012579263, -0.014804721, -0.008426885, -0.0033805922, 0.0015486606, 0.013325606, 0.024982117, 0.014221217, 0.0013120362, 0.018509293, -0.018170048, 0.005061559, -0.008209767, -0.011744716, 0.026976887, -0.010767686, -0.009085024, -4.749452E-4, -0.007239522, -0.024561452, -0.001959149, 0.021426814, 0.00991957, 0.0061200084, -0.022960208, -0.0377785, 0.009118948, -0.019988408, 0.0043661036, 0.0037927767, -0.015184677, 0.0112901265, 0.0109440945, 0.008175842, 0.029256625, 0.009607463, -0.025850588, -0.0135495085, 0.008772916, -0.020789031, 0.04944858, -0.01580889, -0.017708672, 0.0032279312, 0.04236511, 0.0013273022, 0.032920487, -0.03389752, 0.004369496, 0.01597173, -0.0021983178, -0.003619761, 0.0027394162, -0.026379814, -0.01685377, -0.0076059084, 0.02283808, 0.027139727, 0.021603223, 0.015618913, 0.006896883, 0.0108626755, -0.004084529, 0.023652272, 0.013637712, -0.0015495088, -0.02675977, 0.008996819, -0.008264047, 0.027017597, -0.0031804366, 0.011771856, 0.0106184175, 0.0031363347, -0.017722242, 0.015551063, 0.015252526, 0.006445685, 0.00310241, 0.025158526, -0.010808396, -0.0042575444, 0.015456074, 0.014859, 0.004807124, -0.008046929, -0.010109548, -0.012586048, -0.015727472, -0.008840766, -0.011588663, 0.002244116, 0.0178308, 0.025457064, 0.020829739, 0.006510142, -0.011771856, 0.011547954, -0.029148066, 0.011276556, 0.005885928, -0.02982656, -0.01681306, 0.043369282, 0.011826136, 0.0066594104, 0.040085375, -0.009600678, 0.03167206, 0.01492685, 0.008040144, -0.027356844, 0.0027292387, 0.006279454, 0.011704007, -0.014587603, -0.023760831, 0.011005159, -0.014221217, 0.004389851, 0.0076873275, 0.038104177, -0.016256696, 0.079248, 0.013963389, 0.013658067, 0.026909038, -0.0032228425, -0.0035451266, 0.0105777085, 0.021603223, -0.028876668, -0.009098593, -0.007253092, -0.01876712, 0.0049326452, -0.027139727, 0.009702452, 0.0072938013, 0.008501519, 0.008691497, 0.0012882889, -0.005180295, -0.0067408294, -0.012518199, 0.017057318, -7.5651985E-4, -0.018007208, -0.0038945507, 0.026488373, -0.0052176123, 7.1665837E-4, -0.03780564, -0.005047989, -0.023150187, -0.03083073, 0.002870026, 0.03278479, -0.017003039, 0.004033642, 0.019717012, 0.005977525, -0.005112446, -0.003044738, -0.00421005, -0.0128574455, -1.6930525E-4, 0.028008198, -0.010055268, -2.468814E-5, -0.025212806, -0.0051361932 ], + "id" : "7d2939e3-ebbe-4eda-8eec-fcc3d4c390cc", + "metadata" : { + "source" : "movies.csv" + } + }, + "6e6ed8ef-93df-42c7-b941-9e9342214271" : { + "text" : "Pictures-Heyday Films-1492 Pictures,11/13/02,100000000,876688482,161,Released,Hogwarts is back in session.,7.722,19555,Daniel Radcliffe-Rupert Grint-Emma Watson-Kenneth Branagh-John Cleese-Robbie Coltrane-Warwick Davis-Richard Griffiths-Richard Harris-Jason Isaacs-Alan Rickman-Fiona Shaw-Maggie Smith-Julie Walters-David Bradley-Tom Felton-Sean Biggerstaff-Robert Hardy-Shirley Henderson-Gemma Jones-Miriam Margolyes-Mark Williams-Harry Melling-Bonnie Wright-James Phelps-Oliver Phelps-Chris Rankin-Toby Jones-Josh Herdman-Jamie Waylett-Christian Coulson-Matthew Lewis-Alfred Enoch-Devon Murray-Luke Youngblood-Hugh Mitchell-Edward Randell-Veronica Clifford-Jim Norton-Tom Knight-Heather Bleasdale-Ben Borowiecki-Isabella Columbus-Edward Tudor-Pole-Gemma Padley-Jenny Tarren-Peter O'Farrell-Eleanor Columbus-Harry Taylor-Rochelle Douglas-Emily Dale-Danielle Tabor-Jamie Yeates-Violet Columbus-Peter Taylor-Scot Fearn-David Holmes-David Massam-Tony Christian-David Churchyard-Sally Mortemore-Louis Doyle-Charlotte Skeoch-Brendan Columbus-Robert Ayres-Alfred Burke-Leslie Phillips-Helen Stuart-Daisy Bates-David Tysall-Martin Bayfield-Julian Glover-Les Bubb,flying car-witch-sword-magic-diary-child hero-school of witchcraft-giant spider-giant snake-black magic-child driving car-wizard-aftercreditsstinger-based on young adult novel-elf,/sdEOH0992YZ0QSxgXNIGLq1ToUi.jpg,/7tbeoSTWW2cWPecjQo9fcdf0Hzv.jpg,674-673-671-675-767-12444-12445-22-58-285-1865-12-585-121-425-8587-70160-557-808-120-9806\r\n328111,The Secret Life of Pets,Adventure-Comedy-Animation-Family,en,The quiet life of a terrier named Max is upended when his owner takes in Duke a stray whom Max instantly dislikes.,14.107,Illumination,6/18/16,75000000,875457937,86,Released,Think this is what they do all day?,6.262,7450,Louis C.K.-Eric Stonestreet-Kevin Hart-Jenny Slate-Ellie Kemper-Albert Brooks-Lake Bell-Dana Carvey-Hannibal Buress-Bobby Moynihan-Chris Renaud-Steve Coogan-Michael Beattie-Sandra Echeverr�_a-Jaime Camil-Kiely Renaud-Tara Strong-Jason Marsden-Mona Marshall-Brian T. Delaney-Bill Farmer-Jan Rabson-Ken Schretzmann-John Kassir-Danny Mann-Jim Ward-Tyler Werrin-Bob Bergen-Jim Cummings-Jess Harnell-Laraine Newman,pet-bunny-anthropomorphism-dog-animal-apartment building-sewer-terrier-manhattan new york city-rodent-pets-mongrel,/hfsoAEE3MdTy9SLlGnez9iR9Mch.jpg,/m0iEEib19yHzyD8hLh09qkIWbwz.", + "embedding" : [ 0.008991803, -0.012377271, -0.030252542, -0.041194376, -0.0037849534, 0.036563057, 0.010305365, -0.006608434, -0.020597188, -0.047342386, 0.011754345, 0.02784209, 0.006236032, 0.0012077658, 0.02046177, 0.010494951, 0.021274282, -0.01619608, 0.019974262, -0.02784209, 0.0068081766, 0.00853815, -0.027490001, 0.008991803, 0.0033786972, -0.0030503068, 0.0394881, -0.0070688576, -0.0013499554, -0.013000198, 0.018430488, -0.018687785, -0.021612829, -0.018809661, -0.013833023, -0.011720491, 0.009580875, -0.0018924767, 0.007129796, 0.0017858344, 0.0100819245, 0.019865926, -0.0063917637, -0.005122213, -0.02017739, 0.008964719, 0.0078339735, -0.0064086914, -0.0044451198, 0.029819204, 0.0065407245, 0.03594013, -0.018322153, -0.023156602, -0.015234606, 0.0020465155, -0.010555889, 0.016751297, 0.0056740446, 0.0073803207, 0.024822252, -0.015938783, -0.0235764, -0.023630567, -0.02719208, -0.003029994, -0.021951376, -0.025851434, 0.0069097406, -0.0051729954, 0.018024232, 5.23478E-4, 0.009526707, -0.016575253, 0.017739853, -0.023874322, -0.012472064, -0.008043872, 0.0032991387, 0.0024680062, 0.035967212, -0.002266571, -0.0114767365, 0.01352833, 0.022438882, 0.017238803, -0.018213818, 0.031498395, -0.033719264, 0.020448228, 0.007102712, 0.033069253, -0.010169947, 0.004326628, 0.010813185, 0.012776757, -0.0053896653, 0.038892258, -0.014273134, -0.028735854, -0.003960998, -0.009201703, -0.0019584934, -0.008402732, 0.004973253, -0.003124787, -0.0027320727, -0.0017672144, 0.018105483, -0.0097907735, 0.005765452, -0.003558127, 0.020556562, -0.03702348, -0.007542823, 0.001775678, 0.031850483, -0.017252347, -5.6960504E-4, -0.022140961, 0.02814001, 0.021653455, 0.016521085, -0.034477606, 0.04463401, 0.038892258, -0.0035682835, -0.0017909126, 0.016656503, -0.01727943, 0.020515937, -0.009966819, 0.022912849, 0.01337937, -0.02312952, 0.050321598, -0.011815283, 0.013183013, -0.020123223, -0.019689882, 0.03139006, 0.034017183, -0.026244149, -0.0153294, -0.019188832, 0.004641477, 0.0020092754, -0.0050443476, 0.019500297, 0.007976163, 0.024605582, 0.009635042, 0.014801267, 0.016683588, 0.037998494, 0.007414175, -0.012255395, -0.005409978, -0.0140835475, -0.01721172, -0.0056097205, 0.010007444, -0.0024967827, 0.0051323697, 0.010691308, 0.016263789, 0.01844403, -0.01236373, -0.0020972975, 0.0027608492, -0.012059038, 0.016426291, -0.03436927, 0.015722115, -0.0072990693, 0.009194931, -0.018917996, -0.013623124, -0.03875684, -0.033665095, -0.0050849733, 7.7400263E-4, 0.026961869, 0.037294317, -0.015234606, 0.008565234, 0.021111779, -0.028600436, -0.003329608, -0.016250247, -0.004035478, 0.027679587, 0.0044518905, -0.018281529, -0.6400431, -0.024768084, 7.756954E-4, -0.014449178, 0.016832547, 0.019215917, -4.2149078E-4, 0.011815283, -0.03269008, -0.029494198, -0.01967634, 0.013359057, 0.014340843, 0.003322837, -0.01012932, -0.005619877, -0.011124648, -0.0068284892, 0.018972164, 0.0016224856, -0.014584596, 0.015491902, 0.0039169868, -0.010968917, 0.009235557, 0.010007444, -0.018592991, -0.011070481, 0.0064764004, 0.011903306, -0.020096138, 0.006310513, 7.7484903E-4, 0.006256345, 0.035398453, 0.02134199, -0.021016987, 0.04390275, 0.02191075, 0.031687982, -0.036183883, -0.0069943774, 0.0018772421, 0.012939259, -0.01801069, 0.005734983, 0.011463195, -7.845822E-4, -0.0021802415, -0.010332448, -0.0074954266, -0.0056131063, -0.005823005, -0.0014912987, -0.013440308, 0.006269887, 0.010440784, -0.03954227, 0.027151454, -0.008754821, -0.01996072, 0.02914211, 0.0077865766, 0.022669094, -0.018119026, 0.022547217, -0.010014215, -0.018647159, 0.006076915, -0.03334009, 0.004153969, 0.012472064, -0.0051763807, -0.0035716689, 0.0036122946, 0.0050274204, 0.033935934, -0.0016758067, 0.0116121555, 0.019039873, -0.0025678775, -0.006676143, -0.007894912, 0.0112058995, 0.020529479, -0.008768363, -0.025905602, 0.0072449017, 0.014841892, 0.0064188475, 0.0010545733, 0.012492377, 0.0032415858, 0.01128038, -0.019568006, -0.008030331, -0.01612837, 0.011849139, 0.016764838, -0.062021777, -0.006168323, -0.03334009, -0.0073870914, -0.003118016, 0.008158978, 0.033719264, -0.014097089, -0.0051425262, 0.020868026, -0.011456424, 0.011124648, 0.006747238, -0.014855434, 4.2678058E-4, -0.005443833, -0.030875469, 0.03320467, 0.014706474, -0.010738705, 2.183627E-4, 0.008632944, 0.00625296, 0.0014041229, -0.040625617, -0.0052914866, 0.022330549, -0.020840941, -0.010907979, 0.0034802612, 0.014097089, 0.023061808, -0.020109681, 0.00976369, -0.029954622, 0.0079693915, 0.009662126, 0.03672556, 0.014909602, 0.0011375173, 3.7874925E-4, -0.010176717, -0.0060362895, -0.021274282, -0.0071094832, 0.012756444, -0.0075969906, -0.025499346, 0.0026372797, 0.020895109, -0.0022699563, -0.016737754, 0.018538823, -0.0032771332, -0.0046753315, 0.0012323104, 0.009174619, -0.037781823, -0.018105483, 1.10027715E-4, -0.010515264, 0.0117882, 0.031579647, -0.007542823, -0.017022133, 0.006053217, -0.012106434, -0.006662601, 0.018471114, 0.0053253416, -0.0060430607, 0.009729835, -0.0022124033, -0.0013381062, 0.022574302, -0.009533478, 0.030198377, -0.0026152742, 0.020895109, 0.004651633, -0.007908453, 0.011178816, -0.014137715, -0.020475311, -0.0093642045, 0.02609519, 0.009648584, 0.023901405, -0.008849613, -0.015180439, -0.009811087, -0.016751297, -0.006517026, 0.0013939665, 0.0050240345, -0.0011510592, 0.024253493, 0.016209621, -0.0031535635, 0.017807562, 0.0012551623, 0.03334009, 0.022086794, 0.0070620864, -0.004201366, 0.0019703424, -0.034748446, 0.0032551277, -0.02545872, -8.0193277E-4, -0.008307938, 0.0130949905, -0.0016351811, -0.025621222, -5.7383685E-4, -0.0097230645, 0.030198377, -0.014557513, 0.0025187882, -0.023996199, 0.009662126, 0.012086121, -0.011801742, 0.031687982, 0.01787527, -0.022438882, 0.0010418778, 0.006720154, -0.0058974857, 0.0041471985, -0.00229704, -0.02004197, 0.0061717085, 0.0015200751, 0.009635042, -0.004343556, 0.014638764, 0.03222966, -0.012817383, 0.037863076, -0.005122213, -0.0085313795, 0.024686834, 0.010142863, 0.0040761037, -0.0069469805, -0.013196555, 0.015749197, 0.02502538, -0.0186607, 0.020813858, -0.00622249, 0.021951376, -4.7142644E-4, 0.004021936, 0.019148208, -0.0065237973, 0.017604435, 0.0044281925, 0.019012788, 0.031498395, -0.0055420115, -0.016764838, 0.038675588, 0.0048987726, 0.0069740643, 0.0100819245, -0.018782577, -0.0031654127, -0.00622249, -0.035398453, -0.018538823, -0.015518986, -0.003373619, 0.00365292, -0.008504296, -0.017915897, -0.0027185308, 0.010826727, 0.009743378, 0.03420677, -0.009249099, -0.032852583, 0.012336646, 0.022777429, -0.010819956, -0.022303464, -0.009445456, -0.020069055, -0.032906752, -0.022181587, 0.0018230745, 0.02379307, -0.008402732, -5.492922E-4, -0.019811759, -0.003419323, 0.019825302, -0.011077251, 0.0059076417, 0.022520134, -0.015099188, 0.018132567, -0.018200276, -0.0017655216, 0.018200276, -0.00473627, -0.004824292, -0.0037680261, -0.010738705, 0.012979885, -0.001448134, 8.590626E-5, -0.047179885, 0.032744247, -0.016507542, 0.008016788, -0.012113205, 0.006293585, 0.010427242, -0.0018349238, -0.01916175, -0.032446325, -0.023589943, 0.0029081171, 0.07507614, 0.03797141, 0.008639715, 0.0013728073, -0.008497525, 0.002737151, -0.002737151, -0.0060430607, 0.003412552, 0.0025678775, 0.036563057, -0.0050849733, 0.0306588, 0.02046177, -0.0030283013, -0.011882993, -0.007766264, -0.0061141555, -0.009323579, -0.00459408, -0.0404902, -0.020935735, 0.0065271826, 0.023589943, -0.005721441, -0.0152752325, 0.037781823, 0.0141512565, 0.008978262, 0.00889701, -0.0018179964, 0.006225876, 0.004800594, -0.0027794694, 0.004621164, -0.011463195, 0.024537873, -7.0206146E-4, 0.0235764, -6.144625E-4, -0.0063748364, 0.020475311, 0.010163175, 2.7845474E-4, 0.011077251, -0.023170143, -0.013975212, 0.029873371, 0.030144209, -0.027313957, 0.0126684215, 0.01511273, -0.011381944, -0.004455276, 0.0075631356, -0.0117882, -0.00516961, -0.015871074, -0.024415996, -0.0013626509, -0.008016788, -0.018714868, 0.016588794, -0.010068382, -0.0040151654, -0.023603484, -0.021490952, -0.021964917, -0.010095466, 0.026027478, -0.0114090275, -0.013494476, -0.010440784, 0.004722728, 0.002405375, -0.0022310235, 0.022899307, 0.011808513, 0.0025289448, 8.9714903E-4, -0.027923342, -0.03377343, 0.010582973, -0.021206573, -0.01974405, 0.016372124, -9.4539195E-4, 0.026650405, -0.012458523, 0.0096215, 0.008524609, 0.0057620667, -0.00654411, -0.01894508, 0.02776084, 0.0015996337, 0.0016859631, 0.027706672, 0.011144961, -0.0010571125, -0.0039305286, -0.0120387245, -0.0019517224, -0.035046365, -0.0014811424, -0.0048412196, 0.007326153, 0.0035107303, 0.0014565977, -0.024239952, -0.0154783605, -0.015424193, 0.0052034645, -2.8078226E-4, 0.009337121, 0.012573629, 0.012072579, 0.007001148, 7.9177634E-4, 0.0043063154, -0.0053795087, 0.0030723123, 0.01149705, 0.016331498, -0.016223162, 0.039433934, -0.013480934, -0.01895862, -0.007353237, 0.009005345, -0.0022564146, 0.016832547, -0.0046042367, -0.00481075, -0.014476262, -0.024334745, 7.5072754E-4, 0.003456563, 0.0037274004, 0.02502538, -0.011321005, -7.6850125E-4, 0.010501722, -0.0036833894, -0.014516887, -0.019568006, 0.0121944565, -0.019432588, 0.018024232, 0.02914211, 0.017333597, 0.0013838101, -0.027787922, -0.0011654474, -0.00318234, -0.037294317, -0.016642962, -0.0056706592, -0.004374025, 0.015559612, 0.049725756, -8.607553E-4, 0.018687785, 0.002935201, 0.006486557, 0.017983606, -0.01597941, -0.016927341, -0.04352358, 6.115002E-4, 0.0019212532, 0.014774183, 0.0186607, -0.0060836864, 0.008348565, 0.022980558, 0.006645674, 0.02104407, -0.0051594535, -0.030090041, -0.019364879, 0.0033363788, -0.024917046, 0.0015835527, -0.018674241, -0.0046245493, 0.014164799, -0.005365967, -0.0027269947, -0.026244149, 0.033881765, -0.0122418525, 0.022222213, -0.029846286, 0.017834647, -0.0048987726, -0.0032940605, -0.021964917, -0.016927341, -0.002444308, -0.0059787366, 0.0070620864, -4.621164E-4, -0.0029436646, 0.013697604, -0.00204313, -0.018538823, -0.016358582, 0.028221263, -0.007434488, -0.0142189665, -0.023413898, -0.0074006333, -0.021775331, 0.0011315927, -0.0072990693, -0.0180784, -7.206815E-4, -0.019906553, -0.029304612, 0.017699227, -0.014313759, 0.04940075, 0.008795446, 0.041979805, 0.029765036, 0.012262166, -0.024063908, 0.023332646, -0.010637141, -0.009607959, 0.025661848, 0.017617976, -0.011720491, -0.014516887, -0.0014447485, -0.01019703, -0.031850483, -0.05200079, 0.03935268, 0.024253493, 0.0079693915, -0.008991803, 0.0063951495, -0.04070687, -0.002049901, -0.014259592, 0.013040823, -0.003316066, -0.034260936, -0.00947931, -0.0122418525, -0.005179766, 0.006263116, 0.005944882, -0.021707622, 0.009817857, -0.02300764, 0.0026660562, -0.010535576, -0.018728409, 0.028085843, -0.028627519, 0.0099939015, 0.02371182, 0.0037578696, 0.009506394, -0.0071433377, 0.0045162146, 0.028302513, -0.01048141, 0.0070485445, -0.023115976, 0.0039880816, -5.0755574E-5, 0.0042792317, -0.020448228, -0.020800317, -0.029602533, 6.889428E-4, 0.037213065, 0.026934784, 0.0069300532, 9.0455476E-5, -0.0190805, -0.0056232624, 0.015126271, -0.0043706396, -0.0012026875, -0.039081845, 0.011097564, 0.0055216984, -0.0041607404, -0.0035242722, -0.023495149, 0.0038560482, 0.007326153, 0.023156602, -0.019635715, -0.02827543, -0.017252347, -0.02097636, -0.031065056, -0.025038922, -0.012370501, -0.014733558, 0.010941833, -0.008971491, -0.0071433377, 0.006750623, -0.0041979803, -0.010677766, 9.029678E-5, -0.012560086, 7.007919E-4, 0.02906086, 0.0044586617, -0.008511066, -0.015234606, 0.02906086, 0.022696178, -0.015925242, -7.0417736E-4, -0.0039880816, 0.030983804, -0.027571252, 0.014395011, -0.008301168, -0.021802414, -0.021301366, 0.0020922192, 0.02914211, 0.0117678875, -0.007928766, -0.029710868, -0.011537676, -0.012377271, 0.041248545, -0.0030469212, -0.0076917834, 0.024768084, 0.028167095, 0.029765036, 0.021165946, -0.012119976, -0.021220114, 0.0054844585, -0.00611077, -0.012566858, 0.006638903, 0.0027896257, 0.008951178, 0.0046313205, -0.0059076417, -0.02762542, -0.011693407, -0.025932686, -0.030604633, -0.009526707, 0.015288774, 0.03875684, 0.008152207, -3.6161032E-4, 0.01381271, -0.0036122946, 0.016453376, -0.01699505, 0.0018603147, 0.010020985, 0.018267985, 0.03542554, 0.021680538, -0.022939932, -0.012918946, 0.01599295, 0.022777429, 0.006263116, 0.012912176, -0.013203326, 0.0013609582, -0.006764165, -9.733221E-4, -0.002120996, -0.008274084, 0.017455474, -0.024470164, -0.010657454, 0.010427242, 0.006236032, -0.0141512565, 0.0059347255, 0.013541873, -0.0154106505, 0.0066795284, -0.025539972, -0.010792873, -0.011381944, -0.009926192, 0.037781823, 0.011361631, 6.851341E-4, 0.030767133, 0.022438882, -0.008274084, 0.010786101, -0.008612631, -0.011591843, -0.029683784, -0.0056435755, -0.011260067, 0.034396358, -0.027787922, 0.01742839, -0.04620487, -0.0026626708, -0.007854286, 0.0021159176, -0.012979885, 0.046827797, 0.008294397, -0.04945492, -0.008179291, -0.022872223, 0.0076037613, -0.004170897, 0.005125599, -0.02957545, 0.01258717, -0.023264937, 0.0032822113, -0.028708769, -0.022899307, 0.004638091, 0.011524133, -0.01244498, 0.020123223, 0.18817785, 0.0030943179, 0.023657652, 0.04883199, -0.0015860918, 0.014584596, 0.025702475, 0.008551693, 0.0020160463, 0.009418372, -0.035560958, 0.017604435, -0.00874805, 0.0037578696, 0.012031954, -0.021233656, -0.028898356, -0.019026332, -0.027029578, -0.025242051, -0.0170763, -0.00607353, -0.0070756283, -0.0186607, -0.0042623044, -0.0024324588, -0.032067154, -9.6655113E-4, 0.036481805, -0.009194931, -0.006804791, -0.023630567, -0.021423243, -0.009391288, -0.016940882, -0.01677838, -0.009736606, 0.008754821, 0.0049867947, 0.004214908, 0.007861057, -0.0071094832, -0.016534626, -0.013122074, 0.0180784, 0.012627796, -0.0054269056, -0.0054776873, 0.002215789, 0.020624273, -0.042413145, -0.00585686, 0.029087942, 0.034233853, -0.0074480297, -0.013318432, 0.022682637, 0.0059042564, -0.009059513, 0.0045128292, 0.018850287, 0.031471312, -0.04151938, 0.012749673, 0.0029758264, 0.014977311, -0.03975894, -0.0030909325, 0.0069943774, -0.025567055, -0.007617303, -0.030712968, -0.016439833, -3.639378E-4, -0.013555414, -0.010637141, -0.0010173331, 0.01844403, 0.015058562, 0.026663948, -0.021694079, -0.022168046, 0.0069537517, 0.0047024153, -0.024754543, -0.009919422, 0.019391961, -0.0046245493, -0.002017739, -0.029873371, -0.009702751, -0.015505444, -0.01669713, 0.003419323, -0.014733558, 0.009736606, 0.022154503, 0.025661848, -0.013122074, 0.0040693325, -0.03312342, 0.023400355, 0.029385863, -0.010718392, -0.02422641, -0.0076985545, 0.0015784745, 0.01787527, 0.030171292, -0.016751297, -0.0024984754, -0.0338276, -0.0033905464, 0.0035310432, 0.010109008, 0.015586696, -0.014137715, -0.010596516, 0.028221263, -0.011551217, -0.003055385, -0.019716967, 0.020949276, 0.00114852, -0.005105286, -0.037998494, -0.025445178, 0.009106909, -0.016575253, -0.05178412, 0.018850287, -0.0074751135, 0.01619608, 0.0037240149, -0.0010114086, -0.0028522569, 0.0027066818, 0.0024967827, -0.012573629, 0.020475311, -0.005707899, -0.008274084, 0.0053964364, 0.009418372, 0.01799715, -0.021016987, 9.2000095E-4, -0.0075089685, -0.0031908038, -0.032852583, -0.025824351, -0.010759017, 0.0037815678, -0.011050168, 0.041844387, 0.0023664422, -0.0316609, -0.04303607, 0.004137042, 0.046692375, -0.034017183, 0.022371173, 0.013697604, -0.008362106, -0.026054563, 0.0040727183, -0.1734443, 0.018200276, 0.0043130866, -0.0328255, 0.006015977, 0.016588794, 0.014990853, -3.0469213E-4, 0.009222015, -0.024524331, 0.015681488, 0.003564898, -0.06045092, -0.018457573, 0.008321481, 0.010528806, -0.0010435706, 0.03810683, 0.022005543, -0.007251673, 0.05454666, -0.0046313205, 0.014097089, 0.0029081171, 0.015789824, -0.012783527, 0.020691982, 0.009100138, -0.0027930113, -6.7074585E-4, -0.03220257, 0.006175094, 0.027083745, -0.0010063304, -0.008808988, 0.0014244358, -0.01135486, 2.4967827E-5, -0.002444308, -0.015356484, 0.04625904, 0.0061276974, 0.0351547, 0.0141512565, 9.369283E-4, 0.00708917, 0.028817104, -0.006313898, 0.008524609, -0.01721172, -0.0045432984, -0.032283824, 0.03485678, -0.005467531, -0.006357909, 0.008429816, 0.008206375, 0.004563611, -0.013291348, -0.019947179, -0.029683784, -0.010142863, -0.0045974655, -0.008335022, -0.0072855274, -0.02075969, -0.019107582, 3.8340426E-4, -0.018254444, 0.0073735495, -5.137448E-4, 0.0051425262, 0.0047768955, 0.019811759, 0.008138665, -0.011706949, -0.029412948, 0.011151732, -0.0015395416, 0.027124371, -0.013921045, 0.050429933, -0.0105084935, 0.0143543845, -0.0059177983, -0.021016987, -0.009201703, 0.007921996, -0.001097738, 0.012722589, 0.009506394, -0.018403405, -0.025824351, -0.0079016825, 0.0035682835, 0.014733558, -0.0046008513, 0.0063037416, 0.013426767, -0.030198377, 0.0012450059, -0.0018349238, -0.012648109, 0.017171094, 0.038458917, 0.0023749059, 0.0038052662, 0.015166897, 0.019906553, 0.026217066, -0.00593134, 0.0026643635, 0.021206573, 9.4369927E-4, -0.016819006, 0.007224589, -0.008639715, -0.018132567, 0.002781162, 0.007874599, 0.047179885, -0.0020651356, 0.0041167294, -0.009953276, -0.018836744, 8.362106E-4, -0.0921389, -0.018471114, -0.008348565, 0.03339426, -0.030929636, 0.029385863, -0.0050815875, 0.01373823, -0.015221065, 0.023400355, -0.002151465, -0.024646208, 0.0013821174, -4.8412193E-4, 0.012187685, -6.6862995E-5, -0.021518035, -0.011700178, -0.0048276777, 0.01829507, 0.008125124, -0.0045263707, 0.014367927, -0.019689882, -0.023942031, 9.166155E-4, -0.033069253, 0.025512887, 0.01952738, 0.003659691, 0.0050680456, -0.02725979, -3.1400216E-4, -0.037835993, -0.013122074, -0.0141512565, -0.020109681, -0.02314306, 0.0050375764, -0.06521766, 0.009966819, 0.015221065, 0.024131617, -0.0058907145, -0.0020837556, -0.011781429, -0.028465016, 0.01937842, -0.0045094434, -0.008517838, -0.018769035, -0.01337937, -0.021369075, -0.009018887, 0.01337937, 0.014449178, 0.024930587, -0.0012153831, 4.8375165E-5, -0.007211047, -0.013318432, -0.014652306, -0.033475507, 0.0057620667, 0.0055690953, 0.014408552, 0.0037984953, -0.012031954, 0.015789824, -0.020001346, -0.03022546, 0.023319105, -0.028302513, -0.008294397, -0.011673094, 0.015735656, -0.0107116215, 0.0015471589, 0.023224311, -0.02689416, 0.012722589, -0.03052338, 0.010962145, -0.0186607, 0.024741001, 0.015789824, 0.01611483, 0.019337794, 0.010427242, -0.027544169, -0.012492377, 0.016575253, 0.02256076, -0.0050511183, 2.545449E-4, 0.026636863, 0.010582973, 0.0132304095, 0.025052464, 0.013514789, -0.017753394, -0.003272055, -0.07355945, 0.026839992, -0.020705523, -8.7683625E-4, 0.0013017125, -0.0050409622, 9.479311E-4, 0.0038662045, -0.0022987328, 0.023603484, -0.01171372, 0.0020482081, -0.018890912, 0.006032904, -0.0070214607, -0.007549594, 0.00976369, -0.015965868, 0.0013990448, -0.01344708, -0.010759017, 0.00567743, 0.023562858, 0.0022801128, 0.0010850425, 0.021301366, 0.0039169868, 0.009316809, -0.018985705, -0.0063172835, 0.01729297, -0.04758614, 0.007150109, 0.0070079193, -0.0073938626, -0.015776282, -0.010467867, 0.001178143, 0.021247199, -2.1963225E-4, -0.014706474, -0.013345515, 0.009695981, -0.001948337, -0.0050138785, 0.012593942, -0.01894508, 0.01323718, 0.013467392, 0.015126271, 0.054140408, 0.018024232, 0.0057011284, -0.022168046, 0.014598139, -0.003710473, 0.03975894, 0.0031535635, 0.0063917637, -0.010759017, 0.016480459, -0.0023749059, 0.008985032, -0.03507345, 0.0031721836, 0.008070956, 0.026948327, -0.0140835475, 0.004153969, -0.034802612, -0.017848188, -0.012126747, 0.012858008, 0.048263233, 0.01799715, 0.022357631, -0.014760641, -0.0065678083, 0.0038628192, 0.018064858, 0.0142189665, -0.014760641, -0.010264739, 0.020854484, 0.017089844, 0.021206573, -0.0041404273, 0.0037544842, 0.0060227476, 0.012065808, -0.017116927, 0.009350663, 0.023224311, -0.0049427836, 0.0058196196, 0.006777707, -0.019066956, -0.010298594, -0.0059990496, 0.024930587, -0.010447554, 0.005741754, -0.02061073, -0.027869174, -0.019716967, 0.008247, -0.0075360523, -0.028898356, 0.016642962, 0.03464011, 0.034044266, -0.0021836269, -0.010345991, 0.0023325875, -0.04057145, 0.027232707, -0.005301643, -0.015153355, -0.01388042, 0.039731853, 0.016358582, 0.0021294595, 0.028085843, -0.012878321, 0.05763421, -8.252078E-5, 0.017144011, -0.024619125, 0.0040828744, 0.008808988, -0.025431637, -0.018146109, -0.0074954266, 0.009716294, 0.0013279499, -0.0055860225, 0.0031857255, 0.030577548, -0.025147257, 0.068034366, 0.008998575, -1.3023472E-4, 0.0042182934, -0.021463867, 0.02906086, 0.023942031, 0.01857945, 0.0037003167, -0.018091941, 0.015085646, -0.012329875, 0.004729499, -0.03312342, -0.01149705, -0.022005543, -0.002940279, -0.0018789348, -0.0062461887, -0.0109824585, 0.0059821224, -0.007353237, 0.01619608, -0.0090256585, -0.0060836864, -0.019730508, 0.032581747, -0.014503346, -0.0042182934, -0.03222966, 0.010501722, -0.015451277, 0.010027757, -0.0073600076, 0.047342386, 0.0058941, -0.0016851168, 0.016263789, 0.024917046, 0.013325202, -0.01671067, -0.009919422, -0.012627796, -0.011930389, 0.006605048, -0.0049867947, 0.005020649, -0.020488853, -0.009106909 ], + "id" : "6e6ed8ef-93df-42c7-b941-9e9342214271", + "metadata" : { + "source" : "movies.csv" + } + }, + "bc649448-b432-490e-a426-a0556fa9a7a0" : { + "text" : "As the child grows Maleficent realizes that Aurora holds the key to peace in the kingdom ��� and to Maleficent's true happiness as well.,76.437,Walt Disney Pictures-Roth Films,5/28/14,180000000,758539785,97,Released,Don't believe the fairy tale.,7.09,12121,Angelina Jolie-Elle Fanning-Imelda Staunton-Sharlto Copley-Lesley Manville-Juno Temple-Sam Riley-Brenton Thwaites-Kenneth Cranham-Sarah Flind-Michael Higgins-Isobelle Molloy-Jackson Bews-Ella Purnell-Jamie Sives-Angus Wright-Hannah New-Oliver Maltman-Gary Cargill-John O'Toole-Janet McTeer-Harry Attwell-Mark Caven-James Hicks-Anthony May-Stephan Chase-Chris Leaney-Jamie Maclachlan-Vivienne Jolie-Pitt-Eleanor Worthington-Cox-John Macmillan-Tim Treloar-Peter G. Reed-Marama Corlett-Liam McKenna-Steven Cree-Sandy Fox-James Ayling-Raf Cross-Alfred Camp-Terri Douglas-Damon Driver-Josh Dyer-Stephanie Elstob-Ellis Fuller-Craig Garner-Alexander Gillison-Victoria Gugenheim-Daniel Harland-Kara Lily Hayworth-John Heartstone-Matt Hookings-Craig Izzard-Ceri Jerome-Zahara Jolie-Pitt-Lee Edward Jones-Hrvoje Klecz-Karen Mkrtchyan-Jo��o Costa Menezes-Matthew John Morley-Steven John Nice-Jo Osmond-Andrew James Porter-Guy Potter-Marc Rolfe-Jd Roth-round-Julian Seager-Daniel Stisen-Leo Suter-Tom Swacha-Richard Summers-Calvert,fairy-fairy tale-villain-betrayal-curse-dark fantasy-based on fairy tale-retelling-literary adaptation-wings-live action remake,/ik8PugpL41s137RAWEGTAWu0dPo.jpg,/xjotE7aFdZ0D8aGriYjFOtDayct.jpg,109445-157350-150689-101299-222935-62177-198663-131631-38757-127585-118-12155-262500-8966-18239-50620-177572-420809-240832-82702-102382\r\n1930,The Amazing Spider-Man,Action-Adventure-Fantasy,en,Peter Parker is an outcast high schooler abandoned by his parents as a boy leaving him to be raised by his Uncle Ben and Aunt May. Like most teenagers Peter is trying to figure out who he is and how he got to be the person he is today. As Peter discovers a mysterious briefcase that belonged to his father he begins a quest to understand his parents' disappearance ��� leading him directly to Oscorp and the lab of Dr. Curt Connors his father's former partner. As Spider-Man is set on a collision course with Connors' alter ego The Lizard Peter will make life-altering choices to use his powers and shape his destiny to become a hero.,103.377,Marvel Entertainment-Laura Ziskin Productions-Columbia Pictures-Matt Tolmach Productions-Avi Arad Productions,6/23/12,215000000,757930663,136,Released,The untold story begins.,6.682,15788,Andrew Garfield-Emma Stone-Rhys Ifans-Denis Leary-Martin Sheen-Sally Field-Max Charles-Campbell Scott-Embeth Davidtz-Chris Zylka-Irrfan Khan-C.", + "embedding" : [ 0.014271446, -0.03909479, -0.014350585, -0.04009722, -0.0109014325, 0.030837929, -0.016012508, -0.020800434, -0.023966003, -0.043764006, 0.043078132, 0.024612308, 0.016421394, 0.006169564, 0.012919483, 0.018043749, 0.023504358, -0.02120932, 0.0046296464, -0.031365525, -0.0067268363, 0.0038283614, -0.029888257, 0.00212357, -4.925594E-4, 0.0054342286, 0.018544964, -0.016500534, -0.0075248242, -0.008250267, 0.0058826846, -0.0061662667, -1.0433398E-4, -0.008599799, -0.027303042, 9.636853E-4, 0.0076633175, -0.04685044, 0.021578636, -0.0075907735, 0.013025003, 0.00841514, -0.019943092, -0.0012992028, -0.01911213, 0.0036437032, 0.005978311, -0.009193343, -0.012695256, 0.014482483, -0.005569425, 0.03271089, -0.0221458, -0.025786206, -0.014640762, 7.011243E-4, 7.843854E-4, 0.0039140955, 0.011217989, 0.0076831025, 0.028384613, 0.0010469464, -0.031154485, -0.018584535, -0.024335321, 9.4142737E-4, -0.014601192, -0.019441877, -0.0049890704, -0.0051176716, 0.031286385, 0.026234662, 0.023108661, -0.008118369, 0.0025126713, -0.0315238, -0.023491168, -9.4719796E-4, -0.007432495, 0.002967722, 0.01063104, -0.009371406, -0.0029973993, 0.011020141, 0.014970508, 0.010855268, -0.017133648, 0.027303042, -0.026828207, 0.02453317, 0.0013511379, 0.021789674, -0.008230482, 0.0044746655, 0.024111092, 0.010637634, -0.007636938, 0.02661717, -0.0123523185, -0.030178435, -0.014522053, -0.008091989, -0.015775092, -0.0061761593, -0.010024305, 0.0061135073, 0.0030567537, -0.012583141, 0.009615419, -0.0046296464, 8.021093E-4, -0.011725799, 0.043104514, -0.03832978, -0.0088174315, -0.021064231, 0.0039503677, 0.010433191, -0.0062487037, 0.001384937, 0.029307904, 0.055661276, 0.009133989, -0.037696663, 0.032948308, 0.016012508, 0.01386256, -0.005717811, -0.016500534, -0.010175989, 0.030363094, -0.008467901, 0.025390511, -0.0022274402, -0.026063194, 0.044871956, -0.022858053, -0.0019092344, -0.025139904, -0.037670285, 0.023715395, 0.0315238, -0.019296788, -0.021512687, -0.025693879, -0.004402121, 0.009312052, -0.0012530382, 0.028490132, -0.0036931653, 0.02764598, 0.007122533, 0.0012052249, 0.023979194, 0.03592922, -0.0027533865, 0.008316217, -0.016421394, 0.004626349, -0.017542535, -0.0018482313, 0.008665748, 0.002415396, -0.009648394, -0.0015382692, 0.021328028, 0.0123127485, -0.02233046, 4.000242E-4, 0.0047912225, -0.019573776, 0.02764598, -0.011303724, 0.008263457, -0.0037525196, 0.007861166, -0.0055463426, -0.018281167, -0.023398839, -0.01219404, -0.0028143898, 0.008758077, 0.026933726, 0.03170846, -0.014099977, -0.009371406, 0.015010078, -0.01594656, 0.01905937, -0.022106232, 5.362509E-4, 0.02018051, 0.007214862, -0.01705451, -0.6369127, -0.005744191, -0.0047384626, -0.011316913, 0.002792956, -0.0021895193, -0.0050385324, -0.011303724, -0.030547751, -0.022567878, -0.028859448, 0.030415853, 0.010347458, -0.02856927, -0.020338789, -7.411061E-4, -0.02002223, -0.033053827, 0.02000904, -8.342596E-4, -0.030917069, 0.026221473, 8.4188505E-5, -0.020378359, -0.004085564, 0.011244369, 0.012227015, -0.015326635, -0.004570292, 0.0030287253, 0.0017179813, 0.01115204, 0.015023268, 0.019507825, 0.031180866, -0.0016058674, -0.020404737, 0.03281641, 0.017107269, 0.03690527, -0.040519297, -0.0013115683, 0.014772661, -0.0054408237, -0.015234306, 0.0028918802, 0.010215559, 0.00397345, -0.0019224244, 0.008382166, -0.006456444, -0.020510256, -0.0070829634, -0.014126357, -0.011560926, 0.0035118044, 0.026419321, -0.02222494, 0.008751483, -0.006298166, -0.010532116, 0.01063104, 0.0127612045, 0.023702206, 0.015379395, 0.033475906, -0.0010790967, 0.0039338805, 0.014271446, -0.0011541141, 0.022040281, 0.016223546, -0.03170846, 0.0045175324, 0.0058134375, -0.0016916016, 0.03484765, 0.014930939, -0.005905767, 0.01800418, 0.012708445, -0.014047218, -0.008065609, 0.0066444, 0.022079851, 0.007643533, -0.017648054, -0.0046461336, 0.005269355, 9.974843E-4, 0.014034027, 0.01487818, -5.8612507E-4, -0.008566824, 2.839945E-4, 2.1557203E-4, -0.026076384, 0.004428501, 0.02014094, -0.0616231, -0.012860129, -0.021499498, -0.0044383933, -0.009931976, 0.03181398, 0.015590433, 0.0032381145, -0.015405775, 0.025720257, -0.02316142, 0.007208267, 0.0016429638, -0.021605017, -0.01375704, 0.0033040638, -0.024124283, 0.008909761, 0.005585912, 0.0058628996, -0.0019224244, -0.0020345382, 0.024546359, 0.005210001, -0.017450206, -5.902469E-4, 0.022739345, -0.011574116, -0.005632077, 0.012233609, -0.0056419694, 0.009463736, 0.002563782, -4.7895734E-4, -0.019309977, 0.027144764, 0.019019801, 0.020220079, -0.009470331, 0.023108661, -0.016170787, -0.018531775, -0.0077292672, -0.0058332225, 4.904985E-4, -0.023807725, -0.016104838, -0.0110729, 7.303894E-4, -0.004065779, 0.005892577, -0.039965324, -0.011785154, 0.0012719986, 0.014535243, -0.0033040638, -0.0014550082, -0.016645623, -0.004985773, 0.012101711, -0.02651165, 0.008824027, 0.034531094, -0.018690053, -0.024546359, 0.019560585, -0.006984039, -0.025931295, 0.0042801145, 0.023266941, -0.018254789, 0.012457837, -0.02649846, -0.016540105, 0.017107269, -0.01686985, 0.012649091, -0.017634863, 0.010716774, -0.0060673426, -0.010367243, -0.002173032, -3.3304436E-4, -0.0079469, 0.0085932035, 0.03912117, 0.023543928, -7.9469E-4, -3.2088495E-4, -0.004461475, 0.00448126, -0.019415496, 0.0034557474, 0.0019158294, 0.016065268, -0.0041515133, 0.0025604847, 3.300045E-5, 0.014469294, -0.008006254, 0.02740856, 0.025759827, 0.017437015, 0.014614382, -9.711046E-4, -0.011264154, -0.032077778, -0.01004409, -0.02330651, 0.009298862, -0.01793823, 0.018531775, -0.009035065, -0.00850747, -0.01271504, 0.0089889, 0.023504358, 0.011316913, 2.534929E-4, -0.011422432, 0.005984906, -0.0075775837, -0.012543572, 0.012668875, 0.0036766778, -0.015405775, -0.008362381, 0.011198204, -0.009641799, 0.0086327735, -0.012622711, -0.017239168, -0.004857172, -0.0075775837, 0.0035744563, -0.021763295, 0.007544609, 0.035718184, -0.0083887605, 0.02862203, -0.016526913, 0.01598613, 0.02767236, 0.025179472, 0.0023857187, -0.00841514, -0.015102408, 0.030943448, 0.0017361174, -0.015445344, 0.042735197, -0.0037723044, 0.0127809895, -0.0035876462, 0.008903166, 0.016197167, -0.007392925, 0.002024646, 0.0014731443, 0.027804257, 0.018479016, 0.006486121, -0.03909479, 0.0061794566, 0.0028325259, 0.017516155, 0.022383219, -0.016342256, 0.01116523, 0.0041185385, -0.04125793, -0.026089573, -0.018874712, 0.0063838996, -3.396393E-4, -0.008527255, -0.02226451, -0.022607448, -0.004797817, 0.016843472, 0.030706031, -0.017779952, -0.04149535, 0.02324056, 0.018729623, -0.005335305, -0.036826134, -0.001225834, 0.010512331, 9.488467E-4, -0.0054375264, -0.0032480068, 0.02120932, -0.004388931, -0.010380432, -0.024256181, -0.0028589056, 0.0030567537, -0.025166282, 0.021618206, 0.022647016, -0.009991331, 0.021684155, -0.017740382, 0.0024236396, 0.02014094, -0.013981268, 0.0054408237, -0.02213261, -0.023913244, 0.004626349, 0.0036437032, -0.01012323, -0.044871956, 0.022172181, -0.026340181, -0.0042933044, -0.0035348868, -0.008131558, 0.0025176175, -0.009575849, -0.0029908044, -0.012121496, -0.010354052, 0.0025439973, 0.07549885, 0.052680362, 0.018188838, 0.0077754315, -0.019151699, 0.004873659, 0.0092263175, -0.00952309, -0.014086787, 0.004019615, 0.0157619, -0.0026989782, 0.0131503055, 0.010050685, 0.0025192662, -0.01383618, 0.006667482, -0.007300596, -0.022884434, -0.0073731407, -0.007676508, -0.019468257, 0.029967397, 0.036615096, 0.007214862, -0.013981268, 0.0042801145, 0.014311015, -0.010947596, 0.013499837, -0.006759811, 0.0028457157, 0.0043064943, 0.0038217665, 0.010842077, -0.002098839, 0.019943092, -0.0057145134, 0.026366562, 0.014667141, 0.008784457, 0.010736559, 2.139233E-4, -0.009127394, 0.011033331, -0.013664711, -0.0014212091, 0.021697346, 0.024295751, -0.017779952, 0.02754046, -0.0043130894, -0.009628609, -5.082224E-4, 0.03505869, 0.002713817, -0.0030204814, -0.0030138865, -0.0074918494, 0.010683799, 0.008758077, -0.03075879, 0.0069510643, -0.013473458, -0.010485951, -0.0065916404, 0.0060079885, -0.010143015, -0.031101726, 0.009193343, -8.4033934E-5, -0.029941017, -4.4062428E-4, -0.014403344, 0.019877143, 0.009219723, 0.011633471, -4.6411876E-4, 0.0031062157, 0.022778915, -0.020457497, -0.029941017, -0.0055661276, -0.02759322, -0.0060046907, 0.0056089945, 4.0290947E-4, 0.024796966, -0.021499498, 0.021235699, 0.00841514, 0.01803056, -0.0061926465, -0.030837929, 0.023214182, -6.817517E-4, 0.0027220605, 0.023794536, 0.0111256605, 0.0041218363, 0.0029380447, -0.015141977, -0.020879572, -0.020826813, -0.0125171915, -0.008573419, -0.003943773, 9.1175013E-4, -0.027909776, -0.04471368, -0.037485626, -0.018848332, -0.0110860905, -0.0074259, -0.0011541141, 0.0070829634, 0.01266228, 0.025707068, 0.0127612045, -0.009259293, -0.012655686, -0.00500226, 0.0178459, 0.032209676, -0.009457141, 0.024796966, -7.012274E-5, 0.002334608, -8.7382924E-4, 0.020127751, 0.009285673, 0.0041086464, -0.0016594512, -0.00803923, -0.01581466, -0.03600836, -0.008151343, -0.005780463, -0.020708105, 0.009404382, -0.014350585, 0.00609702, 0.008157938, -0.02116975, 0.036087498, -0.03081155, 0.004072374, 0.009338432, 0.020919142, 0.033264868, -0.0044087158, 0.016249927, -0.027355801, 0.008210697, 0.007564394, -0.027830638, -0.01688304, -0.013532813, 0.02859565, 0.0017773358, 0.045135755, -0.0040954566, 0.019639725, 0.016751142, 0.0026033516, 0.013941699, -0.022211751, 0.003838254, -0.025021194, 0.03263175, 0.011376267, 0.047641832, -9.793483E-4, -0.013585572, 0.018439446, 0.029202385, 0.013005218, 0.008164533, -0.01164666, -0.019837573, -0.019679295, 0.015682762, -0.034531094, 0.0052792476, -0.023728587, -0.009378001, 0.037960462, -0.009107609, 0.0023082283, -0.014324205, 0.03162932, -0.0047417604, 0.0274877, -0.028437372, 0.009971546, -0.020365167, 0.0016437882, -0.013611952, -0.01584104, -0.007168697, -0.01686985, 0.00953628, 0.0011862644, -0.018861523, -0.0076896977, 0.018479016, 0.013849369, -0.02115656, 0.015616813, -0.021314839, -0.0059882035, -0.041073274, 0.014574813, -0.045082994, 0.0049330136, -0.0157619, -0.031471044, 0.0131898755, -0.017898662, -0.035454385, 0.018175649, 0.01056509, 0.042840715, 0.021473117, 0.039437726, 0.020694915, -0.007214862, -0.008560229, 0.008177723, -0.011382863, -0.005998096, 0.040545676, 0.020272838, -0.031233625, 0.0063410327, -0.011633471, -0.010426597, -0.02119613, -0.037432868, 0.01168623, 0.009133989, 0.024506789, -0.011679634, 0.0010873404, -0.018901091, 0.01805694, -0.006773001, 0.01007047, 0.009833052, -0.040914994, -0.024651878, -0.011778559, -8.927897E-4, 0.010367243, 0.018149268, -0.013018407, 0.020074992, -0.010175989, 0.004573589, -0.014627572, -0.005035235, 0.030837929, -0.029228764, 0.03286917, -0.003650298, 0.004240545, -0.0026725985, 0.0018300952, -0.004451583, 0.03263175, -0.01483861, 0.025258612, -0.0046032667, -0.0016899528, -0.013981268, 0.016619243, -0.012675471, -0.024836536, -0.02965084, -0.018782383, 0.04020274, -8.6393685E-4, -0.0113301035, -0.009120799, -0.024612308, -0.012484217, 0.0131700905, -0.0129458625, 0.0121280905, -0.030574132, 0.0026214877, 0.006350925, -0.0012983783, 0.007953495, -0.011442217, -0.014179116, -0.00845471, 0.01704132, -0.0035876462, -0.0011343292, 0.004652729, -0.024678256, -0.036535956, -0.024506789, -0.005084697, -0.0072676213, -0.0020378358, -0.022633826, 4.3856335E-4, 0.0032743865, -0.0031853549, -0.013163496, -0.007135723, -0.021987522, -0.009839647, 0.024783777, -0.00900209, -0.005233083, 0.015550863, 0.017714003, 0.009364812, -0.011442217, 0.02426937, -0.004725273, 0.022976764, -0.012048951, 0.014983699, 9.232913E-4, -0.02008818, -0.008151343, 0.002365934, 0.017951421, 0.0053056274, -0.005157241, -0.03703717, -0.003706355, -0.0047384626, 0.02859565, -0.018505396, -0.022449167, 0.009720938, 0.0062684882, 0.03397712, 0.016236737, -0.010288103, -0.0023560415, 5.440824E-4, -0.016329067, -0.026749067, -0.0063740076, -0.0045801844, 0.01487818, 0.01063104, -0.00854704, -0.030178435, 0.005717811, -0.032473475, -0.02437489, -0.015234306, 0.030521372, 0.02980912, -0.0047582476, 0.008045824, 0.01586742, -0.0013684495, 0.013677901, -0.03587646, -1.500606E-5, 0.013638332, 0.017107269, 0.0123523185, 0.01683028, -0.031154485, -0.019455066, 0.007735862, 0.018769193, -0.0037788993, 0.03255261, -0.019666104, -0.0019916713, -0.008111773, 0.015181547, 0.00663121, -0.008375571, 0.035375245, -0.014772661, -7.291528E-4, 0.0038778235, 0.025522409, -0.00422076, -0.008362381, 0.014627572, -0.022251321, 3.1635092E-4, -0.02324056, -0.0048670643, -0.01171261, -0.02230408, 0.027988916, 0.021143371, 0.011765369, 0.015630003, 0.018597724, 5.201242E-5, 6.3558714E-4, 0.006660887, 0.008250267, -0.0011879131, 0.010452976, -0.0042933044, 0.032447092, -0.02647208, -6.095165E-5, -0.010077065, 0.00686533, -0.010129824, -0.0032265733, -0.017305117, 0.029993776, -0.001713035, -0.036456816, -0.0051935134, -0.0010131473, -5.4531894E-4, -0.0265776, -0.011402647, -0.019745244, -0.0046593235, -0.008362381, -0.0100638755, -0.029413423, -0.001744361, 0.012286369, 0.00583652, -0.0067466213, 0.021987522, 0.19626535, -0.0072742165, -0.0020642155, 0.042814337, -0.00845471, 0.0023576904, 0.037406486, 0.016197167, -0.022567878, 0.0122468, 1.3880283E-4, -0.0041086464, 0.0042504375, 0.0061761593, 0.009180154, -0.01594656, -0.021591825, -0.0010420001, -0.019468257, -0.036430437, 0.0022801997, -0.01805694, -0.018821953, -0.028780308, 0.014548433, -0.007630343, -0.013611952, -0.00741271, 0.005269355, 0.010624445, -0.013203066, 0.0029973993, -0.01905937, 0.030283954, -0.026419321, -0.024889296, -0.006911495, 0.013031597, 0.00793371, 0.017582104, 0.0010337565, 0.014297825, 8.952628E-4, -0.012952458, -0.00316557, 0.03484765, -0.026076384, 0.0010733261, -0.010993761, 0.018703243, -0.038910132, 0.004098754, 0.029598081, 0.010683799, -0.01104652, 0.0027418453, 0.018887902, 0.013011812, -0.0052165957, -0.003432665, 0.008336001, 0.024163852, -0.013915319, 0.005661754, 1.2293376E-4, 0.023979194, -0.023108661, 0.006027773, 0.012873319, -0.030943448, -0.008065609, -0.017608484, -0.018808763, 0.0049956655, -0.005806843, -0.015089218, 0.0063212477, 0.0056716464, 0.01697537, 0.003073241, -0.010288103, -0.008725103, -0.013051382, 0.0017773358, -0.024717826, -0.031840358, 0.0047153807, -0.00478133, -0.0058694948, -0.032394335, -5.082224E-4, -0.016764332, -0.009206533, 0.0039042032, -4.6494312E-4, 0.0090218745, 0.028384613, 0.031655703, -0.009312052, -0.0017295225, -0.019204458, 0.0034986145, 0.017173218, -1.5652673E-4, -0.019389117, -0.016170787, -0.007854571, 0.009127394, 0.015484914, -0.016210357, 0.0017179813, -0.033132967, 0.0022571175, -0.01913851, 0.008540444, 0.011752179, -0.005345197, -0.02759322, 0.042049322, -0.013585572, -0.008711913, -0.0065718554, 0.03474213, -0.001825149, -0.0069444696, -0.018492205, -0.027223904, 0.0033106587, 0.011323508, -0.021657776, 0.014152736, -0.036456816, -0.0057342984, 0.015102408, 0.0054210387, 0.009114204, 0.02011456, 0.025245422, 0.0010659068, -0.00689171, 0.0047219754, -0.013110736, 0.021855624, 0.020945523, -0.014350585, -0.020549826, 0.025641117, -0.0065157986, 2.592635E-4, -0.039516866, -0.019903522, -0.013915319, 0.027355801, -0.00841514, 0.024678256, 0.0041020513, -0.020365167, -0.030521372, 0.004461475, 0.035665423, -0.020602586, 0.03492679, 0.0015621759, -0.0030781871, -0.015405775, -0.021670965, -0.16703658, 0.003409583, 0.009641799, -0.03503231, 0.022699775, 0.015247496, 0.023781346, -0.0040822667, 0.012899699, -0.031154485, 0.026458891, -0.0025802695, -0.046454743, 5.63455E-4, 0.011244369, 0.029123245, -0.023834106, 0.04452902, 0.028068054, -0.0061299945, 0.046428364, -0.015010078, 0.0026297315, -8.928927E-5, 0.02851651, 0.006786191, 0.028226335, -8.523957E-4, -0.007023609, -0.020457497, -0.03279003, -6.7062274E-4, 0.0113103185, 0.011250963, -0.0050715073, -0.0022076555, -0.024519978, -0.018887902, 0.020668535, 0.004702191, 0.046217322, 0.025812587, 0.022158992, 0.02334608, 0.009727533, 0.0317876, 0.02209304, -0.008250267, 0.017502965, -0.022027092, 0.0061299945, -0.033238485, 0.008824027, -0.024546359, 0.0017377661, 0.026287422, 4.6705554E-5, 0.008797647, 0.007089558, -0.021657776, -0.019982662, -0.010499141, 0.004972583, -0.008573419, 0.007834787, -0.024005573, 0.001807013, 0.027751498, -0.040730335, 0.012767799, -0.02740856, 0.005585912, 0.0019108832, 0.0074918494, 0.0115345465, -0.023873676, -0.029307904, 0.0038580387, 0.008929546, 0.031550184, -0.025575168, 0.03281641, -0.029993776, 6.796908E-4, 0.004956096, -0.007847976, 0.003252953, -0.014442914, 0.008969115, -3.212456E-5, 0.009483521, -0.025232231, -0.0403874, -0.00901528, 0.024823345, 0.0051308614, 0.0074456846, -0.006489419, 0.020840004, 0.018241597, -0.0012959053, -0.0057672733, -0.006047558, 0.0106969895, 0.022515118, 0.017648054, 0.009035065, 0.011844508, 0.016843472, -0.0043427665, -1.4807696E-4, 0.0178459, 0.018914282, -0.005206703, -0.034372814, 0.017173218, 9.227761E-5, -0.013915319, 3.336111E-5, 1.03458086E-4, 0.043289173, 0.0036206208, -0.0016446126, -0.0031556778, -0.019534206, -0.02329332, -0.09011323, 0.006759811, 0.0027847125, 0.031391904, -0.018874712, 0.021670965, -0.015722333, 0.012939268, 9.101014E-4, 0.013440483, -0.006103615, -0.030547751, 0.01709408, -0.016672002, 0.021947954, -0.010208963, -0.0086327735, -0.0067993808, -0.018729623, 0.027988916, -0.003769007, 0.0073665455, 0.015234306, -0.003284279, -0.01905937, 0.005157241, -0.027329423, 0.02546965, 0.004346064, 0.014772661, 0.019323168, 0.0011706015, 0.018676864, -0.022726156, -0.04439712, -0.027303042, -0.02231727, -0.0016396664, 0.0016668706, -0.056241628, 0.013176686, 0.012609521, 0.007900735, -0.033053827, 0.0077820267, -0.008210697, -0.024928864, 0.020945523, -0.015234306, -0.04550507, -0.008929546, -0.023016334, -0.023900054, -0.002303282, 0.020074992, 0.01271504, 0.014522053, -0.011448812, 0.0019108832, -0.03600836, -0.022752535, -0.0076699127, -0.019191269, 0.0028523107, 0.007340166, 0.011640065, 0.007122533, -0.018742813, 0.019455066, -0.022607448, -0.025153093, 0.029387042, -0.02426937, -0.0129854325, -0.029202385, 0.008514064, -0.038725473, -0.015247496, 0.026300611, -0.034135398, 0.004797817, -0.028120814, 0.015366205, -0.01165985, 0.012497407, 0.012569952, 0.023504358, 0.0030946746, -0.012721635, -0.027092004, -0.0072544315, 0.0038316587, 0.012642495, -0.0050253426, -0.029228764, 0.029439803, 0.023926435, -0.0034359626, 0.008791052, 0.011217989, -0.002713817, -0.011481787, -0.062256213, 0.025627928, -0.010011115, 0.0050879945, -0.018742813, -0.011448812, 0.026683118, -0.015471724, 6.932928E-4, 0.016038889, -0.0038910133, 0.013717471, -0.0019603453, 0.0034359626, -0.009925381, 0.012827154, -0.009180154, 0.011877483, -0.010307888, 0.0089889, -0.020338789, 0.02134122, 0.026749067, 0.016408205, 0.018043749, 0.018927472, 0.018821953, 0.010716774, -2.1928168E-4, -0.018360307, 0.025693879, -0.031075347, -0.015722333, 0.009602229, -0.003557969, -0.035744563, -0.014284635, -0.010868457, 0.028463751, 0.013717471, -0.009720938, -0.020338789, 0.0029265035, -0.030125676, 0.0024796966, 0.03925307, -0.022383219, 0.0127612045, 0.019679295, 0.034900412, 0.04363211, 0.0031325954, 0.0010815698, -0.017819522, 0.022792105, -0.021275269, 0.042022943, 1.17060146E-4, -0.0046922984, -0.019837573, 0.02010137, 0.005473798, -0.005918957, -0.029281523, -0.0179778, 3.6560686E-4, 0.008553634, 0.0053847665, 0.00854704, -0.021987522, -0.003140839, -0.005632077, 0.015339825, 0.042919856, 0.027039245, 0.022673396, -0.007195077, 0.0022686585, -0.0064531467, 0.024955245, 0.023266941, -0.01701494, -0.03732735, 0.00901528, -0.006532286, 0.026788637, -7.5594475E-4, 0.022119422, 0.0017971206, 0.015221116, -0.009457141, -5.0739804E-4, 0.016052078, 0.009800077, 0.023834106, 0.031101726, 0.01322285, -0.011237774, -0.0032001936, 0.01059147, -0.015537674, 8.8619476E-4, -0.005444121, -0.0140076475, -0.021446738, -0.008217293, -0.017740382, -0.02226451, 0.02859565, 0.022106232, 0.019639725, -0.0042438423, -0.014535243, 0.006406982, -0.037485626, 0.025944484, -0.012325939, -0.01904618, -0.009945166, 0.03935859, 0.0029067188, -0.005210001, 0.02975636, -0.023438409, 0.024638688, 0.021657776, 0.019283598, -0.016645623, 0.022449167, -0.015445344, -0.012029166, 0.0017311712, -0.02746132, -0.011132255, 0.010947596, -0.0012860128, 0.0104925465, 0.013209661, 0.0033518772, 0.06172862, 0.019903522, -0.016711572, 0.020800434, -0.014930939, 0.0089889, 0.0076962924, 0.015010078, -0.020998282, -0.014060407, 0.002756684, -0.01483861, 0.008349191, -0.020312408, -0.006964254, 0.006027773, 0.017437015, -0.0013049733, -0.0032513044, -0.018637294, 0.010452976, -0.0044416906, 0.010973977, 0.029017726, -0.039490487, -0.0100638755, 0.041073274, 0.010960787, 0.0013997755, -0.030363094, -0.003861336, -0.01581466, 0.0034161778, 0.0026099465, 0.028015295, -0.0017146838, -0.005035235, -0.011732394, -5.964297E-4, 0.034293678, -0.011785154, 0.017582104, -0.012668875, 0.006146482, 0.0073467605, -0.007913926, 0.023174612, -0.022607448, -0.019547395 ], + "id" : "bc649448-b432-490e-a426-a0556fa9a7a0", + "metadata" : { + "source" : "movies.csv" + } + }, + "8e15cb5d-c657-4b0b-b101-4a30bc78b570" : { + "text" : "Chess-Chris Columbus-Jonathon Gentry-Eric Ian-Karen Jensen-Clark-Jeffrey Landman-Eden Riegel-Mike Sode-Paul Zimmerman-Michael Hansen,holiday-new york city-burglar-slapstick comedy-sequel-little boy-family relationships-home invasion-family-precocious child-home alone-mischievous child-christmas-kids on their own-child rescue,/uuitWHpJwxD1wruFl2nZHIb4UGN.jpg,/pnkcE3Q3fPNM9XzWEN1gJJRYYX4.jpg,771-24257-9714-21-12536-707610-953-1593-310-854-425-10020-8844-950-988334-8871-812-809-10527-8355-411\r\n76492,Hotel Transylvania,Animation-Comedy-Family-Fantasy,en,Welcome to Hotel Transylvania Dracula's lavish five-stake resort where monsters and their families can live it up and no humans are allowed. One special weekend Dracula has invited all his best friends to celebrate his beloved daughter Mavis's 118th birthday. For Dracula catering to all of these legendary monsters is no problem but the party really starts when one ordinary guy stumbles into the hotel and changes everything!,36.996,Columbia Pictures-Sony Pictures Animation,9/20/12,85000000,358375603,91,Released,Even monsters need a vacation,6.953,7908,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-Fran Drescher-Steve Buscemi-Molly Shannon-David Spade-Cee Lo Green-Sadie Sandler-Jon Lovitz-Luenell-Chris Parnell-Brian George-Brian Stack-Jackie Sandler-Rob Riggle-Paul Brittain-Robert Smigel-Jonny Solomon-Jim Wise-Craig Kellman-Brian McCann-James C.J. Williams-Ashley Lambert-Rose Abdoo-Kirk Baily-Ranjani Brow-Corey Burton-Cam Clarke-Michael Corbett-Allen Covert-Rachel Crane-Collin Dean-Eddie Frierson-Bridget Hoffman-Rif Hutton-Tom Kenny-Scott Menville-Edie Mirman-Jessica Pennington-Alec Rosenthal-Katie Silverman-John Hans Tester-Sarah Thyre-Chris Titone-David Zyler-Maddie Taylor,hotel-witch-vampire-love-romance-zombie-invisible person-duringcreditsstinger-nosferatu-protective father-magical creature-father daughter relationship,/eJGvzGrsfe2sqTUPv5IwLWXjVuR.jpg,/5rARlA8beRAVXPYzSaF2NoS8Ry5.jpg,159824-80321-400155-953-57800-38757-81188-46195-82690-8355-49519-62177-20352-10527-950-22794-9502-93456-10191-62211-425\r\n180,Minority Report,Action-Thriller-Science Fiction-Mystery,en,John Anderton is a top 'Precrime' cop in the late-21st century when technology can predict crimes before they're committed. But Anderton becomes the quarry when another investigator targets him for a murder charge.,26.947,DreamWorks Pictures-20th Century Fox-Cruise/Wagner Productions-Amblin Entertainment-Blue Tulip Productions-Ronald Shusett/Gary Goldman-Digital Image Associates,6/20/02,102000000,358372926,145,Released,The system is perfect until it comes after you.,7.", + "embedding" : [ 0.021960057, -0.02973389, -0.01475803, -0.029815577, -0.015888026, 0.039699644, -0.00332362, -0.009162503, -0.021265721, -0.028699195, 0.027650883, 0.02834522, 0.0035873994, 5.2883505E-4, 0.019836208, 0.014281525, 0.02166054, -0.019822594, 0.0032657587, -0.025949081, -0.0072769066, 0.005724863, -0.011231896, 0.011871773, 0.01258653, 0.020135725, 0.029107627, -0.006170735, -0.020734759, -8.0878154E-4, 0.016813807, -0.007222449, 0.0034835893, -0.019400546, -0.01910103, -0.0072360635, 7.168842E-4, -0.021864757, 0.035805922, 5.2117696E-4, 0.018011875, 0.011531413, -0.02193283, -0.021306565, -6.981644E-4, 0.004846733, 0.009387142, -0.0070794974, -0.012620566, 0.014104538, 0.01861091, 0.041061085, -0.011456533, -0.02880811, -0.011102558, -0.0028590278, -0.0072020274, 0.0034427461, 0.0037405614, 0.009196539, 0.01626923, -0.02251825, -0.033545926, -0.013532732, -0.011565449, -0.009754731, -0.020830061, -0.022273188, 0.008767686, -0.001059372, 0.027623655, 0.020176569, 0.013668876, 0.00606182, 0.027936786, -0.037357964, -0.009339491, -0.013614419, -0.017984647, -0.0028692386, 0.01129316, -0.0061775423, -0.014431284, 0.009271419, 0.0131991785, 0.017453685, -0.012246169, 0.013335323, -0.03321918, 0.012443579, 0.025036916, 0.043402765, -0.0035839956, 0.0049045943, 0.0044553187, 0.018896813, -0.02292668, 0.019169101, -0.020721145, -0.016759349, 0.021306565, -0.009809189, -0.010101899, -0.008835758, 0.008352445, -0.0089514805, 0.008359253, -0.0160514, 0.013362552, 0.00652471, -0.0015350257, -0.009543708, 0.017235855, -0.034172192, -0.019455004, -0.015152848, 0.019264402, -0.012198519, -0.023280656, -0.016963566, 0.035724234, 0.031530995, 0.002316153, -0.03798423, 0.032674603, 0.039018925, 0.008066543, -0.0074607013, -0.004880769, -0.017140552, 0.016541518, -0.030142322, 0.023852462, 0.009039974, -0.042776503, 0.03330087, -0.008726843, 0.0050611603, -0.03139485, -0.02446511, 0.037603024, 0.023212584, -0.014839716, -0.017617058, -0.0053436593, 0.006000555, 0.01475803, 0.0077261827, 0.015112004, -0.00351252, 0.018202478, 0.03046907, 0.022327647, 0.025036916, 0.024356196, 0.018447537, -0.0022923278, -0.009162503, -0.002013232, -0.03330087, -0.015588509, -0.019278016, -0.0049726665, -0.0072292564, -0.008277566, 0.023798004, 0.013546347, -0.018488381, 0.0049216123, -0.011885388, -0.024846314, 0.037603024, -0.028290762, 0.013873093, -0.0031976865, 0.009747923, 0.0024693152, -0.012933698, -0.03626881, -0.006405584, 0.0092441905, 0.002954329, 0.022300418, 0.035724234, -0.006858263, 0.0044723367, 0.03866495, -0.019019343, -0.00568402, -0.01910103, 0.0081073865, 0.012790746, 0.017916575, -0.01931886, -0.6351943, -0.015084776, 0.0022106413, -0.010122321, 0.012280205, 0.026942935, 0.01153822, -0.0035567668, -0.030577984, -0.013226408, -0.0138799, 0.013308094, 0.032184485, -0.010884727, -0.03798423, -0.013648455, 0.014404055, -0.015261764, 0.02397499, 0.0038596876, -0.016187543, 0.012389121, 0.01999958, -0.006259229, 0.015357064, 0.011334004, -0.0024642097, -0.010401416, -9.436494E-4, 0.005054353, -0.007549195, 0.023607401, 0.0041762227, -0.0031466326, 0.038937237, 0.0072292564, -0.023444029, 0.042722046, 0.023484873, 0.030332925, -0.036404956, -6.738074E-5, 0.014989475, 0.012960927, 0.0023655053, 0.027460283, -0.0071407626, -8.69621E-4, 0.0015052442, 0.004125169, -0.0016481956, 9.6577284E-4, -0.0027535162, -0.015112004, -0.010714548, -0.005949501, 0.021265721, -0.025595106, 0.030496297, 0.00380523, -0.022436561, 0.011858159, -0.002282117, 0.019945124, -0.01329448, 0.027732572, -0.0080937715, -0.011640328, 0.01910103, -0.027446669, 0.01117063, 0.011163823, -0.016568748, -0.018583681, 0.0058167605, 0.00514625, 0.023375956, 2.3761415E-4, 0.0032078973, 0.010551174, 8.2239596E-4, -0.014118152, 0.00652471, 0.0059937476, 0.029842805, 0.0022787133, -0.034362793, 0.013866286, -0.0032742678, -0.011905809, 0.016337302, 0.01441767, -0.0049726665, 0.0045097764, -0.010149549, -0.012470808, -0.016691277, 0.010387802, 0.02671149, -0.06415114, -0.015915256, -0.02853582, 0.011633521, -0.013628033, 0.002642899, 0.013035806, 0.0067016976, -0.0112114735, 0.035206888, -0.018107176, 0.0016898897, -0.009332684, -0.023090053, 0.003992428, -0.020693917, -0.028209075, 0.0043532103, 0.019890666, -6.722119E-4, -0.020911748, -0.0064702523, 0.007576424, -0.009339491, -0.021551624, 0.023280656, 0.013280866, -7.9686893E-4, -0.013158335, -0.001704355, 0.016582362, 0.009863647, -0.0038733021, 0.029761119, -0.023280656, 0.0054764, 0.006170735, 0.028971482, -0.007576424, 0.015016704, -0.006232, -0.014390441, -0.0012040251, -0.019958738, -3.305751E-4, 0.004414475, -0.010122321, -0.016677663, -0.0012993261, -0.02575848, -0.012729482, -0.009298648, 0.013580383, 4.5353032E-4, 0.011579063, 0.011967074, 3.1930066E-4, -0.020108497, -0.022300418, 0.0025390892, -0.012817975, 0.02541812, 0.023267042, -0.009979369, -0.011715207, 0.029543288, 0.008509012, -0.007297328, 0.007712568, -0.0059801335, -0.016378146, -0.0012686936, -0.010299307, -0.0076989536, 0.0027603235, -0.00731775, 0.033600386, -0.014826102, 0.01329448, -7.0156803E-4, -0.0011410585, -0.008577084, -0.003607821, -0.028944254, -0.0061503137, 0.030033408, 0.023280656, 0.018284164, -0.0052313404, -0.010163164, 0.006946757, -0.0060992595, -1.4358957E-4, -0.014826102, -0.0069841966, 0.0053334483, 0.02424728, 0.0046084807, 0.009482442, -0.004982877, 0.0031755632, 0.052606113, 0.024859928, -0.003624839, -0.010544367, 0.017208625, -0.044573605, -0.0017052059, -0.019604763, 0.008284374, 0.0037439652, 0.016623205, 0.0014218559, -0.008420518, -1.3593146E-4, 0.018992115, 0.016664049, -0.018433923, -0.0026905495, -0.023961376, 0.0022174483, 0.0061945603, -0.009604973, 0.038964465, 0.019591149, -0.01200111, 0.009067203, 0.015112004, -0.027814258, -0.0026309865, -0.010415031, -0.0076649175, 0.01629646, -0.0012993261, 0.009305455, 1.4497229E-4, 7.266696E-4, 0.053314064, 0.010353765, 0.019468619, -0.015288992, -0.001911124, 0.04405626, 0.003771194, 0.001549491, 0.00882895, -0.020258255, 0.018379465, 0.020680303, -0.0046357093, 0.054022014, -0.025200289, 0.019836208, -0.008917444, 0.008359253, 0.02085729, 0.0014780153, -4.990535E-4, 0.011470147, 0.026697874, 0.022899453, 0.006300072, -0.0175626, 0.0126409875, -0.003822248, 0.0017494528, 0.0040298677, -0.014295139, -0.007542388, 0.004400861, -0.012790746, -0.022232346, -0.0028556243, -0.018079948, 0.012947313, -0.0029492234, -0.009019553, -0.011034486, 7.636838E-4, 0.022640778, 0.012994963, 0.008992324, -0.034743994, 0.015506823, 0.019945124, -0.017412841, -0.01117063, 0.0016430902, -0.01475803, -0.027841486, 0.005813357, -0.013110685, 0.03275629, -0.010898342, 0.0016345811, -0.010183585, -0.002271906, 0.019169101, -0.024138365, 0.017576214, 0.02280415, -0.002600354, 0.027092693, -0.017412841, -0.016568748, 0.016718507, -0.012321048, -0.0013129405, 0.0013912234, -0.004441704, -0.007957628, 0.009713887, 0.015057547, -0.03790254, 0.005105407, -0.01590164, -0.009564129, -0.015152848, -0.0076581105, 0.0055648936, -0.011088944, -0.02834522, -0.03839266, -0.027446669, -0.009986176, 0.08811252, 0.039645188, 0.0072700996, 0.017222239, -0.0046391133, 0.019740907, -0.019768136, 0.0012899662, -0.003315111, 0.0013648454, 0.017603444, -0.016214773, 0.014703572, 7.3049864E-4, 0.01707248, -0.0051768827, -0.014009236, -0.0039141453, 0.009468828, -0.0014533392, -0.008386482, -0.006681276, 0.013982008, 0.028944254, 0.0036452606, -0.03232063, 0.029597746, 0.012252977, -0.004295349, 0.0117832795, -0.022286803, 0.0063511264, 0.013314902, 0.0029271, -0.017181396, 0.0038120372, 0.011722014, 0.018747054, 0.024914386, 0.0035057128, 0.018992115, 0.013798214, 4.0268898E-4, -0.017276697, 0.005251762, -0.021184035, -0.010013405, 0.01158587, 0.037058447, -0.03844712, 0.02178307, 0.012498036, -0.015384293, 0.0060039586, 0.0101972, -0.012783939, -0.0123687, -0.004485951, -0.012736289, 0.011987495, -0.0044995653, -0.04424686, 0.016664049, -0.0123687, -0.016500676, -0.015751882, -0.019700063, -0.0132059865, -0.028671965, -0.0041183615, 0.008685999, -0.017889347, -0.0131991785, -0.0025101583, 0.022354875, -0.0018668772, 0.024260893, -0.0052721836, 0.0092441905, 0.012382314, -0.03419942, -0.032620147, 0.014036465, -0.02270885, -0.0050679673, -0.0030326117, 0.0053436593, 0.014104538, 0.0029458199, -7.2794594E-4, -4.7650465E-4, 0.008883408, -0.021823913, -0.014376826, 0.030795814, 0.0033219182, 0.0054968214, 0.015016704, 0.008978709, -0.006800402, 0.0041047474, -0.029924491, 0.009441599, -0.036350496, -0.02905317, -0.011082137, 0.0077261827, 3.2951147E-4, -0.003658875, -0.022055358, -0.02387969, -0.014131767, -0.0027671305, 0.001997916, 0.012715867, -0.005792935, 0.00902636, -0.00526878, -0.0025101583, 0.011150209, 0.0046016737, -0.01117063, 0.015493209, 0.0129200835, -0.015288992, 0.032157257, 0.012845204, -0.025527034, 0.0012210432, 0.031966656, -0.007882749, 0.027773414, -0.014921403, -5.862709E-4, -0.019019343, -0.014240682, 0.010163164, 0.011687978, -0.006378355, 0.006405584, -0.031068103, 0.009713887, 0.008270759, -0.008563469, -0.018937657, -0.034090504, 0.005690827, -0.02202813, 0.015656581, 0.026888477, 0.0054968214, 0.004400861, -0.018542837, -0.0041796267, -0.006613204, -0.044137944, -0.023566559, -0.0134986965, 0.028508592, 0.011640328, 0.042749275, -0.009210154, 0.014676344, 0.00941437, 0.013035806, 0.022559091, -0.025853781, 0.0018907024, -0.03738519, 0.004125169, -1.5249744E-5, 0.013410202, 0.010135935, -0.005632966, 4.4714857E-4, 0.02036717, 0.008910637, 0.016473446, -0.005813357, -0.032892436, -0.015547666, 0.015384293, -0.01827055, -0.0044042645, -0.013151528, -0.009863647, 0.043375537, -0.011129787, 0.0051666717, -0.01066009, 0.02563595, -0.01768513, 0.011150209, -0.023335114, 0.00618435, 3.2610787E-4, -8.772791E-4, -0.02751474, -0.0054798033, 0.0017868924, 0.011674364, 0.02707908, -0.0055478755, -0.013260444, 0.012511651, 0.030169552, -0.014880559, -0.016364532, 0.02856305, -0.009339491, -0.009992983, -0.030305697, -0.0069841966, -0.02085729, -0.0068922993, -0.0029117838, -0.01363484, 2.047481E-4, -0.01827055, -0.040679883, 0.016963566, -1.745411E-4, 0.037848085, 0.0021800087, 0.044845894, 0.022286803, 0.007290521, -0.028671965, 0.014227067, -0.00853624, -1.5422584E-4, 0.017916575, 0.017984647, -0.005258569, -0.00485354, -0.008992324, -0.011660749, -0.042967103, -0.044328548, 0.01919633, 0.03046907, 0.02215066, -0.024260893, -0.008965095, -0.010217621, 0.0074538942, 0.003788212, -7.126297E-4, 0.0034189208, -0.026398357, -0.017399227, 0.008917444, -0.014676344, 0.014404055, 0.018420309, -0.012110026, 0.026602574, -0.029352687, 0.009992983, -0.008856179, 2.280415E-4, 0.032266174, -0.00912166, 0.017004408, 0.015288992, 0.018175248, -0.0031449306, -0.0077806404, -0.010687319, 0.028889796, -0.015003089, 0.007290521, -0.013573576, -8.368613E-4, 0.0109391855, 0.004761643, -0.017821275, -0.008359253, -0.043293852, -0.0103809945, 0.021252107, 0.0069841966, 0.0040536933, 0.002385927, -0.017576214, -0.0032810748, 0.0034886948, -0.0078146765, 0.015956098, -0.036513872, 0.01611947, -0.02280415, 0.0146355, 0.0020438647, -0.0076172673, 0.0048331185, -0.0097955745, 0.010135935, 0.0068378416, 0.005534261, -0.023457643, -0.020516928, -0.048902992, -0.017208625, -0.0059869406, -0.012443579, 0.019700063, -0.021810299, -0.009632201, 0.0039992356, -2.6718297E-4, -0.006868474, 0.0023825231, -0.0056704055, -0.0012201923, 0.012028338, -0.018325007, 0.0053776954, -0.011020872, 0.039590728, -0.020149339, -0.010401416, 0.0014763136, 0.010333343, 0.03738519, -0.023838848, 0.006946757, -0.0011495674, -0.026970163, -0.017794045, 0.008869793, 0.016990794, 0.02436981, 6.568957E-4, -0.017862117, -0.01317195, -0.0054525747, 0.020966204, -0.004887576, -0.006582571, 0.03019678, 0.010421838, 0.012525265, 0.043620598, -0.005779321, -0.018447537, 0.002816483, -0.019305246, -0.02573125, -0.0014916298, 0.01592887, 0.010299307, -2.2995604E-4, -0.014975861, -0.028971482, -0.0045404085, -0.03185774, -0.039754104, -0.007052269, 0.040870484, 0.04784107, 0.01590164, -0.0016652136, 0.0026803387, -0.0066846795, 0.024138365, -0.018488381, 8.806827E-4, 0.024383424, 0.026602574, 0.014131767, 0.03395436, -0.019128257, -0.0075696167, 0.0064089876, 0.026357515, 0.01426791, 0.026289443, -0.014744415, 0.007576424, -0.0026922512, 0.013736948, 0.0044519147, -0.010340151, 0.016636819, -0.031095332, -0.0043770354, 0.013934357, 0.0043804394, -0.007052269, 0.011803701, 0.010803041, -0.027528355, -0.002710971, -0.0047310106, -0.003098982, 0.004227277, -0.019877052, 0.01426791, 0.008277566, -0.0048739617, 0.016201159, 0.022722464, -6.5136486E-4, 0.016364532, -0.018406695, 0.00564658, -0.019114643, -0.009142082, -3.8162916E-4, 0.01602417, -0.027228838, 0.011728821, -0.01802549, -0.0043872464, -0.012566108, 0.0012584828, -0.001885597, 0.027991245, 0.011095751, -0.037575796, 0.0012295522, -0.0023893304, 0.015779112, -0.03305581, -0.010884727, -0.027541969, -0.020843675, -0.007127148, 0.006827631, -0.029134857, -0.03368207, -0.0015622545, -0.00681742, -0.027936786, 0.008338831, 0.19256234, -0.0038256517, 0.0035363452, 0.047432635, 0.0023552945, 0.018556453, 0.029761119, 0.019128257, 0.0015129023, 0.015506823, -0.003255548, 0.011361232, 0.012477615, -0.0010151251, 0.0050917924, -0.021864757, -0.022899453, -0.038283747, -0.017712358, -0.045581073, -0.017004408, -0.014962246, -0.0061094705, -0.028699195, 0.004836522, -0.0057657063, -0.015261764, 0.018597296, 0.01641899, -0.0026326883, -0.013314902, -0.016446218, -0.00853624, -0.004063904, -0.022872223, -0.008338831, -0.0073109427, 0.012974541, -0.0037848083, -0.0051700757, -0.0060652234, -0.012777132, -0.011054908, -0.017222239, 0.007923592, 0.038338203, -0.01629646, -0.0057180556, -0.010843884, 0.0073926295, -0.036867846, -0.008052928, 0.0062864576, 0.030033408, -0.004036675, -0.006698294, -0.0013571874, -4.6884653E-4, -0.015370678, -0.0062864576, 0.019740907, 0.031013645, -0.03934567, 0.0039651995, 0.008944673, 0.02707908, -0.027106307, -0.006613204, 0.021769455, -0.037112907, -0.00676977, -0.028263533, -0.02085729, 0.0120759895, 0.008515819, -0.01136804, 0.0092237685, 0.020911748, 0.00882895, 0.009128468, -0.02997895, -0.008617927, 0.01334213, -0.0051700757, -0.011939845, -0.030115094, 0.02951606, -0.01941416, 0.006511096, -0.023130897, -0.0025901431, -0.007413051, -0.012246169, 0.013253637, 0.0067187157, 0.0018107176, 0.018992115, 0.0054355566, -6.254123E-4, -0.0022599935, -0.03610544, 0.012852011, 0.039236754, -0.024165593, -0.038801093, -0.022981139, 0.0030343134, -0.004356614, 0.031040875, -0.017889347, -0.00785552, -0.011810509, -0.004795679, -0.018079948, 0.0064260056, 0.017753202, 0.018488381, -0.0143359825, 0.035778694, -0.021252107, 6.1435066E-4, -0.027065463, 0.013968393, 0.02027187, -0.013430624, -0.03275629, -0.026765946, 0.005673809, -0.01083027, -0.029434374, 0.0160514, -0.021184035, 0.009448406, -0.0022191503, -0.008270759, 0.0018753861, 0.022273188, 0.016214773, 0.008080157, -0.010027019, 6.9603714E-4, -0.01158587, 0.0143359825, -3.1908794E-4, 0.017603444, -0.0117832795, 0.00882895, 0.003211301, -0.022191502, -0.026765946, -0.019046571, 0.0052551655, 0.018692596, 0.018202478, 0.045581073, -0.0100746695, -0.019972352, -0.039863016, -0.0057486882, 0.026071612, -0.030060636, 0.025554264, 0.0220009, -0.009897682, -0.029815577, -0.00790317, -0.17480913, 0.0076649175, -0.005503629, -0.027582811, 0.0143359825, 0.013083456, 0.022300418, 0.00970708, 0.0054525747, -0.03142208, 0.019631991, 2.1634162E-4, -0.039046153, -0.011163823, 0.0024863333, 0.0058065495, -0.026997393, 0.03792977, 0.023280656, -0.013178757, 0.03259292, 0.0053334483, -0.01451297, -4.5906118E-4, 0.01922356, -3.2281063E-5, 0.014717187, 0.009067203, -0.013920743, -0.024519568, -0.043947343, -0.016745735, -1.4486592E-4, 0.0067969984, -0.0129200835, -0.004237488, 0.003985621, -0.00836606, -0.008597505, -0.010061055, 0.03090473, 0.01241635, 0.013954779, 0.019972352, 0.020802831, 0.009271419, 0.03161268, -0.01697718, -9.810891E-4, 0.006728926, -0.01287924, -0.03626881, 0.0337093, -5.6329655E-4, 0.0123482775, 0.03019678, -0.011041294, 0.0028266937, 0.004312367, 0.0015826762, -0.026303057, -0.0151800765, 0.006395373, -0.007841906, 0.004057097, -0.027364982, -0.006306879, 0.021891985, -0.020285483, 0.020135725, -0.02831799, 0.001824332, 0.010789427, 0.007133955, 0.016759349, -0.018447537, -0.031966656, 0.020653073, 6.2285963E-4, 0.01158587, -0.016595976, 0.04468252, -0.023988606, 0.0015571491, -0.006711908, -0.014158995, 0.010013405, -0.005227937, 0.014009236, -0.009557322, -0.0037337544, -0.014866945, -0.023552945, 0.003754176, 0.014989475, 0.011027679, -6.8667723E-4, 0.0055989297, 0.0041694157, 9.334386E-4, -0.0030938766, -0.004080922, -0.018529223, 0.0123687, 0.017807659, 0.017603444, 0.018433923, 0.031095332, 0.026861249, 6.620011E-4, -2.6122667E-4, 0.004312367, 0.029951721, 0.025704022, -0.009257805, 0.0126409875, -0.010312922, -0.027106307, 0.014866945, 0.02095259, 0.044083487, -0.011626714, 0.013600804, -0.013839057, -0.0024250683, -0.0024301738, -0.07749327, -0.0055819117, -5.4202403E-4, 0.03373653, -0.028454134, 0.0407888, -0.012498036, 0.017875731, -0.02234126, 0.03771194, 0.007801062, -0.023893304, 0.01697718, -1.870919E-4, 0.0021153402, -0.003641857, -0.03610544, -0.0048433295, -0.01863814, 0.025227517, -0.008985517, -0.008794914, 0.0065213065, -0.011579063, -0.01944139, 0.030115094, -0.036187124, 0.023648245, 0.01885597, 0.017617058, 0.022668008, -0.03019678, 0.0040230607, -0.025241133, -0.027065463, -0.0149077885, -0.017249469, -0.03340978, 0.006112874, -0.053994786, 0.010891535, 0.0057554953, 0.003658875, -0.016568748, -0.0033185144, -3.239806E-4, -0.03798423, 0.02212343, -0.0033695686, -0.023348728, -0.014295139, -0.013546347, -0.017984647, -0.013301287, 0.010741776, 0.035506405, 0.021292951, 0.017712358, -0.02036717, -0.039236754, -0.0026105647, -0.016909108, -0.017303927, 0.018883198, -6.8412453E-4, 0.019795364, -0.016595976, -0.009189732, 0.016568748, -0.024791855, -0.025159445, 0.030795814, -0.03324641, -0.016677663, -0.029924491, 0.017862117, -0.012198519, -0.012232555, 0.03929121, -0.036132667, -0.014798873, -0.040108077, 0.010047441, -0.020571386, 0.008849372, 0.016786579, 0.0055138394, 0.011361232, -0.004846733, -0.026915705, 0.018815126, 0.01734477, 0.0040775184, 0.007508352, -0.012702253, 0.019672835, 0.007767026, 0.0041898373, 0.0038494768, 0.013907129, -0.007045462, -0.0016184141, -0.07634966, 0.010884727, -0.021960057, -0.0049794735, -0.011613099, -0.013253637, 0.003961796, -0.004448511, 0.0038494768, 0.014186224, -0.009768345, 0.014499356, -0.01641899, 0.0022991349, -0.009652623, 0.013512311, 0.0092441905, -0.00397541, -0.0059699225, -0.0027211818, -0.014036465, 0.0022004305, 0.013369359, 0.015465979, -0.0045097764, 0.014935018, 0.0057554953, 0.021265721, -0.018406695, -0.008080157, 0.031040875, -0.027718956, 0.0067357337, 0.0055989297, -0.008216302, -0.025717637, -0.015479594, 0.0100814765, 0.013736948, -0.006112874, -0.023471259, -0.016310073, -0.0024454899, -0.009216961, -0.011436111, 0.013750562, -0.022763308, 0.006728926, 0.0051088105, 0.014022851, 0.026548116, 0.010299307, -0.009264612, -0.020203797, 0.00941437, -0.008597505, 0.043484453, -4.8793863E-5, 0.0061945603, 0.0016515992, 0.020721145, 0.005064564, 0.029107627, -0.025213903, 0.0053504664, 0.0020591808, -0.006225193, 0.005741881, -0.0012363594, -0.030959187, -0.009455213, -0.0016167122, 0.01836585, 0.030959187, 0.0034580624, 0.011939845, 0.00426812, 0.01300177, 0.0037643868, 0.031095332, 0.027256066, -0.0035499597, -0.025976311, 0.018379465, -0.006654047, 0.0045982697, -0.006585975, 0.016895493, -0.0049148053, 0.025921853, -0.010340151, 0.011238703, 0.019032957, -0.01317195, 0.0013231513, 0.027433053, -0.016568748, 0.002375716, 0.0049794735, 0.0321028, -0.0047922754, 0.0014831207, -0.014485741, -0.019945124, -0.01626923, -1.9708998E-4, -0.021020662, -0.009713887, 0.012681831, 0.009673044, 0.032810748, 0.026629804, -0.0129200835, 0.010312922, -0.038011458, -0.005010106, 0.0014507865, -0.020816445, -0.024519568, 0.029924491, 0.0047684503, 0.014472127, 0.03275629, -0.011817316, 0.050972383, 0.017140552, 0.019890666, -0.027991245, 0.0027007603, 0.002316153, -0.0037405614, -0.0055138394, -0.022273188, -0.001256781, -0.008890215, 0.0132127935, 0.007841906, 0.022273188, -0.0140636945, 0.07754773, 0.012402736, -0.012014724, 0.018896813, -0.036650013, 0.0123618925, 0.015670195, 0.02095259, -0.013382973, -0.011191052, 0.0018379465, 0.002687146, 0.0060413983, -0.033654843, 0.012450386, -0.01629646, 0.0027228838, 0.015588509, 0.0023723124, -0.008155037, -0.016636819, -0.007875941, 0.021551624, -0.0048569436, -0.009550515, -0.020802831, 0.018107176, -0.010612439, 0.0062217894, -0.023321498, 0.0161467, -0.026616188, -0.0020710935, 0.0067016976, 0.023267042, -0.011470147, 0.009958947, 0.0031908792, 0.017766817, 0.0035942064, -0.01697718, 0.010694126, -0.02132018, -0.009434792, 0.017521758, -0.0126546025, -0.0047548357, -0.0308775, -0.0351252 ], + "id" : "8e15cb5d-c657-4b0b-b101-4a30bc78b570", + "metadata" : { + "source" : "movies.csv" + } + }, + "a06b64aa-716c-41c1-bb53-398e89b8c870" : { + "text" : "Dyer-India Rose Hemsworth-Simon Russell Beale-Manny Spero-Jonny Brugh-Andrew Crawford-Chanique Greyling-Brooke Satchwell-Elsa Pataky-Zia Kelly-Rosangela Fasano-Cameron Chapek-Tristan Hemsworth-Samson Alston-Alan Spies-Eliza Matengu-Shari Sebbens-Victoria Zerbst-Johnny Nasser-Jenna Owen-Gemma Dart-Victoria Ferrara-Ava Rodrigo-Porter-Elsa Rodrigo-Porter-Kaan Guldur-Indeia Booc-Indiana Ierano-Cayla Sutherland-Tui Vincent-Garth Wood-Yure Covich-Matatia Foa'i-Alan Dukes-Alan Tsibulya-Arka Das-Simona Paparelli-Nico Cortez-Priscilla Doueihy-Nicole Milinkovic-Chayla Korewha-Imaan Hadchiti-Carmen Foon-Clariza Vicente-Kuni Hashimoto-Stephen Hunter-Justin Paul Hitchcock-Nazih Kheir-Tatyana Gillam-Indiana Evans-Samantha Allsop-Olivia Vasquez-Adam Todd-Josh Heuston-David Hambly-Janessa Dufty-Ava Caryofyllis-Chlo�� Gouneau-Ben Sinclair-Jane Yubin Kim-Dave Cory-Te Kainga O'Te Hinekahu Waititi-Matewa Kiritapu Waititi-Sasha Hemsworth-Aleph Millepied-Amalia Millepied-Rex Bale-Molly Moriarty-Hannah Gray-Luc Barrett-Luca Darda-Bo Chambers-Zali Mae Harrison-Leeton Alan Ingrey-Evan Stanhope-Jessica May Lynne-Jaimee Rose Lynn-Kim Thien Doan-Simone Landers-Sienna Ngeru-Rafael Siemer-Gabriel Siemer-Ronin Fabi-Arias Vang-Corban Ierano-Xander Mouradian-Jacob Yee-Zachary Levi-Ray Stevenson-Tadanobu Asano-Tom Hiddleston,ex-girlfriend-hero-greek mythology-sequel-superhero-based on comic-shadow-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-heroes-norse god-colorless-child abduction-thor,/pIkRyD18kl4FhoCNQuWxWu5cBLM.jpg,/jsoz1HlxczSuTx0mDl2h0lxy36l.jpg,539681-610150-985939-629176-2-45920-438148-782116-553429-479669-507086-760741-697071-361743-766507-718789-74431-532639-631330-225145\r\n384018,Fast & Furious Presents: Hobbs & Shaw,Action-Adventure-Comedy,en,Ever since US Diplomatic Security Service Agent Hobbs and lawless outcast Shaw first faced off they just have traded smack talk and body blows. But when cyber-genetically enhanced anarchist Brixton's ruthless actions threaten the future of humanity they join forces to defeat him.,130.097,Universal Pictures-Chris Morgan Productions-Seven Bucks Productions,8/1/19,200000000,760098996,137,Released,Nothing is stronger than family.,6.", + "embedding" : [ 0.0020274944, -0.018164694, -0.013578696, -0.046425484, -0.03715694, 0.03643973, 0.012889071, 0.0058962847, -0.010565039, -0.03988785, 0.0029860719, 0.017709544, 0.028522847, 0.013275261, 0.011696022, 0.016702693, 0.017350938, -0.022288647, 0.01780609, -0.017433694, 0.0020516312, -0.005961799, -0.011502928, 0.022150721, -0.009861623, 0.011840844, 0.03699143, -0.008475479, -0.0131028555, -0.012178759, 0.01463382, -0.009185791, 0.009137518, -0.040798154, -0.012840798, -0.005920422, -0.0011456378, -0.027322901, 0.032357156, 0.0053342413, 0.0109374365, -0.0059376624, -0.015502746, -0.012254618, -0.01857847, 0.0011352934, 0.009971962, -0.024895426, -0.01562688, 0.02297827, 0.0328261, 0.030012434, -0.009985755, -0.017668165, 9.55237E-5, 0.008654781, -0.008075496, 0.019337056, 0.0015663084, 0.01819228, 0.0054997513, -0.02119904, -0.031695116, -0.0021395583, -0.021571437, -0.017102674, -0.0058066337, -0.007965157, -0.0023395494, 0.0037894836, 0.014261424, 0.01017885, 0.00557561, -0.0089375265, 0.019502565, -0.036025956, -0.02664707, -0.014675198, -0.0047135795, 0.013640762, 0.017337147, -0.0021757635, -0.012751147, 2.2218822E-4, 0.01969566, 0.018164694, -0.016233748, 0.020261152, -0.018675016, -0.0044239378, 0.023502385, 0.036908675, -0.014675198, 0.0032946784, 0.010792615, 0.023819612, -0.026205711, 0.021709362, -0.029184885, -0.03332263, 0.007337599, -0.00489633, -0.017323354, -0.008006535, -0.007282429, 0.009640943, -0.013709724, -0.005268727, 0.011654645, 0.01524069, 0.011054672, -7.892962E-5, 0.022150721, -0.045542765, 0.0057411194, -0.014771746, 0.03255025, -0.016826825, -0.019888755, -0.009358197, 0.03983268, 0.03754313, 0.00379638, -0.023433423, 0.037212107, 0.021447305, 0.0014214874, -0.011033983, 0.016206164, -6.90486E-4, 0.026109163, -0.013144232, 0.021874873, 0.010268501, -0.032081306, 0.034729462, -0.03792932, -0.010096095, -0.018937074, -0.026922919, 0.031171003, 0.03155719, -0.031005492, -0.019116376, -0.02598503, 0.014302801, 0.01518552, -3.5364777E-4, 0.013040789, -0.0032601974, 0.021240419, 0.03784656, 0.01936464, 0.015006217, 0.015599294, 0.008034119, 0.009116828, -0.0106960675, 0.006213512, -0.009468537, -6.0600706E-4, -0.017764714, -0.017350938, 0.0025671253, 0.0065583237, 0.015323444, 0.009696113, -0.022909308, -0.010213331, -0.0021395583, -0.003799828, 0.017626788, -0.03260542, 0.006775555, -0.003286058, -0.003134341, 0.004710132, 0.0035998372, -0.03359848, -0.022150721, -0.0013137336, 0.0062100636, 0.058480114, 0.03437086, -0.0051721795, 0.0018447441, 0.02937798, -0.025405746, 0.011985664, -0.013875234, -0.005696294, 0.023488592, 0.013964885, -0.006130757, -0.6315852, -0.015709633, 6.62039E-4, -0.0130269965, 6.61177E-4, 0.0121097965, 0.008420308, 0.004775646, -0.017833676, -0.017957808, -0.029129716, 0.02932281, 0.01226841, -0.015778596, -0.013482149, -0.007765166, 0.015819974, -0.02375065, 0.012385646, -0.0024395448, -0.011861532, 0.008523752, 0.004234291, -0.013785583, 0.0115236165, -0.009192687, -0.0073238066, -0.01835779, 0.0080203265, 0.0016499254, -0.022081759, 0.018619847, 0.028605603, 0.007765166, 0.03994302, -2.6547828E-5, -0.015778596, 0.054094102, 0.025860898, 0.024826463, -0.028384922, 0.0076686186, 0.009654735, 0.013744205, -0.011013295, 0.030398624, 0.01206842, -0.009289235, 0.0064893616, -0.0062652337, 7.288463E-4, 0.011413276, -0.0061100684, -0.021723155, -0.014151083, -0.0021171456, 0.008103082, -0.04110159, 0.019295678, 0.0073720803, -0.02336446, 0.025709182, -0.0043894565, 0.0039274083, 0.00419981, 0.03715694, -0.011999457, -0.002244726, -0.0027895288, -0.025833314, 0.008027223, 0.01282011, -0.01496484, -0.0071169194, 0.0014645889, 0.00968232, 0.038425848, 0.006989339, 0.012695977, 0.025543671, -0.0105305575, 0.009771972, 0.0017912983, 0.00759276, 0.030619305, -0.02820562, -0.038094826, 0.013482149, 0.003308471, -0.0063273, 0.014454518, 0.01070986, 0.0075582787, 0.018454337, 0.007916883, 6.560048E-4, 0.0021430065, 0.011440862, 0.028633187, -0.061128266, -0.005075632, -0.02308861, 0.031281345, 1.1077085E-4, 0.008227214, 0.011013295, -0.026233295, -0.0059721437, 0.02637122, -0.020399077, -0.0030015884, 0.014357971, -0.020261152, 0.005534232, -0.007082438, -0.03125376, 0.01446831, 8.784085E-4, 0.012096005, -0.024550613, 0.003051586, 0.010047821, 0.012516675, -0.0076755146, 0.03086757, 0.042370494, -0.013454564, -0.009447848, 0.0048239194, 0.017930223, 4.4906374E-5, -0.0013844201, 0.024964387, -0.026729824, 0.013661451, -0.0034894974, 0.007620345, -0.009130621, 0.008840979, -0.0059686955, -0.018054355, -0.011771881, -0.010902955, -0.009985755, -0.009282338, -0.015668256, -0.041294683, 0.004575655, 0.0066410787, -0.018495714, 0.0024085117, 0.01991634, -0.00621696, 0.017102674, -9.534051E-4, -0.0027084982, -0.042315327, -0.005699742, 0.0059755915, -0.021888664, 0.012392542, 0.020288737, -0.010565039, -0.00812377, 0.01830262, -0.005641124, -0.0045135887, 1.8253484E-4, -9.947825E-4, -0.010040925, 0.004544622, -0.012454608, -0.0045135887, 0.015999276, -0.026191918, 0.023281705, -0.0107719265, 0.03048138, -0.004606688, 0.0020843884, -0.014116602, -8.5254764E-4, -0.04043955, -0.01641305, 0.028274583, 0.011833947, 0.0130269965, -0.00839962, 0.0012137382, 0.0010921919, -0.025047142, -0.020054264, 0.008482375, -0.008068601, -0.0022981719, 0.011661541, 0.010144369, -0.005382515, -0.0061790305, -0.010585728, 0.03977751, 0.020095643, 0.03037104, 0.0048584007, 0.0071514007, -0.021268003, 0.0036722475, -0.0033188153, 0.018716395, -0.002272311, 0.02041287, -0.017819883, -0.00328261, 8.0168786E-5, -0.0032222678, 0.01282011, -0.005634228, 0.015392407, -0.011116738, 0.019143961, 0.011916702, -0.011316729, 0.029046962, 0.021157663, -0.019737037, -9.559912E-4, 0.013889027, -0.011040879, 0.004689443, -0.002558505, 6.7712454E-4, 0.01463382, -0.0033291597, 0.004630825, -0.00489633, -0.0032136478, 0.024633368, -0.005737671, 0.042701516, -0.0192543, 0.009344405, 0.009171999, 0.027695298, 1.16374045E-4, 0.013813168, -0.023019647, 0.016606145, -0.002877456, 0.0031602017, 0.05067357, -0.019502565, 0.035391502, 0.005472166, 0.0030998597, 0.021736948, -0.029681414, -0.0075444863, 0.010923644, 0.02976417, 0.014564858, 0.013123544, -0.012027042, 0.010282293, 0.004489452, 0.009647839, 9.982307E-4, -0.018950867, 0.008282384, -0.0069238245, -0.032798514, -0.031584777, -0.0070445086, 0.0032757139, 0.010502973, 0.0025119553, -0.005585954, 0.005351482, 0.0047894386, 0.017392317, 0.025543671, -0.01006851, -0.036025956, 0.010992606, 0.037212107, -0.015171727, -0.028329752, -0.013895923, -0.0070962305, -0.025088519, -0.0028653876, 0.0051618353, 0.02820562, -0.012627015, 0.0081858365, -0.013385601, 0.01663373, 0.022371402, -0.0116891265, 0.030288285, 0.005748016, 0.001293907, 0.008544441, -0.011254663, -0.010689171, 0.032688174, -0.011889117, 0.010337464, -7.7625795E-4, 8.5082353E-4, -0.007951364, 0.0068307254, -0.007344495, -0.04772198, 0.021750739, -0.009089244, -0.020964568, -0.014054536, 0.00795826, 0.0037205212, -0.038646527, -0.023005856, -0.011482239, -0.04170846, -0.013454564, 0.08733398, 0.051418364, -0.0066065975, 0.011040879, 0.009447848, 0.006475569, -0.01696475, -0.013813168, 0.019006036, -0.01775092, 0.020950776, -0.012868383, 0.0077858544, 0.004261876, 0.010089198, -0.007937572, -0.005816978, -0.006016969, 0.0064928094, -0.008654781, -0.03053655, -0.014426934, 0.0066652154, 0.018275036, 0.0033326077, -7.3574256E-4, 0.013213195, 0.010882266, 0.00873064, 0.006672112, -0.024605783, 0.0123511655, 0.017088883, 0.01237875, 0.0060273134, 0.0038998234, 0.021240419, 0.014399349, 0.030122774, -0.0075858636, -0.009303027, 0.0058652516, 0.012516675, 0.0062824744, 0.008978904, -0.02781943, -0.013440771, 0.012647703, 0.014316593, -0.03522599, 0.020978361, 0.0030274491, -0.01775092, -0.01863364, 0.0044515226, -4.965293E-4, -0.017875053, -0.010806408, -0.019985303, 0.020247359, 0.0043032537, -0.020012887, 0.0203577, 0.0036205258, -0.012330476, -0.019571528, -0.01813711, -0.008440997, 9.413367E-4, 0.0040722294, 0.0068065883, -0.01857847, -0.0024223041, 0.003480877, 0.02224727, -0.0011206389, 0.023074817, 6.6247E-4, 0.015351029, -0.0073513915, -0.040991247, -0.022192098, -0.0017912983, -0.023557555, -0.013344224, 0.0029464185, -0.0035291505, 0.017116467, -0.0060583465, 0.021130078, 0.015061387, 0.002355066, -0.02747462, -0.0024895426, 0.03530875, 0.019130168, 0.009992652, 0.0074755237, 0.0010180573, 0.020564586, 0.008303072, -0.028578017, -0.02075768, -0.0058583557, 0.0026998778, -0.021847287, -0.013247676, -0.0061100684, -0.021323172, -0.017957808, -0.015654463, -0.017171636, -0.0041067107, -0.0038687903, 0.010847785, -0.0066100457, 0.0055962983, 0.012758044, -0.018026771, 0.008151355, 0.0042273947, -0.0039653378, 0.019778416, 0.020150812, -0.025971238, 0.019502565, -0.0020033575, -0.03288127, 0.013316639, 0.044384196, -0.0038998234, 0.008434101, -0.012882176, -0.005861804, -0.020647341, -0.018261243, -0.0025722974, 0.002967107, 0.004637721, 0.008006535, -0.008503064, 0.010371944, 0.013454564, 0.0026378117, -0.0052273497, -0.037956905, 0.02081285, -0.0012594258, 0.008737535, 0.012282203, -0.011475342, 1.4773039E-4, -0.038370676, -0.012702873, -0.01371662, -0.0385086, -0.0271436, -0.011482239, 0.026619485, 0.012558052, 0.026219502, -0.0049411557, 0.035391502, 0.010268501, 0.010799511, 0.017309561, -0.019530151, -0.007847921, -0.030922739, 0.0033895017, 0.013482149, 0.023874782, -1.6389345E-4, 0.0139441965, -8.456514E-4, 0.025074728, 0.0028964207, 0.01935085, 0.008475479, -0.022812761, -0.0216404, 0.0015913073, -0.017668165, -0.012164967, -0.029046962, -0.0074755237, 0.017764714, 0.0037894836, -0.007875506, -0.017971601, 0.011102946, -0.006582461, 0.02268863, -0.025860898, 0.015268275, -0.027943563, -0.003103308, -0.021819701, 0.0030929635, 0.0050101182, -0.0166889, 0.026412597, 0.010482284, -0.014592443, -0.00333778, 0.025295407, -0.011944287, -0.022274854, 0.02959866, -0.027171183, -0.0015283792, -0.035419088, -4.5299673E-4, -0.030012434, -0.026219502, 0.009089244, -0.012640807, -0.008882357, -0.019723246, -0.018550884, 0.017944016, 0.010916747, 0.04700477, 0.0068927915, 0.041818798, 0.037984487, 0.006154894, -0.024260972, 0.0073720803, -0.0033739852, -0.010461596, 0.031998552, 0.01663373, -0.016275125, -0.009654735, 0.002930902, -0.0028895244, -0.05023221, -0.02748841, 0.022840345, 0.0088616675, 0.025722973, -0.029350396, 0.008620299, -0.013482149, 0.003651559, -0.013247676, 0.02565401, -0.0026964296, -0.035391502, -0.023640309, -0.005837667, 0.0019499117, 0.013916612, 0.018730186, -0.02976417, -0.0073238066, -0.024109254, 0.003565356, -0.022909308, -0.013668347, 0.029074546, -0.033350214, 0.015061387, 0.0033515724, 0.013033893, -0.004630825, -0.0059066294, 0.011158115, 0.025874691, -0.024040291, 0.018164694, 0.004627377, -0.002187832, 0.0116132675, 0.020150812, -0.008241006, -0.027378071, -0.022605874, 0.011482239, 0.030260699, 0.008392723, 0.0055721616, -5.585954E-4, -0.026853956, -0.022674836, 0.0037205212, 8.3013484E-4, -0.001295631, -0.03599837, -0.01243392, -0.0033050228, 0.006227304, -0.0052652787, -0.0018085388, -0.0049411557, -0.0068652066, -5.3704466E-4, -0.0051652836, -0.007303118, -0.026053993, -0.015475161, -0.048052996, -0.0156130865, -0.016054446, -0.016592352, 0.009937481, -0.0026395358, 0.02314378, 0.004348079, 0.0026343635, -0.008827187, -0.0210887, -0.010640898, 0.0054169963, 0.028164243, -0.0045825513, -0.004148088, -0.004885986, 0.028660772, -0.0039618895, -0.0072410516, -0.0054549254, 0.008744432, 0.025281614, -0.021723155, 0.010261605, -0.007827232, -0.006927273, -0.006389366, 0.0151165575, 0.029626245, 0.005696294, 0.009744386, -0.03205372, -0.011330522, -0.008434101, 0.0370466, -0.0018843975, 3.5860445E-4, 0.04239808, 0.022233477, 0.03950166, 0.018826734, -0.011213286, -0.016454428, 0.009351301, -0.018978452, -0.030839983, 0.0023378253, 0.011951183, 0.01039953, 0.015282067, -0.011909806, -0.033460554, -0.0036481107, -0.018150903, -0.027212562, -0.0059445584, 0.02419201, 0.024371311, 0.0074410425, 0.00605145, 0.013985574, 0.005123906, -0.0035481153, -0.008468582, -0.0055169915, 0.018343998, -0.0017981945, 0.0210887, 0.027378071, -0.03677075, 0.0070169237, 0.010316774, 0.015723426, 0.016385466, 0.019006036, -0.015957898, -1.4665285E-4, -0.005634228, -0.004172225, -6.073001E-4, -0.007489316, 0.030233115, -0.022371402, -0.0071858815, 0.011868428, 0.0141097065, -4.89633E-4, 0.00781344, 0.0121029, 7.9263654E-4, 0.0018033667, -0.0074203536, -0.012889071, -0.005496303, -0.021888664, 0.0339295, 0.011647749, -0.01846813, 0.026357427, 0.03326746, -0.004061885, 0.00948233, -0.01373731, 0.0019206028, -0.0010232296, -0.010551247, -0.003199855, 0.0210887, -0.04479797, 0.011978768, -0.027998732, -0.0210887, -0.0049515, -0.0017059572, 0.0065755644, 0.042729102, -0.0074755237, -0.056880184, -2.3382563E-4, -0.023943745, 0.018771565, -0.0136131765, 0.0011189149, -0.012744251, -0.013213195, -0.015599294, -0.016344087, -0.013661451, -0.031502023, -0.008627196, -0.0010025408, -0.015364822, 0.021005945, 0.18139869, 0.0010120232, 0.016219955, 0.053321723, 0.003427431, -0.0025222995, 0.028660772, 0.008068601, 0.005034255, 0.0060893795, 0.007820336, 0.0016438911, -0.016716484, 0.002015426, 0.021847287, -0.0192543, -0.028246997, -0.018150903, -0.018412959, -0.030977909, -0.0123511655, 0.0032998507, -0.012661496, -0.022909308, 0.011640852, -0.0041308478, -0.018164694, 0.0028619394, 0.009468537, 0.0014283836, -0.014661405, -0.009840934, 0.007454835, 0.0037894836, -0.022330023, -0.004203258, -0.006475569, 0.0029291778, 0.01975083, 0.0029808995, -0.009130621, -0.008675469, 0.009503018, -0.0074962126, -3.510617E-4, -7.503971E-4, -0.023598932, 1.9492653E-4, -0.03299161, 0.0055100955, -0.047639225, -8.6547807E-4, 0.014716575, 0.030895153, -0.009199584, -0.007792751, 0.0018878456, 0.019074999, -0.019143961, 0.0020516312, 0.021819701, 0.035694934, -0.02592986, 0.024081668, -0.016385466, 0.012585637, -0.013151129, -0.018868111, 0.010958125, -0.028081488, -0.026109163, -0.04278427, 0.0024585095, 0.0076686186, -0.0032377846, -0.0012309788, 0.006072139, 0.0011120186, -6.971667E-5, 0.019240508, -0.023792027, -0.0017645753, -0.0017930223, -0.001152534, -0.006299715, -0.009544396, 0.013371808, -0.012571845, -0.010571935, -0.011827051, -0.0033222635, -0.009709906, -0.006992787, -0.009834038, -0.012875279, -0.017847467, 0.0339295, 0.016233748, -0.003398122, 2.8274584E-4, -0.033957083, 0.019930132, 0.016950957, -0.004251532, -0.03972234, -0.014151083, 0.014592443, 0.0121029, 0.033184703, -0.020826643, -0.008165148, -0.028881451, 0.0031533055, -0.015309652, 0.011392588, 0.024991972, -0.0066617676, -0.03453637, 0.03255025, -0.01518552, 0.01468899, -0.02169557, 0.0073720803, 0.0012490815, -0.0037618987, -0.03210889, -0.022178307, 0.00489633, -0.004568759, -0.032301985, 0.01335112, -0.011171908, 0.02481267, -0.006130757, 0.002243002, 0.0034412236, 0.014578651, -0.012695977, 0.0034946695, 3.9049957E-4, 0.0051928684, -0.020923192, 0.006961754, 0.0029567627, 0.01602686, -0.034343272, 0.01591652, 0.003882583, -0.01635788, -0.038067244, -0.028605603, 0.0071514007, 0.007282429, 5.245452E-4, 0.04885296, -0.006820381, -0.011578786, -0.03861894, 0.0026429838, 0.030398624, -0.02710222, 0.028081488, 0.0062652337, -0.012171863, -0.027971148, -0.005044599, -0.17742646, 0.011054672, 0.011778777, -0.03125376, 0.0015016561, 0.0053652744, 0.044384196, 0.0017706095, -0.0050101182, -0.025681596, 0.030508963, -0.0021188697, -0.04479797, -0.025378162, -6.9565815E-4, 0.01039953, -0.014509688, 0.0407154, 0.030839983, -0.003510186, 0.027943563, -0.014357971, 0.004779094, 0.003565356, 0.005892837, -0.0070031313, 0.034508783, 0.010337464, 0.0088616675, 0.0030860673, -0.05974902, -0.011751193, 5.073046E-4, 0.008958215, -0.007172089, 0.007020372, -0.003827413, -0.015364822, 0.0012120141, -0.0010896059, 0.021833494, 0.0049583963, 0.009647839, 0.010075406, 0.016716484, 0.011027087, 0.017295768, -0.014220046, 0.0313641, -0.019199131, -0.012613222, -0.02085423, 0.0247575, -0.007227259, -0.007165193, 0.019654283, 0.007385873, 0.008820291, -0.005413548, -2.5279028E-4, -0.030977909, 0.0035619077, 0.011323625, -0.022426572, -0.010661586, -0.0061411015, -0.001180981, 0.0032326123, -0.04032921, 0.015047595, -0.025267823, 0.010827096, 0.005910077, 0.01562688, 0.0087720165, -0.031005492, -0.0339295, 0.004692891, 0.0015473438, 0.00667556, -0.0087720165, 0.04283944, -0.014592443, -0.0040653334, 0.0070548533, 0.013454564, 0.0058652516, 0.003996371, -0.007709996, 0.0018757771, 0.004751509, -0.02275759, -0.01597169, -0.0015016561, 0.009344405, 0.008468582, -0.0066652154, 0.008137562, 0.011992561, -0.006534187, 0.0011611544, -0.017268185, -0.022826552, 0.025433332, 0.026109163, 0.010102991, 0.017088883, 0.026398806, 0.033019196, 0.0034308792, -0.0061479975, 5.960937E-4, 0.03299161, 0.012730459, -0.0062238565, 0.022936894, -0.023240328, -0.02297827, 0.009296131, -0.002330929, 0.0610731, 0.008813394, 0.0067514186, 0.0039308565, 0.007041061, -0.022633458, -0.08396862, -5.0558057E-4, 0.012164967, 0.020840436, -0.010896059, 0.021102494, -0.018412959, 0.01641305, -0.020205982, 0.031226173, -0.010206435, -0.026398806, 0.0035481153, 8.3616906E-4, 0.016068239, 0.0012542536, -0.018219866, -0.008909942, -0.008578922, 0.03688109, -0.003168822, -0.012882176, -0.013999366, -0.0090133855, -0.009020281, 0.018978452, -0.03765347, 0.009716801, 0.01997151, 0.015213105, -0.0048239194, -0.014523481, 0.023723064, -0.033129536, -0.030729644, -0.023723064, -0.01868881, -0.02664707, -0.0013051133, -0.04667375, 0.004344631, 0.013640762, 0.005175628, -0.01502001, -0.022233477, 0.0013102855, -0.026578108, 0.017971601, -0.0047273724, -0.024743708, -0.015254482, -0.022150721, -0.030729644, -0.004854953, 0.016233748, 0.012737354, 0.033570893, 0.0032170957, -0.006154894, -0.022412779, -0.015557917, 0.0028153898, -0.028440092, 0.01930947, -0.0049411557, 0.0024240282, -1.4352798E-4, -0.020164605, 0.027833223, -0.020261152, -0.035088066, 0.023433423, -0.037984487, -0.0088478755, -0.026716033, 0.0060859313, -0.034812216, -0.0067479704, 0.023585139, -0.022192098, 0.004579103, -0.030646889, 0.013592488, -0.02226106, 0.012592534, 0.025557464, 0.019061206, 0.014882085, -0.00621696, -0.03530875, -0.004610136, 0.015847558, -0.008137562, -0.017709544, 0.02125421, 0.009137518, -8.016878E-4, 0.006237649, -0.014661405, 0.019074999, -0.014937255, -0.010109887, -0.08115495, 0.02752979, -0.017819883, -0.004375664, -0.010965021, -0.022288647, 0.0058652516, -7.547072E-4, 0.0050790804, 0.022178307, 0.0023567898, 0.01780609, -0.01524069, -0.013633866, -0.011178805, 0.009668528, 0.0055894023, -0.019599114, 0.00511701, 0.013268365, -0.011482239, 0.0074617313, 0.025295407, 0.0024309244, 0.0048273676, 0.026798787, 0.018054355, 0.005168732, -0.00333778, -0.018440545, 0.018399168, -0.03354331, -0.008316865, -0.001610272, 0.0054307887, -0.023585139, -0.01601307, 0.0033291597, 0.019530151, 0.014882085, -0.011999457, -0.017640581, -0.012123589, -0.02202659, -0.002648156, 0.012544259, -0.005075632, 0.015061387, 0.016950957, 0.016716484, 0.026660861, 0.012006354, -0.009709906, -0.02976417, 0.015282067, -0.025874691, 0.046866845, 0.012999412, 0.0020619757, -0.02226106, 0.02002668, 0.0010059889, 0.014261424, -0.024729915, 0.016523391, -0.008923734, 0.010144369, -0.011144323, 0.0036239738, -0.031143418, -0.012695977, 0.0039032716, 0.009737491, 0.043639403, 0.006468673, 0.007137608, 0.015047595, 0.009054762, -0.008530648, 0.011813259, 0.021502474, -0.013820064, -0.028329752, 0.0174199, 0.002615399, 0.007110023, 0.0020033575, -2.4546302E-4, 0.006041106, 0.026288465, -0.013840753, 0.019792208, 0.008585818, 0.00748242, -0.0018430201, 0.011020191, -0.0066893524, -0.01713026, 0.0053032083, 0.033046782, -0.007916883, 0.004979085, 0.0062617855, -0.028881451, -0.019337056, 7.0083037E-4, -0.0019206028, -8.5384067E-4, 0.00856513, 0.012061523, 0.024950596, 0.012544259, -0.018275036, 0.010247812, -0.038674112, 0.018261243, -0.022661043, -0.018164694, -0.008896149, 0.04399801, 0.013723517, 0.008572026, 0.03492256, 0.002506783, 0.052328665, 0.0139373, 0.013378705, -0.014054536, 0.0023240328, -0.005789393, 0.0031153762, -0.009544396, -0.027240146, 0.011999457, -0.01775092, -0.0035929407, -0.002560229, 0.040991247, -0.020909399, 0.070783004, 0.021447305, -0.0023740304, 0.018426752, 0.0013766618, 0.012502883, 0.005848011, 0.01168223, -0.027709091, -0.01751645, -0.001899914, -0.012220137, -0.0017930223, -0.028329752, -9.611634E-4, 0.0037481063, 0.015847558, 0.020316321, -0.0027757364, -0.013564903, -0.024674745, 0.006541083, 0.0185233, 0.009365093, 0.005037703, -0.009799557, 0.023171365, -0.0062031676, 0.0023929952, -0.048742622, -0.00610662, -0.015061387, -0.0054273405, 0.0036687995, 0.023778234, -0.005185972, -0.0020119778, 0.022371402, 0.021833494, 0.011702918, -0.023267912, -0.0032274402, -0.020454247, -0.023543762, 0.027364278, -0.009447848, -0.014399349, -0.011213286, -4.8230577E-4 ], + "id" : "a06b64aa-716c-41c1-bb53-398e89b8c870", + "metadata" : { + "source" : "movies.csv" + } + }, + "cb80b474-1fb2-40d1-84c7-7cf7c6eb970c" : { + "text" : "2268,The Golden Compass,Adventure-Fantasy,en,After overhearing a shocking secret precocious orphan Lyra Belacqua trades her carefree existence roaming the halls of Jordan College for an otherworldly adventure in the far North unaware that it's part of her destiny.,27.779,Depth of Field-New Line Cinema-Scholastic Productions-Ingenious Media,12/4/07,180000000,372234864,113,Released,There are worlds beyond our own - the compass will show the way.,6,4111,Nicole Kidman-Daniel Craig-Dakota Blue Richards-Ben Walker-Freddie Highmore-Ian McKellen-Eva Green-Jim Carter-Tom Courtenay-Ian McShane-Sam Elliott-Christopher Lee-Kristin Scott Thomas-Edward de Souza-Kathy Bates-Simon McBurney-Jack Shepherd-Magda Szubanski-Derek Jacobi-Clare Higgins-Charlie Rowe-Steven Loton-Michael Antoniou-Mark Mottram-Paul Antony-Barber-Jason Watkins-Jody Halse-Hattie Morahan-John Bett-John Franklyn-Robbins-Jonathan Laury-Tommy Luther-James Rawlings-Joao de Sousa-Habib Nasib Nader-Theo Fraser Steele-Bill Hurst-Elliot Cowan-Sam Hoare-Thomas Arnold-David Garrick-Brian Nickels-Gary Kane-Alfred Harmsworth-Charles Evanson-Patrick Cleary-Tarek Khalil-Madrios Ohannessian-Sandra Wolfe-Hewson Osbourne-Albert Kenrick-John Cartier-Chris Abbott-Alexander Mercury-David Forman-Spencer Wilding-Caridad Angus,england-compass-experiment-polar bear-steampunk-airship-animal-alternative universe-based on young adult novel,/lyaS7S4emzEaYUcSnCvyqfJpOcA.jpg,/qifYc5jT4CZxmLH9DfOlipioSPp.jpg,2486-2454-10140-27022-411-8204-32657-2309-88751-2270-1265-9836-11774-10196-1735-1979-9992-18360-118-58595-1593\r\n17578,The Adventures of Tintin,Adventure-Animation-Mystery,en,Intrepid young reporter Tintin and his loyal dog Snowy are thrust into a world of high adventure when they discover a ship carrying an explosive secret. As Tintin is drawn into a centuries-old mystery Ivan Ivanovitch Sakharine suspects him of stealing a priceless treasure. Tintin and Snowy with the help of salty cantankerous Captain Haddock and bumbling detectives Thompson and Thomson travel half the world one step ahead of their enemies as Tintin endeavors to find the Unicorn a sunken ship that may hold a vast fortune but also an ancient curse.,33.283,Paramount-Columbia Pictures-WingNut Films-Amblin Entertainment-Nickelodeon Movies-Hemisphere Media Capital-The Kennedy/Marshall Company-DreamWorks Pictures,10/24/11,130000000,371940071,107,Released,\"This year, discover how far adventure will take you.\",6.", + "embedding" : [ 0.01962776, -0.030547047, -0.023213599, -0.056348924, -0.019614277, 0.031868145, -0.01609584, -0.022175593, -0.014451207, -0.030304397, 0.026395021, 0.041870754, 2.8251343E-5, -0.010305922, 3.1679418E-4, 0.016136283, 0.0178618, -0.017807877, 5.316413E-4, -0.025720991, -0.01829318, 0.0017145643, -0.023132715, 0.0018131412, 0.003639763, -5.1142037E-4, 0.032272566, -0.0174439, -0.0059786476, -0.0131975105, 0.018805442, -0.019385107, -0.0072053825, -0.015583578, -0.015179159, -0.0014651731, 0.01094625, -0.03321621, 0.025330054, -0.011862931, -0.0025090773, 0.009065705, -0.013312096, -0.013925463, -0.016864235, 0.024656024, 0.01853583, -0.005382131, -0.005270916, 0.03132892, 0.02658375, 0.031167155, -0.02704209, -0.022229515, 0.0028679983, -0.006881848, -0.007131239, 0.0039868886, 8.737116E-4, 0.0019546875, 0.031032348, -0.015934072, -0.017915722, -0.0030011192, -0.02483127, -0.023725862, -0.0075828396, -7.81875E-4, 0.003909375, -4.7814014E-4, 0.04513306, 0.036154978, 0.028255345, 0.009328578, 0.009861061, -0.022512607, -0.028471034, 0.016486777, 0.012314531, 0.015839709, 0.013264914, -0.012806573, -0.013521045, 0.013527785, 0.007387371, 0.0038723033, -0.0120786205, 0.0156375, -0.015691422, 0.0065414626, 0.0080681415, 0.033863276, 0.022216035, 0.015947554, 0.006797594, -0.01830666, -0.008870237, 0.03890502, -0.028336229, -0.02725778, -0.009099407, -0.012981821, 0.005425943, -0.00804118, -0.022081228, -0.0024753758, 0.007859192, 0.0034779957, 0.024089837, 0.007737866, -2.0094524E-4, -0.008135544, 0.026637672, -0.03335101, -0.0026270326, -0.022809181, -0.0013842895, -0.02193294, 0.0019058203, -0.011653981, 0.008324273, 0.037287347, 0.019708643, -0.035157412, 0.03329709, 0.013979386, 0.0051495903, -0.0062010777, -0.009079186, -0.009227473, 0.008324273, 0.007191902, 0.013595188, 0.009018524, -0.023402328, 0.055540085, -0.028012693, 0.006885218, -0.029441638, -0.012907677, 0.030250473, 0.03375543, -0.019600797, -0.009315097, -0.0294686, -0.0054023517, 0.0066695283, 0.0082299085, 0.03332405, -0.011141718, 0.03507653, 0.0036599839, 0.008991563, 0.025559224, 0.00558434, 0.020894935, -0.006902069, 0.004890089, -0.0040071094, -0.0063122925, -0.010696859, 0.0038150107, -0.016796831, -8.981452E-4, 0.02055792, 0.034941725, 0.00804792, -0.036316745, -0.003125815, 0.007946815, -0.0018839143, 0.018953728, -0.00827709, 0.003171312, 0.012186466, 0.030250473, 0.01072382, -0.013965905, -0.02123195, -0.020867974, 0.0080681415, -0.012146024, 0.0362089, 0.035238296, -0.00914659, -0.0034341838, 0.008903938, -0.018751519, 0.008769132, -0.012725689, -0.016378934, 0.032676984, -0.0063999165, 0.015677942, -0.6401669, -0.01722821, 0.0016631695, -0.023132715, 0.022539569, -0.008978082, 0.005729256, 0.015826229, -0.039713856, 1.744053E-4, -0.01830666, 0.015704904, 0.016527219, -0.012159504, -0.014990431, -0.021258911, 0.006319033, -0.027743082, 0.01674291, 0.007084057, -0.022822661, 0.017079925, 0.0059112445, 0.009807139, 0.012698729, -0.010130674, -0.0030550417, -0.00872869, -0.0035656195, 4.0715636E-4, 8.6949894E-4, 0.0149634695, 0.01830666, 0.008169246, 0.027109493, -0.008014219, -0.0063122925, 0.037745688, 0.04130457, 0.041520257, -0.03014263, -0.004822686, 0.018481907, 0.0030044895, -0.021272393, 0.021528523, 0.025869278, 0.028929375, 0.0049743424, -0.02169029, -0.0037509778, 0.002035571, 0.0061033433, 0.006834666, -0.0060527907, 0.005779809, 0.021542003, -0.014127673, 0.008674768, 0.0065212417, -0.022000344, 0.03154461, 0.006615606, 0.003370151, -0.0039026346, 0.011728125, -0.014612974, -0.0044991514, 0.012523481, -0.020301789, 0.016014956, 0.012543702, -0.01588015, -0.009133109, -0.0013152014, 0.0032909522, 0.048368406, 0.013467123, 1.7050857E-4, 0.022499127, 0.012132543, -0.0034358688, -0.0025781654, 0.007886153, 0.031221077, -0.0024416742, -0.016850755, 0.005988758, 0.031032348, 0.0017794396, -0.01740346, 0.039417285, -0.0010017774, -0.0026253476, -0.015152198, -0.0036465032, -0.015138717, -0.008957861, 0.04205948, -0.041682027, -0.009854321, -0.011707904, 0.0067672627, -0.009369019, 0.0020473667, 0.0037071658, -0.013392979, -0.0060190894, 0.030304397, -0.022606973, -0.02078709, -0.0120584, -0.030924505, -0.01765959, -0.009065705, -0.02342929, 0.034321617, 0.017673071, 0.0032050135, 0.0067335614, 0.015421811, 0.010393545, -0.006501021, -0.012092101, -4.52864E-4, 0.03602017, -0.018252736, -0.0047586528, -0.0010658102, -0.016567662, 0.010380064, 0.01341994, -8.678138E-4, -0.011910113, -0.0056483727, 0.0045497036, 0.022229515, -0.009483605, 0.0062482595, -0.013089666, -0.027338663, -0.016271088, -0.013925463, -0.021056702, -0.009894763, -0.02187902, -0.033620626, 0.0025596295, -0.005988758, -0.025168287, -0.027554354, 0.0066257166, -0.006592015, 5.265861E-4, 0.014248998, -0.0036700943, -0.01854931, -0.012159504, 0.0014441096, -0.041223686, 0.012900937, 0.009786918, -0.009463384, -0.010824924, 0.030412242, -0.0048833485, -0.026866842, 0.02391459, 0.007016654, -0.019533394, 0.016271088, -0.0079198545, 7.292164E-4, 0.03335101, -0.02368542, 0.01829318, -0.024790829, -0.0026860102, -0.0017710143, -0.008971342, -0.011343928, 0.011782047, -0.041439373, -0.021043222, 0.03286571, 0.010791223, 0.005924725, -0.0014693858, -0.007731126, 0.01026548, -0.019331185, 2.0241969E-4, -9.952477E-6, -0.004350865, -0.006841406, 0.030088706, 0.01385806, 0.003082003, 0.016190205, 0.01096647, 0.036451552, 0.01428944, 0.0024147131, -0.005483235, 0.017538264, -0.02973821, 0.0149499895, -0.02301139, -0.008998303, -0.015017392, 0.022391282, -0.02615237, -0.016837273, -7.738709E-4, 0.0051967725, 0.02392807, 3.02787E-5, 0.023065312, -7.6797314E-4, 6.245311E-5, -0.018738039, -0.001552797, 0.016864235, -0.0019614277, -0.019277263, 0.003511697, 0.013817619, -0.016378934, -0.00827709, -0.009759957, -0.0011121498, -0.023847187, 6.045208E-4, 0.0058472115, -0.008088362, -0.01385806, 0.0236989, -0.0043474943, 0.031409808, -0.0011635446, 0.0030146, 0.014559052, 0.00961167, -3.2458766E-4, -0.01899417, -0.0015915537, 0.014559052, 0.027958771, -0.006790854, 0.03949817, -0.02302487, 0.03467211, 0.016931638, 0.008142284, 0.012267349, -0.0048327963, 0.016257608, 0.013103146, 0.033270128, 0.03192207, 0.008964601, -0.013163809, 0.014100711, 0.005503456, 0.015475732, -0.0025292982, -0.018212294, 0.008202947, 0.0015848135, -0.022027306, -0.0091937715, -0.017592188, 0.0068380362, -0.005068707, -4.343282E-4, -0.025410937, -0.01073056, 0.01340646, 0.024669504, 0.033135325, -0.006811075, -0.033054437, 0.0236989, 0.009301616, -0.00960493, -0.027122974, -0.020059139, -0.013568227, -0.024211163, 0.009112888, -0.022647414, 0.023227079, -0.006864997, -0.0017474232, 0.0043710857, -0.014653415, 0.0023405699, -0.0048429067, -9.2089374E-4, 0.017605668, -0.0052405847, -0.011310226, 0.012853756, -0.015718384, 0.045267865, 0.0052372143, 0.007859192, -0.012004477, -0.005011414, -0.009726255, 0.0026304028, 0.004768763, -0.04402765, -0.0088837175, -0.029333793, -0.01721473, -6.841406E-4, 0.025114363, -3.346981E-4, -0.011498955, -0.009854321, -0.021703772, -0.009267915, 0.00625163, 0.073927626, 0.008425377, 0.006531352, 0.010090232, -0.010656417, -0.0076030605, -0.012469558, -0.004822686, -0.00782549, 0.015233082, 0.028983297, -0.023469731, 0.018360581, 0.011977516, 0.009665593, 1.1097802E-5, -0.007266045, -0.005183292, -0.00783223, -0.018886326, -4.9288454E-4, -0.0048799785, 0.025410937, 0.033782393, 0.006426878, -0.031598534, 0.025114363, 0.020220906, -0.007286266, 0.019277263, -0.0045497036, 0.014100711, 0.0026337728, -0.010649676, -0.0070975376, -0.01273917, 0.02503348, 0.020935377, 0.017848318, -0.010622716, 0.022930507, 0.009908243, 0.015799267, 0.0074075917, 0.003065152, -0.013433421, -0.016999042, 0.023564095, 0.044297263, -0.0241168, 0.016999042, 0.0026843252, -0.018414505, -0.00139777, 0.008378195, 0.009867801, -0.006376325, 1.824094E-4, -0.0033010626, -2.5739527E-4, 0.008250129, -0.030358318, 0.036343705, -0.001082661, -0.0044081574, -0.020746648, -0.02187902, -0.0032235493, -0.0109529905, 0.026125409, -0.03194903, -0.022620453, -0.0030499864, -0.011458512, 0.012462818, 0.0062448895, 0.024008954, -0.013723254, -0.0019344665, 0.010090232, -0.011600059, -0.014464688, 0.003885784, -0.013069445, 9.3942956E-4, 0.004296942, 0.0065380926, 0.020328749, -0.0016690672, 0.009726255, -0.00603257, 0.0012031439, -0.01362889, -0.019668201, 0.040145237, 0.010703599, 0.013709773, 0.013386239, 0.014599494, 0.006345994, 0.009490345, -0.015246563, -0.033998083, -0.018387543, 0.0070099137, 4.3601327E-4, -5.657641E-4, 0.0047047306, -0.0013918723, -0.035669677, -0.017012522, -0.022917025, -9.849266E-4, -0.012186466, -0.011161939, -0.011889892, 0.009315097, 0.02121847, 0.008978082, -0.024386412, -0.030358318, -0.002906755, 0.008796094, 0.028497996, -0.0037240167, 0.0147343, -0.024656024, -0.009422942, 0.0024163981, 0.012705469, 0.004627217, 0.011910113, -0.018832402, 0.006747042, -0.029603405, -0.026637672, 0.014936509, -0.0045834053, -0.025141325, 0.019560356, -0.0037172763, 0.007508696, 0.01118216, -0.0012873976, -0.010009348, -0.020396153, 0.011141718, -0.017470863, -3.1363466E-4, 0.042571746, -0.0028696833, 0.0071582003, -0.025451379, -0.0071177585, -0.013574967, -0.022445204, -0.031652458, -0.0013581708, 0.01965472, 0.026044525, 0.03731431, 0.012213427, 0.02457514, 0.009861061, 0.0026017565, 0.028551918, -0.021798136, 0.0019395218, -0.04203252, 0.0030466164, 0.012617845, 0.010845145, 0.012024698, -0.0042396495, -0.001363226, 0.019277263, 0.017538264, 0.015394849, 0.007960296, -0.035939287, -0.01163376, -0.0043474943, -0.026718555, 0.00446545, -0.028471034, -0.0029674177, 0.05254739, -0.002033886, -0.0022428355, -0.0031645717, 0.038069222, 0.0069762124, 0.026071487, -0.016190205, 0.0056685936, -0.020598361, -0.004108214, -0.02524917, -0.014815183, 0.0027146565, -0.03324317, 0.015071315, -0.0018451576, -0.01987041, 0.0030179701, 0.022189073, -0.0131975105, -0.016783351, 0.009375759, -0.013345798, 0.0036903152, -0.04025308, -0.0049979337, -0.01675639, 0.006902069, -0.0049911933, -0.020153502, 0.0156375, -0.020962339, -0.028902413, 0.0149634695, 0.003916115, 0.04513306, 0.010353103, 0.043892846, 0.03442946, -8.0715114E-4, -0.027540872, 0.022040786, -0.025572704, -0.009867801, 0.024399891, 0.020962339, -0.017686551, 0.0068481467, -0.008668028, 0.00581688, -0.023523653, -0.030358318, 0.018333621, 0.013662592, 0.043326657, -0.029576443, 0.0015494268, -0.020436594, 0.01609584, -0.01453209, 0.010474429, 0.006275221, -0.024022436, -0.014639935, 0.011748346, -0.0066459375, 0.012206687, -0.0041216942, -0.025127845, 0.02725778, -0.00981388, 0.006989693, -0.022957467, -0.006457209, 0.031706378, -0.020207424, 0.022526087, 0.002906755, 0.023550615, -0.0058404715, 0.0090387445, 0.002815761, 0.033863276, -0.008513001, 0.010474429, 0.008297311, 0.0044148974, 0.0050013037, 0.018090969, -0.040387888, -0.0101643745, -0.02143416, -0.009638632, 0.025990603, -1.8683274E-4, -0.024197683, 7.6923694E-4, -0.01296834, -0.016702468, 0.005611301, -0.009591449, -0.0021248802, -0.03602017, 0.014801702, -3.0984325E-4, 0.004576665, 0.0050754473, -0.012705469, 0.013898502, -0.0076906844, 0.026300658, -0.015839709, -0.012456077, 0.0027534133, 0.002591646, -0.037179504, -0.005712406, -0.009537526, -0.010225038, 0.01026548, -0.018765, -0.005766328, 0.006126934, -0.0021619517, 6.133675E-4, 0.012678508, -0.022809181, 0.0016151448, 0.03192207, -0.019088535, -0.00893764, -0.0053517995, 0.029765172, -0.0152735235, 5.13948E-4, 0.011364149, 0.0073132273, 0.038015302, -0.034321617, 0.011640501, 0.005516937, -0.02524917, -0.016446335, 0.015260043, 0.015354407, 0.007987257, 0.012759391, -0.02747347, -0.013844579, 0.008917419, 0.036074094, -0.015084795, 0.020153502, 0.03577752, 0.013804138, 0.031032348, 0.022013824, -0.011134978, -0.00982062, 0.0027887998, -0.020814052, -0.020894935, 0.003730757, 0.006672899, 0.008438857, 3.260621E-4, -0.027109493, -0.035480946, -0.011667462, -0.025424417, -0.043515388, 0.0025781654, 0.032676984, 0.04893459, 0.027230818, -0.0075558783, 0.024939116, 0.0028781088, 0.005884283, -0.005833731, -0.011020393, 0.01184945, 0.019587317, 0.0041250647, 0.010171115, -0.029010259, -0.009975647, 0.008829795, 0.009638632, -0.0109597305, 0.03820403, -0.023806745, -0.004489041, -0.010764262, 0.00581014, 0.007704165, -0.014248998, 0.024494257, -0.03769177, 0.010750781, 0.009530786, 0.023631498, 0.008991563, -0.0069964333, 1.0307922E-5, -0.03332405, -0.0069559915, -0.034321617, -0.020436594, -0.010184595, -0.01854931, 0.017376497, 0.009807139, 0.010110453, 0.03238041, 0.024723427, -0.011552877, 0.001361541, -0.00558434, 0.005169811, -0.012732429, -0.003221864, 4.516002E-4, 0.034860842, -0.02925291, 0.007778308, -0.028066617, 0.016365452, -0.018064009, 0.01118216, -0.022741778, 0.033189245, 0.008964601, -0.05424595, -0.0025394086, -0.012469558, -0.008634326, -0.0049911933, -0.009342058, -0.029684288, -0.017376497, -0.013756956, -0.005203513, 9.3942956E-4, -0.020706207, 2.2537884E-4, -0.013682812, -0.012375194, 0.0098341005, 0.17535569, -0.0060190894, -0.0016631695, 0.04046877, -9.2426385E-4, 0.012442597, 0.016527219, 0.017915722, -0.010487909, 0.018023567, -0.008789353, 2.691908E-4, 0.006531352, 7.9704064E-4, 0.009099407, -0.004485671, -0.025046961, -0.01451861, -0.014815183, -0.034995645, -0.00870847, 0.013291875, -0.011283265, -0.011970776, -0.0018889696, 0.007791789, 8.9898775E-4, -3.8230148E-4, 0.034025043, 0.006794224, -0.008155765, -0.020665765, -0.014262478, 0.009753216, -0.03154461, -0.008209688, -0.0034678853, 0.036532436, 0.012429116, 0.010427247, -0.017241692, -0.0047451723, -0.0055540088, -0.015003911, 0.019290743, 0.034025043, -0.01745738, 0.0010599124, -0.03753, 0.024413373, -0.044512954, -1.5460567E-4, 0.019155938, 0.020584881, -0.013709773, 0.005874173, 0.009955426, -0.004000369, 0.0059078746, -0.0018973949, -0.004067772, 0.043488428, -0.01810445, 0.014842144, 0.008209688, 0.019856928, -0.027513912, -0.012354973, 0.007852452, -0.02727126, 0.007198642, -0.009712774, -0.007461514, -0.0027096013, -0.01566446, -0.019776044, 0.00872195, -0.011081056, 0.013399719, 0.0019243561, -0.01896721, -0.015772305, 0.016136283, -0.014114192, -0.013649111, -0.037637845, -0.009018524, -0.020477036, -0.009106147, 3.8103768E-4, 0.0021939683, -0.025882758, -0.017915722, -0.0062617403, -0.02036919, 0.013885021, 0.010204817, 0.01764611, -0.007057096, 8.159978E-4, -0.028875452, 0.022620453, 0.007259305, 0.001306776, -0.03189511, -0.004418268, -0.012665027, -0.002856203, 0.024035916, -0.021164548, -0.0023877518, -0.032515217, 0.003595951, -0.012732429, -0.017093405, 0.027217338, 0.013109887, -0.007576099, 0.026435463, -0.0052608056, -0.005227104, -0.017551746, 0.016823793, -0.010103712, -0.0020642173, -0.022296919, -0.021703772, 0.020652285, 0.018347101, -0.023833707, 0.009712774, -0.01922334, 0.014855625, 0.0011037244, -0.0046171066, 0.019991735, 0.023591056, -0.0028528327, 0.0037914198, -0.003929596, 0.021811616, -0.024723427, 0.017673071, 0.002861258, 0.02235084, -0.030088706, 0.0017524784, -0.006056161, -0.008135544, -0.028551918, -0.002972473, -0.0039060048, -0.0034055375, 0.0023270892, 0.030574009, -0.010710339, -0.02143416, -0.043326657, -0.013339057, 0.024548179, -0.03817707, 0.04106192, 0.008054661, 0.0023119235, -0.01229431, 0.009490345, -0.17212035, 0.0023270892, 0.009456643, -0.02434597, 0.026300658, 0.016500259, 0.013703033, 0.011539397, 0.0017743844, -0.023132715, 0.003125815, 0.011256304, -0.050201766, -0.014437726, -0.0039430764, 0.017484343, -0.023307962, 0.02435945, 0.027352145, 0.0120584, 0.042544786, 0.0013674387, -0.02368542, 0.0031157045, 0.01138437, -4.6086812E-4, 0.02973821, 0.005867433, 0.0067335614, -0.01813141, -0.014599494, 2.239044E-4, 0.023766303, 0.0061067133, -7.528074E-4, 0.0044317483, -0.036748126, -0.01026548, -0.015502694, -0.009989127, 0.036316745, 0.0040307003, 0.023752823, 0.001353958, 0.0060426802, 0.0067638927, 0.013911983, -0.020436594, 0.01071708, -0.017902242, -0.00782549, -0.03216472, 0.030600969, -0.0134132, 0.0076098004, 0.016810313, 0.013305356, 0.005564119, 0.004944011, 0.0020473667, -0.03173334, -0.0070301346, 4.5154757E-5, -0.015475732, 0.0057359966, -0.04200556, -0.0033381344, 0.0281475, -0.043785, 0.024143761, -0.015853189, 0.014788222, -1.8746465E-5, 0.013797398, -0.0076030605, -0.010838405, -0.023510173, 0.0010472743, -0.0033903718, 0.018037047, -0.022485645, 0.041493297, -0.010130674, 0.015677942, 0.013325577, -0.014923028, 0.006565054, -0.019236822, 0.01162702, -0.009254434, -0.0077850483, -0.017983126, -0.019614277, -2.9762645E-4, 0.022242995, 0.014141153, -0.012799833, 0.0020069247, 0.015206121, -0.009551007, 0.0072525647, -0.02434597, -0.015731864, 0.026395021, 0.032676984, 0.010494649, 0.018414505, 0.022485645, 0.020436594, -2.0563186E-5, 0.0069964333, -0.0012747595, 0.00279217, 0.0044789305, -0.026098449, 0.0028663133, -0.014815183, -0.023388846, -0.007198642, 0.026246734, 0.031679418, -0.0041014734, -0.005941576, -0.008850016, -0.014720819, 0.010824924, -0.08589841, 0.00827035, 0.01096647, 0.036101054, -0.015421811, 0.030520085, -0.012759391, 0.012678508, -0.012166245, 0.028174462, 7.637604E-4, -0.033404935, 0.009975647, -0.014801702, 0.019344665, -4.827741E-4, -0.018481907, -0.014626455, -0.0014651731, 0.019398589, -0.0038824137, -0.017093405, -0.0066021252, -0.017282134, -0.033431895, -0.009692553, -0.041250646, 0.018158372, 0.0065987553, 0.014707338, 0.009631891, -0.017969644, 0.018064009, -0.03332405, -0.043542348, -0.009166811, -0.014909547, -0.010642936, 0.018576272, -0.043272737, 0.0151117565, 0.034025043, -0.014612974, -0.018077489, -0.017093405, -0.005655113, -0.017780915, 0.024723427, -0.016621584, -0.021285873, -0.014046788, -0.020625323, -0.023415808, 0.004084623, 0.0028225014, 0.014033308, 0.023186637, 0.011343928, 3.209542E-5, -0.011768566, -0.005624782, -0.009874542, -0.016365452, 0.024561659, 0.019937811, 0.013150329, 7.38063E-4, -0.002478746, 0.026543308, -0.01228757, -0.02973821, 0.017430421, -0.037880495, -0.006497651, -0.023186637, -0.012220167, -0.039606012, -0.015502694, 0.028767608, -0.01609584, 0.0052843965, -0.033054437, 0.019115495, -0.027581314, -0.0032319746, 0.032272566, 0.013015523, 0.015354407, 0.0044991514, -0.03755696, -0.0035184375, 0.017605668, 0.003949817, -0.008890457, -0.012159504, 0.021946423, 0.028740646, 0.012274089, -0.002613552, -0.009079186, -0.018818922, 6.723451E-4, -0.07527569, 0.027662197, -0.0020473667, -0.004209318, -8.2442316E-4, -0.019749084, 0.004573295, -0.007967036, 0.018832402, -0.002610182, -0.012442597, 0.007488475, -0.0060190894, -0.0021636367, 0.007865932, 0.005385501, 0.0051765516, -0.0031578313, -0.0036532434, 0.009941945, -0.019924331, 0.00625837, 0.023119235, 0.008175986, -0.016176725, 0.0018417875, 0.009180291, 0.015920592, -0.0065043913, 0.0062078177, 0.03779961, -0.010366584, 0.0051057786, 0.006298812, -0.018454947, -0.039363362, -0.0054225726, -0.014720819, 0.033431895, 0.025613146, 0.001990074, -0.020921897, -0.0018636934, 2.7487794E-4, -0.0023169788, 0.020423114, -0.03556183, 0.02123195, 0.022040786, 0.023793265, 0.02053096, -2.4770608E-4, 0.009888022, -0.019277263, 0.0027180267, -0.0112697845, 0.044755604, 0.0070638363, 0.011195641, -0.03974082, 0.034240734, -0.009490345, 0.024629062, -0.032083835, 0.0036094314, -0.006008979, 0.007171681, -8.480142E-4, 3.7113787E-4, -0.0033802614, 0.0060831225, -4.461237E-4, 0.015246563, 0.013871541, 0.032542177, -0.008020959, -0.016055398, -0.001452535, -0.0024854862, 0.0066964896, 0.016783351, -0.015448771, 0.008775873, 0.0039700377, 0.0069964333, 0.011404591, -0.022633933, -0.009672333, -0.006723451, 0.0060864924, -0.01071708, -0.006548203, 0.0120718805, 0.004819316, -0.0043003126, 0.014815183, -0.010899068, -0.024993038, -0.011822489, 0.011296745, 0.005203513, -0.009180291, -0.020463556, -0.039686896, -0.017996605, -0.0030887432, -0.021757694, -0.04267959, 0.0122403875, 0.013136848, 0.015745346, -0.008169246, -0.014060269, -0.0068481467, -0.030115668, 0.002010295, 0.0034712553, -0.017484343, -0.0030196551, 0.023725862, 0.0069829524, -0.006881848, 0.018239256, -0.010043049, 0.04785614, 0.0031207597, 0.019492952, -0.009240953, 0.0057696984, 5.396454E-4, -0.003484736, 0.016109321, -0.0107979635, 0.00279554, -0.007892894, -7.682891E-5, 0.001182923, 0.01273917, -0.03553487, 0.07581491, 0.006113454, 0.0032589359, 0.023294482, -0.0082299085, 0.015502694, 0.007232344, 0.012638066, -0.022485645, -0.030304397, -0.0034914762, -1.8630615E-4, 0.010562053, -0.019829968, -0.0070773168, 0.009342058, 5.5396854E-4, 0.020274827, -0.030924505, -0.011229343, -4.1094777E-4, -0.024709946, 0.01027222, 0.0101508945, -0.0062078177, -0.005270916, 0.034025043, -0.0045328527, -0.015206121, -0.022269957, 0.012631325, -0.0055573788, -0.00827709, -3.7113787E-4, 0.017241692, -0.01765959, 0.006989693, -0.023725862, 0.019749084, 0.025559224, -0.012213427, 0.01118216, -0.02390111, -0.0048631276, 0.024413373, 0.012590883, 0.009962166, -0.032973554, -0.015961034 ], + "id" : "cb80b474-1fb2-40d1-84c7-7cf7c6eb970c", + "metadata" : { + "source" : "movies.csv" + } + }, + "f44d1a99-a3dc-4017-b902-48103d1fdd1d" : { + "text" : ",14160-12-585-2062-269149-109445-862-9806-177572-10193-62177-10681-127380-863-62211-920-38757-8587-808-49013-211672\r\n335983,Venom,Science Fiction-Action,en,Investigative journalist Eddie Brock attempts a comeback following a scandal but accidentally becomes the host of Venom a violent super powerful alien symbiote. Soon he must rely on his newfound powers to protect the world from a shadowy organization looking for a symbiote of their own.,67.319,Matt Tolmach Productions-Pascal Pictures-Marvel Entertainment-Tencent Pictures-Arad Productions,9/28/18,116000000,856085151,112,Released,The world has enough Superheroes.,6.827,14531,Tom Hardy-Michelle Williams-Riz Ahmed-Scott Haze-Reid Scott-Jenny Slate-Melora Walters-Woody Harrelson-Peggy Lu-Malcolm C. Murray-Sope Aluko-Wayne P��re-Michelle Lee-Kurt Yue-Chris O'Hara-Emilio Rivera-Amelia Young-Ariadne Joseph-Deen Brooksher-David Jones-Roger Yuan-Woon Young Park-Patrick Chundah Chu-Vickie Eng-Mac Brandt-Nick Thune-Michael Dennis Hill-Sam Medina-Scott Deckert-Lauren Richards-Jared Bankens-Lucas Fleischer-Michael Burgess-Diesel Madkins-Otis Winston-Zeva DuVall-Selena Anduze-Brittany L. Smith-Jordan Foster-Jane McNeill-Victor McCay-Elizabeth Becka-Ron Prather-Marcia White-Javier Vazquez Jr.-Ellen Gerstein-Martin Bats Bradford-Steven Teuchert-Al-Jaleel Knox-Brandon Morales-Matthew Cornwell-David Fleischer-DJames Jones-Angela Davis-Stan Lee-Wade Williams-Ron Cephas Jones-Christian Convery-Boston Rush Freeman,san francisco california-spacecraft-anti hero-alien life-form-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-business tycoon-symbiote-genetic experiment,/2uNW4WbgBXL25BAbXGLnLqX71Sw.jpg,/VuukZLgaCrho2Ar8Scl9HtV3yD.jpg,363088-383498-580489-297802-101638-299536-284054-299537-429617-315635-284053-324857-346910-299534-287947-338952-351286-260513-99861-284052\r\n284053,Thor: Ragnarok,Action-Adventure-Fantasy-Science Fiction-Comedy,en,Thor is imprisoned on the other side of the universe and finds himself in a race against time to get back to Asgard to stop Ragnarok the destruction of his home-world and the end of Asgardian civilization at the hands of a powerful new threat the ruthless Hela.,101.65,Marvel Studios,10/24/17,180000000,853977126,131,Released,No Hammer. No Problem.,7.", + "embedding" : [ 0.0139670065, -0.04178096, -0.007970666, -0.043301724, -0.023558484, 0.017035212, -0.01059198, -0.025025887, -0.01586129, -0.026666712, 0.028494295, 0.024825787, 0.016461592, -0.00532934, -4.6273213E-4, 0.013753566, 0.018942837, -0.02639991, 0.0013781914, -0.016901812, -0.0018876137, -0.0013281663, -0.019316357, 0.02539941, 6.5074314E-4, 0.0014740728, 0.024545647, -0.013520116, -0.0069168033, -0.018329196, 0.02050362, -0.008751057, -0.00520261, -0.0121727735, -0.022491284, 0.016741732, 0.013333356, -0.023665205, 0.038125794, -0.011819263, 0.009244638, 0.013033205, -0.013279996, -0.0115591325, -0.014567308, 0.0070968936, 0.006043032, -0.009638169, -4.7273716E-4, 0.02061034, 0.01598135, 0.027186973, -0.021944342, -0.009311338, -0.01050527, -0.004679014, -0.007423724, 0.030281859, 0.017515454, -0.008117406, 0.009257978, -0.016034711, -0.034150466, -0.008064046, -0.019569818, -0.018409235, -0.012346194, -0.02090382, -0.014540628, 0.0116525125, 0.034684066, 0.012272824, 0.010932151, -0.006263142, 0.0028914507, -0.028334213, -0.022224482, 0.013360036, -5.048366E-4, 0.018462595, 0.0075037642, -0.01033185, -0.010838771, 0.015127589, 0.024238827, 0.008844437, 0.0017925659, 0.01053195, -0.02031686, 0.0065699625, 0.012406223, 0.017515454, 0.008070716, 0.0045722937, 0.005212615, 0.022464603, -0.019463098, 0.04234124, -0.025386069, -0.047864012, 0.011905973, -0.016861793, -0.013913646, -0.016715052, -0.014100407, 0.008470916, 0.014033707, -0.008404216, 0.020436918, 0.0075037642, -0.007350354, 0.0045656236, 0.022784764, -0.03743211, 0.013860286, -0.0044022086, 0.01023847, -0.01638155, -0.019356377, -0.018889476, 0.017208632, 0.04076712, 0.007383704, -0.030682059, 0.039940037, 0.012326184, 0.009771569, -0.016688371, -0.0027597179, -0.0059029614, 0.03724535, -0.0015115916, 0.030868819, 0.01546109, -0.027320372, 0.05226622, -0.02597303, 0.003988668, -0.022371223, -0.012759735, 0.040873837, 0.03604475, -0.013326686, -0.017435413, -0.039086275, -0.0073903743, 0.016594991, -0.008797747, 0.020463599, 0.0045622885, 0.027347052, 0.03150914, 0.0060296915, 0.008637667, 0.013833607, 0.0026446602, 0.0075771348, -0.006246467, 0.018435916, -0.0122661535, -0.006089722, -0.013793587, 0.0017475433, -0.027133612, -0.011419062, 0.030041737, 0.023625186, -0.023478445, 9.563131E-4, -0.00524263, -0.017808935, 0.033670224, -0.0011530785, 0.014780749, -0.006193107, 0.02097052, 3.069248E-5, -0.013380046, -0.01540773, -0.017982354, 0.010998851, 0.006239797, 0.04634325, 0.024158787, -0.004689019, 0.018169114, 0.032122783, -0.034764107, 0.022077743, -0.024812447, 0.005152585, 0.022718064, -0.012766404, 0.0016274832, -0.6428825, -0.009044537, -0.0029748257, -0.009658178, -0.00127564, -0.016421571, 0.005766226, -0.013133255, -0.04559621, -0.011205621, -0.014660688, 0.0033383414, 0.02598637, -0.029721577, -0.023465104, -0.003094886, -0.007723875, -0.019022876, 0.011645842, 0.012886465, -0.03631155, 0.0045222687, -0.0013406726, 0.0031365736, -0.008577636, -0.011012191, 0.0075971447, -6.132243E-4, 0.009064548, 0.005225955, -0.027040232, 0.0010363533, 0.024065407, 0.006563293, 0.03217614, 0.011625832, -0.017835613, 0.05173262, 0.03153582, 0.03204274, -0.03663171, -0.008090725, 7.3787017E-4, 0.004679014, -0.02569289, 0.012292834, 0.021984363, -0.017622175, 0.0073903743, -0.0012056048, -0.0040020077, 0.006159757, 8.0081844E-4, 0.010878791, -0.005522771, -0.001020512, 0.021797601, -0.019089576, 0.01053862, 0.0037685572, -0.0038085773, 0.02078376, 0.01530101, -0.0027397077, 0.009391378, 0.017622175, -0.011792582, -0.00514925, 0.0038952874, -0.02593301, 0.011532452, 0.015167609, -0.013139925, 0.0032482962, 0.009151258, 0.018022375, 0.038632713, 0.006356522, 0.0024345547, 0.021637522, 0.004308828, -0.0023745245, -0.010838771, 0.007330344, 0.023811946, -0.01583461, -0.029694896, 2.7034397E-4, 0.009091227, 0.0065699625, 0.007917305, 0.009124577, 0.012232804, 0.0038352574, -0.011532452, 0.018115755, -0.0064232224, 0.0016408232, 0.014540628, -0.043915365, -0.018889476, -0.030655378, 0.04666341, -0.012279494, 0.02595969, 0.0034183816, -0.008257476, -0.025559489, 0.024692388, -0.010785411, -0.01616811, 0.0039819977, -0.016048051, -0.007863945, -0.016141431, -0.029588176, 0.02069038, 0.028867815, 7.403714E-4, -0.012326184, 6.7784E-4, 0.009124577, 0.0046156486, -3.4121284E-4, 0.014927489, 0.027146952, -0.00268468, -0.010271819, 0.0035517819, -0.0024562322, 0.0029298032, 0.011332352, 0.014153767, -0.018582655, 0.009057878, 0.0054694107, 0.020343538, -0.016048051, 0.011012191, -5.131741E-4, -0.01587463, -0.016995193, -0.028200815, -0.011792582, -0.02042358, -0.016048051, -0.025439428, -0.0057562212, 0.013293335, -0.0059296414, -0.01608807, 0.020276839, 0.0027697228, 0.0049925046, -0.010178439, -0.0142071275, -0.0121727735, -0.012532954, 0.0102985, -0.006773398, -0.008124076, 0.022171123, 0.0015249316, -0.022904824, 0.023611845, 6.1405805E-4, -0.016888473, 0.0031299035, 0.017395394, -0.018982856, 0.0132132955, -0.013713546, -0.009738219, 0.008757727, -0.0059129666, 0.012159433, -0.021637522, 0.0075371144, 0.004302158, -0.017835613, -0.004582299, -0.0048357593, -0.011912643, 0.009237967, 0.03132238, 0.02083712, 0.023651866, 0.0047690594, 0.006850103, 0.0019559814, -0.0130732255, -0.009544788, -0.021850962, 0.0068901232, 0.008364196, 0.035511147, 0.010225129, 0.009778239, -0.005052535, 0.01566119, 0.028681055, 0.034844145, -0.0024612348, -0.0048991246, -0.009217958, -0.01015176, -0.004128738, -0.023611845, 0.018302515, -0.0017125257, 0.030575339, -0.0060063465, -0.009811589, 6.849269E-4, 0.0034884168, 0.020183459, -0.008804417, 0.010678691, -0.024772428, -0.0013823601, -0.01005838, -0.020263499, 0.028067414, 0.015260989, -0.016888473, 0.014127087, 0.03100222, -0.0060863867, -0.008751057, -0.019583158, 0.0051359097, -0.0040253527, 0.0071035638, -0.008157426, 0.012312843, 0.017475434, 0.029748257, -0.014193787, 0.028574334, 0.007296994, -0.0035517819, 0.03137574, 0.02689349, 0.010131749, -0.008951157, -0.011545792, 0.011238972, 0.009691529, -0.0029814958, 0.039406434, -0.03161586, 0.008971167, -0.015060889, 0.0015949669, 0.013433406, -0.017582154, -0.012106073, 0.017155273, 0.034337226, 0.014367208, 0.01579459, -0.02587965, 0.024705727, -0.0023578496, 0.028040733, 0.0032366237, -0.032122783, -0.006209782, 6.0030114E-4, -0.028094094, -0.011058881, -0.019409737, -0.0034850817, -0.0013465089, -0.010765401, -0.008684357, -0.014740728, -0.0040453626, 0.007937315, 0.037298713, -0.021344041, -0.01628817, 0.0044989237, 0.023131605, 0.008050705, -0.01554113, -0.008677687, -0.009504768, -0.017582154, -6.878451E-5, 0.008084055, 0.03521767, -0.014847448, -0.0012556299, -0.024438927, -6.048868E-4, 0.013173276, -0.015194289, 0.0127864145, 0.030948859, -0.0015757906, 0.027226992, -0.00507588, -0.0066299927, 0.034470625, -0.003081546, 0.017942334, -0.019182958, -0.0026429927, -0.008144085, -9.112905E-4, 0.015087569, -0.050345257, 7.445402E-4, -0.019276338, 0.0020293514, -0.013393385, -0.006703363, -0.0028014053, -0.012019363, -0.008937817, -0.022491284, -0.01567453, -0.018809436, 0.05821587, 0.028414255, 0.012326184, 0.0012281161, -0.0102985, 0.005816251, -0.012372874, -0.014994189, -0.0017908984, -0.017275333, 0.025172628, -0.0033350063, 0.01616811, 0.014874129, 0.022371223, -0.013473426, 0.00260464, 0.008671016, 0.0013890301, -0.025119267, -0.009811589, -0.008784407, 0.019583158, 0.0327631, 0.012966505, -0.011105571, 0.010271819, 0.0049424795, -0.0048124143, 0.01049193, -0.011819263, 0.0064432323, 0.007383704, 0.0122194635, 0.006876783, 0.004852434, 0.022237822, 0.012232804, 0.020156778, 0.023625186, -0.0074637444, 0.012432904, -0.004108728, 0.0011505772, 7.236964E-4, -0.0207304, -0.009658178, 0.012933155, 0.04002008, -0.028440934, 0.02607975, 0.0070968936, -0.023265004, -0.010865451, 0.011659183, 0.017528793, -0.0027130276, -0.0027030227, -0.029534817, 0.0029881657, 0.0125529645, -0.038739435, 0.012612994, -0.001685012, -0.0048724446, -0.014353868, -0.0046423287, -0.01579459, -0.008044035, 0.019463098, -0.0015182616, -0.022998204, -0.001678342, 0.012619664, 0.01000502, -0.004785734, 0.024478948, -0.02038356, 0.0027063577, 0.016675033, -0.0319627, -0.023585165, 0.0047390442, -0.019769918, -0.017088573, 0.011905973, -0.0018709386, 0.0311623, 0.0015599492, 0.011052211, 0.011319011, -0.0049458146, -0.023638526, 0.002909793, 0.028334213, 0.0068901232, 0.018369215, 0.024532307, 0.0012631337, 0.009918309, -0.008524276, -0.028254174, -0.0055294405, 0.0030231832, -0.014593988, -0.013793587, -0.012726384, 0.009891629, -0.022624683, -0.02609309, -0.018609336, -0.0012831438, 6.6241564E-4, -0.006043032, 0.018169114, -0.0014724053, 0.010678691, 0.0064832526, 0.0066066477, -4.2271207E-4, -0.0137802465, -0.014313848, 0.002167754, 0.028841136, -0.0055361106, 0.022024382, -0.01079875, -0.02567955, -0.004685684, 0.0312957, -0.0034450616, 0.01005171, -0.008637667, 0.0022944843, -0.011839272, -0.031695902, 0.0037852323, -0.00507588, -0.008150755, -0.004772394, -0.018956177, 0.0033550165, 0.0065466175, 0.0024212147, -0.009418058, -0.03297654, -0.0015307679, 0.007223624, 0.01042523, 0.02057032, -0.0014807428, 0.013993687, -0.021837622, 0.011339022, -0.011545792, -0.035324387, -0.04076712, -0.005786236, 0.04821085, 0.0010955496, 0.038979556, -0.012633004, 0.017208632, 0.0038285872, 0.0054427306, 0.017448753, -0.033109944, -0.009411388, -0.019049557, 0.013313346, 0.018382555, 0.013926987, -0.006239797, 0.0064565726, -0.0024545647, 0.014287167, 0.019116256, 0.028734416, 0.0044989237, -0.023131605, -0.0152476495, 0.009924979, -0.02130402, 0.004875779, -0.027453773, -0.018342536, 0.01033852, -0.0017033545, -0.008871117, -0.018689375, 0.026253171, 0.007930645, 0.009944989, -0.023518465, 0.02637323, -0.028147453, 4.9691595E-4, -0.020090079, -0.0065532876, -0.0075304443, -0.014540628, 0.0039386423, 0.004158753, -0.016755072, -0.004252133, 0.021050561, -0.012559634, -0.038979556, 0.019516457, -8.729379E-4, -0.008984507, -0.027960693, 0.0018742736, -0.025666209, -0.022171123, 0.0037852323, -0.01049193, 0.0059229713, -0.029268017, -0.037111953, 0.04156752, -0.0059363116, 0.034870826, 0.0106119905, 0.046129808, 0.030655378, 0.01059198, -0.012759735, 0.005772896, -0.023571825, -0.01024514, 0.030095099, 0.011925983, -0.019036217, -0.017568814, 0.0015382717, -0.0029381406, -0.027293691, -0.036098108, 0.016835112, 0.025225988, 0.03676511, -0.017195294, -0.005099225, -0.03679179, 0.019383058, 3.4579847E-4, 0.0039253025, 0.0025679548, -0.02607975, -0.009491428, 0.00526931, -0.0060530365, 0.014780749, 0.01639489, -0.03172258, 0.0047890693, -0.0052859853, -0.005179265, -0.030068418, -0.0033283364, 0.038419273, -0.03132238, 0.02057032, 0.011339022, 0.018809436, -0.0063498523, -0.0032432936, 8.287491E-4, 0.0322295, -0.016995193, 0.02539941, 0.00507588, -7.826843E-5, 0.003671842, 0.012499604, -0.016701711, -0.018996196, -0.037672233, -0.007477084, 0.038846154, 0.019343037, -2.0051726E-4, -0.004735709, -0.011632502, -0.027560493, -0.014047047, -0.004235458, -7.9331466E-4, -0.027026892, 0.0073636943, 0.0016008031, -8.5709663E-4, 0.003383364, 9.854943E-4, 0.009304668, -0.0022294517, 0.013420066, -0.010138419, -0.005699526, 0.006169762, 0.0035284369, -0.03132238, -0.026640031, -0.012706375, -0.023224985, -0.0029848306, -0.011839272, 0.005729541, -0.0030131782, -0.012379544, -0.019423077, -0.010071719, -0.019636517, 0.006836763, 0.018636016, -0.010665351, -0.027800614, -0.0077638947, 0.03150914, -0.009498098, -0.0061330767, -5.9154676E-4, 0.013953667, 0.023851966, -0.0056028105, 0.011979343, -0.0069501535, -0.013860286, -0.008751057, 0.017915655, 0.02660001, 0.0070035136, -0.012246143, -0.033803623, -9.4464055E-4, -0.0024495623, 0.035110947, -0.018462595, -0.010571971, 0.017608834, 0.026346551, 0.04194104, 0.009698198, -0.008751057, -0.024012046, -8.024859E-4, -0.011799253, -0.012839775, -0.0012723049, 0.009784909, 0.012966505, 0.0070168534, -0.008717706, -0.023144944, -0.004655669, -0.01628817, -0.035671227, -0.018582655, 0.03660503, 0.04722369, 0.008751057, 0.012699705, 0.025666209, -0.0074637444, 0.018595995, -0.022331202, -0.009978339, 0.014527288, 0.012052713, 0.021704221, 0.032069422, -0.033963706, 0.004255468, 0.015207629, 0.018689375, 0.0024679047, 0.03241626, -0.022678044, -0.005819586, -0.014260488, 0.0028947855, 0.0058596064, -0.017328693, 0.032816462, -0.023318365, -0.005729541, 0.0010905471, 0.021877643, -0.0011555797, 0.012292834, 0.023291685, -0.011765903, 0.0018075735, -0.0037885674, -0.035164308, 0.006043032, -0.047703933, 0.016514951, 0.0077638947, -0.015220969, 0.03108226, 0.024585668, -0.015260989, 0.0065232725, 0.006089722, 0.0030832135, 0.003628487, 0.006883453, 0.007330344, 0.013466756, -0.02561285, 0.01566119, -0.028921176, 0.01582127, -0.0038886175, 0.016915152, -0.0034217166, 0.030441938, 0.006159757, -0.045169327, -0.018049054, -0.0066966927, 0.012606325, -0.015127589, -0.013360036, -0.028040733, 0.0049124644, -0.0037785622, 0.0016349868, -0.011625832, -0.03150914, -0.006336512, -0.012733054, -0.0059229713, 0.0037285371, 0.1758749, -0.008644337, 0.01627483, 0.054800823, 0.010278489, -9.6965313E-4, 0.014540628, 0.012046043, -0.002332837, 0.0111322515, 0.005916301, 0.003366689, -0.012793085, -0.0014690703, 0.0039386423, -0.0106987, -0.033510145, -0.0038152472, -0.02578627, -0.030228497, -0.008437566, 9.6715183E-4, -0.025092589, -0.015287669, 0.0044255536, -0.004265473, -0.011859283, 0.0022861469, 0.017822275, 0.008590977, -0.024318866, -0.013333356, 0.011679192, 0.018222475, -0.021624181, 0.0068701133, 0.0044055437, 0.0149141485, 0.007997345, 0.004082048, -0.0022427917, 0.0012731387, -0.0030165133, -0.016941832, 0.013753566, 0.018169114, -0.028200815, -2.9389744E-4, -0.033590183, 0.0068434332, -0.0403936, -0.0011872622, 0.014687368, 0.024265507, -0.008817757, -8.4125536E-4, 0.011385712, -0.0042954884, -0.0150075285, 0.02062368, 0.015287669, 0.033270024, -0.018529296, -0.0010463583, -0.0012564637, 0.008737717, -0.03238958, -0.005816251, 0.035110947, -0.022291183, 0.003376694, -0.011365701, -0.009978339, 8.9784626E-5, -0.02090382, -0.008244135, -0.008077386, 0.014767408, 0.008817757, 0.024265507, -0.017888974, -0.01033852, 0.008057375, -0.011325682, -0.025239328, -0.0019893313, -0.0033350063, -0.005319335, -0.016755072, 0.009911639, -0.00267134, -0.020543639, -0.027000211, 0.0075504547, -0.0064032124, 0.004358853, 0.027160292, 0.014567308, -0.018796096, -0.012639674, -0.039353076, 0.03140242, 0.022064403, -0.014580648, -0.028147453, -0.007183604, 0.009124577, 0.015220969, 0.017622175, -0.008370866, -0.0034684066, -0.0312957, 0.011192282, -0.008924477, 0.016661692, 0.021544142, -0.0024278846, -0.01567453, 0.043221682, -0.010732051, 0.009291328, -0.019036217, 0.005692856, 0.006863443, 0.0023178295, -0.01574123, -0.020076739, 0.0065699625, 0.0066533377, -0.032736424, 0.008777737, -0.011092232, 0.0049824994, -0.009764899, 0.003698522, 0.0044155484, 0.022251163, 0.005842931, -0.0012181111, -0.0069901734, 0.011892633, -0.022718064, 0.008817757, 0.0026930177, -0.001812576, -0.027373733, 0.014874129, -0.0027830629, -0.01055196, -0.032709744, -0.01627483, -0.01551445, 0.0026096425, 0.0025112599, 0.028414255, -0.0043455134, -0.03737875, -0.038899515, -0.01559449, 0.025092589, -0.04596973, 0.017275333, 0.012726384, -0.025159288, -0.047650572, -0.009864949, -0.17021872, -0.003685182, 0.0025546148, -0.03521767, 0.0039753276, 0.02569289, 0.004102058, 0.013926987, 0.0058762813, -0.002688015, 0.029828297, 0.015207629, -0.05741547, -0.022958184, 0.013926987, 9.304668E-4, 0.0048457645, 0.033029903, 0.011092232, -4.873278E-4, 0.040340237, -0.009244638, -0.010732051, -0.0045889686, 0.014447248, 0.0045622885, 0.017101914, 0.015087569, 0.017155273, -0.0056361607, -0.022664703, -0.023024885, 0.0066066477, 5.961324E-4, -0.0032299536, 0.003098221, -0.022758083, 0.005702861, 0.008664346, 9.5131056E-4, 0.04076712, 0.014047047, 0.014967509, 0.008030696, 0.022464603, 0.0024278846, 0.019809937, -0.008230796, 0.013473426, -0.021824282, 0.0039519826, -0.02562619, 0.01580793, -0.00529599, 0.012212793, 0.017982354, -0.024452267, -0.005846266, 0.0022427917, -0.009378038, -0.029001215, -0.016928492, 0.009824929, -0.01068536, -0.0020526964, -0.017155273, -0.02031686, 0.020276839, -0.04234124, 0.0050592045, -0.012773074, 0.01530101, -0.002299487, 0.0039419774, 0.003108226, -0.005179265, -0.05183934, 0.004772394, -0.008704367, 0.01540773, -0.0060063465, 0.03519099, -0.012773074, 0.011659183, 0.006876783, -0.0056328257, 0.017568814, -0.0207304, 0.022037722, -0.0027647202, -0.0018659361, -0.014687368, -0.022144442, -0.01576791, 0.016701711, 0.008791077, 0.013446745, 0.018049054, 0.006213117, 0.01035186, -0.0014740728, -0.010858781, -0.02631987, 0.023358384, 0.02521265, 0.011005521, 0.008744387, 0.03097554, 0.024505626, 0.002896453, -0.024105426, 0.003668507, 0.023905326, 0.009904969, -0.016688371, 0.017422073, -0.0308955, -0.02621315, -0.0132132955, 0.01031851, 0.039246354, -0.009878289, -0.010838771, -0.0042221183, -0.0059796665, -0.025292689, -0.0847892, 0.018529296, 0.0037585523, 0.027066913, -0.019169617, 0.02631987, -0.01558115, 0.015114249, -0.005245965, 0.029214656, 0.0032282863, -0.025946349, 0.009444738, -0.010838771, 0.012312843, -0.0022694718, -0.016675033, -0.011979343, -0.009811589, 0.04098056, 0.0065699625, -0.010118409, -1.2443743E-4, 7.482921E-4, -0.04218116, -2.838924E-4, -0.03676511, 0.023745246, 0.009584809, 0.0054027103, 0.016995193, -0.0213974, 0.011032201, -0.039566517, -0.030682059, -0.022411242, -0.015234309, -0.024879148, -0.0043154983, -0.051492497, 0.014260488, 0.019649858, 0.012633004, -0.02615979, 0.0017358708, -0.013653516, -0.03241626, 0.039886676, 0.009117908, -0.024332207, 0.0016358206, -0.02597303, -0.037698913, -0.012086064, 0.02587965, 0.0061997767, 0.024919167, 0.0054127155, -0.015074229, -0.017061893, -5.1150663E-4, -0.011212291, -0.024719067, 0.007183604, 0.011319011, -0.0027747254, -0.0019843287, -0.010972171, 0.028841136, -0.015100909, -0.020436918, 3.6935197E-4, -0.03660503, -0.018075734, -0.014327187, -0.0011088896, -0.014513948, -0.009358028, 0.017355373, -0.014834109, 0.0036084768, -0.022531303, -0.014887469, -0.029107936, -0.0034383915, 0.018022375, 0.014327187, 0.019222977, 0.0065232725, -0.049945056, -0.0011305672, 0.03238958, 0.014287167, -0.0023578496, -0.0042221183, 0.02109058, 0.012272824, 0.0034350567, 0.01015176, 0.019836618, -0.017141933, -0.01610141, -0.07353022, 0.022598004, -0.008584307, -0.014140427, 0.0059629916, -0.01546109, 0.004745714, -0.01044524, 0.0032499637, 0.023091584, -0.006383202, 0.014047047, -0.011245642, 0.005759556, -0.0111322515, 0.017408734, 0.0038119124, -0.008117406, -0.0071369135, 0.01556781, -0.012452913, -0.011412391, 0.014927489, 0.021037221, -3.2182812E-4, 0.03070874, -8.0873905E-4, -3.772726E-4, -0.018742736, -0.01639489, 0.029641537, -0.02063702, 0.0029648207, 0.009184607, -0.0111322515, -0.02631987, -0.013373376, -0.011479092, 0.015127589, 0.0059129666, -0.015167609, -0.024719067, -0.0054160506, -0.021143941, -0.0070768837, 0.027853973, -0.015847951, 0.011845943, 0.005679516, 0.017902315, 0.028974535, -0.002594635, -0.013186615, -0.034790788, 0.02098386, -0.031882662, 0.034390587, 0.014900808, -7.649671E-4, -0.01592799, 0.043862004, 0.007810585, 0.022237822, -0.04679681, -0.0056595057, 0.013033205, 0.0070568738, -0.016848452, 0.0050358595, -0.040500317, -0.0026780101, 1.4264969E-5, 0.018142436, 0.03140242, 0.0057795662, 0.005399375, -0.013093235, 0.011218961, -3.662254E-4, 0.0046423287, 0.021744242, -0.013373376, -0.007230294, 0.01033185, 0.01566119, 0.040046755, -0.011845943, 0.019022876, 0.013700206, 0.01064534, -0.029321376, 0.010878791, 0.013586816, -9.613156E-4, 0.024905827, 0.010038369, 0.008137415, -0.0013890301, 0.017768914, 0.010838771, -0.016128091, 0.006726708, -0.017675534, -0.018956177, -0.03132238, 0.003725202, -0.009331348, -0.027347052, 0.017355373, 0.018716056, 0.023024885, 0.0076371646, -0.006763393, 0.008537617, -0.03078878, 0.01576791, -0.003691852, 9.775737E-5, -0.017008532, 0.060617078, 0.02109058, 0.017862294, 0.030842138, -0.009184607, 0.044315565, -9.821594E-4, 0.01580793, -0.019809937, 0.0067200377, -0.0064265574, -0.0029731581, -0.012146093, -0.0210639, -0.004645664, -0.02111726, 0.0018442585, 0.010765401, 0.040713757, -0.004242128, 0.07790575, 0.018662697, -0.0070502036, 0.0207971, -0.01588797, 0.0045122635, 0.023171624, 0.019303016, -0.020436918, -0.028787775, 0.008964498, -0.011539122, 0.0050225197, -0.027480453, -0.0076038144, 0.002352847, 0.016221471, 0.0069768336, -0.011118911, -0.013860286, -0.003671842, -0.010778741, 0.023265004, 0.0044388934, -0.020436918, -0.002342842, 0.0314291, -0.0026396576, -0.02090382, -0.0513591, -0.009011188, -0.018622676, -0.012439574, 0.0075104344, 0.007323674, 0.012199453, -0.007830595, -0.0016633344, 0.022531303, 0.01014509, -0.007770565, 0.022891484, -0.025279349, -0.018569315, 0.01630151, -0.011105571, -0.019343037, -0.009184607, -0.014313848 ], + "id" : "f44d1a99-a3dc-4017-b902-48103d1fdd1d", + "metadata" : { + "source" : "movies.csv" + } + }, + "bf3d8848-fc38-447e-8258-2607708dc43a" : { + "text" : "Persi-Kyle Balda-Bob Bergen-Beau Billingslea-Cathy Cavadini-David Chen-Will Collyer-Meilee Condron-Antonio Raul Corbo-Debi Derryberry-Scarlett Estevez-Kellen Goff-Jake Green-Isa Hall-Ramone Hamilton-Aaron Hendry-Barbara Harris-JP Karliak-Evan Kishiyama-Sam Lavagnino-Dawnn Lewis-Amari McCoy-Levi Nunez-Benjamin Plessala-Alex Puccinelli-David J. Randolph-Carla Rempp-Nev Scharrel-James Sie-Mindy Sterling-Fred Tatasciore-Regina Taufen-Nisa Ward-Debra Wilson-Nora Wyman,1970s-sequel-spin off-duringcreditsstinger-illumination-minions-gentleminions,/wKiOkZTN9lUUUNZLmtnwubZYONg.jpg,/uMSxXLfH7v30gRNBqsQaSP3yqX5.jpg,616037-507086-718789-361743-766507-453395-756999-211672-539681-718930-585511-725201-985939-610150-568124-414906-19995-436270-614934-20352-508947\r\n675,Harry Potter and the Order of the Phoenix,Adventure-Fantasy-Mystery,en,Returning for his fifth year of study at Hogwarts Harry is stunned to find that his warnings about the return of Lord Voldemort have been ignored. Left with no choice Harry takes matters into his own hands training a small group of students to defend themselves against the dark arts.,195.015,Warner Bros. Pictures-Heyday Films,6/28/07,150000000,938212738,138,Released,Evil Must Be Confronted.,7.", + "embedding" : [ 0.0014624025, -0.032292582, -0.020771246, -0.057688784, -0.01676204, 0.04865781, 0.0057264604, -0.02356264, -0.018554552, -0.031635784, 0.03689017, 0.026860313, 0.018267203, 0.011842894, 0.020073399, 0.004559959, 0.022125892, -0.023740523, 0.008032096, -0.038149036, 0.005846189, -0.00850417, -0.02086703, 0.018636651, 0.005182549, 0.006800599, 0.031143187, -0.009537259, -0.0071837315, -0.008490486, 0.011452921, -0.008285237, -0.005825664, -0.019402916, -0.025273051, -0.006427729, 0.005688831, -0.014682178, 0.025409885, 0.006054859, 0.023097407, -0.0013033341, -0.016461007, -0.009934074, -0.032511517, -0.0029145426, 0.00788158, -0.016351542, -0.01124083, 0.026080366, 0.025834067, 0.040721495, -0.0154894935, -0.01896505, -0.006848491, 0.0019721054, 7.6113344E-4, 0.01535266, -0.011589753, -0.001970395, 0.011473445, -0.020319697, -0.025779333, -0.01157607, -0.016830457, -0.006041176, -0.01858192, -0.015202144, -0.010159848, -0.010926113, 0.020798612, 0.0074984473, 0.022166943, -0.011028738, 0.020962812, -0.035904974, -0.012383385, -0.0077857967, -0.015982091, -0.0042691887, 0.009379901, -0.0070263734, -0.011309246, -0.0024424687, 0.018677702, 0.014299046, -0.0013298455, 0.019895514, -0.035302907, 0.014244313, 0.010891905, 0.050217703, -0.0013452392, 0.007402664, 0.010631923, 0.010522456, -0.022098526, 0.048575707, -0.017528305, -0.015544226, -0.00294533, -1.7916568E-4, -0.014381146, -0.014353779, -0.0040263105, 0.008695736, -0.013478048, -0.006961378, 0.016351542, 0.011760795, 0.0010014464, 0.00974935, 0.02021023, -0.03593234, -0.00618143, -0.0022919525, 0.0069066444, -0.02198906, -0.014490613, -0.02460257, 0.043211855, 0.0388332, 0.0053843777, -0.032757815, 0.053091194, 0.043649722, -0.014709545, -0.008593111, 0.006800599, -0.0038757941, 0.016898872, 0.0043923385, 0.020223914, -0.008812044, -0.01667994, 0.04767261, -0.026805582, -0.003032561, -0.02123648, -0.024547836, 0.026559282, 0.028187593, -0.025533034, -0.012506534, -0.018390352, 0.0053946404, 0.010590873, 0.006157484, 0.005770931, -9.082289E-4, 0.027790777, 0.0041665644, 0.014996895, 0.010522456, 0.027681312, -0.008682053, -0.012287602, 0.006366154, -0.006708237, -0.02219431, -0.012944399, -0.0010886774, 0.0014085245, -0.012205502, 0.0065440373, 0.007170048, 0.023343707, -0.015106361, 0.010166691, 0.004214456, -0.011774478, 0.015790526, -0.044361252, 0.0071153147, 0.0013076102, 0.004949933, -0.0026870577, -0.015284244, -0.026203515, -0.025368834, -0.004135777, 0.0034122723, 0.02319319, 0.04638638, -0.011863419, 0.0065953494, 0.03199155, -0.0139638055, 0.0066706077, -0.00759423, 0.0038107985, 0.035576575, 3.0552238E-4, -0.014162214, -0.6467274, -0.024780452, -0.0016710728, -0.014299046, -2.9697033E-4, 0.0070879483, 0.0052851737, 9.503478E-5, -0.017514622, -0.008367336, -0.01547581, 0.00846312, 0.017076755, -0.005459636, -0.018226152, -0.0024373375, 0.0024595729, -0.016461007, 0.017405154, -0.013156491, -0.015215827, 0.024972018, 0.009427792, -0.019006101, 0.016132608, 0.013601198, -0.017350422, -0.022796374, 0.010891905, 0.012082352, -0.0094004255, 0.02123648, 0.009311484, 0.014285363, 0.034700844, 0.011808686, -0.024930969, 0.038121667, 0.020442847, 0.038231134, -0.044333886, 0.0042760307, 0.013922756, 6.033479E-4, -0.017993538, 0.009359376, 0.007949996, 0.0030496651, 0.003951052, 0.005110712, -0.005709356, 0.001153673, 0.0044402303, -0.012294443, -0.0037629069, 0.004228139, 0.019197667, -0.022440609, 0.020182865, -0.008107354, -0.020675464, 0.029610656, 0.0122123435, 0.014791645, -0.0030650587, 0.020880712, -0.015147411, -0.0107003385, -0.003862111, -0.03190945, 0.015858943, 0.014490613, -0.012732308, -0.002685347, 0.0036329157, 0.0064619374, 0.04378655, -0.011042422, 0.015571593, 0.02443837, -0.0074779224, -0.014777962, -0.0051038703, 0.0102487905, 0.025259368, -0.011069788, -0.024712035, 0.013608039, 0.014736912, 0.004577063, 0.004717317, 8.800071E-4, 0.003203602, -0.0017514621, -0.008175771, 1.1555973E-4, -0.01518846, -0.009920391, 0.027736045, -0.06666503, 0.0025177267, -0.013047025, 0.005986443, -0.021975376, 0.013498574, 0.013211224, -0.0044197054, -0.011569228, 0.032675717, -0.014750595, 0.014121164, 5.2124815E-4, -0.019142933, 0.0027127138, 0.0029282258, -0.031964183, 0.034427177, 0.013423315, -0.008374179, -0.002273138, 0.0023655002, 0.010118799, 0.0043786555, -0.015256877, 0.011370821, 0.040639393, -0.012773358, 0.0072795143, 4.0889543E-5, 0.011521337, 0.025136217, -0.0024698353, 0.008319445, -0.022987941, 0.025450934, 0.01414853, 0.03062322, -0.008223662, 0.021441728, 0.0069340114, -0.0021961692, 7.709683E-4, -0.016283125, -0.0035884448, -0.0063593127, -0.019745, -0.019758683, 0.0053467485, -0.0032224166, -0.013183857, -0.013922756, 0.009571467, -0.0067698117, 0.010755072, 6.418322E-4, -0.001360633, -0.031334754, -0.0128896665, 0.0064414125, -0.011877103, 0.0074163475, 0.014914795, -0.002153409, -0.009776716, 0.019443966, -0.015749477, 0.00261351, 0.0046010087, -0.005774352, -0.013998014, 0.014422196, -0.009674092, 0.013177016, 0.020771246, -0.016830457, 0.030103255, -0.0023056357, 0.021756444, -0.011665012, -0.006448254, 0.007368456, -0.0069305906, -0.019772366, -0.0017993536, 0.021633293, 0.018321935, 0.016378907, -0.004173406, -0.0019447387, 0.007423189, -0.019758683, -0.005863293, -0.0024903603, 0.003294254, -0.009742508, 0.029720124, 0.0075737056, -0.013635406, 0.0010519036, 0.010837172, 0.049779836, 0.03070532, 0.017541988, -0.008162087, 0.004515488, -0.04865781, -5.3407624E-4, -0.030212723, -0.0017488966, 0.0026579807, 0.017911438, -0.0064585167, -0.014004855, 0.0027913928, -0.011808686, 0.034837678, -0.021099646, -0.007601072, -0.02668243, 0.015872626, 0.007074265, -0.0102761565, 0.0393258, 0.015078994, -0.027380278, 7.504434E-4, 0.009769875, -0.010433515, 0.006841649, 2.6917612E-4, 8.2142546E-4, 0.013245433, -0.0053638527, 0.0010356546, -0.016597841, -0.009783558, 0.031088453, -0.009455159, 0.03680807, -0.016775724, -0.01232181, 0.016666258, 0.015215827, -0.005281753, -0.009092552, -0.020962812, 0.011302404, 0.014381146, -0.007149523, 0.04526435, -0.010802964, 0.014490613, -7.495882E-4, 0.009496209, 0.01725464, -0.014340096, 0.007867896, 0.011452921, 0.024328904, 0.014517979, -0.005432269, -0.018321935, 0.020483896, 0.0052441237, 0.0047481046, 0.020853346, 0.0023552377, 0.0122123435, -0.016324174, -0.0390795, -0.032374684, -0.0064208875, 0.005764089, -0.0044333884, -3.6987665E-4, -0.014216946, -0.027024513, 0.0124381175, 0.016050508, 0.029090691, -0.0016368645, -0.03771117, 0.0043683928, 0.01622839, -0.019348184, -0.024369953, 0.0027571844, -0.009934074, -0.015530543, -0.013211224, -9.792111E-4, 0.027708678, -0.012082352, 0.017240955, -0.010809805, 0.0037355404, 0.011411871, -0.014545346, 0.012930716, 0.022125892, -0.012616001, 0.008360495, -0.018349303, -0.017993538, 0.024862552, -0.007211098, -0.0042965556, -0.008928352, -0.013307007, -0.0022851108, 0.006646662, 0.004789154, -0.0388332, 0.019690266, -0.010563506, -0.012533901, -0.0087094195, 0.008921511, 0.009591992, 0.008572586, -0.013108599, -0.019183984, -0.021127012, 0.00485415, 0.07722853, 0.042007726, 0.0038689524, 0.019485015, -0.01584526, 0.006999007, 0.0035542366, -0.017856704, -0.009181493, -0.012609159, 0.032757815, -0.009455159, 0.011972886, 0.017747238, 0.009072026, -0.0072247814, -0.0026032475, -5.593048E-4, 0.012745992, -0.008483645, -0.034755576, -0.009407267, 0.01788407, 0.029090691, 0.004228139, -0.015626326, 0.021400677, 0.0072247814, -0.0031061086, 0.02070283, -0.011192937, -4.0771952E-4, 0.0063387877, 0.012273918, -0.0037560654, -0.0031351857, 0.031033719, 0.026135098, 0.01813037, 2.3111945E-4, 0.009865657, 0.013402791, 0.0018352723, 0.004679688, 0.020524947, -0.023261607, -0.0011570939, 0.026381398, 0.04468965, -0.019115567, 0.022727957, -0.0048438874, -0.009222543, -0.011514495, 0.018198786, -0.012273918, -0.007382139, -0.011500812, -0.016748358, 0.0194166, -0.012492851, -0.030048523, 0.011596595, -0.0028888863, -0.010324048, -0.0015992355, -0.018992418, -0.0064721997, -0.029528556, 0.020333381, -6.6449516E-4, -0.026244566, -0.007443714, -2.8799067E-4, 0.017418839, 0.015982091, 0.02053863, 5.6913967E-4, 0.017145172, 0.010967163, -0.027462378, -0.03716384, 0.010679814, -0.017240955, -0.0022166942, 0.02484887, 0.007430031, 0.022166943, -0.005630677, -0.007190573, 0.007081107, -4.064367E-4, -0.0199092, -0.024999386, 0.030568488, 0.00991355, 0.014463246, 0.031882085, 0.0031745252, -0.009865657, 0.0017822495, -0.021742761, 0.0057059354, -0.015338977, -0.0015693032, -0.0098109245, 0.011603436, 0.0071016317, -0.0045531173, -0.029939055, -0.011856577, -0.03095162, 0.013012816, -0.0017335028, 0.008483645, -0.0077105383, 0.014463246, 0.021181745, -0.005551998, 0.0015154253, 0.00385869, -0.029254891, 0.011911311, 0.02286479, -0.011966044, 0.024876235, 0.003224127, -0.016187342, -0.01414853, 0.024328904, -0.015215827, 0.015626326, -0.023986822, 0.0056067314, -0.0122260265, -0.01717254, 0.011863419, 0.0078063216, 8.8513835E-4, 0.022002744, -0.023042673, 0.0044162846, 0.010885064, 9.984532E-5, -0.0061301175, -0.027736045, 0.0036397572, -0.01680309, 0.006024072, 0.035959706, 0.009646725, 0.013553306, -0.01717254, -0.0039578937, 4.2738926E-4, -0.034126144, -0.010111957, -0.005380957, 0.017500939, 0.0059351306, 0.044498086, -0.0055485773, 0.010159848, 0.003745803, 0.0031437378, 0.022823742, -0.016023142, -0.013909073, -0.026956096, 0.0031180815, -3.4678608E-4, 0.022960573, 0.009345693, -0.0013862891, 0.016187342, 0.024137337, 0.009879341, 8.038938E-4, -0.0085110115, -0.03450928, -0.025054118, 0.004265768, -0.03095162, -0.006609033, -0.022426926, -0.019033467, 0.01622839, -0.01953975, -0.017678821, -0.022741642, 0.027298179, 5.7811936E-4, 0.024534153, -0.019868148, 0.022563757, -0.015858943, -0.0036226532, -0.012828092, -0.012383385, 0.0052646487, 0.0057572476, 0.013341215, -0.0064414125, -0.023672106, 0.009544101, 0.004754946, -0.009537259, -0.02170171, 0.01717254, -0.0072179395, -0.021113329, -0.02484887, 0.006414046, -0.018527186, -0.017856704, -2.8456983E-4, -0.018239835, -0.0014324703, -0.015722109, -0.02941909, 0.017514622, -0.00804578, 0.035795506, 0.018705068, 0.032374684, 0.035904974, 0.006232742, -0.004898621, 0.016570473, -0.006143801, -0.01161712, 0.032265216, 0.023973137, -0.034947142, -0.013368582, -0.0043718135, -0.003800536, -0.036397573, -0.044990685, 0.028899126, 0.015790526, 0.012684417, -0.016242074, -0.004053677, -0.034208246, -0.0020388113, -0.01103558, 0.006376417, 0.0038039568, -0.03979103, -0.008894144, -0.011541862, -0.013970647, 0.009051502, 0.007792638, -0.020442847, 0.01157607, -0.016173659, 0.00999565, -0.011589753, -0.015530543, 0.04085833, -0.020087082, 0.021523828, 0.022522708, 0.006024072, -0.0022543233, 0.013833814, -0.007936313, 0.028269693, -0.0120139355, 0.022495342, 8.7188266E-4, -5.1825494E-4, 0.013409632, 0.01896505, -0.019635532, -0.026614014, -0.026531914, 8.0560416E-4, 0.03593234, 0.004286293, -0.0080731455, 0.00294533, -0.02982959, -0.0020832822, 0.001485493, -0.0038244817, 0.015722109, -0.029856956, 0.006708237, -0.0027571844, -0.011678695, -0.0025912744, -0.017282005, -0.0023706313, -0.002273138, 0.010563506, -0.006215638, -0.0061677466, -0.023877354, -0.014203263, -0.03634284, -0.019389233, -0.0043991804, -0.0052441237, 0.008209979, -0.011247671, 0.0028273114, 0.0068929614, -0.0043752347, 0.0047617876, 0.003937369, 0.008107354, 0.0036089697, 0.012732308, -9.467132E-4, 1.5222668E-4, -1.9723192E-4, 0.019608166, 0.015243194, -0.018349303, 0.0019122409, 0.012540743, 0.028844392, -0.017186223, 0.0028837551, -0.011295563, -0.039052133, -0.023836305, 0.012780201, 0.021496462, 0.00866837, -0.017104123, -0.030486388, -0.015010578, -0.009940916, 0.040338363, 0.0026819264, 0.008955719, 0.018732434, 0.027530795, 0.042992923, 0.024342587, -0.016023142, -0.017227272, 0.0013161622, -0.011056105, -0.026531914, 0.0010647316, 0.0066192956, 0.023891037, 0.006314842, -0.018677702, -0.02348054, -0.002962434, -0.007074265, -0.023165824, -0.015161094, 0.028050762, 0.025368834, 0.0036226532, 0.008552061, 0.00846312, 0.015899992, -0.0077652717, -0.018390352, 8.227083E-4, 0.012205502, 0.01290335, 0.025724601, 0.024588887, -0.03489241, -0.003742382, 0.008661527, 0.017405154, 0.013327532, 0.01937555, -0.015133727, -0.006407204, -0.004833625, 1.9979753E-4, 0.011808686, -0.011733428, 0.013135966, -0.019512383, -0.002721266, 0.0045120674, 0.014476929, -0.008647844, -0.007984204, 0.017665138, -0.035740774, -0.00427261, -0.013457524, -0.023576323, -0.013464365, -0.017500939, 0.026080366, 0.008989926, 0.008141562, 0.028871758, 0.020251282, -0.0111245215, -3.1321924E-4, -0.004214456, 0.008565744, -0.020483896, 2.9419092E-4, -0.001900268, 0.028023394, -0.026983464, 0.011316087, -0.032429416, -0.0073068812, -0.013402791, 0.011172413, -0.008900985, 0.053228028, 0.013868023, -0.049341973, -0.007074265, -0.015995774, -0.002278269, -0.011849736, -0.013060708, -0.024944652, -0.011952361, -0.0010117089, 0.015065311, -0.026586648, -0.021852227, -4.8233624E-4, -0.014750595, -0.0023261607, 0.02053863, 0.18368459, -0.0059796013, 0.0029094112, 0.047645245, 7.179455E-4, 0.013601198, 0.02435627, 0.008285237, -0.022358509, -0.0023347128, -0.0045291716, -0.004659163, -0.008134721, 0.0012631394, 0.03382511, -0.030677954, -0.017692504, -0.012581793, -0.019567115, -0.03699964, -0.018431403, -0.011555545, -0.012718625, -0.017282005, 0.0040981476, 0.006725341, -0.021482777, 0.009462001, 0.024794135, 0.012164452, -0.015325294, -0.018280886, -0.0072589894, -0.0071974145, -0.010748231, -0.010885064, -0.011261354, 0.008203137, 0.0057196184, 0.008278395, 0.006041176, -0.008346812, -0.019594483, -0.0016154844, -0.013998014, 0.020388113, -0.012287602, -0.006003547, -0.010091432, 0.01178132, -0.033879846, -0.010638764, 0.027681312, 0.022440609, -0.022002744, 0.0031625521, 0.0082989205, 0.0042555057, -0.019156616, -0.0024014188, 0.0071974145, 0.03223785, -0.023179507, 0.0030428234, 0.009229384, 0.0041597225, -0.027982345, -0.0067561283, 0.0030530859, -0.04085833, -0.008969402, -0.027845511, -0.0016693623, 0.01576316, -0.019703949, -0.019512383, -0.0059967055, 0.01061824, 0.0049944036, 0.024452053, -0.027653946, 0.007081107, 0.007388981, -0.010857697, -0.0130743915, -0.02568355, 0.018759802, -0.011808686, -0.014942162, -0.014422196, -0.010337732, -0.025095169, -0.010542981, 0.0070674233, 0.007170048, 0.0046933712, 0.029008592, 0.028652826, -0.011165571, -0.0040468355, -0.029172791, 0.008148404, 0.026271932, -0.024889918, -0.02601195, -0.0196629, 0.0012434697, 0.012896508, 0.014559029, -0.018841902, 0.0012203791, -0.02464362, 0.004566801, -0.004505226, 0.013122283, 0.015010578, -0.017500939, 7.2906323E-4, 0.02476677, -0.025834067, -4.5283165E-4, -0.006646662, 0.025491985, 0.003364381, -0.0042178766, -0.018896634, -0.02692873, 0.011863419, -0.024903603, -0.028871758, 0.021523828, -0.030842153, 0.02131858, -0.0012297864, 0.004737842, 0.011993411, 0.014080114, 0.004265768, -0.0192524, -0.0087231025, -0.013149649, -0.010611397, 0.022207992, 0.013642248, 0.0022166942, -0.02327529, -8.6033734E-4, -3.2711636E-5, 0.0011391345, -0.039216332, -0.02339844, -0.005904343, 0.0075737056, -0.0016419957, 0.042746622, 0.0056477813, -0.02535515, -0.04162459, -0.008579427, 0.03642494, -0.03522081, 0.023945771, 0.0053330655, -0.004447072, -0.029473824, -0.027298179, -0.17635034, 0.005510948, 0.019799732, -0.040092062, 0.016077874, 0.015831575, 0.01696729, 0.0046489006, 0.00464548, -0.027831828, 0.022700591, -0.009838291, -0.03294938, -0.028078128, 0.016173659, 0.011316087, -0.003933948, 0.042801354, 0.03207365, -0.014600079, 0.054705825, -0.00788158, -0.02190696, 0.0017369236, 0.03070532, -6.6492276E-4, 0.0031300543, 0.008018413, -0.009393584, -0.011966044, -0.027845511, 0.002991511, 0.0052372823, 0.0060514384, -3.2497832E-4, -0.0046899505, 0.0097083, -0.007539497, 0.0018934264, -0.008853094, 0.04854834, 0.004967037, 0.028406527, 0.01535266, 0.015982091, 0.01817142, 0.021428045, -0.011015055, 0.031799983, -0.023973137, -0.0035542366, -0.03522081, 0.028543359, -0.012787042, -0.01410748, 0.01829457, -0.0049738786, 5.845334E-4, -0.008812044, 0.010542981, -0.017829338, -0.0045873257, -0.0043512885, 0.008326286, -0.0017480414, -0.020415481, -0.0031232128, 0.018732434, -0.04036573, 0.00929096, -0.010426673, 0.0021927485, 0.003841586, 0.016693624, 0.0072384644, -0.020059714, -0.03245678, 0.017377788, -0.014257996, 0.019033467, -0.0040057856, 0.048274674, -0.0015179908, 0.011911311, 0.0074368725, -0.017692504, -0.008223662, -0.008606794, 0.008729944, -0.01119978, -0.002726397, -0.02099018, -0.02684663, -0.0014760857, -3.4550327E-4, 0.004891779, -0.020812295, -0.001169922, 0.010337732, -0.0097083, 0.0057606683, -0.015886309, -0.014791645, 0.02099018, 0.022727957, 7.2307675E-4, 0.0023911563, 0.016419958, 0.018513503, 0.001763435, -0.0064585167, 0.0038039568, 0.02950119, 0.014093797, -0.010166691, -0.008428912, -0.019608166, -0.020607047, -0.005521211, 0.012034461, 0.054787926, -0.006335367, 0.0111245215, -0.012732308, -0.004833625, -0.010378782, -0.09260856, -0.0011827501, 0.0018181682, 0.038450066, -0.026969781, 0.035083976, -0.0020798612, 0.017870387, -0.027435012, 0.02447942, 0.009297801, -0.037355404, 0.0026494286, -0.00759423, 0.0020336802, -0.0020781509, -0.023453172, -0.0072042565, -0.005634098, 0.024876235, -0.0020319698, 0.0027229763, 0.014723228, -0.009496209, -0.019115567, 0.02012813, -0.041542493, 0.026025632, 0.012793884, 0.012054985, 0.008292079, -0.016898872, -0.003684228, -0.013026499, -0.020251282, -0.015585276, -0.013861181, -0.01755567, 0.0026271932, -0.054705825, 0.012520217, 0.013902231, -0.0014016828, -0.01057719, -0.019307133, 0.012054985, -0.03803957, 0.012698101, -0.0021893277, -0.02211221, -0.023672106, -0.02012813, -0.014162214, 0.002493781, 0.013594356, 0.014983212, 0.021250162, 0.005110712, -0.0061130133, -0.026326666, -0.006198534, -0.0065337745, -0.02066178, 0.0133001655, -0.004666005, -0.010666131, 0.011110838, -0.035166077, 0.029145425, -0.023494223, -0.023904722, 0.024753086, -0.033743013, -0.0053262236, -0.018691385, 0.019868148, -0.02456152, -0.010406148, 0.023685789, -0.039188966, -0.00530912, -0.032538883, 0.012951242, -0.021920644, 0.020046031, 0.01622839, 0.0194166, -0.0020234177, 0.013717506, -0.019170301, -9.851975E-4, 0.02115438, 0.010597714, -3.6773863E-4, -0.0031454482, 0.019840783, 0.016023142, 0.012417593, 0.008552061, 0.012978608, -0.0077994796, 9.21057E-4, -0.077392735, 0.032976747, -0.033250414, -0.009523575, -0.0062703714, -0.0059385514, 0.009318326, 0.012451801, -0.009010452, 0.030294823, -0.008969402, 0.014203263, -0.011959203, -0.0031967605, -0.008955719, 9.0395287E-4, 0.009297801, -0.005141499, 0.0020781509, 0.0044744383, -0.02311109, 0.015380027, 0.024164705, 0.013012816, -0.011090313, 0.023371072, 0.004577063, 0.014600079, -0.011192937, -0.013888547, 0.022249043, -0.024917286, 0.0050012455, 0.013484891, -0.005870135, -0.024246804, -0.010166691, -0.0032805707, 0.011268196, -0.002659691, -0.016324174, -0.021674344, -3.4122725E-4, -0.022084843, -0.0022851108, 0.021113329, -0.01800722, 0.024000505, 0.01592736, 0.01639259, 0.02153751, 0.017186223, -0.0023586585, -0.016036825, 0.013840656, -0.017227272, 0.049889304, -0.007040057, 0.0047857333, -0.026436131, 0.008647844, -0.010891905, 0.015243194, -0.028871758, -0.0039886814, 0.0026699535, 0.022344826, -0.0035234492, -0.011829211, -0.033004116, -0.008442595, 8.077422E-4, -0.0093867425, 0.031307384, 0.008839411, 0.019019784, -0.00676297, 0.014080114, -0.016433641, 0.019183984, 0.0104608815, -0.013382265, -0.013094916, 0.0077515882, 0.021770127, 0.01709044, -0.0020473634, 0.0057264604, 0.0017651455, 0.014928478, -8.552061E-4, 0.0061677466, 0.014983212, 0.0037355404, 0.021797493, 0.020497581, -0.011008213, -0.008162087, -0.0047070547, 0.02348054, -1.7798977E-4, -0.0058975015, -0.020921763, -0.013915914, -0.022604808, -0.001091243, -0.010214582, -0.011001372, 0.01696729, 0.008237345, 0.029856956, 0.017268322, -3.64104E-4, 0.012472326, -0.042883456, 0.014572713, -0.00838102, -0.013471207, -0.014545346, 0.03601444, 0.012718625, 0.015462127, 0.03538501, -0.018239835, 0.0508745, 0.015872626, 0.022823742, -0.013703823, 0.0052338615, 0.010891905, 8.043214E-4, -0.016337859, -0.013484891, -0.0130743915, -0.0030496651, -0.0047823125, 6.4910145E-4, 0.031416852, -0.0021209111, 0.06945642, 0.0076079136, -0.015147411, 0.023617372, -0.02248166, 0.009557784, 0.0069271694, 0.012109718, -0.011890786, -0.0072384644, -5.596255E-5, -0.00788158, 0.0070024277, -0.023863671, -0.0031916292, -0.019006101, 0.007484764, 0.011931836, -0.012855458, -0.024862552, -7.0340706E-5, -0.007402664, 0.030212723, 0.009407267, -0.02186591, -0.017651454, 0.02343949, -0.0052749114, -0.0025707495, -0.041378293, 0.0023005044, -0.017240955, -0.012869142, 9.0224243E-4, 0.029090691, 0.0025365413, 7.748167E-4, 0.008914669, 0.018445086, 0.009092552, -0.01896505, -0.0018352723, -0.021044912, -0.011357137, 0.011473445, -0.010146165, -0.0023295814, -0.020100765, -0.010570347 ], + "id" : "bf3d8848-fc38-447e-8258-2607708dc43a", + "metadata" : { + "source" : "movies.csv" + } + }, + "a27b658b-2648-4e77-a654-e1a9b9693231" : { + "text" : "341,17425,Eddie Redmayne-Katherine Waterston-Dan Fogler-Alison Sudol-Colin Farrell-Jon Voight-Ron Perlman-Johnny Depp-Zo� Kravitz-Ezra Miller-Samantha Morton-Carmen Ejogo-Josh Cowdery-Ronan Raftery-Faith Wood-Blagrove-Jenn Murray-Gemma Chan-Peter Breitmayer-Kevin Guthrie-Sean Cronin-Sam Redford-Akin Gazi-Todd Boyce-Anne Wittman-Andreea Pۀduraru-Matthew Sim-Elizabeth Moynihan-Adam Lazarus-Lucie Pohl-Tim Bentinck-Bart Edwards-Brian F. Mulvey-Tristan Tait-Tom Clarke Hill-Cory Peterson-Jake Samuels-Max Cazier-Dan Hedaya-Christy Meyer-Guy Paul-Walles Hamonde-Dominique Tipper-Leo Heller-Miles Roughley-Erick Hayden-Paul Birchard-Tom Hodgkins-Ellie Haddington-Joseph Macnab-Martin Oelbermann-Richard Clothier-Christian Dixon-Richard Hardisty-Miquel Brown-Wunmi Mosaku-Cristian Solimeno-Matthew Wilson-Aretha Ayeh-Emmi-Nicholas McGaughey-Arinz�� Kene-Jane Perry-Abi Adeyemi-Alphonso Austin-Roy Beck-David J Biscoe-Lee Bolton-Neil Broome-Fanny Carbonnel-David Charles-Cully-Craig Davies-Chloe de Burgh-Paul Dewdney-Rudi Dharmalingam-Joshua Diffley-Richard Douglas-Henry Douthwaite-Dino Fazzani-Abigayle Honeywill-Attila G. Kerekes-Simon Kerrison-Denis Khoroshko-Alan Mandel-Jorge Leon Martinez-Christine Marzano-Pete Meads-Dennis O'Donnell-Gino Picciano-Jason Redshaw-Dave Simon-Connor Sullivan-Dan Trotter-Morgan Walters-Anick Wiget-Reid Anderson-Tineke Ann Robson-Cinta Laura Kiehl,new york city-witch-robbery-magic-teleportation-suitcase-mistake-escape-spin off-subway station-central park-wizard-goblin-magical creature-1920s,/h6NYfVUyM6CDURtZSnBpz647Ldd.jpg,/8Qsr8pvDL3s1jNZQ4HK1d1Xlvnh.jpg,338952-12445-672-12444-284052-767-675-674-673-671-283366-321612-297761-271110-269149-293660-22-131631-330459-283995-150540\r\n512200,Jumanji: The Next Level,Adventure-Comedy-Fantasy,en,As the gang return to Jumanji to rescue one of their own they discover that nothing is as they expect. The players will have to brave parts unknown and unexplored in order to escape the world��s most dangerous game.,67.707,Columbia Pictures-Matt Tolmach Productions-Seven Bucks Productions-The Detective Agency,12/4/19,125000000,801693929,123,Released,,6.", + "embedding" : [ 0.026916929, -0.014653002, -0.019271884, -0.027660197, -0.03400452, 0.04833898, -0.009416943, -0.008912582, -0.014838819, -0.03225253, 0.018727705, 0.01765262, 0.019192247, -0.0025748934, 0.005823374, 0.009715578, 0.014905183, -0.019616973, -0.0034077521, -0.015502452, 0.0032501393, 0.010784025, -0.027394744, 0.0087068565, 0.010193393, 0.0180508, 0.03355325, 5.9561E-4, -0.011945383, -0.005597739, 0.01514409, -0.015183908, -0.0062149167, -0.036924504, -0.021952959, 0.0041178386, 7.038651E-4, -0.02752747, 0.02653202, 0.0051199235, 0.018037528, 0.0073331376, -0.024142945, -0.007114139, -0.011752929, 0.008985582, 0.01037921, -0.0043766554, -0.0098416675, 0.042047746, 0.02627984, 0.02406331, -0.012031655, -0.028376918, -0.025788752, 0.004665335, -0.020187696, -0.008089678, -0.0010402437, 0.014215005, 0.0018565115, -0.029252915, -0.029120188, -0.01890025, -0.028668918, -0.014161915, -0.0071672294, -0.020227514, -3.328531E-5, 0.0010170166, 0.025218029, 0.0031340038, 0.024819849, -5.690129E-6, 0.020439876, -0.044012096, -0.022125503, -0.0104256645, 0.0010029144, -7.080128E-4, 0.0105318455, -0.0063642343, -0.026359476, 0.002503553, 0.015966995, 0.017280987, -0.0073530464, 0.029704183, -0.018210072, 0.01660408, 0.0021634414, 0.037428863, -3.8594368E-4, -9.066877E-4, 0.0053621493, 0.016935898, -0.013631009, 0.021342415, -0.02612057, -0.033924885, -0.0012210836, -0.012748377, -0.0032070032, -0.012031655, -0.00442311, -0.011049478, 0.0037992953, -0.00120947, 0.021422053, 0.019125884, 0.0023144179, -0.00554133, 0.016325356, -0.037641227, -0.002848642, -0.01875425, 0.035783056, -0.0255233, -0.0196037, -0.015037909, 0.040242665, 0.030181998, 0.01258247, -0.037827045, 0.039127763, 0.02476676, 9.6558506E-4, -0.016882807, 0.015860813, -0.004101248, 0.024833122, -0.006341007, 0.031217266, 0.015037909, -0.038278315, 0.0524535, -0.02216532, 0.0012393334, -0.018488796, -0.008209132, 0.02943873, 0.029252915, -0.024036763, -0.018568434, -0.022828953, 0.011295022, 0.015820995, -0.0040946114, 0.025032213, 0.008129496, 0.021607868, 0.013830098, 0.02061242, 0.017015534, 0.026054205, -0.0021684186, 0.017068624, -0.0045989724, -0.007864043, -0.015582087, -0.010312847, -0.015860813, -0.0067524593, -0.009098399, -0.003878931, 0.021076964, 0.021209689, -0.017612802, 0.0036831596, -0.0032766848, -0.013179738, 0.03310198, -0.015820995, 0.015409543, 0.0045392453, 0.014015915, -0.0019162385, -0.012124563, -0.027447835, -0.031376537, 0.005309059, 0.013431919, 0.02747438, 0.03379216, -0.0055479663, -0.0011646748, 0.017161533, -0.020227514, -0.0022165321, 0.0029896637, -0.0015387975, 0.02416949, -0.0022098958, -0.01070439, -0.64345795, -0.022643136, 9.763691E-4, -0.012217471, 0.020877874, 0.012589105, 0.015024636, 0.0018399206, -0.030420907, -0.015382998, -0.019152429, 0.015197181, 0.022842225, -0.014467185, -0.0194577, -0.00935058, 0.008394949, -0.025682572, 0.004658699, -0.0035935692, -0.035889238, 0.018488796, 0.019882426, -0.0075454996, 0.001231038, 0.006384143, -0.008959036, -0.027872559, 0.0010626413, 1.1489135E-4, -0.017971164, 0.007817589, 0.0076251356, 0.022191865, 0.03525215, 0.0032435032, -0.02251041, 0.0423132, 0.029067097, 0.034269974, -0.021276053, -0.005401967, 0.008806401, 0.003795977, -0.020254059, 0.024235854, 0.007505682, 0.0045491997, -0.0011538907, -0.008355131, -0.0059627364, 4.6827557E-4, -0.019245338, -0.011726383, 0.0014608207, -0.005123242, 0.002787256, -0.034535427, 0.028722009, 0.0041477024, -0.027819468, 0.01770571, -5.6906475E-4, 0.012171017, -0.010087212, 0.027713288, 0.0014110482, -0.0057503744, 0.0038457494, -0.034323066, 0.013684099, 0.016524445, -0.017028807, 0.0012335266, 0.0019577155, -5.6201365E-4, 0.028695462, 0.0064936425, -0.0135381, 0.010438937, 0.0021667597, -0.0059561003, 0.005912964, 0.008043224, 0.016829716, -0.011713111, -0.025151666, 0.009045308, 0.009808486, 0.003507297, 0.002115328, 0.020267332, 0.017506622, 0.02326695, -0.014838819, -0.005554603, -0.018170254, -7.7810895E-4, 0.02927946, -0.07294647, -0.011195478, -0.032279078, 0.035623785, -0.021687506, 0.011321568, 0.018130437, -0.0105318455, -0.013332373, 0.032491438, -0.0013040375, -0.01070439, -0.0011829246, -0.020333694, -0.014931728, -0.0125691965, -0.029491821, 0.0012185948, 0.020838056, -0.00830204, -0.010850389, 0.009270944, 1.6020499E-4, 0.013670826, -0.011845837, 0.00767159, 0.023412948, -0.017533166, -0.01270856, 0.01745353, 0.008255586, -0.0024736896, -0.0025516665, 0.011819292, -0.018156981, 0.009098399, 0.00656996, 0.010949934, -0.0039054763, 0.009655851, 0.00570392, -0.0063144616, -0.012071473, -0.019338246, -0.016683716, -3.411485E-4, -0.004479518, -0.032677256, 0.0017785347, -0.0043766554, -0.022337865, -0.005995918, 0.014626457, -0.0061585084, 0.0024156217, 0.020413332, 0.00332148, -0.01514409, -0.01951079, 8.5027894E-4, -0.03318162, 0.01404246, 0.022390956, 0.0032302304, -0.022921862, 0.016723536, -0.005431831, -0.015382998, 0.00952976, -0.003965203, -0.006543415, 0.011487476, -0.009244398, 0.0043965643, 0.015635177, -0.012244017, 0.028005285, -0.0037495228, 0.024660578, 0.0072535016, -9.921304E-4, 3.4451852E-5, -0.012575833, -0.02155478, -0.016033357, 0.028297283, 0.021687506, 0.016179357, -0.008620584, -0.00528915, 0.004522654, -0.01976297, -0.0056939656, -0.0042837467, -0.011514021, 0.0050203786, 0.03318162, 0.0038026134, -0.0070079574, 0.011042843, 0.0010601527, 0.035729967, 0.018064072, 0.0053422404, -0.00438661, 0.017931346, -0.033579797, -0.0012832991, -0.014732638, 0.003839113, 0.0024554397, 0.017679166, -0.026266567, -0.012642196, 0.0115073845, 9.796872E-4, 0.035809603, -0.015701542, 0.0052360594, -0.011361386, 0.0051829685, 0.0032152988, -0.020174423, 0.019537337, 0.010445573, -0.02803183, -0.0019510791, 0.013431919, -0.0053190133, 0.010910116, -0.005697284, -0.006175099, 0.0081228595, 0.0063078254, 0.016325356, -0.0045624725, -0.022882042, 0.025058758, -0.006689414, 0.040242665, -0.012668742, -0.009111672, 0.022802407, 0.016484628, -0.0058864187, 0.009516488, -0.02487294, 0.016404992, 0.02261659, 2.938647E-4, 0.05330295, -0.006875231, 0.034057613, -0.0035603875, -0.010591572, 0.002667802, -0.009251035, 0.0037462045, 0.017665893, 0.02225823, 0.024806578, 0.016577536, -0.02933255, 0.02723547, 0.0074725, 0.009423579, 0.0034011158, -0.010007576, -0.0058167377, 0.001693092, -0.037349228, -0.021130053, -0.011454294, 0.0038192042, 0.006855322, -0.011693202, -0.0042207018, -6.934958E-4, 0.010120394, 0.0119321095, 0.021209689, -0.003095845, -0.023399677, 0.011553839, 0.03480088, -0.014321186, -0.030394362, -0.012058199, -0.025748935, -0.021727324, -0.014361004, -0.007698135, 0.040481575, -0.027315108, 0.008414858, -0.0093107615, 0.0068951403, 0.020519512, -0.01590063, 0.0045657908, 0.013491645, -0.014852092, 0.01564845, -0.003752841, -0.003080913, 0.032677256, -0.011958655, -0.0096823955, -0.0019129203, -0.0018565115, 0.0014118778, -0.005969373, -1.4983575E-4, -0.049506973, 0.019112611, -0.02446149, -0.00889931, 0.0037893406, 0.0039917487, 0.009755395, -0.018382616, -0.026160387, -0.031004904, -0.02266968, 4.5469184E-5, 0.07825553, 0.045100454, -0.0041543385, 0.008852855, -0.012688651, 7.2750694E-4, -0.014161915, -0.01770571, -0.0015835927, -0.027554015, 0.03445579, -0.017785346, 0.03458852, -0.0032866392, -2.4886214E-4, -0.0017005579, -0.015502452, -0.015621905, -0.0031887535, -0.0069681397, -0.008560857, -0.02251041, 0.021780415, 0.042791013, 0.0050933785, -0.013232829, 0.012423198, 0.019152429, -0.005269241, 0.025908208, -0.0012758332, 0.005103333, 9.199603E-4, 0.018528614, 0.0018166936, -0.004774835, 0.023439495, 7.99677E-4, 0.026001114, -0.0010402437, -0.008613948, 0.013365556, 0.01424155, -0.010465482, 0.018077346, -0.019789517, -0.010438937, 0.017320804, 0.034269974, -0.03450888, 0.01675008, 0.018316252, -0.020731874, 0.008713493, 0.019324973, 0.0021584642, -0.009795213, -0.013312465, -0.013803553, -0.01133484, 0.006682778, -0.036128145, 0.022045866, -0.0032733665, -0.022085685, -0.017665893, -0.015170636, -0.004924152, -0.025908208, -1.8291366E-4, -7.465864E-4, -0.027394744, -0.0057570105, -0.0060357363, 0.02196623, -0.0017271031, 0.028828189, -0.003649978, 0.009854941, 0.016723536, -0.031403083, -0.027792923, 0.010292938, -0.005810101, -0.017904801, 0.0037229774, -0.0070278663, 0.035942327, -0.006649596, 0.0026113933, -0.0052360594, 0.005647511, -0.013591191, -0.013120011, 0.040375393, 0.0062646894, 0.014613184, 0.019935515, -0.004207429, -0.0036367052, 0.011799383, -0.028217647, 0.0027739832, -0.028509645, -0.013093466, -0.020851329, -0.0055645574, -0.0013778666, -0.020599147, -0.018276434, -0.023452766, -0.019192247, 0.01083048, -0.0031356628, 0.013936279, 0.010943297, 0.02377131, 0.016922625, -0.008905946, 0.01258247, 0.0084414035, -0.01444064, 0.014520275, 0.026651476, -0.005647511, 0.027116017, 0.001395287, -0.01895334, -0.0032352076, 0.041092116, 1.7187042E-5, 0.013498282, -0.019696608, -0.0018714432, -0.027182382, -0.02637275, 0.019165702, -7.212854E-4, -0.019935515, 0.022457318, -0.015674995, -0.0071473205, 0.0060722358, -0.0014226618, -0.013803553, -0.03429652, 0.0095762145, -0.022191865, 0.0025317573, 0.027554015, 0.010810571, 0.0066296873, -0.020320423, -0.012788195, -0.009689032, -0.039419763, -0.021076964, -0.01167993, 0.029757274, 0.005103333, 0.039287034, -0.013418646, 0.021952959, 0.0037893406, 0.009914667, 0.01023321, -0.023904037, -0.0069814124, -0.033924885, 0.0017287623, 0.0065732785, 0.011016297, 0.020851329, 0.0067524593, 0.0046454263, 0.03570342, 0.016537718, 0.02572239, -0.009582851, -0.021050418, -0.023081133, 0.010153575, -0.025138393, 0.003922067, -0.022351138, -0.00554133, 0.022935133, -1.2329045E-4, 2.826659E-4, -0.010193393, 0.032066714, -0.012064836, 0.0020954192, -0.039632123, 0.019683335, -0.030473998, 0.003965203, -0.025589664, -0.029491821, -0.0025483482, -0.008010043, 0.03108454, -6.7234255E-4, -0.011321568, -8.6438115E-4, 0.031270355, -0.025403846, -0.02416949, 0.03756159, -0.018687887, -0.0014425708, -0.025815299, 0.005003788, -0.026014388, -0.004144384, -0.007512318, -0.01684299, -9.373807E-4, -0.01824989, -0.038092498, 0.019271884, 0.011719747, 0.032172896, 0.011626839, 0.035968874, 0.028589282, 0.016099721, -0.018940067, 0.023598766, -0.013100103, -0.0025964614, 0.02472694, 0.018780796, -0.020121332, -0.02140878, -0.011580384, -0.003981794, -0.04072048, -0.031827807, 0.023890765, 0.029598003, 0.02517821, -0.02265641, 0.0073397737, -0.027872559, 0.017639348, -0.0053853765, 0.013445191, 0.015356452, -0.033818703, -0.01599354, 0.0034840698, 0.0024952576, 0.013816825, 0.005783556, -0.011314931, 4.8403683E-4, -0.020851329, 0.007034503, -0.019391337, -0.004267156, 0.027607106, -0.038649946, 0.012781559, 0.01684299, 0.0099478485, -0.0028901189, -0.0077047716, 2.6358647E-4, 0.030606724, -0.018156981, 0.016338628, 0.005624284, 0.0051763323, 0.0014035824, 0.0070477757, -0.015037909, -0.019417882, -0.026240023, 0.004592336, 0.034615062, 0.0074525913, -0.0030543678, 0.015024636, -0.016856262, -0.014838819, 0.0033745705, -0.0037428865, -0.003223594, -0.037986316, 0.020678785, -0.007120775, 0.009304126, 6.5243355E-4, -0.0077910437, 0.0025632798, -0.004960652, -0.008328586, -0.0034741154, -0.0037793862, -0.01306692, -0.01785171, -0.03514597, -0.024196036, -0.01211129, -0.008554221, 0.007505682, -0.023054589, 0.0015802745, -0.0038722947, -0.011042843, -0.015568815, 0.002810483, -0.019271884, 0.007041139, 0.010624754, -0.007306592, -0.008932492, -0.011520658, 0.032783438, -0.0029929818, -0.0070278663, 0.012210835, 0.016577536, 0.031376537, -0.024607487, 0.01554227, -0.0057371017, -0.013173102, -0.016351901, 0.020718602, 0.035570692, 0.015197181, -0.008116224, -0.017533166, -0.016378446, 0.005581148, 0.029067097, -0.010359301, 0.0015255249, 0.033367433, 0.02070533, 0.041782293, 0.030394362, -0.011314931, -0.042658288, -0.0011489135, -0.012774923, -0.023041315, -0.004263838, 0.001250947, 0.010419028, 0.010711026, -0.007160593, -0.03023509, -0.004967288, -0.020413332, -0.041384112, -0.008003406, 0.02712929, 0.03318162, 0.018183526, -0.00541524, 0.010352665, 0.012283835, 3.413559E-4, -0.013617735, -0.0037462045, 0.021501688, 0.0070079574, 0.01864807, 0.016537718, -0.02391731, -0.010312847, 0.015608633, 0.025881661, 0.01148084, 0.008733402, -0.014294641, -0.014175187, -0.0049274703, 0.0019062839, 0.008594039, 0.0022895315, 0.025642755, -0.011898928, -0.007664954, 0.012881104, 0.008474585, -0.005617648, 0.018435707, 0.02312095, -0.020944238, 0.006503597, -0.017068624, -0.021090236, -0.0030211862, -0.030049272, 0.021806959, 0.015303362, 0.002296168, 0.035623785, 0.018210072, -0.0076184995, 0.008985582, -0.003985112, -0.0075189546, -0.018422434, 0.005123242, 4.6951987E-4, 0.014560094, -0.037375774, 0.003653296, -0.016338628, -0.005166378, -0.01128175, -0.0023691675, -0.0049506975, 0.031668536, 0.005989282, -0.058293466, 1.1955752E-4, -0.024142945, 0.006427279, -0.014852092, 0.0051365145, -0.026943473, -0.0067358683, -0.009443488, 0.0012841286, -0.018010981, -0.028456556, 0.0010999707, 2.7530374E-5, -0.01185911, 0.009669123, 0.17583603, 0.0021435325, 0.008361768, 0.049825516, 0.0068818675, 0.0034973426, 0.02612057, 0.01824989, -0.0050701513, 0.011474203, -0.0018614887, 0.012549288, -0.017241169, 0.0011348113, 0.009755395, -0.013239466, -0.03384525, -0.027262017, -0.018064072, -0.034031067, -0.010890207, 0.011699839, -0.019032976, -0.03113763, 0.008925855, -4.1394067E-4, -0.011965292, 0.00967576, 0.026505476, 0.002913346, -0.004104566, -0.014281368, -0.0116666565, 0.004496109, -0.02832383, -0.008859492, -0.0077313166, -2.3662641E-4, 0.014998091, 0.012290471, 0.014347731, 0.010677844, -0.021050418, -0.0049573337, 0.0039320216, 0.020280605, -0.022430774, 0.0015985244, -0.011792746, 0.006277962, -0.037641227, -0.010153575, 0.007930406, 0.02527112, -0.012390016, -0.008288768, 0.012137836, -0.0020838056, 5.8275217E-4, 0.012980648, 0.01070439, 0.032279078, -0.02543039, 0.0104323, -0.012164381, 0.018873705, -0.033473615, -0.0060589635, 0.011474203, -0.023306768, -0.01694917, -0.03745541, -0.015223726, 0.014599912, -7.324842E-4, -0.0086006755, 0.012330289, -5.7601213E-5, 7.5861474E-4, 0.015953721, -0.024660578, -0.012841286, 0.0054716486, -0.0054683303, -0.017559713, -0.014533549, 0.014799002, -0.022895316, -0.013226192, -0.021793686, -0.0049141976, -0.019232064, -0.01173302, -0.010246484, 4.4048598E-4, 0.014586639, 0.023797857, 0.016816443, -0.005617648, -0.0034542063, -0.033314344, 0.023492586, 0.020625694, -0.013239466, -0.030261636, -0.016909352, -0.0042737923, 0.010007576, 0.02832383, -0.0036167963, -0.012980648, -0.017201351, 0.0070278663, -0.0056939656, 0.011029569, 0.01700226, -0.0019560563, -0.016617354, 0.03636705, -0.022802407, 5.429342E-4, -0.024952576, 0.015714813, 0.0012957421, -0.007850771, -0.022828953, -0.019391337, 8.5774483E-4, -9.94619E-4, -0.036446687, 0.018740978, -0.010186757, 0.012496197, -0.0072535016, 0.012735105, 0.014878637, 0.029173277, -0.005458376, 0.0050966963, -0.005259286, -0.0029249596, -0.0119321095, 0.0070875934, 0.013617735, -0.0016988989, -0.019922243, 0.009967757, -0.013047012, -0.015024636, -0.032650713, -0.027341653, -0.017108442, 0.0072734104, 0.01909934, 0.04045503, -0.007061048, -0.018847158, -0.04276447, 0.0015694905, 0.036977593, -0.0389154, 0.032066714, 0.013292556, -0.012808104, -0.02541712, -0.0022215093, -0.16872188, 0.010047394, 4.023271E-5, -0.016789898, 0.013053648, 0.02196623, 0.016166084, 0.009815122, -1.8540228E-4, -0.022550227, 0.023160769, 0.0038026134, -0.042233564, 0.001364594, 1.519096E-4, 0.015927177, 0.00673255, 0.02752747, 0.019988606, -0.00837504, 0.0375085, -0.010817207, -0.011839201, -9.135314E-5, 0.01306692, 0.0018382616, 0.027952194, 0.0041742474, -0.001907943, -0.010239847, -0.033526707, -0.01037921, 0.01905952, -0.0013380487, -0.020280605, 0.00496397, -0.009569579, -0.012589105, 0.0064737336, -0.013936279, 0.043693554, 0.021581324, 0.018117163, 0.014281368, 0.007054412, 0.017878255, 0.031748172, -0.013498282, 0.01909934, -0.020254059, -0.014878637, -0.03554415, 0.016776625, -0.0060456907, 0.013564645, 0.02337313, 0.012987285, -0.011441021, 0.009755395, -0.0075322273, -0.0239704, -0.005395331, 0.0026843927, -0.008879401, 8.818015E-4, -0.0061054174, -0.0038689766, 0.00554133, -0.021302598, 0.011580384, -0.026558567, 0.009569579, 0.015927177, 0.0026578475, -0.001261731, -0.02216532, -0.034323066, 0.013073557, -0.018342799, 0.007326501, -0.020891147, 0.059142914, -0.00787068, 0.012781559, 0.007890589, -0.012104654, -0.0058631916, -0.005073469, 0.0037262957, -0.015555542, 0.019271884, -0.0035404786, -0.040136483, 0.0018415798, 0.006490324, 0.004721744, -0.0019444427, 0.014281368, 0.010060666, -0.0053621493, 0.0029697549, -0.018263163, -0.01875425, 0.014135369, 0.035358332, 0.008195859, 0.018183526, 0.015688268, 0.023930583, 0.0073729553, -0.009383761, -0.00570392, 0.026040934, 0.009450125, -0.014175187, 0.01243647, -0.024262398, -0.020891147, -0.007817589, 0.028005285, 0.03857031, -0.0061883717, 0.0055877846, -0.020094788, -0.0047847894, -0.006848686, -0.08802419, -0.0017138305, 0.0030908675, 0.046693172, -0.029677639, 0.035331786, -0.012589105, 0.015621905, -0.026731111, 0.025656026, 0.0069681397, -0.015913904, 0.018024255, -5.2344E-4, 0.005909646, -0.008998855, -0.020041697, -0.004947379, -0.0058499193, 0.021806959, -5.765306E-4, -0.019192247, 0.00373625, -0.016205901, -0.021169871, 0.01940461, -0.024262398, 0.023054589, 0.007286683, 0.025921479, 0.016829716, -0.021793686, 0.014984818, -0.04332192, -0.010969843, -0.024806578, -0.012270562, -0.028536191, 0.014135369, -0.06328398, 0.0030792542, 0.010472119, 9.821758E-4, -0.010757481, -0.020798238, 0.0051763323, -0.04409173, 0.023479313, -0.015223726, -0.0064571425, -0.008521039, -0.00361016, -0.017466804, -0.011739656, 0.0065102335, 0.018847158, 0.023625312, 0.0225635, -0.0017403759, -0.012157745, -0.011162296, -0.014095551, -0.013504919, 0.027872559, 0.0051829685, 0.013604463, -4.1451098E-5, -0.0024902804, 0.02422258, -0.014945, -0.022152048, 0.029544912, -0.03811904, 0.0024952576, -0.013976097, 0.022775862, -0.021594597, -0.0052360594, 0.02662493, -0.034110703, -0.0024919393, -0.040056847, 0.0017536485, -0.017665893, 0.020094788, 0.011620202, 0.0197497, 0.0029481866, -0.009430216, -0.03854377, -0.006168463, 0.009795213, 0.0011961974, -0.0052426956, -0.007844134, 0.009224489, 0.0024952576, -0.010511937, 0.006619733, 0.014201732, -0.0038888855, -2.998983E-6, -0.069123946, 0.02126278, -0.024912758, -0.009430216, -0.0057702833, 6.5533695E-4, 0.018196799, 9.780282E-4, -9.498238E-4, 0.01905952, -0.002483644, 0.012688651, -0.010127029, 0.0076848627, -0.004267156, 0.008076406, 0.006506915, -0.010445573, 3.676938E-4, 0.0012832991, -0.0063642343, 0.011613566, 0.024514578, -0.0013289237, -0.005839965, 0.020121332, 0.011361386, 0.0054683303, -0.009967757, -0.013558009, 0.031907443, -0.028297283, 0.0023957128, -0.005030333, -0.007512318, -0.03997721, 0.00418752, 0.0029697549, 0.0056309206, -0.0030726178, 3.3471957E-4, -0.01810389, 0.0072468654, -0.0061485535, -0.016471354, 0.014414094, -0.019019702, 0.0104323, 0.008693583, 0.018833887, 0.040747028, 0.01951079, -0.003878931, -0.016670445, 0.018276434, -0.015197181, 0.049321156, 0.0050834236, -0.005680693, -0.031031448, 0.021395506, -0.0020273968, 0.014852092, -0.022152048, -0.005103333, 0.0109034795, 0.008408221, 0.0017387167, 0.012025018, -0.024780031, -0.016020086, -0.004960652, 0.0131531935, 0.022802407, 0.015980266, 0.012224108, -0.0033165026, 0.0025665981, -0.009901395, 0.024381852, 0.019006431, -0.017626075, -0.025695844, 0.019962061, 0.003120731, 0.015874086, -0.0010103802, 0.019816061, 0.01030621, 0.024806578, -0.012396652, 0.020121332, 0.012615651, -0.010286301, 0.019816061, 0.01810389, -0.010850389, -0.004180884, -0.001622581, 0.02752747, -0.005912964, -0.0012053222, -0.019139158, -0.014865365, -0.01880734, -0.009556306, -0.012847922, -0.017533166, 0.002339304, 0.024288943, 0.044357184, 0.0032567757, -0.021873321, 0.0018747614, -0.03665905, 0.010299574, 0.0039751576, -0.011460931, -0.01250947, 0.03679178, 0.0077445894, 0.013923007, 0.02422258, -0.0068885037, 0.06413343, 0.0011356409, 0.0055877846, -0.022019321, -0.0015504111, 0.006603142, -0.012005109, -0.0038822491, -0.0058797826, 0.009377125, -3.5877625E-4, -0.009562942, 0.015502452, 0.0329958, -0.015104272, 0.075707175, 0.013206284, -0.0058864187, 0.01463973, -0.015290089, 0.012748377, 0.014493731, 0.022032594, -0.009211217, -0.016816443, 0.012336926, -0.008813038, -7.3870574E-4, -0.01835607, -0.001232697, -0.0054086037, 0.019709881, 0.014945, -0.011228659, -0.02346604, 1.7586257E-4, -0.0018001028, 0.01880734, 0.015661724, -0.0034342974, -0.02371822, 0.020652238, -0.011593658, -0.006762414, -0.040136483, 0.008381677, -0.0312969, -0.010624754, 0.002296168, 0.027315108, -0.009616032, 0.005269241, 0.007014594, 0.023399677, 9.6060784E-4, -0.014493731, 0.0058200555, -0.026067479, -0.005747056, 0.017665893, -0.0096823955, -0.009164763, -0.021926412, -0.008879401 ], + "id" : "a27b658b-2648-4e77-a654-e1a9b9693231", + "metadata" : { + "source" : "movies.csv" + } + }, + "3e253a76-1c13-4b1c-a8c6-f1d7751735eb" : { + "text" : "166,Village Roadshow Pictures-Warner Bros. Pictures-Dark Horse Entertainment-Jerry Weintraub Productions-RatPac Entertainment-Beagle Pug Films-Riche Productions,6/29/16,180000000,356743061,109,Released,Human. Nature.,5.883,5757,Alexander Skarsg��rd-Christoph Waltz-Samuel L. Jackson-Margot Robbie-Djimon Hounsou-Jim Broadbent-Casper Crump-Simon Russell Beale-Yule Masiteng-Osy Ikhile-Mens-Sana Tamakloe-Sidney Ralitsoele-Antony Acheampong-Edward Apeagyei-Ashley Byam-Charles Babalola-William Wollen-Mimi Ndiweni-Matt Cross-Madeleine Worrall-Rory J. Saper-Hadley Fraser-Genevieve O'Reilly-Ben Chaplin-Paul Hamilton-Christopher Benjamin-Bentley Kalu-Abi Adeyemi-Joy Isa-Alex Ferns-Ian Mercer-Charlie Anson-Liv Hansen-Alicia Woodhouse-Miles Jupp-Teresa Churcher-Matt Townsend-Faisal Mohammed-Ella Purnell,africa-animal attack-feral child-tarzan-jungle,/eJrfz178xBGlxjDGxnBXTzWWa4w.jpg,/sIZUWHQvrDzVcgBbJcjs3LUtbUp.jpg,278927-47933-290595-68735-297761-44507-308531-291805-302699-246655-209112-283366-188927-43074-324668-294272-241259-262504-299687-332567-333484\r\n14,American Beauty,Drama,en,Lester Burnham a depressed suburban father in a mid-life crisis decides to turn his hectic life around after developing an infatuation with his daughter's attractive friend.,27.872,Jinks/Cohen Company-DreamWorks Pictures,9/15/99,15000000,356296601,122,Released,Look closer.,8.031,10841,Kevin Spacey-Annette Bening-Thora Birch-Wes Bentley-Mena Suvari-Chris Cooper-Allison Janney-Peter Gallagher-Scott Bakula-Sam Robards-Barry Del Sherman-John Cho-Hal Fort Atkinson-Kent Faulcon-Ara Celi-Sue Casey-Brenda Wehle-Lisa Cloud-Amber Smith-Joel McCrary-Marissa Jaret Winokur-Dennis Anderson-Matthew Kimbrough-Erin Cathryn Strubbe-Alison Faulk-Krista Goodsitt-Lily Houtkin-Carolina Lancaster-Mona Leah-Chekesha Van Putten-Emily Zachary-Nancy Anderson-Reshma Gajjar-Stephanie Rizzo-Heather Joy Sher-Chelsea Hertford-Elaine Corral Kendall-David C. Fisher-Tom Miller-Bruce Cohen,adultery-parent child relationship-midlife crisis-coming out-first time-virgin-estate agent-cheerleader-rose-satire-loneliness-dark comedy-suburbia-coming of age-marijuana-love affair-exercise-extramarital affair-quitting a job-retired army man-closeted homosexual-gay-teenager,/wby9315QzVKdW9BonAefg8jGTTb.jpg,/DztBnZaqmla2sGUW9s8AyOmskT.jpg,317927-73-350556-185-500-77-627-489-453-641-745-629-141-274-24-115-37165-1422-13241-510-38", + "embedding" : [ 0.018356843, -0.033975072, -0.014316711, -0.03863885, -0.016716387, 0.032592207, -0.0011244244, -0.0069821076, -0.028552076, -0.03863885, 0.015265735, 0.035574857, 0.013652394, -0.0015735163, 0.006148322, 0.02430858, 0.019238079, -0.023427345, 0.020119317, -0.024281466, -0.007178691, 0.004829856, -0.026220188, 0.0061279857, 0.02102767, 0.0039689555, 0.02285793, -0.011103585, -0.0057754912, -0.018167038, 0.003074161, -0.017475605, -0.006256782, -0.018980488, -0.011578097, -0.007232921, 0.0070498954, -0.014628532, 0.023535805, -0.0018607656, -0.0029911215, 0.009483465, -0.014303152, -0.017570509, -0.0025488082, 0.011645884, 0.03204991, -0.0136998445, -0.0028470731, 0.025352508, 0.020065086, 0.03793386, -0.017367145, -0.02161064, -0.006111039, 0.0066804537, -0.008317521, 0.008907272, 0.009944419, -0.0030826344, 0.019251637, -0.016228316, -0.03712041, -0.022085153, -0.027331902, 0.0019760043, -0.021691985, -0.005331483, -0.0055043413, -0.001086294, 0.033758152, 0.010513835, 0.0076057524, -9.6427655E-4, 0.017909445, -0.01880424, -0.023739167, -1.110814E-5, 0.014004888, 0.008575113, 0.023468018, 0.006009358, -0.0054229964, 0.022668125, 0.019007603, 0.024267908, -0.011876362, 0.026071055, -0.027142096, 0.013489704, -0.0026776046, 0.02922995, -0.010303693, 0.0039045573, 0.003058909, 1.8303937E-6, -0.018194152, 0.036334075, -0.027697954, -0.018831355, -9.863075E-4, 5.5119675E-4, 0.017204456, -0.01799079, 0.015428425, -0.014682762, -0.0047519007, -0.010601958, 0.0091241915, 0.006080535, -0.0036944163, -0.006012747, 0.026681142, -0.030124744, -0.010127446, -0.016391007, 0.017923003, -0.0056060227, -0.004229937, -0.019983742, 0.018058578, 0.032077022, 0.011205266, -0.046285275, 0.034327567, 0.016838403, 0.0076328674, -0.0073752753, -0.005500952, -0.009022511, 0.028768996, -0.007476956, 0.029853595, -0.0013921849, -0.03896423, 0.031426262, -0.020837864, 0.019522786, -0.019116063, -0.004463804, 0.013272784, 0.04148592, -0.018438188, -0.010581622, -0.019441443, 0.01588938, 0.006246614, -0.002247154, 0.01983461, 0.004738343, 0.03251086, 0.017136669, 0.015157275, 0.019495672, 0.013028748, 0.0030114576, 0.004165539, 0.0050671124, -0.018438188, -0.0020709068, -0.0034164877, 0.015699575, -0.0050671124, -0.0022844372, 0.01588938, 0.022817258, 0.018817797, -0.023766281, -0.0028284315, -0.014601418, -0.01275082, 0.022763027, 0.0022437647, 0.026382877, -0.021298818, 0.01334735, 0.0032215987, 0.009103855, -0.036876377, -0.0090699615, -0.0026301532, 0.009625819, 0.030368779, 0.040889394, -0.0025572816, 0.008249734, 0.011056134, -0.03820501, 0.0058059953, -0.0023098574, 0.0042943354, 0.015902936, -0.0050501656, -0.027955547, -0.64728886, -0.018492417, -0.009476686, -0.003948619, 0.031317804, 0.010527392, 0.0070498954, 0.011964486, -0.034625832, -0.019902397, -0.023373114, 0.02901303, 0.024769535, -0.008636122, -0.018872028, -0.009185201, -0.014276038, -0.036605224, 0.016892634, 0.0042604413, -0.01616053, 0.019251637, -0.0013447336, -6.7448517E-4, 0.023942528, 0.0024928837, -0.0071990276, -0.021949578, 0.011700114, 0.0030843292, -0.01178146, 0.014574302, 0.0052026873, 0.0036062927, 0.03527659, -0.0077955574, -0.003738478, 0.038991343, 0.030124744, 0.03798809, -0.03251086, 0.0027809804, -1.5580523E-4, -0.006202552, -0.031534724, 0.016865518, 0.019238079, -0.008195504, 0.008222618, -0.019427884, -0.0032775234, 0.012689811, 0.0027894538, -0.0095105795, 7.3168083E-4, 0.009734279, 0.010154561, -0.041675728, 0.028768996, -0.00572804, -0.01280505, 0.005982243, 0.02128526, 8.126021E-4, -0.017150225, 0.03251086, 0.009049625, -0.014574302, 0.007571859, -0.027331902, -4.787489E-4, 0.0095105795, -0.008588671, -0.021868233, 0.016092742, -0.002582702, 0.047613908, 0.007436284, -0.0037893187, 0.014004888, -0.0044061844, -0.010798542, 0.016702829, 0.016594369, 0.018370401, -0.018031463, -0.022939274, 0.008012477, 0.017706083, 0.0050535547, -0.0048603606, 0.02037691, 0.0096190395, 0.017733198, -0.017692525, 8.2404126E-4, 0.014303152, 0.012357653, 0.011503531, -0.06306945, -0.01616053, -0.014506515, 0.005304368, -0.02052604, 0.011035797, 0.020661617, -0.009625819, -0.017678969, 0.023725608, -0.006199163, 0.0046705557, 0.015184389, -0.030016284, -0.002955533, -0.005904287, -0.02307485, 0.022112267, 0.0016353723, 0.0032029573, -0.0025115253, -0.002442043, 0.005345041, 0.014655648, -0.013821862, 0.008493768, 0.019061832, -0.021339491, 0.002042097, 0.0075244075, 9.651239E-4, 0.013211775, 0.0067685773, 0.017638296, -0.020322679, 0.0043214504, 0.0076870974, 0.020946324, 0.004155371, 0.0031860103, -0.008344635, -0.0189127, 8.9225237E-4, -0.01799079, -0.016418122, -0.0051416783, -0.006056809, -0.030667044, -0.008310742, -0.010981567, 0.008995395, -0.01690619, 0.014492958, -0.012289866, 0.0012981298, 0.003555452, 0.009713942, -0.034164876, -0.020932766, 0.0050128824, -0.013062643, 0.0072803725, 0.016770616, -0.019007603, -0.014289595, 0.025949037, -0.011903477, 8.693741E-4, 0.02307485, -0.001982783, -0.014343825, 0.00610426, -0.018072136, -0.017353589, 0.019156735, -0.015306408, 0.031426262, -0.0048264666, 0.012554237, -7.1515766E-4, -0.006948214, 0.0063347374, 0.003501222, -0.02074296, -0.006514374, 0.027765742, 0.020065086, 0.023698494, 0.0030673824, -0.014099791, 8.388698E-4, -0.025732119, 0.0013489703, 0.0039248937, 0.006938046, -0.0121000605, 0.013598164, 0.014289595, 0.017380703, 0.016716387, 0.0125339, 0.034110647, 0.01788233, 0.014262481, -0.010622294, 0.009395341, -0.025515199, -0.0105884, -0.026681142, 0.004721396, -0.007917575, 0.022396974, -0.012540679, -0.02430858, 0.009137749, 0.0069617718, 0.008785254, -0.015699575, 0.012140733, -0.0032436296, -0.0066702855, 5.952586E-4, -0.008920829, 0.018560205, 0.0025894807, -0.018844912, 0.0035215584, 0.013876092, -0.014560745, 0.0025589764, -7.9989195E-4, -0.023305327, -0.0018268719, 0.011469637, 0.0014684458, -0.00259287, -0.005277253, 0.032565095, -0.01847886, 0.03096531, -0.0018556815, -0.008398865, 0.011706893, 0.026274417, -0.0025250828, -0.005500952, -0.015170832, -0.0017692526, 0.03335143, -0.012296644, 0.027535263, -0.010344366, 0.018356843, 0.01647235, 0.01172723, 0.0019658362, 1.219115E-4, 0.009835959, 0.011083249, 0.025379622, 0.013442252, 0.0059619066, -0.008263291, 0.027575936, 0.001696381, 0.0035113902, -3.4063196E-4, -0.03359546, 0.010988346, -0.0041994327, -0.0060974816, -0.015686017, -0.0064398083, 8.5835863E-4, 0.016919749, -0.013760854, 5.72804E-4, -0.009307218, 0.004870529, 0.024457714, 0.018519532, -0.009991871, -0.022871487, 0.0096190395, 0.021420836, -0.0256101, -0.023427345, 0.0056128013, -0.016119856, -0.027304787, -0.014764108, -0.017218014, 0.02966379, -0.025162702, 0.01129339, -0.024918668, -0.012452556, 0.023373114, -0.02139372, 0.010242685, 0.009591925, 0.0033402268, 0.011225603, 0.004911201, 0.004928148, 0.011422186, -0.009164864, -0.004684113, -0.01599784, -0.006080535, 0.0042265477, 0.0014252312, 0.0056331377, -0.047966402, 0.019360097, -0.021041226, 0.0035351159, -0.008039592, -1.3345655E-5, 0.004911201, -0.010324029, -0.0031673687, -0.030368779, -0.021732658, -0.012147512, 0.09083519, 0.037201755, 0.01264236, 0.0052603064, -0.004792573, -9.634292E-4, -0.0245255, -0.016675714, 0.0017743367, 0.0024505164, 0.027318344, -0.022085153, 0.023861185, 0.008561555, 0.022342745, -0.017475605, -0.0033131118, 0.008771697, -0.010493498, -6.9185573E-4, -0.0032521032, -0.025569428, 0.021041226, 0.02977225, 0.008046371, -0.013462588, 0.02463396, -0.0021810613, 0.0022963001, 0.009869853, -0.009049625, 0.0035046113, 0.0049213693, 0.024050988, 0.0057314294, 3.580025E-5, 0.009280102, 0.0072125853, 0.040075943, -0.0019353318, 7.143103E-4, 0.012974518, -0.0027250557, -0.0039859023, 0.0017218014, -0.03009763, -0.005382324, 0.013808304, 0.030287435, -0.02653201, 0.022613894, 0.009219094, -0.024891553, -0.0025335562, 0.029148605, 0.0020200661, -0.006192384, 0.0011320505, -0.028172467, -0.005358598, 0.004192654, -0.036713686, 0.015794476, -0.01334735, 0.006012747, -0.018953372, -0.021298818, -0.012283087, -0.023088407, 0.024173006, -7.719296E-4, -0.029040145, -0.012601688, -0.015414868, 0.009049625, -0.009056404, 0.02463396, -0.012601688, 0.0038943894, 0.007904017, -0.035629086, -0.03424622, -0.002021761, -0.007382054, -0.013937101, 0.010954453, -0.005250138, 0.013374465, -0.0057212613, 0.001859071, -0.0062500034, 0.0024556005, -0.007978584, -0.03863885, 0.035249475, -0.013435474, 0.0087378025, 0.030694159, 0.011842469, -0.0013243974, 0.013266005, -0.0036605226, -0.019671919, -0.010934116, -0.0010057964, -0.01280505, -0.015604672, -0.010744312, -0.021149686, -0.023115521, -0.03210414, -0.029582445, -0.008642901, 0.0035351159, 0.004690892, -0.0037011951, 0.018329728, 0.011632327, 7.0160016E-4, 0.0014032003, 0.0019251637, 5.43147E-4, 0.023739167, 0.021895347, -0.032158367, 0.030694159, -0.011734009, -0.009883411, -0.0129270675, 0.034137763, -0.0018929647, 0.003718142, -0.012228857, -0.0035622308, -0.034137763, -0.024606846, 0.0064635337, -0.0059958003, -0.014262481, 0.015279292, -0.014303152, -0.002155641, -0.0063991356, -0.013259226, -0.0075921947, -0.028226696, 0.008493768, -0.012133954, 0.008778475, 0.03842193, -0.0128186075, -0.0019217744, -0.021407278, 0.012574573, -0.005792438, -0.03554774, -0.0016565559, 0.008609007, 0.014370941, 0.01809925, 0.02933841, -0.013266005, 0.03516813, 0.008012477, 0.011035797, 0.022979947, -0.011761123, -0.0049417056, -0.03777117, -0.0025572816, 0.019061832, 0.017258685, 0.009490244, 0.0063347374, 0.006629613, 0.026992964, 0.0068973736, 0.010961232, -0.016716387, -0.019034717, -0.022722354, 9.6003985E-4, -0.014465842, 0.0043858485, -0.03009763, -0.013333792, 0.036171384, -0.011700114, -0.004318061, -0.020770077, 0.03096531, -0.016987536, 0.02253255, -0.0076599824, -0.0033690366, -0.0027928432, -0.012350874, -0.011652663, -0.011639106, 0.0032012626, -0.010995125, 0.01075109, 0.010981567, -0.0057992167, -0.0049586524, 0.03316162, -0.008032814, -0.027413247, 0.020214219, -0.009259766, -0.014059118, -0.034842752, -0.00664656, -0.031372033, 0.0076057524, -0.006348295, -0.008486989, 0.018004349, -0.013374465, -0.02264101, 0.011611991, -3.9104887E-4, 0.040509783, 0.0034808859, 0.04799352, 0.028389387, -5.397576E-4, -0.019088946, 0.013008413, -0.017624738, -0.0012786408, 0.015686017, 0.012249193, -0.0035181688, -0.0021437781, -0.001972615, 0.004548538, -0.045417596, -0.04354666, 0.022342745, 0.02264101, 0.023481574, -0.026545567, 0.0080192555, -0.03156184, 0.005480616, -0.0128728375, 0.010459605, 0.010269799, -0.035357937, -0.01864155, 0.0034571602, 0.010818878, 0.0016599452, 0.0056907567, -0.030667044, 0.007463399, -0.015374195, 0.0058670044, -0.016445236, -0.007504071, 0.034164876, -0.026735373, 0.006663507, 0.017678969, 0.016187644, -0.0039689555, -0.009436014, -0.006555047, 0.034056418, -0.0049586524, 0.018777125, -6.095575E-5, 0.0054636686, 0.008642901, 0.016133415, -0.02631509, -0.023373114, -0.023617148, -0.007483735, 0.03156184, 0.019170292, -0.00929366, 0.013272784, -0.016540138, -0.0071312403, 0.021339491, -0.015374195, 0.0035961245, -0.03706618, 0.01567246, -0.009551252, 7.071079E-4, -0.0077616638, 0.0013167713, 0.0021878402, -0.0033249746, 0.024864439, -0.01367273, -0.002464074, -0.015116602, -0.015563999, -0.041079197, -0.010981567, -0.017516278, -0.004419742, 0.009829181, 2.4827156E-4, -0.004450246, -0.003921504, 0.0017243434, -0.009076741, 0.0063144015, -0.012194963, -0.005409439, 0.0245255, -0.005846668, -0.004928148, 0.015794476, 0.020200662, -3.5185926E-4, -9.2784077E-4, -0.0027521707, 0.0047247857, 0.040618245, -0.040699586, 0.011198487, 0.0011286611, -0.014587861, -0.02005153, 0.017584065, 0.044387225, 0.014899682, 0.007639646, -0.02781997, -0.013496482, -0.01658081, 0.047912173, -0.012798271, -0.004229937, 0.0316703, 0.019319424, 0.027033636, 0.030504355, -0.007829451, -0.0150216995, -0.003333448, -0.00929366, -0.016540138, -0.008432759, -0.007232921, 0.025081359, -0.014872568, -0.0070634526, -0.04888831, 7.308335E-4, -0.01161877, -0.020607386, -2.965701E-5, 1.621603E-4, 0.03939807, 0.013374465, -0.006948214, 0.01080532, 0.007490514, 0.025108473, -0.010249463, -0.017516278, 0.013577827, 0.0077684424, 0.029907824, 0.018261941, -0.02296639, -0.010825656, 0.008317521, 0.014126905, -0.0068194177, 0.016648598, -0.023088407, -0.017977232, -0.002291216, 0.006907542, -0.006890595, 0.0033368375, 0.020648059, -0.035195246, -0.0060974816, 0.012459334, 0.0067956923, -0.008697131, 0.0058805617, 0.008263291, -0.014384498, -0.0031148335, -0.014506515, -0.0073481603, -0.008331078, -0.019671919, 0.028172467, 0.00610426, -0.01491324, 0.031643182, 0.0154690975, -0.0050128824, 0.0016557085, -0.015848707, 0.008866599, -0.0096190395, -0.023847627, 0.0018895753, 0.028389387, -0.03516813, 0.016824847, -0.02074296, 0.009537695, -0.0103375865, 0.013082978, -0.0032436296, 0.049457725, 0.013259226, -0.05252172, 0.011625549, -0.019346539, 0.0058263317, -0.006829586, 0.008500547, -0.027006522, -0.0082971845, -0.011856026, -0.0021132738, -0.034327567, -0.020905651, 0.007849787, -0.01264236, -0.022613894, 0.022885045, 0.17635584, -0.0055585713, 0.018817797, 0.04463126, 0.011306947, 0.007917575, 0.024945782, 0.005829721, -0.0041045304, 0.010351145, -0.0041723177, 0.010784984, -0.012466113, -0.004318061, 0.005850057, -0.011137479, -0.030829735, -0.012994855, -0.018560205, -0.023535805, 0.002977564, -6.6474074E-4, -0.010988346, -0.01583515, 0.00810738, -7.498987E-4, -0.024457714, 0.012079724, 0.018451745, -0.010757869, -0.01583515, -0.0065719937, -0.01809925, 0.009741058, -0.025433853, -0.021637756, -0.0069414354, 0.022125825, 0.020092202, 0.02399676, 0.017570509, 0.008534441, -0.015035258, -0.013848977, 0.010656188, 0.011123922, -0.017895889, 0.0038909998, -0.0037079738, 0.022030924, -0.03451737, 0.012866059, 0.023481574, 0.037852515, -0.01820771, 0.004155371, 0.011388293, -0.007639646, -0.014181135, 0.010052879, 0.01378119, 0.026003268, -0.03053147, 0.034598716, -0.014506515, 0.01231698, -0.027440362, -0.009680049, 0.017584065, -0.027250556, -0.019739706, -0.031426262, -0.016187644, -0.0066058873, -0.006622834, -0.022763027, 0.0028453784, 0.015984282, 8.121784E-4, 0.013469367, -0.01799079, -0.023956086, -0.0017912835, 0.005029829, -0.015930051, -0.010385038, 0.0140320035, -0.004504476, -0.013686287, -0.031046655, -0.0023471406, -0.014465842, -0.009313996, -0.0090699615, 0.004612936, 0.012798271, 0.029636675, 0.013659172, -0.016309662, -0.007924354, -0.02048537, 0.02825381, 0.023440901, 0.0049484842, -0.020295564, -0.014533631, -0.0045078658, 0.009700385, 0.024023874, -0.015319965, 0.0033470055, -0.033866614, 0.004084194, -0.018790683, -0.0028267368, 0.012703369, 0.0024352644, -0.03063993, 0.022342745, -0.020322679, -0.0072397003, -0.028606305, 0.014004888, 0.0075244075, -0.0043858485, -0.038340583, -0.029853595, 0.0061889947, 0.014764108, -0.039343838, 0.014343825, -0.015360638, 0.005056944, -0.0039316723, 0.0018472081, 0.0049315374, 0.011008683, 0.006704179, 0.021136127, 0.017299358, 0.0012566099, -0.004816299, 4.2748463E-4, -0.0021386943, 0.023468018, -0.030883964, 2.474242E-4, 0.004206212, -0.025162702, -0.036930606, -0.019102504, -0.009429235, 0.023481574, 0.0077006547, 0.043411087, 0.0037520356, -0.03495121, -0.043031476, -0.013503261, 0.031643182, -0.040645357, 0.014208251, 0.021298818, -0.011381513, -0.02642355, 0.0048874756, -0.1742951, 0.01885847, 0.009300439, -0.023684938, 0.014154021, 0.015143718, 0.01605207, -0.0013565965, 0.0071244617, -0.014357382, 0.008758139, 0.0057449867, -0.057266843, 0.0066160555, -0.0046976707, 0.016973978, -0.020309122, 0.034815636, 0.023088407, -0.006704179, 0.042001106, 0.0019929511, -8.981838E-4, -0.0073752753, 0.0032080412, 0.02253255, 0.031209344, -0.0055246777, -0.005958517, -0.0099511985, -0.04446857, -0.0070431167, 0.015130159, 0.009754615, -0.014736992, 0.0038571062, -0.029094376, -0.013035527, -0.011795017, -0.015455539, 0.050027143, 0.0032876916, 0.018817797, 0.011923813, 0.00923943, 0.027155655, 0.03690349, -0.008941165, 0.013577827, -0.022993505, -0.013286341, -0.033866614, 0.019210964, -0.007436284, -0.009083519, 0.02367138, 3.183892E-4, 0.01291351, 0.0070092226, -0.013625278, -0.0439805, -0.0041350345, 0.0072261426, -0.0032402403, -0.019007603, -0.03625273, -0.0016684188, 0.016784174, -0.021000553, 0.014560745, -0.022329187, 0.0123779895, 0.001264236, -0.005219634, -0.003187705, -0.020783633, -0.013604942, 0.009164864, 0.002177672, 0.02749459, -0.010486719, 0.04365512, -0.0050772806, 0.010202012, 0.006880427, -0.008941165, 0.0056094117, -0.011788239, 0.0014413308, 0.0022895213, 0.004924759, -0.025298279, -0.014764108, -0.014370941, 0.0013794746, -0.0020946322, -8.8208425E-4, 0.0111645935, 0.0011566235, -0.016743502, -0.0015658902, -0.0072939303, -0.0147505505, 0.016594369, 0.032348175, 0.010330808, 0.008968281, 0.019549903, 0.01614697, 0.013421916, -0.013415137, 0.0065584364, 0.014547188, 0.009307218, -0.010873108, 0.018655108, -0.0064364187, -0.027318344, 0.012547458, -0.0011362872, 0.038991343, 0.008751361, -7.7616633E-4, -0.020756518, -0.003079245, -0.013496482, -0.08297184, -0.006019526, -0.002209871, 0.027291229, -0.04078093, 0.037960976, -0.0073346025, 0.040482666, -0.00464683, 0.030883964, 0.010500276, -0.014587861, 0.016838403, -0.0012947404, 0.030395895, 7.520171E-5, -0.012960961, -0.0071719126, 0.0095648095, 0.020037971, -0.008853042, -0.01869578, 0.0018489028, -0.021475065, -0.01264236, 0.006066977, -0.017095996, 0.0098969685, 0.0031860103, 0.017163783, 0.0070973467, -0.026382877, 0.009924083, -0.037255984, -0.021678427, -0.027169213, -0.032131255, -0.020498926, 0.020932766, -0.0517625, 0.018777125, 0.01302197, 0.021122571, -0.007666761, -0.0075379647, -0.0061245966, -0.026342206, 0.0340293, -0.01205261, -0.014248923, -0.0043756803, -0.017719641, -0.019061832, -0.01296774, 0.018411072, 0.011917034, 0.022180054, 0.0022335965, -0.0041214773, -0.008148052, -0.012811829, -0.002259017, -0.017285801, 0.019766822, 0.014194693, 0.004626494, -0.0068228072, 0.0058432785, 0.014045561, -0.012730484, -0.023210425, 0.02868765, -0.018248383, -0.009117412, -0.025162702, -0.0075515225, -0.044983756, -0.016038511, 0.016594369, -0.02081075, -7.571011E-4, -0.03118223, 0.014506515, -0.008209061, 0.0046332725, 0.014953912, 0.013896428, 0.023793397, -0.012744041, -0.030829735, -0.012357653, 0.010730754, 0.010324029, -0.016133415, 0.004494308, 0.0074701775, 0.00572804, 0.0053687664, 0.0045417594, 0.009266545, -0.024010316, -0.0020827695, -0.073047765, 0.034164876, -0.013611721, -0.008954722, -0.013476146, 0.0041960436, 0.009334332, 0.0021369995, 0.0013693066, 0.004673945, -0.023278212, 0.024240794, -0.006826197, 0.0042401054, -0.003691027, 0.005507731, 0.0037893187, -0.011015462, -0.010093552, 2.616172E-4, -0.008758139, 0.004856971, 0.037310217, -0.009415678, 0.0106697455, 0.013266005, -0.0063686315, 0.022030924, -0.011090027, 0.0035791777, 0.023901856, -0.028958801, -0.010127446, 0.011815353, -0.009530916, -0.013476146, -0.009442792, 0.0027199716, 0.02264101, 0.0045112553, -0.014831895, -0.0147505505, -0.007029559, -0.0018353453, 0.008337857, 0.011537425, -0.019956626, 0.011252717, 0.013306677, 0.007775221, 0.03858462, 0.018668665, -0.0012811829, -0.018438188, 0.015089488, -0.019156735, 0.03177876, 0.0096190395, -0.01102224, -0.0041858754, 0.015238619, -0.0069956654, 0.02792843, -0.036876377, 0.004436689, 0.008832705, 0.02620663, -0.015170832, 0.0014176051, -0.017326474, -0.015374195, 0.0027453918, 0.01378119, 0.03701195, 0.006100871, 0.009334332, -0.0015218284, -4.9103535E-4, -6.9270306E-4, 0.020295564, 0.013693065, -0.011191709, -0.028172467, 0.021122571, -0.0011634022, 0.027169213, -0.019116063, 0.011625549, 0.002236986, 0.009524138, -0.018872028, 0.019319424, 0.02912149, 0.011930592, -0.01247967, 0.0114967525, -0.014357382, -0.02664047, -5.0586386E-4, 0.02712854, -0.0026013437, 0.003372426, -0.026735373, -0.017706083, -0.004477361, 0.002669131, -0.01616053, -0.022993505, 0.0074159475, 0.030368779, 0.032456633, -0.008344635, -0.0063076224, 5.622122E-4, -0.041350346, 0.0098427385, -0.011205266, -0.0052874214, -0.009774951, 0.027955547, 0.010452826, 0.008981838, 0.033541232, 0.006748241, 0.05477226, 8.7276346E-4, 0.024484828, -0.02285793, 0.0018065356, -0.01842463, -0.012547458, -0.020471811, -0.03139915, 0.015035258, -0.026301533, 0.004263831, 0.006771967, 0.024620403, -0.030070515, 0.071583554, 0.035141017, 0.005846668, 0.013828641, -0.014126905, 0.022613894, -0.004043522, 0.019210964, -0.022030924, -0.009944419, 0.008927608, -0.018668665, 0.019441443, -0.044170305, -0.011476416, 0.0048332456, -0.0017150226, 0.0044027953, 0.0049044224, -0.011428965, -5.2450545E-4, -0.002414928, 0.018831355, 0.0063584633, 0.003096192, -0.010791763, 0.028985916, -0.0014159104, -0.008893714, -0.034354683, -0.0059619066, -0.028985916, 0.001696381, -0.0043214504, 0.029148605, -0.01788233, -0.017584065, 0.0028114847, 0.015808035, 0.009591925, -0.006002579, -0.0014735298, -0.033297196, -0.015753804, 0.023847627, 0.01367273, -0.0025572816, -0.026057497, -0.033893727 ], + "id" : "3e253a76-1c13-4b1c-a8c6-f1d7751735eb", + "metadata" : { + "source" : "movies.csv" + } + }, + "89679e33-4430-405f-a4d5-0a02038cb1c1" : { + "text" : "Jackson-Bob Odenkirk-Jonathan Banks-Catherine Keener-Eli Fucile-Nicholas Bird-Bill Wise-Brad Bird-Michael Bird-Sophia Bush-Phil LaMarr-Paul Eiding-Isabella Rossellini-John Ratzenberger-Barry Bostwick-Adam Rodr�_guez-Jere Burns-Kimberly Adair Clark-Usher-Adam Gates-Michael B. Johnson,married couple-cartoon-sequel-superhero-parenting-family-super power,/9lFKBtaVIhP7E2Pk0IY1CwTKTMZ.jpg,/mabuNsGJgRuCTuGqjFkWe1xdu19.jpg,9806-363088-383498-284054-404368-12-351286-299536-863-348350-354912-301528-324857-862-10193-2062-127380-62211-585-260514-150540\r\n337339,The Fate of the Furious,Action-Crime-Thriller,en,When a mysterious woman seduces Dom into the world of crime and a betrayal of those closest to him the crew face trials that will test them as never before.,111.317,Original Film-One Race-Universal Pictures,4/12/17,250000000,1236005118,136,Released,Family no more.,6.892,9541,Vin Diesel-Jason Statham-Dwayne Johnson-Michelle Rodriguez-Tyrese Gibson-Ludacris-Charlize Theron-Kurt Russell-Nathalie Emmanuel-Luke Evans-Elsa Pataky-Kristofer Hivju-Scott Eastwood-Corey Maher-Tego Calderon-Don Omar-Patrick St. Esprit-Eden Estrella-Janmarco Santiago-Oren Hawxhurst-Celestino Cornielle-Olek Krupa-Alexander Babara-Andre Pushkin-Roberts Jekabsons-Nick Gracer-Gary Weeks-Friday Chamberlain-Joe Fishel-Michael W. Broomer-Sam Hadid-Matthew Cornwell-Jason Rhymer-Jeremy Anderson-Peter Hansen-Todd Cole-Jordan Baumer-Scott Proctor-Carrie Lee Consolino-Madalyn Defler-Taylor Donaldson-Isabel Downing-Anna Duvall-Jaci Grace Edwards-Reese Edwards-Caylin Ingram-Caroline Kimmel-Katherine Kimmel-Jordan Price-Anna MacKenzie Rogers-Marina Lyn Serra-D66-James Ayoub-Carlos De La Hoz-Alejandro Bosch-Lisandra Delgado-Santiago Solis Chavez-Joyvan Guevara-Brenda Nu��ez L�_pez-Anita Farmer Bergman-Karin Boesler-Apollo GT-Yassie Hawkes-Myrom Kingery-Gary Lavard-Helen Mirren-Pauline Nowakowski-Charles Poole-Oleg Prudius-William Cowboy Reed-Mark Salas-Ramona Schwalbach-Jon Komp Shin-Doug Stroup-Branislav R. Tataloviۈ-Alan Tuskes-Zachary Vazquez-Gary Lee Vincent-Megan Marie Wilson-Yuliya Zelenskaya-�_zcan �_zdemir-Zac Henry-Tait Fletcher-Scott Hunter-Tyrone C. Wiggins-Mya Levels,new york city-submarine-sequel-street race-betrayal-rescue mission-criminal mastermind-mysterious woman,/dImWM7GJqryWJO9LHa3XQ8DD5NH.jpg,/jzdnhRhG0dsuYorwvSqPqqnM1cV.", + "embedding" : [ 0.0031024315, -0.024234023, -0.018583955, -0.009802526, -0.036677785, 0.030278916, 0.0034785355, 0.003356004, -0.013063228, -0.04266822, 0.018325279, 0.007229363, 0.026507664, 0.0061912485, 0.0019060468, 0.017549245, 0.018475039, -0.017522017, 0.009734454, -0.03300184, -0.0035670304, 0.0034989573, -0.020326627, 0.009509812, 0.008590825, 0.016814055, 0.021470256, -0.012852201, -0.02234159, -0.0080190115, 0.008114314, -0.005214399, -0.0029271434, -0.04076217, -0.018570341, -0.007025144, -0.0020592113, -0.031041333, 0.032402795, 0.020871213, 0.0157385, -0.005524132, -0.011150374, -0.028754078, -0.015861033, 0.0049455105, 0.002494879, -0.015466209, -0.022314362, 0.026888873, 0.027773825, 0.022681957, -0.019019624, -0.027841898, 0.0022515177, -0.0012227631, -0.009448546, -0.0019588035, 0.009067337, 0.015806574, 0.013498896, -0.010680669, -0.03466282, -0.01912854, -0.02363498, -0.007154483, -0.009305593, -0.009986323, -0.010442413, 0.011477125, 0.017862381, 0.004274991, 0.0013869894, -0.007998589, 0.009829756, -0.035670303, -0.03183098, -0.01680044, -0.019196615, 0.010762357, 0.020190481, -0.006375046, -0.011293327, 0.0037678462, -0.0010695986, 0.007882865, -0.018284434, 0.012164663, -0.027147552, 0.009884214, 0.00199284, 0.05794382, -0.01432258, -0.0018907303, 0.0073723164, 0.04304943, -0.01867926, 0.019291917, -0.02664381, -0.03507126, 0.01791684, -0.004574512, -0.0063886605, -0.010871274, -5.688358E-4, -0.0029850055, -0.008577211, -0.0014618698, 0.025908621, 0.008366184, 0.014472341, 0.008332147, 0.0036623327, -0.038828894, -3.4525825E-4, -0.03076904, 0.012899852, -0.021592787, -0.017821537, -0.013090457, 0.025391266, 0.036405493, -0.01505777, -0.023648595, 0.014281737, 0.028726848, -0.0018583956, -0.019577824, -0.0052041886, 0.010639826, 0.031994358, -0.0011351189, 0.01047645, 0.015248374, -0.024288481, 0.041306756, -0.017930454, -0.0019502942, -0.012375689, -0.03362811, 0.029870477, 0.025214275, -0.0121510485, -0.016024407, -0.013281061, -0.007862443, 0.019291917, -0.0031313626, 0.02631706, -0.0069979145, 0.009904636, 0.033219673, 0.023240156, 0.006375046, 0.015139458, 0.010306267, -0.002457439, -5.2118464E-4, 1.7114003E-4, -0.011858334, 0.0036759474, -0.004942107, 4.2077684E-4, -0.015969949, 0.011626885, 0.020544462, 0.014908009, -0.0063307984, -0.01558874, -0.0011546899, -0.013281061, 0.021048203, -0.029353121, 0.02089844, -0.0018669048, 0.0021204771, -0.012089782, -0.015983563, -0.03368257, -7.3646585E-4, 0.008815466, 0.010707899, 0.03580645, 0.035125718, -0.0054118116, 0.001854992, 0.028454555, -0.026385134, 0.007031951, -0.010251809, 0.011163988, 0.031368084, 0.006548632, 3.8099661E-4, -0.6225693, -0.006361431, -0.0032232613, -0.0062184776, 0.021674475, 0.016745983, -0.005435637, -0.008352569, -0.019033238, -0.0024148931, -0.024302097, 0.006323991, 0.02044916, -0.013321905, -0.021551942, -0.01351251, 0.0037304058, -0.016460076, 6.9094193E-4, -7.802879E-4, -0.010306267, 0.0146084875, 0.013566969, -0.012777321, 0.0076990677, 0.0067630624, -0.0012040429, -0.026861645, 0.017862381, 0.011252483, -0.027147552, 0.0215111, 0.01242334, -0.012477799, 0.038856126, 0.007311051, -0.017671777, 0.048930943, 0.022858948, 0.021034587, -0.019768428, -0.0015188811, 0.0010151401, 4.9055176E-4, -0.019223843, 0.028046116, 0.012852201, -0.002387664, -0.00621167, 0.0024012786, 0.0049455105, 0.0047889426, -0.013880105, -0.012784128, -0.019931804, -3.831239E-4, 0.016405618, -0.029570954, 0.018175518, 0.009387281, -0.028209493, 0.019795658, -0.002574865, 0.016160553, -8.296409E-4, 0.03975469, -0.00532672, -0.0056534708, 0.015697656, -0.029870477, -0.0028828958, -2.2102485E-4, -0.0142136635, -6.3010165E-4, 0.016187783, 0.012484606, 0.034826197, -0.0016728964, -0.007746719, 0.019182999, 0.003689562, 0.0022106739, 0.0047310805, 0.007923709, 0.024465472, -0.005064639, -0.038529374, 0.017317796, 0.016160553, -0.030523978, 0.01794407, -0.011021035, 6.3265435E-4, 0.00984337, -0.008999264, -0.0053709676, -0.012048938, 0.010462835, 0.030006623, -0.06736514, -0.018202746, -0.014240893, 0.031585917, -0.01184472, 0.014880779, 0.008407027, -0.015547896, -0.005639856, 0.012675211, -0.0025680577, -0.018175518, 0.002180041, -0.012505028, -0.009537041, -0.02201484, -0.026439592, 0.0067426404, 0.0025442322, -0.0015767432, 0.0051361155, -0.0043158345, 0.0013818839, 8.6793205E-4, -0.015901877, 0.012872623, 0.0116405, 0.0015512158, -0.006647338, 0.0119196, 0.028400097, 0.0028029098, 0.010387955, 0.012055746, -0.009550656, 0.015615969, 0.01588826, 0.0113205565, -0.014554028, 0.024002574, -0.018529497, -0.016718753, -0.012470992, -0.012743284, -0.009836563, 0.003886974, -0.010510487, -0.028345639, 0.006916227, -0.021497484, -0.015180301, 7.3433854E-4, 0.014513185, -0.0014431498, 0.022736415, 0.016065251, 0.0020728258, -0.020462774, -0.017140806, -8.684638E-5, -0.012409726, 0.011055071, 0.016991045, -0.0014125168, -0.033437505, 0.019782042, 0.009128602, -0.008509138, 0.005602416, 0.0027178186, -0.014485955, 0.009571078, -0.03368257, -3.50736E-5, -0.003158592, 0.0017341622, 0.027460689, -0.007950938, 0.03863829, 0.007746719, -0.0036827547, 0.011245676, -0.018747332, -0.03583368, -0.013247025, 0.012062553, 0.014349809, 0.026997792, -0.008093892, -0.0044383663, 0.012593524, -0.020381086, -0.007603765, 0.0011751119, -0.0036453144, 0.0073178583, 0.010626211, 0.010462835, -0.008951613, -0.0142000485, -0.0073859314, 0.034826197, 0.024193179, 0.022763645, -0.0027756807, 0.014880779, -0.023362687, 0.0073927385, -0.029216975, 0.0054730773, -6.0797785E-4, 0.025377652, -0.0041456516, -0.0074131605, -0.008910769, 0.018352507, 0.017467557, -0.015357291, 0.006967282, -0.01315853, -2.0900568E-5, 0.0062729362, -0.0053607565, 0.0367867, 0.011048264, -0.02310401, 0.015112228, 0.0037848644, -0.010095241, 0.0012933889, 0.0032624032, -0.011157181, 0.024383783, -0.009829756, 0.0040605604, -0.016215011, -0.009394088, 0.021225192, -0.010047589, 0.033219673, -0.021878693, 0.011940022, 0.011824298, 0.0039686617, 0.009979516, 0.019904574, 0.0023893658, 0.02634429, 0.010251809, -0.005987029, 0.026330674, -0.019972647, 0.021374954, -0.0057453695, 0.012784128, 0.010748742, -0.020340241, 0.0033713202, 0.008781429, 0.025214275, 0.019019624, 0.028726848, -0.009965902, 0.020340241, 0.0017852171, 0.0053403345, -0.007031951, -0.017998528, 0.0035976632, 0.0057351585, -0.019632282, -0.02059892, -0.007528885, 0.0032879307, 0.008454679, 0.005731755, -0.021102661, -0.0092511345, 0.016637066, 0.0104900645, 0.031286396, 0.010061204, -0.033709798, 0.014744633, 0.026208144, -0.016841285, -0.018733718, 0.0038903777, -0.022995094, -0.019019624, 0.0027654697, 0.007549307, 0.04658923, -0.0136895, 0.0023757513, -0.007474426, -0.0032521924, 0.0117289955, -0.035969827, 0.015166687, 0.0039005885, 0.012409726, 0.015833803, -0.007277014, -0.012668404, 0.018352507, -0.011504354, -0.0021766373, -0.0058406717, -0.0047412915, -0.01776708, 8.866521E-4, -0.0022413067, -0.053151477, 0.0068924013, -0.019319145, -0.008747393, -0.016691525, 0.00822323, 0.021933153, -0.01594272, -0.019931804, -0.020149637, -0.0372496, 0.0013725238, 0.08408389, 0.034826197, 0.0057079294, -0.0010125873, -0.013954985, 0.002122179, -0.008468294, -0.01950975, -0.018965166, -0.021034587, 0.023580521, -0.013560161, 0.018556727, 0.016242241, 0.007270207, -0.016745983, -0.017889611, -0.018284434, -4.3120055E-4, -0.014390653, -0.038910583, -0.021252422, 0.026194528, 0.03150423, 0.017236108, 0.0037304058, 0.013703115, 0.007998589, 0.012831779, -0.004499632, -0.0059904326, 0.019087696, -0.008985649, 0.018025756, 0.003788268, -0.008046241, 0.028590702, 0.020762295, 0.019523365, 0.007910094, -0.0068685757, -0.0019877346, 0.0067732735, -0.010537716, 0.027664907, -0.017562859, -0.013648656, 0.013526125, 0.02864516, -0.034172695, 0.010775971, -0.002297467, -0.0044349623, -0.024424627, 0.028509013, -0.0044553843, -0.008386605, -0.012205507, 0.0028965103, 0.016677909, 8.994158E-4, -0.025214275, 0.022436894, -0.029516496, 0.0028777902, -0.017249724, -0.008053048, -0.006364835, -0.019210229, -0.0036078743, 0.013825647, -0.010279038, 0.008352569, 0.0040095057, 0.017195266, 0.00266336, 0.03332859, -0.011218447, 0.018202746, -0.007596958, -0.04435643, -0.028046116, 0.0125322575, -0.025418496, 0.0034717282, 0.005629645, -0.0077875624, 0.0053335275, -0.009775297, 0.004370293, 0.0019111523, -0.009836563, -0.026698269, 0.005030602, 0.036950078, 0.012634368, 0.011375015, 0.0042852014, 0.0048706303, -0.00984337, 0.002190252, -0.018720102, -0.006875383, -0.0154253645, -0.016705139, -0.01665068, -0.005268858, -0.0013521019, -0.029870477, -0.015221145, -0.03256617, -0.01738587, 0.009836563, 0.0046902364, 9.947182E-4, 0.009748068, 0.019142156, 0.016922973, -0.022790873, 0.006766466, -0.00149931, -0.016010793, 0.008338954, 0.020830369, -0.023063166, 0.027528761, -0.014649331, -0.0379031, -0.004312431, 0.03191267, 0.004407733, 0.015071385, -0.02092567, -0.022886176, -0.006701797, -0.016922973, 0.0046834294, 0.0057079294, -0.023131238, 0.021742549, -0.026262602, 0.0025016863, 0.016215011, 0.0057487735, -0.0027961025, -0.02899914, 0.0062184776, -0.02416595, 0.013621427, 0.024805838, -0.0028471574, 0.0050986754, -0.016405618, -0.013485281, -0.0137779955, -0.03226665, -0.017494787, -0.002161321, 0.030551206, 0.011620078, 0.03188544, 0.0060653132, 0.020966515, -0.0016592818, 0.017195266, 0.014445112, -0.027283698, -0.008318533, -0.035370782, 0.003512572, -0.0015452594, 0.03155869, -0.0041014045, 0.0013350836, -0.0074812337, 0.027379, -2.844179E-4, 0.010680669, 0.012797743, -0.009434932, -0.0063307984, 0.01644646, -0.030823499, -0.005306298, -0.027011406, -0.011381823, 0.020612534, 0.010959769, -0.0038018825, 0.0013104072, 0.019700356, -4.390715E-4, 0.022600269, -0.031014103, 0.009550656, -0.02351245, -0.0016005688, -0.0080190115, -0.009149024, -0.0059632035, -4.3651875E-4, 0.021647247, -0.0054458478, -0.009788912, -0.01022458, 0.03550693, -0.016092481, -0.018720102, 0.027011406, -0.0090333, -0.016705139, -0.025377652, -0.007903287, -0.026126456, -0.024928369, 0.0057862136, -0.0050884644, 0.004771924, -0.027991658, -0.042640988, 8.97714E-5, -0.0047583096, 0.030687353, 0.0067834845, 0.044901017, 0.02864516, 0.011851527, -0.012743284, -8.7584283E-7, -0.006749448, 0.0065350174, 0.03188544, 0.04258653, -0.023607751, -0.01270244, -0.00840022, 0.0013061526, -0.032103274, -0.02740623, 0.029598184, 0.018856248, 0.015929105, -0.010292653, -0.001035562, -0.010782779, 0.008447872, -0.0023791548, 0.003502361, 0.0041286335, -0.013954985, -0.03689562, 0.0044247513, -0.014976081, 0.018665643, 0.0059461854, -0.025105359, 0.01956421, -0.011191217, 0.0072838217, -0.013328712, -0.011075493, 0.043839075, -0.024111493, 0.017127192, 0.01591549, -0.00621167, -0.0020983533, -0.006647338, 0.0058236537, 0.02778744, -0.01174261, 0.013641849, -0.00761738, 0.0011129952, 0.013240218, 0.022123758, -0.020054335, -0.042341467, -0.020476388, 0.0010313075, 0.02001349, -0.009509812, 0.011415859, 0.01153839, -0.034199927, -0.01029946, 0.0044009257, -2.544232E-4, 0.0017213986, -0.037058994, 0.0137643805, -0.0011980865, 0.006906016, -0.0077126822, 0.0052926834, -0.01791684, 0.017168036, 4.0471587E-5, -0.0052109957, 0.0033866367, -0.020721452, -0.007767141, -0.04914878, -0.021361338, -0.010769164, -0.014063902, 0.008577211, -0.027732981, -0.0055888016, -0.004397522, -0.0012593523, -0.011620078, -0.0046630073, -0.016854899, 0.012055746, 2.1719573E-4, 0.0031330644, -0.010646633, -0.008257267, 0.035289094, -0.018869864, -3.754657E-4, -0.001678002, 0.011967251, 0.016568992, -0.011422666, 0.017140806, 0.0011521372, -0.037004538, -0.0035500121, -1.956038E-4, 0.031259168, 0.020816755, 6.641382E-4, -0.029080829, -0.011225254, -0.02004072, 0.04122507, -0.023716668, 0.009959094, 0.03651441, 0.019482521, 0.03471728, 0.030006623, -0.0048910524, -0.041170612, 7.432732E-4, -0.021715319, -0.03076904, -0.015193916, 0.026711885, 0.009237519, 0.026371518, -3.0717987E-4, -0.038583834, -0.010633018, -0.022532197, -0.018488653, -0.009326015, 0.02001349, 0.033900402, -0.014295351, 0.0058236537, 0.017481172, 0.021701705, 0.014554028, -0.027991658, -5.2756653E-4, 0.024778608, 0.0072633997, 0.045935728, 0.012321231, -0.020435544, -0.01523476, -0.0037304058, 0.0042477613, 0.019945418, 0.02902637, -0.010775971, -0.005575187, -2.9122524E-4, 0.009557463, 0.0047378875, -0.0044451733, 0.025922237, -0.025799705, -0.0030122346, 0.01812106, 0.011783454, -0.0080122035, 0.012600331, 0.021102661, -0.01262756, -0.002585076, -0.0100680115, -0.013219796, 0.0036725437, -0.024261253, 0.022314362, 0.0023553292, -0.004366889, 0.034581136, 0.018515883, -0.008781429, -7.99008E-4, -0.014622102, -0.0018005335, -0.0032300686, 5.901087E-4, -0.016882129, 0.031014103, -0.031041333, 0.008577211, -0.04441089, 0.00963915, 0.0044826134, -0.010149699, 0.022287132, 0.02558187, 0.014363424, -0.046616457, 0.004979547, -0.003601067, 0.0016329035, -0.018570341, -0.006007451, -0.03117748, -0.010394762, 0.022055684, 0.007821599, -0.01827082, -0.028536243, 0.008672513, -0.008808659, -0.002879492, 0.009407702, 0.20106071, -0.01262756, 0.008931191, 0.04451981, -0.0063001653, 0.01953698, 0.016201397, 0.03155869, -0.009026493, 0.0046800254, -0.0053913896, 0.014894394, 0.0039107995, 0.0012670106, 0.027419845, -0.025200661, -0.012893045, -0.013505703, -0.017685391, -0.02074868, -0.005319913, -0.002081335, -0.007964552, -0.01703189, 0.019441677, -0.0021085644, -0.011204832, 0.0044247513, 0.025935851, 0.0074812337, -0.010966577, -0.010027167, 0.0076990677, 0.012355268, -0.0023008708, -0.016541762, -0.003196032, 0.019632282, 0.0137848025, 0.0066030906, 0.006739237, 0.008801851, 0.0072361706, -0.0024727553, 0.0071000243, 0.021388568, -0.009782105, 0.005898534, -0.013716729, 0.0033900402, -0.03722237, -0.0042579724, 0.01146351, 0.018733718, -0.015289218, -0.0066507417, 0.008611247, 0.008869925, -0.0036657364, 0.005987029, 0.02348522, 0.032675087, -0.023743898, 0.01882902, -4.2992417E-4, 0.01938722, -0.031994358, -0.009741261, 0.022287132, -0.024928369, -0.0059359744, -0.0494483, -6.07127E-4, 0.0012533959, 0.011592849, -0.013982215, 0.0062661287, -2.9409706E-5, 0.0074335826, 0.031068563, -0.012470992, -0.0054084077, 0.012341653, -0.010605789, -0.025622714, -0.015561511, 0.02940758, -0.015711272, -0.011851527, -0.032021586, -0.01252545, -0.022613883, -0.0077126822, -0.0035670304, 0.004714062, 0.0066847783, 0.01611971, 0.010496872, -0.027324542, 9.104777E-4, -0.032702316, 0.01844781, 0.018366123, -0.0040707714, -0.025840549, -0.019877344, -0.0096595725, 0.0011827701, 0.036813933, -0.006957071, -0.020217711, -0.025037287, -0.0013061526, -0.016677909, -2.9803254E-4, 0.030169997, 0.014050288, -0.013743958, 0.025935851, -0.01485355, 0.009795719, -0.033873174, -0.0035363976, 0.019033238, -0.0032641052, -0.026235372, -0.037086226, 0.013104072, 0.008209616, -0.040980007, 0.023063166, -0.023376303, 0.017140806, -0.00786925, -0.0025578467, -0.0070932168, 0.033709798, -0.015684042, 0.009571078, -0.005422022, 0.0026650617, 0.0041184225, 0.018039372, 0.0041762847, 0.02396173, -0.018175518, 0.021470256, -0.010272231, -0.010986999, -0.031014103, -0.031340856, 0.0037916717, 0.017835151, 0.008618054, 0.052851953, 9.2324143E-4, -0.01234846, -0.04364847, -0.0021204771, 0.030714583, -0.031694837, 0.01432258, 0.033791486, -0.007556114, -0.021225192, -0.02735177, -0.17383146, 0.029952163, 0.0062899543, -0.021905923, 0.014826321, 0.0036214888, 0.048086837, -0.0039312216, 0.0030854132, -0.011055071, 0.036732245, -0.0042477613, -0.04373016, 0.0049352995, 0.0050340057, 0.021007359, -0.0044655954, 0.027310928, 0.024642462, -0.009285171, 0.03929179, -0.014948852, -0.0038257083, 0.012470992, 0.010387955, 0.0049387035, 0.011102723, 0.0133491345, 0.0048808414, -0.009788912, -0.042150863, -0.0024438242, 0.020653378, 0.004863823, -0.013532932, 0.005898534, -0.009863792, -0.014785477, -0.014390653, 0.0077399113, 0.02826395, 0.0076378016, 0.030360602, 0.00716129, 0.028345639, 0.0060380837, 0.019046852, -0.008080277, 0.018760946, -0.015343676, -0.0067154113, -0.04157905, 0.021538328, 6.5647997E-4, -9.6493616E-4, 0.02735177, -0.0026990983, 0.008706549, 0.0027280294, -4.4715518E-4, -0.010605789, 5.007627E-4, 0.013526125, -0.003601067, -0.0108985035, -0.009822948, -0.02239605, 0.0074812337, -0.03654164, 0.0073450874, -0.02667104, 0.014690175, 0.023008708, 0.0053811786, 0.0040333313, -0.021443026, -0.033410277, -0.007984974, -0.0031909265, 0.013247025, -0.01485355, 0.03539801, -0.0142000485, 0.0065826685, -0.0035942597, -0.01414559, 0.0033526001, -0.0054390407, -0.0013869894, -0.003068395, 0.0076990677, -0.018883478, -0.020626148, 0.011960443, -0.0058440757, 0.0076786457, -0.0022532195, 0.021470256, -0.0029901108, -0.005159941, 0.010013553, -0.014962467, -0.023498833, 0.022055684, 0.026616583, 0.0075901505, 0.032130502, 0.030523978, 0.018406967, 0.017440328, -0.013730344, -0.01206936, 0.023526063, 0.013880105, -0.021946767, 0.015534282, -0.010367533, -0.017780693, 0.0048706303, 0.022940634, 0.07128615, 0.015874647, 0.007208941, -0.01184472, -0.0033202653, -0.027283698, -0.09573801, -0.00850233, 0.011790261, 0.0361332, -0.02363498, 0.034145467, 0.0012670106, 0.02720201, -0.020707836, 0.029816018, 0.005091868, -0.03441776, 0.0117153805, -0.0052926834, 0.008713357, 0.01470379, -0.0057351585, -0.011633692, -0.0010296056, 0.018897092, -0.013519318, -7.8752066E-4, 0.0019332761, 0.006126579, -0.015724886, 0.013124494, -0.024683306, 0.026289832, 0.008277689, 0.008168772, 0.0029526707, -0.02219183, 0.0074540046, -0.0385566, -0.026480436, -0.022600269, 0.0054798843, -0.023049552, -0.0021170734, -0.046698146, 0.0121306265, 0.006514596, 0.009319208, -0.029570954, -0.01470379, 0.004982951, -0.019373605, 0.029462038, 0.004676622, -0.023784742, -0.009360051, -0.028617932, -0.042559303, -0.01591549, 0.026602967, 0.014254507, 0.016514534, -0.0073178583, -0.023539677, -0.033192445, -0.013941371, -0.0062729362, -0.016065251, 0.015084999, -0.005456059, -0.0024319114, -0.004574512, -0.019768428, 0.016841285, -0.022287132, -0.030197227, 0.02381197, -0.030605666, 0.0028862995, -0.026044767, 0.011552005, -0.029816018, -0.011490739, 0.0154117495, -0.030496748, 0.004499632, -0.028944682, 5.6458125E-4, -0.016419232, 0.014349809, 0.008298111, 0.016160553, 0.02221906, -0.011926407, -0.049203236, 0.0012959416, 0.019618668, -0.0020098584, 0.0044553843, -0.0071408683, 0.0031211516, 0.00617423, -0.0052858763, -6.1393424E-4, 0.007311051, -0.0020864406, -0.009094566, -0.06867214, 0.04435643, -0.030033851, -0.0044383663, -0.011899178, -0.021238808, -0.009074144, -0.010217772, -0.016759597, 0.037113454, 0.008890347, 0.0162967, -0.004982951, -0.00786925, -0.011851527, 0.004911474, -0.00976849, 8.7644113E-4, 0.005908745, 0.013526125, -0.013682693, 0.024043418, 0.026766343, -0.020789525, -0.0034717282, 0.012852201, 5.5564666E-4, 0.011055071, -0.022137372, -0.010633018, 0.029570954, -0.017903225, 0.0018090426, 0.0048808414, -0.00794413, -0.023144854, -0.007419968, 0.0041082115, 0.013812032, 6.709455E-4, -0.0031364681, -0.031640377, 0.0068107136, -0.0023553292, -0.013866491, 0.009332822, -0.0071476754, 0.020993743, 0.018080216, 0.009387281, 0.024588004, 0.004754906, -0.0038631484, -0.022790873, 0.0133491345, -0.013294676, 0.054758, 0.015275603, 0.0020455967, -0.016664295, 0.028127804, 0.015697656, 0.024887525, -0.027692137, 0.001538452, -0.010598982, -0.0021085644, -0.002899914, -0.0066405307, -0.035561386, -0.030905187, -0.0054458478, -0.0057964246, 0.051354345, 0.003167101, 0.01538452, 0.013430823, 0.0010389657, -0.007855636, 0.03079627, 0.01351251, -0.0020098584, -0.03515295, 0.009679995, -0.0071272533, 0.011061879, -0.0017664969, 0.010210965, 0.024996443, 0.01227358, -0.0013886912, 0.0029969183, 0.01343763, -0.0018413774, 0.01206936, 0.01665068, -0.025935851, -0.011974058, -0.0061027533, 0.029462038, -0.01184472, -0.010435606, -0.013444437, -0.025881393, -0.01812106, -0.0012057448, -0.019114926, -0.008890347, -0.0068787867, 0.012464184, 0.016487304, 0.024002574, -0.013587391, 0.014417882, -0.03833877, 0.01989096, 0.005564976, -0.024247639, -0.019754814, 0.043212805, 0.024057033, 0.009734454, 0.027855512, -0.008761008, 0.048495278, 0.0019877346, 0.02381197, -0.023471605, -0.00779437, -0.016895743, 0.012389304, -0.0096527655, -0.016541762, 0.014989696, -0.022709185, 0.008318533, 0.014445112, 0.039918065, -0.019210229, 0.077331044, 0.01110953, -0.01432258, 0.019305531, -0.028699618, 0.01558874, 0.01705912, 0.028563473, -0.010115663, 0.004931896, -0.0060040476, -0.020939285, 0.018107444, -0.032457255, -0.0014023059, -0.0017767079, 0.020626148, 0.013097264, 6.734982E-4, -0.031994358, -0.023335459, -0.01103465, 0.021497484, 0.009802526, -0.0071953265, -0.014363424, 0.018406967, -0.021824235, -0.011565619, -0.025064515, 0.0035670304, -0.022055684, 0.004115019, 0.0042681834, 0.034254383, -0.009108181, 0.010381147, 0.015561511, 0.023212926, 0.0067732735, -0.006392064, -0.033927634, -0.026534894, -0.027528761, 0.029325891, -0.009598307, -0.0020149637, -0.035207406, -0.021470256 ], + "id" : "89679e33-4430-405f-a4d5-0a02038cb1c1", + "metadata" : { + "source" : "movies.csv" + } + }, + "b36fa06a-9715-42c4-9d6b-bff2e97c2be6" : { + "text" : "616,14439,Henry Cavill-Amy Adams-Michael Shannon-Diane Lane-Russell Crowe-Kevin Costner-Laurence Fishburne-Christopher Meloni-Antje Traue-Harry Lennix-Richard Schiff-Ayelet Zurer-Rebecca Buller-Michael Kelly-Mackenzie Gray-Richard Cetrone-Samantha Win-Julian Richings-Mary Black-Dylan Sprayberry-Christina Wren-Cooper Timberline-David James Lewis-Tahmoh Penikett-Doug Abrahams-Brad Kelly-David Paetkau-Elizabeth Thai-Ian Rozylo-Alessandro Juliani-Kwesi Ameyaw-Mike Dopud-Jack Foley-Jadin Gould-Robert Gerdisch-Ryan Mitchell-Alexa Gengelbach-Stephanie Kraft Song-Caroline Thomas-Coburn Goss-Lesley Bevan-Chad Krowchuk-Ian Tracey-Carmen Lavigne-Howard Siegel-Heidi Kettering-Justin Butler-Jacqueline Scislowski-Danny Coonley-Sally Elling-Joseph Cranford-Clint Carleton-Mark Gibbon-Stuart Ambrose-Tom Nagel-Jackson Berlin-George Canyon-Kyle Riefsnyder-Aaron Smolinski-Carla Gugino-Bruce Bohne-Rowen Kahn-Robert Moloney-Sean Campbell-Aaron Pearl-Rebecca Spence-Joe Mi��oso-Brian King-Madison Moran-Gabe Darley-Bridgett Newton-Revard Dufresne-Apollonia Vanova-Dan Aho-Ronald W. Gibbs-Chris Palermo-Edmundo Raul Sanchez-Nicholas W. von Zill-Allison Crowe-Nick Touchie-Eileen Touchie-Malcolm Scott-Rondel Reynoldson-Johnny Otto-Autumn Snyder,saving the world-flying-hope-superhero-based on comic-alien planet-superhuman-alien invasion-super power-mysterious force-reboot-save the day-dc extended universe (dceu)-save the planet-origin story-alien spaceship,/dksTL9NXc3GqPBRHYHcy1aIwjS.jpg,/69EFgWWPFWbRNHmQgYdSnyJ94Ge.jpg,68721-49026-209112-1930-1771-10195-76338-76170-24428-49051-127585-10138-100402-68726-49538-54138-272-1726-37724-102382-72190\r\n49444,Kung Fu Panda 2,Animation-Family,en,Po is now living his dream as The Dragon Warrior protecting the Valley of Peace alongside his friends and fellow kung fu masters The Furious Five - Tigress Crane Mantis Viper and Monkey. But Po��s new life of awesomeness is threatened by the emergence of a formidable villain who plans to use a secret unstoppable weapon to conquer China and destroy kung fu. It is up to Po and The Furious Five to journey across China to face this threat and vanquish it. But how can Po stop a weapon that can stop kung fu? He must look to his past and uncover the secrets of his mysterious origins; only then will he be able to unlock the strength he needs to succeed.,74.077,DreamWorks Animation,5/25/11,150000000,665692281,91,Released,Prepare for the Year of Awesomeness!,6.", + "embedding" : [ 0.020444684, -0.02691147, -0.016722599, -0.023149218, -0.028491346, 0.031597547, -0.010456646, -0.020324184, -0.018878195, -0.030740663, 0.031142328, 0.022627056, 0.02225217, -0.001001649, 0.004033373, 0.011628165, 0.018623808, -0.021877285, 0.005332086, -0.022734167, 0.008957101, 0.003015825, -0.017217984, 0.0043379683, -0.0024551696, 0.029749893, 0.04030026, -0.0127327405, -0.005824124, -0.012531908, 0.014004675, -0.011895941, -0.0106842555, -0.021020401, -0.021274788, 0.01638788, 0.00802658, -0.018369421, 0.030981662, -0.013241515, 0.024099823, 0.018918362, -0.008669242, 0.005178115, -0.0076583885, -0.0086357705, 0.003942999, -0.011675025, -0.0104097845, 0.019949298, 0.024220323, 0.03143688, -0.027982572, -0.024380988, -0.014205507, -0.012324382, -0.019346803, 0.011166251, -0.0033204202, 0.009660013, 0.0124582695, -3.6107894E-4, -0.023430385, -0.0027045358, -0.02980345, -0.01915936, -0.013033988, -0.0044049122, 0.0108783925, -0.011106002, 0.02800935, 0.02479604, 0.017217984, -0.0036484455, 0.022212004, -0.016441435, -0.029883781, -0.010891781, -0.011654942, 0.0092784325, 0.007718638, -0.016548546, -0.0036517926, -8.652506E-4, 0.016200436, 0.015758608, -0.022332503, 0.024273878, -0.034355637, 0.025840366, 2.652654E-4, 0.029026898, -0.003266865, 0.0074441675, 9.6064573E-4, 0.02867879, -0.01728493, 0.004167261, -0.026871303, -0.043085128, -0.0031631019, -0.0033990792, -0.010958726, -0.01428584, -1.539711E-4, -0.0041237473, -0.007832442, -0.0057170135, 0.02458182, 0.022787722, 0.009599763, -0.014714281, 0.028946565, -0.03577485, -0.0062090517, -0.01239802, 0.02634914, -0.02703197, -0.009606457, -0.02202456, 0.038291942, 0.038800716, 0.0043647457, -0.034543082, 0.026951635, 0.035239298, 0.0021171025, -0.028598458, 0.012163716, -0.002244296, 0.021877285, 0.010657477, 0.044343676, 0.012485048, -0.03221343, 0.046218105, -0.0273533, 0.0054458906, -0.011393861, -0.018543474, 0.023671383, 0.029375007, -0.023443773, -0.021837117, -0.032615095, 0.006841672, 0.027313134, -0.0022292337, 0.019025471, 0.014821392, 0.027527355, 0.03422175, 0.018958528, 0.022894831, 0.021636287, 0.002923777, -0.0037522085, 0.006955477, 0.009974649, -0.024340821, -0.009124461, -0.008414855, -0.008963795, -0.025077205, -0.011032363, 0.012913489, 0.02822357, -0.018971916, -0.0048233117, -0.0065437714, -0.009646623, 0.027982572, -0.0063931476, 0.011527749, -0.0014635623, 0.0012752824, 0.013489206, -0.017043931, -0.032936424, -0.025786811, 0.020230463, -0.0054960987, 0.023082275, 0.03341842, -0.0022878097, 0.0025505647, 0.036256846, -0.029267896, 0.013790455, -0.013991286, -2.3388544E-4, 0.022519946, 0.0033070312, -0.026496418, -0.6448042, -0.019212915, -0.008274273, -0.007551278, 0.01417873, 0.0025371758, 0.016548546, -0.017311707, -0.027741574, -0.022841277, -0.014540227, 0.012551991, 0.019132582, 0.0019430483, -0.005937929, -0.0064567444, 0.012726045, -0.026951635, -6.1713957E-4, 0.0050375327, -0.032079544, 0.022345891, -1.326327E-4, -0.012257438, -0.0030476234, -0.004906992, -0.0049906718, -0.00533878, 0.0115411375, 0.006520341, -0.034730524, 0.022439614, 0.012250744, 0.014044842, 0.038988158, -8.4621344E-5, -0.028437791, 0.052858945, 0.024461322, 0.027982572, -0.027527355, 0.006165538, 0.009432403, 0.0011146169, -0.027741574, 0.015544387, 0.0044551203, -0.0030693803, 0.010235731, -0.006654229, -0.006383106, 0.008080135, -0.008923629, -0.007993108, -0.0052885725, -0.0065270355, 0.011574609, -0.029589228, 0.0045923553, 0.010235731, 7.447515E-4, 0.021823728, 0.003775639, 0.012217272, -0.008287662, 0.039496932, -0.003792375, -0.006583938, 0.0028384237, -0.03598907, 0.020792792, 0.0090441285, -0.01550422, -2.614998E-4, -0.0016426373, 0.017418817, 0.028491346, -6.8575714E-4, -0.007758804, 0.032936424, -1.518791E-4, 0.0026124879, 0.0036149735, 0.008521966, 0.019453913, -0.0058006938, -0.041799806, -0.0011748663, 0.020096576, -0.008200634, 0.011728581, 0.007758804, 0.008307745, -0.00897049, -0.013362013, 0.009840761, -0.0044618146, 0.008649159, 0.021221234, -0.067693725, -0.02369816, -0.015397109, 0.030098002, -0.015343554, 0.02147562, 0.003040929, -0.006423272, -0.006383106, 0.032374095, 7.050035E-4, -0.013489206, 0.005362211, -0.016120104, -0.010992197, 0.0020133394, -0.03178499, 0.013937731, 0.013261598, 0.001468583, -0.0073906127, -3.4183258E-4, 0.008207329, 0.0015673253, -0.013214736, 5.845044E-4, 0.034543082, -0.0064768274, -0.0031061994, 0.0010669193, 0.0115813045, 0.010436563, 0.0022074769, 0.019775243, -0.019976076, 0.012304299, 0.008314439, 0.018141812, -0.004063498, 0.014808003, 0.0051680733, -0.020350963, -1.6984413E-5, -0.015236444, -0.013435652, -0.019668134, -0.024501488, -0.03202599, 0.006677659, -0.009880927, -0.015156111, -0.010871698, -0.0017622996, 0.0025806895, 0.010972114, 0.006446703, 0.007845831, -0.024635375, -0.010590534, 0.012639019, -0.025331592, 0.0043212324, 0.009479264, 8.752922E-4, -0.028946565, 0.021167679, 1.8660627E-4, -0.01826231, 0.0094926525, -0.0055094874, -0.01915936, 0.008709408, -0.026831137, 0.0015756934, 0.023684772, -0.014580393, 0.014018064, -0.008883462, 0.0062893843, -0.00957968, -0.0088299075, 0.0033087048, -0.003842583, -0.02147562, -0.013857398, 0.030258667, 0.01506239, 0.022453003, -0.012444881, -0.012913489, 2.5187663E-4, -0.01235116, -0.004910339, 5.916172E-4, -0.017151041, -0.010476729, 0.023095664, 0.0057437913, 4.4894288E-4, 0.017566094, 8.652506E-4, 0.037247617, 0.019909132, 0.017472371, -0.008729491, 0.014419728, -0.028384237, -0.0020116658, -0.021435454, 0.015196278, -0.008126996, 0.0143126175, -0.0030208458, -0.019306635, -0.005737097, 0.003942999, 0.027661242, -0.013027294, -0.014888335, -0.016133493, 0.0068082, 0.0051078238, -0.018181978, 0.009090989, 0.017766925, -0.015089167, -0.0018911667, 0.008013192, -0.0028016046, 0.013910954, -0.0020267281, -0.0067077843, -0.003358913, 0.0061186776, 0.018690752, -3.7739653E-4, -0.013562845, 0.024367599, -0.0021639634, 0.035828404, -0.011762053, -0.008481799, 0.009037434, 0.024822818, 3.0145698E-4, -0.006178927, -0.007819054, 0.015142722, 0.016963597, -0.009265043, 0.03620329, -0.011045752, 0.023109052, -0.0037689446, 0.0023564273, -0.0014543574, -0.013763677, 4.5312688E-4, 0.009090989, 0.03411464, 0.017900813, 0.01961458, -0.029375007, 0.021114124, 0.0145670045, 0.02225217, 0.0043948707, -0.009954566, -0.0031865323, -0.004026679, -0.02214506, -0.013154487, -0.014486671, 0.011474194, 0.0039530406, -0.010182176, -0.0104097845, -0.010075065, 0.009325293, 0.010014815, 0.025826978, -0.007129531, -0.023845436, 0.014004675, 0.029562451, -0.020551793, -0.016950209, -0.01605316, -0.0076115276, -0.024447933, -0.010670866, -0.003942999, 0.02389899, -0.0113470005, 0.0015798773, -0.011313528, -0.00880313, 0.02680436, -0.013489206, 0.018878195, 0.011701803, -0.01882464, 0.011688414, 0.0027647852, -0.007343752, 0.0241266, -0.0077922763, 0.004421648, -0.00791947, 0.008153774, -0.009265043, -0.0037321255, -0.00846841, -0.037997387, 0.017619649, -0.013803843, -0.02037774, -0.010757893, -0.0012811399, 0.008983878, -0.006419925, -0.018289087, -0.026335752, -0.02380527, -0.0041204, 0.08670581, 0.041692693, 0.013315152, 0.0060885525, -0.018784473, 0.005740444, -0.020993624, 0.005114518, -0.0048969504, -0.02103379, 0.017124264, -0.015115945, 0.025760034, -0.0011422312, 0.020953458, -0.00481327, -0.0041806498, -0.014272451, -0.017325096, -0.0039664293, -0.03288287, -0.02181034, 0.04295124, 0.037354726, 0.009485958, -0.008481799, 0.026469639, 0.011614776, 0.007330363, 0.011735275, -0.004589008, 0.006587285, 0.011976274, 0.007738721, -0.0025087246, -3.4559815E-4, 0.023242941, 0.025411924, 0.028303904, 6.991459E-4, -4.393197E-4, 0.025385147, 0.014982057, -0.009111072, 0.015852328, -0.023765104, -0.010135314, 0.021007013, 0.033043537, -0.03598907, 0.01123989, 0.004773104, -0.017084097, -0.0106440885, 0.031383324, -0.0071897805, -0.006332898, -0.013576234, -0.015638107, -0.0018911667, -0.0023045456, -0.027929017, 0.009907705, -0.021422066, -0.01806148, -0.0115813045, -0.012705962, -0.0038291942, -0.0115612205, 0.01174197, 0.006677659, -0.030526442, -0.005295267, -0.012424798, 0.01090517, -0.0035748072, 0.024688931, -0.009124461, -0.012377937, 2.537594E-4, -0.023885602, -0.02258689, 0.008374688, -0.0272328, -0.003625015, 0.013355318, -0.016039772, 0.02680436, 0.006403189, 0.005295267, 0.003976471, 0.006061775, -0.01117964, -0.003317073, 0.03697984, -0.002152248, 0.010008121, 0.0150356125, 0.0023430383, 0.002694494, 0.014848169, -0.025237871, -0.00357146, -0.009787207, -0.007665083, -0.0034158153, -0.0033605865, 0.0022995248, -0.030205112, -0.028437791, -0.010717727, -0.025853755, 0.0012133592, -0.008823213, 0.0106440885, -0.015156111, 0.012833156, 0.0127327405, -0.015530997, 0.012444881, 0.0020501586, 0.003250129, -0.0021689842, 0.024688931, -0.004117053, 0.03221343, -0.009773817, -0.008053358, 0.0021472273, 0.032374095, 0.0048333537, 0.01848992, -0.013382097, -0.0168431, -0.015423887, -0.01960119, 0.006490216, 0.007263419, -0.011333612, 0.009024045, -0.025465481, -0.010798059, -8.878442E-4, 0.0012476679, -0.008408161, -0.025117371, -0.0014409686, -0.008321133, 0.010142009, 0.020511627, -0.009311904, 0.0066408403, -0.020350963, -0.0058509014, -0.019346803, -0.033043537, -0.019052248, -0.0010418153, 0.03202599, 0.005201545, 0.04785154, 0.0036350568, 0.025760034, 0.012940266, -0.0021472273, 0.032293763, -0.026697248, -0.008642465, -0.032695428, -0.015758608, 5.2221516E-5, 0.017017154, 0.016588712, 0.0049839774, 0.014232284, 0.0133954855, 0.00874288, 0.0042275107, -0.012404715, -0.01649499, -0.022372669, 0.0083813835, -0.040835813, 0.0030208458, -0.009921094, -0.013817232, 0.03111555, 0.008910241, -0.0037388199, -0.017887425, 0.03513219, 0.001956437, 0.0010225689, -0.022439614, 0.02158273, -0.015959438, -0.0048534367, -0.022185227, -0.00951943, 0.007738721, -0.016093327, 0.031517215, 0.005281878, -0.001143068, -0.014339395, 0.022238782, -0.01583894, -0.03298998, 0.016548546, -0.010945337, -0.016294159, -0.022225393, 0.0053956825, -0.040835813, -0.005573084, -0.011159557, -0.006751298, 0.008207329, -0.006429967, -0.036444288, 0.032909647, 0.0020551793, 0.04429012, 0.010115231, 0.047449876, 0.02691147, -0.004572272, -0.016642267, 0.00930521, -0.015049001, -0.0047530206, 0.024461322, 0.032400873, -0.01682971, 0.002691147, -0.013629789, -0.0104097845, -0.046325218, -0.04696788, 0.019909132, 0.030205112, 0.02857168, -0.023323273, -0.013656567, -0.02371155, 0.014620559, 0.003358913, 0.014339395, 0.007973025, -0.025880532, -0.030258667, -0.005891068, 0.0019079027, -0.0049002976, 0.0016208804, -0.026295586, 0.017726758, -0.0068818387, 0.02094007, -0.0066274516, -0.0056768474, 0.033097092, -0.01405823, 0.009211488, 0.008214023, 0.009539514, 0.0074575567, 0.0066943956, 0.007879304, 0.03090133, -0.031624325, 0.026054587, 0.0044283425, 0.011594693, 0.016963597, 0.015223055, -0.026081365, -0.016762767, -0.026268808, 0.003825847, 0.02822357, -0.012110162, -0.003912874, 0.010423173, -0.008039969, -0.01428584, 0.008608992, -8.3052344E-4, 0.007819054, -0.02980345, 0.02135512, 0.010972114, -0.006687701, 0.0054057245, 0.012277521, -0.0077922763, -0.020391129, 0.010610617, -0.0053923354, -0.0014443158, -0.014941891, -0.011574609, -0.040273484, -0.027259579, -0.0046860767, -0.0120298285, 0.006855061, -0.028705567, -0.00434801, 0.006540424, -0.011474194, -0.0076115276, -0.0075111114, -0.022908222, -0.006490216, 0.024595208, -0.013315152, -0.0138841765, -0.006670965, 0.018797861, 0.0012819767, 0.0034643495, -0.0028585067, 0.0068517136, 0.029401785, -0.016802933, 0.011735275, -0.005593167, -0.0036618344, -0.010945337, 0.0064400085, 0.021689842, 0.010858309, -0.010383007, -0.031624325, 0.004927075, -0.015798774, 0.02613492, -0.009860844, 0.005027491, 0.037568945, 0.02680436, 0.034489524, 0.029428562, -0.005201545, -0.043593902, 0.017552705, -0.009813984, -0.026616916, -0.00697556, 0.0032551498, 0.016628878, 0.019494079, 0.0029756587, -0.039336268, -0.007350446, -0.022238782, -0.03285609, -0.0225735, 0.017539317, 0.0272328, 0.015397109, 0.007075976, 0.004669341, 0.004903645, 0.0030308876, -0.010590534, -0.007638305, 2.87859E-4, 6.4935634E-4, 0.016642267, 0.028464569, -0.026790971, -0.0010987177, 0.020873126, 0.0114675, 0.0018258963, 0.030954884, -0.012940266, -0.014392951, -0.008675937, 0.0048500896, 0.0065939794, 0.002937166, 0.013295069, -0.019761855, 0.003537988, 0.012705962, 0.012766212, -0.0033907113, 0.01417873, 0.016106715, -0.019561023, -0.0046459106, 0.005486057, -0.019226303, -0.001760626, -0.030820996, 0.018597031, 0.003942999, -0.013141098, 0.027554132, 0.024595208, -0.014674115, -1.2593831E-4, -0.00985415, 0.0053053084, -0.016133493, 0.0035179048, -0.0026108143, 0.030847775, -0.0363104, 0.0034057738, -0.026951635, -0.0045220642, 0.0028467916, 0.0111327795, -5.012429E-4, 0.038024165, 8.547906E-4, -0.044450786, -0.0019597842, -0.020217074, 0.0037555557, -0.016869877, -0.0048902556, -0.034248527, 0.008709408, -0.0057806103, 0.021462232, -0.01606655, -0.02900012, -0.0047797984, -0.001414191, -0.019467302, 0.017217984, 0.1888355, -0.009954566, 0.011480888, 0.03521252, 0.004150525, 0.01783387, 0.02292161, 0.021904062, -0.016789544, 0.01229091, 0.005345475, 0.013208042, -0.0022727472, 0.004742979, 0.012920183, -0.007316974, -0.04295124, -0.011869163, -0.01605316, -0.024180157, 5.455932E-4, -0.004147178, -0.004840048, -0.025639534, -7.7654986E-4, -0.019052248, -0.003191553, 0.0032869482, 0.020498239, 0.009780511, -0.014968668, -0.014714281, 0.009405626, 0.016776156, -0.02835746, -7.4600667E-4, -0.005553001, 0.0016526788, 0.018449754, 0.0026643693, 0.0058977623, -6.05006E-4, 0.0027597644, -0.0050843935, 0.0138841765, 0.016722599, -0.01737865, 0.0054626265, -0.027473798, 0.019895744, -0.048788752, 0.0059546647, 0.017914202, 0.025652923, -0.022961777, -0.0035681129, 0.0022928305, 0.00796633, -0.015745219, 0.008234106, 0.013777066, 0.03764928, -0.034462746, 0.0023497327, -0.004281066, 0.005603209, -0.035587408, -0.009084295, 0.01233777, -0.040005706, -0.02634914, -0.025505647, -0.009439098, 0.0023597744, -0.014151952, -0.023872213, 0.003270212, 0.0041371365, 0.008280967, 0.013355318, -0.023832047, -0.03521252, -0.0021806993, -0.012558686, -0.009050823, -0.0117955245, 0.0057136663, -0.020993624, -0.011909329, 0.0019631314, -0.017820481, -0.026777582, -0.00901735, 0.00670109, -0.004368093, 6.0918997E-4, 0.026978413, 0.00869602, -0.0055396124, -0.010483423, -0.028839456, 0.022319114, 0.021448843, 0.0063596754, -0.020873126, -0.012685879, -0.0033338089, 0.004689424, 0.020725848, -0.012685879, -0.01069095, -0.021047179, 0.0032936425, -0.010423173, 0.0023564273, 0.01212355, 0.0129871275, -0.004445079, 0.04969919, -0.01594605, 0.006286037, -0.022519946, 0.019735077, 0.0065906323, 7.8575464E-4, -0.030633554, -0.037167285, 0.008321133, -0.003154734, -0.03111555, 0.016669044, -0.014647338, 0.009566291, -0.0040434147, -0.012953655, 0.0228145, 0.015115945, -0.0060483865, 0.016267382, -0.0081069125, -0.012558686, -0.009479264, 0.017124264, 0.008307745, 0.009927789, -0.017017154, 0.0057873046, -0.0140983965, -0.004485245, -0.02724619, -0.020752626, -0.0022041297, 0.002853486, 0.014714281, 0.042201467, 0.009941177, -0.025371758, -0.01748576, -0.025893921, 0.048306756, -0.04107681, 0.018864807, 0.00603165, -0.01925308, -0.030365778, -0.0013296743, -0.1710552, 0.019668134, 2.939258E-4, -0.022935, 0.014513449, 0.023778493, 0.02811646, 0.009666707, 0.005820777, -0.029401785, 0.02094007, 0.013643178, -0.050930962, -0.011018975, 0.018797861, 0.01937358, -0.005740444, 0.03976471, 0.0104499515, 0.0047530206, 0.031088773, 0.00348778, -0.018088257, -9.1378496E-4, 0.0077253324, -8.0500107E-4, 0.016682433, 0.014326006, -0.013924343, -0.0051178653, -0.033927195, -0.008977184, 0.010998892, 0.018369421, -0.0034576552, -0.010162092, -0.00628269, -0.014125174, 0.0023647952, 0.0045756195, 0.042201467, 0.019145971, 0.020685682, 0.01395112, 0.025090594, 0.013643178, 0.027741574, -0.015986215, 0.019788632, -0.020123353, -0.006634146, -0.01861042, 0.02214506, -0.0048835613, -0.004260983, 0.026750805, 0.006717826, 0.0068249363, 0.018396199, 0.0042877602, -0.023765104, -0.011641554, -0.015771996, -0.009867539, -0.014687504, -0.012170411, -0.010282591, 0.016735988, -0.016976986, 0.015530997, -0.018021312, 0.005131254, 0.027206022, 8.32197E-4, 0.0012083384, -0.019534245, -0.021837117, 0.0129001, 0.005978095, 0.0021639634, -0.0213819, 0.032454427, -0.002811646, 0.02170323, 9.3805214E-4, -0.011982968, 0.00548271, -0.0021555952, -0.005636681, -0.015370332, 0.0068751443, -0.021689842, -0.03831872, -0.008997267, -5.585636E-4, 0.009773817, -0.0046626464, 0.01616027, 0.008649159, 0.0079127755, -0.0026526542, -0.009613152, -0.018891584, 0.009218182, 0.012759518, -0.014044842, 0.022988554, 0.030874552, 0.024488099, -0.0036785703, -0.007952942, 0.011454111, 0.020016242, 0.016896654, -0.0131611815, 0.014607171, -0.021636287, -0.009506041, -0.009218182, 0.011413944, 0.05125229, -0.0032969897, 0.0049806302, -0.012371243, -5.5563485E-4, 0.0015966133, -0.09184711, -0.007129531, 0.008849991, 0.043540347, -0.04051448, 0.026603527, -0.002727966, 0.021020401, -0.043540347, 0.04271024, 0.028839456, -0.03266865, 0.020230463, -0.008367994, 0.013388791, -0.0040869284, -0.014861558, -0.012505131, -0.0010183849, 0.024434544, -0.014004675, -0.009760428, 0.018971916, -0.022104893, -0.02158273, 0.017954368, -0.02758091, 0.019320026, 0.012130245, 0.013201348, 0.023309885, -0.03175821, 0.015209666, -0.041103587, -0.009552903, -0.03221343, -0.020230463, -0.026161697, 0.0038559719, -0.045655776, 0.016950209, 0.0047162017, 0.0069889487, -0.03432886, -0.007062587, -0.0019748467, -0.026884692, 0.029589228, 0.0030643595, -0.027661242, -0.011480888, -0.00924496, -0.030339, 0.002406635, 0.014580393, 0.008234106, 0.02857168, 0.019467302, 0.0077788876, -0.011373778, -0.005435849, -9.5144095E-4, -0.029214341, 0.022171838, 0.0044149538, 0.016079938, -5.656764E-4, -0.011621471, 0.0138440095, -0.01340218, -0.022198616, 0.01903886, -0.029857004, -0.014808003, -0.021877285, 2.4183503E-4, -0.022774333, -0.018744307, 0.040809035, -0.01915936, -0.0045957025, -0.030392556, 0.0040032486, -0.029910559, 0.011688414, 0.008682631, 0.024621986, -0.0054425434, -0.006081858, -0.036738843, 0.0010635721, 0.012177105, 0.011226501, -0.00874288, 0.008849991, 0.024876373, 0.0061588436, 1.5679529E-4, -0.01367665, 0.0062057045, -0.012116856, -0.0048869085, -0.07224592, 0.026402695, -0.0017874036, -0.011500971, -0.019574413, -0.0058341655, 0.011005586, -0.016802933, -0.0033907113, 0.01483478, 0.0017924244, 0.022546723, 8.336614E-5, 0.0034476137, -0.0010393049, 0.014433117, -0.002440107, -0.014111785, -0.0062960787, -0.003554724, 0.0011037384, 0.027473798, 0.027741574, -0.0019999507, 0.0021104082, 0.013736899, -0.007022421, 0.020096576, -0.010175481, -0.002190741, 0.03432886, -0.021796951, -0.0012008072, 0.011106002, -0.0017874036, -0.020658905, -0.011855775, 9.7487133E-4, 0.0028568332, 0.0013079175, -0.006600674, -0.0198288, 4.1045013E-4, -0.020458072, -0.013301764, 0.020819569, -0.009793901, 0.007430779, 0.008274273, 0.005412419, 0.024555042, 0.011039058, -0.017311707, -0.012685879, 0.023122441, -0.01728493, 0.05368905, 0.009345376, -0.0051412955, -0.008200634, 0.019306635, -0.012304299, 0.04062159, -0.034087863, 0.0042475937, 0.004973936, 0.006788117, -0.014218896, -0.010389701, -0.03224021, -0.0017589524, -0.0048166174, 0.008957101, 0.021368511, 0.020431295, 0.025706477, 0.003554724, -0.0020116658, -0.0017288276, 0.015986215, 0.01174197, -0.009037434, -0.032347318, 0.014888335, -0.0052885725, 0.016963597, -0.009432403, 0.019909132, 0.010101843, 0.011527749, -0.015370332, 0.0033237673, 0.010255814, -0.0026108143, 0.015530997, 0.0038392358, -0.022854665, -0.020364352, 0.010570451, 0.0143126175, 0.0011087592, -0.008187246, -0.024782652, -0.014218896, -0.018409587, -0.0077454154, -0.017807093, -0.017807093, 0.008019886, 0.014044842, 0.023390217, 0.009526124, -0.012130245, 0.013857398, -0.033846863, -0.0025254607, -0.0013146119, -6.5019313E-4, -0.0055630426, 0.042228248, 0.014794614, 0.00533878, 0.024688931, -0.016535157, 0.058107354, 0.023631215, 0.0046592993, -0.014607171, 0.015236444, 0.0072031696, 0.008287662, -0.005251753, -0.033391643, 0.015490831, -0.01262563, 0.006888533, -0.0025840367, 0.0345163, -0.024488099, 0.07412034, 0.01417873, -0.013428957, 0.017070709, -0.00951943, 0.013214736, 0.005603209, 0.019761855, -0.007899387, -0.015557775, 0.0036651816, -0.018275699, -0.0048701726, -0.012203882, -7.6274265E-4, -0.004063498, 0.022278948, -0.00170205, -0.009733651, -0.025853755, -0.006520341, -0.01428584, 0.01926647, 0.0016627205, -0.010476729, -0.021756785, 0.013482512, -0.007872609, 0.010041594, -0.03365942, -0.01628077, -0.010657477, -0.007952942, -0.0030074571, 0.027393466, -0.006687701, 2.832566E-4, -0.007183086, 0.005593167, 0.009097683, -0.007959636, 0.001435111, -0.021863895, -0.013710122, 0.01870414, -0.010824838, 0.004250941, -0.029053677, -0.013750289 ], + "id" : "b36fa06a-9715-42c4-9d6b-bff2e97c2be6", + "metadata" : { + "source" : "movies.csv" + } + }, + "79579aa5-a499-4460-9247-9e3d48e0506d" : { + "text" : ",82690-260513-324857-297802-166428-301528-338952-360920-280217-424783-330457-363088-299537-400650-400155-984430-781837-109445-269149-447404-335983\r\n124905,Godzilla,Action-Drama-Science Fiction,en,Ford Brody a Navy bomb expert has just reunited with his family in San Francisco when he is forced to go to Japan to help his estranged father Joe. Soon both men are swept up in an escalating crisis when an ancient alpha predator arises from the sea to combat malevolent adversaries that threaten the survival of humanity. The creatures leave colossal destruction in their wake as they make their way toward their final battleground: San Francisco.,47.888,Legendary Pictures,5/14/14,160000000,529076069,123,Released,\"The world ends, Godzilla begins.\",6.269,8046,Aaron Taylor-Johnson-Elizabeth Olsen-Juliette Binoche-Bryan Cranston-Ken Watanabe-Sally Hawkins-Al Sapienza-David Strathairn-James Pizzinato-CJ Adams-Richard T. Jones-Victor Rasuk-Patrick Sabongui-Carson Bolde-Jared Keeso-Luc Roderique-Eric Keenleyside-Primo Allon-George Allen Gumapac Jr.-Ken Yamamura-Garry Chalk-Hiro Kanagawa-Kevan Ohtsji-Kasey Ryne Mazak-Terry Chen-Mas Morimoto-James D. Dever-Akira Takarada-Yuko Kiyama-Takeshi Kurokawa-James Yoshizawa-Jason Furukawa-Brian Markinson-Ty Olsson-Gardiner Millar-Kurt Max Runte-Peter Shinkoda-Christian Tessier-Bill Marchant-Derrick Yamanaka-Peter Kawasaki-Jason Riki Kosuge-Hiroyoshi Kajiyama-Tetsuro Shigematsu-Dean Redman-Taylor Nichols-Anthony Konechny-Jake Cunanan-Yuki Morita-Jill Teed-Eli Goree-Warren Takeuchi-Chuck Church-Dalias Blake-Lane Edwards-Todd Scott-Zoe Krivatsy-Serge M. Krivatsy-Lise Krivatsy-Josh Cowdery-Steven M. Murdzia-Keo Woolford-Lynne Halevi-Martin Kogan-Sandy Ritz-Kyle Riefsnyder-Eric Breker-Jesse Reid-Melody B. Choi-Catherine Lough Haggquist-Amy Fox-Rich Paul-Aaron Pearl-Dee Jay Jackson-Erika Forest-Michael Denis-Toby Levins-Taya Clyne-Grayson Maxwell Gurnsey-Justin Blayne Lowery-Marci T. House-Chris Shields-Zach Martin-Darren Dolynski-P. Lynn Johnson-Antonio Anagaran-Kevin O'Grady-Leif Havdale-Zachary Choe-T.J. Storm-Michael Rowe-Michael Leone-Bill Blair,japan-san francisco california-monster-hawaii-tsunami-remake-giant monster-golden gate bridge-dinosaur-kaiju-prehistoric creature-honolulu hawaii-disaster movie-global threat-animal horror,/iBZhbCVhLpyxAfW1B8ePUxjScrx.jpg,/zCjZfevPFBbOh2SAx2syIBHSqEI.jpg,373571-137113-91314-127585-119450-102382-929-97020-100402-68724-53182-68726-98566-137106-254-49521-293167-220638-72190-76170-184315", + "embedding" : [ 6.476227E-4, -0.03955772, -0.011880818, -0.013271414, -0.011563546, 0.010976255, -0.014594505, 0.0036418757, -0.012508611, -0.031430162, 0.01612011, 0.023775136, 0.032159213, -0.011111265, -8.893737E-4, -0.0051843566, 0.02427467, -0.03693854, 0.008384077, -0.033212285, 0.003257099, 0.007837289, -0.009491153, -0.012069831, 0.0058965306, 0.0072837514, 0.019495342, -0.008444831, -0.015823089, -0.004185288, 0.0079182945, 0.0012775254, -0.012164338, -0.002593866, 5.1894196E-4, -0.0028098808, 0.0025196108, -0.018955305, 0.021317966, -0.03418435, 0.0036385003, 0.006466945, -0.009842177, -0.0030545853, 0.006132797, 2.3457865E-4, 0.003601373, -0.013386171, -0.010733238, 0.030566104, 0.02207402, 0.018563777, -0.014108471, -0.024369176, -0.021007447, -0.0030815871, -0.016363125, -0.0068753483, 1.9934966E-4, -0.005694017, 0.0021550858, -0.011462289, -0.021128954, -3.613608E-4, -0.004536312, -0.015593573, -0.006537825, -0.005069599, -0.02223603, -0.014121972, 0.031430162, 0.018941803, 0.0010834496, 0.004954841, 0.0011804875, -0.029594036, -0.01977886, -0.016646646, 0.0101797, 0.010253956, 0.015053536, -0.0087283505, 0.0031642802, -0.016673647, 0.031133143, 0.02021089, -0.02149348, 0.009956935, -0.036560517, 0.0040300274, 0.016525136, 0.028081933, -0.0043202974, 0.01772672, 0.0052552368, 0.0013197159, -0.018860798, 0.018968806, -0.023451114, -0.052869637, -0.0033077276, 0.004276419, 0.004910963, -0.010422717, -0.005110102, 0.0017238999, 0.017483704, -0.026961355, -0.005785148, -0.011057261, -0.009281889, 0.0013948147, 0.015661078, -0.03907169, -0.0070407344, -0.014216478, 0.025881281, -0.016255118, 0.0042359163, -0.018050741, 0.013271414, 0.0261648, 4.8603344E-4, -0.008289571, 0.03267225, 0.031268153, -0.0040266523, -0.006365688, -0.0053058653, -0.0075537697, 0.035237424, 0.0051472294, 0.03153817, 0.009248137, -0.02744739, 0.06161824, -0.025840778, -0.0021770247, -0.025854278, -0.025678767, 0.03151117, 0.034805395, -0.014851022, -0.018091245, -0.027730908, 0.0047759535, 0.02497672, 0.011826814, 0.012083331, 0.002752502, 0.02019739, 0.015607074, -0.004084031, 0.020818433, 0.020872436, -0.0038005116, -0.0057345196, -0.005518505, 0.010854747, -0.010908751, -0.0028436333, 0.006507448, 0.017794225, -0.017929234, -0.015229048, 0.02921601, 0.015161543, -0.024909215, -0.007189245, -0.026502324, -0.021858005, 0.027055861, -0.017713219, 0.015134541, -0.001837814, 0.041339844, 0.019346831, -0.005099976, -0.013615687, -0.014027465, 0.0065412, -0.0077225314, 0.035561446, 0.022776067, 0.022249531, 0.015715081, 0.03226722, -0.04139385, 0.014594505, -0.027919922, 0.01192132, 0.022992082, 0.011752559, -0.007310753, -0.639404, -0.017119179, 0.0014665384, -0.010739989, 0.021439476, 0.027555397, 0.0023440989, 0.0033482304, -0.02021089, -0.0054273736, -0.023289103, 0.013770947, 0.0022833447, -0.028459959, -0.027366383, 3.0145043E-4, -0.00399965, -0.0103147095, 0.01235335, 0.024720201, -0.014486497, 0.016795157, 0.01859078, 0.00407053, 0.013575184, -0.006001163, -0.017780723, -0.014702512, 0.018968806, 0.010969505, -0.01902281, 1.9660727E-4, 0.0031288404, 4.1789594E-4, 0.033050273, -0.01394646, -0.011131516, 0.043851018, 0.0406918, 0.0348864, -0.027730908, -0.014770016, 0.021223461, 0.017578209, -0.010537475, 0.013433425, 0.015958099, -0.035264425, 0.028081933, 0.0069934814, -0.0046881977, 0.0047151996, -0.011867316, -0.012022577, -0.0026478698, 0.0018968806, 8.7249756E-4, -0.030161075, 0.005187732, -0.020737426, 0.0018006865, 0.009329142, 0.020696925, 0.012846134, -0.011084263, 0.014189476, -0.008377327, -0.011016758, 0.013406423, -0.016417129, 0.005899906, 0.016673647, -0.008397578, -0.012441106, 0.0062981835, 0.034373365, 0.027676905, 0.002264781, 0.005491503, 0.005548882, 0.013298416, 0.00930214, -0.01133403, 0.015134541, 0.011988825, -0.033077277, -0.050034445, 0.009754421, 0.023518618, -0.018347763, 0.011320529, 0.0043337983, -0.00305121, 0.008438081, -0.011205771, 0.007763034, -5.8138376E-4, 0.017537707, 0.026245806, -0.036425505, -0.025503255, -0.008600092, 0.038261633, -0.019103814, 0.011347531, -0.008809356, -0.0070272335, 0.005086475, 0.024747202, -0.0016994295, -0.004553188, 0.009349394, -0.030323086, 0.009740921, 0.006132797, -0.023775136, 0.015053536, 0.010908751, 0.0016504886, 0.016214617, -1.6897256E-4, 0.0013441863, 0.022344038, 3.029271E-4, 0.020453908, 0.020804932, 0.0018884424, -0.011556795, 0.009477653, 7.847415E-4, -0.0064399433, 0.0017399322, 0.0058189007, -0.008120809, -5.6619523E-4, 0.012765128, 0.017537707, 0.008215316, 0.017672716, -0.019589849, -0.031781185, 0.0045261863, -0.011347531, -0.008222066, -0.0067470893, -0.0019441338, -0.03110614, -0.005970786, -0.021142455, -0.0040772804, 0.007898044, -0.009551907, 0.008033053, 0.021277465, -0.02457169, -0.006844971, -0.008451582, -0.028675973, 0.018928302, 0.0015542945, 0.010118946, -0.007655027, -0.012981144, -0.013818201, 0.017632212, -0.021385472, -0.003486615, -0.0032199717, -0.0014741326, -0.021885006, 0.0011577046, -0.02864897, -0.018131748, 0.016336124, 0.013919458, 0.017132679, -0.015661078, -0.010814244, -0.0047692033, -0.012927139, 0.0021449602, -0.0127448775, 0.007898044, 0.008660846, 0.042932954, -0.0018496272, 0.035804465, -0.0014716013, -0.010280957, 0.018145248, -0.0062003015, -0.0010210078, -0.0056298873, -0.0017154618, 0.001525605, 0.018320762, -0.01497253, 0.006925977, -0.010368713, 0.01671415, 0.045957163, 0.013406423, -0.013055398, -0.0071284906, 0.017969737, -0.031619176, 0.0044958093, -0.042176902, 0.007742783, 0.012758378, 0.030026067, -0.007385008, -0.019859867, 1.4015124E-5, 0.0065850783, 0.025773274, -0.013244411, 0.013095901, -0.013568434, -0.0023677254, -0.003547369, -0.010983006, 0.019265825, 0.0010674172, -0.03302327, 0.0026225555, 0.0069664796, 0.010969505, 0.0044958093, -0.0025128603, -0.0174432, -0.008161312, -0.010949253, 0.016295621, -4.6198492E-4, 0.0027946923, 0.021317966, 6.607017E-4, 0.010294459, 0.0023120341, 0.009869179, 0.006811219, 0.03677653, -0.015148043, -0.0075537697, 0.0074525126, 0.013440175, 0.0054374994, -0.013352419, 0.031754185, -0.02439618, 0.016201114, -0.026475322, 1.1022243E-4, 0.018928302, -0.010550976, 0.020426905, 0.014702512, 0.03224022, 0.021668991, 0.014635007, -0.027676905, 0.015958099, 0.014405492, 0.03415735, -0.0127448775, -0.018671785, 0.0041751624, -0.00196101, -0.004347299, -0.018833796, 6.674522E-4, -0.0047320756, -0.0076347752, -0.013818201, -0.0119348215, 0.004809706, 0.0064028157, 0.012947391, 0.005518505, -0.0035811213, -0.03615549, -0.0034444246, 0.023667129, 0.0030866498, -0.028351951, -0.0034899903, -0.017254187, -0.029486028, -0.002382914, 0.007358006, 0.024031654, -0.010895249, -0.014932028, -0.020278396, -0.007688779, 0.0064500687, -0.009754421, -0.005390246, 0.01830726, 0.005478002, 0.020399904, 0.013298416, 0.0068989745, 0.028216941, -0.014851022, 0.024045154, 0.0071824943, 0.0038848924, -0.002273219, 0.018806795, 0.007425511, -0.03809962, 0.0029887683, -0.007675278, -0.029108003, -0.015566572, -0.009052373, -0.0038612657, -0.021209959, -0.013750697, -0.020899437, -0.019670853, -0.0068415958, 0.07798137, 0.028432956, 0.013689942, 0.0020690174, 0.007540269, 0.026718339, -0.013561684, 0.0040131514, -0.011185519, -0.0067639654, 8.0457097E-4, -0.0125491135, 0.013838452, 0.011813313, 0.019495342, -0.008127559, -0.01918482, -0.017807726, 0.008465082, -0.019576347, -0.018766291, -0.0034191103, 0.031592175, 0.033347294, 0.0046713213, -0.014351487, 0.009612662, 0.013851954, 0.0037735098, 0.015742084, -0.0051742312, 0.01365619, -0.0069934814, -0.0011433599, -0.019346831, 0.007742783, 0.014554001, 0.00385114, 0.017470201, 0.014067968, -0.0017669341, 0.016376628, 0.013865454, -0.02004888, 0.017753722, -0.017537707, -3.001847E-4, 0.020575415, 0.024639195, -0.019859867, 0.03836964, -0.018806795, -0.029081002, -0.014175976, 0.013352419, -0.0047287005, -0.0016884599, -0.008188314, -0.010409216, 0.013237661, -0.0024369177, -0.051087517, -0.010409216, -0.020993944, -0.020669922, -0.022762567, -0.006075418, -0.012825883, -0.026772343, 0.013608936, 0.013527931, -0.032429233, -0.016997669, 0.0046443194, 0.021547483, -0.012650371, 0.027177371, -0.004229166, 0.008762103, 0.020980444, -0.037883606, -0.018428769, -0.009565408, -0.020413404, -0.011104514, 0.018550277, 0.0052113584, 0.014256981, 0.0136831915, 0.0019711356, 0.013460427, -0.0058965306, -0.02165549, 0.010733238, 0.033617314, -0.005511754, 0.026016291, 0.013568434, -0.004809706, -0.01917132, 0.010976255, -0.009099626, -0.013959961, -0.018563777, -0.017645715, 0.003473114, 0.013244411, -0.013244411, -0.014986032, -0.0054577505, -0.004971717, -0.025327742, 0.016835658, 0.0058965306, 0.0013551557, 0.010544226, 0.03413035, 0.012326349, -0.0050493474, 0.017132679, 0.006230679, 0.0055286307, 0.014864523, 0.025597762, 0.0106049795, 0.02862197, -0.013865454, -0.0276229, -0.0030917127, 0.023181096, -0.013446925, 0.03804562, -0.007898044, 0.0020943317, -0.012528862, -0.006551326, 0.0108007435, 0.014216478, -0.017348694, -0.0045734397, -0.03907169, -0.0057581463, 0.01672765, 0.0034629884, -0.02093994, -0.030269083, -0.0011872379, -0.008816106, 0.026515825, 0.029675042, -0.010699486, -8.286195E-4, -0.020737426, 0.0035844967, -0.023559121, -0.02629981, -0.033050273, 0.0015922658, 0.03383333, 0.021587986, 0.027150368, 0.013581934, 0.019832864, 0.014581003, 0.0018327511, 0.014567503, -0.018860798, 0.0025297366, -0.028000927, -0.007628025, 0.031457163, 0.024328675, 0.0045869406, -0.0012328036, -1.595852E-4, 0.01976536, 0.0072972523, 0.01960335, -0.005771647, -0.021574484, -7.096426E-4, 0.026124299, -0.023923647, -0.0018057493, -0.019292828, -0.02875698, 0.033212285, -0.02848696, 0.003530493, 0.0021398973, 0.024936216, -0.0019711356, -0.008876861, -0.015755584, 0.012690873, -0.018658284, 0.002963454, -0.025084727, -0.0035068663, 0.0029550157, 0.009410148, 0.009950185, 0.0025229861, -0.0013281539, -0.006696461, 0.0068787234, -0.017119179, -0.007425511, 0.013109402, -0.011995575, -0.0130824, -0.028540963, -2.748705E-4, -0.033644315, -0.014121972, 0.003073149, 0.0061834254, 0.012542363, -0.017011171, -0.054111723, 0.037856605, 0.020426905, 0.04417504, -0.0011442037, 0.031592175, 0.009281889, 0.0063724387, -0.026110796, 0.010334961, -0.008262568, -0.007904794, 0.026245806, 0.017078675, -0.021682492, -0.003733007, 0.002053829, -0.0015289802, -0.027757911, -0.041501857, 0.03151117, 0.037694596, 0.013635938, -0.015593573, -0.0017854979, -0.019427838, 0.004576815, 0.007925046, -0.0025229861, 0.025354745, -0.019927371, -0.018685285, -0.0071284906, -0.0050797244, 0.0053834952, -6.7504647E-4, -0.011428537, 0.023181096, -0.005272113, -0.001239554, -0.018725788, -0.0081140585, 0.03372532, -0.019225324, -0.0098624285, -0.003324604, 0.024747202, 0.0017770597, -0.0093426425, 8.467614E-4, 0.032780256, -0.028945992, 0.009389896, 0.0019137567, 0.013743945, -0.010577978, 0.012076581, -0.023856143, -0.012292596, -0.024531187, -0.0025786774, 0.03388733, 0.013588686, 0.0057918984, -0.024247669, -0.013824952, -0.019346831, 0.0071419915, -0.006537825, 0.0111247655, -0.033320293, 0.021344969, 0.011361032, -3.4047654E-4, 0.015485566, 0.008917363, 0.0014808831, -0.0027187497, 0.024436682, -0.0077495333, 0.0030697738, -0.001305371, -0.023356607, -0.055191796, -0.020548414, 0.006639082, -0.017078675, -0.0011366095, -0.026920853, -0.0056298873, -0.0043202974, -0.021979513, 0.0052653626, -0.001459788, -0.017983237, 0.015215547, 0.024855211, -0.01859078, -0.018050741, -0.008870111, 0.03577746, 0.021223461, 0.0025820527, 0.009902932, 0.011880818, 0.038207628, -0.0159716, 0.0042224154, -0.010915501, -0.00901187, -0.03229422, 0.0075942725, 0.028945992, 0.0011366095, 0.006959729, -0.030971132, -0.008654095, -0.015472065, 0.016903164, -0.012441106, 0.010233704, 0.0075200177, 0.010881749, 0.027163869, 0.024004651, -0.0031862194, -0.027636401, -0.0023154092, -0.013743945, -0.019994875, -0.016430631, 0.009605911, 0.010793993, -0.012225091, 0.008127559, -0.036830533, -0.0021618363, -0.020602418, -0.015647577, 0.007648276, 0.019495342, 0.045579135, 0.02732588, -0.0031895945, 0.009119878, -0.016903164, 0.018860798, -0.013399672, 0.008978118, 0.008471833, 0.0014589442, 0.010625231, 0.021628488, -0.034940403, -0.0070677362, 0.008944365, 0.008701349, 0.010483472, 0.043608002, -0.02019739, -5.8349327E-4, -0.014310985, -0.0015947972, -0.0064399433, 0.0044991844, 0.018212752, -0.039017685, 0.0011247961, 0.018995807, 0.040475786, 0.0015796087, 2.1664772E-4, 0.009612662, -0.025381746, -0.0037971362, 0.0057918984, -0.01613361, 0.009113127, -0.023923647, 0.021601487, 0.008357075, -0.015134541, 0.026326811, 0.017321693, -0.007087988, -0.008093807, -0.007513267, 0.009565408, -0.0040232767, -0.00690235, 0.0033431675, 0.010658983, -0.021885006, 0.027123367, -0.026812846, 0.0081140585, -0.0017635588, -0.0072635, -0.02688035, 0.028000927, 0.016916664, -0.056271873, -0.014000463, 0.0044114287, -0.014810519, -0.008640595, -0.007931796, -0.017942734, -0.015188545, 0.013028396, 0.015458563, -0.024112659, -0.028945992, -5.1894196E-4, -0.024625694, -0.03453538, -7.328473E-4, 0.17551208, -0.033347294, 0.016295621, 0.030836122, 0.0033954836, 0.022762567, 0.02222253, 0.012542363, -0.027582398, 0.009774673, -7.320035E-4, 0.005241736, 0.010132447, -0.0047185747, 0.0054678763, -0.015863592, -0.021817502, -0.007540269, -0.022344038, -0.017969737, -0.0033684818, -0.011165269, -0.01553957, -0.013440175, 0.0024656071, -0.018928302, -0.0062576807, 0.0043405485, 0.0174297, 0.0159716, -0.018091245, -0.0035034912, 0.009079374, 0.022398042, -0.032159213, 0.0020386402, -8.6595806E-5, -0.0043371734, 0.010652233, -0.0069799805, -0.0031980325, -0.012083331, -0.014405492, -0.0016589267, -0.015161543, -0.0021348344, -0.01714618, -0.009268388, -0.02048091, 0.0043067965, -0.040880814, -0.0050358465, 0.001780435, 0.01976536, -0.003042772, -0.03688454, 0.010929002, -0.0031625926, -0.0028098808, -0.010301209, 0.021722995, 0.04231191, -0.04142085, 0.0034309237, -0.011860566, 0.0033482304, -0.03369832, 0.0017382447, 0.0159716, -0.03272625, -0.0067065866, -0.0051843566, -0.036668524, -0.008303071, -0.0021787125, -0.0034005465, -0.011253024, 0.018901302, 0.032942265, 0.017578209, -0.022330537, -0.007033984, 0.023937147, -0.016754653, -5.446781E-4, -0.024652697, 0.015040035, -0.014864523, -0.008505586, -0.009315641, -0.015593573, -0.030485097, -0.0203324, 0.007655027, -0.018185752, 0.010307959, -0.011199021, 0.010206702, 0.0072972523, -2.3204721E-4, -0.030458096, 0.013851954, 0.03151117, -0.006190176, -0.014472996, -0.032186214, 0.012603117, 0.016673647, -0.0031895945, -0.011536544, -0.014756516, -0.030242082, 0.0031490917, -0.025395248, -9.5519074E-4, 0.024247669, 0.014567503, -0.010976255, 0.034373365, -0.015850091, 0.009416898, -0.02091294, 0.0066222055, -0.0033127905, -0.0062678065, -0.035885468, -0.005113477, 0.013548182, 0.0025618013, -0.032375228, 0.015620575, -0.021425974, 0.016660146, -0.0050628483, -0.0040266523, 0.014662009, 0.011543294, 0.006780842, 0.012400603, -0.0074187606, 0.024936216, -0.021047948, 0.020156886, 0.015040035, -0.0044485563, -0.005771647, 4.6409442E-4, 0.01437849, -0.004664571, -0.010442968, -0.013554933, -0.023788637, 0.0014926965, 0.012798881, 0.031592175, -2.2445295E-4, -0.013278164, -0.04274394, -0.008411079, 0.027406886, -0.039017685, 0.014999532, 0.02848696, -0.029891057, -0.027582398, -0.016808657, -0.17248787, 0.008674347, 0.0092143845, -0.0203594, 0.021142455, 0.01918482, 0.010523974, -0.008532587, 0.0116243, -0.019549346, 0.03602048, 0.0057378947, -0.036722526, -3.552432E-4, 0.002976955, -0.009430399, -0.015350556, 0.017767223, 0.012312847, -0.0079993, 0.03296927, -0.023923647, -0.029026998, -0.006146298, -0.010665734, 0.033347294, -9.880993E-4, 0.0055893846, 0.01365619, -0.007877792, -0.036290497, 1.0842934E-4, 0.007081237, -0.015094039, -0.0159716, -0.010226954, -0.022020016, -0.013642689, -0.012191339, 0.001384689, 0.023640126, 0.01307565, 0.009713919, 0.002317097, 0.0068753483, -0.0031322155, 0.01904981, -0.012859635, -4.497497E-4, -0.01961685, -0.0030900252, -0.036668524, -0.0040772804, 7.3622254E-4, -0.008296321, 0.0078102876, -0.007351256, 0.0010496973, 0.022641057, -3.594095E-5, -0.04431005, -0.003969273, 0.014499998, -0.0016631457, 0.003169343, -0.02497672, -0.024666198, 0.004539687, -0.028513962, 0.01132728, -0.021560984, 0.004246042, 0.023046086, 0.0063724387, 0.0021010821, -0.011637801, -0.028324949, 0.006625581, -0.0029297017, 0.013602186, -0.030431094, 0.03008007, -0.019724857, 0.0079520475, 0.017159682, -0.0058594034, 0.0017298065, -0.016187614, -0.016390128, -0.0101662, 0.024018154, 0.0025229861, -0.03418435, -0.0028115686, -2.4491528E-4, 0.008222066, -1.8057492E-4, 0.021007447, -0.010206702, 0.01628212, -0.0054543754, -0.011307028, -0.024085658, 0.035912473, 0.038639657, 0.015067037, 0.009754421, 0.03998975, 0.027136868, -0.0020116384, -0.0142029775, -5.999475E-4, 0.0074457624, 0.007756284, -0.015148043, 0.011840315, -0.008539338, -0.025651766, 0.021101952, 0.024342176, 0.0319432, -0.009639664, -0.0012623369, -0.012731376, -0.010145948, -0.020966943, -0.087594025, 0.028432956, -5.9741613E-4, 0.028972995, -0.03186219, 0.040907815, 0.0060180393, 0.040880814, -0.028351951, 0.016066106, -8.2651E-4, -0.0077967867, 0.0047287005, -0.014283983, 0.022344038, -0.010118946, -0.007641526, 0.017078675, 0.0022209028, 0.029729046, -0.0025179232, -0.012738126, -0.012846134, -0.004330423, -0.032510236, 0.020318897, -0.031214148, 0.021196458, 0.011880818, 1.9755657E-4, 0.038639657, -0.026664335, 0.0131634055, -0.022344038, -0.028000927, -0.022263031, -0.01278538, -0.01976536, 0.030242082, -0.054030716, 0.005403747, 0.009133379, 0.0034123599, -0.036290497, -0.0013897519, -0.01801024, -0.026461821, 0.049062375, -0.009518155, -0.033347294, -0.01830726, -0.015283052, -0.02848696, -0.0094439, 0.03529143, 0.010449719, 0.015283052, 0.0067774663, -0.040475786, 0.013062149, 0.018239755, 1.1307028E-4, -0.027649904, 0.0149455285, 0.0054847524, 0.017321693, -0.011725557, -0.01555307, 0.008687848, -0.031133143, -0.010658983, 0.010611731, -0.034697387, -0.022560053, -0.02891899, 0.0020335775, -0.025057724, -8.480271E-4, 0.023559121, -0.028972995, -2.0304132E-4, -0.017902233, -0.012582866, -0.014540501, -0.0032469735, 0.013055398, 0.008627093, -0.008087057, -3.776041E-4, -0.038639657, 0.011745809, 0.03445437, -0.003108589, 0.0044384305, -0.00639269, 0.04420204, 0.018239755, 0.009794924, -0.00465107, 0.015485566, -0.016052606, 0.0015331992, -0.078791425, 0.025746271, -0.005825651, -0.0077292817, -0.012846134, -0.018104745, 0.016903164, 0.0075740214, -7.425511E-4, 0.0072567496, -0.01161755, 0.018536776, -0.0028537589, -0.004647695, -0.019549346, 0.009335892, 0.006389315, -0.013271414, -0.003103526, 0.008147811, -0.014689011, 0.011118015, 0.023545621, 0.0053227413, -0.011273276, 0.026637333, 0.009052373, 0.02802793, -0.020629419, -0.018874299, 0.004964967, -0.010550976, 0.0039929, 0.009369644, -0.006507448, -0.014364989, -8.6279376E-4, 0.002404853, -0.0010395716, 0.021601487, -0.0067167124, -0.009072624, -0.0057513956, -0.017240686, -0.019009309, 0.034778394, -0.02368063, 0.019873368, 0.023599625, 0.018995807, 0.013035147, 0.013473927, -0.009241386, -9.754421E-4, 0.017335193, -0.041366845, 0.05462476, 0.0127448775, -0.002273219, 0.02150698, 0.025219735, 0.016903164, 0.027730908, -0.016876161, 0.0020470785, 0.006919226, -0.006804468, -0.008215316, 8.1005576E-4, -0.021709494, 0.003174406, 0.0011517981, 0.008984868, 0.021196458, 0.016430631, 0.010361963, -0.009686917, -0.003486615, 0.0055623828, 0.019130817, 0.02875698, 0.0011129829, -0.028513962, 0.0130824, 0.008269319, 0.019873368, 0.019589849, 0.011070762, -0.011469039, 0.019481841, -0.023221599, 0.008802606, 0.023464615, 0.0071284906, 0.015323554, 0.03734357, -0.01191457, -0.026488822, 0.01076024, 0.041042823, 0.0057277693, 0.003706005, -0.0034494873, 0.0062408047, -0.038963683, 0.0073310044, -0.013818201, -0.023518618, 0.03296927, 0.018860798, 0.014770016, 0.01439199, -0.018698787, 0.0047759535, -0.020264894, 0.007324254, 0.004009776, -0.029243013, -0.019076813, 0.060646173, 0.016471133, 0.024004651, 0.021993013, -0.024585191, 0.054678764, 0.015296552, 0.028702974, -0.025611263, 0.008012801, -0.0036418757, 0.0020555165, 0.014324485, -0.023221599, 0.0013112777, -0.015040035, 0.011523043, -0.0027575647, 0.037073553, -0.009241386, 0.049386397, 0.011961823, 0.0030360215, 0.01961685, -0.021263963, 0.01668715, 0.003429236, 0.030026067, -0.012339849, -0.012049579, -0.0030039568, 2.501891E-4, -0.0067099617, -0.027838916, -0.01672765, -0.0023575998, 0.013932959, -0.006828095, 0.003679003, -0.008249068, 0.028270945, -0.008957867, 0.046632208, 8.256662E-4, -0.031619176, -0.012029327, 0.016444132, -0.00813431, 0.004391177, -0.031592175, 0.0013121215, -0.022627557, -0.008255818, 0.0016960542, 0.01104376, 0.013548182, -0.021196458, -0.012069831, 0.01801024, -0.0014142223, 0.008964617, -5.016439E-4, -0.014986032, -0.0036992545, 0.018806795, -0.0025921783, -0.0038140125, -0.012609867, -0.034103345 ], + "id" : "79579aa5-a499-4460-9247-9e3d48e0506d", + "metadata" : { + "source" : "movies.csv" + } + }, + "5b921b31-f536-489f-bdcd-3a48fb10a9c1" : { + "text" : "982,Walt Disney Pictures-Walt Disney Feature Animation,5/19/00,127500000,354248063,82,Released,You have never seen anything like this.,6.5,2221,D.B. Sweeney-Alfre Woodard-Ossie Davis-Max Casella-Hayden Panettiere-Samuel E. Wright-Julianna Margulies-Peter Siragusa-Joan Plowright-Della Reese-Cathy Cavadini-Edie Lehmann Boddicker-Matt Adler-Sandina Bailo-Lape-Zachary Bostrom,cataclysm-asteroid-migration-leader-comet-prehistoric-prehistoric egg-dinosaur-birth-death-nesting grounds-cavern-prehistoric creature-prehistoric adventure-lemur-prehistoric times,/rSje3FS7ycJSglowlngjsvDt7vO.jpg,/laeEtakR2pLKu3CeRwB2lU5Y53X.jpg,13700-11319-10948-37135-9982-12233-10545-3170-10009-10112-11544-7443-11360-10865-9325-10340-11688-11135-49948-9016-11970\r\n49538,X-Men: First Class,Action-Science Fiction-Adventure,en,Before Charles Xavier and Erik Lensherr took the names Professor X and Magneto they were two young men discovering their powers for the first time. Before they were arch-enemies they were closest of friends working together with other mutants (some familiar some new) to stop the greatest threat the world has ever known.,2.172,The Donners' Company-Bad Hat Harry Productions-20th Century Fox,6/1/11,160000000,353624124,132,Released,Witness the moment that will change our world.,7.294,11844,James McAvoy-Michael Fassbender-Kevin Bacon-Rose Byrne-Jennifer Lawrence-January Jones-Nicholas Hoult-Oliver Platt-Jason Flemyng-Lucas Till-Edi Gathegi-Zo� Kravitz-Caleb Landry Jones-Matt Craven-Laurence Belcher-Bill Milner-Morgan Lily-Beth Goddard-�va Magyar-�lex Gonz��lez-Corey Johnson-Demetri Goritsas-Glenn Morshower-Don Creech-James Remar-Ludger Pistor-Wilfried Hochholdinger-Greg Kolpakchi-Andrei Zayats-Rade ��erbed�_ija-Ray Wise-Michael Medeiros-Olek Krupa-Yuri Naumkin-Gene Farber-David Agranov-Katrine De Candole-James Faulkner-Annabelle Wallis-Juan Herrera-Greg Savage-Jarid Faubel-Gregory Cox-Josh Cohen-David Crow-Kieran Patrick Campbell-Sasha Pieterse-Brendan Fehr-Michael Ironside-Jason Beghe-Venya Manzyuk-Tony Curran-Randall Batinkoff-Peter Stark-Leonard Redlich-Carlos Peres-Sean Brown-Neil Fingleton-Marios-Georg Nikoloff-Arthur Darbinyan-John F. Kennedy-Hugh Jackman-Rebecca Romijn-David Joseph Martinez-Johnny Otto-Josh Ramsay,cia-nuclear war-mutant-mine-superhero-based on comic-superhuman-historical fiction-cuban missile crisis-world war iii-1960s,/vUvlOY575rztBuJV3a0dbHW5MQR.jpg,/bMiOfPhplZu1Lql3hGTRV087QA.", + "embedding" : [ 0.005090377, -0.03010801, -0.015508934, -0.035760153, -0.020085793, 0.024483437, -0.0052110017, -0.014640434, -0.009457003, -0.03628401, 0.033416584, 0.049352873, 0.027226795, -0.011462825, 0.0059726625, 0.014654219, 0.017190792, -0.013482433, 0.018969148, -0.03159687, -0.002734742, -0.0044390014, -0.025848223, 0.006079502, 0.006117413, 0.005335073, 0.022098508, -0.012124539, -0.0068549486, -0.0069411094, 0.016708292, -0.016267149, -0.005148966, -0.011428361, -0.014075219, -0.0058003413, 0.018583149, -0.023297865, 0.02347708, -0.013999398, 1.7770653E-4, 0.021326507, -0.011194004, 0.0055521983, -0.012862076, 0.0024900455, 0.0042080907, -0.005814127, 0.013399718, 0.031293582, 0.013268755, 0.023918223, -0.023394365, -0.02504865, 8.478217E-4, -0.009022753, -0.02160222, 0.0020713042, 0.0024641973, -0.013151576, 0.014736934, -0.012227933, -0.031514153, -0.024786722, -0.02704758, -0.012965469, -0.0011847102, -0.019300006, 1.7964515E-4, 0.001222621, 0.027406009, 0.014709362, 0.004569966, -0.0056590377, 0.012627718, -0.019561935, -0.018982936, 6.97902E-4, 0.0047767516, 9.072726E-4, 0.010180754, 0.0072857523, 0.0056555914, 6.9531717E-4, 0.018335005, 0.02560008, -0.014213076, 0.017314862, -0.045134444, 0.006169109, 0.0124967545, 0.033333868, 0.0015310764, 0.013075754, 0.016184434, 0.014571505, -0.0094294315, 0.021933079, -0.015412434, -0.047891587, -4.2498787E-4, 0.0043252693, -0.0072995382, -0.012386468, 0.002069581, 0.0047629657, -7.6295336E-4, -0.017563006, 0.017797364, -0.011001004, 0.0048560193, 0.005324734, 0.029611723, -0.037442014, 0.0049835374, -0.025296794, 0.021312721, -0.0022126078, -0.0034998495, -0.016763434, 0.02685458, 0.034354012, 0.01188329, -0.03201044, 0.037579868, 0.021037007, -0.012986147, -0.0070789666, 0.006851502, -0.00688252, 0.019947935, -0.0073822523, 0.02711651, -0.0016637639, -0.02273265, 0.05729345, -0.02753008, 0.021753864, -0.01429579, -0.013406612, 0.029859867, 0.040337015, -0.02169872, -0.013813291, -0.041302014, 0.0014914424, 0.0077268956, -0.008126682, 0.02357358, -0.0062759486, 0.023146221, 0.023366794, 0.0120487185, 0.03589801, 0.016280934, 0.008740146, 0.010235896, -0.017287292, 0.003456769, -0.017383792, 0.006079502, 0.01280004, -0.00133463, -0.01986522, -0.0086987885, 0.020788863, 0.018982936, -0.027199224, -0.010353075, -0.0026037777, -0.006079502, 0.019975506, -0.017494077, 0.023532223, -0.004394198, 0.011959111, 0.0010287593, -0.0014190674, -0.044334874, -0.0057762163, 0.008057753, -0.0012932727, 0.027695509, 0.026385866, -0.010125611, 0.006103627, 0.026523722, -0.035208724, 0.013172254, -0.01600522, 0.006617145, 0.014571505, 6.724846E-4, -0.007961253, -0.64362764, -0.010470253, -0.005903734, -0.026344508, 0.011283611, 0.020609649, 0.0035705012, -0.015922505, -0.04066787, -0.011428361, -0.029170582, 0.0097602885, 0.021726293, -0.027681723, -0.031955298, -0.010890718, -8.7237754E-4, -0.02724058, 0.01964465, 0.0040047513, -0.02673051, 0.020912936, 0.0016361926, 0.0040047513, 0.0068549486, 6.8110065E-4, -0.00630352, -0.009181289, 0.008560931, -0.008154253, -0.022967007, 0.009401861, 0.016432578, 0.00392893, 0.036697585, 0.00988436, -0.005204109, 0.051503446, 0.046127014, 0.03912387, -0.029225724, 3.7436842E-4, -6.6473015E-4, 0.02109215, -0.028150437, 0.012793147, 0.014364719, 0.0036187512, 0.006279395, -0.012165897, -0.014502577, 0.004115037, 0.0057555377, 0.008588503, -0.011069932, 0.010132504, 0.0073271096, -0.018886436, 0.019561935, 0.010911397, -0.011580003, 0.02328408, 0.0073133237, 0.011531753, -0.006341431, 0.019879006, -0.013179148, -0.01964465, 0.010146289, -0.018335005, 0.014013183, 0.011324968, -0.017273506, 0.0016672104, 0.0060243593, 0.008802181, 0.026606437, 0.0012674246, 0.011586897, 0.017011577, 0.0053591984, -0.0056521446, 9.115807E-4, 0.020237435, 0.02138165, -0.0038634478, -0.03167958, 0.0056521446, 0.017397577, 0.0028140098, -0.002798501, 0.0041805194, 0.005324734, -6.9919444E-4, -0.01149729, -0.005903734, -0.01716322, 0.0030259653, 0.010201432, -0.06749488, -0.02099565, -0.016653148, 0.008333467, -0.009394967, 0.020499364, 0.012772469, -0.006020913, -0.017949006, 0.02991501, -0.010525396, -0.0024969382, -0.006848056, -0.029115438, -0.016928863, -4.881006E-4, -0.02489701, 0.020306364, 0.009401861, -0.008829753, 0.011517968, 0.0017051211, 0.012234826, 0.014681791, -0.020844007, 0.008567824, 0.02273265, -0.008747038, -0.0031155725, 0.0033171887, 0.0061243055, 0.014323362, 0.0056762695, 0.0068687345, -0.015219433, 0.0027054474, 0.0025176168, 0.021588435, -0.010932075, 0.011814361, -0.008416181, -0.038627584, -0.0073891454, -0.025682794, -0.002534849, -0.013833969, -0.005855484, -0.02444208, 0.0064620557, 9.0210297E-4, -0.0012415763, -0.025986081, 0.008974503, 0.008043967, 0.014668005, 0.006182895, 0.010587432, -0.027088938, -0.019603292, 0.02015472, -0.014888576, 0.0108217895, 0.014530147, 0.0052247876, -0.019300006, 0.014157933, -0.009629325, -0.00635177, 0.008416181, 0.008560931, -0.021933079, 0.017604362, -3.6058272E-4, -0.010387539, 0.021243792, -0.0032620458, 0.034629725, -0.010539182, 0.02154708, 0.004249448, -0.014075219, 0.007802717, -2.5807834E-5, -0.025158936, -0.00911236, 0.03159687, 0.013530683, 0.014530147, -0.02444208, -0.018210934, 0.0057934485, -0.016804792, 6.0581773E-5, 1.623053E-4, -0.00896761, -0.01815579, 0.03926173, -0.0016353308, -2.526664E-4, 0.005314395, 0.015384862, 0.036504585, 0.016432578, 0.0072788596, -0.00378418, 0.010070467, -0.041439872, -0.006389681, -0.027502509, 0.0014052817, -0.0051765377, 0.031238439, -0.010091146, -0.013461755, -0.012172789, 0.01265529, 0.01812822, -0.007595931, 0.003215519, -0.012999933, 0.003911698, -0.011938432, -0.006200127, 0.018996721, 0.0068549486, -0.020540722, 0.0038048583, 0.024249079, -0.020485578, -3.131943E-4, -0.009953289, -0.0040288763, 0.0032189654, -0.007154788, -4.3705036E-4, 0.007947467, 0.026261795, 0.030025296, -0.0036635548, 0.034188583, -0.008168038, -0.010332396, 0.0117661115, 0.02637208, 0.012076289, -0.011869504, -0.009650003, 0.019810079, 0.008946932, -0.028136652, 0.044197015, -0.011490396, 0.014985076, -0.0040702336, 0.01632229, -0.004835341, -0.004387305, 0.0066033592, 0.021684935, 0.027392223, 0.022167437, 0.016722078, -0.03950987, 0.018459078, 0.012738004, 0.00969136, -0.0025848222, -0.021271365, 0.0026106704, 0.012303754, -0.017631935, -0.025806867, -0.018569363, 0.0072512883, 0.00334476, -0.007271967, -0.008423074, 4.1895662E-4, 0.017190792, 0.014095898, 0.037828013, 9.4690657E-4, -0.030383725, 0.004290805, 0.030769724, -0.009201967, -0.024359366, -0.013882219, -0.0054556984, -0.029887438, -0.006103627, -0.004063341, 0.021726293, -0.024193937, 0.0060588233, -0.012689754, -0.004594091, 0.022815365, -0.01928622, 0.0023125543, 0.01974115, -0.0040150904, 0.010649468, 0.008554039, -0.0041563944, 0.021119721, -0.008471324, 0.014171719, -0.010346182, -0.014109683, -0.004769859, 3.9073898E-4, -0.010759753, -0.038434584, 0.019327577, -0.022691293, -0.011586897, -0.008864217, 0.0033964566, 0.02070615, -0.012276183, -0.018900221, -0.023132436, -0.021078365, -0.0067239846, 0.059719734, 0.032286152, 0.004201198, 0.0043666265, -0.015646791, 0.0018472864, -0.01658422, -0.014888576, -0.006072609, -0.00785786, 0.011187111, -0.0028433045, 0.031955298, 0.0044631264, 0.022911865, -0.02015472, -0.0040288763, -0.012738004, -0.013096433, -0.01600522, -0.03319601, -0.012641504, 0.038434584, 0.034078296, 0.0046320017, -0.016556649, 0.020333935, 0.01764572, -0.0074787526, 0.012145218, -1.3451846E-4, 0.012986147, 0.0070858593, 0.01957572, 0.018210934, -2.6063624E-4, 0.031376295, 0.022346651, 0.0128758615, 8.706543E-4, -0.0047767516, 0.0054729306, 9.4507566E-5, -0.009050325, 0.010332396, -0.027281938, -0.011972897, 0.022070935, 0.024469651, -0.040998727, 0.01996172, -0.0022815366, -0.017370006, -0.008946932, 0.018872648, 0.007981931, -0.010366861, -0.007113431, -0.023297865, -0.0041908585, 0.013585826, -0.034464296, 0.013696112, -0.012407147, -4.7991532E-4, -0.0076717525, -0.01169029, -0.018142005, -0.011876397, 0.020471793, -0.013220505, -0.019341365, -0.0064379307, -0.012303754, 0.024152579, -0.003911698, 0.021905508, -0.004235662, 0.0116006825, 0.0074856454, -0.03278244, -0.025930937, 0.0042287693, -0.019107006, -0.0029553135, 0.011876397, -0.013151576, 0.020416649, -0.0057417518, 0.012841397, -0.0016672104, -0.0064206985, -0.010366861, -0.015605434, 0.03242401, 0.006972127, 8.766856E-5, 0.030521581, 0.01144904, -0.007023824, 0.010277254, 0.0034274743, -0.014916148, -0.0066033592, -0.017756006, -0.02299458, -0.007506324, 3.0996327E-4, -0.01284829, -0.02721301, -0.039399583, -0.017135648, 0.0054556984, -0.0039840727, 0.005500502, 0.020871578, 0.023614936, 0.018707221, -0.010697718, 0.011366325, 0.00901586, -4.8551577E-4, 0.0038117513, 0.026427222, -0.007802717, 0.038048584, -0.021436794, -0.023490865, -0.0013156745, 0.022608578, 0.010001539, 0.021891722, -0.015633006, -0.0087677175, -0.01058054, -0.013372147, 0.0041805194, -0.01429579, -0.0055625373, 0.0055763233, -0.013413505, 0.00843686, 0.0072512883, -0.003577394, 0.003208626, -0.028674295, 0.018665863, -0.006817038, 0.012586362, 0.01964465, -0.0016267148, 9.296744E-4, -0.024262866, -0.010325504, 0.0024280096, -0.041109014, -0.01954815, -0.007113431, 0.0350433, 0.025351938, 0.04251516, 3.0953248E-4, 0.02839858, 0.0128276115, 0.008953825, 0.03319601, -1.383957E-4, -0.0017137371, -0.027199224, -0.0035463762, 0.01154554, 0.021781435, 0.008168038, 0.006696413, 0.01583979, 0.021533294, 0.011235361, 0.013689219, 0.0063241986, -0.03143144, -0.014902362, 0.0038703405, -0.018486649, -1.5745875E-4, -0.021919293, -0.014557719, 0.034023155, -0.0059381984, -0.013344576, -0.00983611, 0.039978586, 0.0055453056, 0.027447367, -0.016653148, 0.016666934, -0.030576725, -0.002991501, -0.024276651, -0.013068861, -3.6230593E-4, -0.010166967, 0.015026433, 0.0056349128, -0.016405005, -0.0031948404, 0.021560865, -0.016542863, -0.018183364, 0.01352379, -5.281654E-4, -0.012420933, -0.04030944, -4.9499347E-4, -0.034960583, -0.0028639832, -0.0024693669, -0.011187111, 0.0011080272, -0.014612862, -0.04414187, 0.03647701, -0.010194539, 0.03702844, 0.0040323227, 0.055005018, 0.035208724, 0.007547681, -0.025848223, 0.007830288, -0.023587365, 0.0072650737, 0.036146156, 0.0031379743, -0.030328581, -0.00925711, 0.0068687345, 4.3554255E-4, -0.03490544, -0.04336987, 0.01851422, 0.017342435, 0.03126601, -0.021298936, -0.0010830405, -0.017149433, 0.015770862, -0.003079385, -0.00436318, 0.027957438, -0.025476009, -0.012124539, -0.0035567156, -0.0135375755, 0.014736934, 0.0050248946, -0.017218363, 0.01159379, -0.017245933, 0.0038634478, -0.0060588233, -0.020540722, 0.026220437, -0.022553436, 0.023435721, 0.0046492335, 0.0065413234, 0.0044390014, -0.009408753, 0.004177073, 0.034354012, -0.010001539, 0.0030604296, -0.010353075, 0.004669912, -0.006513752, 0.022746436, -0.03589801, -0.036532156, -0.041219298, -0.007492538, 0.034491867, 0.0047250553, -0.001600005, -0.009960182, -0.007837181, -0.007844074, 0.0116489325, -0.00586927, -0.0038393226, -0.04298387, 0.01925865, 0.003897912, 0.011586897, -0.012110754, -0.004980091, -3.8772335E-4, -0.00441143, 0.013978719, -6.4318994E-4, -0.010732182, -0.011207789, -0.017094292, -0.050731447, -0.022939436, -0.020196078, -0.011194004, -0.002984608, -0.015826005, -0.0070927525, 9.7630895E-5, -0.011014789, -0.012448505, 0.0039082514, -0.017342435, -0.0044527873, 0.02511758, -0.013110219, -0.009346717, 0.0040219836, 0.02292565, 0.008312789, -0.0057072877, 0.010566753, 0.014406077, 0.043039013, -0.028922439, 9.1416546E-4, 0.0016499782, -0.022346651, -0.011628254, 8.1680383E-4, 0.024276651, 0.023780365, 0.0038600012, -0.04298387, -0.007850967, -0.0040943585, 0.028894866, -0.014971291, -0.011800575, 0.02309108, 0.0076717525, 0.030769724, 0.022870507, -0.010359968, -0.02991501, 7.442134E-5, -0.0064930734, -0.024841866, 0.0035498226, 0.0025451884, 0.022512078, 0.014571505, 0.004835341, -0.025448438, -0.006141538, -0.018831292, -0.029556582, 0.0018817506, 0.012407147, 0.048084587, 0.015619219, -0.0038668942, 0.016336076, -0.006382788, 0.014833434, -0.021064578, -9.7103155E-4, 0.005469484, 0.024414508, 0.02666158, 0.02685458, -0.021560865, -0.022746436, 0.007657967, 0.024938365, 0.014640434, 0.022567222, -0.033912867, -0.0031121261, -0.0055763233, 0.0026916617, -8.443753E-4, -0.0037979656, 0.025627652, -0.0360083, -0.0050490196, 0.0058175735, 0.007651074, -0.009422539, -0.0047388407, 0.005717627, -0.018789934, -0.0073753595, -0.002060965, -0.014792076, 0.009505253, -0.02856401, 0.008216289, 0.01275179, 2.9811618E-4, 0.027723081, 0.011352539, -0.007065181, -6.729154E-4, -0.011504183, 0.00862986, 0.0034291975, -0.012972361, 0.004818109, 0.019341365, -0.03236887, 0.021340292, -0.02627558, 0.007657967, -0.018583149, 0.015384862, -0.016887506, 0.034216154, 0.0074236095, -0.041136585, 3.9763184E-4, -0.013599612, 0.011724754, -0.0131584685, 0.0064930734, -0.022567222, -0.009863682, -0.0040771263, 0.013385933, -0.026330722, -0.02289808, 0.004852573, -0.0034895102, -0.013406612, 0.01178679, 0.18208177, -0.0078716455, 0.022663722, 0.04907716, 8.689311E-4, 0.008526467, 0.01967222, 0.011731647, -0.006165663, 0.014075219, 0.002719233, 0.021078365, -9.26228E-4, 0.0031310814, 0.0054177875, -0.00795436, -0.020568293, -0.014013183, -0.02289808, -0.024235293, 0.007361574, -0.0038944655, -0.01275179, -0.019493006, -0.001290688, -0.002372867, -0.01439229, 6.948864E-4, 0.024083652, 0.002222947, -0.012682862, -0.012482968, -0.013461755, -0.0012777639, -0.03008044, -0.017080506, -0.003963394, 0.01169029, 0.008161145, 0.004111591, 0.0043045906, -0.0019713577, -0.0042873584, -0.008836646, 0.01619822, 0.01535729, -0.026041223, -0.0069583417, -0.015178077, 0.011966004, -0.044748444, 0.004635448, 0.011180218, 0.034850296, -0.0063586626, -0.008788396, 0.0045837513, -0.002198822, 0.0013165361, 0.0059313057, 0.018335005, 0.02837101, -0.03644944, 0.018183364, 4.8422336E-4, 0.025186509, -0.03926173, -0.005693502, 0.016446363, -0.033526868, -0.02167115, -0.020292578, -0.022484507, -0.0036842334, -0.0039909654, -9.537994E-4, 0.0072512883, 0.021809008, 0.018293649, 0.0013613397, -0.031321153, -0.014612862, -0.009863682, -0.008733253, -0.021340292, -0.023173794, 0.014075219, -0.013303218, -0.013544469, -0.03471244, -0.01771465, -0.01677722, -0.021905508, -0.0021953757, -0.0090985745, 0.0037807333, 0.022498293, 0.006817038, -0.014144148, -0.006465502, -0.025917152, 0.02972201, 0.007396038, -0.0064758416, -0.026192866, -0.011538647, -0.0095948605, 0.005469484, 0.02099565, -4.7361482E-5, -0.012276183, -0.022195008, -0.0049215015, -0.01583979, -0.009918825, 0.011924647, -0.0017594023, -0.023642508, 0.0414123, -0.014047648, -0.011511075, -0.014082111, 0.023297865, -0.004821555, 0.0017697416, -0.025751723, -0.019686006, 0.008891788, 0.006096734, -0.024290437, 0.008574717, -0.016308505, 0.012138326, 0.0032844476, -0.0038600012, -5.2902696E-4, 0.019437864, 0.015826005, -0.0048077693, -0.0020971524, 2.1324784E-4, -0.014323362, 0.010304824, 0.013117111, 0.012090076, -0.026220437, 0.014571505, 6.6903816E-4, -0.0036256441, -0.03223101, -0.024524793, -0.007878538, 0.015743291, 0.002598608, 0.036890585, 0.012627718, -0.017576791, -0.029639296, -0.009498361, 0.044969015, -0.032120723, 0.017411362, 0.008333467, -0.0044148765, -0.023270294, -0.012820719, -0.17767034, 0.012186576, 0.0061897878, -0.025586294, 0.017687077, 0.0073891454, 0.023201365, -0.00378418, 0.0063345376, -0.02118865, 0.015894935, -0.001207112, -0.0477813, -0.0013173978, 0.0067653414, 0.022691293, -0.030411296, 0.026234223, 0.010683932, -0.007947467, 0.041881014, -4.5557492E-5, -0.0050007696, -0.012400254, 0.009718932, 0.009105467, 0.02837101, 0.0116489325, 0.0026916617, -0.02032015, -0.041357156, -0.008781503, 0.010222111, -0.0030052867, -0.005372984, -0.0012846567, -0.027378438, -0.011959111, 0.0029880546, -0.008905575, 0.050538447, 0.013758147, 0.017687077, -4.4157382E-4, 0.010635682, 3.6704476E-4, 0.026964866, -0.006406913, 0.009415646, -0.020678578, -0.011359433, -0.039592586, 0.015481362, -0.0070858593, -0.007113431, 0.017301077, -0.0028295189, 0.010229004, 0.0078096096, -0.009188182, -0.036339156, -0.016901292, 0.007981931, -0.023876864, -9.382905E-4, -0.018293649, -0.009153717, 0.015315934, -0.03300301, -7.6338416E-4, -0.017990364, 0.021588435, 0.0033102958, 0.0095466105, 0.009394967, -0.025779294, -0.046099443, -7.6726143E-4, -0.011876397, 0.008602289, -0.023518436, 0.04676116, -0.014068326, 5.548752E-4, 0.006117413, -0.010938968, -0.0022091614, 0.004669912, 7.0221006E-4, -0.004580305, -0.0048387875, -0.0055453056, -0.0385173, -0.0032741083, -0.009581075, 0.005796895, -0.014709362, 8.5385295E-4, 0.018665863, -0.0116006825, -0.0013449691, -0.015646791, -0.0071341097, 0.01371679, 0.038214013, 0.018776149, 0.004659573, 0.03275487, 0.01641879, 0.0026123938, 0.002645135, 0.006841163, 0.009891253, -0.0028639832, -0.010973432, 0.013268755, -0.006923877, -0.014902362, 0.008554039, 0.01790765, 0.03570501, 0.009973967, -2.7054473E-4, -0.013399718, -0.010291039, -0.008450646, -0.0913166, -0.0017301077, -0.0060588233, 0.035760153, -0.029639296, 0.035980728, -0.00392893, 0.027667938, -0.018210934, 0.027033795, 0.002236733, -0.02147815, 0.0142682195, -0.0035032958, 0.016556649, 0.01735622, -0.0067170914, 0.004683698, -0.013827076, 0.029418724, -0.0029174027, -0.015922505, 0.0035394833, -0.0124967545, -0.025034865, 0.018376363, -0.024648866, 0.025034865, 0.002662367, 0.01841772, 0.0129930405, -0.019975506, 0.020430434, -0.041853443, -0.03049401, -0.02502108, -0.02273265, -0.017011577, -0.007837181, -0.052689016, 0.007899217, 0.020637222, 0.0015982818, -0.025172723, -0.0045837513, -0.006320752, -0.01986522, 0.04336987, -0.012352004, -0.03336144, -0.004569966, -0.012820719, -0.021726293, -0.008733253, 0.011710968, 0.023449508, 0.010787325, 0.0017921434, -0.0122623965, -0.023752794, -0.0063965735, -0.008450646, -0.023173794, 0.02453858, 0.003673894, 0.005042127, 0.0041667335, -0.007595931, 0.024800507, -0.026744295, -0.02502108, 0.022222579, -0.031100582, -0.004290805, -0.020444222, -0.0046768053, -0.037056014, -0.008588503, 0.03027344, -0.036118582, 0.012648397, -0.033775013, 1.1804022E-4, -0.015770862, 0.01967222, 0.021105936, 0.017287292, 0.008299002, -0.0017637104, -0.04232216, -0.007023824, 0.019300006, 0.009574181, -0.0027244026, 0.0031707154, 0.029005153, 0.02837101, -0.0059071807, 0.008526467, 0.01986522, -0.0100428965, -0.0026020545, -0.07102402, 0.020444222, -0.014668005, -0.0034533227, -0.004804323, -0.0045251623, 0.011752325, -0.014957505, 0.012565683, 0.011538647, -0.0034774477, 0.015247005, -0.010904504, 0.0018197149, -0.012517433, 0.0021850364, -0.0030207958, -0.0010899334, -0.008478217, 0.0015724335, -0.022332864, 0.005838252, 0.033968013, 0.0064827343, 0.012441611, 0.028260725, 0.0076097166, 0.013275648, -0.0068273772, -0.0013044736, 0.030576725, -0.018376363, -0.0042046444, 0.0061070733, -0.0018266077, -0.019699791, -0.011469718, -0.0057555377, 0.024097437, 0.014157933, -0.011828147, -0.023435721, -0.006103627, -0.015922505, -0.005293716, 0.025875794, -0.029970152, 0.018776149, 0.021643579, 0.024910795, 0.027985008, 0.013275648, 0.0014578397, -0.025172723, 0.02135408, -0.019892793, 0.054591447, -5.014555E-4, 0.007802717, -0.005335073, 0.016184434, 0.008278324, 0.021395436, -0.031927723, -0.01639122, -0.0074305027, 0.010449575, -0.012117647, -0.0016129292, -0.020347722, -0.0029897778, 0.0047043767, 0.020719936, 0.025255436, 0.020278793, 0.011862611, -0.015881147, 4.635448E-4, 0.0022195007, 0.016377434, 0.022484507, -0.013882219, -0.032699727, 0.029391153, -9.822325E-4, 0.032148298, -0.013165361, 0.005335073, -0.011903969, 0.016212005, -0.022856722, 0.010918289, 0.012372683, 0.009794753, 0.00242284, 0.012028039, -8.0517214E-4, -0.013799504, 1.5767416E-4, 0.020885363, -0.008119788, -0.0017852506, -0.008223182, -0.014585291, -0.02859158, 0.010987218, -0.023876864, -0.029556582, 0.00978786, 0.024069864, 0.024704007, 0.014157933, -0.027268153, 0.014130362, -0.0385173, 0.016832363, 0.008030181, 0.0067101987, -0.017673291, 0.034023155, 0.011118182, 0.010566753, 0.032892726, -0.017563006, 0.048112158, -0.0055797696, 0.01677722, -0.03300301, 0.012283076, -0.0077682524, -2.692523E-4, 0.0062104664, -0.025930937, 0.011559325, 0.0014707639, 0.00286226, 0.021436794, 0.035153583, -0.023242721, 0.05756916, 0.020306364, 0.0026210097, 0.0052730376, -0.01925865, 0.013365255, 0.026868366, 0.014847219, -0.007823396, 0.006520645, 0.009043432, -0.009422539, -0.0032172422, -0.027612794, 0.0017482014, -0.0018938131, 0.0135375755, 0.0023315097, -0.01169029, -0.015150505, 0.007396038, -0.0027967778, 0.035787728, 0.015495148, -0.022760222, -0.017921435, 0.029832296, -1.5465854E-4, -0.0070445025, -0.03187258, -0.0059278593, -0.027488723, 0.004470019, 5.5315194E-4, 0.01523322, 0.0022074382, -0.0030518135, -0.009201967, 0.024290437, 0.009774075, -0.00930536, 0.00858161, -0.01632229, -0.002991501, 0.0014948889, -0.013751254, -0.0025641436, -0.022236364, -0.008188717 ], + "id" : "5b921b31-f536-489f-bdcd-3a48fb10a9c1", + "metadata" : { + "source" : "movies.csv" + } + }, + "99199459-629d-4983-abf1-efb85ac0f40c" : { + "text" : "Cook-Laughton Parchment-Jackson Spidell-Yi Long-Heidi Moneymaker-Aaron Toney-Cale Schultz-Ann Russo-Gene Farber-Florence Kasumba-Cornell John-Sven H�_nig-Joshua Peck-Brent McGee-Be Satrazemis-Blair Jasin-Oliver Bigalke-Rafael Banasik-David de Vries-Katie Amess-Austin Sanders-Brett Gentile-John Curran-Matthew Anderson-Andrew Botchwey-Chase Bradfield-Ernest Charles-Hendricks Coates-Ethan Condon-Shen Dynes-Nathaniel Ellis-Jariah Ferguson-Evan Ffrench-Justin Freeman-Ralphael Grand'Pierre-Julian Grimes-Aaron Hayes-Austin Hooper-Amiri Jones-Myles Joseph-Stephen Lewis-Jacob Ludwick-D'Mahrei McRae-Ashwin Mudaliar-Eli Ollinger-Parker Pape-Daniel Parada-Jonah Ruffin-Darryl Sampson-Cameron Sardone-Stanley Sellers-Miles Selles-Jacob Sung-Caden Wilkinson-Jin Shijia-Jessica Walther-Gabory-Beniamino Brogi-Silvina Buchbauer-Henry Amadi-Ugochukwu Ani-Michael Anthony Rogers-Damion Poitier-Umar Khan-David E. Brown-Guy Fernandez-Jim Rash-Sophia Russo-Stan Lee-Amelia Morck-Kerry Condon-Julianna Guill-Surely Alvelo-Brian Schaeffer-Kevin LaRosa Jr.-Al Cerullo-Fr��d��ric North-Joe Russo-Ray Sahetapy-Chris Jai Alex-Scott Hunter-Kimberly Hester Huffstetler-Lucie Carroll,civil war-sequel-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-united states,/rAGiXaUfPzY7CDEyNKUofk3Kw2e.jpg,/wdwcOBMkt3zmPQuEMxB3FUtMio2.jpg,99861-100402-102899-284052-76338-1771-315635-283995-118340-24428-10195-1726-284053-10138-68721-293660-209112-299536-284054-246655-363088\r\n297802,Aquaman,Action-Adventure-Fantasy,en,Once home to the most advanced civilization on Earth Atlantis is now an underwater kingdom ruled by the power-hungry King Orm. With a vast army at his disposal Orm plans to conquer the remaining oceanic people and then the surface world. Standing in his way is Arthur Curry Orm's half-human half-Atlantean brother and true heir to the throne.,88.071,Warner Bros. Pictures-The Safran Company-DC Films,12/7/18,160000000,1148528393,143,Released,Home Is Calling,6.", + "embedding" : [ 0.010996554, -0.030739402, -0.0026005364, -0.0312772, -0.019374881, 0.030484656, -0.019176744, -0.0074937907, -0.014789445, -0.04109909, 0.035438057, 0.025870914, 0.025870914, -0.0018893693, 0.00596885, 0.021398699, 0.017266147, -0.017435977, 0.00907888, -0.029295838, -0.013784612, -0.0051161572, -0.019841915, 0.0085198525, 0.0069524543, 0.0115980385, 0.0030251138, -0.012694864, -0.014846056, -0.010239391, 0.009312397, -0.0054133614, 1.8884847E-4, -0.02221955, -0.029324144, 0.0066658645, 0.01157681, -0.012447193, 0.020903358, -0.014605462, -0.009185024, 0.0033576994, -0.007840529, -0.0076706978, -0.018865388, -0.002027357, 0.011378674, -0.014180884, -0.0037575096, 0.031079063, 0.03232449, 0.03631552, -0.012716092, -0.025007607, 4.851681E-4, -0.0053178314, -0.0057317945, 0.013360035, 0.015610294, 0.008427861, 0.025149133, -0.01132914, -0.027300324, -0.007967902, -0.008031589, 0.0022042643, -0.017917166, -0.019728696, -0.023196077, -0.001248965, 0.030739402, 0.027753208, 0.009277016, -0.00453944, 0.012178294, -0.02946567, -0.027470157, -2.7155262E-4, -0.026819138, 0.013013297, -0.0039025736, -0.0073593413, -0.003228557, -0.001395798, 0.0050453944, 0.00577779, -0.0088312095, 0.021158105, -0.036683485, 0.02238938, 0.013218509, 0.031192284, 0.007840529, 0.0032568623, -0.00356645, 0.022601668, -0.028885413, 0.024823623, -0.03589094, -0.037504334, 0.01094702, -0.0049675554, -0.010487061, -0.016983096, -0.0064005037, 0.0016540827, -0.0019459797, 8.2571455E-4, 0.02079014, 0.004709271, 0.009560067, 0.0016372765, 0.01920505, -0.040363155, -0.015978262, -0.027611682, -1.6673507E-4, -0.026861595, -0.022545058, -0.016402839, 0.028248549, 0.036032464, 0.0021618064, -0.022361076, 0.033937883, 0.030343128, -0.019389033, -0.0096874405, -0.005303679, 0.0029897322, 0.035324838, -0.0031631014, 0.02700312, 0.012305668, -0.024285825, 0.034220938, -0.028092869, -0.0022537983, -0.021158105, -0.0070692133, 0.033173647, 0.02095997, -0.021172259, -0.014973428, -0.030852621, -0.0017389981, 0.013572323, -0.0052187634, 0.008951507, -0.0037292046, 0.015709363, 0.013735078, 0.015228175, 0.013048678, 0.014860208, -0.0029561198, 0.009517609, -0.0059971553, 0.0027827509, -0.025120828, -0.004146706, -0.012411811, 0.0036301366, -0.016983096, 0.0068003144, 0.023507433, 0.029409058, -0.02074768, -0.006163448, 0.0076636216, -0.018568184, 0.012418888, -0.02864482, 0.013190203, -0.01679911, 0.0060466896, -0.0032374025, -0.006262516, -0.029437365, -0.014987581, -0.002398862, -0.006404042, 0.036626875, 0.02349328, 0.0046880418, -6.558836E-4, 0.018016232, -0.016204704, 8.871898E-4, -0.02897033, 0.0036230602, 0.016289618, -0.0089868875, 0.0055336584, -0.63086534, -0.021794971, -0.008003283, -0.01624716, 0.0061917533, 0.014124274, -5.426629E-4, -0.0015178641, -0.011067317, -0.011548504, -0.034107715, 0.022035565, 0.00907888, -0.007012603, -0.025842609, -0.009291168, 0.01020401, -0.014548851, 0.031814996, 0.0016576208, -0.025432184, 0.016643433, 0.018638946, -0.010451679, 0.0014409095, 0.0156386, -0.008710912, -0.0110531645, 0.015511227, 0.0038211963, -0.026988968, 0.018851236, 0.018893693, 0.003421386, 0.048033852, 0.013232661, -0.025262354, 0.038155355, 0.023634806, 0.03187161, -0.021228869, -0.0056539555, 0.015001734, 0.001258695, -0.0035735262, 0.012008463, 0.0047729574, -0.0016399301, -0.0050241654, -0.02168175, -0.011074393, -0.0020025899, -0.008102352, -0.025219895, -0.009425618, 0.0074513326, 0.0057105655, -0.024837775, 0.019332422, 0.0113645205, -0.025616167, 0.03198483, -0.0044722147, 0.011506047, 0.0016452373, 0.020011747, -0.0014674455, 0.0034815343, -0.001273732, -0.026988968, 0.015086649, 0.015298937, -0.008229725, -0.0044722147, 0.0031241819, 0.0048048007, 0.039825357, -0.010267696, 0.0053638276, 0.0142658, -0.0013108826, -0.010267696, 0.008456166, 0.015355548, 0.010982402, -0.013126517, -0.042118076, 0.015058344, 0.0053249076, -0.010911638, 9.906805E-4, 0.008654302, 0.011583886, 0.004698656, -1.568946E-4, 0.013940291, -0.018907845, -0.0030711095, 0.019629627, -0.07642393, -0.0023157157, -0.032833982, 0.031135675, -0.011817403, 0.0074725617, 0.0039061117, -0.007207201, -0.013961519, 0.028064564, -0.032409407, -9.3760836E-4, -0.00406179, -0.02221955, -0.0041962396, 0.014789445, -0.03215466, 0.012369354, 0.024101842, -0.009319473, -0.012057997, 0.0021105034, 0.016006567, 0.009729898, -0.011895242, 0.01207215, 0.036909927, 9.278785E-4, -0.01745013, 0.009177947, 0.008208496, 0.0096874405, -0.015228175, 0.026790831, -0.011399902, 0.0054310523, 0.0156386, 0.017888859, -0.010840875, 0.030626182, -8.774599E-4, -0.015001734, 0.006931226, -0.018907845, -0.01920505, -0.0170114, -0.015822584, -0.029210923, 0.0035027633, -0.0114423605, -0.009114261, -0.0077556134, 0.017308604, -0.0035611426, 0.0170114, -0.0050630854, 0.008484471, -0.01525648, -0.01706801, -5.550465E-4, -0.02326684, 0.012192447, 0.016983096, -0.015624447, -0.023351755, 0.039712135, -0.00787591, -0.015383854, -0.0055195056, -0.014039358, -0.018723862, 0.017053857, -0.016119787, 0.004029947, 0.013112364, -0.010154475, 0.032126356, -0.0046668127, 0.016926484, -0.0015028269, -0.0015045961, 0.008222648, -0.0049250973, -0.02568693, -0.014704529, 0.018483268, 0.012765626, 0.009666211, -0.0014002208, 0.009170871, 0.010791342, -0.020705223, -0.010472909, -0.006552644, -0.015383854, 0.014287028, 0.024073537, 0.0071824337, 0.01481775, -2.7000468E-4, -0.006747242, 0.023507433, 0.020775985, 0.0088312095, -4.0467532E-4, 0.015100801, -0.023663113, 0.0038919593, -0.030484656, 0.018200217, -0.0076565454, 0.02469625, -0.02019573, -0.017167078, 0.023804639, 0.010112017, 0.019742848, 2.250039E-4, -0.00718951, -0.005551349, 0.015284785, 0.021497767, -0.020153273, 0.0038707303, 0.011866937, -0.035806026, 0.016473603, -0.0012816929, -0.0125745665, -0.001956594, -0.01596411, -0.0015284786, 0.0036089076, -0.0058556297, -0.0026253033, 4.079923E-4, -0.0048720255, 0.029210923, -0.007727308, 0.03996688, -0.007387646, 0.0035876788, 0.0128859235, 0.02601244, 0.006577411, 0.007699003, -0.023422519, 0.029380754, 0.021313785, -4.3673973E-4, 0.042004853, -0.011399902, 0.02475286, -0.017082162, -0.01679911, 0.017987927, -0.013643086, 0.0016434683, -0.0014984043, 0.020846749, 0.02008251, 0.0054345904, -0.019134287, 0.017322756, 0.0049498645, 0.018454963, -0.0044651385, -0.014987581, 0.005289526, -0.013728001, -0.02311116, -0.027328629, -0.012305668, 2.0830827E-4, 0.0018699095, -0.018653098, -0.0078193, -0.016968941, -0.0037716622, 7.413519E-5, 0.011647573, -0.014251647, -0.03962722, 0.0057530235, 0.03178669, -0.010628587, -0.02475286, 1.9946291E-4, 0.0013294579, -0.03617399, 0.004695118, -0.010536595, 0.016176397, -0.0061068377, 0.007012603, -0.0027668292, 0.011010706, 0.011378674, -0.003792891, 0.0033806972, 0.017846402, -0.0028446685, 0.006867539, -2.786289E-4, -0.0047658808, 0.04081604, -2.6646652E-4, 0.0029720415, -0.0076706978, -0.007960825, -0.03891959, 0.01592165, 0.0064111184, -0.025531253, 0.03198483, 0.006814467, -0.019884374, -0.012468422, -0.0080103595, 0.0060254605, -0.0011437053, -0.0099209575, -0.023224382, -0.04378808, 0.008625997, 0.090916164, 0.035862636, 2.3484435E-4, 0.008243877, -0.0136643145, 0.01558199, -0.010890409, -0.008456166, -0.0015514764, -0.0061492957, 0.026153967, 0.009425618, 0.015114955, 0.0040936335, 0.025290659, -0.006577411, -0.0013409569, -0.007706079, -0.0042634644, -0.013579399, -0.010876257, -0.013317577, 0.023479128, 0.032522626, 0.014124274, -0.010642739, 0.026054898, 0.013423721, 0.0031896376, 0.013126517, -0.0071470523, -8.898434E-4, 0.018837083, 0.008081122, 0.006379275, -0.0033895427, 0.018072844, 0.0073522646, 0.018370047, -0.0016098559, 0.01306283, 0.009213329, 0.0025226972, -0.019445643, 0.003983951, -0.038381793, -0.009517609, 0.018341742, 0.026988968, -0.03314534, 0.013940291, -0.0031860992, -0.018030386, -0.026875747, 0.031588554, -0.014117197, -8.442898E-4, 0.006053766, -7.3062687E-4, -1.7978199E-4, -0.0016355074, -0.023224382, 0.019771153, -0.019021066, -0.0098785, -0.019856067, -0.028842956, -0.0044120667, -0.019417338, 0.027116342, 0.0033895427, -0.019134287, -0.013133593, 0.0032108664, 0.027838122, 0.009135489, 0.019757, -0.0027668292, -9.455692E-4, 0.013211433, -0.025375575, -0.01777564, -0.005310755, -0.031022454, -0.017662419, 0.009432694, 0.006181139, 0.0056362646, -0.0045783594, 0.013338806, -0.015058344, 2.9521396E-5, -0.007143514, -0.0011941239, 0.03705145, 0.0074725617, 0.012447193, 0.016289618, -5.4531655E-4, -5.8688974E-4, -0.0012560413, -0.025163285, -0.004592512, -0.010472909, -0.008279258, 0.0039945655, -0.014152579, 0.01739352, -0.027116342, -0.021667598, -0.020648614, -0.019573016, -0.009977568, -0.013452026, 0.007727308, -0.007989131, 0.017251994, 0.013098212, -0.029267533, 0.007430104, -0.0063014356, -0.017478434, 0.014902665, 0.023012094, -0.016600976, 0.03249432, 0.0044120667, -0.01443563, 0.0058131716, 0.01981361, -9.632599E-4, 0.02321023, -0.017747333, -0.006184677, -0.011428207, -0.015171564, 0.009956339, -0.010097865, -0.0051939962, 0.009404388, -0.016148092, -0.001773495, 0.0063721985, 0.012893, -0.008965659, -0.030909233, 0.015398006, -0.016728349, 0.020124968, 0.021469463, -0.011300834, 0.0036000623, -0.020606155, 0.010791342, -0.0060148463, -0.013685544, -0.032720763, -0.012093379, 0.03846671, -0.0020450477, 0.049364194, 0.007805147, 0.012355202, 0.012418888, 0.01926166, 0.013798765, -0.0111310035, -0.0268899, -0.026139813, -0.007621164, 0.004811877, 0.035211615, 0.0028800499, 0.007129362, 0.017096315, 0.020931665, 0.011541428, 0.0025050065, 0.0023776332, -0.033173647, -0.023606502, 0.002494392, -0.029041093, -0.026578544, -0.027045578, -0.0153413955, 0.05185505, 0.0032126354, -0.010543671, -0.015284785, 0.035155006, 0.0016072022, 0.02095997, -0.036626875, 0.024271673, -0.016544364, -0.007911292, -0.021993108, -0.017931318, 0.01081257, -0.005774252, 0.01251088, 0.0013206125, -0.0061209905, -0.008385403, 0.017152926, -0.019530559, -0.02265828, 0.016657585, -0.021030731, -0.0105649, -0.030597875, -8.177537E-4, -0.027427698, -0.024271673, 0.0031648704, -0.01026062, 0.0055088913, -0.013303424, -0.049873687, 0.030116688, 9.977568E-4, 0.0521381, 0.015214022, 0.049590636, 0.018794624, -0.00312772, -0.008710912, 0.0101969335, -0.011060241, -0.02134209, 0.032805678, 0.013926137, -0.0021848043, -0.014180884, 2.149423E-4, -0.0062448257, -0.041721802, -0.039712135, 0.030796012, 0.026550239, 0.014704529, -0.02469625, -0.007960825, -0.017549198, 0.017492587, -0.007115209, -0.011534352, -0.0010941713, -0.015468769, -0.016530212, 0.0062731304, -0.0023404828, 0.015171564, 0.016728349, -0.043929607, 0.010359688, -0.019332422, 0.010048331, -0.004599588, -0.006920611, 0.028446684, -0.015100801, 0.02063446, 0.0064465, 0.017931318, 8.906174E-5, -0.005774252, -0.006938302, 0.031673472, -0.014959276, 0.01607733, 0.009552991, 0.0028570518, 0.009659135, 0.019346576, -0.013218509, -0.004737576, -0.023012094, 0.0012365816, 0.031220589, -0.005696413, -7.001104E-4, -8.6773E-4, -0.008774599, -0.008781675, 0.008371251, -0.005406285, 0.0064677284, -0.04483537, -0.0019459797, -0.0059334687, 3.1622167E-4, -0.0030693405, 0.009906805, -0.012157065, 4.2258715E-4, -0.003693823, -0.005915778, -0.0027544457, -0.02008251, -0.020917512, -0.032013133, -0.013487408, -0.0037185901, -0.020238187, 0.018780472, -0.02151192, -0.006237749, -0.007387646, 1.2814718E-4, -0.0012870001, -0.015086649, -0.0011985465, 0.0076140873, 0.019686237, -0.0056256503, 0.0034320003, -0.0075150193, 0.020719375, 0.0043731467, -0.0051409244, 0.0143294865, 0.0011675878, 0.022247855, -0.026748374, 0.008357098, -1.8976065E-5, -0.03192822, 0.007953749, 0.016020719, 0.03490026, 0.01739352, -0.008335869, -0.03187161, -0.005179844, -0.0056256503, 0.02101658, -0.01418796, -0.012362278, 0.040476374, 0.019785305, 0.048033852, 0.025729388, -0.023733875, -0.016204704, 0.0033063963, -0.0067047845, -0.033994496, -0.005791943, 0.012588719, 0.01319728, 0.0048720255, -0.0080881985, -0.029777026, -0.0030534188, -0.012694864, -0.045571305, 9.28763E-4, 0.024965148, 0.047864024, 0.020209882, 0.015482921, 0.029692112, -5.2585674E-4, -0.0028446685, 0.008342945, -2.9455055E-4, 0.023365907, 0.0017160001, 0.019233355, 0.009135489, -0.03144703, 0.008038665, 0.0057353326, 0.007090442, 0.0058096335, 0.013381263, -0.014605462, -0.012659482, -0.008590615, 0.019190896, -0.008668454, -0.013614781, 0.015850889, -0.024031078, 0.0017460744, 0.01268071, 0.014888513, 0.0016257775, -0.0022803342, -0.0026323798, -0.014548851, 0.012086302, 0.0016938868, -0.018398352, 0.009744051, -0.024271673, 0.040900953, 0.019686237, -0.010954096, 0.025927525, 0.02601244, -0.016926484, -0.0038035056, -0.036457043, 0.0041679344, -0.0134307975, -0.0041431673, -0.0071788956, 0.018907845, -0.031758387, 0.008894896, -0.016190551, -0.0023121776, -0.0016346229, 0.008774599, 0.006237749, 0.031418726, 0.006184677, -0.0318433, -0.008300488, -0.020379713, 0.013176051, -0.012878847, -3.2130777E-4, -0.02765414, -0.011782022, -0.017577503, 0.0031967137, -0.026139813, -0.02359235, 5.9087016E-4, -0.013296348, -0.0066092545, 0.0059546977, 0.2035707, -0.005480586, -0.0016160476, 0.055619635, -0.002298025, 0.017223688, 0.026621, 0.017648267, -0.016332077, 0.009758203, -0.0033028582, 2.6226498E-4, 0.01039507, -0.0077485368, 0.015511227, -0.020563697, -0.013260966, -0.015242328, -0.017874707, -0.01761996, -0.0049781697, 0.0025368498, -0.0032108664, -0.01870971, 0.0035894478, -0.0017027322, 0.00831464, -2.2069179E-4, 0.010840875, 0.0021865733, -0.008611844, -0.0030870312, 0.0040936335, 0.011895242, -0.02321023, -0.019728696, 0.0070585986, 0.007790995, 0.013480332, 0.0032073283, 9.735426E-5, -0.009262863, -0.0072213532, -0.011697106, -8.7392173E-4, 3.577949E-4, -0.023903705, -0.006839234, -0.008109428, 0.0076423925, -0.036881622, 0.016742501, 0.025984135, 0.0268899, -0.0055584256, -0.0015762434, 0.010862105, 0.016586823, -0.006043151, 0.0011932394, 0.006648174, 0.050892673, -0.027172951, 0.015737668, -0.006237749, 0.012121684, -0.029239228, -0.0012118146, 0.013211433, -0.031531945, -0.013423721, -0.045458082, -0.00390965, 0.0032887056, -0.017053857, -0.01777564, -8.814403E-4, 0.023068704, 0.018525725, 0.013388339, -0.009772356, 0.009163795, 0.00718951, -0.001977823, -0.0108196465, -0.017039705, 0.022502601, -0.024073537, -0.013381263, -0.016968941, -0.0066835554, -0.024073537, -0.003592986, -0.003076417, -0.008357098, -0.0038247344, 0.02326684, 0.018752167, -0.008208496, -0.002711988, -0.026139813, 0.018285131, 0.03289059, -0.009135489, -0.025290659, -0.020761833, -0.00709398, 0.010826723, 0.039372474, -0.025616167, -0.009100108, 0.0022874107, -4.8561036E-4, -0.015978262, 5.055124E-4, 0.023521585, 0.013168975, -0.017435977, 0.04407113, -0.00888782, -0.013678468, -0.02759753, 7.602589E-4, 0.0014214497, -0.005894549, -0.0444391, -0.027328629, 0.009446846, -0.009496381, -0.042938925, 0.018554032, -0.024781166, 0.0019424414, -0.009503457, -0.0068887677, 0.008993964, 0.0016753115, -0.011343292, 0.006531415, -0.009361931, -0.008873667, -0.014563004, 0.01943149, 0.0037468954, -0.0047835717, -0.033003815, 0.009213329, -0.005208149, -0.017237842, -0.03051296, -0.01388368, -0.0016355074, 0.0010968249, 0.011774946, 0.043108754, -0.013211433, -0.008081122, -0.027923038, -0.008937353, 0.038551625, -0.03741942, 0.028715583, 0.033909578, -0.012157065, -0.024568876, -0.009928034, -0.1838703, 0.025715236, 0.006478343, -0.03928756, 0.023464976, 0.01169003, 0.030682791, 0.013048678, 0.005749485, -0.011803251, 0.02183743, 0.017959623, -0.040702816, -0.009093032, 0.008250954, 0.008031589, -0.018426659, 0.024130147, 0.026988968, -4.2524078E-4, 0.03628721, -0.004228083, -0.017082162, 0.007790995, 0.020492934, -0.008512776, 0.023691418, 0.0046845037, -0.0041148625, -0.0052223015, -0.020068357, -0.012503804, 0.0037044375, 7.0762896E-4, -0.0075362483, -0.005572578, -0.014124274, -0.012687787, -0.0026093817, 0.0030534188, 0.030371435, 0.009022269, 0.021483615, 0.015270633, 0.010791342, 0.016756654, 0.025163285, -0.029607195, 0.011463589, -0.020676918, -0.0027933652, -0.03269246, 0.029324144, -0.004896792, 0.012008463, 0.015015886, 0.00337539, -4.429315E-4, 0.018893693, 0.012164142, -0.02294133, 5.2320317E-4, 0.006358046, -0.010925791, -0.0066587883, -0.012907152, -0.023280993, 0.007960825, -0.028630666, 0.020889206, -0.018582337, 0.009864348, 0.017973775, -6.7667017E-4, 0.006835696, -0.015893346, -0.031135675, -0.002837592, -0.005452281, 0.034588903, -0.018270979, 0.034475684, -0.012454269, 0.009496381, 0.0045854356, 0.0057141036, -0.0024006313, 0.0025863838, -0.001088864, -0.008392479, -0.008916125, -0.025064217, -0.048741482, 0.0060148463, 0.008930277, 0.019190896, -0.0018168373, 0.010989478, 0.007302731, -0.0143294865, -0.0022361074, -5.209918E-4, -0.025177438, 0.035013482, 0.023663113, 0.007996207, 0.0036478273, 0.026946511, 0.008371251, -0.0014621383, -0.011067317, 0.009885577, 0.023606502, 0.021228869, -0.013409569, 0.0059546977, -0.027017273, -0.028305158, -0.0027933652, 0.025219895, 0.048967924, 0.02079014, 0.0039768745, -0.006729551, 0.0021547303, -0.013657238, -0.09148227, 0.013459102, 0.013246814, 0.045033507, -0.016855722, 0.033173647, -0.007890062, 0.016388686, -0.017124621, 0.045146726, 2.3285414E-4, -0.039853662, 0.008774599, -0.0025775384, 0.0111310035, 9.7387435E-4, -0.020931665, -0.009864348, 0.004429757, 0.020252341, -0.014520546, -0.01876632, -0.009503457, -0.02650778, -0.016431144, 0.018285131, -0.027229562, 0.024115995, 0.010847952, 0.008534005, 0.013098212, -0.014888513, 0.017931318, -0.038438406, -0.0075433245, -0.031362116, -0.023832943, -0.0112088425, 0.02217709, -0.04435418, 0.01689818, 0.018695557, 0.011116851, -0.025149133, 0.0029897322, 0.007826376, -0.033937883, 0.033768054, -0.005692875, -0.01849742, -0.004712809, -0.010543671, -0.03747603, 0.006577411, 0.016756654, 0.00596885, 0.025771847, 0.005622112, -0.003945031, -0.024285825, -0.0063014356, -0.025644474, -0.0041219387, -5.997155E-4, 0.021526072, -0.0015426311, -0.0033117034, -0.014662072, 0.011279605, -0.012553338, -0.020804292, 0.029437365, -0.036966536, 0.0012073918, -0.028446684, -0.008031589, -0.027753208, -0.00812358, 0.022148786, -0.034107715, -0.0033966189, -0.030626182, 2.1980725E-4, -0.02887126, 0.010133247, 0.012291515, 0.009291168, 0.01169003, -0.0051515386, -0.042174686, 0.0075574773, 0.02513498, -0.0036124457, -0.016501907, 0.0018416044, 0.021469463, 0.014987581, 0.007062137, -0.002055662, 0.004136091, -0.016374534, -0.014605462, -0.086727, 0.030880928, -5.6942015E-5, 0.0077485368, -0.01319728, -0.018624794, -0.0035912169, -0.01525648, -0.020351408, 0.028474988, -0.0069489162, 0.020761833, -0.011031935, -0.012100455, 0.0012197754, -6.174063E-4, 0.016827416, -0.0013498022, 0.011152232, -0.007338112, -0.010140323, 0.028220242, 0.016657585, -8.2792586E-4, -0.006814467, 0.02891372, 0.0036867468, 0.01075596, -0.023790484, -3.0803971E-4, 0.031616863, -0.014577156, -0.005990079, 0.0181153, 0.0068321573, -0.024554724, -0.012057997, -0.0023917858, 0.004695118, 0.0015284786, -0.011619267, -0.023847096, -0.006527877, -0.0022821033, -0.008654302, 0.022913026, -0.0023351756, 0.01319728, 0.014216266, 0.01613394, 0.02875804, 0.00888782, -0.0044722147, -0.02376218, 0.0076565454, -0.025616167, 0.0504681, -7.4212585E-4, 0.0119377, -0.008038665, 0.036966536, 2.4523766E-4, 0.02980533, -0.03560789, 0.006241287, 0.005944083, 0.008456166, -0.009100108, 5.603537E-4, -0.023012094, -0.006382813, 0.0027774437, 0.0075150193, 0.035494667, 0.0089090485, 0.010161552, 0.020535393, 0.00831464, 0.00503478, 0.0075928587, 0.0044757533, -0.009616678, -0.02727202, 0.026960663, -2.4833353E-4, 0.015044192, -0.012970839, 0.0133105, -0.0034072334, 0.014619614, 0.006630483, 0.0048260293, 0.014945123, -0.02721541, 0.009722821, 0.0043731467, -0.0068816915, -0.008880744, 0.008590615, 0.019785305, -0.0016903486, -0.0107418075, -2.1306265E-4, -0.01094702, -0.02353574, 0.008604768, -0.02353574, -0.036740094, 0.011831556, 0.009482228, 0.026974816, 0.01031723, -0.0013409569, 0.0053673657, -0.028390074, 0.014103045, -0.012539185, -0.018907845, -0.0043413034, 0.029267533, 0.008675531, 0.02458303, 0.03484365, -0.005523044, 0.042118076, 0.021596836, 0.017577503, -0.027413545, 0.008151885, 0.006432347, 0.0029384291, 0.001417027, -0.015313091, -0.004613741, -0.017308604, 0.004836644, 0.024285825, 0.033683136, -0.023691418, 0.07472562, 0.018723862, -0.017506741, 0.016884027, -0.0030958767, 0.013466178, -0.0035522974, 0.012164142, -0.014308257, -0.02200726, -0.0055867303, -0.010189856, -0.0108196465, -0.0312772, -0.0036725942, -0.005646879, 0.028772194, 0.008335869, -0.0055548875, -0.014591309, -0.012709016, 0.003079955, 0.027342783, -0.0010331383, -0.0113645205, -0.012149989, 0.023224382, -0.023988621, 0.011145156, -0.045627914, -0.006634021, -0.03178669, 0.0071682814, -4.559784E-4, 0.029720416, -0.01794547, 0.0031931757, 0.0055548875, 0.022290312, 0.015327243, -0.016926484, 0.004935712, -0.0154970735, -0.02299794, 0.017379368, 0.0012816929, -0.0024537034, -0.022799805, -0.012900076 ], + "id" : "99199459-629d-4983-abf1-efb85ac0f40c", + "metadata" : { + "source" : "movies.csv" + } + }, + "0965bcb5-3f1a-47d5-93d9-51163aa572f1" : { + "text" : ",607-41154-2048-602-8960-1858-9738-950-425-36658-285-1979-558-1734-8373-564-605-604-58-557-559\r\n449927,Chasing the Dragon,Action-Crime-History,cn,An illegal immigrant from Mainland China sneaks into the corrupt British-colonized Hong Kong in 1963 transforming himself into a ruthless drug lord.,7.964,Mega-Vision Pictures (MVP)-Bona Film Group-Infinitus Entertainment,9/28/17,200005000,445000000,128,Released,,7.015,68,Donnie Yen-Andy Lau-Kent Cheng-Wilfred Lau-Felix Wong-Philip Keung-Michelle Hu-Raquel Xu-Philip Ng-Kent Tong-Niki Chow-Bryan Larkin-Julian Gaertner-Philippe Joly-Kenneth Tsang-Michael Chan-Terence Yin-Ricky Yi Fan-Wai-Ben Ng-Jai Day-Jason Wong,,/Lc0XGNZmsFe3uA1UMqhlBiJSY4.jpg,/vLgkglkAOgXzy8sXscFLvidgaTM.jpg,377447-57158-311324-335988-68726-49051-122917-76492-259316-121-297762-1865-24428-141052-99861-120-18785-862-129-209112-22\r\n1734,The Mummy Returns,Adventure-Action-Fantasy,en,Rick and Evelyn O��Connell along with their 8-year-old son Alex discover the key to the legendary Scorpion King��s might: the fabled Bracelet of Anubis. Unfortunately a newly resurrected Imhotep has designs on the bracelet as well and isn��t above kidnapping its new bearer Alex to gain control of Anubis��s otherworldly army.,91.092,Universal Pictures-Alphaville,5/4/01,98000000,443280904,130,Released,The most powerful force on earth is about to be unleashed by the two people who should know better.,6.365,6645,Brendan Fraser-Rachel Weisz-John Hannah-Oded Fehr-Arnold Vosloo-Patricia Vel��squez-Freddie Boath-Dwayne Johnson-Alun Armstrong-Adewale Akinnuoye-Agbaje-Shaun Parkes-Bruce Byron-Joe Dixon-Tom Fisher-Aharon Ipal��-Quill Roberts-Donna Air-Trevor Lovell-Brian Best-Sean Cronin-Rocky Taylor-Rene Costa-Salem Hanna-Max Cavalera,egypt-pyramid-son-mummy-nile-sequel-tomb-ancient egypt-1930s-egyptian tomb-good versus evil,/kdJsW7hcy1lrj7tdMPycTAQPAiR.jpg,/fRnhnR2JfkGBT19z7EXEmIUcDSo.jpg,1735-564-9334-296-49444-13387-282035-1995-8358-58574-47971-9480-585-2048-808-331-38365-9806-98-1593-8966\r\n23398,Alvin and the Chipmunks: The Squeakquel,Comedy-Family-Animation-Fantasy-Music,en,Pop sensations Alvin Simon and Theodore end up in the care of Dave Seville's twenty-something nephew Toby.", + "embedding" : [ -4.2850475E-4, -0.03943435, -0.00838797, -0.02723367, -0.04292026, 0.03186339, -0.011894305, -0.023175852, -0.030174905, -0.018614212, 0.037827566, 0.026348574, 0.02805068, -0.0024561365, -0.0010621131, 0.010696024, 0.011063678, -0.034396123, 0.011676435, -0.014420228, -0.011431333, 0.0034059107, -0.020765673, 0.007856914, 0.0043641953, 0.021146944, 0.0150057515, -0.013072161, 0.0010987084, -0.026089855, 0.020438869, 0.012091749, -0.00473185, 0.002367627, -0.016925726, -0.0046092984, 0.002755707, -0.024959657, 0.010314752, 6.2509783E-4, 0.006645015, 0.015060219, -0.0054297126, -0.001387215, 0.008496905, 0.013800662, 0.02843195, -0.02267203, -0.0044186627, 0.026266873, 0.020915458, 0.03393315, -0.020915458, -0.03213573, -0.0037139915, -0.0034603782, -0.0041020713, 0.0016399774, -0.012595572, -0.008564989, 0.010212625, -0.0018791232, -0.0322719, -0.0036629285, -0.010736874, 0.008183718, -0.0086262645, -0.0117649445, 0.012418553, 0.004013562, 0.02486434, 0.0069616064, 0.0038535642, 0.0010263689, 0.021623533, -0.027083883, -0.026961332, -0.002481668, 0.0031063403, 0.013494283, 0.019131653, -0.024101797, -0.0026399638, 0.0014578523, 0.014855966, 0.027029416, -0.013834704, 0.013623643, -0.025259228, 0.0048373803, 0.004973549, 0.023298403, -2.480817E-4, 0.013970872, -0.0108253835, 0.009947098, -0.021323962, 0.020384401, -0.016149566, -0.027111117, 0.011158996, -0.003608461, 4.57015E-4, -0.013426199, -0.012609188, -0.0029157046, -7.523301E-4, -0.029112792, 0.03131872, 0.0046944036, -0.009736037, 0.016803173, 0.030474475, -0.026294107, 0.0075913854, -0.022740113, 0.025354546, -0.014801499, -0.015999781, -0.031427655, 0.023952011, 0.03349741, 0.021351196, -0.03278934, 0.03347018, 0.024469452, 0.0010297731, -0.006069704, 0.0033071886, -0.0027267712, 0.03273487, -0.008217759, 0.023720525, 0.03161829, -0.04757722, 0.055093713, -0.016285734, -0.0044458965, -0.02903109, -0.015618509, 0.03652035, 0.03706502, -0.017620184, -0.01828741, -0.017184446, 0.0017267849, 0.004081646, -0.006706291, 0.017415931, -1.8414641E-4, 0.026471127, 0.019689942, 0.0095726345, 0.01737508, 0.0116628185, -0.0043607913, -0.0013906192, -0.006866289, -0.003605057, -0.027410688, -0.013194713, -0.0068288427, -9.446679E-4, -0.020615887, 0.0014408313, 0.02546348, 0.026893249, -0.017184446, -0.004636532, -0.0079998905, 8.0211664E-4, 0.0127113145, -0.0029940014, 0.010607514, -0.0042858985, 0.008707966, 0.010981977, -0.025095826, -0.033279542, -0.009824546, 0.004973549, 0.0076662777, 0.03992456, 0.03940712, -0.007264581, 0.01737508, 0.0033854854, -0.024796255, 0.013187904, -0.028268548, 0.007475642, 0.009429658, -0.007843297, -0.005855239, -0.6409716, -0.025912836, -0.0148832, -0.008095208, 0.012779399, 3.8573937E-4, 0.013984489, 0.0047454666, -0.02245416, -0.0162585, -0.014501928, 0.01836911, 0.028404716, -0.02408818, -0.025531564, -0.0069786278, -8.1913767E-4, -0.015359789, 0.028077913, 0.010893468, -0.025436247, 0.016244883, 0.015931696, 0.0047454666, 0.0048373803, 9.0211525E-4, -0.019172503, -0.001812741, 0.0020493336, 0.012289193, -0.016667005, 0.01174452, 0.019526541, -0.010559855, 0.035757806, -0.0026195385, -6.774375E-4, 0.040142428, 0.018736765, 0.029330662, -0.018559745, -0.0071079875, 0.014815115, 0.0069445856, -0.019771643, 0.0070875622, 0.02757409, -0.019635474, 0.0048339763, -0.009327532, -0.014869583, 0.012200683, 0.005732687, -0.008721583, -0.017769968, 0.009429658, 0.0036118652, -0.040687103, 0.03303444, -0.006413529, -0.00499057, 0.028867688, 0.015210004, 0.010049224, -0.00681863, 0.01802869, -0.008980302, -0.002039121, 0.015482341, -0.012473021, 0.004850997, 0.012547913, -0.025409013, -0.015986163, -0.0071079875, 0.025082208, 0.029058324, -0.012507062, -0.0074075577, 0.020956308, -0.011533459, 0.015604892, 0.005058654, 0.017157212, 0.019540157, -5.148866E-4, -0.04104114, 0.0056748157, 0.006267148, 0.010423686, 0.019077186, 0.0012655145, 0.010845808, -0.010389645, -0.017756352, 0.0018621021, -0.01781082, -0.004176964, 0.024033712, -0.058388986, -0.019158887, -0.0012757272, 0.009402424, -0.009068811, 0.01970356, 0.0077888295, -0.0143793775, -0.010348794, 0.03750076, -0.01785167, 0.0022467778, 4.9999316E-4, 5.5233284E-4, -0.01122708, 0.017906137, -0.023897544, 0.017347846, 0.005855239, 0.011472183, -0.007210114, -0.0012961525, -0.0113428235, 0.019812495, -0.016530838, 0.004425471, 0.030011503, -0.0020799714, 0.0030705961, 0.0026450702, 0.006852672, 0.0019659305, -0.0077275536, 0.019730793, -0.020357167, 7.876488E-4, -0.0074960673, 0.016939342, -0.007462025, 0.0033310181, 0.003506335, -0.034477826, -0.0025667732, -0.016054248, -0.01045092, 0.0045956816, -0.0098858215, -0.025613265, -0.004653553, 0.0036901622, -0.008353928, -0.017661035, 0.0027488985, 0.0023369892, 0.017007425, -0.0013259392, 0.009817737, -0.0017650821, -0.009940289, 0.01410704, -0.012718123, -0.0029242153, 0.020956308, -0.0081020165, -0.0077071283, 0.027710257, -0.0042212186, -0.016340202, 0.023924777, -0.008619457, -0.030038737, -0.0021242262, -0.006396508, -0.006869693, 0.012098557, -0.018341877, 0.0175521, -0.020398017, 0.01655807, 0.0119760055, -0.019390373, 0.006999053, -6.008428E-4, -0.009790504, -0.0068799057, 0.022331608, 0.02008483, 0.016163182, -0.016435519, -0.011798987, 0.025449863, -0.016340202, -0.004228027, -0.02099716, 3.1063403E-4, -0.0025735816, 0.028077913, 6.558421E-5, 0.017974222, 0.023856694, 0.014120657, 0.0514444, 0.012752165, -0.0040442, -0.004874827, 0.017688269, -0.0325987, -0.012670465, -0.024837106, 0.010396453, -0.007128413, 0.018096773, 0.0016825302, -0.003004214, -0.005422904, 0.01307897, 0.015564042, -0.014842349, 0.005957365, -0.022209058, -0.011982814, -3.861649E-4, -0.026375808, 0.018900165, 0.010355603, -6.416933E-4, 0.011281547, 0.011002402, -0.0058484306, -0.009341149, -0.01316067, -0.012486638, -0.012098557, 0.011124954, 0.0022399693, 0.013153862, 0.008898601, 0.043601103, -0.009273064, 0.030474475, 0.0027318774, -0.0014101934, 0.026947714, 0.040932205, 0.0056714118, -0.014011723, -0.008762433, 0.0048544016, 0.01699381, -0.0010425389, 0.050845258, -0.024142647, 0.011056869, -0.012282385, 0.0022655008, 0.011989622, -0.022957982, -0.0037412252, 0.017538482, 0.029902568, 0.010655173, 0.011928347, -0.012479829, 0.009245831, 0.009327532, 0.027165584, 0.0079998905, -0.020942692, -0.0012255152, -0.01204409, -0.023883928, -0.004636532, -0.0068322467, -7.5743644E-4, -0.0047692964, 0.009177746, -0.012724931, -0.0026501764, -0.0018161453, 0.013092586, 0.02370691, -0.00868754, -0.03423272, 0.01629935, 0.0177155, -0.0022893304, -0.03278934, -0.020275466, 4.9829105E-4, -0.049483575, -0.004847593, -0.00860584, 0.018083157, -0.0010808363, -0.004874827, -0.03161829, -0.008142867, 0.011043252, -0.0018331663, 0.011574309, 0.0351859, 0.004091859, 0.01759295, -0.021392047, -0.0161768, 0.025572415, -0.008762433, 0.014501928, -5.923323E-4, 0.016340202, 0.014365761, -0.004442492, 0.012670465, -0.054576274, -0.006205872, -0.014815115, 0.013194713, -0.025763052, -0.0097768875, 0.013746195, -0.01204409, -0.024918808, -0.03347018, -0.02805068, 0.011601543, 0.06612335, 0.02004398, 0.008033932, 0.0039114356, 0.0076322355, 0.0028595352, -0.023380104, -0.0379365, 0.0024782638, -0.010287519, 0.009402424, -0.0063760825, 0.022086505, 0.012459404, 0.033579115, 0.0076594693, -0.0036288863, 0.012718123, -0.012112174, -0.011206655, -0.03673822, 0.0053412034, 0.028731521, 0.03080128, 4.5275973E-4, -0.010934318, 0.0229716, 4.247282E-5, 0.0074552167, -0.0022042252, -0.022209058, 0.0088305175, 0.014678948, 0.0048407847, -0.0021293324, -0.0020374188, 0.021732468, 0.013528325, 0.007782021, 0.015373406, -3.631865E-4, 0.012146216, 0.0148832, -0.013684918, 0.022127356, -0.018859316, -0.023461806, 0.007986274, 0.034804627, -0.029602999, 0.021392047, -0.0066994824, -0.007427983, -0.00942285, 0.012663656, 0.0127113145, -0.0104032615, -0.009320723, -0.008326694, -0.006839055, 0.0066688447, -0.0434377, 0.011233889, -0.009068811, -4.931847E-4, -0.013943639, -0.018682297, -0.015768295, -0.0027488985, 0.009320723, 0.006233106, -0.014147891, -0.012207492, -0.00989263, 0.006008428, 0.0013948745, 0.032625936, 0.0022297567, 0.013283222, 0.023203086, -0.03066511, -0.048366997, -0.005497797, -0.01711636, -0.0026059216, 0.01307897, 2.976555E-4, 0.012064516, -0.007720745, -0.009960715, 0.013501091, 1.4818946E-4, -0.003164212, -0.011935155, 0.03673822, -0.007761596, 0.010314752, 0.020275466, 0.008585414, 0.0106211305, -8.2658444E-5, -0.019390373, -0.0053139697, -0.0033650603, -0.014256826, -0.009368382, 0.010886659, 0.021541832, -0.013562367, -0.024918808, -0.029439596, -0.03875351, 0.014828732, 0.0027948553, 0.018273791, 8.774348E-4, 0.023325637, 0.002462945, -0.012901951, 1.11062305E-4, 0.0056407736, 0.0038978187, 0.0066348026, 0.03101915, -0.008265419, 0.027424304, 0.0024782638, -0.041912615, 0.016272116, 0.022209058, 0.0035812275, 0.013194713, -0.009736037, -0.0021991187, -0.0189274, -0.013698535, 0.012554721, 0.0058892807, 0.00885775, 0.0072373473, -0.019581009, 0.0021140135, 0.015032985, -0.0036356947, -0.014992135, -0.02416988, 7.914785E-4, -0.010818575, 0.019771643, 0.016585303, -0.002495285, -0.012622805, -0.02534093, -0.008919027, -0.023257554, -0.042266656, -0.043519404, -0.010600706, 0.03153659, 0.0068322467, 0.03608461, 0.0072033056, 0.028459184, 0.007128413, 0.0069275643, 0.026362192, -0.026171556, 0.003492718, -0.024714554, 0.004503768, 0.015849994, 0.014093423, 0.0010076457, 0.018913783, -0.007359899, 0.010464537, 0.005433117, 0.018777614, 0.019240586, -0.022263525, -0.020724822, -4.5132358E-5, -0.022426926, -0.0059369397, -0.01828741, -0.013827896, 0.03303444, -0.01711636, -0.0033565497, -0.009293489, 0.022059271, -0.012118983, 0.008210951, -0.012663656, 0.014774266, -0.026607294, -0.001468065, -0.016762324, 0.0019216758, -0.0028765562, 0.0022569904, 0.018518895, -0.0027386858, -0.021146944, 0.009817737, 0.01204409, -0.023679676, -0.02598092, 0.006968415, -0.009443275, -0.016367435, -0.037527997, -0.0010646662, -0.045970432, -0.01303131, 0.002333585, -0.0011318993, 0.0027182605, -0.013140245, -0.031373188, 0.01866868, -0.003969307, 0.04038753, -0.0016493391, 0.042865794, 0.03169999, 0.009627102, -0.030501708, 0.005235673, -0.0016110417, -0.007884148, 0.020969925, 0.025014125, -0.01595893, -0.0049190815, 0.0064101247, 0.008408396, -0.0323536, -0.04193985, 0.013072161, 0.031781692, 0.024632853, -0.0203027, -0.0015276386, -0.02430605, 0.022603946, 1.531894E-4, 0.004987166, 0.004639936, -0.029657464, -0.030746812, 0.0023369892, -0.0113496315, -7.0722436E-4, 0.00950455, -0.0143793775, 0.010103691, -0.017456781, -0.0037037788, -0.018382726, -0.004517385, 0.027410688, -0.011846646, 0.0018076347, 0.0048816353, 0.024265198, 0.009266255, -0.0010255178, 1.2882802E-4, 0.030229373, -0.010845808, 0.02215459, -0.004425471, 0.009906247, 0.005460351, 0.023652442, -0.024946041, -0.023284787, -0.021092476, -0.006369274, 0.025626883, 0.017633801, 0.0026195385, -0.014392994, -0.02249501, -0.01049858, 0.0054297126, -0.008850942, 0.019322287, -0.03488633, 0.013181096, 0.0032850613, 0.008469671, 0.008973494, -0.009579443, 0.023761377, 0.007761596, 0.015455107, 0.0013829598, 0.015809145, -0.0059777903, -0.0055692852, -0.04646064, -0.019390373, -0.0063590617, -0.022508627, 0.0027982595, -0.021174178, 0.00636587, -0.011376865, 0.0028118764, -0.004776105, -0.004357387, -0.010675598, 0.015032985, 0.020452484, -0.0054058833, -0.0053582243, 0.0016714664, 0.037228424, -0.0013574281, 0.0059777903, 0.0040544122, 0.0027965573, 0.023543507, -0.024333283, 0.012983652, 0.009756462, -0.029793633, -0.013855129, 0.0066824616, 0.021269495, 0.0012357277, -0.005535243, -0.041667514, -0.0041224966, -0.011690052, 0.045534693, -0.019689942, 0.02864982, 0.04507172, 0.026934098, 0.027002182, 0.023461806, -0.0013659387, -0.0054909885, 0.0060152365, -0.015482341, -0.025545182, 0.0063488493, 2.319117E-4, 0.014542779, 0.0033531454, 0.020588653, -0.02739707, -0.0026467722, -0.026185172, -0.04507172, 0.0016910406, 0.031482123, 0.043737274, -1.2808335E-4, 0.004752275, 0.01685764, -0.01191473, 0.028105145, -0.031890627, 0.0013804066, 0.020765673, -0.0029940014, 0.018096773, 0.037664164, -0.025068592, -0.010804958, -0.007359899, 0.0136508765, -0.0032408065, 0.029657464, -0.020833757, -0.011649202, -0.004684191, -0.0076798946, -0.006702887, -0.01711636, 0.02559965, -0.025640499, -0.0032374023, -4.5275973E-4, 0.010471346, -0.015686594, -0.011839838, 0.009450083, -0.022059271, 0.002740388, -0.002725069, -0.029194493, 0.0024408177, -0.012377703, 0.020357167, 4.651E-4, -0.0070330948, 0.023843078, 0.0058177924, -0.020316318, 6.0105558E-5, -0.015264471, -0.009293489, -0.013616835, -0.022372458, 0.010341986, 0.024877956, -0.036111847, 0.026825164, -0.022236291, -0.0026501764, -0.010478154, 0.017797202, -0.0136508765, 0.027546857, 0.016585303, -0.050600156, -0.011894305, 3.1169786E-4, 6.8296934E-4, -0.0074007497, 0.009919864, -0.027220052, -0.016231267, -0.0015684891, 0.019758027, -0.005109717, -0.019172503, -0.0070058615, -0.03101915, -0.012486638, 0.007550535, 0.20022193, -0.0024425196, 0.019662708, 0.039025847, 0.008803284, 0.011955581, 0.028595353, 0.022399692, -0.0020833756, 0.015686594, -0.0058790683, 0.019689942, -0.0033837834, -2.3637974E-4, -0.005892685, -0.0067165038, -0.029602999, -0.006726716, -0.030746812, -0.034396123, -0.0378548, -0.01604063, -0.01793337, -0.016789557, 0.0040101577, -0.015523192, -0.010777724, 0.002057844, 0.015087453, 0.00421441, -0.025204761, 0.0026859206, -0.009109662, 0.010593897, -0.021868637, -0.0043607913, -0.004503768, 5.6552415E-4, 0.017797202, 0.007291815, -0.0050075906, -0.010716449, 0.0070058615, -0.011669627, 0.014270443, 0.0136440685, -0.020438869, -0.002529327, -0.031808924, 0.0010876446, -0.045752563, -0.0144883115, 0.010900276, 0.015210004, 0.0022927346, -0.013494283, 0.0060628955, 0.0030586815, -0.010525813, -0.0018757189, 0.014542779, 0.042076018, -0.033061676, -0.017729118, -0.013072161, 0.020466102, -0.034477826, -0.017987838, 0.027083883, -0.043247066, 0.0017276359, -0.010600706, -0.015550425, 0.0025889007, -0.008163292, -0.017497633, 0.0072577726, 0.026430275, 0.009899438, 0.02606262, -0.026049005, -0.027887277, 0.011621968, -0.008993919, -0.01613595, -0.019975897, 0.020888224, -0.019376755, -0.017143594, 0.0013446624, -0.017701885, -0.031237017, -0.021759702, 0.01324918, 0.0023063514, 0.010600706, 0.03442336, 0.021174178, -0.006314807, -0.004993974, -0.04193985, 0.03088298, 0.020343551, -0.0023148619, -0.015945313, -0.021650767, 0.025354546, 0.0070739454, 0.017402314, -4.2978133E-4, -0.0023114576, -0.024210732, 0.0028663436, -0.008707966, -0.0042824945, 0.018763999, 0.011880688, -0.018450812, 0.029929802, -0.005630561, -0.006852672, -0.018791232, 0.0075913854, 0.011077295, 0.005821197, -0.0228899, -0.020806523, 0.005633965, -0.0037480337, -0.037745863, 0.010062841, -0.01922697, 0.021868637, -0.006250127, -0.023529889, 0.020384401, 0.036493115, 0.0022280545, 0.0062365104, -0.0036118652, 0.005531839, -0.01888655, 0.017184446, 0.006903735, 0.02056142, -0.015604892, -0.008449246, -0.0068730973, -0.004813551, -0.043737274, -0.019798877, -0.008503713, 0.0049361023, 0.0144883115, 0.040932205, 0.0023403934, -0.035022497, -0.030011503, -0.017756352, 0.037664164, -0.040278595, 0.010444112, 0.011295164, -0.020166531, -0.025286462, -0.0048816353, -0.17527589, 0.01049858, 0.0047250413, -0.030011503, 0.013746195, 0.00851733, 0.02245416, 0.006083321, 0.013419391, -0.011962389, 0.022086505, 0.018219324, -0.04417301, -0.016612537, 0.024510302, 0.008673923, -0.0072237304, 0.027506005, 0.027192818, -0.006590548, 0.021160562, 0.0011548777, -0.015087453, 5.919068E-4, -0.0024612427, -0.0049088686, 0.013181096, -0.020180149, 0.007162455, -0.0051982263, -0.034831863, -0.00587226, -0.0027352816, -3.9616477E-4, 1.8297622E-4, 0.00587226, -0.0032391045, -4.438237E-4, 0.0035335685, -0.004599086, 0.021473749, 0.029820867, 0.013004077, 0.0019131652, 0.012554721, 0.027996212, 0.01721168, -0.021419281, 0.0061445967, -0.014256826, -0.013446624, -0.033170607, 0.030120438, -0.008449246, 0.0013659387, 0.029439596, -0.010233051, -0.0052322685, 0.010335177, -0.0052424814, -0.021283112, 3.287189E-5, 0.0074075577, -0.017838053, 0.008993919, -0.0270975, -0.007768404, 0.015468724, -0.03101915, 0.005402479, -0.02056142, -0.008619457, 0.022440543, 9.821142E-4, 0.001125091, -0.01337854, -0.02133758, 0.015781911, 0.0068935226, 0.007979465, -0.027764725, 0.03101915, -0.011710478, 0.017797202, 0.023557123, 0.009620293, 0.012221109, -0.012997269, 0.009198172, -0.02963023, -0.015387023, -0.015781911, -0.017797202, -0.010294327, 0.009606677, 0.0073054316, 0.008020315, 0.0062228935, 0.008939452, 0.0035097392, 0.0046807867, -0.027111117, -0.004915677, 0.028295781, 0.014093423, 0.011798987, -0.0024340092, 0.03799097, 0.022277141, -9.84029E-7, -0.014079806, 0.017157212, 0.028976623, 0.024782639, -0.02344819, 0.012650039, -0.03445059, -0.025300078, -0.0071896887, 0.0029480446, 0.031345952, -0.0039761155, 9.701995E-4, -0.0012297704, -0.0012961525, 0.0037037788, -0.07952231, 0.00580758, 0.013174287, 0.016027015, -0.027301753, 0.02843195, -0.016966576, 0.03415102, -0.016353818, 0.034477826, 0.013038119, -0.031754456, -1.0010501E-4, -0.010566664, 0.016544454, -0.010770916, -0.012003239, -0.00466717, -0.012881526, 0.043383233, -0.008966685, -0.0022416713, 0.0050348244, -0.015482341, -0.02416988, 1.7893371E-4, -0.03755523, 0.030828513, 0.014297676, -0.002791451, 0.01604063, -0.0136508765, 0.018328259, -0.030746812, -0.02456477, -0.02963023, -0.019935045, -0.022726497, 0.00649523, -0.043818973, 0.0119760055, -2.3786907E-4, 0.014215975, -0.026511976, -0.0041224966, -0.0017599758, -0.032244664, 0.023679676, -0.0025480501, -0.027151968, -0.012037282, -0.010396453, -0.034532294, -0.00280677, 0.023066917, 0.015795527, 0.009940289, 0.0042722817, -0.014147891, 0.00655991, 0.00812925, -0.012296001, -0.036493115, -0.0037616505, 0.01432491, 0.0020663547, -0.0037480337, -0.010859425, 0.015414257, -0.021201411, -0.023380104, 0.026893249, -0.034042086, -0.014651714, -0.013255988, 0.0027046436, 3.7850544E-4, -0.0033225075, 0.026103472, -0.022045655, -0.008503713, -0.022045655, -0.008176909, -0.025912836, 0.016326584, 0.011370056, 0.019090801, 0.010192201, 0.007979465, -0.046406172, 0.003982924, 0.027941745, -0.0154278735, -6.4807624E-4, -0.0053786496, 0.03755523, 0.017443165, 0.00675395, -0.0056169443, 0.010382837, -0.0055284346, -0.01926782, -0.080720596, 0.011690052, -7.7275536E-4, -0.0116560105, 0.004776105, -0.00782968, 0.014842349, -0.014515545, 0.0045310017, 0.010641556, -0.0144883115, 0.013895979, -0.010907085, 0.009906247, -0.008571797, 0.0031863393, 0.0073803244, -0.016639771, 0.004976953, 0.0013140246, -0.008156484, -8.171431E-6, 0.012786208, -0.0070262863, -0.007291815, 0.019948663, 0.0067811836, 0.031808924, -0.016898492, -0.01522362, 0.023175852, -0.025803901, -0.0030093205, 0.0056509865, -0.010866234, -0.029875334, -0.0034110171, 0.0012884929, 0.018709531, 0.006103746, -0.01045092, -0.014161508, -0.009627102, -0.009974332, 0.0071896887, 0.005113121, -0.01836911, 0.008469671, 0.01514192, -0.010934318, 0.028323015, 0.005940344, -0.009109662, -0.016054248, 0.019689942, -0.02903109, 0.058661323, 0.005729283, 0.002922513, -0.016503604, 0.016027015, -0.0057531125, 0.021310346, -0.040469233, 0.011833029, 0.010702832, -0.0012212598, -0.014815115, 0.008013507, -0.033388477, 0.0012365788, -0.0028288974, 0.0040850504, 0.02146013, 0.008401587, 0.014610863, -0.007904572, 0.0015165749, -0.005610136, 0.011574309, 0.020193765, -0.023924777, -0.007128413, 0.006416933, -0.0056509865, 0.02653921, -0.006481613, 0.009620293, 0.002905492, 0.0032033604, -0.015128303, 0.018232942, -0.0021667788, -0.008020315, 0.007339474, 0.019403988, -0.010546238, -0.012146216, 0.007856914, 0.027192818, 0.010791341, 0.006726716, -0.017402314, -0.007931806, -0.01544149, 0.017987838, -0.010696024, -0.021187793, 0.015291705, 0.013603218, 0.017061893, 0.017388698, -0.015618509, 0.014706181, -0.035893977, 0.020547803, -0.0066109733, -0.017769968, -0.011833029, 0.051498868, -0.0050790794, 0.018900165, 0.014651714, -0.024673704, 0.050137185, 0.011438141, 0.029602999, -0.020956308, 0.004224623, -0.007067137, -1.8584852E-4, 0.007802446, -0.027655791, 0.016081482, -0.015564042, -0.008074783, 0.002006781, 0.028622586, -0.0060901293, 0.06318211, 0.01840996, 9.999863E-4, 0.016462753, -0.0106211305, 0.008054358, 0.021255879, 0.022100123, -0.016748706, -0.004476534, 0.0022910323, -0.010287519, -0.0059982156, -0.023897544, -0.008864559, -0.0061275754, 0.001959122, 0.0023625207, -0.014828732, -0.01458363, 0.02189587, -1.2478553E-4, 0.018137623, 0.0046331277, -0.0148832, 0.012581955, 0.029602999, -0.0074688336, -0.014760649, -0.035294835, 0.0027710258, -0.014787883, -0.0070603285, -0.007625427, 0.01733423, 8.1360585E-4, -0.0057429, 0.0059335358, 0.03442336, 0.014038957, -0.014515545, 0.0075913854, -0.01685764, -0.0048237634, 0.01707551, -0.011996431, -0.0074416, -0.027342603, -0.014815115 ], + "id" : "0965bcb5-3f1a-47d5-93d9-51163aa572f1", + "metadata" : { + "source" : "movies.csv" + } + }, + "e39397f7-ffa0-4928-afb8-45b5ac0fb843" : { + "text" : "Fraser-Andi Osho-Lotta Losten-Lisa Truong-Carson MacCormac-Evan Marsh-Joseph Pierre-Jhaleil Swaby-Misha Rasaiah-Luke Gallo-Lovina Yavari-Craig Henry-Shawn Stewart-Kerri Kamara-Adam Rodness-Cliff Saunders-Simon Northwood-Ken Mohabir-Paloma Nu��ez-Ilan O'Driscoll-Bryce Arden Poe-Tosh Robertson-Rachel Boyd-Jeff Sanca-Dan Skene-Angelica Lisk-Hann-Cassandra Ebner-John Stead-Allen Keng-Mitra Suri-Stephannie Hawkins-Eli Martyr-Seth Green-David Choi-Nneka Elliott-Aria Anthony-Brian Kaulback-Chemika Bennett-Heath-Deborah Tennant-Martin Roach-Allison Brennan-Damir Andrei-Steve Newburn-Neil Morrill-Stephen Alexander-Pearl Sun-Anthony Gritsyuk-Jesse Bond-Harper Gunn-Matthew Binkley-Violetta Pioro-Jackson Reid-Hazel Gorin-Steve Blum-Darin De Paul-Fred Tatasciore-Callie Presniak-Craig Warnock-Pamela Matthews-Ava Preston-Manuel Rodriguez-Saenz-Ali Badshah-Tabitha Tao-Lisa Codrington-David F. Sandberg-Ryan Handley-Bill R. Dean,philadelphia pennsylvania-secret identity-magic-superhero-based on comic-wizard-superhuman strength-aftercreditsstinger-duringcreditsstinger-christmas-dc extended universe (dceu)-flossing,/xnopI5Xtky18MPhK40cZAGAOVeV.jpg,/OIGX2lm5tmlCKvZUghtwHzoxxO.jpg,299537-297802-299534-429617-447404-399579-324857-320288-363088-707610-335983-458156-456740-299536-424783-329996-384018-141052-373571-383498-420817\r\n439079,The Nun,Horror-Mystery-Thriller,en,A priest with a haunted past and a novice on the threshold of her final vows are sent by the Vatican to investigate the death of a young nun in Romania and confront a malevolent force in the form of a demonic nun.,156.28,New Line Cinema-Atomic Monster-The Safran Company,9/5/18,22000000,365582797,96,Released,Pray For Forgiveness,5.", + "embedding" : [ 0.01439586, -0.031393886, -0.009226501, -0.035646893, -0.011415959, 0.029267386, -0.004511822, -0.0027945316, -0.028302066, -0.030022854, 0.026483346, 0.030274676, 0.02216039, 0.0011524382, 0.005795418, 0.012304333, 0.017543644, -0.018886697, 9.854309E-4, -0.022608075, -0.011318028, -0.005018965, -0.025532017, 0.014123052, -0.011024235, 0.009072609, 0.016536353, -0.0013701599, -0.029407287, -0.0057989154, 0.0076666, 0.002986896, -0.0069461074, -0.015878815, -0.025615957, -0.0060857134, 6.8333116E-4, -0.015864825, 0.02974305, -0.0030743345, 0.010884333, 0.0054806396, -0.012493201, -0.003448571, -7.92192E-4, -0.0023276105, 0.0014051353, -0.0074497527, -0.0060192603, 0.029994873, 0.035842754, 0.038109157, -0.015207289, -0.0183131, -0.008233201, 0.004308965, 0.013934186, 0.0034590636, -7.8038784E-4, 0.009051625, 0.014144038, -0.008736846, -0.03710187, 0.0073448266, -0.015571033, -0.003289433, -0.0038193099, 0.0011603077, -0.015864825, -0.01629852, 0.010926304, 0.010366698, 0.015011427, -0.0056939893, 0.020369653, -0.037185807, -0.027560588, -0.009394383, -0.008904728, 0.006134679, 0.012842954, -0.014633693, -0.018425021, 0.0064459597, 0.009296452, 0.005907339, -0.006166157, 0.020817338, -0.025979701, 0.0065613785, 0.02679113, 0.036682162, 0.0073518218, 0.008666895, 0.009198521, 0.019740095, -0.036010634, 0.022384234, -0.01057655, -0.03178561, -0.015738914, 9.5570186E-4, -0.019446302, -0.015067387, -0.0010938545, -0.00812128, -3.0669023E-4, -0.017095959, 0.022370243, 0.010898324, 0.0020355661, -0.009974974, 0.0075546787, -0.038668763, 0.007862462, -0.033268567, 0.03172965, -0.024552707, -0.013080786, -0.022761967, 0.041802555, 0.020705417, -0.00479862, -0.024412805, 0.044516645, 0.0325131, -0.0024395317, -0.018816747, -0.009303447, -0.0020040884, 0.02684709, -0.019236451, 0.018089259, 0.014717634, -0.02297182, 0.05173556, -0.031253986, 0.0041620685, -0.03284886, -0.0054351715, 0.033884134, 0.03164571, -0.027140884, -0.009352413, -0.012038521, 0.0040571424, 0.0067432504, -0.005477142, 0.020901278, 0.0040186695, 0.015906796, 0.027742459, 0.015962757, 0.018746795, 0.018355072, 0.0013176969, 0.004760147, -0.0068691615, -0.016984038, -0.01829911, -0.020929258, -0.015571033, -0.014290934, -0.007561674, -0.0012197659, 0.019250441, 0.017851425, -0.039815955, -0.0107654175, 0.01301783, -0.0054351715, 0.028232114, -0.031002164, 0.016396452, 0.005064433, 0.01537517, 0.0057534473, -0.020635465, -0.02490246, -0.01531921, 0.011492905, 0.0048021176, 0.041634675, 0.033296548, -0.02216039, 0.0025392114, 0.022202361, -0.02490246, -0.0032282262, -0.010583545, -0.011478915, 0.012500196, 0.008233201, 0.0077155656, -0.6370553, -0.02315369, -0.0031058125, -0.0125701465, 0.0010378939, 0.008037339, 0.009807092, -0.0035027827, -0.04496433, 9.0673636E-4, -0.026609257, 0.021334972, 0.020467583, -0.0183131, -0.016620293, -0.01537517, 0.0034992853, -0.010674481, 0.021293001, -0.020621475, -0.022594085, 0.013241673, 0.022887878, -0.013073792, 0.017026007, 0.011241082, -0.004746157, -0.016270539, -0.0019586205, -0.0032177335, -0.028330045, 0.013892215, 0.004875566, 0.0040571424, 0.041662656, 0.009135566, -0.0058268956, 0.051343836, 0.026637238, 0.027028961, -0.037689455, -0.008324137, 0.0013867732, 0.0026144085, -0.015067387, 0.029910931, 0.012150441, 0.0044943346, 0.017571623, -0.015529062, 0.0016971796, 0.0046901964, -0.011464925, -0.011674777, -0.0038123147, -0.007890442, 0.015920786, -0.03441576, 0.023615366, 0.0045363046, -0.014423841, 0.028162165, 0.00716995, 0.0028120193, 0.0074427575, 0.022608075, 0.0055680783, -0.008317142, 0.0022209357, -0.02592374, 0.02116709, 0.024762558, -0.0013238175, -0.007799506, 0.0024937436, 0.009765122, 0.030918222, 0.004854581, -4.238577E-4, 0.016564332, 0.0063515264, -0.01053458, -0.0012800983, 0.015305219, 0.015752904, -0.0033069206, -0.022706008, 0.0038752705, 0.01436788, -0.0025322165, 0.0037703444, 0.018858716, 0.00864591, 0.01104522, -0.0023276105, -0.0035185218, -0.01198256, 0.0019026599, 0.02779842, -0.063739106, 0.007484728, -0.013136747, 0.03458364, -0.020621475, 0.008317142, 0.0073937923, -0.0010440146, -0.0069531025, 0.033156645, -0.025518026, -0.010163841, -0.015668964, -0.0044873394, -0.02104118, -0.008988669, -0.03360433, 0.015221279, 0.009674186, -0.0027700488, -0.015934777, -0.00499798, 0.012563151, 0.007379802, -0.0012914654, 0.02209044, 0.019726105, -0.011576845, -0.018508963, 0.004399901, 0.010527585, 0.0034188419, -0.018369062, 0.027224824, -0.022594085, 0.0035255167, 0.0072399005, 0.004865073, -0.0034380783, 0.021125121, -0.0060647284, -0.023363544, -0.007512708, 0.0020320688, -0.0027035957, -0.00672926, -0.0039207386, -0.013794284, -4.4156399E-4, -0.0071034967, -0.028302066, -0.0013063299, 0.004137586, -0.0016106155, 0.008652905, -0.0014095072, 0.0030201226, -0.018662855, -0.029267386, -0.0049245316, -0.019684136, 0.009275467, 0.0173198, -0.005372216, -0.01918049, 0.016718224, 9.181033E-4, -0.01059054, 0.005449162, 4.6517234E-4, -0.014647683, 0.014465811, -0.01832709, 0.0017339037, 0.026693199, -0.01435389, 0.02204847, -0.0040011816, 0.028274085, 0.005102906, -0.0041515757, -0.0012853447, -0.005802413, -0.015766894, 0.00286798, 0.022887878, 0.015067387, 0.019852016, -0.009345418, 1.3072042E-4, -0.00335064, -0.013773299, -0.006106699, 0.0052917725, -0.01059054, 0.003025369, 0.034275856, 0.00600527, -0.004753152, -0.0069740876, -0.0065299007, 0.025993692, 0.018257141, 0.015654974, 0.0062675853, 0.009128571, -0.028931621, 0.019614184, -0.031981472, 0.0061766496, 0.0065508857, 0.034107976, -0.016634284, -0.03335251, 0.0030708371, -0.0054806396, 0.022845909, 0.0020583002, 0.009814087, -0.017459702, 0.011101181, -0.003994187, -0.0080163535, 0.028204134, 0.013052806, -0.029519208, 0.003598965, 0.00576394, -0.0078065014, 0.0058373883, -0.015766894, -0.007904433, -2.3433495E-4, -0.0029694084, 0.0089606885, -0.0039347284, -0.018480983, 0.021810638, -0.00958325, 0.04418088, -0.015123348, 0.003182758, 0.012227387, 0.029127484, 0.012584136, 0.009163545, -0.021251032, 0.020495564, 0.012849949, -0.007047536, 0.045439992, -0.020733396, 0.036989946, -0.008904728, 0.00431596, 0.013535466, -0.015990736, -0.001475086, -2.8220747E-4, 0.031309947, 0.014193003, 0.011024235, -0.015151328, 0.013507486, 0.004113103, 0.008575959, 0.002859236, -0.014276944, 0.008925713, -0.011080195, -0.03256906, -0.03161773, -0.024496745, 4.8309722E-4, 0.01286394, -0.012066501, -0.0045922655, 0.003917241, 0.013045811, 0.011359998, 0.005431674, -9.102339E-4, -0.027672509, 0.016970048, 0.026245514, -0.008652905, -0.013052806, 0.0031740144, -0.011283053, -0.045579895, -0.017697535, -0.008226206, 0.025392115, -0.023251623, 6.284636E-5, -0.018970639, -0.0017024259, 0.020229751, -0.023405515, 0.012647092, 0.0114229545, -0.013171722, 0.012164432, -0.009051625, -0.015081378, 0.02495842, -0.017375762, 1.3026957E-5, -0.0021195072, 3.6199501E-4, -0.010464629, -0.0038402951, -2.7346364E-4, -0.044572607, 0.019068569, -0.0013509234, -0.015515072, 0.0014234973, 0.006571871, 0.01389921, -0.013633397, -0.01710995, -0.010506599, -0.029127484, 0.0024465267, 0.08545181, 0.03950817, 0.006988078, 0.01625655, -0.00961123, 0.017389752, -0.0077085705, 0.0063025607, 0.0021107632, -0.023475464, 0.021418914, -0.012766008, 0.016634284, -0.009821082, 0.017683545, -0.0027700488, -0.006683792, -0.009793102, 0.0013605417, -0.011660786, -0.002121256, -0.015039407, 0.020397633, 0.022286303, 0.0045258123, -0.018662855, 0.034863442, 0.015808865, -0.008289161, 0.0146197025, -0.0065299007, 0.0071034967, 0.0125281755, 0.0024954923, -0.008638915, -0.0013981402, 0.039004527, 0.009191526, 0.014633693, 0.0022751475, 0.004973497, 0.018508963, 0.013976156, 0.0015266747, 0.01246522, -0.028036252, -0.015263249, 0.037157826, 0.038305018, -0.03287684, 0.025238223, 0.0011533126, -0.027658518, -0.0014995688, 0.015557042, -0.013668372, -0.004588768, 0.006596354, -0.016018717, 0.005886354, -0.013465515, -0.039648075, 0.009135566, -0.014241968, -0.016746204, -0.012122462, -0.019684136, 0.012549161, -0.028330045, -0.00346431, -5.6922407E-4, -0.0191665, -0.016998027, 0.018634874, 0.01629852, 0.012297338, 0.023531426, 0.008373102, 0.02105517, 0.015081378, -0.0381931, -0.021516845, 0.019754086, -0.029994873, -0.0011192117, 0.010632511, 7.764531E-4, 0.014857535, -0.016158618, 0.0013570442, -0.0019061574, 0.0015564037, -0.029183444, -0.0050224625, 0.026049651, 0.02197852, 0.023615366, 0.007463743, 0.005200837, 0.0016062437, 0.0040396545, -0.023713298, -0.008247191, -0.01151389, -0.018397043, 0.0012503692, -0.0042774873, -0.007470738, -0.018914677, -0.02490246, -0.014283939, -0.027980292, 0.008610935, 0.004686699, 0.0059318217, 0.0043124626, 0.020579504, 0.019893987, 0.0030043838, 0.0027648027, -0.0049070437, -0.0131017715, 0.025280194, 0.027518617, -0.0060402453, 0.021251032, -0.011492905, -0.012360294, 0.01712394, 0.03556295, -0.016606303, 0.030722361, -0.010247782, -6.3742604E-4, -0.019754086, -0.013577437, 0.00455729, 0.010408669, 6.0245063E-4, 0.012849949, -0.02876374, 0.0023818223, -0.008652905, 0.0010649998, -0.00718394, -0.028162165, 0.015263249, -0.02483251, 0.011548866, 0.020481573, -0.025420096, 0.010569556, -0.023881178, 0.0026493839, -0.009366402, -0.025504036, -0.026063642, -0.02216039, 0.021572804, -0.0071349745, 0.04395704, -1.14872215E-4, 0.014759604, 0.015948767, 0.0029256893, 0.02687507, -0.020999208, -0.025546007, -0.022594085, 0.008981674, 0.020439602, 0.015780885, 0.012129457, -0.010464629, -5.954556E-4, 0.02486049, 0.010611526, 0.009842068, 0.0070300484, -0.021279013, -0.033464428, 0.0054736445, -0.030890241, -0.0036164527, -0.013178717, -0.0046412307, 0.04395704, -0.0045992606, -0.012619112, -0.01252118, 0.027028961, -2.0744764E-4, 0.0035779797, -0.009443348, 0.01818719, -0.033436447, -0.00526729, -0.014325909, -0.007897438, -0.0074987183, -0.004819605, 0.018984629, 0.010170836, -0.016564332, -0.023265613, 0.018704826, -0.0044873394, -0.025546007, 0.023615366, -0.0143399, -0.01634049, -0.026077632, -0.01920847, -0.035143245, -0.0014156279, -0.007645615, -0.015585023, 0.0018624382, -0.015473101, -0.030386597, 0.025532017, -2.0843132E-4, 0.028637828, 0.020439602, 0.029994873, 0.022356253, 0.007002068, -0.018984629, 0.021293001, -0.0032334726, -0.009562265, 0.03181359, 0.021628765, -0.023615366, 0.005652019, -0.0077085705, -0.00173915, -0.0457198, -0.037129845, 0.026497336, 0.026693199, 0.021642756, -0.030386597, -8.206095E-4, -0.020341672, 0.009632216, -0.006540393, 0.0056834966, -0.0011288299, -0.03855684, -0.01538916, -0.007918423, -0.0011742979, 0.014213989, 0.011905614, -0.014955466, 0.012430245, -0.018466992, 0.019879997, -0.011115171, -0.012304333, 0.034359798, -0.0019131524, 6.750245E-4, 0.014493791, 0.035898715, -0.0073937923, 0.005106403, 5.762191E-4, 0.031058123, 0.005176354, 0.015109357, 0.0070685213, -0.0110732, 0.010709457, 0.015109357, -0.013962165, -0.0014217485, -0.021670736, -0.0014637191, 0.01919448, -0.015934777, -0.009352413, -0.0025339653, -0.015501082, -0.020691426, 0.0043719206, -0.019586204, 0.02097123, -0.024874479, 0.0055855657, -0.009198521, 0.013962165, -0.0027648027, 0.0029938912, 0.005819901, 8.385344E-4, 0.0068097035, -0.005410689, 0.0021632263, -0.01631251, -0.02104118, -0.03858482, -0.016648274, -0.0090446295, -0.0078065014, -9.2597277E-4, -0.012752018, 0.0038018222, 0.011241082, 0.0013815269, -0.0025077336, 0.013493496, -0.023335563, 0.011359998, 0.017711524, -0.0021544825, -0.012500196, -0.0050294576, 0.01927842, -0.003948719, -0.010429653, 0.00529527, 0.007834482, 0.032820884, -0.013591426, 0.007939408, 0.0041760583, -0.021446893, -0.0025741868, 0.011800688, 0.017403742, 0.018383052, -0.009723151, -0.02006187, -0.0023136204, -0.012912905, 0.028260095, -0.016914086, -0.0035482508, 0.016928077, 0.028232114, 0.030022854, 0.021824628, -0.021446893, -0.016620293, 0.003756354, -0.012395269, -0.01829911, -0.007561674, -0.0037703444, 0.022580095, 0.009646205, -0.012556156, -0.017081968, -0.0043579303, -0.028190143, -0.026203543, -0.007939408, 0.021251032, 0.029099504, 0.01822916, 0.00716995, -0.0030148765, -2.5466437E-4, 0.004865073, -0.018620884, 0.001984852, 0.027980292, 0.008114285, 0.02010384, 0.019586204, -0.026357435, -0.012157436, 0.0131017715, 0.020915268, 0.022873888, 0.009513299, -0.025979701, -0.015780885, 0.0020880292, 0.009275467, -0.002187709, -0.012346304, 0.042558026, -0.029127484, -7.7295554E-4, 0.005169359, 0.019810047, 0.0048720683, -0.0027070933, 0.0011200861, -0.0052393097, -5.9064646E-4, -0.007002068, -0.013682363, 0.0036339404, -0.02589576, 0.02870778, 0.010779408, -0.003380369, 0.030442558, 0.022803938, -0.02014581, 0.011394974, -0.021348963, 0.004148078, -0.006865664, 0.01445182, 0.0034100981, 0.020747386, -0.028232114, 0.006564876, -0.014276944, -2.3608371E-4, -0.0033698764, -0.0031198026, 0.0015555293, 0.03172965, -0.0011297043, -0.048210043, 0.0035360095, -0.013066797, -3.7899088E-5, -0.011213102, -0.008492019, -0.02302778, -0.018704826, -7.4060337E-4, 0.0023923148, -0.018271131, -0.029435268, -0.012493201, -0.017865416, -0.0044873394, 0.013493496, 0.18578914, -0.008114285, 0.0060717235, 0.050476447, -0.0034468223, 0.018033298, 0.032401178, 0.012745023, -0.028987583, 0.019418323, 0.0036968961, 0.0025217237, -0.0028959601, 6.002647E-4, 0.014871525, -0.02974305, -0.025196252, -0.023517435, -0.021376943, -0.02968709, -0.002595172, 0.0018746796, -0.004347438, -0.02687507, 0.003644433, 0.006634827, -0.006603349, 0.012045516, 0.022496155, 0.002950172, -0.0069006393, -0.013353595, -0.0014899506, -5.036453E-4, -0.022230342, -0.012101476, -0.00769458, -3.193688E-4, 0.01832709, 5.2157015E-4, 0.0064459597, -0.014241968, 0.011129161, -0.0015870072, -0.017893396, 0.021824628, -0.02118108, -0.0056170435, -0.027616547, 0.0053232503, -0.048321962, 0.0062291124, 0.020537535, 0.013164727, -0.008827782, -8.599568E-4, 5.28128E-4, 0.007904433, -0.013010835, -0.010247782, 0.0061766496, 0.040683344, -0.030218715, 0.011415959, 0.006669802, 0.0028032756, -0.03657024, -0.010996255, 0.0012171427, -0.038305018, -0.020789357, -0.021306992, -0.0073448266, 0.0022139405, -0.001350049, -0.015487092, 0.0034992853, 0.0107234465, 0.011038225, 0.031477828, -0.023727287, -0.0119965505, 0.023405515, -0.018774776, -0.011457929, -0.025518026, 0.009177536, -0.023811229, -0.013136747, -0.0044768467, -0.0023520933, -0.033184625, -0.015794875, 0.008554975, -0.0021772163, -0.011912609, 0.03726975, 0.014179013, -0.0059353192, 0.0066942847, -0.033884134, 0.02108315, 0.015165318, -0.004889556, -0.041914478, -0.01908256, 0.0025374626, 0.00455729, 0.03771743, -0.026147583, -0.021334972, -0.02294384, -0.010212806, -0.01290591, 0.002670369, 0.03248512, 0.007138472, -0.01005192, 0.042809848, -0.013864235, -0.008450048, -0.01101724, 0.022887878, -0.0075336937, -0.0027420686, -0.021446893, -0.014983446, 0.00252697, -0.005484137, -0.030862262, 0.02494443, -0.017879406, 0.008373102, 0.010317733, -0.009121575, 0.00550862, 0.0016901845, -0.013822264, -2.861422E-4, -0.0066068466, -0.01538916, -0.019572213, 0.0073098512, -0.009807092, 0.0035709848, -0.015710933, 0.0032579552, 0.011241082, -0.010254777, -0.027434677, -0.019152509, 6.0769694E-4, 0.0014759604, 0.03153379, 0.047342654, 0.001864187, -0.015445121, -0.05145576, -0.02028571, 0.026777139, -0.050308567, 0.022747977, 0.017403742, -0.008023349, -0.018453002, -0.014074087, -0.1813123, 0.021376943, 3.023183E-4, -0.03075034, 0.024356844, 0.005879359, 0.036318418, 0.01009389, -7.3666865E-4, -0.0183131, 0.031114085, 0.011290047, -0.0183131, 0.002460517, -0.011961575, 0.0045607877, -0.0114229545, 0.03164571, 0.04306167, -0.006271083, 0.03371625, 5.8496295E-4, -0.017669555, 0.016662264, 0.014067092, -4.6998146E-5, 0.022873888, -3.5303258E-4, 0.001113091, -0.004973497, -0.03242916, -0.0093314275, 0.007904433, 0.0047951224, -0.011821673, 0.0070650238, -0.0025217237, -0.003938226, -0.001878177, -0.01057655, 0.050672308, 0.020887287, 0.011835664, 0.009730146, 0.028399996, 0.009023644, 0.030330636, -0.02502837, 0.005554088, -0.006603349, -0.015431131, -0.040599402, 0.03150581, -0.011450934, -0.021614775, 0.010016944, 0.01010788, 0.0050959107, 0.022342263, -3.6418097E-4, -0.035423048, -0.004137586, 0.005599556, 0.012332314, -0.008967684, -0.019446302, -0.013864235, 0.0062361076, -0.027952312, 0.0105625605, -0.020537535, 0.02779842, 0.003910246, 1.590286E-5, 0.0037843345, -0.016368471, -0.031953495, 0.016130637, -0.010205812, 0.021642756, -0.016004726, 0.034303837, 4.0090512E-4, 0.015417141, 0.009485319, -0.021460883, 0.0036724133, -0.0058653685, 0.0035185218, -0.017627584, -0.009793102, -0.008415073, -0.015696943, -0.002135246, 0.013871229, 0.012800983, -0.0022139405, 0.019768076, 0.0044698515, -0.0028574874, -0.0092894565, -0.017907387, -0.023307582, 0.025434086, 0.01810325, 0.0010431403, 0.0050679306, 0.03368827, 0.011478915, -0.017165909, -0.017879406, 0.0019953446, 0.022594085, 0.017543644, -0.01009389, 0.009800097, -0.008254186, -0.024342854, 0.010667486, 0.019768076, 0.0711259, 0.0031372902, 0.004882561, -0.005802413, -0.008708865, -0.014969456, -0.084892206, 0.004232019, 0.016130637, 0.05084019, -0.02873576, 0.04015172, -0.008261181, 0.019502264, -0.0363464, 0.031897534, 0.023601376, -0.0342199, 0.017515663, 0.009849063, 9.5045555E-4, -8.0705655E-4, -0.024077041, -0.018480983, -0.008743841, 0.029379306, -4.625492E-4, 0.0027945316, -0.00816325, -0.015710933, -0.016018717, 0.019068569, -0.022678027, 0.028260095, 0.012842954, 0.011394974, 0.009870048, -0.028567879, 0.018453002, -0.03855684, -0.023741277, -0.020229751, -0.033912115, -0.024566697, 0.009946994, -0.053973984, 0.0049455166, 0.010058915, 0.0071034967, -0.008513004, -0.02295783, 0.0039417236, -0.02979901, 0.035842754, 0.012003546, -0.02108315, -0.01097527, -0.018480983, -0.033240587, -0.010716451, 0.016900096, -0.009275467, 0.027294775, 0.0018012313, -0.017795466, -0.04124295, -0.0026808616, -0.0027105908, -0.014885515, 0.012262363, 0.004949014, 0.013871229, -0.007470738, -0.02203448, 0.013500491, -0.012150441, -0.026161572, 0.022664037, -0.028050242, 0.0015083126, -0.00856197, 0.005162364, -0.034891423, -0.015850835, 0.032401178, -0.04057142, -8.46841E-4, -0.035898715, 0.010583545, -0.008701871, 0.0193064, 0.020915268, 0.018942658, 0.008205221, -0.00863192, -0.0325131, -0.0071069943, 0.027042951, -0.0024325366, -0.0031670192, 0.0036864034, 0.02873576, 0.009786107, -0.011164136, -0.013682363, 0.0012853447, 0.004683201, -0.0036619208, -0.07890442, 0.024804529, -0.0070685213, -0.006012265, -0.01344453, -0.02021576, 0.0024185465, -0.0028312558, 2.2318655E-4, 0.032373197, -0.013626402, 0.015878815, -0.008086304, -0.006603349, -0.0043264525, 0.0049315263, 0.006337536, -0.007918423, 0.0063899993, 0.009373398, -0.008296156, 0.027364725, -4.564285E-4, -0.0019253938, 0.012493201, 0.009023644, -0.004148078, -5.469273E-4, -0.009884038, -0.006403989, 0.030554479, -0.02784039, 0.00499798, 0.0010842363, -0.0059038415, -0.028987583, -0.0060542356, -0.0019044086, 0.005847881, 0.004232019, -0.0076316246, -0.026567288, 2.1018008E-4, 0.0031198026, -0.014479801, 0.01726384, -0.022901868, 0.009016649, 0.0138432495, 0.01927842, 0.030246696, 0.008750836, -0.006890147, -0.023657337, 0.0064949254, -0.01832709, 0.04857379, 0.011681772, 0.004865073, -0.00959724, 0.027126893, 0.003139039, 0.016368471, -0.0278264, 0.0018029801, -0.0036968961, 0.014899505, -0.0034573148, 0.007827487, -0.037045907, -0.020957239, -0.007659605, 2.6646856E-4, 0.049581077, 0.022202361, 0.014535761, 0.0075197034, -0.0022104431, -0.010464629, 0.014088077, 0.0049455166, 0.0051343837, -0.017949358, 0.02772847, 0.006442462, -3.6745993E-4, 7.700045E-5, 0.025126303, 0.008394088, 0.01394118, -0.0040676347, 0.022202361, 0.014773594, -0.016046697, 0.025657928, 0.0010125368, -0.010695467, -0.010030935, -0.005417684, 0.025224233, 7.165578E-4, -0.0018152214, 0.0018904185, -0.026623247, -0.022454184, 0.013563447, -0.028176153, -0.020817338, 0.012619112, 0.005326748, 0.031897534, 0.028483937, -0.01621458, 0.0073238416, -0.050364524, 0.009674186, -0.006043743, -0.02106916, -0.0061906395, 0.036738124, -0.005463152, 0.0058828564, 0.02306975, -0.0041935463, 0.04793024, 0.007673595, 0.017571623, -0.03458364, 0.008170245, 0.004022167, 0.0077295555, -0.0083031515, -0.019320391, 0.0028837188, -0.008883743, 0.0061836443, 0.0059702946, 0.031281967, -0.020747386, 0.07291664, 0.016970048, -0.016942067, 0.012066501, -0.0059318217, 0.008750836, 0.013486501, 0.015571033, -0.011178127, -0.00626059, -0.008086304, -0.009506304, 0.0038228075, -0.03158975, 0.00722591, -0.0038333, 0.010555565, 0.02383921, -0.019376352, -0.019152509, -0.0041690636, 0.009093595, 0.023881178, -0.0019149012, 0.0066732997, 0.0015231771, 0.012444234, -0.010772413, 5.276908E-4, -0.031897534, -0.0029641623, -0.01723586, -0.0039732014, -0.008212215, 0.034695562, -0.023657337, -0.0045852703, 0.0035062802, 0.021642756, 0.009779112, -0.024636647, -0.0028942113, -0.013654382, -0.016704233, 0.031981472, -0.01240926, 0.0027018469, -0.02497241, -0.031449847 ], + "id" : "e39397f7-ffa0-4928-afb8-45b5ac0fb843", + "metadata" : { + "source" : "movies.csv" + } + }, + "72358499-1d53-4162-bdd3-a1871d4a5bb3" : { + "text" : "191,The Weinstein Company-UK Film Council-Bedlam Productions-See-Saw Films-Aegis Film Fund-FilmNation Entertainment-Momentum Pictures-Molinare Investment,11/26/10,15000000,414211549,118,Released,Find your voice.,7.7,7828,Colin Firth-Geoffrey Rush-Helena Bonham Carter-Guy Pearce-Timothy Spall-Michael Gambon-Jennifer Ehle-Derek Jacobi-Freya Wilson-Ramona Marquez-Richard Dixon-Robert Portal-Eve Best-Paul Trussell-Adrian Scarborough-Andrew Havill-Charles Armstrong-Roger Hammond-Calum Gittins-Dominic Applewhite-Ben Wimsett-David Bamber-Jake Hathaway-Patrick Ryecart-Teresa Gallagher-Simon Chandler-Claire Bloom-Orlando Wells-Tim Downie-Dick Ward-John Albasiny-Danny Emes-Anthony Andrews-John Warnaby-Roger Parrott-Dean Ambridge-Julianne Buescher-James Currie-Graham Curry-Tony Earnshaw-Sean Talo,great britain-radio-monarchy-stutter-palace-radio transmission-royal family-speech-marriage-based on true story-royalty-death of father-historical fiction-1930s-british royal family-british monarchy-george vi-winston churchill-speech therapy-corgi,/uQ538BfYLDJh3GXlzRZLo0j7PFj.jpg,/5eb7l7AE2yU0mvb38fR5qLNhDDH.jpg,12405-453-37799-68734-4922-197-8358-70-13223-72976-745-44214-423-6977-380-207-489-1402-76203-74643-591\r\n18360,Night at the Museum: Battle of the Smithsonian,Adventure-Fantasy-Action-Comedy-Family,en,Hapless museum night watchman Larry Daley must help his living breathing exhibit friends out of a pickle now that they've been transferred to the archives at the Smithsonian Institution. Larry's (mis)adventures this time include close encounters with Amelia Earhart Abe Lincoln and Ivan the Terrible.,31.259,21 Laps Entertainment-1492 Pictures-Dune Entertainment-Moving Picture Company-Museum Canada Productions-20th Century Fox,5/20/09,150000000,413106170,105,Released,When the lights go off the battle is on.,6.124,6188,Ben Stiller-Amy Adams-Owen Wilson-Hank Azaria-Robin Williams-Christopher Guest-Alain Chabat-Steve Coogan-Ricky Gervais-Bill Hader-Jon Bernthal-Patrick Gallagher-Jake Cherry-Rami Malek-Mizuo Peck-Kerry van der Griend-Matthew Harrison-Rick Dobran-Randy Lee-Darryl Quon-Gerald Wong-Paul Chih-Ping Cheng-Jay Baruchel-Mindy Kaling-Keith Powell-Craig Robinson-Samuel Patrick Chu-Augustus Oicle-Kai James-Clint Howard-Matty Finochio-George Foreman-Josh Byer-Sophie Levy-Tess Levy-Christina Schild-Robert Thurston-Alberta Mayne-Clifton MaCabe Murray-Caroll Spinney-Thomas Morley-Dan Joffre-Dave Hospes-Regina Taufen-Shawn Levy-Joe Jonas-Kevin Jonas-Nick Jonas-Eugene Levy-Brad Garrett-Ed Helms-Jonah Hill-Thomas Lennon-Crystal the Monkey,museum-duringcreditsstinger-amelia earhart-smithsonian,/l9yAQn6TyrA3gv5xZZkiMMoZsiw.", + "embedding" : [ 0.0063723987, -0.023444388, -0.011385901, -0.05100664, -0.013650727, 0.028879972, -0.011248639, -0.0012096233, -0.016663633, -0.023787543, 0.02212667, 0.03450772, 0.025269974, -0.008119061, -0.017898994, 0.018173518, 0.0112005975, -0.004491906, 0.00668467, -0.025640583, -9.96009E-4, -0.009498546, -0.027411265, 0.0037541217, 0.008805372, 0.0016548677, 0.024240509, -0.010075047, -0.027479896, 9.711302E-4, 0.008091608, -0.014563521, -0.00494144, -0.016224395, -0.014398807, -0.0028155914, 0.0048933984, -0.013211489, 0.030334951, -0.0054870574, 0.014673332, 0.024473853, -0.011234913, -0.0054767625, -0.015716525, -8.932768E-5, 0.033382174, 0.011564342, 0.0020829542, 0.03220172, 0.017377397, 0.016155763, -0.018653937, -0.023622828, -0.0037232377, -0.0085514365, -0.0034143978, 0.012744797, -0.008119061, 0.00208467, 0.018557852, -0.020850131, -0.030609475, -0.006561134, -0.01641656, -0.010198583, -0.015881239, -0.009676986, -0.01213398, 0.013547781, 0.02270317, 0.016485192, 0.016402835, 0.01233301, 0.02285416, -0.022867886, -0.029511377, -0.00886714, 0.01809116, 0.01233301, 0.00566893, -0.024611115, -0.026011191, 0.0062969043, 0.010363298, 0.0077278633, -0.0026131296, 0.035441104, -0.01449489, 0.01689698, 0.00833868, 0.033519436, -0.014741963, -0.01453607, 0.0085514365, 0.024515033, -0.009834838, 0.026066096, -0.025613131, -0.028385827, 0.0046428945, -0.0061253267, 0.002909959, -0.014700784, 0.003235957, -0.004485043, -0.005651772, -0.009704439, 0.014220366, 0.004107572, 0.0045433794, -0.025228797, 0.014453712, -0.03604506, 0.008187692, -0.019367699, 0.023993436, -0.0066812388, -7.0175313E-4, -0.025681762, 0.027891682, 0.022085492, 0.009622082, -0.033546887, 0.050045807, 0.025420964, 0.009258336, -0.013403656, 0.0047629992, -0.009690713, 0.007817084, -0.019326521, 0.023416935, 0.018557852, -0.034013577, 0.045763224, -0.010953525, 0.0015244685, -0.024720926, -0.0013048489, 0.03615487, 0.047904514, -0.022209028, -0.013314435, -0.032970384, 0.012106528, 0.0027744127, -0.001482432, 0.021344276, 0.008194555, 0.021797242, 0.01162611, 0.0066057444, 0.03011533, 0.026436703, -0.009189705, 0.0016419993, -0.002616561, -0.016814623, -0.020754049, -0.019697128, 0.0055248043, -0.0015304738, -0.008825961, 7.845394E-4, 0.02662887, 0.010445655, -0.028413279, -0.017144052, -0.007899441, -0.005133607, 0.011495711, -0.023293398, 0.0070758676, -0.008894592, 0.03829616, -0.002479299, -0.007316076, -0.03211936, -0.023554197, 5.606304E-4, 0.015936144, 0.033382174, 0.03612742, -8.031985E-5, 0.0050203656, 0.026381798, -0.021248192, 0.017898994, -0.024460128, 0.001343454, 0.009519135, 0.0018633347, -0.0069042896, -0.6360182, -0.017171504, -0.0051233126, -0.014330176, 0.0073298025, 0.014687058, 0.0131565835, -0.010280941, -0.031954646, -0.0216188, -0.042304218, 0.019010818, 0.003675196, -1.6171206E-4, -0.02907214, -0.0043271915, -0.009237748, -0.02677986, 0.02106975, 7.579448E-4, -0.024913093, 0.032531146, 0.026477883, -0.0019748602, 0.01965595, -0.0038502053, -0.008674973, -0.015153749, -3.495897E-4, 0.0021172697, -0.01903827, 0.0066057444, 0.0041796346, 0.0035619547, 0.033190005, 0.024034616, -0.018695114, 0.049030066, 0.022607088, 0.024089519, -0.033876315, -0.012463409, 1.8573295E-4, -0.0060223797, -0.013890937, 0.023636555, 0.017377397, 0.008695561, 0.0050066398, -0.024638569, -0.017720552, -0.0049688923, -0.0026148453, 0.004107572, 0.001868482, 0.016581276, 0.009869154, -0.046339724, 0.020136368, 0.0107133165, -0.024720926, 0.007741589, 0.008764192, 0.0045124954, -0.006893995, 0.01925789, 0.004670347, -0.002199627, 0.0160185, -0.02768579, 0.004948303, 0.019614771, -0.021124655, -0.017720552, 0.0034092504, 0.0107133165, 0.032064456, 0.012092802, -5.876539E-4, 0.010274077, -3.6245806E-4, -0.0020949647, 0.01577143, 0.024638569, 0.025462141, -0.009395599, -0.01689698, -0.0020863859, 0.01493413, 0.0048625143, -0.0080641555, 0.011612384, 0.015840061, 0.0051507647, -0.018667663, 0.0019422604, 0.010425066, 0.014275271, 0.014879225, -0.054438196, -0.018942187, -0.011571205, 0.025709214, -0.010363298, 0.0032256623, 0.020561881, -0.024213055, -0.0022871317, 0.027726969, -0.014989034, -0.014247819, -0.009333831, -0.022840433, -0.006077285, -0.016210668, -0.026519062, 0.015057665, 0.01892846, -0.016265573, 0.023211041, -0.008771056, 0.0073298025, 0.008283775, -0.0038330476, 0.012799703, 0.034727342, -0.00162141, -0.019326521, 6.9446105E-4, 0.020397166, 0.01976576, -0.015373369, 0.025242522, -0.02074032, 0.019710856, 0.025915107, 0.017089147, -0.007762179, 0.01091921, -0.009368147, -0.02543469, -0.017761732, -0.00904558, -0.0141380085, 6.2111154E-4, -0.008702425, -0.023156136, 0.015016487, -2.2476689E-4, -0.015798882, -0.01533219, 0.020699143, -0.003390377, 0.002740097, 0.005909139, 0.009800523, -0.042853266, -0.014124283, 0.008043566, -0.021275645, 0.0047286837, 0.015442, -0.013238941, -0.016869526, 0.016595002, -0.011468259, -4.6068634E-4, -0.0045948527, 0.0061939578, -0.024899367, 0.010768222, 0.0022631108, 7.004663E-4, 0.02190705, 0.012943828, 0.018832376, -0.004193361, 0.019175533, 3.9205523E-4, 1.0712887E-4, 0.01237419, 0.0048419246, -0.015318464, -0.008750467, 0.038653042, 0.013595823, 0.021454085, -0.02100112, -0.011358449, 0.0024226783, -0.007926893, -0.015908692, -0.01133786, -0.0045433794, -0.01641656, 0.01610086, 0.0036889222, -0.0039806045, 0.011385901, 0.016553825, 0.036017608, 0.03244879, 0.0057169716, 0.0055488255, 0.0030352108, -0.019079449, -1.13455804E-4, -0.027054384, 0.010418203, -0.0010449087, 0.022936517, -0.0071994034, -0.015702799, 0.02139918, 0.0033371877, 0.012422231, -0.007350392, 0.012298695, -0.01297128, 0.012765386, -0.007597464, -0.014385081, 0.013836032, 0.012854607, -0.030746737, 0.0060223797, 0.007364118, -0.0037781426, -0.00946423, -0.00955345, -0.015098845, 0.008311228, -0.0042585605, -0.0022905634, -0.0021498695, 0.0019113765, 0.040519807, 5.237412E-4, 0.031213429, 0.004152182, -0.0114819845, 0.016334204, 0.029621188, 0.0018925029, 0.0026491608, -0.004546811, 0.018846104, 0.020150093, -0.013856621, 0.029566282, -0.01566162, 0.024048341, 0.0031501679, 0.008592615, 0.006677807, -3.670156E-5, 0.006887132, 0.017610744, 0.02354047, 0.026121, -9.0249913E-4, -0.0230326, 0.023307126, -0.002909959, -0.0041899295, 0.0128065655, -0.008784782, -0.0045742635, -0.0035310707, -0.03675882, -0.015236107, -7.41216E-4, -0.002733234, 0.0132252155, 0.00802984, -0.012827154, -3.7532637E-4, 0.018187243, 0.0075631486, 0.030911453, -2.0589333E-4, -0.03283312, 0.003929131, 0.024213055, -0.012895785, -0.023375757, -0.0012542335, -0.035633273, -0.033986125, -0.004649758, -0.018077435, 0.026944574, -0.049826186, 0.0014841477, -0.010747632, -0.006732712, 0.016814623, -0.014687058, 0.010006416, 0.022497278, -0.02034226, 0.010521149, 0.0020263335, -0.013781127, 0.03843342, -0.016183216, 0.002980306, -0.017500933, -0.010878031, -0.008599478, -0.006029243, 0.009814248, -0.02898978, 0.023705186, -0.003434987, 0.0034264082, -0.010452518, 0.00509586, 0.01674599, -0.025379784, -0.013314435, -0.039256994, -0.01696561, -0.003682059, 0.08049057, 0.04019038, 0.006152779, 0.011557479, -0.014165461, -0.011399628, -0.013945841, -0.0076317796, 6.438456E-4, -0.0043340544, 0.011557479, -0.006084148, 0.025571952, 0.002618277, -0.004828199, -0.009217158, -0.022140397, -0.007480791, 0.00293398, -0.0033560614, -0.01773428, -0.021152109, 0.028440733, 0.024322866, -0.0032445358, -0.021303097, 0.031844836, 0.009622082, -0.014041925, 0.011962403, -0.010528012, -9.5397246E-4, 0.0085514365, 0.011948677, 3.240675E-4, -0.0036305857, 0.02757598, 0.0060566957, 0.037554942, -0.012655577, -0.006585155, 0.021989407, -0.0036408803, -0.003544797, 0.011557479, -0.014851772, -0.016251847, 0.015840061, 0.025379784, -0.034535173, 0.035084225, 0.004955166, -0.020232452, -0.004711526, 0.028907424, -0.002988885, -0.01255263, 0.01921671, -0.020616787, -0.00674987, 0.0073298025, -0.047218204, 0.021454085, -0.005452742, 0.0015913838, -0.015908692, -0.0049208505, -0.0029271168, -0.006461619, 0.012717345, 0.0013468856, -0.022154123, -0.0022716897, -0.002894517, 0.014055652, -0.002825886, 0.010349572, -0.0012713913, 0.0035653862, 0.017473482, -0.026011191, -0.029923163, -0.0041110036, -0.022661993, -0.019683402, 0.01696561, -0.02223648, 0.019120628, -0.0042791497, 0.011866319, 0.0051233126, 0.0070346887, 0.0031553153, -0.019051997, 0.036676466, -3.4787395E-4, 0.019340247, 0.020754049, 0.00586796, 0.0098073855, 0.006207684, -0.015085118, -0.012497725, -0.0071239094, -0.016718538, -0.0026354347, -0.0036614698, 0.002841328, -0.019175533, -0.0053463634, -0.024034616, -0.011667289, -0.0019285342, -0.0069248793, -0.0019594182, -0.0036477435, -0.0020812384, 0.023691459, -0.0038124581, 0.0065748603, 0.007010668, 0.0022648266, 0.013746811, 0.019724581, -0.008194555, 0.026683776, -0.01875002, -0.021934504, -0.009827975, 0.027562253, 5.434726E-4, 0.01965595, -0.011722194, -0.025462141, -0.027424991, -0.022758076, 0.0043100337, -0.010651548, -0.019381426, 0.00805043, -0.017500933, -0.008324954, -0.002994032, -1.5613578E-4, -0.011042746, -0.025640583, 0.025091534, -0.020479523, 0.0036202911, 0.02717792, -0.0066675125, 0.0034624396, -0.0314605, 0.0069248793, -9.96009E-4, -0.03986095, -0.025928834, 0.0021738904, 0.028962329, 0.019916749, 0.03695099, 0.008970086, 0.032037, 0.011083924, 0.0168558, 0.019957926, -0.01120746, -0.0064684823, -0.02786423, -0.001297128, 0.0199442, 0.0033920927, 0.02590138, 0.008729877, -0.0011632973, 0.039668784, -0.0022322268, 0.010486834, -1.9849405E-4, -0.015606714, -0.025613131, -0.015551809, -0.022922792, -0.01493413, -0.029127043, -0.010287804, 0.043841552, 0.004800746, -0.0034795974, -0.009471093, 0.038653042, -0.015785156, 0.029813355, -0.03426065, 0.017775457, -0.012408505, -0.004780157, -0.03426065, -0.028550543, 0.008716151, -0.018955912, 0.012991869, 0.006262589, -0.026821038, 0.0016051101, 0.027493622, -0.022661993, -0.012655577, 0.01162611, -0.014453712, -0.022112943, -0.025352333, -0.010040731, -0.034919508, 0.007597464, 0.006015517, -0.0020983962, -0.003434987, -0.01925789, -0.029895712, 0.034068484, -0.0020572175, 0.036703918, 0.011077061, 0.041013952, 0.007274898, 0.007117046, -0.034864604, 0.02049325, -0.01566162, 0.003589407, 0.035084225, 0.031131072, -0.01925789, -0.011282954, 1.660015E-4, -0.0041727717, -0.03928445, -0.02819366, 0.030499665, 0.014302723, 0.022044312, -0.028550543, 0.010816263, -0.029676093, 0.008764192, 0.005312048, 0.0014249535, 0.0037953004, -0.029785901, -0.017775457, -0.0027744127, 0.006077285, 0.011152555, 0.003915405, -0.034754794, 0.0030317793, -0.008414174, -0.0049757557, 0.013286983, -0.009182842, 0.032064456, -0.03760985, 0.019491235, 0.015606714, -0.002408952, -0.013245804, -0.013657591, -0.0039874674, 0.031680122, -0.017308766, 0.013204626, -0.008119061, 0.0037163747, -0.011420216, -0.0036992168, -0.02953883, -0.024171878, -0.01522238, 9.857144E-4, 0.022360016, 0.014851772, -0.0036168594, 0.005003208, -0.021893324, -0.0053875423, 0.01707542, -4.252984E-4, 0.0041007088, -0.026422977, 0.003544797, -0.0041727717, 0.005233122, 0.0016128311, -0.003736964, 0.0033440508, -0.0019577025, 0.023114959, 0.0056757927, -0.0038879523, -0.020918762, -0.018159792, -0.027672064, -0.027589707, -0.014947856, 0.0026646028, 0.016073406, -0.023705186, -0.0024878778, 0.004176203, 0.011783962, -2.1543735E-4, 0.0023712048, -0.01798135, -0.005380679, 0.027740695, -0.006283178, 0.0013031332, -0.0059537487, 0.02466602, -0.0029974638, -0.0035653862, -0.008901455, 0.007425886, 0.034288105, -0.014838046, 0.02391108, -0.010068184, -0.008256323, -0.018365685, 0.022263933, 0.020479523, 0.01846177, 5.1602017E-4, -0.015634168, -0.019724581, -4.4309962E-4, 0.030938905, -0.006283178, -0.010397613, 0.026148453, 0.015359643, 0.03928445, 0.029291758, -0.0014687057, -0.018612757, -0.009951511, -0.011282954, -0.028715257, -0.0031209998, -0.0056449086, 0.008695561, -0.014110557, -0.009965237, -0.03673137, 0.006262589, -0.035743084, -0.028097577, 0.0056552035, 0.008318091, 0.057759944, 0.019710856, -0.016471466, 0.012621261, 0.00498605, 0.0062042526, -0.019491235, 0.0032754198, 0.020657964, 0.00421395, 0.019244164, 0.0013872064, -0.022442373, -0.004581127, 0.010871168, 0.027823051, 0.0073984335, 0.029813355, -0.03513913, -0.009285789, 0.010733905, 0.0109260725, -0.0073229396, 7.5451325E-4, 0.01610086, -0.037802014, -0.013739948, 1.9924469E-4, 0.008819098, -0.012367326, 0.008798508, 0.011372175, -0.03283312, 0.0039943308, -0.021810967, -0.015002761, 0.012381053, -0.004385528, 0.03615487, 0.009814248, -0.0020983962, 0.04458277, 0.026656324, -0.008256323, -0.0044061174, -0.013616412, 0.0041350243, -0.016581276, -0.006152779, -0.002532488, 0.010576054, -0.026546514, 0.010967252, -0.02347184, 0.010596643, -0.01722641, 0.010967252, -0.021426633, 0.023375757, 0.013836032, -0.05468527, -0.00999269, -0.02314241, 6.168221E-4, -0.005689519, -2.554364E-4, -0.022579635, -7.95263E-4, -0.0091759795, 0.004581127, -0.02146781, -0.022058038, 0.007652369, 0.006145916, -0.011742783, 9.1365166E-4, 0.18513928, -0.0041727717, 0.008963223, 0.047190752, -0.0077690417, 7.9697877E-4, 0.027960315, 0.018104887, 0.0015888102, 0.016759718, -0.00915539, 0.008853413, -0.0013391646, 0.0047904514, -0.001351175, -0.014838046, -0.034754794, -0.0255445, -0.021289371, -0.028550543, 0.0060635586, 0.0016625887, -0.0012113391, -0.010136815, 0.0031827677, -0.007885715, -0.0041007088, 0.0063998513, 0.037664752, -0.007185677, -0.020699143, -0.019491235, -0.020946216, -0.014865499, -0.030362403, -0.011392765, -0.019957926, 0.01718523, 0.0141380085, 0.012031034, 0.0048522195, 0.008016114, -0.034013577, -0.022579635, 0.017322492, 0.020452071, -0.023773817, 0.008723014, -0.017597016, 0.014302723, -0.044198435, -0.0047938833, 0.008743604, 0.026752407, -0.008915181, -0.02325222, -0.004255129, 0.004948303, 0.0010431929, 0.012998733, 0.003613428, 0.026011191, -0.03626468, 0.024089519, -0.008572026, 0.021687431, -0.034617532, -0.012360463, 0.012415368, -0.033382174, -0.01892846, -0.020987393, -0.025571952, -0.004546811, -0.0067841853, -0.007165088, 0.013472287, 0.015634168, 0.0022905634, 0.0109947035, -0.022689445, -0.020067737, -0.008585752, 0.0059262966, 0.007295487, -0.03560582, 0.0039188364, -0.0036099965, -0.0025444985, -0.021358002, -0.008922044, -0.018351959, -0.014453712, 0.007110183, -0.017212683, 0.006214547, 0.016869526, 0.012278106, -0.01237419, -0.015757702, -0.038268708, 0.029566282, 0.03448027, -0.0017929878, -0.008311228, -0.013609549, 0.0052914587, 0.020754049, 0.033382174, -0.017638195, -0.012545767, -0.01449489, -0.002964864, -0.01729504, -0.0016239836, 0.013039911, 0.0059400224, -0.010665274, 0.048316304, -0.010562328, -0.0012688177, -0.024089519, 0.031268336, 0.0039119734, -0.00401492, -0.036539204, -0.030609475, 0.008633793, -0.005662067, -0.039147187, 0.007858262, 0.0014867214, 0.010404476, -0.0059434543, -0.0043168967, 3.9398548E-4, 0.016938157, 0.006533682, -4.6154423E-4, -0.003143305, 0.0015785155, 0.0067533012, -0.0013211488, 0.0040972773, 0.011440806, -0.018873556, 0.0021550169, -0.009834838, -0.021769788, -0.02775442, -0.015345916, -0.0093887355, 0.015606714, 0.0075219697, 0.040629618, -0.006324357, -0.019202985, -0.0398884, -0.013691907, 0.039723687, -0.037939277, 0.010795673, 0.025160166, -0.01449489, -0.0123536, -0.006255726, -0.1764643, 0.01358896, 0.013245804, -0.006990079, 0.019381426, 0.0018513242, 0.018667663, 0.0040492355, 0.0109947035, -0.016293027, 0.013547781, 0.010775085, -0.033382174, -8.6818356E-4, -0.001899366, 0.010528012, -0.016526371, 0.020767774, 0.02343066, -0.004292876, 0.037252966, -0.002077807, -0.003822753, -0.018846104, 0.017006788, 0.011214323, 0.037280418, 0.0036168594, 0.00571354, -0.008043566, -0.040355094, 0.0023506156, 0.01842059, 0.006039538, -0.01638911, 0.0067533012, -0.0185304, -0.021275645, -0.003867363, -0.0026096979, 0.04084924, 0.007741589, 0.015565536, 0.00421395, 0.034315556, 0.012113391, 0.02931921, -0.017844088, 0.009285789, -0.015840061, -0.0128751965, -0.04235912, 0.024885641, -0.0048933984, -0.018159792, 0.02746617, 0.004430138, -0.010576054, 0.009704439, -0.0144811645, -0.02786423, -0.016704813, 0.010150542, -0.019408878, -0.01133786, -0.025695488, -0.017898994, 0.0065577026, -0.026107274, 0.012449684, -0.02481701, 0.009272063, 0.0020726596, 0.0028893698, 0.00999269, -0.024885641, -0.021097204, 0.0040801195, -0.0024432675, 0.02757598, -0.029264305, 0.05029288, -0.020177547, 0.0076249163, 0.007741589, -0.015085118, -0.0054149944, 0.0018770609, 0.008441627, -0.003350914, 0.009999553, -0.003421261, -0.03695099, 0.0034418502, 0.011770235, 0.011605521, -0.011770235, 0.023622828, 0.005837076, -0.013884074, -0.002618277, 0.0018770609, -0.010521149, 0.04472003, 0.044857293, 0.014426259, -1.4744965E-4, 0.020218724, 0.014426259, 0.008674973, -0.0100819105, 0.014234092, 0.00862693, 0.017144052, -0.021124655, 0.013822306, -2.9682956E-4, -0.018187243, -0.010843716, 0.019408878, 0.043484673, -0.0023643419, -0.006516524, -0.019340247, -0.010006416, -0.012731071, -0.08570653, 0.0016540098, 0.007295487, 0.044061173, -0.03782947, 0.043759197, -0.0037472586, 0.011406491, -0.013259531, 0.024926819, -0.0027521076, -0.022401195, 0.0057547186, 0.015085118, 0.011880045, 0.009834838, -0.012683029, -0.012079076, -0.01751466, 0.018351959, -0.0037095116, -5.936591E-4, -0.0011092504, -0.02986826, -0.012813428, 0.020259904, -0.017995078, 0.026450431, 0.01409683, 0.008297501, 0.005157628, -0.026422977, 0.0067464383, -0.026793586, -0.02466602, -0.029456472, -0.013582096, -0.016732264, -0.0019165238, -0.050128162, 0.003117568, 0.020973668, 0.015387095, -0.0063518095, -0.0071033197, -0.011502574, -0.02673868, 0.033848863, 7.3435286E-4, -0.020699143, -0.0127379345, -0.009347557, -0.031131072, -0.0108094, 0.007405297, 0.025228797, 0.019024543, 0.017377397, -0.0061596422, -0.011262366, -0.006214547, 0.0010226036, -0.010143678, 0.024460128, 0.018873556, 0.016073406, 0.0064822086, -0.011825141, 0.01120746, -0.011523164, -0.019518688, 0.0207815, -0.030609475, -0.0050615445, -0.011852593, -0.0014661321, -0.027932862, -0.016196942, 0.023499291, -0.030691832, 0.01349974, -0.028330922, 0.00862693, -0.012037897, 0.013664454, 0.012621261, 0.008510258, 0.010232898, -0.012916375, -0.03349198, -0.002671466, 0.015716525, -0.0058164867, -0.011530027, -0.01409683, 0.017240135, 0.011461396, -0.012010444, 0.0033886612, 0.006355241, -0.02234629, 9.0614514E-5, -0.07719627, 0.023403209, -0.012216338, -0.030417308, -1.6589426E-4, -0.0024724358, 0.0027212235, -0.013705633, 0.018544126, 0.00761119, -0.024734652, 0.024679746, -0.014590974, -0.002038344, -0.008077881, 0.018612757, 0.02027363, 0.021138381, 2.6122716E-4, 0.011523164, 0.0021395748, 0.0044370014, 0.023156136, 0.006097874, 0.005511078, 0.026821038, -0.004193361, 0.01471451, -0.018681388, 0.0017689669, 0.031927194, -0.01674599, -5.0100713E-4, 0.0015888102, -0.006856248, -0.036539204, -0.011365312, -0.0098760165, 0.03999821, 0.0028327492, -0.0076798215, -0.02100112, -0.006911153, -0.0022528162, -0.002940843, 0.010795673, -0.014124283, 0.020575607, 0.0068047745, 0.017020516, 0.02907214, 0.013554645, -0.0071994034, -0.013396793, 0.014000746, -0.0037506903, 0.039696235, 0.015318464, 0.012422231, -0.015524358, 0.019353973, -0.0036992168, 0.02038344, -0.017487207, -0.008345543, -0.0034469976, -0.0054047, -0.017720552, 0.0068665426, -0.024405222, -0.013149721, -0.02343066, 0.010445655, 0.037664752, 0.031378143, 0.00906617, -0.0015064529, -0.015510631, 6.3269306E-4, 0.024144424, 0.02307378, -0.019559866, -0.022291385, 0.016718538, 0.0080641555, 0.031185977, -0.014563521, 0.0076180534, 0.0057409923, 0.011763372, -0.02307378, 0.02146781, 0.02117956, -0.014330176, 0.010308393, 0.007837673, -0.020012831, 0.011289817, -0.003326893, 0.034946963, -1.8390993E-4, 0.0048693772, -0.01846177, -0.021207014, -0.02082268, 0.004378665, -0.013472287, -0.029099591, 0.015702799, 0.019971654, 0.00977307, 0.016883254, -0.01965595, 0.0051130177, -0.032174263, 0.008324954, -0.002408952, 6.3741143E-4, -0.021412907, 0.025050355, 0.011612384, 0.0030815369, 0.042194407, -0.0134379715, 0.057320703, 0.0075219697, 0.008661246, -0.030691832, 0.0046977997, -0.0011667289, -0.021701157, 0.02852309, -0.038049087, 0.009423052, -0.0025221934, -0.006187095, -0.0014832899, 0.0139252525, -0.03135069, 0.06775263, 0.0018942186, 0.015867513, 0.024391497, -0.020246178, 0.019079449, 0.010871168, 0.020657964, -0.012367326, -0.026436703, 0.004303171, -0.0047629992, 0.008331817, -0.041590452, 0.013595823, -0.008331817, 0.012655577, 0.012744797, -0.011632973, -0.007652369, 0.018104887, 0.002046923, 0.012518315, -0.0054390156, -0.0047595673, -0.016361658, 0.030609475, -0.0052159643, -0.014385081, -0.03357434, -0.002578814, -0.010637823, 0.0023454682, 0.003211936, 0.015318464, -0.012648714, -0.008496531, 0.011440806, 0.026121, 0.00555912, -0.026532788, 0.0014892952, -0.012957553, -0.020630512, 0.0109947035, -0.0027829916, -0.0039497204, -0.016224395, -0.032860577 ], + "id" : "72358499-1d53-4162-bdd3-a1871d4a5bb3", + "metadata" : { + "source" : "movies.csv" + } + }, + "8223addb-b68e-47d3-866d-f1d23c5bc5aa" : { + "text" : "Pictures-Mandate International-Intermedia Films,5/20/09,200000000,371353001,117,Released,The End Begins.,6,5751,Christian Bale-Sam Worthington-Moon Bloodgood-Helena Bonham Carter-Anton Yelchin-Common-Zach McGowan-Bryce Dallas Howard-Jane Alexander-Michael Ironside-Ivan G'Vera-Dorian Nkono-Chris Browning-Beth Bailey-Victor J. Ho-Buster Reeves-Jadagrace-Kevin Wiggins-Greg Serano-Bruce McIntosh-Po Chan-Babak Tafti-Treva Etienne-Michael Papajohn-Dylan Kenin-Chris Ashworth-Diego Joaquin Lopez-Greg Plitt-Omar Paz Trujillo-Terry Crews-Isaac Kappy-Boots Southerland-David Midthunder-Rafael Herrera-Maria Bethke-Marc Maurin-Anjul Nigam-Emerson Brooks-Lorenzo Callender-David Douglas-Joe Basile-Esodie Geiger-Roland Kickinger-Brian Steele-Linda Hamilton-John Gibbs-Luke Kearney-Aaron Mastriani-Frank Powers-Mark Rayner,saving the world-artificial intelligence-prophecy-san francisco california-cyborg-killer robot-gas station-post-apocalyptic future-dystopia-army-firearm-wartime-los angeles california-terminator,/gw6JhlekZgtKUFlDTezq3j5JEPK.jpg,/5tKiuZvvV1lic7v65rdoGPmoOvf.jpg,296-218-280-87101-8373-1858-1571-45592-27578-2080-38356-20526-605-10764-604-64635-2048-36658-36668-44943-41154\r\n1771,Captain America: The First Avenger,Action-Adventure-Science Fiction,en,During World War II Steve Rogers is a sickly man from Brooklyn who's transformed into super-soldier Captain America to aid in the war effort. Rogers must stop the Red Skull ��� Adolf Hitler's ruthless head of weaponry and the leader of an organization that intends to use a mysterious device of untold powers for world domination.,50.265,Marvel Studios,7/22/11,140000000,370569774,124,Released,When patriots become heroes,6.994,20138,Chris Evans-Tommy Lee Jones-Hugo Weaving-Hayley Atwell-Sebastian Stan-Dominic Cooper-Toby Jones-Neal McDonough-Derek Luke-Bruno Ricci-JJ Feild-Kenneth Choi-Richard Armitage-Stanley Tucci-Samuel L.", + "embedding" : [ -0.006096362, -0.046878457, -0.016734581, -0.049203455, -0.0081172185, 0.0288462, -0.013193014, -0.0074886577, -0.01611278, -0.031144165, 0.023723094, 0.038578752, 0.007029065, -0.0044033034, 0.015504495, 0.010570632, 0.0125103835, -0.014341996, -0.009671723, -0.0124090025, 0.0035381878, 6.5559545E-4, -0.005268419, 0.010699048, 0.018856818, -0.0046668933, 0.025818296, -0.018018737, 0.006927684, -0.0145042045, 0.013395775, -0.031306375, -0.0140986815, -0.022925565, -0.0016854549, -0.0062146396, 0.010901809, -0.02906248, 0.016910307, -0.017964667, 0.0018991992, 0.021438647, -0.0016660235, -0.013868885, -0.027764807, 0.0030870435, 0.0134228105, -0.02215507, -0.010394906, 0.032820325, 0.018410742, 0.030576432, -0.031657826, -0.031874105, -0.019505655, 0.0019144063, -0.028440678, 0.014598827, 0.011604716, -0.008347015, 0.0132538425, -0.0066100243, -0.032144453, -0.008921505, -0.010800429, -0.012530659, -0.016991412, -0.011118088, 2.3906317E-5, 0.004849379, 0.022574112, 0.01711307, 0.013598537, 0.0021779963, 0.0136931585, -0.033928756, -0.028548816, 0.0021695478, -0.0049811737, 0.0020140975, 0.028305503, -0.004372889, -0.00911075, 0.013598537, 0.03511829, -0.0045046844, -0.014855658, 0.011942651, -0.028413642, 0.0077319713, 0.010928844, 0.01953269, 0.0022878253, 0.0149097275, -0.0028504885, 0.018167429, -0.008434878, 0.01931641, -0.013747228, -0.030062769, 0.019113649, -0.013977025, 0.0020394425, -0.0100772455, 0.0017555765, -0.01036787, -0.015599117, 0.0044607525, 0.019181237, 0.0050555198, -0.0062518124, -0.0028994891, 0.01179396, -0.035145324, -0.01079367, -0.015220629, 0.012956459, -0.020249113, 0.0035314292, -0.019113649, 0.03690259, 0.02537222, 0.0028082465, -0.03100899, 0.026967278, 0.03663224, -0.0033100813, -0.011807477, 0.006795889, -0.010563874, 0.030279048, 0.0031884243, 0.034793872, 0.007853628, -0.010225938, 0.046121478, -0.020316701, 0.024493588, -0.016666993, -0.012807767, 0.03663224, 0.026277889, -0.005853048, -0.015612634, -0.03146858, 0.02253356, 0.0145042045, 0.0127469385, 0.0111248465, 0.009252682, 0.021763066, 0.02789998, 0.02347978, 0.006312641, 0.026710447, -0.020614084, -0.011334367, -0.0017505075, 0.011929134, -0.0147745535, 0.003980884, -0.015207111, -0.0036226718, -0.014409583, 0.0049135867, 0.021736031, 0.009333787, -0.030252013, -0.0014041233, 0.004555375, 1.0671379E-4, 0.022033414, -0.021506235, 0.019154202, -0.021046642, 0.012936182, -0.006522161, -0.013787781, -0.03011684, -0.02206045, 0.007691419, 0.004453994, 0.02464228, 0.030387187, -0.0058834623, 0.015193594, 0.028575853, -0.028251434, 0.012429279, -0.009827173, 0.014855658, 0.009029645, 0.01600464, -0.009185095, -0.6419158, -0.013206531, -0.0060828445, -0.001174327, 0.011692579, 0.012929424, 0.0144366175, -0.0093675805, -0.020614084, -0.0119696865, -0.016829204, 0.015112489, 0.009394616, -0.023885302, -0.021803617, -0.0021306854, -0.017545627, -0.020019317, 0.0052717985, -0.005802358, -0.041498516, 0.022776874, 0.009320269, -0.0074818986, 0.0010906878, -0.0044100625, -0.005717874, -0.016518302, -6.4503495E-4, 0.014855658, -0.025602017, 0.0064207804, 0.017667284, 0.020803329, 0.040146776, 0.010672013, -0.021452164, 0.031171199, 0.025777744, 0.02242542, -0.032685153, 0.009354063, 0.0104489755, -0.005653666, -0.024520623, 0.021560304, 0.009793379, -0.016302023, -0.010874774, -0.0024821386, -0.008313221, 0.008387567, -0.0020512703, 0.007833352, -0.011449265, 0.005660425, 0.0089958515, -0.029576141, 0.0137269525, -2.2895151E-4, -0.018762195, 0.015126007, -0.0074683814, -0.0087255025, -0.0072994134, 0.031360444, -0.0033827375, -0.010759876, 0.016193883, -0.031414513, 0.015869465, -0.00426475, -0.006096362, -0.017626733, 0.018518882, -0.0012233276, 0.039254624, -0.004954139, -0.0059341528, 0.021857688, 0.0064309184, -0.02037077, -0.0054678014, 0.009435168, 0.01947862, -0.007069617, -0.030927885, -0.006586369, 0.0059442907, 0.0053461445, 0.0027440388, 0.028386608, -0.0037544668, 0.007934732, -0.0063903662, 0.004011298, 0.010469251, 0.0077522476, 0.03106306, -0.045256365, -0.011719614, -0.003595637, 0.031928174, -0.0030397326, 0.027616113, 0.018789232, -0.013618813, -0.013368741, 0.03200928, -0.01773487, 0.0019769245, 0.01889737, -0.022601146, -0.004521581, 0.0120710675, -0.023817716, 0.014761036, 0.017315831, 0.009901519, -0.015139524, 0.00942165, 0.013483639, -0.0019972005, -0.017207691, 1.2292415E-4, 0.0108882915, 0.0037950191, -0.014652897, 0.00547456, 0.0073264483, 0.004038333, -0.007887422, 0.012787491, -0.023804199, 0.019613795, 0.020695189, 0.0107396, -0.009185095, 0.0027237625, -0.0125103835, -0.021965828, 2.2831788E-4, -0.0076779015, 0.0019600277, -0.007982044, -0.005869945, -0.03211742, -0.012665834, -0.00236893, 0.011956169, -0.01758618, 0.024277309, 0.0014886073, -0.0019938212, 0.015855948, -0.0053258683, -0.028332539, -0.021087194, 0.010442217, -0.029468002, -0.0027862808, 0.020519461, 0.003222218, -0.0214792, 0.026088644, 0.00568746, 0.0010915326, 0.014287926, 0.0050521404, -0.012997011, 0.03011684, -0.003764605, -0.019140685, 0.009347305, -0.021452164, 0.019586759, -0.0077725234, 0.019019028, 0.0041194377, -0.00236893, -0.011692579, -0.0084213605, -0.0104151815, -0.012733421, 0.02658879, 0.025412772, 0.018721644, -0.018627021, -0.0049980707, 0.0027981084, -0.0143690305, -0.021925274, -0.0036226718, -0.0038119159, 0.007522451, 0.021708997, 0.011807477, -0.0027862808, -3.8735892E-4, -8.9637475E-4, 0.031279337, 0.033550266, 0.019113649, 6.6150934E-4, -8.4146013E-4, -0.02695376, 0.0013044322, -0.024520623, 0.004670273, -0.019911177, 0.018627021, -0.01605871, -0.01005697, 0.016450714, 0.021303473, 0.016356094, 4.5874785E-4, -0.011178916, -0.011652026, 0.0019465103, -0.001995511, -0.012023756, 0.0095703425, -0.0053934553, -0.039335728, 0.013443086, 0.03452352, -0.0048088264, 0.003048181, -0.016626442, -0.0060186367, 0.0010087384, -0.0041194377, 0.005575941, 0.01005697, 0.007292655, 0.030603467, -0.014882693, 0.039524972, -0.01079367, -0.022682251, 0.016261471, 0.03438835, -7.438812E-4, -0.0042985436, 0.001858647, 0.01789708, 0.018789232, -0.01658589, 0.03752439, -0.019911177, 0.023750128, -0.0058192546, 0.00768466, 0.008272668, -0.014166269, 8.2625303E-4, 0.004747998, 0.017126586, 0.025439808, 0.027602596, -0.01953269, 0.023385158, 0.008340255, 0.01584243, -7.9034735E-4, -0.011611475, 0.0101110395, -0.0069107874, -0.031982243, -0.0124427965, -0.0068668555, 0.018572953, 0.008367291, -0.020654637, -0.008705227, 0.0028302125, 0.0133890165, 0.009293235, 0.012956459, -0.012490108, -0.030062769, -0.0025311392, 0.03206335, -0.015761327, -0.02895434, -0.023669023, -0.017667284, -0.023236467, 0.0024061028, -0.016802168, 0.029332828, -0.020749258, 0.0022827564, -0.019505655, -0.0034773594, 0.032820325, -0.017234726, 0.018464813, 0.013564743, 0.0073534832, 0.017018447, 0.0032306663, -0.019073097, 0.021830654, -0.01084098, 0.010300283, 0.0043559927, -0.007961768, -0.0140310945, -0.004011298, -0.003501015, -0.03863282, 0.015274699, 0.019329928, -0.0059882225, -0.019586759, 0.0027017968, 5.5717165E-4, -0.012618523, -0.014788071, -0.02053298, -0.02300667, -0.011570922, 0.09013424, 0.040038634, 0.014125717, 0.006501885, -0.0077792825, 0.0071777566, -0.020330219, -0.0066471975, 4.874724E-4, -0.0053562825, 0.016437197, -0.0060152574, 0.018167429, 0.014206821, 0.006238295, -0.016369611, 0.0036632242, -0.009205371, -0.0010636529, -0.0092324065, -0.019694898, -0.0115979565, 0.017545627, 0.031711895, 0.020154491, -0.027629633, 0.020168008, -0.009908278, -0.0022759978, 0.02120885, -0.011205952, 7.113549E-4, -5.305592E-4, 0.0044370973, 0.008840401, -0.003568602, 0.020979054, 0.017815975, 0.01547746, 0.01605871, 2.7351678E-4, 7.468381E-4, 9.943761E-4, -0.0086579155, -0.0014362272, -0.028143294, -0.01658589, 0.012490108, 0.041877005, -0.04168776, 0.01795115, 0.0031732172, -0.02890027, -0.010361112, 0.0010492906, -3.6454826E-4, -0.0012038964, 0.009800139, -0.035091255, 0.011915617, 9.6311705E-4, -0.04279619, 0.027143003, -0.0030363533, -6.644663E-4, -0.030441258, -0.03190114, -0.015301733, -0.013044322, 2.3127483E-4, -0.0013466742, -0.013571502, -0.0070831347, -0.0024872075, 0.003690259, 0.0025074836, 0.025561465, -0.014328478, 0.01678865, 0.0013069668, -0.036415964, -0.026413063, 0.019370481, -0.018978475, -0.0014995901, 0.014517723, -0.0080834245, 0.008022596, -0.0072183087, 0.020816846, 0.0011751718, 0.0014708656, -0.016977895, -0.013402534, 0.035307534, 0.007975285, 0.0022151691, 0.021830654, 0.0071507217, 0.0017234726, -0.007096652, -0.005717874, -0.012969976, -0.017018447, -0.012016998, 7.223378E-5, -0.007333207, -0.007123687, -0.023398675, -0.02727818, -0.029603178, -0.029522073, -0.0024483448, -0.0059341528, 0.012010239, -0.00873902, 0.03738922, 0.013199773, -0.0050352435, -0.01274018, -0.0026832104, -0.00657961, 0.0136931585, 0.016356094, -0.014734001, 0.03279329, -0.01300377, -0.019884143, 0.0021712375, 0.032468874, -0.023641989, 0.010496286, -0.0031411133, 0.01232114, -0.01715362, -0.025237046, 4.9000693E-4, -0.005396835, -7.8612316E-4, 0.014666414, -0.0045317193, 0.009577101, -0.0021070298, 0.0015815396, -0.0117669245, -0.02715652, 0.016721064, 0.0033134606, 0.0062991236, 0.026994312, -2.6652047E-5, 0.0029603178, -0.036875557, 2.1754617E-4, -0.0103813885, -0.039173517, -0.018518882, -0.0059307734, 0.031414513, 0.011145123, 0.02206045, -0.0088944705, 0.036767416, 9.495996E-4, 0.0048155854, 0.02800812, -0.011658785, -0.009678481, -0.037254043, 0.0012334657, 0.0093675805, 0.034983113, 0.0017353004, 0.0016753167, 0.028792132, 0.016653476, 0.004778412, 0.0068634762, 0.0076035555, -0.016126297, -0.019721935, 0.009624411, -0.024520623, -0.006454574, -0.019140685, -0.0096041355, 0.040119737, -0.0015325389, -0.011827753, -0.016734581, 0.021641409, -0.002548036, 0.027143003, -0.020086905, 0.018356673, -0.010644978, -3.9031586E-4, -0.014747519, -0.008164529, 0.0019431309, -0.019221788, 0.01458531, 0.002411172, -0.019465102, -0.01773487, 0.027791841, -0.023763645, -0.016099261, 0.019032545, -0.008461912, -0.01268611, -0.01695086, -0.008232117, -0.02337164, -0.012875354, -0.018910889, -0.006566093, 0.0015866086, -0.019181237, -0.041147064, 0.038092125, -0.016234437, 0.03979532, 0.01305784, 0.05163659, 0.03011684, 0.018356673, -0.015855948, 0.0143014435, -0.022452455, 0.007934732, 0.028440678, 0.027143003, -0.023060739, 0.0041566105, -0.0094689615, -0.004011298, -0.034766834, -0.045013048, 0.011760166, 0.0123076225, 0.022655217, -0.017937632, 0.0049811737, -0.024263792, -0.0013973645, 0.001911027, -0.013618813, -7.26562E-4, -0.049690083, -0.01505842, -0.012922665, -0.008461912, 0.0114965765, 7.937267E-4, -0.025034284, 0.03073864, -0.033279918, 0.014679931, -0.0063937455, -0.01789708, 0.042552877, -0.011043742, 0.01747804, 0.016437197, 0.009117508, 0.002237135, -0.02053298, 0.024574691, 0.028711027, -0.0110572595, 0.02995463, 0.006974995, -0.011456024, 0.021519752, 0.011131605, -0.02906248, -0.019370481, -0.022695769, 0.0010906878, 0.029603178, -0.008806607, -0.028765095, -0.015153042, -0.014882693, -0.015896501, -2.310636E-4, 0.0018485088, -7.679591E-4, -0.034036893, 0.01947862, 0.007759006, -0.011706096, 0.003075216, -0.0026646238, 0.009516273, -0.008698468, 0.01394999, -0.020343736, -0.0026206921, -0.01363909, -0.007191274, -0.039470904, -0.022019897, -0.014625861, -0.012253553, 0.0034131517, -0.009550066, 0.007961768, 0.0028944202, -0.009982624, -0.0010442217, 0.0025868986, -0.021884723, -0.0032830464, 0.029251723, -0.01274018, -0.012145413, -0.011658785, 0.01678865, 8.9552987E-4, 0.00542387, 0.007853628, 0.011456024, 0.026940243, -0.014788071, 0.009921796, -2.3127483E-4, -0.010644978, -0.005802358, 0.020032834, 0.028467713, 0.011652026, -0.0061402936, -0.037281077, -0.0052143494, -0.008461912, 0.031144165, 4.9930013E-4, -0.0060287747, 0.023723094, 0.0033624612, 0.038443577, 0.01869461, -0.010144833, -0.018802749, 0.0076643843, -0.0012300863, -0.01084774, -0.0015849189, -3.166036E-4, 0.02047891, 0.0049980707, 6.50104E-4, -0.035658985, -0.0077049364, -0.028278468, -0.020127457, -3.2822017E-4, 0.02011394, 0.039038345, 0.012713145, 0.0112938145, 0.02342571, 0.0140310945, -0.004332337, -0.016126297, -0.013010529, 0.034253173, 0.017599696, 0.02369606, 0.0092999935, -0.036415964, -3.9707456E-4, 0.0069614775, 0.019248823, 0.0038828824, 0.030981954, -0.0031174577, -0.026413063, -0.013733711, -0.0058462895, 0.0010552045, -0.0034841183, 0.029522073, -0.020168008, -0.001868785, -0.002274308, 0.008110459, -0.008110459, 0.007042582, 0.012469831, -0.006437677, -0.0013314671, -9.1158185E-4, -0.033252884, -0.002179686, -0.045013048, 0.021614375, 0.013375499, -0.012598247, 0.032171488, 0.019519173, -0.014071647, 0.00911075, 0.004349234, 0.009901519, -0.011070777, -0.012131896, 0.0055522854, 0.015112489, -0.016707547, 0.024561174, -0.034253173, 0.006258571, -0.002174617, 0.014639379, 0.006150432, 0.037362184, 0.016220918, -0.040281948, 0.0105165625, -0.009083714, 0.015085454, -0.0013576571, -0.0042546117, -0.03622672, -0.003394565, 0.008718744, 0.0066978876, -0.023466263, -0.019884143, 0.009969106, 0.010928844, -0.0026612445, 0.026615825, 0.19627312, -0.0046331, 0.0065356786, 0.04606741, -0.0026392788, 0.013503915, 0.023385158, 0.009022886, -2.8766785E-4, -0.008745778, -0.0047885505, 0.014152751, -0.013720194, -0.0018654057, 0.005822634, -0.0103813885, -0.015220629, -0.0010146523, -0.017437488, -0.023993442, -0.011111329, -0.0037139144, -0.007042582, -0.020560015, 0.00858357, -0.0111248465, -0.015545047, 0.014815106, 0.016045192, 0.0053731794, -0.016869755, -0.025210012, -0.010070487, 0.016802168, -0.029305793, -0.008306462, -0.008387567, 0.012625282, 0.006822924, 0.0061200173, -0.009793379, 0.0045182016, -0.008178047, -0.0019279238, 0.0067789922, 0.008867435, -0.020073388, -0.026764516, 0.0010332387, 0.017086035, -0.050501127, -0.012665834, 0.013240325, 0.030360153, -0.0124427965, 0.002695038, 0.013091633, 0.016153332, -0.011895341, 0.0058564274, 0.009779862, 0.032982536, -0.029332828, 0.009577101, 0.012861837, 0.0185324, -0.033496197, 3.1523075E-5, 0.026399545, -0.030035734, 0.001463262, -0.013361982, -0.022709286, 0.014274408, -0.0011219468, -0.0138283335, 0.0052042115, 0.0017606455, 0.012672593, 0.0066742324, -0.027021347, -0.032712188, 0.021992862, -0.0048426203, -0.022465972, -0.0056570456, 0.02573719, -0.009719034, -0.008678191, -0.011347884, -0.011814236, -0.013355223, -0.00873902, 2.2789546E-4, -0.0118683055, -0.00847543, 0.023533849, 0.017194174, -0.012699627, -0.017437488, -0.019343445, 0.024344895, 0.017937632, 0.013078116, -0.01584243, -0.022452455, -0.015815396, 0.018829783, 0.010286766, -0.016274989, -0.014450135, -0.026291406, 0.0037443289, -0.015896501, 0.0056942184, 0.024142135, -0.004832482, -0.008745778, 0.05190694, -0.026331957, 0.014247374, -0.02789998, 0.015396356, 0.004149852, -0.013564743, -0.031360444, -0.03895724, 0.0058767037, 0.0023452744, -0.03433428, 0.009286476, -0.013760746, 0.019140685, -0.004011298, -0.0054002143, -0.0066100243, 0.013240325, -5.622407E-4, 0.0023283777, -0.0046466175, -0.007961768, 0.0018282327, -0.0013466742, 0.0059983605, 0.011030225, -0.014815106, 0.01394999, -0.0035922576, -0.01611278, -0.025912918, -0.0226417, -0.012855078, 0.005717874, -0.00857681, 0.040336017, 0.012550936, -0.015044902, -0.024939662, -0.015653187, 0.0424177, -0.029657247, 0.03338806, 0.010050211, -0.022966117, -0.033306953, 0.010070487, -0.17334755, 0.018613504, 0.006464712, -0.02979242, 0.016599407, 0.017045483, 0.014761036, 0.0023249984, -0.0026358992, -0.027332248, 0.024101581, 0.01600464, -0.048852, 2.4690435E-4, 0.014071647, 0.0069107874, -0.019924695, 0.04174183, 0.02453414, -0.0071777566, 0.041606657, -0.01758618, -0.0013120357, -0.0012258622, 0.013382258, -0.0049777944, 0.017140104, 0.010462493, -0.0024922765, 0.0099420715, -0.043472063, -0.008245634, 0.027251143, 0.0066674734, -0.025602017, 0.0050622784, -0.015518012, -0.0100096585, -0.017221209, 1.7372012E-4, 0.047500256, -7.459933E-4, 0.008914746, 0.009719034, 0.011070777, 0.02168196, 0.0400116, -0.018329639, 0.014963797, -0.012699627, -0.009610894, -0.046527002, 0.014328478, -0.0010070488, -0.01505842, 0.019573241, 0.004200542, -0.012044032, 0.010327319, -0.0029468003, -0.033469163, -0.0063498137, 0.0010737911, -0.016910307, -0.0028335918, -0.025710156, -0.008651157, 0.009340546, -0.025439808, 0.011942651, -0.005454284, 0.00452834, 0.010442217, -0.0022405144, 0.010969397, -0.009333787, -0.026277889, 0.0043830276, -0.0042951643, 0.02479097, 0.0010822394, 0.04490491, -0.004541857, 0.010117798, 0.0055117332, -0.025710156, 0.0052785575, 0.0041126786, -0.0012562764, -0.008678191, -0.008171288, -0.025101872, -0.043201715, 0.0019380619, 9.4368577E-4, 0.010631461, -0.0071777566, -0.0021779963, 0.00315801, -0.019154202, 0.009597377, 3.6687157E-4, -0.024845041, 0.012733421, 0.027629633, 0.019383999, 0.018667573, 0.029089514, 0.005048761, -0.0024517244, -0.0099420715, 0.0016786961, 0.012131896, 0.008597087, 0.008076666, -5.4787844E-4, -0.019911177, -0.015666705, -0.016166849, 0.008171288, 0.052366532, -0.001600126, -0.021141265, -0.01916772, -0.018856818, -0.019924695, -0.092675515, -0.004153231, 0.014571792, 0.029197654, 0.0056232517, 0.03847061, -0.014166269, 0.023155361, -0.0049811737, 0.023804199, -0.0056198724, -0.03595637, 0.026548237, -0.0032239077, 0.02169548, 0.005626631, -0.024520623, -0.012537419, -0.004406683, 0.03195521, -0.0038862617, -0.009076956, -4.6677384E-4, -0.016545337, -0.0060524303, 0.009381098, -0.02526408, 0.0027710737, 0.010503045, 0.015815396, -0.0107193235, -0.030143874, 0.024385449, -0.026548237, -0.026075127, -0.030684572, -0.032090385, -0.027562045, -0.00868495, -0.045607816, 0.003774743, 0.013199773, -0.0049304836, -0.032144453, 0.002142513, -0.005075796, -0.022222659, 0.024615245, -0.0018958199, -0.019289376, -0.0032087006, -0.025939953, -0.027683701, -0.0118345115, 0.0048122057, 0.024439517, 0.031874105, 0.009617653, -0.021506235, -0.0136593655, 0.0012309311, -0.001921165, -0.022101002, 0.013868885, 0.0031411133, 0.0046499968, -0.0064207804, -0.007840111, 0.012888872, -0.015545047, -0.021992862, 0.026156232, -0.027670184, -0.022520043, -0.026723964, -0.01716714, -0.016180366, -0.0102124205, 0.02895434, -0.030143874, 0.0064782295, -0.025669605, 0.0132538425, -0.0025885883, 0.019100131, 0.024507105, 0.016329058, 0.009935313, -0.009685241, -0.037281077, -0.007806317, 0.021371061, 0.00631602, 0.0021239265, 0.0025649327, 0.012030515, 0.013733711, 0.01053008, -0.013240325, 0.02189824, -0.013781022, 0.0016237815, -0.078292966, 0.02895434, -0.026994312, -0.009279718, -0.002926524, -0.005045382, 0.005180556, -0.017910598, -0.010070487, 0.026764516, -0.006201122, 0.025088355, -0.002358792, 0.00905668, -0.019100131, 0.019397516, -0.0011388437, -0.007867145, 0.008063149, 0.003232356, -0.016396645, 0.019924695, 0.019667864, -0.0040822644, 0.0065052644, 0.022317281, 0.0122738285, 0.0034300485, -0.006806027, -0.01658589, 0.037929915, -0.011658785, -0.019221788, 0.0072723785, -0.005616493, -0.012213, -0.030035734, -0.0045756507, 0.027021347, 0.0120710675, -4.591703E-4, -0.018289085, 0.003311771, -0.009286476, -0.0065187817, 0.018262051, -0.014396066, -0.007961768, 0.010928844, 0.008698468, 0.034415383, 0.00726562, -0.0061267763, -0.015017867, 0.013652607, -0.015639668, 0.040714506, 0.011145123, 0.0015460564, -0.0108207045, 0.013699918, 0.001321329, 0.022560595, -0.024250273, 0.013138944, 0.018599987, 0.020249113, 0.0018248534, 0.0012098101, -0.022587629, -0.009455444, -0.0019380619, 0.013328188, 0.022506524, 0.0214792, 0.022722803, -0.0066945083, 0.010442217, 2.9569384E-4, 0.010699048, 0.016612925, -0.0013618813, -0.03730811, 0.031144165, -0.0057989783, 0.018397225, -0.0027913498, 0.018762195, 0.0036497067, 0.0048257234, -0.02073574, 0.018356673, 0.0128145255, 0.010219179, 0.0054813186, 0.015747808, -0.0030853539, -0.00857681, 0.013348465, 0.025764227, -0.0030143873, -0.0068634762, -0.016383128, -0.015098972, -0.037983984, 0.010259731, -0.016666993, -0.022398386, 0.004555375, 0.025899401, 0.03395579, 0.0136864, -0.0055151125, 0.00900261, -0.052447636, 0.02274984, 4.916966E-4, 0.0036395686, -0.021641409, 0.04401276, 0.019356962, 0.00800232, 0.013605296, -0.018816266, 0.042769156, -0.0022202383, 0.016842721, -0.014450135, 0.006880373, 0.015396356, -0.0013627261, -0.013706677, -0.0226417, 0.008732261, -0.02206045, 0.0095703425, 0.018816266, 0.025277598, -0.018126877, 0.06418077, 0.02311481, 0.0044370973, 0.011199193, -0.012131896, 0.01137492, 0.017356383, 0.017072517, -0.003605775, -0.01600464, 0.004220818, -0.019194754, 0.0086579155, -0.03373951, -0.008151012, -0.0025024146, 0.0112938145, 0.011070777, -0.010536838, -0.0029045583, -0.009414892, -0.01489621, 0.02453414, 0.0038355715, -0.016545337, 8.316389E-5, 0.017329348, -0.011050501, -0.0055725616, -0.025899401, -0.0054813186, -0.019046063, -0.0018180946, -0.0045655128, 0.031982243, 0.008367291, -0.0016381438, 0.008009079, 0.018248534, 0.0087592965, -0.013348465, -0.0037679842, -0.032144453, -0.024507105, 0.0033455645, -4.2263098E-4, -0.0010095832, -0.026737481, -0.009631171 ], + "id" : "8223addb-b68e-47d3-866d-f1d23c5bc5aa", + "metadata" : { + "source" : "movies.csv" + } + }, + "23a5daa3-bede-4a9d-aefb-7fbfd71f53f1" : { + "text" : "586,21158,Tom Hardy-Charlize Theron-Nicholas Hoult-Hugh Keays-Byrne-Riley Keough-Zo� Kravitz-Rosie Huntington-Whiteley-Abbey Lee-Courtney Eaton-Josh Helman-Nathan Jones-John Howard-Richard Carter-Iota-Angus Sampson-Jennifer Hagan-Megan Gale-Melissa Jaffer-Melita Juri��iۈ-Gillian Jones-Joy Smithers-Antoinette Kellerman-Christina Koch-Jon Iles-Quentin Kenihan-Coco Jack Gillies-Chris Patton-Stephen Dunlevy-Richard Norton-Vincent Roxburgh-John Walton-Ben Smith-Petersen-Russ McCarroll-Judd Wild-Elizabeth Cunico-Greg Van Borssum-Robert Jones-Sebastian Dickins-Darren Mitchell-Crusoe Kurddal-Shyan Tonga-Cass Cumerford-Albert Lee-Ripley Voeten-Riley Paton-Maycn Van Borssum-Hunter Stratton Boland-Nathan Jenkins-Fletcher Gill-Whiley Toll-Ferdinand Hengombe-Gadaffi Davsab-Noddy Alfred-Jackson Hengombe-Christian Fane-Callum Gallagher-Abel Hofflin-Lee Perry-Hiroshi Kasuga,rescue-future-australia-chase-dystopia-post-apocalyptic future-survival-on the run-on the road-convoy-peak oil-dark future,/8tZYtuWezp8JbcsvHYO0O46tFbo.jpg,/nlCHUWjY9XWbuEUQauCBgnY8ymF.jpg,276137-468316-166258-170370-135397-286217-293660-281957-118340-140607-157336-207703-99861-264660-102899-68718-1083961-194662-127585-27205-87101\r\n341174,Fifty Shades Darker,Drama-Romance,en,When a wounded Christian Grey tries to entice a cautious Ana Steele back into his life she demands a new arrangement before she will give him another chance. As the two begin to build trust and find stability shadowy figures from Christian��s past start to circle the couple determined to destroy their hopes for a future together.,92.892,Universal Pictures-dentsu-Fuji Television Network-Perfect World Pictures-Michael De Luca Productions,2/8/17,55000000,378827494,118,Released,Every fairy tale has a dark side.,6.5,7025,Dakota Johnson-Jamie Dornan-Eric Johnson-Eloise Mumford-Bella Heathcote-Rita Ora-Luke Grimes-Victor Rasuk-Max Martini-Bruce Altman-Kim Basinger-Marcia Gay Harden-Andrew Airlie-Robinne Lee-Amy Price-Francis-Fay Masterson-Ashleigh LaThrop-Paniz Zade-Carmen Dollard-Bill Dow-Julia Dominczak-Shiraine Haas-Elizabeth McLaughlin-John Callander-Ellen Ewusie-Stephan Miers-Albert Nicholas-Michael Meneer-Michael St. John Smith-Derek Green-Michelle Harrison-Mark DeCarlo-Stephanie Florian-Lucia Walters-Colin Lawrence-Isaiah Dobbs,based on novel or book-boat-eroticism-kiss-sequel-bdsm,/7CBO9GhsUeMSsWQb47WTPZnKjdj.jpg,/9dWH18IZf0KdGx0kJaONzWcmD69.", + "embedding" : [ 0.014158565, -0.031202272, -0.018259207, -0.039830983, -0.028958272, 0.04624241, 0.0022473382, -3.7900876E-4, -0.012622494, -0.043784693, 0.020142563, 0.030614559, -0.0038234803, -5.40964E-4, 0.008381603, 0.017203992, 0.018472921, -0.016295707, 0.017270777, -0.03512927, 0.004157409, 0.0042008194, -0.019274348, 0.01940792, 0.002860097, 0.008568604, 0.0318167, -0.011654102, -0.016122064, -0.0040138196, 0.0070792823, -0.020917276, -8.8991923E-4, -0.03806784, -0.027221845, 0.0076937107, 0.005276069, -0.026660845, 0.019247634, 5.472252E-4, 0.0035797127, 0.0071126753, -0.0048352834, -0.01935449, -0.011881174, 0.008688818, 0.0147729935, -0.01217503, -9.4501744E-4, 0.028984986, 0.02500456, 0.040712554, -0.015601136, -0.022132777, -0.02127792, 0.014505851, -0.022146134, 0.012368709, 0.0041874624, 0.02019599, 0.014626065, -0.016228922, -0.0334997, -0.027328702, -0.02234649, -0.024203133, -0.014519208, -0.005953944, -0.0101647815, 0.009450174, 0.012602459, 0.007166104, 0.02650056, 0.014238708, 0.008849103, -0.026006345, -0.028397273, -0.020382991, -0.003429445, 0.0024109632, 0.0101647815, -1.1030073E-4, -0.01805885, 0.010792566, 0.008221318, -2.7653447E-5, -0.0077604963, 0.025565559, -0.015520993, 0.0033843645, 0.0027031505, 0.027889702, -0.0065416577, 0.0057268725, 0.015734708, 0.008802353, -0.022987632, 0.038976125, -0.025952917, -0.03227084, -0.0070525683, -0.003185677, -0.013811279, -0.014345565, -0.0036565163, -0.011533888, 0.0022239634, 0.0039971233, 0.020596705, 0.017030349, 0.014171923, -0.022186205, 0.013163459, -0.035342984, 0.008481782, -0.01791192, 0.015360707, -0.022773918, -0.023922632, -0.013076637, 0.027809558, 0.033553127, 0.0032407753, -0.037159555, 0.04119341, 0.041086555, 0.0030537755, -0.016028564, 0.010658995, -0.0039103017, 0.023815775, -0.012041459, 0.021718705, 0.016442636, -0.02000899, 0.04394498, -0.038174696, 0.0047384445, -0.01875342, -0.01362428, 0.027836272, 0.04212841, -0.023762347, -0.0154007785, -0.019634992, -0.0027866326, 0.018472921, 0.0013499056, 0.008615353, 0.008849103, 0.021678634, 0.033526413, 0.026487203, 0.017137207, 0.02616663, -0.008989353, 0.005663426, -0.01040521, 0.0040973015, -0.002407624, -0.0076469607, -0.0045147124, -0.007413211, -0.010278317, 0.006040765, 0.024670633, 0.017417707, -0.025565559, 0.006050783, -1.4953731E-4, -0.01562785, 0.02406956, -0.016242279, 0.0104786735, -0.003502909, 0.015080208, -0.0048553194, -0.002090392, -0.035209414, -0.021438204, -0.0050590155, 0.015307279, 0.04437241, 0.038842555, -0.0046583014, 0.018967135, 0.019928848, -0.018205777, 0.011346888, -0.015614493, 0.004908748, 0.016429279, 0.0024143024, -0.014545922, -0.635586, -0.011059709, 0.001292303, 0.012188387, 0.007907425, 0.017831778, 0.00816121, -0.009690603, -0.035369698, -0.022613633, -0.023949346, 0.028450701, 0.014051708, -0.0104786735, -0.014439065, -0.014959993, -0.0033993914, -0.028450701, 0.003250793, 0.007813925, -0.024737418, 0.022279704, 0.012288566, -0.0076068896, 0.0039436948, 0.008702175, -0.008575282, -0.025418632, 0.007105997, -0.009690603, -0.022025919, 0.006698604, 0.01203478, 0.0048352834, 0.03913641, -5.680957E-4, -0.019301062, 0.05281412, 0.027355416, 0.029893272, -0.040124837, 0.008308139, 0.00989096, -0.004347748, -0.030026844, 0.030881701, -0.0020553295, -0.0041741054, 0.005125801, -0.006755372, 0.0031956949, -3.6335585E-4, -0.00709264, -0.017417707, -0.0072662826, -0.0025779274, 0.017965348, -0.042609267, 0.023976061, -0.003442802, -0.030801557, 0.010612246, -0.0014692851, -0.02019599, -1.3336266E-4, 0.02981313, -0.0033526414, -0.018913705, 0.008308139, -0.02981313, 0.0057168547, 0.010411888, -0.017270777, 0.0020319545, 0.013243602, 0.006591747, 0.039296698, 0.011086424, 0.0121549945, 0.017484492, -0.0011119817, 0.003606427, 0.0147729935, 0.022186205, 0.024523703, -0.008581961, -0.030213844, 0.009296567, 0.017350921, 0.0011745932, -0.0063746935, 0.021585133, 0.007152747, 0.010592209, -0.025779273, -0.0055665867, -0.008775639, -0.004674998, 0.024870988, -0.05476426, -0.009002711, -0.023027703, 0.028183559, -0.0076937107, 0.01665635, 0.009216424, -0.008281425, -0.019661706, 0.019554848, -0.005055676, -0.020596705, 0.006227765, -0.025592275, 0.0069991397, -0.013350458, -0.027996559, 0.02369556, 0.018339349, -0.011680816, -0.016415922, 0.010211531, 0.027315345, 0.004745123, -0.025244989, 0.02066349, 0.027622558, -0.0131367445, -0.008962639, 0.009162996, 0.011420352, 0.00662514, -0.011386959, 0.0140917795, -0.024483632, 0.014559279, 0.005025623, 0.007272961, -0.013577529, 0.017137207, -0.010932816, -0.011113138, -0.014585993, -0.020329563, -0.008548568, -5.5209066E-6, -0.010946173, -0.022319775, -0.015480922, 0.001978526, -0.024149703, -0.012355352, 0.023348276, -0.0031656413, 0.007019175, -0.0019301063, -0.001133687, -0.02515149, -0.007493354, 0.016028564, -0.018179063, -0.0037166234, 0.02272049, -0.0041540693, -0.0131501015, 0.0062878723, 7.0458895E-4, -0.023254775, 0.012041459, 0.012589102, -0.0045881765, 0.019528134, -0.011740923, -1.9294802E-4, 0.015360707, -0.00914296, 0.017951991, -0.0075601395, 0.01982199, 0.008027639, -2.8676103E-4, -0.0011320174, -0.014813065, -0.02463056, -0.016148778, 0.024203133, 0.027488988, 0.004184123, -0.016536135, -0.00625114, 0.014051708, -0.023121204, -0.014559279, 0.0035797127, -0.0036732126, -0.0075133895, 0.017858492, 0.02369556, -1.5558978E-4, -0.0031472754, -0.019247634, 0.03862884, 0.02575256, 0.005523176, 0.011326852, 0.010665674, -0.020756992, 1.4734591E-4, -0.015213779, 0.0042709447, -0.004978873, 0.027301988, -0.020356277, -0.020209348, 0.005249355, -0.0021104277, 0.020503204, -0.0072529255, 0.018352706, -0.015854921, -0.0039971233, 0.008702175, -0.011747601, 0.019808633, 0.018406134, -0.027649274, -0.01306328, 0.022480061, -0.022854062, 0.003073811, 0.0053161406, -0.007894068, -0.005603319, 0.009223103, 0.0072061755, -0.0075467825, -0.015454208, 0.015000065, -0.01940792, 0.030961843, -0.009904317, -0.013403887, 0.012555709, 0.014853137, 0.011433709, 0.007827282, 0.003489552, 0.005883819, 0.026019702, -0.011780995, 0.026580703, -0.009897638, 0.044399124, 0.0108459955, 0.0013231913, 0.01264253, -0.012054816, 0.013083315, 0.016522778, 0.028049987, 0.022239633, 0.0071126753, -0.02887813, 0.013029887, -0.0027315344, 0.0010919459, 0.0036765519, -0.036358126, 0.011507173, -0.0073397467, -0.035423126, -0.010271639, -0.005382926, 0.00872221, 0.012943066, -0.016496064, -0.007580175, 0.0036097663, 0.0011762629, 0.008334854, 0.024857631, -0.009817496, -0.032858558, 0.012308601, 0.046215694, -0.019514777, -0.033259273, -0.0076803537, -0.013457315, -0.02855756, -0.031175558, 0.003843516, 0.034407984, -0.030561129, -0.0074532824, -0.01744442, 0.009770745, 0.013430601, -0.028637702, 0.006648515, 0.017457778, -0.0026330256, 0.010358459, -0.012976458, -0.0016337448, 0.024603846, -0.011694173, -0.012108245, -0.004110659, -0.003596409, 0.0041173375, 1.7134703E-4, 0.001054379, -0.040418696, 0.019581562, -0.018472921, 0.0046349266, 0.007940818, 0.033339415, 0.008054353, -0.02925213, -0.012442173, -0.026233416, -0.02435006, -0.006918997, 0.08692825, 0.04920769, 0.0025996328, 0.0077938894, -0.016856708, -0.0053294976, -0.0085418895, 7.342251E-4, -0.009857567, -0.0072195325, 0.03881584, -0.021625204, 0.014385636, 0.012662565, 6.5575197E-4, -0.019073991, -0.0030304005, -0.0022840705, -0.0018366063, -0.009910995, -0.017831778, -0.022266347, 0.009997817, 0.023575347, 0.01978192, -0.017297491, 0.019287705, -0.0037900875, -0.0039436948, 0.022747204, -0.011440388, 0.0065416577, -0.004608212, 0.003569695, 0.0078473175, 0.011794352, 0.022226276, 5.267721E-4, 0.026861202, -0.013504066, -0.0104786735, -0.002631356, 0.015307279, -0.0024694006, 0.012168352, -0.024523703, -0.017938634, 0.029358987, 0.022600276, -0.034220986, 0.020503204, 0.017577993, -0.029278845, -0.010011174, 0.005185908, 0.007019175, -0.015734708, -0.012528994, -0.024643917, 0.008895854, 0.0048352834, -0.034862127, 0.006661872, -0.013931494, -0.013971565, -0.02528506, -0.012729351, -0.014866494, -0.012609137, 0.0043377304, 0.011734244, -0.023268132, 0.013904779, 0.012869601, 0.024363417, -0.0019267669, 0.020463133, -0.0036364805, 0.0141051365, 0.0028667755, -0.040044695, -0.02356199, 0.016522778, -0.0082146395, -0.0025445346, -0.0013307048, -0.011032995, 0.022466704, -0.0017414368, 0.01888699, -0.006965747, 4.5372525E-4, -0.023214703, -0.013130066, 0.037987698, 0.008682139, 0.015641207, 0.012061494, 0.008087747, 0.00457148, 0.005453051, -0.018018778, -0.004361105, -0.02463056, -0.014866494, -0.015574422, 0.0031088735, 0.011280102, -0.021798847, -0.03726641, -0.02109092, -0.020463133, 7.692876E-4, 0.001703035, -0.0014901556, -0.0073397467, 0.00713939, 0.018179063, -0.010592209, 0.014318851, 0.012201744, -0.008728889, 0.014666136, 0.021999205, -0.008475103, 0.029839844, -0.021050848, -0.026019702, -0.007934139, 0.02481756, 0.0011779325, 8.09359E-4, -0.025912846, -0.0077337823, -0.016242279, -0.026620774, -0.0011470441, -0.003863552, -0.013597566, 0.017818421, -0.014332208, 0.014078422, 0.0032858558, -0.0018015439, -0.0040939623, -0.033152413, 0.015707994, -0.009149639, 0.019488063, 0.035583414, 0.0031138826, 0.0066451756, -0.01763142, -0.004274284, -0.017150564, -0.023682203, -0.013210208, -4.2680226E-4, 0.02831713, 0.015975136, 0.044559408, -0.014412351, 0.0320037, 0.020129206, -0.0045013553, 0.032778412, -0.012235138, -0.009944389, -0.038548697, 0.0037633732, 0.005853765, 0.024737418, 0.006030747, -0.008775639, 0.0124288155, 0.027515702, 0.012048137, 0.010398531, 0.0014767984, -0.03689241, -0.022880776, -2.573336E-4, -0.020676848, 0.010906102, -0.029038416, -0.012221781, 0.028717844, -4.3243731E-4, -0.004240891, -0.015681278, 0.02416306, 0.008782318, 0.008748924, -0.033045556, 0.014292137, -0.014585993, 0.003900284, -0.018232493, -0.022880776, 0.007800568, -0.010886067, 0.029839844, 0.020062419, -0.018900348, -0.013851351, 0.029652843, -0.0066318186, -0.01674985, 0.023802418, -0.0108192805, -0.018446205, -0.023628775, -0.007226211, -0.01884692, 2.7736928E-4, 2.8404786E-4, -0.029866558, 0.007346425, -0.028210273, -0.011734244, 0.018553063, -0.002649722, 0.03507584, 0.008381603, 0.044986837, 0.030961843, 0.013731137, -0.012121602, 0.009810817, -0.019341134, 0.006247801, 0.033018842, 0.012041459, -0.014452422, -0.0058203726, -7.2295504E-4, 0.004254248, -0.03531627, -0.027595844, 0.021638561, 0.025071345, 0.019207563, -0.015601136, 0.0016420931, -0.041273553, 0.002122115, -0.012989815, 0.0034561593, 0.01572135, -0.023802418, -0.0154007785, 0.010972888, -0.0035663554, 0.0076937107, 0.009403424, -0.017057063, 0.0015945082, -0.01852635, 0.011273423, -0.01613542, -0.016482707, 0.027021488, -0.025405275, 0.009042782, 0.015000065, 0.007974211, 0.013824637, -0.0039069625, -0.0046349266, 0.032591414, -0.02597963, 0.022186205, 0.0147195645, -0.0025011238, 0.011627387, 0.016242279, -0.01884692, -0.02000899, -0.0331257, -0.002836722, 0.038842555, 0.0013991601, 0.009410103, 0.012328638, -0.02099742, -0.0127961375, 0.006130926, -0.008141175, 0.006461515, -0.03320584, 0.0039637303, -0.0033877038, 0.009069496, 0.0016779903, -0.0041908016, 0.001973517, -0.011453745, 0.020676848, -0.005349533, -0.009951067, -0.0095102815, -0.016309064, -0.03430113, -0.019381206, -0.013657672, -0.008875817, 0.0054797656, -0.015788136, -0.010719102, -0.008141175, -8.607005E-4, -0.006027408, -1.3859334E-7, -0.024416845, -0.0023491865, 0.016015207, -0.006341301, -0.010031209, 0.0035863912, 0.024229847, -0.0023759007, -0.0062912116, -0.010558817, 0.008521853, 0.037854128, -0.016950207, 0.01665635, 0.009149639, -0.014171923, -0.018259207, 0.024790846, 0.032457843, 0.0064314613, 0.005109105, -0.019581562, -0.01562785, -0.0054697474, 0.036464985, -0.001996892, 0.006661872, 0.021825561, 0.013931494, 0.028156845, 0.018232493, -0.008829067, -0.019942205, -0.01096621, 0.006284533, -0.02756913, 4.9906645E-5, -0.005229319, 0.013216887, 0.012028102, -0.025418632, -0.035770413, -0.007286318, -0.02272049, -0.031522844, -0.0038501946, 0.012569066, 0.031335842, 0.013851351, 0.0033376145, 0.015093565, 0.015053493, 0.00798089, -0.013704423, -0.009503603, 0.016148778, 0.022039276, 0.033846986, 0.02085049, -0.045654695, -0.0076803537, 0.016856708, 0.022693776, 0.0097974595, 0.02384249, -0.01912742, 0.0026764362, -0.0014751288, 0.002187231, -0.00798089, 5.751917E-4, 0.029706273, -0.028904844, -0.0011503834, 0.013517423, 0.02794313, 0.008495139, 0.015654564, 0.021718705, -0.004030516, -0.009343317, -0.020423062, -0.017711563, -0.012368709, -0.017551279, 0.021665275, 0.0046716584, -0.009303246, 0.041727696, 0.030721415, 0.003970409, 0.017925277, -0.005075712, -0.008568604, -0.014358922, 0.0044980156, -0.0063179256, 0.036945842, -0.036865696, 0.010866031, -0.02728863, 0.011233352, -0.0039537125, -0.005546551, 0.005099087, 0.030667987, 0.0108192805, -0.06459511, -8.402474E-4, -0.011760959, 0.016389206, -6.5950863E-4, 0.0042241947, -0.01660292, -0.010552138, -0.00564673, -0.007640282, -0.020075778, -0.025952917, 0.001986874, -0.013837994, -0.010238245, 0.021077562, 0.18561077, -0.01259578, 0.015120279, 0.054924548, 0.006311247, 0.0050623547, 0.012074851, 0.013604244, -0.0014985038, 0.0140917795, 0.0018032135, 0.01054546, 0.002355865, -0.0022556866, 0.018967135, -0.010118031, -0.029866558, -0.014238708, -0.011947959, -0.028450701, 0.0053261584, 0.013604244, -0.015935063, -0.03176327, 0.010378496, 0.0058136936, -0.01315678, -2.176796E-4, 0.012722673, -0.0035196056, -0.008281425, -0.010658995, -0.0011679146, 0.002015258, -0.021384776, -0.004912087, 6.772486E-5, 0.0128094945, 0.012789459, 0.004785194, 0.005953944, 0.013103351, -0.016642993, -0.0011779325, 0.0017147225, 0.006621801, -0.019661706, 0.0013265307, -0.035476554, 0.01572135, -0.040846124, -0.008642067, 0.014158565, 0.024617203, -0.0020770347, -0.009223103, 0.003442802, 0.014425708, -0.0039537125, 0.016963564, 0.010652317, 0.03467513, -0.027969845, 0.024750775, -0.004791873, 0.018539706, -0.033152413, -0.01632242, 0.009009389, -0.011333531, -0.02034292, -0.026246773, -0.015320636, 0.007994247, -0.0037767305, -0.015080208, 0.010231567, -0.0028016595, 8.41917E-4, 0.02925213, -0.021451563, -0.022653705, 0.019648349, -0.0039637303, -0.021812204, -0.015948422, 0.006414765, -0.012462209, -0.006237783, -0.014919922, -8.2689023E-4, -0.02146492, -0.00312557, -0.01506685, -0.010184817, 0.009436817, 0.024937775, 0.004511373, -0.014465779, -0.0023692222, -0.04381141, 0.021104276, 0.014332208, -1.9701777E-4, -0.027275274, -0.022934204, -0.013904779, -0.003783409, 0.026567345, -0.012695959, -0.010832638, -0.024309989, -0.0015126958, -0.010318388, 0.0025178203, 0.02528506, -0.013403887, -0.020209348, 0.028530844, -0.0063880505, 0.011894531, -0.033419557, 0.017791707, 0.0011954637, -0.0029235433, -0.032030415, -0.026807774, -0.006097533, 0.006060801, -0.030427558, 0.024937775, -0.02925213, 0.0066551934, 0.0075000324, 0.011273423, -0.001441736, 0.01772492, -0.014479136, 0.016362492, 0.011012959, -0.0046215695, -0.01674985, 0.009443495, 0.0040138196, 0.003325927, -0.027809558, 0.0042241947, -0.01403835, -0.010338424, -0.04789869, -0.035423126, -0.008809032, 0.015881635, 0.020129206, 0.034915555, -0.0028400612, -0.015601136, -0.037720554, -0.0071460684, 0.042849693, -0.0348087, 0.009196389, 0.012375387, -0.010358459, -0.014131851, -0.009336638, -0.16990279, 0.02304106, 0.01660292, -0.030828271, 0.013731137, 0.021064205, 0.02449699, 0.0019651689, 0.0013123387, -0.010765852, 0.02597963, -0.0051525156, -0.04386484, -5.1258015E-4, 5.438859E-4, 0.026326917, -0.011253388, 0.043651123, 0.034461413, -0.008615353, 0.039777555, -0.0012463878, -0.0047785155, 0.0039169802, 0.021838918, 0.011166566, 0.029599415, 0.010458638, 0.01516035, 0.007399854, -0.039590552, -0.013363816, 0.020463133, 0.009570388, -0.016068636, 0.009663888, -0.019728491, -0.0124288155, -0.018232493, 0.0023091151, 0.05225312, 0.004207498, 0.016963564, -0.0018766777, 0.017698206, 0.019087348, 0.029572701, -0.01824585, 0.006755372, -0.023214703, -0.022239633, -0.023481846, 0.029786415, -0.017497849, -0.0034494805, 0.030774843, 0.007600211, 0.0019952224, -0.0014575976, -0.0037166234, -0.023762347, -0.0038134626, 0.0015085216, -0.0065950863, -0.0035630162, -0.022279704, -0.0010944504, 0.0059639616, -0.03675884, 0.0014868163, -0.027515702, 0.0076803537, 0.005416319, 0.0010794236, 0.0010118032, -0.024897704, -0.033686697, 0.0067052827, 0.0026998112, 0.008248032, -0.0041874624, 0.036037557, -0.007105997, 0.015654564, 0.005189248, -0.015120279, 0.0055198367, 9.2164247E-4, -0.0013832985, 0.0018883653, 0.0069123185, -0.013637637, -0.027342059, 0.002342508, 0.0029385702, -0.0018750081, -0.004701712, 0.014024993, 0.009316603, 0.0013048253, -7.972541E-5, -0.008381603, -0.019100705, 0.020690205, 0.017805064, 0.011346888, 0.009349996, 0.010158103, 0.029305559, 0.017177278, -0.02000899, -0.01306328, 0.030026844, -3.293369E-4, -0.015921706, 0.021224491, -0.01129346, -0.016268993, -0.004651623, 0.01600185, 0.045414265, -0.007192818, 0.008354889, -0.0041774446, -2.7966505E-4, -0.016856708, -0.08185253, -0.0031105434, 0.014959993, 0.03251127, -0.027221845, 0.039403554, -0.006087515, 0.006752033, -0.029866558, 0.02028949, 0.0013382181, -0.019755205, 0.012709316, -0.007626925, 0.008962639, 3.7504337E-4, -0.016255636, -9.057808E-4, -0.008508496, 0.025178203, -0.010792566, -0.018913705, -0.0076803537, -0.020489847, -0.021558419, 0.02309449, -0.023829132, 0.024376774, 0.017244063, 0.020249419, 0.006708622, -0.019434635, 0.014158565, -0.041674268, -0.031202272, -0.029171987, -0.002482758, -0.019768562, -6.269506E-4, -0.057489116, 0.0074666394, 0.019634992, 0.012161673, -0.011734244, -0.013931494, 9.6505316E-4, -0.027408846, 0.034701843, 8.782318E-4, -0.017163921, -0.0022523473, -0.013637637, -0.032217413, -0.009309924, 0.013958208, 0.0063346224, 0.03993784, 0.012709316, -0.017270777, -0.015374064, -0.010652317, 8.5819606E-4, -0.020756992, 0.02855756, -0.0014667806, 0.019060634, -0.0035162664, -0.007346425, 0.019260991, -0.01516035, -0.023535276, 0.017190635, -0.034274414, -0.014492493, -0.028717844, 0.0050623547, -0.03937684, -0.0029385702, 0.018472921, -0.030293986, 0.0032457842, -0.026420416, 0.015748065, -0.0074532824, 0.009910995, 0.01329703, 0.010979567, 0.010618924, -0.02463056, -0.041353695, -2.619251E-4, 0.028904844, -0.0013115039, 0.001101129, -0.010899424, 0.0085552465, 0.013143423, 0.0098375315, 0.0040939623, 0.002365883, -0.004447927, 0.0039503733, -0.066037685, 0.041487265, -0.027729416, -0.012615816, -0.017671492, -0.004227534, 0.0014133521, 0.009336638, -0.005763605, 0.034220986, 0.0040572304, 0.008622032, -0.018312635, 0.0046115513, 3.762956E-4, 0.0028651059, 8.435867E-4, -0.01697692, -1.0967461E-4, 0.008508496, -0.006247801, 0.013604244, 0.026420416, 0.0124688875, 0.006217747, 0.024256561, 0.010632281, 0.014826422, -0.016683064, -0.0013724458, 0.044025123, -0.022867419, -0.004922105, 6.127587E-4, 0.0028567577, -0.03363327, -0.01418528, 0.0029302218, 0.0094969245, 0.003629802, -0.0068522114, -0.023268132, -0.0035863912, 0.0031239004, -0.017163921, 0.013864708, -0.021852275, 0.0114737805, 0.010238245, 0.01935449, 0.033713415, 0.022466704, 9.066157E-4, -0.028023273, 0.0050022476, -0.023441775, 0.040418696, 0.008601996, -0.010592209, -0.030454272, 0.01987542, 0.0010769191, 0.026607417, -0.028023273, -0.0040238374, 0.007920782, 0.01613542, -0.0019751866, 0.0012655887, -0.038174696, -0.004831944, 0.011553924, 0.009503603, 0.040124837, 0.015374064, 0.012101566, -0.008167889, 0.01264253, -0.009951067, 0.017604707, 0.017083779, -0.0066418364, -0.0140917795, 0.02174542, 3.8944403E-4, 0.014639422, -0.010485352, 0.0065049254, 0.010291674, -0.001973517, 7.0333673E-4, 0.02272049, 0.04146055, -0.0012196735, 0.002976972, 0.014866494, -0.019514777, -0.00798089, -0.019434635, 0.018873634, -0.008314818, -0.0082146395, -0.015774779, -0.030454272, -0.018539706, -0.0034561593, -0.013310387, -0.0054897834, 0.007540104, 0.027622558, 0.029011702, -0.009643853, -0.012074851, 0.009223103, -0.044532694, 0.015213779, -0.008007604, 0.0050489977, -0.01254903, 0.029599415, 0.01922092, 0.009129603, 0.029011702, -0.0062210867, 0.059359115, 0.007239568, 0.022693776, -0.014519208, 0.005706837, 0.015894992, -0.007446604, -0.007259604, -0.021558419, 0.0078339605, -0.010425245, 0.0012180039, 0.0124822445, 0.02519156, -0.013049923, 0.06379369, 0.020970704, -0.013637637, 0.011593995, -0.012675923, 0.021050848, 0.01273603, 0.012402101, -0.024790846, -0.014933279, -0.0052827476, -0.006768729, 0.0040004626, -0.045414265, -0.006838854, -0.0049054087, 0.009683924, 0.010438602, -0.005346194, -0.017431064, -0.02509806, -0.008875817, 0.0032825165, 0.0064314613, -0.0021688652, -0.021705348, 0.026647488, -0.008795675, -0.0065984256, -0.012762744, 0.010879388, -0.02528506, -0.0059773186, -0.0024844275, 0.01721735, -0.004815248, -0.015561065, 0.008034318, 0.00806771, 0.0050156047, -0.012121602, 0.0020803742, -0.018272564, -0.021211134, 0.014946636, -0.0052326582, 4.9337925E-4, -0.034033984, -0.010719102 ], + "id" : "23a5daa3-bede-4a9d-aefb-7fbfd71f53f1", + "metadata" : { + "source" : "movies.csv" + } + }, + "110e17ff-1800-47d6-8d01-a19e8e930fea" : { + "text" : "Things will change for Peter when a new villain Electro emerges an old friend Harry Osborn returns and Peter uncovers new clues about his past.,121.075,Marvel Entertainment-Columbia Pictures-Matt Tolmach Productions-Avi Arad Productions,4/16/14,200000000,708962323,141,Released,No more secrets.,6.488,11804,Andrew Garfield-Emma Stone-Jamie Foxx-Dane DeHaan-Colm Feore-Felicity Jones-Paul Giamatti-Sally Field-Embeth Davidtz-Campbell Scott-Marton Csokas-Louis Cancelmi-Max Charles-B.J. Novak-Sarah Gadon-Michael Massee-Jorge Vega-Bill Heck-Teddy Coluca-Helen Stern-Aidy Bryant-Cal McCrystal-Anslem Richardson-Mark Doherty-James Colby-Kari Coleman-Skyler Gisondo-Charlie DePew-Robert Newman-Adrian Martinez-Thaddeus Phillips-James McCauley-Rachael McOwen-David Shabtai-Greg Connolly-Timothy Adams-Tug Coker-Jabari Gray-Jamie Lynn Concepcion-Pat Kiernan-Jessica Abo-Clem Cheung-Dusan Hyska-Andrei Runtso-Brennan Taylor-Slate Holmgren-Drew Beasley-Matthew Tronieri-Dario Barosso-Salvatore Rossi-Peter KT Tzotchev-Paul Urcioli-David Shih-Daniel Gerroll-Brian McElhaney-Jonathan Braylock-Steven Hauck-J.D. Walsh-Stan Lee-Jessica Shea Alverson-Stefanie Barry-Chris Cooper-BJ Davis-Julia Davis-Frank Deal-Odette Warder Henderson-Denis Leary-Lynn Marocola-Josh Elliott Pickel-Jacob Rodier-Martin Sheen-Rick Bolander-Amyrh Harris,obsession-experiment-sequel-superhero-based on comic-electrocution-super power,/c3e9e18SSlvFd1cQaGmUj5tqL5P.jpg,/mPyiNWS0upEG1mGKOKyCQSoZpnp.jpg,1930-559-558-557-100402-127585-76338-315635-68721-10138-99861-10195-49521-1771-91314-76170-102899-24428-118340-124905-1724\r\n385687,Fast X,Action-Crime-Thriller,en,Over many missions and against impossible odds Dom Toretto and his family have outsmarted out-nerved and outdriven every foe in their path. Now they confront the most lethal opponent they've ever faced: A terrifying threat emerging from the shadows of the past who's fueled by blood revenge and who is determined to shatter this family and destroy everything���and everyone���that Dom loves forever.,3583.861,Universal Pictures-Original Film-One Race-Perfect Storm Entertainment,5/17/23,340000000,704709660,142,Released,The end of the road begins.,7.275,3694,Vin Diesel-Michelle Rodriguez-Tyrese Gibson-Ludacris-John Cena-Nathalie Emmanuel-Jordana Brewster-Sung Kang-Jason Momoa-Scott Eastwood-Daniela Melchior-Alan Ritchson-Helen Mirren-Brie Larson-Jason Statham-Charlize Theron-Rita Moreno-Joaquim de Almeida-Leo A. Perry-Luis Da Silva Jr.", + "embedding" : [ 0.008788367, -0.032144837, 1.4659649E-4, -0.04177773, -0.012496371, 0.032171227, -0.003932332, -0.012819667, -0.029136207, -0.026233142, 0.035628513, 0.030297432, 6.247361E-4, 0.011922357, 0.011843182, 0.013116571, 0.017655907, -0.02971682, -0.010972262, -0.021865351, -0.00545974, 0.0061459187, -0.02549418, 0.0133936815, -0.010807316, 3.1339895E-4, 0.021403499, -0.012522763, 0.0022102874, -0.015161912, 0.0090984665, -0.0057896334, -0.018104563, -0.025507376, -0.019318571, 0.007930643, 0.013189148, -0.01371038, 0.03591882, -0.008412288, 0.00725766, 0.0073764217, -0.012272043, -0.0051067537, -0.026338708, -7.995797E-4, 0.016956532, -0.027367977, 0.0058853026, 0.037423134, 0.006027157, 0.053205248, 0.0016296746, -0.03573408, -0.018790742, -0.010734739, -0.0027810035, 0.017444776, 0.0120477155, 0.015650155, 0.017801061, -0.01513552, -0.032303184, -0.0041434644, -0.04354596, -0.007917447, -0.021997308, 0.0012659668, -0.008432082, 0.01637592, 0.02900425, 0.009401969, 0.016705815, -0.010833708, 0.010536803, -0.018949091, -0.040906813, -0.005077063, 0.008049405, 0.011988335, 0.0043348023, -0.018962286, -0.0059479824, 0.012113694, 0.015676545, 0.0140666645, -0.012819667, 0.016059222, -0.029637644, 0.01786704, 1.7206016E-4, 0.029479295, -0.008227548, -1.6597773E-4, 0.005443245, 0.011731018, -0.031010002, 0.022472356, -0.02018949, -0.04267504, 0.009982581, -0.014660474, -0.019001873, -0.01628355, 0.005001188, -0.006178908, 5.773139E-4, -0.01200153, 0.0070861154, 0.009283207, 0.0018902905, -0.00973846, 0.017009316, -0.03098361, 0.01761632, 0.003572748, 8.259712E-4, -0.015927264, -0.024306564, -0.008432082, 0.027288802, 0.04285978, 0.013961099, -0.035100684, 0.02354121, 0.015953656, 0.012245652, 0.0016247262, 0.012991211, -0.009375577, 0.029241772, -0.004460162, 0.020836083, 0.0047042836, -0.03713283, 0.06951519, -0.028212504, 0.013842337, -0.032831017, -0.020585364, 0.023343274, 0.03169618, -0.014383363, -0.011717822, -0.027473543, -0.0018424559, 0.016177984, -0.0037640864, 0.03853158, 0.0011777203, 0.034995116, 0.022630705, 0.028687552, 0.008478266, 0.028898682, -0.017787864, 0.017391993, -0.022445964, 0.011064633, -0.015003563, -0.0054333485, 0.0013888523, -0.003120794, -0.027526325, -0.005027579, 0.031247526, 0.02701169, -0.011163601, -0.0064098337, 0.005505925, -0.015544589, 0.028740333, -0.012436991, 0.019951968, -0.005713758, 0.019556096, -0.0030135785, -0.010213507, -0.036736958, -0.021957722, -1.0566906E-4, 0.01963527, 0.026655406, 0.02645747, 0.0023752342, 0.023818322, 0.016890554, -0.012925233, 0.013459661, -0.0049616005, 0.0014655525, 0.019186614, -0.0064890077, -0.0053244834, -0.6371962, 0.006894777, -0.020492993, -0.01460769, -0.01265472, 0.0025863661, 0.009718667, 9.913304E-4, -0.053521946, -0.019028265, -0.026127577, 0.0015496754, 0.017669104, -0.027288802, -0.02992795, -0.010596184, -0.0015678195, -0.022696683, -0.0095141325, 0.0027249216, -0.026444275, 0.00778549, -0.012628329, -0.024992742, 0.012496371, 0.005957879, -0.00570716, -0.016323138, -0.008023013, -0.018566415, -0.016771793, 0.0028882187, 0.020598559, 0.01575572, 0.032857407, -0.005651078, -0.0079108495, 0.048375603, 0.017286427, 0.035866037, -0.026061598, 0.0028667757, 0.0054234513, 0.003322029, -0.024174606, 0.017286427, 0.016177984, -0.017286427, 0.013538835, -0.003076258, 0.0016577155, -0.009764852, -0.024148215, 0.0037080045, -0.006594574, 0.0074489983, 0.010912881, -0.0071388986, 0.006208598, -0.005176031, -0.0067133354, 0.004598717, 0.0046383045, -0.002515439, 0.009942994, 0.017589929, -0.016151592, 0.0028370854, 0.0041170726, 0.0035166661, -0.0017979203, -0.006208598, -0.023514818, 0.01132195, 0.022934206, 0.0062481854, 0.041804124, -0.00223338, -0.013426671, 0.020453406, 0.004159959, 0.001786374, -0.016877359, 0.0016131799, 0.01786704, -0.016890554, -0.01857961, 0.0041236705, 0.013334301, -1.1505041E-4, 0.0039620227, 0.0077590984, 0.0066605527, 0.01646829, 8.8329025E-4, 0.0084254835, -0.0066209654, 0.013829142, 0.008557441, -0.04103877, -0.01591407, -0.016547466, 0.033279672, -0.008240744, 0.03185453, 0.02112639, -0.0036255312, -0.016428703, 0.020123512, -0.02416141, -0.011975139, -0.003988414, -0.020176295, -0.001088649, -0.0026111081, -0.029426513, 0.012311631, 0.0010597833, 0.001662664, -0.013076984, -0.0033022354, 0.013855533, -7.1669393E-4, -0.025850466, 0.0038300653, 0.022525137, -0.0034012035, -0.005126547, 4.855622E-5, 0.0060865376, -0.011823388, 0.0021360614, 0.004889024, -0.023725951, 0.0058325194, 0.03465203, 0.0109458715, -0.006746325, 0.009296403, -0.009111662, -0.022617508, -0.011895965, -0.011803594, 2.7607975E-4, 0.0021970917, -0.022934206, -0.021165976, -0.026431078, -9.624647E-4, -0.015082737, -0.015003563, -0.005651078, 0.010437835, 0.0042424323, -0.005750046, -0.009237022, -0.020295057, -0.01091948, -0.0076667285, -0.019556096, -0.013387084, 0.037449528, 0.01910744, -0.012885646, 0.011717822, -0.0010193713, -0.014924388, 0.010002376, 0.0077063153, -0.0173656, 0.018962286, -0.009890212, 0.00787786, 0.0119619435, -0.004460162, 0.026444275, -0.013974295, 0.029690428, 0.016639836, -0.019714445, 0.004150062, -0.020506188, -0.033068538, -4.5855215E-4, 0.021403499, 0.031458657, 0.021047214, -0.0020354437, -0.015795307, 0.008860943, -0.003325328, -0.016956532, -0.0017137975, 0.0019100842, -0.009223826, 0.026391491, 0.022696683, 0.0067100367, 0.0068222005, 0.019331768, 0.020888865, 0.028951466, 0.027895806, 0.008392494, -0.003737695, -0.026338708, 0.009289805, -0.014528516, -0.007561162, -0.009467947, 0.034599245, -0.018064976, -0.030297432, -0.0048395395, -0.001585139, 0.038716316, -0.019991554, 0.015373044, -0.024148215, 0.005291494, -0.013697184, 0.009190837, 0.019780423, 0.010226703, -0.033332452, -0.00477686, 0.026536645, -0.008491462, -0.008267134, -0.016415508, -0.023013381, 9.7566046E-4, 0.0035034704, -0.009718667, 0.0013946254, -0.01770869, 0.039059408, -0.009342588, 0.041170727, -0.015161912, 0.0035100684, 0.023871103, 0.010253094, 0.007105909, -0.0138951205, -0.033042148, 0.02369956, 0.009606503, -0.0062679793, 0.047926947, -0.025771292, 0.023118947, -0.01299781, 0.001250297, 0.021627827, -0.012008129, -0.01591407, 0.015029955, 0.010536803, 0.014832018, 0.006584677, -0.024676044, 0.027288802, 0.015716134, 0.013367291, 0.0100287665, -0.01352564, 0.0023339975, -0.0039719194, -0.043809876, -0.011935552, -0.019424137, 0.02900425, -0.0071850833, -0.00400161, -0.016666226, 0.009467947, -0.00800322, 0.009969386, 0.034440897, -0.02317173, -0.027922198, 6.045301E-4, 0.020149903, -0.005453142, -0.030376606, 0.009520731, -0.009606503, 0.0050605685, 0.008781768, -4.5649032E-4, 0.026510254, -0.009639492, -0.0019414241, -0.0288459, 0.006693542, 0.024926763, -0.03111557, 0.0024610066, 0.0075347708, -0.012502969, 0.016349528, -0.010411443, -0.01110422, 0.03341163, 0.008240744, 0.015834894, 0.0035958407, 0.0010416391, -0.008088992, -0.01014093, -0.0011067932, -0.04357235, 0.015610567, -0.024913568, -7.9092E-4, -0.0026061598, -0.014963975, 0.0064824102, -0.0065219975, -0.020057533, -0.014383363, -0.019951968, -0.017326014, 0.07236547, 0.050724447, 0.003945528, 0.010959066, -0.018619196, -0.0015958605, -0.008036209, -0.009857222, -0.002705128, -0.008240744, 0.009751656, -0.0051166504, 0.0045492332, 0.01821013, 0.0065648835, -0.0011373083, -4.5236666E-4, -0.016573858, -0.0027183236, -0.029875169, -0.036525823, -0.0035133674, 0.036895305, 0.031748965, 0.02664221, 0.0012667916, -0.00462181, 0.004107176, -0.010068354, 0.017378798, 0.0064197304, -0.0014754493, 0.024266977, 0.003061413, -0.0018441054, -0.022287615, 0.02177298, 0.013109974, 0.022789054, 0.02705128, -0.009804439, -1.7752402E-4, 0.0041764537, 0.0071191047, -0.0048428387, -0.039349712, -0.0032593491, 0.01777467, 0.03486316, -0.030878045, 0.0149111925, -0.0015084387, -0.01823652, 0.005865509, 0.009105065, 0.0066605527, 0.014805627, -0.021271542, -0.02701169, 0.015729329, 0.01172442, -0.025388615, 0.0070267348, -0.0071388986, -0.007950436, -0.016745402, 0.0071323006, -0.019424137, -0.012846058, -0.0052255155, 0.009533926, -0.03713283, -0.010147529, 0.0026869837, 0.017510755, -0.006291072, 0.019252593, -0.009408567, 0.012542556, 0.010635771, -0.037898183, -0.011044839, 0.006587976, -0.022459159, -0.0048593334, 0.01101185, 0.0042325356, 0.010338867, -0.0057929326, 0.02937373, 0.009698873, -0.0085838325, -0.011077829, -0.008049405, 0.025771292, 0.015373044, -0.0024181204, 0.031458657, -0.008874139, 0.0012016376, -0.009157848, -0.027816633, -0.019410942, -0.013657597, -0.0061558154, -0.018975481, 0.015359848, 0.006736428, -0.011434114, -0.035364598, -0.01857961, -0.031564225, 0.002663891, -0.008372701, 0.006221794, 7.9174474E-4, 0.020136708, 0.016639836, -0.011994933, -0.0038531576, -0.011678235, -0.019094244, 0.01842126, 0.030007126, 0.009975984, 0.013670793, 0.0062118974, -0.023897495, -0.0032774934, 0.032118443, 0.017391993, 0.015346652, -0.004984693, -0.014779235, -0.006756222, -0.036525823, 0.01287245, -0.0133936815, -0.008570637, 0.0055257184, -0.010589586, -0.0032247105, -0.0031438863, 0.003635428, -0.009936397, -0.03151144, 0.011163601, 0.0063075665, 0.019424137, 0.03467842, 0.023039771, 0.018460847, -0.022591116, -0.0037739833, -0.0127206985, -0.025296245, -0.0220237, -0.0068617878, 0.026035206, 0.01349265, 0.0412499, -0.0029360533, 0.02441213, -0.0013822544, 0.012166478, 0.020492993, -0.027658284, -1.9453415E-4, -0.031880923, 0.01807817, 0.016956532, 0.028951466, -0.0057896334, -0.021707002, 0.015227891, 0.019661661, 0.014370167, 0.029505687, 0.011698029, -0.006376844, -0.016916946, 0.01681138, -0.02441213, 0.0029245073, -0.033860285, -0.015900873, 0.011176797, 0.007422607, -0.0029080124, -0.005908395, 0.018658785, 8.8164076E-4, 0.017114881, -0.02282864, 0.0045063472, -0.01938455, -0.004159959, -0.021812567, -0.02329049, 0.016164789, -0.01557098, 0.022511942, -0.013030799, -0.0036783142, -0.0100287665, 0.029532079, 0.0032593491, -0.026048401, 0.0069607557, -0.0026853343, -5.467987E-4, -0.04066929, -0.010503814, -0.046132326, -0.00480655, -0.0036156343, -0.014343776, 0.0076403366, -0.023950279, -0.030139083, 0.028054155, 0.018843524, 0.029584862, 0.018883113, 0.037713442, 0.025573356, 0.022683486, -0.012522763, 0.011671637, -0.0079108495, -0.014475733, 0.050328575, 0.006693542, -0.036024384, -0.007277454, -0.007587554, -0.002360389, -0.019331768, -0.03483677, 0.03396585, 0.02053258, 0.021297934, -0.01681138, 0.0028139928, -0.017603125, 0.01460769, -0.0015983348, 0.023066163, 0.01811776, -0.026629014, -0.03697448, -0.0082539385, 2.2680187E-4, 0.016916946, 0.01591407, -0.022129266, 0.017194057, -0.016521074, 0.0027216226, -0.017840648, -0.008702594, 0.024821198, -0.021020822, 0.027843023, 0.008366102, 0.009923201, -0.011460505, -0.017972605, 0.013947903, 0.031458657, -0.02645747, 0.01026629, 0.021456283, -0.016639836, -0.009039085, 0.015505001, -0.011189993, -0.031062786, -0.027711065, -0.013921511, 0.031986486, 0.012496371, -0.008597028, -0.0041863504, -0.020479796, -0.019199809, -0.006644058, -0.008577235, -7.781366E-4, -0.029426513, -0.017114881, -6.355607E-5, 0.012305032, 0.013076984, -0.004008208, -6.0535484E-4, -0.0036453248, 0.012232456, -0.004882426, -9.5339265E-4, -0.011130611, -0.0071850833, -0.029584862, -0.0038234673, -0.026391491, -0.017550342, -0.0071191047, -0.030719696, 0.0030812067, 0.0030152278, -0.0313267, -0.015966853, -0.008293526, -0.006647357, 5.369019E-4, 0.019463725, -0.004479956, -0.007950436, -0.0014952429, 0.014145839, -3.5587276E-4, 0.00455913, 0.0058853026, 0.011658441, 0.019001873, -0.005509224, 0.009368979, 0.005238711, -0.017141273, -0.013974295, 0.008814758, 0.03465203, -0.0058391173, 0.006954158, -0.03697448, 0.009131456, 0.0048857247, 0.030244648, -0.016666226, -0.012846058, -0.011130611, 0.007719511, 0.0403262, 0.013248528, -0.021654218, -0.0140534695, 4.8783023E-4, -0.00973846, -0.0073896176, -8.2927017E-4, 5.933962E-4, -0.0034737801, 0.012674513, -0.0048461375, -0.0071850833, 0.0034341929, -0.05679449, -0.01883033, -0.026431078, 0.033358846, 0.043836266, -0.0073962156, 0.0016263757, 0.020796495, 0.011209786, 0.028370854, -0.026536645, 0.008009817, 0.013670793, 0.00933599, 0.00902589, 0.021113193, -0.019595683, -0.0055224197, -0.0011249373, 0.032831017, 0.014264601, 0.0322504, -0.01646829, 2.5360574E-4, -0.008102188, 0.008511256, 0.0053772666, -0.009560318, 0.020743713, -0.025177483, -0.021535456, 0.011176797, 0.01088649, 0.0011430815, -0.016177984, 0.033913065, -0.013881925, -0.004397482, -0.004097279, -0.02992795, -0.0090984665, -0.036578607, 0.03172257, 0.026906125, -0.005152939, 0.021627827, 0.023488427, 0.0031273917, -0.010978861, 0.024953155, -0.0045492332, 0.0012824616, -0.0010284435, -0.0257449, 0.0300863, -0.03240875, 0.005908395, -0.026932517, 0.005657676, -0.015610567, -0.0074028135, -0.0033368743, 0.015729329, 0.012549154, -0.053838644, -0.0058886013, -0.008887335, 0.00921063, -0.0046020164, -0.019305376, -0.022353593, -0.012773482, -0.020994432, 4.1159386E-5, -0.015874483, -0.017194057, 0.011394527, -0.002927806, -0.004097279, 0.0013970996, 0.18685175, 0.00316368, 0.0044700587, 0.04565728, 0.0046350057, 0.0066176667, 0.023514818, 0.009619699, -0.021575045, 0.0010935974, -0.0065153996, 0.0057962313, -0.013604814, 0.0034737801, 0.01252936, -0.015993243, -0.024425326, -0.006795809, -0.008649811, -0.0076337387, 8.659708E-4, 0.0030696604, -0.018909503, -0.015716134, 0.011335146, -0.00676282, -0.016230768, 0.0077525005, 0.016481487, 0.020915257, -0.014528516, -0.0038036737, -0.0028040959, 0.030350216, -0.0049154153, -0.0055785016, -0.0020271963, 0.016692618, 0.010688554, 0.025203874, -0.009487741, 0.0015076139, -0.012925233, -0.013921511, -0.0014589546, 0.013947903, -4.2968648E-4, 0.0065681823, -0.01777467, 0.0038069726, -0.045525324, -0.017576734, 0.01715447, -0.001007825, -0.017260035, -0.008108785, 0.018526826, 0.017075295, -0.013387084, 0.001007825, -0.00406429, 0.032646276, -0.01200153, 0.022604313, -0.018157346, 0.0024016257, -0.016732205, -0.010589586, 0.02149587, -0.026826952, -0.011876171, -0.0210868, 0.0018721464, -0.0076601305, -0.006112929, -0.007970231, 0.0026935816, 0.0036948088, 0.014897997, -2.315441E-4, -0.016481487, -0.0071850833, 0.009883613, -0.0027216226, -0.032276794, -0.020492993, -1.7280758E-5, -0.009204033, -0.035997994, -0.015834894, -0.0040214034, -0.009751656, -0.016046027, 0.02866116, -0.020097122, -2.7381172E-4, 0.015188303, 0.008234145, -0.01621757, 0.0019051358, -0.026008815, 0.03114196, 0.022934206, 0.013030799, -0.013004407, -0.018619196, 0.0045492332, 0.028106939, 0.021865351, -0.0057764375, 0.007851468, -0.028027764, -0.006472513, -0.0052123195, 0.0057962313, 0.027156845, -0.024095431, -0.0039785174, 0.03985115, -0.018447652, 0.0028634768, -0.02149587, 0.005044074, -0.0066077695, 0.013446465, -0.016679423, -0.012272043, 0.017352406, 0.016613444, -0.026285926, 0.017880235, -0.028687552, 0.007561162, 0.01352564, 0.0031818242, 0.011091025, 0.015346652, 0.007422607, 0.0027645088, -0.003793777, 0.00288492, -0.016323138, 0.024728827, 0.020176295, -0.020097122, -0.021020822, 0.02478161, -0.013881925, -0.01252936, -0.04140825, -0.014000686, -0.008102188, 0.015320261, -0.00946135, 0.02149587, -0.015623763, -0.016059222, -0.03803014, -0.015650155, 0.022353593, -0.041724946, 0.014700061, -0.008920324, -0.0150695415, -0.032065663, -0.020295057, -0.16689979, 0.019925576, 0.01619118, -0.02992795, 0.021641023, 0.024702435, 0.03462564, 0.0047042836, -0.008069199, -0.020822886, 0.03393946, -0.013215539, -0.06323402, -0.014370167, 0.018249717, 0.006706738, 1.1597823E-4, 0.03610356, 0.015359848, -0.0062811747, 0.028397245, -0.008597028, 0.006914571, -0.0069211684, 0.020017946, 0.0020799795, 0.02034784, 0.009375577, -4.292741E-4, -9.1792905E-4, -0.020004751, -0.0133079095, 0.020400623, 0.009725264, 0.0016247262, 0.0042292364, -0.008023013, -0.012819667, 0.0028585284, -0.00539706, 0.025098309, 0.014488929, 0.017471168, 0.0220237, 0.017880235, 0.0263651, 0.029875169, 0.0017665805, 0.0025847168, -0.018751154, 0.014225014, -0.02220844, 0.017537147, -0.018988678, 0.008854345, 0.013406877, -0.0123776095, -0.0050506718, 0.014963975, -0.016151592, -0.03254071, -0.0075017815, 0.011025045, 9.509184E-4, -0.012582144, -0.010912881, 0.001792972, 0.009263413, -0.04069568, 0.015082737, -0.022366788, 0.021891743, 0.008834552, 0.0075941514, 4.7009843E-4, -0.014963975, -0.026760973, 4.6391293E-4, 0.0073830197, 0.033068538, -0.005759943, 0.022973793, -0.02205009, 0.0064032357, 0.011757409, -9.4679475E-4, 0.0048857247, -0.008333113, -0.0012527711, -0.006126125, 0.0074885855, -0.0074555962, -0.025810879, -0.010596184, 0.005291494, 0.019252593, 0.020427015, 0.007270856, -7.109208E-4, -0.0077986857, -0.0078382725, -0.0066968407, -0.019556096, 0.004578924, 0.026272729, 0.017048903, 0.0027991475, 0.0072246706, 0.013829142, -0.0096856775, -0.021654218, -0.0150695415, 0.026523449, 0.007112507, -0.006782613, 0.014198623, -0.002677087, -0.006630862, -0.0037047055, 0.008088992, 0.035311814, -0.0014325632, -0.014700061, -0.0020865772, -0.002592964, -0.03161701, -0.09432319, -0.0026226544, 0.008399093, 0.02937373, -0.0023669868, 0.017405188, -0.0072246706, 0.007330237, -0.010385052, 0.025322637, -0.0044568633, -0.01770869, 0.01398749, 0.003312132, 0.009454751, -0.014937584, -0.01547861, -0.010536803, -0.028106939, 0.020611756, -0.0066539547, 0.0015810153, 0.015425826, -0.012397403, -0.013538835, 0.008610224, -0.022261223, 0.023026576, 0.0021261645, 0.02282864, 0.011328547, -0.015425826, 0.025335832, -0.03153783, -0.019885989, -0.02397667, 0.0016527672, -0.024187801, 0.00415666, -0.050038267, 5.8916943E-5, 0.007950436, 0.008174764, -0.010873294, 2.7463646E-4, -0.022274418, -0.013697184, 0.0384524, 0.001656066, -0.0384524, -0.012852657, -0.016389117, -0.017101686, -0.01206751, 0.011843182, -0.0024511097, 0.013868729, 0.0023570901, -0.00393893, -0.025454594, -0.010041962, -0.024873981, -0.012060911, 0.0096856775, 0.017537147, 0.013631205, 0.010107941, -0.018104563, 0.025956031, -0.038610753, -0.020268666, 0.018170541, -0.026734581, -0.008986303, -0.030455781, -0.0032560502, -0.021944525, 0.0014861708, 0.014924388, -0.0090126945, -0.004446966, -0.019041462, 0.0041269693, -0.010602782, 0.02493996, 0.016032832, 0.01181679, 0.014766039, -0.001321224, -0.043809876, -0.025137896, 0.025810879, 0.028740333, -0.0025286349, 0.00725766, 0.015491805, 0.014290992, -0.01340028, -0.0069343643, 0.0129648205, -0.0039917133, -0.018553218, -0.05684727, 0.022696683, -0.023646776, -0.005825922, -0.0130505925, -0.0070993113, 0.016600247, 0.0018754454, 0.0022036894, 0.01718086, 0.009659286, 0.014594494, -0.0031339896, -0.009197434, -0.02112639, 0.013459661, 0.0048527354, -8.338062E-4, -9.39166E-5, 0.01380275, -0.021099998, 0.004189649, 0.019094244, 0.007983427, 0.010761131, 0.02416141, -0.0013715328, 0.017642712, -0.003064712, -0.02521707, 0.03539099, -0.022947403, 0.010451031, 0.008907128, 0.020717321, -0.019806813, -0.01538624, 0.0021723497, 0.022815444, -5.142217E-4, -0.011915758, -0.029400121, 0.0046383045, -0.010866697, -0.0074489983, 0.010365258, -0.019701248, 0.009659286, 0.007686522, 0.02664221, 0.054947086, 0.008761975, -0.014238209, -0.029532079, 0.029188989, -0.01811776, 0.053020507, 0.0045855218, 0.006789211, 0.0033236784, 0.02590325, 0.010213507, 2.3092555E-4, -0.035364598, -0.010418042, 0.018500436, 0.019358158, -0.007105909, -0.0076535325, -0.029822385, -0.0046449024, -0.028186113, 0.0057665408, 0.046765722, 0.01274709, 3.253576E-4, 0.009329393, -0.008346309, -0.010332269, 0.019437334, 0.018064976, 1.8340025E-4, -0.012621731, 0.020031141, 0.011803594, 0.037924573, 0.0044205748, 0.014304188, -9.0555806E-4, 0.01584809, -0.017655907, 0.012100499, 5.1257224E-4, 0.004737273, 0.026813755, 0.007528173, -0.005284896, -0.007178486, -0.0076403366, 0.023330078, -0.01398749, 0.009705471, -0.019252593, -0.009434958, -0.013961099, 0.005034177, -0.01575572, -0.014700061, 0.005390462, 0.025415007, 0.01761632, -0.005710459, 0.0015397785, 0.0046877884, -0.04336122, 0.030244648, -0.027236018, -0.005562007, -0.010338867, 0.04600037, 0.01805178, -0.009144652, 0.02629912, -0.011203188, 0.055686045, -0.004509646, 0.024174606, -0.017642712, 0.013644401, -8.164868E-4, 0.004351297, -0.007739305, -0.019041462, -0.0013641102, -0.012681112, -0.0012338022, -0.0102728885, 0.03309493, -0.005763242, 0.085244514, 0.03061413, -0.016270354, 0.008161569, -0.0033203794, -0.007211475, -0.0037640864, 0.019318571, -0.009632895, -0.010477422, 0.011229579, -0.0031801746, -0.0029855375, -0.033781108, -0.023593994, 0.019278985, 0.014238209, 0.025824074, 0.001994207, -0.01485841, -4.28604E-5, -0.009652688, 0.006429627, 0.01066876, -0.017260035, -0.0049978886, 0.03755509, 0.011764008, -0.009091869, -0.062917314, -0.011928954, -0.011506691, -0.008141775, 0.017471168, 0.031907313, 0.013815946, 0.0017467869, 0.002335647, 0.017497558, 0.010655564, -0.029320948, 0.020149903, -0.009065477, -0.015887678, 0.0013476155, -0.0031867726, 0.006139321, -0.017088491, -0.026523449 ], + "id" : "110e17ff-1800-47d6-8d01-a19e8e930fea", + "metadata" : { + "source" : "movies.csv" + } + }, + "d6d44a46-7e0c-4b50-8d69-1189ba7e8cc6" : { + "text" : "Woods-Robert Neary-Joshua Mikel-Joel Virgel-Arturo del Puerto-Matthew Munroe-Jacob Browne-Ryan Cartwright-Travis Hammer-Lance Lim-Zeb Sanders-Donovan Tyee Smith-Stafford Douglas-Jade Scott Lewis-Beth Bailey-Mona Malec-Omar Diop-Ron Yuan-Grace Huang-Stephen Oyoung-J.P. Murrieta-Casey Messer-Ben Wang-Nicholas Ballas-Jonathan Richards-Ivan G'Vera-Sam Quinn-Richard Beal-Alice Rietveld-Alma Sisneros-Kenny Leu-Monique Candelaria-Leilei Chen-Ava Del Cielo-Diana Gaitirira-Evan Bryn Graves-Jason E. Hill-Catharine E. Jones-Tyler Kurtz-Aaron Tyler-Michael Davis-Johnny Otto-John Christian Love,alien-alien invasion,/9S50foUIYGwiNPWOxi1WJF6IPwI.jpg,/jgiLc2X6OafvcadrNUaMeElgJrQ.jpg,602-188927-43074-68735-246655-258489-277662-852893-324668-209112-308531-297761-291805-302699-267860-205584-262504-278927-271110-127380-290595\r\n334298,Monster Hunt,Comedy-Fantasy-Adventure,zh,Young monster kids try to make peace between the world of humans and the world of the monsters.,21.234,Edko Films,7/16/15,0,387053506,118,Released,,6.4,289,Bai Baihe-Jing Boran-Jiang Wu-Elaine Jin-Wallace Chung-Eric Tsang-Sandra Ng Kwun-Yu-Tang Wei-Yao Chen-Yan Ni-Bao Jianfeng-Wang Yuexin-Guo Xiaodong-Li Jingjing-Zhang Yuexuan-Cindy Tian-Ludi Lin-Wei Wang-Zhang Guoqing-Zhang Bohan-Zheng Mingyang-Wang Cheng,monster-favorito,/csMASFudtPSyVEFl4qq2Sm5lflM.jpg,/ptgoTztfxbz0qFo129FwyisORRs.jpg,497984-351694-373200-348595-535167-345235-362682-10775-135397-351286-177572-168259-87827-207703-99861-76341-118340-333339-129-12-671\r\n373571,Godzilla: King of the Monsters,Science Fiction-Action,en,Follows the heroic efforts of the crypto-zoological agency Monarch as its members face off against a battery of god-sized monsters including the mighty Godzilla who collides with Mothra Rodan and his ultimate nemesis the three-headed King Ghidorah. When these ancient super-species thought to be mere myths rise again they all vie for supremacy leaving humanity's very existence hanging in the balance.,60.08,Legendary Pictures-Huahua Media-TOHO,5/29/19,170000000,386600138,132,Released,Long live the king.,6.667,5202,Kyle Chandler-Vera Farmiga-Millie Bobby Brown-Ken Watanabe-Zhang Ziyi-Bradley Whitford-Sally Hawkins-Charles Dance-Thomas Middleditch-Aisha Hinds-O'Shea Jackson Jr.-David Strathairn-Anthony Ramos-Elizabeth Faith Ludlow-Jonathan Howard-CCH Pounder-Joe Morton-Randy Havens-Lyle Brocato-Jimmy Gonzales-T.C.", + "embedding" : [ 0.015059045, -0.019521996, -0.0202065, -0.03400606, -0.025080154, 0.031870414, 0.007919688, -0.013320409, -0.014812623, -0.041453443, 0.0076185074, 0.018933326, 0.02429982, -0.012368951, -0.0038366339, 0.012697512, 0.019549377, -0.020001149, 0.008652105, -0.022766536, 0.006266616, 0.0035080728, -0.02740746, 0.0068552876, 0.0030580128, 0.0049557947, 0.034553662, -0.0033472148, -0.019001776, -0.0076664225, 0.014237641, -0.012232051, 0.0017968178, -0.0014982037, -0.019330336, -0.002724318, 0.020713031, -0.023259379, 0.024614692, -0.0028304157, 0.014251332, 0.008583656, -0.0046717264, -0.009411902, -0.00511323, -0.0043363203, 0.0123552615, -0.014703103, -0.01700303, 0.03770237, 0.020945761, 0.028666943, -0.012170446, -0.013354634, -0.012136221, 0.0016599174, 0.005623184, -0.003275342, 0.0025206786, -0.0048702317, 4.9241364E-4, -0.015948897, -0.022232626, -0.015798306, -0.009446127, -0.01683875, -0.013026074, -0.007146201, -0.010979412, -0.0055581564, 0.018905945, 0.0087547805, 0.012519542, -3.732675E-4, 0.017824432, -0.029652627, -0.027900303, -0.011123158, -0.0036655082, -0.0013989509, -0.0012252586, 0.0044389954, -0.021370152, -0.010637161, 0.0107877515, 0.0013484689, -0.009617253, 0.014990594, -0.039536837, 0.005527354, 0.021424914, 0.035375062, -0.004924992, -0.008255094, -5.001143E-4, 0.02345104, -0.03082997, 0.022342145, -0.032363255, -0.0342251, -0.008036054, 0.0037271134, -0.01045919, -0.017933952, 0.0019439857, -8.214024E-5, -0.00298614, -0.007111976, 0.022136794, 0.008768471, -0.007221496, -0.007796478, 0.014265022, -0.039263036, -0.007187271, -0.013642125, 0.033239417, -0.015839376, 5.6385854E-4, -0.024491481, 0.043315288, 0.024423031, 0.011458564, -0.036114328, 0.034800082, 0.04172724, -0.0070093004, -0.016386978, -0.0050824275, -0.0015281508, 0.025025394, -0.0017121106, 0.03403344, 0.019166056, -0.01217729, 0.033239417, -0.022684397, 3.392563E-4, -0.016031036, -0.007940223, 0.042220082, 0.031295434, -0.024149232, -0.0206172, -0.02716104, 0.004476643, 0.016633399, 0.014908453, 0.008446755, 0.0069340053, 0.01197194, 0.01362159, 0.014990594, 0.015551886, 0.016250078, -9.814048E-4, -0.004041984, -0.0022109414, -0.0066465144, -0.019344026, -0.015195944, -0.011937715, 0.0052775103, -0.0097130835, -0.0043637003, 0.021096352, 0.022123106, -0.018769044, -0.011828194, 0.004120702, -0.01682506, 0.023464728, -0.03723691, 0.015688786, -0.009637788, 0.015127494, 0.007515832, -0.007734873, -0.026325947, -0.009103877, 0.01659233, -0.001157664, 0.021356463, 0.022698086, 0.016318528, 0.015141184, 0.024628382, -0.032445394, 0.014922144, -0.01186242, 0.004623811, 0.023355208, 0.0021424913, -0.003737381, -0.6334655, -0.009329762, 0.0067046974, -0.0042028422, 0.02384805, 0.022561187, 0.011458564, -0.007584282, -0.025559304, -0.015825687, -0.026079526, 0.017988713, 0.024368271, -0.038742814, -0.025408715, -0.011643379, 0.0043739676, -0.024778973, 0.0033865736, 0.0058011543, -0.023040337, 0.015620336, 0.0239165, -0.007967603, 0.0063692913, 0.0020825975, -0.016222697, -0.018741665, 0.010650851, -1.0550957E-4, -0.016537568, 0.015839376, 0.002595974, 0.0028064582, 0.037894033, -0.0049694846, -0.022410596, 0.045669973, 0.021575503, 0.02406709, -0.038989235, -0.023478419, 0.0059893928, -0.007139356, -0.028776465, 0.03772975, -0.006098913, -0.0049489494, 0.0013099657, 0.0049592173, -0.008966976, 9.035427E-4, -0.009042271, -0.02372484, -0.011485944, -0.008391995, 0.0061365603, -0.043178387, 0.01184873, -0.0057600844, -0.028311003, 0.0061091804, 0.00426787, 0.016551258, -0.0023598208, 0.016742919, -0.013354634, -0.0034584464, 0.011218988, -0.03055617, 0.00428156, 0.009849984, -0.002912556, -0.0041515045, -0.0023375743, 0.023218308, 0.042001043, 0.0049421047, -0.0032359832, 0.018276203, -0.008645261, 0.0011773434, 0.01646912, 0.016250078, 0.019166056, -0.015483435, -0.0339513, 0.009117567, 0.022862367, -0.0062084333, 0.0024847423, 0.014552513, 0.0024813197, -0.0021116887, 0.009179172, -0.0061913207, -0.012464781, 0.005749817, 0.04085108, -0.07633566, -0.013156129, -0.0072557214, 0.032883476, -0.02338259, 0.009884209, 0.019097606, -0.0036689308, -0.011759745, 0.02357425, -0.012437401, -0.016017348, 0.015195944, -0.025997385, 0.0029775838, -0.004154927, -0.027092589, 0.005037935, 0.010096405, -0.024518862, -0.0063247983, 0.001559809, 0.009576183, 0.0140117565, -0.018714285, 0.0068792454, 0.022013584, -0.008391995, -0.008138729, 0.0016761743, 0.008138729, 0.00429525, -0.0054828613, 0.032883476, -0.016003657, 0.023546869, 0.02019281, 0.013991221, -0.0040009143, 0.014374542, -0.0077143377, -0.0012680399, -0.012389487, -0.0068895128, -0.01749587, -4.8000703E-4, -0.009747309, -0.02035709, 0.002202385, -0.0140117565, -0.016250078, -0.012759117, 0.011636534, 0.008036054, 6.973364E-4, -0.0053938758, 0.0054075657, -0.022533806, -0.019426167, 0.004582741, -0.028091962, 0.009815759, 0.0047401763, -0.015976276, -0.023259379, 0.019467236, -0.005390453, -0.010424966, 0.015839376, 0.0013287895, -0.019426167, 0.008850611, -0.013450464, 0.0013099657, 0.017276831, -0.018974395, 0.031103771, -0.006211856, 0.019439857, -0.0052467077, -2.859935E-4, 0.0063453335, -0.0037408036, -0.016386978, -0.006348756, 0.02746222, 0.0239165, 0.01659233, -0.0077280276, -7.8803295E-4, 0.010397585, -0.0137790255, -0.006174208, -0.015497126, -0.01018539, 0.013245114, 0.007960758, 0.006098913, 0.016167937, 0.013210889, -0.0043328977, 0.043205768, 0.015017974, -0.0039872243, -3.8118206E-4, 0.014347162, -0.031897794, -0.0025172562, -0.041891523, 0.009254467, 0.007125666, 0.019850558, -0.011533859, -0.0031641105, 0.009500888, 0.013354634, 0.024655763, -4.7032776E-5, -0.0057566618, -0.017468492, 0.003891394, 0.0033711724, -0.013156129, 0.02054875, 0.0030169426, -0.018604765, 0.015305465, 0.015784616, -0.007433692, 0.002758543, 0.0036894658, -0.007515832, -0.0023512645, -0.0026079526, 0.009802069, -0.008665795, -0.013929616, 0.025928937, -0.008172954, 0.022711776, -0.011800814, -0.003990647, 0.038633294, 0.012779652, 7.846104E-4, 0.021178491, -0.00170441, 8.7274006E-4, 0.010568711, -0.009672013, 0.03756547, -0.010041645, 0.019576758, -0.019699968, -0.014237641, 0.012143065, -0.016291147, 0.012841257, 0.01983687, 0.024833733, 0.029214546, 0.01742742, -0.035758384, 0.015921516, -0.0016231254, 0.018933326, -0.016332218, -0.026736649, -0.002409447, 0.008077124, -0.046299715, -0.021767164, -0.003716846, -4.5604946E-4, 0.0033164122, -2.5326575E-4, -0.005051625, 0.0017489026, 0.002838972, 0.008720555, 0.028557424, -0.004692261, -0.021972515, 0.011691295, 0.02019281, -0.010513951, -0.026339637, -0.011451718, -0.015100114, -0.032992996, -0.014566203, 0.0055821138, 0.020220188, -0.0048496965, 0.011157382, -0.019891629, 0.002414581, 0.015757237, -0.010486571, 0.013176664, 0.018974395, 0.0010036511, 0.030337129, -0.007830703, -0.0151138045, 0.03488222, -0.009405058, -0.001566654, 1.4417323E-4, -9.55629E-5, 0.0056129163, 0.018577384, -0.0070298356, -0.041289162, 0.014415612, -0.00679026, -0.013601055, -0.016345909, -0.008460444, 0.007413157, -0.0053733406, -0.017345281, -0.031131152, -0.02423137, -0.004815472, 0.08279736, 0.039591596, 0.01730421, 0.018344654, -0.01713993, 0.022602256, -0.025887866, 0.008501515, -0.0046614585, -0.011698139, 0.025107533, -0.015538195, 0.012779652, 0.0058696046, 0.029077645, -0.0095967185, -0.010691921, -0.0058285347, 0.0040111816, -0.011095777, -0.025504544, -0.019261887, 0.029680006, 0.035292923, 0.0013484689, -0.025600376, 0.016496498, 0.007570592, 0.003489249, 0.009275002, -0.0013459021, 4.389369E-4, 0.013012383, 0.0116296895, -0.0070298356, 0.009158636, 0.026627129, 0.012362107, 0.03036451, -0.0055341986, -0.0049147243, 0.025942625, 0.0061434056, -0.0153465355, 0.021301702, -0.025518235, -0.007563747, 0.02703783, 0.0335406, -0.02345104, 0.02093207, -1.3518914E-4, -0.019357717, -0.014306092, 0.021383842, -0.0113969585, -0.005349383, 0.0025121223, -0.026038457, 0.012889173, -0.0048599644, -0.032171596, 0.0054965513, -0.014114431, -0.014114431, -0.02728425, -0.013443619, -0.016537568, -0.018782735, 7.743429E-4, -5.5530225E-4, -0.015729856, -0.0048736543, -0.011266903, 0.0065575293, 0.008214024, 0.024792662, 2.101635E-4, 0.02057613, 0.0167703, -0.042302225, -0.025764655, 0.018111924, -0.023040337, 0.0010969145, 0.011636534, 0.0058730273, 0.024765283, 0.016373288, 0.007146201, -0.014100742, 0.011218988, -0.013909081, -0.008966976, 0.039454695, -0.006957963, 0.017742293, 0.016373288, 0.0013613034, -0.01337517, -0.00340882, -0.027640192, -0.007584282, -0.0123278815, -0.023492109, -0.016373288, -0.0013835497, -8.0343423E-4, -0.013340944, -0.018098233, -0.024381962, -0.022698086, 2.15939E-4, 0.003133308, 0.008583656, -0.0047127963, 0.027078899, 0.003946154, -0.009192862, 0.016455429, 0.009617253, -0.0034789816, 0.021698713, 0.02357425, -0.0053048907, 0.03770237, -0.0023324406, -0.024464102, -0.0062700384, 0.014826314, -0.012574302, 0.017400041, -0.008227714, 0.0029810062, -0.015360225, -0.023273068, -2.8743736E-5, 0.00593121, -0.013073988, 0.014812623, -0.035073884, 0.0033249685, -0.002462496, 0.004702529, -0.0033831513, -0.035156023, 0.0023187506, -0.007967603, 0.019549377, 0.028557424, -0.024395652, 0.0076458873, -0.00681764, -0.005602649, -0.008344079, -0.02711997, -0.022164175, 0.009932124, 0.036305986, 0.006376136, 0.04446525, 0.0049557947, 0.020124359, 0.0052467077, 0.01182135, 0.019042846, -0.023533178, -0.0061160256, -0.04087846, -0.012540077, 0.014073362, 0.021397533, 0.010520796, -0.005441791, -0.012943933, 0.009158636, 0.00842622, 0.032719195, -0.008166109, -0.02387543, -0.016920889, 0.01356683, -0.035429824, -0.0071051307, -0.021520743, -0.021068972, 0.045697354, -0.019480927, -7.871773E-4, -0.002416292, 0.021945134, -0.013149284, 0.011383268, -0.030035948, 0.019576758, -1.3262227E-4, 0.010910962, -0.018111924, -0.004880499, 0.007830703, 0.0024248483, 0.024464102, 0.0055444664, -0.015935207, -0.0064582764, 0.01687982, -0.014949524, -0.025381334, 0.018440485, -0.024450412, 0.0010070736, -0.025066463, 0.01190349, -0.027078899, -0.0151138045, -0.0011995898, -0.00294507, -0.010411276, -0.016250078, -0.03816783, 0.035375062, 0.0053185807, 0.038715433, 0.010069025, 0.04074156, 0.025312884, 0.008816386, -0.016140558, 0.018426795, -1.3936033E-4, -0.0064069387, 0.021342773, 0.015017974, -0.010808286, 0.0100895595, 0.015004284, -0.0069750757, -0.042083185, -0.03816783, 0.018413104, 0.03132281, 0.012690667, -0.01670185, 0.0105550205, -0.026654508, 0.0103086, -0.005205638, -0.0066465144, 0.004315785, -0.021424914, -0.022383215, 0.006684162, -0.0012663287, 0.012129376, 0.014662033, -0.01678399, 0.011218988, -0.016304838, -0.0030152313, -0.0048941895, -0.008248249, 0.053089976, -0.018810116, 0.009699393, 9.608697E-4, 0.010397585, 0.016414357, 0.0063590235, -0.006215278, 0.030693071, -0.022164175, 0.035457205, 0.0035046502, -0.002965605, 0.0018550004, 0.013190353, -0.010609781, -0.013320409, -0.014456683, 3.3396213E-5, 0.026462847, 0.0021613152, 0.0036963108, -0.0010173412, -0.018454174, -0.013854321, 0.0088711465, -6.228968E-4, 0.0060099275, -0.04159034, 0.021192182, 0.0028903098, 0.012779652, 0.0062221233, -0.003751071, -0.008255094, -0.012437401, 0.0067355, -0.007830703, -0.010602936, -0.026640818, -0.028831225, -0.046463996, -0.029652627, -0.0027910569, -0.025408715, 0.012197826, -0.029871667, -0.009528268, -0.0068963575, -0.016742919, -0.002979295, -6.045008E-4, -0.015839376, 0.012738583, 0.017920263, -0.006588332, -0.0040146043, -4.2075483E-4, 0.03397868, 0.0076185074, -0.018399414, -0.010110094, -0.0017018431, 0.02699676, -0.022807607, 0.016537568, -0.0010053624, -0.032226354, -0.0067594573, 0.021205872, 0.030145468, 0.02743484, -0.014566203, -0.022301076, -0.014990594, -0.00428156, 0.024751592, -0.017509561, 2.6888095E-4, 0.043014105, 0.018413104, 0.032226354, 0.025490854, -0.017687531, -0.021301702, 0.019973768, -0.016277459, -0.016564948, -0.0093366075, -0.006160518, 0.031623993, -0.0068929354, -0.011800814, -0.03731905, 0.0062221233, -0.018686906, -0.022698086, -0.006174208, 0.010979412, 0.03682621, 0.0069887657, 0.006078378, 0.009288692, -0.010424966, 0.01024015, -0.03499174, -0.017509561, 0.009719929, 0.015948897, 0.015935207, 0.018700594, -0.035128642, 0.012779652, 0.015004284, 0.018933326, 0.011663915, 0.02724318, -0.022396905, -0.013614745, -0.0029964074, 0.010835667, -0.006215278, -0.004890767, 0.025942625, -0.045204513, -0.009275002, 0.006523304, 0.018522624, -0.006649937, 0.0026336215, 0.024806352, -0.029187165, 0.0037887187, -0.006615712, -0.009774689, 0.003792141, -0.01761908, 0.039016616, 0.021739785, 0.004178885, 0.035511963, 0.022082034, -0.0047264863, 0.003959844, -0.011102622, 0.007515832, -0.00595859, -0.0011893222, 0.012396331, 0.014470372, -0.032500155, 0.021917755, -0.028639564, 8.898526E-4, 0.0037339584, 0.0061776307, 0.0032599408, 0.035731006, 0.006622557, -0.062481344, 4.104873E-4, -0.006441164, 0.0084536, -0.015510815, -0.0068347524, -0.028256243, -0.0050687375, 0.001892648, 0.0073173265, -0.018426795, -0.018194063, 3.7476484E-4, -0.015469746, -0.0268051, 7.28139E-4, 0.18936063, -0.019631518, 0.004394503, 0.049859125, 0.018194063, 0.02057613, 0.020233879, 0.019850558, -0.0077006477, -0.0024043133, 0.014319782, 0.009103877, 0.010411276, 0.0010626893, 0.017413732, -0.024573622, -0.022807607, -0.015497126, -0.010609781, -0.027996132, -0.0072557214, -0.007111976, -0.005664254, -0.02412185, -0.0023803557, -0.011328508, -0.0041480823, 0.016729228, 0.0011345621, 0.00854943, -0.004134392, -9.39479E-4, 0.008843766, 3.0652856E-4, -0.031268053, -0.006259771, -0.004288405, 0.009357142, 0.017797053, 0.0024436722, 0.01359421, -0.011814505, -0.0062221233, -0.012184136, 0.0023478419, 0.015017974, -0.015442365, -0.0049010343, -0.017728603, 0.0137790255, -0.0413713, 0.0018447329, 0.0012671844, 0.022465356, 0.013669505, -0.019699968, 1.8797067E-5, 0.0044253054, -0.007748563, 0.010575556, 0.008200334, 0.042028423, -0.029269306, 0.023108788, -0.0047607115, 0.009144947, -0.028283622, 0.006273461, 0.0031093503, -0.026640818, -0.015825687, -0.01703041, -0.0040693646, -0.006560952, -0.0036381283, -0.01205408, -0.011643379, 0.018481554, 0.008145574, 0.010938342, -0.026599748, -0.026476538, 0.018454174, -0.009993729, -0.025545616, -0.021452293, 0.011294283, -0.013559985, -0.011068397, -0.01749587, -0.010972567, -0.030994251, -0.029597867, 0.011520169, 7.2599994E-4, 0.002382067, 0.024943253, 0.007221496, -0.004469798, 6.806517E-4, -0.03365012, 0.019453548, 0.033157278, -0.005428101, -0.028995505, -0.009774689, -0.005352806, 0.0070435256, 0.019823179, -0.014840003, -0.008884836, -0.015387605, -0.005301468, -0.019001776, 0.0014177748, 0.015278085, 7.5166876E-4, -0.0033728837, 0.029351447, -0.013368324, 0.005749817, -0.019919008, 0.017783362, 0.0014365986, 0.0026952266, -0.04079632, -0.025463475, 0.009035426, -0.0026336215, -0.02720211, 0.003542298, -0.024628382, -0.0013561696, -6.712398E-4, 0.009322917, 0.019412477, 0.016003657, 0.0091312565, 0.008248249, -0.019015465, -0.010856202, -0.0058079995, 0.01713993, 0.0058456473, 0.010466035, -0.01715362, -0.013176664, 0.0049215695, -0.01371742, -0.030145468, -0.025436094, -0.002240033, -1.989334E-4, 0.021370152, 0.029378826, 0.0051337653, -0.020781482, -0.034827463, -0.019741038, 0.025778346, -0.048517503, 0.019699968, 0.022657016, -0.025709895, -0.024792662, -0.007036681, -0.17588964, 0.014785243, 0.01034967, -0.025189674, 0.01178028, 0.025353955, 0.03688097, -0.0069066253, -0.0078033227, -0.022246316, 0.021342773, 0.018002402, -0.038496394, 0.0048496965, 0.007235186, -5.779764E-4, 8.930612E-5, 0.015195944, 0.018522624, -0.007892308, 0.035785764, 0.0015041932, -0.014265022, -0.010144319, 0.019344026, 0.0031709555, 0.021862995, 0.019207126, 0.003275342, 0.0055307765, -0.040823698, -0.016811369, -0.0020227034, -0.0018669792, -0.010609781, -0.002744853, -0.019631518, -0.022301076, 0.0013878278, -0.0032530958, 0.024778973, 0.0027482756, 0.017851813, -0.0016958538, 0.018440485, 0.015770927, 0.0076321973, -0.022766536, 4.945527E-4, -0.022533806, -0.029789528, -0.025230745, 0.02711997, -0.010842511, 5.095262E-4, 0.026846169, 0.009035426, 0.003193202, 0.0038708588, -0.0070435256, -0.0338144, -0.010048489, -0.0027807895, -0.0025172562, -0.0043637003, -0.01340255, -0.014292402, 0.011431184, -0.032144215, 0.00429525, -0.025422405, 0.015894137, 0.013696885, 0.005712169, 0.0103222905, -0.01730421, -0.026065836, 0.019590447, -0.0011131713, 0.01356683, -0.013334099, 0.035539344, -0.0069887657, 0.019138677, 0.011177918, -0.01172552, 8.137018E-4, -0.0053836084, 0.012321036, -0.014662033, 4.1326808E-4, -0.014169192, -0.042110562, -0.0012954201, -0.0050174, 0.011150538, -0.0069613853, 0.010123785, 0.010370205, -0.0010926364, 0.0051577226, -0.010027954, -0.025039084, 0.016222697, 0.014196572, -0.007563747, 0.013395704, 0.045341413, 0.016482808, 0.006225546, -0.022889746, 0.015086425, 0.012451092, 0.016688159, -0.0047538662, 0.007166736, -0.027996132, -0.0336775, 0.0169072, 0.019549377, 0.04476643, -0.008768471, -5.0439243E-4, -0.010246995, -0.0040214495, -0.0073036365, -0.07836179, 0.02008329, -0.0020945761, 0.044136688, -0.047066357, 0.043534327, -0.0102059245, 0.026887238, -0.039618976, 0.03819521, 0.007447382, -0.019042846, 0.0124716265, 0.0038229437, -0.004678571, -0.0050584697, -0.01689351, 0.0034516014, -0.014963214, 0.031925175, 0.0051474553, -0.015811997, 5.112374E-4, -0.016099487, -0.016920889, 0.014976904, -0.035101265, 0.039427314, 0.010794597, 0.007905998, 0.01733159, -0.019302957, 0.021712404, -0.030391889, -0.032719195, -0.03058355, -0.012978158, -0.024258751, -0.0019302956, -0.058702894, 0.009952659, 0.021821924, 0.01664709, -0.02429982, -0.014853694, 0.0025069886, -0.027982442, 0.024395652, -0.013847476, -0.017879192, -0.010863047, -0.014223952, -0.038003553, 0.0029176897, 0.016482808, 0.011465409, 0.023273068, 0.0073173265, -0.017345281, -0.022040965, 2.4372015E-5, 8.239693E-4, -0.015894137, 0.015004284, 0.015894137, 0.011006792, -0.008891681, -0.020959452, 0.014265022, -0.029460967, -0.015907826, 0.027804472, -0.027900303, -0.0086384155, -0.029543107, 0.0057874643, -0.024532553, -0.015538195, 0.036032185, -0.04386289, -0.014689413, -0.0273527, 0.006937428, -0.023587938, 0.026065836, 0.024820043, 8.9926453E-4, -0.0013801272, -0.009637788, -0.042795066, 0.016263768, 0.023231998, -0.0050687375, -3.018226E-4, 7.093152E-4, 0.031897794, 0.010472881, 0.0036415507, -0.00440477, 7.024702E-4, -0.0075774374, -0.006910048, -0.07617138, 0.024861112, -0.019056536, -0.0069956104, -0.019795798, -0.006602022, 0.006201588, -0.0033249685, -0.010397585, 0.024381962, 0.008008674, 0.027900303, -0.0042268, -0.012423712, -0.0025223899, 0.009452973, 0.007981294, -0.014087051, 0.007153046, -0.0039872243, 2.547631E-4, 0.024381962, 0.019658897, 0.019850558, 0.0014519999, 0.028174102, -0.0019867672, 0.013060299, -0.008166109, -0.025052773, 0.025833106, -0.025490854, 0.0024727634, 0.007447382, 0.0061913207, -0.046984218, -0.012492161, 0.012896018, -0.003080259, -4.3449836E-5, 9.848273E-4, -0.025915246, -0.009904744, -0.0015889003, -0.017769672, 0.015661405, -0.017591702, 0.016400669, 0.006564374, 0.02035709, 0.025408715, 8.850397E-5, -0.007762253, -0.028612183, 0.015811997, -0.005866182, 0.044492632, 0.008275629, -0.008364614, -0.0062426585, 0.018632144, 0.0067423447, 0.017290521, -0.033047758, 0.0010849357, -9.120989E-4, 0.016496498, 0.0036141707, -0.0059448997, -0.028174102, -0.019344026, -3.1615436E-4, 2.791485E-4, 0.03156923, 0.0045382483, 0.019152366, 0.0028526622, 0.010644007, -0.0059620123, 0.017482182, 0.018823804, -0.009555648, -0.017810741, 0.02394388, -0.009767843, 0.00595859, 0.00823456, 0.026791409, -0.0016513611, 0.014853694, -0.006738922, 0.023231998, 0.020959452, 0.001120872, 0.0036483957, 0.025490854, -0.021780854, -0.021671334, 0.01183504, 0.022424286, -0.008063434, 7.7092036E-4, -0.0051166527, -0.019699968, -0.019083915, 2.675975E-4, -0.03145971, -0.012095151, 0.00674919, 0.011506478, 0.030227609, 0.016167937, -0.021534434, 0.011568084, -0.019576758, 0.015497126, -0.0014143523, -0.016291147, -0.025353955, 0.044875953, 0.010664541, 0.018098233, 0.039810635, -0.0061091804, 0.053664956, 0.018933326, 0.013258804, -0.016400669, 0.016523879, 0.002683248, 0.0012192692, 0.0046819937, -0.029241925, 0.008214024, -8.0343423E-4, 0.009993729, 0.0060236175, 0.026736649, -0.005852492, 0.07595234, 0.01689351, -0.013204044, 0.02720211, -0.017947642, 0.023368899, 0.021123732, 0.019932698, 0.0029758725, -0.009124412, -0.0116296895, -0.010753526, 0.0054657487, -0.03132281, 0.006608867, -0.0019610983, 0.014867384, 0.011095777, -0.004055674, -0.031268053, 0.0049968646, -0.0066328244, 0.03389654, 0.023040337, -0.0051234975, -0.003583368, 0.021192182, -0.011068397, 0.00852205, -0.027804472, 0.007762253, -0.02706521, -0.007050371, 0.0016787412, 0.021411223, 0.0077143377, -0.0035731005, 5.505963E-4, 0.017810741, 0.007926533, -0.010418121, -0.0057943095, -0.015948897, -0.01724945, 0.025737276, -0.0067594573, 2.2446853E-5, -0.024847424, -0.025189674 ], + "id" : "d6d44a46-7e0c-4b50-8d69-1189ba7e8cc6", + "metadata" : { + "source" : "movies.csv" + } + }, + "0ea330ed-be49-466f-8934-bc555dbfb768" : { + "text" : "Jackson-Lex Shrapnel-Michael Brandon-Martin Sherman-Natalie Dormer-Oscar Pearce-William Hope-Nicholas Pinnock-Marek Oravec-David Bradley-Leander Deeny-Sam Hoare-Simon Kunz-Kieran O'Connor-Jenna Coleman-Sophie Colquhoun-Doug Cockle-Ben Batt-Mollie Fitzgerald-Damon Driver-David McKail-Amanda Walker-Richard Freeman-Katherine Press-Sergio Covino-Marcello Walton-Anatole Taubman-Jan Pohl-Erich Redman-Rosanna Hoult-Naomi Slights-Kirsty Mather-Laura Haddock-James Payton-Ronan Raftery-Nick Hendrix-Luke Allen-Gale-Jack Gordon-Ben Uttley-Patrick Monckeberg-Amanda Righetti-Stan Lee-Fabrizio Santino-Caroline Royce,new york city-world war ii-nazi-shield-superhero-based on comic-super soldier-heroism-period drama-brooklyn new york city-aftercreditsstinger-marvel cinematic universe (mcu)-origin story-soldiers-war,/vSNxAJTlD0r02V9sPYpOjqDZXUK.jpg,/4NWWpT0jiMUak8r6jfpvG4eBgFU.jpg,10138-10195-100402-1726-68721-24428-76338-1724-99861-271110-102899-1930-118340-49538-284052-283995-49026-2080-315635-272-284053\r\n137113,Edge of Tomorrow,Action-Science Fiction,en,Major Bill Cage is an officer who has never seen a day of combat when he is unceremoniously demoted and dropped into combat. Cage is killed within minutes managing to take an alpha alien down with him. He awakens back at the beginning of the same day and is forced to fight and die again... and again - as physical contact with the alien has thrown him into a time loop.,46.847,RatPac Entertainment-Village Roadshow Pictures-VIZ Media-3 Arts Entertainment-Warner Bros. Pictures,5/27/14,178000000,370541256,114,Released,Live. Die. Repeat.,7.598,12326,Tom Cruise-Emily Blunt-Bill Paxton-Brendan Gleeson-Noah Taylor-Kick Gurry-Dragomir Mrsic-Charlotte Riley-Jonas Armstrong-Franz Drameh-Masayoshi Haneda-Tony Way-Terence Maynard-Lara Pulver-Madeleine Mantock-Assly Zandry-Sebastian Blunt-Beth Goddard-Ronan Summers-Aaron Romano-Usman Akram-Bentley Kalu-Mairead McKinley-Andrew Neil-Martin Hyder-Tommy Campbell-John Dutton-Harry Landis-Rachel Handshaw-Martin McDougall-Anna Botting-Jane Hill-Erin Burnett-Dany Cushmaro-David Kaye-Jackson-Johnny Otto,deja vu-based on novel or book-restart-dystopia-training-thriller-alien-time loop-military officer-soldier-based on manga-alien invasion-war hero-exoskeleton-soldiers-war,/xjw5trHV7Mwo61P0kCTy8paEkgO.jpg,/4V1yIoAKPMRQwGBaSses8Bp2nsi.jpg,127585-119450-100402-75612-124905-91314-240832-68724-68726-118340-49047-207703-57158-102382-49521-148107-286217-72190-76338-198663-157350", + "embedding" : [ -0.0083135385, -0.02553689, -0.01998539, -0.031856, -0.017216496, 0.04114962, -5.517229E-4, -0.021657694, -0.014063793, -0.020136172, 0.024782982, 0.026098892, 0.017435815, 0.014529846, 0.012089928, 0.005448692, 0.022658335, 0.0021349278, 0.0020578236, -0.024714444, -0.011980268, 0.006459613, -0.011082434, 0.005445265, 0.015256338, -0.004492601, 0.015064434, -0.005928451, 2.606548E-4, -0.01337157, 0.0018642065, -0.0038654872, -0.01400211, -0.03169151, -0.016654493, 0.014982189, 0.003385728, -0.037229303, 0.02341224, -0.009403277, 0.014283112, 0.019519338, -0.0029316705, -0.009937866, -0.019450802, -0.0064219176, 0.010287405, -0.014255697, -0.006226587, 0.0227817, 0.030731993, 0.03075941, -0.014365356, -0.010582114, -0.008416344, 0.0033823012, -8.053098E-5, 0.0123298075, 0.0104998695, -0.0076624374, 0.02051998, 0.0048181517, -0.030978726, 0.004550857, -0.0068057245, -0.013542912, -0.016887518, -0.018998457, -0.013323594, -0.0021092263, 0.031362534, 0.013412692, 0.012494296, 0.0023508193, 0.023439655, -0.033418644, -0.042383283, -0.009403277, -0.00864937, 0.00727863, 0.02320663, -0.007532217, -0.017079422, 0.009800792, 0.016394053, -0.0011394278, -0.01781962, 0.013666279, -0.025865866, -0.0044788932, -0.002684937, 0.025153082, 0.009807645, 6.296837E-4, 9.809359E-4, 0.017120544, -0.018929921, 0.023850879, -0.026619773, -0.053979747, 0.002032122, -0.007964, -0.006589833, -0.016956056, -0.0056851446, -0.0070593115, -0.0016603089, 0.0013347582, 0.016928641, 0.010671211, 0.005195105, -0.009896744, 0.0014007251, -0.04282192, 0.0018247978, -0.02209633, 0.017696256, -0.035776317, -0.016901225, -0.013097422, 0.0379695, 0.034899045, -0.0021589156, -0.031527024, 0.024399174, 0.037421204, -1.5988399E-4, 0.007443119, 0.0025649974, 0.0033600267, 0.033363815, 0.008896103, 0.024522541, 0.0075939004, -0.014790286, 0.050827045, -0.027291436, 0.012583395, -0.022507552, -0.015873171, 0.042438112, 0.028812958, -0.00777895, -0.015859462, -0.016832689, 0.010013256, 0.015434533, 0.004239014, 0.018052647, 0.018957336, 0.002309697, 0.007977707, 0.008080513, 0.004095086, 0.01840904, -0.0057331207, -0.0053904355, 0.0124326125, -0.010678066, -0.008978348, 0.013200227, -0.007874902, 0.0028871214, -0.019478217, 0.018367918, 0.020478858, 0.014488723, -0.016627077, 0.004095086, 0.010026964, -0.004053964, 0.026797969, -0.032459125, 0.017326156, -0.011555339, 0.006997628, 5.333036E-4, 1.5838473E-4, -0.03681808, -0.014118623, 0.008176465, 0.005791377, 0.024961177, 0.044686127, -0.026797969, 0.026455285, 0.020876372, -0.022329357, -0.0039203167, -0.006295124, 0.0041362084, 0.012288685, 0.004095086, -0.012124197, -0.6298825, -0.016750444, -0.0045645647, 0.009423838, 0.0076624374, 0.017682547, -0.012789005, -0.0019824328, -0.018559821, -0.006795444, -0.022932483, 0.018573528, 0.011185239, -0.008526004, -0.015407119, -0.01163073, -0.001231096, -0.015393412, 0.012240709, 0.0023199776, -0.024810396, 0.026386747, 0.0052807764, -0.020478858, 0.0013613163, 0.013707401, -5.153126E-4, -0.024604784, 0.011822633, 0.0025050275, -0.024454003, 0.0071072876, 0.013700548, -0.0029573718, 0.044823203, 0.013604595, -0.016709322, 0.05200588, 0.024015367, 0.023124386, -0.020382905, 0.0029933536, 0.009369008, -0.007751535, -0.020191003, 0.026016647, 0.0064013563, 0.0017579742, -0.016681908, -0.013981549, 0.009814499, -0.002554717, -0.009403277, -0.006041537, -0.0037729621, -0.015023312, 0.0148725305, -0.030375602, 0.022548676, 0.004872981, -0.02411132, 0.028127586, -2.1921133E-4, -0.007682998, -0.0058976095, 0.029388668, -0.010102355, -0.0020938055, 0.0088549815, -0.03829848, 3.461119E-4, 0.019231483, -0.005654303, 0.0034525518, 0.015941707, 0.014899945, 0.030238528, 0.0056029004, 0.0045405766, 0.016709322, -0.0033908684, -0.009327887, -0.0076487297, 0.027675243, 0.028292077, -0.009238788, -0.0227817, -0.0035193753, 0.014762871, -0.019066995, -0.0030379028, -0.0011102995, -0.012521711, 0.0018967616, -0.006610394, -0.00416705, 0.008848128, 0.0074225576, 0.02126018, -0.058612846, -0.010129769, -0.013220788, 0.035090946, -0.01961529, -0.003752401, 0.01550307, 0.0049072495, -0.021877013, 0.027620414, -0.018875092, -0.017970404, 0.0059113167, -0.014831408, -0.006312258, -0.0050957263, -0.03122546, 0.015941707, 0.020506272, -0.012597102, -0.0048215785, 0.00441721, 0.004653663, 0.0101777455, -0.028812958, 0.01909441, 0.017545473, -0.0011077294, -0.012103635, 0.004074525, 0.010904238, 0.0019670122, -0.011527925, 0.0148725305, -0.018696895, 0.019766072, 0.009163397, 8.374365E-5, -0.015804633, 0.030238528, -0.018847676, -0.0089577865, -0.004646809, -0.014255697, -0.017942987, -0.019903146, -0.008368368, -0.036927737, 0.0031869707, -0.007813219, -0.012460028, 0.004208172, 0.024810396, 0.010917945, -9.5095095E-4, -0.003937451, 0.0016457449, -0.026304502, -0.023658974, 6.082659E-4, -0.02305585, 0.013275618, 0.013488083, -0.004948372, -0.029251594, 0.029662816, 0.010273697, 0.004561138, -0.0041739037, 0.011623876, -0.022507552, 0.012508004, -0.013604595, 0.004831859, 0.003985427, -0.010184599, 0.013789645, -0.007258069, 0.02320663, 0.023535607, -0.0020938055, 0.00777895, -0.009040031, -0.017956696, -0.0046502356, 0.0067371875, 0.02136984, 0.02553689, 0.0030910189, -0.014310527, 0.00273634, -0.008553418, -0.017394692, -0.014406479, 0.0012036811, 0.0013587461, 0.011822633, 0.010616383, -0.0054178503, 0.0031903975, 0.0017442668, 0.028237246, 0.017189082, 0.015694974, -0.0162981, 0.009876182, -0.027277729, -0.004143062, -0.025728792, 0.003591339, -0.017545473, 0.022905067, -0.0029025422, -0.016078781, -0.0020047075, -0.0029162497, 0.030238528, -0.0042972704, 0.014790286, -0.018367918, 0.005404143, 2.1310725E-4, -0.015201508, 0.023234045, 0.02152062, -0.036681004, 0.011198947, 0.01144568, -0.022233404, 0.008786445, -0.009924158, -0.016366636, 0.012823273, -0.010547846, -0.0047256267, 0.002530729, 0.002393655, 0.012309247, -0.008998909, 0.045015104, -0.012144757, -0.0013210508, 0.01672303, 0.017271325, 0.011267484, 0.009478668, -0.014077501, 0.02051998, 0.0040676715, -0.014433893, 0.034844212, -0.004845566, 0.023508193, -0.010033818, -0.0018504992, 0.009362155, -0.0104998695, 9.852195E-4, 0.0014084355, 0.020876372, 0.017641425, 0.0089235185, -0.02014988, 0.014653211, -0.0027311996, -9.475241E-4, -0.005791377, -0.02790827, 0.010040672, -0.008978348, -0.015982829, -0.010198306, -0.019505631, 0.00733346, 0.0071484097, -0.011829487, -0.0066789314, 0.013152251, 0.012453174, 0.010068086, 0.019889439, -0.008807005, -0.038545214, -6.044107E-4, 0.03149961, -0.011294899, -0.024179855, -0.010424479, -7.8817556E-4, -0.028401734, -0.0029676524, -0.0041327816, 0.03997078, -0.018696895, 0.0022360198, -0.013070007, -3.3861565E-4, 0.012624516, -0.03585856, 0.010157185, 0.016435174, -0.002208605, 0.017024592, 0.008642516, -0.00727863, 0.014982189, -0.01070548, -0.016544834, -0.016092489, 0.0033514595, -0.0134264, 8.485738E-4, -0.0032675017, -0.032404296, 0.016860103, 0.007998268, -0.007360874, -0.02694875, 0.0014272832, -0.003639315, -0.013981549, -0.013289326, -0.013159106, -0.026318211, -0.0076487297, 0.09940607, 0.05680347, -0.0072032395, 0.0046399552, -0.013063153, -0.014283112, -0.0045679915, 0.0027894562, -0.004465186, -0.013515498, 0.008306685, 0.0032195258, 0.018258259, 0.007347167, 0.014351649, -0.007751535, -0.013282471, -0.010122916, -0.017778499, -0.022151161, -0.024330636, -0.0104998695, 0.008121635, 0.029991794, 7.8046514E-4, -0.0033360387, 0.01792928, -0.0060483906, -3.2026326E-6, 0.013275618, -0.004283563, 0.012789005, 0.010664358, 0.0166682, 0.0029847866, -0.003985427, 0.02189072, 0.023727512, 0.01961529, -0.0012225289, -0.0040436834, 0.0018881945, 0.0010220581, -0.022959897, 0.034295917, -0.023001019, 0.0010409058, 0.030512676, 0.033720206, -0.031143215, 0.023713805, 0.010184599, -0.02163028, -0.014433893, 0.0023919416, 0.0035330825, -0.004941518, -0.005075165, -0.014899945, 0.033062253, 0.0041293544, -0.02411132, 0.0068262857, -0.016380344, -0.018710602, -0.023165507, -0.0074979486, 0.0037147058, -0.018861383, -0.014159746, 0.0022839957, -0.014200867, -0.002321691, 0.009314179, 0.009156544, -0.0042047454, 0.029991794, -0.0030824519, 0.008238148, 0.0020441161, -0.034570064, -0.0075801928, 0.016010245, -0.027195483, 0.004091659, 0.011877463, -0.0017005744, 0.0020663908, -0.0063773682, 0.016325515, -0.011747243, -0.0021743365, -0.027277729, 0.0070147626, 0.03459748, 0.020245831, 0.012494296, 0.017751085, 0.013577181, -0.0058187917, 0.0018796274, -0.029059691, -0.013741669, -0.014776578, -0.01618844, -0.011123556, -0.0033240449, 0.0012036811, -0.01413233, -0.009828207, -0.030019209, -0.024755567, -0.003216099, -0.0038620604, -0.0014110056, 0.008752176, 0.01176095, 0.022397894, -0.024179855, 4.8661273E-4, 0.009773377, -0.008669931, 0.012425759, 0.01935485, -0.009608888, 0.040491663, -0.013536058, -0.013337301, -0.013542912, 0.029470913, -0.007977707, 0.020958615, -0.020067636, -0.006044964, -0.0046502356, -0.012172172, 9.877896E-4, 0.010842554, 0.0061443425, 0.008882396, -0.022274528, 0.0151603855, 0.0030978727, 0.020437736, -0.0048147244, -0.018491285, -0.007621315, -0.010410771, 0.004372661, 0.013947281, -0.023329997, 7.299191E-4, -0.018011525, -0.011130409, -0.010808286, -0.038161404, -0.021397253, 0.0015026738, 0.045344085, 0.023796048, 0.029964378, -0.018285673, 0.032459125, 0.013467521, -0.008032537, 0.025715085, -0.017641425, -0.010657504, -0.029196765, -0.0042904164, 0.009602034, 0.030841652, 0.003156129, -3.4161413E-4, 0.0052328003, 0.016832689, 6.9179543E-4, 0.0024758994, 0.013967842, -0.026277088, -0.025194203, 0.011973415, -0.020369198, -0.021013446, -0.027839731, -0.013303033, 0.024591077, 0.015530486, -0.005925024, -0.015256338, 0.02568767, 0.0041087936, 0.018491285, -0.025276449, 0.02374122, -0.005976427, -0.0035193753, -0.009903598, -0.019176655, -0.0028956884, -0.01287125, 0.014776578, -0.0017279893, -1.8933348E-4, -0.023028433, 0.019711243, -0.019875731, -0.014077501, 0.005691998, -0.0060106954, -0.01724391, -0.020944908, -0.0042287335, -0.023028433, -0.014529846, 0.0026369614, -2.008991E-4, -5.273066E-4, -0.016860103, -0.03317191, 0.018875092, -0.0051437025, 0.043808855, 0.024344344, 0.03492646, 0.017627718, 0.014817701, -0.018573528, 0.0014281399, -0.0052979104, 7.9717103E-4, 0.032678444, 0.02600294, -0.025605425, -0.0070867264, 0.008471174, -0.014680627, -0.030211112, -0.02568767, 0.03514578, 0.024152441, 0.018080061, -0.021177934, -0.0073677283, -0.026468992, -0.010993335, -0.0071963854, -0.016709322, 0.0017014311, -0.03361055, -0.01972495, -0.0025787049, -0.006113501, 0.012158465, 0.006860554, -0.024591077, 0.030019209, -0.026468992, 0.01581834, 0.0011694126, -0.010349088, 0.046714824, -0.03128029, 0.010239429, 0.013481229, 5.448692E-4, -4.2648222E-5, -0.009691132, 0.011411412, 0.03064975, -0.017449522, 0.034679726, -0.0020612504, -0.011342875, 0.028675884, 0.016558541, -0.015365996, -0.022356771, -0.009026323, 0.0030601772, 0.017408399, 0.0041087936, 0.0021691963, 8.147337E-4, -0.021643987, -0.014015818, 0.004777029, -0.005729694, -0.004691358, -0.05230744, 0.0058736214, 0.005931878, -0.004095086, -0.001853926, -0.0011891171, -0.0067371875, -0.0035844855, 0.009142837, -0.0055103754, 0.008491735, -0.012864396, -0.016284393, -0.05126568, -0.021602863, -7.7575323E-4, -0.017435815, 0.025920695, -0.041451182, -5.41014E-4, 0.007052458, -0.012514858, -2.5230186E-4, -0.0062231603, -0.020341784, 0.0076144612, 0.019656414, -0.0030721712, -0.007964, -0.0061409157, 0.019286314, -0.013995256, -0.0073403134, -0.014063793, 0.0018916214, 0.007415704, -0.018121185, 0.009828207, 0.0019241765, -0.02842915, 0.0011814067, 0.025550596, 0.01866948, 0.020163586, -0.009197666, -0.033829868, -0.005284203, -0.012309247, 0.03892902, 0.0039100363, 0.0058701946, 0.028346905, -3.212672E-4, 0.042163964, 0.03163668, -0.009821353, -0.029196765, -9.946433E-4, -0.011939147, -0.03572149, -0.011980268, 0.007511656, 0.0025941257, 0.008436905, -0.0045714183, -0.029443497, -0.0010357655, -0.019012166, -0.017394692, 0.004684504, 0.021342423, 0.05047065, 0.01772367, -2.6879358E-4, 0.019670121, 0.018833969, 0.007977707, -0.0127547365, -0.018875092, 0.02304214, 0.009718548, 0.038325895, 0.015749805, -0.033775035, 0.007504802, 0.0032794958, 0.022658335, 0.017737377, 0.0051334216, -0.0020972323, -0.021657694, -0.0038175113, 0.0071347025, -0.012035098, 0.0031287144, 0.026811676, -0.03317191, -0.0038860482, 0.0058324994, 0.009677425, -7.1235653E-4, 0.020698177, 0.03514578, -0.017586596, 0.004119074, -5.4015726E-4, -0.013529205, 0.007552778, -0.038737115, 0.037887257, 0.011089288, 0.0014161459, 0.027730072, 0.011637583, -0.0011788364, -7.6076074E-4, -0.010479308, 0.0045028813, -0.022905067, 0.006863981, 9.946433E-4, 0.034789383, -0.019491924, 0.013858182, -0.03237688, -0.0026626626, -0.012206441, 0.0142282825, 0.009718548, 0.032184977, 0.012453174, -0.05806455, 0.024029074, -0.01189117, 0.005633742, -0.0071278485, -0.013727962, -0.020972325, -0.014269405, 0.010266843, -0.0065761255, -0.024358053, -0.027072117, -0.0015480797, 8.400067E-4, 0.017312448, 0.008827566, 0.19003941, -0.014776578, 0.010013256, 0.032623615, -0.0016054794, 0.0068331393, 0.01935485, 0.005424704, -0.015434533, 0.013385277, 0.0015386558, 0.022041501, 0.0033069106, -0.0032794958, 0.0060346834, -0.024097612, -0.02089008, -0.027620414, -0.009430692, -0.023001019, -0.00970484, 0.007984561, -0.00652815, -0.021068275, 0.004920957, -0.010479308, -0.011589608, 0.0016371778, 0.014461308, 0.0053733015, -0.019108117, -0.008128488, 0.014351649, -5.958436E-4, -0.0027140654, -0.004938091, -0.011020751, 0.018738016, 1.822656E-4, 0.005990134, -0.0018693468, -0.011651291, -0.007258069, 0.0018196575, 6.8622676E-4, 0.021506913, -0.022863945, -0.0110755805, -5.8170786E-4, 0.014379064, -0.035748903, 0.015064434, 0.010938507, 0.024824103, 0.003389155, -0.006918811, 0.011802073, 3.6517374E-4, -0.0015780645, -0.001958445, 0.0018179441, 0.04397334, -0.03117063, 0.019971684, 0.011425119, 0.008663078, -0.037009984, 0.015941707, -1.8055218E-4, -0.023138093, -0.022740578, -0.021438375, -0.011274338, 0.0075253635, -0.0067748833, -0.015119264, 0.013488083, 0.008299831, 0.0022137454, 0.027250314, -0.030320771, -0.017751085, 0.024193563, -0.0037044252, -0.016572248, -0.005044324, 0.018559821, -0.018642066, -0.026030354, -0.022000378, -0.0127547365, -0.034378164, -3.97943E-4, 0.011157825, -0.0048901155, -0.0053458866, 0.04578272, 0.011850048, -0.0231518, -0.013117983, -0.042273626, 0.015215215, 0.012960347, -6.536717E-4, -0.019656414, -0.014475016, -0.012679346, 0.017367277, 0.016174734, -0.018820262, -0.02004022, -0.025194203, -6.9179543E-4, -0.016229562, 0.0075939004, 0.031938244, -2.7950248E-4, 0.001734843, 0.044960275, -0.025948111, 0.012645078, -0.030403016, 0.015091849, 0.012576541, 0.0052293735, -0.041533425, -0.025002299, 0.015489363, 0.0054315575, -0.022329357, 0.0092799105, -0.012528565, 0.016476296, -0.010671211, 0.0047427607, -0.0033994354, 0.007628169, -0.011767804, 0.013303033, 0.0057571083, 0.0066138213, -0.008011976, 0.017888159, 0.0049141035, -0.0010186313, -0.017326156, 0.021123106, -0.0038243649, -0.01650371, -0.028675884, -0.022754285, -0.008142197, 0.009684279, -0.012699908, 0.04161567, -0.009471814, -0.025728792, -0.05173173, -0.014104916, 0.05280091, -0.048387125, 0.011383996, 0.027853439, -0.01455726, -0.030951312, -0.007230654, -0.17567405, 0.024591077, 0.006363661, -0.029827304, 0.01829938, 0.007936586, 0.02246643, 0.014749164, -0.002712352, -0.019025873, 0.02979989, 0.010938507, -0.04224621, -0.0142282825, 0.009430692, 0.0066515165, -0.016860103, 0.041834988, 0.024508834, 0.0051642633, 0.04120445, -0.013200227, -0.0044206367, 0.008142197, 0.011603315, -0.0044103563, 0.023604145, 0.01640776, 0.018080061, 8.4343355E-4, -0.025769914, -0.03470714, 0.018203428, -0.008484881, -0.021383546, 0.0060620983, -0.012453174, -0.007073019, -0.021109398, 0.012295539, 0.04498769, 0.0058427798, 0.0071072876, 0.007628169, 0.023001019, 0.014118623, 0.03322674, -0.015681267, 0.016818982, -0.019478217, -0.012192734, -0.03533768, 0.016202148, -0.0028305782, 0.011418265, 0.014077501, 0.029196765, 0.007251215, 0.0050922995, -0.017627718, -0.028072758, -0.009026323, -0.002200038, -0.021616573, -0.008656224, -0.017326156, -0.020163586, 0.011027604, -0.041314106, 0.0037626817, -0.02083525, 0.023192924, 0.01355662, 0.012494296, 0.0040608174, -0.017449522, -0.030019209, 0.0027226326, 0.0070593115, 0.03596822, -0.003889475, 0.035556998, -0.014324234, 0.008902957, 1.7091417E-4, -0.020067636, 0.007840633, 0.007573339, 0.0029436643, -3.4675442E-4, -6.258285E-4, -0.020163586, -0.040519077, 0.00448232, -0.004033403, 0.0032229526, -0.020698177, -0.002289136, 0.0076761446, -0.011932293, -0.0037009984, -0.0024793262, -0.020245831, 0.020437736, 0.020848958, 0.0060552442, 0.019587876, 0.02374122, 0.001299633, -0.0077446816, -0.008669931, -0.014146038, 0.02326146, 0.0148039935, -0.012350368, 0.01635293, -0.00727863, -0.016599663, 0.0053870087, 0.019437095, 0.06294439, -0.002438204, -0.0015258051, -0.017956696, 0.0036084733, -0.009917305, -0.100338176, 0.0063328194, 0.01957417, 0.030622333, -0.03539251, 0.036516517, -0.0029590852, 0.009876182, -0.01729874, 0.034899045, -0.004711919, -0.018751726, 0.016942348, 0.011377143, 0.0067132, -0.0074773873, -0.019204069, -0.009375863, -0.008759029, 0.03744862, -0.010965921, -0.0044069295, -0.011993976, -0.023014726, -0.016846396, 0.022918776, -0.012281831, 0.018107478, 0.02231565, -0.017997818, 0.018121185, -0.01961529, 0.012357222, -0.040491663, -0.019752365, -0.024399174, -0.018244551, -0.029553156, 9.252496E-4, -0.039066095, -6.725194E-4, 0.015626438, -0.0017785353, -0.0104313325, -0.0071484097, 0.006024403, -0.027387388, 0.043013826, 0.0019395973, -0.012583395, 8.712767E-4, -0.02552318, -0.031609267, -0.012062513, 0.012247563, 0.024536248, 0.023234045, 0.01424199, -0.017120544, -0.030046623, -0.002345679, 0.012555979, -0.015626438, -0.0013236209, 0.013693694, 0.0014692621, -0.02031437, -0.01903958, 1.0157398E-4, -0.020629639, -0.022850238, 0.025715085, -0.028977446, -0.012802713, -0.023727512, -0.016681908, -0.021602863, -0.0102120135, 0.01946451, -0.034213673, 0.005626888, -0.021493206, 0.018971043, -0.016380344, 0.03191083, 0.029662816, 0.0110070435, 0.010376503, -0.008759029, -0.037832428, -0.009780231, 0.021136813, 0.007737828, -0.014351649, -0.0031081531, 0.014461308, 0.011802073, -4.0286907E-4, -0.005181398, 0.017970404, -0.008813859, -0.019121824, -0.06974326, 0.04076581, -0.02446771, -9.2096603E-4, -0.01368684, -0.007765243, 0.0015206648, -0.0050546043, -0.003639315, 0.028922616, -0.003982, 0.012268124, -0.005177971, 0.0053904355, -0.007230654, 0.0030481834, -0.003848353, 0.0015069575, 0.00925935, 0.003022482, -0.022041501, 0.020958615, 0.027442217, -0.00224116, -0.0034131429, 0.011349728, -1.1779798E-4, 0.01076031, -0.031444777, -0.013618303, 0.023371119, -0.019395974, 1.1558926E-5, -0.0025701376, -0.01276159, -0.035611827, 0.0030841653, 0.011438826, 0.005383582, 0.006483601, -0.0068297125, -0.014598383, 8.053098E-4, -0.0062128794, -0.0046879314, 0.018751726, -0.00814905, 0.003389155, -0.0046331016, 0.012603955, 0.019546755, 0.0070867264, -0.012179026, -0.023467071, 0.0063773682, -0.011747243, 0.042684846, 0.015516778, -0.004005988, -0.019423388, 0.039778877, 0.009142837, 0.022822823, -0.027826024, 0.018861383, -0.0021674829, 0.010801432, -0.006257429, -0.008107928, -0.017545473, -0.023974245, -0.020136172, 0.019533047, 0.04383627, 0.0050683115, 0.023234045, 0.011802073, -0.0032418005, -0.013392131, 0.016531127, 0.013830768, 0.004372661, -0.030457845, 0.0031321412, 0.006226587, 0.009437546, 0.0014555546, 0.024083903, 0.014625797, 0.0063019777, 0.011041312, 0.0051574097, 0.0070147626, -0.0026301076, 0.009005763, 0.015338582, -0.024549956, -0.009163397, 0.015681267, 0.030951312, 0.006175184, -0.014858823, -0.0020818117, -0.025660256, -0.018271966, 0.011637583, -0.034158845, -0.009965281, 0.012096781, 0.014365356, 0.034899045, 0.011918586, -0.020533687, 0.010301112, -0.04082064, 0.012370929, 0.007984561, -0.0115759, -0.029306423, 0.04114962, 0.026866507, 0.016421467, 0.03755828, -0.022589797, 0.048195224, -0.001362173, 0.028182417, -0.02220599, 0.014255697, 0.012994616, 0.011617023, -0.007237508, -0.013179666, 0.0063568074, -0.0145846745, 8.708483E-4, 0.0011034458, 0.032788105, -0.04156084, 0.08992055, 0.02294619, -0.00186592, 0.014529846, -0.028511394, 0.018751726, -7.5005187E-4, 0.022850238, -0.017312448, -0.01603766, 0.0037695353, -0.012610809, 0.018450161, -0.02900486, 0.0120076835, -0.01020516, 0.013563474, 0.027497048, -0.008155904, -0.017696256, -0.003248654, -0.015969122, 0.029087106, 0.013419546, -0.012624516, -0.0059935614, 0.022027794, -0.0034628322, -0.002172623, -0.00255129, 0.0053218985, -0.023672681, -0.003341179, -0.0017040013, 0.027565584, 0.014968482, -0.010068086, 2.820726E-4, 0.01924519, 0.013536058, -0.015640145, -0.018833969, -0.033363815, -0.038572628, 0.020067636, -0.0061409157, -0.0024467711, -0.020547394, -0.013988403 ], + "id" : "0ea330ed-be49-466f-8934-bc555dbfb768", + "metadata" : { + "source" : "movies.csv" + } + }, + "27582779-ebad-49fd-be51-65a68eb8ee2a" : { + "text" : "Collins-Cavin Cornwall-Rowan Cox-Nathalie Cuzner-Rimmel Daniel-Keith De'Winter-Adrian Derrick-Palmer-Michael Dickins-Cameron Edwards-Jesse Michael Fullington-Gloria Garc�_a-Salo Gardner-Caroline Garnell-Chris Geden-Versha Grant-Steven James Griffiths-Gary Hailes-Tim Hammersley-Chris Hastings-Marina Hayter-Kelvin Hewlett-Matthew Hobbs-Phil Hodges-Leigh Holland-Kevin Hudson-Phoenix James-Zander James-Tobias James-Samuels-Paul Kasey-Aaron Kennedy-Aidan Knight-Sanj Krishnan-Lukas Landau-Andrei Lenart-Jorge Leon Martinez-Julia Leyland-Billy James Machin-Hamza Malik-Raymond Mamrak-Kelsey Edwards-Kenny-Lee Mbanefo-David McCarrison-Sandeep Mohan-Benjayx Murphy-Robert Strange-Charlie Nevett-Jason Nicholls-Terry Noble-David Norfolk-Tatsujiro Oto-Gillian Pittaway-Nathan Plant-Elroy Powell-Jay Rincon-Marc Rolfe-Julio Romeo-Arti Shah-Kat Sheridan-Stephanie Silva-Jasper Skinner-Sandy Kate Slade-Clem So-Benito Sovrano-Karol Steele-Fran�_ois Sternkiker-Frank Stone-Andy Sweet-Peter Theobalds-Pablo Verdejo-Ashley Ward-Paul Warren-Topo Wresniwiro-Joshua �sberg-Joe Cash-Clare Glass,android-spacecraft-space opera,/wqnLdwVXoBjKibFRR5U3y0aDUhs.jpg,/8BTsTfln4jlQrLXUBquXJ0ASQy9.jpg,181808-1895-1894-1893-330459-11-1891-1892-181812-348350-99861-271110-286217-102899-135397-118340-209112-122917-293660-260485-92196\r\n299536,Avengers: Infinity War,Adventure-Action-Science Fiction,en,As the Avengers and their allies have continued to protect the world from threats too large for any one hero to handle a new danger has emerged from the cosmic shadows: Thanos. A despot of intergalactic infamy his goal is to collect all six Infinity Stones artifacts of unimaginable power and use them to inflict his twisted will on all of reality. Everything the Avengers have fought for has led up to this moment - the fate of Earth and existence itself has never been more uncertain.,188.593,Marvel Studios,4/25/18,300000000,2052415039,149,Released,An entire universe. Once and for all.,8.255,27635,Robert Downey Jr.", + "embedding" : [ 5.014394E-4, -0.028217053, -0.0025907701, -0.045900468, -0.023755265, 0.044563293, -0.010595039, -0.013665076, -0.020344112, -0.027152773, 0.02338686, 0.027125483, 0.037331652, 0.010021966, 0.0038921249, 0.009503471, 0.02204969, -0.016769225, 0.0073408, -0.027002683, -0.01092251, -9.158944E-4, -0.011877633, 0.013337606, -0.0063242763, 0.0089099305, 0.022868365, -0.023004811, 0.009128244, -0.011529695, 0.009060021, -0.007026974, 0.013835634, -0.02933591, -0.021885954, 0.007900229, 0.005573823, -0.02743931, 0.020617004, -0.016168863, 0.020767096, 0.0070542633, -0.012457528, -0.009407958, -0.018065464, -0.0057273246, 0.021694928, -0.0061503076, -0.015827747, 0.0141903935, 0.032365013, 0.049830113, -0.023809843, -0.020262245, 0.0082208775, -0.009612627, -0.01693296, 0.030973263, -0.009046376, 0.012832755, 0.016387176, -0.012771354, -0.017028473, 0.0030922096, -0.020576071, -0.020398691, -0.012566686, -0.02149026, -0.013924324, 0.0048063137, 0.033647608, 0.013508163, 2.3878066E-4, -0.006047973, 0.009012264, -0.023550596, -0.019880196, -0.004008104, -0.01047906, 0.014026659, 0.0058091925, -0.008207233, -6.809513E-4, 8.4084907E-4, 0.019498147, 0.014804401, -0.004929115, 0.021449326, -0.023509663, 0.0063038096, 0.0062765204, 0.017192207, -0.0020739806, -0.001674023, -0.0052020075, 0.035339538, -0.01971646, 0.02974525, -0.020262245, -0.030345611, -0.0012817405, -0.008357324, -0.012969201, -0.013453585, -0.004223007, -0.0067677265, -4.2468848E-4, -0.0081458315, 0.010042433, 0.012089124, 0.012689487, -0.008896286, 0.024082735, -0.041479614, 0.0038648357, -0.031246156, 0.021026343, -0.028408077, -0.028435366, -0.033729475, 0.033756763, 0.030154588, 0.020821674, -0.022186136, 0.0319011, 0.032365013, -0.0115910955, -0.016905671, 0.008868996, -0.0022325993, 0.043908354, 0.015814103, 0.025215238, 0.0151045825, -0.026975393, 0.038068462, -0.018761339, 0.010697374, -0.016823804, -0.011761653, 0.014845335, 0.030536637, -0.018338354, -0.0145724425, -0.024915056, 0.023250414, 0.0041343165, -5.15084E-4, 0.00968085, -0.0014360951, 0.012239215, 0.02563822, 0.023427794, 0.0023843956, 0.026770724, -0.0065971687, 0.017355943, -0.008596104, -0.0017047235, -0.012689487, 0.0034196803, -0.0055192444, -0.0045265993, -0.019443568, 0.0023673398, 0.014040303, 0.021462971, -0.020548781, -0.011652497, 0.012764532, -0.0016305308, 0.0075318245, -0.023427794, 0.016387176, 0.0017166624, 0.0011768476, 0.0034742586, 1.7737993E-4, -0.041425034, -0.026170362, -0.0015844803, 0.01039037, 0.028217053, 0.027998738, -0.00867115, -0.002172904, 0.035394117, 0.0025805368, 0.021831375, -0.025392618, 0.007893407, 0.016973894, 0.007627337, -0.0058978824, -0.64096916, -0.013480874, 0.013862924, -0.0061878306, 0.012027724, 0.024942346, 0.019839263, -0.0035885323, -0.034193393, -0.005761436, -0.034848332, 0.01412217, 0.014981781, -0.00882124, -0.019375345, -0.002894363, -0.0052190633, -0.009694495, 0.013105648, 6.442814E-4, -0.037904724, 0.030263744, 0.014408708, -0.0076887375, -0.0050928504, -4.0443474E-4, 8.89458E-4, -0.016018772, -0.009871875, -0.0053589204, -0.029445067, 0.0057443804, 0.020207666, 0.010806531, 0.041834373, 0.0060786735, -0.02344144, 0.056870732, 0.022308936, 0.03282893, -0.0283535, 0.0011009495, 0.025597287, 0.007654626, -0.020207666, 0.020767096, 0.0018778393, -0.010540461, 0.008800773, -0.016305309, -0.0024645575, 0.01172072, -0.00813901, 0.0027459776, -0.01485898, 0.0025413085, 0.002394629, -0.020698873, 0.021039987, 0.006450489, -0.031000553, 0.021340169, -8.996914E-4, -0.004066094, 0.0048267804, 0.035885323, -0.010786064, 0.0023366394, 0.0048472476, -0.015500276, 0.0230321, 0.014272261, -0.0141085265, -0.0014915264, 0.019511791, -0.0025737144, 0.033265557, 0.0035271316, 0.006044562, 0.022936588, -1.6842564E-4, -0.004475432, -0.011577452, 0.020344112, 0.018611247, -0.007313511, -0.031546336, -0.00358171, 0.008432369, -0.0025703034, 0.0027067494, 0.0069928626, 0.0020313412, -0.0055260668, -0.005055328, 0.009223756, -0.0054510217, 0.017451456, 0.025065148, -0.047346797, -0.0050041606, -0.019116098, 0.046200648, -0.015309252, 0.02356424, 0.011898099, -0.0016194446, -0.006668803, 0.01974375, -0.01678287, -0.008521059, -2.9762305E-4, -0.021776797, -0.0084528355, 0.00293018, -0.030318322, 0.0047960803, 0.015664011, -0.018515736, -0.009496648, 0.0025123137, 2.8845557E-4, -0.001074513, 0.008923574, 0.013719655, 0.021176433, -0.014804401, -0.007115664, -0.007115664, 0.0063924994, -0.004768791, -0.017806215, 0.009851408, -0.020999053, 0.016291663, 0.00873255, 0.0014173338, -0.0147225335, 0.003424797, -0.003602177, -0.01829742, -0.0073953783, -0.0145724425, 0.0063174544, -0.012375661, -0.017301366, -0.037877437, 2.2385687E-4, -0.005154251, -0.004615289, -0.005123551, 0.020153088, 0.0022991167, 0.0144905755, 0.004345808, 0.0022308936, -0.017683415, -0.030454768, 0.0057443804, -0.025501775, -0.0024321517, 0.017847149, 0.001034432, -0.031055132, 0.025297105, -0.01346723, -0.01604606, 0.0052020075, 0.008207233, -0.022759208, 0.00970814, -0.018583959, -0.013126114, 0.013897034, -0.02060336, 0.017178563, -0.012089124, 0.016946604, 0.0025975925, -0.0055635897, -0.002909713, -0.012014079, -0.026606988, -0.0013891918, 0.021462971, 0.03536683, 0.015445698, -0.008548348, -0.009667206, 0.0070201517, -0.012082302, -0.018406577, -0.010697374, -0.0065494124, -0.006593758, 0.020535138, 6.920375E-4, -0.0032525337, -0.0034333249, 0.0060513844, 0.028462656, 0.027466599, 0.021080922, -0.005058739, 0.020139443, -0.019607304, 0.008002563, -0.013685543, 0.0111271795, -0.027002683, 0.010499527, -0.0101379445, -0.01518645, 0.0014233034, 0.012587152, 0.03140989, -0.018270133, -0.006266287, -0.03070037, 0.007927518, 0.010642796, -0.0014633844, 0.0147225335, 0.009312446, -0.048056316, -0.008787128, 0.027316509, -0.022090623, 0.009926453, -0.020848963, -0.003649933, -0.0016996067, 0.012566686, 0.0035680654, -0.0030256922, -0.004724446, 0.02323677, -0.0061673634, 0.03591261, -0.013296672, 0.0052497634, 2.571156E-4, 0.023004811, 0.0029898752, -0.0071088416, -0.018570313, 0.016155217, 0.019634593, -0.007497713, 0.0460642, -0.0037693235, 0.037277073, -0.01397208, -0.006737026, 0.0100560775, -0.023400506, -5.969517E-4, 0.016564555, 0.038941715, 0.02711184, 0.0128464, -0.031355314, 0.0073544444, 0.009551227, 0.016209796, 0.011481939, -0.020330468, 0.013651432, -0.0064232, -0.02690717, -0.019170677, -0.030973263, 0.014790757, 0.008596104, -0.0071497755, -0.01592326, 0.0075318245, 0.006648336, 0.0014676483, 0.030209165, -0.006692681, -0.033347424, -0.006238998, 0.01979833, -0.0049325265, -0.018638536, -0.007156598, 0.010451771, -0.015418408, -0.00882124, -0.0028261398, 0.0283535, -0.004840425, -0.0064061442, -0.01299649, -0.002711866, 0.021694928, -0.0073066885, -0.001758449, 0.025788313, 0.004874537, 0.0024185071, 0.001090716, -0.014695245, 0.036567554, -0.005103084, 0.011652497, -0.009421603, -0.012614441, -0.017860794, -0.002543014, 0.0129623795, -0.028871994, 0.022609118, -0.0060616178, -0.012232392, -0.016441755, -0.00707473, -0.0047108014, -0.011181758, -0.0056249904, -0.021503905, -0.03173736, -0.0062151197, 0.0840508, 0.03711334, -0.004338986, 0.0184748, -0.0056522796, 0.01258033, -0.011413716, -0.0061946525, -0.0040149265, -0.017847149, 0.017328653, 0.0020176966, 0.017710702, 0.017778926, 0.010608684, -0.0016185918, -0.0028704847, -0.011700253, -0.008009386, -0.019143388, -0.019102454, -0.0146816, 0.027575755, 0.025556354, 0.00811172, -0.018065464, 0.015009071, 0.002950647, -0.004335575, 0.01625073, -0.012027724, 0.011911744, 0.0025157249, -0.0024116847, 0.0039330586, -0.004124083, 0.03323827, 0.027780425, 0.027589401, 0.0010310208, -0.0063208654, -3.856201E-5, 0.008480125, -0.0079206955, 0.0019545902, -0.03140989, 0.005222474, 0.027371086, 0.022772854, -0.038614243, 0.013358072, -0.0025668922, -0.024437496, -0.020480558, 0.022431739, 0.0021780208, -0.0037727344, 0.0070951968, -0.027425665, -0.0031263211, 0.0032781174, -0.025392618, 0.013160226, -0.013071536, -0.015227384, -0.024560297, -0.02361882, -0.007231643, -0.010308502, 0.013514985, 0.021940531, -0.022895655, 0.0041274945, 0.012191459, 0.010363081, 0.0033855687, 0.018761339, -0.0031007375, 0.0013405829, 0.012075479, -0.024955992, -0.017055761, 0.0069689844, -0.025679154, -0.007709204, 0.0050757946, -0.007388556, 0.019648237, -0.005863771, 0.020002998, 2.1373002E-5, -0.008684794, -0.012805466, -0.009128244, 0.01870676, 0.006539179, 0.0067472593, 0.027739491, 0.001867606, 0.004816547, 0.0064811897, -0.01151605, -0.012464351, -0.016141573, -0.010629151, 0.0052599967, -0.013733299, 0.024082735, -0.027384732, -0.025351685, -0.016741935, -0.025556354, 0.001983585, -0.018515736, -1.8207026E-4, -7.896818E-4, 0.024464784, 0.01852938, -0.013003313, 0.0014795874, -0.008104898, -0.012518929, 0.0021285592, 0.016482688, -0.0058569484, 0.02930862, -0.019170677, -0.024642164, -0.003926236, 0.025733734, -0.0011009495, 0.016509978, -0.001412217, 0.0051644845, -0.009694495, -0.014886269, -0.0024799078, -0.01041766, -0.008875819, -1.2002992E-4, -0.013167048, -0.0014267145, -7.32545E-4, 0.011495584, -0.0057136803, -0.032665197, 0.023318637, -0.006893939, 0.008657505, 0.01571859, -0.0023690453, 0.016605489, -0.025010569, -0.011788943, -0.024942346, -0.024928702, -0.033620317, -0.006822305, 0.047947157, 0.023127614, 0.041479614, -0.0038853025, 0.037932016, -0.0026231762, 0.01518645, 0.015664011, -0.00985823, -0.005420321, -0.022363516, 0.0091350665, 0.014081237, 0.022336226, 0.014927203, -0.004673279, 0.010308502, 0.01178212, 0.0032150112, 0.0141903935, 0.015090938, -0.030318322, -0.03149176, 0.0061025517, -0.014463286, -0.007258932, -0.019402634, -0.01953908, 0.023755265, 0.0042264177, -0.0044720205, -0.015145517, 0.024819545, 0.014667955, 0.016728291, -0.017328653, 0.033456583, -0.031573627, 0.013897034, -0.010792886, -0.009483004, -0.010465415, -0.027807714, 0.016332598, 0.009073665, -0.016168863, -0.005706858, 0.012771354, -0.023018457, -0.019580014, 0.034056947, -0.013583208, 0.0055363, -0.026320452, -0.0053623314, -0.027002683, -0.008446014, 0.0056556906, -0.0017004595, -0.0016885204, -0.025256172, -0.035230383, 0.013303494, -5.376829E-4, 0.042271, 0.009271512, 0.049120594, 0.02288201, 0.023632463, -0.0077774273, 0.008029853, -0.011836699, -0.007743316, 0.031519048, 0.024792256, -0.0267025, -0.009878697, -0.01041766, -0.011345493, -0.026470542, -0.04123401, 0.021258302, 0.0050894395, 0.040388044, -0.023919001, -6.647483E-4, -0.018829562, 0.008098076, 0.0015316075, -0.0034776698, -0.003963759, -0.040688224, -0.019061519, -0.009257868, -0.010349437, 0.017942661, 0.015909614, -0.035585143, 0.015472987, -0.012709954, 0.020112155, -0.011215869, -0.013821989, 0.021776797, -0.022772854, 0.018461157, 0.008036675, 0.0062321755, 0.015800457, 0.0057000355, -0.001573394, 0.028953861, -0.017301366, 0.005522656, 0.006395911, 0.0012527457, 0.012382483, 0.01716492, -0.013781056, -0.025119726, -0.023250414, -0.0109770885, 0.03282893, -0.008780306, -0.006013862, -0.0025020803, -0.005509011, -0.011597918, -0.0045129545, 0.003460614, 0.013985725, -0.038969006, -0.008855351, 0.0015384298, -0.009107777, -0.0018266721, -0.0030171643, -0.0060650287, -0.019470857, 0.008705261, -0.0055431225, 8.8519405E-4, -0.01592326, -0.019102454, -0.023646109, -0.007525002, -0.013828812, -0.0077842497, 0.009230578, -0.018024528, 0.0014770289, 0.014872625, -0.004137728, -0.013242094, -0.017888082, -0.016878381, -0.0040319823, 0.027507532, -0.0091350665, -0.0066585694, -0.013078358, 0.020153088, -0.00867115, 0.0012885628, 0.011911744, 0.013071536, 0.020248601, -0.020848963, 0.011884455, 0.0017720937, -0.021422038, -0.006539179, 0.008446014, 0.03318369, 0.0052258857, 0.004066094, -0.045654863, -0.0027869116, -0.006675625, 0.022854721, -0.0041752504, 1.5392825E-4, 0.03078224, 0.02323677, 0.042352866, 0.025024215, -0.01625073, -0.022131557, -0.013405829, -0.011659319, -0.020767096, -0.0011521167, 0.006849594, 0.016646424, 0.020289535, 0.0045368327, -0.027180063, -0.0053623314, -0.008234522, -0.023687042, -0.01302378, 0.020234955, 0.03072766, 0.006184419, 0.0064061442, 0.03700418, 0.006975807, -0.009223756, -0.0037590899, -3.573182E-4, 0.010683729, 0.016291663, 0.025365328, 0.013951614, -0.01956637, -0.0030853874, 0.011338671, 0.013139759, 0.013003313, 0.018693116, 0.0034674364, -0.006535768, -0.0057955477, 0.011181758, -0.008862174, -0.011495584, 0.037195206, -0.024014512, -7.730524E-4, 0.002885835, 0.0053179865, -0.0035066647, 0.028080607, 0.015009071, -0.0114341825, -0.00497346, -0.0015554855, -0.03070037, 3.9185613E-4, -0.02797145, 0.035939902, 0.0112090465, -0.004277585, 0.028107896, 0.03146447, -0.0086029265, 0.00855517, 0.0061196075, 5.1380484E-4, -0.009100955, -0.0054885442, 0.001891484, 0.020234955, -0.025529064, 0.0151045825, -0.02477861, -0.007026974, -0.006296987, 0.014013014, -0.003953526, 0.028053317, -2.1671478E-4, -0.040005997, 0.008514237, -0.016632779, 0.0056147566, -0.014790757, -0.014640666, -0.0221452, -0.01974375, -0.008336856, 0.016305309, -0.013514985, -0.019102454, 0.009448892, -0.0045675333, 6.6133717E-4, 0.018120041, 0.19506334, -0.0071770647, 0.008930397, 0.053295843, -0.0024679687, 0.00873255, 0.031764653, 0.015527566, -0.0057239137, 0.016346242, -7.349967E-5, 0.010711019, -0.002873896, -7.387277E-5, 0.01335125, -0.009503471, -0.015827747, -0.020016642, -0.017192207, -0.015459343, 0.0010429599, 0.007627337, -0.0058705932, -0.016591845, 0.007204354, -0.0031877218, -0.008275456, 1.0105539E-4, 0.0047619687, -0.008398257, -0.010676907, -0.02619765, 0.0072793993, 0.017888082, -0.023277704, -6.29784E-4, 0.013474052, 6.4897176E-4, 0.008132188, 0.0017652713, -0.016482688, -0.0033736296, -0.0053179865, -0.0059933946, 0.017751638, 0.011311381, -0.009476181, -0.011618385, -0.016291663, 0.0110726, -0.038286775, -0.0077296714, 0.018652182, 0.029990852, -0.021653995, -0.0047517354, 0.0025174303, 0.009728607, -0.010233457, 0.0036669888, 0.009462536, 0.036813155, -0.028626392, 0.0026572878, 0.0039603477, 0.018242843, -0.033210978, -0.010151589, 0.010629151, -0.03356574, -0.018870495, -0.022322582, -0.012600797, 0.01592326, -0.0019955242, -0.013460407, -0.0018948951, 0.0063890885, 4.498457E-4, 0.020726161, -0.029472357, 0.0010685435, -0.005532889, 0.012914623, -0.038668822, -0.013092003, 0.0017772104, -0.024055447, -0.014354129, -0.009639917, -0.008077608, -0.021626705, -0.017274076, -1.6000436E-4, -8.208085E-4, 0.0056147566, 0.019975709, 0.023687042, -0.017574256, -0.016619135, -0.029472357, 0.024942346, 0.016796514, 0.01521374, -0.036567554, -0.015445698, -0.004335575, 0.0075591137, 0.016796514, -0.01536383, -0.0075727585, -0.022827432, 0.0074499566, -0.0014582677, 0.009824119, 0.03312911, -0.012368838, -0.013446762, 0.034384415, -0.012389305, 0.008589282, -0.026525121, 0.010185701, 0.002104681, 0.0037727344, -0.028462656, -0.031710073, 0.02149026, 1.3388773E-4, -0.031328022, 0.006876883, -0.021217369, 0.031328022, -0.01050635, 3.0615093E-4, 0.018406577, 0.016305309, -0.01956637, 0.002809084, -0.030864106, -9.372141E-4, -0.02971796, 0.007190709, 0.0071770647, 0.005420321, -0.01708305, 0.0065289456, -0.0066005797, -0.013003313, -0.047046613, -0.01968917, -0.003963759, 0.011713897, 0.005775081, 0.038586956, 0.0026299984, -0.009585339, -0.016482688, -0.0070406185, 0.035175804, -0.026811657, 0.032583326, 0.014244973, -0.016291663, -0.04712848, 6.357535E-4, -0.17552425, 0.023714332, 0.011147646, -0.033702187, 0.028189763, 0.008336856, 0.02217249, 0.0051474287, 0.008254989, -0.02832621, 0.026265873, -0.0071361307, -0.03520309, -5.538859E-4, 0.0066824476, 0.0030598037, -0.008766661, 0.030291034, 0.026538765, 0.0027425664, 0.042816784, -0.01225286, -0.002809084, -0.0029591748, 0.016646424, -0.009251045, 0.02184502, -0.008712083, 0.0043765083, 8.2677806E-4, -0.02687988, -0.017151274, 0.004478843, -0.0062526423, -0.013180693, 7.58555E-4, -0.027152773, -0.004605056, -0.008766661, -0.0037215673, 0.035530563, 0.024355628, 0.02584289, 0.011775298, 0.015677657, 0.010247102, 0.046691854, -0.008084431, 0.024969636, -0.034739178, -0.0019869963, -0.03700418, 0.02305939, -0.008950864, -0.009564871, 0.03040019, 0.0010037316, -0.0063924994, 0.009694495, -0.011318204, -0.032337725, 0.003400919, 0.018010885, -0.017451456, -0.0032013664, -0.018406577, -0.009251045, 0.017410522, -0.02832621, 0.02341415, -0.008323212, 0.019429924, 0.016305309, 0.004431087, 0.006013862, -0.01586868, -0.035639722, 0.010731486, -0.0143404845, 0.015827747, -0.024014512, 0.03288351, -0.005843304, 0.0060991403, 2.2790761E-4, -0.008677972, 0.005843304, -0.0032900565, 0.0064368444, -0.012055012, 0.0018931896, -0.014449641, -0.038286775, -0.0031484936, 0.010683729, 0.011802588, -0.0069553396, 0.008118543, 0.013801523, -0.013119292, -0.0016330892, -0.012457528, -0.009721784, 0.0051474287, 0.024915056, 0.005546534, 0.019852906, 0.015609433, 0.009810475, -0.008152654, -0.0065323566, -0.00968085, 0.013828812, 0.0049086483, -0.011979967, 0.012587152, -0.022131557, -0.0125052845, -0.0050485055, 0.019129742, 0.05586103, 0.006140074, -0.013753766, -0.0061230185, 0.0016211502, -0.009271512, -0.086943455, 0.0131943375, 0.009025909, 0.030509347, -0.019238899, 0.033756763, -0.013985725, -0.0020057575, -0.023400506, 0.054305546, -0.00837779, -0.020371402, 0.010383548, 0.009401136, 0.0043696864, -0.009394313, -0.02741202, -0.037495386, -0.020712517, 0.02255454, -0.0036669888, -0.010083366, 0.007613692, -0.013787878, -0.031819228, 0.009060021, -0.03422068, 0.020412335, 0.012539396, 0.015554855, 0.0031860163, -0.014886269, 0.015159161, -0.0369496, -0.021572128, -0.032719772, -0.0113591375, -0.033456583, -0.0066619804, -0.04128859, 0.0047108014, 0.037822857, -0.0034998422, -0.013330784, -0.003875069, -0.0010531934, -0.027043616, 0.029226754, -0.014913558, -0.021763152, 0.0030939153, -0.025979336, -0.023687042, -0.013405829, 0.023223126, 0.008623393, 0.04087925, 0.017028473, -3.579578E-4, -0.017178563, -0.012593974, -0.0033002899, -0.021558482, 0.011734365, 0.009660384, 0.010642796, -0.0015409881, -0.021544838, 0.01589597, -0.018038174, -0.019880196, 0.015786814, -0.04363546, -0.0092374, -0.015145517, -0.006201475, -0.01953908, -0.0015486631, 0.03307453, -0.01708305, -5.6454574E-4, -0.027848648, 0.005215652, -0.023141257, 0.018638536, 0.01678287, 0.0036806334, 0.0144905755, 0.00402516, -0.051494755, 0.0042673517, 0.031928387, -0.0010404015, -0.014053948, 0.013781056, 0.012205103, 0.019580014, 0.0017686825, -0.009332913, 0.010956622, -0.003170666, -0.0070815524, -0.07422668, 0.041643348, -0.011945856, 0.0015461048, -0.0041070273, -0.01693296, 0.007142953, -0.008309567, -0.001034432, 0.03842322, -0.0020501027, 0.018720405, -0.006464134, -0.002160965, -0.0047073904, 0.014545154, -0.0016151806, -0.0046528117, -0.003110971, 0.004076327, -0.030836817, 0.02675708, 0.02356424, 0.003649933, 0.010574573, 0.02361882, 0.01956637, -0.01266902, -0.007900229, -0.014135815, 0.037959304, -0.0102880355, -0.0035203092, 0.011713897, 0.0019187732, -0.026975393, -0.0039194142, -0.0053452756, 0.020971766, 0.011222691, -0.0024321517, -0.036840446, 0.008289101, -0.0011290915, -0.011065778, 0.029035728, -0.0082208775, 0.006535768, 0.0043730973, 0.019962063, 0.031218866, 0.014995426, -2.1063865E-4, -0.03078224, 0.02675708, -0.026129426, 0.044563293, 0.0018300832, 0.011898099, -0.022650052, 0.020889897, 8.506561E-4, 0.019511791, -0.026497832, 0.007927518, -0.00864386, 0.0018641948, -0.012389305, 0.0028261398, -0.027780425, -0.0022752387, -0.0043799197, 0.010772419, 0.041124854, 0.013985725, -0.0014847041, 0.0062048864, 0.006822305, 2.942119E-4, 0.0024952579, 0.022459026, 0.002519136, -0.03318369, 0.01956637, 0.0063754437, 0.01483169, -0.02548813, 0.032583326, 0.006351566, 0.013201159, -0.008077608, 0.0063686217, -0.006354977, -0.00793434, 0.018447513, 0.015459343, -0.021558482, -0.0043253414, 0.0046630455, 0.01364461, -0.004758558, -0.009817297, -0.009503471, -0.013078358, -0.036431108, 0.011079423, -0.0018880728, -0.034821045, 0.008923574, 0.013126114, 0.031355314, 0.0031450824, -0.012109591, 0.0053862096, -0.04082467, 0.014053948, -0.007709204, 0.002708455, -0.009537582, 0.0415069, 0.011256803, 0.020848963, 0.030127298, -0.014736178, 0.052258853, 0.014231328, -0.005819426, -0.033620317, 0.01412217, 0.0012467762, -0.0062492313, -0.011570629, -0.017601546, 0.019607304, -0.010226635, -4.2703364E-4, 0.020412335, 0.027425665, -0.023373216, 0.07193438, 0.0019136565, -0.018624892, 0.017274076, -0.011093068, 0.013092003, 0.011106712, 0.01041766, -0.023632463, -0.02832621, -0.011925389, -0.0014992015, 0.0020108742, -0.027671268, -0.007709204, 0.005901294, 0.020794384, 0.012593974, -0.013951614, -0.02308668, -0.014613377, -0.016155217, 0.021640351, -0.0014267145, -0.007381734, -0.017355943, 0.017833505, -0.0051167286, -0.0066449246, -0.050812528, -0.006781371, -0.016455399, -0.009012264, 0.008896286, 0.013057891, -5.914085E-4, -7.7134685E-4, -0.0048779477, 0.01432684, 0.0014480342, -0.025051503, 0.004277585, -0.02702997, -0.008343679, 0.029608803, -0.020889897, -0.012948735, -0.020330468, -0.005573823 ], + "id" : "27582779-ebad-49fd-be51-65a68eb8ee2a", + "metadata" : { + "source" : "movies.csv" + } + }, + "93552b98-dd27-4deb-ad47-47c9c25ea9f4" : { + "text" : "Pitted against highly-trained Tributes who have prepared for these Games their entire lives Katniss is forced to rely upon her sharp instincts as well as the mentorship of drunken former victor Haymitch Abernathy. If she��s ever to return home to District 12 Katniss must make impossible choices in the arena that weigh survival against humanity and life against love. The world will be watching.,65.9,Lionsgate-Color Force,3/12/12,75000000,694394724,142,Released,May The Odds Be Ever In Your Favor.,7.2,20934,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Lenny Kravitz-Stanley Tucci-Donald Sutherland-Wes Bentley-Toby Jones-Alexander Ludwig-Isabelle Fuhrman-Amandla Stenberg-Willow Shields-Sandra Ellis Lafferty-Paula Malcomson-Rhoda Griffis-Sandino Moya-Smith-Raiko Bowman-Dwayne Boyd-Anthony Reynolds-Judd Lormand-Kimiko Gelman-Nelson Ascencio-Bruce Bundy-Dayo Okeniyi-Leven Rambin-Jack Quaid-Latarsha Rose-Ian Nelson-Kalia Prescott-Ethan Jamieson-Jacqueline Emerson-Mackenzie Lintz-Imanol Yepez-Frias-Annie Thurman-Dakota Hood-Amber Chaney-Karan Kendrick-Shane Bissell-Kate Kneeland-Steve Coulter-Sharon Conley-Tim Taylor-John Ross-Phillip Troy Linger-Julie Ivey-Mark Meekins-Jeremy Marinas-Bill Bennett,based on novel or book-revolution-dystopia-female protagonist-bow and arrow-game-archery-death match-forced to kill-based on young adult novel,/yXCbOiVDCxO71zI7cuwBRXdftq8.jpg,/yDbyVT8tTOgXUrUXNkHEUqbxb1K.jpg,101299-131631-131634-20352-12444-675-1930-12445-68721-49051-37724-24428-49538-157350-674-767-1771-1726-19995-672-671\r\n277834,Moana,Adventure-Comedy-Family-Animation,en,In Ancient Polynesia when a terrible curse incurred by Maui reaches an impetuous Chieftain's daughter's island she answers the Ocean's call to seek out the demigod to set things right.,19.184,Walt Disney Pictures-Walt Disney Animation Studios-Hurwitz Creative,10/13/16,150000000,690860472,107,Released,The ocean is calling.,7.565,11020,Auli'i Cravalho-Dwayne Johnson-Rachel House-Temuera Morrison-Jemaine Clement-Nicole Scherzinger-Alan Tudyk-Louise Bush-Christopher Jackson-Oscar Kightley-Troy Polamalu-Puanani Cravalho-Lin-Manuel Miranda,saving the world-ocean-sailboat-sea-mythology-island-musical-cartoon-curse-sailor-aftercreditsstinger-demigod-polynesia-voyage-pacific ocean-quest-island life-animal sidekick,/4JeejGugONWpJkbnvL12hVoYEDa.jpg,/iYLKMV7PIBtFmtygRrhSiyzcVsF.", + "embedding" : [ -0.025720159, -0.02403981, -0.021817416, -0.022738896, 0.010014329, 0.039325554, -0.013070122, -0.006802697, -0.033986386, -0.032414448, 0.028050963, 0.020286132, 0.009133502, -0.020665564, -1.2532204E-5, 0.008062958, 0.026343513, -0.009045419, 0.0068704532, -0.038973223, -0.01559742, -4.7725596E-4, 0.0032539794, 0.0053052907, -0.015543215, 0.005115574, 0.033308826, -0.010068534, 0.0029965069, -0.018619334, -0.0010510641, -0.019012319, -0.019052973, -0.03406769, -0.03702185, -0.0015651624, 0.016546004, -0.047185242, 0.036832135, -0.0012983733, 0.008699864, 0.0040890714, -0.01195215, -0.0059455847, -0.01571938, 0.0045227096, -0.013632497, -0.012724567, -0.004766631, 0.040003113, 0.02607249, 0.021709006, -0.011897945, -0.028159373, -0.006175955, -0.019269792, -0.019500162, 0.0010248087, 0.014933411, 0.01607171, 0.01662731, -0.0021326186, -0.016437594, -0.019161383, -0.006213221, 0.005606805, -0.016817026, -0.0060336674, -0.01902587, 0.0032505917, 0.03382377, 0.018510925, 0.04122272, 0.0056915, 0.0038214356, -0.02324029, -0.039433964, -0.0035944532, 0.0032692247, 0.0076699737, 0.0111661805, -0.022833755, -0.018063735, 0.007507359, 0.009370647, 0.012229949, -0.009661999, 0.007778383, -0.011193283, 0.013415678, 0.004265237, 0.030137846, 0.0067484924, 0.0052612494, -0.009797511, 0.008266225, -0.011762433, 0.015163781, -0.027007522, -0.049732868, -0.0042855637, 0.006707839, 0.008008753, -0.01822635, -0.018741295, -0.0039738864, -0.01167435, 0.0071889064, 0.020150619, 0.015922649, -0.008178143, -0.0033200416, 0.0072905403, -0.038512483, 0.0027153196, -0.02299637, 0.0029135058, -0.011938598, -0.016573105, -0.018890359, 0.022481425, 0.02527297, 0.006802697, -0.021437982, 0.028891137, 0.019432407, -0.003328511, 0.0024171935, 0.0019124117, 0.0055797026, 0.026397718, 0.0010510641, 0.017901123, 0.0012356992, -0.028565908, 0.030110745, -0.029622901, 0.002444296, -0.007222784, 0.0046107923, 0.02574726, 0.012426442, -0.013171757, -0.016003955, -0.021248266, 0.006558776, 0.022291707, -0.0012035151, 0.02288796, 0.019676328, 0.026926214, 0.008774395, 0.013808662, 0.014215198, 0.0035741264, -0.008049407, 6.474531E-6, -0.020706218, 0.0045260973, -0.02345711, 0.007527686, 0.0043397686, -0.008957337, -0.015529663, 0.010942586, 0.025896324, 0.033308826, -0.0030388543, -0.010156617, 0.016451145, -0.004116174, 0.010827401, -0.029650003, 0.029568696, 0.0074734814, 0.012107988, 0.008584679, 0.008930234, -0.023280945, -0.0072837644, -0.0054306393, 0.016383389, 0.019540817, 0.03677793, -0.032414448, 0.004956348, 0.014039033, -3.686347E-4, 0.004417688, -0.018307658, 0.0013517312, 0.019229138, -0.005264637, 0.013673151, -0.64308524, -0.011233936, 0.01093581, -0.010278578, 0.0034013486, 0.0069212704, 0.015787136, 2.9156232E-4, -0.017399728, 0.008760844, -0.022007132, 0.009824613, -0.017155806, -0.021600597, -0.019445958, -0.031059327, -0.004800509, -0.018253453, -1.2100789E-4, -0.013944174, -0.019418854, 0.0060777087, 0.0092012575, 3.3475674E-4, 0.011457531, 0.010617358, 0.013564741, -0.022142645, -0.0044549536, 0.0065994295, -0.0027373403, 0.021952927, 0.010942586, 0.013720579, 0.04474603, -2.4413316E-4, -0.021207612, 0.04829644, 0.028050963, 0.034338716, -0.02516456, 0.0038858037, 0.00762932, 0.008218797, -0.0034165937, 0.0165189, 0.010183719, 0.0012644954, 0.008930234, -0.005623744, -0.008638884, -0.014445568, -0.010712216, 0.0049936133, 8.918377E-4, -0.008232348, 0.0031472638, -0.02756312, 0.023728134, 0.011355897, -0.029216366, 0.031709783, 0.0028050963, -0.005837175, -0.020191273, 0.029595798, -5.9498195E-4, 0.013876419, 0.0108612785, -0.029189263, 0.017128704, 0.0022478036, -0.010847728, -0.004299115, 0.020096414, -0.0044143, 0.03062569, -0.021099202, -0.0107460935, 0.010685113, 0.019337548, -0.012900732, -0.0016591739, 0.013476659, 0.02471737, -0.027969657, -0.010190494, 0.01764365, 0.015895545, 0.011118751, 0.002527297, 0.022400117, 0.0050613694, 0.015556766, -0.0037570675, -0.0033759403, -0.02095014, 0.0039908253, 0.033525642, -0.065967195, -0.015610971, -0.019039422, 0.009519711, -0.0056813364, 0.017928224, 0.01150496, -0.029297672, 0.0056745606, 0.04314699, -0.0015770197, -0.026329963, 6.546919E-4, -0.011606595, -0.01661376, 0.030219153, -0.021221163, 0.03108643, 0.02311833, 0.0032268772, -0.005051206, 0.01616657, 0.017386176, 0.0037435163, -0.018348312, -0.010962913, 0.022467872, -0.022603385, -0.008970887, 3.5338962E-4, 0.010481846, -0.0039908253, 0.0053459443, 0.007094048, -0.0012255358, 0.0041636033, 0.00956714, 0.028484602, -0.002408724, 0.03005654, -0.004268625, -0.019147832, 0.012257052, -0.013727356, -0.021709006, -0.012047008, -0.00418393, -0.030463075, -0.008713415, -0.026099592, 0.001990331, -0.017413279, -2.4270394E-5, -0.0051054107, 0.010366661, -0.003862089, -2.3968668E-4, -0.020977242, -0.0029321387, -0.0056305192, -0.023145432, 0.008787947, 0.0051257377, -0.019107178, -0.018890359, 0.017453933, -0.008909907, -0.017115153, 0.009560364, -0.0015643155, -0.03292939, 0.01777916, 4.366024E-4, -0.0027305647, 0.03246865, -0.010237924, 0.03339013, -0.007276989, 0.026235104, 0.008909907, -0.0040924596, 0.008022305, -0.00458369, -0.034799457, -0.015990404, 0.014960513, 0.019554367, 0.018009532, 0.011267815, -0.009953349, 0.014052584, -0.007893568, -6.86029E-4, -0.0051087984, -0.003279388, -0.01536705, 0.003377634, 0.010895156, 0.0046378947, 0.008354309, 0.021573495, 0.038810607, 0.0067484924, 0.010908708, -0.016261429, 0.0036012288, -0.020421643, 0.0044718925, -0.01674927, 0.0058032973, -0.009004766, 0.031492963, -0.022332361, -0.026411269, -0.013063347, -8.092601E-4, 0.026628088, -0.020679116, 0.008035855, -0.0023121717, 0.0067518805, -0.005237535, -0.010170168, 0.026600985, 0.01616657, -0.0239314, 0.0037333528, 0.035585426, -0.006274201, 0.0053052907, -0.004421076, -0.0019479835, -0.009729754, -0.016220775, 0.0024917251, -0.0015448356, -0.024988394, 0.0171016, -0.009865266, 0.037943333, -0.010603806, 0.009126727, -0.003211632, 0.019595021, -0.01155239, 0.007913895, -0.021166958, 0.006687512, 0.021248266, -0.026885562, 0.02403981, -0.027414057, 0.039867602, -0.017819814, 0.0034301449, 0.013605394, -0.020909486, 0.0020055762, 0.0041263374, 0.014540426, 0.030761201, 0.0035944532, -0.010569928, 0.021465085, 0.012480645, -4.18393E-4, 3.6376476E-4, -0.019635674, 0.011999578, -0.016722169, -0.03254996, -0.0046311193, -0.019296894, 0.015312845, 0.0023206412, -0.014269403, -0.0071347016, 0.0057660313, 0.0017167664, 0.003028691, 0.022589834, -0.021017896, -0.02230526, 0.011864067, 0.031736888, -0.021844517, -0.031845298, -0.0047903457, -0.016586656, -0.021221163, 0.0033556134, -0.0056948876, 0.01673572, 0.013219186, -0.0049258573, 0.005132513, -0.018185697, 0.01298204, -0.02344356, 0.0026712783, 0.014811451, -0.009939798, -0.0026628089, -0.0054441905, 0.012209622, 0.026587434, -0.009031868, 0.005369659, -0.0063487324, -0.0028254231, -0.021112753, 0.0027305647, -0.002942302, -0.026966868, 0.0119860275, -0.008157817, -0.021722557, -0.01150496, 0.015231538, -0.0011916577, 0.0012026681, -0.019432407, -0.011620145, -0.022115542, -0.019879596, 0.098110616, 0.03086961, 0.0036554334, 0.030490177, -0.023402905, 0.0072837644, 3.912906E-4, -0.0142558515, 0.0057423166, 0.007697076, 0.016017506, -0.009783959, 0.01913428, -0.0063690594, 0.0118911695, 0.0021190674, -0.015434805, -0.01618012, -0.01753524, -0.009289341, -0.02210199, -0.0072498866, 0.02231881, 0.0055729267, -0.011999578, -0.020326786, 0.017386176, 0.013591844, -0.005102023, 0.019120729, -0.00790712, 6.9492194E-4, 0.009858491, 0.013652824, 0.0028864034, 0.0025323785, 0.0035334728, -0.014648836, 0.037563898, -0.003464023, 3.5233094E-4, -0.0011493103, 0.0019412079, -0.003179448, -0.0029710983, -0.020028658, -0.006711227, 0.016207224, 0.0120063545, -0.02084173, 0.032875188, -0.0012484033, -0.027644427, -0.006053994, -0.008083285, -0.013801887, -0.0013136185, 0.001756573, 0.0026306247, 2.2735298E-5, -0.0028305047, -0.015204435, 0.0014982534, 7.6691265E-4, 0.0039501716, -0.022400117, -0.013659599, -0.0055458243, -0.014364261, 0.0030032825, -0.0040077646, -0.052443106, -0.0071008233, -0.008110387, 0.0035199216, -0.0037909453, 0.03268547, -0.008015529, 0.008015529, 0.007243111, -0.010549601, -0.010224373, 0.00444479, -0.032495752, -0.003077814, 0.017413279, -0.010718991, 0.016722169, 0.0053832103, 0.014526876, 0.017223563, -1.7044856E-4, -0.02436504, -0.0071889064, 0.047781497, 0.009533262, 0.017006744, 0.007175355, -0.003209938, -0.011836965, 0.027915452, -0.04946184, -0.013944174, -0.015096026, -0.0029592412, -0.012263827, -0.014743695, 0.018267004, -0.025598198, -0.006169179, -0.028620113, -0.035341505, 0.00933677, -7.423511E-4, -0.0013034551, -0.003662209, 0.002589971, 0.023294495, -0.0031591211, 0.007832588, -0.01661376, -0.01810439, 0.009756857, 0.028945342, -0.0068467385, 0.012988815, -0.0060031773, -0.027183687, -0.0053459443, 0.012392563, 0.006792534, 0.015068923, -0.0071821306, -0.0019445957, -0.0107460935, -0.010583479, -2.9812616E-4, -0.0037875576, -0.0030862836, 0.024161771, -0.007724178, -0.010603806, 0.0022732122, -0.014188096, 0.005095247, -0.023430007, -0.0100211045, 0.0020716381, -0.008001978, 0.0027966269, -0.001990331, 0.004543036, -0.035260197, 0.007310867, -0.017467484, -0.03498917, -0.03883771, -0.0011188202, 0.030679895, 0.03680503, 0.025462685, 0.0052307593, 0.014567529, 0.003091365, 0.003899355, 0.012297705, -0.01190472, -0.012439992, -0.040030215, -8.012141E-4, 0.0017057561, 0.004512546, 0.011227161, 0.004068745, 0.015895545, 0.036967646, -8.494902E-4, -0.010725766, -0.0016405409, -0.006274201, -0.009092849, 0.011518511, -0.01719646, -0.0059862384, -0.025611749, -0.015760034, 0.04599274, -0.009682325, -0.009858491, -0.019012319, 0.031059327, -0.014730143, 0.0038519257, -0.009221585, 0.015881995, -0.018619334, -0.025652403, -0.018659988, 0.0030981407, -0.0073650717, -0.01253485, 0.003328511, -0.01788757, -0.010549601, -0.0077580563, 0.04851326, -0.030463075, -0.0052985153, 0.01902587, -0.019920249, -0.007812261, -0.020814627, -0.0052070445, -0.030923815, -0.006958536, -6.3182425E-4, -0.008740517, 0.004180542, -0.023375802, -0.03005654, 0.028538806, -0.007927446, 0.039108735, 0.009133502, 0.022278156, 0.009363872, 0.008361084, -0.004864877, 0.020868832, 0.0031997748, -0.0023951728, 0.027807042, 0.020164171, -0.026980419, 0.0048072846, -0.01235191, 0.0053967615, -0.043336704, -0.034013487, 0.020584257, 0.03211632, 0.017264215, -0.01913428, -0.01115263, -0.026709395, 0.019662777, -0.026099592, -0.010339558, 0.012114764, -0.027671529, -0.023484211, 0.0049224696, 0.027305648, 0.011328795, 0.0025069702, -0.025801465, -0.0070195165, -0.0052781883, 4.1691083E-4, -0.019242689, 0.0021393942, 0.03442002, -0.03428451, 0.013476659, 0.019174933, 8.1518875E-4, -0.0024832555, 0.002744116, 0.004847938, 0.03143876, -0.0010434416, 0.012202847, 0.020787526, 0.02061136, -0.005471293, 0.009282565, -0.0119860275, -0.012148642, -0.009255462, -0.0038349868, 0.025354275, -0.007954548, -0.008313655, -0.0107664205, -0.026844908, -0.014025481, -0.009939798, -0.009472282, 0.0044718925, -0.031167736, -0.007974875, 0.019649226, -0.007378623, 0.0017633486, -0.005339169, 0.0038383745, 0.005569539, 0.018063735, -0.026939765, -0.014133891, -0.013903521, 0.0010214209, -0.033769567, 2.3100544E-4, -0.014838553, -0.0074870326, 0.021885172, -0.022345912, -0.0035165339, 0.0066536344, 0.0036215554, 4.0505352E-4, -0.00314557, -0.010326006, 0.016911885, 0.020746872, 0.0021969867, -0.007974875, -0.012927835, 0.02573371, 0.003379328, -2.629778E-4, 0.01687123, 0.0018327985, 0.0147707965, -0.036506906, 0.009695876, 6.5088057E-4, -0.026492577, -0.0133818, 0.021939376, 0.021952927, -1.1137384E-4, -0.01833476, -0.02505615, -0.0012323114, 0.0076360954, 0.02347066, -0.0038587013, -0.009987227, 0.02344356, 0.008218797, 0.038539585, 0.017372625, -0.025720159, -0.01127459, -0.002308784, -0.019418854, -0.025896324, 0.012690689, -0.0017972266, 0.00549162, 0.00893701, -0.01630208, -0.028593011, 0.00905897, -0.040436752, -0.03553122, -0.011979252, 0.018348312, 0.016695065, 0.023416456, 0.023782339, 0.021166958, 0.0018226351, -0.0038587013, -0.019120729, -0.027969657, 0.019608572, -0.0034335328, 0.012622934, 0.01844317, -0.035910655, -0.005349332, 0.014784348, 0.017006744, 0.009052195, 0.029785516, -0.015461908, -0.008205245, -0.010929035, 0.013104001, 2.6911817E-4, 0.0069517605, 0.022616936, -0.024080465, 0.002508664, 0.024121119, 0.026926214, 0.007927446, -0.019649226, 0.03168268, -0.012555177, 0.0017582669, -0.015543215, -0.016329184, -0.0039908253, -0.021600597, 0.02267114, 0.001992025, -0.006887392, 0.042171303, 0.027034624, -0.031465862, 9.570528E-4, -0.0060506063, -0.0011425347, -0.003513146, 4.0950003E-4, -0.0019462897, 0.03154717, -0.022223951, 0.0059930137, -0.035802245, 0.004417688, -0.007276989, -0.012846528, -0.019080075, 0.028294884, 0.0053832103, -0.023728134, 0.006450366, -0.014906309, 0.0112813655, 0.0011637084, -0.00893701, -0.013578292, -0.0019462897, -0.011775984, -0.007927446, -0.013971277, -0.028674318, -0.00632163, -6.2801293E-4, -0.0031218554, 0.02027258, 0.20825468, -0.010691889, 0.005467905, 0.05114219, 0.00415344, 0.0034267572, 0.03382377, 0.008469494, -0.012372237, 0.016491799, -0.010359884, 0.001405089, -0.0010425947, -0.0031252431, 0.015421254, -0.021478636, -0.027441159, -0.0029033425, 0.014513324, -0.0058812164, -0.0059930137, 0.012866855, 0.017901123, -0.011870842, 0.009783959, -0.0031540394, 0.012711016, -0.00815104, 0.016261429, 0.0058405627, -0.011687901, -0.015068923, 0.0012356992, 0.008069733, -0.020435194, 3.223701E-5, -0.005163003, 0.0121960705, 0.019811839, -0.009404526, 0.0050816964, 0.014608183, 0.009797511, 0.009065746, 0.003479268, 0.025340725, -0.0170745, 0.006287752, 0.0015981934, 0.0058270115, -0.02983972, -0.0012899039, 0.02244077, 0.012284154, -0.00813749, -0.00418393, 0.008347533, -0.0054272516, -0.01584134, -0.015001168, -0.0069314335, 0.032062117, -0.006057382, 0.052334696, -0.0021122918, 0.011525287, -0.040138625, 0.006843351, 5.810073E-4, -0.014242301, -0.041249823, -0.015638074, -0.011823413, -0.00106885, -0.01685768, -0.022806652, -4.8149072E-4, 0.0016922049, 0.0061183623, 0.012223173, -0.009269014, -0.0216277, 0.008787947, 4.5481182E-4, -0.023958504, -0.030815406, 0.0112813655, -0.007730954, -0.0066366955, 0.01730487, -0.011525287, -0.0038044965, -0.005738929, -0.009255462, -0.007148253, -0.008008753, 0.027779939, 0.0013102307, -0.016708618, -5.7804293E-5, -0.017738508, 0.011532063, 0.011830188, 0.005139289, -0.011301693, -0.013930623, -0.015610971, 0.003225183, 0.037943333, -4.450719E-4, -0.008787947, -0.032766778, 0.0038722525, -0.014757246, -0.0029677106, 0.024514103, -0.009980451, -0.019608572, 0.039948907, -0.01468949, -0.009248687, -0.012202847, 0.020489398, 2.1724252E-4, 0.0016879701, -0.040870387, -0.022847306, 0.023375802, -0.012250275, -0.009668774, 0.002156333, -0.03133035, 0.0028847095, -0.005454354, 0.018416068, 0.010014329, 0.02321319, -0.008754069, -0.0022173135, 0.0023206412, 0.010034656, -0.037319977, 0.009628121, 0.019445958, 0.013686702, -0.019188484, 0.0034081242, -0.011979252, -0.017521689, -0.030327562, -0.022454321, -0.0037367407, -0.0015677033, 0.015990404, 0.031601373, -0.012128315, -0.01662731, -0.03236024, -0.0041026226, 0.030192051, -0.04406847, 0.043689035, -0.0028728521, -0.0094316285, -0.019459508, -0.0046548336, -0.17367205, 0.0137409065, 0.00762932, -0.040409647, 0.013747682, -0.00939775, 0.026709395, 0.012663587, 0.01491986, -0.011200058, 0.014526876, 0.004465117, -0.037672307, 0.0036520457, 0.0064469785, 0.0054137004, -0.0063317935, 0.02493419, 0.021532841, 0.0041568275, 0.042740453, 0.010278578, -0.0041229497, 0.019920249, 0.018768398, -0.016451145, 0.005054594, 0.015556766, 0.01708805, -0.006596042, -0.020516502, -0.008232348, 0.014567529, 0.010190494, -0.01378156, 0.0056135803, -0.01661376, -0.00848982, -0.014852104, 0.015096026, 0.038024638, -0.0063690594, 0.009614569, 0.020882383, 0.011694677, 0.01684413, 0.004417688, -0.0051731667, -5.585631E-4, -0.031113531, 0.0060268915, -0.01673572, 0.023186086, -0.017575894, 0.0063250177, 0.019229138, 0.02368748, -0.018822603, -0.008401738, -0.0041398886, -0.025665954, 0.0039400086, 0.013700253, -0.025557544, -0.010149841, -0.008442392, 9.2063396E-4, 0.006443591, -0.046534788, 0.017928224, -0.0118911695, 0.0067213904, 0.04382455, 0.0086117815, 0.01321241, -0.01098324, -0.014703041, 0.010298904, 0.012941387, 0.019120729, -0.023999156, 0.027549569, -0.021532841, -0.0011399939, 0.020394541, -0.020367438, -0.016803475, -0.003547024, -0.0031845297, -0.0042550736, 0.020367438, -0.024094015, -0.0342032, 3.2988677E-4, 0.01190472, 0.022115542, -0.001405089, -0.0052070445, 0.0132259615, -0.008076509, -0.004868265, -0.013734131, -0.012487422, 0.033986386, 0.04382455, 0.005234147, 0.0076022176, 0.022007132, 0.013808662, -0.002325723, 0.0014482834, -0.0040111523, 0.019418854, -0.0021055161, -0.012284154, 0.030110745, -0.008950561, -0.019893147, -0.0073650717, 0.009939798, 0.07729599, 0.010231148, -0.0039095185, -0.0040416424, 0.003431839, -0.022928614, -0.10602451, -0.014011931, 0.030571485, 0.046643194, -0.02244077, 0.03677793, -1.6960161E-4, 0.016369838, -0.004648058, 0.020773973, 0.0048309993, -0.023077676, 0.015041821, -5.1409827E-4, 0.018619334, -0.0013178532, -0.023280945, -0.027088828, 0.02324029, 0.020299682, 0.0071889064, 0.008510147, -0.0041331127, -0.024554756, -0.009682325, 0.012155417, -0.029080853, 0.022806652, 0.019310446, 0.01811794, 0.026980419, -0.0086863125, 0.016464695, -0.027779939, -0.01721001, -0.029622901, -0.023958504, -0.016789924, 0.020475848, -0.04729365, -0.0039061306, 0.013808662, -0.00836786, -0.023430007, -0.01213509, 0.008015529, -0.024893535, 0.014296506, -0.004604017, -0.030083641, -0.01684413, -0.025110355, -0.033092007, 0.0041093985, -0.0053764344, 0.00865921, 0.028484602, 0.015041821, 0.002210538, -0.022711795, -0.0015778667, 0.006863678, -0.004932633, 0.001771818, 0.016573105, 0.017060949, 0.007575115, -0.0025645627, 0.018876808, -0.025042599, -0.008455942, 0.036642417, -0.03030046, 0.0034538596, -0.027888348, 0.008062958, -0.033525642, -0.008218797, 0.008008753, -0.009994003, -0.0015998874, -0.030788304, 0.017670752, -0.029622901, -0.0021207612, 0.012060559, 0.0064842445, 0.0012340052, 0.010468294, -0.03463684, -0.018727744, 0.019107178, -6.402937E-4, -0.019351099, 0.014892758, 0.022278156, 0.018009532, -0.0047395285, 0.0038451501, 0.020597808, -0.0018090839, 0.018212799, -0.06770174, 0.0330649, 0.0040111523, -0.012711016, -0.010895156, -0.008530474, -0.012914284, -0.010075309, 0.0013966195, 0.013720579, -0.013944174, 0.0050986353, -4.3448503E-4, 0.013137879, -0.0034826559, -0.008022305, 2.7081207E-4, -0.0041093985, 0.0033149598, 0.009309667, -0.030896712, 0.01641049, 0.014553978, -0.009553589, -0.01212154, 0.016031059, 0.017033845, 0.015963301, -0.01650535, -0.0025628689, 0.030354666, -0.0069178822, 0.0048411624, 0.009933022, -0.0054103127, -0.029351877, -0.0046074046, -0.0013314044, 0.019215588, 0.009994003, -0.003997601, -0.015231538, -0.006243711, -0.012087662, -0.0085914545, 0.024012709, -0.023037022, 0.013463107, 0.016329184, 0.026492577, 0.04574882, 0.020502951, 0.018375413, -0.011471082, 0.015421254, -0.025449134, 0.0649373, 0.012019905, 0.008164592, -0.026126694, 0.01641049, 0.0031896112, 0.008062958, -0.033308826, 0.004488832, -0.0028728521, 0.005166391, -0.0069653117, -0.012670362, -0.009296116, 0.0037096383, -0.008239123, 0.008415289, 0.029460287, 0.022061337, 0.015787136, 0.012209622, 0.013280166, -7.5336144E-4, 0.016884783, 7.892509E-5, -0.003746904, -0.037997536, 0.01822635, 6.008047E-5, 0.0011366061, 0.0015821015, 0.0064944075, 0.004180542, -0.012914284, -0.0050613694, 0.016803475, -0.0062945276, 0.010617358, 0.004847938, 0.02095014, -0.019906698, -0.01731842, -2.081378E-4, 0.019811839, -0.0020360663, -0.0056982753, -0.0028525256, -0.013442781, -0.02880983, -0.001254332, -0.012887182, -0.039054528, 0.01133557, 0.01281265, 0.021383777, 0.0019750858, -0.0013847622, 0.0016701842, -0.03225183, 0.011850515, -0.009560364, -0.00809006, -0.01515023, 0.041087206, 0.014621734, 0.01150496, 0.030950917, -0.012392563, 0.04883849, -0.0011586268, 0.03347144, -0.0043702587, 0.010468294, 0.0050139404, 0.0077038514, 0.0030896713, -0.029189263, 0.0036147798, 0.0052307593, -0.014621734, 0.0070195165, 0.013090449, -0.0352873, 0.05740284, 0.029866822, -0.0098313885, 0.016667964, -0.013828989, 0.022982817, -0.0010214209, 0.019567918, -0.01639694, -0.013686702, -0.00532223, -0.032631267, 0.0064164884, -0.027996758, -0.01258228, 0.0025374603, 0.011132303, 0.01548901, -0.019283343, -0.022698242, -0.007087272, 0.013639272, 0.036046166, 3.80492E-4, -0.007683525, 0.001172178, 0.03542281, -0.023172535, 0.00922836, -0.03246865, 0.009180931, -0.027671529, -0.013164981, -0.004566751, 0.028782727, 0.0011145853, 0.007940997, 0.005200269, 0.0132462885, 0.01639694, -0.013557966, -0.014228749, -0.035124686, -0.025245868, 0.0030168337, 0.0012153724, -0.011145853, -0.018510925, -0.026031835 ], + "id" : "93552b98-dd27-4deb-ad47-47c9c25ea9f4", + "metadata" : { + "source" : "movies.csv" + } + }, + "6667502c-f6fa-4a64-8cfa-43d77542c5d7" : { + "text" : ",216015-337167-164431-18239-24021-50620-925130-222935-321612-8966-50619-296096-262504-417678-351819-286565-200727-272693-262500-283378-22971\r\n12405,Slumdog Millionaire,Drama-Romance,en,\"A teenager reflects on his life after being accused of cheating on the Indian version of \"\"Who Wants to be a Millionaire?\"\".\",21.806,Celador Films-Film4 Productions,11/12/08,15000000,378410542,120,Released,What does it take to find a lost love?,7.732,9879,Dev Patel-Saurabh Shukla-Anil Kapoor-Raj Zutshi-Jeneva Talwar-Freida Pinto-Irrfan Khan-Azharuddin Mohammed Ismail-Ayush Mahesh Khedekar-Jira Banjara-Sheikh Wali-Mahesh Manjrekar-Sanchita Choudhary-Himanshu Tyagi-Sharib Hashmi-Virendra Chatterjee-Feroze Khan-Sunil Kumar Agrawal-Virender Kumar-Devesh Rawal-Rubina Ali-Ankur Vikal-Tiger-Chirag Parmar-Nazneen Shaikh-Farzana Ansari-Anupam Shyam-Salim Chaus-Harvinder Kaur-Narendra Singh Bhati-Tanay Chheda-Ashutosh Lobo Gajiwala-Satya Mudgal-Janet de Vigne-William Relton-David Gilliam-Mia Drake-Kinder Singh-Christine Matovich Singh-Thomas Lehmkuhl-Siddesh Patil-Najma Shaikh-Saeeda Shaikh-Alka Satpute-Tabassum Khan-Tanvi Ganesh Lonkar-Sitaram Panchal-Nigel Caesar-Ajit Pandey-Kedar Thapar-Amit Leonard-Rajesh Kumar-Sagar Ghopalkar-Pradeep Solanki-Abdul Hamid Shaikh-Dheeraj Waghela-Shruti Seth-Arfi Lamba-Taira Colah-Varun Bagri-Ankur Tewari-Anjum Sharma-Madhur Mittal-Sarfaraz Khan-Syed Fazal Hussain-Umar Khan-Imran Hasnee-Homai Billimoria-Udayan Baijal-Sandeep Kaul-Rufee Ahmed-Rhea Lawyer-Deepali Dalvi-Anisha Nagar-Farrah Shaikh-Mamta Sharma-Neha M. Khatarawalla-Tanya Singh-Anand Tiwari-Faezeh Jalali-Meghana Jhalani-Rupali Mehra-Anju Singh-Saurabh Agarwal-Mark Boucher-Andre Nel-Yuvraj Singh-Sachin Tendulkar-Amitabh Bachchan,slum-based on novel or book-cheating-suspicion-mumbai (bombay) india-game show-quiz-orphan-duringcreditsstinger-taj mahal india,/5leCCi7ZF0CawAfM5Qo2ECKPprc.jpg,/9IZvClXvhSxlp41eT0CyUEsyjqy.jpg,1006970-45269-37799-70-4922-1402-194-745-8358-640-13223-453-11324-37165-2062-77338-808-773-5915-683841-7326\r\n82675,Taken 2,Action-Crime-Thriller,en,In Istanbul retired CIA operative Bryan Mills and his wife are taken hostage by the father of a kidnapper Mills killed while rescuing his daughter.,51.", + "embedding" : [ 0.008844528, -0.023002658, -0.005292951, -0.034882545, -0.028467681, 0.030670209, 0.005877998, -0.013194523, -0.046170503, -0.03703001, 0.024709618, 0.040498994, 0.008170004, 0.010647849, -0.006070719, 0.012657656, 0.022259304, -0.027077336, 0.018212158, -0.022314368, -0.01302245, -0.0027135839, -0.023016423, 8.6552487E-4, 0.0022782404, 0.011962483, 0.02571452, -0.016188584, -0.007564309, -0.015114852, -0.0051725004, -0.0086449245, -0.020951552, -0.02512259, -0.022754872, -0.002844359, 0.010021505, -0.016147288, 0.012251565, -0.0024399885, 0.015500294, 0.0028237104, -0.022493323, -0.01662909, 0.0040264972, 0.009849432, 0.013139459, -0.016092224, -0.015748078, 0.031055652, 0.020552345, 0.027696796, -0.014330201, -0.025686989, -0.014178777, -0.013696974, -0.011618338, 0.0082250675, 0.0053136, 0.016752983, 0.017331146, -0.015913269, -0.024090156, -0.009312565, -0.013793335, -0.007254578, -0.008603627, -0.021075444, -9.550026E-4, 6.069859E-4, 0.050355308, 0.013772686, 0.0074404166, -0.0031093508, 0.012182736, -0.023209143, -0.030064514, -0.009698008, 0.015582889, 0.010110983, 0.023429397, -0.01567925, -0.009876964, 0.009285035, 0.0021302581, 0.008465969, -1.2701104E-4, 0.038489185, -0.02410392, 0.0020734742, 0.0063150623, 0.022906296, 0.002180159, 0.0150873205, 0.012754017, 0.004807707, -0.029266099, 0.006487135, -0.020703768, -0.02654047, -0.0036926768, -0.009340097, 0.011921186, -0.014048003, -0.004425706, -0.008741285, -0.0070687397, -0.016560262, 0.010950697, 0.02253462, -0.004356877, 0.0010203902, 0.019313421, -0.042756584, -0.001337864, -0.016876874, 0.021075444, -0.020359622, -0.01613352, -0.028990781, 0.00683128, 0.03427685, 0.019051872, -0.030642679, 0.038681906, 0.023952497, 0.013559316, -0.016945703, -0.0017775093, -0.0028684493, 0.020125605, 0.01679428, 0.008961538, 0.027462777, -0.025246482, 0.043417342, -0.013304649, -0.0073027587, -0.040526524, -0.035873685, 0.030174641, 0.03804868, -0.024461832, -0.02614126, -0.016987002, 3.0628912E-4, 0.0042639575, 0.007887805, 0.016587794, 0.001985717, 0.028192366, 0.0022593124, 0.0087757, 0.017633993, 0.022121646, 0.013201405, 0.024393003, -0.005650862, 0.0029906207, -0.0028185481, -0.010124749, -0.011652753, -0.009670476, 0.0066729733, 0.0070825056, 0.022328133, 0.0142476065, -0.012189619, 0.0015951125, -0.003823452, -0.00989073, 0.027600436, -0.020359622, 0.014701878, 0.02063494, 0.02483351, 0.019299656, -0.013683208, -0.017138425, -0.014151245, -0.012967386, 0.028908188, 0.04082937, 0.049116384, -0.0066764145, 0.00419857, 0.01722102, -0.01987782, -0.0034380094, -0.0031592518, -0.015004725, 0.0063150623, -0.0030542875, 3.46296E-4, -0.6404953, -0.026760722, -0.021116743, -0.0048283553, 0.0015409096, 0.0045461566, 0.005657745, 0.012733368, -0.026870849, -0.010069685, -0.009532819, 0.008865178, 0.009759954, -0.004824914, -0.018983042, -0.009546584, 0.0054684654, -0.023401866, -0.0029527647, -0.0030628913, -0.02063494, 0.0149634285, 0.016697919, 0.030807868, 7.49591E-5, -0.0035378113, -0.018157095, -0.02476468, 0.005275744, 0.015266276, -0.006724595, 0.0112741925, 0.015830673, 0.023511993, 0.034029067, -0.017110894, -0.0049866624, 0.053934418, 0.03342337, 0.021818798, -0.012389223, -0.010971345, -8.745587E-4, 0.0031110714, -0.009436458, 0.022314368, 0.0143714985, 0.010544606, -0.00685537, -0.013036216, -0.01105394, 0.001193323, -0.023401866, -0.0146055175, 0.010971345, 6.895807E-4, 0.017881779, -0.023993796, 0.034139194, -0.0020906813, 0.0021199337, 0.013586848, 0.017689057, -0.0053411317, -0.010702912, 0.026031135, 0.008424671, -0.0025931331, 0.02345693, -0.022507088, 0.008699988, 0.019368485, -0.0041882456, -9.885568E-4, -0.0042020115, 8.698267E-4, 0.032019258, 0.0014325039, -7.201236E-4, 0.013173874, -0.0034620995, -0.011494446, -0.004367201, 0.024943635, 0.0138071, -0.012458052, -0.0191207, 0.008596744, 0.016505199, 0.010620317, 0.0067899823, 0.015527826, 0.009656711, 4.3512843E-4, -0.0051277615, 0.019244593, -0.012134556, 0.0010892192, 0.0430319, -0.059688523, -0.013153225, -0.021997754, 0.010014622, -0.0041744797, 0.015693016, 6.6247926E-4, -0.010062803, -0.0059365025, 0.03372622, -0.007977283, -0.01205196, -0.009980207, -0.0136556765, -0.023897434, -0.016656622, -0.022617215, 0.013015567, 0.021736203, 0.0106684975, 0.0019530234, -0.0017912751, 0.0044394718, 0.010000856, -0.013153225, 0.0035687846, 0.03612147, -0.009305683, 0.016918173, 0.022920063, -0.0014789635, -0.011673401, -0.021502184, 0.017812949, -0.027283821, 0.0022094115, -0.0058573494, 0.02115804, -0.002405574, 0.0013490487, -0.010785507, -0.020813895, -0.01105394, -0.014426562, 0.005733457, -0.0070274426, -0.026099963, -0.03391894, -0.008617393, -0.008686222, -0.0033726217, -0.0164639, 0.01302245, -0.012499349, 4.6287515E-4, 0.008032346, -0.0070171184, -0.014770707, -0.017620228, 0.0077914447, -0.02466832, -0.0016252252, 0.018611366, -0.004422264, -0.0061739627, 0.02253462, 0.0018773114, 0.0012268772, 0.011164066, -0.015211212, -0.018005671, 0.022892531, -0.0010634083, -0.011343022, 0.021598546, -0.016229883, 0.030064514, -0.007701967, 0.01466058, -0.0063081793, -0.0022025285, 0.0061636386, 0.007640021, -0.03890216, -0.009842549, 0.012850378, 0.034139194, 0.0010831966, 0.0015589772, -0.001525423, 0.0070756227, -0.005268861, -0.010166045, -0.018294752, -0.0011941835, -0.006906992, 0.037800897, 0.016739218, 0.005657745, -0.0019599062, 0.0034362886, 0.036286656, 0.03000945, -0.01577561, 0.015569123, -0.002212853, -0.043252155, 0.010035271, -0.029596478, 0.019423548, -0.011783527, 0.008218184, -0.018680194, -0.006524991, -0.006845046, -0.0039886413, 0.04966702, -0.008961538, 0.02410392, -0.0036066405, -5.833259E-4, 0.004050588, -0.016780514, 0.012458052, -0.0038716323, -0.011349904, 0.008569213, 0.002806503, -0.0021509067, -0.0010384577, -0.00898907, -0.0025742052, -0.01031747, 0.012285979, 0.018212158, -0.0017706264, -0.011900537, 0.021571014, 5.372965E-4, 0.04473886, -0.014633049, -0.0150873205, 0.020497281, 0.025742052, -0.023773542, -0.007288993, -0.01613352, 0.012423637, 0.031441096, 0.0058745565, 0.052007206, -0.0351028, 0.03598381, -0.018776556, 0.009519053, 0.006834721, -0.021392059, 0.0054237265, 0.025425438, 0.034607228, 0.008032346, -0.0013197964, -0.0037167668, 0.015101086, -0.005420285, 0.02715993, 0.001572743, -0.0056921598, -0.009312565, -0.008906474, -0.023718478, -0.021199336, -0.025590628, -0.0074541825, -3.4522053E-4, -0.013277117, -0.014935897, -0.0039817584, 0.0037890372, 0.025232717, 0.010971345, -0.027077336, -0.030973058, 0.020098073, 0.008252599, -0.015004725, -0.023828605, -0.014178777, -0.008190653, -0.04008602, 0.0026361514, -0.0073165246, 0.024186516, -0.019574972, -0.008816997, -0.02364965, -0.006906992, 0.021777501, -0.0140755335, 0.021116743, 0.024530662, 0.0036685865, 0.0078120935, -0.004955689, -0.017165957, 0.021860095, -0.019561207, 0.010751092, 0.0033003513, 0.0074954797, -0.010785507, 0.00818377, 0.0021113302, -0.029596478, 0.02033209, -0.024998698, 0.0015047743, -0.013325297, 0.019657567, -0.0022197359, -0.024227813, -0.018280987, -0.022837467, -0.032982863, 0.005144969, 0.069214456, 0.048097715, -7.8981294E-4, -8.99079E-4, -6.264516E-5, -0.004405057, -0.011948717, -0.012829728, -0.011549509, 0.0035378113, 0.02046975, -0.01764776, 0.027738094, 0.0021078887, 0.027655499, -0.005778196, 0.014977194, 0.004976338, -0.006717712, -5.768732E-4, -0.014206309, -5.127224E-5, 0.010455128, 0.029871793, -0.007853391, -0.020511046, 0.020676237, 0.010930047, 4.6072423E-4, -0.0050451667, -0.012471817, 0.014935897, -0.0015839278, 0.0032951892, -0.007908454, 0.0079910485, 0.024613256, 0.0026481964, 0.024847275, 0.018845385, 0.0050899056, -0.0070825056, 0.009023484, 0.0020786363, 0.010193577, -0.03444204, -0.008218184, 0.013752038, 0.032487296, -0.018046968, 0.013683208, 0.0036307306, -0.032762613, -0.005967476, 0.022686044, 0.0021182129, -0.012671422, -0.011659635, -0.022782404, 0.0036513794, 0.007894688, -0.047436956, 0.016491432, 0.0014617562, 0.0071651004, -0.025480501, -0.028412618, -0.025053762, -0.027283821, 0.029568946, 0.010358767, -0.028715465, -0.013049982, -0.0068897847, 0.0025311871, -0.003002666, 0.021543482, -0.0074954797, -0.002882215, 0.020855192, -0.02948635, -0.026196323, 0.01852877, -0.015004725, -0.009326331, 0.0036548208, -0.007626255, 0.009505287, -0.016009629, 0.004105651, -0.002231781, 7.863715E-4, -0.010716678, -0.008190653, 0.039039817, 0.0037133254, 0.020180667, -0.0031282788, 0.013228937, 0.0017241669, 0.01987782, -0.037277795, -0.009574116, 0.009305683, -0.017289849, -0.0050348425, -7.4765517E-4, -0.0012896837, -0.0180745, -0.020015478, -0.023140315, -0.017138425, -3.5683543E-4, 0.019506143, 0.009057898, -0.0027479986, 0.02092402, 0.015899504, 0.0029527647, 0.009753072, -1.1959042E-4, 0.003802803, 0.012279096, 0.028247429, 6.7194324E-4, -0.002374601, -0.0136556765, -0.035267986, 0.011556392, 0.024984933, 0.006882902, 0.007151335, -0.02791705, -0.0062840893, -0.030807868, -0.017606463, 0.017785417, -0.0059296195, 0.0035274872, 0.012107024, -0.012079492, -0.008404023, 0.012182736, -0.011157184, -0.003245288, -0.031110715, 0.0065594055, -0.009532819, 0.0070962715, 0.025150122, -0.0054925554, 0.011294842, -0.03906735, -0.017413741, -0.012389223, -0.028853124, -0.026333982, -0.007894688, 0.030862931, 0.009388278, 0.03391894, 0.005193149, 0.04542715, 0.0012630124, 0.008190653, 0.02649917, -0.0021973664, -0.0017689057, -0.028467681, 0.01205196, 0.0392876, 0.0066282344, 0.011095237, 0.014633049, -0.014577986, 0.033808812, 0.013318415, 0.0077983276, 0.0071719834, -0.023277974, -0.02030456, 0.0042536333, -0.03050502, 0.0062324675, -0.031743944, -0.009787486, 0.025865944, -0.027104866, -0.006524991, 0.0027084218, 0.031386033, -0.016229883, 0.014233841, -0.01774412, -0.004305255, -0.01994665, -0.020359622, -0.02545297, 0.0058332593, 0.0013696974, -0.034166723, 0.0069207577, -0.001717284, -0.030587615, 0.0019495819, 0.03463476, -0.029926857, -0.044491075, 0.011707815, -0.0034793068, -0.001522842, -0.029266099, -0.019932883, -0.033395838, -0.010764858, 0.0091267275, -0.0025105383, 0.0037924787, -0.020621173, -0.027545372, 0.022892531, -0.008204419, 0.029954389, 0.010537722, 0.04589519, 0.01551406, 0.0065834955, -0.039205007, 0.032955334, -0.012864144, -0.007612489, 0.040884435, 0.039397728, -0.02768303, -0.020676237, 0.0063150623, -0.013862164, -0.030284768, -0.0050520496, 0.016931938, 0.013332181, 0.018473707, -0.025425438, 0.0031885041, -0.04027874, 0.030257236, -3.2951892E-4, 0.022548385, 0.014206309, -0.018060734, -0.010813039, 0.010634083, 0.008569213, -0.015734313, 0.02099285, -0.02932116, 0.011873005, -0.02263098, -8.99079E-4, -0.01430267, 0.0075987233, 0.02194269, -0.037112605, 0.004129741, 0.008190653, 0.008362725, -0.0021440238, 0.0032865854, 0.0057506645, 0.027903283, -0.012299745, 0.0030284766, 0.0070962715, 0.006924199, 0.003954227, 0.029844262, -0.013917227, -0.018322283, -0.016408838, -0.010558371, 0.020249497, 0.020442218, -0.0038957223, -0.009519053, -0.011205364, -0.012698953, 0.0030973058, -0.017991904, 0.015830673, -0.029403755, 5.1793834E-4, -0.021116743, 0.008734402, 0.0042123357, -0.012630125, 0.012471817, 0.006008773, 0.0050038695, -0.017702824, 0.00647681, -0.018267222, -0.0053170417, -0.025769584, -0.009897613, -0.0049728965, -0.019685099, 0.0016691036, -0.021997754, 0.004879977, -1.280865E-4, 0.0015030536, -0.016987002, -0.0035343699, -0.02082766, -0.010262406, 0.02272734, -0.01121913, -0.008982186, 0.017854247, 0.03466229, -0.0013008685, -0.014550454, 0.017964372, 0.013366595, 0.01823969, -0.02253462, 0.020868957, 4.265248E-4, -0.017372444, -0.007915337, 0.028660402, 0.026554234, -0.0026292684, 0.0032986307, -0.024062624, -0.017868012, -0.0019254917, 0.032184448, -0.015734313, -0.0074954797, 0.04473886, 0.021873862, 0.026444107, 0.016684154, -0.012086376, -0.004780175, -0.006032863, -0.027380183, -0.028687933, 0.0028598455, -0.016408838, -0.0014333642, -0.004962572, -0.008046112, -0.023924965, 0.002381484, -0.03529552, -0.024379238, -0.0062496746, 0.022603448, 0.039370198, 0.021144275, -0.011776645, 0.017276082, -0.017620228, 0.008204419, -0.006015656, -0.0023642767, 0.023663417, -0.0033123964, 0.021763735, 0.028219897, -0.028412618, -6.302157E-4, 0.017138425, 0.023773542, 0.006060395, 0.024186516, -0.014165011, -0.014880833, -0.0029097467, 0.0043155793, 0.012389223, -0.015651718, 0.0142476065, -0.021708671, -0.010696029, 0.007984166, 0.029211035, 0.0036376135, 0.0078671565, 0.013318415, -0.024984933, -0.008218184, -0.030036982, -0.018267222, -0.0037959202, -0.022231773, 0.03603887, -0.0014824049, -0.0018635456, 0.030284768, 0.010606552, 0.0025019348, 0.006056953, -0.0013146342, -0.017592696, -0.01833605, 9.174962E-6, 0.0067968653, 0.014316435, -0.02227307, 0.010406948, -0.012368574, -0.01200378, -8.139031E-4, -0.006005332, -0.011659635, 0.02810977, 0.029734135, -0.046721138, 1.5153138E-4, -0.0014428282, -0.0050210766, -0.009388278, 0.0015779051, -0.0067142705, -0.022878764, -0.022465792, -0.017868012, -0.0040815608, -0.024200283, -0.019602504, -0.028770529, -0.020070542, 0.017110894, 0.17675291, -0.0042088944, 0.027270056, 0.042811647, -5.1594874E-5, 0.01430267, 0.025232717, 0.033478435, -0.0032418466, 0.0033141172, -0.0140755335, 0.006679856, -0.007137569, 3.409187E-5, -0.022975126, 4.6502604E-4, -0.03496514, -0.021694906, 0.004047146, -0.03168888, -0.010523956, 0.0027497192, -0.016229883, -0.02512259, 0.020497281, 0.028990781, -0.00438785, -0.0053170417, 0.029899325, -0.0058470247, -0.018363582, -0.009987091, -0.023043955, 0.01307063, -0.013373478, -0.0038922809, -0.0015830674, -0.0023384658, 0.028274959, 0.012031312, 0.0033296037, -0.018872917, 0.0039129294, -0.02649917, -0.0045977784, 0.022424493, -0.033478435, 0.01084057, 8.2680857E-4, 3.897443E-4, -0.031165779, 0.0041022096, 0.020786364, 0.006851929, 0.0021474652, -0.0025776466, 0.007701967, 0.0012896837, -0.016739218, -0.0053548976, 0.011232896, 0.027861986, -0.024819743, 0.007275227, -0.0058814394, 0.013359712, -0.032872736, -0.017372444, 0.019313421, -0.034331914, 0.0019358161, -0.013339063, -0.008541681, -3.2844345E-4, -0.013855281, -0.010764858, -0.005585475, -0.0031867835, 0.01238234, 0.015114852, -0.025645692, -0.02322291, 0.01679428, -0.013187639, -0.011749113, -0.008617393, 0.013469839, -0.022906296, -0.022176709, -0.008755051, -0.018515006, -0.028522745, -0.0046769315, -0.006586937, -0.009594765, -1.0066244E-4, 0.052172393, 0.034689825, 0.0051346445, -0.014206309, -0.02165361, 0.019161997, 0.030092046, -0.004267399, -0.013813984, -0.022231773, 0.0045014177, 0.018322283, 0.020538578, -0.012175853, -0.0053480146, -0.03237717, -0.008404023, -0.011645869, -0.008252599, 0.01722102, 0.009415809, -0.02830249, 0.015569123, -0.014509156, 0.0047595263, -0.027724328, 0.013621262, 0.006521549, -0.0144953905, -0.021199336, -0.018308518, 0.0075918403, -0.004818031, -0.033340774, 0.016656622, -0.017372444, -0.009216205, 0.0037270912, -0.003221198, 0.021887626, 0.030532552, -0.0074954797, 0.020483516, -0.0033261622, 0.024420535, -0.02893572, -0.004391291, -0.0014996122, 0.0015185402, -0.028164834, 0.013586848, 0.007674435, -0.013373478, -0.03306546, -0.02023573, -0.029293628, 0.009147376, -0.0036582623, 0.0398933, -0.008369609, -0.028880656, -0.037828427, -7.042069E-4, 0.011714699, -0.02810977, 0.026650595, 0.0014333642, -0.0014144363, -0.018845385, 2.1874721E-4, -0.17719342, 0.014949663, 0.01031747, -0.040058486, 0.01344919, 0.02066247, 0.024461832, 0.010269289, 0.0031196752, -0.01207261, 0.0147294095, -0.010186695, -0.030036982, 0.010042153, -0.012024429, -0.0079910485, -0.0028977017, 0.037580643, 0.026058666, -0.006962055, 0.03568096, -0.006084485, -0.009147376, -0.001102985, 0.001105566, 0.010269289, 0.0062324675, -0.002601737, 0.012292862, -0.024998698, -0.04091197, 0.003403595, 0.0052860687, 0.014839536, -0.004769851, 0.008424671, -5.867674E-4, -0.0068278383, -0.0042261016, -0.02682955, 0.023842372, 0.01679428, 0.02194269, 0.013586848, 0.018556302, 0.028123535, 0.01607846, -0.02210788, 0.0070962715, -0.016987002, 0.0073853536, -0.031386033, 0.004807707, -0.0017671849, 0.009925144, 0.027022272, -0.008170004, -0.008445321, 0.008713754, -8.573514E-4, -0.036644567, 0.009615414, 0.011749113, -0.015486529, -0.0063081793, -0.020194434, -0.0053342488, 0.0030938643, -0.03975564, 0.02614126, -0.028908188, 0.02893572, 0.005747223, 0.005237888, -0.011081472, 0.0031919456, -0.03683729, 0.010544606, -0.0060879267, 0.014109949, -0.026802018, 0.057981562, 0.0048903017, 0.016615324, 0.003947344, 0.006793424, 0.007357822, -0.0014824049, -0.0045599225, -0.01980899, 0.021502184, -0.011377436, -0.014357733, -0.0019203295, -0.0011873005, 0.014343967, 0.009642946, 0.01259571, -2.4154683E-4, -0.013270235, -0.021639843, -0.018693961, -0.010847453, 0.018804086, 0.027559139, 0.019038105, 0.010985111, 0.009539702, 0.019533675, 0.011976249, -0.013380361, -0.0077363816, 0.01774412, 0.009808135, -0.020263262, 0.014536688, -0.009333215, -0.022754872, 0.00680719, 0.014261372, 0.034579698, -0.014867067, -0.019313421, 0.008603627, 0.005946827, -0.012313511, -0.094708726, 0.013738272, 0.016780514, 0.036176533, -0.021336995, 0.049639486, -0.00528951, 0.021901393, -0.015224978, 0.0308354, -0.014082417, -0.029513882, -5.4374925E-4, 5.118486E-6, 0.014674346, -0.010613434, -0.015280042, -0.007763913, 2.4778445E-4, 0.04405057, -0.007942868, -0.014426562, -0.0067899823, -0.0068897847, -0.022603448, 0.007254578, -0.03119331, 0.016505199, -0.0013481884, 0.00892024, 0.0142476065, -0.022865, 0.021075444, -0.03532305, -0.01774412, -0.015871972, -0.021887626, -0.031220842, 0.02699474, -0.034717355, 0.002957927, 0.013765804, 0.015073555, -0.015803142, 0.0025432322, -0.005533853, -0.03807621, 0.026292684, -0.0033829461, -0.035075266, 0.0069895866, -0.0036513794, -0.025384141, -0.019285891, 0.02775186, 0.0061739627, 0.02483351, 0.005582033, 0.0050107525, -0.0074817142, -6.921618E-4, 6.964636E-4, -0.023099018, 0.01672545, 0.011074589, 0.0019100052, 0.005557943, -0.0082870135, 0.017537633, -0.016243648, -0.012650773, 0.023539523, -0.041159753, -0.013490487, -0.014288904, 0.010785507, -0.012086376, -0.012829728, -0.0027910166, -0.030670209, -0.0013843236, -0.030917995, -0.01439903, -0.012740251, -0.006948289, 0.0036754694, 0.015789377, 0.011177832, -0.024750914, -0.03804868, 0.0042949305, 0.0223419, -0.002156069, -0.0069517307, -0.0013051702, 0.04126988, 0.0073647047, -9.481197E-4, -2.245009E-6, 0.002006366, -0.011976249, -0.008108058, -0.07048091, 0.01833605, 8.6681545E-4, 0.0058504664, -0.0108543355, -0.008431555, 0.009505287, 5.067536E-4, -0.003465541, 0.028825592, 5.0589326E-4, 0.026650595, -0.012485583, -0.0077363816, -0.016808046, 0.013469839, -4.2372863E-4, 0.0015589772, -4.3770953E-5, 0.0038062446, -0.017441273, -0.013160108, 0.021336995, 0.015637953, 0.006779658, 0.027724328, 0.013201405, 0.019038105, -0.004955689, 0.006005332, 0.024682086, -0.027380183, 0.0066832975, -0.0026550794, -0.0147294095, -0.0164639, -0.0042020115, -0.0066144685, 0.027889518, 3.9065842E-5, -0.011824825, -0.021447122, 0.008782582, -0.019230828, -0.0023763217, 0.008844528, -0.018404879, -0.0030560084, 0.02331927, 0.007337173, 0.036534443, 0.012719602, -0.010427596, -0.018308518, 0.007571192, -0.019987946, 0.046060376, 0.015307574, 0.004811148, -0.0057541057, 0.03408413, -0.002844359, 0.022947595, -0.019409783, 0.009787486, 0.009684242, -0.0015598376, 0.012898558, 0.008741285, -0.020813895, 0.011067706, -0.003384667, 0.009415809, 0.041545194, 0.0079704, 0.012932972, 0.0010100658, -0.003190225, 0.0024657995, 0.012685188, 0.020772597, -0.0021216543, -0.021818798, 0.009388278, 0.00806676, 0.012396106, -0.0078052105, 0.013166991, 0.018776556, 0.012960504, -0.009794369, 0.0028804943, 0.0073715877, 0.005196591, 0.006043188, 0.0132358195, -0.0065077837, -0.019299656, -0.011590807, 0.04066418, -0.004398174, -0.006304738, -0.015858205, -0.017702824, -0.020552345, 0.004787058, -0.016615324, -0.009987091, 0.021268167, 0.023277974, 0.030725272, 0.008280131, -0.012079492, 0.004442913, -0.03237717, 0.0021268167, -0.0037064424, -0.019671332, -0.0025862502, 0.031578753, -9.618855E-4, 0.0012277375, 0.026058666, -0.009759954, 0.056770172, 0.004105651, 0.012740251, -0.020524813, -0.002054546, 5.6439795E-4, -0.0078120935, 0.01764776, -0.0164639, 0.016587794, -0.0021233752, -0.019464847, 0.0025638808, 0.031771474, -0.016587794, 0.06789294, 0.016601559, 0.011873005, 0.011762879, -0.003033639, 0.005120879, 0.012946738, 0.016353775, -0.033203118, -0.020208199, -0.011136535, -0.012733368, 0.0074748313, -0.032790143, 0.0020528254, 0.014577986, 0.011783527, 0.015224978, -0.020813895, -0.016821811, -0.0146055175, 0.0119556, 0.027930815, 0.014839536, 0.019850288, -0.008927124, 0.02965154, -0.0144953905, -7.2958757E-4, -0.04168285, 0.0036238476, -0.014536688, -0.005564826, 0.0013395847, 0.038571782, 0.0015968332, -0.0034982348, -5.1535724E-4, 0.014426562, 0.010351884, -0.016918173, -0.0057747546, -0.031799007, 0.003627289, 0.02046975, -0.0062393504, -0.0047079045, -0.028357554, -0.029293628 ], + "id" : "6667502c-f6fa-4a64-8cfa-43d77542c5d7", + "metadata" : { + "source" : "movies.csv" + } + }, + "5bb07a3b-3f0f-4d2c-a08f-2b7ee04b82b1" : { + "text" : "10530,Pocahontas,Adventure-Animation-Family-Romance,en,Pocahontas daughter of a Native American tribe chief falls in love with an English soldier as colonists invade 17th century Virginia.,45.907,Walt Disney Pictures-Walt Disney Feature Animation,6/14/95,55000000,346079773,81,Released,An American legend comes to life.,6.935,5097,Irene Bedard-Mel Gibson-David Ogden Stiers-John Kassir-Christian Bale-Judy Kuhn-Billy Connolly-Frank Welker-Russell Means-Linda Hunt-Danny Mann-Joe Baker-Michelle St. John-James Apaumut Fall-Gordon Tootoosis-Jim Cummings-Charlie Adler-Debi Derryberry-Phil Proctor,culture clash-forbidden love-colony-musical-gold rush-princess-native american-colonisation-virginia-star crossed lovers-intercultural relationship-based on myths legends or folklore-17th century-shamanism-animal sidekick,/kZ1ft0QZ4e3zDUPMBftEkwI9ftd.jpg,/9YAVIwBcBrLXeukg2dgMGfYB1uu.jpg,10545-37135-10693-10340-10882-10144-10674-10895-12230-3170-13761-9325-11224-10112-11970-11360-408-12092-10948-11544-11886\r\n8871,How the Grinch Stole Christmas,Family-Comedy-Fantasy,en,The Grinch decides to rob Whoville of Christmas - but a dash of kindness from little Cindy Lou Who and her family may be enough to melt his heart...,106.655,Universal Pictures-Imagine Entertainment-LUNI Productions GmbH and Company KG,11/17/00,123000000,345823040,104,Released,He puts the mean in green.,6.74,6727,Jim Carrey-Taylor Momsen-Jeffrey Tambor-Christine Baranski-Bill Irwin-Molly Shannon-Clint Howard-Josh Ryan Evans-Mindy Sterling-Bryce Dallas Howard-Lacey Kohl-Rachel Winfree-Rance Howard-Jeremy Howard-T.J. Thyne-Nadja Pionilla-Jim Meskimen-Michael Dahlen-David Costabile-Mary Stein-James Ritz-Deep Roy-Jessica Sara-Mason Lucero-Ben Bookbinder-Michaela Gallo-Landry Allbright-Reid Kirchenbauer-Rebecca Chace-Suzanne Krull-Steve Kehela-Lillias White-Rain Pryor-John Alexander-Kevin Isola-Gavin Grazer-Walter Franks-Verne Troyer-Clayton Martinez-Q'orianka Kilcher-Caroline Williams-John Short-Grainger Esch-Eva Burkley-Rick Baker-Bill Sturgeon-Mark Setrakian-Jurgen Heimann-Tim Blaney-Charles Croughwell-Frank Welker-Anthony Hopkins,holiday-based on novel or book-christmas party-new love-santa claus-village-thief-surrealism-public humiliation-christmas-surreal world,/1WZbbPApEivA421gCOluuzMMKCk.jpg,/sy0vo1cmpKqwPRiMUiJ45jyLsX7.jpg,854-772-310-10719-1624-17979-771-11774-5255-1593-10555-58224-360920-118-8839-10201-8467-18360-3049-8844-10137", + "embedding" : [ 0.0037197445, -0.01510624, -0.0028959198, -0.0027889728, -0.00452853, 0.027725967, 0.008916692, -0.013702563, -0.0120716235, -0.031281948, 0.021790417, 0.02616187, 0.005775129, -0.00400048, -8.188117E-4, 0.02388925, 0.024423983, -0.037725497, 0.0019217009, -0.035987608, -0.010200054, 0.011556942, -0.018087383, 0.012105045, -0.006289811, 0.010594421, 0.03160279, -0.021843892, 0.011068997, -0.021937469, 0.019103378, -0.009992844, -0.0072523323, -0.021108631, -0.023849145, -0.014010035, -0.0039937957, -0.027832914, 0.01965148, 0.004194321, 0.004501793, 0.0043313466, -0.031682998, 0.008809745, -0.005006449, 0.017258545, -0.011035576, -0.0030697084, -0.007466226, 0.0250924, 0.020680845, 0.032458365, -0.0013126053, -0.024063038, -0.004969686, -0.0068713343, -0.0123523595, -0.0057617608, 0.0020654108, -0.003317023, 0.03232468, 0.004648845, -0.012031519, -0.0051033692, -0.031469107, -0.0051635266, -0.0040105064, -0.016523287, 0.015480555, -3.6136332E-4, 0.028394384, 0.023421356, 0.016884232, 0.028073544, 0.02518598, -0.027311549, -0.0324851, -0.005541183, -0.008575799, 0.0032919573, 0.011122471, -0.013181197, -0.0031482475, 0.015280029, 0.023929354, 0.042618312, -0.0069649126, 0.02411651, -0.03435667, 0.006654098, 0.009177376, 0.03096111, -0.004120795, 0.0066206777, 0.019691586, 0.009464795, -0.00670423, 0.018461697, -0.0093779005, -0.041949894, 0.0038032967, 0.015480555, 0.006637388, -0.008843167, -0.0040105064, 0.013715931, 0.0044082147, -0.019517798, 0.023514936, 0.008121275, -0.010213423, -0.0048794495, 0.027231338, -0.032378156, -0.013568879, -0.019598007, -0.0034590617, 0.0065504937, -0.0017111494, -0.02712439, 0.018715696, 0.027512074, -0.011389838, -0.030265953, 0.017164966, 0.018902853, -7.7327574E-4, 0.0014939136, -0.008141328, -0.015440449, 0.028367648, -0.018969694, 0.0073927, -0.007132017, -0.021416103, 0.039329696, -0.031870157, 0.007773698, -0.027725967, -0.014384349, 0.040345695, 0.024998823, 1.613602E-4, -0.030479848, -0.0155340275, -0.00987253, 0.018515171, -0.0026653155, 0.025720714, 0.009879214, 0.021162104, 0.013929825, 0.010447369, 0.025453346, 0.006563862, 0.0049228966, 0.01868896, -0.008482221, 0.01576129, -0.012586306, -0.00657723, 0.0069983336, -0.022164732, -0.005551209, 0.009117218, 0.020707581, 0.013481985, -0.014317508, -0.0025500136, -0.006563862, -0.0179537, 0.016135603, -0.021910733, 0.013455248, 0.013261408, 0.012018151, -0.0013978286, -0.009645267, -0.03435667, -0.0053439997, -0.013822879, 1.1352657E-4, 0.0052704737, 0.023809038, -0.019718323, -0.0063366, 0.011911204, -0.015841499, 0.0043848203, -0.012613042, -0.008943429, 0.00657723, -0.0046555293, -0.022552414, -0.65109235, -0.018541908, -0.015440449, -0.031201739, 0.012619726, 0.014023404, 0.0073258583, -0.009110534, -0.042591576, -0.027151128, -0.015681079, 0.0332872, 0.02949059, -0.011724046, -0.01648318, -0.024597771, 0.01348867, -0.013702563, 0.033982355, -0.002905946, -0.023675356, 0.0072790687, 0.012338991, 0.013769405, 0.006269758, -0.005460973, -0.0022926726, -0.0060692327, -0.011530206, -0.003579377, -0.007513015, 0.015681079, 0.01909001, 0.013542143, 0.042324208, 0.011891151, -0.012365728, 0.045265246, 0.026255447, 0.025707345, -0.04053285, 0.0011973032, -5.2136584E-4, 0.008876587, 0.0022843175, 0.008649325, 0.010667947, 0.011349733, -0.0032401548, -0.004685608, -0.0064034415, -0.0014479599, 0.008722851, -0.0063633365, -0.018942958, -0.012038203, 0.02486514, -0.01868896, 0.025226085, 0.009324427, -0.020400109, 0.014798768, 0.009210796, 0.01388972, -0.03451709, 0.040345695, -0.014932452, -0.019103378, 0.016750548, -0.03745813, 0.0073392265, 0.004127479, -0.010166633, 9.666991E-4, -0.0055311564, 0.01251278, 0.017004546, 0.011824309, 0.00460874, 0.011269523, -0.0064602573, -0.011470048, 0.0077068564, 0.006747677, 0.030319428, 0.005066606, -0.01950443, 0.012686568, 0.015681079, 0.0071988585, 0.006630704, 0.01771307, 0.008803061, 0.003208405, -0.010220107, 7.398549E-4, -0.019076642, -0.0076466985, 0.005738366, -0.046655558, -0.0020052532, -0.023354515, -0.0011012182, -0.006593941, 0.013107671, 0.005387447, 0.002568395, -0.013796141, 0.02842112, -0.023728829, -0.008796377, -0.004488425, -0.006303179, -0.01949106, -0.009077112, -0.025774186, 0.01859538, 0.007432805, 0.0079207495, 0.002792315, 0.009418005, -7.532232E-4, -0.010948682, -0.02299357, 0.0036662712, 0.023020307, 4.5911942E-4, 0.0053373156, 0.002899262, -0.00336047, 0.021469576, -0.0044316095, 0.0012349017, -0.019103378, -0.0012424215, -0.0033922198, 0.0190098, 0.0095049, 0.021335894, -0.0016651957, -0.031041319, -0.004180953, 2.7175358E-4, -0.0029293406, -0.0019016484, -0.026389131, -0.029062802, -0.017004546, -0.015908342, 0.0036863238, -0.016763916, -0.017365493, 0.007974223, 1.9885426E-4, 0.015386975, 0.012786831, -0.011744099, -0.0030262612, 0.028688489, -0.018782537, 0.024423983, 0.016937705, 6.759374E-4, -0.0091038495, 0.028528068, -0.008107907, -0.015199819, 0.007954171, -0.015988551, -0.020159477, 0.004628793, -0.0018648854, -0.014919084, 0.022712834, -0.010841736, 0.037244234, -0.0168976, -0.0039503486, 9.05706E-4, -0.0077269087, -0.0016426365, 0.003729771, -0.01608213, -0.006904755, 0.025961343, 0.016550023, 0.008769641, -0.011603732, -0.013622353, 0.0016025314, -0.005053238, -0.0078004347, -0.0105543155, -0.009150638, 4.5786615E-4, 0.02769923, -0.0054843673, 0.015386975, 0.022659361, 0.01421056, 0.029036066, 0.02526619, 0.0048827915, -0.015948446, 0.005835287, -0.040265482, 4.917048E-4, -0.027485337, 0.017726438, -0.014838873, 0.018662222, -0.0106946835, -0.010895208, -0.021228947, 0.0074528577, 0.018715696, -0.005962286, 0.002869183, -0.008021013, -5.2805E-4, 0.014544769, -0.0043447153, 0.013675827, 0.014330876, -0.025881134, -0.013796141, 0.013629037, -0.0151196085, 0.010360475, -0.009143954, -5.0298433E-4, -0.008983534, -0.018341381, 0.010935314, -7.649205E-4, 0.006757703, 0.02030653, -0.00558463, 0.030159008, -0.0018398197, -0.0026201974, 0.02600145, 0.021148736, 0.004675582, -0.034169514, 2.8345088E-4, 0.014745295, 0.019892111, -0.01518645, 0.04005159, -0.0068579656, 0.0154003445, -0.01336167, 0.022164732, -0.0058286022, -0.0047858707, 0.003283602, 0.02072095, 0.03387541, 0.023621881, 0.0076667513, -0.028394384, 0.007031754, 0.0027806177, 0.02014611, -0.007138701, -0.030987846, -0.010741472, -0.016042026, -0.018822642, -0.013274776, -0.020106005, 0.0027756046, 0.007031754, -0.015587501, -0.013635721, -0.010614473, 0.010748157, 0.0166436, 0.026081659, -0.011182629, -0.020694213, 0.018287908, 0.021349262, -0.020266425, -0.002414659, -0.034650773, -5.2220136E-4, -0.036121294, -0.012606358, -0.014317508, 0.018729065, -0.0033855357, 0.0072523323, -0.014384349, -0.0015966828, 0.011951309, -0.00808117, 0.027512074, 0.017699702, -0.011603732, 0.006761045, -0.019130114, -0.0076734354, 0.020694213, -0.017191704, 0.015600869, 0.0025349741, 7.8288425E-4, 0.001341013, -3.0997873E-4, -0.0017913595, -0.026201975, 0.010567684, -0.040693272, -0.0028792094, -0.0013735984, 0.0038266913, 0.025105769, -0.016563391, -0.022726202, -0.020493686, -0.02477156, 0.002682026, 0.07128006, 0.017031284, 0.0030062087, 0.010026266, -0.014477927, -0.004936265, -0.015520659, -0.021322524, -0.0038333756, -0.003545956, 0.018408224, -0.024063038, 0.037752233, 0.0017211756, 0.020212952, -0.0032384838, 0.006109338, -0.021589892, -0.021964205, -0.012218676, -0.025640503, -0.021803785, 0.01934401, 0.037164025, -0.00918406, -0.020774422, 0.034410145, 0.011971361, -0.0072790687, 0.009117218, -0.0068245446, -0.003285273, 0.00332872, 0.010220107, -0.0012424215, 0.008141328, 0.017378861, 0.008910008, 0.010093108, 0.002337791, 0.0020620686, 0.028848909, -0.0021439497, -0.019517798, 0.008996902, -0.013742669, -0.009531637, 0.0031549316, 0.040265482, -0.04117453, 0.021389367, 0.0048393444, -0.011389838, -0.006243021, 0.022953464, -0.007018386, -0.005029843, 0.008355222, 0.0064602573, 0.0056314194, 0.013241355, -0.05125427, 0.01096205, -0.00974553, 0.001769636, -0.0073459106, -0.017285282, -0.014611611, -0.005367394, 0.027806178, -0.015894974, -0.018140856, 0.0010268567, -0.0074929628, 0.010166633, 9.42469E-4, 0.028608277, -0.014504665, 0.014665085, 0.010407263, -0.015574133, -0.031789947, 0.0012507767, -0.0044349516, -0.0077603296, 0.013214618, -0.0076400144, 0.032698993, -0.015346871, 0.008168064, 0.0011922901, 0.0071988585, -0.017900227, -0.0069381758, 0.038955383, 0.021215579, 0.008903324, 0.014264034, 0.010634526, -0.01608213, 0.018902853, -0.013261408, -0.0036328502, -0.018541908, 0.006199574, -0.021897364, -0.008816429, 0.012151834, -0.022004312, -0.02558703, -0.016656969, -0.024664614, -0.0020654108, 0.0018281224, -3.1478296E-4, 0.0071854903, 0.0019684902, 0.010266896, 0.012185255, -0.0024296984, -0.0022057784, 4.5744836E-4, 0.004568635, 0.019424219, -0.022539046, 0.022592518, -0.018475065, -0.014277402, 0.0010101462, 0.021777049, 0.016616864, 0.0012424215, -0.026375763, 5.911319E-4, -0.018956326, -0.020373372, 0.013007409, 0.0028892355, -0.012191939, 0.009331111, -0.009117218, 0.00998616, 0.016991178, -0.016336128, -0.009625215, -0.024838403, 0.0064635994, -0.020106005, 0.02411651, 0.03686992, -0.00164013, -0.0052537634, -0.022378625, 0.0010811656, 0.0084488, -0.026669867, -0.034624036, -0.0123523595, 0.035399403, 0.010286949, 0.04168253, 0.005855339, 0.037832443, -0.0065204147, 0.008482221, 0.024477456, -0.024597771, -0.012472674, -0.039917905, -8.271669E-4, 0.012238728, 0.037244234, 0.011924572, 0.012392464, 0.001243257, 0.02054716, 0.0026703288, -0.00430461, -0.0018548592, -0.019303903, -0.009070428, 0.01312104, -0.022619255, 0.007506331, -0.0072991215, -0.010581052, 0.043366943, -0.0060324697, 0.0044349516, -0.00536071, 0.04136169, -0.007820487, 0.012452622, -0.013575564, 0.011483416, -0.014892346, -0.011804257, -0.020159477, -0.012733357, -0.0025784213, -0.014424454, 0.0048493706, 0.0051468164, -0.015614238, -0.015747922, 0.03719076, -0.03021248, -0.043580834, 0.019664848, 0.001811412, -0.014397717, -0.03654908, -9.575084E-4, -0.034062568, -0.0012825265, 0.012205307, -0.013629037, 0.009150638, -0.024958717, -0.034329932, 0.025520189, -0.0014170456, 0.034543827, 0.010500843, 0.05125427, -0.0016275971, 0.010079739, -0.031362157, 0.020293161, -0.01600192, -0.0076466985, 0.032378156, 0.013916457, -0.0011856059, 0.0050365273, 0.003398904, -0.0024698034, -0.04392841, -0.032057315, 0.011376469, 0.007158754, 0.02606829, -0.020854633, 1.9874983E-4, -0.018956326, 0.020186216, 0.002979472, 0.001489736, 0.01941085, -0.028367648, -0.026990708, 0.007031754, 0.004455004, -0.002870854, 0.009832424, -0.03200384, 0.023982827, -0.012873725, 0.0044616885, -0.0077536455, 0.0067677293, 0.01915685, -0.031549316, 0.017258545, 0.020426845, 0.015961815, -0.015734553, 0.0016902613, 0.01096205, 0.036709502, -0.001473861, 0.012853673, -0.0031114845, 0.024250194, 0.009164006, 0.0076065934, -0.035666768, -0.022057785, -0.04542567, -0.015961815, 0.028608277, -0.015146345, 0.0022425414, -0.008308432, -0.0058987862, -0.0026619735, 0.004221058, -0.0030680373, 0.01076821, -0.035666768, 0.018675592, -0.01084842, -0.008027697, 0.005507762, -0.011129155, 0.011236101, 0.0044683726, 0.0026268817, -0.015801394, 0.008047749, -0.012639779, -0.012118413, -0.034891404, -0.023407988, -0.010948682, -0.030132271, 0.0112494705, -0.032592047, -0.011978045, -0.0023177385, 0.00574505, -0.0031482475, -0.006667467, -0.011911204, 1.4726078E-4, 0.014370981, -0.019196957, -0.00483266, -0.0039403224, 0.03360804, 0.006146101, 9.299361E-4, 0.02802007, 0.0052972105, 0.032351416, -0.044463146, 0.00926427, -0.0017069718, -0.018087383, -0.0019233719, 0.0023829092, 0.012572937, 0.011837678, 0.003813323, -0.039757486, -0.014745295, 0.0016117222, 0.029116275, -0.024825035, -0.020680845, 0.031789947, 0.0103471065, 0.031014582, 0.032538574, -3.9436645E-4, -0.019103378, -0.005788497, -0.023648618, -0.021456208, 1.5122951E-4, 0.012359044, 0.014852242, 0.014504665, -0.0091038495, -0.033501096, 0.007539752, -0.049917433, -0.042324208, -0.0021623312, 0.005878734, 0.041522108, -0.0052805, -0.0038066388, 0.008589167, -0.011042261, 0.017325386, -0.03443688, -0.005327289, 0.009799004, -0.0047758445, 0.006289811, 0.033367414, -0.012018151, -0.008248274, 0.014825505, 0.02680355, -0.0018130831, 0.025894502, -0.023207463, -0.007172122, -0.02078779, 0.008990218, 0.009143954, -0.008094539, 0.026415868, -0.02469135, -0.014558137, 0.01344188, 0.013060882, -0.0048761074, -0.012379096, 0.0024781586, -0.020961579, 0.01246599, -0.018180963, -0.016068762, -0.010286949, -0.022619255, 0.011142523, -0.008508958, -0.013796141, 0.013308196, 0.007880645, -0.014116982, 0.008702799, -0.016202446, 0.012499412, 0.0010594421, -0.0024012907, 0.012773463, 0.029864904, -0.03403583, 0.01648318, -0.0064569153, -0.0072657005, 0.003283602, 0.030346164, -0.017499175, 0.036041085, 0.020079268, -0.050639328, 0.0023895933, -8.40953E-4, 0.0064034415, -0.018287908, -0.012084993, -0.03491814, -0.0024280273, -0.005059922, 0.0022809755, -0.028528068, -0.014277402, 0.0054943934, -0.011944625, -0.01251278, 0.023180727, 0.1705802, 2.0438961E-4, 0.014678453, 0.043661047, 0.005130106, 0.0068445974, 0.013742669, 0.036923394, -0.009197428, 0.02525282, -0.013615669, 0.0027806177, 0.0061628115, 0.0032050628, 0.0010251857, -0.008355222, -0.03695013, -0.023367884, -0.029249959, -0.034249723, -1.3169918E-4, -0.022619255, 0.0065471516, -0.022071153, 0.0038500861, 0.0021472918, -0.0052504214, 0.012058255, 0.022645991, -0.007319174, -0.023180727, -0.0038066388, -0.015306765, 0.005955602, -0.020734318, -0.0043480573, -2.5232768E-4, 0.010540947, -0.0025884476, -0.013227986, 0.007807119, -0.010788262, -6.6048023E-4, -0.020159477, -0.009270954, 0.047457658, -0.008488905, 0.0072189113, -0.015146345, 0.0050766324, -0.024811665, 0.0200659, 0.02038674, 0.012940567, -0.02624208, 0.005410841, 0.004120795, 0.0014655058, -0.00921748, 0.0014270719, 0.023688724, 0.039035596, -0.015079504, 0.017378861, -8.6643646E-4, 0.0190098, -0.029116275, -0.0069114394, -0.0015833145, -0.039570328, -0.0011998098, -0.022458835, -0.008027697, 0.014825505, 0.001657676, -0.018582013, 0.018568644, 0.020614002, 0.015587501, 0.001337671, -0.019638112, -0.024651246, -0.01648318, -0.014544769, -0.0034055882, -0.022164732, 0.028608277, -0.012726673, -0.002905946, -0.016830757, -0.013167829, -0.0056748665, -0.008054433, -0.0012474345, -0.015039398, 0.008127959, 0.021295788, 0.013375038, -0.0017345439, -0.0030630243, -0.018127488, 0.027806178, 0.03836718, 0.0012967304, -0.03443688, -0.0042076893, -0.0034022462, 0.009431374, 0.032618783, -0.0017161624, -0.0021122, -0.019785164, -0.0032618784, -0.0012516122, -0.0054977355, 0.021830523, 0.01348867, -0.024477456, 0.037297707, 0.0021840548, -0.023488197, -0.036682762, 0.017699702, 0.0155340275, -0.0061293906, -0.022244941, -0.0076868036, 0.012486042, 0.019771796, -0.021883996, 0.021389367, -0.032939624, 0.0046555293, -3.893533E-4, -0.013756037, 0.021349262, 0.017017916, 0.012499412, 0.0036562448, 0.003208405, 0.0048226337, -0.012933883, 0.014143718, 0.0091038495, 0.012893777, -0.027338285, 0.019049905, -0.009484847, 0.006751019, -0.035479613, -0.017231809, -0.01739223, 0.013508722, 0.02427693, 0.051842477, 0.0067677293, -0.021175474, -0.023875881, -0.024664614, 0.03368825, -0.022886623, 0.024236826, 0.01632276, -0.0028140387, -0.01990548, -0.014197192, -0.1703663, 0.021950837, -0.006690861, -0.026135132, 0.0054977355, 0.019477692, 0.019798532, -0.0021840548, 0.027458599, -0.03866128, 0.010634526, 0.0037264288, -0.03622824, -0.0072189113, 0.011423259, 0.010119844, -0.028447857, 0.030346164, 0.03045311, -0.003622824, 0.030800689, 0.024651246, -0.016108867, -0.007085228, 0.005541183, 0.0029176434, 0.010627842, 0.0029326826, -0.015480555, -0.01177752, -0.031469107, -0.012238728, 2.7593118E-4, 0.009123902, -0.0038667964, -0.007960855, -0.028367648, 0.005698261, 0.00430461, -0.0048827915, 0.019785164, 0.009270954, 0.029971851, 0.01396993, 0.002339462, 0.021335894, 0.004996422, -0.012780147, 0.017312018, -0.02404967, -0.0120783085, -0.024651246, 0.021215579, 0.0056247353, -0.009003586, 0.032271206, 3.4695058E-4, 0.0036094557, 0.012165203, -0.011851046, -0.012399148, -0.017566018, 0.005407499, -0.01624255, -0.005547867, -0.017325386, 0.0026920524, 0.025413241, -0.031870157, 0.015560764, -0.027458599, -0.0037832442, 0.01259299, 0.0029644326, 0.002830749, -0.021777049, -0.028822172, 0.0069381758, -0.0088899555, 0.028046807, -0.033100046, 0.038206756, -0.015453817, 0.010266896, 0.0064502307, -0.002708763, -0.007045123, -0.003245168, 0.002685368, -0.0021640023, 0.0096519515, -0.029864904, -0.016697075, -0.0048126075, 0.0056715244, 0.015306765, -0.0065103886, -0.012218676, 0.007994276, -0.016723812, -0.016282655, -0.02241873, 0.0051601846, 0.013548827, 0.03502509, 0.0067008873, 0.027645757, 0.012439254, 0.039196014, -0.0040539536, 0.014878978, 0.0024263563, 0.016817389, 0.009250901, -0.023060411, 0.03809981, -0.008114591, -0.011309627, -0.0023177385, 0.0068646497, 0.0359074, 0.0037164025, 0.0068646497, -0.012599674, 0.0014646703, -0.0043848203, -0.09630562, -0.0047457656, 0.008495589, 0.04339368, -0.028207228, 0.041147795, -0.019638112, 0.020413477, -0.0030028666, 0.028768698, 0.007914065, -0.015226555, 0.01859538, -0.009337796, 0.035051826, 0.011122471, -0.020039164, -0.0047424235, -0.01518645, 0.025627134, -0.0111091025, -0.022498941, -0.004969686, -0.020360004, -0.018662222, 0.01421056, -0.037164025, 0.014678453, 0.013415144, 0.027565546, 0.0059054703, -0.0051100533, 0.011483416, -0.031228475, -0.038554333, -0.015012662, -0.02981143, -0.014384349, 0.015627606, -0.04882123, 0.021549787, 0.004418241, 8.376109E-4, -0.010280265, 0.006610651, -0.004074006, -0.03243163, 0.027405126, -0.01486561, -0.036254976, 0.0052270265, -0.0054509463, -0.007987591, -0.01997232, 0.006677493, 0.01918359, 0.022405362, 0.003246839, 0.0012850331, -0.026295552, 0.0021439497, -0.0074127526, -0.030078797, 0.007446173, 0.017312018, -9.4664656E-4, 0.002533303, -0.014812136, 0.013535459, -0.008742903, -0.038875174, 0.01934401, -0.035452876, 0.005955602, -0.015453817, -0.0052002897, -0.04029222, -0.008388642, 0.019958952, -0.023969458, 0.0031549316, -0.03438341, 0.008996902, -0.005768445, 0.0065170727, 0.01380951, 0.018154224, 0.006797808, -0.028635016, -0.036014345, -0.008074486, 0.014665085, -0.002341133, -0.003579377, 0.0049997643, 0.042751998, 0.007078544, 0.004120795, -0.010006214, 0.013956562, -0.01592171, 0.007773698, -0.068125136, 0.019852007, -0.0055211303, -0.0063900733, -0.013047514, -0.0043747937, 0.011583679, -0.010200054, 0.016122235, 0.0011429943, -0.005701603, 0.020774422, -0.0048092655, 0.009010271, -0.0051401323, 0.00918406, -7.724402E-4, 0.008602536, -0.008194801, 0.0011045602, -0.018461697, -0.002115542, 0.024129879, 0.002082121, 0.0078004347, 0.016603496, 0.019544534, 0.032993097, -0.0029209855, -0.0027405126, 0.016336128, -0.013662458, -8.823114E-4, 0.01019337, -0.019424219, -0.009431374, -0.010507527, -0.0036261661, 0.032297943, 0.008228222, -0.015239924, -0.01843496, -0.0129071465, -0.027431862, 0.006527099, 0.019758428, -0.019798532, 0.015012662, 0.007519699, 0.0057216557, 0.03160279, 0.018328013, 0.011550258, -0.007506331, 0.01251278, -0.028581541, 0.050559115, 4.2778734E-4, -0.0013034146, -0.0033805226, 0.0332872, 0.007506331, 0.032618783, -0.019143483, -0.011483416, -0.014411086, 0.0109687345, -0.008716167, -0.008549063, -0.012780147, 4.9128704E-4, -0.014010035, 0.008796377, 0.022485571, 0.014397717, 0.014264034, -0.015427081, 0.015066136, 0.011530206, 0.025199348, 0.019878743, 0.0021740287, -0.035853926, 0.017418966, 0.0071453853, 0.018087383, -0.022137994, 0.013796141, -0.009819056, 0.027485337, -0.010133212, -0.014157088, 8.359399E-4, -0.0023862512, -0.008669377, 0.016910968, -0.008114591, -0.01819433, -0.0040138485, 0.027458599, 0.0017545965, -0.0021857258, -0.012572937, -0.02590787, -0.024958717, -0.01140989, -0.027565546, -0.025827661, 0.020533793, 0.012666516, 0.012084993, 0.005511104, -0.0055311564, -2.3645276E-4, -0.033928882, -0.002337791, -0.019584639, -0.015320134, -0.017178334, 0.03799286, 0.0024731455, 0.01072142, 0.03483793, -0.010988787, 0.038955383, 0.009164006, 0.015159714, -0.0383137, 0.013849615, 0.0019350693, 0.0036361923, 0.011864414, -0.02696397, 0.0016342814, 9.850806E-4, 0.0042745313, 0.017686334, 0.033420887, -0.016844125, 0.059676334, 0.021242315, 0.0039904537, 0.014504665, -0.0138763515, 0.01761949, 0.013836247, 0.011436627, -0.03307331, -0.009852477, 0.01421056, -0.0061728377, -0.0048360024, -0.025105769, -0.007914065, 7.778711E-4, -0.0014045127, -0.0028825514, -0.004899502, -0.012472674, 0.0084086945, -0.0072723846, 0.03192363, 0.004916212, -0.008749587, -0.025760818, 0.02697734, -0.007887329, -0.0125595685, -0.028314175, 0.020373372, -0.012967303, -0.004675582, 0.007078544, 0.019063273, -0.0047791866, -0.021643365, -0.007900697, 0.018207699, 0.012813567, -3.5718572E-4, 0.010634526, -0.022191469, 0.007900697, 0.024089774, 0.015039398, 0.0047390815, -0.020974947, -0.03478446 ], + "id" : "5bb07a3b-3f0f-4d2c-a08f-2b7ee04b82b1", + "metadata" : { + "source" : "movies.csv" + } + }, + "912aadaf-e7ad-4b6f-a5d9-4039d62a8a1f" : { + "text" : "895435,Be Somebody,Mystery-Comedy-Drama,zh,A group of filmmakers are gathered in a dark and windy night for preparation of shooting a film based on a sensational murder case. It's unrealized that they are placed in the real crime scene and the true murderer is among them.,2.535,�낍�_�_�_�_-Shanghai PMF Media-_��ΐ��_�ά�,11/11/21,40000000,927000000,123,Released,,7,20,Yin Zheng-Deng Jiajia-Yu Entai-Haoyu Yang-Chen Minghao-Zhang Benyu-Ke Da-Qin Xiaoxian-Deng Enxi,,/8z7IptdlKjox7BIiwNwSdSV68HP.jpg,/56RNLigrw1qPtxiohkFkXPRKrJO.jpg,902478\r\n121,The Lord of the Rings: The Two Towers,Adventure-Fantasy-Action,en,Frodo and Sam are trekking to Mordor to destroy the One Ring of Power while Gimli Legolas and Aragorn search for the orc-captured Merry and Pippin. All along nefarious wizard Saruman awaits the Fellowship members at the Orthanc Tower in Isengard.,74.211,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/18/02,79000000,926287400,179,Released,A New Power Is Rising.,8.384,20209,Viggo Mortensen-Elijah Wood-Sean Astin-Andy Serkis-Ian McKellen-Billy Boyd-Dominic Monaghan-Bernard Hill-John Rhys-Davies-Orlando Bloom-Miranda Otto-David Wenham-Brad Dourif-Liv Tyler-Cate Blanchett-Karl Urban-Christopher Lee-Hugo Weaving-Craig Parker-Bruce Allpress-John Bach-Sala Baker-Jed Brophy-Sam Comery-Calum Gittins-Phil Grieve-Bruce Hopkins-Paris Howe Strewe-Nathaniel Lees-John Leigh-Robbie Magasiva-Robyn Malcolm-Bruce Phillips-Robert Pollock-Olivia Tennet-Raymond Trickitt-Stephen Ure-Billy Jackson-Katie Jackson-Victoria Beynon-Cole-Lee Hartley-Frazer Anderson-Ben Barrington-Jarl Benzon-J�rn Benzon-Owen Black-Dorothy Anne Bonner-Ben Britton-Riley Brophy-Alistair Browning-Alix Bushnell-Sean Button-Ryan Carey-Rodney Cook-Augie Davis-Mana Hira Davis-Shane Dawson-Karlos Drinkwater-Aron Eastwood-Frank Edwards-Clint Elvy-Alexia Fairbrother-Daniel Falconer-Siaosi Fonua-Kester Fordham-Michael Fowler-Ben Fransham-Frank Goldingham-Winham Hammond-Jonathan Harding-Lucas Hayward-Dan Hennah-Jason Hood-Lani Jackson-Peter Jackson-Gareth Jensen-Sam Kelly-Richard Knowles-Sandro Kopp-Sam La Hood-Don Langridge-Michael Lawrence-Alan Lee-Jono Manks-Brent McIntyre-Dra McKay-Joseph Mika-Hunt-Dean Morganty-Henry Mortensen-Francis Mountjoy-Paul Norell-Barrie M. Osborne-Allan Poppleton-Gareth Reeves-Miranda Rivers-Campbell Rousselle-Matthew J. Saville-Samuel E.", + "embedding" : [ 0.015237802, -0.03741559, -0.01589614, -0.026745016, -0.033465557, 0.040817007, -0.004649518, -0.018776372, -0.01747341, -0.028555447, 0.030146433, 0.019997044, 0.025826085, -5.126128E-4, 0.001620988, 0.022644114, 0.02065538, -0.019832458, 0.021958344, -0.030091573, -0.002203035, 7.784557E-5, -0.030640187, 0.019338705, 0.0044094985, 0.014401162, 0.031216234, -0.013509662, -0.0073103043, -0.0057741804, 0.012385, -0.015224086, -0.0032968374, -0.018899811, -0.015237802, -0.006706827, 6.531956E-4, -0.015868708, 0.012062688, -0.010595141, 0.0044780755, 0.022493243, -0.011582649, -0.01691108, -0.0045500817, -9.3778997E-4, 0.019805027, -0.018447204, -0.0040117525, 0.022424666, 0.024577985, 0.034809668, -0.027718809, -0.010739152, -0.022013206, -0.0010800872, -0.012220415, -0.002211607, 0.0064633787, -0.0054930146, 0.009593917, -0.024358537, -0.036071483, -0.0063810865, -0.01711681, -0.004426643, -0.027458217, -0.021958344, 0.0016715635, -0.011068322, 0.021176567, 0.026937032, 0.006792548, 0.011562076, 0.010684291, -0.039171163, -0.030064141, -0.0030242442, -0.012227273, 4.980402E-4, 0.018556926, -0.012419288, -0.014264008, 0.006466808, 0.0038643118, 0.012583873, -0.012460434, 0.0258398, -0.021752613, -0.001232671, 0.028774895, 0.03107908, 0.0014401162, 0.0049958318, 0.0028768035, 0.017871156, -0.0053867204, 0.031243665, -0.033081528, -0.025798654, 0.0074474583, -0.011335772, -0.0035522867, -4.470361E-4, 0.0054518688, -0.005650742, 0.0076463316, -0.014716617, 0.030365879, 0.009422475, 0.00345285, -0.0022407523, 0.022122929, -0.022452097, -0.005942194, -0.00830467, 0.016060725, -0.023878498, -0.0039431755, -0.014881201, 0.022479529, 0.032999236, 0.0047729565, -0.030557895, 0.033959314, 0.017061949, -0.0033071241, -0.019517004, 0.018570641, -0.014702901, 0.03324611, -1.5965574E-4, 0.023741344, 0.019366134, -0.024207668, 0.05557477, -0.015100648, 0.003908887, -0.028747464, -0.023412175, 0.034096465, 0.043395504, -0.028226279, -0.029241217, -0.027979402, -0.005870188, 0.008908148, -0.004035754, 0.013626243, -0.001050942, 0.020847397, 0.028829755, 0.024331106, 0.021917198, 0.01645847, -0.001783001, 1.5719126E-4, 0.00214303, -0.017720288, -0.015032071, -0.0019321559, -0.0061513535, -0.0042586294, -0.015978433, -0.0074886046, 0.019832458, 0.01584128, -0.022164075, -0.011555218, 0.0052289935, -0.0014058277, 0.016924795, -0.016677918, 0.006415375, -0.005482728, 0.009463621, 0.0147989085, -0.017185386, -0.02545577, -0.01178838, 0.0100602405, 0.0012378142, 0.029268648, 0.04709866, -0.011712945, 0.021258859, 0.014483455, -0.029488094, 0.0051775607, -0.0037100138, -9.840794E-4, 0.014113139, -0.0021687464, -0.010622571, -0.63683313, -0.020737674, -0.0074680313, -0.021231428, 0.014044562, 0.0031116798, -0.0033156963, 0.018886095, -0.016431041, -0.017665425, -0.024783716, 0.023384744, 0.036894407, -0.019078111, -0.0384031, -0.008071508, -7.877779E-4, -0.014291439, 0.00940876, 0.0073514506, -0.025016876, 0.023316167, 0.0050404067, -0.0058804746, 0.011829526, -0.0020315927, -0.006734258, -0.025044307, 0.015800133, 0.009689925, -0.0059284787, 0.02108056, 0.02232866, 0.009333325, 0.036812115, 0.0014195432, -0.010677434, 0.039884362, 0.025647784, 0.028390862, -0.017734002, -0.0011709516, 0.012707312, -0.008626982, -0.027115332, 0.01640361, 0.009401902, 0.009388186, -4.7018082E-4, -0.001196668, -0.0024927726, -1.9139938E-5, -0.005225565, -0.023137867, -0.0074200276, 0.017761433, 0.008524116, -0.048744507, 0.023645338, 0.0025390622, -0.008496686, 0.0373333, 0.0073308772, 0.010286544, -0.0077972007, 0.031353388, -0.00642909, -0.0066382503, -4.19391E-4, -0.017404834, 0.009161882, 0.017020803, -0.013201065, -0.019338705, 0.002926522, 0.016362464, 0.035769746, 0.008709274, 0.0016201307, 0.01178838, 0.010252256, -0.011829526, 0.011315199, 5.524732E-4, 0.012048973, -0.0018927242, -0.032011725, 0.0037614466, 0.0093538975, 0.01101346, 0.001973302, 0.007495462, 0.006843981, 0.014085708, -0.0065593864, 0.0049341125, -0.0066999695, -0.0015386957, 0.021903481, -0.046248306, -0.018570641, -0.017171672, 0.016773926, -0.0032351182, 0.010533421, 0.022109212, -0.014579463, -0.008325243, 0.041694794, -0.006717114, -3.5852895E-4, -0.012131264, -0.02029878, -0.0058873324, 0.007927497, -0.028116556, 0.013345077, 0.015800133, 0.011486641, -0.0012000969, 0.004313491, 0.002911092, 0.0070359963, -0.013303931, 0.012151838, 0.042654872, -0.016513333, 0.0047352393, 0.003149397, -0.01285818, 0.0011263767, 0.0038917428, 0.014744047, -0.012378142, 0.0065491, 0.0065456713, 0.016444756, 0.002950524, 0.012069546, -0.0042209122, -0.028692601, -0.018460918, -0.016156733, -0.018392341, 0.008469255, -0.0058393283, -0.029954419, 0.0067651174, 7.6034706E-4, -0.0049718297, -0.019475857, 0.013859404, -0.0033842733, 0.0050541223, -0.02390593, 0.0020675955, -0.023384744, -0.013715393, 0.015909856, -0.014195431, 0.012096977, 0.013386223, -0.009374471, -0.014222862, 0.03168256, -0.026251262, -0.02065538, 0.0022510388, 0.009360756, -0.02509917, 0.013461658, -0.003953462, 0.0054484396, 0.020861112, -0.018296333, 0.028445724, -0.00845554, 0.022438383, 0.01056771, -0.0073651657, 0.012967904, -0.0063639423, -0.030283587, -8.3835336E-4, 0.02866517, 0.023467038, 0.0034717089, -0.022753837, -0.009230459, 0.020915974, -0.018543212, -0.01307077, -0.007248585, 0.0010646574, 0.01553954, 0.03387702, 0.012000969, -0.0073994542, 0.0065868176, 0.011294626, 0.04435558, 0.020998266, 0.008599551, 0.0028768035, 0.011678657, -0.034343343, -9.5064816E-4, -0.025812369, 0.007961785, -0.008613267, 0.030640187, -0.019599296, -0.022369806, -0.0099916635, 0.002703647, 0.035358284, -0.004560368, 0.0063365116, -0.009518483, -0.0015815563, -1.7026374E-4, -0.011733519, 0.024934584, 0.013242212, -0.010958599, 7.534894E-4, 0.02146459, -0.00881214, -9.857939E-4, 0.0035282848, -0.015854994, 1.13044836E-4, 5.0575513E-4, -0.011047749, -0.028089125, 0.003727158, 0.02741707, -0.0087161325, 0.049210828, -0.018351195, -0.016664201, 0.024564268, 0.0263747, -0.009737928, -0.019695304, -0.014044562, 0.010156249, 0.008290955, 0.006171927, 0.050829247, -0.01813175, 0.021917198, 0.007982358, -0.009038444, 0.021930913, -0.0036517233, -2.0176629E-4, 0.019777596, 0.022493243, 0.01640361, 0.005170703, -0.013139347, 0.019818742, -0.003358557, 0.013756539, 0.020627951, -0.023384744, -8.55069E-4, -0.013502805, -0.027814817, -0.015086932, -1.809789E-4, -6.956276E-4, 0.012261561, -0.013372508, -0.01536124, -0.008359532, 0.019695304, 0.018118033, 0.003545429, -0.006590246, -0.015854994, 0.0012823893, 0.02009305, -0.013077627, -0.02337103, -0.015978433, -0.017596848, -0.032944374, -0.020339927, -0.013914266, 0.008476113, -0.020312497, 0.005074695, -0.028692601, 0.0010826588, 0.0064496635, -0.008681844, 0.004330635, 0.041777086, -0.004471218, 0.0101288175, 8.923577E-4, -0.019805027, 0.018022027, -0.0019664445, 0.008338959, -0.0039260313, 4.470361E-4, 9.395044E-4, -0.009011013, 0.0030619614, -0.038595114, 0.0034511357, -0.013434228, 0.0071662925, -0.018447204, -0.014291439, 0.014195431, -0.017308826, -0.015333809, -0.052667107, -0.0075160353, 0.01762428, 0.07110059, 0.040240962, 0.01589614, 4.283917E-4, -0.012330138, 0.018927243, -0.030173864, -0.0037580177, -0.007694335, -0.008366389, 0.02024392, -0.00440607, 0.024811145, 0.016540764, 0.010855733, -0.012865039, -0.0025836371, -0.007954928, -0.021245142, -0.017281394, -0.03212145, -0.01762428, 0.022109212, 0.026456993, 0.0018584357, -0.01387312, 0.015608117, 0.007618901, -0.015278948, 0.021807475, -5.293284E-4, 0.0034665656, 0.008640697, 9.5750584E-4, 3.7931633E-4, 0.01831005, 0.022575537, 0.0049409703, 0.017610565, -0.0040254677, -0.0068954136, 0.0047763856, 0.018927243, -0.012330138, 0.011623795, -0.017596848, -0.015347525, 0.009895656, 0.0391163, -0.023604192, 0.02866517, 0.0074886046, -0.008702417, -0.0119049605, 0.02688217, -0.017514557, -0.02238352, 0.003327697, -0.025414623, 2.6016386E-4, 0.0023607619, -0.045535102, 0.02077882, -0.006662252, -0.017061949, -0.005307857, -0.014469739, -0.00783149, -0.012076403, 0.023302453, 2.8716604E-4, -0.012172411, -0.022671545, -0.013297074, 0.020175343, -0.008318386, 0.03524856, -0.0016175591, 0.016595624, 0.009175598, -0.032642636, -0.040405545, 0.0075297505, -0.0274445, 0.0048209606, 0.02151945, 0.0034459925, 0.01369482, -0.013331362, -0.006127352, -0.0055033015, 0.016801355, -0.0052289935, -0.012186127, 0.01765171, 0.011678657, -0.0020075906, 0.02461913, 0.016389895, 0.0019475857, 0.0047592414, -0.028198848, -0.013804543, -0.035193697, -0.0069057, -0.0030088143, -0.0072828736, 0.007337735, -0.010176822, -0.032176312, -0.031106511, -0.028582878, 0.017103095, 0.009916229, 0.028445724, -0.0024601985, 0.029734971, 0.024509408, -0.0050164047, 0.0077286237, 0.0012386714, -0.011630653, 0.010430556, 0.012686739, -0.01449717, 0.018323764, -0.0033174106, -0.014442309, -0.002712219, 0.03428848, -0.014565747, 0.0059181917, 0.0015172653, -0.008050935, -0.020504512, -0.024687707, 0.019928467, -0.0023830496, -0.010821445, 0.016321318, -0.017816296, -0.0055924514, 0.0051329858, 0.003339698, -0.0048518204, -0.028363433, 2.3894785E-5, -0.0042894892, -1.2027756E-5, 0.03393188, -0.014538316, 0.001140092, -0.02027135, 0.0019904464, -0.0042552007, -0.029076632, -0.017103095, -0.007975501, 0.016801355, -2.423767E-4, 0.043203488, -0.003775162, 0.021094274, 0.023096722, 0.011027176, 0.028363433, -0.023357313, -0.020765105, -0.03220374, 0.011843242, 0.017295111, 0.026388416, 0.0045706546, 2.0626665E-4, -0.0064462344, 0.015224086, 0.009127594, 0.017898588, 0.006480523, -0.026854739, -0.03522113, 3.210259E-4, -0.035111405, 0.006285079, -0.030311018, -0.017967165, 0.03777219, -0.013283358, -3.5167125E-4, -0.026456993, 0.031902004, -0.014620609, 0.011760949, -0.025030592, 0.023165299, -0.01658191, 0.01169923, -0.015676694, -0.0029590959, 0.0023676197, -0.00392946, 0.021862336, 0.004179766, -0.03316382, 0.0074337428, 0.0362635, -0.01538867, -0.020641666, 0.027211338, -0.021697752, -0.005129557, -0.0276228, -9.052159E-4, -0.02527747, 0.002768795, -0.012371284, -0.010965456, -0.0037820195, -0.027471932, -0.031188803, 0.030530464, -0.008400678, 0.04435558, 0.019023249, 0.044465303, 0.019119257, -0.006466808, -0.02640213, 0.009011013, -0.0046152296, -9.412188E-4, 0.024756284, 0.01372225, -0.012707312, -0.0030071, -0.006542242, -0.009929945, -0.030091573, -0.017020803, 0.027348492, 0.019420996, 0.02614154, -0.017706571, 0.016636772, -0.0253049, 0.01584128, -0.011239764, 0.0031065363, 0.009504767, -0.025291184, -0.010992887, -0.004292918, -0.0031562548, 6.420518E-4, 0.0048449626, -0.03033845, 0.018200327, -0.023316167, -7.444887E-4, -0.009333325, -0.013927981, 0.036565237, -0.027691377, 0.013461658, 0.005640455, 0.028116556, 0.0042997757, -0.0019270127, -0.020285066, 0.03629093, -0.018680366, 0.010547137, -8.0749375E-4, -0.0017727145, 9.386472E-4, 0.022589251, -0.02164289, -0.022493243, -0.010437414, -0.005849615, 0.025181461, 0.0085104015, 7.556324E-4, 0.0095802015, -0.024276245, -0.01670535, -1.4840484E-4, -8.272096E-4, 0.012961046, -0.031271096, -5.5161596E-4, 0.001289247, -0.0064496635, 0.009936802, -0.008153801, 0.0026607863, -0.0032814078, 0.016389895, -0.0043032044, -0.0029590959, -0.0085104015, -0.037580177, -0.045535102, -0.020285066, 0.002131029, -0.01152093, 0.011747234, -0.016060725, 0.006483952, -0.022932136, 0.0027379352, -0.008969867, 0.0037340156, -0.02134115, 0.018145464, 0.01125348, -0.009621348, -0.0058839037, 0.007248585, 0.02110799, 0.0055718785, -0.0025167745, -0.004515793, 0.0048278184, 0.03766247, -0.009552771, 0.027046755, -0.006285079, -0.02896691, -0.021368582, 0.0071937237, 0.017857442, 0.022479529, 0.007111431, -0.032176312, -0.004385497, 0.0041763373, 0.028034262, -0.0078040585, 0.010375694, 0.029076632, 0.011980396, 0.029241217, 0.030804772, -0.0051089837, -0.010746011, 0.002971097, -0.017583134, -0.022369806, -0.0075846124, -0.008133228, 0.015114362, -0.01214498, -0.0024790573, -0.015114362, -0.005712461, -0.0278011, -0.03179228, -0.0016449899, 0.012357569, 0.033685006, 0.018268904, -0.0030979645, 0.0036722964, -0.013557666, 0.009264748, -0.024811145, -0.019215265, 0.00934704, 0.011397491, 0.030612757, 0.028500587, -0.016088156, -0.016869932, 0.011232907, 0.019187834, -0.012638735, 0.031380817, -0.008770994, -0.0073514506, -0.0050952686, -0.0077149086, -0.0015635547, -0.010814588, 0.0240568, -0.044547595, 0.0032934088, 0.0034991396, 0.025935808, 0.0051398436, 0.005421009, 0.008167516, -0.014620609, 0.0021601743, -0.006302223, -0.018227756, 0.0066759675, -0.023604192, 0.023233876, -1.3961841E-4, 0.010876306, 0.038211085, 0.015854994, -6.5662444E-4, 0.011596365, -0.0020315927, 0.009895656, -0.010588284, -1.3747538E-4, 0.01431887, 0.020682812, -0.03253291, 0.013735966, -0.01369482, 0.011047749, -0.005712461, 0.010361979, -0.004611801, 0.033355836, 0.0119049605, -0.057824098, -0.005945623, -0.0062713632, -0.0068954136, 0.005753607, 0.0011340915, -0.037881915, 0.00139897, -0.0028682316, -0.0024842005, -0.009813364, -0.03176485, -0.010375694, -0.01134263, -0.013420512, 0.010814588, 0.1920155, 0.00309625, 0.010231683, 0.05650742, 0.014030847, 0.03420619, 0.0062919366, 0.023028145, -0.019969612, 0.016348748, -0.001010653, -7.9334975E-4, 0.0019698732, -0.0036277215, 0.0137291085, -0.028884618, -0.020175343, -0.025442053, -0.009929945, -0.039527763, -0.004172908, -0.009806505, -0.0066005327, -0.02354933, 0.0010037953, 0.0014504028, -0.014181716, 0.00934704, 0.017253963, -0.0022853273, -0.011274053, -0.012158696, -0.005345574, 3.848882E-4, -0.022479529, 8.08351E-4, 0.012631876, 0.0048655355, 0.016636772, 0.0023299023, 0.0045260796, 0.0034391347, 8.7307044E-4, -0.011863815, 0.023384744, 0.026594147, -0.036757253, -0.0020144484, -0.024838576, 0.009113878, -0.034699943, 0.010807729, 0.01935242, 0.011534645, 0.006278221, -0.008160659, 0.010601998, 0.0026693584, -0.0067616887, -0.0024019082, 0.012035257, 0.03039331, -0.025387192, -0.0027722237, -0.014085708, 0.01538867, -0.028143985, -0.017720288, 0.008311528, -0.039610054, -0.01676021, -0.0149360625, -0.0120284, -0.010005379, -0.0047763856, -0.007132004, 0.010403126, 0.0071937237, 0.018172896, 0.037251007, -0.019475857, -0.025263753, 0.0121792685, 0.0019527291, -0.027362209, -0.024962015, 0.009971091, -0.011616938, -0.005050693, -0.022465814, -0.008318386, -0.015731556, -0.008592693, 0.0017881443, 0.011315199, -0.00642909, 0.026237546, 0.012501581, -0.007276016, -0.0119735375, -0.0258398, 0.037168715, 0.017569419, -0.010252256, -0.027458217, -0.018104319, 0.0062370747, 0.020230204, 0.0376899, -0.00958706, -0.009655637, -0.025826085, -0.007276016, -0.015566971, -0.011843242, 0.010780299, 0.0056747436, -0.004563797, 0.032395758, -0.032697495, -0.012974761, -0.02319273, 0.011843242, 0.018570641, 0.007337735, -0.017871156, -0.010595141, 0.010650002, -0.005619882, -0.018035742, 0.013969127, -0.025702646, 0.012343854, -9.986521E-4, 0.014442309, 0.016815072, 0.0016509905, 0.0014366874, 0.007550324, -0.0055684494, 0.0037785906, -0.018282618, -0.0047318107, 0.0100602405, 0.010341406, -0.020984551, -0.006837123, -0.005753607, -0.01708938, -0.027787386, -0.015676694, -0.009374471, 0.017308826, 0.005846186, 0.041502777, 0.008832713, -0.036592666, -0.038046498, -0.0073034465, 0.03533085, -0.03179228, 0.013365651, 0.020847397, -0.018502064, -0.026950747, -0.011157472, -0.17621537, 0.027101615, 0.00559588, -0.025140315, 0.018556926, 0.011514072, 0.025167746, 0.012275277, -7.8092015E-4, -0.02029878, 0.030585326, 0.010752868, -0.043395504, -0.0016989943, -0.0026042103, 0.010732295, -0.013927981, 0.036784682, 0.03598919, -0.011184903, 0.028720032, 0.0010312261, -0.021354867, -0.011397491, 0.032642636, 0.0048483913, 0.03313639, 0.0054861573, -0.0020641666, -0.01178838, -0.03944547, -0.010046525, 0.017253963, 0.0019681589, -0.011466068, 0.0015146937, -0.013372508, -0.015429817, 0.0022441812, -0.009381329, 0.033959314, 0.009820221, 0.018268904, 0.016115587, 0.009950518, 0.011267195, 0.020998266, -0.026991893, -0.0015695553, -0.0056987456, -0.013639958, -0.036565237, 0.025373477, -3.848882E-4, 0.0061239228, 0.023275021, -7.119146E-4, 0.012570158, -0.008297812, -0.005201563, -0.032286033, -0.0032882653, 0.009984806, -0.009024728, -0.009031586, -0.014469739, -0.009964233, 0.017295111, -0.029021772, 9.4464765E-4, -0.026786162, 0.02217779, 0.014606893, 0.009792791, 0.006010771, -0.0040117525, -0.03456279, 0.010307117, -0.0131599195, 0.031243665, -0.016211594, 0.04430072, -0.0078040585, 0.014387447, 0.018241473, 1.953372E-4, 0.008867001, -0.0068954136, 0.0057878955, -0.0037134425, -0.0045946566, 0.0028956623, -0.032752357, 0.007454316, 0.0011735233, 0.011891246, -0.0070565697, -0.0018378627, -0.0057227476, -0.007701193, -0.011706088, -0.01110261, -0.014085708, 0.012186127, 0.012796462, 4.9161114E-4, -0.0029745258, 0.020984551, 0.015402386, -0.021450873, -0.014552032, 0.0071457196, 0.020065619, 0.006837123, -0.0022818984, 0.015333809, -0.011136899, -0.029625248, -0.0020933119, 0.005938765, 0.04336807, -0.0037545888, -0.0017135668, -0.01708938, -0.0054347245, -0.008023505, -0.08662642, 0.015978433, 0.009539056, 0.034590222, -0.036565237, 0.033383265, -0.013564523, 0.030173864, -0.02670387, 0.023096722, 0.0013158205, -0.0398295, 0.011424922, -0.0028956623, 0.016746495, -0.012412431, -0.0021104561, -0.0075777546, -0.017157957, 0.030119002, -0.011562076, -0.010505991, 3.197401E-4, -0.01991475, -0.017295111, 0.016828787, -0.028829755, 0.031490542, -0.004128333, 0.0044129277, -0.007118289, -0.0270879, 0.00645995, -0.035358284, -0.01747341, -0.019119257, -0.023055576, -0.024317391, 0.008160659, -0.036839545, 0.014236578, 0.031051649, 0.010382553, -0.023823638, -0.008668128, 0.008860144, -0.041255902, 0.03247805, -0.011130041, 3.8681694E-4, -0.010739152, -0.011493499, -0.032752357, -0.014771478, 0.01566298, 0.01125348, 0.03179228, 0.0022373234, -0.020161627, -0.013207924, -0.001439259, -0.0108351605, -0.01732254, 0.010430556, 0.008263524, 0.011795238, 0.003217974, -0.020737674, 0.0082155205, -0.0121792685, -0.03667496, 0.022986999, -0.03741559, -0.01762428, -0.030804772, -0.02024392, -0.033712436, -0.02095712, 0.030914495, -0.037470452, -0.0018738655, -0.03533085, 0.012439861, -0.021094274, 0.007639474, 0.01905068, 0.027554223, -0.002283613, 3.433134E-4, -0.05551991, -0.0061822133, 0.02184862, 0.0017675712, 1.2622448E-4, -0.023275021, 0.024728853, 0.012803319, 0.0040528984, -1.4291332E-5, 0.010334549, -0.0012240988, -0.008030362, -0.07455687, 0.023206444, 0.00233676, -0.0013561095, -0.012590731, -0.00479353, 0.012151838, 0.0010663718, -0.0047078086, 0.021300005, -0.0061376384, 0.015429817, -0.013598812, -0.004975259, -0.017487125, -0.0024276245, 0.0102659715, 0.002821942, -0.0020950262, -0.0049615433, -0.017281394, 0.0017881443, 0.015786417, 0.009799648, 0.004512364, 0.0242351, -0.011774665, 0.015772702, -0.013756539, -0.008325243, 0.030091573, -0.012282134, -0.0054552974, -0.0046838066, -0.010938026, -0.028390862, 0.008469255, 0.007886351, 0.018652935, 0.008551547, -0.008894432, -0.009724214, -0.007934354, 0.004817532, -0.008976725, 0.019023249, -0.032340895, 0.028939478, 0.020573089, -0.0063879443, 0.034398206, 0.020998266, -0.0086475555, -0.012000969, 0.028774895, -0.024536837, 0.057769235, 0.007762912, -0.005575307, -0.019407282, 0.028884618, -0.004724953, 0.028912049, -0.02467399, 0.013804543, 0.009593917, 0.0072623002, 0.00607249, 0.0077972007, -0.027183909, -0.0052598533, -0.016815072, 0.008654413, 0.026690153, 0.009299036, 0.015265232, 0.003205973, -0.0016758495, -0.0038300233, 0.0044129277, 0.017432265, -0.01696594, -0.021039413, 0.016033294, -0.01038941, 0.024536837, -0.0065113828, 0.008098939, 0.008421252, -0.0018567212, -0.02110799, 0.016719064, 0.015224086, 0.0021636032, 0.021121705, 0.018707795, -0.025894662, -7.954928E-4, 0.006480523, 0.025496915, -0.0013698249, 2.914521E-4, -0.011335772, -0.01973645, -0.022479529, 0.0024430542, -0.024193954, -0.019160403, 0.014168001, 0.028692601, 0.031106511, 0.0073103043, -0.02372763, 0.0065559577, -0.02929608, 0.024262529, -0.0061376384, -0.018076887, -0.015580686, 0.03557773, 0.012288992, 0.0014821197, 0.01622531, -0.008311528, 0.060238004, 0.008681844, 0.018296333, -0.018214041, 0.0058393283, -0.0150046395, 0.0055204458, 0.0040494697, -0.010053383, 0.009724214, -9.463621E-4, 0.0058599017, 0.006915987, 0.034837097, -0.005873617, 0.061280373, 0.017665425, -0.0037511599, 0.023535615, -0.008530974, 0.009621348, 0.0065456713, 0.0145931775, 0.0011958109, -0.015553256, 5.2975706E-4, -0.0031836855, 7.723481E-4, -0.03598919, -0.007180008, 0.0016587053, 0.008729847, 0.010794014, 0.0017641424, -0.01795345, 9.225745E-5, -0.0052358513, 0.020161627, 0.011507214, -0.0085104015, -0.009964233, 0.030311018, -0.002134458, -0.004724953, -0.024317391, 0.0031356816, -0.026978178, 0.0073651657, -0.012460434, 0.02830857, -0.0150732165, 0.0015249802, -0.01610187, 0.019023249, 0.0034391347, -0.0046632336, -2.993813E-4, -0.033739865, -0.0073034465, 0.020285066, -0.010910595, -0.00488268, -0.040350687, -0.026086677 ], + "id" : "912aadaf-e7ad-4b6f-a5d9-4039d62a8a1f", + "metadata" : { + "source" : "movies.csv" + } + }, + "43d20b2c-af6a-405e-a32f-9ba6247c115d" : { + "text" : "604,5342,Bruce Willis-Justin Long-Timothy Olyphant-Cliff Curtis-Maggie Q-Mary Elizabeth Winstead-Kevin Smith-Christina Chang-Sung Kang-Zeljko Ivanek-Yorgo Constantine-Jonathan Sadowski-Andrew Friedman-Cyril Raffaelli-Chris Palermo-Jake McDorman-Matt O'Leary-Yancey Arias-Allen Maldonado-Chris Ellis-Nadine Ellis-Tim Russ-Rosemary Knower-Gerald Downey-Jim Cantafio-Regina McKee Redwing-Tony Colitti-Tim DeZarn-Kurt David Anderson-Ethan Flower-Nick Jaine-Joe Gerety-Edward James Gage-David Walrod-Edoardo Costa-John Reha-Rick Cramer-Vito Pietanza-Dennis Depew-Howard Tyrone Ferguson-John Lacy-Diana Gettinger-Melissa Knowles-Chad Stahelski-Michael Papajohn-Clay Cullen-Matt McColm,washington dc usa-hostage-fbi-kidnapping-hacker-transport of prisoners-ex-cop-sequel-cyber terrorism-action hero-based on magazine newspaper or article,/31TT47YjBl7a7uvJ3ff1nrirXhP.jpg,/aRqTPOPt8BOHE0ngppM9jnuuaeS.jpg,1572-1573-562-47964-27578-39514-534-2501-296-10764-2503-956-76163-36557-49040-56292-2502-14869-954-604-955\r\n425,Ice Age,Animation-Comedy-Family-Adventure,en,With the impending ice age almost upon them a mismatched trio of prehistoric critters ��� Manny the woolly mammoth Diego the saber-toothed tiger and Sid the giant sloth ��� find an orphaned infant and decide to return it to its human parents. Along the way the unlikely allies become friends but when enemies attack their quest takes on far nobler aims.,109.263,20th Century Fox-Blue Sky Studios-20th Century Fox Animation,3/10/02,59000000,383257136,81,Released,They came. They thawed. They conquered.,7.34,11802,Ray Romano-John Leguizamo-Denis Leary-Goran Visnjic-Jack Black-Cedric the Entertainer-Stephen Root-Diedrich Bader-Alan Tudyk-Lorri Bagley-Jane Krakowski-Peter Ackerman-P.J. Benjamin-Josh Hamilton-Chris Wedge-Denny Dillon-Mitzi McCall-Tara Strong-Darin De Paul-Dann Fink-Patrick Pinney-Phil Proctor,human evolution-loss of loved one-parent child relationship-squirrel-mammoth-sloth-dying and death-stone age-prehistoric-saber-toothed tiger-cavemen-prehistoric creature-road movie-prehistoric adventure-prehistoric times-neanderthal-prehistoric man-ground sloth,/gLhHHZUzeseRXShoDyC4VqLgsNv.jpg,/a9ykRAWtQnI3SsZDfh8sCJo5cWI.jpg,950-8355-57800-953-808-809-9502-12-585-10527-2062-810-8587-9806-920-862-863-38757-812-20352-278154\r\n15512,Monsters vs Aliens,Animation-Family-Adventure-Science Fiction,en,When Susan Murphy is unwittingly clobbered by a meteor full of outer space gunk on her wedding day she mysteriously grows to 49-feet-11-inches.", + "embedding" : [ 0.012534698, -0.035747852, -0.015983934, -0.026999887, -0.01661843, 0.024421398, -0.008687214, -0.0027151762, -0.011373702, -0.027674885, 0.029834876, 0.025798392, 0.019723417, -0.014539439, 0.0015077749, 0.007964967, 0.009861709, -0.018467924, 0.0147689385, -0.035666853, 0.0017988675, -0.009409461, -0.017887425, 0.013196195, 0.013479694, 0.018035924, 0.025784893, -0.015254936, -0.0067600966, -0.0059366003, 0.011063204, -0.0052346033, 0.0020924914, -0.01687493, -0.023597902, -0.0080392165, 0.012757447, -0.039851833, 0.024529397, -0.0073709693, 0.009814459, 0.01198795, -0.013715942, 0.001610712, -0.004556231, 0.007694968, 0.018508423, -0.0066183475, -0.008761464, 0.012460448, 0.027404886, 0.018076425, -0.014026442, -0.024070399, -0.0012158387, -0.002313553, -0.021316411, 0.0083429655, -0.0017279928, -0.007431719, 0.011049704, -0.0032264865, -0.029834876, -0.022058908, -0.015511435, -0.012507698, -0.006736472, -0.02905188, -0.0024586772, -0.0061525996, 0.027040387, 0.014161441, 0.01691543, -7.983951E-5, 0.025177395, -0.031616867, -0.026446389, 0.0061593493, -0.002759051, 1.4712829E-4, 0.017927926, -0.018035924, 0.002998675, 0.008876213, 0.019925917, 0.016213432, -0.011393952, 0.013121945, -0.030050876, 0.019763917, 0.017198928, 0.025393395, -3.4635793E-4, 0.01908892, 0.011380453, 0.011697701, -0.013574193, 0.013155695, -0.024961395, -0.037151843, 0.0042457324, 0.0063348487, 7.5852807E-4, -0.0132501945, 0.001095183, -0.0021093662, -0.0039757336, -0.010678455, 0.025042396, -0.009989958, -0.0068309717, 0.0077624675, 0.020654913, -0.054458775, -0.00944321, -0.01686143, 0.022355907, -0.0116234515, 0.0053932276, -0.017873926, 0.037178844, 0.028133882, 0.0028670505, -0.036368847, 0.02880888, 0.030860871, 0.009071962, -0.019115921, 0.0014301502, 2.8012384E-4, 0.029834876, -0.018103424, 0.027701885, 0.0075397184, -0.03126587, 0.046871804, -0.027863884, -0.0014318378, -0.013607943, -0.011312953, 0.034802854, 0.034937855, -0.023665402, -0.013756443, -0.03785384, 0.01196095, 0.0075059687, 0.002649364, 0.013290695, -0.005028729, 0.017239429, 0.015848935, 0.0014841501, 0.031724866, 0.032048866, -0.0037124846, -0.013466194, -0.013385194, -0.00479248, -0.035855852, -0.011110454, -0.008093216, 0.0061323494, -0.015214437, -0.013148945, 0.017252928, 0.029429877, -0.027580384, 0.006061475, 0.008309215, -0.010448957, 0.02662189, -0.017887425, 0.013418944, 0.003597735, 0.022895904, -0.003597735, -0.011400702, -0.022747405, -0.01672643, 0.008801963, -0.0064327233, 0.0240029, 0.039905835, -0.0021802408, 0.0027944883, 0.021235412, -0.027148386, 0.023503402, -0.012696697, 2.1642097E-4, 0.008491465, 0.009449961, -0.011569452, -0.64022136, -0.010192458, -0.005251478, -0.014620439, 0.0048734797, 0.027836883, 0.007613968, -0.012993696, -0.022477407, -0.004262607, -0.018197924, 0.02631139, 0.028349882, -0.022409907, -0.019588418, -0.012615697, 0.010347707, -0.022679906, 0.0065913475, 0.0042153574, -0.027242886, 0.023084903, 0.030104874, 0.0064057233, 0.020614414, -0.0035133604, -0.010779705, -0.030320873, 0.0053966027, 0.021869909, -0.022031909, 0.01904842, 0.004043233, -0.0059906, 0.04090483, 6.986221E-4, -0.011225203, 0.0478438, 0.027971884, 0.016145933, -0.032966863, -0.004090483, 0.01439094, 0.006236974, -0.0053898524, 0.013270444, 0.0015178999, 0.0010977142, 0.0037226095, 0.0041883574, -0.0025312395, 0.028403882, 0.0025700517, -0.0112927025, -0.010941705, -0.0029649253, 0.012919446, -0.0148229385, 0.027782883, -0.0053122276, -0.011643701, 0.025055896, -0.0075937184, 0.018913422, -0.007958217, 0.033074863, 3.4593605E-4, 0.0010960267, 0.0154574355, -0.026041392, 0.031940866, 0.021073412, -0.020128416, -0.009065213, -0.007856967, 0.028430881, 0.024070399, -0.0014774001, 0.0059298505, 0.026689388, 0.00723597, -0.007391219, 0.011056454, 0.018305924, 0.027998883, -0.005086104, -0.03815084, 0.0066250972, 0.006716222, 1.1186233E-5, 0.023759902, 0.015268437, 0.002067179, -0.0070334706, -0.008612964, -0.01426944, -0.0048937295, 0.015781434, 0.022639405, -0.063935734, -0.015268437, -0.010475956, 0.020519914, -0.015443936, 0.011150953, -0.0035234853, -0.013715942, -0.008646714, 0.036665846, 0.0034154858, -0.0019288044, -1.437533E-4, -0.011353453, -0.008396965, -0.011258953, -0.024826396, 0.014012941, 0.016280932, -0.0031404244, -0.0018275549, 0.015605935, 0.0072697196, 0.010644706, -0.012143199, 0.01702343, 0.01904842, 0.0011854639, -6.1087246E-4, 0.022976905, 0.0042963573, -0.014674439, -0.0046237307, 0.02627089, -0.01688843, 0.01651043, 0.013121945, 0.02864688, -0.014053442, 0.024704898, 0.00957146, -0.022490906, -0.00947021, -0.0239624, -0.013229945, -0.014147941, -0.011751701, -0.015929934, 0.013999442, -0.021073412, -0.029564876, -0.012541448, 0.004093858, 0.0076072183, 0.0035336104, 7.391219E-4, 0.003611235, -0.020722413, -0.0241649, 0.0240434, -0.00714822, -0.007924467, 0.015281936, -0.005980475, -0.017968426, 0.030806871, 0.0067600966, -0.009530961, 0.0073439693, -0.0068343463, -0.01888642, 0.012770947, -0.017833427, -0.004380732, 0.0036281098, -0.025393395, 0.020600915, -0.0054033524, 0.022963405, -0.013810443, -2.0281556E-4, 0.007924467, 0.014053442, -0.0080662165, -0.003101612, 0.022990404, 0.015389936, 0.020371415, -0.012575198, -0.027499385, 0.010712205, -0.0036416098, 0.0057172263, -0.008990963, -0.008302465, 0.0020553665, 0.011360203, -0.015173937, 0.016294433, 0.011522202, 0.011083454, 0.046844807, 0.015025438, 0.0065002227, 0.008916713, 0.027647885, -0.029915875, -0.0066115973, -0.025136895, 0.008666964, -0.009301461, 0.008653464, -0.0033530486, 0.0015339311, -0.0073709693, 0.015335936, 0.0154574355, -0.01941292, 0.0039149835, -0.020992413, 0.0048701046, 0.0075059687, -0.009881958, 0.030698871, -0.002666239, -0.016010933, 0.015497935, 0.011690951, -0.01660493, -0.0019051796, -0.0042356076, -0.0023743026, -0.003925109, 0.0021853035, 0.004384107, 0.009321711, -0.004357107, 0.034586854, -0.008977463, 0.020344416, -0.016739931, -0.004525856, 0.02910588, 0.039473835, -0.0040128585, 0.004299732, -0.0010065895, 0.018346423, 0.017522927, -0.019601919, 0.036827847, -0.0068242215, 0.017806426, -0.003324361, 0.015929934, -0.01447194, -0.007485719, 0.010003459, 0.012365948, 0.035099853, 0.019655919, 0.028916879, -0.028160883, 0.0121297, 0.0042558573, 0.025703892, -0.0071009705, -0.016064933, 0.0030560498, 0.0065913475, -0.019682918, -0.032291867, -0.02147841, 0.010192458, 0.017981926, -0.014890438, -0.0033277362, 0.0017296803, 0.015578935, 0.010779705, 0.0149039375, 0.005713851, -0.03588285, 0.007701718, 0.030077875, -0.027944883, -0.010651455, -0.019588418, -0.01687493, -0.03825884, 0.0015752747, -0.008565715, 0.04303782, -0.019534418, 0.010860705, -0.0028839256, -0.0049038543, 0.027782883, -0.016159432, 0.008558964, 0.014741939, 0.004816105, 0.025406893, 8.783401E-4, -0.004276107, 0.024826396, -0.010752705, 4.1153736E-4, -0.015106437, -0.00717522, 0.007715218, -0.0059264754, -0.007951467, -0.03377686, 0.018427422, -0.016739931, -0.005028729, -0.010435456, -0.013945442, 0.0011306203, -0.014012941, -0.023111904, -0.032615863, -0.03547785, -0.013209695, 0.06874172, 0.044171818, 0.017603926, 0.024893897, -0.0041377326, -0.0011036204, -0.016483432, 5.1215413E-4, 0.006456348, -0.01436394, 0.00970646, 1.7760863E-4, 0.03158987, -0.007391219, 0.016591432, -0.015322437, -0.0010909642, 0.002489052, -0.010367957, -0.0013052758, -0.020762913, -0.00975371, 0.02176191, 0.049868792, 0.012912696, -0.008349715, 0.027485885, 0.0121027, -0.010907955, 0.011765201, -0.017482428, 0.0045832307, 0.008693964, 0.016024433, 0.0066250972, -0.012791197, 0.022220908, 0.007438469, 0.031319868, 5.577164E-4, 0.0053662276, 0.011771951, 8.639964E-4, -0.02632489, 0.016078433, -0.020006917, -0.006544098, 0.03385786, 0.0238814, -0.028457882, 0.03356086, -0.0030796747, -0.01679393, -0.008160716, 0.007377719, 0.010037208, -0.03353386, -0.01702343, -0.022936404, -0.0010487769, 2.6008487E-4, -0.028241882, 0.0021869908, -0.018062925, -0.006739847, 0.0026274265, -0.014458439, 0.006402348, -0.023138903, 0.002170116, 0.0061222245, -0.029132878, -0.010010208, -0.0018478048, 0.008862713, 0.014701439, 0.03437086, -0.0028198007, 0.018211424, 0.011177953, -0.019007921, -0.032507863, 9.534335E-4, -0.030725872, 0.0057307263, -1.8425313E-4, -0.0029227377, 0.018845921, -0.015470936, 0.003148862, 0.004384107, 0.008147216, -0.012662947, -0.0047047306, 0.03796184, -5.737476E-4, 0.011792201, 0.01702343, 0.0019979917, -0.00149765, 0.0014487127, -0.007377719, -0.0053561027, -0.005781351, -0.03104987, -0.020911412, -0.0024249274, -0.00721572, -0.025744393, -0.03550485, -0.025420394, -0.021046413, 0.015875934, -0.007445219, 0.011333203, -0.0084509645, 0.023179403, 0.012386198, -0.0122309495, 0.0037529843, 0.010732455, -0.020911412, 0.017576927, 0.03158987, -0.011420952, 0.025069395, -0.0018579297, -0.03852884, -0.0087277135, 0.018548923, -0.018143924, 0.0058758506, -0.008113466, 0.010907955, -0.01680743, -0.0071077202, -2.3477247E-4, 0.020263415, -0.0066149724, 0.022301907, -0.020276915, 0.0012588698, 0.015565435, 0.006061475, -0.0070537208, -0.028376881, 0.0045157312, -0.009503961, 0.023179403, 0.030131875, -0.016483432, -9.905584E-4, -0.018778421, -0.0059129754, -0.009011213, -0.037367843, -0.024637397, 0.002998675, 0.049463794, 0.0071279705, 0.03798884, 0.010408456, 0.034478858, 0.02625739, 0.021208411, 0.02177541, -0.013587694, -0.008862713, -0.034694854, 0.0023186153, 0.0068815965, 0.015268437, 0.010131707, 0.010118208, -0.0023692402, 0.01683443, 0.009125962, 0.012487448, 0.003228174, -0.024542898, -0.013459444, 0.012831696, -0.019007921, 0.0047047306, -0.013607943, -0.012791197, 0.049274795, -0.0019676168, -9.1546495E-4, -0.017590426, 0.021910409, 0.005086104, 0.012332198, -0.025244895, 8.707464E-4, -0.027013388, 0.0024350523, -0.023057904, -0.011393952, -5.783882E-4, -0.0042592324, 0.021154411, -0.005518102, -0.012170199, 0.0026375514, 0.020803412, -0.019615417, -0.019574918, 0.018049425, -0.014120941, -0.009402711, -0.022787904, -0.0013424007, -0.041579828, -0.0059298505, 7.838405E-4, -0.012966696, 0.007040221, -0.0118867, -0.03528885, 0.024907397, -6.176224E-4, 0.044522814, 0.017779427, 0.05788776, 0.02888988, 0.008518465, -0.027674885, 0.0242594, -0.014458439, 4.746074E-4, 0.029780876, 0.02139741, -0.0049004797, -0.0015415248, 0.005217728, -0.008147216, -0.041606825, -0.05046279, 0.0119677, 0.022018408, 0.030590873, -0.033911858, -0.01194745, -0.014633939, 0.008133716, 0.0031454868, 0.0048566046, 0.011009204, -0.032831863, -0.013054445, -6.273255E-4, -0.0119947, -2.166319E-4, 0.007883967, -0.017549926, 0.0039959834, -0.02141091, 0.007850218, -0.017212428, -0.009328461, 0.03113087, -0.015106437, 0.006297724, -0.0039048588, 0.0051029786, 0.011434453, -6.404036E-4, -0.012487448, 0.027310386, -0.021046413, 0.020168915, -0.008963963, -0.0022511156, -1.9859683E-4, 0.019439919, -0.03312886, -0.0075532184, -0.025123395, -0.0073642195, 0.03528885, 3.3834233E-4, -0.0032889238, 0.0014023066, -0.022031909, -0.009800959, 0.004616981, -0.0031741743, -0.006706097, -0.04249782, 0.016294433, 0.004546106, 0.017765926, -0.006287599, 0.0066959723, 7.969185E-4, -0.00712122, 0.012575198, -0.018062925, 0.0011432765, -0.025109895, -0.021964408, -0.053783774, -0.024893897, -0.007694968, -0.010347707, -7.6359056E-4, -0.012338948, -2.5312396E-4, 0.0033024237, 0.002235928, -0.0075397184, -0.0044786064, -0.029726876, 8.517621E-4, 0.021910409, 0.0013997754, -0.011825951, -4.1259202E-4, 0.029699877, 0.0036686098, -0.004097233, 0.004512356, 0.012926196, 0.03547785, -0.027499385, 0.015956933, 0.0046439804, -0.01430994, -0.01707743, 0.0021853035, 0.019844918, 0.01888642, 0.0038711089, -0.04071583, -0.018656923, -0.017225929, 0.03377686, -0.008815464, 0.0141884405, 0.022517907, 0.035315853, 0.01661843, 0.03115787, -7.045283E-4, -0.048545796, 0.010651455, -0.015376436, -0.03806984, -0.008707464, 0.007512719, 0.0056801015, 0.0048836046, -0.006412473, -0.0481138, 1.6624443E-5, -0.025271894, -0.025582394, 0.0018359923, 0.020587415, 0.027337385, 0.014174941, 0.008005466, 0.011441202, -8.597777E-4, 0.012710197, -0.019466918, -0.00721572, 0.0087007135, 0.020506414, 0.034883853, 0.034694854, -0.018494923, -0.0051468536, 0.008626464, 0.015619435, -8.01981E-4, 0.03167087, -0.022598905, -0.008261966, -0.010158707, 0.0048836046, 4.463419E-4, 8.6019957E-4, 0.02141091, -0.02894388, 0.003806984, 0.003638235, 0.009065213, -0.007708468, 0.0047148555, 0.013007196, -0.018008925, 0.003617985, 0.0026274265, -0.029753877, -0.0039791083, -0.024367398, 0.018953921, 0.0024350523, -0.0022393032, 0.034478858, 0.0030729247, -0.0065137227, 0.0122309495, -0.0026578014, 0.013655193, 0.0029733626, 0.0042693573, 0.010698705, 0.023462903, -0.022895904, 0.027553385, -0.030293874, -3.680844E-4, -0.0044549815, 0.0078029674, -0.012703447, 0.030725872, 0.01683443, -0.053432778, -2.349834E-4, -0.0018579297, 0.003234924, -0.011542452, 0.0034053607, -0.04363182, -0.0078097177, 9.660897E-4, 0.020776413, -0.018022425, -0.03372286, -3.438267E-4, -0.01703693, -0.013324444, 0.019669417, 0.18251924, -0.016645432, 0.017995425, 0.041363828, 0.009206962, 0.02151891, 0.024421398, 0.014282941, -0.010111458, 0.011029454, 0.008977463, 0.0070942203, 3.7124846E-4, 0.001105308, 0.020114915, -0.015740935, -0.024799397, -0.009807709, -0.014836438, -0.037394844, -1.2476901E-4, 0.008167466, -0.014147941, -0.015497935, 0.013000445, -0.007985217, -0.0029969874, 0.009929209, 0.015133437, 0.010610956, -0.015767934, -0.012298449, -4.476075E-4, 0.0096929595, -0.03339886, -0.006706097, -7.268876E-4, 0.0066183475, 0.015038937, 0.0075734686, -0.007485719, -0.01430994, -0.0032366116, 0.0063820984, -0.0019895541, 0.025433894, -0.013904942, -0.009557961, -0.022463907, 0.010874204, -0.029024879, 0.006911971, -0.006959221, 0.03377686, -0.010070958, -0.0072427196, -0.008565715, -0.00953771, -0.005045604, 0.011609952, 0.00959846, 0.025811892, -0.04044583, 0.0061762244, -0.009213711, 0.0240434, -0.027283385, 9.0280874E-4, 0.008005466, -0.02853888, -0.023381902, -0.022328908, -0.017455427, 0.016348433, -0.0023270529, -0.015578935, -0.004279482, 0.023341402, 0.009132712, 0.00951071, -0.03663885, -0.013202945, 0.009355461, -0.015079437, -0.0063078487, -0.024664396, 0.020560414, -0.010226208, 0.0054438524, -0.029726876, -0.01441794, -0.020425415, -0.009044962, 0.00956471, -0.0056024767, -0.0074789687, 0.0061289743, 0.018251924, -0.01186645, -0.008531964, -0.04076983, 0.020290416, 0.03353386, -0.011083454, -0.03169787, -0.011805701, -0.0015533373, 0.0050894786, 0.025892893, -0.020573914, -0.015322437, -0.028376881, 0.0013094945, -0.012359198, -0.005784726, 0.0125616975, 0.017846925, -0.010894455, 0.04103983, -0.020762913, -0.0030543623, -0.030401872, 0.030158874, 0.0020908038, -0.003344611, -0.02648689, -0.025123395, 0.011758451, -0.0033800483, -0.037826844, 0.017968426, -0.014647439, 0.00970646, 0.010847204, -0.009267711, 0.008977463, 0.015767934, -0.008761464, 0.0076072183, -0.0033159237, -0.017063929, -0.003638235, 0.005281853, 0.012359198, 0.018589422, -0.02135691, -0.001278276, -8.0472324E-5, -0.010887705, -0.017549926, -0.022801405, -0.0017853676, 0.016645432, 0.018818922, 0.04508981, -0.0010065895, -0.02172141, -0.037907843, -0.024934396, 0.04330782, -0.017779427, 0.010523207, 0.010442207, -0.008241716, -0.02162691, -0.001723774, -0.17279927, 4.1828732E-4, 0.0018174299, -0.025676893, 0.019061921, 0.012426699, 0.029969875, -0.006469848, 0.0042052325, -0.020236416, 0.024218898, 0.00955121, -0.039878834, 0.0031893617, 0.0048971046, 0.015713934, -0.0119272005, 0.02629789, 0.023813901, -0.02178891, 0.03612585, -0.006871471, -0.010037208, -0.006074975, 3.9656085E-4, 0.012399699, 0.017873926, 0.0053966027, 0.013675443, -0.020857412, -0.0483028, -0.0027438635, 0.0025312395, -0.011690951, -0.01452594, -0.002306803, -0.019979917, -0.020114915, -0.004039858, 0.0010833705, 0.025366394, 0.011036204, 0.017846925, 2.891941E-4, 0.016253931, -0.0019979917, 0.025460893, -0.015200936, 0.023462903, -0.020155417, -0.017765926, -0.044738814, 0.020047417, -0.009152962, 0.0070874705, 0.018400423, -0.010975454, -0.011400702, 0.0038947337, -0.009038213, -0.021046413, -0.021383911, 5.264978E-4, -0.004130983, -0.008835713, -0.023165904, -0.015632935, 0.008045967, -0.03593685, 0.015106437, -0.019858418, -0.0034559856, 0.015929934, -0.0029733626, 0.012332198, -0.022355907, -0.029213877, 0.018251924, -9.65246E-4, 0.0068613463, -0.024866896, 0.04333482, -0.015079437, 0.014647439, 0.0048802295, -0.011650451, -0.0029581753, -0.010847204, 0.022409907, -0.021073412, -0.008322716, -0.01945342, -0.041363828, -2.3814745E-4, -0.001021777, 0.010023708, -0.014674439, 0.0056328517, 0.024353899, 0.0032568614, -0.002300053, -0.018184423, -0.015578935, 0.025825392, 0.013985942, 0.0070469705, 0.0084509645, 0.022180408, 0.009024712, 0.008099967, -0.0011905263, 0.0026831138, 0.020060915, 0.015538435, -0.019966416, 0.009902209, -0.025663393, -0.020681914, 0.012210699, 0.0239759, 0.028916879, 0.0050894786, -0.011360203, -0.013472944, -0.004289607, -0.0075464686, -0.08472565, -0.0073574693, 8.4121525E-4, 0.04962579, -0.025015395, 0.027809884, -0.008012217, 0.022544906, -0.03334486, 0.029618876, 0.0040364834, -0.030455872, 0.018481422, 0.0056429766, 0.014849938, 0.007431719, -0.026986387, -0.0022089283, -0.008309215, 0.028970879, 0.0037091095, -0.03150887, -0.006166099, -0.0019946166, -0.011150953, 0.024434898, -0.02905188, 0.030104874, 0.011198203, 0.010475956, 0.012770947, -0.029348878, 0.019696418, -0.030941872, -0.020479415, -0.026797388, -0.02663539, -0.022072408, -0.003813734, -0.04344282, 0.00959171, 0.01441794, 0.0041681076, -0.02861988, -0.013121945, -0.011090204, -0.029483877, 0.0093622105, -0.0054134773, -0.031319868, -0.0072697196, -0.0047519803, -0.03558585, -0.0022848654, 0.011414203, 0.027472386, 0.029834876, 9.770584E-4, -0.011171203, -0.014984937, 0.012372699, -0.0015043999, -0.026041392, 0.025123395, 0.012237699, 0.0049578543, -0.0049241045, -0.00300205, 0.014161441, -0.027148386, -0.017846925, 0.035747852, -0.025865892, -0.017401427, -0.015970433, 0.01927792, -0.026932389, -0.017819926, 0.017482428, -0.041012827, 0.0071144705, -0.032669865, -0.0049004797, -0.0074924687, 0.023233403, 0.013445944, 0.017212428, -0.005028729, 0.003148862, -0.033155862, 0.012541448, 0.018292423, -0.0024164899, 0.004471856, 0.001304432, 0.015862433, 0.008565715, -0.0013997754, -0.00961196, 0.010124958, -0.005045604, 0.0024468647, -0.07333169, 0.027391385, -0.014161441, -0.010894455, -0.007816467, -0.017428428, 0.008484715, -0.0073574693, 0.009395961, 0.022679906, -0.011076704, 0.018359924, -0.011670701, 0.0058623506, -0.0018663672, 0.020141916, 0.0059501003, -0.018278923, 0.008396965, 0.0013002133, 0.004954479, 0.004144483, 0.02158641, 0.012298449, 0.005568727, 0.03366886, -0.0038036092, 0.011204953, -0.012878946, -0.00718872, 0.024340399, -0.018670423, -0.013418944, -1.7613207E-4, -0.0077827177, -0.030806871, -0.011272453, 0.0034087359, 0.0080662165, -0.008261966, -0.0071009705, -0.013850942, 0.0030796747, -0.012473948, -0.0031505495, 0.013675443, -0.018400423, 0.0027539886, 0.021869909, -0.0015440561, 0.033803858, 0.0076342183, -0.007931217, -0.023597902, 0.017144928, -0.011096953, 0.039878834, 0.005700351, -0.009807709, -0.011704451, 0.015659934, -0.0029480502, 0.025892893, -0.03663885, 0.0023827401, -0.0054843524, -5.644664E-4, -0.005062479, 0.0024232399, -0.024934396, -0.0070874705, -0.003844109, 0.0065002227, 0.021208411, 0.021748409, 0.018062925, -0.013918442, 0.010286957, 6.960909E-5, 0.025987392, 0.02643289, -0.010388207, -0.028106883, 0.015524935, -0.010853955, 0.015106437, 0.005767851, 0.024272898, 9.1040245E-4, 0.0030796747, -0.018508423, 7.332157E-4, 0.016645432, -0.00179043, 0.016226932, 0.02636539, -5.610914E-4, -0.012311948, 0.005740851, 0.026338391, -0.011096953, -0.0018089925, -0.009976459, -0.0032264865, -0.026810888, 0.010091208, -0.01455294, -0.018805422, 0.008923463, 0.010887705, 0.019709919, 0.01660493, -0.009227212, 0.017873926, -0.03766484, 0.019385919, -0.0041647325, -0.018157424, -0.02161341, 0.041471828, 0.006034475, 0.0018292423, 0.024785897, -0.012986946, 0.050192792, 0.012521198, 0.0096929595, -0.022436906, 0.004782355, -0.0071144705, 0.008268716, -0.0073709693, -0.024961395, 0.0032163616, -0.0056902263, 0.0029564877, 0.004144483, 0.018130425, -0.014957937, 0.07025371, 0.0032264865, -0.010280207, 0.018427422, -0.0241109, 0.017941425, 0.028403882, 0.023314403, -0.024326898, -0.010361207, -4.6743554E-4, -0.017725427, 0.007013221, -0.036503848, 0.00963221, -0.0044684815, 0.01696943, 0.0033395486, -0.009240711, -0.027188886, 0.0023709277, -0.002618989, 0.025420394, 0.0031100495, -0.025946891, -0.008693964, 0.017387928, -0.0129734455, -0.004529231, -0.023476401, 0.009989958, -0.0236249, -0.013317695, -0.0022055532, 0.017968426, -0.0030881122, -0.008356465, -0.005423602, 0.02853888, -0.0066554723, -0.020614414, -0.0026341765, -0.026081892, 0.0032096116, 0.010043958, -0.020924913, -0.004063483, -0.03599085, -0.022396406 ], + "id" : "43d20b2c-af6a-405e-a32f-9ba6247c115d", + "metadata" : { + "source" : "movies.csv" + } + }, + "035b2449-4c7e-4d07-8a21-b8741436bf68" : { + "text" : "Sagalevitch-Martin Hub-Mark Lindsay Chapman-Richard Graham-Paul Brightwell-Craig Kelly-Ron Donachie-Charlotte Chatton-Fannie Brett-Jenette Goldstein-Camilla Overbye Roos-Linda Kerns-Amy Gaipa-Martin Jarvis-Rosalind Ayres-Rochelle Rose-Jonathan Evans-Jones-Rocky Taylor-Liam Tuohy-Simon Crane-James Lancaster-Elsa Raven-Reece P. Thompson III-Laramie Landis-Mark Rafael Truitt-John Walcutt-Terry Forrestal-Derek Lea-Richard Ashton-Sean Nepita-Brendan Connolly-David Cronnelly-Garth Wilton-Richard Fox-Nick Meaney-Kevin Owers-Mark Capri-Marc Cass-Paul Herbert-Emmett James-Chris Byrne-Oliver Page-James Garrett-Erik Holland-Jari Kinnunen-Anders Falk-Barry Dennen-Vern Urich-Rebecca Klingler-Tricia O'Neil-Kathleen S. Dunn-Romeo Francis-Mandana Marino-Van Ling-Bj�rn Olsen-Dan Pettersson-Shay Duffin-Greg Ellis-Diana Morgan-Kris Andersson-Bobbie Bates-Aaron James Cash-Anne Fletcher-Edmond Alan Forsyth-Andie Hicks-Scott Hislop-Stan Mazin-Lisa Ratzin-Julene Renee-Brian Walsh-Alexandra Boyd-James Cameron-Mike Butters-Bruno Campolo-Kevin De La Noy-Tony Kenny-Sean Lawlor-Don Lynch-Johnny Martin-Ryan McClurkin-Meghan McLeod-Mike O'Neal-Phil Parlapiano-Steven Quale-R. Gern Trowbridge-Olivia Rosewood-John Slade-Brian McDermott,drowning-evacuation-shipwreck-iceberg-forbidden love-ship-panic-titanic-ocean liner-epic-rich woman poor man-based on true story-love-tragedy-disaster-tragic love-historical fiction-class differences-love affair-historical event-lifeboat-star crossed lovers-sinking ship-steerage-rich snob-disaster movie-1910s-sunken ship,/9xjZS2rlVxm8SFx8kPC3aIGCOYQ.jpg,/rzdPqYx7Um4FUZeD8wpXqjAUcEm.jpg,22-8587-12-58-13-12444-18785-8966-1865-671-672-14160-12445-673-585-862-675-11324-674-285-767\r\n140607,Star Wars: The Force Awakens,Adventure-Action-Science Fiction,en,Thirty years after defeating the Galactic Empire Han Solo and his allies face a new threat from the evil Kylo Ren and his army of Stormtroopers.,64.877,Lucasfilm Ltd.-Bad Robot,12/15/15,245000000,2068223624,136,Released,Every generation has a story.,7.", + "embedding" : [ 0.0038719669, -0.033215605, -0.015706392, -0.037012454, -0.02529412, 0.02829882, 0.0042919423, 0.009191654, -0.013862598, -0.033133656, 0.024816098, 0.036930505, 0.011841253, -2.3644947E-4, 0.0013572371, 0.020309046, 0.016034177, -0.030156272, 0.0030678678, -0.04110977, -0.0044694925, -0.002089633, -0.005876239, 0.008112692, 0.006333773, 0.020787068, 0.031603992, -0.013213855, -0.0027947132, -0.010933014, 0.009690161, -0.007108849, 0.0021254844, -0.013357261, -0.023163512, -0.010441336, 0.01162273, -0.02065049, 0.022658177, -0.011520296, 0.014354276, 0.004773377, -0.016662432, -0.004472907, -0.02835345, -0.0029944577, 0.018164784, -0.015433237, 0.0015842968, 0.030893788, 0.033024393, 0.04100051, -0.028571974, -0.019284718, -0.005063604, -0.004585583, -0.013685047, -0.0029705565, -0.011076421, 0.008686317, 0.007020074, -0.016744379, -0.030975735, 0.0035475958, -0.012681204, -0.012749492, -0.00647035, -0.021347035, -0.0036329567, 0.0025932617, 0.00831073, 0.016812667, 0.023750795, -8.412309E-4, 0.0138421105, -0.032341506, -0.022385022, 0.003487843, -0.015583471, 0.014682061, 0.010181839, -0.0064942515, -0.016935587, 0.003218103, 0.011547612, 0.0023525443, -0.006347431, 0.010584742, -0.03534621, 0.0073342016, 0.004203167, 0.03925232, -0.012305616, 0.006962029, 0.002932998, 0.022193814, -0.016348304, 0.023805426, 0.0025283876, -0.037203662, -0.004049517, -0.0035988123, 0.004401204, -0.017208742, -0.011882226, -0.0048723957, 0.0102911005, -0.002909097, 0.01522837, 0.014613773, -8.792165E-4, 0.0049987296, 0.008952643, -0.022357706, -0.011848082, -0.021988947, 0.017550185, -0.031139627, -0.01992663, -0.03184983, 0.035673995, 0.022425994, 0.011035447, -0.031986408, 0.027206201, 0.045889977, -0.009014103, -0.013883084, 0.0037251462, -0.004510466, 0.02955533, -0.0061562224, 0.017222399, 0.0017379463, -0.020309046, 0.039880577, -0.020691464, 0.010905699, -0.028025664, -0.019271059, 0.02480244, 0.0325054, -0.031084998, -0.0052957856, -0.024215158, 0.009778935, 0.007969286, 0.014572799, 0.027178885, 0.0036944163, 0.02227576, 0.019598845, 0.0048723957, 0.013309459, 0.02035002, -0.0028920246, 0.0032402968, -0.011691018, -0.012189525, -0.009860883, -0.0038753813, 0.00418268, -0.0011506638, -0.006910812, 0.011718334, 0.019776395, 0.013527983, -0.02510291, -0.0069449563, 0.0077644205, -0.009942829, 0.020909987, -0.033734597, 0.003516866, 0.009225798, 0.026386738, 0.013821624, -0.02402395, -0.041874606, -0.030593319, -0.004046103, 0.013896742, 0.033652652, 0.03245077, -5.9539172E-5, 0.014299645, 0.03045674, -0.018997904, 0.021756766, -0.0072112824, -0.007668816, 0.014982532, 0.009116536, -0.0087409485, -0.6446449, -0.034280907, -0.001207002, -0.012592428, 0.019421294, 0.017550185, 0.003684173, 0.0044148616, -0.034636006, -0.006309872, -0.03485453, 0.026031636, 0.020104181, -0.0030644536, -0.017208742, -0.016102465, 0.0044899792, -0.016443908, 0.030893788, -0.0022176742, -0.03395312, 0.027998349, 0.030675264, -0.011069591, 0.014859612, 0.002344008, 0.011124223, -0.007177138, -0.0057055173, 0.0022910845, -0.014245014, 0.006419134, 0.0077712494, 8.8945974E-4, 0.035919834, 0.010202326, -0.019216428, 0.058564354, 0.027998349, 0.030839158, -0.021456296, -0.014613773, 0.0023303505, 0.0060298885, -0.012974845, 0.022685492, 0.0055757686, 0.0024379052, -4.3960824E-4, -0.0029244618, -0.009464808, 0.00915068, -0.015283002, -0.00583868, -0.0029637278, -0.0107554635, 0.009819909, -0.040017154, 0.015815653, 0.019216428, -0.034444798, 0.029937748, 0.0028664165, 0.0089321565, 0.0013222392, 0.027247174, -0.0056440574, 2.1436236E-4, 0.004298771, -0.036329567, 0.0015236906, 0.0012172454, -0.0029671423, -0.00782588, 0.0037285606, 0.007020074, 0.030757211, 0.0027178887, -0.0045377812, 0.007839538, 4.0573064E-5, 0.0028612947, 0.004561682, 0.005104577, 0.022767438, 0.0020315875, -0.04130098, 0.004056346, 0.013821624, -0.008269756, 0.0073546884, 0.016990218, 0.008734119, 6.141711E-4, 0.009737963, 0.0055108946, -0.019175455, 0.014040148, 0.02955533, -0.060585696, -0.0021408494, -0.007778078, 0.020404652, -0.007580041, 0.009567241, 0.00885021, -0.012059777, -0.006279142, 0.027889088, -0.023327405, -0.0053367587, 0.0011335918, -0.021142168, -0.012032461, -0.0056064986, -0.031112311, 0.028817814, 0.021961633, -6.0563505E-4, -0.010721319, 0.00656254, 5.0704327E-4, 0.0037217317, -0.007900998, 0.0066854595, 0.02589506, -0.011704676, -0.002673501, 0.0032761483, 0.01282461, 0.0061664656, -0.0072454265, 0.017959917, -0.0162527, 1.9088814E-4, 0.0066922884, 2.7166083E-4, -0.0072044535, 0.020390993, 8.514742E-4, -0.022794753, 0.006248412, -0.0011754185, -0.020991933, -0.009601385, -0.009109707, -0.02715157, -0.0101476945, -9.15068E-4, -0.024884386, -0.019230086, 0.0072522555, -0.0044831503, 0.008017088, 0.0024686349, 0.0046265568, -0.03100305, -0.017290687, 0.0058011212, -0.01180028, 0.013609929, 0.012968016, 0.004189509, -0.018615488, 0.020063208, -0.0113154305, -0.008242441, -0.004486565, -0.014804981, -0.009177996, 0.0208417, -0.020199785, -0.0011250556, 0.024119554, -0.0258814, 0.028134927, -0.017208742, 0.02829882, 0.0033359008, -0.006002573, 0.0010277443, -0.008058062, -0.020636832, 0.0028920246, 0.022794753, 0.036165673, 0.014408907, 8.702536E-4, -0.0056201564, 5.0405564E-4, -0.019940289, -0.007382004, 0.010270614, -0.0042782845, -0.010823752, 0.027493013, -0.016812667, 0.002296206, 0.011704676, 0.0023013277, 0.036493458, 0.012237327, 0.026332106, -0.017372634, 0.021114852, -0.022822069, 0.009526268, -0.026400395, 0.01414941, -0.0010482309, 0.021442639, 0.0059855008, -0.023819083, -8.408041E-4, 0.0030098227, 0.016443908, -0.0028339792, -0.0026888659, -0.0211968, 0.015419579, 0.003889039, 1.6730721E-4, 0.0077917357, 0.021756766, -0.03660272, -0.007429806, 0.022671834, -0.019393979, 0.0046743588, -0.02071878, -0.0064635216, 0.009437492, 0.0039948863, 0.024583917, -0.010270614, -0.001463938, 0.030128956, -0.0056611295, 0.03529158, -0.018082837, 0.0060708616, 0.014108436, 0.025253145, -0.0030695752, 0.0068186224, -0.011076421, 0.020431966, 0.019667134, -0.01065303, 0.017003875, -0.01980371, 0.031658623, -0.0043568164, 0.0044114473, 0.011472494, -0.019462267, 0.010816923, 0.008153666, 0.02402395, 0.01865646, 0.0039948863, -0.011090078, 0.004059761, 0.005148965, 0.0022910845, 0.0025761896, -0.018260388, 0.0047767917, -0.0053299298, -0.030511372, -0.023436667, -0.009949657, -0.0050499463, 0.018328676, -0.0066035134, -0.009102878, 0.0038856247, 0.012858754, 0.014313303, 0.012182697, -0.007491266, -0.020582201, 0.018233072, 0.024788782, -0.0101476945, -0.024638548, -0.021333376, -0.007484437, -0.040536147, -0.0082765855, -0.019066194, 0.034991108, -0.014859612, 0.003588569, -0.024993649, 0.0056064986, 0.010072577, -0.023177171, 0.027110597, 0.029036338, -0.009382862, 0.008870697, -0.0060913484, -0.024215158, 0.034362853, -0.021606531, 0.007778078, 0.0035544245, -8.9458143E-4, -0.02220747, 0.011322259, 0.0020315875, -0.04703723, 0.01402649, -0.012394391, -4.5411958E-4, -0.0072795707, 0.0024379052, 0.014231356, -0.007641501, -0.004660701, -0.018793039, -0.030675264, 0.011349575, 0.08445941, 0.055477705, 0.007416148, 0.012749492, 0.0018352576, -1.7349586E-4, -0.0026769154, -0.014422565, -0.017372634, -0.013589443, 0.014968874, -0.0061493935, 0.023545928, 0.0048792246, 0.018601831, -0.008720461, 0.0023935174, -0.008754605, 0.0060742763, -0.013227513, -0.020445624, -0.01577468, 0.015187398, 0.023395695, -0.0034605276, -0.019421294, 0.018615488, 0.0028356866, 0.0011344453, 0.017673105, -0.01499619, 0.016443908, -3.4613814E-4, 0.013896742, -0.0073888325, -0.0149279, 0.034280907, 0.0036705153, 0.014586457, -0.0029637278, 0.0072659133, -0.0032402968, 0.01752287, -0.011841253, -0.003202738, -0.01035939, -0.017741393, 0.025854087, 0.020978276, -0.04780206, 0.018492568, 0.003769534, -0.031603992, -0.005370903, 0.017618474, -0.0029825072, -0.009642359, 0.005244569, -0.018588172, 0.012080263, -0.0060401317, -0.034117013, 0.015501525, -0.008242441, -0.0053743175, -0.0071634804, -0.025662877, -0.014968874, -0.014518169, 0.004565097, 0.0073068864, -0.014490853, -0.0034485771, 0.008727291, 0.012974845, -0.0023952248, 0.020295389, -0.013056791, 0.015815653, 0.015242028, -0.027643248, -0.01288607, 0.012394391, -0.027069625, -0.005855752, 0.0101476945, -0.021155827, 0.015638102, 0.0102432985, 0.0060913484, 0.009123364, 0.0018711092, -0.03335218, -0.011417864, 0.035236947, 0.01944861, 0.016839983, 0.014081121, 0.003527109, 0.002026466, 0.009376032, -0.038514804, -0.0061869523, -0.019994918, -0.021811398, 0.0013444329, -0.007819051, 0.0029449484, -0.0060606184, -0.014326961, -0.022644518, -0.02715157, 0.005159208, 0.0068971543, 3.7772163E-5, 0.0062928, 0.03351607, 0.020145154, -7.460536E-4, 0.0029125114, -0.0095877275, -0.020568544, 0.0030832328, 0.017563842, -0.025785796, 0.037722655, -0.0056030843, -0.03299708, -0.016320989, 0.018437937, -0.00824927, 0.023750795, -0.025034621, 0.0040187873, -0.018342333, -0.021292403, 0.0025898474, -0.0014869855, -0.0076619876, 0.020390993, -0.027561301, 0.0056099133, 0.023887372, -0.006364503, -6.683752E-4, -0.028981706, 0.003960742, -0.008665831, 0.008734119, 0.012899728, -0.018943274, 0.012899728, -0.018410621, -0.014654746, -0.0060947626, -0.03209567, -0.014613773, -0.005159208, 0.0321503, 0.0077917357, 0.051626224, -7.2087214E-4, 0.022125525, 0.0030729896, 0.005616742, 0.021046564, -0.023218144, -0.007272742, -0.012804124, 0.012414878, 0.013555299, 0.0120188035, 0.022685492, 0.0044592493, 0.015679076, 0.017959917, 0.008379018, 0.01505082, 0.0032863917, -0.032532718, -0.018492568, 0.013603101, -0.02052757, -0.0022108452, -0.03220493, -0.018970588, 0.0215519, -0.010830581, -0.015610787, -0.0029398268, 0.022822069, -0.010407192, 0.010857897, -0.027889088, 0.036739297, -0.02437905, -0.0026683793, -0.017796025, -0.0020862184, -0.0034263835, -0.005411876, 0.016116124, -0.003414433, -0.01602052, -0.0112608, 0.025690192, -0.027902745, -0.020390993, 0.02697402, -0.024242474, -0.007614185, -0.018069178, -0.01119934, -0.025061937, -0.0070405607, -0.0054391916, 0.002106705, -0.003172008, -0.031139627, -0.030484056, 0.022630861, -0.0016064907, 0.04389595, 0.018355992, 0.043814003, 0.009819909, 0.007532239, -0.020309046, 0.0071498225, -0.008167324, -0.002878367, 0.023163512, 0.02220747, -0.01752287, 0.0070951916, 0.0059445277, -0.004401204, -0.03359802, -0.031030366, 0.034827214, 0.012285129, 0.014804981, -0.028380767, -0.0054767504, -0.035537418, 0.019585187, 0.0021015834, 0.0032983422, 0.01595223, -0.03570131, -0.014326961, 0.0131865395, 0.006958614, 0.012694862, 0.009676503, -0.039935205, 0.01962616, -0.011889055, 0.0013043133, -0.013896742, -0.019831026, 0.03529158, -0.022166498, 0.0050977482, 0.010277443, 0.018697435, -0.012264643, -0.011820766, 0.010434506, 0.02884513, -6.482087E-5, 0.0067776493, 0.004107563, -0.0028271505, 0.020923644, 0.01565176, -0.011752478, -0.0064566927, -0.020295389, -0.018014548, 0.029582646, -0.006982515, -0.0055211377, -0.0021715793, -0.018683776, -0.007436635, 0.0100998925, -0.017140454, 0.011178853, -0.03813239, -0.002026466, -0.004070004, -0.001751604, -0.011397377, -0.0050840904, -0.007054218, -0.010571084, 0.020213442, -0.016484883, -0.009164338, -0.019475926, -0.025471669, -0.047064543, -0.011998317, -0.0082765855, -3.6726493E-4, 0.0044933935, -0.015993204, 0.0043431586, 9.995752E-4, 0.021046564, -0.0025574102, 0.0031446926, -0.018055521, -0.006460107, 0.02239868, -0.016484883, 7.989773E-4, 0.0014810102, 0.025184857, 0.003540767, -0.0108032655, 0.0029159256, 2.6528543E-5, 0.033734597, -0.021292403, 0.016662432, -0.0109466715, -0.030866474, -0.0094443215, 0.031221574, 0.030128956, 0.018752065, 0.002562532, -0.021838713, -0.015310317, -0.006917641, 0.03149473, -0.008208296, 1.9387576E-4, 0.03094842, 0.025854087, 0.049878035, 0.019844685, -0.0024515628, -0.022917673, -0.0038480659, -0.002344008, -0.019107167, -0.0015800288, 0.008536082, 0.01685364, 0.003170301, -0.014832296, -0.03195909, -0.0061562224, -0.013650903, -0.023573244, -0.008051232, 0.023942003, 0.020800725, 0.014682061, -0.0055655255, 0.0052650557, -0.0062757274, 0.0020725608, -0.006743505, -0.003919769, 0.019544214, 0.0055860123, 0.014067464, 0.016594144, -0.019038878, -0.0041621937, 0.017864313, 0.02149727, 0.012312445, 0.014094779, -0.012367076, -4.031165E-4, -0.007634672, 0.011158367, -3.440041E-4, -0.007320544, 0.03630225, -0.031057682, 0.004107563, 0.009649187, 0.017714078, -0.0042885276, 0.013937715, 0.0053777318, -0.006285971, -0.00921214, 0.0024310763, -0.028134927, -0.002856173, -0.028216872, 0.033406813, 0.01264706, 0.006886911, 0.030265532, 0.034417484, -0.008563397, 0.007429806, -0.0027434968, 0.010878383, -0.024105895, -0.009915513, -1.4447319E-4, 0.019298375, -0.027165229, 0.014285987, -0.014108436, -0.004520709, -0.007470779, -0.0024003463, -0.011650045, 0.029937748, 0.004100734, -0.038514804, 0.0035919833, -0.00344687, -0.0025266802, -0.0055825976, -0.002113534, -0.014135752, -0.0019581772, -0.008495109, 0.006419134, -0.008017088, -0.03329755, 0.004520709, -0.009430664, -0.011294944, 0.018328676, 0.17918944, -0.009860883, 0.01535129, 0.039334267, -2.8190413E-4, 0.0036500287, 0.029172914, 0.025990663, -0.0040665898, 0.013773822, -0.0022859627, 0.0071020206, 0.007491266, 0.0055552823, 0.01475035, -0.016239043, -0.01750921, -0.031440098, -0.018041864, -0.022002606, -0.010919357, 8.8604534E-4, -0.012858754, -0.024297105, -0.006285971, -0.013493839, -0.018082837, -0.0013871134, 0.009621872, -0.0051933522, -0.008023918, -0.01962616, -0.005971843, 0.002620577, -0.022248445, -0.010543768, -8.6811953E-4, 0.001766969, 0.017481897, -0.009656016, 0.008399505, -0.016402936, 0.010530111, 4.4046185E-4, -2.5544225E-4, 0.015460552, -0.014586457, 3.8860514E-4, -0.006610342, -0.009485294, -0.041082457, -0.0017029484, 0.025498984, 0.031057682, -0.010441336, -0.010796437, 5.740515E-4, 0.00650108, -0.007532239, -0.0037353896, 0.0019376907, 0.030156272, -0.020281732, 0.012606086, 0.0036261277, 0.021579215, -0.02884513, -0.01577468, 0.012380733, -0.039580107, -0.004011959, -0.03359802, -0.021647504, 7.1447005E-4, -0.0056986883, -0.01817844, 0.020281732, -0.0022347462, 2.5608248E-4, 0.030566003, -0.023163512, -0.017782366, -0.004093905, -0.020664148, -0.015337632, -0.028025664, 0.011103735, -0.008611199, -0.013746507, -0.0038617235, -0.015269344, -0.02059586, -0.016184412, -0.0012778515, 5.9496495E-4, -0.009246284, 0.024652205, 0.015733706, -0.0108510675, 0.0013060205, -0.036274936, 0.02335472, 0.020855356, 6.6709484E-4, -0.030128956, -0.02082804, 0.0029807999, 0.0037285606, 0.026086267, -0.021579215, -0.022849385, -0.021210456, 0.001135299, -0.009696989, -0.014122094, 0.026386738, 0.009580899, 0.0016764866, 0.049277097, -0.021866027, 0.0044080326, -0.008460965, 0.014777665, -0.0029483628, 0.0017370927, -0.030811843, -0.030729895, 0.0043124286, -0.015337632, -0.035155002, 0.029009022, -0.011636388, 0.011322259, -0.00824927, -8.553154E-4, 0.011820766, 0.016962903, -0.012974845, 1.2067886E-4, -0.017741393, -0.006371332, -0.02336838, -1.1086237E-4, 0.0064088907, 0.0096355295, -0.0055211377, 0.008577055, -7.533092E-4, -0.013746507, -0.034280907, -0.014354276, -0.0022910845, 0.008713633, 0.0060435464, 0.03100305, -0.011731992, -0.019066194, -0.033925805, -0.019066194, 0.04195655, -0.03433554, 0.036220305, 0.019161798, -0.0067742346, -0.018342333, -0.008638515, -0.17591158, 0.02564922, -0.0043158433, -0.028763182, 0.0127699785, 0.007593699, 0.030156272, 0.007108849, 0.015419579, -0.011144709, 0.022166498, 0.001877938, -0.035373524, 0.0034485771, -0.006402062, 0.008153666, -7.0166594E-4, 0.03376191, 0.031767882, -0.0051626223, 0.03510037, -0.015269344, -0.011991488, 0.0028049566, 0.0059650145, -0.00848828, 0.013418721, -0.0010704247, -0.0022057237, 0.0049679996, -0.039989837, -0.003557839, 0.01667609, 0.006050375, -0.027711537, 0.0038070926, -0.018820355, -0.019967603, -0.00933506, -0.0021510927, 0.035783257, 0.00831073, 0.026345763, 0.013097765, 0.0121622095, 0.016990218, 0.03624762, -0.01149981, 0.012831438, -0.020513913, -0.017673105, -0.042065814, 0.02324546, 0.002958606, 0.0034451627, 0.021333376, 0.017236058, -0.0078122225, 0.0031805441, -0.005172866, -0.020104181, -0.011540784, 0.007689303, -0.015242028, -0.0068049645, -0.026878415, -2.1297525E-4, -4.886907E-4, -0.025635563, 0.018560857, -0.017290687, 0.025130225, 0.009485294, 0.0048723957, 0.0057294182, -0.023081567, -0.033133656, 0.012735834, -0.0076961317, 0.010700833, -0.032833185, 0.040836617, 0.0030542102, 0.009833567, 0.010830581, -0.014654746, -0.004739233, -0.0062757274, -0.00932823, -0.01770042, 0.0056338143, -0.0114110345, -0.03384386, 0.008597542, 0.0068595954, -0.0033137072, -0.0054494347, 0.013302631, 0.022439653, -0.0030166514, 0.003865138, -0.017249715, -0.016211728, 0.017126795, 0.0393889, 0.012469509, -0.005230911, 0.019653475, 0.030538687, -0.0054733357, -0.014832296, -0.0056747873, 0.017236058, 0.0055245524, -0.019298375, 0.019407636, -0.0033410226, -0.030484056, 0.020431966, 0.023259116, 0.05605133, -0.012107579, 0.015009847, 0.0044387626, -0.0024600988, -0.02125143, -0.084677935, -0.003708074, 0.014545484, 0.02895439, -0.022344049, 0.041219033, -0.008235612, 0.007866853, -0.018287702, 0.02793006, 0.003731975, -0.041628767, 0.006443035, -0.0060333028, 0.018915959, 0.0020452454, -0.020295389, -0.018205756, -0.015720049, 0.02197529, -0.0014195505, 0.0017925772, 0.006958614, -0.006412305, -0.008775093, 0.016416593, -0.03813239, 0.027971035, 0.021005591, 0.02589506, 0.01969445, -0.02794372, 0.0026922803, -0.030292848, -0.028517343, -0.034717955, -0.008768263, -0.03034748, -0.004551439, -0.046081185, 0.009102878, 0.015310317, 0.0023252289, -0.029691909, -0.018246729, 0.016949246, -0.031221574, 0.04348622, -0.009225798, -0.014586457, -0.009649187, -0.030429427, -0.02691939, -0.013097765, 0.025608247, 0.014709377, 0.036493458, 0.0030985978, -0.014832296, -0.03419896, -0.020404652, 0.0030490886, -0.027001334, 0.0101476945, 0.012496824, 0.014668403, -0.00945115, -0.012005146, 0.006767406, -0.029063653, -0.023969319, 0.021756766, -0.02745204, -0.00683228, -0.017017534, -0.0038002639, -0.03829628, -0.0126743745, 0.033434127, -0.029965064, 0.0054528494, -0.024993649, 0.021647504, -0.011745649, 0.015569814, 0.03220493, -0.0024771711, 0.011916371, 0.003998301, -0.03195909, 0.0049782433, 0.026113583, -0.006586441, -0.0042714556, -0.0023303505, 0.03351607, 0.012011975, 0.00806489, -0.002926169, -0.0054050474, -0.00400513, 0.015160082, -0.072385974, 0.032368824, 0.0024088824, 0.0013034598, -0.015665418, -0.003738804, -9.176288E-4, -0.0066854595, -0.0059615998, 0.01715411, -0.001494668, 0.015965888, -0.0023491299, -2.7784947E-4, -0.011069591, 0.009068734, 0.005189938, -0.0054801647, 0.003834408, 1.9472938E-5, -0.020035893, 0.011882226, 0.0032915133, 0.0036739297, 0.009608214, 0.008440478, 0.020090522, 0.0101954965, -0.027493013, -0.0066786306, 0.031057682, -0.021347035, -0.004657286, 0.00926677, -0.016102465, -0.033734597, 0.02047294, -0.003660272, 0.019503241, 0.013070449, -0.004268041, -0.020404652, -0.0018608659, -0.007969286, -0.008392676, 0.010892041, -0.0049201977, 0.017208742, 0.01709948, 0.0030934762, 0.03714903, 0.020295389, -0.00848828, -0.018738408, 0.026318448, -0.014204041, 0.048403, 0.009485294, 0.00245327, -0.014231356, 0.012148553, -0.012059777, 0.029937748, -0.02510291, 0.005224082, -0.010748635, 0.017017534, 0.009601385, -0.0030798186, -0.034035068, -0.017126795, -0.0020401236, 0.01595223, 0.04673676, 0.014217698, 0.01162273, -0.009703818, 0.0073615173, 0.005797707, 0.00623134, 0.012353418, -0.0012693154, -0.031084998, 0.021770423, -0.0013085814, 0.013261657, 0.003487843, 0.023860058, 0.0049816575, 0.01149981, 0.004691431, 0.026468683, 0.015569814, -0.0025283876, 0.00897313, 0.02336838, -0.036711983, -0.007914656, 0.0109944735, 0.017850654, -0.012414878, 0.0027912988, -0.010625715, -0.027779825, -0.030893788, 0.0044455915, -0.014572799, -0.020554885, 0.027383752, 0.014354276, 0.019585187, 0.01522837, -0.01902522, 0.0090755625, -0.030975735, 0.0071907956, -0.008399505, -0.02715157, -0.011281286, 0.036192987, 0.012517311, 0.0017891629, 0.032887816, -0.011329088, 0.050369713, 0.012510482, 0.023013277, -0.025376065, 4.3960824E-4, 0.0095399255, 0.0067878924, -0.001592833, -0.008023918, 0.013958202, -1.6367937E-4, 0.0016559999, 0.009068734, 0.024843413, -0.027725196, 0.07025537, 0.016239043, -0.013247999, 0.021879686, -0.019503241, 0.019271059, 0.018233072, 0.008119522, -0.013439207, -0.015665418, -0.014545484, -0.009819909, 0.0035817402, -0.03600178, 0.014354276, -0.012810952, 0.0108510675, 0.01969445, -0.011049105, -0.017003875, -0.011452008, -0.00932823, 0.025007306, 0.0073137153, 0.0018506226, -0.009976973, 0.015405921, -0.005797707, 0.004431934, -0.03064795, 0.0037900205, -0.025908716, -0.009847225, -0.007061047, 0.0202271, -0.014490853, 0.003636371, -0.011793451, 0.024420025, 0.006419134, -0.009703818, -0.015706392, -0.018069178, -0.021142168, 0.01270169, 0.002902268, -0.0062893853, -0.023095224, -0.015009847 ], + "id" : "035b2449-4c7e-4d07-8a21-b8741436bf68", + "metadata" : { + "source" : "movies.csv" + } + }, + "06104d76-2564-49e4-96c3-99902e307545" : { + "text" : "5,7343,Tom Cruise-Dakota Fanning-Justin Chatwin-Miranda Otto-Tim Robbins-Rick Gonzalez-Yul Vazquez-Lenny Venito-Lisa Ann Walter-Ann Robinson-Gene Barry-David Alan Basche-Roz Abrams-Camillia Sanes-Michael Brownlee-Marlon Young-John Eddins-Peter Gerety-David Harbour-Miguel Antonio Ferrer-January LaVoy-Stephen Gevedon-Julie White-Marianne Ebert-Rafael Sardina-Amy Ryan-Ed Vassallo-Michael Arthur-Danny Hoch-Sharrieff Pugh-Erika LaVonn-Christopher Evan Welch-John Michael Bolger-Omar Jermaine-Robert Cicchini-Jim Hanna-Tracy Howe-Adam Lazarre-White-Vito D'Ambrosio-Laura Zoe Quist-Ana Maria Quintana-Lorelei Llee-Mark Manley-John Scurti-Becky Ann Baker-Mariann Mayberry-Ty Simpkins-Jerry Walsh-Tommy Guiffre-Daniel Franzese-Ed Schiff-Ellen Barry-Amy Hohn-Dan Ziskie-David Conley-Daniel Eric Gold-Booker T. Washington-Maggie Lacey-Eric Zuckerman-Daniel A. Jacobs-Asha R. Nanavati-Joaquin Perez-Campbell-Dendrie Taylor-James DuMont-Travis Aaron Wade-Benny Ciaramello-Ricky Luna-Columbus Short-Kent Faulcon-Kevin Collins-Terry Thomas-Clay Bringhurst-Jorge-Luis Pallo-Suanne Spoke-Kirsten Nelson-Melody Garrett-Lauri Johnson-Takayo Fischer-Shanna Collins-Elizabeth Jayne Hong-Art Chudabala-Jeffrey Hutchinson-Dempsey Pappion-Chris Todd-Johnny Kastl-Juan Carlos Hern��ndez-Bruce W. Derdoski Jr.-John N. Morales-Morgan Freeman-Peter E. Tasciotti-David Gere-James Boss-Martin Dew-Joe Duffy-Freddie Johnson-Anthony Jennings-Ingrid Johnson-Tanda Ker�_n-Victor Magnusson-Robert O'Connor-Miho Nakamura-Vladislav Kozlov-Channing Tatum,post traumatic stress disorder-new jersey-based on novel or book-underground-airplane-dystopia-daughter-remake-alien-survival-apocalypse-creature-alien invasion-human subjugation,/6Biy7R9LfumYshur3YKhpj56MpB.jpg,/nH6hPhJq3EEv9CnBZgXU3IQnpJo.jpg,180-435-254-602-9738-217-2048-652-616-2059-8960-1593-330-1635-95-608-6479-607-601-310-956\r\n329648,Mayweather vs. Pacquiao,Action,en,Floyd Mayweather Jr. vs. Manny Pacquiao billed as The Fight of the Century Battle for Greatness or Legacy was a professional boxing match between the eight-division world champion Manny Pacquiao and undefeated five-division world champion Floyd Mayweather Jr. The fight took place on May 2 2015 at the MGM Grand Garden Arena in Las Vegas Nevada.,3.965,,5/2/15,0,600000000,0,Released,Fight of The Century,7,3,Floyd Mayweather Jr.-Manny Pacquiao-Vasyl Lomachenko-Gamalier Rodriguez-Brad Solomon-Adrian Granados-Jesse Hart-Mike Jimenez-Christopher Pearson-Said El Harrak-Leo Santa Cruz-Jose Cayetano,boxing,/sM2iNLwOv4nnADdZUsyX0Ylc2Gb.", + "embedding" : [ -0.0029580344, -0.02345802, -0.010649611, -0.03286323, -0.018755417, 0.032065712, -0.0028377194, -0.007459541, -0.03459577, -0.03509078, 0.019470433, 0.051646147, 0.007184535, 0.00242521, 0.0021467665, 0.013764056, 0.007184535, -0.015207838, 1.19348355E-4, -0.037070826, 0.0062117004, -0.0020848901, -0.016527867, 0.013516551, 0.008841447, 0.021945488, 0.018741667, -0.012464652, -0.008676443, -0.0152903395, 0.008030178, -0.014231566, 0.0066517103, -0.0074389153, -0.030470677, -0.006995468, 0.008408312, -0.019704187, 0.03960088, 0.0024544296, 0.009618339, 0.007239536, -0.016706621, 0.012863411, -0.015799101, 0.019236678, 0.020171698, -0.013846558, -0.009412084, 0.026208082, 0.033083234, 0.02113422, -0.005479497, -0.023348019, -0.0049397973, -0.0117977625, -0.0153453415, 0.006565771, -0.010821491, 0.018150404, 0.0051529272, -0.012643406, -0.024076786, -0.017449139, -0.018329157, -0.0113027515, 0.006596709, -0.006053572, -0.0050841756, 0.016376615, 0.018576663, 0.011976516, 0.029865663, 0.016417865, 0.022220494, -0.015166587, -0.03957338, -0.0097970925, 0.0021691108, 0.0012074487, 0.013901559, -0.008545815, -1.421223E-4, 0.0012753408, 0.019085424, 0.017930398, 0.0022928636, 0.02068046, -0.040233396, 0.0053488687, 0.0025489628, 0.031818207, -0.0033086673, -0.0069920304, -0.00811268, 0.026153082, -0.0046647913, 0.014740327, -0.0137984315, -0.028188126, 0.0063973297, 0.004551351, -0.009473961, -0.01794415, -0.0064248303, -0.0057751285, 0.0074389153, -0.017022878, -4.2346644E-4, 0.0061051357, -0.0077207964, -0.0017127724, 0.012093394, -0.052471165, -0.010491483, -0.02524556, 0.023691777, -0.009625214, -0.0013200294, -0.019704187, 0.01981419, 0.022096742, 0.015936604, -0.015771601, 0.02748686, 0.027803117, -0.0082845595, -0.008910198, 0.012127769, 0.014781578, 0.021381725, 7.472432E-4, 0.017669143, -0.001225496, -0.016472867, 0.02923315, -0.028958144, 0.0053969948, -0.035035778, -0.01485033, 0.033935755, 0.02873814, -0.036245804, -0.024791801, -0.022426749, 0.019099174, 0.008195182, 0.0054657464, 0.028270628, 0.004681979, 0.034073256, 0.029893164, 0.0039085243, 0.026744345, 0.014534073, 0.002296301, -0.012093394, 0.002418335, 0.011130872, -0.030745683, -0.024076786, -0.0010974463, -0.0060570096, -0.0034599206, 0.011213374, 0.009638964, 0.017435387, -0.017297884, -0.024530545, -0.009934596, -0.005819817, 0.014877831, -0.022385497, 0.024406793, -0.0011911202, 0.008305185, 0.008380812, -0.0102852285, -0.048236072, -0.014987833, -0.009563338, 0.0014008124, 0.030690683, 0.031625703, 0.0011851045, 0.010766489, 0.010903993, -0.02517681, -0.0010054911, -0.014259067, -5.938413E-4, 0.021464227, 0.0074457903, -0.011749636, -0.6397742, -0.014506573, -0.013867184, 0.003301792, 0.024915554, 0.022275494, 0.014561574, -0.0028033436, -0.017779145, -0.014575324, -0.030773183, 0.02613933, 0.008752069, -0.011048371, -0.015537845, -0.020171698, 0.009013325, 0.0024372416, 0.019456683, -2.913346E-4, -0.022124242, 0.019704187, 0.012038393, 0.007287662, 0.010903993, -0.010910868, -0.02524556, -0.012670906, 0.021505479, -0.004214469, -0.02783062, 0.014217816, 5.504419E-4, -7.309147E-4, 0.04133342, -0.0069129663, -0.010752739, 0.04677854, 0.022467999, 0.03275323, -0.020102946, -0.010298979, 0.0034616394, -5.384104E-4, -0.018342908, 0.01977294, 0.0036369557, 0.0035475788, -3.7641462E-4, -0.014561574, -0.006338891, 0.0024561484, -0.021876736, -0.025685571, 0.0059366943, 0.0011490099, 0.0072257854, -0.038363352, 0.02343052, -0.007067657, -0.0148228295, 0.011866514, 0.0046407282, 0.0075901686, 0.0034117945, 0.035310786, -0.019264178, 0.0074320403, 0.028463133, -0.032148216, 0.009583963, 0.016019106, -0.019511683, 0.005321368, 0.0202817, 0.011639634, 0.021422977, -0.011515881, -0.0108146155, 0.006923279, 0.0029752224, 0.0070470315, -0.005596374, 0.016376615, 0.013640303, 0.011660259, -0.031323195, 0.01171526, 0.008071429, -0.0010828365, -0.0036163304, 0.023733027, 0.013846558, -0.0030645994, -0.005606687, -0.0044000978, -0.030498179, 0.007693296, 0.030058168, -0.06963155, 0.0017497264, -0.0032502285, 0.027610613, -0.010271478, 0.011880264, 0.008449563, -0.004166343, -0.01436907, 0.018947922, -0.008105805, -0.005445121, 0.0050188615, -0.011027745, -0.01214152, -0.0057991915, -0.029013146, 0.010257728, 0.027624363, -0.010147725, -0.0134753, -0.0026503715, -0.002928815, 0.011949016, -0.027816867, 0.009226455, 0.035420787, -0.009267706, -0.0016887094, 0.021519229, -0.0065863966, -0.006565771, 0.003415232, 0.024544295, -0.013461549, 0.020570457, -7.3736015E-4, 0.019580435, 0.00275178, 0.0028308441, 0.0026727156, -0.019607935, 0.011454005, -0.005606687, -0.0048469827, -0.014272817, -0.030883186, -0.016885376, -0.002660684, -0.007239536, 1.5436867E-4, -4.0821218E-5, 1.5549662E-5, -0.005273242, 0.005455434, 0.004025402, -6.3552195E-4, -0.029755661, -0.02204174, 0.0015030802, -0.028091874, -0.0030766309, 0.014575324, -0.010347105, -0.021945488, 0.034458265, -0.020157948, -0.014190315, 0.015620347, -0.010745863, -0.012602155, 0.037923343, -0.006359516, 0.011041495, 0.03385325, -0.0013724524, 0.028243128, -0.01665162, 0.029783161, 0.0053248056, -1.0377184E-4, 2.3697792E-4, -0.0035750794, -0.01883792, -0.01103462, 0.029618159, 0.014781578, 0.00970084, -0.010175226, -0.024860553, 0.007548918, -0.0107871145, -0.013454674, -0.003085225, -0.01190089, 0.0011498693, 0.039958388, -0.012567779, 0.0054416833, 0.0074320403, 0.0039325873, 0.041690927, 0.03107569, 0.004049465, 0.006933592, 0.014891581, -0.027569363, 0.007390789, -0.022385497, 0.020845463, -0.0075282925, 0.013193418, -0.012079643, -0.011852764, 0.009102702, 0.010250852, 0.029508157, -0.008511439, 0.013874059, -0.018989172, 0.018631665, 0.008628317, -0.021024218, 0.018796667, 0.019140426, -0.015029084, 0.00784455, 0.009013325, -0.004211031, -0.010188976, -0.024406793, 0.0039325873, -0.0015967542, 0.012320274, 0.016885376, 0.006125761, -0.012024642, 0.020721711, -0.0036953946, 0.034815773, -0.010216477, 0.011454005, 0.0134753, 0.041085914, 0.0018528537, 0.008195182, -0.025534317, 0.010168351, 0.027679365, -0.005816379, 0.022633003, -0.011680884, 0.02926065, -0.023141764, 0.013880934, 4.299119E-4, -0.029205648, -0.014410321, 0.005819817, 0.019181676, 0.018040402, 0.01567535, -0.019607935, 0.021202972, 0.0034805462, 0.013894684, 0.0021759858, -0.019525435, 0.0044585364, -0.009934596, -0.016115358, -0.008415187, -0.0034307013, 0.024104286, 0.0021484853, -0.0107802395, 0.0014867518, 0.0020728586, 0.008339561, -1.8455488E-4, 0.0039325873, -0.002361615, -0.039683383, 0.018975422, 0.033990756, -0.0034272636, -0.026606841, -0.012478403, -0.010484608, -0.04683354, -0.011165248, -0.015647847, 0.038638357, -0.026524339, -0.011866514, -0.021092968, -0.0019508246, 0.001955981, -0.006428268, -0.0071707843, -0.0038328976, -0.004884796, 0.014864081, -0.007335788, -0.003726333, 0.009968972, -0.0023925533, 0.006785776, -0.0017265227, -0.0019387931, -0.0072051603, 0.02112047, 0.0071295337, -0.030195672, 0.024228038, 0.0060741976, -0.016404115, -0.0038775862, 0.0057648155, 0.0012065893, -0.022523, -0.029095646, -0.019209176, -0.032230716, -0.020900464, 0.08811196, 0.038170848, 0.0032175714, 0.02021295, -0.0128015345, -0.018370409, -0.007060782, 0.0069267163, 7.7861105E-4, 0.0010476015, 0.0062151384, -0.017889148, 0.022165492, 0.006469519, 0.022990512, -3.5407036E-4, 0.0057579405, -0.01755914, -0.0082845595, -0.0069507794, -0.019676687, -0.015854102, 0.012512778, 0.023485523, 0.010752739, -0.0056926263, 0.034705773, 0.020047946, 0.0143003175, 0.0180129, -0.010319605, 0.015469094, 0.018686665, 0.022839257, -0.0013174511, -1.8100988E-4, 0.034843273, -0.004551351, 0.02657934, 0.0019370744, -0.0050979257, -0.0012830754, 0.006957655, -0.017627891, 0.004764481, -0.014575324, -0.015799101, 0.016472867, 0.03866586, -0.025355564, 0.0037469582, 0.015455344, -0.025121808, -0.026593091, 0.0073220376, -0.006799526, -0.017435387, -0.011742761, -0.04097591, 0.017737893, 0.00856644, -0.04372597, 0.0051494893, -0.00987272, 0.0071364087, -0.017449139, -0.008745194, -0.014699076, -0.011089621, -0.010271478, 0.005551686, -0.013922185, -0.003805397, 6.885895E-5, 0.016885376, -0.013681554, 0.035365786, -0.0033567934, 0.009226455, 0.0020591083, -0.012230896, -0.012973414, -0.0037985218, -0.013867184, 0.0053419936, 0.010395231, -0.0029013145, 0.0035269533, 0.0012710439, 0.020501705, -0.0034341388, -0.008105805, -0.01665162, -0.0060501345, 0.027596863, 0.0043141586, -0.0023255204, -0.018040402, 0.011144623, 0.023980534, 0.007459541, -0.029398153, -0.008360186, -0.0040357145, -0.017724143, -0.012409651, 0.013069665, 0.01058086, -0.026689343, -0.020584207, -0.017875398, -0.013262169, 0.005128864, 0.010477733, 0.010752739, 0.010938368, 0.026881848, 0.01573035, -0.0064488933, 0.00405634, -0.006036384, 0.010092724, 0.008504564, 0.027033102, -0.017160382, 0.012753408, -0.011735885, -0.025589319, 0.007425165, 0.024420543, 0.007246411, 0.013440924, -0.01707788, -0.010972744, -0.00990022, -0.010250852, 0.008614566, 0.008222682, -0.02201424, 0.01850791, -0.021395475, -0.010608361, 0.008820821, -0.008511439, 0.0061566993, -0.027706865, -0.0016930064, -0.012389026, 0.011144623, 0.0067307744, -0.005046362, 0.006768588, -0.02292176, -3.0787793E-4, -6.325141E-4, -0.011364628, -0.024063034, -0.011467755, 0.017696643, 0.020969216, 0.04763106, -0.0014214378, 0.007741422, 0.01663787, 4.675104E-4, 0.021656731, -0.010470858, -0.015372842, -0.018769167, 0.0013114354, 0.008532065, 0.0225505, 0.009102702, 0.005909194, -0.0011833857, 0.008387687, 0.012945913, 0.013777806, 0.008078304, -0.017792895, -6.1876373E-4, 0.009693965, -0.027651865, 0.005242304, -0.01980044, -0.020845463, 0.04633853, -0.006280452, -0.006101698, -0.021065468, 0.008628317, -0.006445456, 0.0058920057, -0.019539185, 0.010622111, -0.012918412, 0.0012719033, -0.024791801, -0.00629764, 0.0015615191, -0.0020419203, 0.020529207, -0.0064179553, -0.017655393, -0.0058988812, 0.021532979, -0.020872964, -0.020199198, 0.021381725, -0.027308106, -0.011997142, -0.012787784, -0.00832581, -0.037565835, -0.0077551724, 0.00968709, -0.008023303, 1.2595495E-5, -0.007521417, -0.046146024, 0.042488445, -0.0041835303, 0.026593091, 0.003530391, 0.04413848, 0.022756755, 0.001711913, -0.016555367, 0.0058473176, -0.0058920057, -0.00812643, 0.025548067, 0.029123148, -0.0035235158, 0.014094063, 0.010539609, -0.0049226093, -0.04004089, -0.03509078, 0.034843273, 0.043203462, 0.034073256, -0.028160626, -0.0108077405, -0.0313507, 0.014534073, -0.0034925777, 0.0077964235, 0.028270628, -0.037923343, -0.03289073, 0.009267706, -0.0028016248, 0.0143140685, 0.009975847, -0.034870774, 0.0027809993, -0.015592847, -0.0035011715, -0.017669143, -0.016321613, 0.014974083, -0.0075282925, 0.012932163, 0.015854102, 0.013874059, -0.008030178, 0.007693296, 0.010917743, 0.027266856, -0.012732783, 0.012251522, 0.014492822, -8.3038954E-5, 0.008683318, 0.014932832, -0.015936604, -0.019552935, -0.026703093, -0.0064798314, 0.027046852, -0.008607691, -0.007679546, -0.004111341, -0.01933293, -0.020859214, -0.011158373, 0.0014231566, 0.018315407, -0.033358242, 0.014217816, 0.014685326, 0.003286323, -0.009934596, 0.016335363, 0.0032124151, -3.285034E-4, 0.0014996427, -0.011502131, -0.0097902175, -0.011110247, -0.00495011, -0.05255367, -0.038885865, -0.022192994, -0.0060741976, 0.015579096, -0.02343052, 0.0030560053, -0.015455344, 0.010195851, -0.00741829, -8.7013654E-4, -0.015276589, -0.006620772, 0.018824168, -0.01328967, -0.021670481, 1.9647897E-4, 0.021862986, 0.014974083, -0.0053969948, 0.013434049, -0.003384294, 0.025548067, -0.018136652, 0.017737893, 0.019470433, -0.014259067, 0.0048469827, 0.0072257854, 0.016830374, 0.0072051603, -0.009027076, -0.023155514, -0.0020986404, -0.016156608, 0.031625703, -0.004668229, 0.0148090795, 0.038033344, 0.033193238, 0.034733273, 0.0117977625, -0.014575324, -0.038335852, 0.0078032985, -0.005723565, -0.024076786, -0.0044619744, -0.0033980443, 0.011344003, 0.0058370046, 0.003246791, -0.018370409, -0.0102921035, -0.0179854, -0.0269781, -0.004104466, 0.022660503, 0.0023495834, 0.004066653, -0.0066517103, 0.010264603, 0.0018459785, 8.5294864E-4, -0.008188307, 0.0034685147, 0.021216722, 0.0068614027, 0.018109152, 0.018040402, -0.026290584, -0.0065210825, 0.007521417, 0.021725483, 0.023966782, 0.023086764, -0.020927966, 0.0011094778, -0.0074801664, -0.009858969, -0.013413423, 0.0060157585, 0.01191464, -0.041800927, 0.008119555, 0.0070298435, 0.024186788, 0.005469184, 0.0042557195, 0.009755841, -0.0027088101, -0.009927721, -0.0061051357, -0.0360258, 0.006555458, -0.022454249, 0.035723295, 0.012134645, -0.010931493, 0.025328062, 0.02693685, 5.8739586E-4, 0.0122790225, -0.018824168, 0.009212704, -0.008573315, -0.006029509, 0.01439657, 0.010862742, -0.02785812, 0.029343152, -0.034843273, 0.0024441169, -0.012444027, -0.009095827, -0.006627647, 0.034375764, 0.010010223, -0.069961555, -0.0029803787, -0.020872964, 0.0058232546, -0.020735461, -0.0046579163, -0.023650525, -0.011433379, -0.018769167, 0.013901559, -0.027954372, -0.027266856, 0.009920846, -0.016307862, -0.005558561, 0.013784681, 0.1940443, 9.3136834E-5, 0.009570213, 0.03330324, 6.015759E-4, 0.015854102, 0.029508157, 0.020804211, 5.371213E-4, 0.008456438, -0.0061498242, 0.0044860374, -0.0011344003, -2.4535702E-4, 0.007026406, -0.00944646, -0.039683383, -0.028985644, -0.018755417, -0.039023366, -0.011137747, 2.85104E-4, -0.004998236, -0.023911782, -0.003231322, 0.0037641462, -0.0018373845, -0.0053110556, 0.028710637, -0.008408312, -0.011000245, -0.00921958, -0.0073976642, 0.012148395, -0.032533225, -0.014059687, -0.0032519472, 0.004771356, 0.008745194, -0.010367731, 0.0032502285, -0.009425835, 0.0041354042, -0.023251766, -0.0026675593, 0.013365297, -0.020845463, -0.013461549, -0.003709145, -0.00900645, -0.047108546, -0.0014790172, 0.004111341, 0.02208299, -0.02343052, -0.023691777, 0.006125761, 0.0015795664, -0.012602155, 0.021519229, 0.013255294, 0.02117547, -0.02696435, 0.018810418, -0.011075871, 0.018755417, -0.01623911, 0.012464652, 0.013461549, -0.028710637, -0.0048057316, -0.033605747, -0.009102702, -0.009776467, -0.013571552, -0.020336702, 0.0031264757, 0.012134645, 0.0038122723, 0.014465322, -0.017270384, -0.0017944148, -2.1312974E-4, -0.01214152, -0.011639634, -0.010017098, 0.0143278185, -0.016321613, 0.0033533557, -0.018342908, -0.003181477, -0.027541863, 0.0025248998, -0.02116172, -0.007184535, -0.0056926263, 0.030195672, 0.018714165, -0.0040219645, 0.010017098, -0.020322952, 0.041140914, 0.019167926, -0.008827697, -0.0313782, -0.027239356, 0.005362619, 0.022839257, 0.0314882, -0.01618411, -0.006957655, -0.008023303, -0.022578001, -0.0010699456, 3.4859175E-5, 0.014932832, -0.0018287906, -0.002719123, 0.038033344, -0.01623911, 0.012285898, -0.022220494, 0.029508157, 4.486037E-4, -0.002433804, -0.03511828, -0.020102946, -0.0018511349, -0.004998236, -0.034980778, 0.014190315, -0.029948166, 0.0028995958, 0.0017084755, -0.004527288, 1.6564822E-4, 0.022674253, -0.010725238, -0.010065224, -0.001777227, -0.013076541, -0.014121564, 0.008394562, 0.019965444, 0.0013440924, -0.023540523, 0.0047988566, -0.009061451, -0.0097833425, -0.012409651, -0.026675593, 0.0025781824, 0.008477064, 0.018947922, 0.039325874, -0.013922185, 0.002492243, -0.046558537, -0.005974508, 0.03775834, -0.040260896, 0.020776711, 0.0074045397, -0.014864081, -0.032065712, -0.009171454, -0.17699394, 0.029425655, 0.0067067114, -0.0360258, 0.021450477, 0.01707788, 0.028628137, 0.011000245, 0.014492822, -0.01306279, 0.019154176, 0.0052869925, -0.010628986, 3.8887584E-4, -0.0022670815, 0.018356659, -0.02701935, 0.031653203, 0.033578247, -0.0021450478, 0.04694354, -0.006421393, 3.3000734E-4, -0.0247093, 0.0055619986, -0.00428322, 0.020322952, 0.0051391767, -0.00607076, -0.0053763697, -0.03638331, -0.011062121, 0.0075832936, 0.009556462, -0.014073438, 0.00941896, -0.0014687045, -7.4853224E-4, -0.0018614476, -0.012918412, 0.03374325, 0.0055619986, 0.010367731, 0.0179854, -0.005510435, 0.018549163, 0.016321613, -0.018370409, 0.0029270963, -0.003384294, 0.003179758, -0.03410076, 0.013674679, -8.3747954E-4, -0.0147953285, 0.015015334, 0.015496595, -0.024929304, 0.01055336, -0.006101698, -0.029920666, -0.0041457172, 0.017751645, -0.019717937, -0.0057166894, -0.024668049, -0.02380178, 0.00594357, -0.02433804, 0.021835485, -0.018521661, -0.0070539066, 0.006321703, 0.008717693, 0.013901559, -0.00331898, -0.02516306, 0.0062770145, -0.011330252, 0.03099319, -0.027761867, 0.027363108, 0.002036764, 0.01171526, 0.0032244467, 0.0025524006, -3.9940342E-4, 0.0074457903, -0.009412084, -0.01711913, 0.012918412, -0.0042729075, -0.030718183, -0.0013260451, 0.010450232, 0.001707616, -0.0179854, -0.001014085, 0.017009128, -0.023306768, -0.0041010287, -0.008545815, 0.0012633094, 0.03330324, 0.0314057, 0.0013140136, 0.0034203886, 0.011227124, 0.030553179, -0.0054073078, -0.008188307, -0.0035475788, 0.01755914, 0.010078974, -0.0027363107, 0.006565771, -0.0071020327, -0.0224955, -0.012574654, 0.013227794, 0.05530373, 0.0013397954, 0.008009553, 0.009054576, 0.0011550257, -0.007122658, -0.092457056, -0.0011232281, 0.023705527, 0.048868585, -0.030498179, 0.050106112, -0.011337127, 0.036108304, -0.016101608, 0.040260896, 0.0061807623, -0.03388075, 0.021546729, -9.032232E-4, 0.023650525, -0.008504564, -0.020529207, -0.015854102, -0.015991606, 0.028490633, -0.015166587, -0.0036644565, 0.0059057563, -0.020446705, -0.013282795, 0.003726333, -0.026799345, 0.024599297, 0.0027156854, -0.0103127295, 0.022523, -0.029948166, 0.029728161, -0.03324824, -0.021835485, -0.020886714, -0.018315407, -0.035035778, -0.002263644, -0.051371142, -0.005682314, 0.021794235, -0.010869617, -0.017696643, 0.003674769, -0.0092883315, -0.03275323, 0.027074352, -0.00428322, -0.01575785, -0.01711913, -0.02784437, -0.0269781, -0.0032931983, 0.013200293, 0.033990756, 0.011316502, 0.00741829, -0.012437152, -0.028903142, -0.011433379, 0.0011593227, -0.028930644, 0.015221588, 0.014589074, 0.008532065, -0.011419629, -0.012478403, 0.010704613, -0.012767158, -0.03635581, 0.02520431, -0.03874836, -0.0029597534, -2.1001443E-4, 0.01438282, -0.030718183, -0.020762961, 0.019662937, -0.02201424, 0.0059951334, -0.033523247, 0.0037469582, 0.013372173, 0.028655637, 0.013839683, 0.009040826, 0.010910868, -0.013626553, -0.038528357, -4.4473645E-4, 0.024626797, 0.012588405, 0.0044035353, -0.028270628, 0.015400343, 0.020735461, -0.011557132, -0.013984061, -0.014877831, -0.0056926263, 9.040826E-4, -0.08382186, 0.031185694, -0.011584632, 0.0058610677, -0.0041319667, -0.008580191, -0.0014472196, -0.011000245, 0.0064145178, 0.021381725, -0.011680884, 0.006768588, 0.0061395112, -0.012547154, -0.008050804, 0.011481505, 0.010938368, 0.0054348083, 0.012244647, 3.9725492E-4, -0.016349113, 0.024159286, 0.019209176, 3.1453825E-4, -0.011522756, 0.018191654, 0.009302082, 0.02113422, -0.015496595, -0.008999575, 0.023925532, -0.01714663, -0.007775798, 0.0036953946, -0.006118886, -0.025053056, -0.016761623, -0.0034564831, 0.018810418, 0.0056926263, -0.004173218, -0.0107802395, -0.0075901686, -0.010099599, -8.3919836E-4, 0.0071364087, -0.021642981, 0.012732783, 0.022798007, 0.018205404, 0.0046579163, -0.0012375275, -7.158753E-4, -0.021656731, 0.022151742, -0.021752983, 0.05002361, 0.0026744343, -0.0018975422, -0.010677112, 0.0050773, 0.036218304, 0.012272147, -0.018095402, 0.0060432595, -0.0060570096, 5.4700434E-4, -0.009116452, -0.004355409, -0.024241788, -0.0072189104, -0.015455344, -0.0023238016, 0.015441593, 0.024434293, 0.025465567, 0.024228038, 0.029480655, 0.009962097, 0.011591508, 0.023554273, -0.001997232, -0.022743005, 0.02338927, -0.0029477219, 0.0314057, -0.004049465, 0.02066671, -0.0092608305, 0.0066173347, -0.0148228295, 4.1385196E-5, -0.0032914793, -0.0015640972, 0.0020402016, 0.030058168, -0.01937418, -0.007562668, 0.007555793, 0.025960578, 0.0010080693, -0.0031539763, -0.0024063035, -0.013076541, -0.025864325, 0.008064554, -0.015056585, -0.02748686, 0.012760283, 0.017614141, 0.023650525, 0.015661597, -0.026359336, 0.012189646, -0.023348019, 0.027596863, 0.0046716663, -0.0037057074, -0.0055929366, 0.0405359, 0.016156608, 0.023320518, 0.026166832, -0.015977856, 0.046008524, 0.018081652, 0.008573315, -0.023953032, 0.013069665, 0.00129081, 0.013379048, 0.0103058545, -0.025658071, 0.00516324, -0.011598383, -0.008153931, 6.0759165E-4, 0.0055138725, -0.041085914, 0.059731327, 0.010883367, 0.012987164, 0.0073151626, -0.019291678, 0.019236678, 0.009893345, 0.013090291, -0.017036628, -0.0053763697, -0.0039875885, -0.012450902, -0.0023598962, -0.045101, -8.989262E-4, 0.0018494161, 0.0030731934, 0.009707715, -0.023086764, -0.00809893, -0.0062942025, 0.0049947985, 0.010917743, -0.0043519717, -0.009831469, -0.007775798, 0.017669143, -0.008030178, -2.49654E-4, -0.040783405, 0.009343333, -0.007878925, -0.010642736, 0.0022172367, 0.025671821, -0.003441014, -0.0112890005, -0.006916404, 0.017242882, 0.02378803, -0.028655637, 0.0157166, -0.025561819, -0.012457777, 0.035255782, -0.008181432, -0.0024698987, -0.031130692, -0.014534073 ], + "id" : "06104d76-2564-49e4-96c3-99902e307545", + "metadata" : { + "source" : "movies.csv" + } + }, + "d9e4411b-f765-430b-96b6-9be82b1cbfdf" : { + "text" : "Dominic Cooper-Philip Michael-Chris Jarvis-George Georgiou-Hemi Yeroham-Maria Lopiano-Juan Pablo Di Pace-Norma Atallah-Myra McFadyen-Leonie Hill-Jane Foufas-Niall Buggy-Karl Bowe-Celestina Banjo-Emrhys Cooper-Maria Despina-Gareth Davis-Charlotte Habib-Gareth Derrick-Jennifer Leung-Kage Douglas-Lydia Louisa-Phillip Dzwonkiewicz-Kristina MacMillan-Tommy Franzen-Lauri Owen-Tom Goodall-Joanne Sandi-Aykut Hilmi-Christie Saunders-Jamie Hughes-Ward-Emma Slater-Taylor James-Helen Soraya-Jack Jefferson-Caterina Spano-Peter Le Brun-Michelle Theunissen-Sebastien Torkia-Kitty Whitelaw-Dylan Turner-Nikki Davis-Jones-Ed White-Michelle Trimboli-Sean Williams-Kirsty Mather-Lee Honey-Jones-Rebecca Lee-Gareth Chart-Clare Louise Connolly-Sonny Lee Hymas-Kirsty Swain-Tim Stanley-Lisa Reynolds-Sara West-Claire Fishenden-Adrian Allan-Benny Andersson-Anthony Backman-Mackenzie Criswell-Lori Haley Fox-Sommer Garcia-Will Jeffs-Spencer Kayden-Kirk McGee-Meghan McLeod-Nikki Rapp-Bj�_rn Ulvaeus-Rita Wilson,single parent-parent child relationship-greece-musical-single-romantic comedy-based on play or musical-based on song poem or rhyme-hotel manager-greek island-duringcreditsstinger-woman director-mother daughter relationship-lgbt interest,/mQy3BuOdf3OSORWOKTodqfRayJM.jpg,/nQlJsL0NbBM2fyzhmFGVx63FKtW.jpg,458423-350-621-683841-9880-10625-634-37056-4523-11130-9801-11887-88-508-22897-22971-122928-10947-114-2976-50546\r\n87827,Life of Pi,Adventure-Drama,en,The story of an Indian boy named Pi a zookeeper's son who finds himself in the company of a hyena zebra orangutan and a Bengal tiger after a shipwreck sets them adrift in the Pacific Ocean.,33.038,Fox 2000 Pictures-Dune Entertainment-Ingenious Media-Haishang Films-Netter Productions,11/20/12,120000000,609016565,127,Released,Believe The Unbelievable,7.397,12392,Suraj Sharma-Irrfan Khan-Ayush Tandon-Gautam Belur-Adil Hussain-Tabu-Ayaan Khan-Mohd Abbas Khaleeli-Vibish Sivakumar-Rafe Spall-G��rard Depardieu-James Saito-Jun Naito-Andrea Di Stefano-Shravanthi Sainath-Elie Alouf-T.M. Karthik-Amarendran Ramanan-Hari Mina Bala-Wang Bo-chieh-Ko I-Chen-Jag Huang-Ravi Natesan-Adyant Balaji-Chirag Agarwal-Ahan Andr�� Kamath-Om Kamath-Srilekh Katta-Swati Van Rijswijk-M. Keerthana-Indumohan Poornima-Josephine Nithya B.-Samyuktha S.-A. Deiva Sundari-G. Vasantakumary-A.", + "embedding" : [ 0.0058230744, -0.029766954, -7.600347E-4, -0.049273226, -0.03766823, 0.061838444, 9.602243E-5, 0.016694186, -0.011399235, -0.042195, 0.021577612, 0.030013869, 0.01115232, 0.013861524, 0.012386894, 0.0087449, 0.014814889, -0.0070919422, 0.016749056, -0.026118102, 8.101893E-4, 0.0060185487, -0.015706526, 0.006951338, -0.02005497, 4.36602E-4, 0.02569286, -0.0056550354, -0.0069376207, -0.015610504, 0.010150943, -0.013065909, 0.015006934, -0.033580415, -0.007805252, -0.0013151644, 0.021920549, -0.020562518, 0.020068688, 0.006738717, 0.0021776515, 0.013319683, -0.008545997, -0.0154733285, -0.010301835, 0.0076543596, 0.0022891061, -0.018998723, -0.008491127, 0.034513205, 0.025130441, 0.027256653, -0.012976746, -0.031879447, -0.0036317057, -2.4262811E-4, -0.008655736, 0.0030229918, 0.0044581844, 0.004804551, 0.03185201, -0.007208541, -0.026310146, -0.007846405, -0.023909586, -0.0022033718, -0.009650255, -0.011845053, -0.0012851574, 0.0017138289, 0.018326567, 0.0041769757, 0.0035116775, -0.0046536587, 0.025857469, -0.029410299, -0.027297806, -0.0044136024, -0.008209918, 0.003110441, 0.013868382, -0.018710656, -0.012654385, 0.0034773839, 0.012647526, -0.0016178065, -0.0077640996, 0.025295053, -0.009650255, 0.0010973992, 0.005061754, 0.050946757, -0.004094671, -0.007592631, 0.0117010195, 0.026131818, -0.026118102, 0.027009739, -0.020781998, -0.02913595, -0.0048491326, -0.015541917, 0.0030418534, -0.015116674, 0.004934867, -0.007462315, 0.002061053, -0.0151989795, 0.025445944, 0.009808006, 0.01710571, 0.0019221633, 0.012428046, -0.029657213, 0.0015637939, -0.02148159, 0.022565272, -0.03034309, -0.0205488, -0.011632431, 0.029465169, 0.03371759, -0.0072496934, -0.032510452, 0.028230594, 0.044965934, 0.008353951, -0.021138653, 0.005552154, -0.009842299, 0.02382728, -0.018875267, 0.005253799, 0.028120855, -0.025240183, 0.035638038, -0.03541856, -0.0046159355, -0.018971289, -0.017229168, 0.021056347, 0.031467922, -0.029465169, -0.016008312, -0.019725751, 0.025967209, 0.0070850835, -0.0019770332, 0.019177051, 0.0060185487, 0.010884829, 0.02847751, 0.010267542, 0.01317565, 0.033635285, 0.0027795064, 0.0030898647, -6.199662E-5, 0.0011556986, -0.006289469, 0.0015612219, 4.5610656E-4, -0.017448647, -0.0021107788, 0.004146111, 0.02578888, 0.010034344, -0.00787384, -0.010246965, 0.0040638065, -0.003350497, 0.027448697, -0.02688628, 0.014814889, -0.0058230744, 0.0144307995, 0.005342962, -0.008614584, -0.03152279, 0.0024725776, -0.0048216977, -0.0018861549, 0.024225088, 0.041783474, -0.025720295, -0.0027640744, 0.014225038, -0.007421162, 0.014732584, -0.012091967, -7.0730806E-4, 0.026817694, 0.024897244, -2.6577638E-4, -0.6285903, -0.023031667, -0.0076817945, -0.012709254, 0.0064129266, 0.018710656, 0.0039437786, -5.4827094E-4, -0.02355293, -0.0015826555, -0.02919082, 0.029629778, 0.012421187, -0.015377306, -0.01759954, -0.018957572, 0.009567949, -0.030096173, 0.0013254525, 0.019382814, -0.008292222, 0.008950663, 0.013216802, 0.01869694, 0.0073800096, -0.0042935745, 0.0064369324, -0.027092043, 0.00584708, -0.0113718, -0.012016522, 0.0155967865, 0.0143073425, 0.005706476, 0.045048237, -0.002038762, -0.007318281, 0.0571745, 0.015363589, 0.037723098, -0.041893214, 0.004159829, 0.0064746556, -0.007825828, -0.02071341, 0.02278475, 0.025185311, 0.0063752034, -0.008374528, -0.001983892, -0.0054629906, -0.0038649028, -0.024718918, -0.011982228, -0.007880698, 0.0010596762, 0.022675011, -0.041070167, 0.016474705, 0.0038168917, -0.019753186, -0.0032116075, 0.005133771, 0.00204905, 0.00896438, 0.021028912, 0.012236001, -0.011947934, 0.021028912, -0.0200001, 0.0077023706, -0.0011308356, -0.003290483, -0.0033007711, 0.009993192, 0.015048087, 0.044746455, 0.004787404, -0.00644722, 0.016460989, 0.001191707, 0.0046913815, 0.013429423, 0.012002804, 0.012818995, 0.013978123, -0.03758592, 0.01054875, 0.013436282, -0.01049388, 0.0060974243, 0.017901326, 0.012414329, 0.026611932, 3.5043902E-4, -0.006361486, -0.011893064, 0.010891687, 0.027092043, -0.065843955, 0.0017987059, -0.048889134, 0.028861599, -0.015857419, 0.010246965, 0.0057750633, -0.021467872, 0.0105350325, 0.037201833, -0.015020652, -0.015459611, -0.011303212, -0.0066907057, -0.009039826, 0.0023662671, -0.034897294, 0.021138653, 0.0042489925, -0.007235976, -6.151437E-4, 0.00852542, -0.0032853389, 8.782409E-5, -0.014293625, 0.0071948236, 0.019808056, -3.888051E-4, 0.0036076999, 0.0035219656, 0.015926005, 0.007914992, -0.013278531, 0.012716114, -0.031056399, 0.007901275, 0.02437598, -0.0014120442, 0.006563819, 0.011879346, 0.0015775114, -0.009012391, -0.016035747, -0.0059533906, 0.0065706777, 0.012181131, -0.02131698, -0.025212746, 0.003810033, 0.002121067, -0.020096123, -9.1907184E-4, 0.018354002, 0.005716764, 0.018724374, 0.014458234, 0.0022393803, -0.014279908, -0.015295002, -0.0048251273, -0.02578888, 0.009650255, 0.023813562, -0.018299133, -0.01820311, 0.012270295, 0.0020404768, -0.011550127, 0.005713335, 0.0032750508, -0.013930111, 0.02278475, -0.01792876, -0.011248342, 0.0056035947, -0.006718141, 0.016022028, -0.008107036, 0.037860274, 0.0051200534, 0.0015243561, 0.0019701745, -0.01109745, -0.032071494, -0.011282636, 0.02283962, 0.033388373, 0.019478837, 0.0061831586, 0.0019701745, 0.012386894, 0.001923878, -0.015884854, 0.0047531105, 0.0047462517, -0.0031395906, 0.01224286, 0.017476082, 0.0061900173, -0.00814819, -0.006930762, 0.0344309, 0.012270295, 0.024897244, 0.00694105, 0.007181106, -0.024293676, 0.014115297, -0.04716073, 0.026035797, -0.0058333627, 0.019149616, -0.026118102, -0.021344414, -8.449117E-4, 5.5555836E-4, 0.031467922, -0.0076817945, 0.015912289, -0.020137277, 0.0069376207, 0.0034448048, -0.015637938, -0.0026766253, 0.0057853516, -0.03155023, -0.003765451, 0.017201733, -0.011172895, 0.007777817, -0.0036145586, -0.02283962, 6.1300036E-4, -0.0049382965, 0.023100253, -9.062117E-4, -0.024622895, 0.023264863, -0.008888934, 0.037476182, -0.0052983807, -0.006100854, 0.016982254, 0.019643446, -0.00939648, 0.0061591533, -0.017037123, 0.01595344, 0.01635125, -0.016653033, 0.038189493, -0.016227791, 0.027311523, -0.0072839875, 0.006526096, 0.0227436, 0.002650905, -0.020960325, -7.59606E-4, 0.03421142, 0.01716058, 0.012530928, -0.02508929, 0.01454054, 0.018052217, 0.0065981126, -0.018285414, -0.018134521, 0.0052435105, -0.0026063232, -0.03750362, -0.023854716, -0.023141406, 0.008950663, 0.013868382, -0.0078121107, -0.015761396, -0.009979474, 0.0035836943, 0.0108231, 0.007914992, -0.009931463, -0.02644732, 0.022318356, 0.02268873, -0.012551503, -0.008230494, -0.007181106, -9.079264E-4, -0.04285344, -0.017119428, -0.0020970614, 0.035061903, -0.0148286065, 0.00366257, -0.024801223, -0.013559739, 0.033196326, -0.00901925, 0.018600916, 0.007297705, -0.0041838344, 0.008168765, -0.0019924655, -0.001656387, 0.04137195, -0.02334717, -0.005617312, -0.0040672356, 0.004300433, 0.005915668, -0.0044341786, -0.0014763449, -0.03961611, 0.019958949, -0.003892338, -0.014705149, -0.0137243485, 2.7842217E-4, -0.0013211658, -0.029904129, -0.0158437, -0.019231921, -0.029410299, 1.3588888E-4, 0.08856012, 0.041454256, 0.016529575, 0.023580365, -0.0072496934, 1.275298E-4, -0.023237428, 0.0022651006, 0.0038271798, -0.008203059, 0.028450076, -0.019259356, 0.0059328144, -0.0015295001, 0.0129013, -0.004379309, -0.016008312, -0.016954819, -0.0010751083, -0.010795665, -0.023306016, -0.01743493, 0.033333503, 0.019808056, 0.0039643547, -0.010829958, 0.02880673, 0.012325165, 0.009650255, 0.005339533, 0.011056297, 0.0052366517, 0.0068244515, 0.011275777, -0.0039815013, 0.0029201107, 0.049931664, 0.0046262234, 0.026159253, 0.0023696965, -4.989737E-4, 0.012428046, 0.015857419, 0.0017498373, 0.02159133, -0.011481539, -0.030836917, 0.03843641, 0.031056399, -0.029766954, 0.010795665, 0.008902651, -0.011124885, -0.01754467, 0.024526872, 0.0022325215, -0.0024417134, -0.01169416, -0.008847781, 0.001426619, 0.0028155148, -0.018957572, 0.0053703976, -0.013161932, -0.002580603, -0.023017948, -0.01879296, -0.0017386919, -0.028395204, -0.015281284, -0.0021073495, -0.021371849, 0.01240747, -0.006608401, -0.0054938546, 0.0063717742, 0.02825803, -0.012215425, 0.0194514, -0.0030538563, -0.02869699, -0.024458285, 0.017805303, -0.007592631, -0.006076848, 0.018285414, -0.008710606, 0.018134521, -0.014760019, 0.0076063485, -0.01492463, 0.0031224438, -0.026625648, -0.016460989, 0.036159303, 0.012139979, 0.006821022, 0.018079652, -0.007969862, -0.0022599564, -0.0052435105, -0.032921977, -0.009231871, -0.006217452, -0.016721621, -5.6456047E-4, -0.009087837, -0.0013820372, -0.026022078, -0.033964507, -0.026323864, -0.02869699, -0.002808656, -0.0032150368, 0.0076749357, 0.0034259432, 0.020699693, 0.01578883, -0.00573734, -0.015733961, -6.404353E-4, -0.0051131947, 0.020809432, 0.004952014, -0.0012705826, 0.032290973, -0.01765441, -0.025130441, 0.0017258318, 0.02010984, 0.0076749357, 0.0023696965, -0.008614584, 0.0016426694, -0.008545997, -0.021015195, 0.022647576, -1.6482422E-4, -0.009993192, 0.031303313, -0.017338907, -0.0012174273, 0.011961651, 0.001456626, -0.010144084, -0.033415806, 0.009279883, -0.025185311, 0.0057956395, 0.017256603, -0.0043175803, 0.005644747, -0.021934267, -0.014471952, -0.036543395, -0.036323912, -0.019026158, -0.0021810809, 0.022469249, 0.023923302, 0.028120855, 0.008203059, 0.028889034, 0.01589857, 0.009609102, 0.019958949, -0.00879977, -0.02743498, -0.02875186, -0.010775088, 0.007208541, 0.032181233, 0.0073594335, -0.010178378, 0.008374528, 0.0227436, 0.0031258732, 0.005384115, 0.014801172, -0.028971339, -0.020082405, 0.005154347, -0.023374604, -0.008806629, -0.0037208693, -0.0016538149, 0.024773788, 0.0022633858, -0.0052160756, -0.019808056, 0.031111268, -0.021083783, 0.01983549, -0.018628351, 0.027901376, -0.0012602945, -0.0086351605, -0.014979499, -0.020535083, 0.0037140106, -0.01432106, 0.018573482, -9.996621E-4, -0.014993217, -0.021330697, 0.03536369, -0.013401988, -0.009904028, 0.02344319, -0.014005558, 0.001371749, -0.023978174, -0.026076948, -0.032016624, -0.018354002, -0.0037414455, -0.0020867733, -0.0065226667, -0.013861524, -0.03657083, 0.011817618, -0.0097257, 0.032400712, 0.022400662, 0.05001397, 0.02283962, 0.017805303, -0.025459662, 0.020535083, -0.010233248, -0.0042695687, 0.026406169, 0.021975419, -0.011934216, -0.007318281, -0.003317918, -0.0064575085, -0.034897294, -0.039232023, 0.022359509, 0.014842324, 0.0032270395, -0.015157826, 1.8947283E-4, -0.030782048, 4.809695E-4, -0.011104308, 0.014814889, 0.0017146863, -0.029904129, -0.0180385, -0.008038449, -0.009252447, 0.021344414, -0.0025068712, -0.030068738, 0.002016471, -0.024622895, -1.5839415E-4, -0.0059705377, -0.017037123, 0.02770933, -0.0024725776, 0.014074145, 0.01377236, 0.0127435485, 0.012867006, -0.0051954994, 0.011447245, 0.036159303, 0.007620066, 0.0082647875, 0.01754467, -0.007510326, 0.013923253, 0.010212671, -0.019163335, -0.013971264, -0.018271698, -0.0030298505, 0.018710656, -0.005524719, 0.016323814, 0.008017873, -0.017037123, -0.021001477, 9.259306E-5, -0.009231871, 0.0010099502, -0.026776541, 0.00743488, -0.013408847, 0.003115585, -0.001426619, -0.0014883477, 9.4039824E-5, -0.011550127, 0.0026577637, -0.008710606, 0.008072743, -0.028175725, -0.013230519, -0.035939824, -0.008820347, -0.01924564, 0.0018792961, 0.0075720544, -0.011124885, 0.022400662, 0.0118862055, -0.0038957673, 0.0075171846, -0.01202338, -0.014197602, 0.004564495, 0.024307393, -0.019616012, -0.02115237, 0.0026389023, 0.02098776, -0.01705084, -0.010500738, -0.017297756, 0.008614584, 0.025871187, -0.014609127, 0.008072743, 0.0049931663, -0.035994694, 0.005428697, 0.026790258, 0.03371759, 0.010912264, 0.0075857723, -0.029931564, -0.013566597, -0.018408872, 0.0389028, -0.0028892464, -0.007256552, 0.02005497, 0.015336154, 0.0466669, 0.024458285, -0.002776077, -0.024087913, 0.0033333502, 0.0027229218, -0.030397959, 5.898521E-4, -0.0024125637, 0.013072768, 0.012105685, -0.0200001, -0.03459551, -0.006683847, -0.03728414, -0.02481494, -0.015212697, 0.011810759, 0.02038419, 0.01344314, 0.0017644122, 0.011570703, 0.014910912, 0.0054904255, -0.018847832, -0.027229218, 0.024691483, 0.0085734315, 0.016721621, -0.004934867, -0.03432116, -0.0077983933, 0.007620066, 0.015185262, 0.018710656, 0.02979439, -0.02519903, -0.0039952192, -0.0040843827, -0.005596736, -0.016653033, 0.0026028939, 0.027242936, -0.025020702, -0.01629638, 0.016268943, 0.020974042, -0.014444517, 0.007187965, 0.013546022, -0.018600916, 0.0037928862, -3.9502085E-4, -0.018902702, 0.01000005, -0.02349806, 0.011131743, 0.001951313, 0.009101555, 0.03415655, 0.022016572, -0.0023748404, 0.0074485973, -0.0013314539, 0.0016092331, -0.014060427, 0.012421187, -0.0034396606, 0.039753288, -0.03382733, -0.0023079677, -0.034513205, 8.740613E-4, -0.019382814, -8.519847E-5, 0.012338882, 0.033580415, 0.009663972, -0.048889134, 0.0071536712, -0.013086486, 0.013312824, -0.0042970036, 0.0033659292, -0.020781998, 0.002191369, 0.008333376, -0.011433528, -0.031413052, -0.030068738, 0.007537761, 0.010315552, -0.020356756, 0.023456909, 0.18578969, -0.009341611, 0.014609127, 0.034677815, -0.00727027, -0.0014137588, 0.033909637, 0.02481494, 0.006296328, 0.014856042, -0.0032150368, 0.0200001, 0.007071366, 0.002885817, 0.02880673, -0.020343037, -0.028024832, -0.043923404, -0.0145542575, -0.02798368, -0.008943804, 0.0042764274, 0.0022273774, -0.010411575, 0.00901925, 0.00470167, -0.012002804, 0.010240107, 0.028971339, 0.017791584, -0.0020541942, -0.016625598, -0.007503467, 0.004852562, -0.015006934, -3.0564284E-4, -0.0034722397, -0.0045439187, 0.026433604, -0.0089712385, -0.013477434, -0.0044101733, 0.005414979, -0.01060362, -0.0059602493, 0.02404676, -0.020699693, -0.0024828657, -0.024965832, 0.015102956, -0.048230696, 0.0035939824, 0.023223711, 0.014910912, -0.01465028, -0.015555634, 0.013004181, 0.012873865, -0.01688623, 0.015884854, 0.014499387, 0.028834164, -0.019670881, 0.028120855, 6.185731E-4, 0.016488424, -0.037805405, -0.022002853, -2.6818765E-5, -0.016310096, -0.018504893, -0.025006985, -0.0020319032, 0.00901925, -0.0037963155, -0.013930111, 0.016131768, 0.002421137, 0.008820347, 0.028367769, -0.036872614, -0.014883477, -0.0038066036, -0.009567949, -0.025295053, -0.024115348, 0.024773788, -0.03267506, -0.020535083, -0.019780621, -0.007187965, -0.02005497, -0.0052983807, 0.005754487, -0.017270321, -0.012366317, 0.006426644, 0.019327944, -0.014417082, 0.011550127, -0.044856194, 0.030041303, 0.014403365, 0.019533707, -0.02798368, -0.019423965, -0.002728066, 0.014773737, 0.025939774, -0.01770928, -0.02432111, 0.005891662, -0.0033676438, -0.007578913, 1.7339765E-4, 0.03152279, 0.013456858, -0.011769607, 0.014938347, -0.0018124233, -2.6084666E-4, -0.029821824, 0.01114546, 0.0011299782, -0.006100854, -0.030617438, -0.038354103, 0.001658959, -0.0069273324, -0.025459662, 0.019122181, -0.028916469, 0.014293625, -0.014663997, -0.0018724374, 5.2485477E-5, 0.024225088, -0.013696914, 0.010960274, -0.0040466595, -0.0038443266, -0.013299107, 6.2371715E-4, 0.008401963, -0.0023748404, -0.01924564, 0.0107819475, -0.0087449, -0.022771034, -0.043264963, -0.02825803, -0.016104333, 0.0180385, 0.012009663, 0.033086587, 0.0085734315, -0.017352626, -0.04433493, -0.020631105, 0.02814829, -0.03525395, 0.01109745, 0.010288117, -0.0016032316, -0.013422565, -0.014910912, -0.17558387, 0.029520039, -0.0016992541, -0.020589953, 0.008175625, 0.019739468, 0.029053645, -0.0010793951, 0.011104308, -0.02410163, 0.035555735, 0.00710566, -0.034238856, -0.0015963729, -0.0017549813, 0.022386944, -0.023703823, 0.021179805, 0.036488526, -0.011056297, 0.037805405, -0.0021022053, -0.0057476284, -0.008868357, 0.012057674, -4.295289E-4, 0.02087802, 0.01141981, 0.0010013768, 0.0053155273, -0.03426629, 2.4407487E-5, 0.035281386, 0.017352626, -0.012976746, 0.015980877, -0.012174273, -0.013408847, -0.00814133, -0.015569352, 0.025884904, 0.0065226667, 0.005456132, 0.008840922, 0.01569281, 0.00420784, 0.031083833, -0.030590003, 0.02558312, 0.0045233425, -0.02203029, -0.031413052, 0.036488526, -0.016762773, -0.016707903, 0.024732634, 0.025363639, 0.0055452953, 0.0077640996, 0.002388558, -0.03272993, 0.00286867, 0.0094307745, -0.004574783, 0.0029218255, 0.0031224438, 0.004012366, 0.008360811, -0.03711953, 0.010651631, -0.022661293, 0.03761336, 0.022757316, 0.0022530977, 0.012043957, -0.017572105, -0.022990514, 0.0066049714, 0.0011591279, 0.011214049, -0.012256578, 0.02935543, 0.005044607, 0.013072768, 0.005973967, -0.0074485973, 9.490789E-4, -0.017174298, -0.004492478, 0.0013606036, 0.011721595, -0.01076823, -0.024252523, -0.008120754, -0.0020627675, 0.017942477, -0.018463742, 0.016694186, 0.016035747, -0.00787384, 0.0043587326, -0.0042215576, -0.016954819, 0.010864252, 0.027407546, 0.022236051, -0.0034242284, 0.021056347, 0.029327994, 0.00825107, -0.007750382, 0.0057201935, 0.016762773, 0.01486976, -0.012174273, 0.0037825978, -0.015336154, -0.01174903, -0.0011925643, 0.014718867, 0.06299072, -0.019369096, 0.010171519, -0.007805252, 1.7939905E-4, -0.006279181, -0.09563834, 0.012139979, 0.025322488, 0.03536369, -0.022400662, 0.02338832, -0.0034859572, 0.0066632708, -0.038134623, 0.015185262, 0.011412952, -0.045926157, 0.018354002, 0.016625598, 0.0077983933, 0.0011505545, -0.02930056, -0.021111218, -3.8559007E-4, 0.009190719, 0.009266165, -0.009732559, 0.009465069, -0.021605046, -0.023813562, 0.0154733285, -0.008065884, 0.011817618, 0.002786365, 0.0073800096, -0.006968485, -0.030425394, 0.013237378, -0.039451502, -0.036269043, -0.026954869, -0.015267567, -0.02624156, 0.022181181, -0.037201833, 0.01366262, 0.0049417256, 9.4136276E-4, -0.020274451, -0.01792876, -0.019163335, -0.014293625, 0.03470525, -0.0067112823, -0.023511779, -0.028052267, -0.015130391, -0.029410299, -0.009588526, 0.02820316, -3.390792E-4, 0.035061903, 0.01415645, -0.010061779, -0.028340334, -0.019437684, -0.011412952, -0.019917795, 0.02875186, 0.020192146, 0.0034911013, -0.016104333, -0.01578883, 0.023909586, -0.0122222835, -0.029053645, 0.014567975, -0.023566648, -0.018669505, -0.021413002, 0.007400586, -0.039753288, -0.019670881, 0.016131768, -0.026268994, 0.0064300736, -0.030727178, 0.014760019, -0.009554232, 0.022400662, 0.02476007, 0.028230594, 0.015102956, 0.0044616135, -0.022400662, -0.023525495, 0.01109745, -0.0027194924, -0.005274375, 0.00716053, -0.012770983, 0.0096159605, -0.0041529704, -0.014012416, 0.0025068712, -0.02120724, -0.0034122257, -0.07396471, 0.029876694, -0.023854716, 0.001923878, -0.018216828, -0.014746302, 0.004489049, 0.002109064, -0.010048062, 0.023744976, -0.011611856, 0.009039826, -0.018614635, 0.002530877, -2.3684104E-4, 0.002635473, 0.009773712, -0.0017429786, 0.0015723673, 0.0011857055, -0.008916369, 0.016200356, 0.015048087, 0.0034568075, 0.010089214, 0.010425293, -0.0071468125, -0.0037963155, -0.0075651957, 0.0042009815, 0.025610555, -0.028285464, -0.0018055646, 0.0045439187, -0.008395104, -0.010301835, -0.0030710031, 0.0038820498, 0.023251146, 0.014142732, -0.002126211, -0.027613308, -0.0024931538, -0.00371744, -0.010171519, 0.0069273324, -0.01279156, 0.0017258318, 0.0021467872, 0.0026217552, 0.027174348, 2.4198511E-4, -0.001716401, -0.01875181, 0.01635125, -0.027860222, 0.06277124, 0.014636562, 0.0039232024, -0.027750483, 0.02126211, -0.013017898, 0.02104263, -0.022606423, 0.0024777218, 0.0018895842, 0.0100137675, -0.01437593, 0.012071392, -0.030727178, -0.018669505, 6.7430036E-4, -0.00628604, 0.048120957, 0.023594083, 0.0027812212, 0.008203059, 0.010157801, -0.005274375, 0.010864252, 0.01410158, -0.004554207, -0.023964455, 0.019931514, -0.0070370724, 0.008861499, 0.0016683898, 1.6128768E-4, 0.015432176, 0.024293676, 9.2164386E-4, 0.022771034, 0.018902702, 0.00962282, -7.8961306E-4, 0.006169441, -0.015706526, -0.021522742, 0.0018535758, 0.030864352, -0.009533656, -0.008305941, -0.005706476, -0.02743498, -0.013484293, 0.0056721824, -0.029876694, -0.02858725, 0.003153308, 0.022716165, 0.030919222, 0.006676988, -0.0068038753, 0.008395104, -0.027832787, 0.005024031, -0.010466445, 0.0051029064, -0.016214073, 0.037037224, 0.012818995, -0.013806654, 0.024677765, -0.009238729, 0.051989287, 0.017133145, 0.032071494, -0.012935594, 0.0064129266, -0.0034465194, 0.01831285, -0.008504844, -0.02349806, 0.0052675162, -0.015829984, 9.94518E-4, 0.018655786, 0.012722972, -0.031413052, 0.075885154, 0.019698316, -0.013395129, 0.009753136, -0.01054875, 0.0016272373, 0.0046913815, 0.011893064, -0.018683221, -0.019629728, -0.009574808, -0.021467872, 0.0043175803, -0.030836917, 0.0034722397, -7.0473604E-4, 0.013408847, 0.010775088, 0.0013031616, -0.0169411, -0.02060367, -0.013854665, 0.021865679, 0.0060802777, 9.3107467E-4, -0.003727728, 0.010685924, -0.009917745, -0.003432802, -0.03421142, 0.0016572443, -0.012578938, -0.014334777, -0.010246965, 0.03179714, -0.016653033, 0.009423916, 0.021769658, 0.022633858, 0.022263486, -0.016529575, -0.0011617, -0.019643446, -0.02294936, 0.025610555, -0.009183859, -0.0065569603, -0.025665425, -0.015212697 ], + "id" : "d9e4411b-f765-430b-96b6-9be82b1cbfdf", + "metadata" : { + "source" : "movies.csv" + } + }, + "6dfbda29-652d-4a7b-88d1-8be64046d76f" : { + "text" : ",/a6tIX4fGgp60w2d9pqYRbFM91ne.jpg,8960-1402-9339-1824-11321-1597-8961-2048-9737-787-9522-693-310-6479-10201-8487-4964-3563-608-9029-10555\r\n10555,Shark Tale,Animation-Action-Comedy-Family,en,Oscar is a small fish whose big aspirations often get him into trouble. Meanwhile Lenny is a great white shark with a surprising secret that no sea creature would guess: He's a vegetarian. When a lie turns Oscar into an improbable hero and Lenny becomes an outcast the two form an unlikely friendship.,47.205,DreamWorks Animation-DreamWorks Pictures,9/20/04,75000000,367275019,90,Released,Behind every little fish is a great white lie.,6,5713,Will Smith-Robert De Niro-Ren��e Zellweger-Jack Black-Angelina Jolie-Ziggy Marley-Martin Scorsese-David P. Smith-Doug E. Doug-Michael Imperioli-Vincent Pastore-Peter Falk-Katie Couric-Frank Vincent-Missy Elliott-Christina Aguilera-Phil LaMarr-Shelley Morrison-David Soren-Bobb'e J. Thompson-Kamali Minter-Emily Lyon Segan-Lenny Venito-Saverio Guerra-Mark Swift-James Madio-Frank Vincent-Joseph Siravo-Steve Alterman-Jenifer Lewis-Sean Bishop-James Ryan-Latifa Ouaou-David Yanover,fish-hero-mission of murder-threat of death-secret love-shark-woman director,/r08DpyPyhXcJTfNZAICNGMzcQ8l.jpg,/7ZmZxar3bYORcl0TPA4oceyxcaE.jpg,5559-810-7518-9836-10527-953-9982-809-9928-950-10192-11619-37135-7443-9502-8916-15512-8355-7484-13053-8920\r\n1572,Die Hard: With a Vengeance,Action-Thriller,en,\"New York detective John McClane is back and kicking bad-guy butt in the third installment of this action-packed series which finds him teaming with civilian Zeus Carver to prevent the loss of innocent lives. McClane thought he'd seen it all until a genius named Simon engages McClane his new \"\"partner\"\" -- and his beloved city -- in a deadly game that demands their concentration.\",47.557,20th Century Fox-Cinergi Pictures Entertainment,5/19/95,90000000,366101666,128,Released,Think fast. Look alive. Die hard.,7.242,5344,Bruce Willis-Jeremy Irons-Samuel L. Jackson-Graham Greene-Colleen Camp-Larry Bryggman-Anthony Peck-Nicholas Wyman-Sam Phillips-Kevin Chamberlin-Sharon Washington-Stephen Pearlman-Michael Alexander Jackson-Aldis Hodge-Mischa Hausserman-Edwin Hodge-Robert Sedgwick-Tony Halme-Bill Christ-Anthony Thomas-Glenn Herman-Kent Faulcon-Akili Prince-Ardie Fuqua-Mike Jefferson-Andre Ware-Michael Lee Merrins-Birdie M. Hale-Daryl Edwards-Barbara Hipkiss-Aasif Mandvi-Bill Kux-Scott Nicholson-Ralph Buckley-Charles Dumas-Michael Cristofer-Phyllis Yvonne Stickney-J.R.", + "embedding" : [ 0.0069503686, -0.03276795, -0.018799735, -0.035143223, -0.008799301, 0.02898911, -0.013914233, -0.011545709, -0.018138438, -0.045211136, 0.035845008, 0.031580314, 0.030446663, -0.008461905, 0.006930125, 0.0059752925, 0.023604263, -0.019906396, 0.02693774, -0.02850326, -0.0113432715, 0.00759817, -0.01519634, 0.009939702, 0.027747491, 0.0038260766, 0.020081842, 0.0032508157, -0.014373093, -0.027383102, 0.02051371, -0.011916846, -0.0066973213, -0.002707607, -0.014764473, -1.4033588E-4, -0.0058200904, -0.019622983, 0.024441006, -0.011734651, -0.012645622, 0.008920765, -0.004082498, -0.0126591185, -0.006700695, -0.012153023, -0.0081177605, -0.01379277, -0.021107526, 0.026843268, 0.027005218, 0.026397904, -0.014683497, -0.029043093, -0.01839486, 0.0045379833, -0.0069976044, -0.018529817, 0.02357727, -0.008252719, 0.028071392, -0.00467969, -0.019015668, -0.019204611, -7.4530367E-6, 0.00273966, -0.0133069195, 0.004551479, -0.006309315, 8.418044E-4, 0.031850234, 0.019069653, 0.007463211, 0.011397255, 0.0147239845, -0.03306486, -0.030149754, 8.0553425E-4, 0.009237917, -0.0022757396, 0.009561818, -0.010081409, -0.015992597, 0.008610359, 0.0046189586, 0.009764256, -0.022308659, 0.021714842, -0.039434906, 0.015101869, 0.021890288, 0.032659985, -0.001946778, -0.0061709825, 0.0053139953, 0.02286199, -0.0086643435, 0.013381147, -0.025777096, -0.037653454, -0.0020345012, -0.013509357, 0.008333694, -0.011572701, -0.0040453845, -0.0023044182, -0.004747169, 0.008455157, 0.034225505, -0.004969851, -0.00466282, 0.00854288, 0.0322821, -0.054631248, -0.0022656177, -0.03225511, 0.02263256, -0.009143447, -0.012834564, -0.013873746, 0.012422941, 0.025493681, -0.016478447, -0.038922064, 0.03239007, 0.018610792, -0.0010045982, -0.016451456, -0.0010754515, 0.003222137, 0.042997815, 0.008286459, 0.025655633, 0.008860033, -0.041135386, 0.039704826, -0.027639525, 0.0057897246, -0.013772527, -0.029070085, 0.034873307, 0.029528946, -0.025291244, -0.024994336, -0.03746451, 6.2924455E-4, 0.006626468, -0.0035966472, 0.008812797, 0.0034161399, 0.02357727, 0.004868632, 0.0063464288, 0.017949495, 0.015871134, 0.011471482, 0.0019349691, -0.006552241, -0.008887025, -0.017571611, 0.0053173695, 0.0037349795, 0.008016542, -0.0039610355, 4.7151165E-4, 0.017558116, 0.025183277, -0.01979843, -0.011262297, -0.018678272, -0.0065556145, 0.0202168, -0.0055940347, 0.035116233, -0.0051183053, 0.014831952, 0.0018894206, -0.00428831, -0.018705264, 0.002142468, 0.018111447, -0.002042936, 0.021094032, 0.03557509, 0.0044435123, 0.016937306, 0.026208963, -0.026262946, 0.009521331, -0.021161512, 0.013003263, 0.01966347, -0.0048618843, -0.01209904, -0.63830024, -0.015250323, -0.012018065, -0.018543314, 0.027221153, 0.022511097, -0.016289504, 0.00850914, -0.006758053, -0.009966694, -0.03276795, 0.0140222, 0.01715324, -0.01991989, -0.016883323, -0.016222026, 0.011734651, -0.01512886, 7.755903E-4, 0.01705877, -0.027990418, 0.0022774267, 0.0011977577, -8.620481E-4, 0.011377011, 0.0060967556, -0.012328469, -0.016491942, 0.014481059, 0.013509357, -0.016707877, 0.00740248, 0.0032811812, -0.0015722679, 0.031769257, -0.0030534386, -0.002346593, 0.0436996, 0.024157591, 0.026127988, -0.014008705, 5.9044396E-4, 0.017571611, 0.01131628, -0.008590116, 0.00759817, 0.022308659, -8.5487845E-4, -0.0043254234, 0.012166519, -0.014130167, -0.018070959, -0.0043591633, -0.009548322, -0.011356767, -0.009548322, 0.012564647, -0.039057024, 0.026357418, 0.007699389, -0.009912711, 0.02247061, 0.011910098, 0.014427076, 2.3217099E-4, 0.03662777, 5.845395E-4, -0.008050282, 0.015074877, -0.026505873, 0.010479537, 0.015992597, -0.0027902694, -0.016545925, -0.009264909, 0.027558548, 0.020257289, 0.012159771, 0.0026620587, -0.0047134296, -0.003212015, -0.016154546, 0.011687416, 0.009143447, 0.020081842, -0.0025726487, -0.029690895, 3.802037E-4, 0.02579059, -0.004693186, 0.00971702, 0.026978226, -0.008111013, 0.0037754672, -0.016303001, -0.0033722783, -0.00425457, 0.009993685, 0.031607307, -0.075144954, -0.007321505, -0.018070959, 0.023023939, -0.005006965, 0.012638874, -0.0041499776, 7.0389354E-4, 0.0019838917, 0.018313885, -0.009986937, -0.0047910307, -0.017787546, -0.023847187, -0.0063835424, -1.4276091E-4, -0.023293857, 0.009116454, 0.0024039503, 0.016114058, -0.00919743, 0.004079124, 0.011154329, 0.022834998, -0.013367651, 0.017679578, 0.031553324, -0.00873857, -0.0036270127, -0.0074564633, -0.0039509134, 0.004473878, -0.002727851, 0.021215495, 1.7491901E-4, -0.0011437743, 0.024319543, 0.01627601, 0.0025439698, 0.03352372, -0.003907052, -0.020297775, 0.0050238343, -0.031472348, -0.02426556, -0.01911014, -0.00624521, -0.015709182, -0.0034330098, 0.0045143655, -6.946151E-4, -0.029447969, 8.6036115E-4, -0.012274486, 0.0202168, 6.2418357E-4, -0.001469362, -0.03274096, -0.03055463, 0.008232475, -0.022996947, 0.0053814747, 0.020554196, -0.019676967, -0.015493249, 0.013360903, 0.005280256, -1.8862575E-4, 0.012672614, -0.012153023, -0.02912407, 0.016977794, -0.0024731166, 0.009055723, 0.0066973213, -0.012578143, 0.046776656, -0.030446663, 0.015871134, 0.005651392, -0.008050282, 0.019231603, -0.004409773, -0.010810185, 1.7175592E-4, 0.028908135, 0.018867215, 0.026546359, 0.00890052, -0.023064427, 0.007908575, -0.0047674133, -0.010391814, -0.008097517, -0.01816543, -0.010000434, 0.0015562415, -0.0107629495, 0.0064071603, 0.01911014, 0.010385065, 0.038301256, 0.020041354, -0.0020901714, -4.2866495E-6, 0.020878097, -0.023131907, 0.005573791, -0.016937306, 0.006720939, 0.017274702, 0.018556809, -0.027801475, -0.008529385, -0.012888548, 0.011491726, 0.025669128, -0.007699389, 0.011093598, -0.002719416, 0.010047669, 0.0024545598, -0.026883757, 0.02099956, 0.0012660805, -0.0055839126, 0.02201175, 0.0150478855, -0.013684804, -0.01754462, -0.02295646, -0.0049934685, -0.0042444486, -0.01346887, 0.013225944, -0.0017645839, 0.0055198073, 0.020824114, -0.00873857, 0.018273396, -0.020068346, 0.008569872, 0.032066166, 0.012767085, -0.0047606654, 0.003610143, -0.0022740527, 0.026586847, 0.019811925, -0.032363076, 0.038031336, -0.012760337, 0.008994992, -0.011815627, 0.031985193, 0.0024950474, -0.020635173, 0.008387678, 0.0015663634, 0.020540701, 0.012463428, 0.005320743, -0.015101869, 8.9072686E-4, 0.029393986, 0.01395472, -0.020405743, -0.033874612, 0.0015233454, -0.0074902033, -0.023428816, -0.02592555, -0.026195467, 2.0539014E-4, 0.007469959, 0.010877664, -0.018826727, -0.011768391, 0.01669438, 0.007922071, 0.011977577, -0.017747058, -0.0384902, 0.020554196, 0.015223332, -0.008232475, -0.008495645, -0.017733563, -0.010877664, -0.036303867, -0.006906507, -0.004369285, 0.019164123, -0.013063994, 0.003303112, -0.023266865, -0.015722679, 0.0047201775, -0.01747714, 0.018759247, 0.018138438, 1.8841488E-4, 0.015601216, -0.0071932944, -0.0031259789, 0.027369607, -0.014157158, -0.0010062852, 0.0030939262, -2.5051693E-4, -0.003018012, 0.006521875, -0.0071595544, -0.03085154, 0.010223115, 9.71992E-8, -0.010884413, -0.012200259, -0.0054287105, 0.0018084454, -0.0101488875, -0.00466282, -0.037059635, -0.02051371, -0.003411079, 0.0740113, 0.039084014, 0.016572919, 0.009224421, -0.009048975, 0.003006203, -0.020729642, 0.0065724845, -0.0032946772, 0.0011319654, 0.0060832594, -0.0047269254, 0.03476534, 0.020122329, 0.013657812, -0.009285153, -0.0041533513, -0.01705877, 0.00720679, -0.012395949, -0.016964298, -0.014912927, 0.017909009, 0.0238067, -0.0029657155, -0.013144969, 0.034252495, 0.011215061, 0.012308226, 0.018205917, -0.012807572, 8.607829E-4, 0.008691335, -0.008003046, -0.004187091, -0.003029821, 0.0059685446, 0.0047066817, 0.03290291, 0.024292551, 0.002059806, 0.004389529, 0.006734435, -0.0104390485, -0.0026114492, -0.015088373, -0.018705264, 0.029259028, 0.030338697, -0.038085323, 0.02631693, 1.1347594E-5, -0.005833586, 0.001955213, 0.02491336, -0.009865475, -0.016721372, -0.00585383, 0.0024933603, -0.006629842, 0.006127121, -0.012564647, 0.0023196011, -0.020500213, 0.0026721805, -0.016491942, -0.004079124, -0.02390117, -0.01701828, -1.4792729E-4, -0.00348868, -0.023388328, -0.03492729, -0.022200692, -0.005833586, -0.016303001, 0.017989984, -0.021444924, 0.0026890505, 0.017369173, -0.029987805, -0.018705264, -0.0055063115, -0.030743573, -0.015115364, 0.010169132, -0.017882016, 0.019285586, 0.003217076, -0.0011395568, 0.041270345, 0.016613405, -0.022092726, 0.009730516, 0.028935127, -0.0061811046, 0.023563774, 0.027315624, 0.010749454, -0.011437743, 0.0051216795, -0.026694814, -0.005148671, -0.014953415, -0.00873857, -0.02726164, 0.012092292, 0.011336524, -0.015641704, -0.0153043065, -0.019528512, -0.005158793, 0.0016178164, 0.004774161, 0.013846754, 0.006343055, 0.020500213, 0.015358291, 0.0014179089, 0.023334345, 0.013651064, 0.012969523, 0.012908791, 0.012328469, -0.005664888, 0.022443617, 6.444274E-4, -0.021944271, -0.0107292095, 0.04089246, 0.017693074, 0.013725291, -0.024494989, -0.008839789, -0.005165541, -0.0061169993, 0.013367651, -0.0048079006, -0.027113186, 0.012591639, -0.0045548533, -0.001552024, 0.008131256, -0.011795383, 0.0077803642, -0.030122763, -0.0022031993, -0.01966347, 0.018057462, 0.01839486, -0.015074877, -0.003809207, -0.030284714, 0.004497496, 0.004193839, -0.03212015, -0.03568306, 0.0022808006, 0.03886808, 0.014319109, 0.04356464, 0.0055063115, 0.024252063, 0.0048382664, 0.002235252, 0.02122899, -0.013347407, -0.0068693934, -0.0446713, 0.017409662, 0.01966347, 0.017962992, 0.016262513, 0.025088806, -0.009474095, 0.017747058, 0.01395472, 0.014238134, -0.015115364, 0.006052894, 0.0056007826, 0.004214083, -0.027774483, 0.0016464951, -0.006801914, -0.018111447, 0.045535035, -0.007915323, 0.0015688939, -0.0064948834, 0.0361959, 0.009116454, 0.0071528065, -0.01395472, 0.00759817, -0.011046363, -0.018151933, -0.023631254, -0.012011317, 0.0077398764, 0.006528623, -0.0040588803, -0.009055723, -0.015641704, 0.011586197, 0.027329119, -0.019690461, -0.010911404, 0.014238134, -8.9157035E-4, -0.007935567, -0.046884622, -0.021957766, -0.023941658, -0.01222725, 0.004693186, -0.013198952, 0.004207335, -0.0029775244, -0.059489757, 0.017652586, -5.9803535E-4, 0.038652148, 0.007618414, 0.042835865, 0.02726164, 0.013354155, -0.030122763, -0.003704614, -0.010553763, -0.027774483, 0.03087853, 0.02664083, -9.0084877E-4, -0.004753917, -0.0061946004, -0.0132731795, -0.0361959, -0.036276877, 0.011397255, 0.01653243, 0.029070085, -0.030608613, -0.004197213, -0.04135132, 0.018219413, -0.002358402, 0.007321505, -0.0014862317, -0.02866521, -0.018691769, 0.013482366, -3.3713295E-5, 0.024467997, 0.009959945, -0.01917762, -0.007820852, -0.0050575742, -0.011012623, -0.00795581, 0.010061164, 0.033037867, -0.018799735, 0.010283846, 8.084864E-4, 0.017126247, 0.0052127764, -0.002916793, 0.010162383, 0.03087853, -0.019636478, 0.012085544, -0.0029994552, -4.8711625E-4, -0.011457986, 0.02657335, -0.029582929, -0.020500213, -0.03087853, 0.0049462332, 0.033604696, 0.015182844, -0.0036944922, -0.008961252, -0.023563774, -0.011370263, 0.0069031334, 0.0052937516, -0.010526772, -0.027153673, 0.02122899, -0.0027818345, 0.010223115, -0.009487591, 0.01784153, -0.0033840872, -0.0016001031, 0.03117544, -0.014777969, -0.0029724634, -0.018961685, -0.00567501, -0.057924237, -0.029420977, -0.009190681, -0.017328687, 0.015088373, -0.028341308, 0.0017215658, -0.013030254, -0.011754896, 0.0033554086, -0.01653243, 0.005158793, 0.019285586, 0.009305396, -0.003303112, -0.008563124, 0.004315302, 0.023307353, -0.005077818, -0.008387678, 2.589782E-5, -0.002429255, 0.026627334, -0.02367174, 0.00873857, -0.0041702213, -0.029636912, -0.013583585, 0.004848388, 0.026303435, 0.016653894, -9.346938E-5, -0.036465816, -0.003411079, -0.010702218, 0.020810619, -0.010614495, 0.0037720932, 0.029636912, 0.011424247, 0.010951892, 0.014265126, -0.013124725, -0.02458946, -0.005745863, 0.005141923, -0.013502609, 8.29152E-4, 0.009069219, -7.072675E-4, -0.0034650625, -0.01637048, -0.015263819, 8.0131675E-4, -0.02233565, -0.013772527, -0.019771436, 0.016181538, 0.046479747, -0.0035561596, 0.014278621, 0.02240313, -0.0202168, 0.020662164, -0.017234216, -0.009453851, 0.0077668685, 0.006025902, -8.29152E-4, 0.0133069195, -0.017720066, -0.009406615, 0.018232908, 0.0095348265, 0.007119067, 0.014062688, -0.03959686, -0.021795817, 0.0037855892, 0.002822322, 0.0149804065, -0.0030939262, 0.020405743, -0.04213408, -0.006521875, 0.009514582, 0.006609598, 0.0049968427, 0.0047201775, -9.177186E-4, -0.013873746, -0.0098249875, -0.026910748, 0.0037552235, -0.0016827652, -0.01095864, 0.021998255, 0.0075509343, 0.006623094, 0.014575531, 0.016572919, -0.00994645, -0.0032457546, -0.009231169, -0.010587503, 0.0064611435, -0.009905962, 0.00446713, 0.022281667, -0.030635605, 0.025331732, -0.03182324, 0.008839789, 0.0034819322, 0.0026181971, -0.018084455, 0.038922064, -2.5874097E-4, -0.037977353, -0.0042242045, 0.005006965, -9.12025E-5, -0.015925117, -0.01209904, -0.032794945, -0.0053308653, -0.014062688, 8.097517E-4, -0.009204177, -0.030770564, -6.195444E-4, -0.018084455, -0.022160204, 0.010742705, 0.18062861, -0.0135296015, 0.011687416, 0.052741826, -0.004106116, 0.007868087, 0.022160204, 0.019204611, -7.920384E-4, 0.0150478855, -5.153732E-4, 0.013900737, -2.5410176E-4, -0.001114252, 0.02256508, -0.011552458, -0.027963424, -0.0081177605, 0.003421201, -0.030095771, -0.011302784, 0.005847082, -0.02790944, -0.025709616, 0.011424247, 0.008671091, -0.012200259, 0.0038159548, 0.024953848, -0.0058200904, -0.009440355, -0.011977577, 0.0012163145, 0.013806267, -0.01581715, -0.006889637, -0.003984653, 0.0115996925, 0.018043967, -1.4191742E-4, 0.015439265, 0.011100346, 0.004095994, -0.018826727, -0.0024984214, 0.029205045, -0.021971263, 0.0076251617, -0.012274486, 0.01261863, -0.04386155, 0.012996514, 0.009177186, 0.023199385, -0.0012576455, -0.0060056583, -0.010067913, 4.0297798E-4, 0.006160861, 0.008812797, 0.014062688, 0.03805833, -0.020392247, 0.009737264, -0.0096023055, 0.02367174, -0.01979843, -0.011026119, 0.020905089, -0.03382063, 4.3988074E-4, -0.025385715, -0.032012183, -0.013367651, -0.0022200693, -0.010418805, -0.0070515876, 0.017450148, 0.011505222, 0.019096645, -0.02214671, -0.02426556, -0.002820635, 6.0520502E-5, -0.013165213, -0.025102302, 0.02270004, 0.0025760226, 0.007692641, -0.023766212, -0.015655199, -0.028773177, -0.01604658, 0.029178053, 0.013684804, -0.005344361, 0.015763165, 0.0077601206, -0.0074564633, -0.0033840872, -0.041891154, 0.014116671, 0.031850234, -0.017261207, -0.011775139, -0.021809312, -0.02178232, 0.015992597, 0.025547666, -0.012875052, -0.015965603, -0.028449276, -0.0072607733, -0.02099956, -5.689349E-4, 0.025439698, 0.0012331844, -0.033469737, 0.036897685, -0.0113432715, -0.00524989, -0.008799301, 0.010047669, 0.00565814, 0.0037687193, -0.01927209, -0.035332166, -0.0040757502, 0.0107292095, -0.038004346, 0.0038868082, -0.0044232686, -0.012092292, 0.012584891, -0.0257636, 0.020351758, 0.031877223, 0.012827816, 0.020716147, -0.013252936, -0.0033992701, -0.009015235, -0.010459293, -0.0018725508, 0.006430778, -0.04807226, 0.015452761, -0.0028813665, -0.013320415, -0.019622983, -0.01591162, 0.0046290806, 0.011680668, 0.010553763, 0.035305172, 0.0031361007, -0.022713535, -0.030419672, -0.020594684, 0.027990418, -0.035710048, 0.02585807, 0.026438393, -0.020621676, -0.030419672, -0.009690029, -0.1725311, 0.0062991935, 0.0025895184, -0.020621676, 0.021161512, 0.025412707, 0.018151933, 0.008144752, 0.0153043065, -0.00564127, 0.016478447, 0.0032541896, -0.045885928, -0.019191114, 0.0016287818, -0.007611666, -0.013408138, 0.027153673, 0.007685893, 0.0030011423, 0.046560723, 0.0077736164, 0.013381147, -0.005084566, 0.017679578, 0.019029165, 0.009730516, 0.016397472, -0.0050170864, -0.017004786, -0.021458419, -0.0054050926, -0.002322975, 0.015628207, -0.020554196, 0.009372876, -0.0047066817, -0.01512886, -0.01780104, 0.0040285145, 0.0277205, 0.030203737, 0.0322821, 0.0044333907, 0.016006092, 0.009453851, 0.019258594, -0.02898911, 0.012888548, -0.018070959, -0.0078275995, -0.047721367, 0.011302784, -0.014359596, 0.008583368, 0.026775789, -0.012861556, -0.0107292095, 0.008495645, -0.023550278, -0.017355679, -0.0058875694, 0.009939702, -0.019407049, -0.008549628, -0.020986065, -0.022295164, 0.0028661836, -0.03743752, 0.008522636, -0.02074314, 0.0045143655, 0.004180343, 0.01542577, 0.008138005, -0.025453195, -0.04167522, 0.011390507, 0.004973225, 0.020203305, -0.0058976915, 0.047910307, -0.025844574, 0.021026552, 0.022025246, -0.026114492, -0.0076656495, -0.02364475, 0.013786023, -0.011883106, 0.014062688, -0.01881323, -0.02507531, 0.01190335, 0.00263338, 0.011046363, 0.004085872, 0.0056547658, 0.009636045, 0.005587287, -0.0109249, -0.003603395, -0.004780909, 0.037356544, 0.011592945, 0.018597297, 9.894153E-4, 0.027774483, 0.028908135, 0.0027852084, -0.001757836, 0.025723113, 0.019191114, 0.010270351, -0.03087853, -0.004983347, -0.019865908, -0.029501952, 0.008111013, -0.0078950785, 0.030176746, 0.0031327268, -0.0061912267, -1.1450395E-4, -0.004176969, -0.021633865, -0.09117804, 0.0029083581, -0.0069503686, 0.051446225, -0.046911616, 0.03776142, 3.6902746E-4, 0.02788245, -0.010054417, 0.029097077, 0.017760554, -0.027936433, -0.0025287871, -0.0055839126, 0.021377444, -0.0024427508, -0.010310838, -0.014211142, -0.027450582, 0.030041788, 0.006397038, -0.0069503686, -0.010283846, -0.012719849, -0.047991283, 0.022619063, -0.024319543, 0.0286922, 0.005006965, 0.009744012, 0.030743573, -0.021498907, 0.015520241, -0.04699259, -0.024778401, -0.019933388, -0.014750976, -0.010513276, 0.021741834, -0.038031336, 0.021971263, 0.013178709, 0.013968216, -0.02504832, -0.012362209, -0.0039340435, -0.018448843, 0.019380057, -0.006852524, -0.016707877, -6.747931E-4, -0.021822808, -0.020378752, -0.0033908351, 0.019649975, 0.0037653453, 0.027531557, 0.006609598, -0.011910098, -0.0057323673, 0.0046324544, -0.005776229, -0.018502826, 0.025655633, 0.012827816, 0.0068322797, -0.004274814, -0.0024984214, 0.020230297, -0.03274096, -0.0153043065, 0.030419672, -0.03635785, -0.006731061, -0.00850914, -0.0011598006, -0.013833258, -0.011511969, 0.014062688, -0.031067474, 0.009096211, -0.033118844, -0.01464301, -0.029717887, -0.008212232, 0.016316496, 0.018975182, 0.02226817, -9.430233E-4, -0.037869386, 0.004011645, 0.024225071, -0.0014280309, 0.0030534386, -8.856659E-4, 0.019083148, 0.01936656, 0.011066606, 0.011221808, 0.002716042, -0.015412274, -0.0045143655, -0.06850499, 0.024009138, -0.020311272, -0.01284806, -0.0046257065, 0.0014322483, 0.0018674898, -0.012706353, 0.0018809857, 0.004187091, -0.0039745313, 0.029798862, -0.012719849, 0.012632126, 0.0023921414, 0.008030037, 0.0026620587, -0.009541574, -0.005374727, 0.006612972, -0.0038868082, 0.007314757, 0.021377444, 0.007928818, 0.019137131, 0.019015668, 0.0068761413, 0.02191728, -0.017936, 0.002032814, 0.0047370475, -0.019191114, 0.008164996, 0.019825421, -0.011457986, -0.01966347, -2.006455E-4, -0.003971157, 0.027801475, 0.001659991, -0.001757836, -0.01386025, 0.0046290806, -0.01832738, 0.0028088263, 0.0144675635, -0.02292947, 0.012875052, 0.007024596, 0.004770787, 0.035791025, 0.011221808, -0.0095348265, -0.001754462, 0.01888071, -0.03087853, 0.06737134, 0.008077273, 0.015223332, -0.010547016, 0.015601216, 0.0013074116, 0.010189376, -0.042511962, -0.0027480947, 0.0076319096, 0.011667172, -0.016667388, -0.0013656125, -0.022106221, -0.0020075093, -0.0050508264, 0.010088157, 0.031067474, 0.011977577, 0.01676186, -0.0037147359, -0.002252122, -0.008131256, 0.0074294717, 0.014292117, -0.0013959781, -0.018421851, 0.019002173, 0.008353938, 0.021080535, 0.004284936, 0.011302784, -0.0038125808, -0.00740248, -0.017936, 0.010918152, 0.019838916, -0.0061743567, 0.01001393, 0.02788245, -0.013603828, -0.0069503686, -0.015803654, 0.026303435, 0.0077263806, 0.014197647, -0.022187196, -0.018313885, -0.019312577, 0.014130167, -0.004173595, -0.017261207, 0.011113842, -0.0023887674, 0.033766646, -0.0013942912, -0.023604263, 0.011559205, -0.025804088, 0.02083761, -0.018894207, -0.034603387, -0.021606874, 0.03039268, 0.002915106, 0.016289504, 0.053308655, -0.018138438, 0.044698294, 0.019258594, 0.022902478, -0.017490637, 0.013279928, -0.0075779264, -0.020230297, 0.01894819, -0.015101869, 0.011694164, -0.0031361007, -0.003697866, 0.003412766, 0.022281667, -0.039057024, 0.067749225, 0.0052768816, 0.0089882435, 0.007618414, -0.01033783, -0.0054354584, 0.0021913906, 0.021431427, -0.007712885, -0.009480842, 0.019555504, -0.021930775, 0.0074294717, -0.045022193, 0.0042646923, 0.0014912927, -0.009075967, 0.015209836, -0.01676186, -4.664507E-4, -0.0023904545, 0.004686438, 0.021215495, -0.015344795, -0.025952542, -0.014494555, 0.02390117, -0.014454068, -0.020432735, -0.031472348, -0.00606639, -0.010432301, 1.7386465E-4, -0.0014153784, 0.0280444, 0.009102958, 0.0048079006, 0.010621243, 0.009426859, 0.017828032, -0.0025287871, -9.2952745E-4, -0.022497602, -0.02070265, 0.007213538, 0.0062789493, -0.0039272956, -0.011660424, -0.0280444 ], + "id" : "6dfbda29-652d-4a7b-88d1-8be64046d76f", + "metadata" : { + "source" : "movies.csv" + } + }, + "36e9cbf9-03e3-406e-b5ad-1c5db7b19704" : { + "text" : ",10138-68721-1771-10195-24428-1724-76338-100402-99861-271110-118340-102899-557-1930-272-49026-155-49538-22-283995-558\r\n333339,Ready Player One,Science Fiction-Adventure-Action,en,When the creator of a popular video game system dies a virtual contest is created to compete for his fortune.,56.838,Amblin Entertainment-Village Roadshow Pictures-Warner Bros. Pictures-Dune Entertainment-De Line Pictures-Reliance Entertainment-Farah Films & Management,3/28/18,175000000,582890172,140,Released,A better reality awaits.,7.617,13790,Tye Sheridan-Olivia Cooke-Ben Mendelsohn-Lena Waithe-T.J. Miller-Simon Pegg-Mark Rylance-Philip Zhao-Win Morisaki-Hannah John-Kamen-Ralph Ineson-Susan Lynch-Clare Higgins-Perdita Weeks-Letitia Wright-Mckenna Grace-Lulu Wilson-Cara Pifko-Vic Chao-Cara Theobold-Isaac Andrews-Joel MacCormack-Kit Connor-Leo Heller-Antonio Mattera-Lynne Wilmot-Kae Alexander-Michael Wildman-Adolfo �lvarez-Alonso Alvarez-Jadah Marie-Arianna Jaffier-Armani Jackson-Britain Dalton-Jacob Bertrand-Gareth Mason-Ronk�__ Ad��kolu�__jo-Daniel Zolghadri-William Gross-Laurence Spellman-Daniel Eghan-Julia Nickson-Kiera Bell-Samantha Russell-James Dryden-Violet McGraw-Jayden Fowora-Knight-Turlough Convery-Rona Morison-Elliot Barnes-Worrell-Asan N'Jie-Amy Clare Beales-Racheal Ofori-Sandra Dickinson-Mark Stanley-Emily Beacock-Rosanna Beacock-Gemma Refoufi-Jane Leaney-Robert Gilbert-Stephen Mitchell-Joshua Archer-Avye Leventis-Dean Street-Joe Hurst-Eric Sigmundsson-Danielle Phillips-Khalil Madovi-Bruce Lester-Johnson-Tom Turner-Paul Barnhill-Maeve Bluebell Wells-Neet Mohan-Georgie Farmer-Kathryn Wilder-Sid Sagar-David Forman-Ian Davies-Dallas Dupree Young-Sydney Brower-Jaeden Bettencourt-Gavin Marshall-Juan Carlos Cantu,video game-based on novel or book-future-virtual reality-dystopia-nostalgia-love-film in film-evil corporation-quest-1980s-2040s-based on young adult novel-columbus ohio,/pU1ULUq8D3iRxl1fdX2lZIzdHuI.jpg,/dbrLfmFNFEJWv8rLnjpgCKlXWSy.jpg,284054-383498-299536-338970-268896-427641-284053-447332-351286-348350-363088-260513-283995-141052-335983-315635-181808-401981-353486-336843-284052\r\n585,\"Monsters, Inc.\",Animation-Comedy-Family,en,Lovable Sulley and his wisecracking sidekick Mike Wazowski are the top scare team at Monsters Inc. the scream-processing factory in Monstropolis. When a little girl named Boo wanders into their world it's the monsters who are scared silly and it's up to Sulley and Mike to keep her out of sight and get her back home.,133.", + "embedding" : [ 0.0059321066, -0.048361577, -0.0077723963, -0.037888717, -0.025866862, 0.027772265, -0.024550902, -0.025400793, -0.03182981, -0.044331446, 0.044962008, 0.028841484, 0.016929293, -0.002117875, -7.683937E-5, 0.016024569, 0.012542755, -0.032926448, 0.030212278, -0.032021724, 1.4149689E-5, -0.005298115, -0.03278937, -0.007059584, 0.0041877725, 0.0011943034, 0.0056133973, -0.020328859, -0.004307717, -0.022563253, 0.015901199, -0.014064336, -0.006967055, -0.010116452, -0.033803754, 0.011069153, 0.017367946, -0.025633829, 0.023467975, -0.011411851, 0.022412466, 0.024811354, -0.017189743, -0.011261065, -0.0057641845, 0.015777826, 0.010445442, -0.0025273995, 0.0072857644, 0.024523485, 0.0064393, 0.026127314, -0.0059321066, -0.030130029, -0.013516018, -0.0035040895, -0.019451553, 0.024921017, -0.011733987, 7.8874145E-5, 0.009527011, -0.018300086, -0.022138307, -0.007402282, -0.0072857644, -0.002075038, -0.016449515, -0.017436486, -0.0010906372, -0.00321965, 0.03487297, 0.017477611, 0.019958746, 0.008725097, 0.02145291, -0.021096503, -0.031034753, -0.008752513, 0.012714105, 0.0070801456, 0.0033755777, -0.03210397, -0.00843723, -0.0064735697, 0.014475574, 0.017258283, 0.004105525, 0.02496214, -0.036655005, -0.0030328794, 0.004670977, 0.037093658, 0.009376224, 0.009691507, -0.006360479, 0.010335779, -0.016696258, 0.03640826, -0.018450873, -0.037696805, 0.0049828324, 0.0037593998, 1.9469544E-4, -0.014502989, -0.015010183, 0.0049554165, -0.0022635218, -0.013694222, 0.030212278, -0.0032042286, -8.079111E-4, 0.0032384985, 0.022535836, -0.03588736, -0.002434871, -0.016778506, 0.012672981, -0.024729105, -0.020095825, -0.023824383, 0.024879891, 0.03177498, 0.0017974522, -0.024770228, 0.031199249, 0.025510456, -0.0146263605, -0.023605054, 0.0043317056, -0.006038343, 0.031363744, -0.008080824, 0.033419933, 0.012871746, -0.035448708, 0.04238492, -0.020753805, 0.011706572, -0.013214444, -0.017696938, 0.034242406, 0.037779056, -0.00698419, -0.0122480355, -0.019684587, -1.4950211E-4, 0.010808703, -0.012953994, 0.024413822, 0.01132275, 0.019273348, 0.020616727, -0.013474895, 0.021082796, 0.020712681, -0.005304969, 0.016476931, 0.011069153, 0.008224757, -0.012494778, -9.92754E-5, -0.008670266, -0.0043796836, -0.018286379, -0.0051507545, 0.02608619, 0.034845557, -0.01128848, -0.0041843457, -0.0020219197, -0.020315152, 0.020397399, -0.01932818, 0.0047737863, -0.0126524195, 0.033255436, 0.0013699363, -0.0031305484, -0.01708008, -0.019616047, 8.2633115E-4, 0.0013022533, 0.03032194, 0.04238492, 1.227288E-4, 0.010013643, 0.025126634, -0.01569558, 0.012234327, -0.0152569255, 0.010815556, 0.015394005, 0.012542755, -0.01251534, -0.6373639, -0.014475574, -0.0045715948, -0.016463224, 0.005294688, 0.025606412, 0.016038278, -0.0026507708, -0.018834695, 4.7576155E-5, -0.009115773, 0.018533122, 0.010993759, -0.013529726, -0.02098684, -0.009355662, 0.022604376, -0.020712681, 0.014119168, 0.014119168, -0.024071125, 0.017820308, 0.016189065, 0.0015078722, 9.6383883E-4, 0.018807279, -0.012837476, -0.0063639064, 0.0036634442, -0.00777925, -0.003108273, 0.00658666, 0.020328859, -0.004622999, 0.031747565, 0.0011351879, -0.011452975, 0.044578187, 0.039506253, 0.045263585, -0.025743492, -0.010616791, 0.014016358, 0.022193138, -0.020232905, 0.023646178, 0.02409854, 5.226148E-4, -0.004040412, -0.020671558, -0.014461866, -0.0035949044, 0.013906695, -0.007093854, 0.001037519, 0.0045613134, 0.00910892, -0.029170474, 0.030047782, -0.013570851, -0.018546829, 0.02370101, 1.0912797E-4, 0.00893757, -0.011864213, 0.02826575, 0.0051987325, -0.013097927, 7.0553E-4, -0.014818272, 0.014886811, 0.020424815, -0.010178138, -0.001370793, -0.0033601562, 0.012179496, 0.033694092, 2.1611407E-4, 0.0025582423, 0.034927804, 0.0014873104, -0.0056031165, 0.010164429, 0.013248714, 0.03311836, -0.016312437, -0.031281494, 0.009389932, 0.011644886, -0.0049417084, 0.005442048, -0.0011754549, 0.007943745, -0.011638032, -0.014215123, 0.0055619925, -0.02356393, -0.0022789433, 0.015599624, -0.04921147, -0.024537195, -0.016435808, -0.0021470045, -0.010520836, 0.03747748, 0.007011606, -7.873492E-4, 0.0030465873, 0.0373404, -0.01320759, -0.008649704, 8.910154E-4, -0.013324108, -0.015037599, -0.004324852, -0.030541267, 0.013687368, 0.013920402, 0.009191167, -0.010507128, 0.0047121006, 0.013481749, -0.0018214411, -0.0046092914, 0.008827907, 0.018121883, 0.0115694925, 0.0016809349, -0.0040438394, -0.010342633, 0.022165723, -2.5252576E-4, 0.017573565, -0.016833337, 3.165675E-4, -0.0031374025, 0.014091752, -0.005373508, 0.021082796, -6.361336E-4, -0.03276195, -0.01410546, -0.025921695, -0.012206911, -6.2156894E-4, -0.01261815, -0.026990913, 0.002630209, -0.0034406902, -0.014845688, -0.0025273995, 0.016723674, 0.0025702368, -0.0034972355, -0.013063657, -0.005455756, -0.011028029, -0.020328859, 0.014914228, -0.010781286, -0.0046024374, -0.0039958614, -0.0020784647, -0.009513303, 0.01860166, -0.005620251, -0.00860858, 0.020205488, -5.2989717E-4, -0.02634664, 0.0037559727, 4.0374137E-4, -0.012906016, 0.016929293, -0.015681872, 0.030541267, -0.030294525, 0.014215123, 0.01483198, -0.015243217, -0.0037491187, 0.0031442563, -0.0060075, -0.009198021, 0.010068474, 0.016093109, 0.007642171, -0.0061891302, 0.0061891302, 0.005256991, -0.009622967, 0.0061000288, -0.032049138, 0.010184992, 0.0049828324, 0.031637903, -0.008697681, 0.0018848403, 0.011082862, 0.0041877725, 0.05812162, 0.022001227, -0.007189809, -0.008629141, 0.009897125, -0.039807826, -8.901587E-4, -0.031089585, 0.014914228, -0.0029454913, 0.028156087, -0.007196663, -0.0133104, 7.864657E-8, 0.0036463093, 0.03309094, -0.016504347, 0.004242604, -0.019012898, 0.003394426, 0.0017306261, -0.019355597, 0.017847724, 9.407067E-4, -0.014571529, 0.018971775, 0.007594193, -3.3434498E-4, -0.0038690632, -0.012796353, -0.004694966, -0.0073131802, 0.0031408293, -0.006610649, 0.014407034, -0.003404707, 0.037861302, -9.278555E-4, 0.040904462, -0.0044105262, -0.007162393, 0.025990235, 0.03813546, -0.008814199, -0.0015841227, -0.010685331, 0.0065558176, 0.022796286, -0.021864148, 0.050116193, -0.03139116, 0.024372699, -0.025935402, 0.0033961395, 0.002124729, -0.006014354, 0.004790921, -7.3894305E-4, 0.02701833, 0.022124598, 0.0021332966, -0.019149978, 0.01628502, 0.0061342986, -8.1347994E-4, 0.014283663, -0.03097992, -0.0073611583, -0.0038176584, -0.03391342, -0.017834017, -0.0153528815, -0.011021175, 0.01986279, -0.015421421, -0.0023132132, -0.0026679058, -8.722741E-5, 0.014365911, 0.02370101, -0.008985548, -0.027045745, 0.009280268, 0.024221912, -0.0013476608, -0.014311079, -0.020548187, -0.012974556, -0.028841484, -0.022755163, -0.004266593, 0.022343926, -0.011123985, 0.0074913837, -0.017066373, -0.0056031165, 0.008827907, -0.0059835115, -0.010034204, 0.026127314, 0.004420807, 0.034324657, -0.011857359, 0.003205942, 0.02390663, -0.0061445795, 0.010575668, 0.006590087, -0.0036634442, 0.008087679, -0.0026936082, 0.012988264, -0.03627118, 0.0045681675, -0.014365911, -0.0072994726, -0.0061617144, -0.010973197, 0.0020116386, -0.0034526847, -0.017642105, -0.020356275, -0.024537195, -4.395105E-4, 0.063604794, 0.021905271, 0.013461187, -0.0044482234, 0.002762148, 0.007909476, -0.021836732, -0.028046424, -0.0059560956, -0.0149005195, 0.0154351285, 0.0024948432, 0.024208203, 4.5578866E-4, 0.011905337, -0.0050239563, -0.008841614, -0.014598945, 0.0014341922, -0.019753126, -0.021302123, 4.1830604E-4, -2.6037034E-5, 0.022426173, 0.0068539646, -0.024674274, 0.02840283, 0.019561216, -0.0011274773, -0.0038279393, -0.0071486854, -5.149041E-4, -0.0026970352, 0.006062332, -0.0015866929, 0.014215123, 0.025592705, 0.018025927, 0.032487795, 0.018848402, 0.005870421, 0.008978694, -0.005274126, 0.001754615, 0.022481004, -0.021356955, -0.0124468, 0.014201415, 0.045702238, -0.030075198, 0.025976527, -0.00843723, -0.026031358, -0.005490026, 0.009588697, 0.012837476, -0.013468041, -0.011123985, -0.035530955, -0.014886811, -0.0011454689, -0.050746754, 0.0059869383, -0.0030328794, 0.0015704146, -0.02052077, -0.006432446, -0.0010340919, -0.00814251, 0.026497427, 0.017696938, -0.023138985, -0.015366589, -8.850182E-4, 0.0051747435, -8.760224E-4, 0.03416016, -0.007011606, 0.00900611, 0.0045750216, -0.028512493, -0.032953862, 0.008080824, -0.016202772, -7.0124626E-4, 0.015092431, 7.586482E-4, 0.025071803, -0.010452297, -0.0029780478, 0.014640069, -0.009424201, -0.009657237, -0.005664802, 0.034269825, 0.009773754, 0.019876499, 0.01654547, -1.7188459E-4, -0.0025650964, 0.0024948432, -0.017724354, -0.01588749, -0.01211781, -0.016120525, -0.02237134, 0.006034916, 0.027127992, -0.00930083, -0.016518055, -0.03542129, -0.0017169182, 0.01806705, 0.00597323, 0.010267239, -0.002912935, 0.024729105, -0.0076627326, -5.0205295E-4, -0.006829976, 0.0013836442, -0.011370728, 0.0120218545, 0.016476931, -0.007751834, 0.011398143, -0.00781352, -0.030047782, -0.005651094, 0.017230868, 0.004472212, 0.011103423, -0.018423457, -0.025935402, -0.020411108, -0.030212278, 0.023851797, -0.018245254, -0.013769615, 0.0042974357, -0.020383691, 0.0069567743, 0.0073268884, -0.0072926185, -0.011761404, -0.03092509, 0.001259416, -0.0065318285, 0.0226455, 0.03416016, -0.00907465, 0.007758688, -0.019437844, -0.012967701, 9.706928E-4, -0.03396825, -0.043920208, -0.01125421, 0.047511686, 0.017779185, 0.03640826, -0.0154351285, 0.034269825, -9.921114E-4, 0.014859396, 0.01284433, -0.018231547, -0.010404319, -0.024646858, 0.0028101255, 0.006665481, 0.016984126, 0.037724223, 0.001946526, -0.0038347933, 0.03257004, 0.0058669937, 0.022672916, 0.0021744203, -0.031171832, -0.018697616, 0.0035640616, -0.025250006, -0.007827228, -0.0350923, -0.024496071, 0.04679887, -0.002609647, 2.8808072E-4, -0.0024537195, 0.037450064, -0.0051576085, 0.005616824, -0.008964986, 0.016970417, -0.02516776, 0.0069053695, -0.03182981, -0.002825547, 0.007388574, -0.006384468, 0.0054694638, 0.0010983478, -0.029883286, 0.004283728, 0.008348129, -0.023399435, -0.018546829, 0.025524165, -0.008951278, 9.392074E-5, -0.025469333, -0.001636384, -0.027827097, -0.013557143, 0.0048149102, -0.0059252526, 0.0023423424, -0.026661923, -0.053049687, 0.016298728, -0.0016286734, 0.024276743, 0.009218583, 0.043947622, 0.02648372, 0.019616047, -0.01208354, -0.005490026, -0.013947818, -0.007244641, 0.035585787, 0.020479647, -0.02079493, -0.01860166, 0.015339173, -0.010548252, -0.029581713, -0.045784485, 0.017642105, 0.033310268, 0.023454268, -0.02629181, -0.010287801, -0.025455626, 0.025551582, -0.003920468, -0.0120218545, 0.0023680448, -0.017340532, -0.0029729072, 0.003546927, -0.0071007074, 0.011987585, 0.01125421, -0.019712003, 0.010781286, -0.0066997507, -5.8954807E-5, -0.017628398, 0.0074708215, 0.022206847, -0.021864148, 0.009958811, -0.0019825094, 0.021864148, 0.002943778, -5.3632277E-4, 0.00423575, 0.029280137, -0.018313793, 0.013783324, -0.0098560015, -0.0037662536, -0.0059698033, 0.023166401, -0.021206167, -0.020246612, -0.027909344, -0.022563253, 0.022604376, 0.01393411, 0.008827907, -0.006847111, -0.007957453, -0.020383691, 0.009280268, 0.009156897, 0.01254961, -0.0328442, 0.0113433115, -0.011028029, 0.00173748, 3.3498753E-4, -0.012090394, 0.0131870285, 0.008204196, 0.015476253, -0.009458471, 1.7188459E-4, -0.0072994726, -0.013392647, -0.0248936, -0.022097183, -0.01165174, -0.021206167, 0.015051307, -0.01979425, 0.007025314, 0.008882739, -0.0047292355, -0.014557822, -2.820835E-4, -0.0022498139, 0.0049862596, 0.026634507, -0.009232291, -0.01702525, -0.005253564, 0.041480195, 0.0015190099, -0.016504347, 0.009527011, 0.016257605, 0.023399435, -0.019561216, 0.01363939, -0.0011223367, -0.022014935, -0.03374892, 0.018121883, 0.015243217, 0.01208354, -0.005452329, -0.028951148, 0.009266561, -0.0060863206, 0.014050628, -0.012789498, -0.014420742, 0.025250006, 0.013269276, 0.026374057, 0.028512493, -0.0149005195, -0.025208883, -0.018711325, -0.0132350065, -0.02252213, 0.016929293, -0.0016980697, 0.01754615, -0.0030979922, -0.0044345153, -0.040136818, -0.010747016, -0.005887556, -0.029554296, 0.007189809, 0.025839448, 0.050362933, 0.013797031, -3.9003344E-4, 0.028622158, -0.010747016, 0.004455077, -0.031665318, -0.0054283403, 0.00814251, 0.0226455, 0.021302123, 0.035859942, -0.0152569255, -0.0028375415, 0.01056196, 0.028567325, 0.009938249, 0.031226663, -0.013084219, -0.0025531019, 7.509375E-4, -0.010774433, -0.0060863206, -0.010589376, 0.015983446, -0.035119716, -0.0051678894, -0.0036702983, 0.009410494, 0.004537325, 1.8730601E-4, 0.017642105, -0.029362386, 0.0036188934, -0.0013570851, -0.01960234, -9.7154954E-4, -0.023276065, 0.026428888, -0.0053563737, -0.008039701, 0.021411786, 0.018368626, -0.017381655, 2.3410574E-4, 0.0053323847, 0.0064564347, -0.009760045, 0.005003394, 0.007203517, 0.021151336, -0.033474766, 0.020603018, -0.014777148, -0.0058909827, -0.023714717, 0.006250816, -0.017532442, 0.028457662, 0.0131870285, -0.049869448, -0.008512625, -0.011679156, 0.0041877725, -0.013961527, -9.749765E-4, -0.017189743, -0.002727878, -0.0010829264, 0.0130088255, -0.015380297, -0.018231547, -0.0010906372, -0.0084715, -0.0065935142, 0.017203452, 0.18818246, -0.011158255, 0.01327613, 0.056312174, 0.0061959843, 0.008875884, 0.027251365, 4.1530744E-4, -0.014516697, 0.017669521, -0.020548187, 0.028183503, 0.0013039669, 0.0022943646, 0.0014384759, 0.005195305, -0.025263714, -0.011123985, -0.017724354, -0.01476344, -0.0019311046, 0.009979373, -0.025058096, -0.01827267, 0.0018402896, 3.0842843E-4, -0.0088690305, 0.0077312724, 0.030870257, 0.012131518, -0.022919659, 3.959771E-5, -0.005870421, 0.016010862, -0.008677119, -0.013611974, 0.010280947, 0.006771717, 0.01721716, 0.0069704824, 6.8111275E-4, 0.0054865987, -0.017847724, -0.012062978, 0.004081536, 0.0305961, -0.03078801, -0.017477611, -0.028293166, -0.009643529, -0.04186402, 0.00586014, 0.010657915, 0.019986162, -0.001973942, -0.011802527, 0.00589441, 8.1005297E-4, -0.010486566, 0.0070732916, 0.01204927, 0.028567325, -0.024907308, 6.896802E-4, -0.010767579, 0.010095891, -0.04164469, -0.0016612298, 0.019972453, -0.038683776, -0.007189809, -0.010815556, -0.01132275, 0.009239145, -0.020712681, -9.912547E-4, 0.007203517, 0.015722996, 0.0023423424, 0.020808637, -0.037970964, -0.008108241, 0.0026730462, -0.016449515, -0.015969738, -0.020479647, 0.026374057, -0.01529805, -0.004629853, 0.0023783257, -0.02403, -0.023413144, -0.017971097, -0.0025856583, -0.014667485, 0.009753192, 0.022960782, 0.025853155, 0.004691539, -0.009184313, -0.02026032, 0.042659078, 0.027580354, -0.009485887, -0.029855872, -0.011761404, 0.007861498, 0.015585916, 0.017628398, 7.402282E-4, -0.008588018, -0.045647405, 8.978694E-4, -0.014009504, 0.0034064206, 0.021672238, 0.005490026, -0.02058931, 0.026963498, -0.015092431, -0.0127346665, -0.012419384, 0.012666127, 3.5019478E-4, -0.005490026, -0.03487297, -0.023207525, 0.016326144, -0.0045578866, -0.030513851, 0.0098560015, -0.017395362, -7.826371E-4, -0.0050479453, -0.004126087, 0.015640747, 0.027511815, 0.0053598005, 0.0056065433, -0.005777892, 0.008032847, -0.026922373, 0.008396107, 0.007237787, 0.010205554, -0.031610485, 0.0024400114, 0.0029180755, -0.0051541817, -0.03720332, -0.017559858, -0.033337686, 7.059584E-4, 0.009307684, 0.032186218, -0.010027351, -0.038162876, -0.034790725, -0.023742134, 0.03542129, -0.048306745, 0.021987518, 0.0075462153, -0.0023166402, -0.03720332, -0.004677831, -0.1766678, 0.010486566, 0.0075462153, -0.027498107, 0.00980117, 0.0073680123, 0.0023252075, 0.0053700814, 0.017367946, -0.003526365, 0.020890884, 0.014502989, -0.031418573, -0.015832659, 0.015202094, 0.02231651, -0.0074776756, 0.0413157, 0.02093201, -0.013817593, 0.03827254, -0.007409136, -0.01972571, 0.009753192, 0.012816914, 0.009485887, 0.0026764732, 0.012563317, 0.014187708, 6.1846324E-5, -0.027196532, -0.013721637, 0.002647344, 0.005442048, -0.0028563899, -0.0040301313, -0.009211728, -0.017162329, 0.005990365, 0.0033721507, 0.031117, 0.018629076, 0.022357633, 0.012364552, 0.02383809, 0.013646244, 0.027251365, -0.010740163, 0.00567851, -0.024345282, -0.010089036, -0.034598816, 0.012165788, -0.0065009855, -9.1072056E-4, 0.02774485, -0.015037599, 0.0043419865, 0.0056887907, -0.021535158, -0.028430246, -0.026058774, 0.014941643, -0.016161649, -0.0011420419, -0.01675109, -0.015983446, 0.011864213, -0.053022273, 0.012056124, -0.01913627, -0.0149005195, 0.024674274, 0.014914228, -0.0069156503, -0.012261743, -0.027127992, 0.018108174, -0.011679156, 0.0155310845, -0.017710645, 0.03383117, -0.0012714105, 0.021165043, 0.012535902, -0.016463224, 0.011261065, 0.019081438, 0.0195338, -0.01973942, 0.0050068214, -0.014160291, -0.03065093, -0.019821666, 0.011302188, 0.011829943, 0.004225469, 5.3814332E-5, 0.0122480355, -0.010315217, 1.9405287E-4, -0.021932688, 0.0146949, 0.017244576, 0.034571398, 0.009814878, 0.0023320615, 0.02065785, 0.016531764, 6.965342E-4, -0.004280301, 0.0013073938, 0.017834017, 0.011439268, -0.026195854, 5.654521E-4, -0.026867542, -0.026374057, -0.0041466486, 0.009232291, 0.036792085, -0.0023509099, -0.011631179, -0.002505124, -0.007001325, -0.0065009855, -0.08016397, 0.0077381264, 0.006216546, 0.030760594, -0.035393875, 0.031610485, -0.013625682, 0.022672916, -0.014379618, 0.039286926, 0.02211089, -0.02112392, 0.006106883, 0.0018128736, -3.7568295E-4, -0.008334422, -0.021562573, -0.01013016, -0.008738806, 0.036463093, -0.008265882, -0.0070801456, 0.019122561, -0.008121949, -0.042741325, -0.0025479614, -0.041288283, 0.023947753, 0.016449515, 0.0047360896, 0.030760594, -0.025016971, 0.018725032, -0.03311836, -0.0094036395, -0.014845688, -0.019561216, -0.025976527, 0.007957453, -0.04795034, 0.017354239, 0.0076284627, 0.0065832334, -0.017450195, 0.004832045, -0.0077381264, -0.030349357, 0.035530955, -0.011466683, -0.035969608, -0.006463289, -0.007895768, -0.02508551, -0.004856034, 0.009643529, 0.015613331, 0.019163685, 0.007422844, -0.012837476, -8.978694E-4, 0.019451553, -0.0066689076, -0.02966396, 0.0084715, 0.008498916, 0.013529726, -0.0016072547, -0.006634638, 0.01281006, -0.011274772, -0.033310268, 0.022494713, -0.028676989, -0.0027090297, -0.0015241504, -0.011028029, 0.002421163, -0.0071829553, 0.016860753, -0.023029322, -0.0025685234, -0.023467975, -0.010637353, -0.02290595, 0.01721716, 0.024838768, 0.008862177, 0.014941643, -0.010363195, -0.03616152, 0.011733987, 0.025949111, -0.0010863534, -0.0027981312, -0.0144481575, 0.023358312, 0.021685945, 0.007463968, 0.017326823, 0.005524296, -0.021261, -0.0049280007, -0.07912217, 0.025140343, -0.0111514, -0.0058978368, -0.007573631, -0.0089033, 0.005795027, -0.0033258863, 0.00521244, 0.016216481, -0.013399501, 0.01973942, -0.0048217643, 0.010760725, -0.0053255307, 0.003512657, 0.011480391, 7.059584E-4, 0.0048217643, -0.005479745, -0.004825191, -0.0024057417, 0.03476331, 0.0090952115, -0.013433771, 0.020424815, 0.002232679, 0.0093351, -0.026099898, -0.011912191, 0.0125084855, -0.018546829, -0.009259706, 0.019506384, -0.008485208, -0.020383691, -0.01194646, -4.8577477E-4, 0.012590733, 0.010150722, -0.015503668, -0.027923053, -0.017655814, -0.017669521, 0.0011540364, 0.03032194, -0.008793637, 0.01389984, 0.0059252526, 0.010781286, 0.015517376, 0.02608619, -0.012892308, -0.027594062, 0.008944424, -0.026182145, 0.036983993, 0.008807344, 1.812017E-4, -0.011418706, 0.04679887, -0.004503055, 0.013755907, -0.027402151, 0.0028940865, 0.013940965, 0.009581842, -0.0037833885, 0.014653777, -0.003243639, -0.008492063, -0.013557143, 0.0065181204, 0.019478967, 0.012679835, 0.0024708542, -0.0059183985, 0.008526333, -0.006809414, 0.014544114, 0.029554296, -0.015380297, -0.020150656, 0.016696258, 0.010184992, 0.029307554, 0.005592835, 0.015901199, 1.259416E-4, 0.004893731, -0.020411108, 0.002326921, 0.020109532, -0.0012636997, -3.624034E-4, 0.009054087, -0.0022138306, 0.010260385, 0.009417348, 0.0075050914, 0.0041363677, -0.006829976, -0.0085948715, -0.012289159, -0.03125408, 0.017957387, -0.030870257, -0.04350897, 0.018300086, 0.023138985, 0.022700332, 0.01958863, -0.017285699, 0.010856681, -0.022960782, 0.014352202, -0.009986226, -0.008231612, -0.021658529, 0.045839317, 0.012460508, 0.019890206, 0.018327503, -0.01754615, 0.03920468, 0.0030397335, 0.014749732, -0.038574114, 7.3765795E-4, 0.007244641, -0.016394684, -0.008087679, -0.0043317056, 0.0058087353, -0.010137014, -0.0077381264, -6.693325E-5, 0.040548056, 0.005490026, 0.069636285, 0.03695658, 0.0030054636, 0.0262781, -0.02456461, 0.005037664, 0.025702368, 0.019054022, -0.023728427, -0.016134232, 0.008361837, -0.012110956, 0.0016500921, -0.022892242, -4.63071E-4, -0.01052769, 0.009712068, 0.013180174, -0.0155310845, -0.019369304, 0.00843723, -0.007278911, 0.021096503, -0.008793637, -0.0117476955, -0.002804985, 0.036600173, -0.02290595, -0.009424201, -0.04594898, 0.0055859815, -0.021891564, -4.8877334E-4, -0.006048624, 0.021069087, 0.0026644787, -3.0650073E-4, 0.0098560015, 0.019986162, 0.0024879891, -0.0010041059, 0.0059115444, -0.029499464, 0.0022446734, 0.0053529465, -0.010006788, -0.0056887907, -0.020383691, -0.027059453 ], + "id" : "36e9cbf9-03e3-406e-b5ad-1c5db7b19704", + "metadata" : { + "source" : "movies.csv" + } + }, + "4563d3bd-deb8-4cfb-a045-808767455447" : { + "text" : "Thomas Howell-Jake Keiffer-Hannah Marks-Kari Coleman-Michael Barra-Leif Gantvoort-Andy Pessoa-Kelsey Asbille-Kevin McCorkle-Andy Gladbach-Ring Hendricks-Tellefsen-Barbara Eve Harris-Stan Lee-Danielle Burgio-Tom Waite-Keith Campbell-Steve DeCastro-Jill Flint-Mark Daugherty-Milton Gonz��lez-Skyler Gisondo-Charlie DePew-Jacob Rodier-Vincent Laresca-Damien Lemon-Ty Upshaw-James Chen-Alexander Bedria-Tia Texada-Jay Caputo-John Burke-Terry Bozeman-Jennifer Lyons-Michael Massee-Amber Stevens West-Max Bogner-Ethan Cohn-Miles Elliot-Miranda LaDawn Hill-Amanda MacDonald-Maury Morgan-Michael Papajohn,loss of loved one-experiment-vigilante-superhero-based on comic-teenage girl-violent death-teenage boy-super power-spider bite-masked vigilante-reboot-genetic engineering-social outcast-death of husband-duringcreditsstinger-teenage hero-virus-teenage angst-vigilante justice,/jIfkQNARYyERqRAq1p1c8xgePp4.jpg,/sLWUtbrpiLp23a0XDSiUiltdFPJ.jpg,102382-559-557-558-10138-68721-24428-1771-10195-1726-49538-49026-49521-70160-1865-2080-272-76338-36657-37724-1724\r\n131631,The Hunger Games: Mockingjay - Part 1,Science Fiction-Adventure-Thriller,en,Katniss Everdeen reluctantly becomes the symbol of a mass rebellion against the autocratic Capitol.,161.029,Lionsgate-Color Force,11/19/14,125000000,755356711,123,Released,Fire burns brighter in the darkness,6.804,14974,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Julianne Moore-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Donald Sutherland-Willow Shields-Sam Claflin-Jena Malone-Mahershala Ali-Natalie Dormer-Wes Chatham-Elden Henson-Patina Miller-Evan Ross-Paula Malcomson-Sarita Choudhury-Stef Dawson-Robert Knepper-Caitlin Fowler-Jada Taylor-Nicholas Pryor-Donna Biscoe-Michael Garza-Erika Bierman-Jenique Bennett-Rus Blackwell-Stevie Ray Dallimore-Breann Couch-Jordan Woods-Robinson-Katie Sawhill-Jackson Mizell-Charles Kronmuller-Jennifer Cocker-Marshall Choka-Tyler Lee Allen-Jasmine Ahnie-Brayden Patterson-Emma Elle Roberts-Molly Evensen-William Frasca-Joe Crosson-Gregory Fears-Charles White Jr.-Angel Giuffria-Ryan DeLaney,based on novel or book-resistance-dystopia-post-apocalyptic future-sequel-female protagonist-bow and arrow-game-future war-revolt-class prejudice-human subjugation-based on young adult novel,/4FAA18ZIja70d1Tu5hr5cj2q1sB.jpg,/tFlSDoWQsAZ2qjICKzfP5Yw6zM5.", + "embedding" : [ -0.003020884, -0.022665242, -0.019372236, -0.040948994, -0.017553506, 0.05304631, -0.0030122725, -0.005917764, -0.020708729, -0.03846891, 0.028410776, 0.018986445, 0.009341662, -0.0070613595, 0.0036202383, 0.008886979, 0.02790098, -0.019730471, 0.014453397, -0.03585104, 0.0031293877, 0.015211201, -0.0032792264, 0.011119057, -0.017002376, 0.014577401, 0.036264386, -0.015293871, 0.0013029069, -0.009720564, 0.010003018, -0.015307649, -0.0122970985, -0.026054693, -0.02838322, 0.003527235, 0.0035754591, -0.028355664, 0.032654483, -0.007578044, -1.513456E-4, 0.0026902056, -0.008439185, -0.0127035575, -0.02409818, 0.010836603, 0.01142218, -0.012634667, -0.012489995, 0.026495598, 0.044586457, 0.025889354, -0.017222827, -0.023216372, 0.0036925743, -2.6803024E-4, -0.0014544678, 0.004050809, 0.0057145343, -0.0034393987, 0.02593069, 6.596343E-4, -0.034197647, -0.016354797, -0.0022837468, -0.028024985, -0.02101185, -0.010788379, -0.012531329, -0.002492143, 0.012641556, 0.011987088, 0.019964702, 0.0043539307, 0.0071578072, -0.02464931, -0.01490808, -0.006792683, -0.008728529, 0.002235523, 0.0072887004, -0.017897962, -0.012317766, 0.008756085, 0.0034066753, 0.0019702914, -0.008928314, 0.024483971, -0.01887622, 0.006734126, -0.0086596375, 0.04469668, -0.002466309, -0.0011435958, 5.6189473E-4, 0.0122970985, -0.022982141, 0.036126602, -0.015831223, -0.03323317, -0.008163621, -0.0069270213, 0.0069718007, -0.015156088, -0.007254255, -0.00657912, 0.0021476867, -0.001791174, 0.019069115, 0.012496884, 0.0054596364, -0.011429069, 0.010574816, -0.038634248, -0.019702915, -0.018421536, 0.0031276655, -0.02703295, -0.0019944035, -0.010788379, 0.03480389, 0.02593069, 0.0010161469, -0.033178054, 0.029788602, 0.031441994, -0.00356857, 0.001553499, 0.0022269117, -0.01720905, 0.019399794, -0.014095162, 0.02125986, 0.00713714, -0.01592767, 0.040094744, -0.028052542, -0.0020271267, -0.015293871, -0.01514231, 0.021659428, 0.029540595, -0.010905495, -0.017057488, -0.027887203, -0.007578044, 0.022568794, 0.0053873006, 0.005049733, 0.02806632, 0.009031651, 0.022100333, 0.00958967, 0.019620245, 0.009245214, -0.00448138, -0.00467772, 0.001559527, -0.00491884, -0.027074285, -9.429498E-4, -0.013736927, 0.007006246, -0.012738003, 0.0036374612, 0.018325089, 0.02101185, -0.010657486, 0.006710014, -9.192684E-5, -0.008976538, 0.0344181, -0.04858215, 0.00657912, -0.0027487632, 0.0061037703, 0.0016792257, 0.01252444, -0.028576115, -0.025021324, 0.002125297, 0.010437033, 0.036484838, 0.04240949, -0.019206898, 0.0012848229, 0.015390319, -0.00800517, -0.0012839618, -0.0102923615, 0.0063001104, 0.010815936, 0.020336716, -7.8234694E-4, -0.6309342, -0.014232945, 0.005421746, -0.00871475, 0.0070682485, 0.022734132, 0.0012744892, -0.0035857926, -0.018187307, -0.0031104428, -0.019000223, 0.029761046, 0.009631005, -0.0102854725, -0.023960399, -0.013674925, 0.001754145, -0.027625415, 0.0028538224, 0.003069108, -0.0073300353, 0.021921216, 0.01822864, -0.012407325, 0.0017808403, 0.009720564, -0.0029743824, -0.010058131, 0.0055216383, 0.014963193, -0.004350486, 0.023946619, 0.014728962, 0.006651456, 0.047121655, 4.469324E-4, -0.024525307, 0.046653196, 0.033095386, 0.03766977, -0.045991838, 0.010946829, 0.002504199, 0.015169866, -0.018380202, 0.032103352, 0.007819164, 0.0053011863, -0.010884827, -0.006451671, 0.0010695376, -0.0010833158, -0.01917934, -0.007171585, -0.0010686765, 0.0071233613, 0.0069511333, -0.022651464, 0.018325089, 0.007144029, -0.03268204, 0.018821105, 6.613566E-4, 0.005755869, -0.010774601, 0.021411419, 0.008728529, 0.0021287415, 0.004550271, -0.032792263, 0.010409477, 0.0047052763, -0.022775467, -0.0017360611, 0.020006036, 0.009389886, 0.029953942, -0.006303555, -0.0033171165, 0.01909667, -0.004663942, 0.0010514536, 0.006444782, 0.022183003, 0.03733909, -0.020598501, -0.035244793, 0.0023681389, 0.008060283, 0.0110846115, 0.005414857, 0.014963193, 0.001114317, 0.008604525, -0.009858347, -0.009761899, -0.0067444593, 0.0041300342, 0.02821788, -0.06310444, -0.014046938, -0.015211201, 0.029375255, -0.011745969, 0.021921216, 0.02076384, -0.0057834256, -0.014384505, 0.022389676, -0.0068960204, -0.023009697, -0.0014363838, -0.028121432, -0.014150275, -0.007681381, -0.027528968, 0.020391827, 0.018118415, -0.01649258, -0.0068546855, 0.01331669, 0.02663338, 0.0090729855, -0.013523364, 0.013364914, 0.038992483, -0.015982784, -0.010643708, -8.068895E-4, 0.015693441, 0.015073419, -0.010037464, 0.028093876, -0.023340376, 0.012738003, -0.0078467205, 0.0075435983, -0.016299684, 0.021783432, -0.004167924, -0.00737137, -0.003429065, -0.021411419, -0.021934994, -0.008576968, 0.00872164, -0.039488498, -0.0030846084, 0.0029692154, -0.010747044, -0.0023405822, 0.024938654, 0.0027298182, 0.0055078603, 8.5123826E-4, -0.006165772, -0.019840697, -0.0069545778, 1.8772882E-4, -0.012042201, 0.008790531, 0.018903775, -0.0010437034, -0.016905928, 0.01966158, 0.0051186243, -9.679229E-4, 0.012972234, 0.007571155, -0.014398284, 0.016065454, -0.020942958, 0.002077073, 0.00848741, -0.019840697, 0.031524662, 0.0010919273, 0.041252118, 0.0114979595, -0.00622433, 0.0049291733, -0.017829072, -0.023987954, -0.0045847166, 0.005852317, 0.02814899, 0.004037031, -0.0038820254, 0.006561897, 0.013929823, -0.015913893, -0.01617568, -0.0046673864, 0.0012813783, 0.0055250833, 0.015555658, 0.014894301, -0.01109839, -0.007088916, -0.012820673, 0.04312596, 0.008508077, 0.019620245, -0.015996562, 0.0022734134, -0.042602386, -0.00546997, -0.025751572, -0.004781057, -0.0015810556, 0.02276169, -0.016781922, -0.02068117, 0.0021976328, -0.014756518, 0.020626059, -0.008576968, 0.010416366, -0.019744249, -0.003155222, -7.349842E-4, -0.024663089, 0.016465023, 0.015321427, -0.029595707, 0.0020598501, 0.02323015, -0.0039371382, 0.0016723366, -0.0064998954, -0.02148031, 0.0062449975, -0.0027487632, 0.008611414, -0.007819164, -0.013619812, 0.007350703, -0.010967497, 0.051172465, 0.0021717986, -0.008115397, 0.013826486, 0.013213353, 0.010512814, 0.010657486, -0.013984936, 0.0074402615, 0.012951567, -0.0071233613, 0.040397864, -0.010512814, 0.04337397, 0.0031293877, 0.0057972036, 0.01942735, -0.01687837, 0.007791607, 0.009810123, 0.015886337, 0.019220676, 0.0029519927, -0.03323317, 0.021590536, -0.0049050613, -0.010416366, 0.0012908509, -0.032599367, 0.0115048485, -0.02409818, -0.031359326, -0.016327241, -0.0070131356, 0.011298175, 0.008756085, -0.0071784747, -0.012937788, 0.011773525, 0.0032292802, 0.0023905286, 0.017346833, 0.001401077, -0.019758027, 0.017236605, 0.030394847, -0.017870406, -0.021507867, -0.001985792, -0.013936712, -0.027859647, -0.010512814, 0.004915395, 0.030808194, 2.1248663E-4, 0.0048637264, 0.0016766422, 0.00990657, 0.017250383, -0.020019814, 0.018504206, 0.024663089, -0.016354797, 0.002838322, -0.0038751361, -0.0016990319, 0.018090859, -0.019317124, -0.008673416, -0.008728529, -0.0030122725, -0.01839398, 0.008163621, -0.0038854699, -0.029430367, 0.011222394, -0.014095162, -0.006778905, -0.007164696, 0.017250383, -0.012427992, -0.02156298, -0.017773958, -0.023092367, -0.015472989, 0.002319915, 0.0878502, 0.0508969, 0.017718846, 0.011725301, -0.017773958, 0.006692791, -0.014756518, -0.008177399, -0.0035410135, -0.0048499485, 0.032378916, -0.0044607124, 0.016575249, 0.002307859, 0.002521422, -0.01490808, -0.004116256, -0.0078742765, -0.009706786, 8.8266993E-4, -0.028713899, -0.015969006, 0.024442637, 0.020019814, 0.0063242223, -0.013440695, 0.0151147535, 0.0034135645, -0.0045778276, 0.028713899, -0.0033636182, 0.009107431, 0.0143156145, 0.025103994, 0.0037373535, 0.023436824, 0.02371239, 6.772877E-4, 0.046350073, -4.1485485E-4, -0.0013347692, 0.0051358473, 0.00919699, -0.0058213156, 0.014150275, -0.024911098, -0.016988598, 0.019441128, 0.029044576, -0.030753082, 0.025035102, -2.2863304E-4, -0.01545921, -0.023822615, 0.008094729, -0.00919699, -0.010402588, -0.007095805, -0.018104637, 0.01387471, -0.0040473645, -0.028576115, 0.009851458, -0.010891716, 9.679229E-4, -0.02204522, 1.821314E-4, -0.004243705, -0.021438977, -0.01332358, -0.002447364, -0.02283058, 4.5296038E-4, -0.009575892, 0.00527363, 0.0071164723, 0.021838546, -0.014356949, 0.013358025, 0.0056663104, -0.03598882, -0.023133703, 0.023657275, -0.0114979595, 0.009679229, 0.011318842, -0.018201085, 0.012042201, 0.010850381, 0.023519494, -0.016671697, -0.005280519, -0.04240949, -0.011277508, 0.025145328, 0.012483105, 0.014770297, 0.012166206, -1.3659855E-4, -0.017029932, 0.009107431, -0.023533272, -0.015431654, -0.01308246, -0.027363628, -0.0076607135, -0.0061795507, 0.01213176, -0.04224415, -0.0114841815, -0.023891507, -0.0138953775, 0.015941449, 0.0012383213, 0.0102648055, 2.8094737E-4, 0.0138884885, 0.013599144, -0.013165129, -9.37783E-4, -0.010044353, -0.017319275, 0.022968363, 0.02956815, -0.014102051, 0.026178697, 0.0016878371, -0.019923367, -0.0030139948, 0.020667393, -0.019454906, 0.020446941, -0.015886337, -0.015362762, -0.008508077, -0.016713032, -0.0010316473, 0.009224546, 0.004068032, 0.029044576, -0.023905285, -3.892359E-4, 0.008411629, 0.008335848, -0.0027005393, -0.02648182, -0.0028348775, -0.014618736, -2.4219601E-4, 0.013199575, -0.0031018313, 0.00519096, -0.014728962, 0.0038096895, -0.015376541, -0.041059222, -0.01879355, -0.0043332633, 0.02973349, 0.01023036, 0.03036729, -0.011298175, 0.040618315, -0.011229283, 0.0011677077, 0.024194628, -0.008521855, -0.0061451048, -0.02139764, 0.003671907, -0.0025317557, 0.020653615, 0.0022510237, -0.0017274496, 0.010402588, 0.024056846, -0.0020942958, -9.4983896E-4, 0.0041472567, -0.021990106, -0.019124229, 0.026344037, -0.022100333, 1.4381061E-4, -0.026123585, -0.0114841815, 0.034555882, -0.007826053, -0.005573307, -0.009665451, 0.022334563, -0.008115397, 0.020557167, -0.017622396, 0.021066964, -0.011249951, 5.365987E-5, -0.012441771, -0.012441771, 8.947259E-4, -0.0054355245, 0.012855118, -0.006089992, -0.019303346, -0.016244572, 0.030449959, -0.022017663, -0.0020701839, 0.023340376, -0.02101185, -0.0079225, -0.023478158, 0.00237675, -0.012207541, -0.009148766, -0.009823901, -0.016451245, 0.0053459657, -0.035437692, -0.036126602, 0.02219678, -0.016850814, 0.03703597, 0.020874066, 0.040535647, 0.0066893464, 0.0131169055, -0.008501188, 0.011683966, 0.0053252983, 0.0052529625, 0.019854475, 0.017181493, -0.02609603, -0.011663299, 0.0017308942, -0.0012400436, -0.039488498, -0.038634248, 0.017085046, 0.031359326, 0.012600221, -0.031359326, -6.583426E-4, -0.042712614, 0.006272554, -0.006710014, -0.007901833, 0.003203446, -0.025586233, -0.014866745, 0.006799572, 0.0059522092, 0.0039991406, 0.01879355, -0.024332412, 0.01117417, -0.027019173, 0.01125684, -0.015831223, -0.008032727, 0.031745117, -0.015982784, 0.017374389, 0.011408401, -3.435954E-4, -0.0074884854, 0.0040576984, -0.004977397, 0.03408742, -0.011663299, 0.026426706, -0.0032000013, -0.006138216, 0.010161469, 0.02029538, -0.008418518, -0.014074495, -0.020557167, -0.006272554, 0.023560828, -0.010182136, 0.0011547906, 0.009024762, -0.015280093, -0.010774601, 0.0075229313, -0.02125986, 2.5683542E-4, -0.04662564, 8.064589E-4, 0.004116256, 0.002831433, 0.0010264806, -4.2798728E-4, -0.013137573, 0.0029468257, 0.010946829, -0.016161902, -0.0071578072, -0.027528968, -0.014536067, -0.030890863, -0.015872559, -0.01687837, -0.0053873006, 0.021686984, -0.01625835, -0.0066549005, 0.0036202383, 0.0031414437, -0.012021534, -3.483317E-4, -0.010313029, 0.0068787974, 0.008377183, -0.0016111955, -0.005280519, 7.268033E-4, 0.036512394, -0.030174393, -0.004343597, 0.004374598, 0.013867821, 0.024359968, -0.02179721, 0.017346833, -0.008618303, -0.024690645, -0.0058075376, 0.020006036, 0.028176546, 0.010437033, 0.011559962, -0.01649258, -0.0020133485, -0.01173219, 0.029953942, -0.0033601737, 0.013020458, 0.026288925, 0.010388809, 0.033426065, 0.030146837, -0.017484615, -0.021163411, 0.015307649, 0.0017894518, -0.028796569, 0.0070269136, 0.010209693, 0.0015931115, 0.0034893448, -0.023505716, -0.030697968, -0.010120134, -0.014046938, -0.028796569, -0.012200651, 0.021135854, 0.021273637, 0.012124871, -0.0019358458, 0.014784075, 0.012400436, -0.0048017246, -0.015390319, -0.008804309, 0.025379559, 0.016657919, 0.023505716, 0.020116262, -0.02234834, -0.011091501, 0.00935544, 0.011194838, 0.0060452125, 0.015913893, 0.0035306797, -0.0023595274, -0.01085727, -0.008597636, -0.016547693, -0.010140801, 0.022114111, -0.016754366, -0.0021390752, 0.009961683, 0.019689137, 0.015762331, 0.015982784, 0.032792263, -0.0073231463, 0.0035926818, -0.009631005, -0.015969006, 0.0042230375, -0.02631648, 0.022293229, 0.0018376757, 0.0010428422, 0.04359442, 0.01926201, -0.008783642, 0.016768144, -0.007426483, -0.0030312177, -0.0039199158, 0.0068856864, -0.006451671, 0.036650177, -0.024552863, 0.0067203473, -0.03607149, 0.0039405827, -0.009327884, -0.006668679, 0.012173095, 0.035327464, 0.008349627, -0.052384954, 0.013275355, -0.0034738444, 0.008328959, -0.0035720144, -0.00713714, -0.016285906, -0.013034236, -0.0073575918, -0.0041128113, -0.016451245, -0.014797853, -1.7212064E-4, -0.01275867, -0.0014053828, 0.011863084, 0.20380805, -0.004050809, 0.0024886986, 0.052688073, -4.0129188E-4, 0.01672681, 0.0114910705, 0.011628853, -0.009665451, 0.005769647, -0.0013011846, 0.0016740588, -0.008053394, -9.283104E-4, -0.0010273417, -0.01981314, -0.029457925, -0.016437467, -0.0047328332, -0.026936503, -0.007336925, 0.016947262, 0.0054906374, -0.02306481, 0.012910232, -0.004588161, -0.00685813, 0.009293438, 0.013289134, 0.0020546834, -0.017098824, -0.00935544, 0.014136497, -0.008122286, -0.02386395, -0.002108074, -0.010120134, 0.012613999, 0.021838546, -6.725514E-4, -7.8105525E-4, -0.0029519927, -0.012207541, -0.007144029, 0.0049980646, 0.013847154, -0.031772673, 0.0047362777, -0.016106788, 0.0036409057, -0.032792263, 0.0026626491, 0.02481465, 0.020157598, 0.0040818104, 0.0060279896, -3.0183006E-4, 5.214211E-4, -0.006975245, -0.0014036604, 0.015073419, 0.037697326, -0.015652105, 0.034555882, 0.0072749224, 0.024566641, -0.030477516, -0.0019513464, 0.0015982784, -0.02069495, -0.02918236, -0.02838322, -0.0016645862, 0.013929823, -0.007791607, -0.016547693, 0.006982134, -1.2303557E-4, 0.0051565147, 0.02442886, -0.024194628, -0.023188815, 0.01909667, -3.0376762E-4, -0.029320141, -0.02553112, 0.031772673, -0.020033592, -0.01736061, -0.020543389, -0.011745969, -9.520994E-5, -0.014060716, -0.010561038, -0.002406029, -0.002631648, 0.018449092, 0.013296023, -0.008432296, -0.013378693, -0.027611637, 0.022155445, 0.009451888, -0.008156731, -0.019234454, -0.002388806, -0.0067823497, 0.009417443, 0.030670412, -0.012062868, -0.020887846, -0.021053184, 0.007936279, -0.0076056006, 0.0015681385, 0.02774942, -0.0048878384, -0.012572664, 0.02981616, -0.019964702, 0.0073231463, -0.02442886, 0.02609603, 0.014494732, -0.014205388, -0.04304329, -0.034776334, -0.008604525, -0.0058867624, -0.027859647, 0.017153936, -0.02132875, 0.018118415, -0.012834451, 0.013619812, 0.0030897753, 0.02306481, -0.0174295, 9.946183E-4, 1.3670619E-4, -0.007963835, -0.012965345, 0.02759786, 0.0076124896, 0.009389886, -0.029761046, 0.004422822, -0.009693007, -0.011442847, -0.04957419, -0.033591405, -0.0017041988, -0.0019255121, 0.0049567297, 0.032296248, 0.0044124885, -0.017829072, -0.0451927, -0.0043401527, 0.04629496, -0.049822196, 0.03169, 0.025544899, -0.008528744, -0.02434619, -0.0046811644, -0.17713334, 0.01855932, 0.005535417, -0.028190324, 0.004960174, 0.0030846084, 0.045716275, -0.0047672787, -0.0044297115, -0.011752858, 0.029843716, -0.003429065, -0.03171756, 0.010347475, 0.010044353, 0.016575249, -0.005494082, 0.024952432, 0.02868634, 2.1614648E-4, 0.039598726, 0.0035892373, -9.507001E-4, 0.014549845, 0.0010342308, 0.008129175, 0.03361896, 0.009203879, 0.009927237, -0.0070200246, -0.04185836, -0.00303294, 0.014067606, 0.020970514, -0.02679872, 0.0036960188, -0.017897962, -0.012538219, 3.0161478E-4, 0.0072335876, 0.052357394, -0.0025558677, -0.00202196, 0.013867821, 0.027212068, 0.017277941, 0.021755876, -0.0012564053, 0.011394623, -0.017636176, -0.0069718007, -0.03747687, 0.02401551, -0.006000433, 0.003342951, 0.017787736, 0.010567927, -0.0057524242, -0.002307859, -0.008025838, -0.010140801, -0.0015603881, -2.3250817E-4, -0.008136064, -0.013991825, -0.018256197, -0.023133703, -0.007888055, -0.03640217, 0.006517118, -0.027625415, 0.008852533, 0.023795059, 0.014660071, 0.018187307, -0.03284738, -0.015059641, 0.009444999, 0.001815286, 0.010788379, -0.0044744904, 0.03805556, -0.017195271, 0.0058213156, -0.003503123, -0.01712638, -0.0039061373, 0.0010092577, -0.014770297, -0.009968572, 0.005456192, -0.02568268, -0.050373327, 0.0063001104, 0.0016275572, 0.007247366, -0.010705709, 0.0072818114, 0.02109452, -0.016616585, 0.0130962385, -0.024594197, -0.01640991, 0.019317124, 0.020267824, -0.004960174, 0.008012059, 0.014852966, 0.0151147535, 0.0045399372, -0.013227131, -0.016134344, 0.023684833, -0.0013416583, -0.005659421, 0.029402811, -0.012648445, -0.027129399, 0.005328743, 0.011711523, 0.07346569, -0.003854469, 0.009899681, -0.0022751356, -0.0018686767, -0.009885903, -0.086307034, -0.005177182, 0.012944677, 0.04050809, -0.037394203, 0.03830357, -0.0075918227, 0.019165562, -0.030808194, 0.03169, -0.012827562, -0.031441994, 0.0032499477, -0.010485257, 0.0026902056, 0.010333696, -0.011635742, -0.01942735, 0.0021063518, 0.03273715, -0.011745969, -0.007412705, -0.009817012, -0.02084651, -0.0062449975, 0.01467385, -0.026385373, 0.021618092, 0.01093994, 0.008694083, -0.006799572, -0.017305497, 0.010850381, -0.035768367, -0.016919706, -0.026509376, -0.012868897, -0.024029288, 0.005562973, -0.04345664, -0.002504199, 0.01459118, -0.002759097, -0.018173527, -0.013289134, 0.0033963416, -0.03339851, 0.02109452, 0.0011599575, -0.015293871, 0.0015087198, -0.024139516, -0.03400475, -0.013826486, 0.008549412, 0.0078053856, 0.030229507, -5.0827525E-6, -0.015059641, -0.02101185, -0.0045227148, 0.012655334, -0.010567927, 0.010602373, 0.011208616, 0.009458777, -0.0063517787, -0.014646293, 0.016740588, -0.021783432, -0.024552863, 0.027818311, -0.036264386, -0.004037031, -0.01917934, 0.004002585, -0.02609603, -0.009403664, 0.020047372, -0.039929405, 0.0027969873, -0.03394964, 0.0022940806, -0.01642369, 0.032544255, 0.013385582, 0.019565132, 0.011449736, -2.6652325E-4, -0.03995696, -0.017953075, 0.025806684, 0.0016697531, 0.0024508084, -0.0050876234, 0.013426917, 0.02639915, 4.1227144E-5, -0.0016146401, -9.01615E-4, -0.0055423058, 0.0020477942, -0.07065493, 0.03962628, -0.034059864, -0.008370294, -0.016589027, -0.014453397, -0.020708729, 0.0037993558, -0.017264163, 0.02821788, 0.0127104465, 0.016547693, -0.012055979, -0.0013046291, -0.007729605, 0.0037166863, -0.011243062, -3.4338012E-4, 0.015376541, 0.012483105, -0.00896276, 0.02464931, 0.022995919, 0.0077020484, -0.0078811655, 0.018504206, -0.001541443, 0.009169433, -0.021232301, -0.010519703, 0.045137588, -0.017773958, 0.0061692167, -0.003551347, -0.0024645866, -0.024566641, -0.009369218, 0.013475141, 0.022141667, 0.0019616801, -0.008804309, -0.020322938, -0.004894728, -0.023188815, 0.0020598501, 0.014260502, -0.0151285315, 0.015293871, 0.0115048485, 0.00983768, 0.03400475, 0.015679663, 0.0019479018, -0.015293871, 0.006792683, -0.0067892387, 0.051613368, 0.0020856843, -0.010388809, -0.032764707, 0.026936503, -0.004853393, 0.029595707, -0.02981616, 0.020874066, -0.00420237, 0.014232945, -0.0063483343, -0.0039578057, -0.040893883, -0.019317124, -0.004653608, 0.006913243, 0.04670831, -0.0010075354, 0.02219678, 0.010526592, 0.02267902, 8.843922E-4, 0.009624116, 0.008039616, 0.0015578048, -0.02766675, 0.024415081, 0.00129774, 1.637245E-4, -0.015018306, 0.023698611, 0.00666179, -0.006289777, 0.003892359, 0.016602807, 0.008907647, -0.0013674925, 0.0031156095, 0.014053827, -0.030587742, -0.011711523, 0.016754366, 0.018931333, -0.01442584, -0.010519703, -0.008570079, -0.01959269, -0.033866968, -0.011780414, -0.014136497, -0.016299684, 0.0055595287, 0.020185154, 0.03284738, 0.010747044, -0.016823258, 0.0073920377, -0.03656751, 0.0139160445, -0.0035961263, 8.628637E-4, -0.0079225, 0.049904864, 0.023808837, 1.8988167E-4, 0.023271484, -0.019014, 0.05621531, 0.0041059223, 0.019578911, -0.020998072, 0.0010669542, 0.005414857, 0.013640479, 0.0024990323, -0.024277298, 0.012917121, -0.00432293, 0.010402588, 0.006627344, 0.02187988, -0.024635533, 0.07710315, 0.024194628, -0.008432296, -0.0012719058, -0.009520779, 0.020226488, 0.009107431, 0.020502053, -0.009727453, -0.011849306, -0.010760822, -0.023533272, 0.007674492, -0.04814125, -0.002888268, 7.608184E-4, 0.014990749, 0.008866312, 0.0011324009, -0.0010040909, -0.009782566, 0.0019909588, 0.031993125, 0.0026815943, -0.0052288505, -0.0026626491, 0.038413797, -0.026729828, 0.002187299, -0.020019814, 0.004805169, -0.020598501, -0.008983427, -0.006620455, 0.035878595, -0.012510662, 0.0051978496, 0.018683324, 0.01720905, 0.0028159323, -0.007894944, -0.030477516, -0.030863307, -0.015045863, 0.015748553, -0.0061244373, -0.00657912, -0.025944468, -0.007467818 ], + "id" : "4563d3bd-deb8-4cfb-a045-808767455447", + "metadata" : { + "source" : "movies.csv" + } + }, + "27775fa0-f1ed-424d-9ff5-e1629a13dff9" : { + "text" : ",928123-614017-51533-215524-284650-356898-902478-142418-449508-185837-143220-43981-394974-33320-856437-279067-612845-344556-568160-11878-391\r\n674,Harry Potter and the Goblet of Fire,Adventure-Fantasy-Family,en,When Harry Potter's name emerges from the Goblet of Fire he becomes a competitor in a grueling battle for glory among three wizarding schools���the Triwizard Tournament. But since Harry never submitted his name for the Tournament who did? Now Harry must confront a deadly dragon fierce water demons and an enchanted maze only to find himself in the cruel grasp of He Who Must Not Be Named.,220.17,Warner Bros. Pictures-Heyday Films-Patalex IV Productions Limited,11/16/05,150000000,895921036,157,Released,Dark And Difficult Times Lie Ahead.,7.817,18491,Daniel Radcliffe-Rupert Grint-Emma Watson-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Brendan Gleeson-Jason Isaacs-Gary Oldman-Miranda Richardson-Alan Rickman-Maggie Smith-Timothy Spall-Frances de la Tour-Predrag Bjelac-David Bradley-Warwick Davis-Tom Felton-Robert Hardy-Shirley Henderson-Roger Lloyd Pack-Mark Williams-Stanislav Yanevski-Robert Pattinson-Cl��mence Po��sy-Eric Sykes-David Tennant-James Phelps-Oliver Phelps-Bonnie Wright-Jeff Rawle-Philip Rham-Olivia Higginbottom-Ashley Artus-Alex Palmer-Paschal Friel-Richard Rosson-Sheila Allen-Su Elliot-Anne Lacy-Flip Webster-David Sterne-Christopher Whittingham-Liam McKenna-Campbell Graham-Margery Mason-Katie Leung-Matthew Lewis-William Melling-Devon Murray-Afshan Azad-Shefali Chowdhury-Angelica Mandy-Tolga Safer-Alfred Enoch-Louis Doyle-Jamie Waylett-Josh Herdman-Charlotte Skeoch-Robert Wilfort-Tiana Benjamin-Henry Lloyd-Hughes-Jarvis Cocker-Jonny Greenwood-Philip Selway-Steve Mackey-Jason Buckle-Steve Claydon-Alan Watts-Adrian Rawlins-Geraldine Somerville-Oliver Miceli-Jesy Nelson,witch-based on novel or book-world cup-maze-magic-dying and death-school of witchcraft-chosen one-black magic-mermaid-boarding school-vision-school-tournament-dragon-wizard-teenage hero-based on young adult novel,/fECBtHlr0RB3foNHDiCBXeg9Bv9.jpg,/8f9dnOtpArDrOMEylpSN9Sc6fuz.jpg,673-672-671-675-767-12444-12445-58-22-285-1865-12-585-121-70160-425-12155-8587-557-808-118\r\n559,Spider-Man 3,Fantasy-Action-Adventure,en,The seemingly invincible Spider-Man goes up against an all-new crop of villains���including the shape-shifting Sandman. While Spider-Man��s superpowers are altered by an alien organism his alter ego Peter Parker deals with nemesis Eddie Brock and also gets caught up in a love triangle.,76.157,Laura Ziskin Productions-Marvel Studios,5/1/07,258000000,890871626,139,Released,The battle within.,6.", + "embedding" : [ 0.0046748105, -0.041571938, -0.023672156, -0.030758899, -0.010616562, 0.029078677, -0.004729011, -0.008163981, -0.0308673, -0.032683022, 0.04170744, 0.02463422, 0.01853664, 0.0016886906, 0.012398411, 0.023252102, 0.012520363, -0.02615184, 0.008651787, -0.03170741, -0.012012231, -0.006023053, -0.024105763, 0.0069986656, -0.0100677805, 0.011463448, 0.016680267, -0.012229034, -0.007073192, -0.005474271, 0.010142307, -0.011253421, -0.023035299, -0.0117751025, -0.021368627, -2.3966873E-4, 0.005548797, -0.026680296, 0.020487865, -0.011314397, 0.03542016, 0.018130135, -0.014471588, 0.007554223, -0.029349681, 0.009823877, 0.0094986735, -0.013807629, -0.012405186, 0.031138303, 0.00463416, 0.038238596, -0.01237131, -0.026165389, -0.012513587, -0.0050542154, 0.009478348, 0.0061246795, 0.0111721195, -0.0017047814, 0.00958675, -0.012554238, -0.029539382, -0.02235779, -0.018929595, -0.004837413, -0.00346207, -0.033604436, -0.008848265, -0.007330645, 0.03788629, 0.027384905, 0.019417401, -0.013435, 0.0063550323, -0.023021748, -0.032113917, -0.016829317, -0.0035738589, 0.0033096303, 0.017479727, -0.019458052, -0.014810342, -0.0037398485, 0.024132863, 0.008624687, 0.007012216, 0.0100339055, -0.024552919, 0.01775073, 0.0010577606, 0.026422843, -0.014024432, 0.010521712, -0.0011034925, 0.003580634, -0.022181638, 0.036016367, -0.015067795, -0.031951316, 0.003960039, -0.015000044, -0.022547493, -0.013008169, -9.6460315E-4, -0.010569137, 0.0044478453, -0.012337435, 0.008021704, 0.015921457, -0.009302195, 8.617065E-4, 0.028861875, -0.025772434, -0.0040244022, 0.0029471633, 0.007791351, -0.029593583, -0.01466129, -0.023563756, 0.021802234, 0.029891688, 0.02158543, -0.022493292, 0.043414764, 0.026734497, -0.025840186, -0.004996627, 0.011375372, -0.005853676, 0.030677598, 0.0035704712, 0.032981128, 0.0019004121, -0.036531273, 0.06677526, -0.027303604, -0.012947192, -0.032737225, -0.027357806, 0.028780574, 0.022696543, -0.013035269, -0.016002757, -0.016341511, -0.013509525, 0.014878093, -0.008184306, 0.010907891, -0.007953953, 0.019647755, 0.0096545005, 0.0133807985, 0.026463494, 0.023021748, -0.0030504833, 0.0056267106, -0.003370606, -0.0133807985, -0.024376767, -0.0052405302, 0.003267286, 0.004539309, -0.020311713, -0.00540652, 0.022019036, 0.028482469, -0.007913303, 0.0012110469, 0.009220894, -0.013163996, 0.00888214, -0.032086816, 0.005040665, -0.0044952706, 0.025108475, 0.005467496, -0.012791365, -0.024810372, -0.018712793, -0.015230398, 0.0035433709, 0.026964849, 0.03772369, -0.016829317, 0.006863164, 0.008374008, -0.012750715, 0.0037974368, -0.010643663, 8.333358E-4, 0.023848308, -0.011117919, -0.0024136251, -0.64347076, -0.0192548, 8.1004645E-4, -0.025135577, 0.007574548, 0.0049729147, 0.018319838, 0.0076897247, -0.025826635, -0.029566484, -0.022561042, 0.017886233, 0.01699192, -0.0077845757, -0.022506842, -0.0018987184, 0.0060399906, -0.0033096303, 0.0192819, 0.0067988005, -0.018861845, 0.016016308, 0.006802188, -0.009376721, 0.00815043, 0.009349621, -0.00521343, -0.016409263, -4.126452E-4, -0.009071843, -0.008319808, 7.6981937E-4, 0.017981082, 0.014823892, 0.027344255, 0.005667361, -0.02478327, 0.035907965, 0.028292768, 0.040271122, -0.028997377, -0.00964095, 3.6077344E-4, 0.01191738, -0.011497324, 0.024566468, 0.007662624, -0.005132129, -0.005687686, -0.011626051, 0.0024339503, -0.009952604, -0.008421434, -0.011294072, -0.0035975717, 0.009729026, 0.008306257, -0.03444455, 0.024322566, -0.01387538, -0.010670763, 0.033577334, 0.0067276624, 0.01275749, -0.0012491568, 0.012201933, -0.008834714, -0.0046544853, 0.0025355767, 0.0055860598, 0.010189733, 0.007174818, -0.006876714, 0.007554223, 0.0066802367, 0.003705973, 0.035935067, 0.0036822602, 0.0070867417, 0.017547477, 0.019715505, 0.0022154537, -0.01626021, -0.0013313048, 0.029430982, -0.027344255, -0.027317153, 0.019647755, 0.008441759, 0.0017615228, 0.010772389, 0.005155842, 0.008265607, 0.023265652, -0.0023865246, 8.299483E-4, -0.025785984, 0.005748662, 0.01846889, -0.055772524, -0.003787274, -0.023062399, -0.0012364535, -0.02084017, 0.01765588, 0.030623397, -0.012899768, -0.0012118939, 0.03306243, -0.020623367, 0.002598246, 0.006341482, -0.005308281, -0.017384876, 0.013766979, -0.03013559, 0.035935067, 0.01311657, 0.0071341675, -0.015121996, 0.012554238, 0.009458022, 0.0075406726, -0.011653151, 0.0020393014, 0.016029857, -0.016802218, -0.0033367306, -0.0020545453, 0.0019664692, 0.031111203, 3.8448622E-4, 0.018184336, -0.013292722, 0.00441397, 0.0057893125, 0.02921418, 0.009579974, 0.01231711, -0.0017140972, -0.009478348, -0.0023645055, -0.024281915, 0.0030538708, 0.003045402, -0.013421449, -0.03173451, 0.0071138423, 0.00888214, -0.0018326612, -0.02231714, 0.008746638, -0.002257798, -0.007506797, 0.0060128905, -0.0134892, -0.019891659, -0.011409248, 0.008529835, -0.0047188485, -0.005352319, 0.024552919, 0.0065718354, -0.017886233, 0.025907936, -0.012960743, -0.02082662, 0.006595548, 0.0012830322, -0.022140987, 0.026720947, -0.012527137, -0.009369946, 0.032249417, -0.027533958, 0.032655925, -0.008712763, 0.024241265, -0.0016378774, -0.0046917484, 0.0074390466, 0.0023238552, -0.013360473, 9.0278045E-4, 0.020474315, 0.015948556, 0.00692414, -0.012147732, -0.007791351, 0.0058570635, -0.014566439, -0.0050474405, 0.009939054, 0.0036958104, -2.0420538E-4, 0.028780574, 0.0015735142, 5.877389E-4, -0.002562677, 0.033739936, 0.054661408, 0.008719538, 0.0118970545, -0.013421449, 0.015487851, -0.035718262, -0.002340793, -0.021260226, -0.0044376827, -0.014200584, 0.015027145, -0.009078618, -0.023577306, 0.002867556, -0.01231711, 0.034552947, -0.012425511, 0.0011974968, -0.024864573, 0.008922791, 0.0096545005, -0.01466129, 0.029159978, 0.009756126, -0.024417417, 0.004820475, 0.007120617, -0.0073780706, -0.0015252416, -0.017601678, 0.0059248144, -0.0034095629, 0.001292348, -0.012486487, -0.0024491942, 0.010724964, 0.038699303, -0.01697837, 0.057994753, -0.013956681, -0.013570501, 0.018672142, 0.02159898, -0.008685662, -0.005487821, -0.032791425, 0.0045122085, 0.007025766, -0.002295061, 0.047398515, -0.020650467, 0.021056972, -0.0074254964, -0.0036009592, 0.029810386, -0.019119298, 0.004789987, 0.010752064, 0.011619275, 0.009790002, 0.0062127556, -0.024525817, 0.02235779, 7.7384204E-5, 0.024376767, 0.008353683, -0.024620669, 0.019390302, -0.0029183691, -0.04785922, -0.023496004, -0.023658607, 0.0030741962, 0.00886859, -0.009397047, -0.014417387, -0.01199868, 0.0029979763, 0.012425511, 0.031355105, -0.0062330808, -0.027642358, 0.0070596416, 0.01781848, -0.0045122085, -0.03401094, -0.0014972944, -0.0044749454, -0.017452626, -0.0113618225, -0.007832002, 0.016504114, 0.007235794, 0.011531199, -0.022669444, -0.009295421, 0.009593524, -0.024281915, 6.876714E-4, 0.033197932, -0.019065097, 0.018970245, -0.022723645, 0.0051795547, 0.030487895, -0.0054539456, 0.004627385, -0.0027930299, -0.0056267106, 0.0077507007, 0.0012847261, 0.010833366, -0.043875467, 0.015555602, -0.009634175, -0.006917365, -0.006737825, -9.770947E-5, 0.0049153264, 0.0035636963, -0.013855055, -0.02856377, -0.022574592, 0.0059959525, 0.062114004, 0.035122056, 0.0018089485, -0.005687686, 0.008536611, 0.017872682, -0.014105733, -0.009471573, 0.0026541406, -0.00815043, 0.014905193, 7.2832196E-4, 0.013563726, 0.03490525, 0.0093089705, -0.0020613205, -0.009952604, -0.0060433783, -0.011388923, -0.027154552, -0.033658635, -0.011856404, 0.015501401, 0.018252086, -9.273401E-4, -0.010697864, 0.0042649177, 0.004173454, -0.0030216891, 0.018048834, -0.00888214, -0.0057757623, 0.008577261, -0.0020833395, -0.001552342, -0.0026914037, 0.029078677, 0.0074525964, 0.01857729, 0.008042029, -0.00810978, 0.011097594, 0.0051287413, -0.008042029, 0.01932255, -0.01781848, 0.0053861947, 0.016544765, 0.037750788, -0.020487865, 0.010006805, 0.0043191183, -0.01466129, -0.00693769, 0.004217492, 0.0054505584, -0.011341497, -0.017899781, -0.013123346, -0.0036585475, 0.0036449973, -0.03173451, 0.010677539, 0.0072967694, -0.019688405, -0.011856404, -0.008387559, -0.020501416, -0.0048035374, 0.024620669, 3.7411187E-4, -0.033279233, -0.009071843, -0.0036212844, 0.014905193, 8.3884055E-4, 0.02243909, -0.009031192, 0.004901776, 0.0063990704, -0.012500037, -0.04552859, 0.009288645, -0.029132878, -0.005785925, 0.012865892, 0.0047594993, 0.0307318, -0.016355062, 0.005040665, 0.0059451396, -0.00882794, -0.013753428, -0.0098780785, 0.02929548, 0.0013033575, 0.0064668213, 0.017439077, 0.011842853, 0.0091192685, -0.002865862, -0.018360488, -0.008861815, -0.023617957, -0.0046070595, 2.8741193E-5, 0.01775073, 0.010088106, -0.003729686, -0.026856449, -0.01460709, -0.017899781, 0.03468845, -0.0012042719, 0.015528501, 0.003617897, 0.009871303, 0.019065097, 0.007079967, -9.9985475E-5, -0.026829347, -0.012750715, 0.022872696, 0.020555617, -0.009749351, 0.020596268, -0.007703275, -0.021720931, -0.014539339, 0.011456674, 0.00249662, 0.009898404, -0.0069986656, -0.002845537, -0.010474286, -0.03238492, 0.013157221, -0.006426171, -0.008231732, 0.02634154, -0.018048834, -0.010630113, 1.1739957E-4, 0.0032080042, -0.0044918833, -0.027357806, 0.0015658921, -0.00845531, 0.019349651, 0.027533958, 0.008753413, -0.0022323914, -0.027601708, 0.0044512325, -0.016056959, -0.031084104, -0.03159901, -0.003260511, 0.0132249715, 0.0064227832, 0.04246625, -0.0030047514, 0.031084104, 0.006737825, 0.009430923, 0.019851007, -0.031436406, -0.00599934, -0.02619249, -8.3079515E-4, 0.0134892, 0.028645072, 0.010061005, -0.01271684, 0.018292736, 0.018279187, 0.008353683, 0.028319867, -0.0042750803, -0.029891688, -0.019593554, 0.023970261, -0.02016266, 0.0046985233, -0.021720931, -0.03620607, 0.020338813, -0.0115515245, -0.008272382, -0.0192548, 0.022791395, -0.007032541, 0.0063076066, -0.022804946, 0.04314376, -0.023590855, 0.0066429735, -0.022046136, -0.027994663, -0.011565075, 0.006697174, 0.0040616654, -0.018238537, -0.022845596, 0.013014943, 0.019417401, -0.008787289, -0.017452626, 0.024905223, -0.01997296, -0.016002757, -0.032899827, 0.008604362, -0.020935021, -0.006944465, -0.0018258862, -0.010142307, -4.2344298E-4, -0.038455397, -0.035013653, 0.026653195, -0.021084074, 0.05078606, 0.020406565, 0.044525877, 0.014200584, 0.005331994, -0.01929545, 0.011483774, -0.0030725023, -0.02231714, 0.02467487, 0.01769653, -0.017682979, -0.004078603, -0.012147732, -0.015975658, -0.014146384, -0.031951316, 0.033550236, 0.020894371, 0.012181608, -0.01775073, 0.001908881, -0.04306246, 0.023645056, -0.00768295, 0.015135546, 0.0016226335, -0.04146354, -0.003512883, 0.0052303676, -0.0058062505, 0.013868605, 0.012960743, -0.023780558, 0.027533958, -0.02000006, 0.0063753575, -0.011314397, -0.01705967, 0.033577334, -0.02001361, 0.004566409, 0.008705988, 0.014905193, -0.002957326, 0.010907891, -0.0037229108, 0.028374068, -0.0036822602, 0.018035283, 0.008746638, 0.0048475754, -0.009491898, 0.020596268, -0.018848294, -0.013672127, -0.019729055, -3.9380198E-4, 0.036531273, 0.012296785, -0.008434984, -0.0083943335, -0.019132849, -0.0065311845, -0.0038685752, 9.180244E-4, 0.00251017, -0.041490637, -0.0027049538, -0.0066158734, -5.703777E-4, 0.012554238, -0.004366544, -5.221052E-4, 0.0054979837, 0.032168116, -0.010697864, -0.008414659, -0.010569137, -0.014539339, -0.030569196, -0.015677553, -0.009098943, -0.029512282, 0.014566439, -0.018035283, 0.012696515, -4.2810087E-4, -0.0016675185, -0.0038922878, 0.012865892, -0.016598966, 0.013746653, 0.024810372, -0.0078252265, -0.009898404, 0.009959379, 0.026775148, 0.010135531, -0.0063313195, 0.014308985, -0.0038008243, 0.0231437, -0.0061314544, 0.006741212, -0.010054231, -0.04224945, -0.015271048, 0.008258832, 0.015989207, 0.0027540731, 0.004776437, -0.021477029, 0.0040515023, -0.0013922806, 0.0061450046, -0.0036077343, -3.58074E-5, 0.013455325, 0.009397047, 0.025758885, 0.030379495, -0.022642344, -0.014092183, -0.0013905867, -0.022953998, -0.02535238, 0.004339444, -1.8747938E-4, 0.017222274, -0.0028184366, -0.0015548826, -0.022235839, 2.580885E-4, -0.016856419, -0.01081304, -0.0022933672, 0.03620607, 0.052249476, 0.012574563, -0.0054979837, 0.0150542455, -0.0093089705, 0.0016946188, -0.02157188, -0.0043767067, 0.013523076, 0.0063448697, 0.021829333, 0.028726373, -0.031273805, -0.012019006, 0.0011687026, 0.023577306, 0.006676849, 0.019200599, -0.009566424, -0.019498702, -0.016395712, -0.009844203, -0.008353683, -0.005257468, 0.019051546, -0.04162614, 0.0038889004, 0.0044376827, 0.01775073, -0.008035254, 0.0033621374, 0.02237134, -0.033658635, 0.008814389, -0.013780529, -0.022791395, 0.005460721, -0.009092168, 0.044254873, 0.007913303, 0.0020545453, 0.022168087, 0.024471616, -0.004129416, 0.0037229108, -0.007188368, -0.008340133, -0.012947192, -0.013191096, -0.010494611, 0.015582702, -0.050433755, 0.019444503, -0.010338784, -0.008794064, -0.016056959, 0.008523061, -0.026802247, 0.05181587, 0.009708701, -0.032005515, -0.0010120288, -0.005206655, -0.003512883, -0.008184306, -0.012269684, -0.029593583, 0.0054132952, -0.006449884, 0.008218181, -0.021761581, -0.007079967, -0.011429573, -0.01004068, 0.004834025, 0.009559649, 0.1774531, -2.5427752E-4, 0.001432931, 0.05474271, 0.009464798, 0.02471552, 0.02079952, 0.0124322865, -0.015555602, -0.0016912313, -0.021883534, 0.008163981, -0.019092197, 0.0019867944, 0.008103005, -0.0012220565, -0.03382124, -0.027262954, -0.029566484, -0.039132908, -0.017181622, -0.00958675, -0.02004071, -0.0154472, 0.001381271, 5.089785E-4, -0.0045189834, 7.219703E-4, 0.028048864, -0.009214119, -0.012838791, -0.004048115, -0.01777783, 0.016775118, -0.024485167, -0.009837427, 0.008516286, 0.006314382, -0.001663284, 0.0030183017, -0.019756157, -0.0022154537, -0.007777801, -0.014620639, 0.015853705, 0.01765588, -0.02153123, -0.005152454, -0.011043393, -0.001708169, -0.03387544, 4.983924E-4, 0.037615288, 0.019376751, -0.004366544, -0.0020037321, 0.0074932473, -0.006900427, -0.0069309147, 8.045417E-4, 0.0012593195, 0.037371386, -0.02699195, -8.189387E-4, 0.001849599, 0.017547477, -0.035907965, 0.006117904, 0.0064160083, -0.03241202, -0.028888974, -0.016409263, -0.028970275, 0.0071409424, -0.026544794, -0.012039331, 0.010934992, 0.018346937, 0.009031192, 0.03392964, -0.015487851, -0.024796821, 0.012059656, -0.0060399906, -0.014403837, -0.02391606, -3.077901E-5, -0.026504144, -0.0025050887, -4.2683052E-4, 0.0062567936, -0.009024417, -0.014227685, 0.0040074643, 0.010189733, 0.0053150565, 0.026165389, 0.022506842, -0.0028489244, -0.0062330808, -0.029159978, 0.03802179, 0.015487851, -0.007256119, -0.012561013, -0.021016322, 0.012588114, 0.012107082, 0.027561057, -0.013448549, 0.011788653, -0.029891688, 0.0039702016, -0.00595869, 0.01235776, 0.01857729, -0.012249359, -1.404772E-4, 0.01159895, -0.016815769, -0.0057588248, -0.011531199, 0.026422843, -0.0061043543, -0.006270344, -0.024918772, -0.015379449, 0.011605726, -0.008875365, -0.032764323, 0.003036933, -0.03934971, 0.016368613, -0.0042750803, 0.0015912987, 0.00810978, 0.017493276, 0.013509525, 0.0016014614, 0.004878063, -0.0016302555, -0.027086802, 0.012743941, 0.026382191, -0.014322536, -0.017357776, -0.013712778, 0.0022628794, 0.0034925577, -0.035935067, -0.022425542, -0.00850951, 0.009647725, -3.544218E-4, 0.036449973, -0.010555587, -0.034417447, -0.027425556, -0.006751375, 0.036748078, -0.04409227, 0.040596325, 0.012913317, -0.013726328, -0.021856433, -0.014024432, -0.17355065, 0.012506812, 0.018848294, -0.032683022, 0.02157188, 0.01780493, 0.02012201, 0.014471588, 0.008570486, -0.008943116, 0.01392958, 0.0048001497, -0.051300965, -0.010128756, 0.006121292, 0.008794064, 7.4473035E-5, 0.034552947, 0.028482469, -0.0023153862, 0.034634247, -0.0028692498, -0.01191738, 0.007168043, 0.021246675, 0.0034112567, 0.01611116, 0.0070528663, -0.007906527, -0.016246662, -0.023062399, 0.0077574756, -0.0039295508, -0.002823518, -0.0053590946, -0.0024779884, -0.0030640336, -0.0011974968, 0.0011602337, -4.7510304E-4, 0.035772465, 0.0031250094, 0.016707366, 0.018265637, -0.012527137, 0.003990527, 0.019010896, -0.017086772, 0.009288645, -0.011334722, 0.009884853, -0.020298162, 0.02850957, -0.020962121, 0.00888214, 0.009044742, 0.0014744285, 3.0085625E-4, 0.0035094954, -2.5025482E-4, -0.031328008, -0.016924169, 0.015691103, -0.005718174, -0.0120867565, -0.015474301, 0.005196492, 0.012615213, -0.028211465, 0.014241234, -0.018008184, -0.0021646405, 0.02237134, 0.0073577454, -0.006009503, -0.0034925577, -0.024187064, 0.015284598, -0.0038075994, 0.038943205, -0.020365914, 0.03563696, -0.015379449, 0.009044742, 0.025013624, -0.0117751025, -7.931087E-4, -0.0049864645, 0.0072696693, -0.0044376827, 0.0115583, -0.007168043, -0.0307318, 0.0055420217, 0.013699228, 0.018035283, 0.007276444, -0.002347568, 0.011815753, -0.013631477, 0.014417387, -0.014065082, -0.020189762, 0.022005485, 0.040569227, 0.016544765, 0.004031177, 0.012737165, 0.03704618, 0.0040819906, -0.0028794124, 0.0050745406, 0.02937678, 0.008841489, -0.01776428, 0.015298149, -0.010182957, -0.0231979, -0.016653165, 0.009261545, 0.035203356, -0.011056944, 0.005667361, -0.022737194, -0.003157191, -0.013333373, -0.093550414, -0.009762902, 0.020433664, 0.045122083, -0.02627379, 0.028861875, -0.022777846, 0.023346953, -0.0062432433, 0.028265666, 0.0013744959, -0.012290009, 0.012621989, -0.022113888, 0.024471616, -0.0030199953, -0.01699192, -0.009674826, -0.00964095, 0.03230362, 0.0030335456, 5.084624E-6, 0.0026388967, -0.017384876, -0.029485183, -0.015257498, -0.021653181, 0.017262924, 0.009830653, 0.0036348347, 0.013272397, -0.015189747, 0.009004092, -0.034363244, -0.022547493, -0.021300877, -0.010304908, -0.021192474, 0.020460766, -0.05170747, 0.027967563, 0.0113618225, 0.023062399, -0.02073177, 0.007974278, -0.005169392, -0.04084023, 0.03604347, -0.0048069246, -0.025813084, -0.019593554, -0.008265607, -0.010135531, -0.012005456, 0.00595869, 0.0083943335, 0.013340148, 0.019552903, -0.006334707, -4.7552647E-4, -0.0055691223, -0.019945858, -0.01543365, -0.008130105, 0.02238489, 0.022818496, 0.0036687101, -0.02463422, 0.020907922, -0.01267619, -0.017100321, 0.007879427, -0.04075893, -0.01123987, -0.020325264, 0.002264573, 0.0035467586, -0.0012593195, 0.016395712, -0.021815782, 0.0017428914, -0.027181653, -0.010562362, -0.023455353, 0.018672142, 0.018306287, 0.03013559, 0.01388893, 0.0156233525, -0.03403804, 0.0023560368, 0.031002803, 0.01689707, -0.012242584, -0.02766946, 0.039024506, 0.026327992, 0.0030741962, 0.019146398, 0.013035269, -0.010975642, -0.011842853, -0.072628945, 0.022073235, -0.009729026, -0.011646376, -0.004657873, -0.0028912688, 0.013970231, -0.0016175522, -0.0066666864, 0.021111174, -0.012181608, 0.0031470284, -0.007642299, -0.016544765, -0.0080826795, 0.00966805, 0.012195158, 0.004329281, -0.016287312, -9.239526E-4, -0.027262954, 0.006497309, 0.028428268, 0.0066836243, -0.023536656, 0.008258832, -0.0075406726, 0.014105733, -0.016477013, -0.016436363, 0.02237134, -0.026084088, 0.002362812, -0.008550161, -0.019444503, -0.011314397, -0.003922776, -0.012777816, 0.022466192, 0.008699213, -0.020298162, -0.021991935, -0.00537942, -0.008163981, 0.006913977, 0.03300823, -0.023306303, 0.015162647, 0.01623311, 0.014214134, 0.026165389, 0.021273775, 0.0048408, -0.01940385, 0.008794064, -0.028916074, 0.044281974, 9.4089034E-4, 0.011321172, -0.03154481, 0.01856374, 0.0031842913, 0.009552874, -0.032005515, 0.005152454, 0.017073222, 0.012256134, -0.015000044, 0.0019207374, -0.0012627069, 0.006449884, -0.01615181, 0.012140958, 0.037994694, 0.01234421, 0.023008198, -0.0035094954, 0.009891628, -0.0011687026, 0.019024447, 0.018739892, -0.02084017, -0.024173513, 0.015162647, 0.01081304, 0.021734482, 0.0014507157, 0.014010882, -1.0204976E-4, 0.01234421, 0.0027489918, -0.0065515097, 0.010874016, 0.005504759, 0.017994633, 0.004613835, -0.018279187, 1.4312373E-4, -0.0062635685, 0.023062399, 0.002093502, -0.0076490743, -0.019661305, -0.006202593, -0.01460709, 0.007120617, -0.019105747, -0.031273805, 0.014376736, 0.02543368, 0.029078677, 7.732069E-4, -0.0119309295, 0.0015989207, -0.039566513, 0.02012201, -0.016924169, -0.017994633, -0.008821164, 0.05940397, 0.012581338, 0.015867256, 0.01853664, -0.024254814, 0.055935126, 0.019986508, 0.035257556, -0.027832061, 0.010149081, -0.0027371354, -0.014566439, 0.0010255789, -0.015067795, 0.004071828, -0.006317769, -0.018550191, -0.012594888, 0.02392961, -0.0066632987, 0.066666864, 0.018916044, -0.014756141, 0.0074525964, -0.030000089, 0.009024417, 0.009132818, 0.011070494, -0.0026422841, -0.027615258, 0.0056707487, -0.003594184, -0.012743941, -0.0308944, -0.013387574, -0.0059011015, 0.0048916135, 0.014349636, -0.009925503, -0.010955317, 0.023807658, -0.0056571984, 0.031842913, 0.003699198, -0.013841504, -3.0360863E-4, 0.04466138, -0.004932264, -6.402458E-4, -0.032249417, 0.0010789328, -0.019024447, -0.0119309295, 0.0029285317, 0.029918788, -1.10836205E-4, -0.0069343024, -0.0012644008, 0.029078677, 0.014891643, -0.003855025, 0.007330645, -0.014254785, -0.013672127, 0.010284583, -0.013319823, -0.008014929, -0.026395742, -0.015772404 ], + "id" : "27775fa0-f1ed-424d-9ff5-e1629a13dff9", + "metadata" : { + "source" : "movies.csv" + } + }, + "e7b92abf-0deb-4d70-a2ee-9f31e25b61fc" : { + "text" : "Pardo-Lisa Howard,based on novel or book-vampire-romance-villainess-teen movie-werewolf-supernatural creature-super strength-imprinting-cross breed-bloodsucker-grudge-chief of police-wolf pack-misinformation-seeing the future-based on young adult novel,/7IGdPaKujv0BjI0Zd0m0a4CzEjJ.jpg,/qkl57wzSFrpi2sRpoc2mZJbMuLP.jpg,50619-24021-18239-8966-58595-675-32657-10140-767-222935-12444-12445-411-674-123553-70160-597-157350-2454-101299-216015\r\n27205,Inception,Action-Science Fiction-Adventure,en,\"Cobb a skilled thief who commits corporate espionage by infiltrating the subconscious of his targets is offered a chance to regain his old life as payment for a task considered to be impossible: \"\"inception\"\" the implantation of another person's idea into a target's subconscious.\",79.545,Legendary Pictures-Syncopy-Warner Bros. Pictures,7/15/10,160000000,825532764,148,Released,Your mind is the scene of the crime.,8.361,33262,Leonardo DiCaprio-Joseph Gordon-Levitt-Ken Watanabe-Tom Hardy-Elliot Page-Dileep Rao-Cillian Murphy-Tom Berenger-Marion Cotillard-Pete Postlethwaite-Michael Caine-Lukas Haas-Talulah Riley-Tohoru Masamune-Taylor Geare-Claire Geare-Johnathan Geare-Yuji Okumoto-Earl Cameron-Ryan Hayward-Miranda Nolan-Russ Fega-Tim Kelleher-Coralie Dedykere-Silvie Laguna-Virgile Bramly-Nicolas Clerc-Jean-Michel Dagory-Marc Raducci-Tai-Li Lee-Magnus Nolan-Helena Cullinan-Mark Fleischmann-Shelley Lang-Adam Cole-Jack Murray-Kraig Thornber-Angela Nathenson-Natasha Beaumont-Carl Gilliard-Jill Maddrell-Alex Lombard-Nicole Pulliam-Peter Basham-Michael Gaston-Felix Scott-Andrew Pleavin-Lisa Reynolds-Jason Tendell-Jack Gilroy-Shannon Welles-Daniel Girondeaud,paris france-spy-philosophy-allegory-dream-kidnapping-manipulation-airplane-virtual reality-car crash-heist-rescue-mission-memory-architecture-los angeles california-dream world-subconscious,/edv5CZvWj09upOsy2Y6IwDhK8bt.jpg,/8ZTVqvKDQ8emSGUEMjsS4yHAwrp.jpg,155-603-11324-550-49026-68718-120-157336-680-121-272-122-807-13-19995-16869-24428-1124-1726-77-37724\r\n297762,Wonder Woman,Action-Adventure-Fantasy,en,An Amazon princess comes to the world of Man in the grips of the First World War to confront the forces of evil and bring an end to human conflict.,63.529,Atlas Entertainment-Cruel & Unusual Films-DC Films,5/30/17,149000000,822854286,141,Released,Power. Grace. Wisdom. Wonder.,7.", + "embedding" : [ 0.012053486, -0.023184018, -0.0013172738, -0.030361008, -0.0057374593, 0.024988597, 0.010979003, -0.029892644, -0.023335548, -0.04468744, 0.031958956, 0.03443853, 0.001407675, -0.016530495, -0.006491663, 0.021007504, 0.028707959, -0.033915065, 0.0025105688, -0.026972257, -0.0014378086, -8.7818255E-5, -0.006419342, 0.007817547, -6.4184814E-4, 0.004687084, 0.02945183, -0.015497339, -0.015772847, -0.012542513, 0.017274367, -0.0010917014, -0.0046939715, -0.008892029, -0.025525838, -0.0041360673, 0.008699173, -0.025236554, 0.010531303, -0.023418201, 0.0038571153, 0.013858065, -0.014973873, -0.009842532, -0.011151196, 0.010352222, 0.0011889903, -0.008051729, -0.005179555, 0.028900815, 0.025456961, 0.027605927, -0.013127968, -0.012136138, -0.0063814595, -0.012012159, 0.0051657795, -0.003027147, 0.020552915, -0.011688437, 0.023927892, -0.026490118, -0.020676894, -0.02542941, -0.014574386, -0.0010624287, -0.009663451, 0.014085359, 0.0023125473, -0.0091882, 0.038516052, 0.015662644, 0.018555481, 0.010152479, 0.0050727953, -0.03884666, -0.026352363, 0.009711665, -0.001455028, -9.4964245E-4, 0.007872648, -0.006374572, -0.009973398, 0.004852389, 0.012315218, 0.006873931, -0.010613955, 0.015194279, -0.029562034, 0.01743967, 0.008458103, 0.019505983, -0.0050659077, 0.017646303, -0.0011459421, 0.02242637, -0.0059406464, 0.035237506, -0.016034579, -0.026145732, 0.0045527737, -0.0024072533, -0.027165113, -0.017109063, -0.0014025092, -0.024286052, 0.0042324956, 0.01113742, 0.02639369, 0.016296312, -0.023321772, -0.008051729, 0.021944232, -0.041959904, 0.001757226, -0.014560611, 0.007934637, -0.01369276, -0.009105547, -0.011027218, 0.02290851, 0.033915065, 0.005224325, -0.02494727, 0.03441098, 0.023445752, 0.014615713, 0.0015514558, -0.018459052, -0.009263964, 0.026476342, -0.015345809, 0.02720644, -0.0012458138, -0.022564124, 0.036642596, -0.03435588, -0.0016668249, -0.022164637, -0.013313936, 0.039893594, 0.029341629, -0.020167204, -0.02741307, -0.017095286, 5.428373E-4, 0.022288617, -0.0043495866, 0.013162406, 0.012122363, 0.023803912, 0.02306004, 0.007955301, 0.011633336, 0.016957533, -0.0042324956, 0.012990214, -0.0043495866, 0.009491259, 8.140408E-4, -0.008451215, 0.0049109343, -0.022770757, -0.0026104406, -0.0037537997, 0.02405187, 0.013761637, -0.025594715, 0.005789117, 0.0097461045, -0.018707009, 0.039562985, -0.032014057, 0.02288096, 0.0054998333, 0.023170244, 0.010379773, -0.013940717, -0.007879536, -0.0069703585, 0.007927749, 0.0026775957, 0.035650767, 0.021971783, -0.010352222, 0.002155852, 0.025608491, -0.03774463, 0.0117848655, -0.0075282627, -0.009546361, 0.018610582, 0.017935587, -0.005954422, -0.6550484, 0.0019285576, -0.016888656, -0.017370794, 0.015538665, 0.004618207, 0.010717271, 0.0011838245, -0.020428937, -0.016682023, -0.01768763, 0.01321062, 0.008871365, -0.0175361, -0.030002847, -0.018789662, -0.0035075643, -0.006415898, 0.009870083, 0.0033319278, -0.02221974, 0.003864003, 0.0025484513, 0.0040706345, 0.007500712, 0.00143006, 0.0013499904, -0.001641857, 0.0103728855, 0.015841724, -0.010827474, 0.01690243, 0.0064124544, 0.010200692, 0.033859964, -0.0040396396, 0.0040224204, 0.039259925, 0.021930456, 0.030967126, -0.03347425, 0.0031321843, -0.010042275, 0.011853742, -0.012742256, 0.009133099, -0.0024296383, -0.012556288, 0.005579042, 0.014560611, -0.005510165, 0.0041257357, 0.009725441, -0.011536907, 0.0038054576, 0.008754275, 0.014836119, -0.025883999, 0.030856922, -0.015497339, -0.0040396396, 0.015015199, 0.018583031, -0.005272539, -8.514927E-4, 0.028873263, 0.0051210094, 2.735711E-4, 0.0055893734, -0.025470737, 0.020842198, 0.0046801963, -0.010276457, -0.005554935, -0.0016134451, -0.0072045405, 0.04639559, 0.013320823, 0.0030753608, 0.008031066, 0.0010503752, -0.0047938433, -0.009298403, 0.014643263, 0.015538665, -0.00987697, -0.034796692, 0.004029308, 0.018445278, 0.008836927, 0.012714705, 0.015896825, 0.010345334, -0.001334493, -0.010483089, 0.0128731225, -0.01570397, -0.009236414, 0.02753705, -0.05044556, -0.01020758, -0.014574386, 0.0084925415, -0.008547643, 0.03465894, 0.012645829, -0.0044425703, -0.0068050534, 0.03487934, -0.027523274, -0.017880484, -0.001923392, -0.010166254, 0.012377208, -0.0137340855, -0.02936918, 0.026503893, 0.007996627, 0.0029221093, -0.014353979, 0.0071769897, 0.017797833, 7.684097E-4, -0.017480997, 0.0097461045, 0.009952735, -0.01035911, -0.0031080774, 0.0027378632, 4.408132E-4, 0.009374168, 0.011943283, 0.012143026, -0.011895068, -0.007693568, 0.0119363945, 0.0125631755, -0.005100346, 0.010517527, 0.0062230425, -0.022839634, 0.005055576, -0.027550824, -0.011461142, -0.014491733, -0.020043224, -0.017646303, -0.019354453, -0.01195017, -0.02654522, -0.026669199, -0.010483089, -0.0122532295, 0.01786671, -0.0035506124, -0.0024210287, -0.023170244, -0.007920862, 0.0024089753, -0.010992778, -5.0495495E-4, 0.011206298, -0.0019061726, -0.008940242, 0.02942428, -0.010627731, -0.00960835, 0.02435493, -0.008416777, -0.02972734, 0.015097852, -0.008823152, -0.0019836593, 0.0100285, -0.016530495, 0.027151337, 6.056877E-4, 0.022509024, 0.0038743347, 4.5372764E-4, -0.0016711297, -0.0046285386, -0.01967129, -0.0050314693, 0.023693709, 0.02155852, 0.019795267, -0.0012613111, -8.0198725E-4, -0.0015023809, -0.0023624832, -0.0011855464, 0.004921266, -0.0035299493, -0.0010357389, 0.02702736, 5.3594966E-4, 0.014174899, -1.1757529E-5, 0.019230476, 0.044604786, 0.026118182, 0.0020921407, -0.005155448, 0.0166958, -0.02909367, 0.0061059515, -0.03487934, 0.010173142, -0.0046078754, 0.032675277, -6.7101326E-5, -0.008719835, -0.010069827, 0.015166729, 0.028570205, -0.0039328802, 0.019505983, -0.020745771, -0.0031838422, 0.007032348, -0.009897633, 0.02242637, 0.003981094, -0.015139178, 0.012859347, 0.017797833, -0.00867851, -0.0041291798, -0.023307998, -0.009505034, -0.018279972, 0.0038743347, 0.002016376, -0.014326429, -0.0067843907, 0.026627872, -0.015841724, 0.023184018, -0.0067671714, -0.005975085, 0.020690668, 0.02494727, -0.013913167, 0.0070667863, -0.02237127, 0.014395306, 0.011695324, -0.026490118, 0.03215181, -0.034383427, 0.025112577, -0.008196371, 0.015690194, 4.3543216E-4, -0.02771613, 0.0046285386, 0.012136138, 0.028143167, 0.022839634, 0.006681075, -0.020979952, 0.018266197, -0.007548926, 0.019712614, -0.016654473, -0.025994202, 0.005658251, -7.1115565E-4, -0.011826191, -0.02476819, -0.021985557, 0.016985083, 0.009057334, -0.011957058, -0.0021007503, -0.014092247, 0.0013775412, 0.010124928, 0.026586546, -0.014781017, -0.02720644, 0.008403001, 0.03380486, -0.013389701, -0.00960835, -0.023776362, -0.010386661, -0.015607542, -5.1399507E-4, 0.010159367, 0.020525364, -0.0017787501, 0.006233374, -0.018527929, -0.0074249473, 0.017646303, -0.019271802, 0.0066741873, 0.023790136, -0.004425351, 0.018610582, -0.0021162478, 0.0043013724, 0.02438248, -0.00996651, -0.002293606, 9.5566924E-5, 0.013389701, -0.0025450075, 0.0031717885, 0.00660531, -0.03537526, 0.008995344, -0.0070392354, -0.0019733277, -0.005995748, 0.011915731, -0.0021937343, -0.0063539087, -0.017122837, -0.032565076, -0.01789426, 0.0013499904, 0.07570966, 0.033198744, 1.6218395E-4, 0.0100285, -0.012769807, 0.0039707627, -0.014491733, 0.0039018856, -0.0017787501, -0.003956987, 0.036945656, -0.020070776, 0.021489643, 0.001993991, 0.01468459, -0.010579516, -0.0014369477, -0.007666017, -0.012941999, -0.012466748, -0.0133483745, -0.027798781, 0.017274367, 0.028198268, 0.0031683447, -0.019078946, 0.024065645, -0.0028274034, -0.019988123, 0.02405187, -0.025525838, 5.492946E-4, -0.0011812416, 0.018087117, -0.008079279, 0.0038812223, 0.02407942, -0.005785673, 0.024189623, 0.0049109343, 0.008974681, 0.031104881, -0.0013999263, 0.004005201, 0.017646303, -0.023487078, -0.015593766, 0.01735702, 0.03471404, -0.03879156, 0.038020138, 0.0015505948, -0.031325288, -0.005410293, 0.015648868, -9.660008E-4, 0.010441762, 0.0010658725, -0.02122791, 0.019602412, -0.004687084, -0.050610863, 0.016254986, -0.011178747, 5.7684537E-4, -0.021090155, -0.0044184634, -0.00843744, -0.023431975, 0.0027946867, -0.009601463, -0.029286526, -0.016434066, 0.0019388893, 0.0038157892, -0.007941525, 0.026297262, -0.003349147, 0.016392741, -0.009732328, -0.040554814, -0.020814648, 0.011564459, -0.024286052, -0.0036263773, -0.01117186, -0.011695324, 0.012012159, 0.009560136, 0.0011777978, -0.0062505933, 0.011943283, -0.027881434, -0.006216155, 0.039315026, 0.009009119, 0.0147534665, 0.020194754, 0.014057808, 0.0020284294, 0.013775412, -0.03198651, -0.021847803, -0.015194279, -0.0011192523, -0.010042275, -0.013644545, -0.0064262296, -0.031022228, -0.026021754, -0.026311038, -0.021283012, 0.020883525, 0.014574386, 0.010338447, 0.0067602834, 0.0038984416, 0.0055652666, 0.012046598, -0.015111627, -0.01621366, -0.011412929, 0.018514154, 0.040141553, -0.0024451357, 0.029920194, -0.0015221831, -0.0166958, 0.003164901, 0.0069393637, -0.009711665, 0.015717745, -0.017150389, 0.013169294, -0.012108588, -0.021475868, 0.0027791895, -0.0028446226, -0.034796692, 0.0067396206, -0.008031066, 0.010572629, 0.011013442, -0.009498146, 0.009718553, -0.03204161, 0.0037055858, -0.004170506, 0.0080999425, 0.02245392, -0.009649676, -0.0018459052, -0.020456487, 0.0032854357, -0.0094292695, -0.021007504, -0.033832412, -0.0100285, 0.026049305, -0.003116687, 0.03306099, -0.0088093765, 0.00328027, 0.018638132, -0.0017443115, 0.03179365, -0.0011752149, -0.015993254, -0.013892503, 0.01687488, 0.011130533, 0.025153903, 0.013389701, -0.0064813313, 0.016420292, 0.030030398, -2.3913254E-4, 0.011722876, -0.0022350606, -0.0125631755, -0.0057753418, 0.0064400053, -0.020346284, 6.09562E-4, -0.022261066, -0.025691144, 0.04083032, -0.01723304, -0.0024227507, -0.01807334, 0.042951737, -6.142973E-4, 0.022770757, -0.0048868274, 0.020690668, -0.018817212, -0.005275983, -0.012356545, -0.004501116, 0.004525223, -0.015566216, 0.00993896, 0.0040258644, -0.017150389, 8.3943916E-4, 0.020139653, -0.0010813698, -0.036394637, 0.0132657215, -0.015511114, -0.005465395, -0.027523274, -0.016048355, -0.023611056, -0.01245986, -0.0074249473, -0.02390034, 0.016764676, -0.015511114, -0.038984418, 0.04573437, -0.014560611, 0.04581702, 0.0035127301, 0.04747007, 0.04151909, -0.0062471493, -0.02242637, 0.02471309, -0.007500712, -0.013162406, 0.0087956, 0.012060373, -0.0131141925, -0.011158084, 0.008389226, 0.0040844097, -0.037965037, -0.031518143, 0.015345809, 0.016268762, 0.030691618, -0.024520233, 0.008568306, -0.022633003, 0.011564459, -0.0077486695, -0.0038777785, 0.013616995, -0.021627396, -0.008843815, 5.690967E-4, 0.011846854, -0.0011993218, -0.004972924, -0.029617136, 0.021654949, -0.024286052, 0.0018476271, -0.02690338, -0.017963137, 0.027977861, -0.01789426, 0.021159032, 0.018348848, 0.009780543, 0.012067261, 0.004635426, 0.006887706, 0.032895684, -0.013727198, 0.028198268, -0.012570064, -0.01786671, -0.0024761304, 0.012301443, -0.022329943, -0.0100560505, -0.015731521, -0.021145258, 0.020346284, 0.012377208, -0.014422856, -0.006329802, -0.01270093, -0.01135094, -0.01044865, -0.002460633, 0.0025226222, -0.020745771, 0.0030426441, -0.0023797024, -0.012845572, 0.003049532, 0.0040396396, 5.5962615E-4, 0.0035471686, 0.024506459, -0.015910601, -0.00984942, -0.012687154, -0.0127973575, -0.048544552, -0.016199885, -0.018500378, -0.01972639, 0.017660078, -0.010820586, -9.4103283E-4, -0.017136613, -0.005317309, -0.0053035337, 0.009029782, -0.012859347, 0.0029617136, 0.027578374, -0.0046767523, 0.0024589112, -0.007831322, 0.009449933, 0.0083479, -0.0070667863, 0.018321298, -0.0068498235, 0.029121222, -0.014312653, 0.0093535045, 0.0080241775, -0.0057512345, -0.020332508, 0.0031097992, 0.023073815, -0.0053035337, -0.0031821202, -0.012941999, -0.0114680305, -0.0037055858, 0.023652382, 1.518524E-4, 0.0014257552, 0.02456156, 0.024699314, 0.009601463, 0.035981376, -0.002792965, -0.02056669, -0.006037074, -0.019960573, -0.017301917, -0.0035092863, 0.0057994486, -0.0030891362, 0.010400436, -0.0124874115, -0.032868132, 2.6130234E-4, -0.010861913, -0.027275316, -0.003750356, 0.033859964, 0.04490784, 4.5631052E-4, 0.013988931, -0.002085253, 0.011564459, 0.018638132, -0.025870224, -5.3551915E-4, 0.012948887, 0.0069703585, 0.018459052, 0.032482423, -0.030471211, 0.0072803055, 0.005730571, 0.007238979, 0.0069462517, 0.029148772, -0.019092722, -0.0217376, -0.0036883666, -0.00496948, 7.9079473E-4, -0.0067155133, 0.015676418, -0.027123787, 0.009801206, 0.0114680305, 0.02041516, 0.002698259, 6.366823E-4, 0.019822817, -0.013555005, 0.0033095428, -0.019175373, -0.022302393, 0.01252185, -0.013534343, 0.020552915, 0.0060336306, -0.009773655, 0.038901765, 0.018954966, -0.006770615, 0.013472353, -2.953104E-4, 0.00735607, -8.8356355E-5, 0.011853742, -2.8045877E-4, 0.025760021, -0.0333916, 0.027936535, -0.030388558, 0.011536907, -0.0030064837, 0.01726059, -0.01144048, 0.041629296, 0.0060129673, -0.044301726, 0.0015204612, -0.016750902, 0.024699314, 0.0030977458, -0.007920862, -0.02275698, 0.0057236836, -0.010476201, 0.0050762394, -0.015152954, -0.020194754, 0.007473161, -0.014946322, -0.0066466364, 0.00852698, 0.18778642, 0.0010228243, 0.013127968, 0.06386281, 2.6603765E-4, 0.025332984, 0.024809517, 0.02540186, -0.007962188, 0.019409556, 9.048724E-4, -0.01219124, -0.021875355, 0.004177394, 0.0066638556, -0.018500378, -0.02573247, -0.017453447, -0.011426704, -0.04308949, -0.013059091, 0.0028980023, -0.016020805, -0.020759545, -7.03407E-4, -0.0030994678, -0.006302251, -0.0022143975, 0.0070736744, 0.014271327, -0.009339729, -0.022509024, -0.00870606, 0.010985891, -0.01987792, -1.0471466E-4, -0.0095119225, 0.012211903, -0.0016091403, -0.0072940807, -2.7184916E-4, 0.008919579, -0.020993728, -0.013520567, 0.0055480474, 0.03435588, -0.02969979, -0.009629013, -0.020594241, 0.015483563, -0.041904803, -0.0028222376, 0.0091193225, 0.021200359, -0.0065743155, 0.013107304, 0.008561418, 0.007927749, -0.020304957, -0.0074800486, 0.007755557, 0.03044366, -0.022440147, 0.010724158, 0.0032217244, 0.016833553, -0.018321298, -0.005513609, 0.0024175849, -0.02624216, -0.011502469, -0.023955442, -0.008299686, 0.01768763, -0.02239882, -0.009615238, 0.014395306, 0.016806003, 0.0028962805, 0.015896825, -0.023197794, -0.019450882, 0.009229526, -0.015359584, -0.014987648, -0.034383427, 0.0039500995, 0.0032871577, 0.004618207, -1.8112514E-4, -0.0073009683, -0.007927749, -0.016682023, 0.004366806, -0.002834291, -0.015152954, 0.020731995, 0.009890746, -6.2893366E-4, -0.015097852, -0.023390649, 0.02969979, 0.031600796, -0.0049798116, -0.028570205, -0.020993728, -0.0017718624, 0.014161124, 0.02759215, -0.02288096, -0.011116758, -0.022715654, -0.0050762394, -0.0051244535, 8.278162E-4, 0.01993302, 0.006415898, -0.0049350415, 0.03245487, -0.019106496, 0.0014378086, -0.014560611, 0.013892503, 0.0072527546, 0.0068532676, -0.028487552, -0.030829372, 0.0023297665, -0.0065295454, -0.02774368, 0.0139682675, -0.025484512, -0.0011769368, -0.0016685468, -0.0053104213, 0.017908037, 0.013858065, 0.005857994, 0.011929507, -0.0017632528, -0.0023797024, -0.02807429, 0.011771089, 0.007666017, 0.018004464, -0.030250804, 0.0036263773, -0.0049522608, -0.009243301, -0.012935112, -0.038295645, -0.007562701, 0.0014369477, 0.02687583, 0.02942428, 0.007920862, -0.02936918, -0.043227244, -0.0062505933, 0.033226293, -0.03446608, 0.02219219, 0.023597281, -0.012914449, -0.015276932, -0.021090155, -0.17852934, 0.0069979094, 0.0044804527, -0.045872122, 0.009532585, 0.015745295, 0.02624216, -0.0011821026, -0.0015566215, -0.0048730522, 0.015483563, 0.014106022, -0.037166063, -0.005551491, 0.0013052203, -0.005875213, -0.014271327, 0.03934258, 0.011791753, -0.00252951, 0.03672525, -0.0029444944, -0.007459386, -0.005978529, 0.008547643, 0.0018545148, 0.01985037, 0.020608017, 0.0128800105, -0.017398346, -0.010317784, -0.015139178, 0.0021816809, 0.012632053, -0.010655281, -0.009456821, -0.016709575, 0.0036263773, -0.0025914994, -4.6233728E-4, 0.043585405, 0.0033680883, 0.012514962, 0.00693592, 0.016599372, 0.00744561, 0.023693709, -0.029011019, -0.0076591293, -0.015676418, -0.0025639485, -0.019175373, 0.035871174, -0.01741212, 0.007666017, 0.013548118, 0.0030891362, 0.0021868467, 0.005923427, -0.024506459, -0.02456156, -0.010235131, 5.884684E-4, -0.002205788, -0.005062464, -0.012349657, -0.008175707, 0.02155852, -0.029809993, 0.00885759, -0.030912025, 0.010083602, -0.003929436, -0.010510639, 0.011943283, -0.015111627, -0.043668058, 0.011364715, 0.0018097447, 0.0137340855, -0.019051395, 0.033667106, -0.009704778, 0.003166623, 0.008561418, -0.011364715, 0.01095834, -0.008155044, 0.005176111, -0.009456821, -0.0030013178, -0.008747387, -0.019767717, -0.014381531, 0.0041532866, 0.0175912, 0.004828282, 0.011715988, 5.109817E-4, -0.011729764, 0.0059647537, -0.010462426, -0.012976438, 0.031903856, 0.023927892, 0.008389226, 0.0023073815, 0.02540186, 0.022495247, -0.0037365805, -0.013086641, -0.0030788046, 0.023473302, 0.009133099, -0.025443187, 0.022963611, -0.020690668, -0.020249857, -0.0030082057, 0.0016315253, 0.04782823, 0.0010030222, 0.0037606875, -0.0064744437, -0.013623883, -0.022770757, -0.0902014, 0.006887706, -0.002882505, 0.04242827, -0.028239595, 0.036863003, -0.014629488, 0.0108688, -0.022963611, 0.019864144, 0.012941999, -0.03204161, 0.0071356636, -0.0050934586, 0.008396113, -0.005902764, -0.021351889, 0.0051967744, -0.0023142693, 0.027123787, 0.004997031, -0.012597614, -0.01743967, -0.0024933496, -0.030278357, 0.009642788, -0.022205964, 0.018789662, 0.009711665, 0.003819233, 0.007728006, -0.028790612, 0.01738457, -0.02453401, -0.031931404, -0.018169768, -0.019134048, -0.020194754, -0.0072940807, -0.056286335, 0.02155852, 0.008423665, 0.012542513, -0.012081036, -0.012659604, 0.0133483745, -0.022316167, 0.029892644, 0.006212711, -0.020731995, -0.007473161, -0.0049109343, -0.02507125, -9.5911307E-4, 0.019120272, 0.011158084, 0.029314077, -0.0020284294, -0.010917014, -0.016296312, -0.003943212, -0.008409889, -0.03011305, 0.005930315, 0.015152954, 6.236602E-5, -0.011488694, -0.014353979, 0.017784057, -0.011254512, -0.021241685, 0.0078657605, -0.01690243, -0.009573911, -0.020911075, -3.1801832E-5, -0.022109536, -0.017109063, 0.017701404, -0.031297736, 0.0012862791, -0.030664068, 0.006977246, -0.02038761, 0.0073216315, 0.012156801, 0.019685064, 0.014298878, 0.009732328, -0.046726197, -0.020098327, 0.017618753, 0.020773321, -0.017494773, -0.006519214, 0.021269236, 0.01987792, -0.005224325, -0.005816668, 0.027840108, -0.011757314, 0.008120606, -0.06931788, 0.03341915, -0.018307522, -0.02489217, -0.007838209, -0.012783582, 5.8287213E-4, 0.022026883, -0.0015755628, 0.009381056, -0.012997101, 0.007108113, -0.017811608, -0.0033853075, -0.017701404, -0.010304009, 0.012053486, 0.0021351888, -0.009016007, 0.0031752326, -0.019354453, 0.020690668, 0.015166729, 0.016558046, -0.012528737, 0.027371744, -0.0052863145, 0.015524889, -0.014381531, -0.010538191, 0.014230001, -0.026944706, -0.0020267074, 0.017315693, 0.002085253, -0.02053914, -0.020676894, 0.0022075097, 0.027812557, 0.008113718, -0.010744821, -0.021145258, -0.009649676, -0.014064696, 0.0021265792, 0.02789521, -0.016654473, 0.006043962, 0.019492209, 0.026476342, 0.03374976, 0.017880484, -0.022894735, -0.026407465, -6.534711E-4, -0.03986604, 0.053421047, 0.0027516386, 0.007225204, 0.0010322949, 0.030002847, -0.0051864428, 0.011647111, -0.040857874, -0.0015084076, -2.2406569E-4, 0.022178413, 0.003987982, -0.0023521516, -0.02542941, -0.0030856924, -6.3151657E-4, 0.005482614, 0.026352363, 0.02036006, 0.013699647, 0.0037537997, 0.015593766, 0.02201311, 0.022054436, 0.0067086257, -0.008733612, -0.021283012, 0.026131956, -9.350061E-4, 0.019092722, -0.010483089, 0.0021799589, 0.0038949978, 0.004662977, -0.005713352, 0.0103728855, 0.010793036, -0.010379773, 0.010131815, -0.004384025, -0.013754749, -0.007197653, -0.0076591293, 0.025787571, -0.0047284104, -9.883859E-4, 0.0015609264, -0.018279972, -0.032620177, -6.5217965E-4, -0.01363077, -0.025815122, 0.009539473, 0.00987697, 0.030884475, 0.0039259926, -0.008485653, 0.0072940807, -0.02026363, 0.014216226, -0.009945848, -0.020525364, -0.027041133, 0.050170053, 0.02275698, 0.019340679, 0.029892644, -0.00858897, 0.033281397, 0.02728909, 0.035898723, -0.03138039, 0.0128800105, 0.007287193, 0.004828282, -0.014505509, -0.024396256, 0.013382813, -0.008637183, -0.0020422048, 0.014174899, 0.016310088, -0.013802963, 0.069483176, 0.03138039, -9.1778685E-4, 0.020001898, -0.036945656, 0.012742256, 0.016530495, 0.0044391267, -0.018018238, -0.016957533, 0.0064709997, -0.025140127, 0.0011321667, -0.03317119, -0.030664068, 0.019078946, -0.007679792, 0.009332841, -0.01702641, -0.02453401, 0.0035471686, 0.010834361, 0.013327711, 0.0032630507, -0.013561893, -0.016737126, 0.030333458, -0.005010806, 0.0063401335, -0.03184875, 0.0068498235, -0.006753396, -0.0052105496, -0.020773321, 0.026118182, -0.003021981, -0.010896351, -0.011915731, 0.008864477, 0.008630295, 0.0010477923, 0.018238645, -0.024657987, -0.010965228, 0.031022228, -0.002271221, -0.005644475, -0.019340679, -0.026779402 ], + "id" : "e7b92abf-0deb-4d70-a2ee-9f31e25b61fc", + "metadata" : { + "source" : "movies.csv" + } + }, + "7ef52eec-bc51-4f0b-8ea2-caac9be7252f" : { + "text" : "Newman-Paul Keith-Dylan Smith-Lucinda Dryzek-Luke de Woolfson-Michael Sean Tighe-Greg Ellis-Dustin Seavey-Christian Martin-Israel Aduramo-Trevor Goddard-Vince Lozano-Ben Wilson-Antonio Valentino-Lauren Maher-Matthew Bowyer-Brye Cooper-Mike Babcock-Owen Finnegan-Ian McIntyre-Vanessa Branch-Sam Roberts-Ben Roberts-Martin Klebba-F��lix Castro-Mike Haberecht-Rudolph McCollum-Gerard J. Reyes-M. Scott Shields-Christopher Sullivan-Craig Thomson-Fred Toft-D.P. FitzGerald-Jerry Gauny-Maxie J. Santillan Jr.-Michael Earl Lane-Tobias McKinney-David Patykewich-Tommy Schooler-Michael A. Thompson-Michael W. Williams-Jose Zelaya-Finneus Egan-Don LaDaga-LeJon Stewart-Christopher S. Capp-Gregory Ryan Alosio-Jordi Caballero-Tamara Castle-Paul Gagn��-Joe Grisaffi-James McAuley,exotic island-blacksmith-east india company-gold-jamaica-skeleton-british empire-governor-pirate-swashbuckler-18th century-caribbean sea-aftercreditsstinger-pirate ship-british navy-tortuga,/z8onk7LV9Mmw6zKz4hT6pzzvmvl.jpg,/uRNgkJSkNBFbbn9fPsEjDIy8Sh3.jpg,58-285-1865-166426-120-121-12444-12445-673-672-1007938-675-674-762338-671-122-12-607-585-1726-767\r\n338952,Fantastic Beasts: The Crimes of Grindelwald,Fantasy-Adventure-Action,en,Gellert Grindelwald has escaped imprisonment and has begun gathering followers to his cause���elevating wizards above all non-magical beings. The only one capable of putting a stop to him is the wizard he once called his closest friend Albus Dumbledore. However Dumbledore will need to seek help from the wizard who had thwarted Grindelwald once before his former student Newt Scamander who agrees to help unaware of the dangers that lie ahead. Lines are drawn as love and loyalty are tested even among the truest friends and family in an increasingly divided wizarding world.,52.083,Warner Bros. Pictures-Heyday Films,11/14/18,200000000,654855901,134,Released,Fate of one. Future of all.,6.9,9852,Eddie Redmayne-Katherine Waterston-Dan Fogler-Alison Sudol-Johnny Depp-Jude Law-Ezra Miller-Zo� Kravitz-Callum Turner-Claudia Kim-Carmen Ejogo-Jessica Williams-William Nadylam-Ingvar E.", + "embedding" : [ 0.004455917, -0.019783992, -0.012067818, -0.041736856, -0.022495082, 0.055695485, 0.0012530094, 0.0014259282, -0.013277381, -0.032922342, 0.01322872, 0.028056288, 0.02198067, 0.014695489, 0.011101559, 0.011643777, 0.01760122, -0.004195235, -0.0010236097, -0.029752456, -0.015223803, -0.0025042808, -0.0098433355, 0.007896913, 0.013729229, 0.014862325, 0.020131567, -0.007034926, -0.00681943, -0.009676499, 0.01465378, -0.0023165902, -0.006249406, -0.015474058, -0.03506341, -0.0063988636, -1.15894676E-4, -0.012776872, 0.019200066, 2.0267992E-4, 0.017684637, -0.003420142, -0.016294336, -0.009676499, -0.020201083, -0.0051823496, 0.0044906745, -0.0032637331, -0.005331807, 0.033534076, 0.030753473, 0.038316716, -0.014459138, -0.020673785, -0.019339096, -0.0024643098, 0.0021671327, 0.0017969649, -0.0075423867, 0.021563578, -0.0016292598, -0.020214986, -0.018393692, -0.009676499, -0.01382655, -0.013492878, -0.01986741, -0.014292302, -0.0092455065, -0.018407594, 0.02239776, -0.0012512715, 0.025386909, -0.004563665, 0.016836554, -0.023079008, -0.017267548, -0.014500846, -0.01626653, 0.0037503387, 0.011671582, -0.019561544, -0.024789078, 0.009043912, 0.003906748, 0.011351814, -0.004949474, 0.011609019, -0.033478465, 0.016030177, -0.009057815, 0.05194167, 0.0026398352, -0.0049807555, -0.012088673, 0.009530518, -0.02847338, 0.027889451, -0.004949474, -0.03147643, 0.0059922, -0.010614953, 0.0037711933, -0.019283485, -8.367878E-4, -0.0039554085, -0.004664462, -0.010156154, 0.019617157, 0.006537894, 0.01179671, -0.014250592, 0.012769921, -0.029418783, -5.1397714E-4, -0.008654628, 0.024274668, -0.044767715, -0.018282467, -0.020367919, 0.043238383, 0.031142758, 0.0014450448, -0.033617493, 0.040680226, 0.050690398, -0.010705323, -0.012623939, -0.0018056543, -0.008369616, 0.020910136, 0.0015258561, 0.01723974, 0.008536452, -0.034229226, 0.050690398, -0.017517801, -0.010427263, -0.029530007, -0.020757204, 0.036342487, 0.031087145, -0.021049168, -0.012686503, -0.02405222, 0.026902337, 0.017059002, -0.0060756183, 0.022272633, -0.0069376053, 0.01608579, 0.011101559, 0.02088233, 0.016391657, 0.017392674, 0.004793065, 0.016850457, -0.0024365038, -0.0212021, -0.0054117492, -0.017768055, -0.0059922, -0.0034948708, -0.009613936, -0.0024139113, 0.02032621, -0.0020211511, -0.014229737, -0.00449415, 0.014542555, -0.014459138, 0.015515767, -0.036036618, 0.020576464, 0.012742115, 0.0067360117, 0.007139199, -0.0147789065, -0.043766696, -0.008383519, 0.010455068, 0.017170226, 0.017851474, 0.04106951, -0.015237707, 0.012554424, 0.010448117, -0.005630722, 0.0024903778, -0.0060929973, -0.017059002, 0.015696505, 0.009530518, -0.009975415, -0.63798165, -0.029390978, 0.0052970494, -0.016808746, 0.016016275, 0.012742115, 0.010712274, 0.0037121056, -0.021674803, -0.015752118, -0.03092031, 0.02677721, 0.023565613, -0.020812815, -0.020534756, -0.0104967775, 0.008174974, -0.01913055, 0.017364867, 3.4844436E-4, -0.031309593, 0.014048998, 0.014167174, -0.015613087, 0.013791792, 0.009454051, -0.008251441, -0.033589687, 0.0010574982, -0.006895896, -0.012790775, 0.01281163, -0.0011374406, 6.234634E-4, 0.04129196, 0.020979652, -0.02387148, 0.038761612, 0.028807051, 0.033617493, -0.027055271, -0.006405815, 0.005304001, -8.698075E-4, -0.0130201755, 0.02309291, 0.016906068, 0.002968294, 0.009280263, -0.013499829, 0.0068333326, -0.011400473, -0.001258223, -0.028042385, -2.1864666E-4, 0.005582061, 0.013722277, -0.026387926, 0.0327277, -0.0014971811, -0.022592403, 0.024330279, -7.303429E-4, 0.022661917, 0.0037399116, 0.010760935, -0.0077231256, 0.0054117492, 0.02359342, -0.021494064, 0.00449415, 0.01433401, -0.010893013, -0.011511697, 0.008181925, 0.006051288, 0.03414581, -0.011330958, 0.0063084937, 0.011699389, -0.0077161742, 1.02969214E-4, 0.012227703, 0.008717191, 0.035675142, -0.006941081, -0.028723633, 0.0062320274, 0.016572395, -0.0034305693, -0.0060582394, 0.0098433355, 0.017934892, -0.01023262, -8.289674E-4, -0.005884452, -0.012568327, -4.900813E-4, 0.03092031, -0.06484367, -0.0010679255, -0.021605289, 0.02751407, -0.029057305, 0.015362834, 0.022898268, -0.0025703202, 0.0034392588, 0.029474396, -0.015126483, 0.0027597488, 0.0063745333, -0.026665986, -0.003423618, -0.0017448285, -0.03645371, 0.014959646, -0.00686809, -0.0069932174, -0.021480162, 0.019366901, 0.012929806, 0.015626991, -0.008154119, -0.0025407763, 0.018796878, -0.008327907, -0.015501863, 3.410584E-4, 0.020937944, 0.0027753897, 1.5456244E-4, 0.01899152, -0.02285656, 0.005331807, 0.008494743, 0.007869108, -6.36063E-4, 0.015265512, -0.0098433355, -0.013416411, -0.008487792, -0.012540521, -0.005310952, -0.0051128343, -0.008932688, -0.027889451, 0.0027267293, 0.002163657, -0.01576602, -0.0117132915, 0.014639877, -0.0038615628, 0.009746015, -0.0016588037, -0.0033280347, -0.022425566, -0.02866802, 0.004852153, -0.023676837, 0.016197015, 0.019547641, 0.0014867538, -0.013485926, 0.02649915, -0.012888096, -0.01755951, 0.0061416575, 0.022133602, -0.0031160137, 0.015654797, -0.014528653, 0.01009359, 0.012429297, -0.008932688, 0.027319428, -0.004779162, 0.030836891, -0.0059435396, -5.713271E-4, -0.0019863935, -0.020409629, -0.018769072, -0.008967446, 0.018087825, 0.01668362, 0.02267582, -0.016016275, -0.0014528652, 0.0036425905, -0.017907085, -0.014917937, -0.0076397075, -0.013305187, -0.0010070998, 0.027180398, 0.005102407, -0.011045947, 0.0010270854, 0.017364867, 0.027541876, 0.009732111, 0.008571209, 0.0012756018, 0.014278398, -0.033311628, -0.0020889284, -0.022731433, 0.0043203626, -0.01055239, 0.00212021, -0.03161546, -0.017364867, 0.011330958, 0.0065691755, 0.039623596, -0.008884028, 0.0012929805, -0.014556458, 0.02106307, 0.008174974, -0.0024504068, 0.009982366, 0.014834519, -0.031448625, -4.4924123E-4, 0.013402508, -0.009036961, 0.0051267375, -0.0122207515, -0.005349186, -0.0040423023, 0.0050711255, 5.552517E-4, -0.017448286, -0.012422346, 0.021772124, -0.0041535264, 0.056029156, -0.026749404, -0.011560358, 0.024552727, 0.0017430907, 0.0076258047, 0.011212783, -0.033256017, 0.011469989, 0.014681586, 0.006235503, 0.04226517, -0.005217107, 0.044878937, 0.0035800268, -0.009919803, 0.011831467, -0.025553744, 0.006854187, -0.0023096385, 0.007966429, 0.017573413, -4.7270258E-4, -0.027305525, 0.008543404, 0.0027510594, 0.0018786452, -0.0038615628, -0.009509663, 0.00746592, -0.0054221763, -0.038372327, -0.017114613, -0.010906917, 0.010017123, 0.014174125, -0.0057558487, -0.014890131, -0.0036877752, 0.007354696, 0.0019377329, 0.023106813, 6.1738084E-4, -0.030892503, 0.017225837, 0.026234992, -0.011365716, -0.022453371, 0.0016527211, -0.012019158, -0.017629026, -0.027138688, 0.009085622, 0.031003727, -0.018101728, 0.0057488973, -0.005401322, -0.0031716258, 0.017267548, -0.017851474, 0.012387588, 0.0067221085, -0.013256527, 0.010990335, -0.020618174, -0.019964732, 0.038594775, -0.008035944, -0.012679551, -0.0023982704, -0.0017352703, 0.0036182601, 0.0018508391, 0.010128347, -0.044962358, 0.008258392, -0.022550693, -0.011699389, -0.0010774838, 0.0074311625, 0.023134619, -0.017781958, -0.02631841, -0.027486265, -0.023788061, 0.0056620035, 0.08719972, 0.051329937, -0.0064822817, 0.008098507, -0.00792472, 0.019505933, -0.018699557, -0.006986266, -0.0073894532, -0.008564258, 0.03028077, -0.005300525, 0.02309291, -1.492402E-4, 0.007688368, -0.01571041, -0.020743301, -0.0121303825, -0.0063119694, -0.007869108, -0.016808746, -0.01594676, 0.009732111, 0.025553744, -0.015613087, -0.013562392, 0.005641149, 0.011004237, -2.7262946E-5, 0.015487961, -0.004261275, 4.021556E-5, 0.014222786, 0.01414632, -0.012019158, 0.0084460825, 0.021786027, -0.0019255679, 0.023815868, -0.0062980666, -0.0022366478, 0.026415732, 0.008070701, -0.016377755, -0.0031108, -0.024914205, -0.015779924, 0.02847338, 0.03308918, -0.030391995, 0.008174974, -0.0028466426, -0.025039334, -0.011421328, 0.009871142, 0.004344693, -0.0041535264, 0.001639687, -0.005682858, 0.007080111, -0.01207477, -0.035647336, 0.013430314, -0.0016918234, -0.0101352995, -0.019644963, -0.019283485, -0.0036182601, -0.019352999, 0.012756018, 0.0012043489, -0.025539842, -0.008272295, -0.0023200659, 0.016030177, -0.002474737, 0.033005763, 8.811037E-4, 0.022828754, 0.014459138, -0.040569004, -0.032838926, 0.019200066, -0.018268565, 9.601771E-4, 0.018588332, -0.006913275, 0.032838926, -0.019144453, 0.014264495, -0.0074589686, 0.008209731, -0.0359532, -0.009871142, 0.028237026, 0.019436417, 0.0010262164, 0.03709325, 0.011546455, -0.008181925, 0.009315021, -0.024691757, 0.0010314301, -0.03189352, 0.001018396, -0.0043898774, -0.0014884918, 0.006033909, -0.010684469, -0.022939978, -0.011344861, -0.024789078, 0.010183959, 0.018185146, 0.016419463, 0.009391488, 0.019019326, 0.018769072, -0.012484909, -0.005891403, 3.449686E-4, -0.006190318, 0.02562326, 0.019269582, -0.015015258, 0.045462865, -0.0052796705, -0.0063015423, -0.010010172, 0.022369955, 0.0037433873, 0.015696505, -0.004268226, -0.01253357, -0.021076974, -0.025345199, 0.011636825, 2.705929E-5, -0.021549676, 0.022272633, -0.022272633, -0.0031281787, 0.010329941, 0.00460885, -0.012394539, -0.033478465, 0.013034078, -0.012922854, 0.016794844, 0.020687688, -5.0398434E-4, 0.0047722105, -0.023190232, -0.016155306, -0.007653611, -0.02727772, -0.017323159, 0.0044593927, 0.013096642, 0.020367919, 0.0511631, 0.0077787377, 0.012241607, 0.005870549, 0.0014893607, 0.017573413, -0.025136653, 7.238258E-4, -0.024802981, 0.008967446, 0.0030013137, 0.019839605, 0.014389622, -4.170905E-4, 0.013047981, 0.017156323, 0.004935571, 0.02216141, 0.0019412087, -0.031559847, -0.030892503, 0.0012347617, -0.021118682, 0.0027388942, -0.026290605, -0.008049847, 0.035146825, 0.0047409288, -0.0040423023, -0.013583248, 0.024719564, -0.008487792, 0.019213969, -0.016600203, 0.029919293, -0.02309291, -0.0023443962, -0.019380806, -0.01977009, 0.011268395, -0.006986266, 0.022508984, -0.010441165, -0.021355033, -0.0036043571, 0.009120379, -0.0034114528, -0.019366901, 0.024358084, -0.01917226, -2.7871205E-4, -0.020367919, 0.0014155009, -0.018129533, 0.002360037, -0.0011122413, -0.008126313, -0.0012756018, -0.022119699, -0.045546282, 0.018449303, -0.0062702606, 0.03848355, 0.018727364, 0.038789418, 0.040429972, 0.008453034, -0.010420311, 0.01881078, -0.013903016, -0.02825093, 0.020854525, 0.0090091545, -0.027486265, -0.0029387502, -0.008439131, -0.0041535264, -0.03631468, -0.026193283, 0.02737504, 0.0156687, 0.018491013, -0.027875548, -0.0053213798, -0.0276531, 0.013180059, -0.009829433, 0.012881145, 0.0029300607, -0.028000675, -0.023120716, 0.012185995, -7.833481E-4, 0.0145981675, 0.014737198, -0.006124279, 0.013395556, -0.024066122, 0.0066630207, -0.0034966087, -0.004563665, 0.04017972, -0.021035263, 0.005630722, 0.026985755, 0.0065066116, 0.0024260764, 0.015863342, 0.011831467, 0.031587653, -0.028695827, 0.033256017, 5.587275E-4, -0.008557307, 0.016628008, 0.021605289, -0.0070627327, -0.0072990838, -0.027110882, -0.0015936333, 0.038372327, -0.0073477444, 0.006162512, 0.008724143, -0.016183112, -0.003590454, 0.0057210913, -0.0056620035, 0.007945574, -0.037593756, -1.9475086E-4, -0.0145981675, 0.006033909, -0.007052305, -0.018491013, 0.0018004407, -0.005842743, 0.0076953196, -0.005171922, -0.011324007, -0.016753135, -0.016530687, -0.039567985, -0.020354016, -0.013284332, -0.021549676, 0.0062702606, -0.021786027, 0.012519667, 0.011699389, -0.010698372, -0.0030777804, -0.012797727, -0.0152516095, -0.007396405, 0.013416411, 0.005262292, -0.00972516, -0.008515597, 0.02000644, -0.0019307814, -0.014639877, -0.010545438, 0.0084113255, 0.015626991, -0.019325193, 0.002686758, 0.0029248472, -0.028807051, -0.00889793, 9.671286E-4, 0.026610374, 0.032588672, 8.2809845E-4, -0.01787928, 8.667662E-4, 5.4395554E-4, 0.028000675, 0.0014294039, -0.0017231051, 0.015362834, 0.016600203, 0.03525805, 0.0244276, -0.0072156657, -0.02355171, -0.017768055, -0.011483892, -0.037399113, -0.017059002, -0.006649118, 0.018365884, 0.012797727, -0.0043134107, -0.026610374, 5.852301E-4, -0.017017292, -0.025275685, -0.018824685, 0.01917226, 0.03903967, 0.019797895, -0.0109694805, 0.004852153, 0.003691251, -0.0048452015, -0.011991352, -0.008168022, 0.026193283, 0.025359102, 0.03714886, 0.017768055, -0.032338418, 0.009850287, 0.012749067, 0.01760122, 0.016461171, 0.010163105, -0.017170226, -0.010879111, 0.00373296, 0.009203797, 0.003390598, -0.014125465, 0.015265512, -0.033061374, -0.0037364357, -0.0026572142, 0.007139199, -0.0103160385, 0.01461207, 0.015362834, -0.031921327, 0.007312987, -0.018421497, -0.021035263, -0.008028992, -0.028181415, 0.033645302, 0.018199049, 0.00880061, 0.032366224, 0.036286872, 0.004087487, 0.0033193452, 0.0014554721, 0.0019238299, -0.022606306, 0.0040318747, -0.014528653, 0.025637163, -0.020117665, 0.017615123, -0.012867242, -0.0035974055, -0.009454051, 2.841429E-4, -0.007285181, 0.023760255, 0.010524584, -0.04543506, 0.004664462, -0.017837571, 0.023162426, -7.6119014E-4, -0.009933705, -0.025929127, 0.00871024, -0.01986741, -0.0015493174, -0.020228889, -0.025386909, -0.012234654, -0.01272126, -0.0032185484, 0.005199728, 0.18452084, 0.0024086977, 0.007681417, 0.040263135, -0.0028953033, 0.013937774, 0.026429635, 0.016933875, -0.0074033565, 0.0018716936, -0.004421159, 0.012192946, -0.007577144, 0.0029613425, 0.012790775, -0.013166157, -0.040346555, -0.039567985, -0.014028144, -0.04065242, -0.008564258, 0.009530518, 0.011157171, -0.022884365, -0.003321083, 0.010948625, -0.011574262, -3.6576883E-5, 0.020451337, 0.00525534, 0.0044628684, -0.0188942, -0.0073894532, 0.0015397591, -0.018699557, -0.015863342, 0.013096642, -3.093421E-4, 0.008793658, 0.0029735076, 0.020159375, -0.006697778, -0.011449134, -0.012651745, -1.6488109E-4, 0.0054187006, -0.013909969, 0.0018560528, -0.012679551, 0.0055055944, -0.03139301, -0.0066943024, 0.027875548, 0.02088233, 0.0064683785, -0.008320956, -2.226655E-4, 0.0069376053, 0.0010635807, 0.015376736, 0.0039658356, 0.029335365, -0.017225837, 0.032560866, 0.005331807, 0.019978635, -0.0304198, -0.01779586, 0.0021862495, -0.02170261, -0.009280263, -0.02747236, -0.0034983465, 0.012769921, -0.013750084, -0.0085920645, 0.0072990838, 0.009433197, -0.0043238383, 0.027639197, -0.028376058, -0.007479823, 0.02088233, -0.013430314, -0.017489996, -0.013770938, 0.0033541028, -0.024552727, -0.017754152, -0.015015258, -0.0068924204, -0.012199897, -0.005870549, 0.00746592, -0.009996269, 0.0106427595, 0.029947098, 0.01723974, 0.0032758983, -0.0030934212, -0.03447948, 0.018324176, 0.02092404, 0.0038789418, -0.028779244, -0.014459138, -0.0112962015, 0.0098433355, 0.027875548, -0.011317056, -0.0033992876, -0.011991352, 7.8682386E-4, -0.0107331285, 0.0012808155, 0.032783315, 3.838536E-4, 0.0010653187, 0.0271943, -0.011365716, 0.0035661238, -0.018185146, 0.015348931, -0.0071044415, 0.008946591, -0.026054254, -0.03244964, 0.0010192649, -0.018073922, -0.027402846, 0.011761952, -0.034118004, 0.021688705, -0.013284332, 0.002655476, 0.014208883, 0.012644794, -0.01829637, 0.0085920645, -0.013027127, -0.0044906745, -0.0015189046, 0.003395812, 0.0038650387, 0.0022592403, -0.01755951, 0.0024347657, -0.017920988, -0.016739232, -0.044295013, -0.02737504, 0.0084113255, 0.0055785854, 0.0075423867, 0.03954018, -6.421456E-4, -0.01963106, -0.03792743, -0.01161597, 0.029891485, -0.044461846, 0.032699894, 0.005022465, -0.029140724, -0.013743132, -0.0064683785, -0.17962697, 0.018018309, 0.0029457016, -0.035841975, 0.023357067, 0.013027127, 0.03709325, 0.016475074, -0.0036947266, -0.020951847, 0.026304508, 8.6568005E-5, -0.04682536, -0.0068090023, 5.174529E-4, 0.010580196, -0.003152509, 0.028612409, 0.01861614, 0.003069091, 0.04401695, -0.003406239, -0.016475074, 0.010747032, 0.02138284, 4.1013898E-4, 0.030197352, 0.010350795, -0.011831467, -0.0085920645, -0.035452694, -0.0039380295, 0.01710071, 0.0010679255, -0.010573244, 0.004139623, -0.011303153, -0.027611392, -0.0091551365, -0.011414377, 0.044990163, -0.0038650387, 0.028403863, 0.011497795, 0.011400473, 0.02134113, 0.032560866, -0.025247877, 0.01787928, 0.0027475837, -0.007952525, -0.015168191, 0.028334348, -0.006715157, -0.0034010254, 0.023843674, 0.005130213, 0.005432604, 0.0069654114, -0.013312139, -0.013277381, -0.012144285, -0.0031281787, 0.001781324, -0.008779755, -0.012749067, -0.008397422, 0.0052379617, -0.03784401, 0.010517632, -0.024955915, 0.01899152, 0.011532553, 0.013840453, 0.0077787377, -0.02285656, -0.03470193, 0.018588332, 4.1361473E-4, 0.016488979, -0.026095962, 0.050912846, 0.0029665562, 0.006263309, 0.004337741, -0.014556458, -0.004184808, 0.0026050778, -0.0103160385, -0.011727194, 0.0039241263, -0.011101559, -0.03169888, -0.01253357, 0.0027423701, 0.0059157335, 0.005283146, -8.8718627E-4, 0.012610036, -0.005105883, 0.009669548, -0.022828754, -0.035035603, 0.008981349, 0.021911154, 0.004949474, 0.01272126, 0.015223803, 0.01419498, 0.007125296, -0.008814513, 0.012776872, 0.028195318, 0.003395812, -0.011247541, -0.0055090706, -0.0030569257, -0.021716513, -0.0035695995, 0.019408612, 0.059004404, -1.6911716E-4, 0.02008986, -0.0021393267, -0.011595116, -0.009419294, -0.08336249, -0.0092455065, 0.0049842317, 0.03617565, -0.022870462, 0.02701356, -0.0101352995, 0.010288232, -0.027667003, 0.03650932, 0.0104967775, -0.017531704, 0.009655645, 0.0077995923, 0.010906917, 0.0057454216, -0.028862663, -0.020131567, -0.016878262, 0.020062054, 0.0036599692, 0.0045289076, -0.0056063915, -0.019964732, -0.014167174, 0.02512275, -0.018699557, 0.03383994, 0.013715326, 0.016767038, -5.9609185E-4, -0.016516784, 0.01640556, -0.036203455, -0.020423532, -0.019033229, -0.011351814, -0.023384875, 0.007229569, -0.054583244, 0.0023982704, 0.019964732, 0.0036947266, -0.01622482, -0.026415732, 0.013861308, -0.03484096, 0.03723228, -0.011838418, -0.015835537, -0.009467955, -0.014069852, -0.015404543, -0.0063571543, 0.01051068, 0.012158188, 0.01825466, 0.01295066, -0.010017123, -0.031504236, -0.015599185, -0.005095456, -0.008314004, -5.635066E-4, 0.008967446, 0.028584603, -0.019923022, -0.012359782, 0.017017292, -0.021535773, -0.02866802, 0.029335365, -0.031448625, -0.007285181, -0.021410646, 0.025275685, -0.018546624, 0.0020263647, 0.021355033, -0.042070527, -0.002516446, -0.03926212, 0.0095166145, -0.011483892, 0.015140385, 0.011671582, 0.018310273, 0.018379789, -0.010121396, -0.030781278, -0.008842318, 0.021438451, 0.010364699, -0.012234654, -0.0094262455, 0.026429635, 0.013875211, -0.011414377, 0.004567141, 3.4409965E-4, -0.010879111, -0.011838418, -0.07913597, 0.02548423, -0.013478975, -0.0017708967, -0.020673785, -0.004852153, 0.010948625, -1.479368E-4, -0.015321124, 0.017476091, -0.014945743, 0.010128347, -0.011303153, -0.021035263, -0.009419294, 1.35364335E-5, 0.020743301, 3.393205E-4, -0.010538487, 0.0037433873, -0.002472999, 0.0039832145, 0.014111562, 0.015654797, -0.004073584, 0.007737029, 0.0043898774, 0.0011774118, -0.014570362, -0.008529501, 0.022008475, -0.019005423, 0.009301119, 0.0048000165, -0.008884028, -0.031365205, 3.6495418E-5, -3.0086996E-4, 0.011282298, 0.0069063236, -0.015390639, -0.024914205, 7.264326E-4, 0.002631146, -0.003138606, 0.0066838753, -0.020312307, 0.0058218883, 0.010955577, 0.013937774, 0.045935567, 0.006238979, 0.008953542, -0.028584603, 0.029363172, -0.0106427595, 0.047909796, 0.010712274, 0.009315021, -0.010906917, 0.018310273, 0.003435783, 0.033200406, -0.025845708, 0.0028935655, -0.006697778, 0.0104064075, -2.7849482E-4, 0.0020420055, -0.031142758, -0.015154288, 0.0040353504, 0.0049042893, 0.04521261, 0.013798744, 0.016808746, 0.006586554, 0.017184129, -0.013569344, 0.016377755, 0.019061036, -0.021313325, -0.02355171, 0.020840622, 0.0026241944, 0.012262461, 0.008884028, 0.020896234, 0.0027892927, 0.027208203, -0.0030360713, 0.012116479, 0.0085920645, 0.0053908946, 0.0072087143, 0.013478975, -0.01769854, -0.011622922, 0.0015501863, 0.01774025, -0.009593082, 9.653907E-4, 0.0027945063, -0.035341468, -0.011546455, 0.013576296, -0.015043064, -0.030531025, 0.0027753897, 0.029502202, 0.024135636, -0.007681417, -0.018212952, -0.0027892927, -0.041681245, 0.019714478, -0.0067950995, -0.0055334005, -0.0170451, 0.036759578, 0.017406577, -1.6357769E-4, 0.03653713, -0.010594099, 0.05355442, 0.012665648, 0.0144174285, -0.03406239, -0.002744108, 0.007869108, 0.005658528, -0.013374702, -0.015418446, -0.00546041, -4.8790898E-4, 0.014132417, 0.0010896489, 0.033422854, -0.02323194, 0.070961, 0.016767038, -0.01382655, 0.016127499, -0.020951847, 0.009926754, 0.016433366, 0.01728145, -0.010608002, -0.007896913, 0.002502543, -0.0069723628, -0.0063432516, -0.02631841, -0.007813496, -0.0023252796, 0.004730501, 0.02972465, -0.027903354, -0.018324176, -0.008675482, -0.011282298, 0.027305525, 0.018866394, 0.010684469, -0.022272633, 0.010941674, -0.009440148, 0.0124432, -0.02138284, -0.005415225, -0.019200066, -0.002884876, 0.0020854524, 0.030058322, -0.01755951, -0.007410308, -0.0050850282, 0.014959646, 0.027388943, -0.008439131, 0.006378009, -0.020993555, -0.010858256, 0.029390978, -0.018713461, -0.0120400125, -0.016391657, -0.02088233 ], + "id" : "7ef52eec-bc51-4f0b-8ea2-caac9be7252f", + "metadata" : { + "source" : "movies.csv" + } + }, + "33a126b9-c940-427c-b51a-28df36515a04" : { + "text" : "Patrick McCormack-Brian Goodman-Ray Proscia-Sarah Lancaster-Jill Matson-Mike Baldridge-Joel Ewing-Ritchie Montgomery-Jim Antonio-Angela Sorensen-Jonathan Brent-Benita Krista Nall-Shane Edelman-Andrew Meeks-Morgan Rusler-Jane Edith Wilson-Dave Hager-Kyle Davis-Patrick Thomas O'Brien-Jaime Ray Newman-Deborah Kellner-Mercedes Cornett-Amy Acker-Robert Peters-James DuMont-Thomas Crawford-Malachi Throne-Alfred Dennis-Max Kerstein-Donna Kimball-Jan Munroe-Stephen Dunham-Brandon Keener-Anthony Powers-Lauren Cohn-Jeremy Howard-Jack Knight-Jamie Anderson-Kam Heskin-Ana Maria Quintana-Gerald R. Molen-Stan Bly-Jamie Moss-Jessica Collins-Frank Abagnale Jr.-Roger L��ger-Jean-Fran�_ois Blanchard-Mathieu Gaudreault-Guy-Daniel Tremblay-Alex Bisping-Patrice Dussault-Paul Todd-Jake Wagner-Ashley Cohen-Kelly Cohen-Ellis Hall-Steven Meizler-Fred Datig-Joe Garagiola-Dominic Bond-Jean-Fran�_ois Brousseau-Francis Campeau-Rapha�l Cardin-Marc-Antoine C��t��-Antoine Drolet-Dumoulin-L��on Dussault-Gagn��-Simon Houle-Gauthier-Vincent G��n��reux-S��bastien Jean-Pascal Larouche-William Lauzon-Florent Legault-Jason McNally-Julien Normandeau-David Parent-Lalibert��-Alexandre Pepin-Nicolas Radeschi-Jonathan Ren��-Samuel St-Amour-Jesse Heiman-Ryan Izay-Nick Zano-Nicole Andrews-Evis Xheneti-Gina Aponte,fbi-con man-biography-based on true story-attempted jailbreak-engagement party-mislaid trust-bank fraud,/ctjEj2xM32OvBXCq8zAdK3ZrsAj.jpg,/Ag6qhzsJd3k1NKuNrG9RmhZDMh7.jpg,11324-1422-106646-857-8358-13-1372-37165-594-745-16869-64682-1124-497-489-597-807-2567-24-68718-393\r\n615656,Meg 2: The Trench,Action-Science Fiction-Horror,en,An exploratory dive into the deepest depths of the ocean of a daring research team spirals into chaos when a malevolent mining operation threatens their mission and forces them into a high-stakes battle for survival.,8763.998,Apelles Entertainment-Warner Bros. Pictures-di Bonaventura Pictures-CMC Pictures-Gravity Pictures-China Film Group Corporation,8/2/23,129000000,352056482,116,Released,Back for seconds.,7.", + "embedding" : [ -0.001496632, -0.033740986, -0.011203062, -0.0481697, -0.01972849, 0.047115292, -0.0037528523, -0.0036904204, -0.026332399, -0.034323685, 0.02932913, 0.031909652, 0.023876743, 0.0052616238, 0.010981082, 0.0146090705, 0.017730666, -0.0155247385, 2.0593865E-4, -0.024112597, 0.0013743695, 0.0032239154, -0.011154504, 0.003711231, 0.017564181, 0.0025319613, 0.019617498, -0.0028614632, -0.018410482, -0.012097919, 0.015066905, -0.009212177, -0.0032048388, -0.022739094, -0.02135172, -0.008379752, -0.0012347647, -0.022752969, 0.023724131, 0.010093161, 0.0112446835, 0.0056223418, -0.0045332513, -0.018993178, -0.0052165342, 0.0011229075, 0.012014677, -0.021989912, -0.01123081, 0.031410195, 0.028718686, 0.020921633, -0.011133693, -0.01958975, -0.0037355102, 0.008060656, -0.006433957, 0.0076721897, -5.276365E-4, -0.0018313364, 0.015496992, -0.019298403, -0.03693195, -0.0026360147, 0.0021001406, -0.012257468, -0.005001491, -0.013547728, -0.018396607, 0.0026117356, 0.030161556, 0.016287796, 0.013950067, -0.007387778, 0.006246661, -0.029440122, -0.011820445, -0.0026290778, -0.008698848, -0.0045956834, 0.01123081, -0.0035499486, -0.010065414, 0.010800723, 0.0034961877, -0.0020897354, -0.021143612, 0.031965144, -0.029412374, 0.010481627, 0.016468154, 0.045977645, -0.0010960271, 0.003536075, -0.008504615, 0.024431692, -0.028357968, 0.02088001, -0.009947487, -0.03213163, -0.0025666459, -0.011334863, -8.77407E-5, -0.019298403, 0.0057645477, -0.0072837244, -0.008331194, -0.0037667262, 0.019659119, 0.0040858225, 0.0065102624, -0.009864245, 0.012645933, -0.04633836, -0.0075334525, -0.009038756, 0.023155307, -0.021795679, -0.014047183, -0.027275814, 0.03171542, 0.014026373, 0.0070339967, -0.031770915, 0.03843032, 0.031992894, -0.01523339, -0.016398786, 0.009808749, 0.007748496, 0.029162645, -0.006995844, 0.017564181, 0.015011409, -0.012500259, 0.03843032, -0.022697473, 0.0044569457, -0.01914579, -0.010107035, 0.020075332, 0.015663477, -0.027608784, -0.016149057, -0.02039443, -7.0669473E-4, 0.0047517633, -0.0032950183, 0.012514132, 0.009545147, 0.015663477, 0.01763355, 0.003915869, 0.019617498, -0.0010682796, 0.0034458954, -0.0037806, 0.003315829, -0.01263206, -0.01843823, -0.0020932036, -0.006284814, 0.006815485, -0.014511954, 0.007380841, 0.018507598, 0.015816087, -0.03238136, -0.0055807205, -0.0037840684, 0.0027868918, 0.016731756, -0.032436855, 0.009448031, 0.0029759218, 0.021379465, -0.0017524294, -0.010398384, -0.033990715, -0.026249155, 0.013159262, 0.002497277, 0.027914008, 0.042314973, -0.0034701745, 0.016801124, 0.018854441, -0.021948291, -0.0026082671, -0.020005964, 0.0030695696, 0.006673279, 0.0043979823, 0.0036904204, -0.6317556, -0.028316347, 6.2171795E-4, -0.013603223, 0.009898929, 0.007242103, 0.0023273234, -0.002740068, -0.033241533, -0.002499011, -0.029162645, 0.018368859, 0.017716793, -0.022961074, -0.01545537, -0.020449923, 0.0078039905, -0.011258557, 0.014178984, -0.0030869117, -0.037764378, 0.023529898, 0.02597168, -0.002655091, 0.014234479, 0.0037285732, -0.0048176637, -0.013686465, 0.016704008, 0.009468842, -0.018660208, 0.02866319, 0.009357852, -0.012347647, 0.037708882, 0.0016726553, -0.011015766, 0.049362842, 0.018160753, 0.03057777, -0.020463798, -0.0024070975, 0.01102964, 0.006499857, -0.019964343, 0.029939577, 0.0050847335, -4.7387564E-4, -0.01689824, -0.00562581, 9.304091E-4, 0.004828069, -0.019714614, -0.018313365, -0.012444763, -7.5351866E-4, 0.008747406, -0.025735827, 0.011001892, 0.011209999, -0.026096545, 0.029606607, 0.010224962, 0.009815686, 0.004554062, 0.024847906, -0.0016362367, -0.006420083, -0.0022198018, -0.034823142, 0.008053718, 0.01947876, -0.02010308, 0.0020203665, 0.009767128, 0.0038395633, 0.027914008, 0.005011896, -0.0052165342, 0.0138876345, -0.018979305, -0.0045401882, 0.0059449067, 0.015594107, 0.026387895, 0.0027522075, -0.04167678, 0.0034840482, 0.0257497, -0.0013691668, 0.008997134, 0.00778318, 0.01490042, 0.0049043745, -0.014102678, -0.0071657975, -0.01921516, 0.0047378894, 0.039401483, -0.07452984, -0.015483118, -0.01910417, 0.053608213, -0.01781391, 0.018882189, -0.0022978417, 0.0042835237, -0.016398786, 0.033574503, -0.016662387, -0.012638996, -0.0018504129, -0.025222497, -0.009496589, -0.018049764, -0.03335252, 0.01571897, 0.018285617, -0.0036800152, -0.005663963, 0.0052754977, 0.004845411, 0.011085135, -0.006430488, 0.016648514, 0.036016285, 0.0048939693, -0.008331194, 0.0054385145, 0.014158173, -0.0013743695, -0.0061634183, 0.021656942, -0.017578056, 0.012923408, 0.014581323, 0.017272832, -0.013748897, 0.01696761, -0.0010604756, -0.007887233, -0.0036279885, 0.0012104857, -0.016593019, 0.0017515623, -0.019464888, -0.035988536, -0.004484693, -0.007838675, -0.0044465405, 0.004481225, 0.03079975, -0.002668965, 0.022572609, 0.011626212, -0.006680216, -0.025444478, -0.03213163, 0.0025562404, -0.016468154, 0.0033695898, 0.014137362, -0.00971857, -0.024445567, 0.031576682, -0.0061738235, -0.011938372, 0.002897882, -0.0041135703, -0.024709169, 0.031160468, -0.008102276, 0.0071588606, 0.009392536, -0.023765752, 0.02733131, 0.0074640834, 0.033990715, 0.009226051, -0.0015538612, -0.0017038713, -0.011050451, -0.022364503, -0.0042661815, 0.028829675, 0.021129739, 0.01685662, -0.009191367, -0.024209714, 0.0023429315, -0.017383823, 0.009142809, -0.0039921748, 0.0012876585, 0.0039574904, 0.029523363, 0.0032013704, -1.6334186E-4, -0.0028250446, -0.00464771, 0.034545664, 0.007942729, 0.013915382, -0.008920829, 0.011140631, -0.03279757, -0.0011775355, -0.030522274, 0.0067218374, -0.0111683775, 0.013804392, -0.0036765467, -0.008025971, 0.013686465, 0.010245773, 0.022752969, -0.0057298634, 0.0016050207, -0.022309007, 0.004054607, 0.0123407105, -9.850371E-4, 0.01287485, 0.020991001, -0.030106062, -0.0015503928, 0.016704008, -0.019312276, -0.0028822739, -0.02648501, 1.5174426E-4, 0.017689046, 0.019423265, 0.005719458, 0.005150634, -0.022295134, 0.020269565, -0.0044257296, 0.03818059, -0.014692313, -0.0019943533, 0.011438916, 0.02187892, 0.010218025, 0.004009517, -0.015691224, 0.013457548, 0.012514132, -1.5694692E-4, 0.036432497, -0.0058581955, 0.045311704, -0.014553576, 0.0059518437, 0.012736113, -0.010592616, 8.7491405E-4, 0.01418592, 0.026512757, 0.021615319, 0.014567449, -0.02493115, 0.026193662, 7.9904194E-4, 0.002922161, 0.0015382533, -0.0068675117, -0.005955312, -0.019839479, -0.019950468, -0.0151501475, -0.0073530935, -0.003718168, 0.014414838, -0.0066940896, -0.013020525, 0.006420083, 0.003985238, 0.009343978, 0.022669725, -0.020796768, -0.0173422, 0.020533167, 0.0358498, -0.015108526, -0.017952647, 8.48684E-5, -0.012021614, -0.043313883, -0.024986643, -0.0107036065, 0.031215962, -0.022697473, 0.009635327, -0.008990197, 0.0013639642, 0.004821132, -0.014650691, 0.003884653, 0.013013588, -5.3197204E-4, 0.014539702, -0.0040372643, -0.006642063, 0.01943714, -0.0056049996, -0.0034563008, -0.022544863, -0.0019631372, -0.019825604, 0.014955915, 0.00707215, -0.042620193, 0.016815, -0.017536433, -0.016787251, -0.0054211724, -0.0044396035, -0.0012477714, -0.012576564, -0.01914579, -0.016093563, -0.028163735, 0.0104330685, 0.08030133, 0.053719204, 0.01405412, 0.011071261, -0.00909425, 0.0121603515, -0.011057388, -0.013249442, 0.0018850972, -0.020075332, 0.037792124, 0.005324056, 0.020755148, -0.0011142364, 0.021643067, -0.01093946, -0.010079288, -0.0038430318, -0.0052130655, -0.005206129, -0.020907758, -0.01483105, 0.025985554, 0.027137076, -0.004019922, -0.015580234, 0.023738006, -0.005154102, 0.006281345, 0.014997535, -0.0102527095, 0.010495501, 0.019020926, 0.014442585, 0.0014714858, -0.011882876, 0.028746434, 0.008081466, 0.0282886, 0.006649, 0.010169467, -0.0042592445, 0.0062119765, -0.012507196, 0.02866319, -0.037459154, -0.0117094545, 0.0296621, 0.037736632, -0.040011927, 0.010710544, 0.0068432325, -0.013415927, -0.004207218, 0.016149057, 0.008074529, -0.009496589, 0.0042835237, -0.02154595, 0.01029433, -0.0034216163, -0.033546753, 0.01392232, -0.011973056, -5.922362E-4, -0.015510865, -0.013776645, -8.0554525E-4, -0.02201766, -0.0042661815, 5.731598E-4, -0.0153443795, -0.008906955, 0.005167976, 0.023696383, 0.0033262342, 0.027359057, 1.9802626E-4, 0.015469244, 0.008990197, -0.028857423, -0.023821248, 0.024431692, -0.027761396, -0.0022631574, 0.01914579, -0.006264003, 0.0056917104, 0.008754344, 0.009343978, -2.766081E-4, -0.0015165755, -0.016107436, -0.02250324, 0.040067423, 0.009364788, 0.013242505, 0.017203463, 0.0049459958, -0.0027816892, 0.0062050396, -0.032103885, 0.004026859, -0.0060489597, -0.012680618, -0.0029568453, -0.010745228, 0.0014853595, -0.024251334, -0.030439032, -0.023696383, -0.019617498, 0.005330993, -0.0065553524, 0.0026533569, 0.009781001, 0.025402857, 0.0033227657, -0.011681707, 0.012673681, 0.0044465405, -0.012798545, 0.019312276, 0.013644844, -0.016717883, 0.014622944, 0.0013917116, -0.039900936, 0.0011575919, 0.017439317, -0.019007053, 0.011882876, -0.024986643, -0.013304937, -0.013048273, -0.02670699, 0.004963338, 0.0117094545, -0.006923007, 0.00896245, -0.021698562, 0.014595197, 0.017938772, 0.02316918, 0.001787981, -0.032853067, -0.0033678554, -0.018202374, 0.00907344, 0.029578859, -0.010356762, 0.019020926, -0.009461905, -0.0030626329, -0.021795679, -0.033075046, -0.021004874, -0.007568137, 0.041232817, 0.014567449, 0.04525621, -0.0072143557, 0.030022819, 0.016079688, 0.020644156, 0.023432782, -0.008365878, -0.01490042, -0.025874564, 0.0045818095, 0.0068605747, 0.010599554, 0.008358941, 0.009649201, 0.0021088116, 0.022003785, 0.014220606, 0.017328328, -6.6117145E-4, -0.026637621, -0.021559825, 0.0042731185, -0.03091074, -0.0018521472, -0.027581038, -0.0135130435, 0.032409105, 0.0026967123, -0.013762771, 0.0034337558, 0.02932913, -0.0037285732, 8.68194E-5, -0.023557646, 0.020991001, -0.031965144, -0.020130828, -0.024043228, -0.013783582, -0.0060316175, -0.008920829, 0.015538612, -8.4803364E-4, -0.013360432, -0.0036453307, 0.027872385, -0.024667548, -0.02537511, 0.02135172, -0.016551398, -0.002172978, -0.01490042, -0.020158576, -0.030716507, 0.0039921748, 4.912178E-4, -0.0067044953, 0.004696268, -0.01689824, -0.04919636, 0.021809552, -0.018035889, 0.04253695, 0.01071748, 0.0453672, 0.03313054, 7.118974E-4, -0.017439317, 6.0524285E-4, 7.634904E-4, 0.0055321623, 0.02512538, 0.020033712, -0.02479241, -0.0011515222, -0.0105232475, 0.0020515823, -0.034323685, -0.03729267, 0.036904205, 0.024667548, 0.012992777, -0.030328041, -0.0012893927, -0.03326928, 4.7907833E-4, -7.869024E-5, -0.00833813, 0.007901107, -0.028912919, -0.026471136, 0.0039436165, -0.009149745, 0.0114250425, 0.017772287, -0.026235282, 0.0013917116, -0.01256269, 0.016620766, -0.006482515, -0.014040247, 0.019312276, -0.030161556, 0.014955915, 1.08497145E-4, 0.03168767, 0.0027313968, -0.006437425, -0.0034146796, 0.029079404, 0.008143898, 0.015663477, -0.0045644674, -0.0096214535, 0.031743165, 0.0246398, -0.0067010266, -0.01361016, -0.0075265155, 0.0013197415, 0.02475079, 0.008941639, 0.014928167, 0.005254687, -0.016440406, -0.00929542, 0.007443273, -0.0130760195, 0.009489653, -0.038680047, 0.003458035, -0.0089763235, 0.012576564, -0.017272832, -9.555553E-4, -0.0043112715, -0.0016501105, -0.0051228865, 0.00219032, -0.017786162, -0.028746434, -0.0246398, -0.045616925, -0.02688735, 0.0017671703, -0.0037701945, 0.0060212123, -0.017841658, 0.008789028, -0.0017428913, 8.1334927E-4, 0.007880297, -0.004529783, -0.008088402, 0.011549906, 0.028718686, -0.010724417, -0.012604312, -0.0041794707, 0.027026087, 0.008046782, 0.002521556, 5.735933E-4, 0.026623748, 0.024390072, -0.024612052, 0.0021417618, 0.0048176637, -0.019534256, 8.7534764E-4, 0.018452102, 0.027692027, 0.030217052, -0.002977656, -0.020089205, -0.009219115, -0.003253397, 0.046976555, -0.008220203, 0.012375395, 0.030328041, 0.026290778, 0.019672994, 0.029717596, -0.015649602, -0.033519007, 0.0058859433, 0.0014038512, -0.017508687, 8.762147E-4, -2.150433E-4, 0.027914008, 0.010446942, -0.012104857, -0.040067423, -0.015594107, -0.012493322, -0.030411284, -0.0042349654, 0.020311186, 0.04592215, 0.00680508, 0.0018920342, 0.011882876, 0.010301268, -5.562511E-4, -0.015386001, -0.0032742077, 0.036487993, 0.001481024, 0.017286707, 0.0132563785, -0.02999507, -0.0075612, -6.6420634E-4, 0.01351998, 0.0052095973, 0.018896062, -0.022253513, -0.023959985, -0.010738291, 0.0040858225, -0.007588947, -0.0027244599, 0.027178697, -0.03143794, 0.0049737436, 0.014955915, 0.016551398, -0.012382332, 0.012722239, 0.015760593, -0.0044465405, 0.003860374, -0.0035256695, -0.01585771, 0.013353495, -0.018174628, 0.016412659, 0.017980395, 0.00962839, 0.026471136, 0.032214873, -0.006815485, -3.4337558E-4, -0.026207535, -0.0038985268, -0.013173136, -0.0042106863, 0.006617784, 0.022322882, -0.029634355, 0.006995844, -0.021809552, 0.002504214, -0.007623632, -0.005459325, -0.0040927595, 0.027123204, 0.016204553, -0.05799232, -0.0032169784, -0.0076999376, -0.009101187, -0.002764347, -0.0016371039, -0.025721952, -0.016745629, 0.0012009474, 0.005452388, -0.024445567, -0.030272547, 0.0065761628, -0.014345469, -0.007887233, 0.029578859, 0.18324463, -0.005993465, 0.0022250044, 0.048336186, -0.0015001005, 0.005490541, 0.016426533, 0.011112883, 1.4534933E-4, 0.013291063, 0.008934702, 0.008435247, 0.0020550508, 0.0056743682, 0.027095456, -0.012264404, -0.024390072, -0.026318524, -0.01071748, -0.01585771, -0.013048273, 0.017800035, -4.4114224E-4, -0.01630167, 0.001945795, 0.0014541436, -0.0061946344, 0.01825787, 0.012812419, 0.0028371841, -0.0153305065, -0.015621855, 0.009302357, 0.0059830593, -0.02563871, -0.0060940497, -0.003693889, 0.0033747924, 0.011938372, -0.0025857221, 0.0024938085, -0.005254687, 7.348758E-4, -0.00898326, 1.8121246E-7, 0.015580234, -0.035877544, -0.008754344, -0.012097919, -0.002426174, -0.036321506, 0.014595197, 0.03662673, 0.030633265, -0.013547728, -0.012188099, 1.9618365E-4, 0.0052269395, -0.009087314, -9.754988E-4, 0.008185519, 0.044812247, -0.021018747, 0.016815, -0.012153415, 0.02250324, -0.0296621, -0.0076444424, 0.00642702, -0.039567966, -0.013894572, -0.029245889, 3.626688E-4, 0.008657227, -0.0137974555, -0.008067592, 0.008032908, 0.00898326, -0.004096228, 0.017383823, -0.026665369, 0.004231497, 0.0039921748, -0.020602535, -0.01810526, -0.017050853, 0.025444478, -0.012895661, -0.0120701725, -0.011286304, -0.01123081, -0.042065244, -0.012708365, 0.005174913, 0.0026498884, 0.0020550508, 0.030993983, 0.015372127, -0.022905579, 0.009774065, -0.037431408, 0.031215962, 0.013908446, -0.0078109275, -0.023890616, -0.021670815, -0.0023810843, 0.019326149, 0.035100617, -0.0065761628, -0.031077225, -0.017564181, -0.0046754577, -0.017786162, 9.0613E-4, 0.022600356, 0.022544863, -0.008171645, 0.026776358, -0.013804392, -0.0054315776, -0.019159663, 0.016606892, -0.0027747522, 8.833684E-5, -0.037015196, -0.02150433, 0.0035395434, 0.0021868516, -0.029967325, 0.01298584, -0.012139541, 0.011043514, -0.0014688844, 0.0019440608, 0.00498068, 0.02459818, -0.0034094767, -0.0043528927, 0.0037424471, -0.0013379508, -0.019659119, -0.0023446656, 0.011882876, 0.0146090705, -0.021240728, -0.0029915296, -0.007921917, -0.0151224, -0.032325864, -0.01992272, -0.013533854, 0.008906955, 0.0282886, 0.038069602, -7.587213E-4, -0.017175715, -0.045866653, -0.020505419, 0.036904205, -0.052637048, 0.019908847, 0.017425444, -0.010800723, -0.023627015, -0.00627094, -0.17880504, 0.023779627, 0.0038777161, -0.03179866, 0.022031533, 0.013957004, 0.043730095, 0.0048246006, -0.010037666, -0.022253513, 0.024556557, 0.010682796, -0.024723042, 0.008955513, 7.6305686E-4, 0.004835006, 0.0066871527, 0.03604403, 0.030439032, -0.009954424, 0.040011927, -0.012708365, -0.01847985, 0.008712722, 0.0020567852, -0.0076305685, 0.031104973, 0.008012097, -0.0022302072, -0.0031007857, -0.03046678, -0.00876128, 0.015358253, 0.011515222, -0.015913203, 4.7170787E-4, -0.013221694, -0.0035013906, -0.013575476, -0.016107436, 0.0447845, 0.005119418, 0.018798945, 0.0019787452, 0.017772287, 0.016759504, 0.027692027, -0.022475492, 0.022572609, -0.014081867, -0.021115864, -0.055633783, 0.023391161, -0.0030539616, -0.007110303, 0.012132604, -0.0051090126, 0.0034008056, 0.018285617, -9.052629E-4, -0.022988822, -0.0055321623, 0.0039436165, -0.0057645477, -0.013686465, -0.026568253, -0.0066281892, -0.0012156883, -0.033990715, 0.0108839655, -0.02121298, -0.002159104, 0.011099009, -0.0037840684, 0.012382332, -0.019839479, -0.03862455, 0.016690135, 0.0012945953, 0.010856218, -0.005719458, 0.037015196, 0.002103609, 0.0067253057, -0.0014446054, -0.009267673, 0.0016128247, 0.0070166546, 0.008511553, -0.016440406, 0.0011255089, -0.026124293, -0.025721952, 0.00707215, 4.3463893E-4, 0.006475578, -0.0059206276, 0.015552486, 0.008879207, -0.01859084, 4.1274438E-4, -0.014553576, -0.021615319, 0.03235361, 0.016357165, -0.0056292787, 0.0071657975, 0.023280172, 0.014803303, -0.0033245, -0.0142761, -0.0049910857, 0.025028264, 0.0058512585, -0.013603223, 0.01060649, -0.01296503, -0.027650407, -0.0050847335, 0.024709169, 0.047198534, -9.1133267E-4, 0.02054704, 1.1532564E-4, 0.006902196, -0.0146090705, -0.08413049, -0.008858397, 0.008352004, 0.049140863, -0.017619677, 0.04234272, -0.0012009474, 0.008136961, -0.034656655, 0.034739897, 0.012146478, -0.031493437, 0.0129719665, -8.31125E-4, 0.012437827, 0.0025978617, -0.01870183, -0.013755834, -0.008074529, 0.02946787, -0.008546237, -0.0040927595, -0.017938772, -0.026124293, -0.005355272, 0.0036696098, -0.01881282, 0.026276903, 0.013193947, -0.0019284528, 0.0058755376, -0.013110705, 0.018465975, -0.04142705, -0.007790117, -0.031909652, -0.014997535, -0.030494528, 0.0033695898, -0.038902026, 0.0044257296, 0.01656527, 0.0044638827, -0.026873475, -0.014553576, -0.0039887065, -0.048336186, 0.027192572, -0.015399875, -0.015205642, -0.008684974, -0.0076652532, -0.030383537, -0.012132604, 0.01102964, 0.020352807, 0.023196928, 0.006413146, -0.020380555, -0.023321792, -0.015399875, 0.011369547, -0.017397696, 0.0050361753, 0.015732845, 0.018022016, 0.0021989911, -0.020935506, 0.009101187, -0.026845727, -0.02150433, 0.03462891, -0.03335252, -0.0023810843, -0.02722032, -0.0010708809, -0.028413463, -0.013554664, 0.023266297, -0.037348166, -7.8603526E-4, -0.030522274, 0.008664164, -0.009121998, 0.013270252, 0.019617498, 0.0076721897, 0.0076791267, -0.005650089, -0.030688759, -0.0023464, 0.01667626, 6.3429103E-4, 0.016495902, -0.0059899963, 0.011334863, 0.0034944536, -0.0067218374, -0.008573985, -0.0016605158, -0.016870493, -0.0039262744, -0.08107826, 0.037819874, -0.01870183, 0.0054489197, -0.013159262, -0.015552486, -0.008754344, -0.013415927, -0.004165597, 0.026540505, -9.1740245E-4, 0.03013381, -0.010301268, -0.0014194592, -0.0070444024, 0.0056604943, 0.0036696098, -0.009323168, 0.0142761, 0.002499011, -0.015552486, 0.016384913, 0.020047585, 0.006097518, -7.223027E-4, 0.021185232, -0.015580234, 0.009170556, -0.013429801, -0.016357165, 0.026623748, -0.0076721897, -0.005500946, 0.0052754977, -0.01958975, -0.022711348, -0.016329417, -0.0039193374, 0.010481627, 0.009101187, 0.0042661815, -0.0116054015, 0.0038985268, 0.0012477714, 0.003489251, 2.0008565E-4, -0.016024195, 0.004519378, 0.012604312, 0.010009918, 0.0153443795, 0.007103366, -0.0065900367, -0.013644844, 0.02250324, -0.0162323, 0.038152844, -7.153658E-4, -9.650935E-4, -0.009760191, 0.027636532, 0.0026082671, 0.024445567, -0.035183858, 0.008483805, 5.536498E-4, 0.010259646, -0.0068328273, 0.0077068745, -0.037986357, -0.025472226, -0.008178582, 0.0066212523, 0.04053913, 0.0060697705, 0.012056299, 0.016051942, 0.0053518033, -0.0030314168, 0.018798945, 0.020713525, -0.003797942, -0.029051656, 0.024154218, 0.002488606, 0.007065213, -0.0015434559, 0.011993866, -0.0024521872, 0.015746718, 8.0251036E-4, 0.022447746, 0.014983662, -0.0013457548, 0.008234077, 0.0058755376, -0.0047933846, -0.013783582, -0.0057229265, 0.03146569, -0.0012789874, -0.0046060886, -0.017938772, -0.020741273, -0.03720943, 0.008462994, -0.019048674, -0.021365592, 0.012368458, 0.008268761, 0.03437918, 0.008684974, -0.020158576, 0.012722239, -0.038791034, 0.009378662, -0.00778318, -0.019950468, -0.006649, 0.030106062, 0.010245773, -0.0032585997, 0.044562522, 4.019055E-4, 0.047198534, 0.0054072984, 0.03329703, -0.03238136, -0.0057229265, 0.0050743283, -0.003797942, -0.013755834, -0.015607981, 0.0037806, -0.0071727345, 0.015732845, 0.009475779, 0.024570432, -0.023959985, 0.076805145, 0.012777734, -0.01829949, 0.013846014, -0.0049668066, 0.014317721, 0.01718959, 0.014456459, -0.010932524, -0.007859485, -0.0023602736, -0.018646335, 0.006340309, -0.029384626, 0.011334863, -0.011140631, 0.01859084, 0.020241817, -0.010460816, -0.018979305, -0.0117857605, -0.007318409, 0.031104973, 0.0060212123, -0.012292152, 6.403608E-4, 0.0116054015, -0.014706187, 0.0051020756, -0.041066334, 0.0018694893, -0.03279757, -0.006458236, -0.00340254, 0.03596079, -0.016287796, -0.004023391, 0.0020550508, 0.03360225, 0.007852549, -0.0035343405, -0.006333372, -0.025888437, -0.023876743, 0.030078314, -0.018507598, -0.016176805, -0.029440122, -0.007790117 ], + "id" : "33a126b9-c940-427c-b51a-28df36515a04", + "metadata" : { + "source" : "movies.csv" + } + }, + "ed7083cc-3040-4899-b48e-3cc6546b4a0b" : { + "text" : "2675,Signs,Drama-Thriller-Science Fiction-Mystery,en,A family living on a farm finds mysterious crop circles in their fields which suggests something more frightening to come.,35.466,Touchstone Pictures-Blinding Edge Pictures-The Kennedy/Marshall Company,8/2/02,72000000,408247917,106,Released,It's not like they didn't warn us.,6.675,5066,Mel Gibson-Joaquin Phoenix-Rory Culkin-Abigail Breslin-Cherry Jones-M. Night Shyamalan-Patricia Kalember-Ted Sutton-Merritt Wever-Lanny Flaherty-Marion McCorry-Michael Showalter-Kevin Pires-Clifford David-Rhonda Overby-Greg Wood-Paul L. Nolan-Ukee Washington-Babita Hariani-Adam Way-Angela Eckert-Jose L. Rodriguez-Paul Wilson-Thomas Griffin-Derek Mears-Chuck Pressler,symbolism-farm-faith-alien-family relationships-rural area-alien invasion-crop circle-alien attack-loss of faith-alien encounter-aliens,/hyZkNEbNgnciUVTyu4NZTjlCh4L.jpg,/jw88BtmMliB1Mbwf3JyfYszS4Xk.jpg,6947-74767-602-37686-745-8645-563-686-9697-9741-544-503589-75-7191-17654-601-644-6171-7453-8836-607\r\n667538,Transformers: Rise of the Beasts,Action-Adventure-Science Fiction,en,When a new threat capable of destroying the entire planet emerges Optimus Prime and the Autobots must team up with a powerful faction known as the Maximals. With the fate of humanity hanging in the balance humans Noah and Elena will do whatever it takes to help the Transformers as they engage in the ultimate battle to save Earth.,5409.104,Skydance-Paramount-di Bonaventura Pictures-Bay Films-New Republic Pictures-Tom DeSanto/Don Murphy Production-Hasbro,6/6/23,200000000,407045464,127,Released,Unite or fall.,7.34,1007,Anthony Ramos-Dominique Fishback-Luna Lauren Velez-Dean Scott Vazquez-Tobe Nwigwe-Sarah Stiles-Leni Parker-Frank Marrs-Aidan Devine-Kerwin Jackson-Mike Chute-Tyler Hall-Sean Tucker-Jay Farrar-Lucas Huarancca-Amiel Cayo-Santusa Cutipa-Yesenia Inquillay-Sumac T'Ika-Josue Sallo-Mellissa Alvarez-Gloria Cusi-Michael Kelly-Jason D. Avalos-Lesley Stahl-Peter Cullen-Ron Perlman-Peter Dinklage-Michelle Yeoh-Pete Davidson-Liza Koshy-John DiMaggio-David Sobolov-Michaela Ja�� Rodriguez-Colman Domingo-Cristo Fern��ndez-Tongayi Chirisa-Luke Jones,peru-alien-end of the world-based on cartoon-based on toy-robot-duringcreditsstinger-1990s-brother brother relationship,/gPbM0MK8CP8A174rmUwGsADNYKD.jpg,/woJbg7ZqidhpvqFGGMRhWQNoxwa.jpg,496450-569094-298618-385687-877100-598331-462883-979296-536437-532408-976573-447277-697843-603692-763261-9281-886563-324857-129120-980372-412117", + "embedding" : [ 0.0034925824, -0.05620747, -0.01392956, -0.033974536, -0.026663216, 0.01459546, -0.008140299, 0.0072773453, -0.020208053, -0.03568685, 0.028837586, 0.032099143, -3.4144407E-4, -0.001255359, 0.010307874, 0.023904484, 0.02701655, -0.022871656, 0.007250166, -0.01982754, 0.0014778923, 0.017666759, -0.008473249, -0.0023782174, 0.016443675, 0.005534452, 0.01902574, -0.019338306, -0.007909272, -0.0109058255, 0.0182783, -0.021743702, 0.0026228342, -0.017843425, -0.033376582, 0.0021862614, 0.01751727, -0.032479655, 0.028402712, 0.0025582826, 0.023279352, 0.018441377, -0.020697286, -0.018753944, 0.0059081716, 0.0012392212, 0.025983725, -0.005272848, -0.008099529, 0.033838637, 0.018006504, 0.023537558, -0.033376582, -0.032642733, -0.012400705, -0.003400851, -4.6799923E-4, 0.0012579071, 0.0078481175, 0.0020078951, 0.02276294, -0.018006504, -0.035550956, -0.01392956, -0.010892236, -0.0033855624, -0.0052830405, -0.007012344, -1.0760372E-4, -0.008235428, 0.012536604, 0.02711168, 0.022545502, 0.007535552, 0.010960185, -0.024733461, -0.02053421, -0.002891233, 0.0066046496, 0.014676999, 0.014731359, 0.0066929837, 0.002237223, 0.0044710487, 0.010518516, 0.02196114, -0.038975585, 0.022056269, -0.030414004, 0.0044846386, 0.011259161, 0.02697578, 0.013120966, 0.0205478, 0.0026466164, 0.0010888838, -2.2784172E-4, 0.02342884, -0.0240132, -0.047944866, -0.021621395, -0.0043997024, 0.0042196373, -0.0135694295, -0.007236576, 8.7994046E-4, 0.002802899, 3.8369992E-4, 0.032262217, -0.025195515, 0.008846969, -1.4980647E-4, 0.012380321, -0.03288735, -0.005819838, -0.004973872, 0.028592968, -0.0015840627, -0.016525215, -0.020411901, 0.02058857, 0.03666532, -0.0029965541, -0.04120432, 0.016117519, 0.027967837, 0.012855964, -0.00732491, -0.010076847, -0.020248823, 0.014174176, -4.382715E-4, 0.015777774, 0.013718917, -0.01899856, 0.040497646, -0.03582275, 0.0028062966, -0.027138859, -0.010090437, 0.025073208, 0.037806865, -0.02558962, -0.011558137, -0.018876253, -0.007141447, 0.023958843, 0.00985941, 0.011510572, 0.015832134, 0.022069858, 0.008092734, 0.022586271, 0.036121726, 0.027288347, -0.00438951, -0.02696219, 0.0011984517, -0.0044234847, -0.006689586, -0.013766482, -0.005021436, -0.006098429, -0.007752989, 0.00948569, 0.018618045, 0.0014354241, -0.012672502, -0.012278398, -0.009567229, -0.013195709, 0.022260116, -0.022300886, 0.023863714, -0.0031613305, 0.011530957, 0.012760836, -0.002344243, -0.02186601, -0.014962385, 0.0083441455, 0.0020996262, 0.032479655, 0.03892123, -0.0084392745, 0.005819838, 0.0101176165, -0.027641682, -0.008704276, -0.001575569, -1.09567874E-4, 0.013861611, -0.004892333, -0.013413146, -0.6444833, -0.028919125, 0.010790313, -0.0084053, 0.013345198, 0.020873955, -0.003767776, -0.0023833136, -0.0352248, -0.009750691, -0.019447025, 0.016484445, 0.018563686, -0.005215091, -0.040687904, -0.02341525, -1.1137278E-4, -0.019148048, 0.02182524, 0.007882092, -0.030305285, 0.023822945, 0.019270357, 0.008276197, 0.012638527, 0.0010285791, 0.0011670253, -0.01024672, 0.0053679766, 6.038974E-4, -0.012563783, 0.0014430684, 0.0016027488, -0.020901134, 0.03563249, -0.0043691252, -0.01136788, 0.04587921, 0.028103735, 0.029435538, -0.028212454, -0.019555742, 0.026432188, -0.0017182621, -0.024230639, 0.022926016, 0.013861611, -0.004817589, 0.013127761, -0.018808303, -0.0019739205, 0.0292181, -0.007596706, -0.0033176134, 0.003239472, 0.009594409, 0.024189869, -0.04400382, 0.013752892, -0.014717769, -0.006451764, 0.021689344, -0.01024672, 0.011218391, -0.0054325284, 0.02197473, -0.0212137, -0.020085745, -0.0060780444, -0.015438029, 0.017911375, 0.021784471, -0.002648315, -0.002430878, -0.0011228584, 0.020248823, 0.03783404, 0.015927263, 0.018536506, 0.014799308, 5.291534E-4, -0.017462911, -0.008575173, 0.009506075, 0.027397064, -0.002449564, -0.015139053, 0.011048519, -0.0047394475, -0.005962531, -0.0018227338, 0.021757292, -0.0051267575, -0.008996457, -6.0583498E-6, -0.008520814, -0.017394962, 0.007114268, 0.022382423, -0.036909934, -0.023877304, -0.012441475, 0.028293993, -0.0042502144, 0.0055854134, -0.0052015013, 0.0026041481, -0.006957985, 0.040361747, -0.01394315, 0.006553688, 0.009614794, -0.022341654, -0.015682645, 0.0069342027, -0.027505783, 0.02412192, 0.012441475, 0.0053509893, -0.0016103929, 0.013263659, 0.010987365, -0.0070531135, -0.019909078, 0.015872903, 0.011952242, 1.3536729E-4, -0.0046918835, -0.0098254355, 0.009839025, -0.0065502906, 0.0040803417, 0.01831907, -0.014948796, -0.012767631, 0.0019501384, 0.00983223, -0.010518516, 0.015179822, 1.5564584E-4, -0.037100192, 0.0038255327, -0.012366731, 1.13283844E-4, -0.006971575, -0.007107473, -0.022559091, 0.011245571, -0.0085344035, -0.0053170146, -0.009281843, 0.021471906, 0.013114171, 0.0109058255, -0.013413146, -0.0035095694, -0.021662164, -0.026853472, 0.010076847, -0.017965734, 0.013345198, 0.014092637, -0.009342997, -0.022559091, 0.01462264, 0.014935206, -0.0074132434, 1.9588444E-4, 0.016063161, -0.023687046, 0.023224993, -0.0075627314, -0.004433677, 0.03000631, -0.015913673, 0.034626845, -0.034925822, 0.02264063, 0.011496983, -0.007916067, -0.0016358739, 0.010661209, -0.022953195, -0.009023637, 0.028946305, 0.02118652, 0.020384721, -0.010837877, -0.011021339, 0.0025141155, -0.017000858, -0.0014481646, -0.0030475159, 0.018088043, -0.010654414, 0.01749009, -0.004134701, -0.011123263, -0.0067677274, 0.009743896, 0.047917686, 0.01967805, 0.018033683, -0.01208814, 0.01395674, -0.021376777, 2.3952048E-4, -0.044030998, -0.00731132, -0.002984663, 0.02783194, -0.014541101, -0.011279546, -0.0052388734, 0.007882092, 0.02913656, -0.0055548367, 0.025779877, -0.013440326, -0.003580916, -0.0029744706, -0.0072026015, 0.022042679, 0.007290935, -0.0042638043, 0.020806005, 0.0218796, -0.02478782, -0.0108039025, -0.018604456, -0.0033668764, -0.013793661, 0.001442219, 0.013318018, 0.010178771, 0.011401854, 0.018427787, 0.0035027745, 0.02997913, -0.004885538, -0.014378023, 0.025426542, 0.029489897, 0.0014609051, -0.015601107, -0.0018974778, 0.016593164, 0.014826487, -0.0134743005, 0.024502436, -0.021811651, 0.015641876, 0.0063192635, 0.0037405964, 0.00457637, -0.002101325, -0.0030322273, 0.0055446443, 0.044112537, 0.02049344, 0.023890894, -0.0076714503, 0.016470855, 0.01394315, 0.0012222339, 0.013895585, -0.025752697, -0.006998754, -0.006173173, -0.017992914, -0.01834625, -0.014242126, 0.007916067, 0.007814143, -0.01351507, -0.011021339, -0.010525311, 0.025915775, 0.010267105, 0.006913818, -0.011490188, -0.015872903, 0.016525215, 0.021471906, -0.016294187, -0.021064213, -0.018699585, -0.0036590574, -0.030903237, -0.023292942, -0.019093689, 0.028973484, -0.01966446, 0.020887544, -0.00620375, -0.00948569, 0.013195709, -0.006788112, 0.0038493148, 0.0119862165, 0.0020435683, 0.011653266, 0.023265762, -0.0020605556, 0.03498018, -0.010049667, 0.007087088, 0.0026636035, 0.0032241833, -0.012427885, 0.0037473913, 0.00237482, -0.044547413, 0.004233227, -0.010436977, -0.012339551, 0.005534452, -0.0013343499, -0.0038934818, -0.0026941807, -0.001989209, -0.025290644, -0.017979324, 0.010409798, 0.0701778, 0.02992477, 0.0078073484, 0.020208053, -0.0020962288, 7.121912E-4, -0.017938554, -0.013481095, -2.2847875E-4, 2.0618296E-4, -0.0030169387, -0.011048519, 0.031881705, 0.005204899, 0.021390367, 0.0022304282, -0.008561583, -0.011558137, -0.0061459932, -0.010776723, -0.020276003, -0.02049344, 0.01899856, 0.030658621, 0.0030254324, -0.028402712, 0.028864766, 0.018223941, -0.0015492388, 0.009356587, -0.012237628, 0.011422239, -0.006295481, 0.006856061, 0.0044064973, 0.009050816, 0.038268916, 0.014445973, 0.014350844, 0.0011746696, 0.0064823413, -0.0010294284, 0.015872903, -0.018767534, -0.009866205, -0.020072155, -0.02056139, 0.040334567, 0.01678342, -0.026595267, 0.026853472, -0.01206096, -0.008452864, 0.005904774, 0.017992914, 0.0034450179, 0.006635227, 0.022409603, -0.03506172, -0.0096215885, 0.00951287, -0.034762744, 0.015913673, -0.004630729, 0.0018821893, -0.0144595625, -0.005476695, -0.011130058, -0.0077801687, 0.017476501, -0.0022559091, -0.030278105, -0.00877902, 1.4863859E-4, 0.015682645, 0.012971478, 0.03131093, -0.0038017505, -0.010817492, 0.011211596, -0.044493053, -0.035496596, -0.003805148, -0.018101633, 0.005371374, 0.010355438, -3.1617552E-4, 0.014840077, -6.650515E-4, 0.014744949, 2.3649462E-5, -0.0042060474, -0.016307777, -0.013576224, 0.05177719, -0.0115989065, 0.014989565, -9.08288E-5, 0.017938554, 0.005639773, 0.0015288541, -0.022097038, -0.0059217615, -0.025263464, -0.015519568, -0.019379076, 0.005429131, 0.010049667, -0.019637281, -0.017816246, -0.017286243, -0.007617091, 0.0040633543, -0.00421624, 0.0015305529, 0.005714517, 0.009037226, -0.0031494393, -0.006927408, 0.0028470661, -0.004304574, -0.0050622057, 0.004134701, 0.008058759, -0.0011186115, 0.032425296, -0.008384915, -0.028810406, -0.013549045, 0.017136756, -0.021567035, 0.023890894, -0.015084694, 0.02046626, -0.021172931, -0.016552394, 0.020276003, 0.003400851, -0.010634029, -0.0052184886, -0.025915775, 0.006159583, 0.011646471, -0.014187766, -0.010559286, -0.029489897, 0.004097329, -6.9860136E-4, 0.0015110174, 0.028293993, -0.0012315769, 0.006387213, -0.013127761, -7.767428E-4, -0.017816246, -0.033213507, -0.02410833, -0.0061901603, 0.05039103, 0.014758538, 0.0481623, -0.007107473, 0.027465014, 0.01831907, -0.0013904079, 0.026608856, -0.0049025253, -4.0429697E-4, -0.05406028, 0.0030118425, 0.0029387972, 0.013983918, 0.012176474, 0.020357542, -0.0041075214, 0.034789924, 0.00567035, 0.020194463, 0.006808497, -0.03071298, -0.019338306, 0.01755804, -0.016620344, 0.01901215, -0.02697578, -0.024325768, 0.04117714, 0.0015976526, -0.02408115, -0.015655465, 0.034817103, -0.009533254, 0.01537008, -0.016389316, 0.01834625, -0.022980375, -0.0016205853, -0.021431137, -0.008215043, -0.0025294041, -0.0056601577, 0.0053441944, -0.008697481, -0.023863714, 6.3489913E-4, 0.018509327, -0.018223941, -0.018454967, 0.012917118, -0.0060406723, 0.0015993513, -0.039057124, -0.013270454, -0.032099143, -0.0026330266, -0.015261361, -0.007596706, 0.0133723775, -0.018604456, -0.03076734, 0.043596122, -0.010457362, 0.04604229, 0.012455065, 0.036828395, 0.033920176, -3.3762195E-4, -0.03527916, 0.017979324, -0.017286243, -0.015261361, 0.021730114, 0.02402679, -0.011279546, 0.008894533, 0.0054732976, 0.008921713, -0.022885246, -0.041258674, 0.022953195, 0.0393561, 0.032398116, -0.025711928, -0.008480044, -0.016022392, 0.024964489, -0.0047972044, -0.008126709, 0.010076847, -0.021104982, -0.0068730484, -0.0018074453, -0.0100156935, 0.01456828, -0.0037881606, -0.028728867, 0.0182783, -0.029707333, 0.0076238858, -0.004824384, -0.01132711, 0.032506835, -0.024556795, 0.018645225, 8.3449954E-4, 0.0019450422, 0.009268253, -0.0038119429, -0.006839074, 0.030984776, -0.020724466, 0.01758522, 0.0042638043, 0.026771935, 2.9748952E-4, 0.012631732, -0.027628092, -0.013759687, -0.018577276, -0.014948796, 0.03563249, 0.018400608, -0.0027502386, -0.005014641, -0.007148242, -0.017055217, 0.006088237, 0.008255812, 0.016674701, -0.038622253, 0.012998657, 0.016103929, 0.008677096, 0.0039138664, 0.006679394, 0.0052320785, -0.0031494393, 0.018101633, -0.014500332, -0.012054165, -0.013100581, -0.007379269, -0.040796623, -0.019746, 0.0028368738, -0.012876349, 0.001939946, -0.022858068, 0.009410947, 0.014731359, 2.0236082E-4, -0.0037949556, 0.002145492, -0.032099143, -0.016932908, 0.030169388, -0.01686496, -0.020099334, -0.0023068709, 0.0365566, 0.007304525, 0.0046341266, 0.006472149, 0.005714517, 0.038513534, -0.0277504, 0.0032802415, -0.0041075214, -0.020221643, -0.012325961, 0.019501382, 0.029707333, 0.002767226, 0.010797108, -0.02046626, -0.0025226092, -0.011619291, 0.02492372, -0.013698532, -0.0026873858, 0.023252172, -0.0016324765, 0.027206808, 0.025345003, -0.0037439938, -0.031011956, -7.0412224E-4, -0.019134458, -0.0084392745, 0.007766579, -0.008860559, 0.020887544, -0.006067852, -0.014962385, -0.018373428, 0.0014260812, -0.017000858, -0.031039136, 0.009818641, 0.0040157903, 0.038622253, 0.008384915, 0.0013233082, 0.017911375, -0.003716814, 0.031147854, -0.019433435, 0.009207099, 0.0053509893, 0.017082397, 0.0026585073, 0.013311223, -0.027356297, -0.0073520895, 0.007535552, 0.015669055, -5.8903353E-4, 0.033349402, -0.011768779, -0.0010345246, 0.0021488895, -0.009764281, -0.022029089, -0.0010990762, 0.02703014, -0.033322223, 0.0017428937, -0.0077869636, 0.023782175, 0.004657909, -0.0014676999, 0.018196762, -0.013005452, -0.0012485642, -0.0050078467, -0.03560531, -0.0032989273, -0.027356297, 0.021811651, 0.024747051, -0.012135704, 0.009349792, 0.030549902, -0.0176124, 0.0027383475, -0.006159583, 0.007759784, -0.011361085, -0.00182783, -0.003805148, 0.029027844, -0.029897591, 0.021675754, -0.031990424, 0.0103146685, -0.0010141399, 0.017136756, -0.01609034, 0.031745806, 0.021444727, -0.05854492, -0.003499377, 0.010634029, 5.631279E-4, -0.0059999027, 0.0025871608, -0.004012393, -0.01750368, -0.0046986784, -0.008357735, -0.013746097, -0.011333905, 0.0017140153, -0.008187863, -0.029489897, 0.014975975, 0.17416705, -0.016538804, 0.018223941, 0.03663814, -0.001582364, 0.013481095, 0.014935206, 0.01316853, -0.023102684, -0.0059421463, -0.010552491, 0.016620344, -0.015492388, 0.0010319765, 9.827134E-4, -0.0082422225, -0.021798061, -0.014473152, -0.019107278, -0.025426542, -5.36373E-4, -0.007956836, -0.018101633, -0.03144683, 0.005221886, 0.0014812897, -0.012210448, -0.003213991, 0.029652974, 0.01459546, -0.024393717, -0.027736811, 0.0014277799, 0.0061154165, -0.004905923, -0.004260407, -0.0012035479, 0.010946595, 0.011571727, 0.01351507, -0.0034280305, -0.0031851127, -0.0010905826, -0.00991377, 0.0044608563, 0.025807057, -0.031800166, -0.016565984, -0.01973241, 0.016212648, -0.040008415, -0.006373623, 2.656384E-4, 0.024991669, -0.009961334, -0.0076374756, 0.018699585, 0.0071278578, 0.0027876107, 0.003992008, 0.027288347, 0.029652974, -0.036148906, 0.0073452946, -0.006516316, 0.023075504, -0.032724272, -0.0025973532, 0.01021954, -0.012917118, -0.013610199, -0.015981622, -0.022246527, -0.003208895, -0.009947744, -0.01247545, -0.005028231, 0.012849169, 0.011870703, 0.016103929, -0.034001715, -0.011306725, 7.206848E-4, -0.007827733, -0.021009853, -0.018631635, 0.018468557, -0.009091586, -0.009023637, -0.0054019513, -0.00913915, -0.0140654575, -0.01895779, -0.0074200383, -0.01538367, 0.002816489, 0.013650969, 0.0058538127, -0.009322613, -0.010919415, -0.038214557, 0.027206808, 0.01973241, 0.0011347495, -0.033974536, -0.006152788, 0.016063161, 0.020167284, 0.019977028, -0.011435828, -0.004623934, -0.014840077, -0.0063396483, 0.005215091, -0.0062003527, 0.027220398, 0.019936258, -0.003648865, 0.030250926, -0.008853764, -0.009356587, -0.009737102, -3.5163644E-4, 0.0123871155, -0.00209453, -0.0424274, -0.02997913, 0.004817589, 0.004053162, -0.017394962, 0.010226335, -0.036339164, 0.0060508647, 0.01902574, 0.015832134, -0.0045661777, 0.017666759, 0.004226432, 0.0054699, -0.0034688, -0.007610296, -0.013433531, 0.0031222599, -0.011401854, 0.0015305529, -0.01464982, 0.003382165, 0.0134743005, -0.018604456, -0.04017149, -0.0063056736, 0.0017479898, -0.0040089954, 0.014038278, 0.033838637, -0.011687241, -0.048624355, -0.03519762, -0.016402906, 0.029544257, -0.057185937, 0.007440423, 0.005948941, -0.007970426, -0.023714226, -0.0052898354, -0.17438449, 0.011687241, 0.0024886348, -0.021308828, 0.031800166, 0.005347592, 0.0016265309, 0.01131352, -0.0035299542, -0.013630584, 0.019474205, 0.017408552, -0.03715455, -0.0109398, 0.023809355, 0.017829835, -0.023143454, 0.03807866, 0.019324716, 0.014350844, 0.016008802, -0.003574121, -0.00169448, 0.007861707, 0.009546844, 0.0120066, 0.01973241, -0.006529906, 0.018128812, 0.0074132434, -0.03353966, -3.7860373E-4, 0.012026985, -0.004725858, 3.952194E-5, -0.008772225, -0.024244228, -0.03296889, -0.0017148646, -0.006957985, 0.022463962, 0.009451716, 0.0079432465, 0.008167478, 0.012910323, 0.004994257, 0.018033683, -0.016932908, 0.0019297536, -0.016117519, -0.0020656518, -0.025739107, 0.0017666759, -0.014717769, -0.0030458171, 0.02697578, -0.015016745, 2.204098E-4, -0.0022491142, -0.022993965, -0.03579557, -0.0084392745, 0.00365566, -0.017218295, -0.01202019, -0.015995212, -0.011279546, 0.0138752, -0.029489897, 0.0037541862, -7.9203135E-4, -0.002087735, 0.020262413, 0.0033413956, 9.776172E-4, -0.014840077, -0.042916633, 0.031175034, -0.009247868, 0.0034212358, -0.0108039025, 0.034246333, -0.017327012, 6.3192635E-4, 0.02707091, -0.025154745, 0.004892333, 0.0038357251, 0.0038085454, -0.01686496, 0.009927359, -0.008514019, -0.028919125, 0.006944395, 4.289285E-4, 0.011245571, 0.0011075699, 0.010987365, 0.024230639, -0.012346346, -0.008201453, -0.015968032, -0.016484445, 0.02913656, 0.031147854, 0.018631635, -0.0016961787, 0.019175228, 0.015505978, -0.020398311, -0.0038153403, -0.011000955, 0.017272653, 0.0152477715, -0.0067609325, 0.010199156, -0.013814046, -0.00731132, 0.024570383, 0.023048325, 0.038133018, 0.016076751, -0.005867402, -0.020710876, -0.005632978, -0.008269402, -0.093334846, 0.010355438, -0.007087088, 0.020235233, -0.036230445, 0.02273576, -0.01982754, 0.0334853, -0.039736617, 0.029707333, 0.005249066, -0.032588374, 0.002237223, -0.005242271, 0.023863714, -0.014527512, -0.014880846, -0.020126514, -0.0014192862, 0.027397064, -0.0151526425, -6.378719E-4, 0.0027621298, 0.006295481, -0.024230639, 0.0038255327, -0.025005259, 0.020642927, 0.0025022246, 0.0077937585, 0.011510572, -0.032506835, 0.024991669, -0.038241737, -0.030848878, -0.030169388, -0.013114171, -0.028049376, -0.008697481, -0.042345863, 0.004637524, 0.021743702, 0.010742748, -0.01829189, -0.010498132, -0.016905729, -0.01208814, 0.037698146, -0.004742845, -0.0334853, -0.019066509, -0.032724272, -0.023211403, 0.0014863859, 0.020031387, 0.024244228, 0.035958648, 0.011639676, -0.019868309, -0.011265956, -0.015777774, 0.0082422225, -0.04392228, 0.022124218, 0.0052694506, 1.21565135E-4, -0.020167284, -0.0065910597, 0.016144698, -0.009696333, -0.030876057, 0.020955494, -0.02047985, -0.00209453, -0.01759881, 4.752188E-4, -0.027356297, -0.020996263, 0.034654025, -0.027274758, -0.0034042485, -0.016267007, 0.021499086, -0.01678342, 0.021675754, 0.012645322, 0.01975959, -0.006944395, 0.00418906, -0.025453722, 0.007678245, 0.014799308, 0.013684943, -0.011116468, -0.0138684055, 0.005279643, 0.009084791, 0.010104027, 0.0037066217, 0.016973678, -0.008466454, 0.0081470935, -0.06914497, 0.02480141, 0.0016401208, -9.3090226E-4, -0.015886493, -0.014174176, 0.008683891, -0.0019501384, 0.001355584, 0.019623691, 8.977771E-4, 0.0027196615, -0.0023799161, -0.0020673505, -0.007114268, -0.011055314, -0.007929657, 0.010837877, -0.009111971, -0.0033193121, -0.021471906, 0.009003252, 0.024733461, 0.0130734015, -0.013100581, 0.02632347, 0.018387018, -0.0027876107, -0.006159583, -0.008058759, 0.021648575, -0.011265956, -0.012244423, 0.01098057, -0.025440132, -0.023646276, -0.004525408, 0.00985941, 0.022871656, 0.016565984, -0.008255812, -0.019569332, -0.0025412953, -0.003737199, -0.002636424, 0.006254712, -0.024651922, 0.008282992, 0.008051964, 0.016470855, 0.034191974, 0.018088043, -0.023510378, -0.01535649, 0.03720891, -0.02916374, 0.05609875, -0.0055684266, -0.002412192, -0.006733753, 0.019922668, 0.012577373, 0.017163936, -0.020724466, -0.0033600815, 0.014079047, -0.0077869636, -0.01459546, 0.021268059, -0.039057124, -0.01670188, -0.005534452, 0.015845723, 0.017055217, 0.023700636, 0.0041245087, -0.004943295, 0.014704179, 0.014296484, 0.012896733, 0.02701655, -0.0075763213, -0.020411901, 0.0102127455, 0.005221886, 0.019922668, -0.013107376, -0.0020146898, 0.004246817, 0.0035945058, -0.0124822445, 0.019936258, 0.019922668, 0.010267105, 0.008296582, 0.014921616, -0.034056075, -0.0049093203, 0.010769928, 0.01977318, 0.006971575, -0.017095987, -2.0363487E-4, -0.026758345, -0.011293136, 0.006839074, -0.030794518, -0.034789924, 0.009383767, 0.029598616, 0.015859313, -9.13915E-4, 1.0033105E-5, 0.00417547, -0.027736811, 0.018006504, -0.0094721, 0.0015483894, -0.0152477715, 0.03280581, 0.014935206, 0.006971575, 0.011537752, -0.007902477, 0.044628948, 0.012923913, 0.02417628, -0.023252172, 0.001575569, 0.010661209, 0.0051267575, -0.011449418, -0.027614502, 0.007318115, -0.014269304, -0.0059421463, 0.009451716, 0.028049376, -0.016430086, 0.07767938, 0.03125657, 0.0060202875, 0.022926016, -0.024189869, 0.021254469, 0.011231981, 0.023700636, -0.010423387, -0.00876543, -6.6207873E-4, 0.006808497, 0.018400608, -0.035985827, -0.024244228, -0.007019139, 0.0015789665, 0.0064483667, -0.0065367008, -0.016538804, 0.0077937585, -0.014051868, 0.025467312, 0.009574024, -0.020656517, -0.020751646, 0.023143454, -0.011218391, 0.0037847632, -0.022300886, -0.008581968, -0.017367782, -0.013345198, -0.0011644772, 0.020683696, -0.005215091, -0.019324716, -0.0024291794, 0.030495543, -0.0024529614, -8.1793696E-4, -3.529105E-4, -0.017721118, 0.008371325, 0.015872903, -0.0062513147, -0.0017377975, -0.038676612, -0.025358593 ], + "id" : "ed7083cc-3040-4899-b48e-3cc6546b4a0b", + "metadata" : { + "source" : "movies.csv" + } + }, + "371de115-25ce-46f1-8c79-86a847cc47da" : { + "text" : "Harkins-Joseph Hernandez-Ben Heyman-Graham Maby-Jesse Schratz-Isabella Ferreira-Shade Rupe,dream-street gang-society-psychopath-clown-villain-based on comic-murder-psychological thriller-criminal mastermind-mental illness-anarchy-character study-clown makeup-subway train-social realism-supervillain-tv host-1980s-mother son relationship-origin story-falling into madness-depressing,/udDclJoHjfjb8Ekgsd4FDteOkCU.jpg,/f5F4cRhQdUbyVbB5lTNCwUzD6BP.jpg,466272-496243-559969-530915-299536-492188-515001-429617-420818-474350-546554-420809-181812-359724-398978-11324-157336-495764-419704-331482-512200\r\n181812,Star Wars: The Rise of Skywalker,Adventure-Action-Science Fiction,en,The surviving Resistance faces the First Order once again as the journey of Rey Finn and Poe Dameron continues. With the power and knowledge of generations behind them the final battle begins.,62.836,Lucasfilm Ltd.-Bad Robot,12/18/19,250000000,1074144248,142,Released,Every generation has a legend,6.355,9154,Carrie Fisher-Mark Hamill-Daisy Ridley-Adam Driver-John Boyega-Oscar Isaac-Anthony Daniels-Naomi Ackie-Domhnall Gleeson-Richard E. Grant-Lupita Nyong'o-Keri Russell-Joonas Suotamo-Kelly Marie Tran-Ian McDiarmid-Billy Dee Williams-Greg Grunberg-Shirley Henderson-Billie Lourd-Dominic Monaghan-Hassan Taj-Lee Towersey-Brian Herring-Dave Chapman-Richard Guiver-Lynn Robertson Bruce-J.J. Abrams-Claire Roi Harvey-Richard Coombs-Matt Denton-Nick Kellington-Mandeep Dhillon-Alison Rose-Amanda Lawrence-Tanya Moodie-Simon Paisley Day-Geff Francis-Amanda Hale-Amir El-Masry-Aidan Cook-Martin Wilde-Anton Simpson-Tidy-Lukaz Leong-Tom Rodgers-Joe Kennard-Ashley Beck-Bryony Miller-Cyril Nri-Angela Christian-Indra Ov��-Richard Bremmer-Richard Durden-Andrew Havill-Nasser Memarzia-Patrick Kennedy-Aaron Neil-Joe Hewetson-Raghad Chaar-Mim�� M. Khayisa-Tom Wilton-Chris Terrio-Kiran Shah-Debra Wilson-Josef Altin-Vinette Robinson-Mike Quinn-Bill Kipsang Rotich-Ann Firbank-Diana Kent-Warwick Davis-Harrison Davis-Elliot Hawkes-Philicia Saunders-John Williams-Nigel Godrich-Dhani Harrison-J.D. Dillard-Dave Hearn-Rochenda Sandall-Jacob Fortune-Lloyd-Andreea Diac-Liam Cook-Denis Lawson-Carolyn Hennesy-Paul Kasey-Matthew Wood-James Earl Jones-Andy Serkis-Josefine Irrera Jackson-Cailey Fleming-Jodie Comer-Billy Howle-Hayden Christensen-Olivia d'Abo-Ashley Eckstein-Jennifer Hale-Samuel L. Jackson-Ewan McGregor-Alec Guinness-Frank Oz-Angelique Perrin-Freddie Prinze Jr.-Liam Neeson-Harrison Ford-Lin-Manuel Miranda-Ed Sheeran-Gerald W.", + "embedding" : [ -0.005724717, -0.018734189, -0.0013229388, -0.040409766, -0.027393425, 0.025345447, 0.0024122158, -0.018692954, -0.011896141, -0.037028544, 0.028479265, 0.014225887, 0.031997938, 0.0017026394, 0.008150677, 0.018266864, 0.024465777, -0.009483925, 0.002953418, -0.03208041, -0.0015926809, -0.0038176235, -0.011318859, 0.010377338, 0.009655735, 0.029056547, 0.027833259, -0.008171295, -0.0056078862, -0.00852866, 0.006707472, -0.009532032, 0.010019973, -0.018981595, -0.013689839, -0.008054464, 0.008020102, -0.007167923, 0.018390568, 0.0013959581, 0.0067933765, -0.0040031783, -0.022582738, -0.01737345, -0.012823916, -0.008659236, 0.007807057, -0.019064063, -0.016782423, 0.034499496, 0.036341302, 0.04390095, -0.026197625, -0.018665465, 5.2488025E-4, 0.008439319, 0.0037866975, -0.008796684, 0.006140498, 0.001913966, 0.026541246, -0.015256749, -0.030431028, -0.010356721, -0.017510898, 0.0028056612, -0.010095569, -0.01266585, -0.0020015892, 0.0020857763, 0.023146275, 0.004250585, 0.0033691986, -0.009745076, 0.007305371, -0.03565406, -0.024080923, -0.0057178447, -0.0013341064, 6.915362E-4, 0.0060855187, -0.010363594, -0.022087924, 0.0074771815, 0.009923759, 0.0060683377, -0.009511415, 0.017813286, -0.032245345, 0.0037282822, 0.0069548786, 0.04909649, -0.00429182, -0.0026716492, -0.0013048988, 0.013160664, -0.020864636, 0.02316002, -4.121298E-4, -0.030376049, 0.005473874, 0.004467066, -0.003924146, -0.01562786, 0.0016158753, -3.8141874E-4, -0.003039323, -0.00161158, 0.017304728, 0.007367223, 0.011098941, -0.0026579043, -0.004449885, -0.03807315, -0.001912248, -0.018005712, 0.01522926, -0.028451774, 2.1143397E-4, -0.039557587, 0.027613342, 0.023036316, -0.007346606, -0.03276765, 0.026774907, 0.048299294, -0.009532032, -0.020232374, 8.045014E-4, -0.014871894, 0.031558104, -0.010659107, 0.0093396045, 0.0047419625, -0.013346219, 0.039310183, -0.018225629, 0.005353607, -0.025991453, -0.019380195, 0.031475633, 0.031200739, -0.03117325, -0.012157292, -0.02729721, 0.0061336253, 0.013964736, 0.021469407, 0.03172304, 0.0033039108, 0.023888495, 0.013353092, 0.0046972916, 0.010501042, 0.0159165, 0.011875523, -0.0055322894, -0.0041715526, -0.00704422, -0.007573395, 6.45577E-4, -0.01597148, -0.014129674, 0.007855164, 0.01046668, 0.016466293, 0.013270623, -0.010617873, -0.0018761677, 0.0039000923, -0.008260637, 0.029248975, -0.030898353, 0.007917016, -0.010480424, 0.0038897838, 0.007655864, -0.010920258, -0.04700728, -0.029248975, 0.0035667806, 0.01366235, 0.022665206, 0.029111527, 0.0015368426, 0.0110233445, 0.033702295, -0.021222001, -0.0034671305, -0.011346348, 0.005872474, 0.023957219, 0.008631746, -0.008301871, -0.6338011, -0.018445548, 0.011573138, -0.019847518, 0.017620858, 0.024795653, 0.011944247, -0.0028795395, -0.027228486, 9.131714E-4, -0.031393167, 0.029661318, 0.021813028, -0.017359706, -0.018266864, -0.0112157725, -0.0010789683, -0.028699182, 0.02119451, 0.012377209, -0.033757277, 0.012219144, 0.0070923264, -0.015270494, 0.014308357, 0.024795653, 0.0037798253, -0.029743789, -9.964994E-5, -0.0016751498, -0.022527758, 0.01586152, 0.012452805, 0.0136348605, 0.045852717, 0.0047797607, -0.012033589, 0.057343382, 0.023352448, 0.033757277, -0.01745592, -0.011270751, 0.011497541, 0.0059789964, -0.018775422, 0.02581277, 0.01366235, -5.0082686E-4, -1.6032043E-4, 0.0050340397, -0.02461697, -0.006377596, 0.0047728885, -0.018679209, 0.009518287, 0.0043536713, 0.009758822, -0.0220192, 0.022252861, 0.025881493, -0.030815884, 0.023338702, 0.0053432984, 0.008666108, 0.00285205, 0.04178425, 0.010171166, -0.008672981, 0.0053604795, -0.017497154, 0.0047763246, 0.0042059147, -0.025221743, -0.010789683, 0.015105556, 0.0127758095, 0.038210597, 0.0033623264, -0.004467066, 0.021125786, -0.006563151, -0.0034825935, 0.007504671, 0.013304984, 0.016864892, -0.0053467345, -0.03350987, 0.002450014, 0.006649056, 0.0022163521, 0.014102184, 0.016699955, 0.006449756, 0.01517428, -8.276958E-4, -0.0048244316, -0.013346219, 0.012645233, 0.02167558, -0.062401477, 0.004078775, -0.005174924, 0.016040204, -0.0062848185, 0.021125786, 0.025469149, -0.006377596, 0.004497992, 0.02190924, -0.023654833, -0.020960849, -0.0014148573, -0.019091554, -0.0037798253, -5.6428926E-5, -0.026651204, 0.019064063, -0.0031183558, -0.014267122, -0.011394455, 0.0060167946, 0.008315615, -0.0017696454, -0.024067178, 0.021606855, 0.02419088, -0.004786633, -0.013469922, 0.0062126582, 0.011174538, 0.0014011124, -0.009037218, 0.017222257, -0.013366836, 0.0068071214, 0.0067693233, 0.0015978352, 5.29605E-4, 0.015476666, -0.017016085, -0.027778279, -0.005147435, -0.0013237979, -0.0011296523, -0.0137929255, -0.015902756, -0.016260121, -0.0023795718, -0.0012052488, -0.009401456, -0.01272083, 0.010707214, -0.001828061, 0.023861006, -0.0025582544, -0.0014389107, -0.03480188, -0.01440457, -2.2617207E-6, -0.026857376, 0.013724201, 0.01705732, 5.0426304E-4, -0.02159311, 0.02021863, -0.0060133585, -0.0022764856, -0.0026664948, 0.0068552285, -0.003625196, 0.020369822, -0.019916242, -1.5591779E-4, 0.015476666, -0.0046629296, 0.018844146, -0.0023520822, 0.025689067, 0.011360093, -6.6232844E-4, -9.810365E-4, -0.004632004, -0.027984452, -0.005858729, 0.024809398, 0.020328587, 0.013339346, -0.0031252282, 0.006356979, 0.0033657625, -0.006143934, -0.011360093, -1.7750145E-4, -0.002384726, -0.010013101, 0.021386938, -0.002771299, -6.0004723E-4, -0.0058793463, 0.019847518, 0.032300323, 0.020754676, 0.011415072, -0.0016356334, 0.0013693275, -0.037440885, 0.012226016, -0.027558362, 0.0046904194, 0.0017713635, 0.014871894, -0.006707472, -0.0072091576, -0.0094976695, 0.005855293, 0.029276464, -0.020947104, 0.008466808, -0.030156132, 0.0053398623, -8.9856755E-4, 0.00758714, 0.019215256, 0.027503382, -0.02957885, 0.013250005, 0.021538131, -0.017043576, 0.006360415, -0.018184396, -0.010397956, 0.01939394, -0.019160278, -0.0053020637, -0.024493268, 0.008858535, 0.01234972, -0.0020170521, 0.042691406, -0.011490668, 0.002700857, 0.023682322, 0.028341817, 0.0043742885, 0.01976505, -0.008054464, 0.013710457, -0.0034722849, -0.00889977, 0.04090458, -0.0228164, 0.023806026, 0.0077108433, 0.0048416127, 0.010940876, -0.010851534, 0.0027575542, 0.013153791, 0.030760905, 0.018390568, -0.0027283465, -0.031833, 0.0023778537, -0.0019277108, -0.0075596506, 0.0050477847, -0.017442174, 0.018555505, -0.014019716, -0.035269205, -0.024397053, 0.0043605436, -0.008851663, 0.015023087, -0.008961622, -0.0045735883, 0.0034688488, 0.017895754, 0.004257458, 0.015517901, -0.0037111011, -0.027338445, 0.022541502, 0.031530615, -0.011002728, -0.023682322, 0.0055769603, -0.021098297, -0.034691922, -0.0034860296, -0.017895754, 0.027901983, -0.0037248458, 0.009181539, -0.021716814, 0.0047763246, 0.019435175, -0.018239375, 0.02687112, 0.016301354, -0.0023469278, 0.009820673, -0.008714215, -0.012335975, 0.013937246, -0.0049721883, -6.2925497E-4, 0.0022867941, 0.011813672, -0.017662093, 0.0034774393, 0.010370466, -0.037028544, 0.025427915, -0.011518158, -0.013119429, -0.007889526, 0.0023778537, 0.020974593, -0.00815755, -0.016864892, -0.025963962, -0.034636945, 0.008604256, 0.084008336, 0.054209564, 2.9529884E-4, 0.0047488348, -0.0055838325, 0.0034379228, -0.013944118, -0.021043317, -0.016933616, -0.023118785, 0.019847518, -0.011573138, 0.02724223, 0.0028348689, 0.021414427, -0.014459549, -0.0026836758, 2.3989004E-4, 0.010253635, -0.0023692632, -0.03100831, -0.008212529, 0.0038038786, 0.018101927, 0.0065528424, -0.0026836758, 0.024465777, 0.006356979, 0.008432446, 0.011593754, -0.004965316, -0.00815755, 0.004329618, 0.010404828, 0.0036904837, 0.009559521, 0.033097524, -0.006367287, 0.02167558, 0.0047316537, -0.0014732728, 0.014528274, 0.008391212, -0.015751563, 0.008143805, -0.012906385, -0.022665206, 0.012473423, 0.026706183, -0.041344415, 0.008136933, -0.004532354, -0.017662093, 0.0020101797, 0.02156562, -0.008968494, 0.004917209, 0.010095569, -0.0072435196, 0.018046947, -0.009044091, -0.033207484, 0.014789425, 0.0013976763, 0.0012172755, -0.017978223, -0.008391212, -0.016823659, -0.010727831, -0.005741898, 0.008205657, -0.0059205806, 8.448768E-4, 0.01292013, 0.010281124, -0.0049069, 0.025510384, 0.0097519485, 0.024823142, -0.013050705, -0.03653373, -0.027833259, 0.021153277, -0.020548504, 0.004315873, 2.1723256E-4, 6.515903E-4, 0.022541502, -0.00852866, 0.00104117, 0.016906127, -0.011799927, -0.022637717, -0.016411314, 0.021496898, 0.020575995, 0.023091296, 0.008817301, 7.834547E-4, -0.012672723, -0.0014870176, -0.031475633, -0.0077933124, -0.0146519765, -0.0074496916, -0.024094667, -0.016699955, 0.0032884479, -0.02549664, -0.02801194, -0.027901983, -0.021153277, -0.005542598, 0.018528016, 0.020960849, 0.0028623585, 0.01745592, 0.006209222, 0.002618388, 0.0131881535, 0.0031011747, -0.012617744, 0.025908984, 0.038815368, -0.028919099, 0.033647317, 9.6471445E-4, -0.019201512, -0.0055151084, 0.029331444, -0.010755321, 0.027682066, -0.005762515, -0.0021081115, -0.011813672, -0.018747933, -0.0011614372, 0.0035805253, -0.005755643, 0.018899126, -0.01674119, -0.0020634409, 0.005051221, -0.006480682, -0.0022747675, -0.03106329, 0.0065047354, 0.006580332, 0.004346799, 0.012198526, -0.012762064, 0.003339991, -0.026128901, 0.0045048646, -0.003003243, -0.03790821, -0.017634602, -0.019806284, 0.032492753, 0.02196422, 0.03719348, -0.004247149, 0.02310504, 0.009291498, 0.0050271675, 0.024740674, -9.973585E-4, -0.01289264, -0.026486266, 0.019503897, 0.013036961, 0.022665206, 0.015504155, 0.0118205445, 0.0269261, 0.022032944, 0.0052573932, 0.013346219, 0.013607371, -0.024328329, -0.02817688, 0.011916758, -0.020713441, -0.006343234, -0.03425209, -0.009607628, 0.032355305, -0.0063019996, -0.01477568, -0.020782165, 0.024658205, -0.03408715, 0.016301354, -0.01639757, 0.030540988, -0.020603484, 0.006563151, -0.01602646, -0.0010282843, 0.0065837684, 0.004467066, 0.027269721, -0.01944892, -0.014253377, -0.002300539, 0.036726154, -0.0147481905, -0.0030668126, 0.022623971, -0.010679725, -0.0073740953, -0.01152503, -0.005518545, -0.031475633, -0.016507527, -0.0015523055, 9.3207054E-4, 0.008941005, -0.02963383, -0.03639628, 0.01480317, 0.001980972, 0.036451258, 0.009332732, 0.029881237, 0.020782165, 0.018775422, -0.019462664, 0.001898503, -0.00781393, 0.0011451152, 0.02076842, 0.016562507, -0.017675838, 0.0016064257, 0.0011133304, -3.174194E-4, -0.045055516, -0.042828854, 0.03339991, 0.022005456, 0.015682839, -0.02464446, 0.002721474, -0.029991195, 0.0022782036, -0.01272083, -0.0034980564, 0.0059480704, -0.042691406, -0.024768164, -0.0021957348, 0.005573524, 0.010260507, -0.0027489637, -0.029798767, -0.004666366, -0.015119301, 0.002130447, -0.010308614, -0.012390954, 0.037028544, -0.030705925, 0.027022313, 0.015243004, 0.0015978352, -0.0064875544, -6.2023493E-4, 6.176578E-4, 0.03194296, -0.012411571, 0.006985804, 0.009662608, -0.0029774713, 7.1902585E-4, 0.019503897, -0.0022782036, -0.021167021, -0.019146532, -0.008652364, 0.019215256, -0.010473552, -0.014720701, -0.002853768, -0.013174409, -0.020383567, 0.0071885404, -0.015270494, 0.030376049, -0.028644202, 0.009428945, 0.0019019393, -0.0014964672, -3.5629148E-4, -0.0025410734, -0.0016914718, -0.0054120226, 0.016768679, -0.019806284, 0.019696325, -0.020658463, -0.022582738, -0.047282178, -0.0050409124, -0.0049996777, -0.01331873, 0.013036961, -0.024204627, -0.004147499, -0.004281511, -0.006497863, -0.0042024786, 0.005003114, -0.018418057, -2.0638705E-4, 0.017978223, -0.008047592, 8.730108E-5, 0.0032832937, 0.025455404, -0.015889011, -0.019558877, -0.022266606, 0.0037866975, 0.015641604, -0.025771536, 0.019119043, 0.0011537058, -0.033647317, -0.0049824966, 0.018692954, 0.036011424, 0.022170393, 0.0012550738, -0.021661835, -0.005755643, -0.0030341689, 0.026073921, -0.009394583, -0.0050202953, 0.015545391, 0.013181281, 0.015119301, 0.023888495, 0.016150162, -0.023338702, 0.010487297, -0.0037729528, -0.030815884, -0.0022713314, -0.0036148874, 0.026719928, 0.009442691, -0.016988596, -0.013394326, -0.010700341, -0.015985224, -0.019875009, -5.5838324E-4, 0.010858407, 0.023613598, 0.0074634366, -0.010755321, -3.850697E-4, 0.0024964027, -0.0034293323, -0.021799283, 0.0015686274, 0.026692439, 0.009655735, 0.018115671, 0.015449177, -0.021290725, -0.0035135194, 0.020122414, 0.022129158, 0.0035135194, 0.029963706, -0.017332217, 0.010507914, -0.0028932844, 0.0035599081, -0.006326053, -0.015847776, 0.028506754, -0.023379937, -0.014335846, 0.0056697377, 0.012878895, -0.013999098, 0.00298778, 2.7682923E-4, -0.007999484, -0.011442562, -0.0023812898, -0.008047592, 0.008294998, -0.028506754, 0.02419088, 0.005164616, -0.0030788395, 0.028534245, 0.017689582, -0.0028967205, 0.014569508, -0.004243713, 0.016246377, -0.0034791573, -0.0128376605, -0.01788201, 0.02889161, -0.023613598, 0.011153921, -0.02960634, 0.009449563, -0.02233533, -0.009236518, -0.0031424093, 0.030376049, -4.370423E-4, -0.04942637, 0.0044601937, -0.008308743, -0.0021373194, 0.009044091, -1.8813221E-4, -0.03339991, -0.0056010135, 0.0046216953, 2.2893713E-4, -0.014445805, -0.023448661, -0.010452935, -0.021290725, -0.012404699, 0.023599854, 0.1902283, -0.0064394474, 0.01748341, 0.033729784, 0.0069411336, -0.0082262745, 0.039310183, 0.019380195, -0.014789425, 0.022926359, -0.007655864, -0.0013040397, 0.0096900975, 7.770118E-4, 0.03408715, -0.030431028, -0.021373194, -0.015682839, -0.016507527, -0.027049804, 1.195155E-4, 0.009978739, -0.009779438, -0.015352963, 0.008411829, 9.947813E-4, -0.010246762, 0.01628761, 0.02190924, 0.0055494704, -0.016150162, 0.004968752, -0.0026871122, -0.001274832, -0.015559135, -0.018692954, -0.0052917553, 0.00463544, 0.004095956, -0.0065872045, 0.016507527, 0.0042024786, 0.0068689734, 0.00790327, -0.003221442, 0.01038421, -0.02207418, -0.0011949402, -0.009401456, -0.0046732384, -0.051543072, -0.0063054357, 0.019421428, 0.03133819, 0.005171488, -0.01098211, 0.0011090351, 0.013813543, -0.0087348325, 0.0026218242, 0.019723816, 0.028589223, -0.028341817, 0.017194768, 0.0016141571, 0.008453064, -0.04013487, -0.013682967, 0.0040547214, -0.023943475, -0.012081696, -0.039750017, -0.014596998, -0.010425445, -0.0012327385, -0.005353607, 0.012054206, 0.004532354, -0.006054593, 0.04024483, -0.013298112, -0.006027103, 0.00305135, -0.0129338745, -0.024603225, -0.04156433, 0.035928957, 9.89627E-4, -0.015078066, -0.01694736, -0.009167794, 0.0033640445, -0.009683225, -0.022472778, -0.0011614372, -0.011098941, 0.039914954, 0.02087838, -0.0047282176, 0.0018950669, -0.019820029, 0.034636945, 0.03328995, -0.008947877, -0.034994308, -0.01663123, 0.011834289, 0.005745334, 0.025826514, 7.104353E-4, -0.007855164, -0.024067178, -0.023091296, -0.021318214, -0.008913515, 0.033977192, 0.0032626763, -0.0037729528, 0.040547214, -0.029496381, 6.79939E-4, -7.720722E-5, 0.019421428, 0.004329618, 0.0029413912, -0.028699182, -0.02681614, 0.0056250673, -3.532848E-4, -0.028396796, 0.018088182, -0.01777205, 0.023943475, -0.0051611797, -0.0030960205, 0.006157679, 0.023379937, 0.0074703093, 0.008123188, -0.0049412623, -0.018321844, -0.011043962, 0.0076764813, 0.015380452, 0.005772824, -0.028616713, 0.005467002, -0.019668836, -0.022252861, -0.025482895, -0.01819814, -0.0046766745, 0.0041165734, 0.0021029573, 0.029276464, -0.00795825, -0.012549019, -0.03408715, -0.006597513, 0.040024914, -0.025153019, 0.045962673, 0.0159165, 0.011744948, -0.00795825, -0.013676095, -0.17637351, 0.019270236, -0.0022782036, -0.037385907, 0.010061207, 0.0034465133, 0.036726154, 0.008514916, 3.659558E-4, -0.007504671, 0.029303953, 3.036746E-4, -0.033207484, -2.4751413E-5, -0.001526534, 0.018225629, -0.016562507, 0.039337672, 0.026445031, -0.01343556, 0.036698665, -0.0029946524, -0.0045083007, 0.014926873, 0.0076627363, -0.011676224, 0.020039946, 0.013772309, -9.492515E-4, 0.0059377616, -0.041206967, -0.019751305, 0.017194768, 0.015889011, -0.021483151, -0.0028915664, -0.014294611, -0.014074694, -0.021098297, -0.009717587, 0.0371385, 4.565857E-4, 0.022843888, 0.012274123, 0.027544618, 0.020342331, 0.03180551, -0.0084805535, 0.009511415, -0.011092069, -0.0196276, -0.028396796, 0.020301098, -0.0013203616, -0.0074909264, 0.023915986, 0.011848033, 0.010995855, -0.0040581576, -0.006425703, -0.02119451, -0.009525159, 0.019820029, -0.014981853, 7.8087754E-4, -0.022830144, -0.008253763, -0.0028640765, -0.031310696, 0.009545777, -0.03796319, 0.016933616, 0.005089019, 0.009552649, 0.015270494, -0.01745592, -0.038980305, 0.005738462, -0.0023658269, 0.0118823955, -0.011085196, 0.03419711, -0.011257007, 0.009449563, 0.010452935, -0.010741576, -0.0059618154, -3.6552627E-4, 0.00984129, -0.013964736, 0.007600885, -0.0044395765, -0.033729784, 0.00793076, -0.004649185, 3.7497585E-4, 0.013153791, 0.0017017804, 0.0057144086, -0.011057707, 3.0796984E-4, -0.014734446, -0.009442691, 0.015902756, 0.025180507, 0.012116058, -0.01029487, 0.023393681, 0.021524386, -0.004869102, -0.026829887, -0.0042024786, 0.023242489, 0.012239761, -0.0061679874, 0.015765307, -0.018225629, -0.029331444, 0.015105556, 0.010542276, 0.076201275, 0.0052745743, 0.0059240167, -0.0023675452, 0.0033846616, -0.019229002, -0.10297618, 0.016356334, 0.023352448, 0.026596224, -0.021414427, 0.031283207, -0.00801323, 0.020988338, -0.015270494, 0.018830402, -0.006528789, -0.040382277, 0.0097519485, -0.015188024, 0.012961364, -0.005353607, -0.005442948, -0.0060030497, -0.010397956, 0.035846487, -0.010116187, 0.004044413, -0.008618002, -0.024685694, -0.026431287, 0.021703068, -0.034499496, 0.028204368, -0.0014930309, 0.015270494, 0.012638361, -0.020411056, 0.017744562, -0.02729721, -0.012274123, -0.026761163, -0.0011176256, -0.033674806, 0.009985611, -0.044258315, -1.2692482E-4, 0.011030217, 0.008755449, -0.012768936, -0.021496898, 0.010528531, -0.029496381, 0.029111527, 0.006006486, -0.01968258, -0.016150162, -0.027888237, -0.019325215, -0.017084809, 0.01944892, 0.018555505, 0.024328329, 0.0024878122, -0.02681614, -0.033674806, -0.004614823, 0.00520585, -0.020521015, 0.005102764, 0.0025221743, 0.016617486, -0.010123059, -0.026513755, 0.014693212, -0.023998454, -0.024287095, 0.023201255, -0.043736015, -0.017277237, -0.024479521, -0.0035289822, -0.040602196, -0.021799283, 0.016892383, -0.03117325, 6.881E-4, -0.022376565, 0.031310696, -0.016906127, 0.0038313682, 0.022967592, 0.0012207117, 0.012280996, -0.018582996, -0.037605826, -0.0044223955, 0.011435689, -0.007027039, 0.01819814, -0.0020668772, 0.013497412, 0.0013744818, 0.016644975, -7.486631E-4, 0.0067933765, -4.8708203E-4, 0.004855357, -0.07064837, 0.035296693, -0.029001568, -0.007332861, -0.004820995, -0.011930503, -0.008659236, 0.0017198204, -0.0062367115, 0.022142904, -0.0010669415, 0.022321586, -0.0056353756, -0.0022163521, -0.01973756, -0.0011528467, -0.0019225565, -0.0050580935, 0.003202543, -0.0017868264, -0.0142396325, 0.024548246, 0.011813672, -6.176578E-4, -0.004233404, 0.015957735, -0.0060855187, 0.027833259, -0.017978223, -0.015476666, 0.028671691, -0.017909499, -0.0032781393, 0.0062538926, -0.003104611, -0.039035287, 4.8407534E-4, 0.006704035, 0.021744303, 0.006813994, -0.025029315, -0.015160535, -0.01514679, -0.03559908, -0.0038038786, -0.003975689, -0.030925842, 0.027558362, -0.00161158, 0.018528016, 0.038265575, 0.011236389, -0.012452805, -0.017923243, 0.03576402, -0.023599854, 0.053329896, 0.0063363616, -0.006700599, -0.01902283, 0.03854047, -0.006865537, 0.01782703, -0.030925842, 0.010556021, -0.011332603, 0.018211884, -0.012267251, -0.0041234456, -0.04406589, -0.01663123, -0.01594399, 0.006095827, 0.040574707, 0.010824045, 0.013579881, 0.00704422, 0.010253635, -0.008020102, 0.002482658, 0.016892383, -0.005137126, -0.037633315, 0.01594399, 0.005707536, 0.010604127, 0.0042024786, 0.014473294, 0.0030788395, 0.0017799541, -0.019229002, 0.01777205, 0.015325473, 0.0039688163, 0.011662479, 0.029331444, -0.022184137, -0.007271009, 0.006023667, 0.026005197, -0.01785452, 0.006209222, -0.005387969, -0.019091554, -0.03172304, 0.0038794752, -0.010968366, -0.008776067, 0.013201899, 0.030376049, 0.022197882, -0.0029688808, -0.009119688, -2.660911E-4, -0.033977192, 0.0050477847, -0.020740932, -0.029908726, -0.014390825, 0.039750017, 0.015834032, -0.0053570434, 0.020795912, -0.013414944, 0.04186672, -0.0032437772, 0.022211628, -0.022843888, 0.005796877, 0.0015660503, 0.007868908, -0.01329124, -0.020369822, 0.010006228, -0.008741705, 0.0028640765, 0.0050787106, 0.03425209, -0.017840775, 0.068724096, 0.016067693, -0.021373194, 0.014926873, -0.016177652, 0.0028657948, -0.0042230957, 0.014267122, -0.016988596, -0.0015823722, -0.0078757815, -0.00580375, 0.016177652, -0.03191547, -0.007339733, -6.176578E-4, 0.012390954, 0.018555505, -5.025449E-4, -0.0104117, -3.608015E-4, 1.3207912E-4, 0.027434658, 0.0023744174, -0.016906127, -0.013119429, 0.03400468, -0.016837403, -0.009140304, -0.022156648, 0.008102571, -0.033344932, -0.00858364, -0.008301871, 0.006972059, -0.0106110005, 0.018060692, 0.009057836, 0.015215514, 0.015504155, -0.013222516, -0.0030977386, -0.02087838, -0.03719348, 0.026087666, -0.0016029895, -0.0044052145, -0.032932587, -0.005759079 ], + "id" : "371de115-25ce-46f1-8c79-86a847cc47da", + "metadata" : { + "source" : "movies.csv" + } + }, + "044656f6-05d1-4968-b9c2-4159ba640dc2" : { + "text" : "Ellis-Tamer Hassan-Tom Wu-Ronan Leahy-Mark Chiu-Turbo Kong-Stuart Yung Sai-Kit-Chike Chan-Tenzin Clive Ball-Tenzin Gyurme-Jamie Cho-David Murray-John Kazek-Darragh Kelly-Patrick Nolan-Joseph Rye-Kwaku Ankomah-Timothy Deenihan-Lucy Russell-David Bedella-Flavia Masetto-Emily Steven-Daly-Martin McDougall-Noah Lee Margetts-Joe Hanley-Karl Shiels-Roger Griffiths-Stephen Walters-Richard Laing-Matt Miller-Alexandra Bastedo-Soo Hee Ding-Conn Horgan-Phill Curr-John Judd-Sarah Wateridge-Charlie Kranz-Terry McMahon-Cedric Young-Tom Nolan-Leon Delroy Williams-Roger Yuan-Joe Sargent-Mel Taylor-Ilyssa Fradin-Jeff Christian-John Burke-Alex Moggridge-Earlene Bentley-Jay Buozzi-Jordan Shaw-Omar Mostafa-Patrick Pond-Poppy Tierney-Rory Campbell-Fabio Cardascia-Mark Rhino Smith-Ruben Halse-Dominic Burgess-Nadia Cameron-Blakey-Mark Straker-T.J. Ramini-Kieran Hurley-Emmanuel Idowu-Jeff Tanner-Joey Ansah-Adam Kirley,martial arts-undercover-loss of loved one-secret identity-crime fighter-superhero-based on comic-rivalry-ninja-vigilante-tragic hero-super power-haunted by the past-evil doctor-master villain-unfulfilled love,/4MpN4kIEqUjW8OPtOQJXlTdHiJV.jpg,/lh5lbisD4oDbEKgUxoRaZU8HVrk.jpg,49026-155-1726-121-10138-557-120-27205-1771-603-122-1930-1891-11-22-558-49538-10528-10195-49521-98\r\n3981,What Women Want,Comedy-Romance,en,Advertising executive Nick Marshall is as cocky as they come but what happens to a chauvinistic guy when he can suddenly hear what women are thinking? Nick gets passed over for a promotion but after an accident enables him to hear women's thoughts he puts his newfound talent to work against Darcy his new boss who seems to be infatuated with him.,35.56,Paramount-Icon Productions,12/15/00,70000000,374111707,127,Released,He has the power to hear everything women are thinking. Finally... a man is listening.,6.4,3420,Mel Gibson-Helen Hunt-Marisa Tomei-Alan Alda-Ashley Johnson-Mark Feuerstein-Lauren Holly-Delta Burke-Valerie Perrine-Judy Greer-Sarah Paulson-Ana Gasteyer-Lisa Edelstein-Loretta Devine-Diana Maria Riva-Eric Balfour-Andrea Baker-Robin Pearson Rose-Christopher Emerson-Ashlee Turner-Sierra Pecheur-Joe Petcka-Brian Callaway-Coburn Goss-Christian Michel-Perry Cavitt-Crystal McKinney-Jeanne Marie Rice-Kathrin Middleton-Logan Lerman-Kelly Cooper-Palmer Davis-Katie Miller-Dana Waters-Gregory Cupoli-Alexondra Lee-Aviva Gale-Shirley Prestia-T.J. Thyne-Norman H.", + "embedding" : [ -0.0118134925, -0.03051194, 0.007927923, -0.04820832, -0.018391691, 0.025412982, -0.0067077186, -0.021350177, -0.014397055, -0.04237315, 0.028739575, 0.035147354, 0.02471767, -0.0024727895, -0.00296019, -0.008391465, 0.017614579, -0.0077984044, 0.0075734504, -0.031820763, -0.005126224, -0.013831262, -0.006700902, 0.01247472, 0.0015550796, 0.00791429, 0.040191777, -0.013047331, -0.027621621, -0.010784158, 0.004495671, 8.6019334E-4, -0.006520257, -0.027403485, -0.016155785, 0.0022989614, 0.005784044, -0.018637097, 0.025181212, -0.0015542274, -0.0051364494, 0.010218364, 7.822263E-4, 0.004277534, -0.01391988, 0.016864732, 0.015896749, -0.014996932, 0.004165057, 0.028057896, 0.02944852, 0.026081027, -0.030675543, 6.616544E-4, -0.014260719, 0.009202663, -0.0013633574, -0.009332182, -0.0027642073, 0.0011639664, 0.011745324, -0.0036435728, -0.03280238, -0.01903247, -0.008146061, -0.0034220272, -0.008670953, -0.022222726, -0.0050103385, 0.0053818533, 0.006608875, 0.0037594582, 0.0065781996, 0.017410075, 0.026285531, -0.042318616, -0.028248766, -0.013047331, -0.01616942, -0.004996705, 0.01205208, -0.011145447, -0.00905951, 0.0044036447, 0.018896135, 0.022549933, -0.0025511826, 0.02376332, -0.019305142, 0.0022393146, 0.010272899, 0.033156853, 1.0331693E-4, 0.013933513, 0.0019478969, 0.03855575, -0.02612193, 0.017682746, -0.022495398, -0.032584243, 0.008002908, -0.011452203, -0.009850258, -0.013633574, 0.0021404712, 0.0057976777, 4.6183734E-4, -0.015215069, 0.030212002, 0.015746778, -0.009809357, -0.015242336, 0.0075666336, -0.03931923, -7.35787E-4, -0.0151605345, 0.0244041, -0.01850076, -0.027185347, -0.0069224476, 0.02715808, 0.014615192, -0.003350451, -0.022754436, 0.03501102, 0.03981004, 0.0027147855, -0.010184281, 0.0035651796, 0.006833829, 0.020873003, -0.011418119, 0.026340066, 0.005255743, -0.026258264, 0.047881115, -0.023981458, 0.0015618964, -0.0128428275, -0.014233451, 0.02849417, 0.030948214, -0.01567861, -0.022468131, -0.039455563, 0.0025648163, 0.016046718, 0.0077302367, 0.020627597, 0.036483444, 0.00903906, 0.010047944, 9.0066803E-4, 0.011943012, 0.006278261, -0.0048603695, -0.010865958, 0.0064861733, -7.234315E-4, -0.02783976, 0.0014408984, -0.017519142, -5.7644455E-4, -0.0011230657, -0.0034833783, 0.020859368, 0.021391079, -0.011970279, -0.008575519, -0.01487423, -7.647583E-4, 0.02605376, -0.030839145, 0.0045672473, -0.003055625, 0.003350451, -0.002511986, -0.0023057782, -0.03901929, -0.022481764, 0.0144515885, 0.005075098, 0.030675543, 0.028330568, -0.015242336, 0.02777159, 0.004976255, -0.027280783, -0.007675702, -0.026135562, 0.007409848, 0.033593126, 0.014274352, -0.0038651184, -0.6334704, -0.012590606, -0.01563771, 0.0020041354, 0.008043809, 0.0074507482, -0.014778795, -0.0051125903, -0.015405939, -0.0050444226, -0.029503055, 0.00925038, 0.025372082, -0.0058419867, -0.023504283, -0.026789974, 0.0039673704, -0.008807289, 0.015896749, 0.0050921403, -0.031220885, 0.014792428, 0.006250994, -0.008316481, 0.005974914, 0.0018251948, -0.019168805, -0.008793656, 0.0035106454, 0.016387556, -0.02017769, 0.029993864, 8.2994386E-4, 0.0020382195, 0.037983138, 0.0087663885, -0.020859368, 0.05030789, 0.022563566, 0.033784, -0.026026493, -0.008132427, 3.3018814E-4, -0.004536572, 0.0022495398, 0.036483444, -0.006141925, 0.0053614033, -0.009700288, -0.010797791, -0.019346042, -0.004580881, -0.0113840345, -0.013790361, -5.5301184E-4, 0.0037253741, 0.018555295, -0.026708173, 0.013231384, 0.00320389, -0.013633574, 0.023545183, -0.004720625, 0.008943625, -0.006690677, 0.022522666, 0.0040593967, -0.0075530005, -0.005565907, -0.03154809, 0.0021063872, 0.010245631, -0.012501988, -0.003721966, 0.015324138, 0.023490649, 0.02868504, 0.004894453, -0.0014886159, 0.020204958, -0.001792815, -0.00888909, 0.024213228, 0.014465222, 0.01860983, -0.017137403, -0.03986457, 0.012406553, 0.008146061, -0.0021080915, 0.018187188, 0.02539935, 0.009032243, 0.018937035, -0.004720625, -0.007948374, -0.0025665204, -0.0025682247, 0.030266535, -0.05949692, -0.005647708, -0.019973187, 0.019782316, -0.012999613, 0.0076484354, 0.0020791201, -0.0143016195, -0.0056749755, 0.023299778, -0.0040662135, -0.015978549, -0.013224567, -0.018759798, -0.012345201, -0.007818855, -0.029421253, 0.018050853, 0.033075053, 0.0069497144, -0.006544116, 0.015146901, -0.0014860596, 0.014192551, -0.016578427, 0.013449521, 0.030948214, 0.0024148468, 0.01302688, 9.69688E-4, 0.02841237, -0.013592673, -0.0017237951, 0.019427843, -0.02372242, -0.0024574518, -0.0045842896, 0.0070962757, -0.01411075, 0.019155173, -0.005163716, -0.017996319, -0.0064895814, -0.010770524, -0.013108682, -0.0033657886, -0.0055522732, -0.026217364, -0.01247472, -0.006915631, -0.021772819, -0.011036378, 0.002372242, -0.004676316, 0.021486513, -0.0028647548, 0.0018695039, -0.0073212297, -0.029039513, -0.0071303593, -0.01472426, 0.0037458246, 0.01926424, 0.0034186188, -0.01578768, 0.01338817, 0.015487741, -0.010886409, -2.6862402E-4, -0.018705264, -0.010552387, 0.003507237, -0.024308663, 0.0059612803, 0.01621032, -0.022086391, 0.020423094, -0.0020569656, 0.01922334, 0.003057329, -5.4321275E-4, 0.0040150876, -0.025126677, -0.024922173, -0.014587925, 0.030975481, 0.01784635, 0.022222726, -0.0064486805, -0.008670953, -9.032243E-4, -0.028139697, -0.0103956, 6.020075E-4, -0.0038037673, -1.7776903E-4, 0.019318774, 0.021909155, 0.014410689, 0.01336772, -0.011152264, 0.028166965, 0.014492489, -0.0015397418, -0.0027778407, 0.030075666, -0.014737894, -0.0021234292, -0.022100024, 0.019591447, -0.006734986, 0.024622235, -0.0039298777, -0.027526187, 0.0035651796, -0.006019223, 0.0108046075, -0.017600944, 0.007368947, -0.024990343, 0.013415437, 0.010838692, -0.0076552522, 0.0207912, 0.023858756, -0.027226249, 0.010157013, 0.008902724, -0.02055943, 0.009638937, -0.00676907, -0.01434252, -0.003524279, -0.0029823445, 0.018896135, 0.0043184347, -0.028766843, 0.032502443, -0.010600104, 0.034683812, -0.00886864, 5.930605E-4, 0.0027659114, 0.014547024, -0.0054670633, 0.008609602, -0.017819082, 0.021922788, 0.020777568, -8.7936554E-4, 0.05126224, -0.007403031, 0.026558204, -0.008268763, -0.008425549, 0.024813106, -0.002944852, -0.001653923, 0.020573065, 0.038201276, 0.017996319, 0.020273125, -0.0321207, 0.025181212, 0.0012704787, 0.018732531, 0.013647208, -0.0075666336, 0.0066736345, -0.007137176, -0.022113658, -0.014015314, -0.0043320684, -4.7248855E-4, 0.0053239106, -0.0018729123, -0.00386171, -0.004311618, 0.012631507, 0.006053307, 0.0206685, -0.006642959, -0.031030016, 0.016851097, 0.018337158, -0.020982072, -0.014219818, -0.010279715, -0.002762503, -0.035420027, -0.010020677, -3.0441215E-4, 0.020573065, -0.009182212, 0.0113295, -0.018473493, 0.0052182507, 0.018827965, -0.017423708, 0.019959552, 0.022195458, -0.0046456405, 0.021527413, -0.011506737, -0.011247699, 0.019291507, -0.010034311, -0.009148128, -5.291531E-4, -0.0029567815, -0.014696993, 0.017205572, -6.3481333E-4, -0.03689245, 0.028330568, -0.0010753482, -0.016428458, -0.01716467, -0.003282283, -0.0018950668, -0.025426617, -0.020450361, -0.03822854, -0.02849417, 0.01949601, 0.08381922, 0.031984366, 0.015351404, 0.0043593356, -0.010859142, 0.0012508804, -0.024226861, -0.01033425, -0.001645402, -0.006002181, 0.020041354, -0.01811902, 0.009918425, 0.008425549, 0.022549933, -0.007839305, -0.006816787, -0.0077097863, 0.0039775954, 4.077291E-4, -0.023258878, -0.011622623, 0.027212614, 0.029312186, 0.0028562339, 0.0054057124, 0.013681292, 0.008977708, 0.011472653, -1.567861E-4, -0.003403281, 0.017819082, 0.012576972, 0.009154946, -0.0020740074, 0.010722807, 0.042127743, -0.008548251, 0.019673249, -0.011022745, -0.013660842, 0.029121315, 0.021922788, 0.0068440544, 0.015324138, -0.017491875, -0.004182099, 0.020273125, 0.034765616, -0.03214797, 0.031193618, 0.004659274, -0.02666727, -0.014083482, 0.01773728, -0.003837851, -0.0022205685, -0.0056306664, -0.007273512, 0.009618487, 0.014233451, -0.02128201, 0.009141312, -0.0066974936, -0.0011614101, -0.009679838, -0.00566475, -0.014397055, -0.0019496011, -0.0017825898, 0.017178304, -0.0073212297, -0.006373696, 0.0027130814, 0.0052421093, 0.015296871, 0.02055943, 0.009904792, 0.021527413, 0.014383421, -0.025944693, -0.041200664, 0.004008271, -0.025344815, -0.008193778, 0.009291281, -0.014696993, 0.01865073, -0.015024199, -0.0027216023, 8.567849E-4, -0.0013718784, -0.019427843, 6.5270736E-4, 0.028903177, 0.022359062, 0.009277647, 0.024376832, 0.012726942, 0.0037765002, -0.0052796016, -0.041473333, -0.0100752115, -0.0052625597, -0.02323161, -0.010865958, -0.0054602465, 0.01712377, -0.013988048, -0.033320457, -0.013333635, -0.021527413, 0.0046797246, -9.3890594E-5, 0.008200595, 0.005957872, 0.01754641, 0.0072530615, -0.021459246, 0.015242336, 0.015528642, -0.03127542, 0.017805448, 0.018309891, -0.013081415, 0.042045943, 0.008882274, -0.035256423, 0.014369788, 0.023149809, -0.0045331637, 0.012079347, -0.014506123, -0.012733758, -0.011827126, -0.0100752115, -0.008098343, 0.008411915, -0.0068951803, 0.019618714, -0.015883114, 0.0066191005, -0.005463655, 0.00888909, -0.004597923, -0.023463381, 0.0059510553, -0.00772342, 0.0051978, 0.018337158, -0.005306869, 0.019427843, -0.019577812, 0.0033027334, -8.124758E-4, -0.040791653, -0.024117794, -0.007491649, 0.01918244, -0.004294576, 0.032584243, -0.014424322, 0.026517302, 0.025644753, 0.018896135, 0.026081027, -0.016292121, -0.011445385, -0.030866412, 0.0061964598, 0.012951896, 0.023776954, -0.0014451589, 0.016292121, -0.010975027, 0.02567202, 0.0038514847, 0.021595582, 0.0071644434, -0.025317548, -0.024349565, 0.007055375, -0.0341112, -0.0015951282, -0.012481538, -0.0040628053, 0.019877752, 0.001584051, 0.0036844735, -0.013803994, 0.024758572, -0.0015976845, -0.003837851, -0.020968437, 0.032856915, -0.020273125, -0.017110135, -0.020300392, -0.014315253, 0.0061521507, -0.0061794175, 0.018909767, -0.0025051693, -0.0061282916, -0.0027318276, 0.024990343, -0.027362583, -0.031002749, 0.006649776, -0.0054023038, -0.024990343, -0.017110135, -0.021186575, -0.039264694, -0.014806062, -0.017819082, 0.004799018, 0.017410075, -0.02155468, -0.041718736, 0.022972573, -0.0060907993, 0.03631984, 0.012508805, 0.05022609, 0.018759798, 0.006278261, -0.021118406, 0.0040730303, -0.0046865414, -0.008970892, 0.016605694, 0.03921016, -0.006063532, 0.006015815, 0.006339612, -0.0031527642, -0.04169147, -0.03580177, 0.012420187, 0.027267149, 0.020341294, -0.019618714, -7.3450885E-4, -0.015528642, 0.0099456925, -0.0026363924, -0.002223977, -0.006762253, -0.014410689, -0.01411075, 0.00827558, -0.0010531936, 0.01041605, 0.0052761934, -0.029012246, 0.003273762, -0.027335316, -0.007962007, 0.006458906, -0.0036606148, 0.040219046, -0.026612738, 0.008977708, 0.007437115, 0.00810516, 0.010456951, 0.0015900156, 0.0051057735, 0.033320457, -0.0050171553, 0.01621032, 0.0028340793, -0.028194232, 0.013320003, 0.012072531, 2.5829233E-5, -0.02189552, -2.656417E-4, -0.0043184347, 0.0206685, -0.0022751028, -0.0032328614, -0.016660228, -0.021186575, 0.0073553133, 0.007137176, -0.019046104, 0.011302234, -0.03700152, 0.013960781, -0.006503215, 0.0031544683, -0.0023023698, 0.0015201436, -0.010450135, -9.7394845E-4, 0.006510032, 0.0053307274, -0.01487423, -0.024363197, -0.0093458155, -0.048753664, -0.021650117, 0.0010293348, -0.0154604735, 0.0028391918, -0.020682132, 0.0059476467, -0.0022461314, 0.005671567, -0.010122929, -0.01111818, -0.021009339, 0.016810197, 0.02879411, 0.008111977, -0.005886296, 0.0017468018, 0.023804221, -0.0018234906, -0.0086573195, -0.024663135, -0.0020961622, 0.03931923, -0.02410416, 0.029775728, -1.8863329E-4, -0.037410527, 0.012352019, 0.012699675, 0.014615192, 0.022140926, -0.007212161, -0.02117294, -0.0014477152, -0.010184281, 0.040082708, -0.0039775954, 0.02650367, 0.017001068, 0.026612738, 0.03852848, 0.022181826, -0.014778795, -0.028930444, -0.0055488646, 0.020109523, -0.028357835, -0.0076961527, 0.02162285, 0.01865073, 0.007498466, -0.017655479, -0.026708173, -0.003411802, -0.035610896, -0.043191165, -0.013210934, 0.012754209, 0.026939943, -9.040764E-4, -0.0025460701, 0.002244427, -0.010197913, -8.520984E-4, -0.033702195, -0.0012355427, 0.022127291, -0.008991342, 0.028657774, 0.020314027, -0.031193618, 0.0020194731, 0.016728396, 0.011452203, -0.008350564, 0.028903177, -0.011643073, -0.002416551, -0.0126928575, -0.004884228, -0.027253516, -0.016455725, 0.02509941, -0.017723646, 0.0041548316, 0.0053579947, 0.015733145, -0.0055386396, 0.004925129, 0.023149809, 0.0056340746, -0.0015388897, -0.007948374, -0.021922788, 0.004315026, -0.031220885, 0.018323524, 0.008630052, -0.0021421753, 0.03143902, 0.017028334, -0.0031220885, -0.0074166646, -0.008841373, 0.008302847, -0.010245631, 0.004614965, -0.0035549544, 0.020477628, -0.022549933, 0.012024812, -0.024254128, 0.0018286032, 0.0037458246, -0.015474107, -0.004945579, 0.04046445, -0.003957145, -0.059333317, 0.01092731, -0.012133881, -0.0055488646, -0.013974414, 0.002223977, -0.023258878, -0.0025000568, -0.004918312, 9.1941416E-4, -0.021759184, -0.016796563, -0.008091526, -0.0035788133, -0.013238201, 0.0149014965, 0.19097911, 0.010722807, 0.007559817, 0.042209547, -0.0027045603, 0.0015763821, 0.024213228, 0.022604467, -0.014996932, 0.014983298, 0.002312595, 0.012467904, 0.013660842, 0.0071030925, 0.011050012, -0.026190097, -0.030920947, -0.038174007, -0.02128201, -0.033129588, -0.004727442, 0.010429684, -0.005790861, -0.033729464, 0.011697607, 0.0019444886, -0.011077279, 0.012331568, 0.018405326, 0.012461087, -0.030239267, -0.015992183, 9.7650476E-4, -0.0011375514, -0.016292121, -1.1460723E-4, -0.0064895814, 0.0099456925, 0.0113840345, -0.017423708, -0.017301006, -0.002085937, -0.01856893, 0.003834443, 0.009775273, 1.3622924E-4, -0.03222977, 0.004338885, -0.011445385, 5.5471604E-4, -0.025481151, 0.0025733372, 0.022877138, 0.040873457, -0.008023359, 0.010013861, 0.012808743, -0.00623736, -0.016414823, 0.013892612, 0.012270217, 0.040737122, -0.020068621, 0.018555295, -7.0894585E-4, 0.022563566, -0.025481151, -0.008623236, -0.0026398008, -0.010627371, -0.005170533, -0.032829646, -0.011336317, -0.0036401644, -0.013347269, -0.012801927, 0.028875912, 0.00443432, -0.00249324, 0.031302687, -0.030621009, -0.015474107, 0.018241722, -0.010041128, -0.0054977387, -0.0010889817, 0.021200208, -0.019755049, -0.010368333, -0.007689336, -0.0170556, -0.024035992, -0.0045842896, 0.011472653, 5.4108247E-4, 0.0034629279, 0.019291507, 0.0021541049, -0.023790587, -4.486298E-4, -0.026830874, 0.022263627, 0.028875912, 0.004764934, -0.026762707, -0.022645367, -0.0017689563, 0.0012176486, 0.035038285, -0.015705878, -0.019277874, -0.016864732, 0.0022359062, -0.016128518, -0.0032771705, 0.04032811, 0.0015729737, 0.003810584, 0.03168443, -0.0064111883, -0.0028613464, -0.011874843, 0.02124111, 0.0016914153, -0.009025427, -0.037737735, -0.030839145, 0.008793656, 0.0056817923, -0.023517916, 0.03413847, -0.0051023653, 0.0034152104, -0.007668886, -0.0011852689, -0.022781704, 0.037710465, -0.00124662, -0.0016326206, 0.002113204, -0.009502602, -0.0038651184, 0.018677996, 0.01651026, 0.007457565, -0.03645618, -0.0022461314, 0.00453998, -0.015201435, -0.042891227, -0.033429526, -0.012365652, -0.0014085186, 0.025726555, 0.026544569, 0.0021404712, -0.019864118, -0.025426617, -0.027867027, 0.047417574, -0.04114613, 0.0094208, 0.042618554, -0.010975027, -0.017096503, -0.015774045, -0.17440069, 0.017423708, 0.008473267, -0.042618554, 0.0026789973, 0.02574019, 0.021418346, -0.0018882501, -3.0611636E-4, -0.023817854, 0.031057283, 0.008193778, -0.036483444, 0.0016811901, -0.004485446, 0.014560658, -0.009809357, 0.012120248, 0.02868504, -0.0042298166, 0.017723646, -0.019618714, -0.010450135, 0.010341066, -7.587936E-4, 0.012495171, 0.021213843, -0.0068951803, -0.005620441, -0.0025835624, -0.018637097, -0.008957258, 0.011268149, 0.003541321, -0.0137221925, 5.491774E-4, -0.02917585, -0.024581335, -0.011159081, 1.3580319E-4, 0.019209707, 0.018541662, 0.031520825, 0.010729623, 0.028548704, 0.0170556, 0.03280238, -0.02223636, 0.01453339, -0.027798858, -0.026285531, -0.04676316, 0.03790134, -0.011629439, 0.012372469, 5.159456E-4, -0.0018303074, 0.022563566, 0.01525597, -2.5989002E-4, -0.012767842, -0.009182212, -0.0017468018, -0.0028357834, -0.013831262, -0.016046718, -0.018759798, -0.0035004201, -0.034683812, 0.025140312, -0.033211388, 0.010007043, 0.012958713, -0.0073416797, 0.014587925, -0.02234543, -0.041555136, -5.116851E-4, -0.0055454564, 0.005351178, -0.0206685, 0.035501827, -0.010191097, 0.012420187, 0.0069803903, -0.0053034606, 0.014642459, -0.016292121, -0.0030249492, -0.022972573, 0.010000227, -0.022454496, -0.04801745, -0.002641505, -0.011315866, 0.0033777182, -0.010531936, 0.012167965, 0.004338885, -0.013640392, 7.354674E-5, -0.0170147, -0.008411915, 0.032257035, 0.024935808, 0.012870095, -0.0021950055, 0.022631733, 0.018732531, 0.011527187, -0.025031243, 0.008398281, 0.02955759, 0.023640618, -0.008780022, 0.026694538, -0.018855233, -0.031738963, 0.011363585, 0.015978549, 0.05537958, -0.007334863, 0.0018473493, -0.014574291, -0.001739985, -0.022645367, -0.08654593, -0.0021421753, 0.0034237313, 0.0623327, -0.02505851, 0.037628666, -8.580631E-4, 0.022018222, -0.026135562, 0.036647048, -0.0036401644, -0.032720577, 0.015392305, -0.010913677, -0.0015431502, -0.009516235, -0.0076416186, 0.002372242, -0.017655479, 0.034383874, -0.010157013, 0.004216183, -0.006087391, -0.018050853, -0.016660228, 0.030266535, -0.024826739, 0.027021745, 0.009577586, -0.005576132, 0.0017825898, -0.016987434, 0.012488354, -0.036183506, -0.020504896, -0.026871774, -0.022822604, -0.020968437, 0.014519757, -0.042018678, 9.7650476E-4, 0.0056238496, 0.004833102, -0.003411802, -0.01850076, -0.004799018, -0.045836076, 0.022522666, 0.014928764, -0.01321775, -0.008411915, -0.020886635, -0.0263946, -0.0016752254, 0.023626985, 0.016728396, 0.025767455, 0.008630052, -0.0092367465, -0.010436501, 0.0012653661, -0.0124338195, -0.030021131, 0.014983298, 0.012358835, 0.010579654, 0.014887864, -0.011063646, 0.009107227, -0.026421867, -0.029039513, 0.018896135, -0.034193005, -3.7087582E-4, -0.007314413, -9.517939E-4, -0.008929991, -0.022604467, 0.031002749, -0.034465678, 0.005480697, -0.0282215, 0.0018797291, -0.028030628, 0.013613124, 0.013170033, 0.0026261674, 0.0059987726, -0.0027471653, -0.056061257, -0.0060669407, 0.022659, -0.013606307, 0.006121475, 0.004315026, 0.006380513, 0.009086777, -0.02204549, -0.0058044945, 0.004894453, -0.008957258, -0.015664978, -0.075911745, 0.02811243, -0.007975641, -0.006295303, -0.020027721, 4.1774125E-4, -0.0027914743, 0.010000227, -0.0030079074, 0.018868867, -0.0013369424, 0.017791815, -0.0035379126, 0.0026006044, -0.022781704, 0.015119634, 0.0037390077, -0.011581722, 0.01073644, 0.008759571, -0.0035651796, 0.016687496, -1.3718785E-4, 0.005657933, 0.018009951, 0.010872776, -6.5270736E-4, 0.011608989, -0.025794722, -0.01281556, 0.030484673, -0.0023415664, 0.0062237266, 8.295178E-4, -0.004996705, -0.02879411, -0.011418119, 0.0070349243, 0.010443318, 4.8356585E-4, -0.014397055, -0.028657774, -0.0045604305, 0.013183666, -0.0076416186, 0.011758958, -0.018814333, 0.005058056, 0.01582858, 2.319838E-4, 0.029121315, 0.0023552, -0.011772592, -0.0067997454, 0.019059736, -0.016605694, 0.053061873, -0.0026807017, -0.00846645, -0.021159308, 0.022877138, 1.7446715E-4, 0.008009725, -0.02955759, 0.01659206, -0.0015192914, 0.017900884, -0.012154331, -0.007314413, -0.03302052, -0.012140698, -0.0042400416, 0.005514781, 0.04351837, 0.01224295, 0.01845986, 0.011779408, 0.006288486, -2.4263503E-4, 0.013074598, -0.0014536799, -0.0059169712, -0.029421253, 0.025344815, -0.00736213, 0.006114658, 0.010218364, 0.004669499, 0.0208321, 0.004113931, 0.014642459, 0.011949828, 0.01453339, -0.013476788, 0.0100956615, 0.028603239, -0.0148605965, -0.008459633, 0.009243564, 0.021404712, 0.017110135, -0.011752142, -0.004833102, -0.02013679, -0.018868867, -0.0018149696, -0.025276648, 0.010463769, 9.7480055E-4, 0.018923402, 0.024213228, 0.008473267, -0.011554454, 0.010893226, -0.031111818, -0.0020314027, -0.012958713, -0.010341066, -0.013456338, 0.021881888, 0.005463655, -0.0012875207, 0.037928604, -0.0063941465, 0.04665409, 0.007314413, 0.022645367, -0.022672635, -0.007593901, 0.0026551387, 0.007975641, 0.0084869005, -0.03847395, 0.004492263, -0.015596809, 0.011022745, 0.01941421, 0.030648276, -0.030675543, 0.074930124, 0.03146629, -0.0077779545, 0.021077506, -0.0017195346, 0.004751301, 0.016033083, 0.0076484354, -0.006963348, 9.3389984E-4, -0.007457565, -0.010838692, 0.012113431, -0.02509941, 0.014737894, -0.0059476467, 0.018541662, 0.018582562, 0.0010625668, -0.023408847, -0.012679224, -0.012290668, 0.020109523, 0.008125611, -0.0049558044, 0.0025597035, 0.022522666, -0.0054568383, -0.015651343, -0.022631733, 0.007689336, -0.017750913, 0.00155934, -0.01077734, 0.010013861, -0.0031919605, 0.0019410802, 0.032257035, 0.03214797, 0.0049660294, -0.0019035878, -0.013040514, -0.012938262, -0.02567202, 0.025113044, -0.018323524, -0.011854393, -0.025140312, -0.014969665 ], + "id" : "044656f6-05d1-4968-b9c2-4159ba640dc2", + "metadata" : { + "source" : "movies.csv" + } + }, + "0c79f077-ba53-4f10-a09d-c8fd72c89e56" : { + "text" : "971,8319,Tom Cruise-Jon Voight-Emmanuelle B��art-Henry Czerny-Jean Reno-Ving Rhames-Kristin Scott Thomas-Vanessa Redgrave-Ingeborga Dapk��naitۄ-Valentina Yakunina-Marek Va��ut-Nathan Osgood-John McLaughlin-Rolf Saxon-Karel Dobr�_-Andreas Wisniewski-David Shaeffer-Rudolf Pechan-Gaston ��ubert-Ricco Ross-Mark Houghton-Bob Friend-Annabel Mullion-Garrick Hagon-Ji��ina T��ebick��-Andrzej Borkowski-Maya Dokic-Sam Douglas-Olegar Fedoro-Carmela Marner-Mimi Potworowska-David Schneider-Helen Lindsay-Pat Starr-Richard D. Sharp-Randall Paul-Sue Doucette-Graydon Gould-Tony Vogel-Michael Rogers-Laura Brook-Morgan Deare-David Phelan-Melissa Knatchbull-Emilio Estevez-Marcel Iure��-Ion Caramitru-Dale Dye-Keith Campbell-Michael Cella-Harry Fielder-Toby Hinson-John Knoll-Paul Markham-Tina Simmons,mission-london england-cia-computer-paris france-undercover-espionage-secret mission-arms deal-spy-secret identity-headquarter-embassy-secret base-prague czech republic-secret agent-tgv-terrorism-agent,/l5uxY5m5OInWpcExIpKG6AR3rgL.jpg,/sra8XnL96OyLHENcglmZJg6HA8z.jpg,955-956-56292-177677-353081-2501-607-36557-1572-180-87-10764-1573-2502-89-604-1571-602-161-605-564\r\n616,The Last Samurai,Drama-Action-War,en,Nathan Algren is an American hired to instruct the Japanese army in the ways of modern warfare which finds him learning to respect the samurai and the honorable principles that rule them. Pressed to destroy the samurai's way of life in the name of modernization and open trade Algren decides to become an ultimate warrior himself and to fight for their right to exist.,34.823,Warner Bros. Pictures-Bedford Falls Productions-Radar Pictures-Cruise/Wagner Productions,12/5/03,140000000,456758981,154,Released,\"In the face of an enemy, in the heart of one man, lies the soul of a warrior.\",7.563,6025,Tom Cruise-Ken Watanabe-Timothy Spall-Tony Goldwyn-Hiroyuki Sanada-Koyuki-Shin Koyamada-Billy Connolly-Togo Igawa-Shichinosuke Nakamura-Masato Harada-William Atherton-Chad Lindberg-Scott Wilson-Ray Godshall Sr.", + "embedding" : [ 0.011108121, -0.02622976, -0.009993255, -0.02572976, -0.0121216355, 0.051378436, -0.0055641956, -0.01125677, -0.023216244, -0.045108162, 0.012756771, 0.031567603, 0.01781083, -0.019405428, -0.0036723015, 0.015878396, 0.02159462, -0.014648666, 0.006449332, -0.0262703, -0.008986497, -0.007148657, -0.012128392, 0.016324343, 0.005081087, 0.011466229, 0.019635158, -0.011851365, -0.0011199338, -0.020527052, 0.015648667, -0.014297314, -0.005277033, -0.02412165, -0.010364877, -3.9674877E-4, 0.0019206103, -0.03783788, 0.03354058, 7.111495E-4, 0.0058614933, 0.0047939243, 0.0032550714, 8.762679E-5, -0.012432447, 0.00922974, 0.012554069, -0.009432443, -0.007641901, 0.03337842, 0.034891933, 0.029081115, -0.022040566, -0.01474326, -0.021810835, 0.008898659, -0.009222983, 0.016148668, -0.013864881, 0.0049797357, 0.017702723, -0.0070473053, -0.019729752, -0.009695957, -0.016445965, -0.015540559, -0.023351379, -0.020810835, -0.008385145, 0.013695962, 0.016256776, 0.020283807, 0.019175697, 0.01355407, 0.03105409, -0.021972999, -0.029973008, -0.007668928, -0.0044594645, 0.0076554143, 0.009486497, -0.012513528, -0.013810826, -0.0031841253, 0.03143247, 8.978051E-4, -0.0034070986, 0.02128381, -0.0367568, 0.0020793944, 0.007202711, 0.030189224, -0.009121632, 0.008905415, -0.0035473015, 0.022473, -0.022837864, 0.011601365, -0.022594621, -0.038621668, -0.007824333, -0.0036790583, 0.0029493277, -0.015608126, 0.0029087872, 0.0077364957, -0.0013589542, -0.011783797, 0.018594617, 0.0055540605, -0.0016951034, 0.005108114, 0.011608122, -0.039027072, -0.005402033, -0.02840544, 0.035054095, -0.023351379, -0.008216226, -0.024256784, 0.030891927, 0.01933786, 0.0026317597, -0.040216263, 0.040189236, 0.049054112, 0.0013479745, -0.021581106, -3.7035515E-4, -0.00922974, 0.02840544, 0.0032753416, 0.020202726, 0.0107229855, -0.02385138, 0.042891942, -0.016432451, 0.017905425, -0.0072094677, -0.013162177, 0.04162167, 0.022027053, -0.025108138, -0.005354736, -0.018972995, 0.0107229855, 0.01841894, -0.0035743285, 0.028540574, 0.012628393, 0.008054064, 0.02132435, 0.020040564, 0.009114875, 0.022432458, -0.016662182, -0.0028648681, 0.0025675707, -0.0016140222, -0.016283803, -0.017216235, 3.5240751E-4, -0.0038716262, -0.007006765, -0.0034543958, 0.014108124, 0.013202718, -0.011371635, -0.015513532, -0.009182443, 9.54393E-4, 0.028540574, -0.016540559, 0.017054074, -0.01994597, -4.552898E-5, 0.0042195995, -0.0031706118, -0.035973016, -0.022891918, 0.0063750073, 0.0031841253, 0.024459489, 0.034973014, 0.004297302, 0.013317583, 0.0090337945, -0.010351364, -0.010621634, -0.014067584, -0.004672303, 0.028054086, -0.0025675707, -0.0118040675, -0.64259535, -0.025418948, -0.015567586, 7.098826E-4, 0.036162205, 0.0011655419, 0.014324341, -5.8995E-4, -0.021756781, -0.006820954, -0.0462433, 0.02802706, 0.005027033, -0.024770299, -0.0090067675, -0.021743268, -0.002322638, -0.016256776, 0.020283807, -0.009689201, -0.04291897, 0.012939204, 0.0053513576, -0.0021773675, 0.011385148, -0.0134662315, -0.015675694, -0.0206757, 0.008391902, 0.005307439, -0.025513543, 0.015581099, 0.011351365, 0.0034408823, 0.046918973, -9.518592E-4, -0.016256776, 0.045108162, 0.011371635, 0.021932459, -0.020121645, -0.0028327736, 0.01240542, -0.008263523, -0.024486516, 0.021216242, 0.009945958, -0.0068783863, 0.0054155467, -0.0142838005, 5.2829453E-4, 0.0054391953, -0.019270293, -0.009040551, -0.0030101386, -0.018675698, 0.0026976382, -0.03683788, 0.022189215, 0.008648659, -0.021148672, 0.027473005, 0.0017719616, 7.2044E-4, -0.012141906, 0.029000035, -0.02029732, -2.5615E-5, 0.011304067, -0.043378428, 0.010243255, 0.011020283, -0.011189202, -0.0073108193, 0.018121643, 0.017216235, 0.036675718, -0.012641907, -0.0129121775, 0.010945959, 0.0011385148, -0.009952715, 0.0062973048, 0.007175684, 0.01850002, -0.0085608205, -0.03672977, 0.002625003, 0.011283797, 0.002827706, -0.002792233, 0.029567601, 0.006391899, 0.0029172332, -0.014189206, 0.0038378423, -0.0035439231, -0.0027685843, 0.029729765, -0.057351418, -0.016662182, -0.019418942, 0.036189232, -0.017013533, 0.003429058, 0.0061182505, -0.009540551, -0.02063516, 0.024243271, -0.017621642, 0.0054797363, 0.0059594666, -0.013412178, -0.0016131776, -0.0015464545, -0.0270676, 0.01948651, 0.019878402, 0.0053952765, -0.024270298, 0.0055371686, -8.0764454E-5, 0.0019054076, -0.011635149, 0.007324333, 0.015229748, -0.010452715, -0.013297313, 8.55153E-4, 0.008114874, 0.0031942604, 0.0032956118, 0.0040067616, -0.027405437, 0.011270284, -9.3158893E-4, 0.010831093, 0.0057567633, 0.010925689, 9.2736597E-4, -0.024054082, -0.003224666, -0.008135145, -0.0060608177, 0.01380407, -0.011601365, -0.03583788, -0.0037162206, -0.0035439231, -0.011864878, 0.0067297374, 0.013202718, -6.718758E-4, 0.0034543958, 0.009331092, -0.0021182457, -0.029351385, -0.01700002, 0.01420272, -0.024432462, -0.00622298, 0.024243271, 0.0023091242, -0.0040337886, 0.015513532, -0.0044121672, -0.012182446, 0.020121645, -0.025743274, -0.015986506, 0.020608133, -0.0023716243, 0.002395273, 0.01497299, -0.0065946025, 0.010094606, -0.012506771, 0.02775679, 0.014445962, 0.0025320975, -7.250853E-4, -0.023540568, -0.010277039, -0.008837848, 0.029756792, 0.013385151, 0.019351374, -0.003234801, 6.397811E-4, 0.017905425, -0.028216248, -0.013797313, -0.009270281, -0.0013040556, 0.007513522, 0.024783812, 0.0170811, 0.014986504, 0.0115405535, 0.0027702735, 0.022486513, 0.014418935, 0.016405424, -0.015378396, 0.011520283, -0.025378408, -0.0034797338, -0.013716232, 0.030918954, 2.7386012E-4, 0.02159462, -0.011081094, -0.012844609, 0.002846287, 0.02090543, 0.010918932, -9.324335E-4, -0.012182446, -0.013750016, 0.006820954, 0.0134662315, -0.008844605, 0.026797328, 0.0040337886, -0.032405443, 0.012317582, 0.01668921, -0.0142567735, -0.0060608177, -0.012547312, -0.0051925736, -0.0046891947, 0.0019949349, 0.008222982, 0.019932456, 0.002844598, 0.019459482, -0.008858118, 0.04537843, -0.0030270305, -0.001413853, 0.012486501, 0.024405433, -0.0043412214, 0.0050844653, -0.013959476, 0.018121643, 0.020418942, -0.012006771, 0.036000043, -0.0055912226, 0.027243275, 0.006273656, 0.0041216263, -0.0038682478, -0.012682447, 0.0024594623, 0.012459474, 0.024662191, 0.033973012, 0.020770295, -0.01668921, 0.019081103, -0.0018260157, 0.021513538, 0.0034223013, -0.008256766, 0.0068547376, -0.0033665579, -0.01910813, -0.020851376, -0.017662182, 0.0120946085, 0.0015092923, -0.0012145285, -0.009587849, 0.014851369, 0.015405423, 0.015229748, 0.021878405, -0.009851363, -0.034378417, 0.018756779, 0.030486522, -0.018162183, -0.024986515, -0.014527044, -0.017905425, -0.036270313, -0.014472989, -0.013391907, 0.02324327, -0.013331097, -0.013662178, -0.01914867, 0.008114874, 0.02700003, -0.013547313, 0.010898661, 0.0046283836, -0.0068783863, -3.4670648E-4, -0.0038243288, -0.015000017, 0.029081115, -0.016567586, -0.008081091, -0.0107229855, -0.0029189223, 0.003746626, 0.0011782108, -0.0068614944, -0.036351394, 0.0013065893, 0.00469933, -0.0019256779, -0.024770299, -0.0041824374, 0.0022516919, -0.022486513, -0.014824342, -0.019635158, -0.03400004, -0.004243248, 0.07767577, 0.025689218, 0.0055709523, -0.0031081117, 0.0013623326, -0.004462843, -0.020797322, 0.0016233127, -0.008567577, -0.014418935, 0.028918952, -0.018364886, 0.02381084, -0.0010633458, 0.013290556, -0.010736499, -0.0068547376, -1.842274E-4, -0.014081097, -0.020121645, -0.015635153, -0.022797324, 0.01883786, 0.033135172, 0.013722989, -0.008878388, 0.03483788, 0.013229745, 0.022581108, 0.0016241573, -0.009013524, 0.009500011, 0.0101959575, 0.011608122, 2.0143605E-4, -0.01493245, 0.022000026, 0.015000017, -3.4153334E-5, -0.008581091, -0.008168928, 0.017743263, 0.010527039, -0.011810824, 0.0049459515, -0.02783787, -0.01631083, 0.012013528, 0.037891936, -0.047432486, 0.013790556, 0.0068006837, -0.027891925, -0.022918945, 0.00852028, 0.004983114, 0.007027035, 0.011087851, -0.022418944, 0.02531084, 0.005567574, -0.035135176, 0.022729756, -0.015864883, -0.010256768, -0.034297336, -0.029513547, -0.014729747, -0.010770283, -0.0061283857, 0.011337851, -0.011567581, -0.007966225, 2.8209493E-4, 0.019391915, -0.010013525, 0.030918954, -0.011655419, 0.007493252, 0.004942573, -0.039108153, -0.028973006, 0.011412175, -0.01914867, 0.0028564222, -0.007804063, -0.019364888, 0.02370273, -2.801946E-4, 0.002236489, 0.0041216263, -0.0038952748, -0.018337859, -0.008831091, 0.035486527, 0.008101361, 0.018040562, 0.01405407, 0.014135151, 0.0012466231, -0.005682439, -0.02002705, -0.0016140222, -0.012878394, -0.014905423, 8.3108206E-4, -0.0061452775, -0.002722976, -0.0060608177, -0.021337863, -0.010114877, -0.021554079, -0.0057905475, -0.0046621677, 0.021297323, 0.007439198, 0.017554075, 0.015918937, -0.0024848003, 0.015175694, 0.0017652047, -0.0072094677, 0.015324342, 0.028081113, -0.016743263, 0.02029732, -0.009067578, -0.011979744, 0.01883786, 0.036270313, -0.011581095, 0.0093243355, -0.016716236, 0.0025033813, -0.012297312, -0.037783828, 0.0029746657, 0.011648662, 0.0039966265, 0.013608124, -0.02420273, -5.523655E-4, -6.093757E-4, 0.023297325, -0.01883786, -0.021216242, 0.019229753, -0.015770288, 0.012722988, 0.01246623, -0.0066587916, -0.004709465, -0.027473005, -0.0031604767, -0.012168933, -0.04529735, -0.023108134, 0.008263523, 0.033594634, 0.01246623, 0.031297334, -0.018391913, 0.024675705, 0.0075608194, 0.012175689, 0.02883787, -0.019175697, -0.0087702805, -0.03097301, 9.738187E-4, 0.037540585, 0.030405441, 0.0058547365, 2.8948512E-4, 0.00108615, 0.02493246, 5.114026E-4, 0.02481084, 0.0011207784, -0.036594637, -0.015986506, 0.0030337872, -0.03059463, -0.006972981, -0.012587853, -1.516313E-5, 0.03656761, 0.0016385154, -0.002898652, -0.018162183, 0.024432462, -0.009790552, 0.012222988, -0.024094623, 0.017054074, -0.028135167, 0.005614871, -0.016527046, 0.0018310832, -0.009709471, -0.012000014, 0.0069155484, -0.0013353056, -0.01910813, -0.004523654, 0.029756792, -0.015716234, -0.025243273, 0.03159463, -0.01246623, -0.03124328, -0.01585137, -0.013087853, -0.023635162, -0.0072837924, -0.0073108193, 0.0028310844, 0.0027398681, -0.021891918, -0.050297357, 0.03821626, -0.005081087, 0.053973034, 0.024554083, 0.049756814, 0.030891927, 0.0022770297, -0.01589191, 0.0068614944, -0.0040675723, -0.0044155456, 0.013621638, 0.035297338, -0.015756775, 0.004020275, 4.8310866E-4, -5.9712905E-4, -0.033513553, -0.02775679, 0.03289193, 0.02572976, 0.0252703, -0.02729733, 0.009283795, -0.034891933, 0.018675698, -0.0013716232, 0.014675693, 0.01100677, -0.044432484, -0.015770288, 0.011358121, 0.0022466243, 0.009013524, 0.019594617, -0.035405446, 0.027432464, -0.030297333, 0.021270296, -0.0018057453, -0.015810829, 0.03554058, -0.019810833, 0.0085067665, 0.012709474, 0.02094597, 0.006743251, -0.009966228, -0.0058614933, 0.029973008, -0.0013944273, 0.011918933, 0.001489022, -0.006388521, 0.025337867, 0.017297318, -0.009358119, -0.016554072, -0.020621646, 0.004577708, 0.024378406, 0.0019408807, 0.004692573, 0.004111491, -0.023189217, -0.02554057, 0.0072770356, -0.002076016, 0.0065168994, -0.037243288, 0.006601359, -0.0031503416, 0.0022567594, 0.0036824367, -0.0055270335, -0.0043243296, 0.0031875037, 0.01470272, -0.018162183, -0.0062432503, -0.013067583, -0.0053783846, -0.03305409, -0.03170274, -0.0056250067, -0.006361494, 0.01704056, -0.020932456, -0.010918932, -0.007540549, 0.0063412236, -0.008013523, 0.004496627, -5.2702765E-4, 0.0026723004, 0.008567577, -0.013722989, -0.0206757, -0.011020283, 0.01891894, 0.011682446, 0.006858116, -0.010567579, -0.003500004, 0.023918947, -0.026473004, 0.01925678, 0.0021402051, -0.006520278, 0.0047060866, 0.012972988, 0.02136489, 0.015783802, -0.02090543, -0.028513547, 0.0031435848, -0.009804065, 0.028702736, 0.00436487, 0.006138521, 0.029729765, 0.019824347, 0.024973001, 0.019716239, -0.008695956, -0.028513547, 0.019729752, -0.0037601395, -0.022391917, -0.0012381771, 0.0036520313, 0.019445969, 0.010885147, 0.00392568, -0.019918943, -0.002094597, -0.030891927, -0.034973014, -0.0038750046, 0.014472989, 0.042108156, 0.009344606, 0.0064831157, 0.008783794, -5.401189E-4, -0.014378395, -0.016567586, -0.0074256845, 0.016864885, 0.010567579, 0.02558111, 0.025108138, -0.039162207, -0.007439198, 0.0093243355, 0.01543245, 0.0038918965, 0.0045371675, -0.022243269, -0.016378397, 0.002961152, -0.007033792, -0.006875008, -0.0024104759, 0.018783806, -0.032729767, 2.5760164E-4, 0.012750015, 0.0033885175, -0.0042905454, 0.0040675723, 0.005635142, -0.003040544, 0.0028834492, -0.0077635227, -0.022378404, 7.977205E-4, -0.031648684, 0.03978383, 0.024662191, -3.3973856E-4, 0.034459498, 0.01175677, 0.004479735, 0.0036621664, -0.008574334, 0.0060743312, -0.005905412, -0.002315881, 0.007750009, 0.0118581215, -0.034864906, 0.022108134, -0.03159463, 0.005885142, -0.005010141, 0.011777041, -0.0024628406, 0.028270302, 0.013033799, -0.06367575, 0.0033665579, -0.014337854, 0.01332434, -0.017310832, 0.004317573, -0.030297333, 8.6317665E-4, -0.0032956118, -0.0021283808, -0.022716243, -0.0270676, 0.0014459477, -0.009101362, -0.012506771, 0.009135146, 0.17556778, -0.0014121638, 0.0057128444, 0.03897302, 0.009594605, 0.0018395291, 0.025297327, 0.019459482, 0.008459469, 0.006952711, 0.008898659, -0.0030726388, 0.021391917, 0.0017432453, 0.020108132, -0.026216246, -0.03483788, -0.028081113, -0.01768921, -0.022000026, 0.0033716254, 0.0032989904, 0.0064054127, -0.03013517, 0.002219597, -0.0054155467, -0.0104324445, 0.01309461, 0.03178382, -0.009040551, -0.013945962, -0.016635155, -0.0041925726, 0.001758448, -0.021729754, 0.0072364947, 2.2466242E-4, 0.009094605, 0.008148658, -0.018270291, -0.0059932503, 0.0026385165, -0.0012001703, -0.0054054116, 0.028162194, 0.013905422, -0.016445965, -0.008148658, -0.0104054175, 0.017878398, -0.047540594, -0.006229737, 0.016972993, 0.029675711, -0.015905423, 4.037167E-4, 0.007905414, -0.0071081165, -0.0041351398, 6.984805E-4, -8.1038947E-4, 0.037297342, -0.025067596, 0.015378396, 0.0041756807, 0.027810844, -0.023716243, -0.013621638, 0.02994598, -0.0403514, -8.9020375E-4, -0.022648675, -0.015972992, 0.0024172326, -0.0013547313, -0.0037432476, 0.0039831125, -0.006280413, -0.0022027052, -0.0041216263, -0.017905425, -0.024486516, 0.031729765, -0.00925001, -0.010993256, 7.442998E-5, -6.9341296E-4, -0.009871633, 0.009094605, -0.012574339, 1.4453141E-4, -0.03167571, -0.013817583, -0.011344608, -0.0075743333, 0.011581095, 0.031486522, 0.003516896, -0.013317583, -0.01401353, -0.028891925, 0.026756788, 0.017202722, -0.0020354753, -0.022243269, -0.009945958, -0.011986501, 0.011175688, 0.02381084, -0.0148378555, -0.008851361, -0.020540565, -0.0031570983, -0.017391913, -0.008364875, 0.030837873, -0.006270278, -0.013189205, 0.03583788, -0.016216235, 0.013527043, -0.028243275, 0.02913517, 0.00240203, -0.0034054094, -0.03051355, -0.036189232, 0.00737163, 5.882608E-4, -0.033594634, 0.023527054, -0.011364878, 0.0047871675, 0.009972985, -0.007662171, -0.008756767, 0.016756777, 0.010135147, 0.009851363, 0.0042195995, -7.84207E-4, -0.02637841, 0.014756774, 0.023594622, 0.00966893, -0.021459484, 0.008864875, -0.008682443, -0.01405407, -0.029675711, -0.009114875, -0.016567586, 0.0018513534, 0.027432464, 0.03924329, 0.008614874, -0.024040569, -0.032945983, -0.016945966, 0.031648684, -0.04456762, 0.026162192, 0.039621666, -0.00875001, -0.032594632, -0.005425682, -0.17297317, 0.019013535, 0.0022347998, -0.0354595, 0.023500027, 0.012871637, 0.027918952, 3.1820138E-4, 0.0053581144, -0.02102705, 0.039162207, 0.014810828, -0.037540585, -0.0047601406, 0.0049864925, 0.0055101416, -0.010601364, 0.024486516, 0.027973006, -0.0034256796, 0.047243297, 0.002934125, -0.017851371, 2.0375868E-4, 0.010966229, -0.010398661, 0.038540587, 0.0033158823, 0.0072094677, -0.005016898, -0.029162196, -0.014540558, 0.019432455, 0.008601361, -0.015648667, 0.0050844653, -0.022270296, 8.5135235E-4, -0.015878396, -0.0154189365, 0.03537842, 0.013527043, 0.027081113, 0.0073581166, -0.0022043944, 0.010141904, 0.019716239, -0.027945979, 0.0043614917, -0.015216234, -0.016932452, -0.03105409, 0.013277043, -0.0046756812, -0.0052027088, 0.017297318, 0.018513534, 0.006540548, 0.009135146, 0.0050675734, -0.026973004, -0.0024645298, 0.0039560855, -0.011567581, -0.007195954, -0.016567586, -0.01240542, 0.00436487, -0.021013537, 0.012770285, -0.014959477, 0.020662187, 3.264362E-4, -0.005016898, 4.094177E-4, -0.012831096, -0.036432475, 0.007608117, -0.00469933, 0.022594621, -0.017945968, 0.031351388, 0.0027516924, 0.0137567725, -0.0045844647, -1.532941E-4, 0.017608128, -0.0057229795, -0.009412173, -0.008101361, 0.010513525, -0.033783823, -0.05291898, 0.008668929, 0.0040945993, -0.0061283857, -0.008581091, 0.014391908, 0.0043108156, -0.030162197, 1.5635576E-4, -0.024310838, -0.014486503, 0.025189219, 0.025013542, 0.009702714, 0.009547308, 0.025202733, 0.021554079, 0.009702714, -0.010641905, 0.009094605, 0.024040569, 0.008668929, -0.01910813, 0.0041655456, -0.024905434, -0.030621657, -0.0033614903, 0.019500023, 0.03951356, -0.0037770313, 0.001891894, -0.013500015, -0.005645277, -0.009020281, -0.087891996, 0.021891918, 0.026621653, 0.038756803, -0.03021625, 0.05191898, -0.011391905, 0.02059462, -0.020310834, 0.015175694, -0.0074729817, -0.029162196, 0.004381762, -0.0076486575, 0.0076959548, 0.014621639, -0.020162186, -0.017635155, -0.0039189234, 0.025432462, -0.0040945993, -0.019972997, -0.0071419002, -0.019864889, -0.014486503, 0.008182442, -0.019851374, 0.0107500125, 0.014500017, 0.0028243277, 0.0064628455, -0.022594621, 0.026324354, -0.043729782, -0.012993258, -0.012087852, -0.02921625, -0.020729754, 0.0045844647, -0.0364595, 0.012486501, 0.016567586, -0.0021587864, -0.015581099, -0.019932456, 0.002729733, -0.044432484, 0.008986497, -0.014824342, -0.015986506, -0.0064121694, -0.021513538, -0.022229755, -0.008358118, 0.019121643, 0.03362166, 0.023067594, 0.0033902067, -0.021121645, -0.009925687, -0.014770287, -0.0034070986, -0.018445967, 0.024351379, 0.0106959585, 0.00426014, -0.0040608156, -0.01695948, 0.015337856, -0.013702719, -0.030432468, 0.020810835, -0.037189234, -0.013635151, -0.006699332, 0.0061283857, -0.022527054, -0.01635137, 0.032189228, -0.037270315, 0.0069324407, -0.02700003, -0.006895278, 5.929061E-4, 0.012695961, 0.029000035, 0.006709467, 0.01154731, -0.013081096, -0.045783836, -0.011317581, 0.009358119, -0.0014206098, 0.009635147, 7.5295696E-4, 0.018027049, 0.017013533, -0.0067128455, -0.01883786, -0.007824333, -0.0112770405, 0.009472984, -0.075567655, 0.02637841, -0.031756792, -0.0018902048, -7.858962E-4, -0.0064358185, 0.011000013, -0.012297312, 0.008641902, 0.026054084, -0.0120675815, 0.02883787, 3.652876E-5, 0.009527038, -0.008648659, 0.007081089, 0.01956759, -0.0077432524, 0.005709466, 0.0022027052, -0.022729756, 0.022256782, 0.016972993, -0.0065067643, -0.0033057472, 0.010540552, 0.0076554143, 0.008195955, -0.015054071, -6.0219667E-4, 0.02562165, -0.024459489, 0.0010582783, 7.592914E-4, -0.004128383, -0.012736501, -0.025770301, 0.0028902062, 0.010790553, 0.020283807, -0.0033091255, -0.015540559, 0.011000013, 0.018202724, -0.005027033, 0.016891912, -0.015864883, 0.0068243323, 0.013168934, 0.0112500135, 0.021743268, 0.006250007, 0.006793927, -0.016486505, 0.014513531, -0.02783787, 0.045702755, -0.0028378412, 0.002978044, -0.013722989, 0.024094623, 0.00315372, 0.016162181, -0.02714868, 0.008087847, -0.0018479751, -2.0259737E-4, -0.0018091237, 0.0023918946, -0.01933786, -0.014067584, 4.4425728E-4, 0.0075743333, 0.029918954, 0.019918943, 0.020810835, 0.015229748, 0.0044324375, -0.014864882, 0.011081094, 0.011081094, 0.0019104752, -0.024216244, 0.017891912, -0.0060844664, 0.01983786, 0.003322639, 0.021662187, 0.0071081165, 0.0054324386, -0.006601359, 0.002439192, 0.013486502, -0.015945964, 0.008452713, 0.015337856, -0.007540549, -0.019135157, 0.012452717, 0.017878398, -0.003233112, -0.0024341245, -0.017351372, -0.028513547, -0.017972995, -0.0035945987, -0.026945977, -0.017162181, 0.010236498, 0.0104864985, 0.03940545, 0.020148672, -0.0031503416, 0.00800001, -0.033432472, 0.004763519, -0.01125677, -0.024135163, -0.00987839, 0.04318924, 0.0153919095, 0.021878405, 0.018851373, -0.0051723034, 0.04816222, 0.0035574366, 0.02393246, -0.038081124, -0.006300683, 0.014635152, 0.004222978, -0.01219596, -0.0188784, 0.011445959, -0.022162188, -0.0031030441, 0.022040566, 0.028054086, -0.029621655, 0.07378387, 0.0039628423, 0.007878387, 0.012054068, -0.036540583, 0.013945962, 0.015635153, 0.014783801, -0.0037533827, -0.007952712, 0.004020275, -0.0060337908, 0.018513534, -0.020932456, 0.009716228, -0.01933786, 0.0026199354, 0.022459485, -0.0074527115, -0.01010812, -0.009304065, -0.02094597, 0.017270291, 0.0027195977, -0.010385147, 0.0062837913, 0.014175693, -0.011939203, -0.0016444275, -0.027973006, 0.004003383, -0.024662191, -0.013398664, 0.0069087916, 0.009581092, -0.007952712, -0.011000013, 0.013229745, 0.025202733, 0.015202721, -0.007060819, 0.0129121775, -0.029567601, -0.022554081, 0.019310834, -0.0040608156, -0.008972984, -0.021500025, -0.0067702783 ], + "id" : "0c79f077-ba53-4f10-a09d-c8fd72c89e56", + "metadata" : { + "source" : "movies.csv" + } + }, + "3cc542db-db47-4790-a8df-6fa6283358ac" : { + "text" : "278927,The Jungle Book,Family-Adventure-Drama-Fantasy,en,A man-cub named Mowgli fostered by wolves. After a threat from the tiger Shere Khan Mowgli is forced to flee the jungle by which he embarks on a journey of self discovery with the help of the panther Bagheera and the free-spirited bear Baloo.,36.14,Walt Disney Pictures-Fairview Entertainment-Moving Picture Company,4/7/16,175000000,966550600,106,Released,The legend will never be the same.,6.857,7404,Neel Sethi-Bill Murray-Ben Kingsley-Idris Elba-Scarlett Johansson-Christopher Walken-Lupita Nyong'o-Giancarlo Esposito-Garry Shandling-Jon Favreau-Sam Raimi-Russell Peters-Brighton Rose-Emjay Anthony-Max Favreau-Chloe Hechter-Asher Blinkoff-Knox Gagnon-Sasha Schreiber-Kai Schreiber-Madeleine Favreau-Ritesh Rajan-Kendrick Reyes-Sara Arrington-Artie Esposito-Allan Trautman-Dee Bradley Baker-Sean W. Johnson-Daz Crawford,based on novel or book-snake-wolf-elephant-tiger-feral child-remake-bear-jungle-anthropomorphism-orphan-ape-monkey-animal-talking to animals-climbing a tree-live action and animation-live action remake,/xIGhgcLtzzTON56G905I5tuwNQM.jpg,/tB2w4m0rW62MTufTjRj0gFLMVBP.jpg,49679-269149-9325-127380-290595-258489-68735-393441-246655-291805-140300-241259-271110-153518-328111-209112-278154-294272-62211-297761-950\r\n353486,Jumanji: Welcome to the Jungle,Adventure-Action-Comedy-Fantasy,en,Four teenagers in detention discover an old video game console with a game they��ve never heard of. When they decide to play they are immediately sucked into the jungle world of Jumanji in the bodies of their avatars. They��ll have to complete the adventure of their lives filled with fun thrills and danger or be stuck in the game forever!,42.961,Columbia Pictures-Radar Pictures-Matt Tolmach Productions-Seven Bucks Productions,12/9/17,90000000,962102237,119,Released,The game has evolved.,6.", + "embedding" : [ 0.016897753, -0.022472817, -0.013884564, -0.014773919, -0.019008312, 0.026401909, -0.009723177, -0.014681001, -0.0319637, -0.024211705, 0.021623284, 0.023760391, 0.02914962, -0.0049246396, 0.0025120971, 0.021530366, 0.01987112, -0.02101268, 0.009305047, -0.008973198, -0.0042343936, 0.013194318, -0.030556658, -0.008130302, 0.016738465, -0.0012120786, 0.029547838, -0.009889102, -0.0028240352, 0.006909097, 0.0023312394, -0.018835751, -9.714881E-4, -0.017441986, -0.012404517, -0.0038461303, -5.948394E-4, -0.03873342, 0.033689313, -0.0065341075, 0.022353351, 0.021676378, -0.028034607, 0.0014269508, 0.0083227735, 0.015968576, 0.010008567, -0.008349322, -0.0258975, 0.043246567, 0.018902121, 0.016672095, -0.01494648, -0.024211705, -0.017800381, 0.0041447943, -0.0034877334, -0.005339451, 0.01248416, -0.004864907, 0.017269423, -0.0071148435, -0.009119212, -0.012995209, -0.036264464, -0.018344615, -0.008953287, -0.018158779, 0.009670081, -0.0025071194, 0.039662596, 0.015636727, 0.013990755, 0.011150127, 0.023136515, -0.01507922, -0.029494742, 0.005183482, 0.009723177, 0.0046591605, 0.01866319, -0.023879856, -0.019326888, 0.013619085, 0.016672095, 0.019791476, -0.015119042, 0.022844488, -0.018835751, 0.009756362, 0.004622657, 0.0032803277, -0.0037001166, 0.0048947735, 0.008329411, 0.0013697069, -0.017163232, 0.005365999, -0.018649915, -0.037220187, -0.00859489, -0.0041248836, -0.005555153, -0.008787363, -0.017946396, 0.0043007634, -0.0014468618, -0.005223304, 0.031034522, 0.015835837, -0.0070617474, -2.6776068E-4, 0.028724853, -0.044919085, -0.0057708547, -0.033238, 0.027424004, -0.0013398405, -0.0041846163, -0.022167515, 0.021610009, 0.023282528, 0.024304623, -0.024822308, 0.029919509, 0.013977481, 0.008355958, -0.030715946, -0.019725107, -0.016512807, 0.034698136, -0.007546247, 0.032229178, 0.015769467, -0.022207337, 0.05649398, -0.0025154157, 0.0031077662, -0.030423919, -0.024955047, 0.03581315, 0.025233801, -0.015835837, -0.02077375, -0.027450552, 5.4423243E-4, 0.024132062, 0.0053427694, 0.01967201, -0.012769551, 0.030662851, -0.0028057836, 0.0066104326, 0.016778287, 0.020760475, 0.0110837575, 0.021543639, 0.005813995, 0.007625891, -0.011176676, 0.01373855, 6.9273484E-4, -0.016247328, -0.013015119, 0.008389143, 0.029627481, 0.011681086, -0.022127694, -0.0043505407, 0.006746491, 4.741293E-4, 0.034830876, 0.011840373, 0.021769296, -0.012822647, 0.025101062, 0.0072608567, -0.002402587, -0.022804666, 4.3389262E-4, -0.015530535, 0.02453028, 0.02231353, 0.028008059, -0.01795967, -0.013685455, 0.008402417, -0.020654283, -0.0044899173, -8.0514874E-4, 9.889101E-4, 0.0094046015, -0.0155703565, -0.0100483885, -0.6490436, -0.007838274, -0.001147368, -0.01424296, 0.011621353, 0.012736366, 0.012185496, 0.007632528, -0.023401994, -0.004446777, -0.018703012, 0.015384521, 0.04165369, -0.026879773, -0.028087702, -0.004755397, 0.015623452, -0.031167261, 0.008767451, -0.009099301, -0.030450467, 0.018570272, 0.0057675363, -0.007499788, -0.01099084, -0.005170208, -0.0027443916, -0.017149959, 0.008229856, 0.013818194, -0.017083589, 0.017149959, 0.019446354, 0.015424343, 0.02798151, -0.0024224978, -0.023561282, 0.050467603, 0.03437956, 0.02989296, -0.025924047, -0.005488783, -0.0028588795, 0.0120726675, -0.016127864, 0.008608164, 0.030981425, 0.0022117738, 0.008136938, -7.960229E-4, -0.01602167, -0.0030696036, 0.0027228214, -0.030211536, -0.0136721805, 0.0016285492, 0.014415522, -0.028990332, 0.032388467, -0.008057294, -0.020256065, 0.0066071143, 0.014269508, 0.01688448, -0.004207846, 0.039290927, 0.0117275445, -0.0028870867, 0.02134453, -0.022632103, 0.016619, 0.003620473, -0.019950764, -0.005130386, 0.007579432, -0.0022748252, 0.026242621, 0.008249767, -0.0016244011, 0.0067298985, 9.814436E-4, -0.008601527, 0.0069223708, 9.1258483E-4, 0.024822308, -0.0136721805, -0.006869275, 0.0034479115, 0.015265056, 5.550175E-4, 2.3333135E-4, 7.4002333E-4, 0.0023262617, 0.018556997, -0.012822647, -4.658331E-4, -0.011700997, 0.007898007, 0.022857761, -0.06313096, -0.023494912, -0.020481722, 0.011847011, -0.018782655, 0.005057379, 0.007134754, -0.013260688, -0.0012950408, 0.043618236, -0.022539187, -0.0025120971, -0.013127948, -0.008389143, -0.010459881, 0.008428966, -0.023574555, 0.018782655, -0.01035369, 0.023242706, 0.0036835242, 0.010340416, 0.0058770464, 0.013858016, -0.011548347, 0.013559352, 0.029999152, -0.017149959, -0.012225319, 0.009278499, 0.014800467, 0.0014219731, 0.009490882, 0.008860369, -0.0067597646, 0.0040020994, 0.006706669, 0.028193895, -5.9566903E-4, 0.0136721805, -0.010274046, -0.037246734, -0.019764928, -0.016061494, -0.007858185, -0.0022499363, -0.012099216, -0.02888414, 0.0076922607, -0.010811642, -0.010512978, -0.032096438, -0.0041116094, 0.0094046015, 0.006192303, 0.021357805, 0.0020325754, -0.019141052, -0.0098758275, 0.024543555, -0.024809035, 0.013884564, 0.012391243, 0.0031774545, -0.0047686705, 0.018264972, -0.014800467, -0.017136684, 0.019207422, -0.0030579888, -0.041335117, -0.0015115724, -0.020017134, -0.0036735688, 0.019764928, -0.005664663, 0.017654369, -0.010658991, -0.017136684, 6.9522375E-4, 0.0027277991, -0.0037930345, 0.007234309, -0.0025635338, -0.016234055, 0.02549928, 0.019645464, 0.002545282, 0.00659384, -0.0119465655, 0.0038229008, -0.0027659617, 0.018198602, -0.013181044, 0.0012510709, -0.012231955, 0.023017049, 0.0014418841, 0.012550531, 0.009278499, 0.007559521, 0.035733502, 0.025393087, 3.596414E-4, -0.012298325, 0.0048018554, -0.037406024, -0.0022897583, -0.019393258, 0.010751909, -5.562619E-4, 0.024570102, -0.017176505, 0.002334558, -0.019313613, 0.011097032, 0.029441647, -0.005906913, 0.0029683895, -0.017933121, -0.011236409, 0.00536268, -0.009782909, 0.014893385, 0.011833737, -0.008933376, 0.025074514, 0.0023677428, 0.009988656, -0.0032736908, -0.017043766, -0.0011963157, -0.0054721907, -0.0041580684, 0.006739854, -0.006092748, -0.007818364, 0.025353266, -0.02134453, 0.038414843, -0.010731998, -3.0540483E-5, 0.030477015, 0.017734012, 0.0041182465, -0.0014651135, -0.010114758, -0.0050241943, 0.011170039, -0.014773919, 0.04868889, -0.0077719046, 0.010559436, -7.1513467E-4, 0.024065692, 0.008077205, -0.016207507, -0.0020939675, 0.016765013, 0.02811425, 0.028804496, 0.012557168, -0.023441816, 0.030078797, 0.010154581, 0.016632274, -0.013685455, -0.03299907, -6.209725E-4, 0.0069555556, -0.04202536, -0.024702841, -0.023401994, -6.6826097E-4, -0.001637675, -0.0019612277, -0.0019678648, 0.008913465, -0.0049611432, 0.02556565, 0.022764843, -0.0061060223, -0.015265056, 0.0051602526, 0.010937744, -0.016326973, -0.021835666, -0.010897922, -0.021795845, -0.018211875, -0.0011349237, -0.020348983, 0.019791476, -0.0034014527, 0.009285136, -0.0090130195, -0.005103838, 0.016658822, -0.0140173035, 0.00866126, 0.0077519934, 0.0016468008, 0.027716031, -0.0071015693, 0.013161133, 0.018132232, -0.0052398965, 0.0090594785, -0.005664663, 8.3501515E-4, 0.014030578, -0.0010569391, -0.011581532, -0.038175914, 0.0013481367, -0.03092833, -0.016632274, -0.0077652675, 0.012039483, 0.020999407, -0.017216329, -0.0073338635, -0.0319637, -0.014827015, 0.004629294, 0.071520105, 0.008926739, 0.007625891, -0.002591741, 0.005475509, -0.011807188, -0.02644173, -0.022499364, -0.006627025, -0.0050872457, 0.01393766, -0.017880026, 0.017083589, 0.009165671, 0.0098758275, -0.0015986827, -0.018769382, -0.013964208, -0.011070483, -0.011163401, 0.0105660735, 0.0014758985, 0.024517007, 0.049511876, -0.014481892, -0.017906575, 0.00747324, 0.02151709, -0.005548516, -0.009955471, -0.0053958655, 0.011999661, 0.002064101, 0.01393766, -5.471361E-4, 0.0036304283, 0.008209945, 0.011754093, 0.031937152, 0.0076391646, 0.0064942855, 0.015357973, -0.0020524862, -0.010088211, 0.021477269, -0.022326803, -0.021397626, 0.024543555, 0.029600933, -0.020561365, 0.02490195, -0.0017969626, -0.022658652, 0.016977396, 0.022963954, 0.006368183, -0.0076789865, 1.3180629E-4, 0.0010104803, -0.017269423, 0.015862383, -0.042529773, 0.012862468, -0.010765183, 0.0018566954, -0.012172222, -0.014614631, -0.023986049, -0.013791646, 0.009955471, -0.013094763, -0.031538934, -0.003620473, -0.015026124, 0.013990755, -0.01668537, 0.027264716, -0.0048449957, 0.0047288486, 0.010904559, -0.02723817, -0.03299907, 3.0613074E-4, -0.015450891, -0.014043851, 0.009975382, -8.852073E-4, 0.023587829, -0.011827099, -0.0014468618, 0.005976601, 0.0013796623, -0.0020226198, -0.0014974688, 0.040352844, -0.013094763, 4.9694395E-4, 0.0188623, 0.022353351, -0.0059666457, 0.023521459, -0.020667559, -0.01681811, -0.007831637, -0.013964208, -0.003086196, -0.009510794, 0.0088869175, -0.01281601, -0.020362256, -0.026893046, -0.014747371, 0.014136769, 0.005213348, 0.008482061, -0.009278499, 0.021251611, 0.0033549936, 0.020083504, -0.010864737, -1.580431E-4, -0.016698644, 0.0017654368, 0.026587745, -0.0072608567, 0.014110221, -0.003147588, -0.015703097, -0.0083095, 0.019114504, 0.013300509, 0.01628715, -0.016831383, -0.008402417, -0.022021502, -0.016977396, -0.0051337047, 0.013559352, -0.02787532, 0.010844827, -0.019818025, -0.006315087, 0.02503469, -8.926739E-4, -0.01799949, -0.03233537, 8.6778525E-4, -5.6881E-5, 0.011886832, 0.031751316, -0.019658737, 0.004363815, -0.011614717, -0.010499704, -0.01332042, -0.040459033, -0.03477778, 0.0035010073, 0.04993664, 0.017840205, 0.035733502, -0.0114753395, 0.029946057, -0.0039490033, 9.4908825E-4, 0.024994869, -0.024583377, 0.007313953, -0.04218465, -7.7403785E-4, 0.028831044, 0.018503902, 0.016326973, 0.015132316, 0.0051204306, 0.020083504, 0.012623537, 0.0043074004, -0.0041116094, -0.018211875, -0.013526167, 0.026428457, -0.026985964, 0.009849279, -0.020189695, -0.016964123, 0.05163571, -0.0052730814, -4.384037E-5, 0.0063814567, 0.02466302, -0.002409224, -0.008282952, -0.02774258, -0.010128032, -0.03283978, -0.0023876538, -0.02888414, -0.0045098285, -0.008900191, -0.014428796, 0.019579094, -0.0071878503, -0.01615441, 0.0076391646, 0.02989296, -0.0106921755, -0.034167178, 0.025366541, -0.009178944, -0.0059566903, -0.054343596, -0.006016423, -0.03347693, -0.009616985, 0.004811811, -0.007825, 0.0036337469, -0.011594805, -0.029069975, 0.024676295, 0.015437617, 0.048237577, 0.0042742155, 0.032229178, 0.028937235, 0.0024407497, -0.024344444, 0.022393173, -0.012192134, -0.011847011, 0.02305687, 0.013141221, -0.004947869, -0.016605726, -0.0048748623, -0.0014916614, -0.03910509, -0.023826761, 0.033131808, 0.02784877, 0.0178933, -0.014787193, 0.013685455, -0.02543291, 0.025167432, -0.0022748252, 0.012185496, 0.009504156, -0.031140713, -0.0076856236, 0.01762782, -6.458612E-4, 0.0056679817, 0.008269678, -0.019711833, 0.003106107, -0.0017886664, 0.0010743613, -0.021570187, -0.011594805, 0.025353266, -0.024822308, 0.01641989, 0.008608164, 0.0068427273, -1.7473925E-4, -0.0011216498, 0.012012935, 0.034538846, -0.012371332, 0.022525912, 0.006431234, 0.023070145, -0.024570102, 0.015278329, -0.026760306, -0.021742748, -0.036450297, -0.0016766672, 0.023680747, 0.020375531, -0.0107850935, 0.0079776505, -0.01169436, -0.0021918628, 0.003567377, -0.0065739295, 0.0039423667, -0.026043512, 0.017375616, -0.0040120548, 0.006408005, 0.0026365407, -0.010539525, -0.002429135, -0.01494648, 0.018716285, -0.010300594, 0.0017023856, -0.008787363, -0.006630344, -0.038414843, -0.02439754, -0.010021841, -0.026282443, 0.005896957, -0.033131808, -0.0107386345, -0.00525317, -0.0071413913, -0.011793914, -0.016977396, -0.019764928, -1.943391E-4, 0.015357973, -0.009902375, -0.012550531, -0.011754093, 0.039529856, -0.0010121396, -0.012411154, 0.024875404, 0.01013467, 0.025738211, -0.03528219, 0.013360242, 0.0012626856, -0.015198686, -0.0133270575, 0.013473071, 0.032149535, 0.016791562, 4.0112252E-4, -0.04168024, -0.013512893, -0.0011324348, 0.026760306, -0.0074135074, -0.012743003, 0.049140204, 0.02459665, 0.025751485, 0.025459457, -0.0024142016, -0.03082214, 0.0050407867, -0.039131638, -0.026760306, -0.009192218, 4.471666E-4, 0.014734097, -0.009159033, 0.016260603, -0.028379729, 0.005339451, -0.03538838, -0.03796353, 0.014654453, 0.016194234, 0.034299918, 0.01248416, -0.0055451975, 0.029308906, -0.0112563195, 0.007499788, -0.025658567, -0.0047819447, -0.012696544, 0.013778372, 0.023840034, 0.046565056, -0.016008398, -0.017840205, 0.0117740035, 0.02422498, 0.0124177905, 0.025379814, -0.043989908, -0.016313698, -0.0075329733, 0.028910687, -0.0020060274, -3.9324112E-4, 0.03491052, -0.023441816, -0.012650086, 0.00437377, 0.023494912, -6.919052E-4, -0.014906659, 0.01303503, -0.027131977, 0.010552799, -0.0178933, -0.013924385, -0.0036370654, -0.017654369, 0.017229602, 0.010254135, -0.0026133112, 0.013473071, 0.001035369, -0.0058073583, 3.3247125E-4, 8.9350354E-4, 0.0140173035, -0.020680832, 0.0084953355, 0.011734182, 0.021039229, -0.03220263, 0.019725107, -0.023999322, -0.014548262, -7.902155E-4, 0.012158949, -0.019459628, 0.034299918, 8.4662985E-4, -0.047042917, 0.006248717, -0.012623537, 0.0041912533, -0.010254135, 5.288844E-4, -0.007625891, -0.010167855, 9.889101E-4, -0.0022134332, -0.0038029898, -0.008959924, 6.6660176E-4, -0.0153977955, -0.03183096, 0.015596905, 0.15546463, -0.01140897, 0.025087787, 0.041308567, 0.008999745, 0.015477439, 0.035494573, 0.020110052, -0.006733217, 0.0067166244, -0.026229348, 0.024809035, -0.006003149, 0.0030480335, 0.0035839695, 0.0030364187, -0.04775971, -0.01967201, -0.017203053, -0.033317644, 8.8769615E-5, -0.0058007212, -0.012776188, -0.006849364, 0.011999661, -0.0032471428, -0.0013315442, 0.006630344, 0.02439754, 0.007234309, -0.016273877, -0.014455344, -0.022857761, 0.00872763, -0.036636133, -0.0011067166, -0.004908047, 0.020720653, -0.0013572626, 0.021092325, -0.011634627, 0.0027360953, -0.01149525, -0.0039290925, 0.0018832433, 0.04741459, -0.024609925, 0.008847095, -0.013911111, 0.01373855, -0.03273359, 0.00397887, 0.019977313, 0.020216243, -0.014787193, -0.0067498093, 0.0055352417, -0.006875912, 0.0066967136, 0.007221035, 0.01211249, 0.02928236, -0.009836005, 0.0052730814, -0.014561536, 0.021888763, -0.02198168, -0.0015331425, 0.021317981, -0.02020297, -0.027822223, -0.021809118, -0.024477186, -0.0017272743, 0.0030098706, -0.017070314, 0.004911366, 0.011913381, 0.01189347, -0.0065274704, -0.017880026, -0.02683995, -0.009968745, -0.012955386, -0.015185412, -0.017853478, 0.010234225, -0.017375616, -4.5629242E-4, -0.014840289, -0.001461795, -0.0012535597, -0.0121191265, -0.01681811, -0.008568342, 0.021384351, 0.022194063, 0.0140173035, -7.815045E-4, -0.005936779, -0.036529943, 0.02978677, 0.028698305, -0.005754262, -0.037618406, -0.0178933, 0.0102209505, -0.0022748252, 0.022034775, -7.454159E-4, -0.018981764, -0.022963954, -0.0022897583, -0.020893216, -0.0031923878, -0.0028854273, 0.010234225, -0.026255896, 0.03820246, -0.012962024, -0.016499534, -0.016605726, 0.0016260602, 0.0073935967, -0.009895738, -0.027158525, -0.0029617527, 0.019751655, 0.027954962, -0.019764928, -0.0039556404, -0.021052502, -0.008117028, -0.0054589165, -0.0046591605, 0.02244627, 0.02657447, 0.00426426, 0.018211875, -0.0020076868, 0.0131014, -0.016074767, 0.019326888, -0.001874947, 0.01668537, -0.02084012, 0.01987112, 0.0053560436, -0.015092494, -0.02928236, -0.01930034, -0.017481808, 0.0062553543, -0.003580651, 0.046485413, -0.0153977955, -0.020986132, -0.04345895, -1.9050209E-4, 0.009198856, -0.036609586, 0.027171798, 0.014335878, -0.0071413913, -0.024809035, -0.00485827, -0.16884479, 0.0065706107, 0.011920017, -0.0112563195, 0.0011598123, 0.01105721, 0.011614717, -0.006388094, 0.0025419637, -0.022154242, 0.014070399, 0.006471056, -0.05957354, -0.012099216, -0.002402587, 0.0143624265, -0.017375616, 0.032760136, 0.015995124, -0.0013755142, 0.02466302, 0.01050634, -0.015557082, -0.00468239, 2.7999762E-4, 0.011548347, 0.015105768, -0.015875658, 0.0028323315, -0.022671927, -0.035335284, -0.0104399705, -0.003092833, -0.001813555, 0.001397914, 0.0073338635, -0.02549928, -0.0072940416, 0.01050634, -0.0074400553, 0.028167346, 0.011588168, 0.020760475, 0.01233151, 0.0066900766, 0.0076723495, 0.017003944, 0.0024009277, -0.0047653522, -0.022008227, -0.011223135, -0.030954879, 0.023216158, -0.005644752, 0.020667559, 0.026985964, -9.3083654E-4, -0.008296226, 0.011442155, -0.020548092, -0.039848432, -0.012497434, 0.002530349, -0.014999576, -0.013977481, -0.014123495, -0.01464118, 0.01953927, -0.029946057, 0.009948834, -0.029574387, 0.0138447415, 0.01896849, 0.009769635, -0.0040784245, -0.018092409, -0.018357888, -0.0029600933, -0.016034946, 0.009510794, -0.04040594, 0.05813995, -0.03206989, 0.015304877, 0.029574387, -0.00602306, 0.0028688349, -0.021384351, 0.0031774545, -0.013147859, 0.0056945295, -0.014495166, -0.031114165, -0.008448876, 0.012271778, 0.007546247, -0.0059168683, -0.0057642176, 0.013698728, -0.01464118, -0.0011954862, -0.02261883, -0.013293873, 0.009305047, 0.038282104, 0.01514559, 0.027118703, 0.021835666, 0.027317813, 0.0020956267, 0.015769467, 0.012450975, 0.017866751, 0.0042941263, -0.018424258, 0.0049976464, -0.031777862, -0.019180873, 0.017415438, 0.004785263, 0.02409224, 0.0012825965, -0.018092409, -0.019685285, -0.010546163, -0.009105938, -0.07974996, 0.009371417, -0.016897753, 0.023521459, -0.04064487, 0.02811425, -0.023282528, 0.036211368, 0.008482061, 0.01380492, -0.016765013, -0.0041580684, 0.011103668, -0.0034346376, 0.022592282, 0.008807274, -0.01872956, 0.0043074004, -0.002171952, 0.01769419, 0.011528435, -0.01584911, -9.200515E-4, -0.0056082485, -0.028539017, 0.007280768, -0.03554767, 0.014840289, 0.005711122, 0.019459628, 0.022565734, -0.015822561, 0.014813741, -0.037406024, -0.027039059, -0.0066502546, -0.017362341, -0.0060827928, 0.01732252, -0.04884818, 0.018158779, 0.0011349237, 0.0034080895, -0.031087618, -0.0027460507, -0.0033450383, -0.023415267, 0.0053095846, -0.012344784, -0.048768535, -0.0054854644, -0.0087143555, -0.029335454, -0.014866836, 0.024702841, 0.015835837, 0.006096067, 0.016645547, 0.015902206, -0.008681171, -0.002402587, 0.0040983357, -0.020322435, 0.01725615, 0.0029634119, 0.007864822, -6.475204E-4, 0.0037631681, 0.028220441, -0.014375701, -0.004752078, 0.025751485, -0.03514945, -0.008269678, -0.02385331, 0.014734097, -0.03422027, 0.005488783, 0.012431065, -0.04202536, 0.0113027785, -0.037618406, 0.0016824746, -0.008030747, -0.0017853478, 0.013818194, 0.018623367, -0.0048947735, -0.010997477, -0.024583377, -0.005704485, 0.015026124, -0.012371332, -0.015703097, 0.004254305, 0.023879856, 0.022393173, -0.006670166, 0.0016965782, 0.018610094, -0.0079776505, 0.0056679817, -0.0677503, 0.022459542, -0.0026033556, -0.008979835, -0.0011822121, -0.005548516, 0.015384521, -0.027052334, 0.02338872, -0.005827269, -0.009928923, 0.019048134, -0.008209945, -2.130056E-4, 0.011880196, -0.0012187156, -0.0018766063, -0.004121565, -0.01105721, -0.0014070399, -0.015477439, -0.0010444948, 0.028512469, -0.00811039, 5.504546E-4, 0.012643448, 0.007825, 0.038149364, -0.0038959077, -0.018238423, 0.02914962, -0.016526083, -2.6610144E-4, 0.006889186, -0.00712148, -0.026826676, 0.012437702, -0.012477524, 0.013698728, 0.022260433, -0.009762999, -0.014627906, -0.0107386345, -0.01756145, -0.00850861, 0.023906404, -0.025446184, 0.00753961, 0.031246904, 0.011793914, 0.043220017, 0.009882464, 0.0035773327, -9.913989E-4, 0.022154242, -0.018782655, 0.05967973, -1.1770271E-4, 0.004831722, -0.014322604, 0.017003944, -0.0089665605, 0.017933121, -0.009597074, -0.016937574, -2.0450196E-4, -0.0061524813, 0.0032803277, 0.0050241943, -0.020521544, 0.001505765, 9.524067E-4, 0.018384436, 0.012431065, 0.0015721348, 0.01211249, -0.01879593, 0.011594805, -0.013220865, 0.022286981, 0.020694105, -0.025127608, -0.007997562, 0.0053494065, 0.0031127438, 0.03299907, -0.003992144, 0.0053825914, 0.016765013, 0.010851463, -0.028751401, -0.008409055, -0.0014153362, 0.023043597, 0.011243045, 0.017707465, -0.0020325754, -0.008926739, -0.0026630885, 0.028300086, -0.0068095424, -0.0032371874, -0.017083589, -0.019685285, -0.014999576, -0.017083589, -0.021251611, -0.034167178, 0.0080241095, 0.0095307045, 0.01866319, -0.00690246, -0.026123157, -0.003600562, -0.03990153, 0.009670081, 0.015424343, -0.0065341075, -0.01162799, 0.048264123, 0.010539525, 0.016446438, 0.042662513, -0.004141476, 0.029919509, 0.0067597646, 0.017149959, -0.0039689145, -0.0040087365, -0.004689027, -0.011740819, 0.014322604, -0.026919594, 0.013911111, -0.010141307, -0.018981764, 0.005439006, 0.0239595, -0.0044368217, 0.07189178, 0.0028339908, 0.020256065, 0.019579094, -0.024769211, 0.011641264, 0.016061494, 0.02787532, -0.016366795, -0.0016932597, 0.0049246396, -0.019340161, 0.011362511, -0.02848592, -0.008873643, 0.008581616, 0.007519699, 0.0063814567, 0.0023378765, -0.015132316, 0.015703097, 0.011216497, 0.031751316, 0.012822647, -0.027344361, -0.006125933, 0.02292413, -0.007997562, -0.006909097, -0.031671673, 0.00696883, -0.019074682, -0.010778457, 0.006328361, 0.023614377, -0.008156849, 0.0042343936, 0.015835837, 0.009816094, 0.0044965544, -4.343074E-4, 0.007313953, -0.018278245, 0.005359362, 0.018026039, -0.0025834448, -0.01930034, -0.005123749, -0.03260085 ], + "id" : "3cc542db-db47-4790-a8df-6fa6283358ac", + "metadata" : { + "source" : "movies.csv" + } + }, + "a4953732-57ce-4481-83b5-bfb054996b62" : { + "text" : "Firfer-Kate Johnson-Peter Pantaleo-Jean-Claude Sciore-Edward Bruzan-Frank Cernugel-Eddie Korosa-Robert Okrzesik-Leo Perion-Vince Waidzulis-John Hardy-Michael Hansen,burglar-holiday-family relationships-slapstick comedy-little boy-home invasion-precocious child-booby trap-home alone-suburban chicago-mischievous child-christmas-kids on their own-child rescue,/onTSipZ8R3bliBdKfPtsDuHTdlL.jpg,/6uLhSLXzB1ooJ3522ydrBZ2Hh0W.jpg,772-9714-24257-12536-21-1593-196-854-8844-601-953-165-310-9354-425-788-620-5825-134375-8871-882\r\n640146,Ant-Man and the Wasp: Quantumania,Action-Adventure-Science Fiction,en,Super-Hero partners Scott Lang and Hope van Dyne along with with Hope's parents Janet van Dyne and Hank Pym and Scott's daughter Cassie Lang find themselves exploring the Quantum Realm interacting with strange new creatures and embarking on an adventure that will push them beyond the limits of what they thought possible.,4425.387,Marvel Studios-Kevin Feige Productions,2/15/23,200000000,475766228,125,Released,Witness the beginning of a new dynasty.,6.507,2811,Paul Rudd-Evangeline Lilly-Jonathan Majors-Kathryn Newton-Michelle Pfeiffer-Michael Douglas-Corey Stoll-Bill Murray-William Jackson Harper-David Dastmalchian-Jamie Andrew Cutler-Katy O'Brian-Mark Weinman-Randall Park-Ross Mullan-Tom Clark-Leon Cooke-Nathan Blees-Durassie Kiangangu-Liran Nathan-Sam Symons-Grahame Fox-Nicola Peluso-Harrison Daniels-Brahmdeo Shannon Ramana-Russell Balogh-Leonardo Taiwo-Osian Roberts-Lucas Gerstel-Mia Gerstel-Tracy Jeffrey-Dinah Jeffrey-Judy Jeffrey-John Nayagam-Greta Nayagam-Cathy Chan-Adam Sai-Jamie Sai-Jakari Fraser-Patricia Belcher-Mark Oliver Everett-Ruben Rabasa-Melanie Garcia-Gregg Turkington-Sierra Katow-Ryan Bergara-Marielle Scott-Jake Millgard-Dey Young-Briza Covarrubias-Tess Aubert-David J. Castillo-Sir Cornwell-Alan Heitz-Esther McAuley-Aisling Maria Andreica-Milton Lopes-Roger Craig Smith-Matthew Wood-Loveday Smith-John Townsend-Tom Hiddleston-Owen Wilson-Abby Ryder Fortson,hero-ant-sequel-superhero-based on comic-family-superhero team-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/qnqGbB22YJ7dSs4o6M7exTpNxPz.jpg,/m8JTwHFwX7I7JY5fPe4SjqejWag.jpg,823999-676841-868759-734048-267805-965839-1033219-1035806-946310-811948-842942-772515-1058949-1105283-938992-1077280-76600-677179-802401-461191-980078\r\n118,Charlie and the Chocolate Factory,Adventure-Comedy-Family-Fantasy,en,A young boy wins a tour through the most magnificent chocolate factory in the world led by the world's most unusual candy maker.,186.776,Warner Bros.", + "embedding" : [ 0.030675605, -0.024651026, -0.03537367, -0.03410243, -0.019496972, 0.03896631, 0.012809138, -0.0063803876, -0.018667903, -0.033798438, 0.017161757, 0.027994944, 0.0026098446, 0.0022643986, 0.0087674195, 0.016678132, 0.017203212, -0.031781033, -0.00934086, -0.034185335, -0.010639736, 0.008166344, -0.02617099, 0.013714206, 0.009734669, 0.0140181985, 0.031781033, -0.010999001, -0.011876433, -0.004573705, 0.01785265, -0.015503617, -0.0052231434, -0.015697066, -0.012850591, -0.009092139, 0.0021884004, -0.0150476275, 0.02860293, -0.016014876, 0.02495502, 0.007427089, -0.0071507324, -0.0038206328, -0.024651026, 0.0052438704, 0.01279532, 3.8862677E-4, -0.00334219, 0.012684777, 0.018405363, 0.04651085, -0.0064011146, -0.025949903, -0.008705239, -0.014287647, -0.008007438, -0.00419026, 9.0765936E-4, -0.001628778, 0.016843947, -0.012339331, -0.038164873, -0.010978274, -0.01336876, -0.011164815, -0.007054007, -0.02342124, -6.783696E-4, 0.010888458, 0.03186394, 0.019870054, 0.009175045, 0.0074823606, 0.03249956, -0.026184807, -0.017424297, 0.008117981, -0.011454989, 0.009423767, 0.010729553, -0.008608514, -0.00959649, 0.017161757, 0.007585994, 0.021680191, -0.008705239, 0.030647969, -0.026392074, 0.015918152, 0.01055683, 0.027248781, 0.0069227377, -0.0067534694, 4.663521E-4, 0.023642324, -0.025120834, 0.017935557, -0.012311695, -0.03202975, 0.016595226, -0.017825013, -0.008159434, -0.015627977, 0.0010268382, -0.0071300054, 9.08523E-4, -0.014619275, 0.012221879, 0.022412537, -0.0028292027, -0.00371009, 0.019165345, -0.03896631, -0.005699859, -0.011586259, 0.010771006, -0.020782031, -0.0143291, -0.018971894, 0.026115717, 0.033908978, 0.0092026815, -0.023172518, 0.03448933, 0.014605457, -0.007696537, -0.027248781, -0.0020104956, -0.011358265, 0.03703181, -0.010549921, 0.0264888, -0.002530392, -0.034378786, 0.046649028, -0.030675605, -0.0014448279, -0.027649498, -0.01683013, 0.035014406, 0.023683777, -0.017438114, -0.02148674, -0.017521022, 0.0031971028, 0.016387958, 0.0048673344, 0.020574763, -0.0044562533, 0.020312225, 0.024775388, 0.011938614, 0.021666374, 0.023227789, 0.013700388, 0.00755145, -0.018004647, -0.0025355737, -0.02296525, -0.0046082498, -0.0138869295, -0.015213442, -0.0067603784, -0.005803493, 0.01919298, 0.023131065, 0.0012600143, 0.0084772445, 2.308011E-4, -0.013085495, 0.03045452, -0.021224203, 0.018667903, 0.008615423, 0.011904069, -0.0019362249, -0.016318869, -0.026240079, -0.020574763, 0.0036479097, 0.007516905, 0.02968072, 0.03139413, -0.0039311755, 0.009237226, 0.027290234, -0.011731346, 0.013216764, -0.008560152, 0.006473658, 0.019731876, -0.012214971, -0.015627977, -0.64468515, -0.012885136, -0.008048892, -0.018432999, 0.011144088, 0.02264744, 0.016277416, 0.007717264, -0.02840948, -0.012816046, -0.02590845, 0.014688364, 0.02987417, -0.009928118, -0.033052273, -0.017990828, 0.0040140827, -0.018598814, 0.025024109, -0.0033698257, -0.007945258, 0.020270772, 0.018184278, -0.019441701, 0.018184278, 0.012574234, 0.005589316, -0.033162817, 0.0012634688, -0.014771271, -0.011033545, 0.018778445, 0.016014876, 0.015586523, 0.042918213, 0.010404834, -0.013928383, 0.045211975, 0.03050979, 0.026958605, -0.040071737, -0.0075790854, 0.019483155, 0.00934086, -0.013907656, 0.023683777, 0.010847004, -0.0026167536, 1.7606952E-4, -0.002882747, 0.0043077115, 0.007993621, -0.009776122, -2.8477705E-4, -0.0058380375, -0.012062974, 0.0029794718, -0.029818898, 0.010273564, 0.0060936674, -0.015973423, 0.013548392, 0.004770609, 0.008615423, 0.0055064093, 0.05071147, -0.009409949, -0.016705768, -2.1838665E-4, -0.021694008, 0.003122832, 0.008428883, -0.019110072, -0.019662786, 0.004055536, 0.017576292, 0.029321456, -1.4924347E-5, -5.561681E-4, 0.021348562, -0.004919151, -0.0012444692, -0.0035045496, 0.011828071, 0.021210384, 0.0093615865, -0.037280533, 0.0042835306, 0.013120039, -0.008491063, 0.017548656, 0.0071507324, -0.0038102693, 0.009382313, -0.0064011146, 5.2766874E-4, -0.01651232, 0.0038966308, 0.013327307, -0.06422532, -0.009727759, -0.018474452, 0.014059653, -0.02391868, 0.013382578, 0.0054545924, 0.0128575, -0.024733935, 0.023117246, -0.0093615865, -0.017410478, 0.00716455, -0.013866203, -0.00636657, -0.011019727, -0.033300996, 0.013175311, 0.011786617, -0.0035200948, 0.007275093, 0.0057171313, 0.003364644, -0.004784427, -0.016346505, 0.020657672, 0.03319045, -0.011814253, -0.010294291, 0.010646646, 0.0033750075, -0.0061178487, -0.005534045, 0.0088296, -0.0051229643, -8.8466564E-5, 0.018446816, 0.014066561, -0.015531252, 0.020643853, 0.0031418314, -0.018460635, -0.018281002, -0.021583466, 9.111138E-4, -0.0063251164, -0.017673017, -0.030316342, -0.0018464088, -0.011544805, 0.0025373008, -0.014702182, 0.019911507, -0.010867732, 0.007696537, 0.013714206, 0.0036479097, -0.018847534, -0.02890692, 0.008283795, -0.006287117, 0.0074685425, 0.021265656, -0.0011581078, -0.031311225, 0.02641971, 0.015793791, -0.008504881, -0.009693215, 0.0027583863, -0.019621333, 0.009409949, -0.014301465, -0.010211384, 0.012194244, -0.009561946, 0.04217205, -0.015282531, 0.013707297, 0.0076274476, -0.0036824543, 0.006200756, -0.022412537, -0.03813724, -0.0011270175, 0.01996678, 0.022371083, 0.016042512, 0.0011468807, -0.026626978, 0.00620421, -0.016166873, -0.015669432, 0.003012289, -0.006857103, 0.0065980186, 0.024526667, 0.002597754, 0.0082008885, 0.009389223, 0.01503381, 0.037087083, 0.021072207, 0.008193979, -0.010577557, 0.0096379435, -0.04681484, 0.009175045, -0.021652555, 0.0068052863, -0.015310166, 0.012871318, -0.0052404157, -0.013527665, -0.0051920535, 0.0024872113, 0.019275887, -0.029128008, 0.013278944, -0.019455519, -0.0039864467, 0.01681631, -0.002877565, 0.0172723, 0.01880608, -0.024429942, 0.0071369144, -7.016872E-4, -0.021998001, -0.006408023, -0.011220086, -0.025314283, 0.014087288, 0.011454989, 0.008297613, -0.010038661, -0.0061765746, 0.04073499, -0.006072941, 0.03236138, -6.736197E-4, -4.616022E-4, 0.023973953, 0.017700654, 0.017244665, -0.0050055124, -0.01995296, 0.012360058, 0.021086024, -0.0028568385, 0.05002058, -0.0064909304, 0.028879285, -0.018598814, 0.02615717, 0.0017056396, -0.015600341, 0.0024803022, 0.007703446, 0.033881344, 0.021542013, 0.012988769, -0.035180222, 0.010411742, 0.011454989, 0.0128575, -0.004079717, -0.010943729, -0.006850194, -0.010916093, -0.03915976, -0.019883871, -0.014743635, 0.002380123, 0.008111072, 0.0049675135, -0.0068052863, -0.0120007945, 0.009064503, 0.012622597, 0.021832187, -0.009672488, -0.02232963, 0.018211912, 0.024264127, -0.0135967545, -0.017217029, -0.0022108543, -0.01963515, -0.023006704, -0.006511657, -0.0031729215, 0.039767742, -0.015075264, 0.006028033, -0.0100870235, 0.0031141958, 0.015019992, -0.013859293, 0.019469338, 0.012885136, -0.0046220673, 0.020312225, -0.01336876, -0.008484154, 0.01797701, -0.0029311094, 0.0058484008, 0.0013187401, 0.0029121097, -0.011061181, 0.010708826, -9.154319E-4, -0.03319045, 0.022730347, -0.02116893, -0.011883343, -0.008539425, 0.0010121568, 0.009900482, -0.019856237, -0.017258482, -0.024595756, -0.028768742, 0.0024388488, 0.07223967, 0.05341977, 0.006200756, 0.013976745, 0.0021193111, -0.0012902408, -0.020975482, -0.0064771124, -0.0029984713, -0.024153585, 0.03556712, -0.0150476275, 0.032223202, 0.0067845597, 0.016484683, -6.675744E-4, -0.010294291, 0.0012772866, 0.003281737, -0.007910714, -0.012968043, -0.009050685, 0.027221145, 0.02264744, -0.0044562533, -0.014729817, 0.02680661, 0.016913036, 0.0068536485, 0.0021089478, -0.00998339, 0.007157641, 0.023559418, 0.013962927, -0.0023973952, 0.002274762, 0.011924796, 0.018115189, 0.024167402, 0.004729156, -0.004919151, 0.0083321575, 0.004656612, -0.030620333, 0.018819898, -0.022481626, -0.003723908, 0.021804553, 0.027483683, -0.041564062, 0.026765157, 0.0024906658, -0.011841889, -0.0093615865, 0.023200154, 3.0118573E-4, -0.012125155, -0.0056756777, -0.016305052, -0.0023093065, 0.0022471263, -0.02706915, 0.013983654, -0.014142559, -0.009133592, -0.02187364, -0.010909185, -0.009409949, -0.018281002, -3.9488796E-4, -0.0014059652, -0.015641795, -0.01817046, 0.0024440305, 0.027621862, 0.0062663904, 0.02680661, -0.003530458, 0.0066947434, 0.007606721, -0.03653437, -0.029210914, 0.0017704108, -0.024015406, -0.0012021521, 0.012553507, 0.004964059, 0.016166873, -0.013658935, 0.0056204065, 0.007440907, 0.0019552244, -0.016968308, 7.073007E-4, 0.03786088, 0.00857397, 0.008712148, 0.026447346, 0.0061558476, -0.012242606, 0.0018705901, -0.012788411, -0.009382313, -0.009879756, -0.027815312, -0.0055167726, 0.0061385753, -0.0054062298, -0.027096784, -0.017935557, -0.009907391, -0.022149997, 0.01183498, -0.0022713074, 0.013313489, 0.015116717, 0.008421973, 9.0075046E-4, -0.011482625, -0.006888193, 0.0068536485, -0.007275093, 0.015959606, 0.02552155, -0.0045460695, 0.039823014, -0.009043776, -0.03678309, -0.0015061445, 0.029708356, -0.0026547525, 0.024927383, -0.022882342, -0.005585862, -0.028575294, -0.025604459, -0.0015346438, -0.0013809204, -0.0021141295, 0.016070148, -0.026392074, -6.783696E-4, 0.0086223325, -5.0046487E-4, -0.0062836627, -0.03346681, 0.0046807933, -0.024457578, 0.007703446, 0.0290451, -7.185277E-4, -2.1136977E-4, -0.01933116, -0.001711685, -0.009320133, -0.04446581, -0.025189923, -9.853847E-4, 0.034461692, 0.0068121953, 0.049025696, -0.0065669287, 0.027870584, -0.005219689, 0.008366702, 0.016111601, -0.027469866, -0.008967779, -0.02264744, 0.016387958, 0.012539689, 0.01651232, 0.007330364, 0.0067465603, 4.3029618E-4, 0.014633093, 0.012698595, 0.014923267, 0.009962663, -0.031559948, -0.0046600667, 0.017451933, -0.022467809, 0.0034026431, -0.017258482, -0.003754998, 0.033162817, 0.0048569706, -0.005976216, -0.0016011422, 0.028354207, -0.012774593, 0.011047363, -0.028050216, 0.013969837, -0.017369024, -0.016014876, -0.017990828, -0.006404569, 0.010708826, -9.603399E-4, 0.021141294, -0.010695009, -0.021542013, -0.010632828, 0.025963722, -0.014812725, -0.030620333, 0.027096784, -0.005986579, -0.012311695, -0.03283119, 1.6322323E-4, -0.034212973, -0.008221615, -0.0023559418, -0.01171062, 0.008753601, -0.018225731, -0.04330511, 0.0024353943, 0.0073027285, 0.052120894, 0.009133592, 0.041315343, 0.015904333, 0.014798907, -0.011669166, 0.0075721764, -0.00172723, -2.1590375E-4, 0.026571706, 0.012311695, -0.0042766216, -0.0030986506, -0.0070090992, -0.003613365, -0.04855589, -0.03283119, 0.017161757, 0.019745693, 0.031449404, -0.02661316, -0.005098783, 0.0023334878, 0.013361852, 0.0029242004, 9.767485E-4, 0.007516905, -0.032140296, -0.026461164, 0.008525607, -0.015503617, 0.009423767, 0.011406627, -0.023683777, 0.023200154, -0.024195038, -0.003634092, -0.0075790854, -0.009195773, 0.031007234, -0.011061181, 0.013520757, 0.0021849459, 0.015089082, -0.007516905, -0.0097968485, 0.007254366, 0.031477038, -0.0022246724, 0.019524608, -0.0025390282, -0.0029604721, 0.027981127, 0.019289704, -0.010211384, -0.02391868, -0.029017463, -0.009672488, 0.029266186, 0.01350003, -7.215503E-4, -0.011924796, -0.015959606, 0.0027808403, 0.0034855502, -0.026322985, 0.010605192, -0.042089142, 0.008719057, -0.01785265, 0.00889178, -0.0065392926, 0.004076263, 0.0011123362, -0.015669432, 0.011828071, -0.0013981927, 0.0030295614, -0.028575294, -0.025507733, -0.044217087, -0.03006762, -0.019165345, -0.00940304, 0.009561946, -0.01292659, 0.0069503738, -0.011337537, -0.0031383769, -0.007876169, 0.004345711, -0.0044735256, -0.016774857, 0.018253367, -0.016705768, -0.0069296467, -0.005534045, 0.035069678, -0.005796584, -0.002501029, 0.007696537, 0.008076527, 0.025314283, -0.020906392, 0.008670694, -0.0073027285, -0.028575294, -0.003958811, 0.013265126, 0.026046628, 0.028381843, -0.0038206328, -0.031228319, 0.0011166543, -0.0083183395, 0.023683777, -0.016691951, -0.001666777, 0.040928442, 0.009168137, 0.033162817, 0.026309168, -0.008836509, -0.029431999, 0.0035650027, -0.015517434, -0.0044631623, -0.0067534694, 0.017009761, 0.013361852, 0.012740049, -0.017507203, -0.036009293, -0.014439642, -0.007516905, -0.0180461, -0.009485947, 0.035594758, 0.042420767, 0.0041349884, -0.011758982, 0.013272035, 0.0051920535, 0.010950638, -0.021459106, 0.012373876, 0.030343976, 0.013258218, 0.01951079, 0.015531252, -0.021348562, -0.009036867, 0.0099143, 0.0286582, 6.386433E-4, 0.022868525, -0.02206709, 4.3331884E-4, -0.011841889, 0.005319868, 0.004497707, -0.008359794, 0.03006762, -0.021224203, -0.0032558285, 0.008263068, 0.0097830305, -0.0067120157, 0.0049018785, 0.019040983, -0.025811724, -0.0032091935, -0.0018446817, -0.015876697, -0.005271506, -0.022578351, 0.007876169, 0.001231515, -0.006262936, 0.021776916, 0.018460635, -9.7588496E-4, -0.0031746489, -0.025051745, -0.0016495046, -0.017120304, -0.004822426, 0.0073856353, 0.023808138, -0.029791264, 0.011952432, -0.020519493, 0.008007438, -0.01215279, -0.0010596556, -4.2209183E-4, 0.02405686, 0.015130535, -0.049523138, -0.008339066, 0.005765494, 0.009354678, -0.012484418, -0.014854178, -0.024291763, -0.020132594, -5.2335067E-4, 0.014757453, -0.037584525, -0.01656759, 9.871119E-4, -0.016014876, -0.00940304, 0.014550186, 0.18195331, -0.0033214632, 0.015406892, 0.055492446, 0.0024803022, 0.010397925, 0.005361322, 0.022509262, -0.0053647766, 0.010073205, -4.0481953E-4, 0.013852385, 0.0019673149, 7.443282E-5, -7.5307227E-4, -0.0027221146, -0.025024109, -0.017631564, -0.01554507, -0.023725232, -0.004248986, -0.008871053, -0.00959649, -0.029514907, -0.0020536764, 0.010370289, -0.014812725, -0.005651497, 0.030924326, 0.0011062908, -0.016968308, -0.006857103, -0.005910581, 0.0075790854, -0.023752866, -0.008269977, -0.009264862, 0.0086223325, 0.015448345, 0.0034527327, 0.0014120105, -0.004062445, -2.4526665E-4, -0.011586259, -0.009575763, 0.028464751, -0.012622597, 6.3087075E-4, -0.015185806, 0.0046497034, -0.03084142, -0.0023490328, 0.025949903, 0.025880814, -0.015365439, -0.0064460225, 0.003910449, 0.021307109, -0.012843682, 0.0057862205, 0.009071412, 0.03819251, -0.033411536, 0.018958077, 1.3785454E-4, 0.016968308, -0.032969367, -0.0139007475, 0.015793791, -0.022688894, -0.022785619, -0.021776916, -0.0027393869, 0.012968043, 0.0013394669, -0.017051214, 0.008207797, 0.009043776, 0.0067396513, 0.012429147, -0.022896161, -0.014370554, 0.0010017934, -0.009527401, -0.020326043, -0.0261019, 0.01714794, -0.015821427, -0.0044493447, -0.029266186, -0.010397925, -0.0072889104, -0.003153922, 0.021390017, -0.011606986, 0.0050262394, 0.007717264, 0.020947846, -0.009029958, -8.493654E-4, -0.03946375, 0.013783296, 0.03385371, -0.013797114, -0.032278474, -0.014771271, 0.004031355, 0.0071369144, 0.026309168, -0.008152526, -0.009423767, -0.012726231, -0.0058967634, -0.010764098, 8.519562E-4, 0.020091139, -0.0010924729, -0.01797701, 0.013949109, -0.021735463, -0.0062214825, -0.025673548, 0.006262936, 0.011779709, -0.013037132, -0.019358793, -0.029818898, 0.015945787, 0.0087812375, -0.02840948, 0.03255483, -0.02814694, 0.0096517615, 0.006345843, -0.0026081174, 0.01919298, 0.02270271, 0.0052473247, 0.0115378965, 0.0029760173, -0.0028067487, -0.015323984, 0.019745693, -6.446886E-4, -0.0011917887, -0.021915095, 0.007696537, -0.0053509586, -0.0048120627, -0.037888516, -0.018156642, 0.0020588583, 0.01542071, -0.009907391, 0.04374728, -0.017645381, -0.013175311, -0.02731787, -0.009941936, 0.034047157, -0.037335806, 0.019718058, 0.012781502, -0.007965985, -0.033439174, -0.01202843, -0.17852649, 0.016070148, 0.0073027285, -0.016664315, 2.2583532E-4, 0.008401247, 0.030675605, 0.015918152, 0.0036686365, -0.015821427, 0.025093198, -0.0065807463, -0.036175106, -0.006998736, 0.0026150262, 0.006819104, -0.024581937, 0.03142177, 0.031974483, -0.008491063, 0.039878286, -0.0010976547, -6.205074E-4, 0.010598283, 0.016982125, 0.008677604, 0.017894102, 0.0037964515, -0.012325513, -0.010916093, -0.046234492, -0.015572705, 0.015282531, 0.0072060036, -0.0038033605, -0.0058863997, -0.01875081, -0.01931734, -0.0025165742, -0.018142823, 0.04388546, 0.016235963, 0.02987417, -7.0427806E-4, 0.014128742, 0.007959076, 0.028685836, -0.01183498, 0.0015484617, 3.0787874E-4, -0.013624391, -0.033052273, 0.032637738, 0.0012263333, -0.005820765, 0.010280473, -0.01618069, 0.008048892, 0.0077932617, -0.001626187, -0.019883871, -0.016305052, 0.0071230964, -0.0049226056, -0.009133592, -0.021721644, -0.008739783, 0.008415065, -0.027262598, 0.017230846, -0.028381843, 0.0036755456, 0.0144810965, 0.0018688629, -0.005827674, -0.010335744, -0.035152584, 0.0020208592, -0.0069503738, 0.03634092, -0.011054272, 0.044548716, -0.0074063623, 0.004888061, -0.004739519, -0.0042040776, 0.002364578, -0.004950241, -0.004407891, -0.02373905, -0.004331893, -0.021707827, -0.034461692, -0.006007306, -0.0018481361, 3.0291296E-4, -3.2428742E-4, 0.0075238138, 0.015904333, -0.014094197, -0.0069883727, -0.01157935, -0.018377727, 0.014854178, 0.03653437, 0.013997472, 0.030012349, 0.022730347, 0.017134123, 0.00684674, -0.026281532, 4.5296608E-4, 0.016774857, 0.01464691, -0.01810137, 0.011600077, -0.020782031, -0.017921738, 0.01906862, 0.012332423, 0.048694067, -0.0018377728, -3.7653613E-4, -0.014978538, -0.0125673255, -0.0058933087, -0.09180573, 0.0050055124, 6.8225584E-4, 0.035207856, -0.025866996, 0.024982655, -0.013576028, 0.022509262, -0.013914565, 0.03882813, -2.297216E-4, -0.030924326, 0.017507203, 0.004760246, 0.011233904, -0.0011270175, -0.021403834, -0.012532781, -0.023642324, 0.030786147, -0.012912772, -0.012643323, 0.004304257, -0.0061662113, -0.013037132, 0.012111337, -0.032085024, 0.017949374, 0.01323749, 0.007959076, 0.009050685, -0.020063505, 0.0072336392, -0.031449404, -0.008325249, -0.032223202, -0.010653554, -0.025894633, 0.0087674195, -0.05021403, 0.016111601, 0.012235697, 0.012056066, -0.021445287, 0.0052922326, -0.0066878344, -0.04056918, 0.023559418, -0.0033387356, -0.025701182, -0.0069296467, -0.0072336392, -0.024471395, -0.009686306, 0.01989769, 0.0140181985, 0.036423825, 0.0064011146, -0.005737858, -0.029597813, 0.001411147, -0.019220615, -0.01835009, 0.022412537, 0.0115517145, 0.0070470986, -0.010729553, -0.009175045, 0.018460635, -0.013140766, -0.021735463, 0.024084495, -0.030178163, -0.0057274946, -0.019566061, -0.010729553, -0.021804553, -0.004280076, 0.015268713, -0.035097312, 0.0064011146, -0.034268245, 0.015089082, -0.024512848, 0.00498824, 0.016277416, 0.012670959, 0.02501029, -0.0057344036, -0.03705945, 0.0024958474, 0.018211912, -0.0028568385, 0.011074998, -0.0051782355, 0.01995296, 0.005257688, 0.0018930441, 0.0040348093, 0.006069486, -0.011123361, -0.010397925, -0.07345564, 0.038800497, -0.013589846, -0.0047567915, -0.013658935, -0.0067672874, 0.012125155, -0.0047429735, 0.0031297407, 0.019607514, -0.0067914682, 0.025300466, -0.008788146, -0.0024837567, -0.0014007835, 0.0035477304, -0.010688099, -0.0016253234, -0.004452799, -3.1759441E-4, 0.0031884667, 0.009299407, 0.020671489, 0.008808873, 0.0021227656, 0.026723703, -2.0834712E-4, 0.00934086, -0.019096255, -0.0052300524, 0.036506735, -0.019206798, -0.01170371, 0.0033974615, -0.005534045, -0.018211912, -0.017410478, -0.004031355, 0.019483155, 0.0045322515, -0.005451138, -0.025632093, -5.4434735E-5, -0.022827072, -0.014425825, 0.022039454, -0.016457047, 0.00966558, 0.017645381, 0.01247751, 0.01893044, 0.009506674, -0.008594696, -0.010059387, 0.031255953, -0.0075721764, 0.04311166, -8.212979E-4, -6.8182405E-4, -0.011745164, 0.018529724, 0.00135933, 0.029957077, -0.017258482, -0.003131468, -0.012187335, 0.019662786, -0.0038102693, -0.0024008497, -0.03319045, 0.0071230964, -0.0064011146, 0.013327307, 0.029846534, 0.007661992, 0.009969572, -0.002794658, 0.008981596, 0.003371553, 0.023144882, 0.02782913, -0.009755395, -0.03114541, 0.01861263, 0.0075721764, 0.02303434, -0.010494649, 5.672871E-5, 0.0035960928, 0.019745693, -0.016387958, 0.008401247, 0.013216764, -8.8347815E-4, 0.00642875, 0.021611102, -0.005637679, -0.011558623, -0.00419026, 0.022951432, -0.0060591227, -0.002065767, -0.014398189, -0.0014033744, -0.02430558, 0.0028205665, -0.022536898, -0.012525872, -0.0022972159, 0.022661258, 0.020091139, 0.0022125817, -0.014633093, 0.013064768, -0.035650026, 0.010695009, -0.01445346, -0.019552244, -0.015171988, 0.04023755, 0.00639766, -0.008180161, 0.030647969, -0.018142823, 0.04991004, 0.02360087, 0.02150056, -0.034820955, 0.008760511, 0.0035270036, 0.011441171, -0.0037722704, -0.02706915, 0.006691289, -0.007876169, -8.921143E-4, 0.01785265, 0.04297348, -0.013810931, 0.07561122, 0.018460635, -0.020782031, 0.0056756777, -0.01605633, 0.012007703, 0.0073856353, 0.00793144, -0.01151026, -0.016401777, -5.103965E-4, -0.012767685, 0.008352884, -0.034130067, 0.00920959, -0.019040983, 0.009382313, 0.010197566, 0.0042628036, -0.018584995, -0.010840096, -0.0030692876, 0.016028695, 0.007655083, -0.010370289, -0.012297878, 0.030620333, -0.015683249, -0.0029034736, -0.04203387, -0.010356471, -0.019165345, -0.01170371, -0.003288646, 0.04479744, -0.016691951, 0.004466617, 0.008643059, 0.022536898, -0.0050573293, -0.01810137, 0.011316811, -0.027677134, -0.019745693, 0.012622597, -0.0014292828, 0.008746693, -0.035152584, -0.023075793 ], + "id" : "a4953732-57ce-4481-83b5-bfb054996b62", + "metadata" : { + "source" : "movies.csv" + } + }, + "97ced943-f990-4c61-b26c-f59c46096b2e" : { + "text" : "Masashi Odate-John Koyama-Satoshi Nikaido-Shintaro Wada-Shun Sugata-Sosuke Ikematsu-Aoi Minato-Seiz�� Fukumoto-Shoji Yoshihara-Kosaburo Nomura IV-Takashi Noguchi-Noguchi Takayuki-Sven Toorvald-Yuki Matsuzaki-Mitsuyuki Oishi-Jiro Wada-Hiroshi Watanabe-Yusuke Myochin-Hiroaki Amano-Kenta Daibo-Koji Fujii-Makoto Hashiba-Shimpei Horinouchi-Takashi Kora-Shane Kosugi-Takeshi Maya-Seiji Morita-Lee Murayama-Takeru Shimizu-Shinji Suzuki-Hisao Takeda-Ryoichiro Yonekura-Ryoichi Noguchi,japan-loss of loved one-war crimes-sense of guilt-swordplay-general-samurai-war veteran-katana-sword-arms deal-homeland-emperor-language barrier-self-discovery-mountain village-foreign legion-mercenary-campaign-insurgence-leader-war strategy-gettysburg-slaughter-soldier-period drama-alcoholic-u.s. soldier-japanese army-warrior-19th century-war trauma,/lsasOSgYI85EHygtT5SvcxtZVYT.jpg,/4m0eLZzOr5W1BK9el9ASQrTwd0m.jpg,652-2024-180-70232-197-1495-74-2253-1538-855-853-9477-1372-663712-956-954-1271-9361-380-2059-98\r\n1271,300,Action-Adventure-War,en,\"Based on Frank Miller's graphic novel \"\"300\"\" is very loosely based the 480 B.C. Battle of Thermopylae where the King of Sparta led his army against the advancing Persians; the battle is said to have inspired all of Greece to band together against the Persians and helped usher in the world's first democracy.\",60.136,Virtual Studios-Legendary Pictures-Hollywood Gang Productions-Atmosphere Entertainment MM-Nimar Studios-Warner Bros. Pictures-Cruel & Unusual Films,3/7/07,65000000,456082343,117,Released,\"Spartans, prepare for glory!\",7.178,12970,Gerard Butler-Lena Headey-Dominic West-David Wenham-Vincent Regan-Michael Fassbender-Tom Wisdom-Andrew Pleavin-Andrew Tiernan-Rodrigo Santoro-Giovani Cimmino-Stephen McHattie-Greg Kramer-Alex Ivanovici-Kelly Craig-Eli Snyder-Tyler Neitzel-Tim Connolly-Marie-Julie Rivest-Sebastian St.", + "embedding" : [ -7.21002E-4, -0.025307465, -0.025591971, -0.016108446, -0.015132997, 0.023776554, -0.008745166, -0.021337932, -0.006675725, -0.052728403, 0.041971374, 0.024941674, 0.013270162, 0.0014182951, 0.012470837, 0.01446915, 0.017409043, 9.161763E-4, 0.01697551, -0.027177075, 0.0055139926, -0.01209827, -0.021107618, 0.008792583, 0.002563939, 0.014970423, 0.021988232, -0.018154178, -0.007884874, -0.035603866, 0.013493703, -0.01427948, 0.002181211, -0.016501335, -0.010045763, 0.008149059, 0.0056697936, -0.026269367, 0.019644447, -0.01982057, 0.009083862, 0.004338713, 0.0014081342, 0.0051515866, -0.01923801, -6.1388896E-4, 0.0023607204, -0.015918775, 0.0023014485, 0.046333797, 0.02181211, 0.028504768, -0.03416779, -0.02270627, -0.0017307434, 0.0029314256, -0.012613089, 0.004501288, 0.0013175327, -0.0077087516, 0.014916231, -0.010553809, -0.021514056, -0.0014166017, -0.019739281, -0.0144556025, -0.020606346, -0.013046621, -0.015417503, 0.0028111879, 0.03183755, 0.032731712, 0.009327725, 0.02071473, 0.024657167, -0.034980662, -0.02560552, -0.019847665, -0.019576706, 0.0015944177, 0.006123648, -0.018736737, 0.010072859, -0.0014928086, 0.02406106, -0.009564813, -0.0041016247, 0.017896768, -0.017720645, -0.0046062837, -0.0036206746, 0.017571619, 0.012599541, -0.0034648739, 5.402223E-4, 0.01228794, -0.011596997, 0.012470837, -0.032731712, -0.043461643, -0.0044504832, -0.0047790194, -0.0042641996, -0.007254897, -0.019305749, 0.003952598, 0.012917917, -0.0051583606, 0.039072126, -0.0019746055, -1.072718E-4, 0.0044843527, -0.001052502, -0.03993919, -0.029696984, -0.0019390424, 0.029480217, -0.028260907, -0.014550438, -0.0244404, 0.028342195, 0.00916515, 0.0035393874, -0.002939893, 0.040779162, 0.024155894, 0.005361579, -0.0011524177, -0.014902683, -0.006096552, 0.03492647, 0.0011388698, 0.027190624, 0.0047790194, -0.02817962, 0.04083335, -0.023627527, 0.008413242, -0.029155068, -0.0064284755, 0.034194883, 0.02322109, -0.00865033, -0.010770576, -0.021581795, 0.021866301, 0.025293918, 9.2803076E-4, 0.0021253258, 0.0043827435, 0.020118622, 0.017639358, 0.026147434, 0.014184644, 0.014726561, -0.030509857, 0.0045859623, -0.0030872263, -0.007051679, -0.014753656, 0.016772293, -0.012348905, 0.0021337932, -0.013656277, -0.017354852, 0.018547067, 0.026784185, -0.0031007743, -0.009517396, -0.002526682, 0.0044369353, 0.021527603, -0.024467496, 0.0061202613, -0.019928953, 0.010797671, 0.014008522, 0.0077019776, -0.017029703, -0.015227833, 0.010032215, -0.017192278, 0.03080791, 0.024602976, -0.014997519, 0.015512339, 0.015011067, -0.01917027, 0.0038171192, -0.012457289, 0.0053209355, 0.027285459, -5.0338893E-4, -0.015160093, -0.63642585, -0.017991602, -0.015593626, -0.007966162, 0.013060169, 0.012118591, 0.004057594, 0.007302315, -0.020023787, -0.013073717, -0.035739344, 0.035603866, -0.0032176247, -0.027962852, -0.009578361, -0.00849453, 0.0029602149, -0.033083957, 0.0055681844, -0.011536032, -0.0199425, -0.0055952803, 0.014875587, -0.0052531958, -0.013784982, -9.229503E-5, 2.1446422E-5, -0.015078806, -0.007044905, 0.027800279, -0.017463235, 0.019847665, 0.019048339, 0.005385288, 0.03712123, -0.002223548, -0.033083957, 0.049991727, 0.02759706, 0.017910317, -0.03511614, -0.012504706, 0.009381916, -0.009314177, -0.0070720008, 0.019414132, 0.012917917, -0.019265106, -0.0017392109, -0.0038272801, 0.005490284, -0.0013607166, -0.009619005, -0.0118273115, -2.7307472E-4, 0.005239648, -0.004338713, -0.046658948, 0.009652874, 0.012186331, -0.021053428, 0.040020477, -0.009436108, 0.004474192, -0.01711099, 0.017801933, -0.016406499, -0.0062286444, 0.0114141, -0.03357168, 0.005900108, 0.006262514, -0.016000062, -0.00974771, 0.0077358475, 0.017138086, 0.033544585, -0.004328552, -0.006580889, 0.011664737, 0.0034276173, -0.0057172114, -0.021730822, -0.001774774, 0.019265106, -0.0044098394, -0.018249013, 0.010093181, 0.009666422, -0.013581764, 0.0051583606, 0.0025656323, 0.010723158, 0.009957702, 0.0075123073, 0.0074716634, 4.6697896E-4, 0.002567326, 0.026025504, -0.044220325, -0.019671543, -0.011210882, 0.027935756, -0.016650362, 8.823066E-4, 0.007532629, -0.029507313, -0.02380365, 0.040291436, -0.01089928, 0.008961932, 0.005490284, -0.01795096, -0.0066926596, 0.018804478, -0.024020417, 0.023464952, 0.01814063, 0.0046706363, -0.0106486445, -0.0013649503, 0.0012616477, 0.012369227, -0.014550438, 0.01041833, 0.026120339, -0.002042345, -0.01276889, 0.014726561, 0.010547035, -0.00544964, -0.010729932, 0.014726561, -0.012342132, -0.008203249, -3.319234E-4, 0.0028653794, -0.0054089967, 0.024467496, -0.012755342, -0.006242192, -0.0075800465, -0.0033412494, 0.0019881534, 0.009754484, -0.018696094, -0.021080524, -0.0011972951, -2.214234E-4, 0.012233748, 0.001798483, 0.013364998, -0.008264216, 0.0066994336, 0.0076545603, 0.0034665673, -0.041646227, -0.009889962, 0.013310806, -0.01556653, 0.01620328, 0.01048607, -0.0020017014, -0.010919603, 0.029453121, -0.015471695, 6.668104E-4, 0.009822223, 0.0019610575, -0.011725702, 0.01594587, -0.007424246, -0.012680829, 0.018899312, -0.026621612, 0.019441228, 9.6020696E-4, 0.01595942, 0.025483588, -0.0036172876, 0.0058255945, -0.005141426, -0.02553778, -0.0040169507, 0.01834385, 0.010736706, 0.03126854, -0.0069703916, 9.6190046E-4, 0.008149059, -0.023776554, -0.017856125, 0.004863694, 9.094024E-4, 0.029127972, 0.017842576, 0.013629181, 0.01954961, -0.005243035, 0.0044504832, 0.03964114, 0.014130454, 5.435034E-5, -0.016921319, 0.024806194, -0.031756263, 0.008365825, -0.015187189, 0.019712185, -0.010438652, 0.0115292575, -0.009395464, -0.023464952, 0.005612215, 0.016243925, 0.02200178, -0.009693518, 0.0012608009, -0.009801901, 0.008216797, 0.02656742, -0.014889135, 0.014970423, -0.0032887512, -0.042567484, 0.016027158, 0.023383664, 0.0010431878, -0.00312787, 0.00654702, -0.013913687, -0.0056867283, -0.020823114, 0.0052531958, 0.0049415943, -0.0053175483, 0.018790929, -0.01273502, 0.0411585, -0.015525887, 0.009442882, 0.019414132, 0.024928125, -0.009849319, -0.0028857014, -0.022611436, 0.020809565, -0.0014504713, -0.0054123835, 0.03890955, -0.047309246, 0.019210914, -0.0021473411, -0.008812905, 0.014726561, -0.023464952, 0.0046333796, 0.00654702, 0.022462407, 0.027109336, 0.016826484, -0.011366683, 0.017422592, 0.0018391266, 0.015214285, -5.863698E-5, -0.025632614, 0.017707096, -0.008799357, -0.0340865, -0.016176185, 0.0038509888, -0.004372583, 0.007918744, -0.027624156, -0.005862851, 0.016176185, -0.007160062, -0.0050398167, 0.011326039, -0.020172814, -0.03961404, 0.005734146, 0.025009412, -0.024535235, -0.011590223, -0.01711099, -0.020050883, -0.03416779, 0.01347338, -0.011048308, 0.01935994, -0.010032215, 0.009517396, -0.016365856, 0.0070787747, 0.034628417, -0.0267029, 0.01673165, 0.013588537, 0.006587663, 0.012138912, -0.007803587, -6.532625E-4, 0.03839473, -0.001725663, 0.0018814638, 0.0076003685, -0.0019085596, -0.008663878, 0.010045763, -0.0046503143, -0.031295635, 0.027353197, 0.027962852, -0.02656742, -0.01247761, 0.008243893, 0.0067197555, -0.0013437817, -0.015715556, -0.027624156, -0.030076325, -0.009246438, 0.08269634, 0.039722424, -0.0046401536, -0.002375962, -0.005605441, 0.009077089, -0.01350725, -0.0032819773, -0.0042303298, -0.011651189, 0.009036445, -0.0050398167, 0.011746024, -0.0076003685, 0.0031397245, -0.019400584, -0.010025442, 0.003402215, -0.011881503, -0.020809565, -0.020348936, 0.014238836, 0.016325213, 0.01730066, 0.0031464985, -0.022218546, 0.016230376, 0.009659648, 0.01070961, 0.020768922, -0.012037303, 0.0074919853, -0.014862039, 0.015227833, -0.00275869, 5.630843E-4, 0.012470837, 0.03414069, 0.014685917, 0.014672369, -0.008006806, 0.01755807, 0.007065227, -0.013344675, 0.007783265, -0.030970486, -0.028667344, 0.0072142533, 0.02668935, -0.036064494, 0.020999236, -0.0013327741, -0.026784185, -0.017341305, -0.011061856, -0.001725663, -0.012443741, 4.7946844E-5, -0.003962759, 0.01115669, 0.006638468, -0.03820506, 0.027827375, -0.020416675, -0.0074513415, -0.03763605, -0.009761257, 0.001541073, -0.016555527, 0.0065300846, 0.004596123, -0.016230376, -0.014225288, 7.912817E-4, 0.0076816557, -0.0031532722, 0.02430492, -0.01834385, 0.0061812266, 0.0015122837, -0.034520034, -0.011522484, -0.0015884906, -0.023654623, 0.0023166898, 0.013602085, -0.0059339777, 0.0050398167, 0.0036613182, 0.0058052726, 0.0040880768, -0.008088092, -0.026499681, 0.01115669, 0.02315335, -9.3226443E-4, 0.014563986, 0.005229487, 0.006635081, 0.008670652, 4.5766478E-4, -0.022801105, -0.02445395, -0.028396385, -0.012199879, -0.01196279, 0.018167725, 0.009124506, -0.015539434, -0.011820537, -0.018668998, -0.028504768, 0.017246468, 2.9551343E-4, -0.0057172114, 0.0032514946, 0.027732538, 0.027000953, -0.008040675, 0.0049077244, -0.0034225367, -0.0017171955, 0.026337106, 0.021581795, -0.009138054, 0.032650426, -0.004057594, -0.011204109, 0.001221004, 0.013913687, -0.028071236, 0.0385844, -2.7836688E-5, 9.762951E-4, -0.02193404, -0.007281993, 0.008027127, -2.5444638E-4, -0.00651315, 0.002807801, -0.018939955, 0.0057239854, -0.0054327054, 4.6443872E-4, -0.0092125675, -0.02471136, -0.0017934025, -0.0147401085, 0.01685358, 0.0055817324, -0.009734162, -0.0094903, -0.040806256, -0.0034056017, -0.007769717, -0.039315987, -0.038557306, -0.023302378, 0.02033539, 0.009293855, 0.017978055, -0.0038035712, 0.013967878, -0.016569074, 0.0028433641, 0.014889135, -0.029507313, -0.0019204139, -0.04508739, -0.011786668, 0.01910253, 0.038882457, 0.0026452262, -0.009192246, 0.004602897, 0.03899084, -0.0073632803, -9.23797E-4, 0.005727372, -0.04560221, -0.006682499, -0.009734162, -0.008819679, -0.012301488, -0.020728277, -0.027420938, 0.021595342, -0.0037967972, 0.0012184638, -0.01395433, 0.02033539, 0.011725702, 0.0054462533, -0.018939955, 0.029344738, -0.021757917, 0.017680002, -0.018357396, -0.0010211725, -0.0016020384, -0.006872169, 0.0046740235, 0.0031769811, -0.009110958, -0.00791197, 0.032054316, -0.023817198, -0.019536063, 0.0026841764, -0.023857841, -0.013778208, -0.0141440015, 0.021405673, -0.02296368, -0.017138086, -0.010330269, -0.010391234, 0.0040271115, -0.010242208, -0.046008646, 0.034709703, 0.003085533, 0.044274516, 0.010994116, 0.035034854, 0.017652906, 0.033056863, -0.011847633, -0.001468253, -0.0173684, -0.007065227, 0.022218546, 0.022232093, -0.021188905, -0.0045520924, -0.007932292, -0.0103641385, -0.04855565, -0.013927235, 0.038367637, 0.017490331, 0.023072064, -0.015227833, 0.0135749895, -0.025429396, 0.0064521846, 0.0025199084, -0.0059644603, 0.006997487, -0.020186363, -0.007024583, 0.006137196, -0.0012328584, 0.0096461, 0.004863694, -0.03397812, 0.014306576, -0.03839473, 0.007309089, -0.008311633, 0.008115188, 0.033111054, -0.031783357, 0.025483588, 0.028125428, 0.030157613, -0.0053107743, -0.007092322, -0.0033869734, 0.03170207, -0.003193916, 0.024467496, -0.013161778, -0.0038509888, 0.034763895, 0.010689288, -0.002999165, -0.0019983144, -0.038828265, 0.013249841, 0.015011067, -0.012721472, 0.00865033, 0.005005947, -0.019414132, -0.012396323, 0.022083066, 0.0099238325, -0.008690974, -0.039830808, 0.0025114408, -7.0914754E-4, -0.014076262, -0.0023200768, -0.010113503, 0.007004261, 0.0058188206, 0.016758746, -0.029182164, 0.0040677553, -0.012450514, -0.0080203535, -0.022814654, -0.009287082, -0.020362485, -0.006130422, 0.023695266, -0.017449688, 0.00511433, 0.007932292, -0.0061473567, -0.0036443835, 0.012071174, 0.0015707089, 0.0043929047, -0.0017713872, -0.012884047, -0.025957765, -0.023085611, 0.018614806, 0.00485692, -3.8950195E-4, -0.017774837, 0.012206652, 0.032514945, -0.025564875, 0.006763786, 0.002751916, -0.017205825, -0.016677458, 0.026648708, 0.017273564, 0.008785809, -0.009361595, -0.024887482, 0.005605441, 0.0015215978, 0.0022184676, 0.011867955, -0.0037426057, 0.026364202, 0.016257472, 0.016609717, 0.018533519, -0.004365809, -0.03172917, 0.018696094, -0.019928953, -0.03834054, -0.010316721, 5.605441E-4, 1.9739704E-5, -0.010472522, 0.011725702, -0.03769024, 0.0050093336, -0.021839205, -0.023559788, -0.0018983986, 0.009300629, 0.05191553, 0.026133887, -0.0017409044, 0.016325213, -0.002379349, -0.012321809, -0.0046740235, -0.004325165, 0.012531802, -0.0056088283, 0.023681719, 0.0022828202, -0.031593688, -0.012938239, 0.026540324, 0.0147943, 0.0055139926, 0.023126256, -0.0076748817, -0.0032938316, -0.015742652, 0.0010567358, -0.0039390502, -0.006641855, 0.026472585, -0.04625251, 4.563947E-4, 0.0038442148, 0.022733366, -0.0050025596, 0.01595942, 0.02205597, -0.014591082, 0.018574163, 0.002755303, -0.021188905, -0.010411557, -0.03286719, 0.04142946, 0.008006806, 0.0030973873, 0.040697873, 0.026296463, -0.013818852, 0.0019949274, -0.010885733, 0.0074919853, -0.018506423, -0.006492828, 0.0028755404, 0.010845089, -0.026635159, 0.019129626, -0.022882393, -0.0013353142, -0.0060863914, 0.017083894, 0.0015707089, 0.042513292, 0.025158439, -0.06725174, 0.008135511, -0.009056767, -0.0049111117, -0.0034530195, -0.013927235, -0.031945933, -0.0019813795, 0.010181243, -0.020538608, -0.015864585, -0.028396385, -0.002421686, -0.010472522, -0.028586056, 0.012484384, 0.19357231, -0.015918775, 0.013927235, 0.03414069, 0.0059373644, 0.023613978, 0.023979772, 0.0054733492, -0.011285395, 0.019061886, -0.0032447206, 0.004992399, 0.0066791116, -0.0042506517, 0.02553778, -0.035414193, -0.022462407, -0.003996629, -0.0063404143, -0.011454744, 4.1913797E-4, 0.0066181463, -0.002768851, -0.002375962, -0.007031357, 0.004206621, -0.0102354335, 0.008521625, 0.024643619, 0.0073429584, -0.023776554, -0.005967847, -0.004731602, 0.008040675, -0.017734192, -0.0025419237, 0.0059170425, 0.015972966, 0.017774837, -0.0080203535, 0.013270162, -0.0037324447, -0.008284537, -0.005768016, 0.0080203535, 0.023139803, -0.024928125, -0.006648629, -0.016514882, 0.019969596, -0.035007756, -0.014062714, 0.03544129, 0.026039053, 5.872165E-4, -0.0074648894, 0.0075664986, 0.004172751, -0.0032227053, 0.0053954488, 9.221035E-4, 0.034492936, -0.024928125, 0.025185535, 7.6630275E-4, -7.2481233E-4, -0.021432769, -7.3497323E-4, 0.008338729, -0.033300724, -7.197318E-5, -0.031783357, -0.018506423, 2.8535252E-4, -5.393755E-4, -0.005859464, 0.017910317, 5.529234E-4, -1.6363316E-4, -1.8109723E-4, -0.019712185, -0.018384492, 0.021635987, 0.008541947, -0.005883173, -0.014171097, 0.008514851, -0.018967051, -0.0028484447, -0.015403955, -0.019956049, -0.01408981, 0.0036376095, 0.008731618, -0.0029534409, -0.007986483, 0.035143238, 0.0031532722, 9.1702305E-4, -0.0086842, -0.016691005, 0.034818087, 0.012585994, 0.012084722, -0.02425073, -0.026675804, -0.002765464, 0.017476782, 0.02785447, -0.018696094, 0.0065571805, -0.013514024, -0.007932292, -0.013683373, -0.0021896784, 0.008149059, -0.010729932, -0.012728246, 0.0228282, -0.025036508, 0.009849319, -0.027624156, 0.0055139926, 0.008372598, -0.014943327, -0.03544129, -0.031431112, 0.005896721, -0.0051109428, -0.020538608, 0.03235237, -0.028260907, -0.0015097434, 1.0749672E-5, -0.0014877281, -0.0020846822, -0.0076342383, 0.009998346, 0.02457588, 0.009673196, -0.0034276173, -0.0030042455, 0.00673669, -0.0056765676, 0.012606315, -0.02457588, 0.0014758736, -2.495776E-4, -0.0026706285, -0.022367572, -0.026079696, 1.2828162E-4, -0.005263357, 0.022164354, 0.037852816, 0.0036037397, -0.021039879, -0.010154147, -0.012619863, 0.053703852, -0.030591145, 0.030157613, 0.030672431, -0.027515773, -0.036796078, -0.01949542, -0.1736298, 0.0066181463, 0.002553778, -0.029100876, 0.022204999, 0.016867127, 0.016528431, 8.4632E-4, 0.0038171192, -0.017409043, 0.037852816, 0.026648708, -0.0260526, -0.019861212, -0.008575817, 0.012179556, -0.012579219, 0.040995926, 0.032189798, 0.013913687, 0.040860448, -0.0038848585, -0.021649534, 0.0037155098, 0.021608891, 0.01235568, 0.024020417, 0.009659648, 0.0016418354, -0.001009318, -0.03641674, -0.012755342, 0.007837457, 0.016609717, -0.02617453, -0.00871807, -0.015444599, -0.009334499, -0.020267649, 0.009822223, 0.026865473, -0.014116906, 0.001976299, 0.003955985, 0.0062049353, 0.020768922, 0.024643619, -0.012741794, 0.007275219, -0.014983971, -0.022028875, -0.03029309, 0.01697551, 0.0038035712, 0.022543695, 0.013676599, 0.02668935, -0.014062714, 0.00102964, -0.014889135, -0.03460132, 0.0011608852, 0.009964476, -0.016907772, -0.0115292575, -0.01697551, -0.025009412, 0.01704325, -0.024995863, 0.016243925, -0.013100813, 0.025429396, 0.021757917, -0.007939066, -0.003266736, -0.019698638, -0.008887419, 0.020240553, 0.0064149275, 0.017287113, -0.024128798, 0.018899312, -0.007302315, -0.0014767204, -0.008325181, 0.0069636176, 0.016826484, 0.0030736784, -0.012159235, -0.02419654, -2.1433191E-4, -0.024210086, -0.04096883, 0.0036172876, 0.005348031, 0.0024487819, -0.0046333796, 0.0036579312, -0.006872169, -0.016907772, 0.0031989964, -0.024237182, -0.027312554, 0.029453121, 0.013805304, 0.01743614, 0.0020406516, 0.030455666, 0.019021243, -0.0020948432, -0.018235466, 9.813756E-4, 0.015552982, 0.01453689, -0.013405641, 0.014116906, -0.0035326134, -0.027610607, 0.0076952036, 0.030455666, 0.058960434, -0.0081626065, 0.010635097, -0.013066944, 0.004731602, -0.03568515, -0.08063707, 0.02907378, 0.014130454, 0.05782241, -0.01762581, 0.04785116, -0.004724828, 0.022516599, -0.007281993, 0.017991602, -0.015160093, -0.032514945, 0.016257472, -0.01594587, 0.0015681688, -5.867932E-4, -0.018357396, -0.016311664, 0.008433564, 0.037392188, 0.00327351, -0.031485304, 0.004944981, -0.03172917, -0.015796844, 0.0064081536, -0.029182164, 0.015214285, 0.0121118175, 0.015105901, 0.026120339, -0.017829029, 0.027095787, -0.030184707, -0.006472506, -0.014726561, -0.02785447, -0.025456492, 0.007790039, -0.03638964, 0.015552982, 0.010208338, -9.0516865E-4, -0.018113535, -0.009056767, 0.0064149275, -0.029534409, 0.02656742, -0.0024623298, -0.022977227, -0.012335357, -0.0066655637, -0.021337932, -0.015918775, 0.0051990044, 0.016704554, 0.022394668, 0.007119418, -0.020809565, -0.010851863, 0.0017053412, -0.00224387, -0.0049111117, -0.001365797, 0.030970486, 0.01074348, -0.008420016, -0.029995037, 0.020010239, -0.012457289, -0.011434423, 0.025849381, -0.035983205, -0.0028433641, -0.020633442, -0.004467418, -0.009720614, -0.026404845, 0.032054316, -0.024345566, 0.0015927242, -0.029344738, -0.0012557204, -0.01711099, 0.014618178, 0.019671543, 0.009578361, 0.0075529506, 0.0012895901, -0.049802057, 0.002226935, 0.033219434, -0.0034750348, -0.0028162685, 0.004138882, 0.016826484, 0.030753719, -0.0026350655, -0.024399757, 0.019779924, 0.0010779042, -0.007837457, -0.07473018, 0.022882393, -0.011847633, -0.0010270997, -0.002731594, -0.0063133184, 0.010987342, -0.0094835255, -0.0035224524, 0.024846837, -0.010953472, 0.016243925, -0.013405641, -0.02315335, -0.030835006, -0.014360768, 0.0030279544, 0.0011473373, 0.019698638, -0.0026299849, -0.008284537, 0.0141440015, 0.028477672, -7.3719595E-5, -0.010885733, 0.022855297, 0.003121096, 0.016541978, -0.029290546, -0.016677458, 0.019088982, -0.013927235, -4.352261E-4, 0.008264216, -0.010472522, -0.028721536, -0.015078806, -0.007024583, 0.011495388, 0.018872216, 0.004758698, -0.007180384, -0.0010897587, 0.0041896864, -0.006540246, 0.034520034, -0.009090637, 0.0021253258, 0.0046706363, 0.0105199395, 0.009673196, 0.006990713, 0.0010457281, -0.016541978, 0.00636751, -0.016772293, 0.044680953, 0.012328584, 0.0011168545, -0.014848492, 0.026011957, 0.008508077, 0.021378577, -0.0334362, 0.016121993, 0.009700292, -0.0049246596, -0.0039255023, -0.0089009665, -0.02007798, -0.010817993, 0.0019153334, 0.0051719085, 0.029696984, 0.0019712185, 0.023573335, 0.016392952, -0.012247296, -0.012077947, 0.01795096, -0.0059441384, -0.0094835255, -0.031945933, 0.029290546, -3.4970502E-4, -0.0010321802, 0.007153288, 0.025768094, -0.014834944, 0.021473411, -0.00680443, 0.0069195866, 0.014672369, -0.0021168585, 0.010750254, 0.013324354, -0.013459832, -0.013710469, 0.025686806, 0.025036508, -0.0065707285, -0.00405082, 8.408162E-4, -0.012274392, -0.02907378, 0.008745166, -0.02205597, -0.013459832, 0.016067803, 0.01730066, 0.021717275, 0.023641074, 0.0018662224, 0.017409043, -0.027637703, 0.022028875, -0.012260844, -0.020430224, -0.00835905, 0.030591145, 0.03080791, 0.013588537, 0.02141922, -0.0036342226, 0.03782572, 0.0053006136, 0.024535235, -0.032731712, -0.00161982, 0.02790866, 0.011888277, -0.0020338777, -0.031566594, 0.009944154, -0.019671543, 0.006232031, 0.003830667, 0.028152524, -0.026120339, 0.074784376, 0.03267752, 0.0050973953, -1.0912405E-4, 5.982242E-4, 0.01659617, -0.0036342226, 0.015268477, 0.012023755, -0.012348905, 0.0024267666, -0.015783297, -0.0012684215, -0.024481045, -0.004464031, -0.0042980695, 0.015580078, 0.04237781, 0.0029415865, -0.02888411, 0.0027823986, 0.0028433641, 0.017896768, 0.012484384, 0.0011769732, -0.0067400774, 0.02205597, -0.010154147, 0.008745166, -0.027678346, -0.011928921, -0.017801933, -0.020701181, -0.004223556, 0.015214285, 0.0077019776, 0.0049246596, 0.0056697936, 0.018763833, 0.009029672, -0.022774009, 0.009219342, -0.03126854, -0.027299006, 0.009889962, 0.008575817, -0.0025097474, -0.0066316943, -0.025713902 ], + "id" : "97ced943-f990-4c61-b26c-f59c46096b2e", + "metadata" : { + "source" : "movies.csv" + } + }, + "2f2f8e8c-76ad-494b-bc60-0b8c7c525059" : { + "text" : "024,Eon Productions-Metro-Goldwyn-Mayer-Danjaq,11/17/02,140000000,431971116,133,Released,He's never been cooler.,6,3049,Pierce Brosnan-Halle Berry-Toby Stephens-Rosamund Pike-Rick Yune-Judi Dench-John Cleese-Michael Madsen-Will Yun Lee-Kenneth Tsang-Emilio Echevarr�_a-Mikhail Gorevoy-Lawrence Makoare-Colin Salmon-Samantha Bond-Ben Wee-Ho Yi-Rachel Grant-Ian Pirie-Sim�_n Andreu-Mark Dymond-Deborah Moore-Oliver Skeete-Joaqu�_n Mart�_nez-Michael G. Wilson-Daryl Kwan-Vincent Wong-Sai-Kit Yung-Manolo Caro-Sarllya-Paul Darrow-Lucas Hare-Cristina Contes-Madonna-Stewart Scudamore-Bill Nash-James Wallace-Thomas Ho-Aiko Horiuchi-Ami Chorlton-Tatiana Lavrentieva-Derek Lea-Catherine Porter-Albert Tang,spy-laser-espionage-mi6-british secret service-havana cuba-u.s. secret service agent-space based weapon-north korea,/bZmGqOhMhaLn8AoFMvFDct4tbrL.jpg,/ykFpThRWBJFFouxcroZGLiNJoF6.jpg,36643-714-710-709-700-708-699-253-681-707-698-682-691-667-646-660-668-10764-36670-657-658\r\n8358,Cast Away,Adventure-Drama,en,Chuck Nolan a top international manager for FedEx and Kelly a Ph.D. student are in love and heading towards marriage. Then Chuck's plane to Malaysia crashes at sea during a terrible storm. He's the only survivor and finds himself marooned on a desolate island. With no way to escape Chuck must find ways to survive in his new home.,29.094,Playtone-ImageMovers-20th Century Fox-DreamWorks Pictures,12/22/00,90000000,429632142,143,Released,\"At the edge of the world, his journey begins.\",7.658,10288,Tom Hanks-Helen Hunt-Chris Noth-Paul Sanchez-Lari White-Leonid Citer-David Allen Brooks-Semion Sudarikov-Peter Von Berg-Dmitri S. Boudrine-Nick Searcy-Fran�_ois Duhamel-Michael Forest-Lauren Birkell-Yelena Popovic-Viveka Davis-Jennifer Choe-Nan Martin-Anne Bellamy-Dennis Letts-Wendy Worthington-Valerie Wildman-John Duerler-Steve Monroe-Lisa Long-Elden Henson-Timothy Stack-Alice Vaughn-Joe Conley-Garret Davis-Jay Acovone-Christopher Kriesa-Derick Alexander-Vsevolod Boldin-Jenifer Lewis-Vince Martin-Valentina Ananina-Geoffrey Blake,exotic island-suicide attempt-volleyball-loneliness-survival-airplane crash-deserted island-tropical island,/6Zp6oj4QxpYFFvrVtb4kGc7r0jK.jpg,/ioqaIhJSkwa9DGRHGtOOUTiGRs2.jpg,594-568-13-857-745-640-497-591-37165-601-197-476761-453-1402-13223-44115-12405-329-602-98-4922", + "embedding" : [ 0.0033847734, -0.030505292, -0.010362588, -0.04502646, -0.019831149, 0.038822453, -8.622791E-4, -0.004592049, -0.031941153, -0.037413683, 0.009692067, 0.032103702, 0.012780525, 3.0859179E-4, 0.0014908919, 0.0128753465, 0.016200857, -0.016390499, 0.016444681, -0.026400894, -0.015835118, 0.005950022, -0.008459394, 0.011825542, 0.016864603, -0.001190343, 0.021294102, -0.01297694, 0.003025808, -0.0058450415, 0.009576928, 1.953568E-4, -0.008662581, -0.015374559, -0.011602035, 0.003803002, 0.008093655, -0.022621598, 0.020440713, -0.0038233208, -0.0046428456, 0.020887727, -0.010911196, 0.006061775, -0.006065162, 0.015063004, 0.017135521, -0.015252646, 0.0052795014, 0.028663054, 0.026536353, 0.02170048, -0.02149729, -0.025831968, -0.006329306, 0.009895256, -0.019790512, 0.0029479193, 0.0025127584, 0.0018811822, 0.0069558024, -0.03687185, -0.03643838, -0.00761955, -0.015212008, 8.429127E-5, -0.009780115, -0.023339529, 0.005015357, 0.008215568, 0.017961819, 0.012685704, 0.010890877, 0.0017609627, 0.010301632, -0.04109816, -0.02123992, 2.941993E-4, 0.0020437327, 0.0026228183, 0.029800907, -0.004812169, -0.026482169, 0.006220939, 0.012198053, 0.009082504, -0.017555444, 0.025154674, -0.020901272, 0.0103829065, 0.019099671, 0.04299458, -0.008249433, 0.017447077, 0.002155486, 0.020657446, -0.013803238, 0.023908455, -0.024965033, -0.025114037, -0.004934082, -0.0037352727, 0.0038910501, -0.006664566, -0.010301632, 0.006061775, 0.00558767, -0.012956621, 0.026658265, 0.0020809837, 0.011344663, -4.1526547E-4, 0.013356225, -0.047491807, -0.007429908, -0.0021944304, 0.011893271, -0.01937059, -0.0034186381, -0.008378118, 0.015266191, 0.014196068, 0.007876921, -0.034921244, 0.039066277, 0.017717993, 0.011439485, -0.025276586, 0.015157824, 0.009441469, 0.03237462, -0.009969758, 0.017027155, 0.018300466, -0.024165826, 0.055863153, -0.028067036, 0.006989667, -0.018612022, -0.015496471, 0.029448714, 0.044376258, -0.028581778, -0.015415196, -0.02228295, 0.0075653666, 0.009827526, -0.008378118, 0.021388924, 0.0035388577, 0.026238343, 0.017650263, 0.020115612, 0.009326329, 0.018544292, 0.009705613, -0.035435986, -0.0064783106, 0.0026380576, -0.016404044, 0.0044498174, -0.008229114, -0.0035354712, -0.007849829, -0.006691658, 0.023935547, 0.018557837, -0.01858493, -0.00451416, -0.0056926506, -0.004138262, 0.013572958, -0.016200857, 0.023014428, 6.5316475E-4, 0.0340814, 0.006464765, -0.008418757, -0.025913242, -0.031778604, 0.013105626, 0.006698431, 0.034650326, 0.03939138, -0.008886089, 0.025290133, 0.015537109, -0.024396107, 0.003171426, -0.0064546056, -0.013979334, 0.013234312, -0.0031036967, 0.0058111767, -0.6484677, -0.01962796, -0.022824785, -0.013478138, 0.011493668, 0.014209614, -0.0021317808, 2.4403725E-4, -0.043644782, -0.010111989, -0.029177796, 0.020955456, 0.010037487, -0.004107784, -0.017514806, 5.4691435E-4, 0.0055978294, -0.029150706, 0.007213174, 0.003467742, -0.035273436, 0.029150706, 0.027877394, 0.001727098, 0.020508442, -0.0061193453, -0.011967774, -0.02241841, 0.00863549, -0.0076466417, -0.018422378, 0.022431955, 0.00338816, 0.0048731253, 0.034162674, -0.0060075917, -0.008100429, 0.04795237, 0.028310861, 0.031074218, -0.022621598, 0.0047275075, 0.0057163555, -0.0046022083, -0.01664787, 0.022377772, 0.0048053963, -0.008852224, -0.0059161573, -0.0036607704, 0.008513577, -0.0039655524, -0.016241495, -0.015740298, -0.032699723, 0.015035911, 0.006627315, -0.019221585, 0.017839907, 0.002394232, -0.017690903, 0.019451864, 0.008066564, 0.0128753465, -0.026048701, 0.023231162, -0.009725932, -0.0025466229, -0.0026685358, -0.0250734, 0.00965143, 0.0037691374, -0.01632277, -0.005834882, 0.006871141, 0.010484501, 0.03624874, 0.008053018, -0.01242156, 0.034460686, 0.0012360603, -0.0011945762, -0.0054115737, 0.01611958, 0.026292527, -0.011541078, -0.04315713, 0.006508789, 0.030667841, -0.004737667, 0.0052490234, 0.025208857, -0.0028056877, 0.009427923, -0.009170552, -4.2140344E-4, -0.008554215, -0.0065223346, 0.027511654, -0.057488658, -0.01891003, -0.01937059, 0.022039125, -0.0048460336, 0.0021673387, 0.011622353, -0.015388104, -0.0058416547, 0.016309224, -0.005265956, -0.0057299016, 0.004317745, -0.02202558, -0.00225708, -0.011886498, -0.030992942, 0.01969569, 0.018693296, -0.002118235, 0.010247448, 0.008527123, 0.006783093, 5.744294E-4, -0.006102413, 5.7104294E-4, 0.034243952, 0.012137096, -0.0027887553, 0.0074569997, 0.0058044037, 0.011283707, 0.013031123, 0.012651839, -0.015130733, 0.0044836816, -3.8965532E-4, 0.00259234, -0.0024331764, -9.219655E-4, -0.0013545867, -0.034379408, -0.011385301, -0.01641759, 0.0023603672, -0.011161794, -0.015049458, -0.037007306, 0.001168331, -0.013742282, -0.020359438, -0.010938288, 0.021673387, 0.008709992, 0.011331118, 0.0090689575, 1.9485411E-5, -0.04532447, -0.026373802, 0.0016187311, -0.0072741304, -6.5358804E-4, 0.015672568, -0.003708181, -0.014561807, 0.020603264, -0.009285691, -0.014372164, 0.0052456367, -0.00914346, -0.017311618, 0.012448652, 0.0028480184, 0.0019692304, 0.011947454, -0.0071725366, 0.019411227, -0.010254221, 0.015455834, 0.004751213, -0.004697029, 0.01546938, -0.0012182813, -0.015821572, -0.0018930349, 0.044891004, 0.024355467, 0.023732359, -0.0010938287, -0.021917213, 0.007206401, -0.010152627, 6.8152644E-4, -0.003010569, 0.0059466353, -0.011141475, 0.02034589, -0.0073621785, -0.009238281, 5.604602E-4, 0.0054183467, 0.04890058, 0.005181294, 0.0076601873, 0.001135313, 0.016106036, -0.024423197, 5.5157073E-4, -0.014832724, 0.01697297, -0.014886907, 0.033377014, -0.001563701, -0.01844947, 0.0076330956, 0.01230642, 0.018964212, -0.017176159, 0.013661006, -0.025059853, 0.0019912424, 0.0010684303, -0.010227129, 0.01740644, 0.010172945, -0.022608051, 0.0064004217, 0.019871786, -0.0010277926, -0.0066848854, -0.005594443, 0.0030088755, 0.0025296905, 0.015699659, 0.011947454, 0.011297253, -0.01251638, 0.03394594, -7.712678E-4, 0.03784715, -0.011324344, -0.010938288, 0.009841072, 0.03535471, -0.016200857, -0.014209614, -0.007402816, 0.004297426, 0.016932333, -0.017853452, 0.055077493, -0.034623235, 0.022188129, -0.008709992, -0.0071725366, 0.013017578, 1.6636017E-4, 0.001037952, 0.013559412, 0.027173009, 0.009874937, 0.02422001, -0.014859816, 0.015266191, 0.0063191466, 0.009827526, 0.010633505, -0.01766381, 0.004581889, 0.0018168393, -0.019384135, -0.007849829, -0.029557081, -0.0027261057, 0.019939516, -0.002656683, -0.013654234, 0.009780115, 0.020278161, 0.015740298, 0.033322833, -0.013674553, -0.03223916, 0.012137096, 0.02650926, -0.014737903, -0.039174646, -0.0147785405, 9.676563E-6, -0.0442408, -0.016661417, -0.01094506, 0.037332408, -0.032862272, 0.009847845, -0.023935547, -0.006816957, 0.004541252, -0.016729144, 5.1431963E-4, 0.038957912, 0.0014011506, 0.018178552, 0.0030596727, -0.01355264, 0.023502078, -0.013139491, 0.02510049, -0.01133789, -0.0075856852, -0.020210434, 0.008161385, 0.013782919, -0.045432836, 0.009753024, -0.018503653, 0.0042432426, -0.017866999, -0.010877331, 0.014236705, -0.022188129, -0.019059034, -0.010105217, -0.02073872, 0.009827526, 0.07829511, 0.034135584, 0.0015357626, -0.0065595857, -1.3799852E-4, 0.0031985177, -0.020725176, -0.008764176, 0.0023095703, 0.006180302, 0.008649035, -0.014792087, 0.018314011, -0.0010675836, 0.020819997, -0.005580897, -0.0022232153, -0.0057366746, -3.3187374E-4, -0.021510836, -0.019316405, -0.013078534, 0.01759608, 0.03987903, 0.009102822, -0.010396453, 0.02503276, 0.0024839733, -2.9208275E-4, 0.014995274, 0.0016915401, 0.013302041, 0.016566595, 0.014290889, 8.411137E-4, -0.009326329, 0.023407258, -0.010003623, 0.022987336, 0.0061938474, 3.1790455E-4, 0.0023756064, 2.4128574E-4, 0.003012262, 0.01625504, -0.00870322, -0.01995306, 0.016823966, 0.029204888, -0.039581023, 0.026766632, 0.012198053, -0.014358618, -0.00789724, 0.0057637664, 0.006376717, -0.026549898, -0.017812815, -0.02274351, 0.0075721396, 0.0031595733, -0.035137977, 0.02847341, -0.008208795, -0.0013503536, -0.016634325, -0.009563382, -0.008229114, -0.011656218, 0.011662991, 8.9995353E-4, -0.009983304, -0.018991305, -0.009868164, 0.013437499, 0.008662581, 0.02320407, -0.011920363, 0.0075924583, -0.0011928829, -0.028202495, -0.02077936, -0.0019285928, -0.016918788, -0.00406376, 0.008764176, -0.007809192, 0.0015907927, -0.015130733, 0.0031697329, 6.159136E-4, -0.0103829065, -0.018788116, -0.012001637, 0.036004912, 0.007721144, 0.004869739, 0.014697265, 0.008323935, 0.009062185, -0.001643283, -0.008994455, -0.022716418, -0.015537109, -0.016932333, -0.003447423, -0.003164653, 0.004940855, -0.014941091, -0.01710843, -0.028527595, -0.027904484, 0.011161794, -7.6364825E-4, 0.0018490108, 0.003396626, 0.01697297, 0.01891003, -0.0012724649, 0.00479185, 0.0077821002, -0.013681325, 0.020819997, 0.011371755, 0.0034355705, 0.026956275, -0.001857477, -0.028717237, -4.774918E-4, 0.030424016, 0.010789283, 0.0051135644, -0.028392136, -0.020819997, -0.01687815, -0.0132681765, 0.007416362, 0.008120747, -0.0036032004, 0.010938288, -0.016295677, 0.007606004, -0.0027227192, 0.016363407, -0.0030495133, -0.024043914, 0.006068548, -0.018720388, 0.0083578, 0.027674206, -0.009895256, 0.0070370776, -0.02126701, -0.015835118, -0.006224326, -0.040258314, -0.026698902, 7.712678E-4, 0.031345136, 0.0053573903, 0.032808088, -0.0105793215, 0.032726813, 0.0042872666, 0.019912424, 0.020928364, -0.035815272, -0.012319965, -0.024233555, -1.1937295E-4, 0.013512002, 0.009705613, -0.0031223223, 0.0074366806, -0.008215568, 0.016065398, 0.014656628, 0.016078943, 0.013491683, -0.024558656, -0.033864666, 0.004581889, -0.030261466, -0.0032035974, -0.02847341, -0.024179371, 0.01710843, -0.019153856, -0.0067526144, -0.009326329, 0.03565272, -0.0040942384, 0.005770539, -0.019099671, 0.010890877, -0.009834299, -0.0051711346, -0.022039125, -0.010051033, -0.0033187373, -0.015997669, 0.024802482, -0.009285691, -0.0019489116, 0.003410172, 0.021470198, -0.010633505, -0.014182522, 0.017650263, -0.012773752, -0.0034067854, -0.038388986, -0.00711158, -0.026753087, -0.015821572, -0.0052016126, 0.0025500094, 0.0042500156, -0.020115612, -0.024870211, 0.0373595, 5.0426606E-5, 0.04597467, 0.009956212, 0.05190776, 0.018273374, 0.007091261, -0.027741935, 0.013579731, -0.014033518, 0.007382497, 0.026834361, 0.024734752, -0.012611202, -0.0036438382, -0.001654289, -0.00711158, -0.029529989, -0.03161605, 0.036357105, 0.020427167, 0.019343497, -0.036953125, 0.003235769, -0.02281124, 0.014290889, -0.01043709, 0.011737494, 0.014927545, -0.028094128, 0.0026363642, 0.0051982263, -0.0061125723, 0.011019562, -0.006305601, -0.023542715, 0.00863549, -0.025290133, 0.01579448, -0.01694588, -0.0027007072, 0.033106096, -0.022039125, -2.0350548E-4, 0.0050864727, 0.001117534, -0.004785077, -0.005868747, 0.022662235, 0.02710528, -0.017812815, 0.022716418, 0.009394058, -0.0054183467, 0.003911369, 0.027024005, -0.01798891, -0.015049458, -0.017880544, -0.007707598, 0.03391885, 0.002153793, -0.012367376, -0.0018405446, -0.0057637664, -0.013525547, -0.0010904423, 8.508497E-4, 0.008594852, -0.04378024, 0.004724121, -0.007578912, 0.0022113628, 0.008974137, -0.0015264498, 0.0058518145, 4.971227E-5, 0.0116359, 0.011364982, 0.0018269988, -0.022066217, -0.019031942, -0.048819304, -0.02500567, -0.016959425, -0.012096459, 0.0066002235, -0.0041043977, 0.012259009, -0.0040536006, -0.0016187311, -0.007016759, 0.016620778, -0.022106854, -0.0023993116, 0.027267829, -0.012055821, -0.0023027973, -0.0018523972, 0.029557081, 0.0010260994, 0.009922347, 0.0070438506, 0.007992061, 0.017067792, -0.02375945, 0.0060922536, -0.016336314, -0.02002079, -0.005123724, 0.0044464306, 0.025682963, 0.013667779, -0.0033255103, -0.029150706, -0.008560988, -0.008621944, 0.05171812, -0.0015586213, 0.01733871, 0.03313319, 0.02514113, 0.033322833, 0.015767388, -0.012895665, -0.022580959, -0.0019031942, -0.0015188303, -0.018178552, 0.0054048006, 0.021294102, -0.002431483, 0.0059805, -0.013234312, -0.024910849, -0.008364572, -0.029882181, -0.03001764, -0.0076398687, 0.020684538, 0.044430442, 0.024518019, 0.0019506048, 0.007815965, 0.018761026, 0.0031257088, -0.009841072, -0.0019184334, 0.021226373, 0.008398437, 0.02008852, 0.022960244, -0.025669416, 2.5652486E-4, 0.0017508032, 0.020521987, -0.0011615581, 0.022757055, -0.01592994, -0.019831149, -0.0072402656, -0.012658612, 4.918843E-4, 0.0018913416, 0.017528351, -0.031507686, -0.008229114, 0.006075321, 0.02634671, -0.012617975, -0.0017084724, 0.00603807, -2.738805E-4, -0.0056486265, -0.01625504, -0.027078187, 0.005878906, -0.023637537, 0.015889302, 0.016051851, 0.0023265027, 0.030342741, 0.021388924, -0.01625504, 0.005354004, -0.01995306, -0.0063157603, -0.0035761087, -0.0077956463, 0.003367841, 0.025222404, -0.03264554, 0.0134645915, -0.031480595, 0.0036269058, -0.0017093191, 0.009075731, -0.0018219191, 0.034379408, 0.015333921, -0.06019783, -0.0048832847, -0.015117187, 0.008567761, -0.0050390624, 0.0103829065, -0.020196887, -0.013125945, -3.4012823E-4, 0.004825715, -0.017948274, -0.022079762, -1.6075134E-4, -0.019478956, 0.0012843175, 0.015686113, 0.17999747, -0.0042500156, 0.017027155, 0.051989038, -0.0035862683, 0.0055267136, 0.01729807, 0.01274666, 0.0037217268, 0.026197705, -0.005536873, 0.0020251072, -0.00654604, -5.4098805E-4, 0.016742691, -0.011825542, -0.03172442, -0.0232718, -0.033973034, -0.029882181, -0.017135521, -0.009035093, 0.005868747, -0.014263798, -0.005072927, 0.00824266, 0.003504993, 0.006864368, 0.012035502, -0.0033119645, -0.012218372, -0.014900453, -0.009725932, 0.0038504126, -0.017934727, -0.0030512065, -0.013308814, 0.011520759, 0.011324344, 0.009184098, 0.015184917, 0.0019760032, -0.014643081, -0.011392074, -0.001994629, 0.022012033, -0.03391885, -0.008764176, -0.021673387, 3.7187638E-4, -0.041910913, -0.0029800907, 0.018368196, 0.018964212, -0.019871786, -0.011127929, 0.012672158, -0.0054522115, -0.001687307, -0.004622527, 0.0020589717, 0.022946699, -0.039581023, 0.002648217, 0.0036539976, 0.024694115, -0.024910849, -0.010802829, -0.0020555852, -0.026048701, -0.0017931341, -0.022431955, -0.0096582025, 0.0022232153, -0.0054522115, -0.01020681, 0.009915574, 0.009197643, 0.010796055, 0.017162614, -0.021578565, -0.011310799, -0.0022028966, 0.0027599703, -0.016376954, -0.021876575, 0.012597656, -0.01625504, -0.006444446, -0.01468372, -0.017812815, -0.029909274, -0.023041518, 0.010328723, -0.022946699, 8.01746E-4, 0.012110005, 0.013762601, -0.022404863, -0.0034491164, -0.0383348, 0.02562878, 0.024003275, -8.271445E-4, -0.017948274, -0.015699659, 0.001698313, 0.019275768, 0.031236768, -0.012577337, -0.00997653, -0.028175402, -0.002954692, -0.010762191, -0.014033518, 0.02080645, 0.0016102649, -0.014480531, 0.033837575, -0.011696856, 9.617565E-4, -0.019329952, 0.015659021, 0.018761026, -0.00829007, -0.02749811, -0.019411227, 0.015604839, 0.004717348, -0.036980215, 0.016986517, -0.014466985, 0.011933909, -0.008425529, 0.0057671526, 0.009685295, 0.01838174, 0.005479303, -0.005072927, -0.0039079827, 0.010796055, -0.029719632, -0.003549017, 0.0026600696, 0.009306011, -0.04142326, -5.693497E-4, -0.0016932333, -0.02749811, -0.023095703, -0.0049679466, -0.012401241, -4.7029555E-4, 0.014128339, 0.039581023, -0.0068745273, -0.024233555, -0.04472845, -0.012645067, 0.045080643, -0.05732611, 0.017243888, 0.019871786, -0.01838174, -0.022039125, 0.0030935372, -0.17392893, 0.021009639, 0.0046022083, -0.025764238, 0.014981728, 0.007179309, 0.03093876, -0.0039689387, 0.013376543, -0.019153856, 0.020264616, 0.005333685, -0.039797757, -0.00603807, 1.5196769E-4, 0.016959425, -0.005116951, 0.01658014, 0.029827999, -1.4773461E-4, 0.03716986, -0.015225554, -0.012130324, -0.0054183467, 0.00845262, 0.017487714, 0.015984122, -0.0020081748, 0.009759797, -0.007294449, -0.028825603, -0.012103232, 0.019736327, 0.011419166, 0.008770948, 3.3187374E-4, -0.022919606, -0.009373739, 0.0019031942, -6.1760686E-4, 0.026278982, 0.012794071, 0.019059034, 0.024802482, 0.010708008, -0.0012673851, 0.027254283, -0.024071004, 0.014196068, -0.0044362713, -0.0037691374, -0.0416129, 0.012347057, -0.005455598, 0.010051033, 0.01897776, 0.011290479, 0.003352602, 0.017230343, -0.006264963, -0.039012097, -0.012496062, -0.0013876047, -0.01546938, 3.536741E-4, -0.016959425, -0.007904013, 0.016661417, -0.020427167, 0.021090914, -0.02890688, 0.022729965, 0.012448652, 0.004666551, 0.019776965, -0.013064988, -0.026360257, 0.006220939, -0.0035422442, 0.019099671, -0.016593687, 0.04768145, -0.012042276, 0.023055065, 0.020129157, -0.012827936, 0.0015272965, -0.0018676363, 0.011832315, 0.0041281027, 0.0040163496, -0.014074155, -0.030451108, -0.0034423433, 0.006850822, 0.014047064, 0.006742455, 0.014507623, 0.005059381, -0.016146673, -0.023366619, -0.007131899, -0.013559412, 0.029746722, 0.013898059, 0.014954637, 0.0023112635, 0.029502897, 0.027349105, -0.008642263, -0.007402816, -0.00863549, 0.02123992, 0.013017578, -0.016498866, 0.007531502, -0.002380686, -0.029557081, 0.006820344, 0.018652659, 0.039445564, -0.023122795, -6.540114E-4, -0.004504001, 0.0041111703, -0.01579448, -0.08837324, -0.00847294, 0.016160218, 0.029259073, -0.031995337, 0.042181827, 0.009387285, 0.028202495, -0.023922, 0.023610445, 0.011053427, -0.017121976, 0.012110005, -0.0037860698, 0.006908392, -0.013721962, -0.008574533, -0.00615321, -0.020278161, 0.031670235, 0.010423544, -0.010240675, 0.0041416488, -0.01461599, -0.021903666, 0.0066137696, -0.030261466, 0.020657446, -2.5842973E-4, 0.017447077, 0.011832315, -0.013342679, 0.015523563, -0.035273436, -0.030261466, -0.02008852, -0.009204417, -0.016986517, 0.0046902564, -0.05030935, 0.0023468214, 0.009224735, 0.0046902564, -0.024125189, -0.005994046, -0.0069558024, -0.031372227, 0.03172442, -0.01274666, -0.016864603, -0.014277344, -0.015144279, -0.024043914, -0.020765813, 0.0124825165, 0.027904484, 0.013105626, 0.014995274, -0.011100838, -0.015252646, -0.017094884, -0.009841072, -0.030396925, 0.020169795, 0.0019573777, -0.0011361595, -0.008432302, -0.012374149, 0.011324344, -0.02202558, -0.016471773, 0.024992123, -0.028744329, -0.00761955, -0.030857485, 0.006356398, -0.019776965, -0.0061938474, 0.030207282, -0.024301285, -0.009509198, -0.027240738, 0.0066713393, -0.022892514, 0.012475743, 0.026197705, 0.02119928, 0.022662235, 0.01027454, -0.041992188, -0.007314768, 0.021145098, -0.0018540905, 0.004310972, 0.014412802, 0.015780935, 0.015550654, 0.008303616, 3.4499628E-4, 0.0021080754, -0.013837103, -0.0051779076, -0.0766696, 0.026604082, -0.006065162, -0.002771823, -0.009231508, -0.0035016064, 0.002292638, -1.7651958E-4, 0.010172945, 0.0028564846, -0.010680916, 0.018016003, -0.0036777027, 2.7101655E-6, 0.0021791912, 0.010111989, -0.004832488, -0.0011954227, -0.013593277, 0.006857595, -0.038903728, 0.021443106, 0.012902438, -0.00321545, 0.0015560815, 0.028500503, 0.013505229, 0.009800434, -0.020725176, -0.013403635, 0.022567414, -0.020630354, -0.0027819823, 0.002634671, -0.028256677, -0.027132371, 0.010010395, 0.0018693296, 0.026238343, 0.010105217, -0.013762601, -0.023082156, -0.0055267136, -0.0068846866, -0.017067792, 0.0043685418, -0.014629536, -0.0014214694, 0.012827936, 0.007815965, 0.028121218, 0.011392074, -0.0061159586, -0.013078534, 0.026780179, -0.0014925852, 0.05239541, 0.01500882, -0.0034491164, -0.023610445, 0.026739541, 0.0055301, 0.025114037, -0.03549017, 0.006813571, 0.0040840786, 0.010301632, -0.0047275075, -0.0033695344, -0.019533139, -0.011236296, -0.004832488, 0.017907636, 0.028310861, 0.012543472, 0.019790512, 0.0038504126, -0.0034135585, 0.0034643554, 0.0017287913, 0.033864666, -0.0074637723, -0.029340347, 0.021673387, -1.8138762E-4, 0.017745085, 0.0013901446, 0.00845262, 0.007870149, 0.008303616, 0.00870322, 0.0012115084, 0.02133474, 0.004717348, 0.009996849, 0.017447077, -0.0047342805, -0.008330708, 0.009272146, 0.033187374, 0.0018913416, 0.0042127646, -0.011425938, -0.013498456, -0.024829574, 0.014168977, -0.023976184, -0.031778604, 0.0075518205, 0.025655871, 0.01962796, 0.015198463, -0.009272146, 0.005181294, -0.04315713, 0.0027616636, -0.021118006, -0.027443925, -0.01124307, 0.033349924, 0.0066713393, 0.016336314, 0.023772996, -0.010057806, 0.0603062, 0.0017143987, 0.028961062, -0.022377772, -0.002074211, -0.014290889, 0.0046394593, -0.013586504, -0.010809601, -0.0019489116, 7.526422E-4, 0.0057366746, -0.006816957, 0.029177796, -0.01648532, 0.07217237, 0.021510836, -0.005868747, 0.020752268, -0.018530745, 0.00750441, 0.011764585, 0.023353074, -0.013200447, -0.024856664, 0.008005607, -0.0017406439, 0.0065257214, -0.035110887, 0.00586536, -0.004520933, 0.01759608, 0.014033518, -0.013749055, -0.018314011, 0.0018303852, -0.00840521, 0.015835118, -0.0024060844, -0.009861391, -0.0017948273, 0.025601687, -0.010342269, -0.008337481, -0.03313319, -5.7823915E-4, -0.033539567, 0.004012963, -0.008235887, 0.028175402, -0.013965788, 0.0019201266, -0.0032323825, 0.012827936, 0.0068846866, -0.009888482, -0.013701644, -0.020278161, -0.024084551, 0.015388104, -0.011066973, -0.011310799, -0.017636718, -0.02346144 ], + "id" : "2f2f8e8c-76ad-494b-bc60-0b8c7c525059", + "metadata" : { + "source" : "movies.csv" + } + }, + "ec92cce7-051c-4b39-8cbf-bcdb26218209" : { + "text" : "707,EuropaCorp-Grive Productions-M6 Films-Cin��+-20th Century Fox-Canal+-Dune Entertainment-Taken 2-Fox International Productions,9/27/12,45000000,376100000,91,Released,First they took his daughter. Now they're coming for him.,6.3,6332,Liam Neeson-Maggie Grace-Famke Janssen-Leland Orser-D.B. Sweeney-Jon Gries-Rade ��erbed�_ija-Luke Grimes-Kevork Malikyan-Alain Figlarz-Frank Alvarez-Murat Tuncelli-Ali Yildirim-Ergun Kuyucu-Cengiz Bozkurt-Hakan Karahan-Saruhan Sari-Naci Ad۱g�_zel-Aclan B�_y�_kt�_rko��lu-Mehmet Polat-Yilmaz Kovan-Erdogan Yavuz-Luran Ahmeti-Cengiz Daner-Melis Erman-Erkan ���_�_nc�_-Ugur Ugural-Alex Dawe-Olivier Rabourdin-Micha�l Vander-Meiren-Rochelle Gregorie-Luenell-Emre Melemez-��lkay Akda��l۱-Myl��ne Pilutik-Nathan Rippy-Atilla Pekoz-Serdar Okten-Mesut Makul-Mustafa Akin-Murat Karatas-Cuneyt Yanar-Baris Adem-Hasan Karagulle-Gazenfer Kokoz-Remzi Sezgin-Ahmet Orhan Ozcam-Melike Acar-Yasemin Yeltekin-Baris Aydin-Kenneth James Dakan-Adil Sak-Bekir Aslanta��-Ercan Kurt-Cetin Arik-Tamer Avkapan-Eraslan Sa��lam-Mohammed Mouh-Julian Vinay-Gaelle Oilleau-�a��an Atakan Arslan,kidnapping-fbi-turkey-police chase-teenage daughter-stealing a car-ex-husband ex-wife relationship-albanian-u.s. embassy,/yzAlcuJhpnxRPjaj7AHBRbNPQCJ.jpg,/m4c1V53pQ4Z1Jk6rC0Ve3OTcWqW.jpg,260346-8681-59967-49040-278-49026-8909-225574-10138-72105-2062-76163-48138-59961-82690-18785-1893-68718-37724-1271-808\r\n324857,Spider-Man: Into the Spider-Verse,Action-Adventure-Animation-Science Fiction,en,\"Miles Morales is juggling his life between being a high school student and being a spider-man. When Wilson \"\"Kingpin\"\" Fisk uses a super collider others from across the Spider-Verse are transported to this dimension.\",108.301,Columbia Pictures-Lord Miller Productions-Pascal Pictures-Sony Pictures Animation-Avi Arad Productions,12/14/18,90000000,375540831,117,Released,More than one wears the mask.,8.406,12468,Shameik Moore-Jake Johnson-Hailee Steinfeld-Mahershala Ali-Brian Tyree Henry-Lily Tomlin-Lauren V��lez-Zo� Kravitz-John Mulaney-Kimiko Glenn-Nicolas Cage-Kathryn Hahn-Liev Schreiber-Chris Pine-Natalie Morales-Edwin H.", + "embedding" : [ 0.021603974, -0.03374854, -0.0073739747, -0.054357506, -0.02289885, 0.0204454, -0.014488975, 0.0061404356, -0.015865631, -0.047133464, 0.035956644, 0.032712642, 0.026265524, 0.0035677224, 0.014925143, 0.023689404, 0.0022609206, -0.02036362, 9.583782E-4, -0.03718337, -0.0015095521, -0.004474135, -0.013936948, 0.0054009934, 0.011040516, -8.680776E-4, 0.012076417, -0.0032303734, -0.012989645, -0.01883703, 0.007496647, -0.007074109, -0.002424484, -0.005734935, -0.012028711, 0.014693428, 0.014379932, -0.023607623, 0.026061071, -0.011258601, 0.025215995, 0.018373601, -0.0076806555, -0.0030872556, -0.013309956, 0.011258601, 0.016751599, -0.0011619803, -0.010277222, 0.02145404, 0.02096335, 0.037401453, -0.011783366, -0.023498582, -0.0018128256, -0.017951062, -0.0086892955, -0.008096379, 0.0118515175, -0.00739442, 0.0072104116, -0.023743926, -0.029795764, -0.027887527, -0.030668102, -7.458312E-4, -0.0023801855, -0.025297776, -0.0069991425, -2.5215995E-4, 0.02750588, 0.01425726, 0.02043177, -0.0028027238, 0.005837162, -0.022926109, -0.023130564, 0.006798096, 1.16496194E-4, 0.01431178, 0.012055972, -0.011796996, -0.013834721, 0.02145404, 0.029932067, 0.004092488, 8.625403E-4, 0.02856904, -0.035356913, 0.014966033, 0.010202255, 0.015552135, 0.0013988062, 0.010556642, 0.003980038, 0.0025386373, -0.021058762, 0.018932441, -0.021058762, -0.03361224, -0.0033070436, -0.004365093, -0.009602523, -0.012321762, -0.0052987663, -0.0065254904, 0.004664959, -0.013637083, 0.02498428, -0.002289885, 0.0023273681, -0.01732407, 0.024698045, -0.03873722, 0.0070059574, -0.0130918715, 0.01942313, -0.012437619, -0.0070059574, -0.027274165, 0.018169146, 0.030231932, 0.010849693, -0.036065686, 0.047569633, 0.037592277, 0.011183634, -0.015238639, -0.009895574, -0.007837404, 0.021535823, -0.019232307, 0.031186052, 0.025897508, -0.026592651, 0.05626574, -0.013439444, 0.013971024, -0.029904807, -0.02447996, 0.031213311, 0.040100247, -0.025570381, -0.004549102, -0.019804778, 0.018414492, 0.0064368937, -0.012662519, 0.0326036, -5.4350693E-4, 0.02600655, 0.010679315, 0.01679249, 0.029386856, 0.024152834, -0.0073807896, 0.008573438, -0.011122298, 0.010072768, -0.0112313405, -0.004388946, -0.012233165, -0.01887792, -0.004497988, -0.01221272, 0.021304108, 0.012676149, -0.025747575, -0.002211511, -0.0037960294, -0.0058030863, 0.034838963, -0.02086794, 0.017705718, -0.0138824275, 0.022108294, 0.00127443, -0.015852, -0.037946664, -0.0135416705, 0.006027986, 0.020745266, 0.03254908, 0.031295095, -0.0028027238, 0.022394529, 0.018141886, -0.03015015, 0.0021757314, -0.023921119, 0.0074080504, 0.018291818, -0.0053975857, -0.020663485, -0.63636994, -0.014543495, 0.0026476795, -0.011871963, -7.275155E-4, 0.027383206, 0.008641589, -8.5316953E-4, -0.03824653, -0.01096555, -0.030013848, 0.02393475, 0.016397212, -0.014366302, -0.024139203, -0.012328576, -0.0067435745, -0.036365554, 0.0076261344, -0.0036120208, -0.03631103, 0.016029194, 0.0030719214, 0.0053703254, 0.008764262, 0.007762437, -0.0031162198, -0.024589002, -0.0052817287, 6.68735E-4, -0.016124606, 0.025256885, 0.006726537, 0.009622969, 0.037401453, -0.0018213445, -0.0022319562, 0.045579612, 0.038464613, 0.03413019, -0.04135423, -0.006164288, 0.0076261344, -0.01583837, -0.018441752, 0.014707059, 0.025815725, 0.0059598344, 0.011844702, -4.4809503E-4, -0.00687647, 0.002642568, -0.010645239, -0.014720689, -0.008655219, 0.020227317, 0.010911029, -0.017623935, 0.026947038, -0.014011915, -0.016956052, 0.010427155, 0.017119616, 0.0109519195, 0.0072444873, 0.006474377, 0.0028197616, -0.0077760676, 0.008866489, -0.003792622, 0.0027158307, 0.009800162, -0.008702925, -0.013194099, 0.021617604, 0.006293776, 0.032494556, 0.0029850286, -0.015252269, 0.018223668, -0.0068321717, -0.011906038, 0.002509673, 0.02351221, 0.034021147, -0.0030412534, -0.030340975, 0.018060105, 0.022680765, 0.0072785625, 2.3107562E-4, 0.015497614, 0.012185459, 0.006450524, -0.0061540655, 0.013255435, -0.011135928, 0.015211378, 0.028759863, -0.056701913, -0.011599357, -0.015347681, 0.030777143, -0.02957768, 0.030586319, 0.013459889, -0.008457581, -0.005506628, 0.019641215, -0.022176445, -0.0040584123, 0.003020808, -0.025079692, -0.019464022, -0.011054147, -0.028732603, 0.015347681, -0.0020752081, 0.0016969683, -0.010406709, 0.0041095256, 0.017882911, 0.015756588, -0.009350363, 0.0058541996, 0.026660804, -0.007966891, -0.0070536635, 0.003373491, -8.598782E-5, -5.1725798E-5, -0.0023103303, 0.011756105, -0.020663485, 0.011531206, 0.0055032205, 0.0056190775, -0.0058644223, 0.0046445136, -0.014679798, -0.029632201, -0.015225008, -0.010583903, -0.011115483, -0.0065220827, -0.011326752, -0.02604744, -0.004576362, 0.0038505506, -0.0038130672, -0.012062786, 0.027587662, 0.0043753157, 0.0150614455, 0.0064368937, 0.0021535822, -0.013119132, -0.014856991, -5.609707E-4, -0.04527975, 0.01172203, 0.020281838, -0.004123156, -0.02498428, 8.5103983E-4, -0.012662519, 0.0053941784, 0.007851034, 0.012158198, -0.011940114, 0.009241321, -0.0070604784, 0.0015197748, 0.013221359, 4.044356E-4, 0.020050123, -0.004641106, 0.022258226, 0.0111700045, -0.010338558, -0.0016790786, 0.0069786967, -0.019968342, 0.004014114, 0.025284145, 0.031267833, 0.0119605595, -0.007401235, -0.01729681, -0.0016390396, -4.0912098E-4, -0.019750258, -0.004521841, 0.00915954, -0.0027788708, 0.021672126, 0.0026544945, 0.0052135773, -0.0022779584, 0.005663376, 0.041572314, 0.030231932, 0.0021501747, 0.009622969, 0.007258117, -0.025011541, -0.0040243366, -0.015920153, 0.0067537976, -0.0041674543, 0.033475935, -0.00714226, -0.01226724, 0.00471948, 5.5032206E-4, 0.023253236, -0.00967749, -0.0020257984, -0.007707916, 0.015102336, 9.2515437E-4, -0.017610306, 0.006004133, 0.012069602, -0.02602018, 0.0025641941, 0.009888759, 0.002225141, 0.0021229142, -0.017937431, -0.015661176, 0.025815725, -0.0070604784, 0.003884626, -0.0021638048, 0.015088706, 0.04285356, -3.9847236E-4, 0.04124519, -0.01582474, 0.004095895, 0.026033811, 0.04129971, 6.495674E-4, 6.5041933E-4, -0.029332336, 0.014488975, -4.523545E-4, -0.009643414, 0.034784444, -0.0173377, 0.02649724, 8.2548306E-4, -6.329555E-4, 0.011292676, -0.032739904, -0.010147734, 0.018155515, 0.029223293, 0.011967375, 0.003966408, -0.030450016, 0.015661176, -9.796754E-4, 0.011599357, 0.0052578757, -0.04034559, 0.011824257, -0.008607514, -0.039609555, -0.016356321, -0.008505287, 0.014747949, 0.012205904, -0.0016424472, -0.005813309, -0.005653153, 0.003601798, 0.017283179, 0.019613955, -0.022149185, -0.040645458, 0.009466221, 0.008437135, -0.015361311, -0.028269174, 0.0018247521, -0.008314463, -0.03154044, -0.0147343185, -0.019954711, 0.039064348, -0.03966408, 0.013698419, -0.020159164, 0.0085189175, 0.024861608, -0.01579748, 0.004256051, 0.013582561, 9.336733E-4, 0.0120218955, 0.015334051, -0.0010648647, 0.022789806, -0.0074148653, 0.00712863, 8.357058E-4, -0.016724339, -0.008437135, 0.011122298, 0.0051079425, -0.032058388, 0.035902124, -0.022748915, -0.014420823, -0.007551168, 0.0045934003, 0.008423505, -0.019096004, -0.02244905, -0.039473254, -0.022053773, 0.0018451974, 0.06929628, 0.029441377, 0.0031588145, -5.737491E-4, -0.025311407, -0.015974673, -0.013671158, -0.005861015, -0.019232307, -0.0112313405, 0.0021825465, -0.0024960428, 0.017746609, 0.00969112, 0.030940706, -0.0023818891, 0.002248994, -0.0070127724, -0.01351441, -0.0013255435, -0.0014839954, -0.01146987, 0.009050498, 0.02905973, 0.00572812, -0.004123156, 0.016956052, 0.017923802, 0.0033019322, 0.01046123, -0.0016773748, -3.7547128E-4, 0.018305449, 0.017623935, -0.011803811, -0.007932816, 0.031922087, -0.010795171, 0.020254577, 0.0026050848, -0.011319937, 0.010372633, -0.0021024686, -0.0053294343, 0.008014597, -0.035084307, -0.01351441, 0.016179128, 0.036147468, -0.028950687, 0.032576337, -0.0020394288, -0.027628552, -4.0635234E-4, 0.02651087, 0.009595708, 0.0072444873, -0.010256777, -0.022053773, -0.0120218955, 0.010413524, -0.04898718, 0.021767536, -0.01782839, 0.0124716945, -0.01983204, -0.0019474245, -0.0035609074, -0.014407192, 2.8666155E-4, 0.0038914413, -0.025311407, -0.013255435, -0.014529865, 0.02036362, -8.183485E-5, 0.030122891, 0.002753314, 0.013269065, -6.4104854E-4, -0.032385517, -0.020118274, 0.0085189175, -0.013902873, -0.003932332, 0.0075170924, -0.004412799, 0.006965067, -0.008539363, -0.012676149, 0.005591817, 0.0037006175, -0.009834237, -0.01583837, 0.024071053, 0.0013102094, 0.018578054, 0.015170488, 0.0042662737, 0.010168179, 0.0054180315, -0.008157715, -0.019968342, 0.0017583044, -0.014325411, -0.013596192, 0.0059359814, -0.0014439564, -0.029768504, -0.016601665, -0.018237298, -0.008989161, 0.010481675, 0.0034995712, 0.009289027, 0.009473036, 0.013473519, 0.0040481896, 0.0010094916, 0.0074353106, -0.005145426, -0.014938773, 0.0127511155, 0.017773869, 0.005056829, 0.009718381, -0.014325411, -0.018223668, -0.006961659, 0.040972583, 0.015388572, 0.006184734, -0.010904213, -0.0012786895, -0.010631609, -0.0305318, -0.0047160727, -0.006126805, -0.014175478, 0.024711674, -0.020881569, 0.00254886, 0.0077215466, -0.005820124, -0.005138611, -0.028705344, 0.012403543, 0.005758788, 3.886756E-4, 0.02552949, -0.0077828825, -0.011756105, -0.040672716, -0.01249214, -0.016615296, -0.026251895, -0.017174136, -0.0085189175, 0.03404841, 0.016192758, 0.047760457, -0.0015376646, 0.024766196, 0.0075920587, 0.008028228, 0.026306415, -0.016029194, -0.0064062257, -0.020186426, 0.007176336, 0.014025545, 0.016138237, 0.017923802, 0.0015845186, -0.0048864507, 0.025406819, 0.006607272, 0.021535823, 0.01679249, -0.01887792, -0.024888868, 4.1891774E-4, -0.02760129, 1.384324E-4, -0.027464988, -0.016547145, 0.016247278, 0.0052612834, -0.009268582, -0.010345373, 0.03374854, -0.0031945938, 0.022598984, -0.012015081, 0.019068744, -0.026674433, 0.0010631608, -0.020322729, -0.012314946, -0.00548959, -0.029223293, 0.0073807896, -0.0062256246, -0.013132762, 0.0031434803, 0.030395497, -0.0046002152, -0.02897795, 0.010679315, -0.010931474, -0.009289027, -0.03006837, -0.0018707542, -0.04239013, 0.00471948, 0.002100765, -0.013309956, 0.0011747587, -0.012689779, -0.046315648, 0.025761206, 0.00789874, 0.044625495, -0.0046002152, 0.049804997, 0.027846636, 0.018618945, -0.020322729, 0.0067537976, -0.011865147, -0.019300459, 0.034021147, 0.017705718, -0.026906148, -0.0023631477, -0.012580737, -0.014339041, -0.033639498, -0.0386827, 0.035847604, 0.017078726, 0.025066061, -0.028678082, -0.003775584, -0.011415348, 0.018959701, 0.0067129065, 0.0080691185, 0.013650713, -0.029986588, -0.02291248, 0.009657044, 0.004555917, 0.0019440169, 0.0011287566, -0.035902124, 0.013330402, -0.018632576, 0.01991382, -0.007762437, -0.02242179, 0.04290808, -0.020990612, 0.021713017, 0.014229999, 0.0070332177, 0.0015291456, -0.008927825, 0.007442126, 0.029877545, -0.0050227535, 0.022776177, -0.001974685, 0.0055645565, 0.006004133, 0.008157715, -0.02293974, -0.018496273, -0.022708025, -0.003918702, 0.028787125, 0.003577945, -0.0042117527, -0.005492998, -0.011313122, -0.027860267, 0.004634291, -0.01019544, 0.029277815, -0.033448678, 0.011415348, -0.0044605047, 0.0061949566, -0.004303757, -0.012771561, 5.6735985E-4, -0.004068635, 0.008075933, -0.02037725, -0.002305219, -0.009473036, -0.008777892, -0.041572314, -0.00997054, -0.021276847, -0.010801987, -0.0039459625, -0.019300459, 0.015388572, 0.01887792, -0.0034348273, -0.014570756, 0.0030225117, -0.015034185, 0.002705608, 0.019068744, -0.01680612, -0.01301009, 0.023307757, 0.027383206, 0.0014252148, -0.014434453, 0.0018775694, 0.0043616854, 0.009984171, -0.011517576, 0.021481302, 0.010072768, -0.00714226, -0.009391254, 0.019586693, 0.017596675, 0.017664826, 0.0014984775, -0.03162222, 0.0010819024, -0.0039221095, 0.024657153, 0.0010597532, -0.010624793, 0.029795764, 0.017378591, 0.034293752, 0.0071627055, -0.010481675, -0.017228657, -0.016547145, -0.011183634, -0.029141512, -0.0049375645, -0.002894728, 0.02139952, 0.0060995445, -0.0033632684, -0.026837997, -0.008880119, -0.024098312, -0.026224634, -0.00394937, 0.014720689, 0.039091606, 0.020063754, -0.006017763, 0.015415832, -0.004903489, 3.154129E-4, -0.028241914, 9.2174683E-4, 0.011803811, 0.014066435, 0.025652163, 0.010897399, -0.027315056, -0.023375908, 0.014598017, 0.019968342, 0.0136030065, 0.023389539, -0.030177413, -0.011544837, -0.004767186, -0.0021842504, 0.0032900057, -0.0037142478, 0.018796138, -0.024766196, 0.004044782, -8.774485E-4, 0.022735287, -0.011367643, -0.0059802798, 0.0088596735, -0.013930134, 9.83935E-4, -0.009418515, -0.014843361, -0.011953744, -0.024384549, 0.013344032, 0.019559434, 0.010413524, 0.026865257, 0.037810363, -0.012205904, -0.0012948754, -0.014516234, 0.0039050716, -0.0047569633, -0.004256051, 0.01093829, 0.030204672, -0.031976607, -0.003642689, -0.022353638, -0.006433486, -0.012069602, 0.010161364, 0.0018826807, 0.024670783, 0.01583837, -0.06907819, -0.007707916, -0.011926484, 0.009902389, -0.018455382, 0.005884868, -0.025338667, -0.013030536, -0.020636225, 0.0037244705, -0.015511245, -0.0154022025, 0.0016185943, 0.0016918569, -0.015606656, 0.013480335, 0.18046474, 6.717166E-4, 0.012185459, 0.041217927, 0.00546233, 0.0063517047, 0.029932067, 0.023757556, -0.002894728, 0.0070604784, -0.007585244, -0.009336733, -0.005516851, -0.0016577813, 0.011626618, -0.021685755, -0.031267833, -0.012696594, -0.021181436, -0.023116933, -0.009064128, 0.008314463, -0.017201398, -0.025134213, 0.0042356057, 0.0074353106, -0.0152931595, 0.009009607, 0.019586693, -0.0017566007, -0.010488491, -0.004303757, -0.008041858, 0.009282212, -0.0141618475, -1.5898429E-4, -0.0077011012, 0.010856508, 0.0053907707, 0.014570756, 0.012764745, 0.010331742, -0.007939631, -0.0047808164, 0.009636599, 0.031404138, -0.0219311, 0.003792622, -0.022108294, 0.0036324663, -0.0447618, -7.422106E-5, 0.012233165, 0.027669443, -0.00763295, -0.010093213, 0.010658869, 0.008975531, -0.0040004835, 0.010290852, 0.012233165, 0.02599292, -0.030913446, 0.019545803, -0.0073807896, 0.017037835, -0.035493217, -0.018550795, 0.015088706, -0.03369402, -0.010897399, -0.016928792, -0.009534372, -0.0013383218, 0.0014626981, -0.0071149995, 0.0046854042, 0.0135553, 0.011129113, 0.024111943, -0.019722996, -0.013725679, 0.005199947, -0.0047842236, -0.017746609, -0.012083232, 0.0012710224, -0.009404885, -0.014011915, -0.02287159, -0.011885593, -0.012062786, -0.019286828, -0.0011227933, -0.023321386, 0.0066106794, 0.023525842, 0.023607623, -0.013562116, -0.011388089, -0.03421197, 0.03320333, 0.022176445, -5.699156E-4, -0.035956644, -0.020459032, 0.010106843, 0.014625276, 0.027805746, -0.016819749, 6.299739E-4, -0.019954711, 0.0029799172, -0.013936948, 0.003870996, 0.022639874, -0.010570272, -0.0152659, 0.037919402, -0.013139578, -0.0173377, -0.015688438, 0.010740651, 5.890831E-4, -0.011156374, -0.017583044, -0.01834634, 0.0080691185, 0.0023307756, -0.028759863, -0.0016381878, -0.01782839, 0.017882911, -3.910183E-4, 0.0062971837, -0.0070059574, 0.019327719, 0.00970475, 0.004446875, 7.4796093E-4, 0.0033087474, -0.010072768, 0.001935498, 0.0068219486, 3.7078586E-4, -0.018537164, 0.010168179, 0.0016552255, -0.016710708, -0.02802383, -0.018550795, -0.015593026, 0.010638423, 0.0064130407, 0.04637017, -0.006000725, -0.031894825, -0.036665417, -0.012185459, 0.034102928, -0.05953701, 0.02293974, 0.013453074, -0.016369952, -0.039118867, -0.0071627055, -0.17479455, 0.012035526, 0.006208587, -0.015892891, 0.009363994, 0.0043207947, 0.018605314, -0.004658144, 0.011749291, -0.026974298, 0.027587662, -0.00967749, -0.034375533, -0.0074284957, 0.0026613097, -1.2565403E-4, -0.009936465, 0.04173588, 0.022667134, -0.00819179, 0.044271108, -0.0056667835, -0.020581704, -0.0045354716, 0.016070085, 0.01786928, 0.009643414, -0.008866489, -0.0026681249, -0.0123013165, -0.038110226, -0.019164156, 0.009834237, 0.0037721766, 0.006617495, 0.0043276097, -0.01530679, -0.0063994103, -0.0063687423, -0.0046240683, 0.035874862, 0.017378591, 0.02555675, 0.016356321, 0.0070264027, 0.0029696946, 0.037374195, -3.5609072E-4, 0.0012241683, -0.0062903683, -0.019559434, -0.035356913, 0.017555784, -0.00915954, -0.0067367596, 0.024888868, -0.0031247388, -0.0044059837, 0.0047024423, -0.013984654, -0.04397124, -0.0051352032, 0.018496273, -0.016983313, -0.0052374303, -0.0259384, -0.005404401, 0.027723964, -0.039527774, 0.023743926, -0.033012506, 0.03200387, -2.0498644E-4, 0.009193615, -0.00889375, -0.012376282, -0.017201398, 0.00969112, 0.005032976, 0.028160132, -0.022190075, 0.045934, -0.012771561, 0.017501263, 0.008989161, -0.0044809505, 0.013030536, 0.010229516, 0.016424472, -0.008110009, 0.0043207947, -0.006317629, -0.012451249, -0.006474377, 0.015579396, 0.004446875, 0.01145624, 0.0141618475, 0.0110609615, 0.0094798505, -0.017664826, -0.010168179, -0.015633916, 0.009289027, 0.036828984, 0.007973706, 0.009016422, 0.028378217, 0.018455382, -0.015415832, -0.010318113, -0.012151383, 0.015102336, 0.0072649326, -0.014366302, 0.004419614, -0.010004616, -0.01684701, -0.0020718006, 0.010127288, 0.0447618, -0.009895574, 1.9018483E-4, -0.019082375, -0.011974189, 0.0042696814, -0.08636137, 0.012376282, 0.008232681, 0.03470266, -0.019736627, 0.03870996, -0.00574175, 0.019695736, -3.4139561E-4, 0.025052432, -0.0072649326, -0.025897508, 0.0062290323, 0.008777892, 0.012635258, -0.0054180315, -0.011326752, -0.004126563, -0.008498471, 0.0357113, -0.011878778, -0.0067640203, -0.0021655087, -0.014557125, -0.03113153, 0.023157824, -0.028705344, 0.0150614455, -0.0017353034, 0.01574296, -0.004092488, -0.023757556, 0.025679424, -0.03216743, -0.016751599, -0.024875239, -0.019232307, -0.032985248, 0.0024892276, -0.058664672, 0.009841053, 0.015620287, -0.012866972, -0.022394529, -0.0029662868, -0.007823774, -0.03154044, 0.037019804, 0.0069991425, -0.020772528, -0.016928792, -0.035902124, -0.01627454, -0.014884252, 0.009663859, 0.024234615, 0.023553101, 0.004586585, -0.004310572, -0.028678082, 0.007230857, -0.011619803, -0.018278189, 0.017664826, 0.0074353106, 0.0011781662, -0.012498955, -0.02145404, 0.021181436, -0.010290852, -0.032412775, 0.020827048, -0.023839338, -0.007769252, -0.028078351, 0.006937806, -0.032876205, -0.020513553, 0.030286454, -0.033257853, 9.208949E-4, -0.032576337, 3.554518E-4, -0.0137802, 0.009520742, 0.016942423, 0.011381273, 0.015974673, 6.235847E-4, -0.029523158, -0.011394903, 0.014966033, 0.002196177, 0.011749291, 0.0012420581, 0.01275793, 0.015156858, -0.0010035285, -0.006757205, 0.016260909, -0.0054248464, -0.011285861, -0.07060479, 0.018946072, -0.004876228, -0.0015129597, -0.015674807, -0.0065186755, 0.0124716945, 0.0012165013, 0.004446875, 0.012464879, -8.501879E-4, 0.010774726, -0.0058507924, 4.8950496E-6, -3.93361E-4, 0.0012957273, 0.009193615, 0.005411216, 0.0027158307, 0.011531206, -0.02141315, 0.015702069, 0.014475344, -0.006913953, 0.0035983906, 0.02799657, 0.0030480686, 0.016465362, -0.0010955328, -0.0067401673, 0.024071053, -0.015347681, -0.011354012, -0.0014218072, -6.380669E-4, -0.034021147, -0.007966891, -0.0026630135, 0.027151493, -0.0036290586, -0.008157715, -0.02491613, 0.0074830167, -0.0063380743, -0.015729329, 0.021713017, -0.011394903, 0.006954844, 0.0027720556, 0.023076043, 0.036883503, 0.0063142213, -0.010645239, -0.022544462, 0.028405476, -0.03524787, 0.04852375, -2.6770696E-4, 0.009261766, -0.018700726, 0.02240816, -0.005861015, 0.01221272, -0.025802096, -0.007019588, -0.003121331, -0.008621144, 0.0032525226, -0.013773385, -0.036965284, -0.0068083187, -0.008927825, 0.019027853, 0.0326036, 0.012335392, 0.02345769, 0.009500296, 0.0017957877, 9.5071114E-4, 0.022094663, 0.029032469, -0.010284036, -0.02499791, 0.024220984, -0.0141618475, 0.032494556, 4.4340963E-4, 0.002974806, 0.00894827, 0.01577022, -0.006641348, 0.010297667, 0.020213686, 0.0077760676, 0.004065227, 0.0151841175, -0.0031588145, -0.004388946, -0.008382615, 0.020281838, -0.0010290851, 0.00739442, -0.018946072, -0.0059905024, -0.021999251, 0.0068253563, -0.012635258, -0.039391473, 0.0050466065, 0.023784816, 0.016192758, 0.01679249, -0.013180468, 0.0055407034, -0.040400114, 0.01838723, -0.013037351, -0.0070127724, -0.015974673, 0.047297027, 0.021713017, 0.009657044, 0.029386856, -0.026919778, 0.047596894, 0.004869413, 0.019464022, -0.023812076, 0.006208587, 0.004947787, -0.0035745376, -0.0035983906, -0.02856904, 0.00369721, -0.009629784, 0.0109519195, 0.0051045353, 0.040100247, -0.010604348, 0.079437196, 0.010045507, -0.006559566, 0.013759755, -0.0012539846, 0.0025454524, 0.0045593246, 0.018591685, -0.020022864, -0.021290477, -0.008294018, -0.014638907, 0.01043397, -0.040672716, 3.0263452E-4, -0.0012003154, 0.010747465, 0.033039767, -0.026797105, 0.004358278, 8.033339E-4, -0.0016313726, 0.013241804, -0.0056667835, -0.016737968, -0.001683338, 0.034920745, 0.006109767, -0.008280387, -0.054630112, -0.005002308, -0.023634883, 0.008362169, 0.0016961164, 0.027969308, 0.0070332177, -0.001848605, 0.012601182, 0.017678456, 0.012403543, -0.019573065, 0.023593992, -0.02347132, -0.018605314, 0.025215995, -0.008110009, -0.010031877, -0.015593026, -0.024902498 ], + "id" : "ec92cce7-051c-4b39-8cbf-bcdb26218209", + "metadata" : { + "source" : "movies.csv" + } + }, + "4c0d4dda-9875-43dc-a314-4d2ea2ee0d69" : { + "text" : "Mathews,moon-florida-nasa-spaceman-race against time-houston-based on true story-space-rescue-survival-disaster-explosion-astronaut-hypothermia-apollo program-lunar mission-spacecraft accident,/oYUZHYMwNKnE1ef4WE5Hw2a9OAY.jpg,/32zua2oKjn2EaRk7am3qK8zAlEj.jpg,8358-602-95-9800-857-19259-13448-855-601-2280-4147-591-594-13-686-156140-1669-197-89-1701-2502\r\n380,Rain Man,Drama,en,When car dealer Charlie Babbitt learns that his estranged father has died he returns home to Cincinnati where he discovers that he has a savant older brother named Raymond and that his father's $3 million fortune is being left to the mental institution in which Raymond lives. Motivated by his father's money Charlie checks Raymond out of the facility in order to return with him to Los Angeles. The brothers' cross-country trip ends up changing both their lives.,24.954,United Artists-Star Partners II Ltd.,12/11/88,25000000,354825435,134,Released,A journey through understanding and fellowship.,7.759,5501,Dustin Hoffman-Tom Cruise-Valeria Golino-Gerald R. Molen-Jack Murdock-Michael D. Roberts-Ralph Seymour-Lucinda Jenney-Bonnie Hunt-Kim Robillard-Beth Grant-Dolan Dougherty-Marshall Dougherty-Patrick Dougherty-John-Michael Dougherty-Peter Dougherty-Andrew Dougherty-Loretta Wendt Jolivette-Donald E. Jones-Bryon P. Caunar-Donna J. Dickson-Earl Roat-William Montgomery Jr.-Elizabeth Lower-Robert W. Heckel-W. Todd Kenner-Kneeles Reeves-Jack W. Cope-Nick Mazzola-Ralph Tabakin-Ray Baker-Isadore Figler-Ralph M. Cardinale-Sam Roth-Nanci M. Harvey-Kenneth E. Lowden-Jocko Marcellino-John Thorstensen-Blanche Salter-Jake Hoffman-Royce D. Applegate-June Christopher-Anna Mathias-Archie Hahn-Luisa Leschin-Ira Miller-Chris Mulkey-Tracy Newman-Julie Payne-Reni Santoni-Bridget Sienna-Ruth Silveira-Jonathan Stark-Lynne Marie Stewart-Arnold F. Turner-Gigi Vorgan-Jon Bielich-Richard A. Buswell-Pui Fan Lee-Matt Mattingly-Billie Perkins-Jill Senter-Aaron Weiler-Mark Winn-Darryl Wooten-Michael C. Hall,individual-loss of loved one-mentally disabled-autism-yuppie-car dealer-egocentrism-road trip-blackjack-cincinnati-travel-convertible-las vegas-psychiatrist-disability-duringcreditsstinger-asperger's syndrome,/iTNHwO896WKkaoPtpMMS74d8VNi.jpg,/mrfbeWcjgSaZ9NEb0xJMR9xzSeB.jpg,581-881-811108-792-7520-744-2604-117-489-207-9390-1366-745-9800-453-8358-37247-2119-616-11873-89\r\n10567,Dinosaur,Family-Animation,en,An orphaned dinosaur raised by lemurs joins an arduous trek to a sancturary after a meteorite shower destroys his family home.,44.", + "embedding" : [ 0.017671745, -0.027357755, 0.0028082465, -0.034730274, -0.026521554, 0.026953591, 0.0075049167, -0.0053830533, -0.027162641, -0.00634817, 0.0053516957, 0.035009008, 0.003468498, 0.0018448716, -0.0060729203, 0.0043656733, 0.02526725, -0.045684528, -0.0026723635, -0.018396454, 0.005027667, 0.008055417, -0.0022089682, 0.019065415, 0.008327182, 0.009888094, 0.025713224, -0.007867271, 0.009790537, -0.031301845, 0.019664694, -0.021086238, 0.004553819, -0.019497452, -0.018730935, -0.0021061848, -0.0014311256, -0.028110338, 0.015664859, -0.014577796, 0.012320049, 0.019622883, -0.016361695, -0.008564106, -0.014842593, 0.018675188, 0.03202655, -0.024194123, -0.004194949, 0.028124275, 0.030354148, 0.042646322, -0.021908503, -0.023553034, -0.008654695, -7.843753E-4, 0.0011898463, 0.0010679002, -0.0029894237, -0.0098671885, 0.014619606, -0.015386125, -0.038911287, 0.01633382, -0.011462942, -0.015344314, -0.020040985, -0.022382353, 0.0015931398, 0.003958025, 0.024849148, 0.022438098, -0.0036235438, -0.0014206731, 0.030075414, -0.022758642, -0.015260695, -0.002681074, 0.018312832, 0.008194784, -0.0011062261, 0.0084317075, -0.021643706, 0.005950974, 0.012166745, 0.008940398, -0.028082464, 0.038827665, -0.023455478, 0.01167896, 0.013985486, 0.017420884, -0.0065537365, 0.016626492, -0.008891619, 0.026145263, -0.0129332645, 0.008152974, -0.0047001545, -0.046632223, -0.018870302, 0.010926378, -0.009595423, -0.017239707, 0.0049370783, -0.0013187609, 0.01477291, -0.0012865323, 0.015037707, -0.03135759, 0.0071843723, -0.0020365014, 0.018173466, -0.02996392, -0.026354313, -0.023176745, 0.032834884, -0.022884073, -0.01570667, -0.018173466, 0.021378908, 0.022577465, 0.015873909, -0.026507616, 0.031719945, 0.030437768, -4.7776775E-4, -0.014522049, 0.0195532, 0.0033970724, 0.018995732, 0.003783816, 0.028848983, 0.010431625, -0.027608616, 0.038799793, -0.042479083, 0.0042437273, -0.0386883, -0.019971302, 0.019009668, 0.027288072, -0.022438098, -0.0080345115, -0.035817336, -0.0051565818, 0.0145638585, -0.0051914235, 0.0140203275, -0.010577961, 0.0316642, -0.0023901453, -0.0048186164, 0.0149122765, 0.015204947, 0.01049434, -0.017044593, 0.0013623132, 0.011699866, -0.014173632, -0.0057872175, -0.005048572, 0.0010530924, -0.006874281, 0.0026096485, 0.027329883, 0.007902113, -0.033029996, -0.018563693, -8.3674684E-5, -0.004595629, 0.01799229, -0.02510001, 0.008146006, 0.0052959486, 0.032193795, -0.001438965, 0.00935153, -0.037573364, 2.6915266E-4, -0.008891619, 0.014856529, 0.026396124, 0.014842593, 4.2114986E-4, 0.019790124, 0.016278073, -0.028221833, 0.013567384, -0.008459581, 0.0028343778, -0.0012647562, -0.013386208, 0.0060659517, -0.63908166, -0.03381045, -0.0043099266, -0.019190846, 0.019413833, 0.013009916, 0.019009668, 0.012320049, -0.031719945, 0.0041148127, -0.02281439, 0.0140203275, 0.021239541, -0.011936789, -0.018675188, -0.019636821, 0.016096897, -0.011337511, 0.01828496, -0.0020347591, -0.040778805, 0.018298896, 0.014689289, -0.0027194, 0.012466384, 0.0012464642, 0.011365385, -0.005086898, -0.009922936, -0.007288898, -0.013351365, 0.022995567, 0.017476631, 0.0031653745, 0.0386883, -0.018438263, -0.02424987, 0.034563035, 0.02466797, 0.03224954, -0.010062302, -0.013943676, 0.01917691, 0.008835873, -0.023330048, 0.005445768, 0.016584681, -0.016626492, 0.004480651, 0.0017124729, 1.6255862E-4, 0.018912112, -0.012145841, 0.00834112, -3.969784E-4, 0.0059893, 0.021030491, -0.026005896, 0.013664941, 0.00402074, -0.007233151, 0.01396458, 0.011274796, 1.2270836E-4, -0.0016985362, 0.017281517, -0.0173512, -0.008487455, 0.00571405, -0.022229047, 0.012556973, 0.0064701163, -0.004118297, 0.0072401194, 0.004853458, 0.01882849, 0.04548941, 0.0054945466, -0.0075327903, 0.008710442, 0.00465486, -0.023427604, -0.008146006, 0.011922853, 0.039635994, -0.008396866, -0.023594845, 0.01036891, 0.013609194, -0.0011009999, 0.01222946, 0.033531718, -0.0016967941, -0.0047036386, -1.0898941E-4, -0.0033761673, -0.01857763, 0.008738316, 0.03110673, -0.05176093, 0.0021236057, -0.020068858, 0.0153582515, 0.0041287495, 0.0058429646, -0.0070066797, 0.009407277, 0.0025120915, 0.019023605, -0.028793236, -0.019873744, -0.0019842386, -0.011985568, -0.008327182, 0.01730939, -0.030103287, 0.02391539, -0.0055049993, 0.015232821, 0.0010017009, 0.007351613, -0.012926295, -0.0042123697, -0.0060833725, 0.0059056794, 0.018117718, 0.013351365, -0.013149283, 0.0068115657, 0.012689372, -0.0064352746, 7.961344E-4, 0.02611739, -0.01654287, 0.019190846, -0.0077000307, 0.002912772, -0.007111205, 0.0011550046, 0.005344727, -0.037740603, 0.009560581, 3.9937376E-4, -0.008264467, -0.0052053602, -0.010403751, -0.01849401, -0.0014285125, -0.012145841, -0.0047210595, -0.038158704, 0.010982125, 0.01481472, 0.0045015565, 0.02632644, -8.5841405E-4, -0.0049963095, -0.018187404, 0.006877765, -0.028709617, -0.0044458094, 0.011797423, -0.017532378, -0.018647315, 0.014535986, -0.019316277, -0.0059718788, 0.020333655, -0.018452201, -0.033197235, 0.011783486, -0.0065397997, -0.014954086, 0.019664694, -0.0071843723, 0.027315946, -0.019929491, 0.002383177, -0.0124385115, -6.563318E-4, -0.001023477, 0.014786846, -0.009010081, 0.0051705185, 0.035399236, 0.019845871, 0.026883908, 0.0014929697, 0.0029911657, 0.023748148, -0.008410803, 0.013490733, -0.0025469332, 0.0039928667, 0.008424739, 0.0059858155, -0.008863745, -0.0038291102, 0.013776435, -2.1068381E-4, 0.035956703, 0.0070693945, 0.008898588, 0.0037559425, 0.021560086, -0.01832677, -0.008766189, -0.018744871, 0.004494588, -0.02073782, 0.0039266674, -6.994485E-4, -0.023162806, -0.027831605, 0.026228882, -0.0113026695, -0.024472857, -2.0295329E-4, -0.02420806, 0.003606123, -0.0011166787, 0.0049893414, 0.02518363, 6.241032E-4, -0.012543037, 0.015859973, 0.015873909, -0.018716998, 0.005456221, -0.021225605, 0.026814224, 0.005041604, -0.0030434283, -0.007198309, 0.015762417, -0.0036374805, 0.023608781, 0.0023901453, 0.03330873, -0.010731264, 0.0046862178, 8.671245E-4, 0.032751262, -0.001775188, -0.016292011, 0.003783816, 0.015037707, 0.0036932274, -0.009017049, 0.03453516, -0.033531718, 0.015929656, -0.01477291, -0.011212081, 4.1505255E-4, -0.0016366921, 0.0011358416, -0.0031479537, 0.040444326, 0.023608781, 0.01668224, 5.0128595E-4, 0.025086073, 0.0083829295, 0.021058364, -0.030605009, -0.029044097, -0.007100752, 7.970054E-4, -0.021058364, -0.01722577, -0.023009503, -0.009212163, -0.005811607, 0.009302752, -0.024779465, 0.0014947118, 0.010069271, 0.014842593, -0.004073003, -0.0077348724, -0.03077225, 0.018716998, 0.023009503, -0.019330213, -0.012396701, -0.0045120087, 0.010891536, -0.016598618, -0.014828657, -0.024877023, 0.01815953, -0.012194619, 1.5439259E-4, -0.018215276, -0.03542711, 0.0098671885, -0.011671992, 0.03266764, 0.011776517, 0.0049370783, -1.733378E-4, 0.0016636944, -0.008787094, 0.03723888, -0.0026113905, 0.01494015, -0.012731182, -0.0010809659, -0.010814885, 0.011191176, -0.008048449, -0.04367764, 0.004557303, -0.011016967, -0.018257087, -0.016403504, -0.0150098335, 0.020960808, -0.007470075, 0.008557138, -0.0039092465, -0.025002452, 0.0021044428, 0.08038693, 0.020709947, 0.013044758, 0.0012978559, 0.022661086, 0.00994384, -0.0030364601, -0.018633377, 0.0040172557, -0.018814554, 0.013295619, -0.004086939, 0.014828657, 0.0044109677, 0.027204452, 0.015079517, -8.2052365E-4, -0.007013648, 0.0014955829, -0.006801113, -0.023803895, -0.011239954, 0.018257087, 0.010912442, -0.0013022111, -0.04097392, 0.022702895, 0.008870714, -6.1800587E-4, 0.010257416, -0.007003195, 0.020180352, 0.019427769, 0.020110669, 0.0052053602, -0.0042472114, 0.024431048, 0.011288732, 0.03835382, -0.0070833312, -0.0030294918, -0.0013849603, -0.0015713638, -0.026340377, 0.014438429, -0.021392845, -0.0026096485, 0.019692566, 0.007470075, -0.036597792, 0.027901288, 0.004710607, -0.030883742, -0.01726758, 0.025364807, 0.019957365, -0.0027855993, -0.0045085247, -0.026591238, 0.0028901247, 0.0015948819, -0.024695845, 0.012849644, -0.0018500979, 0.0033430676, -0.019232655, -0.005950974, -0.0011497784, -0.025253313, -0.003250737, 0.010982125, -0.014884403, -0.016988846, -0.008152974, 0.00926791, -0.0030451706, 0.023385795, -0.021727327, 0.007818493, -0.0014433202, -0.009846283, -0.032779135, 0.0014694516, -0.0221733, -0.009379404, 0.025615668, 0.013483764, 0.019985238, 0.0021514792, 0.019372024, -0.011706834, -0.0086756, -0.015037707, -0.024221998, 0.0386883, 6.680909E-4, 0.008919492, 0.017602062, 0.004316895, 0.0048778476, 0.013009916, -0.01612477, -0.020180352, -0.0065363157, -0.019957365, 0.0018152561, -0.006508442, 0.00808329, -0.0049997936, -0.027622553, -0.007741841, -0.021058364, 0.011232986, -0.017560251, 0.009365467, -0.011860138, 0.018549757, 0.0026723635, 0.015232821, 0.0031009174, -0.023371859, -0.0074212966, -0.0054945466, 0.027845541, -0.007978764, 0.02416625, 0.002048696, -0.03247253, -0.0147311, 0.017685682, 0.0048081637, 0.026270693, -0.014647479, -0.016584681, -0.009936872, -0.017922604, -0.0028448303, 0.003964993, -2.778631E-4, 0.015511555, -0.022061808, 0.0038674362, 0.01870306, 0.0020068858, 0.009344562, -0.023413667, 0.0011898463, 5.788089E-4, 0.022786517, 0.024946706, 3.9980927E-4, 0.014870467, -0.02979668, -0.0151073905, -0.011685929, -0.0342843, -0.013093537, 0.0016157869, 0.041531388, 0.0054283473, 0.040639438, -0.009497866, 0.041921616, -0.0030085866, 0.01739301, 0.018187404, 0.006027626, -0.01222946, -0.030744376, -0.010299226, 0.024472857, 0.010201669, 0.022786517, 0.012954169, -0.0066582616, 0.008501391, 0.0027037212, 0.011100587, 0.006874281, -0.042479083, -0.02670273, 0.006916091, -0.010536151, 0.005992784, -0.017838985, -0.0029528397, 0.04303655, -0.015135264, -0.019232655, -0.007818493, 0.03233316, -0.011755613, 0.0053307903, 2.8875115E-4, 0.009595423, -0.012466384, 1.16937685E-4, -0.021894567, -0.010354973, -0.0016776312, -0.02370634, 0.009037955, 0.0029005772, -0.010989093, -0.0039545405, 0.024723718, -0.010675518, -0.012347923, 0.027023274, -0.011323575, -0.014647479, -0.037935715, -0.011462942, -0.029294958, -0.0010086691, 0.011950727, 0.009895062, 0.007992702, -0.019901618, -0.026563363, 0.018842429, -0.018870302, 0.035650097, 0.014368745, 0.038270198, 0.029991794, -0.013288651, -0.023497289, 0.0037768476, 0.00816691, -2.4846537E-4, 0.04261845, 0.0021079269, 4.7994536E-4, -0.008773157, 0.009804473, -0.0021723842, -0.012689372, -0.03999835, 0.033197235, 0.03158058, 0.010661581, -0.019121163, -0.006881249, -0.021434655, 0.039691743, -0.004003319, -0.020054922, 0.0042054015, -0.03525987, -0.017448757, 0.016528934, -0.008424739, 0.0071355943, 2.3953715E-5, -0.014145758, 0.020152478, -0.029768806, 0.0054910625, -0.022758642, 0.003550376, 0.033448096, -0.016751923, 0.017337264, -0.0061844136, 0.018424327, -0.0049370783, -0.008912524, 0.0027194, 0.026521554, -0.008682569, 0.010793979, 0.009393341, 0.0158321, -1.00551166E-4, 0.031078856, -0.026577301, -0.0011802649, -0.017365137, -0.01108665, 0.03559435, 0.025253313, -8.3054067E-4, -0.012689372, -0.014326935, -0.0057001133, 0.004477167, -0.008598948, -0.01772749, -0.04727331, -0.0077279042, -0.02098868, 0.0022037418, -0.014466302, -0.0023361405, -0.0010957737, -0.0119925365, 0.030995237, -0.008027543, 0.013407112, -0.02052877, -0.0028082465, -0.03093949, -0.013469827, 0.0057767653, -0.027343819, 0.0026148746, -0.026228882, -0.004372642, -0.011888011, 0.020626327, -0.002959808, -0.005045088, -0.015372188, 0.011274796, 0.026939655, -0.019079352, -0.015483682, -0.009832347, 0.024277743, -7.530177E-4, 0.0028256674, 0.017811112, 0.02061239, 0.014828657, -0.023302175, 0.0040311925, -0.00736555, -0.028765364, -0.0040904237, 0.01071036, 0.018061973, 0.033448096, -0.0038674362, -0.04409574, -0.010619771, -0.017323326, 0.020500896, -0.012703309, 0.006093825, 0.036207564, 0.015692731, 0.030577136, 0.029211339, -0.01570667, -0.018995732, -0.009483929, -0.01303779, -0.016807668, 0.007686094, 0.01697491, 0.028458755, 0.0105570555, 0.004271601, -0.03846531, 0.004282053, -0.02069601, -0.022800453, 4.9562415E-4, 0.021295289, 0.04629774, 0.010598865, 0.010306195, 0.02293982, -0.020542705, 0.027692238, -0.0020399855, 0.007288898, 0.015177074, -0.0019493969, 0.0021532213, 0.020389402, -0.012759055, -0.011713802, -0.009107638, 0.010236511, 0.019218719, 0.012633625, -0.016793732, -0.018605504, -0.010034429, 0.005128708, -0.0019354603, -0.019873744, 0.018716998, -0.04245121, -0.015497618, 0.012814802, 0.029350705, 0.0016985362, -0.006285455, 0.0040695183, -0.0051809708, 7.238377E-4, -7.826332E-4, -0.006564189, 0.004985857, -0.029044097, 0.006720977, 0.01091941, 0.005167034, 0.021810947, 0.028221833, -0.0153582515, -0.015121327, -0.013699783, 0.014424492, -0.010856695, -0.007097268, 0.01358829, 0.008055417, -0.020082794, 0.025936212, -0.0113026695, 0.015218884, -0.008654695, 6.396731E-6, -0.010661581, 0.019859808, 0.0067140087, -0.028040655, -0.011483846, -0.0031235644, 0.0031479537, -0.017239707, 0.011985568, -0.0195532, -0.010145923, -3.2010875E-4, 0.009699948, -0.02335792, -0.005835996, 0.018521884, -0.0021601897, -0.01697491, 0.009316688, 0.19098863, -0.0041531385, 0.018967858, 0.047078196, -0.011274796, 0.019316277, 0.039162148, 0.018563693, -0.003294289, 0.018340707, -0.006212287, 0.002818699, 0.005149613, -0.0012935007, -0.015985403, 0.002092248, -0.016947037, -0.021950314, -0.020542705, -0.023789959, -0.010654612, -0.002090506, 0.0073307077, -0.018995732, 0.0033674568, 0.0089752395, -0.006522379, -0.0060032364, 0.029322831, 8.841099E-4, -0.016292011, -0.033225108, -0.0090240175, 0.0030242654, -0.022563528, -0.012800866, -0.00476287, 0.02445892, 0.010097144, -0.0055851354, -0.008194784, -0.0067871762, 0.014535986, -0.009790537, -0.014703226, 0.03729463, -0.02898835, -0.015623049, -0.015441871, 0.014285125, -0.034089185, 0.010152891, 0.019455643, 0.030019667, -0.022591403, -0.02522544, 0.023622718, -7.848108E-4, -0.0024772496, 0.006720977, 0.0075188535, 0.039496627, -0.030382022, 0.013915802, -0.0078115244, 0.015846036, -0.027747983, 0.007853335, 0.0059858155, -0.022870136, -0.021100175, -0.037907843, -0.021894567, -0.00808329, -0.00319499, -0.017295454, -0.014522049, 0.023302175, -0.01422241, 0.036514174, -0.030354148, -0.007013648, 0.004940563, -0.014131821, -0.019135099, -0.03902278, 0.019162972, -0.012515163, -0.0034371405, -0.007372518, -0.0031810533, -0.044764705, -0.025420554, -0.001912813, 0.004665313, -0.0051356764, 0.026591238, 0.012166745, -0.020849314, 0.014480239, -0.047329057, -0.0057245023, 0.026242819, 0.0018971342, 0.006804597, -0.03461878, -0.020068858, -2.6523296E-4, 0.027023274, -0.016013276, -0.005578167, -0.013748562, -0.010048366, -0.013455891, -0.009539676, 0.03854893, 0.008968271, -0.015497618, 0.030549262, -0.01011805, -0.0105570555, -0.01697491, 0.013769466, 0.018187404, 0.0017176991, -0.043538272, -0.041001793, 0.022270858, 0.02564354, -0.0413084, 0.011476878, -0.035566475, 0.021699453, 0.00315318, 0.003686259, -0.0017133439, 0.02314887, 0.0022786516, 0.008480486, -8.6146273E-4, -0.0061844136, -0.004557303, -0.0058464487, 0.015497618, 0.011929821, -0.02196425, 0.0040102876, -1.2564812E-4, -0.028472692, -0.022103617, -0.010870632, -0.01967863, 0.0049963095, 0.006585094, 0.026925718, 0.004710607, -0.0119925365, -0.03771273, -0.028793236, 0.012543037, -0.03740612, 0.025197566, 0.0031444696, -0.012724213, -0.023650592, -0.00689867, -0.18050823, 0.011253891, -0.004731512, -0.021239541, 0.022368414, -0.006400433, 0.033448096, 0.010550087, 0.0049893414, -0.010933347, 0.0153582515, 0.007783651, -0.042339716, -0.009532708, 3.8543704E-4, 0.01383915, -0.026856035, 0.029016225, 0.033002123, -0.006818534, 0.021155922, -0.008752252, -8.002719E-5, -0.02306525, -0.0147311, -0.009247005, 0.012766024, 0.011232986, 0.003689743, 0.0035137923, -0.019316277, -0.00910067, 0.015093454, 0.01091941, 0.014522049, 0.0010365426, -0.023901453, -0.025448427, -0.02098868, 0.003411009, -0.003489403, 0.0070380373, 0.0110518085, 0.009672075, 0.010417689, 0.010787011, 0.015581238, -0.014954086, 0.0135255745, -0.015218884, 0.0021706421, -0.047524173, 0.004355221, -0.008863745, 0.0119437575, 0.0012995979, -0.01726758, 0.011295701, 0.01261272, -0.012919327, -0.03567797, -0.0094699925, 0.012926295, 4.472812E-4, -0.010396783, -0.03141334, -0.0117486445, 0.0058673536, -0.048388246, 0.014438429, -0.016431378, 0.014480239, 0.022229047, 0.0038953095, -0.009247005, -0.008940398, -0.045322172, 0.02192244, -0.012703309, 0.003588702, -0.029071972, 0.043789133, -0.0089264605, -0.010724296, 0.01654287, -0.011079682, -0.0015983661, -0.011128461, 0.009686012, -0.017072465, -0.00986022, -0.019650757, -0.018480074, -0.0059893, 0.020709947, 0.003606123, 0.016027214, 0.0070310687, 0.028542377, -0.011671992, 0.0016811152, -0.007881208, -0.019413833, 0.0099647455, 0.04105754, 0.021058364, -0.007567632, 0.007484012, 0.020222163, 9.2766207E-4, -0.010306195, 0.009922936, 0.008062385, 0.032556146, -0.017406948, 0.01396458, -0.01714215, -0.024751592, 0.0034127512, 0.013804308, 0.03584521, -0.018591568, -0.022744706, 0.0050973506, 0.025950149, -0.013818245, -0.091815025, 0.001478162, 0.018981796, 0.029657314, -0.012842676, 0.0408903, -0.017058529, 0.018647315, -0.029127717, 0.03704377, 0.008348088, -0.026995402, 0.018591568, 1.2589311E-7, 0.024235934, -0.011351448, -0.008055417, -0.021114111, 9.5901964E-4, 0.025741098, 0.021978186, -0.015511555, -0.008048449, -0.035900958, -0.014034264, -7.2296665E-5, -0.03617969, 0.024960643, 0.023079187, 7.817622E-4, -0.012201587, -0.019497452, 0.004668797, -0.043538272, -0.013462859, -0.012793897, -0.017281517, -0.004728028, 0.025197566, -0.0404722, 0.014452365, 0.03224954, 0.024235934, -0.020682074, 0.021392845, -0.024779465, -0.030214781, 0.03266764, -0.010814885, -0.03676503, -0.028528439, -0.011797423, -0.030744376, 0.004961468, 0.024849148, 0.017030656, 0.03052139, 0.0044318726, -0.0012081383, -0.031970806, -0.010278322, 0.011818328, -0.004397031, 0.0016340789, 0.0123409545, 0.005710566, -0.0243753, 0.0018988764, 0.023803895, -0.0012725956, -0.018466137, 0.025002452, -0.0302984, -0.014201504, -0.020082794, -0.013504669, -0.016737984, -0.016570745, 0.030800123, -0.014103947, 0.010577961, -0.011950727, 0.013567384, -0.0010104113, 0.019288402, 0.028040655, 0.009950809, 0.014208473, -0.01066855, -0.019734377, -0.0047384803, 0.0049370783, -0.0072192145, -0.027399566, -0.007853335, 0.029127717, 0.01697491, 0.012870549, -6.0973095E-4, -0.012145841, -0.015051643, -0.0022803936, -0.072861105, 0.019009668, 0.001577461, -0.009414245, -0.014083043, -0.007762746, 0.0023953714, -0.017420884, 0.00804148, 0.005909164, -0.010041397, -0.0032629315, -0.007741841, 0.0016645654, -0.011950727, 0.013267745, 1.1225582E-4, 0.0031392432, -0.0064945053, 0.007093784, -0.025086073, 0.0141666625, 0.0124872895, -0.0077000307, 0.013344397, 0.022744706, 0.019037541, 0.007964828, -0.022270858, -0.021894567, 0.014452365, -0.0049963095, 0.0054840944, 0.0046966705, -0.024361365, -0.018591568, 4.440148E-4, -0.0010226059, 0.014326935, 0.028347263, -0.003491145, -0.02526725, -0.016640428, -0.0052680755, -0.003388362, 0.014201504, -0.0054910625, 0.0013518606, 0.014410555, 0.0065711574, 0.01743482, 0.009093702, -0.0029510977, -0.0044179363, 0.011483846, -0.026730604, 0.03160845, 0.014299061, 0.0029789712, 0.016055087, 0.020473022, 0.011316606, 0.009177322, -0.019162972, 0.0078393975, 0.006010205, -0.0037071642, -0.009253973, -0.0046827337, -0.020751758, -0.016487125, -0.01967863, 0.025420554, 0.02192244, 0.002268199, 0.0077000307, -0.014717163, 6.332491E-4, 0.0078115244, 0.010564024, 0.028848983, -0.012396701, -0.044485968, 0.024737654, 0.012299144, 0.019817997, -0.005832512, 0.022688959, 0.0058778063, 0.021211669, -0.019971302, 0.01502377, 0.026688794, 8.845454E-4, 0.009170353, 0.017239707, -0.024180187, -0.016417442, 0.012215524, 0.040806677, 0.006700072, -0.016640428, -0.0016009792, -0.006724461, -0.019135099, 0.020403339, -0.02252172, -0.014633543, 0.018939985, 0.010341037, 0.02162977, 0.014076075, -0.012752087, 0.009219131, -0.021504339, 0.01697491, -0.018981796, -0.006128667, -0.004947531, 0.042339716, 0.0113026695, 0.02200606, 0.036458425, -0.017908668, 0.046437107, 0.00622274, 0.026953591, -0.025072137, -0.005417895, 0.008257499, -0.0010992577, 0.010605834, -0.021741264, 0.0094699925, -0.011609277, -0.010215607, -0.0043238634, 0.009149448, -0.026883908, 0.06422035, 0.011818328, 1.744266E-4, 0.010821853, -0.016278073, -7.387544E-5, 0.0078115244, 0.017685682, -0.001970302, -0.004940563, 0.0019668178, -0.005125224, 0.023734212, -0.020194288, -2.3997268E-4, 0.010466467, 0.010536151, 0.0342843, -0.011309638, -0.015595175, 0.018856365, 0.0019302339, 0.011762581, 0.0059405216, -0.003271642, 0.0064526955, 0.025281187, -0.002700237, -0.011135429, -0.033503845, -0.0053098854, -0.010111081, -0.022577465, -0.0036409646, 0.016933098, 0.0030033605, -0.0076303473, -0.014717163, 0.023455478, 0.0025939697, -0.013421049, 0.005912648, -0.016264137, -0.013664941, 0.0064701163, -0.016640428, 0.0026288114, -0.04178225, -0.030214781 ], + "id" : "4c0d4dda-9875-43dc-a314-4d2ea2ee0d69", + "metadata" : { + "source" : "movies.csv" + } + }, + "f5ac6af6-4852-4ea6-8540-eaf4d83a4209" : { + "text" : "Griffiths-Byron Chief-Moon-Mike Dopud-Kanako Takegishi-Panou-Jade Tang-Joelle Tang-Johnson Phan-Elizabeth Thai-Warwick Young-Beatrice King-Scott Adkins-Dennis Kreusler-Patrick Stewart,corruption-mutant-boxer-army-prequel-superhero-based on comic-spin off-aftercreditsstinger-duringcreditsstinger,/yj8LbTju1p7CUJg7US2unSBk33s.jpg,/wvqdJLVh0mSblly7UnYFPEk04Wd.jpg,36668-36657-49538-36658-76170-127585-38356-1858-8373-558-10138-1979-246655-1771-10195-1724-9738-559-1930-13475-1726\r\n856289,Creation of the Gods I: Kingdom of Storms,Action-Fantasy-War,zh,Based on the most well-known classical fantasy novel of China Fengshenyanyi the trilogy is a magnificent eastern high fantasy epic that recreates the prolonged mythical wars between humans immortals and monsters which happened more than three thousand years ago.,37.092,Beijing Jingxi Culture and Tourism-Century Changshengtian Film-Tencent Penguin Pictures-Maoyan Entertainment-Huaxia Film Distribution-��__�__叫�__���__��_�����_�__�_��΃�Ώ�,7/20/23,85000000,372945000,148,Released,,7.3,115,Kris Phillips-Li Xuejian-Huang Bo-Yu Shi-Chen Muchi-NaranNarana Erdyneeva-Xia Yu-Yuan Quan-Chen Kun-Ci Sha-Wu Yafan-Hou Wenyuan-Tim Huang-Li Yunrui-Xu Huanshan-Gao Shuguang-William Feng-Wang Luoyong-Yang Lixin-Ding Yongdai-Gao Dongping-Yang Le-Xu Chong-Shan Jingyao-Wu Hankun-Bayalag-Willington Liu-Xu Xiang-Liu Han-Figo Tsui-Sun Rui-Geng Yeting-Jin Zhihao-Qu Yuchao-Huang Tao-Fan Wendong-Jiang Baocheng-Aren-Mi Tiezeng-Senggerenqin-Ma Wenzhong-Ning Wentong-Zhang Jingwei-Yang Tianhao-Li Zeyu-Xia Chenxu-Song Ningfeng-Yu Ying-Wu Chao-Yang Dapeng-Zhao Lei-Zhang Zhenxuan-Song Duyu-Wen Bo-Tumenbayaer-Mu Xiaobo-Chun Xiao-Qilemug-Zhang Xuehan-Bo Qian-Bayaertu-Ha Ha-Wang Feihu-Xiao Long-Han Pengyi-Yan Guanying-Hao Feng-Wang Qianglong-Wu Hsing-Guo-Nashi-Liu Chao-Zhang Yilong-Sun Huangchen-Alijang Kuerban,monster-based on novel or book-mythological beast-high fantasy-physical immortality-chinese mythology,/kUKEwAoWe4Uyt8sFmtp5S86rlBk.jpg,/2C3CdVzINUm5Cm1lrbT2uiRstwX.jpg,565770-802286-871975-1127631-313865-1088080-73475-980489-20299-1063239-950071-1026563-264859-37959-876797-217316-371709-762430-572522-542507-1073170", + "embedding" : [ 0.0052739666, -0.03198183, -0.019536786, -0.024200227, -0.013314265, 0.04103277, -0.020130064, -0.005908636, -0.009871872, -0.03587263, 0.02457275, 0.023013672, 0.03333395, 0.0033130443, -0.0026783748, 0.011913852, 0.025097044, -0.008892273, -0.0041632946, -0.029112019, 0.004677239, 0.005129096, -0.019867918, 0.0021644302, 0.0015211374, 0.008968158, 0.027249401, -0.02083372, -0.021192446, -0.010002945, 0.009561435, -0.0067709587, -0.005004922, -0.018557187, -0.008374879, 0.0036493503, 0.009306188, -0.02146839, 0.022006478, 0.0033371893, 0.020019688, 0.012562319, -0.011265386, -0.0031405797, -0.010313381, 0.0049531823, 0.028504943, -0.0054291845, -0.0060845497, 0.029939849, 0.02924999, 0.02638018, -0.009795987, -0.02447617, -0.006595045, 0.0033164937, -0.009113028, 8.7439537E-4, 0.0066122916, -0.0042702225, 0.022006478, -0.014142094, -0.023882894, -0.023234427, -0.016197871, -0.00866462, -0.0037838726, -0.0061983764, -0.0037838726, -0.01975754, 0.034189377, 0.021937493, -0.0026714762, -0.011113617, 0.037335128, -0.039211545, -0.020337021, -0.01781214, -0.016901527, 0.002876709, 0.003421697, 0.008223111, 0.003183696, 0.009457957, 0.008085139, 0.0061190426, -0.013265975, 0.014997519, -0.01621167, -0.0017393051, 0.007871283, 0.027608128, 0.014528415, 0.012100114, 0.011003239, 0.020488791, -0.017963909, 0.027359778, -0.024076054, -0.03498961, -0.0056050983, -0.014142094, -0.007602238, -0.015811551, -0.011541328, -0.0040770625, 0.006288058, -0.012010433, 0.028187608, -0.0026352585, -0.0049048923, 0.0072297147, 0.008374879, -0.045447864, -0.017067093, -0.02389669, 0.026035251, -0.016046103, -0.0060397093, -0.026863081, 0.026932066, 0.03280966, 8.0497836E-4, -0.022737728, 0.044702817, 0.049697388, -0.0059741726, -0.01430766, 0.0042702225, 1.4551698E-4, 0.035955414, -0.011941447, 0.034768857, 0.016653178, -0.022696337, 0.04710352, -0.031567913, 0.0033647837, -0.009106129, 6.1103656E-6, 0.028339377, 0.037693854, -0.0128244655, -0.0078298915, -0.028201405, 0.010679006, 0.012403651, 0.005829302, 0.0074021793, -0.012072519, 0.017011905, 0.036038198, 0.035320744, 0.018722754, 0.023013672, -0.017743155, -0.011493038, 0.0054843733, -0.008892273, -0.012617508, 0.0072849034, -0.010975645, 0.003338914, -0.016515207, 0.004004627, 0.018515795, 0.028587727, -0.014735373, -0.0029284484, 0.0017108485, -0.005505069, 0.017784545, -0.027139025, 0.017867329, -0.014431835, 0.004549615, 0.030133009, -0.015080302, -0.024158837, -0.00769192, -0.0061190426, -0.005794809, 0.028366972, 0.018184664, -0.01503891, 0.006457073, 0.01688773, -0.020806124, 0.01932983, -0.019992093, -6.963257E-4, 0.020999286, 0.014024818, -0.008630127, -0.63135827, -0.028891264, 0.007822992, -0.007422875, -0.0033906533, 0.009264796, 0.011548228, 0.003956337, -0.009354478, -0.015990915, -0.025483364, 0.0071676276, 0.013314265, -0.016625585, -0.010885963, 0.0013693686, -0.015645985, -0.014404241, 0.013100408, -0.016942918, -0.0262836, 0.0072504105, 0.008388677, 0.0030457242, -0.0062673623, 0.001917806, -0.017205065, -0.0035251756, 0.015618391, 0.027070038, -0.044592436, 0.032726876, 0.017646573, 0.0067985533, 0.036810838, -0.0011106718, -0.020281833, 0.045723807, 0.027828882, 0.019509193, -0.028642915, -0.0010253019, 0.0025093595, 0.01732924, -0.027773693, 0.007540151, 0.013445337, -0.018322635, 0.0010175409, 0.009437261, -0.0027439112, 0.013369453, 0.0072504105, -0.0037010896, -0.0054222858, 0.005577504, 0.0063397973, -0.022806713, 0.002219619, -0.01124469, -0.016087495, 0.021702942, -0.0031405797, 0.0072642076, 0.0013633324, 0.017191269, -0.014735373, 0.0027749548, 0.008485257, -0.03223018, 0.014928533, -8.3084806E-4, -0.0036390023, 0.0047531235, 0.009140622, 0.019978296, 0.042191733, -0.008795693, 0.017743155, 0.017218862, 0.0029732892, -0.004335759, 0.013755774, 0.019578177, 0.022999875, -0.005008371, -0.033058006, 0.005177386, 0.017067093, -0.01396963, 0.008423169, -0.009789089, 0.0043633534, 0.012417449, 0.00647432, 0.012169099, -0.0036976403, 0.010541034, 0.033416733, -0.044454467, -0.014528415, -0.0071331346, 0.012990031, -0.023137847, 0.015411434, 0.002262735, -0.02073714, -0.024586549, 0.037003998, -0.033527113, -0.012624406, 0.0018195012, -0.020364616, 0.0112791825, -9.88222E-4, -0.03562428, 0.028946452, 0.021330418, 0.0022454886, -0.0015090649, -0.014390443, 0.012210491, 0.012990031, -0.0016815296, 0.005291213, 0.018805536, -0.0041391496, -0.02112346, 0.0014840576, 0.034962017, 0.0083610825, 0.0052153287, 0.02730459, -0.008188617, 0.021675346, -1.7925535E-4, 0.025304, -0.004584108, 0.0060362597, -0.011844866, -0.013672991, -0.0019247045, -0.0102237, -0.01134127, 0.002243764, -0.007705717, -0.017053297, 2.894171E-5, 0.0037010896, -0.014762967, -0.011223994, 0.011817272, 0.016749758, 0.008947462, -0.004432339, 0.0083610825, -0.01538384, -0.026145628, 0.018860726, -0.0110377325, 0.008637025, 0.0102237, -0.024324402, -0.017853532, 0.022254828, -0.009126825, -0.015052707, 0.025842091, -0.0041839904, -0.03134716, -0.0053774454, -0.007305599, -0.008202415, 0.029112019, -0.016735962, 0.02127523, -0.018998697, 0.011499938, -0.011451648, -0.003977033, -1.4842732E-4, -0.0066502336, -0.0061086947, -0.010251294, 0.021689143, 0.016294451, 0.018212259, -0.004632398, 0.015825348, 0.014707779, -0.013424641, 0.008581837, 0.0011029108, -0.008478358, -5.9931434E-4, 0.010375468, 0.004570311, 0.010396164, -0.008706011, -0.00798166, 0.032699283, 0.015701175, 0.013514323, -0.016804947, 0.020047281, -0.032699283, 0.0022472134, -0.041446686, -0.002166155, -0.0030802172, 0.019536786, -0.0043150634, -0.01883313, -0.0061397385, 0.008140327, 0.012548522, 0.002914651, 0.006405334, -0.015563202, -0.013196989, 0.00328545, -0.018488202, 0.024765912, 0.0277461, -0.034327347, 0.016722165, -0.003226812, -0.0071814246, 0.0026404324, -0.00506356, -0.011458546, -0.007705717, -0.0010796281, -0.007084844, -0.010596223, 0.009478653, 0.019081479, -0.014045514, 0.04944904, -0.007988559, -0.002574896, 0.0228757, 0.015094099, -0.0073400917, 0.006643335, 0.00783679, 0.0040874104, 0.0015754638, 2.860756E-4, 0.04083961, -0.033058006, 0.037500694, -0.019826526, -0.015494216, 0.016998108, -0.011299878, 0.019771338, 0.015218274, 0.027263198, 0.016529003, 0.005053212, -0.005746519, 0.00588794, 1.2137194E-4, 0.019495394, -0.013121104, -0.0146801835, 0.00328545, -0.008092037, -0.038024988, -0.029663906, -0.013431541, 0.0061431876, 0.009506247, -0.012169099, -0.027539141, -0.0031216086, 0.012500232, 0.0020126614, 0.03294763, -0.011955244, -0.037307534, 0.0014762967, 0.01041686, -0.0032181889, -0.011320574, -0.020019688, -0.018419215, -0.023399992, 9.1061293E-4, -0.013976528, 0.008023052, 0.012789972, 0.0113274725, -0.029001642, -0.020502588, 0.009161318, -0.016349642, 0.007064149, 0.026973458, 0.008305893, 0.030188197, -0.011044631, 0.0112308925, 0.012886552, -0.012652, -0.018681362, 0.0019454003, 0.018626174, -0.0055913012, 0.013907542, -0.010085728, -0.03965305, 0.010409961, 0.0010304758, -0.007602238, -0.035072394, -0.008354183, 0.0046358476, 1.4001966E-4, -0.011493038, -0.023055064, -0.04045329, 0.0063880878, 0.075939596, 0.031761076, 0.012113911, 7.6013757E-4, 9.3217095E-4, 0.008230009, -0.014928533, -0.016322047, 0.002316199, -0.008885374, 0.028918859, -0.0010632441, 0.0014245573, 0.010810079, 0.01274858, -0.011941447, -0.0061052456, -0.0071676276, 0.0045772097, 0.005142893, -0.018860726, -0.004394397, 0.025980063, 0.015521811, -0.0048703994, -0.01727405, 0.021261431, 0.0035303496, -0.009692509, 0.011589618, -0.014390443, -6.32945E-4, 6.915829E-4, 0.008416271, -0.018488202, 6.122492E-4, 0.019964498, 0.0128244655, 0.019895513, -0.0052394737, 0.0028439406, 0.024669332, 0.0017556893, -0.013741977, 0.014914735, -0.02297228, -0.012631305, -0.005870694, 0.010327178, -0.024683129, 0.02551096, 5.2210953E-6, -0.026656123, -0.023220628, 0.017163673, -0.003859757, -0.009264796, -0.013845455, -0.0056188954, 0.018626174, -0.0014668112, -0.038218148, 0.00496353, -0.012624406, 0.0048359064, -0.020047281, -0.013893746, -0.0073193964, -0.009706305, 0.008347285, -0.009133724, -0.00866462, 0.012514029, 0.002862912, 0.002876709, -0.004059816, 0.028753292, -0.004439238, 0.014542212, -6.549342E-4, -0.03567947, -0.034879234, 9.373449E-4, -0.018115679, 0.0021592563, 0.011286081, 0.0053257057, 0.01284516, 0.012789972, -0.01650141, -0.005622345, 0.0045530647, -0.033113196, -0.001594435, 0.04249527, 0.010478947, 0.0140041225, 0.004663442, 0.00228688, -0.0034820596, 0.017453413, -0.01942641, -0.014900939, -0.003520002, -0.010037438, 0.0039011484, 0.0024058807, 0.004435789, -0.021068271, -0.013624701, -0.025248813, -0.02618702, 0.011872461, 0.0026611283, 0.011575822, -0.0034820596, 0.010154714, 0.011010138, -0.017315442, -0.004346107, -2.313181E-4, 0.0015521811, 0.018943507, 0.019081479, -0.010948051, 0.03965305, -0.0060293614, -0.013569512, -0.008298995, -0.007947167, -0.015894335, 0.019688554, -0.00895436, 0.009506247, -0.012762378, -0.0011382662, -0.010816977, 0.0018781391, 0.0044219913, 0.006288058, -0.029194802, -3.2768268E-4, 0.007974762, 0.00192298, -0.007960964, -0.028242797, 0.006488117, -0.016460018, 0.027897868, 0.017094688, -0.026421571, -7.553948E-4, -0.017246457, 0.004984226, -0.028642915, -0.04255046, -0.04415093, -0.007822992, 0.03363749, 0.008085139, 0.03198183, 0.0060983473, 0.022282422, 0.0011805199, 0.0019988643, 0.027966853, -0.007140033, -0.0048876456, -0.056044087, 9.485551E-4, 0.0074435705, 0.026131831, 0.0022989528, -0.010051235, 0.00245762, 0.018157069, -0.0048324573, 0.010182308, 0.0019695454, -0.044702817, -0.021909898, 0.01051344, -0.01854339, -0.01270719, -0.02551096, -0.022834308, 0.03962546, -0.014321458, -0.01844681, -0.028201405, 0.033223573, -0.010078829, 0.012465739, -0.0175224, 0.023110252, -0.023717327, 0.0064363778, -0.012927944, -0.009533841, 0.0060638543, -0.01250713, 0.016722165, -0.0031285072, -0.013031422, -0.0037942205, 0.0036562488, -0.021054475, -0.015314854, 0.017867329, -0.016860137, -0.0029819123, -0.019992093, 0.013383251, -0.0384665, -0.01941261, 0.0073607876, -0.016804947, 0.0160599, -0.013810962, -0.028642915, 0.046744797, 0.0058672447, 0.053808946, 0.0033785808, 0.026049048, 0.042964373, 0.0059362305, -0.019081479, -0.0013081437, -0.013866151, -0.02204787, 0.028077232, 0.022379002, -0.018143272, 0.0035734659, 0.0050394144, -3.9262635E-5, -0.05077357, -0.03396862, 0.02122004, 0.03766626, 0.033499517, -0.011148109, -0.006360493, -0.012631305, -6.6873134E-4, -0.0047082826, -0.0012520928, -0.013679889, -0.026932066, -0.017536197, -0.016087495, -0.0020419804, 0.01494233, -9.218231E-4, -0.01143785, 0.008305893, -0.018046692, -0.0061397385, 0.010306482, -0.015701175, 0.042964373, -0.012300173, 0.0018298491, 0.028477348, 0.0060879993, 0.017108485, -0.00389425, -0.009278594, 0.03338914, -0.009727001, 0.03888041, -0.007616035, 0.00987877, 0.01640483, 0.018281244, -0.009292391, 0.0015357969, -0.014362849, 0.0041391496, 0.014459429, 0.01036857, 0.0019212553, -0.00520843, -0.004263324, -0.00793337, 0.006950322, -0.008092037, 0.012203593, -0.044261307, -0.0015815, -0.0055740546, -0.0053567495, 5.906911E-4, -0.013907542, -0.015121693, -3.184127E-4, 0.028242797, -0.015701175, -0.006288058, -0.0083127925, -0.018170867, -0.042164136, -0.019191857, -0.010044336, -0.025538553, 0.009768393, -0.017508604, -0.002204097, -0.011969041, -0.0027025198, -0.010954949, -0.012093215, -0.012990031, -0.0024593447, 0.010244396, -0.008968158, -0.015783956, -0.027125226, 0.024890086, 0.0074297735, -0.0014461154, -0.0027404618, 0.014431835, 0.040563665, -0.0020919952, 0.006001767, -0.0016616961, -0.028477348, -0.016832542, 0.012203593, 0.011299878, 0.018377824, 0.0017746604, -0.03173348, -0.021330418, -0.0107479915, 0.023758719, 0.0015539058, 0.021013083, 0.029112019, 0.016722165, 0.014335255, 0.03192664, -0.0066881757, -0.017467212, -0.005129096, -0.009513145, -0.027732302, -9.3217095E-4, 0.008533547, 0.02073714, 0.0030698692, 0.0013046945, -0.04486838, -0.002793926, -0.014831953, -0.017674169, -0.0019695454, 0.025924874, 0.031071216, 0.01621167, 0.002355866, 0.01844681, 0.008112733, 0.012044925, -0.0018539941, -0.012051824, 0.015370042, 0.007754007, 0.027884072, 0.01640483, -0.035127584, 0.0010235772, 0.011637909, 0.013948934, 0.005177386, 0.019150466, -0.016970513, -0.0073814834, -0.010437556, -0.0016030582, -0.015204476, -0.012465739, 0.022268625, -0.049311068, -0.017246457, 0.009354478, 0.0150665045, -0.014638793, 0.012652, 0.027897868, -0.019798933, 0.015025113, 0.01163101, -0.025290204, -0.0043012663, -0.022889497, 0.033803053, 0.005232575, 3.5269003E-4, 0.041170742, 0.024903884, -0.02127523, -0.0049911244, -0.011017037, 0.003542422, -0.02326202, 0.0032957979, 0.0042667734, 0.02399327, -0.01577016, 0.023965675, -0.032892443, 0.0021471838, -0.014818155, -2.0577178E-4, 0.0061121443, 0.03134716, 0.027028646, -0.03741791, 0.010885963, -0.017605184, -3.8028436E-4, -0.01923325, -0.0012270854, -0.035458714, -0.011272284, 0.0034251462, 0.010099525, -0.013955832, -0.019205654, -0.0051808357, -0.0032647543, -0.027663317, 0.0073538893, 0.19768578, -0.01771556, 0.0033302908, 0.048483238, -0.004073613, 0.00871291, 0.033885837, 0.020185253, -0.010975645, 0.009126825, 0.0023455182, 0.01138956, 0.0038425105, -0.0013754049, 0.013334961, -0.018336432, -0.03275447, 0.0067571616, -0.013010727, -0.013762672, -0.011258487, 0.0043633534, -0.0029370715, -0.013735078, -0.009892567, -0.0035665673, -0.006015564, 0.005798259, 0.013293569, 1.3592363E-4, -0.025938671, -0.018488202, 0.0027128677, -0.002462794, -0.023289615, 0.0013245279, 0.0042357296, 0.021261431, 0.008995752, -0.0041460483, -0.011189501, -0.022765324, -0.0032647543, -0.012769276, 3.8287134E-4, 0.010196106, -0.03670046, -0.0223928, -0.019633366, 0.018529592, -0.036341734, -0.00764363, 0.017674169, 0.029498339, 0.0050256173, -0.022820512, 3.9208742E-5, 0.011141211, 0.0028215202, -0.0115206335, 0.0069192783, 0.0457514, -0.022765324, 0.033527113, 0.008768098, 0.009085434, -0.032202583, -0.012451942, 0.02248938, -0.029967442, -0.028146217, -0.022254828, -0.0060811006, 0.015935726, -0.008574938, -0.01304522, 0.00871291, 0.023206832, 0.034686074, 0.020088673, -0.019923106, 0.003256131, 0.008823287, -9.071636E-4, -0.011837968, -0.014652589, 0.02277912, -0.015852943, -0.0060121147, -0.006322551, -0.015025113, -0.002243764, -0.008443865, -0.0050152694, 0.007022757, -6.583835E-4, 0.025648931, -0.00311471, -0.010927355, 0.004321962, -0.035596687, 0.025635133, 0.019674757, -0.011148109, -0.02549716, -0.015563202, -0.017729357, -0.006401885, 0.016004711, -0.011865562, -0.0153562445, -0.018060489, -0.008678417, -0.018046692, 8.3990244E-4, 0.025152232, 0.021689143, 0.007271106, 0.032782063, -0.019674757, 0.0068951333, -0.033168387, 0.003921844, -0.0053533, -0.011831069, -0.03587263, 0.0010339251, -0.0037493797, 0.00442889, -0.03772145, 0.024669332, -0.031954236, 0.020364616, 0.008650823, 0.0019747193, 0.018764146, 0.009671813, -0.011451648, 0.0025973164, -0.0034717117, -0.006343247, 0.0055188662, 0.016377235, 0.01484575, 0.02487629, -0.0061086947, -0.011148109, -0.0020178354, -0.014121398, -0.023193035, -0.031705886, -0.006484668, 6.980503E-4, 0.008837084, 0.036479704, 0.006284609, -0.007802297, -0.029719094, -0.012976234, 0.042384893, -0.0350448, 0.0054015904, 0.013576411, -0.021606361, -0.0350448, -0.013210786, -0.1777075, 0.013486729, 0.029194802, -0.02360695, 0.017784545, 0.01688773, 0.028366972, -0.0054257354, 0.016335843, -0.016460018, 0.034686074, 0.015190679, -0.05115989, -0.004311614, 0.009506247, 0.0037148867, -0.02268254, 0.033223573, 0.023468979, 0.008188617, 0.03383065, 0.0067502633, -0.027539141, -0.004911791, 0.0111964, 0.00486695, 0.02559374, 0.012376057, 0.007012409, -0.0015090649, -0.034906827, -0.023951879, 0.009913263, 0.0066157407, 0.013990326, -0.023179237, -1.9650182E-4, -0.0107962815, -0.009561435, 0.002166155, 0.02351037, 0.010968747, 0.010720397, 0.013500527, 0.018308839, 0.0038770034, 0.017536197, -0.014197283, 0.01990931, -0.019398814, -0.015632188, -0.024062255, 0.037693854, -0.008057545, 0.009547639, 0.026835486, 0.014804359, 0.0013503976, 0.015990915, -0.0140041225, -0.02156497, -0.01153443, -0.002561099, -0.013859252, 0.008995752, -0.016970513, -0.013486729, 0.01532865, -0.036534894, 0.008975056, -0.027759897, 0.0031216086, 0.033416733, 0.001936777, 0.012714088, -0.012382956, -0.04263324, 0.021937493, -0.0019643714, 0.0047427756, -0.022516973, 0.029967442, -0.015397636, 0.015839146, 0.0067192195, -0.008595634, 0.020240441, -0.010672107, 7.338367E-4, -0.0073814834, -0.008754302, -0.012893451, -0.020902706, 0.003870105, -0.01567358, -0.0071952217, -3.6390024E-4, 0.013948934, 0.011217095, -0.0034372187, 0.019495394, -0.0115206335, -0.014859547, 0.022820512, 0.013176293, 0.0014659488, 0.023427587, 0.037141968, 0.029112019, 9.0888824E-4, -0.01937122, 0.006867539, 0.010244396, 0.02000589, -0.019164262, 0.02428301, -0.018046692, -0.022668742, 0.0073469905, 0.0113274725, 0.06396366, 7.8600727E-4, 0.01328667, 0.0043288604, -0.01956438, -0.016073698, -0.082341485, 0.027483953, 0.0036010602, 0.03981862, -0.03198183, 0.027884072, -0.014528415, 0.021206243, -0.02545577, 0.027332185, 0.008706011, -0.017315442, 6.523472E-4, 0.0015185506, -0.0016263409, 4.11328E-4, 0.0023437934, -0.004508224, 0.018722754, 0.030988432, 0.00793337, -0.012976234, -0.011513734, -0.002048879, -0.022103058, 0.029857066, -0.03446532, 0.025428176, 0.019867918, 0.011651706, 0.023648342, -0.02662853, 0.013741977, -0.019302234, -0.022351408, -0.02360695, -0.021095866, -0.008650823, 0.0131418, -0.040039375, 0.014459429, 0.014280066, 0.010547933, -0.025235016, -0.013397047, 0.009009549, -0.046082534, 0.027470157, -0.0046461956, -0.031843856, -0.0029405209, -0.023317209, -0.03242334, -0.016915325, 0.024076054, 0.012810668, 0.023013672, -0.0027387373, -0.015852943, -0.008492155, -0.0074159764, -0.0035131031, -0.01956438, 0.0016142683, 0.014059312, 0.009216506, -0.019081479, -0.009244101, 0.020337021, -0.02720801, -0.01041686, 0.03085046, -0.016735962, -0.016901527, -0.034962017, -0.002438649, -0.019895513, -0.0077747027, 0.031016028, -0.036672864, 0.0012486435, -0.02010247, 0.024710722, -0.023110252, 0.02749775, 0.018943507, 0.01854339, -0.0024489968, 0.011893157, -0.034906827, -0.005749969, 0.030133009, 0.0034958567, -0.003908047, -0.0031612755, 0.018433012, 0.017729357, 0.01548042, -0.014224878, 0.016032306, -0.005446431, 0.005032516, -0.08013394, 0.03703159, -0.0042081354, -0.0075470493, -0.015935726, -0.01294864, 0.0041736425, -0.0047876164, -0.028753292, 0.02355176, -0.011079124, 0.0068364954, -0.014390443, -0.007436672, -0.005805157, -0.0036252053, 0.0049807765, -0.010347874, 0.014080008, 0.005101502, -0.005767215, 0.029746689, 0.022903295, 0.0055602575, -0.02214445, 0.017963909, 0.014473226, 0.009947756, -0.028339377, -0.032257773, 0.022737728, -0.022861904, 0.0051911836, 0.005184285, -9.02852E-4, -0.043019563, -0.010099525, 0.009968452, 0.020847516, 0.020612964, -0.0062018256, -0.018060489, 0.0034492912, 0.0026800993, -0.021151055, 0.0047186306, -0.022530772, 0.013617802, 0.014252472, 0.004108106, 0.018529592, -0.0027870273, -0.009037144, -0.01990931, 0.00983048, -0.027566737, 0.049090315, 0.006025912, -0.010478947, -0.0048255585, 0.020819923, 0.0058568968, 0.03027098, -0.037445508, 0.018515795, -0.006508813, -0.009464855, -0.008850882, -2.3325832E-4, -0.039984185, -0.018584782, 0.00618113, 0.00798166, 0.03854928, -0.014059312, 0.01503891, 0.005660287, -0.015604594, 2.5848128E-4, 0.02428301, 0.008526648, -0.014983721, -0.029360367, 0.01532865, -0.007040004, -0.0021023431, 0.006546755, 0.020681951, -0.0064708707, 0.011237791, 0.005622345, 0.0072159176, 0.024103647, 0.0064605228, 0.02010247, 0.01723266, -0.018184664, -0.0047841673, 0.014500821, 0.02662853, -0.0106031215, -0.0022558365, 0.0054809237, -0.008002356, -0.029774282, 0.004335759, -0.014335255, -0.03242334, 0.012990031, 0.015011316, 0.012783074, 0.021578766, -0.019053886, 0.0013314264, -0.030050226, 0.0041598454, -0.008085139, -0.008230009, -0.01523207, 0.03965305, 0.01932983, 0.008305893, 0.022185842, -0.02316544, 0.03761107, 0.010209902, 0.018157069, -0.018708955, -0.008706011, 0.031457536, 0.00661919, -0.013879948, -0.0350448, 0.00696067, -0.013583309, -0.006443276, 0.0029646659, 0.022296218, -0.0065053636, 0.0647363, 0.021799522, -7.528078E-4, 0.013604005, -0.019247046, 0.020861315, 0.009237202, 0.022365205, -0.022006478, -0.0052981116, -0.012175999, -0.026366383, -0.0020437052, -0.011844866, -0.023468979, -0.0012089766, 0.014404241, 0.0041288016, -0.019674757, -0.03957027, 0.0030681447, -0.002273083, 0.03907357, 0.0015056157, -0.01596332, 0.004901443, 0.011913852, 0.0026628529, 0.0067330166, -0.030188197, -0.002550751, -0.027980652, -0.0038425105, -0.017784545, 0.018515795, 0.0026904473, -1.1600937E-5, -0.0024248518, 0.014169688, 0.0036217559, -0.014293863, -0.016515207, -0.02297228, -0.016529003, 0.026421571, -0.0087612, -0.0011701721, -0.011479242, -0.02511084 ], + "id" : "f5ac6af6-4852-4ea6-8540-eaf4d83a4209", + "metadata" : { + "source" : "movies.csv" + } + }, + "819fc33f-254d-4f79-82bf-e9627eb7a55b" : { + "text" : ",302688-858-3981-17403-20825-23049-9489-9801-1493-4806-9919-2280-11232-245-8874-11287-634-1597-9889-9820-2005\r\n335977,Indiana Jones and the Dial of Destiny,Adventure-Action-Fantasy,en,Finding himself in a new era and approaching retirement Indy wrestles with fitting into a world that seems to have outgrown him. But as the tentacles of an all-too-familiar evil return in the form of an old rival Indy must don his hat and pick up his whip once more to make sure an ancient and powerful artifact doesn't fall into the wrong hands.,237.98,Lucasfilm Ltd.,6/28/23,294700000,368407504,155,Released,A legend will face his destiny.,6.606,917,Harrison Ford-Phoebe Waller-Bridge-Mads Mikkelsen-Boyd Holbrook-Olivier Richters-Ethann Isidore-Toby Jones-Antonio Banderas-Karen Allen-John Rhys-Davies-Shaunette Ren��e Wilson-Thomas Kretschmann-Martin McDougall-Alaa Safi-Francis Chapman-Alfonso Rosario Mandia-Chase Brown-Nasser Memarzia-Amedeo Bianchimano-Anna Francolini-Gabby Wong-Adolfo Margiotta-Niccolo Cancellieri-Antonio Iorio-Manuel Klein-Holly Lawton-Guy Paul-Harriet Slater-Alton Fitzgerald White-Ian Porter-Daniel Anderson-Cory Peterson-Charles Hagerty-Ali Saleh-Amara Khan-Jill Winternitz-Billy Postlethwaite-Clara Greco-Joe Gallina-Nicholas Bendall-Thulani Storm-Edoardo Strano-Angelo Spagnoletti-Hicham Ouaraqa-Adil Louchgui-David Mills-Rhyanna Alexander-Davis-Gary Fannin-Gunnar Cauthery-Aron von Andrian-Nikola Trifunovic-Henry Garrett-Elena Saurel-Mike Massa-Anthony Ingruber-Christian Sacha Mehja-Stokes-Angus Yellowlees-Matthew Staite-Corrado Invernizzi-Joerg Stadler-Thorston Manderlay-Basil Eidenbenz-Johann Heske-Joshua Broadstone-Bruce Lester-Johnson-Martin Sherman-Allon Sylvain-William Meredith-Kate Doherty-Duran Fulton Brown-Eliza Mae Kyffin-Mauro Cardinali-Mark Killeen-Bharat Doshi-A��ssam Bouali-Douglas Robson-Mohammed R. Kamel-Bryony Miller-Tiwa Lade-Brodie Husband-Hannah Onslow,ancient rome-treasure hunt-sequel-flashback-knife fight-archaeologist-adventurer-1960s-nazi germany,/Af4bXE63pVsb2FtbW8uYIyPBadD.jpg,/35z8hWuzfFUZQaYog8E9LsXW3iI.jpg,575264-437894-432342-432373-747188-976573-298618-432615-8052-614479-884605-346698-16084-28985-1076366-432347-977013-111637-667538-872585-697843\r\n337167,Fifty Shades Freed,Drama-Romance,en,Believing they have left behind shadowy figures from their past newlyweds Christian and Ana fully embrace an inextricable connection and shared life of luxury. But just as she steps into her role as Mrs.", + "embedding" : [ 0.006962392, -0.044736926, -0.017262014, -0.03729927, -0.029473085, 0.014916933, -0.016110288, -0.01379296, -0.00803433, -0.027599797, 0.032442596, 0.034718294, 0.0205368, 0.010677749, 0.011191169, 0.036327936, 0.019065922, -0.021549765, 0.03363595, -0.0319153, -0.010476544, 0.0013052317, -0.015277715, 0.004665878, -9.5138815E-4, -0.009081984, 0.017262014, -0.013487683, -0.00814534, -0.01705387, 0.004589559, -0.009852114, 0.0019634848, -0.022534978, -0.026101165, 0.0037431095, 0.00473179, -0.021258365, 0.02075882, -2.3481161E-4, 0.010185143, 0.003583533, -0.025115954, -0.0021230613, -0.0017952356, 0.020786574, 0.020120515, -0.0055366107, -0.005824542, 0.025671002, 0.017248139, 0.029889371, -0.027377777, -0.03258136, 5.3683616E-4, -0.0058384184, -0.012613482, 0.015027943, -0.005564363, -8.941487E-4, 0.014792047, -0.016665338, -0.027225139, -0.0102337105, -0.027197385, 0.001355533, -0.0029625723, -0.013550126, 0.0049017738, 0.0049399333, 0.028390741, 0.008735078, 0.006941578, 0.008873841, 0.011912732, -0.029722856, -0.026434194, -0.0054464154, 0.0026295432, 0.012988139, 0.0068756654, -0.013140778, -0.009158303, 0.008651822, 0.021563642, 0.016970614, -0.0015576053, 0.02017602, -0.025740383, 0.004225308, 0.008048206, 0.03399673, -0.00521052, 0.020245401, 8.7116624E-4, 0.0078400625, -0.013758269, 0.025102077, -0.022687616, -0.020078886, -0.00792332, 0.008499183, 0.010691625, -0.015471982, -0.024089113, -5.3683616E-4, 0.018774522, -0.028016083, 0.027294518, -0.003583533, -0.012273514, 0.0044820183, 0.023020644, -0.03410774, -0.0041142986, -0.015249963, -0.0029105365, -0.019163055, -0.013730517, -0.028668264, 0.0065530436, 0.03432976, 0.0059841187, -0.019731982, 0.027599797, 0.027488787, -0.005668435, -3.8441457E-4, 0.0017605451, -0.0056614964, 0.030694192, -0.008041268, 0.025129829, 0.013834588, -0.030111391, 0.04640207, -0.02640644, -0.0051342, -0.024602532, -0.023381425, 0.03691074, 0.040768325, -0.022979015, -0.017039996, -0.020259278, -0.0024040546, 0.0050127837, -0.011378498, 0.01932957, -0.0027075969, 0.023728332, 0.013473807, 0.011767033, 0.013182406, 0.023936475, 0.014264751, 0.01173928, -0.011982113, 0.009643971, -0.018261101, -0.013015891, 6.2789884E-4, -0.0021404065, -0.012127814, 0.012273514, 0.031832043, 0.0121208755, -0.018261101, -0.002671172, -0.0068166917, -0.022854129, 0.016193546, 0.006084721, 0.007527848, 0.008485307, 0.018871656, 0.0098313, -0.010178206, -0.029167809, -0.010323905, -0.010809573, 0.013473807, 0.038742397, 0.039741486, -0.008970974, 0.009088922, 0.010483482, -0.022854129, 0.015125077, -0.013543188, -0.0030302189, 0.014035794, -0.0042981585, 0.0032782564, -0.65051705, -0.015818888, -0.010393287, -0.02084208, 0.008929346, 0.02292351, 0.009810486, 0.010920583, -0.032303832, -0.025795888, -0.024172371, 0.024921685, 0.010171267, -0.010892831, -0.020467421, 0.0010476544, 0.00928319, -0.00689648, 0.016748594, 0.0036598523, -0.027502662, 0.019287942, 0.015513611, 0.007985763, 0.01390397, 0.0061992, -0.004433451, -0.0073613334, -0.001105761, -0.020078886, -0.0012870191, 0.0014821534, 0.00972029, -0.011593579, 0.035495363, -0.0015471982, -0.0061783856, 0.048705522, 0.040324286, 0.036966242, -0.03488481, -0.013189345, 0.022729244, 0.014792047, -0.014972438, 0.017470157, 0.011156479, -0.0015558709, 0.017622795, -0.012988139, 0.0038784028, 0.0025324097, 4.405699E-4, -0.02204931, -0.0058453563, 0.015236086, 0.024449894, -0.041989435, 0.026878232, -0.0048913667, -0.017955825, 0.025879145, -0.008228597, 0.0015532691, -0.012197195, 0.024533153, 0.0012193726, -0.018774522, 0.008478369, -0.012897944, 0.0080273915, 0.009179118, -0.016318431, -0.0017067747, -0.0017431998, 0.0019600156, 0.036605462, 0.013737455, -0.0059806495, 0.01892716, 0.0048323926, 0.0034777268, -0.005900861, 0.021674652, 0.02354794, -0.0024213998, -0.029029047, 0.004287751, 0.026281556, 0.0015177112, 0.018274978, 0.0037569858, 0.012405338, 0.007222571, -0.008707326, 0.004575683, -0.017733805, -0.005449884, 0.024893934, -0.049066305, -8.776707E-4, -0.005422132, 0.00957459, -0.014403514, 0.027613671, 0.007902506, -0.0037396406, 0.0049989074, 0.030333411, -0.019690352, -0.016637584, 0.0039963503, -0.016568203, -0.0067299656, -0.00729889, -0.034940314, 0.037909824, 0.018427616, -0.0045722136, -0.0090750465, 0.014958562, 0.009179118, -0.011191169, -0.014445142, 0.011572765, 0.0219383, -0.008415925, -0.004214901, 0.0029920593, 4.9477385E-4, 0.011891918, -0.005737816, 0.014556152, -0.018163968, -0.01783094, -0.002395382, 0.028182598, -0.0069866753, 0.009068108, -3.2002025E-4, -0.032303832, -0.0062269527, -0.014361884, -0.0025133297, 0.008284101, -0.026281556, -0.02542123, 0.0025133297, -4.908712E-4, -0.017706053, -0.013529312, 0.008686512, -2.250549E-4, 0.008637945, 0.0019496086, -0.00480464, -0.009852114, -0.0061818548, 0.015402601, -0.013813774, -0.009824362, 0.007291952, -0.0039373767, -0.005442946, 0.027613671, -0.0038853409, 0.002483843, 0.01790032, -0.0028966602, -0.021702403, 0.0118225375, -1.2315143E-4, -0.015513611, 0.029806115, -0.014500647, 0.017914196, -0.03291439, 0.0064177504, 0.010920583, 0.005474168, -0.0018767584, 0.010094948, -0.01108016, -0.0030787857, 0.02388097, 0.015624621, 1.7009207E-4, 7.6232466E-4, -0.011073221, 0.018871656, -0.009650909, -0.03136025, -0.010885892, 0.0077429293, -4.0089258E-4, 0.03377471, -0.008631007, -0.0026035253, -0.005342344, 0.007611105, 0.058779657, 0.022410091, 0.0131477155, -0.0022947795, -0.0010259728, -0.03466279, 0.01221801, -0.009227685, 0.016304554, -0.02109185, 0.025074324, -0.019065922, -0.018372111, -0.0073821475, 0.0114478795, 0.014875305, -0.015624621, 0.01665146, -0.018274978, 0.0021438755, 8.5208646E-4, -6.4654497E-4, 0.02376996, 0.008984851, -0.03738253, -8.976178E-4, 0.022687616, -0.006466317, -0.0023780367, -0.012578791, 0.011461755, -0.003136025, -0.0069866753, 0.014958562, -0.009109736, 0.0022791687, 0.029917125, -0.0062234835, 0.04251673, -0.009144427, -0.0078123105, 0.014805924, 0.04534748, 0.0016408627, -0.02461641, 0.0058176043, 0.013168531, 0.019371198, 0.0037569858, 0.035606373, -0.03260911, 0.026059536, -0.008873841, 0.009872928, 0.007090747, -0.008263287, 0.0016625443, 0.010351658, 0.033191912, 0.011156479, 0.0036529142, -0.010594492, 0.01834436, 0.006771594, 0.011246674, 0.0057170014, -0.016554328, 0.0025532239, -0.013799898, -0.025115954, -0.01859413, -0.019176932, 0.0070456495, 0.010004752, -0.01173928, -0.011711528, 0.016429441, 0.006324086, 0.00818003, 0.010018629, -0.010955273, -0.027169634, 0.024061361, 0.013251787, -0.002398851, -0.031748787, -0.017428529, -0.004343256, -0.035079077, -0.008880779, -0.007534786, 0.03316416, -0.013994165, -0.012391462, -0.02270149, 0.0071948185, 0.0027162696, -0.019052045, 0.017262014, 0.028016083, -0.004530585, 0.0022687616, -0.0147365425, -0.008873841, 0.038159598, -0.013557064, 0.024644163, 4.8089767E-4, 0.009713352, 0.0011404516, 0.011170355, 0.018205596, -0.055227343, 0.010025567, -0.018136216, 0.0010337782, -0.011107912, -0.0055435486, 0.026822727, -0.015194458, -0.0067889392, -0.023381425, -0.013050582, 0.006386529, 0.07842838, 0.036660966, 0.011531137, 2.2264283E-5, 0.010476544, -0.0029573687, -0.024144618, -0.016373936, -0.010372472, -0.0013277805, 0.011454817, -0.009637033, 0.01783094, 0.029223314, 1.8722052E-4, -8.206481E-5, 0.0039685983, 0.0060257474, -0.0033910007, -0.021411004, -0.020245401, 0.0019392014, 0.009484394, 0.019620972, 0.0035939403, -0.033191912, 0.015943773, 0.01100384, -0.017622795, 0.019926248, 0.007347457, 0.012842439, 0.0060812524, 8.04387E-4, -0.001368542, 0.00729889, 0.010754068, 0.017817063, 0.028390741, 0.0064316266, 0.007735991, 0.004280813, 0.006577327, -0.004419575, 0.008277164, -0.022521101, -0.014035794, 0.00840205, 0.03444077, -0.020245401, 0.03385797, -0.007104623, -0.028640512, -0.012204133, 0.015943773, -0.005560894, -0.0123637095, 0.0037084192, -0.02941758, 0.0015688798, 0.0056441515, -0.049565848, 0.023395302, -0.013980289, 0.0023173282, -0.012259638, -0.02314553, -0.009144427, -0.016193546, 0.017067747, 0.0017431998, -0.017567292, -1.6022695E-4, 0.0018021737, 0.0056753727, 0.0060812524, 0.018094588, -0.0064281574, 0.021369375, 0.010316967, -0.024963316, -0.030305658, 0.012578791, -0.020217648, -0.01393866, 0.013917846, -7.50183E-4, 0.013210159, 0.0053943796, 0.005866171, 0.0054811058, -0.009734167, -0.026253803, -0.014223123, 0.035051323, -8.7376806E-4, 0.0151667055, 0.006414281, 0.0041247057, 0.0088113975, 0.0014093033, -0.023201035, -0.0060465615, -0.023201035, -0.0032799907, 0.0061645093, -0.0039061552, 0.012093123, -0.010983026, -0.009456642, -0.0336082, -0.020744944, 0.015055696, 0.0066744606, -0.001947874, 0.0032591766, 0.011940485, 0.012613482, 0.01243309, -1.5513177E-4, -0.0018316606, -0.010434915, 0.008152277, 0.01566625, -0.019954, 0.020078886, -0.025684878, -0.03136025, 0.0026069942, 0.03283113, -0.00319153, 0.0045167087, -0.011524199, -0.0024370106, -0.013328107, -0.009026479, 0.014098236, 0.0021768315, -0.0069138254, 0.009789671, -0.019690352, -0.010039443, 0.007902506, -0.007618043, -0.0012731429, -0.030805202, 0.006851382, -0.014861428, 0.014916933, 0.036105916, -0.015485859, 0.0019409359, -0.013820712, -6.0101366E-4, -0.0054151937, -0.030250154, -0.02930657, -0.009449704, 0.03399673, 0.0057065943, 0.0393252, 0.0045271157, 0.025254715, -5.3249986E-4, 0.012335957, 0.022548852, -0.017039996, 0.0066952747, -0.022840254, 0.022479473, 0.021438755, 0.01096915, 0.023201035, 0.011697651, 7.636256E-4, 0.036050413, 0.0058835163, 0.01199599, 0.0068756654, -0.035772886, -0.012842439, -0.0016538716, -0.018399864, -0.007347457, -0.03349719, -0.007944134, 0.030499926, -0.007201757, -0.0086448835, -0.014250875, 0.03854813, -0.0042079627, -0.00214561, -0.028307483, 0.0027457564, -0.029556343, 0.010074134, -0.020828202, -0.004488956, 0.0064836624, 0.0012809483, 0.0036008784, -0.011399313, -0.022243576, 0.002556693, 0.012183319, -0.011149541, -0.015513611, 0.018982666, -0.015985401, -0.0048254547, -0.03202631, -0.028945789, -0.024241751, -0.009248499, 0.004488956, -0.0045479303, 0.0061992, -0.0228125, -0.037937578, 0.016415564, -0.0014110379, 0.037438035, 0.0040032887, 0.04540298, 0.025906898, 0.006119412, -0.027280644, 0.0028983948, -0.019731982, -0.012204133, 0.025587745, 0.027502662, -0.0027162696, -0.014805924, -0.010074134, -0.010580616, -0.035023574, -0.019371198, 0.026878232, 0.019856866, 0.018025206, -0.014250875, 0.0066952747, -0.024352761, 0.02986162, -0.0024717012, -0.00561293, 0.008568564, -0.023839341, -0.019121427, -6.786337E-5, -0.0025098608, 0.025407353, 0.01342524, -0.033191912, 0.014459019, -0.027488787, 0.013848465, -0.025768135, -0.016165793, 0.025990155, -0.029056799, 0.013702764, 0.01636006, 0.033330675, -0.0112050455, 0.0088877175, 0.008200845, 0.030721946, -0.008103711, 0.013307292, -0.0043397867, -0.0012540631, 0.0010597961, 0.0065842653, -0.019357324, 0.0026104634, -0.038520377, -0.0059702424, 0.03019465, -9.548572E-4, 0.0051584835, -0.014542276, -0.023353674, -0.01357094, 0.0048358617, -0.0023728332, 0.023506312, -0.030638687, -0.0013286478, -0.017844815, -0.005626806, 5.689249E-4, -0.0014925606, 0.0173869, 0.019676477, 0.011926609, -0.0020779634, -0.0062234835, -0.013452993, -0.016193546, -0.03421875, -0.005626806, -0.005224396, -0.003892279, -0.0010927521, -0.016235175, 0.008776708, -0.0173869, 0.0076457956, -0.013702764, 0.003573126, -0.0069277016, -0.004020634, 0.036161423, -0.012967325, -0.0014405248, -0.009900681, 0.022687616, 0.007729053, -0.004551399, 0.0044958945, 0.010788759, 0.038270608, -0.02274312, 0.011864166, 0.00440223, -0.012155566, -0.028585007, 0.010074134, 0.014875305, -0.021341622, -0.007101154, -0.02098084, -0.01870514, -0.006570389, 0.029556343, -0.0049885, -0.0065634507, 0.023825465, 0.018150093, 0.04432064, 0.025920773, 0.0010797431, -0.019301819, -0.018788397, -0.024519276, -0.02039804, 0.006501008, 0.017747682, 0.01221801, -0.0023867094, -0.0030909274, -0.021646898, -0.0062893955, -0.0103447195, -0.039241944, -0.014459019, 0.017525662, 0.055310603, 0.019246314, 0.0046797544, 0.007257262, -0.0071184994, 0.005571301, -0.017817063, 2.263558E-4, 0.014188432, 0.007847001, 0.012689801, 0.03738253, -0.043044027, -0.001122239, 0.015097325, 0.010060257, 0.0056580277, 0.024408266, -0.007430714, -0.0146810375, -0.0038437122, -0.012904882, 0.00396166, -0.006827099, 0.0324981, -0.025740383, -0.0046901614, 0.011073221, 0.04013002, 0.0022843722, -0.0046034353, 0.004728321, -0.025074324, -0.0128493775, -0.013113026, -0.035883896, -0.0056406823, -0.029500838, 0.026434194, -0.005165422, -0.011857227, 0.029251065, 0.014792047, -0.012016804, 0.013459931, -0.002744022, -0.009338695, -0.006448972, 0.0041177673, 0.014223123, 0.027447158, -0.03840937, 0.015055696, -0.00883915, 0.0070629944, -0.021355499, 0.014334132, -0.0148198, 0.032775626, 0.012107, -0.07221183, -0.016720843, 0.0025324097, -0.014528399, -6.7429745E-4, -0.011878042, -0.02325654, -0.011524199, -0.009949247, 0.016956737, -0.0066709914, -0.01250941, -0.006903418, -0.015416477, -0.006084721, 0.021480383, 0.17406327, -0.0033944696, 0.021147355, 0.040046763, 0.008339606, 0.022396214, 0.018385988, 0.014320256, -0.019745857, 0.009366446, -4.0349437E-4, 0.012523286, -6.452441E-4, -0.0040553245, 0.016998366, -0.01331423, -0.014431266, -0.012113937, -0.013557064, -0.049649104, -0.01870514, -0.0018247225, -0.006532229, -0.011697651, 0.008714264, -0.006379591, 1.8440191E-4, -8.529537E-4, 0.016221298, -0.009234622, -0.026461946, -0.014861428, -0.008832213, 0.01698449, -0.025324097, -0.012391462, 0.0012714084, 0.00708034, 0.015249963, -0.004266937, 0.005692718, -0.025490612, -0.012891006, -0.01694286, 0.001566278, 0.007853939, -0.014431266, -0.021896672, -0.021799536, 0.0026798444, -0.050703697, -0.008617131, 0.012571853, 0.0047664805, -0.006893011, -0.0104002245, 0.0077221147, 0.017553415, -0.005939021, 0.0033511065, 0.018150093, 0.021397127, -0.024658037, 0.0031464323, -0.004926057, 0.021882795, -0.038048588, -0.032636862, 0.007874753, -0.032109566, 0.011038531, -0.013085273, -0.015888268, 0.007791496, -0.008186968, -0.010483482, 0.014174555, 9.869459E-4, -0.0041004224, 0.02365895, -0.022077061, -0.022354586, 0.021050222, -0.008311854, -0.026253803, -0.02376996, 0.028862532, -0.020481296, -0.01669309, 0.004665878, -0.01342524, -0.011857227, -0.021522013, -0.0047595426, -0.008873841, 0.014528399, 0.021397127, 0.017775435, -0.004717914, -0.0016842259, -0.026781099, 0.043404806, 0.023423055, -0.0054602916, -0.04168416, -0.008762831, 0.0072295093, 0.026017908, 0.027669176, -0.017803187, 0.0031377596, -0.021175107, -0.0068028155, -0.011829475, -0.008631007, 0.010136576, 0.009949247, -0.012446967, 0.02941758, -0.018261101, -0.0092415605, -0.023464683, 0.019912371, -0.0037292333, -5.7412847E-4, -0.028529502, -0.013230973, 0.0061124736, -0.0025081262, -0.038853407, 0.01698449, -0.028238103, 0.014146804, -0.0033996732, -0.004409168, 0.019565467, 0.021674652, 0.0043952917, 0.007985763, 0.0057829134, 0.008131463, -0.017303644, 0.016665338, 0.006771594, 0.017137129, -0.015485859, 0.0016989694, -0.007236447, 5.437743E-4, -0.03591165, -6.821028E-4, -0.017928073, 0.0062442976, 0.009706414, 0.039908, -0.0018212536, -0.03341393, -0.038936667, -0.011177293, 0.024297256, -0.022715367, 0.019496085, 0.008908532, 0.0038784028, -0.028335236, -0.011184231, -0.17972477, 0.027655302, -0.0012150363, -0.021299994, 0.027044747, 0.0098313, 0.014320256, 0.010316967, 0.006185324, -0.0044612037, 0.027391654, -0.010761007, -0.041212365, 0.003645976, 0.012696738, 0.021258365, -0.0090750465, 0.034190997, 0.023298169, -0.0062373597, 0.030694192, -3.959058E-4, -0.021161232, 0.0058071967, 0.015360973, 0.00638306, 0.011857227, 0.0015480655, 0.011218921, -0.0024370106, -0.027558167, 0.01863576, 0.017886443, 0.009650909, -0.01353625, 0.013779083, -0.013071396, -0.010476544, 0.0024092582, 0.0019565467, 0.029473085, 0.017400777, 0.034190997, 0.008977912, 0.01812234, 0.016679212, 0.019163055, -0.016845727, 0.009734167, -0.013390549, -0.0073752096, -0.039463963, 0.018968789, -0.0024543558, 0.0057100635, 0.047595426, -0.0067577176, -0.006192262, 0.005921676, -0.017747682, -0.020106638, -8.815734E-4, 0.014021917, -0.0031048036, 2.4370107E-4, -0.013459931, -0.0013815509, 0.011475632, -0.035994906, 0.027266767, -0.029167809, 0.0049885, 0.004662409, 0.0101018865, 0.004214901, -0.012058433, -0.036522202, 0.010989964, -0.019163055, 0.014805924, -0.036189176, 0.030139145, -0.003507214, 0.008617131, 0.020300906, -0.010455729, 0.002102247, -0.007201757, 0.0058418876, -0.014174555, 0.01214169, -0.01870514, -0.0151667055, -0.0011109647, 0.01944058, 0.015860517, 0.002076229, 0.010414101, -0.0060535, -0.01606866, -0.007735991, -0.020189896, -0.0059112688, 0.036605462, 0.021466509, 0.020564554, -0.010074134, 0.01640169, 0.019801361, 0.0074931574, -0.011461755, 0.00638306, 0.025254715, 0.009761919, -0.021050222, 0.01932957, -0.01459778, -0.015180581, 0.0118225375, 0.010497359, 0.03943621, -0.0127938725, -0.0021039813, 8.157698E-5, -0.0045375233, -0.009768857, -0.09752206, 0.010025567, 0.0130367065, 0.026711717, -0.020481296, 0.0296396, -0.015249963, 0.010434915, -0.0137097025, 0.025976278, 0.0070976852, -0.011662961, 0.009095861, -0.005047474, 0.014958562, -0.0038610573, -0.018358236, -0.014847552, -0.012426153, 0.025657125, -0.014132927, -0.008492245, 0.0011378498, -0.007895567, -0.027821815, 0.0045652753, -0.041711908, 0.027683053, 0.014431266, 0.013480745, 0.001322577, -0.02017602, -0.004721383, -0.028390741, -0.046540834, -0.013917846, -0.015444229, -0.019163055, 0.00928319, -0.05972324, 0.018399864, 0.010615306, -0.0013217097, -0.017692177, -0.002638216, 0.0041073603, -0.02626768, 0.016790222, -0.012668986, -0.038159598, -0.023450807, -0.010330844, -0.025698755, -0.00829104, 0.016373936, 0.018302731, 0.026350936, 0.0063414313, -0.006254705, -0.003645976, 0.009394199, -0.01151726, -0.02388097, 0.010837326, 0.0054533533, 0.012030681, 0.0011525933, -0.0031776538, 0.016915109, 0.0021594863, -0.026683966, 0.01881615, -0.042710997, 0.002431807, -0.025393477, 0.0052486793, -0.01790032, -0.0071323756, 0.01353625, -0.025337972, -0.011489508, -0.022090938, -0.005505389, -0.017914196, 0.015499734, 0.029389828, 0.013078335, 0.014223123, -0.0018958382, -0.03338618, -0.011413189, 0.025351848, -0.0052139885, -5.1125186E-4, -0.0075556003, 0.034190997, 0.020897584, 0.012100061, 0.0026867825, -0.0050231908, -0.013002016, 0.0051411386, -0.07709626, 0.023922598, -0.011094036, -0.009512147, -9.869459E-4, -0.013008954, 0.0017119783, 0.0012332489, 0.0055296724, 0.020897584, -0.001368542, 0.01140625, -6.422087E-4, 0.0037257643, -0.008089835, 0.0050093145, -0.003715357, -0.006348369, -7.059525E-4, -3.573126E-4, -0.022521101, -2.0933575E-4, 0.008672636, 0.006469786, -0.012648172, 0.01856638, 0.02073107, -0.0016139775, -0.01921856, 5.0691556E-4, 0.03388572, -0.02571263, 0.007389086, 0.0130367065, -0.025893021, -0.019926248, -0.017747682, 0.014042731, 0.013973351, 0.0037292333, -0.0037431095, -0.017220385, 6.1879255E-4, -0.018108463, -5.92341E-4, 0.014403514, -0.01629068, 0.0102892155, 0.003645976, 0.0059945257, 0.02626768, 0.02457478, -0.012856315, -0.0016157121, 0.006400405, -0.034857057, 0.050453927, 6.790674E-4, 1.9426704E-4, -0.0133350445, 0.021563642, -0.0038055526, 0.016928986, -0.026919862, -0.01096915, -0.0019981752, 0.009491333, -0.008721203, 0.001612243, -0.024560904, -0.0019617502, -0.007978825, 0.00120116, 0.029917125, 0.013168531, 0.006174917, -0.014833677, 0.011135665, 0.0041732723, 0.014119051, 0.031165984, -0.021577518, -0.03521784, -0.004162865, 0.011621332, 0.031721033, 0.0059043304, 0.0080828965, -0.004839331, 0.0062859263, -0.0034308948, 0.0031186799, 0.020925336, -0.003628631, 1.2369346E-4, -8.598918E-4, -0.028890284, -0.008131463, -0.0012557977, 0.033136405, -0.005418663, 0.00198083, -0.013161592, -0.021244489, -0.024380514, 0.011954362, -0.009977, -0.042822007, 0.023797713, 0.017581167, 0.01694286, 0.02127224, -0.013501559, 0.0094288895, -0.0376323, 0.009810486, -0.0026017907, -0.007902506, -0.0073821475, 0.042266957, 0.01250941, 0.023645075, 0.006521822, -0.012717553, 0.040379792, 0.0022947795, 0.033580445, -0.019856866, -0.0038055526, 0.0065461053, -0.014875305, 0.001954812, -0.014500647, 0.00447508, -0.0060396236, 0.00931788, 0.003711888, 0.025851393, -0.0129812015, 0.061665908, 0.014694914, -0.017928073, 0.021591393, -0.025782011, 0.0011751421, 0.0135223735, 0.0031533705, -0.015055696, -0.019912371, 3.969899E-4, 0.0014387902, 0.006778532, -0.029029047, -0.011669898, -0.005286839, -0.004214901, 0.007430714, -0.016776346, -0.019204685, -0.0047526043, -0.0071740043, 0.010018629, -0.007805372, -0.012384524, -0.009838238, 0.03235934, -0.010303091, -0.011878042, -0.03954722, 0.002112654, -0.022299081, 0.0075139715, 0.0015350565, 0.030860707, -0.015097325, -0.010726316, -0.010212895, 0.022479473, 0.0022618235, -0.026115041, 0.010303091, -0.023853218, -0.011843352, -0.0051480765, 0.013043644, -0.0064108125, -0.02200768, -0.026781099 ], + "id" : "819fc33f-254d-4f79-82bf-e9627eb7a55b", + "metadata" : { + "source" : "movies.csv" + } + }, + "19d42710-8734-4715-865c-66f6998d12f0" : { + "text" : "8,12298,Dwayne Johnson-Kevin Hart-Jack Black-Karen Gillan-Rhys Darby-Bobby Cannavale-Nick Jonas-Alex Wolff-Ser'Darius Blain-Madison Iseman-Morgan Turner-Sean Buxton-Mason Guccione-Marin Hinkle-Tracey Bonner-Najah Jackson-Natasha Charles Parker-Kat Altman-Maribeth Monroe-Missi Pyle-Michael Shacket-Jamie Renell-Marc Evan Jackson-Carlease Burke-Colin Hanks-Jason New-Rohan Chand-William Tokarsky-Tait Fletcher-Stephen Dunlevy-Rob Mars-Virginia Newcomb-Sylvia Jefferies-Daniel Salyers-Tim Matheson-Tad Sallee-Ryan Baughman-Maddie Nichols-Ashley Lonardo-Friday Chamberlain-Ted Williams-Juan Gaspard-Scott Hunter-Maiya Boyd-Natasha Mayet-Danny Pardo,video game-fighter-sequel-avatar-detention-explorer-based on movie-gaming-quest-cartographer-action hero-zoologist-based on young adult novel-game characters,/pSgXKPU5h6U89ipF7HBYajvYt7j.jpg,/zJDMuXQDraHjtF53wikmyBQIcYe.jpg,512200-8844-141052-181808-427641-339846-336843-343668-284053-284054-16322-316029-338970-392044-166426-354912-53264-35827-283995-293167\r\n285,Pirates of the Caribbean: At World's End,Adventure-Fantasy-Action,en,Captain Barbossa long believed to be dead has come back to life and is headed to the edge of the Earth with Will Turner and Elizabeth Swann. But nothing is quite as it seems.,108.656,Jerry Bruckheimer Films-Second Mate Productions-Walt Disney Pictures,5/19/07,300000000,961000000,169,Released,\"At the end of the world, the adventure begins.\",7.241,13413,Johnny Depp-Orlando Bloom-Keira Knightley-Geoffrey Rush-Stellan Skarsg��rd-Chow Yun-fat-Bill Nighy-Jack Davenport-Kevin McNally-Tom Hollander-Naomie Harris-Jonathan Pryce-Keith Richards-Lee Arenberg-Mackenzie Crook-Greg Ellis-David Bailie-Martin Klebba-David Schofield-Lauren Maher-Vanessa Branch-Angus Barnett-Giles New-Reggie Lee-Dominic Scott Kay-Takayo Fischer-David Meunier-Ho-Kwan Tse-Andy Beckwith-Peter Donald Badalamenti II-Christopher S. Capp-Hakeem Kae-Kazim-Ghassan Massoud-Omid Djalili-Michelle Lee-Huynh Quang-Ned Wertimer-Arnold Chon,exotic island-east india company-love of one's life-traitor-shipwreck-strong woman-singapore-afterlife-sword fight-pirate-monkey-swashbuckler-flying dutchman-rum-sailing ship-aftercreditsstinger-british navy-mass hanging,/jGWpG4YhpQwVmjyHEGkxEkeRf0S.jpg,/kPcHuPYqzkSo4bmPHtH82GaeEgX.jpg,58-1865-22-166426-675-12444-425-767-674-12445-672-673-559-557-118-607-12155-558-10138-10528-121", + "embedding" : [ 0.007807459, -0.030394526, -0.021030964, -0.042088874, -0.029559216, 0.032253765, -0.012031167, -0.0050522815, -0.010993765, -0.030798709, 0.024331788, 0.030125072, 0.021650711, 0.0015636812, 0.018053487, 0.016436756, 0.020734563, -0.0140116615, 0.017635832, -0.03702312, 0.0034170265, -0.0041192938, -0.01640981, 0.018983107, 0.011061128, 0.016369393, 0.026729938, 0.0029269552, 0.0031879898, -0.006999094, 0.011013974, -0.006938467, -0.010663683, -0.023765933, -0.013007941, 1.0667682E-4, -0.004307912, -0.031714857, 0.019616326, 0.0057899146, -0.0040317206, -0.0053183683, -0.011458575, -0.010845564, -0.016140357, 0.010104563, 0.0031155737, -0.017002612, -0.0019670217, 0.026824247, 0.025396137, 0.0262045, -0.022405185, -0.017770559, -0.0073830676, -0.008225114, -0.023968024, 0.004392117, 0.007915242, 0.0038532068, 0.022957567, -0.019966617, -0.034355514, -0.020182181, -0.018834906, -0.015830483, -0.020155236, -0.02237824, 0.0026086613, 0.013041623, 0.023563841, 0.0066252253, 0.023698568, 0.007692941, 0.019912725, -0.03958294, -0.03211904, -0.0037016384, -0.016140357, 0.018040014, 0.011990748, 0.0011258167, -0.0011081338, -0.0014154809, 0.008804442, 0.0057865465, -0.00308526, 0.017541522, -0.029936453, 0.022351295, 0.011276693, 0.03912487, -0.0060896836, -0.0028376982, -0.0062951427, 0.01860587, -0.015358936, 0.022122256, -0.02752483, -0.05019947, 7.3300186E-4, -0.008002814, 0.00512975, -0.012462295, 0.0102595, 0.0066824844, -0.0037959476, -0.0052644773, 0.017366376, 0.015776591, 0.0061940975, -0.009936154, 0.017460685, -0.026352702, -0.016706211, -0.024277898, 0.013944297, -0.011916649, -0.0071270852, -0.028616123, 0.030125072, 0.021879748, 0.008508042, -0.031418454, 0.0359453, 0.043570876, -0.008959379, -0.015736174, 0.019414235, -7.822616E-4, 0.0302598, -0.02183933, 0.0135737965, 0.0022213198, -0.028966416, 0.037481192, -0.024075806, -0.0062008337, -0.019548962, -0.028265832, 0.032684892, 0.033924386, -0.014523625, -0.015803536, -0.026878139, 0.0025834, 0.012778904, -0.00362417, 0.014617935, -0.0023998339, 0.02233782, 0.031445403, 0.009127789, 0.018093904, 0.011162174, 0.0063220887, -0.0038228931, -0.004176553, 0.012751959, -0.015049063, -0.0013135932, -0.009808163, -0.008043232, -0.012711541, 0.006062738, 0.02144862, 0.024304843, -0.02757872, -0.0064163976, -7.8815594E-4, -0.015803536, 0.022553386, -0.027969431, 0.02659521, -0.004344962, 0.020303436, -0.0013674842, -0.004058666, -0.041657746, -0.009841844, 0.010885983, 0.0047760904, 0.026824247, 0.036106974, -0.004055298, -0.0019973353, 0.03246933, -0.029370597, 0.018242106, -0.01341886, 0.009127789, 0.022027949, -0.0077737775, 0.006675748, -0.6341893, -0.007618841, 0.010400964, -0.010535691, 0.019360343, 0.015251154, 0.014321534, -9.3046186E-4, -0.014752663, -0.005921274, -0.01650412, 0.019670216, 0.022742003, -0.0044190623, -0.025059316, -0.008279005, 0.01988578, -0.014510153, 0.01209853, 1.4777924E-4, -0.028131105, 0.017379848, 0.025625173, -8.934118E-4, -0.0017169337, -9.7509037E-4, -0.005328473, -0.022351295, 0.0039205705, -0.010104563, -0.01704303, 0.0064669205, 0.008669715, -0.0024267794, 0.031418454, -0.0060357926, -0.021192638, 0.04737019, 0.028777797, 0.03828956, -0.032334603, 0.0018626078, 9.1025274E-4, -0.0039845663, -0.02752483, 0.018013068, 0.008386788, 0.018336413, -0.006992358, -0.012125476, 0.0031088374, -0.014698772, 0.001453373, -0.012859741, -0.022849785, -0.005584455, 0.012725013, -0.028508341, 0.031229837, 0.006608384, -0.02330786, 0.025530864, -2.6356068E-4, 0.022512967, -0.014456262, 0.020438163, 0.003590488, -0.006887944, 0.007585159, -0.04456786, 0.0089189615, -0.002064699, -0.024264425, -0.0037184793, 0.010515482, 9.936154E-4, 0.025207518, -0.0055002505, -0.018376833, 0.020263018, 0.005826965, -0.0013076989, 0.004984918, 0.010057408, 0.028400559, -0.005308264, -0.031822637, 0.010562637, 0.016140357, -0.007120349, 0.015466718, 0.0040485617, 0.014968227, 0.008137542, -0.004984918, -0.005601296, -0.013095514, -2.3935184E-4, 0.029370597, -0.06122018, -0.023011459, -0.013068569, 0.028562233, -0.0133851785, 0.022230038, 0.008184697, -0.019090889, -0.015749646, 0.030690927, -0.01332455, -0.0070597217, 0.003155992, 1.04150684E-4, -0.0028376982, -0.0046009445, -0.03761592, 0.011573093, 0.005823597, -0.00617052, -0.007942187, -0.003139151, 0.016167302, -5.2754243E-4, -0.017474158, -0.0029286393, 0.03319686, -0.006800371, -0.005254373, 0.0056282417, 2.24195E-4, 0.008406997, 0.002207847, 0.013378441, -0.009525235, 0.01332455, 0.006045897, 0.01488739, 0.004008143, 0.018255578, -0.0059145377, -0.01163372, -0.018336413, -0.022499494, -0.00986879, -0.005294791, -0.0108792465, -0.035918355, 0.0039374116, -0.014132916, -0.013452542, 0.0012773852, 0.022122256, 0.008871807, 7.431064E-4, 0.0058505423, -0.0023425745, -0.026325755, -0.017810976, 0.008541724, -0.021313893, 0.018309468, 0.012253467, -0.013681578, -0.031149, 0.023429114, 0.0075918953, -0.011290166, 0.008023024, 0.0064163976, -0.0076862043, 0.0042034984, -0.0016866201, 0.009114316, 0.008447415, -0.012179367, 0.033035185, -0.011290166, 0.020114817, 0.0064163976, -0.005591192, 6.597438E-4, -0.010562637, -0.031175947, -0.005082595, 0.025342245, 0.012886686, 0.0116404565, -0.008959379, -0.0135199055, 0.0022819473, -0.028400559, -0.017568467, -4.753355E-4, -0.0050522815, 0.0017800872, 0.022095311, -0.004786195, -0.004466217, 0.0022684745, -0.004176553, 0.037642866, 0.020923182, 0.0033782923, -0.01256334, 0.010717574, -0.023159659, 0.002202795, -0.025113208, 0.019387288, -0.008986325, 0.024089279, -0.016908303, -0.006554493, 2.921903E-4, 0.0041395025, 0.023698568, -0.009262516, -0.010818619, -0.011121756, 0.00871687, 0.011020711, -0.013048359, 0.02306535, 0.02306535, -0.029020306, 0.010461591, 0.007517795, -0.011034183, -0.008353106, -0.0053217364, -0.0074841133, 3.8607852E-4, 0.011438366, 0.0021017492, -0.0071136127, -0.0089189615, 0.017837923, -6.205886E-4, 0.04276251, -0.016908303, -0.015251154, 0.015143372, 0.014577516, 0.013876934, 0.0020545945, -0.012401667, 0.012516186, 0.0122130485, -0.0032334602, 0.042816404, -0.0037690022, 0.027969431, -0.009174944, 0.0015619971, 7.7257806E-4, -0.010421173, 0.0023257337, 0.016126882, 0.033466313, 0.025207518, 0.009370298, -0.009693644, 0.024224006, 0.003998039, 0.01640981, -0.008279005, -0.0100372, 0.0041361344, -0.0063591385, -0.015156845, -0.0015754699, -0.01845767, 0.008406997, 0.022634221, -0.0046177856, -0.01273175, 9.067793E-5, 0.0061334698, 0.003947516, 0.020640254, 0.009801426, -0.029693943, 0.013769152, 0.032199875, -0.013742206, -0.03982545, -0.008279005, -0.005325105, -0.039933234, 0.001200759, -0.010549164, 0.04685823, -0.005187009, 5.574351E-4, -0.00609642, -0.0070934035, 0.017568467, -0.02233782, 0.015655337, 0.0140116615, -0.004392117, 0.007302231, -0.0071270852, -0.013721997, 0.022364767, -0.015884373, -0.008770761, 0.0039003615, 0.0053554187, -0.0048670312, 0.0058033876, -0.0013514854, -0.031634018, 0.012677859, -0.006547757, -0.008225114, -0.015561027, 0.003752161, 0.0021387993, -0.008090387, -0.022715058, -0.025342245, -0.0206672, -0.012401667, 0.08202211, 0.033493258, 0.010030463, 1.4588464E-4, -0.019562434, 0.0072618127, -0.0066454345, 0.003194726, -0.013082041, -0.014604462, 0.028777797, -0.014308061, 0.024991954, 0.013708524, 0.0135199055, -0.022499494, -0.01620772, -0.01704303, -0.008750551, -0.0024065701, -0.021394728, -0.02218962, 0.008231851, 0.050900053, 0.008218378, -0.012974259, 0.022863258, 0.007962395, -0.007517795, 0.013183087, -0.0034170265, 0.0072685494, 4.1702375E-4, 0.010555901, 0.007659259, -0.0057798102, 0.024304843, 0.018632814, 0.023496477, 0.004462849, -0.0065814387, 0.010138245, 0.0067161666, -0.014766135, 0.016881358, -0.027430521, -0.0013641161, 0.020101344, 0.042385276, -0.037238684, 0.027336212, 0.012085058, -0.01802654, -0.01488739, 0.023563841, -0.004068771, -0.008164487, -8.3573157E-4, -0.006729639, 0.013863461, 8.3488954E-4, -0.036565047, 0.022876732, -0.012112003, -0.0059616924, -0.023685096, -0.035083044, 0.0011165543, -0.018700179, 0.006938467, 0.0038835204, -0.022782423, 0.0059280107, -0.012125476, 0.004466217, 0.0048299814, 0.0266491, -0.0153993545, 0.017123867, 0.0058033876, -0.02633923, -0.02786165, -0.00598527, -0.022863258, -0.005059018, 0.008332897, -0.010791673, 0.018403778, 0.0040283524, -7.119507E-4, 0.013088778, 0.0019417602, -0.015722701, 3.2187245E-4, 0.046022918, 0.008797706, 0.01845767, 0.017784031, 0.012495977, 0.004466217, -0.0029909508, -0.021785438, 0.0067026936, -0.027188012, -0.012906896, -0.01979147, -0.0057494966, 0.010899455, -0.016787048, -0.025207518, -0.030502308, -0.012004221, -8.24785E-4, -0.002512668, 0.0075582135, 0.0047659855, 0.021947112, 0.019777998, -0.012671122, 0.021704601, 0.0036544837, -0.00739654, 0.004914186, 0.02042469, -0.0108792465, 0.020303436, -0.012159158, -0.02674341, -0.018040014, 0.033169914, 0.004075507, -0.007531268, -0.016180774, -8.073125E-5, -0.014752663, -0.020761508, 0.017123867, -0.006157047, 0.0023897293, 0.012974259, -0.023536896, 0.001183076, 0.002529509, -0.0053352094, -0.014712244, -0.027295794, 0.0077670407, -0.017986123, 0.0058572786, 0.016733157, -0.009377034, 0.0075380043, -0.019575907, -0.0140924975, -0.01758194, -0.031903476, -0.028265832, -8.466782E-4, 0.03109511, 0.014927808, 0.0308526, 0.0027770707, 0.028373614, 0.007160767, 0.011862758, 0.007921978, -0.030152017, -0.015022118, -0.035675846, -0.011451839, 0.005877488, 0.021515984, -0.004183289, 0.011525938, 0.0034372357, 0.010158454, 0.012226522, 0.00832616, -0.012570077, -0.023415642, -0.027147593, 0.008265533, -0.029505325, 0.0014399003, -0.025813792, -0.009410717, 0.04863663, -0.008764025, -0.004984918, -0.005823597, 0.022001002, 6.8963645E-4, 0.017541522, -0.02159682, 0.020222599, -0.015911318, 6.690063E-4, -0.020114817, -0.018525032, -0.0015855744, -0.018228631, 0.021664184, -0.002025965, -0.019117834, -0.009983309, 0.033924386, -0.03608003, -0.009531971, 0.029316707, -0.017352903, -0.0077805137, -0.031526238, -0.0072685494, -0.029963398, -0.015884373, 0.0027130751, -0.006443343, 0.009114316, -0.011707821, -0.04343615, 0.02977478, 0.0046177856, 0.050145578, 0.015709227, 0.04844801, 0.02340217, 0.017069975, -0.008265533, 0.0055103553, -0.013156141, 2.4187798E-4, 0.029020306, 0.024426097, -0.026420064, -0.0053958367, 0.011377738, -0.012765432, -0.043301422, -0.031768747, 0.030798709, 0.015857428, 0.018592397, -0.017837923, 0.007969133, -0.033708822, 0.010636737, -0.015062536, -5.582771E-4, 0.007928714, -0.03128373, -0.03422079, 0.002852855, -0.004920922, 0.015911318, 0.026635628, -0.033574097, 0.01605952, -0.017272066, 0.003031369, -0.015628392, -0.01713734, 0.022149203, -0.024183588, 0.0060863155, 0.01802654, 0.008541724, 0.013998188, 6.1974657E-4, 0.010852301, 0.028481396, -0.019616326, 0.02100402, 0.0065578613, 0.009686908, 0.0026069772, 0.026487429, -0.02276895, -0.018093904, -0.020613309, 0.0021320628, 0.034355514, 0.009909208, -0.0011552884, 0.007450431, -0.015722701, -0.01752805, 0.010744519, -0.0046582036, 0.009147998, -0.035918355, 0.017258594, -0.016072992, 0.001453373, -0.008804442, -4.504951E-4, 0.0054025734, -0.011808867, 0.0023425745, -7.2163425E-4, 0.0016436756, -0.025719482, -0.01899658, -0.047477975, -0.027888594, -0.009437663, -0.0065208115, 0.014725717, -0.02159682, 0.007457168, -0.0061233654, -0.013755679, -0.0023998339, 8.5846684E-4, 0.0023189972, -8.5467764E-5, 0.0017160916, -0.014038607, -0.006854262, -5.0817535E-4, 0.039097924, -0.008353106, -0.0035972246, 0.004974813, 0.010616528, 0.03211904, -0.035837516, 0.011034183, -0.0023257337, -0.017959177, -0.013371705, 0.012900159, 0.032577112, 0.022903677, -0.0031879898, -0.026756883, -0.015641864, -0.015897846, 0.032442383, -6.159573E-4, -4.147081E-4, 0.04505288, 0.019104362, 0.040876325, 0.021610294, 0.0057528648, -0.02615061, -0.005634978, -0.007349386, -0.02247255, 0.0069519393, 0.02105791, 0.016288556, -0.0011536044, -0.01503559, -0.024762917, -0.009201889, -0.009114316, -0.039259598, 0.002655816, 0.027834704, 0.039555997, 0.009296198, 0.003354715, 0.0017346167, 0.0038127885, 0.0020832242, -0.02399497, -0.025476972, 0.013917352, 0.01050201, 0.025652118, 0.016935248, -0.021556402, 3.391344E-4, 0.018255578, 0.025840737, 0.0037386883, 0.029801724, 0.009700381, -0.02252644, -0.014820026, 0.003391765, 0.005769706, 0.0051533272, 0.02458777, -0.039313488, -0.017231649, 0.0066925893, 0.018848378, -0.0014516889, 0.018673234, 0.016302029, -0.015049063, -0.01209853, -2.764019E-4, -0.026756883, 0.007571686, -0.032900456, 0.016490648, 0.002568243, -0.003819525, 0.030690927, 0.027565248, -0.004176553, 0.008797706, -0.01958938, 0.0052274275, -0.008622561, -0.003856575, 0.007066458, 0.025786845, -0.025719482, 0.004307912, -0.029020306, -0.0033462946, -0.003479338, 0.0032721944, -0.0014912651, 0.031526238, 0.004789563, -0.05841785, -0.0016824098, -0.012718277, 0.0033732401, -0.0070058308, -0.008083651, -0.03524472, -0.006167152, -0.0033867129, 0.008198169, -0.017770559, -0.025436554, 0.006817212, -0.0035669107, -0.004412326, 0.01743374, 0.18527727, -0.011182384, 0.0067599528, 0.03672672, -0.0034928108, 0.01378936, 0.0065814387, 0.021583347, 0.0038599432, 0.008359842, 0.0024520408, 0.009740799, 0.006706062, -0.0033126127, 0.010434645, -0.0121322125, -0.027120648, -0.028804742, -0.014995172, -0.03193042, -0.011249747, 7.53211E-4, -0.0154801905, -0.021084856, 0.008676452, -0.001255492, -0.009060425, 0.008710134, 0.009565653, 1.3893775E-5, -0.0057831784, -0.026851192, 0.0030431577, 0.00802976, -0.019562434, -0.009862054, 0.0018238737, 0.0030431577, 0.007120349, 0.0023307859, 0.0020040716, -0.0076727318, -0.0022112152, -0.011674139, 0.0102595, 0.021327365, -0.022418657, -3.0776815E-4, -0.009464608, 0.009100843, -0.040903274, 0.0011232906, 0.019724108, 0.02130042, -0.008669715, -0.00598527, 4.7954574E-4, -0.0050152317, -0.009127789, 0.012273676, 0.018686706, 0.042870294, -0.029640052, 0.0035433336, -0.0010491905, 0.017986123, -0.028616123, -0.009747535, 0.017299013, -0.04284335, -7.519479E-4, -0.03828956, -0.010084354, 0.0054396233, -0.006426502, -0.023927607, 0.0030936804, -0.004843454, 0.013957771, 0.015843956, -0.019697161, -0.02033038, 0.010778201, -0.013782624, -0.01479308, -0.021947112, 0.01743374, -0.01378936, 9.5909147E-4, -0.013459278, -0.021556402, -0.024533879, -0.015803536, -0.0041192938, -0.0023189972, 0.008076915, 0.024911117, 4.0439304E-4, -0.014456262, -0.018740596, -0.026164083, 0.021623766, 0.014456262, -0.02668952, -0.032092094, -0.02728232, -0.012078322, 0.013762415, 0.03756203, -0.02120611, -0.009895735, -0.017554995, 0.0023577313, -0.018080432, 7.308967E-4, 0.017864868, 0.007180976, 0.0052240593, 0.021502512, -0.014281116, 0.0059583243, -0.035083044, 0.016908303, -0.0038498386, -0.008272269, -0.03325075, -0.031364564, 0.014079025, 0.0048198765, -0.038612906, 0.011101547, -0.020357328, 0.007086667, -0.011162174, 0.006887944, 0.01503559, 0.029370597, -0.0061233654, -8.934118E-4, -0.005096068, 0.012408404, 0.0034406038, 0.01459099, 0.01949507, 0.009390508, -0.030340636, 0.015197263, -0.015183791, -0.006136838, -0.027942486, -0.029666997, -0.004749145, 8.883595E-4, 0.01133732, 0.054780208, 0.011687611, -0.021192638, -0.0362417, -0.015655337, 0.038020104, -0.03311602, 0.011701085, 0.026029356, -0.0046211537, -0.028292777, -0.0020394376, -0.17169674, 0.016800521, 3.656589E-4, -0.009215361, 0.028912524, 0.008898752, 0.034517188, 0.016302029, 0.021974057, -0.021462092, 0.021233056, 0.014900862, -0.033601042, -0.0031829374, 0.0014424265, 0.010104563, 1.6746209E-4, 0.029262815, 0.017797504, -0.0030818917, 0.048501905, 0.014523625, -0.010757992, 3.8081573E-4, 0.0074234856, 0.0020512263, 0.018794488, 0.018040014, 0.010926401, -0.006217675, -0.028023323, -0.014900862, 0.014308061, 0.0019316557, -0.021435147, -3.8144726E-4, 0.0014028501, -0.015291573, -0.008359842, -0.013108986, 0.032631002, 0.015372409, 0.017595412, 0.01650412, 0.019777998, 0.008366578, 0.01806696, -0.020842345, 0.014267643, -0.018713651, -0.014900862, -0.03287351, 0.027646085, -0.007106876, 0.008380051, 0.0254635, 0.0030094758, -0.005146591, 0.009201889, -0.0012874898, -0.03217293, -0.0060560014, -0.013930825, -0.015412827, 0.0063928203, -0.021812383, -0.01782445, 0.016463703, -0.03492137, 0.007955659, -0.023442587, 0.0153454635, 0.009511762, 0.016611902, 0.00847436, -0.018538505, -0.036403373, -0.0019249193, -0.0071540307, 0.010326863, -0.015830483, 0.033762716, -0.0060560014, 0.005271214, 0.008339633, -0.021583347, -0.0040418254, -0.0066454345, 0.010454855, -0.004792931, 0.011074602, -0.022418657, -0.041846365, 0.0067936345, 0.0013178035, 0.004968077, -0.0155745, 0.015224209, 0.011209329, -0.0102527635, -0.0030280007, -0.010569373, -0.015884373, 0.016692739, 0.028265832, 7.641576E-4, 0.034059115, 0.017757086, 0.025975464, 0.003265458, -0.007342649, -0.00893917, 0.013021414, 0.025948519, -0.009828372, 0.01605952, -0.016760102, -0.023792878, 0.0039306753, 0.01752805, 0.0467235, -0.002992635, -0.0066858525, -0.0066488027, 0.012516186, -0.008912225, -0.08983631, -0.004523476, 0.014806554, 0.043948114, -0.0320382, 0.033762716, -0.0033968173, 0.01880796, -0.005597928, 0.04367866, 0.0022684745, -0.029505325, 0.0100372, 0.006490498, 0.028616123, -0.0102595, -0.015897846, -0.018929215, -0.006402925, 0.034436353, -0.0060122153, -0.0039037296, -0.007234867, -0.012853004, -0.016234664, 0.025894627, -0.02468208, 0.027996376, 0.01655801, 0.010016991, 0.0027316003, -0.017204704, 0.0037791068, -0.03524472, -0.026366174, -0.023105768, -0.022310875, -0.014752663, 0.009808163, -0.043948114, 0.024695553, 0.01615383, 0.0045504216, -0.01934687, -0.009990045, -8.7067654E-4, -0.0302598, 0.035379443, -0.024358734, -0.017986123, -0.009531971, -0.013849988, -0.033601042, -0.0072685494, 0.01659843, 0.015318518, 0.029155033, 0.021515984, -0.0027299162, -0.023887187, -0.011990748, 3.2081988E-4, -0.016477175, 0.022459077, 0.0062547247, 0.0041664485, -0.006924994, -0.0028107527, 0.02218962, -0.010704101, -0.032496277, 0.03540639, -0.039205704, -0.012125476, -0.020505527, -0.0025615068, -0.031202892, -2.3156291E-4, 0.02953227, -0.030960381, -0.0012521239, -0.027511358, 0.008892016, -0.015520609, 0.032092094, 0.012044639, 0.015291573, 0.014321534, -0.015385882, -0.040714655, 7.2500244E-4, 0.015049063, -0.0016630427, 0.009168207, 4.6246796E-6, 0.018700179, 0.011451839, 0.010616528, -0.004008143, 7.9952355E-4, -0.01380957, 0.0046043126, -0.074692935, 0.034113005, -0.018525032, -0.008521515, -0.016975665, -0.004974813, 0.008629297, 0.0027299162, -0.008588878, 0.025476972, -8.5130945E-4, 0.014550571, -9.094107E-4, 0.0039710933, -0.0054935142, 0.021515984, -8.97622E-4, -0.0072213947, 0.01079841, -0.009700381, -0.018390305, 0.017918758, 0.035083044, -0.0014028501, 0.0054632006, 0.011424893, 0.0010365598, 0.006904785, -0.016032573, -0.018053487, 0.0350561, -0.01953549, -0.0015333674, -6.1090506E-4, -0.019036997, -0.029478379, -0.009686908, 0.0023863611, 0.009754272, -0.0015013696, -0.00451674, -0.02105791, -0.010488537, -0.0013750626, -0.0083194235, 0.014846971, -0.017554995, 0.014308061, 0.001416323, 0.0034069219, 0.034113005, 0.0070193033, -0.013971243, -0.016571485, 0.0026440274, -0.02042469, 0.044972043, 0.016328974, 0.0034759697, -0.024574298, 0.02012829, 0.0034658653, 0.03672672, -0.03529861, 0.0075784223, 0.003947516, 0.0025177205, -0.0030667349, 0.0013868513, -0.031364564, -0.01295405, 0.004695254, 0.01163372, 0.027807757, 0.016544538, 0.008299215, 0.0028595915, 0.013230242, -0.018013068, 0.023483004, 0.03570279, -0.007942187, -0.029343652, 0.017150812, 0.0035433336, 0.009195153, 8.016287E-4, 0.018686706, 7.315283E-5, 0.013095514, -0.01094661, 0.011660666, 0.008683188, -0.0023240496, 1.6977772E-4, 0.032280713, -0.028238887, -0.015561027, 0.0025042477, 0.021879748, -0.010791673, -0.005988638, -0.01886185, -0.020842345, -0.02154293, -7.415276E-5, -0.0116943475, -0.016544538, 0.008925698, 0.006958676, 0.026069773, 0.009275989, -0.026447011, 6.5006025E-4, -0.037885375, 0.0044257985, -0.005473305, -0.0078546135, -0.018147796, 0.034894425, 0.013930825, 0.015695754, 0.032280713, -0.019912725, 0.061920762, 0.008076915, 0.011519202, -0.031553183, 0.006958676, -8.9593796E-4, -0.0012100214, 0.0024722498, -0.013526642, 0.0128125865, -0.016328974, 0.011175647, 0.020626782, 0.032199875, -0.023483004, 0.07075889, 0.017703194, -0.0031829374, 0.016261611, -0.021233056, 0.016881358, 0.009302935, 0.017905286, -0.009666699, -0.013169615, 0.005833701, -0.012778904, 0.011761712, -0.028427504, 0.019279506, -8.483623E-4, 0.03236155, 0.025261408, -9.2119933E-4, -0.015749646, -0.013129196, 0.004402221, 0.021583347, 0.006082947, -0.014523625, -0.020478582, 0.013553588, -0.015358936, 0.0011275009, -0.03766981, 0.012630704, -0.02090971, 0.010293182, 0.0021792175, 0.029505325, 0.005436255, -9.520393E-5, 0.004247285, 0.026527846, 0.008689924, -0.013957771, -0.0140655525, -0.030637035, -0.017784031, 0.016342446, -0.017689722, -0.008359842, -0.01886185, -0.012556604 ], + "id" : "19d42710-8734-4715-865c-66f6998d12f0", + "metadata" : { + "source" : "movies.csv" + } + }, + "9ea4e147-ab4d-4bce-9345-d585a7c3b13d" : { + "text" : "Weir-Sophie Huchinson-Ella Hunt-Claire Machin-Brenda Moore-Mischa Purnell-Annette Yeo-Josephine Darvill-Mills-Jennifer Essex-Vicky Evans-Edward Lewis French-Nigel Garton-Lynn Jezzard-Nicholas Keegan-Steve Kirkham-Vanessa Lee Hicks-Ian Parsons-Gemma Payne-Clinten Pearce-Claire Piquemal-Aaron Sillis-Ian Waller-Matthew Seadon-Young,france-robbery-brothel-mayor-musical-arrest-army-barricade-rebellion-wedding-falling in love-corpse-parole-convict-girl disguised as boy-19th century,/90PyvT7SI5INKhMC6P7B5NJVx4t.jpg,/bsG8LkZx1ijrcf3fP6AvBlGTxkX.jpg,72976-82693-45269-11631-13885-114150-84892-824-12155-221518-44826-64682-87827-15121-58595-59436-38757-68734-967227-2976-96724\r\n9552,The Exorcist,Horror,en,12-year-old Regan MacNeil begins to adapt an explicit new personality as strange events befall the local area of Georgetown. Her mother becomes torn between science and superstition in a desperate bid to save her daughter and ultimately turns to her last hope: Father Damien Karras a troubled priest who is struggling with his own faith.,58.691,Hoya Productions-Warner Bros. Pictures,12/26/73,15000000,441405644,122,Released,\"Something almost beyond comprehension is happening to a girl on this street, in this house��_ and a man has been sent for as a last resort. This man is The Exorcist.\",7.7,6859,Ellen Burstyn-Linda Blair-Jason Miller-Max von Sydow-Lee J. Cobb-Kitty Winn-Jack MacGowran-William O'Malley-Barton Heyman-Peter Masterson-Rudolf Sch�_ndler-Gina Petrushka-Robert Symonds-Arthur Storch-Thomas Bermingham-Vasiliki Maliaros-Titos Vandis-John Mahon-Wallace Rooney-Ron Faber-Donna Mitchell-Roy Cooper-Robert Gerringer-Mercedes McCambridge-Paul Bateson-Elinore Blair-William Peter Blatty-Mary Boylan-Dick Callinan-Mason Curry-Toni Darnay-Eileen Dietz-Joanne Dusseau-Bernard Eismann-Beatrice Hunter-Yvonne Jones-Don LaBonte-Barton Lane-Ann Miles-John Nicola-Vincent Russell-Gerard F. Yates,exorcism-holy water-religion and supernatural-vomit-possession-priest-ouija board-satan-paranormal phenomena-demon-strong language-catholic church-demonic possession-disturbed child-crisis of faith-sfx-supernatural horror,/4ucLGcXVVSVnsfkGtbLY4XAius8.jpg,/xcjJ5khg2yzOa282mza39Lbrm7j.jpg,578-694-377-948-805-11586-565-1970-1091-30497-539-609-7340-176-138843-23827-348-8643-764-4232-601\r\n788,Mrs. Doubtfire,Comedy-Drama-Family,en,Loving but irresponsible dad Daniel Hillard estranged from his exasperated spouse is crushed by a court order allowing only weekly visits with his kids.", + "embedding" : [ 0.0140132075, -0.031296164, -0.016073972, -0.035225358, -0.021225886, 0.039017163, 0.014507791, -0.009115454, -0.017640155, -0.036736585, 0.0059933937, 0.030719148, 0.02033289, -0.0010904885, -0.0012098412, 0.024138436, 0.031158779, -0.014494052, 0.0029589161, -0.038577534, 0.0045165117, 0.0011617567, -0.009438307, 0.007020342, -0.0147276055, 0.008304886, 0.028328659, -0.010599205, -0.021486918, -0.002665257, -0.01002906, -0.010784674, -5.134741E-4, -0.0188354, -0.029977273, 0.0029881103, 4.1623175E-4, -0.011938703, 0.017914923, -4.0061503E-5, 0.021157196, -0.0016881106, -0.014425361, 0.004035666, -0.012728663, 0.018107262, 0.0050797877, -0.012220341, -0.011038835, 0.030911487, 0.040226147, 0.02964755, -0.018079786, -0.012268426, -0.014068161, 8.983651E-5, 0.006704358, 0.010434344, 0.0018066047, 0.0023424036, 0.01240581, -0.024097221, -0.03519788, -0.02259973, -0.017186787, -0.007988902, -0.010860235, -0.017118094, -8.723908E-4, -0.0054610292, 0.018739229, 0.0076454408, 0.008524701, -4.4950453E-4, 0.025361158, -0.034675818, -0.02603434, -6.8520464E-4, 0.0066116233, 0.003070541, 0.01671968, -0.015029851, -0.009575692, -0.0017361952, 0.014205545, 0.008826947, -0.01882166, 0.025773311, -0.015126021, 0.007638572, 0.02085495, 0.034263667, -0.0052480833, 0.009342138, 0.014068161, 0.031268686, -0.027229585, 0.045034602, -0.0065772776, -0.023424037, -0.0016769482, -0.011238042, -0.013580446, -0.013388108, 0.008291148, -0.009603169, 3.2349728E-4, -0.015208451, 0.007590487, 0.008868162, -0.007721002, -0.015579389, 0.02259973, -0.039291933, 0.0077278716, -0.032999728, 0.019453628, -0.022627208, -0.017090617, -0.013820869, 0.016678464, 0.018409507, -0.010077145, -0.04695798, 0.036846492, 0.03484068, -0.010530513, -0.015071067, -0.0034895632, -0.011038835, 0.02657014, -0.024866574, 0.025704619, 0.018024832, -0.016335003, 0.04890884, -0.031873178, 0.0021758252, -0.010777805, -0.024523113, 0.02964755, 0.03283487, -0.02585574, -0.018904092, -0.0058285324, 0.003295508, 0.007617964, -0.010448082, 0.016032757, 0.013910169, 0.015496958, 0.023959836, 0.013511755, 0.006845177, 0.02992232, -0.0026807128, -0.0052755605, 0.0037849399, -0.0024145306, -0.020538965, -0.028438568, -0.007356934, -0.011244912, -0.008256801, 0.0029194183, 0.019316245, 0.013415585, -0.011897488, 0.009541346, 0.0044718618, -0.0011342798, 0.014219284, -0.051931296, -0.0042795236, 0.01714557, 0.019398674, 0.0091566695, -0.0033933942, -0.034785725, -0.014494052, -0.0038433282, 0.011080051, 0.046133675, 0.034538433, -0.026322847, 0.022668423, 0.005162218, -0.02339656, -0.005076353, -0.013594185, -0.0022822982, 0.018615585, 0.005385468, -0.006350593, -0.65197134, -0.013236986, -0.016513603, -0.0054507256, 0.016774634, 0.01795614, 0.005615587, 0.0036647285, -0.029510166, 0.007020342, -0.027998937, 0.019068953, 0.028905675, -0.018945307, -0.012605017, -0.023863668, -0.0060414784, -0.0132507235, 0.02920792, -0.0032611617, -0.009184146, 0.016225096, 0.013511755, -0.0024385727, 0.006793658, 0.019013999, -0.0072882418, -0.012694317, 0.0114097735, -0.0075698798, -0.017406601, 0.021157196, 0.0034552172, -0.0021964328, 0.040858116, 0.008950593, -0.0026601052, 0.04239682, 0.025718357, 0.020264197, -0.028466044, 9.0158504E-4, 0.010880843, 2.3892002E-4, -0.0057598404, 0.029043058, 0.0018443854, -0.0059693516, 0.011780711, 0.0020556138, -0.0015455743, 0.017832493, -0.011904357, -0.015716774, -0.001825495, 0.0030173045, 0.020277934, -0.0527556, 0.013353762, 0.0061926013, -0.027806599, 0.020429058, 0.004152443, 0.008098809, 0.006958519, 0.021789163, -0.0021191542, -0.016046496, -0.005680844, -0.0269136, 0.012556933, 0.018382031, -0.009809245, -0.010585466, 0.0054232487, 0.00312206, 0.026996031, 0.0074668415, -0.0010278069, 0.012151648, -0.010977012, -0.013216378, -0.012721794, 0.02657014, 0.026171725, -0.01626631, -0.027971461, 0.023369083, 0.011636457, -0.0013704093, 0.012563802, 0.010832759, 0.0025227207, -0.0020195504, -0.017626416, 0.0051862607, -0.006573843, 0.0044787307, 0.03008718, -0.055585723, 0.012289033, -0.015016113, 0.028026415, -0.01249511, 0.009994714, 0.01301717, -9.393657E-4, 8.912812E-4, 0.02893315, -0.022311224, -0.010523643, -0.0016571991, -0.01301717, -0.011588373, -0.033659175, -0.033906467, 0.020552704, 0.026954817, -0.0032199465, 0.0015318359, 0.012522587, 0.0019147949, -4.439233E-4, -0.014356668, 0.018340815, 0.013346893, -0.018931568, 0.01029009, -9.0759556E-4, 0.016568556, -0.0013386391, -0.009987845, 0.017131833, -0.02393236, 0.0066013196, 0.004815323, 0.018876614, -0.012419548, 0.009349007, -0.0018993391, -0.013511755, -0.00844914, 0.0031169083, -0.0012261557, -0.009177277, -0.02119841, -0.02121215, -0.0011025097, -0.019329982, -0.01662351, -0.001506935, 0.020607658, -4.2224233E-4, 0.020799996, 6.203764E-4, 0.0017095769, -0.031241208, -0.015648082, -0.008442271, -0.0085933935, 0.019013999, 0.025539758, -0.012982824, -0.022022717, 0.017653894, 0.0015481503, -0.0029881103, 0.0119730495, -0.004990488, -0.016637249, 0.019961951, -0.014796298, 0.0035513863, 0.026254157, -0.014521529, 0.02956512, -0.008050725, 0.010702243, -0.0085933935, 0.0044375155, 0.013951384, -0.014755083, -0.024234606, 0.006402112, 0.023506468, 0.012811094, 0.010599205, -0.014315452, -0.0017404885, 0.0022737116, 0.0010338175, -0.02349273, 0.002191281, 1.3223247E-4, 0.007872125, 0.014549007, 0.010880843, 0.0045096423, -0.004492469, -9.0244366E-4, 0.047699858, 0.019288767, 0.016568556, 0.014397884, 0.011766972, -0.021363271, 0.0068932613, -0.038852304, 0.012982824, -0.009493261, 0.0075973566, -0.0070959036, -0.010647289, 0.0028782028, -0.008964331, 0.017351648, -0.004815323, 0.013786523, -0.025003958, 0.012653102, 0.010496167, -0.017269216, 0.014892467, 0.029098013, -0.018945307, 0.0016365915, 0.014507791, -0.018917829, 6.688902E-4, -0.014150592, -0.012701186, 0.0058182287, 0.008689562, 0.0048427996, 2.1970768E-4, -0.0074462336, 0.03357674, -0.0061891666, 0.036104616, -0.003942932, -0.015455743, 0.027298277, 0.018368293, 0.0044203424, 0.0017722585, -0.01020079, 0.01337437, 0.011135004, -0.017983615, 0.03712126, -0.012605017, 0.028191276, 0.00748058, 0.008428532, 0.0075080567, -0.010722851, 0.0036269478, 0.0044787307, 0.030361949, 0.008332363, 0.013656008, -0.032147944, 0.023108054, 0.005577806, 0.01002219, -0.003104887, -0.021253364, 0.009012416, -0.0058663134, -0.038110428, -0.027215846, -0.02103355, -0.0109220585, 0.010104622, -0.0014682956, -0.011993657, -0.006580712, 0.009781769, 0.0031169083, 0.025759572, -0.014466575, -0.0325601, 0.023286654, 0.02964755, -0.018698014, -0.013257593, -0.016994448, -0.010880843, -0.029620074, -0.020525226, -0.0045027733, 0.0314885, -0.024440682, 0.0037712012, -0.008112548, 7.23844E-4, 0.0083804475, -0.018615585, 0.021431964, 0.017337909, 0.0024196825, 0.0029726545, -0.012598148, -0.016939495, 0.027133416, -0.020250458, 0.0020968292, -0.014494052, 0.009129193, -0.0016949798, -0.010592336, 0.016293788, -0.043303557, 0.020621397, -0.019233814, -0.003460369, -0.0066219275, 0.0036647285, 0.011334212, -0.0093696145, -0.017695108, -0.020030644, -0.025471065, 0.0097955065, 0.095564574, 0.04116036, 0.011052574, 0.014370407, -0.0027391012, -0.0071027726, -0.013230116, -0.010152706, -5.549041E-5, -0.008112548, 0.034703296, -0.00124247, 0.027394446, 0.0038467627, 0.01636248, -0.011602111, -0.008600262, 0.006419285, -0.0052618217, -0.008552178, -0.012625624, -0.013085863, 0.022943191, 0.014796298, 4.722588E-4, -0.024550589, 0.021431964, 0.014219284, 6.7103683E-4, 0.020113073, -0.030224564, 0.0058628786, 0.016953234, 0.016115189, 0.0015721925, -0.001343791, 0.024001053, 0.006299074, 0.026735, -0.010516775, 0.0016829587, 0.016857063, 0.008916247, -0.012254687, 0.03044438, -0.028122583, -0.013656008, 0.024687974, 0.03555508, -0.043221127, 0.016005281, 0.0077965637, -0.021583086, -0.015661819, 0.0072195493, -9.565388E-4, 0.003347027, 0.0076454408, -0.028960628, 0.024523113, -0.008050725, -0.024687974, 0.012701186, -0.001264795, -0.0032079255, -0.019041475, -0.015180974, 0.0027871856, -0.008421662, 0.009266577, -0.0077347406, -0.027586784, -0.013669746, 0.003487846, 0.0132782, 0.010475559, 0.03140607, -0.004461558, 0.02507265, 0.006570408, -0.04346842, -0.025003958, 0.01020766, -0.018382031, -0.007803433, 0.02005812, -0.0034449133, 0.017997354, -0.020003166, -7.7579246E-4, -0.0017576615, 0.0036372517, -0.022366177, -0.014796298, 0.02893315, 0.019810827, 0.0188354, 0.014054422, 2.558784E-4, 8.1657845E-4, 0.016115189, -0.023176746, -0.02049775, -0.014136853, -0.0064501967, -0.017805016, -0.006254424, -0.00413527, -0.016650988, -0.025993126, -0.009033023, -0.016472388, 0.009376484, -0.006965388, 0.011217435, 0.011306735, 0.01249511, 0.011073181, -0.0026738436, -0.0011205414, 0.0059762206, -0.020882426, 0.026542664, 0.020635134, -0.009871068, 0.030334473, 0.0018048873, -0.039868947, 0.0011737779, 0.018038569, -0.003396829, 0.015332097, -0.019165121, -0.009403961, -0.011045705, -0.010399998, 0.014136853, 0.00331955, -0.009225361, 0.0068932613, -0.015180974, 0.008126286, -0.006652839, -0.002524438, -0.013759046, -0.027806599, 0.006371201, -0.016211357, 0.009816114, 0.019247552, -0.013504885, 0.0030842794, -0.015895374, 0.0025862611, -0.009108584, -0.039017163, -0.025100127, 0.006834873, 0.02657014, 0.008682693, 0.035417695, 0.003297225, 0.03357674, 0.019467367, 0.0061445166, 0.018450722, -0.012192864, -0.022146363, -0.036736585, 0.0046745036, 0.0067249658, 0.026350325, 0.019591013, -0.009046761, -0.0020830908, 0.026597617, 0.010187052, 0.018629322, 0.0065601044, -0.024385728, -0.024523113, 0.011073181, -0.017708847, 0.011292996, -0.02279207, -9.531042E-4, 0.014219284, 0.00136354, -0.009527607, -0.012721794, 0.03791809, 0.0035857323, 0.013236986, -0.02040158, 0.011251781, -0.025842002, -0.011478465, -0.014081899, -0.008256801, -0.0032577273, -0.01152655, 0.021857856, -0.0010655876, -0.010901451, -0.008771993, 0.025237512, -0.009774899, -0.03016961, 0.025100127, -0.0057220594, -0.020429058, -0.015661819, -0.014109376, -0.015675558, -0.0015060763, -7.079589E-4, -0.021363271, 0.014109376, -0.014136853, -0.029867366, 0.012824832, -0.008545308, 0.035500124, 0.012653102, 0.052838035, 0.03212047, 0.011849403, -0.013463669, 0.012701186, 0.007906471, -0.002344121, 0.033549268, 0.015496958, -0.0054782024, -0.0029829585, 9.290619E-4, -3.4925685E-4, -0.049513333, -0.032395236, 0.026185464, 0.0182996, 0.008902508, -0.020868689, 0.0029503296, -0.016692203, 0.011018228, -0.016527342, 0.0014700129, 0.0014099072, -0.03387899, -0.011863141, -0.005481637, -0.011519681, 0.017516509, 0.0065326276, -0.015318359, 0.0012398941, -0.021706732, -0.0024317035, -0.0023475557, -0.015510697, 0.02841109, -0.0226959, 0.003273183, 0.013559839, 0.013765915, 0.0056052827, -0.0037231168, 0.00993976, 0.0322029, 0.0051072645, 0.020607658, 7.968294E-4, -0.021267103, 0.026020601, 0.0014365255, -0.023602637, -0.012769879, 0.0019749005, -0.009699337, 0.018368293, 0.014590221, 0.0028782028, -0.005182826, -0.015840419, -0.0078171715, 0.012460764, -0.01742034, 0.023794975, -0.026432756, 0.010750328, -0.011574634, 0.014947421, -0.0043241736, -0.0027494049, 0.0070340806, -0.002551915, 0.033109635, -0.009094846, -0.012117303, -0.020841211, -0.019989427, -0.026103033, -0.019027738, -5.521135E-4, -0.0030207392, 0.0013412151, -0.0062956396, 0.013429323, -0.02040158, -2.8056468E-4, 0.001785997, 0.009294054, -0.030636718, 0.0046779383, 0.028658383, -0.015153497, -0.003527344, -0.0030980178, 0.022118885, 0.004732892, 0.0015146629, 0.003060237, -0.0016778068, 0.03288982, -0.010310698, 0.0053099063, 0.0013935928, -0.025374895, -0.007679787, 0.010688505, 0.009637514, 0.011148742, -8.535005E-4, -0.022338701, -0.0037540284, -0.013127078, 0.03651677, -0.007075296, 0.017750062, 0.018711753, 0.016692203, 0.022970669, 0.03052681, 0.004557727, -0.005392337, -0.0069344766, -0.013958253, -0.012969086, 0.005773579, -0.008655217, 0.011533419, 0.016403696, -0.023533944, -0.024894051, 0.011780711, -0.03176327, -0.009802376, -0.013092732, 0.029620074, 0.04047344, 0.011066312, -0.0014854687, 0.004811888, 0.014796298, 0.018148476, -0.021102242, -0.009266577, 0.019852044, 0.015524436, 0.006457066, 0.025100127, -0.03360422, -0.002349273, 0.013937646, 0.019742137, 0.0071920725, 0.014287976, -0.010873974, -0.017461555, -0.007940818, -0.006209774, -0.010867105, -0.0057598404, 0.017337909, -0.02603434, 0.0074050184, 0.0019525755, 0.025278727, -0.0073844106, 0.009294054, 0.0072264187, -0.014658914, -0.002270277, -0.008648347, -0.005814794, 0.0084560085, -0.020346627, 0.01759894, 0.009575692, 0.0036132094, 0.031735793, 0.024619281, -0.01671968, 0.008009509, -0.017626416, -0.004107793, -0.01574425, 0.0015970934, -0.0037712012, 0.01971466, -0.051601574, 0.013010301, -0.020195505, 0.008304886, -0.0013772785, 0.0065326276, 0.0021517829, 0.023946099, 0.0063815047, -0.04698546, -0.0038845434, 0.0017061423, -0.0021397618, -0.014356668, -0.010839628, -0.025580972, -0.011292996, -0.0089712, -0.010056537, -0.018450722, -0.018230908, 0.005357991, -0.01231651, -0.008916247, 0.014562745, 0.18431489, -0.013099601, 0.005708321, 0.050859697, -0.009081108, -0.008806339, 0.023094315, 0.01997569, -0.015153497, 0.008119417, -0.0025003958, 0.01152655, -5.439563E-4, 0.007617964, 0.021624302, -0.020291673, -0.031351116, -0.027737906, -0.020168027, -0.019810827, 0.0027940548, -0.004272654, 0.0047466303, -0.031735793, 0.010049667, -0.0054060756, -0.011499073, -8.427673E-4, 0.0102832215, -0.0014992071, -0.014061292, -0.007947687, 4.3297547E-4, -9.7113586E-4, -0.022008978, 3.6793255E-4, -0.009843591, 0.0044649923, 0.009493261, 0.002191281, 0.010104622, -0.008984938, 6.8262866E-4, -0.01037939, -0.005464464, 0.01540079, -0.019810827, -0.016252572, -0.014741344, -0.0049595763, -0.041325223, -1.850396E-4, 0.013085863, 0.015785465, -0.012028003, -0.005945309, 0.012467633, 0.011389165, -0.0038330243, -8.21301E-4, 0.011890618, 0.02567714, -0.044924695, 0.024687974, 0.0033435924, 0.032972254, -0.050007917, -0.023204222, -0.008469747, -0.029977273, -0.015620604, -0.011622719, -0.007762218, 0.0026394974, -0.007748479, -0.009300923, 0.021349533, 2.410935E-5, 0.0039463663, 0.024042267, -0.03052681, -0.014411622, 0.011629588, -0.0047363266, -0.014645175, -0.03343936, 0.012165387, -0.014191807, -0.02101981, -0.026226679, -0.0034534999, -0.030499334, -0.005673975, -0.0052377796, -0.0070959036, 0.0070169074, 0.033109635, 0.02225627, -0.018079786, -0.0061273435, -0.035033017, 0.018698014, 0.028301183, -0.0012149932, -0.02339656, -0.008785731, -0.0039154547, 0.0053167758, 0.023341607, -0.024839096, -0.02393236, -0.024825359, -9.556801E-4, -0.0036441209, 0.0042623505, 0.03756089, 0.005443856, -0.009644384, 0.01971466, -0.011320474, -0.012955347, -0.008991808, 0.012515717, -4.392007E-4, 0.0037574628, -0.028191276, -0.030114656, 0.0076866564, -0.00932153, -0.031625886, 0.02349273, -0.028850721, 0.005797621, 0.004506208, 0.003942932, 0.005251518, 0.021651778, -0.014081899, 0.016884541, 0.010132099, -0.005481637, -0.01636248, -8.964331E-4, 0.013072124, 6.508585E-4, -0.022805808, -0.005165653, 0.009747422, -0.020799996, -0.030471856, -0.03176327, -0.0040219277, 0.009884806, 0.0029709374, 0.041929714, -0.010255745, -0.03143355, -0.0355276, -0.015277144, 0.04382562, -0.045611616, 0.022105148, 0.017228002, -0.011107528, -0.01002906, -0.0066116233, -0.17739071, 0.021596825, -0.0033212674, -0.030993916, 0.029784935, 0.010757198, 0.036434337, 0.01196618, -0.009980976, -0.028960628, 0.026583878, 0.006968823, -0.034098804, -0.0055022445, -0.007830909, 0.025251249, -0.005660237, 0.028850721, 0.031076347, -0.008394185, 0.035747416, -0.0026515187, -0.008366709, -7.0710026E-4, 0.017406601, 0.0032027734, 0.025773311, 0.011011358, 0.0034019807, -0.0020126812, -0.030114656, 8.105679E-4, 0.011004489, -0.006608189, -0.012996563, 0.0038845434, -0.008435401, -0.013841476, -0.008208717, -0.018725492, 0.029043058, 0.015634343, 0.010406867, 0.008160632, 0.019728398, 0.019151384, 0.02295693, -0.025993126, 0.0030018487, -0.013291939, -0.01768137, -0.03959418, 0.02209141, -0.0053442526, -0.0051587834, 0.019206338, 0.009486392, 0.0073500643, 0.015126021, 0.011031966, -0.014617698, -0.008325494, 0.011169351, 0.016527342, -0.004822192, -0.011031966, -0.0032989425, 0.00976803, -0.038852304, 0.006704358, -0.031213732, 0.014713868, 0.0014743062, 0.002462615, 0.011299865, -0.024097221, -0.03247767, 0.007885864, -0.017983615, 0.0132782, -0.010035929, 0.042451773, 0.0033762213, 0.015716774, -0.0027356665, -0.031955607, 0.0052549527, -0.0035410824, 0.0072332877, -0.006896696, 0.005244649, -0.011739495, -0.018986521, 0.0063471585, -0.0021140021, 0.014700129, -0.0014631437, 0.011086919, 0.008957461, -0.029894842, 0.008366709, -0.015950328, -0.016596034, 0.031131301, 0.023685068, 0.0088819, 0.010592336, 0.022311224, 0.030197088, -0.003870805, -0.012632494, -0.014246761, 0.02534742, 0.0085933935, -0.022517301, 0.018739229, 9.7199454E-4, -0.022558516, 0.0043344772, 0.018684275, 0.050777268, -0.0017653893, 0.0019680313, -0.0091498, -5.229193E-4, -9.968955E-4, -0.09952125, -9.5911475E-4, 0.006700923, 0.04830435, -0.029894842, 0.032312807, -0.008194978, 0.021473179, -0.021404486, 0.032972254, 0.014755083, -0.038769875, 0.0048531033, 0.0026892994, 0.0061479514, 0.00976803, -0.015332097, -0.00844914, -0.0132782, 0.035335265, -0.0027614261, 0.010138967, -0.004533685, -0.026226679, -0.023904882, 0.008984938, -0.023217961, 0.025498541, 0.009644384, 0.01575799, -0.012625624, -0.025965648, 0.001025231, -0.04187476, -0.018450722, -0.020786257, -0.008133155, -0.031598408, -0.008091941, -0.04316617, 0.0070237764, 0.0074531026, 0.020195505, -0.0054404214, -0.009245969, 9.83157E-4, -0.035390217, 0.033988897, -0.007116511, -0.020374104, -0.013085863, -0.009616907, -0.024165913, -0.006635666, 0.014562745, 0.020538965, 0.02630911, 0.011368558, -0.015002375, -0.027339492, 0.0062784664, 0.001993791, -0.02736697, 0.010406867, 0.00985733, 0.0064742393, -0.004272654, -0.0069791265, 0.012824832, -0.02111598, -0.0179424, 0.019906998, -0.030993916, 0.0074118874, -0.014837514, 0.0075424025, -0.016252572, -0.004231439, 0.022379916, -0.033988897, -0.0047534998, -0.029977273, 0.0057495367, -0.012474502, 0.017049402, 0.018711753, 0.015496958, 0.016431171, -0.009905414, -0.032972254, -0.00888877, 0.025484804, 0.009822983, -0.013010301, 0.0030001316, 0.023190483, -0.0054301177, 0.0015490089, -0.0053717294, 0.0022239096, 2.653236E-4, -0.001870145, -0.07528664, 0.025663404, -0.025539758, -0.013779653, -0.009122323, -0.018450722, 0.0037093784, 0.015084805, -0.0061926013, 0.024124699, -0.016156403, 0.025842002, -0.014384145, -0.0036612938, -0.019865781, -8.427673E-4, 0.0062681623, -0.0068589156, -0.01187688, 0.010248875, -0.007638572, 0.0108464975, 0.02015429, 0.011423511, -0.011162481, 0.021418225, -0.0023029058, 0.0010054819, -0.020841211, -0.0075767487, 0.018794185, -0.025471065, -0.005577806, -0.0024523113, -0.0078927325, -0.021995239, -0.019673444, -0.0014485467, 0.026528925, 0.007047819, -0.018972784, -0.028878197, 0.0011961028, 0.012625624, 0.0034964327, 0.016073972, -0.019632228, 0.009163538, 0.009431438, -0.004811888, 0.026075557, 0.018038569, -0.0073225875, -0.018409507, 0.0088819, -0.0041970927, 0.033631697, 0.007425626, 0.006175428, -0.012028003, 0.013051516, -0.012213471, 0.013243855, -0.01478256, 0.0107091125, 0.006439893, 0.005210303, -0.013443062, 0.010853366, -0.023877406, -0.018601846, -0.023643853, 0.011299865, 0.041957192, 0.022764592, 0.024495635, -0.004815323, 0.02049775, 0.01540079, 0.008339232, 9.402244E-4, 0.0062750317, -0.018450722, 0.023712544, 0.015826682, 0.011128135, -0.014480314, 0.001101651, 2.7884738E-4, 0.014933683, 0.0040425356, 0.009005547, 0.030664194, -6.499999E-4, 0.004513077, 0.0076042255, -0.021775424, -0.004671069, -0.008895638, 0.010509905, 0.007961425, -0.0012742402, -0.006096432, -0.018959045, -0.016747156, -0.0018529719, -0.024069743, -0.020841211, 0.0018907526, 0.01575799, 0.0086689545, 0.010399998, -0.009376484, 0.013676615, -0.033906467, 0.018175954, -0.020799996, -0.030664194, -0.009273446, 0.035692465, 0.0054095103, -0.0028043587, 0.029784935, -0.0071645956, 0.052315973, 0.010571728, 0.028878197, -0.028383614, -0.016705941, -0.0067696157, -9.4795227E-4, -0.008407924, -0.019659705, 0.0053167758, -0.004372258, -0.0065601044, 0.014054422, 0.028438568, -0.015703036, 0.05797621, 0.00932153, -0.0072951107, 0.017186787, -0.025196295, 0.016678464, 0.017640155, 0.018285861, -0.023094315, -0.01293474, 0.0024007922, -0.0095825605, 0.018780446, -0.032697484, 0.011396035, 0.0061616898, -0.011931834, 0.019852044, 0.0033899597, -0.015867896, -0.0054782024, -0.012556933, 0.024687974, 0.002208454, -0.009005547, -0.006446762, 0.008407924, -0.005577806, -0.021583086, -0.0128866555, 0.008991808, -0.014397884, -0.0022943192, -0.010812151, 0.031900655, -0.018752968, -0.010372521, -0.0028180971, 0.025045173, 0.0032542925, -0.011897488, -9.0158504E-4, -0.009967237, -0.027655477, 0.0129622165, -0.014590221, 0.008043855, -0.01882166, -0.025910694 ], + "id" : "9ea4e147-ab4d-4bce-9345-d585a7c3b13d", + "metadata" : { + "source" : "movies.csv" + } + }, + "f8426191-a44c-4d7b-b1ea-e05e512933b9" : { + "text" : "338953,Fantastic Beasts: The Secrets of Dumbledore,Fantasy-Adventure-Action,en,Professor Albus Dumbledore knows the powerful dark wizard Gellert Grindelwald is moving to seize control of the wizarding world. Unable to stop him alone he entrusts magizoologist Newt Scamander to lead an intrepid team of wizards and witches. They soon encounter an array of old and new beasts as they clash with Grindelwald's growing legion of followers.,190.547,Warner Bros. Pictures-Heyday Films,4/6/22,200000000,406950844,142,Released,Return to the magic.,6.8,3349,Eddie Redmayne-Jude Law-Mads Mikkelsen-Ezra Miller-Dan Fogler-Alison Sudol-Callum Turner-Jessica Williams-Katherine Waterston-Oliver Masucci-Richard Coyle-William Nadylam-Maria Fernanda C��ndido-Poppy Corby-Tuech-Victoria Yeates-Aleksandr Kuznetsov-Dave Wong-Fiona Glascott-Cara Mahoney-Maja Bloom-Wilf Scolding-Kazeem Tosin Amore-Noor Dillan-Night-Manuel Klein-Valerie Pachner-Ramona Kunze-Libnow-Lucas Englander-Jan Pohl-Matthias Brenner-Peter Simonischek-Jacqueline Boatswain-David Bertrand-Stefan Race-Jessica Cartledge-Rahda Sthanakiya-Isabelle Coverdale-D�_nal Finn-Hebe Beardsall,berlin germany-prison-witch-magic-election campaign-curse-bhutan-fantasy world-wizard-magical creature-1930s-good versus evil,/jrgifaYeUtTnaH7NF5Drkgjg2MB.jpg,/zGLHX92Gk96O1DJvLil7ObJTbaL.jpg,752623-526896-675353-453395-555876-818397-864116-507086-372439-913612-438148-14543-639933-985724-629542-551-508947-924482-414906-335787-634649\r\n438695,Sing 2,Animation-Family-Music-Comedy,en,Buster and his new cast now have their sights set on debuting a new show at the Crystal Tower Theater in glamorous Redshore City. But with no connections he and his singers must sneak into the Crystal Entertainment offices run by the ruthless wolf mogul Jimmy Crystal where the gang pitches the ridiculous idea of casting the lion rock legend Clay Calloway in their show. Buster must embark on a quest to find the now-isolated Clay and persuade him to return to the stage.,103.121,Universal Pictures-Illumination,12/1/21,85000000,406000000,110,Released,Where will your dreams take you?,7.878,4144,Matthew McConaughey-Reese Witherspoon-Scarlett Johansson-Taron Egerton-Bobby Cannavale-Tori Kelly-Nick Kroll-Halsey-Spike Jonze-Nick Offerman-Letitia Wright-Eric Andr��-Pharrell Williams-Chelsea Peretti-Bono-Garth Jennings-Adam Buxton-Jennifer Saunders-Julia Davis-Peter Serafinowicz-Edgar Wright-Wes Anderson-Scott Mosier-Jason Schwartzman-Tara Strong-Fisher Stevens-Debra Wilson-Doug Burch-Cathy Cavadini-Chris Renaud-Brian T.", + "embedding" : [ 0.008972097, -0.026323602, -0.015082933, -0.04858694, -0.02456597, 0.037032895, -0.012003671, -0.015219184, -0.0256151, -0.029675364, 0.02170471, 0.03545239, 0.013073239, 0.005238833, 0.015382685, 0.0052694893, 0.01949745, -0.010818292, 0.0071190903, -0.024974722, -0.008747284, 7.536357E-4, -0.015341809, 0.008324907, 0.007650467, 0.00306734, 0.0191432, -0.0047960184, -0.0030520118, -0.0151101835, 0.015941313, -0.0062777433, -0.022903714, -0.023789342, -0.02051933, -0.012521423, 0.0038933589, -0.017208442, 0.021146081, -0.009803225, 0.020355828, 0.0049731443, -0.016322814, -0.001443404, -0.009230973, 0.005344427, 0.010484478, -0.001676733, 0.008611034, 0.024143593, 0.019197699, 0.050930448, -0.018598197, -0.016513564, -0.02170471, -0.021909084, 2.641983E-4, 5.524533E-5, 0.0046427366, 0.0056237406, 0.011976422, -0.028258359, -0.017222067, -0.01426543, -0.018843448, -0.001119809, -0.03144662, -0.02316259, -0.0034096695, -0.013434302, 0.030465618, 0.006948777, 0.03359938, -0.013516053, 0.023857467, -0.026432602, -0.032155126, -0.006614963, -0.008658721, -0.004850519, 0.011247481, -0.0032955597, -0.034989137, 0.013318489, 0.008454345, 0.0384499, -0.01933395, 0.010007601, -0.047633186, 0.025056472, -0.009510287, 0.032046124, -0.0016222328, 0.0030451992, -0.003944453, -5.318028E-4, -0.013229926, 0.03403538, -0.018720822, -0.031582873, -5.5394357E-4, -0.005794054, -0.015014809, -0.011744795, 0.007364341, -0.011547232, 0.002057383, -0.014824057, 0.022331461, 0.0057804286, 0.0033551692, -0.010028039, 0.015341809, -0.028694361, -0.004983363, 0.0052252077, 0.008645096, -0.017671693, -0.006976027, -0.017971445, 0.026923105, 0.034089882, 0.010981793, -0.02451147, 0.035343386, 0.030710869, 0.0024525095, -0.012780299, 0.0057157096, -0.010014414, 0.028149359, 0.009612475, 0.01784882, 0.01421093, -0.03381738, 0.06398325, -0.026364477, 0.0136114275, -0.027767858, -0.022072585, 0.033953633, 0.04640693, -0.027495356, -0.014279055, -0.029784365, 0.009714663, 0.020478453, -7.6257717E-4, 0.027931359, 0.0039921403, 0.018966073, 0.007957031, 0.014088305, 0.021500334, 0.020560205, 0.003920609, 0.018325696, 0.0022413211, -0.0083930325, -0.024906596, -0.005174114, 0.002033539, -0.0060938047, -0.017235693, 0.0062130243, 0.031991623, 0.009612475, -0.018298445, -0.009605662, 0.016186563, -0.011479107, 0.020137828, -0.017031316, 0.026936729, 0.00613468, 0.014687807, 0.0018053195, -0.011451857, -0.030438367, 0.0027096823, -0.0028289016, 0.018475572, 0.024688596, 0.035070885, -0.01690869, 0.01927945, 0.020423954, -0.010457228, -0.0069828397, -0.010954542, -0.0025070098, 0.023230715, -0.008604221, -0.018952448, -0.63612646, -0.016227437, 0.014837682, -0.023298841, -0.004063672, 0.0024627282, 0.0036378892, 0.013952054, -0.01561431, -0.020028828, -0.009421724, 0.015995812, 0.012691737, -0.017671693, -0.03646064, 0.0035084512, -0.0020658986, -0.018080445, 0.005858773, 0.007779905, -0.037032895, 0.025233598, -0.009094723, -0.018393822, 0.0036310765, 0.012998301, -0.018053195, -0.029048612, 0.0054193647, -0.011669857, -0.011547232, 0.004666581, 0.007023715, 0.0053989273, 0.029920615, 0.024865722, -0.018843448, 0.028939612, 0.024497844, 0.026868604, -0.024552345, 3.6638617E-4, 0.009816851, -6.56983E-4, -0.021023456, 0.013045988, 0.021050707, 0.0058894292, -0.0015328184, -0.011370107, -0.008202282, -0.01232386, 0.016513564, -0.008849472, 0.010709291, 0.009387662, 0.015205559, -0.024606846, 0.0256151, -0.013005113, 7.3021767E-4, 0.03111962, -0.0029293864, 0.011499545, -0.0017474131, 0.017072191, -0.009844101, 0.004428142, 0.014020179, -0.012494174, -5.283966E-4, 0.0122966105, -0.009810038, 0.009782788, 0.006505963, 0.005524959, 0.04362742, -0.0062947744, 0.012180797, 0.017998695, -0.0022685714, -0.0040977346, -3.5467715E-4, -0.0067852763, 0.01547806, -0.023339715, -0.01809407, 0.0071463403, 0.008611034, 0.012303423, -0.007807155, 0.010000789, 0.017072191, -0.008433907, -0.0056782407, 0.0051162075, 0.0034079663, 0.0013224817, 0.019075073, -0.052810706, -0.008113719, -0.024715846, 0.0122966105, -0.022699337, 0.007936593, 0.027890483, -0.0073302784, -0.0027795108, 0.027563483, -0.0037673272, 0.009673787, 0.010940918, -0.03128312, -0.0062198364, -0.0052865203, -0.026854979, 0.025233598, 0.0043021105, -0.0027726982, -0.0055862716, 0.0192522, 0.018243946, 0.0065809004, -0.023966467, -0.014074679, 0.020614704, -0.0076572797, -0.0038422649, 0.001994367, 0.009333162, 0.01547806, 0.004387267, 0.01671794, -0.0128143625, 0.012051359, 0.010613916, 0.022508588, 0.006509369, 0.0079297805, -0.01663619, -0.008284032, -0.002018211, -0.013788554, -0.017780693, -5.203067E-4, -0.0026722136, -0.027726982, 5.6160765E-4, 0.004748331, -0.010246039, -0.023039965, 0.005736147, -0.008604221, 0.017099442, -0.0076027797, -0.012582736, -0.019483825, -0.022767464, 0.011955984, -0.020355828, 0.022045335, 0.027536232, -0.0019194293, -0.005654397, 0.028476361, -0.018720822, -0.014960308, 0.004050047, -0.0058792103, -0.0060086483, 0.007575529, -0.016186563, 0.018448321, 0.032073375, 0.0057702097, 0.02701848, -0.0051570823, 0.013747678, -0.003285341, -0.0039001713, 0.009176473, -0.011581295, -0.015437185, -0.012153547, 0.032454874, 0.022249712, 0.008181844, -0.023148965, -0.010968167, -0.0074120285, -0.010872792, -0.01302555, -0.005858773, -0.006468494, -0.0055726464, 0.037359893, 0.0066319946, -0.012044547, 0.009176473, 0.022276962, 0.0388314, 0.013931616, 0.009074286, -0.0022924151, 0.013011926, -0.04103866, -0.0024610253, -0.019974327, 0.0075550918, -0.019511076, 0.017671693, -0.014061054, -0.01094773, -6.254751E-4, 0.0023111496, 0.039349154, -0.0026313383, 0.0069181207, -0.010498103, 0.004646143, 0.013659116, -0.009646538, 0.022781089, 0.017371943, -0.017862445, -0.00411136, 0.0066558383, -0.012453298, 0.0063049933, -0.0010559416, -0.0023213683, -0.005477271, 0.0053887083, -0.009047035, -0.005977992, -0.0064276187, 0.023748467, -0.014537931, 0.052783456, -0.025519723, -0.017685318, 0.023584966, 0.023680342, 0.0048403, -0.0076709045, -0.02666423, 5.8928353E-4, 0.0195792, -0.0018002101, 0.038204648, -0.020369453, 0.03139212, 0.0029208707, -0.0035629512, 0.009946289, -0.019483825, 0.008699596, 0.016063938, 0.011410981, 0.021295957, 0.0016545923, -0.007902531, 0.016854191, 0.01575056, -0.001221997, 0.013836241, -0.0059473356, 0.0041624536, 0.008270407, -0.035833888, -0.0193612, -0.020423954, 0.006734182, 0.010675229, -0.0062777433, -0.008842659, -0.003804796, 0.016172938, 0.004996988, 0.019797202, -5.0327537E-4, -0.037850395, 0.0056135217, 0.016758814, -0.016418189, -0.03289088, 0.0063083996, -0.01367274, -0.021568459, -0.020968957, -0.010191539, 0.027195605, -0.018325696, 0.0015575138, -0.01674519, -0.008215907, 0.01539631, -0.02335334, -0.009551162, 0.018870698, -0.008079656, 0.014456181, -0.017113067, -0.006209618, 0.027032105, 0.008202282, -0.016159313, 0.0068125264, 0.0043021105, 0.0065434314, -0.0015413341, 0.017399192, -0.0515027, 0.010743354, -0.0191432, 0.0012279579, -0.008215907, 0.009462599, 0.022985464, 0.0020676018, -0.021854585, -0.03335413, -0.007970656, 0.0080592185, 0.07074127, 0.0388859, -0.015341809, -0.0047449246, -0.012153547, 0.01418368, -0.013209488, -0.009993976, -0.017249316, -0.0111861685, 0.029103113, -0.009537537, 0.020096952, 0.019660952, 6.488931E-4, -0.016786065, -0.026514353, -0.00709184, 0.0024184468, -0.007957031, -0.023653092, -0.006420806, 0.0073711537, 0.034689385, 0.0024933848, -0.014524306, -0.004090922, 0.0030877776, -0.008433907, 0.022781089, 0.0075005917, -4.4041917E-5, 0.007480154, 0.011022667, -9.213942E-4, -0.0017576318, 0.0036923892, 9.111754E-4, 0.006560463, 0.007575529, -0.0028254953, 0.0191432, 0.01787607, -0.013911179, 0.008611034, -0.0385044, -0.007452904, 0.024824847, 0.040793408, -0.017821569, 0.009510287, -0.00129438, -0.0036242642, -0.008427096, 0.009537537, 0.0066081504, -0.00543299, -0.008249969, -0.008311282, -3.2572393E-4, 0.0056850533, -0.017249316, 0.023843842, -0.0012782003, -0.018775323, -0.01663619, -0.017303817, -0.022576712, -0.031991623, 0.03526164, -0.0025172285, -0.030247618, -0.012998301, -0.004673393, 0.016200189, -0.009973539, 0.03166462, 0.00844072, 0.010593479, 0.007957031, -0.036978394, -0.047415182, -0.0029208707, -0.015273685, -0.011472294, 0.004918644, 0.008808597, 0.02726373, -0.01663619, -0.0014536228, 0.0033177005, 0.0012535049, -0.021282332, -0.019960701, 0.029484615, 0.009905414, 0.012153547, 0.03095612, 0.03090162, 0.0033875287, 0.0041897036, -0.0194157, -0.012282985, -0.024552345, 0.01795782, -0.004850519, -0.003944453, 0.007909344, 0.0056339595, -0.04651593, -0.013917992, -0.013045988, 0.012950612, 0.003169528, 0.012044547, 4.0066172E-4, 0.014469806, 0.028885111, -0.014715057, 8.541205E-4, 0.016159313, -0.008311282, 0.03332688, 0.03190987, -0.008897159, 0.047878437, -0.011288356, -0.006958996, -0.021350458, 0.023094464, 0.008372595, 0.0058689914, -0.01679969, -0.003597014, -0.031964373, -0.027604356, 0.019865327, -0.0024967908, -0.0191432, 0.018652698, -0.030029617, 3.2599004E-5, 0.004853925, -0.0042373915, -0.009217348, -0.02726373, 0.016104812, -0.015791437, 0.020669205, 0.03637889, 0.0067137447, 0.0022157743, -0.037332647, -0.018979698, -0.006938558, -0.025001971, -0.0035391075, -0.0089107845, 0.013488802, 0.011009043, 0.05411871, 0.004036422, 0.012616799, 0.007698155, -0.0042373915, 0.032945376, -0.019783577, -0.0052218013, -0.029130364, 0.0085224705, -0.013522865, 0.020015202, 0.019320324, 0.0018002101, 0.0067954953, 0.014960308, 0.010102977, 0.014224555, -0.016540814, -0.026241852, -0.02745448, -4.6027132E-4, -0.016063938, 0.0096806, -0.026037475, -0.013461553, 0.030165866, 0.0070714024, 3.6425728E-4, -0.027767858, 0.043191418, -0.020723706, 0.011383732, -0.021037081, 0.023816593, -0.030411119, 0.0077935304, -0.020832706, -0.020560205, 0.0037843585, 0.009346786, 0.0054261773, -0.0035697639, -0.009149223, 0.015382685, 0.014878558, -0.0070714024, -0.01669069, 0.018993324, -0.023939218, -0.020750955, -0.024334345, -4.4451735E-4, -0.017535442, 0.0113360435, -0.01431993, -0.014306306, 0.014115554, -0.01167667, -0.025996601, 0.02060108, -0.0038286399, 0.049731445, 0.015573435, 0.030383868, 0.039812405, 0.009292286, -0.01960645, 0.020750955, -0.015055683, -0.022045335, 0.033681132, -0.0014135992, -0.01773982, -0.011445045, -0.0094285365, -0.0028816988, -0.03610639, -0.03526164, 0.02087358, 0.020396704, 0.021186957, -0.018339321, 0.004182891, -0.01960645, 0.011547232, -0.011833359, 0.009993976, 0.012521423, -0.021909084, -0.015328185, -0.0035288886, 0.012071797, 0.020423954, 0.011737983, 0.0023724623, 0.031582873, -0.027508982, -0.0045201113, -0.027563483, -0.012030922, 0.028830612, -0.034198884, 0.0023332904, 0.02051933, 0.001980742, 0.0021970398, 0.004295298, -4.8938422E-5, 0.027699733, -0.022072585, 0.022740213, 0.004067078, 0.008072844, -0.017508192, 0.0070850276, -0.033245128, -0.02043758, -0.043191418, 0.0036923892, 0.04062991, 0.0015251543, -0.0056237406, 0.013979305, -0.013011926, -0.006662651, 0.0074120285, 0.0071395277, 0.01801232, -0.038858652, -0.005589678, -0.007466529, -0.011199794, 4.611229E-4, -0.02332609, 0.0064650876, -0.0028936206, 0.02429347, -0.010545791, -0.026146477, -0.0122966105, -0.015341809, -0.038640648, -0.01820307, -0.0013063019, -0.016390938, 0.0047176746, -0.019238574, 0.013754491, 0.006209618, -0.020124203, -0.016023062, 0.010068914, -0.023680342, 0.004646143, 0.019538326, 0.0063867434, 0.007194028, 9.5205056E-4, 0.027440857, 0.021527583, -0.017658068, -0.0049493005, -0.0041317972, 0.025342599, -0.0024150405, 0.007957031, 0.0057872413, -0.024388844, -0.008794972, -0.008474783, 0.016350063, 0.015328185, 0.0036651392, -0.017794318, 0.0022106648, 0.0019722264, 0.027222855, -0.013679553, 0.0014365915, 0.0105389785, 0.010532166, 0.042292163, 0.026282728, -0.015328185, -0.012923363, -0.024266219, -0.012746237, -0.024702221, -0.002873183, -0.0012518017, 0.021282332, -2.86339E-4, 0.010007601, -0.03289088, 0.019742701, -0.00548749, -0.029157612, -0.013298051, 0.017780693, 0.04888669, 0.014578806, -0.0064548687, 0.007861655, 0.005214989, -0.0016988738, -0.024416095, 0.00771178, 0.010893229, 0.017862445, 0.03646064, 0.029048612, -0.02855811, 0.005266083, 0.01572331, 0.018884324, 0.011104418, 0.02327159, -0.017399192, -0.024824847, -0.014551557, -0.014388056, 0.010709291, -0.0069079017, 0.030465618, -0.032836378, -0.0059916168, -0.0019347575, 0.008692783, -0.0041862973, -0.007882093, 0.022644838, -0.0385044, 0.00782078, -0.029157612, -0.0054840837, -0.01367274, -0.010934105, 0.018298445, 0.018461946, 0.013441115, 0.016568065, 0.02456597, -0.0069521833, 4.1024183E-4, 7.067996E-5, -0.012575923, -0.014251805, 0.0031541998, -0.016200189, 0.024307095, -0.034498632, 0.00816822, -0.013032363, -0.0057429597, -0.033926383, 0.011717546, -0.030002367, 0.0388859, -0.0023707591, -0.060549736, -0.006420806, -0.0035867952, 0.0074869664, 7.740733E-4, -4.3110517E-4, -0.026405353, 0.0070373397, -0.018979698, 6.27604E-4, -0.019075073, -0.015096558, -0.0071122777, -0.01156767, -0.00881541, 0.008590596, 0.16895066, -0.005800866, 0.01555981, 0.037141893, 0.0037945772, 0.024334345, 0.020383079, 0.014715057, -0.004918644, -0.0049935817, -0.010559416, 0.02100983, -0.020260453, 0.0017286786, 0.0072280904, -0.012058171, -0.04180166, -0.028803362, -0.011308794, -0.03569764, -0.01922495, -0.008256782, -0.012923363, -0.017835194, 0.00610743, 0.0036412955, -0.014646932, 0.005579459, 0.027713357, 0.012337485, -0.0038933589, -0.020042453, -0.02054658, 0.012153547, -0.019783577, -0.012664487, 0.008113719, 0.002355431, -0.007207653, 0.012051359, 0.019265825, 0.0038184212, -0.021582084, -0.01404743, 5.62885E-4, 0.016677065, -0.0067137447, -0.0020079922, -0.006540025, 0.018652698, -0.038858652, -0.011295169, 0.024688596, 0.015123809, -0.0044111107, -0.0046631745, 0.013604615, -0.007480154, -0.004073891, 0.0062062116, 7.5831934E-4, 0.02451147, -0.026241852, 0.026514353, -0.0045507676, 0.019974327, -0.031746373, 0.003981922, 0.020124203, -0.024143593, -0.009128786, -0.02057383, -0.02456597, -0.014061054, -0.015682437, -0.007807155, 0.0030111368, 0.019115949, 0.014783182, 0.026650604, -0.023612216, -0.0120377345, 0.022849213, -0.012800737, -0.014578806, -0.017262941, 0.004336173, -0.02173196, -0.0012381767, -0.017440068, -0.006042711, -0.0032052938, -0.007807155, 0.00906066, -0.0010968167, 0.008576971, 0.029620865, 0.01561431, -0.0010934105, -0.015069309, -0.028912362, 0.032482125, 0.025764976, -0.005330802, -0.024334345, -0.011179356, 0.0015566623, 0.016527189, 0.02809486, -0.022181585, 0.0034624666, -0.03365388, -0.004687018, 2.8953239E-4, -0.004595049, 0.02456597, -8.830737E-4, 5.847862E-6, 0.032454874, -0.030274868, -0.010872792, -0.022222461, 0.021282332, -0.0067852763, 0.018080445, -0.029184863, -0.008760909, 0.003961484, -0.018189445, -0.039485402, 0.014142805, -0.037877645, 0.013979305, -0.003906984, 0.004700643, 0.008420283, 0.017521817, -5.156231E-4, 0.0048982063, -0.004332767, -6.8082684E-4, -0.004751737, 0.021050707, 0.018679947, -0.0016350063, -0.024075469, -0.0044213296, -0.015028433, -0.001092559, -0.03545239, -0.024157219, -0.020096952, 0.0030724495, -0.0012764971, 0.03640614, 0.007888906, -0.030601868, -0.048150938, -0.017371943, 0.03425338, -0.037305396, 0.032945376, 0.017535442, -0.018366572, -0.007548279, -0.013216301, -0.17429167, 0.027481731, 0.009796413, -0.029811615, 0.018816197, 0.0050685196, 0.014619682, 0.012923363, -0.018925197, -0.0037128269, 0.0060222736, 0.0096806, -0.06768926, -0.015573435, 0.0012322157, 7.340497E-4, -0.010552604, 0.023639467, 0.022154337, -0.012255735, 0.040711656, -0.01156767, -0.011717546, -0.0025598067, 0.030383868, 0.0035016385, 0.025982976, 0.001676733, -0.017589943, -0.016009437, -0.029539114, -0.005422771, 0.024061844, -0.0056952722, 0.0046393303, -0.0113360435, -0.02057383, -0.026282728, 0.009905414, -0.015464435, 0.048041936, 0.011928733, 0.02184096, 0.0097896, -0.004956113, 0.020955332, 0.027413607, -0.015123809, 0.01345474, -0.0052694893, 0.0033091847, -0.02795861, 0.02607835, -0.010886417, 0.0015055684, 0.02839461, 0.0014680994, 0.009285473, -0.008835847, -0.015900437, -0.023203464, 6.6038925E-4, 0.004441767, 0.0014050836, -0.007854843, -0.012691737, -0.007132715, 0.015082933, -0.026950354, 0.013686365, -0.029266613, 0.009251411, 0.0025325567, 0.01669069, 0.0024950877, -0.01809407, -0.03640614, 0.008931222, 0.0018342728, 0.022590337, -0.029947866, 0.04610718, -0.009939476, -4.2109928E-4, 0.011152105, -0.017998695, 0.0061551174, 8.2218676E-4, -0.0034522477, 0.009128786, 0.010491291, -0.0038490775, -0.027754232, -0.0076164044, 0.011669857, 0.0032546844, -0.0056407717, 0.0052456455, 0.012146735, -0.010511728, 0.0064071813, -0.0190342, -0.023939218, 0.009946289, 0.02071008, 0.015341809, 0.008447533, 0.0061551174, 0.016309189, 0.010423166, 0.0071667777, 0.0077662803, 0.037877645, 0.004915238, -0.022358712, 0.0050310506, -0.0056407717, -0.01922495, -0.0011351372, 0.009660162, 0.04697918, 0.013270802, 0.0034607635, -0.020028828, -0.017508192, -0.0023707591, -0.091069855, -0.016023062, -0.0075619044, 0.044036172, -0.040275656, 0.019783577, -0.010545791, 0.020110577, -0.021200582, 0.023448715, -0.0033228097, -0.007807155, 0.011158918, 8.341087E-4, 0.018788949, 0.008454345, -0.022876464, -0.0035493262, -4.4196265E-4, 0.02054658, 0.0015507013, -0.0036855768, -0.0010482775, -0.020042453, -0.015273685, 0.020832706, -0.01688144, 0.044281423, 0.00683637, 0.011656233, 0.0064821187, -0.01663619, 0.009408099, -0.04324592, -0.022399588, -0.014674182, -0.012943801, -0.025410723, 0.012943801, -0.07188578, 0.012548674, 0.014238181, 0.0033551692, -0.022522213, -0.01561431, 0.0072485283, -0.03602464, 0.03853165, -0.0046052677, -0.019892577, -0.025247224, -0.01561431, -0.014074679, -0.0072008404, 0.008474783, 0.025219973, 0.007841218, 0.010736542, -0.014415306, -0.019769952, 0.007282591, -0.01094773, -0.026854979, 3.3530404E-4, 0.0070100897, 0.016840566, -0.010545791, -0.0097896, 0.01938845, -0.030302117, -0.022508588, 0.025056472, -0.027767858, -0.008563345, -0.017753445, 0.022072585, -0.014388056, 0.006097211, 0.014456181, -0.028885111, -0.010525353, -0.04103866, 0.007003277, -0.010498103, 0.02712748, 0.006172149, 0.026555227, 0.007984281, 0.012330673, -0.037032895, -0.008604221, 0.012126297, 0.016295563, -0.016854191, -0.015518935, 0.039730653, 0.0117243575, -0.0066183694, 0.030438367, 0.014783182, -0.010062101, -0.004918644, -0.07281228, 0.020928081, -0.011492732, -0.009162848, -0.011124856, 0.0044042985, 0.007834406, 0.01092048, 0.004472424, 0.02324434, -0.013713616, -0.011608545, 1.5189804E-4, -0.014306306, -0.008209094, -0.008066031, 0.018134946, -0.013815803, -0.010102977, 0.0035867952, -0.007132715, 0.002084633, 0.020560205, 0.01547806, -0.002471244, 0.005691866, -0.0012620206, 0.01021879, -0.019987952, -0.008290845, 0.011867421, -0.016418189, 0.00833172, -2.66753E-4, -0.01404743, -0.032345876, 0.0016486314, -0.003661733, 0.022222461, 0.010041664, -0.0026875418, -0.02456597, 0.02073733, -0.0062164306, 0.0038252336, 0.02863986, -0.035588637, 0.010075727, 0.008556534, 0.026473477, 0.024879346, 0.012173985, 0.0029719647, -0.02489297, 0.026759604, -0.009530724, 0.048314437, 0.010498103, -0.0035254825, -0.012453298, 0.017862445, 0.0027250105, 0.0257786, -0.03656964, -0.009959914, 0.016145688, 0.011560857, -4.3898218E-4, 0.014088305, -0.025846725, 2.390771E-4, 2.9293864E-4, 0.021309583, 0.03103787, 0.019729076, 0.0068397764, -0.0076709045, -0.0014536228, -0.011942359, 0.026010226, 0.017072191, -0.015028433, -0.021677459, 0.010900042, 0.0028425267, 0.029075863, -0.002198743, 4.1130628E-4, 0.00419311, 0.015886812, -0.0067137447, 0.0012799033, 0.011737983, 0.010940918, 0.009476224, 0.01361824, -0.009803225, -0.015464435, -0.0043395795, 0.025465224, -0.012010484, -0.005218395, -0.005664616, -0.017576318, -0.0065843067, -5.926898E-4, -0.023203464, -0.034934636, 0.017794318, 0.02289009, 0.014483431, -0.011438232, -0.009319536, 0.0036481079, -0.043109667, 0.022903714, -0.009435349, 0.006311806, -0.0011249185, 0.038640648, 0.006689901, 0.0024354781, 0.029430114, -0.014578806, 0.05373721, 0.0030707463, 0.021800084, -0.014469806, 0.008917597, -0.012180797, 0.0045473613, -0.006475306, -0.0151101835, -0.0051298323, 0.0027999484, 0.0032086999, -6.945583E-5, 0.030220367, -0.016758814, 0.074283786, 0.023993718, -0.0011010746, 0.011642608, -0.026023852, 0.0015379279, 0.013270802, 0.019906202, -0.005044676, -0.007868468, 0.011383732, 0.007936593, -0.009469411, -0.022236086, -0.0039580776, -0.0013599506, 0.013229926, 0.001714202, -0.019633701, -0.012718987, 0.009414911, 0.0014468103, 0.01842107, 0.014919433, -0.0049288627, -0.025533348, 0.033463128, 0.002886808, -0.0011164028, -0.029266613, -0.00385589, -0.021650208, -0.009285473, 0.0042884853, 0.027359106, -0.012841612, -0.0075891544, -0.022208836, 0.014224555, 0.021255082, -0.010763791, 0.027781483, -0.01674519, -0.0023026338, 0.010198352, -0.01773982, -0.0030009178, -0.023530466, -0.012303423 ], + "id" : "f8426191-a44c-4d7b-b1ea-e05e512933b9", + "metadata" : { + "source" : "movies.csv" + } + }, + "bd0fce70-e84c-40bc-82a0-784a5bca2c2a" : { + "text" : "188927,Star Trek Beyond,Action-Adventure-Science Fiction,en,The USS Enterprise crew explores the furthest reaches of uncharted space where they encounter a mysterious new enemy who puts them and everything the Federation stands for to the test.,34.073,Paramount-Bad Robot-Perfect Storm Entertainment-Alibaba Pictures Group-Skydance Media-Sneaky Shark-Huahua Media,7/7/16,185000000,343471816,122,Released,,6.8,5989,Chris Pine-Zachary Quinto-Karl Urban-Zoe Salda��a-Simon Pegg-John Cho-Anton Yelchin-Idris Elba-Sofia Boutella-Joe Taslim-Lydia Wilson-Deep Roy-Melissa Roxburgh-Anita Brown-Doug Jung-Danny Pudi-Kim Kold-Fraser Aitcheson-Matthew MacCaull-Emy Aneke-Shohreh Aghdashloo-Greg Grunberg-Jennifer Cheon-Jarod Joseph-Jeremy Raymond-Harry Han-Gina Brinkman-Adam DiMarco-Fiona Vroom-Richard Laurence-Doug Chapman-Dan Payne-Anthony Shim-Andrea Yu-Shea Whigham-Christian Sloan-Jake Huang-Priya Rajaratnam-Luka Hays-Thomas Cadrot-Jennifer W. Evans-Roxanne Fernandes-Jake Foy-Jodi Haynes-Nathan Jean-Tarun Keram-J.P. Mulcaster-Edwin Rodriguez-Alex Rose-Polina Soldatova-Lia Lam-Ian Nsenga-Sara Forsberg-Jeff Bezos-Christian Mandel-Carlo Ancelotti,spacecraft-sequel-stranded-hatred-lgbt-space opera-gay,/wFovfotIztxGVtUpLlaNG3ACMpl.jpg,/m4F1KRK5jAoQHi2mKDFE2jFKEIb.jpg,33370-13475-54138-193-246655-47933-201-330459-174-200-43074-324668-172-297761-140607-154-199-168-209112-152-271110\r\n7518,Over the Hedge,Family-Comedy-Animation,en,A scheming raccoon fools a mismatched family of forest creatures into helping him repay a debt of food by invading the new suburban sprawl that popped up while they were hibernating ��� and learns a lesson about family himself.,46.832,DreamWorks Animation,5/17/06,80000000,343397247,83,Released,Taking back the neighborhood... One snack at a time.,6.549,4178,Bruce Willis-Garry Shandling-Steve Carell-Wanda Sykes-William Shatner-Nick Nolte-Thomas Haden Church-Allison Janney-Eugene Levy-Catherine O'Hara-Avril Lavigne-Omid Djalili-Sami Kirkpatrick-Shane Baumel-Madison Davenport-Ariel Winter-Michaela Jill Murphy-Paul Butcher-Zoe Randol-Jessica DiCicco-Debra Wilson-Sean Bishop-Jeannie Elias-Kejon Kesse-Sean Yazbeck-Geoffrey Pomeroy-Joel McCrary-Lee Bienstock-Brian Stepanek-Steve Alterman-Erin Lander-Kirk Baily-Jordan Orr-Michelle Ruff-Nicholas Guest-Greyson Spann-David Hiller-April Lawrence-Bridget Hoffman-Marcelo Tubert-Sandy Holt-Talula Holt-Pat Fry,suburbian idyll-garbage-entrapment-squirrel-garden-grizzly bear-turtle-forest-racoon-suburb-animal,/PHNurftfUJTStsTgIkaxglvm2k.", + "embedding" : [ 0.0271038, -0.044124383, -0.0177624, -0.03618419, -0.023133704, 0.025111884, -0.006611102, -0.00667292, -0.019328458, -0.022515524, 0.030112281, 0.025317945, 0.008345443, -0.0052579725, 0.008091302, 0.02450744, 0.01983674, -0.029013293, 0.009698573, -0.011086045, 0.009911502, 0.0025396934, -0.009231502, 0.017364016, 0.010660187, 0.014053314, 0.03192561, -0.0057559516, -2.9921674E-4, -0.006195547, 0.019768054, -0.018256944, 0.007871504, -0.016031493, -0.008558372, -0.012858164, 0.016553512, -0.02513936, 0.035057727, -0.0089979675, 0.006683223, 0.0176525, -0.021210475, -0.0144791715, -0.004145247, 0.01750139, 0.0018390884, -0.0065767583, 0.0037262575, 0.0284638, 0.030909048, 0.03057935, -0.027873093, -0.01044039, -0.0068583745, 0.002759491, -0.009492512, -0.0017635329, -0.0019026236, 0.0025173703, 0.0093894815, -0.006549284, -0.025881177, 0.002625552, -0.030771675, -0.0018305025, -0.015138565, -0.024081582, 0.0040181763, 4.0847165E-4, 0.022309463, 0.021842394, 0.015344625, 0.009210897, 0.019932901, -0.042393476, -0.01572927, 0.008661402, -0.0019180782, 0.010831905, 0.011202813, -0.00677595, -0.03338177, -0.002900299, 0.016416138, 0.021691283, -0.018875126, 0.012947457, -0.034865405, 0.0014621697, 0.0190125, 0.019658154, -0.0010165642, 0.027406022, 0.0052133263, 0.013393921, -0.009025442, 0.027488446, -0.017336542, -0.043602362, -0.0022546432, -0.0011178772, -0.002209997, -0.011862205, -0.008029484, 0.015756745, 0.0075898883, -0.01017938, 0.028079152, -0.0059585776, 0.0015797957, -0.0020193912, 0.015715534, -0.018930074, -0.01012443, -0.014190688, 0.017295329, -0.0060203956, -0.010680793, -0.027296124, 0.036129244, 0.013112305, 0.016649675, -0.03849207, 0.036843587, 0.03365652, 0.0077135246, -0.018641591, 0.004996963, -0.010577763, 0.02088078, -0.009938976, 0.036431465, 0.028051678, -0.017515127, 0.04514095, -0.02633451, 0.0048218113, -0.009884027, -0.029590262, 0.028051678, 0.035442375, -0.030029858, -0.008730089, -0.028930869, -0.00825615, 0.010790692, 0.0019936336, 0.02030381, 0.0048733265, 0.02497451, 0.016718362, -7.4396364E-4, 0.016677149, 0.009059785, 0.016182603, -0.0053506996, -0.007301404, 0.0011874225, -0.013023012, 1.0050807E-4, -0.0121163465, -0.0015488868, -0.019946638, 1.5207681E-4, 0.02638946, 0.016004018, -0.011546247, -0.0052098916, -0.012865033, -0.013084831, 0.0190125, -0.0093894815, 0.009822208, 2.3160322E-4, 0.035277527, -0.005597972, -0.0081874635, -0.03033208, -0.02704885, 0.012549073, -0.0019867648, 0.03338177, 0.03327187, -0.011621802, 0.00784403, 0.015303413, -0.024782188, 0.007315141, -0.0022855524, 0.0041761557, 0.029645212, -0.016910683, 0.011848468, -0.63829243, -0.03266743, 0.0041761557, -0.01849048, 0.013455739, 0.012473518, 0.0020228254, -0.0055018105, -0.028244002, -0.003084036, -0.029260565, 0.01230867, 0.02627956, -0.009080391, -0.025098147, -0.0010552006, 0.015152303, -0.01485008, 0.03296965, 0.017583814, -0.031348642, 0.025867438, 0.010399178, -0.012473518, 0.011999579, 0.008311099, -0.005900194, -0.023559563, -0.0031716118, -0.010241198, -0.02045492, 0.015220989, 0.009980188, -0.006394739, 0.033244397, 0.0014973717, -0.023902997, 0.04118459, 0.034618136, 0.027763193, -0.026554307, -0.0028127234, 0.0089704925, -2.9277737E-4, -0.02523552, 0.013119173, 0.015152303, 0.006532112, -0.0020090882, -0.0033896922, -0.004643226, 9.916653E-4, 0.017432703, 0.005488073, -0.009616149, 0.0010071198, 0.026815316, -0.043739736, 0.013648062, -0.003254036, -0.0144654345, 0.032639954, 0.0067278696, 0.013716749, -0.02560643, 0.036046818, -0.012528467, -0.023133704, 0.007768474, -0.040937316, 0.015303413, 0.012246852, -0.013977759, -0.004838983, 0.0090117045, 0.020125225, 0.03511268, 9.80933E-5, -0.009025442, 0.03860197, 0.013860991, -0.01490503, 0.0010054026, 0.022941383, 0.0177624, 0.0032420156, -0.037310656, 0.0024813097, 0.020949466, -0.0059070624, 0.0039769644, 0.020001588, -7.117667E-4, 4.4088322E-4, -0.0066282735, -0.019314721, -0.022309463, -0.0011908569, 0.029095717, -0.047174077, -0.007301404, -0.013888465, 0.021471485, -0.0065767583, 0.010886854, 0.009272714, 0.008853725, -0.001420099, 0.02305128, -0.023875521, -0.0059482744, 0.0051377704, -0.023463402, 0.001165958, -0.015536948, -0.024740975, 0.02009775, 0.00693393, 0.005244235, -0.0021653506, 4.4109787E-5, 0.0065458496, -0.00297242, -0.018943813, 0.011305843, 0.015701797, -0.0012286346, -0.013593112, -0.015962806, 0.0190125, 0.013517557, 0.0052133263, 0.023765624, -0.017583814, -0.0073769595, 0.018765226, 0.020949466, -0.00862019, -0.0031166624, 0.002228886, -0.035827022, 0.008668271, -0.010261804, -0.019273508, -0.021732494, -0.017418966, -0.03266743, 0.0050450433, -0.008943018, -0.012487255, -0.019644417, 0.010722006, 0.005364437, 0.013002406, 0.0036300959, -0.0018665631, -0.019438356, -0.022886433, 0.00742504, -0.017006844, 0.008805645, 0.018875126, -0.009032311, -0.0028659557, 0.0144379595, -0.0016708057, -0.012631497, -8.1908976E-4, -0.0056391843, -0.0071502933, 0.022295726, -0.008839988, 0.0020983808, 3.2029232E-6, -0.009478775, 0.01583917, -0.027131276, 0.019795528, 0.010976146, -0.003387975, -0.0054571643, 0.012535336, -0.011024227, 0.0023920168, 0.022817746, 0.027351074, 0.015069878, -0.006346658, -0.0032179754, -0.0017163107, -0.017048057, -0.0025001985, -0.0044680745, 0.0032402985, -0.0025190874, 0.034865405, -0.008503422, -0.005333528, 0.00742504, 0.0024349461, 0.04928963, 0.018256944, 0.0048218113, -0.023902997, 0.009629886, -0.022762796, -0.0030170665, -0.03511268, 0.0020090882, -0.010254935, 0.023353502, -0.003946055, -0.020660982, -0.0012578266, 0.00971231, 0.041404385, -0.0165123, 0.0037571664, 0.0014673212, 0.006192113, -0.024548654, -0.012672709, 0.03145854, 0.018147046, -0.02917814, 0.017638763, 0.0032214096, -0.00641191, -0.0017961591, -0.010742611, 0.008503422, 0.0043032262, -7.1777677E-4, 0.018256944, 0.0047428217, 0.0144379595, 0.02704885, 0.0028779758, 0.036376514, -0.01621008, -0.006439385, 0.004766862, 0.02009775, 0.004145247, -0.0018751489, 0.0048115086, 0.014753919, 0.020276336, 0.0027096933, 0.03406864, -0.019273508, 0.022144616, -0.005690699, 0.0132908905, 0.013716749, -0.0014321192, 0.0020314113, 0.022886433, 0.03239268, 0.015509473, 0.003499591, -0.014808868, 0.013682405, 0.014575333, 0.0105502885, -0.0025912086, -0.022474311, 0.001287877, 0.011690489, -0.017322805, -0.017583814, -0.025537742, -0.011924024, 0.0068205968, -0.016526038, -0.016951896, 1.413445E-4, 0.016471088, 0.010976146, 0.023284815, 0.0050553465, -0.019067448, 0.011505035, 0.01849048, -0.024397543, -0.013174123, -0.014685232, -0.0016407553, -0.03395874, -0.0085515035, -0.026938953, 0.027969254, -0.015083616, -0.0044989837, -0.014630282, -0.015330887, 0.013126043, -0.017886035, 0.014767656, 0.02633451, -0.0044165594, 0.006484031, -9.556047E-4, -0.008091302, 0.02590865, -5.55075E-4, -5.537871E-4, -0.012542205, 0.006714132, -0.018105833, -0.0068583745, -0.0011985842, -0.044618927, 0.0049351444, -0.029919958, -0.0041555497, -0.015056141, -9.1009977E-4, 0.0235733, -0.010653319, -0.0013488365, -0.022117142, -0.02175997, 0.015935332, 0.07654454, 0.02020765, 0.014547858, -0.009121603, 0.007878372, 0.011443216, -0.011244025, -0.022419363, -0.0050759525, -0.022982594, 0.017061794, -0.021430273, 0.02415027, -0.0076104943, 0.028711071, 9.1095833E-4, -0.010337359, -0.0056323153, 0.0037434292, -0.009128472, -0.023902997, -0.018517954, 0.0021447444, 0.038409643, 0.012995537, -0.019905427, 0.022776535, 0.01905371, 0.005587669, 0.018861389, -0.0062642335, 0.012995537, 0.013648062, 0.007404434, -0.009698573, 0.0034412073, 0.02633451, 0.0025379763, 0.015907858, 0.0035820152, 0.010316754, -0.008393523, 0.01490503, -0.008908674, 0.014067051, -0.022680372, -0.01936967, 0.025098147, 0.030826624, -0.040580146, 0.027653296, 0.005783426, -0.019094924, -0.0049145385, 0.023545826, -0.0029998948, 5.735346E-4, -0.012906245, -0.025771277, -0.015124828, 0.011443216, -0.038629442, 0.031870663, -0.0060169613, -0.009279583, -0.0040799943, -0.0041143377, -0.011079176, -0.028065415, 0.012652104, -0.024012895, -0.018545428, -0.010035138, -0.0025499964, 0.012693316, -0.0120888725, 0.030441977, -0.015385837, -2.9449453E-4, 0.020702193, -0.023147443, -0.016704623, 0.008427867, -0.01645735, 0.002422926, 0.009959582, -0.01615513, 0.040470246, 0.006703829, 0.0060993857, -0.0013033316, -0.011690489, -0.009465037, -0.008331706, 0.032832276, 0.005041609, 0.030551877, 7.435343E-4, 0.015619372, 0.0065595866, -0.0013617153, -0.01621008, -0.01381291, -0.021787444, -0.002484744, -0.014190688, -0.01832563, -0.0024984814, -0.007850898, -0.024658551, -0.026856529, -0.00991837, 0.014218162, -0.0049935286, 0.021869868, -0.00659393, 0.015921595, -0.007658575, -0.0077135246, 0.007157162, -0.0037537322, -0.001329089, 0.01869654, 0.010138168, -0.0024160573, 0.0177624, -0.02564764, -0.025565216, -0.010330491, 0.026458144, -0.006909889, 0.0077135246, -0.013174123, 5.1042857E-4, -0.026719155, -0.021869868, 0.02035876, 0.0030977735, -0.009574936, 0.013943415, -0.029947434, -0.001885452, 0.003599187, 0.0074799894, -0.0034824193, -0.030524403, -0.0043169637, -0.0060684765, 0.007253323, 0.039316308, -0.012109478, 0.010797561, -0.013496951, -0.00768605, -0.013806041, -0.026925215, -0.02829895, -0.003939186, 0.041404385, 0.015028666, 0.026210872, -0.008585847, 0.032942176, 0.011978974, 4.481812E-4, 0.021787444, -0.017322805, -0.01282382, -0.02917814, -6.9717073E-4, 0.020633508, 0.009272714, 0.0140601825, 0.018408054, 0.012157558, 0.024493704, 0.005742214, 0.021567646, 0.005161811, -0.009465037, -0.018133309, 0.0118416, -0.027694507, -0.0046947408, -0.022749059, -0.026128449, 0.02092199, 0.003557975, -0.0136686675, 0.0015471695, 0.043849636, -0.0028041375, 0.016896946, -0.010996752, 0.021128051, -0.009629886, -0.00872322, -0.031128846, -0.02570259, -0.002393734, -0.009458168, 0.014877555, -0.0046054483, -0.0027182791, 0.0057319114, 0.028683597, -0.019204821, -0.027076326, 0.013613719, -0.025730066, 0.0011436348, -0.02321613, -0.008654534, -0.045580544, -0.013524425, -0.009774128, -0.006370698, 0.006906455, -0.029370464, -0.028985819, 0.0165123, 0.0044921148, 0.026746629, 0.0142319, 0.048492864, 0.029507838, 0.010598369, -0.030194705, 0.002666764, -0.01194463, -0.012906245, 0.03681611, 0.013764829, -0.007301404, -0.0026083803, -0.0069648386, -0.011360792, -0.025427844, -0.03401369, 0.02549653, 0.016869472, 0.023380978, -0.026499357, -0.0045058522, -0.021251688, 0.026087236, 8.0964534E-4, -0.0014716141, 0.014740181, -0.018256944, -0.007988271, 0.011024227, -0.008132514, 0.0125078615, -0.010426653, -0.006978576, -0.0015591898, 0.003214541, 0.02165007, -0.0190125, -0.009423825, 0.03167834, -0.022666635, 0.02030381, -0.0035957526, 0.01621008, 0.009135341, -0.012226245, 0.003243733, 0.03225531, -0.0109418025, 0.0058383755, 0.008311099, 0.008860594, -1.8706413E-4, 0.010296147, -0.04417933, -0.019493306, -0.021581383, -0.009341401, 0.02487835, 0.0060444362, 0.023312291, -0.013098568, -0.0064943344, -0.020963203, 0.0037880756, 0.009684835, 0.007404434, -0.029837534, 0.011827863, 0.005093124, 0.0041727214, -0.0010655036, -0.01458907, 0.0019816135, -0.006054739, 0.01007635, -0.018256944, -0.0056426185, -0.025977338, -0.0077409996, -0.050003972, -0.02009775, -0.00203828, -0.0077547366, 0.013874728, -0.031238744, 0.0065355464, 0.0010921197, -0.01688321, -0.012432306, 0.0034910052, -0.014973717, -0.008524029, 0.02715875, -0.017418966, -0.011037964, -0.011834731, 0.048575286, 0.0076929186, 0.005158377, 0.020386234, -0.01080443, 0.03937126, -0.028244002, 0.006192113, 0.002788683, -0.01910866, -0.0097397845, 0.0023284815, 0.012446043, 0.00620585, -0.009437563, -0.0135519, -0.010825035, -0.008977361, 0.031540968, -0.004660398, 0.0026547438, 0.029370464, 0.014712707, 0.01724038, 0.021141788, -0.009183422, -0.02461734, -0.008682008, -0.005220195, -0.014630282, 1.0936222E-4, 0.0023954513, 0.014369273, 2.0498708E-4, -0.003843025, -0.025111884, -0.0036163586, -0.017776137, -0.02149896, 0.01572927, 0.018531691, 0.039096512, 0.0028350465, 0.002443532, 0.019273508, 5.937113E-4, 0.021073103, -0.018669065, 9.521704E-4, 0.009877158, 0.0072327172, 0.024260169, 0.019342195, -0.025153097, -0.01204766, 0.016594725, 0.015536948, 0.012068266, 0.040085603, -0.036156718, 0.0061096884, 0.0025328249, -0.0046947408, -0.0032488843, -0.0071502933, 0.041102163, -0.048080742, -0.0016622199, 0.011456953, 0.01485008, 0.008791907, -0.010722006, 0.01282382, -0.016718362, 0.013311497, -0.0016038362, -0.030716725, -4.4834218E-5, -0.026760368, -0.0045814076, 0.007809686, -0.006398173, 0.033216923, 0.020125225, -0.0112783685, -0.005402215, -0.014753919, -0.0041624187, -0.007473121, -0.01761129, 0.0044268626, 0.024603602, -0.028546223, 0.017940985, -0.012748265, 0.0117385695, -0.014808868, 0.0223232, -0.0034532275, 0.01703432, 0.0018785832, -0.062642336, -0.019300984, -0.0011427762, 0.0074662524, -0.011298974, 0.0023508049, -0.01645735, -0.0052098916, -0.0034446416, 0.00628484, -0.023078756, -0.037255704, 0.02050987, -0.009265846, -0.011676751, 0.019465832, 0.17759652, -0.009080391, 0.021141788, 0.031705815, 0.015509473, 0.01007635, 0.017927248, 0.027145013, -0.01417695, 0.010694531, -0.007136556, 0.004969488, 0.0101312995, 0.0023851483, 0.012954325, -0.015138565, -0.0307442, -0.015619372, -0.01464402, -0.022350676, -0.0021790878, -0.007157162, -0.01360685, -0.008572109, 0.0056357495, -3.0672937E-4, -0.0077547366, 0.018408054, 0.03242016, 0.019081187, -0.016278766, -0.029397938, -4.589135E-4, -0.002587774, -0.01464402, -0.001748937, -2.7796678E-4, 0.014300587, 0.0048939325, -0.0026908044, 0.0045573674, 0.0043169637, 0.0016630786, -0.0065595866, -0.011690489, 0.020386234, -0.031018946, 0.004615751, -0.022254515, 0.00986342, -0.050306194, -0.008839988, 0.008482817, 0.028628647, -0.017693713, 0.0017094421, 9.916653E-4, 0.0049351444, 0.0059276684, 0.006714132, 0.025166834, 0.0354149, -0.04450903, 0.0076929186, -0.01220564, 0.029782586, -0.028601173, -0.005597972, 0.022707848, -0.021045627, -0.010007663, -0.028601173, -0.02450744, 0.00157722, -0.01054342, -0.0068618087, 0.0020674719, -0.012796346, 0.010996752, 0.024026634, -0.019850478, -0.024425017, -0.0056941337, -0.02217209, -0.008682008, -0.040085603, 0.017528864, -0.016677149, -0.0021790878, -0.0011487863, -0.010323622, -0.010811298, -0.008132514, -0.0023508049, -0.015619372, 0.0066248393, 0.011958367, 0.008063828, 0.0059585776, -0.007981403, -0.03423349, 0.028848445, 0.019273508, -0.0014793414, -0.029919958, -0.008489685, 0.0035511062, -0.003173329, 0.018930074, -0.017322805, -0.017899774, -0.024809662, -0.007988271, -0.018833913, -0.019314721, 0.02191108, 0.025633903, 0.009059785, 0.04341004, -0.02155391, -0.002555148, -0.0144516975, -0.0015866645, -8.740392E-4, -0.0033347427, -0.028958343, -0.029397938, 0.011491297, 0.017391492, -0.04101974, 0.020839566, -0.026664205, 0.008194332, -0.021430273, 0.0010921197, 0.010048875, 0.015454524, -0.008894937, -0.0037502977, 0.0059173657, 0.0019404014, -0.0176525, 0.011237156, 0.0129268505, 0.011202813, -0.032997128, 0.020001588, -0.0027560568, -0.005000397, -0.037063383, -0.017789874, -0.006532112, -0.0026066632, 0.017075531, 0.023504613, -0.0019163609, -0.020001588, -0.047503773, -0.03272238, 0.03338177, -0.055911034, 0.019232297, 0.015344625, -0.014712707, -0.025785014, 3.4257528E-4, -0.17660743, 0.015797958, 0.004959185, -0.019122398, 0.016938157, 0.014808868, 0.0065046377, 0.005223629, 0.0021516131, -0.012865033, 0.027502185, 0.0077547366, -0.047970843, -0.0054709013, 1.873861E-4, 0.01490503, 4.3358526E-4, 0.042146206, 0.03360157, -0.0021636335, 0.038437117, 0.009664229, -0.026774105, 4.018176E-4, 0.0066454452, -7.2636263E-4, 0.008015746, 6.2784005E-5, -0.002331916, -0.011978974, -0.026059762, -0.021059364, 0.028628647, -0.0031492885, -0.006085648, 0.009272714, -0.01417695, -0.01952078, -0.008894937, 0.001536008, 0.024122795, 0.022268252, 0.019603206, 0.01251473, 0.015303413, -0.009265846, 0.017515127, -0.006731304, 0.017020583, -0.01910866, -0.016608462, -0.039536107, 0.001627018, -0.002069189, 0.005385043, 0.022584211, 0.0014810585, 0.0028934304, 0.014204425, -0.012136953, -0.031980563, -0.0040834285, 0.0011110086, -0.011051701, -0.01759755, -0.014891293, -0.011505035, 0.026416933, -0.033052076, 0.009080391, -0.030469453, 0.021210475, 0.023930471, 0.0072121113, 0.005364437, -0.009046048, -0.016402401, 0.024850875, -0.015962806, 0.018531691, -0.025730066, 0.042558324, -0.008029484, 0.020990677, 0.026348246, -0.012583417, -3.3377478E-4, -0.0044371653, 0.0021567647, -0.009870289, -0.0054090833, -0.02082583, -0.020784618, 9.1696845E-4, -0.0062298905, 0.00630888, -0.0026805014, 0.011999579, 0.004186459, -5.039892E-4, -0.0042448426, -0.012535336, -0.017625026, 0.025400368, 0.030084807, 0.017309068, -0.00474969, 0.025427844, 0.021210475, -0.0034137326, -0.014657757, -0.022872696, 0.027721982, 0.022158353, -0.0051171645, 0.0068995864, -0.022570474, -0.022213303, 0.00472565, 0.01972684, 0.03827227, 0.0040696915, -0.008173726, -0.006010093, 0.0039975704, -0.017116744, -0.08714978, -0.012707053, 0.0056014066, 0.026815316, -0.017048057, 0.031046422, -0.014685232, 0.044893675, -0.023229867, 0.019300984, 0.015358362, -0.036074292, 7.0318085E-4, -0.004996963, 0.0013831799, -0.008915544, 0.0014226747, -0.0046260543, -0.0059104967, 0.031348642, -7.4782723E-4, -0.014657757, 0.0018030278, -0.0073700906, -0.025565216, 0.009080391, -0.03711833, 0.029150667, 0.019493306, -4.9932063E-5, 0.0018596944, -0.02975511, 0.017844824, -0.043025393, -0.02415027, -0.027227437, -0.0056529213, -0.020193912, 0.0050759525, -0.05379548, 0.010481602, 0.0040113074, 0.008455342, -0.021952292, -0.0067656473, -0.012624629, -0.018627852, 0.040964793, -0.010028269, -0.03376642, -0.019616943, -0.026705418, -0.03764035, -0.004073126, 0.014822606, 0.030029858, 0.018930074, 0.00841413, -0.003956358, -0.024988249, -0.011230287, 0.004612317, -0.025675116, 0.013435133, 0.013476345, 0.006662617, -0.00914221, -0.02840885, 0.012446043, -0.005539588, -0.025469055, 0.021897344, -0.038244795, -0.00882625, -0.023696937, -0.012040791, -0.015083616, -0.023957947, 0.03634904, -0.02986501, 0.0028024204, -0.021677546, 0.02165007, -0.010921197, 0.009966451, 0.031321168, 0.013964021, 0.0059311027, 0.009128472, -0.03338177, -0.0050553465, 0.030661775, -0.0036953485, -6.885849E-4, 0.009293321, 0.023902997, 0.0017600986, 0.013455739, -0.0027302993, 0.010646449, -0.018243207, 0.015124828, -0.074346565, 0.0235733, -0.008331706, -0.011608065, -0.020111486, -0.013098568, -0.0052476693, -0.004547064, -0.0016802502, 0.007857767, -0.012068266, 0.0085515035, 7.053273E-4, -0.0028625212, -0.009650492, 0.01324281, -0.0022941383, -0.021746233, -0.0078234235, 0.0060410015, -0.023875521, 0.015138565, 0.019067448, 0.008338574, -0.013579375, 0.021444011, 1.0265453E-4, -0.003487571, -0.014657757, -0.024260169, 0.027296124, -0.014286849, -0.01516604, 0.0018906035, -0.01464402, -0.013517557, -0.0017635329, 0.010254935, 0.017803611, 0.009396351, -0.006329486, -0.014671495, -0.0020932294, -0.017982198, -0.025578955, 0.018366843, -0.01708927, 0.014328061, 0.0036060556, 0.022199566, 0.026705418, 0.01625129, -0.006875546, -0.014973717, 0.020894516, -0.033876315, 0.05302619, 0.00333646, -0.008654534, -8.2424126E-4, 0.028793495, 0.015949069, 0.03068925, -0.031238744, -0.008915544, 0.011271499, 0.0125078615, -0.0054502953, 0.007795949, -0.029837534, -0.0018923206, -0.0048218113, 0.016553512, 0.012013317, 0.009169684, 0.0030994907, -0.0081874635, -0.0035373687, -0.0043753474, 0.008757563, 0.0401955, -0.016677149, -0.018160783, 0.012226245, -0.0031819148, 0.020592295, 3.584591E-4, 0.009588674, -0.0041315095, -0.0014776242, -0.017583814, 0.013435133, 0.011292106, 0.01630624, 0.0071434244, 0.022062192, -0.0060066585, -0.004835549, 2.40833E-4, 0.033436723, 2.556436E-4, 7.860343E-4, 0.003152723, -0.023902997, -0.021196738, 0.006480597, -0.017144218, -0.022749059, 7.5383735E-4, 0.017638763, 0.014506646, 0.016484825, -0.008194332, 0.0021842394, -0.029397938, 0.0259636, -0.0153721, -0.02715875, -0.0076311007, 0.03395874, 0.0067450413, 0.0129268505, 0.011869075, -0.023655726, 0.05885083, 0.010529682, 0.033354297, -0.020276336, -0.004708478, 0.0018167652, -0.021622596, -0.0025585822, -0.018627852, 0.012919982, -0.010447258, 0.008043221, -0.00851716, 0.02461734, -0.02773572, 0.06302698, 0.033821367, -0.0120888725, 0.018243207, -0.020399971, 0.0034154498, 0.031348642, 0.017666237, -0.012281195, -0.02560643, 0.005800598, 0.0056632245, 0.0058692847, -0.029040767, 0.015179777, 0.001287877, 0.014959979, 0.014767656, -0.011175338, -0.016951896, 0.009135341, -0.0075280704, 0.033052076, -0.0014475738, -0.030084807, -0.01085251, 0.022185829, -0.006415345, 0.009911502, -0.03775025, 0.011223419, -0.036486413, -0.01490503, -0.008530897, 0.016168866, 0.009485643, 0.00519272, -0.010584632, 0.029947434, -0.00111015, 0.011360792, 1.4853515E-4, -0.022240777, 0.0019197953, 0.008173726, 0.0019197953, -0.0038979745, -0.025469055, -0.021993505 ], + "id" : "bd0fce70-e84c-40bc-82a0-784a5bca2c2a", + "metadata" : { + "source" : "movies.csv" + } + }, + "99070cc6-cb13-42e4-a4a4-c0690ddf9b7d" : { + "text" : "Bellotti-Anne Bergstedt Jordanova-Andres Bjornsson-Jean Burns-Lucas McHugh Carroll-Adam Celentano-Ludovic Coutaud-Angela Dee-Jeff El Eini-Joe Fionda-Jim Ford-Bradley Growden-Tommi Thor Gudmundsson-Jonathan Haltiwanger-Eythor Atli Hilmarsson-David Itchkawitz-Chris Kapcia-Shana Kaplan-Danielle Kay-Austin Kennedy-Chris Kepford-Bjarni Kristj��nsson-Anna Kuchma-Kirk Larsen-Jerry Lobrow-David Madison-Raymond Mamrak-Branden Marlowe-Davy J. Marr-Brian Matthews-Mara McCann-Kevin Medina-Lauren Meley-Jon Michael-R�_is�_n Monaghan-Julian Murdoch-Paul Nandzik-Hayden Oliver-Simon Pearl-Joseph Piazza-Max Abe Plush-Marek Radin-Greg Sammis-Giovanni Sanseviero-Rob Scebelo-Sarah Schoofs-George Schroeder-Max Kolby-Maria Shamkalian-David Shannon-McKenzie Shea-Christian Paul Sherwood-Lawrence Smith-Stephen Stanton-Thomas W. Stewart-Boriana Williams-Ray Zupp,genesis-fairy tale-bible-god-apocalypse-flood-old testament-noah-noah's ark,/trtD17IqSWV9Nbn4OILztc9GuCX.jpg,/5z75Q6nqgwgYfpMB9fVHQcw9gMz.jpg,157353-76649-53182-97020-102651-124905-102382-157350-147441-76285-82700-91314-57201-57158-184315-225574-127585-68724-32657-100402-58595\r\n869,Planet of the Apes,Thriller-Science Fiction-Action-Adventure,en,After a spectacular crash-landing on an uncharted planet brash astronaut Leo Davidson finds himself trapped in a savage world where talking apes dominate the human race. Desperate to find a way home Leo must evade the invincible gorilla army led by Ruthless General Thade.,40.679,Tim Burton Productions-20th Century Fox-The Zanuck Company,7/25/01,100000000,362211740,119,Released,You'll be sorry you were ever born human.,5.725,3501,Mark Wahlberg-Tim Roth-Helena Bonham Carter-Michael Clarke Duncan-Kris Kristofferson-Estella Warren-Paul Giamatti-Cary-Hiroyuki Tagawa-Glenn Shadix-Charlton Heston-Chad Bannon-Linda Harrison-Melody Perkins-Lisa Marie-Lucas Elliot Eberl-Evan Parke-Chris Ellis-Deep Roy-Kevin Grevioux-Dana Schick-Rick Baker-Martin Klebba-David Warner-Erick Avari-Philip Tan-Spitfire Brown-Nils Allen Stewart-Freda Foh Shen-Lisa Lackey,gorilla-space marine-space suit-revolution-chimp-slavery-space travel-time travel-dystopia-alien planet-ape-human subjugation-2020s,/ijUi5kIYpiosJFPosuDwyaDJAc5.jpg,/rF0Y0fYVsNFEvGve8Nq0Ij9EDCM.jpg,871-1705-1687-1688-1685-61791-119450-364-75-881460-2668-8487-395-12098-1452-9480-74-929-8645-8698-414\r\n109439,The Hangover Part III,Comedy,en,This time there's no wedding.", + "embedding" : [ 0.0056199594, -0.037784677, -0.014772854, -0.03582042, -0.023039104, 0.0338016, -0.0052243797, 0.017855648, -0.014991105, -0.020201843, 0.025194332, 0.02837261, 0.019042386, -0.010039539, 0.012835878, 0.018442197, 0.028836392, -0.01349745, 0.0017263982, -0.014827416, 0.0049993084, 0.0051186644, -0.01691444, 0.0068408, 0.009582576, 0.015754983, 0.036311485, -0.014540963, -0.01793749, -0.008504963, 0.01848312, -0.005514244, 0.0019796034, -0.018769573, -0.017228177, -0.009098332, 0.012051539, -0.013060949, 0.02595821, -0.0073045827, 0.006278122, 0.013818007, -0.009800827, -0.0077001625, -0.008941464, 0.0052584815, 0.023270996, -0.0026752779, -0.0108238775, 0.019901749, 0.028727267, 0.03260122, -0.037620988, -0.016423376, -0.005858671, 0.0052073286, -0.015263919, -7.766661E-4, 0.005521064, 0.010291891, 0.014049898, -0.0130200265, -0.033392377, -0.0076456, -0.009425708, -0.010973925, -0.015413966, -0.023366481, -0.010196406, -0.0016377339, 0.024485016, 0.001076761, 0.006394068, -0.004651471, 0.015059308, -0.027786061, -0.019042386, -0.004320685, -0.011444529, 0.009384787, 0.021211253, -0.0033999388, -0.0112672, 0.0051186644, 0.015932312, 0.0020870236, -0.017132692, 0.013217817, -0.030718805, 9.829813E-4, 0.0062849424, 0.009787186, 0.0013563948, 0.016136922, -0.0062235594, 0.02859086, -0.02456686, 0.014854698, -0.014772854, -0.03625692, -0.0035056542, -0.006516834, 0.0051800474, -0.011117152, 0.005282352, -0.0036898034, 0.011389966, 0.0016292084, 0.014650088, 0.008579986, 0.003645471, -4.9447455E-4, 0.0054801423, -0.05191642, -0.011840108, -0.022384353, 0.031946465, -0.013060949, -0.010762495, -0.016437016, 0.030827932, 0.023857545, 0.012187946, -0.02998221, 0.01833307, 0.046160053, -0.012849518, -0.0027451864, -0.010155484, 0.002777583, 0.03080065, -0.0035602169, 0.020979362, 0.011649138, -0.020856597, 0.043131825, -0.01771924, -2.9156948E-4, -0.031291716, -0.020897519, 0.03235569, 0.034920134, -0.029736677, -0.019547092, -0.02859086, 0.0028116847, 0.012726752, -0.0013700356, 0.021593193, 0.003466437, 0.022043334, 0.014418196, 0.009691701, 0.024703268, 0.021756882, 0.00865501, -0.0010869915, 0.008682291, -0.0044161696, -0.020774752, -0.0067078033, -0.014227226, 0.0048288, -0.020856597, -0.0014962119, 0.020829314, 0.016177844, -0.02875455, 0.008968745, -0.014568244, -0.011608217, 0.039094184, -0.018619524, 0.019042386, -0.0058347997, 0.031864624, -0.008873261, -0.0051220744, -0.020188203, -0.016587064, 0.0026872135, 0.0077615455, 0.038330305, 0.034265384, 0.0076046777, 0.0029890134, 0.016041437, -0.023802983, 0.020938441, -0.019656217, -0.007004488, 0.006080332, 0.0045116544, -0.0061110235, -0.6477685, -0.019001463, -0.0013632153, -0.006278122, 0.023175512, 0.02054286, 0.004886773, -0.0124744, -0.03682983, 0.0019557322, -0.025903648, 0.014868339, 0.026803931, -0.01610964, -0.024198562, -0.011662779, -0.0028884136, -0.012181126, 0.024498656, 6.624254E-4, -0.032928597, 0.011744623, 0.032137435, 0.0022984543, 4.330915E-4, 0.007113613, -0.0018073898, -0.012747213, 0.0061485353, 0.009514373, -0.015032027, 0.00786385, 0.0030316405, -0.0060735117, 0.040976595, -0.006417939, -0.018183023, 0.050797883, 0.021756882, 0.028863674, -0.02070655, -0.01267901, -0.0029924237, -7.694195E-5, -0.0127744945, 0.023025464, -0.0022779931, -0.001991539, 0.002191034, 0.00402059, -0.0070385896, 0.010653369, 0.0078911325, 0.0019625525, -0.0066532404, -0.007427349, 0.023025464, -0.04103116, 0.021893287, 0.0022814034, -0.019874467, 0.02313459, 0.0055619865, 0.0058450303, 0.010489681, 0.014595525, -0.007768366, -0.0040001287, 0.02275265, -0.032110155, 0.0093506845, 0.01266537, -0.016969003, -0.011021667, 0.010523783, 0.0076114982, 0.01893326, 0.01207882, -0.0039489763, 0.022056976, 0.004204739, -0.013811186, 0.0027690576, 0.0132792, 0.02032461, -0.0038466712, -0.0434592, 0.012563064, 0.011853749, 0.0022916337, 0.012317532, 0.019833546, 0.003989898, 0.021415863, -0.012235688, -0.0021449965, -0.016859878, 9.855389E-4, 0.018428555, -0.062256053, 0.0052687116, -0.020965721, 0.009582576, -0.0067384946, 0.021006644, 0.0017801084, -0.008204868, -0.006175817, 0.039503403, -0.009814467, -0.01751463, 0.017760163, -0.007986616, -0.0017289559, -0.010312352, -0.028972799, 0.019656217, 0.016014155, -0.0015234932, -0.008470861, 0.006179227, 0.0016573423, 0.002895234, -0.01891962, 0.02739048, 0.032273844, -0.017228177, -0.019083308, -0.00825261, 0.008839159, -6.479322E-5, 0.0035158847, 0.020993004, -0.007106793, -0.0018466067, 0.010967105, 0.009930413, -0.0063497354, 0.01912423, -0.01067383, -0.015318481, -0.005193688, -0.01367478, -0.021470428, -0.018060258, -0.013947593, -0.027608732, 0.0074205287, 0.010053179, -0.009521193, -0.009296122, 6.134042E-4, 5.1877205E-4, 0.008948284, 0.024675986, 0.016409736, -0.035738576, -0.03879409, 0.011226278, -0.016764393, 0.02013364, 0.023461966, 0.0017391864, -0.026217382, 0.018073898, -0.0026872135, -0.02354381, 0.0061314846, -9.96622E-4, -0.017651036, 0.014718291, -0.019969951, -0.0063770167, 0.020747472, -0.029354738, 0.014309071, -0.01469101, 0.013647498, -0.00805482, 9.3097624E-4, -6.044525E-4, -0.0063770167, -0.013899851, -0.010605627, 0.032737628, 0.020638345, 0.018537682, 2.8069958E-4, -0.006540705, 0.0021637524, -0.0237757, 0.0019591423, -0.0012609102, -0.00704541, 0.001672688, 0.025917288, -0.005534705, 0.013749803, -0.0022421863, 0.003340261, 0.045996364, 0.018387634, 0.0048288, -0.014786495, 0.02638107, -0.031318996, -8.6149405E-4, -0.024266766, 0.010851159, -0.011806007, 0.011710522, -0.015741343, -0.01589139, 0.00765242, -0.0058654915, 0.0053300946, -0.0043786573, 0.003931925, -0.019833546, 0.0019830135, 2.6812457E-4, -0.0071954574, 0.006093973, 0.0119219525, -0.03843943, 0.01227661, 0.0088664405, 0.0015286085, 8.269661E-4, -0.0072977627, 0.0038637219, 0.0041365353, 0.0069192336, -0.0035192948, 2.5576272E-4, -0.014186305, 0.010032718, -0.0012566474, 0.026285585, -0.011001207, 0.0032959287, 0.017773803, 0.020174563, 0.008914183, 0.0068339794, -0.012760854, 0.013777085, 0.014936542, -0.0027826983, 0.037593707, -0.018783214, 0.017842006, -0.010435118, 0.017760163, 0.020829314, -0.014118101, 0.005371017, 0.011690061, 0.03743002, 0.015877748, 0.019246995, -0.024921518, 0.022520758, 0.011096692, 0.024253124, -0.006080332, -0.021252176, -0.0014135152, 0.0056472407, -0.027076745, -0.031182589, -0.019628935, -0.009773546, 0.014759214, -0.0072568404, -0.011819648, -0.010244149, 0.015182074, 0.017064488, 0.008532244, 0.0038057491, -0.035929546, 0.0065713963, 0.02275265, -0.014922901, -0.023066387, -0.0055858577, -0.011342224, -0.04716946, -0.016259687, -0.026408352, 0.027417762, -0.0147319315, 0.0026616373, -0.0043718372, 0.0020802033, 0.01307459, -0.001248122, 0.02513977, 0.011628678, 0.006602088, 0.008675471, -0.0043138643, -0.008170766, 0.016941722, -0.02012, 0.010223688, -0.0040717423, -0.004470732, -0.0031902136, 0.017009925, 0.008484501, -0.04976119, 0.011765084, -0.015932312, -0.009548474, -0.012010616, 0.013981694, -0.0014049899, -0.009691701, -0.023802983, -0.02194785, -0.030145898, 6.713771E-4, 0.06984027, 0.040540095, 0.018455837, 0.0185104, 0.0012140203, 0.018564962, -0.014581884, -0.015277559, -0.009630319, -0.008375376, 0.005367607, -0.009528013, 0.009405247, 0.0059507457, 0.0144863995, -0.014390915, -0.013722522, -0.0056847525, 0.0071204337, -9.527161E-5, -0.016123282, -0.016068717, 0.0034579118, 0.025030643, 0.0012148728, -0.032055594, 0.026067335, 0.0048731323, 0.00282021, 0.012072, -0.014213586, 0.013613396, 0.001167983, 0.017364582, 0.008116203, -0.0052005085, 0.037266333, -0.0010085576, 0.045559864, 0.008423119, 0.015195715, 0.014459118, 0.010782956, -0.007938874, 0.008307173, -0.025098847, -0.01670983, 0.02534438, 0.030636963, -0.024375891, 0.021415863, -3.4378772E-4, -0.00906423, -0.017405504, 0.022084257, 0.0037307253, -0.0018670678, 0.002458732, -0.01067383, -0.0027554168, -0.002373478, -0.028290765, 0.0067760064, -0.004671932, -0.0063701966, -0.0077274437, -0.020679267, -0.0014263034, -0.01792385, 8.20572E-4, 0.0018602475, -0.02938202, -0.014650088, 0.003178278, 0.016027797, 0.00845722, 0.018796854, -0.009800827, 0.011621857, 0.02755417, -0.036502454, -0.026953978, 0.014227226, -0.024144, -0.0017869287, 0.018605884, -0.010639729, 0.016559783, -0.0014561423, 0.0043581966, -0.0028730677, -1.9874894E-4, -0.023284636, -0.008880082, 0.0551629, 0.0050606914, 0.024635063, 0.01146499, 0.008238969, -0.007024949, 0.0022779931, -0.025439864, -0.0011210932, -0.00603941, -0.009500732, 0.0040990235, -0.008682291, -0.009398427, -0.016355172, -0.026708446, -0.024334969, -0.011526372, 0.010182766, -0.006516834, 0.010523783, 0.0010315763, 0.02475783, 0.013210996, 0.0012583525, -0.007938874, -0.008634549, -0.020188203, 0.0130268475, 0.024457736, -0.010496502, 0.037375458, -0.016273329, -0.024880596, 0.0022626475, 0.024416814, -0.0072704814, 0.018905979, -0.0027809932, 0.0021245356, -0.027213152, -0.015250278, -0.0052448404, 0.0059916675, -0.0115604745, 0.018278508, -0.014472759, 0.009766725, 0.011812827, 0.010878441, -0.015973233, -0.031728216, 0.0099713355, -0.008532244, 0.014145383, 0.025453504, -0.009643959, 0.005729085, -0.012515321, -0.011389966, -0.012256149, -0.03822118, -0.026626604, -0.015359403, 0.037102643, 0.0042558913, 0.036338765, 0.0042252, 0.03183734, 0.017173612, -0.0061314846, 0.016559783, -0.028536297, -0.006486142, -0.03543848, 0.0077615455, 0.014022617, 0.020461017, 0.019915389, -0.004446861, 0.004289993, 0.007788827, 0.003966027, 7.2849746E-4, 0.0026053695, -0.023243714, -0.02513977, 0.014077179, -0.015959593, -0.011226278, -0.017487349, -0.0076387795, 0.046678398, -0.0030879085, -0.013620216, -0.004709444, 0.02014728, -0.0029770778, 0.012017437, -0.015413966, 0.006758956, -0.021620475, -0.0077206236, -0.013565654, -0.007932054, 0.009698522, -0.01893326, 0.024184922, -0.007911593, -0.027499607, -0.007768366, 0.013770265, -0.008225328, -0.018974183, 0.034892853, -0.0062849424, 0.0037136746, -0.032301124, -0.0021978542, -0.023298277, -0.016423376, -6.3088135E-4, -0.0056813424, 0.009268841, -0.01530484, -0.033092283, 0.019669857, 0.0073932474, 0.049270127, 0.015618576, 0.046842087, 0.016982643, 0.02273901, -0.029354738, 0.010025898, -0.0042558913, 0.0012353339, 0.013538373, 0.01871501, 1.6486038E-4, -0.018824136, 0.0056915726, 9.846864E-4, -0.055735808, -0.04026728, 0.022970902, 0.037593707, 0.027840624, -0.01751463, 0.008955105, -0.018032975, 0.011826468, -0.013197356, -0.005248251, 0.012324353, -0.034674603, -0.002312095, -0.0021654577, -0.01429543, 0.018701369, 0.006063281, -0.026899416, 0.01771924, -0.018578604, 0.0136338575, -0.00965078, -0.008504963, 0.017978413, -0.015618576, 0.011751444, -2.551233E-4, 0.022779932, 0.014240867, 0.003139061, 0.017746521, 0.030036772, -0.017732881, 0.008163946, 0.012945003, 2.5000804E-4, 0.006537295, 0.011601397, -0.02032461, -8.295237E-4, -0.015154793, -0.004532115, 0.022397993, 0.0043922984, 0.0054426305, 4.1476186E-4, -0.014049898, -0.0033061593, -0.002358132, -0.014854698, 0.0041194847, -0.043213665, 0.027213152, -0.009964515, 0.012399376, -0.007209098, 0.0059268745, 0.0066191386, -0.015795905, 0.011833288, -0.0073182234, -0.010353275, -0.024334969, -0.023107309, -0.029900365, -0.022207024, -0.0029702575, -3.769836E-5, 0.008518604, -0.020461017, 0.0012907492, -6.2619237E-4, 0.008068461, -0.011512732, -0.012522142, -0.028345328, 0.010298711, 0.013858928, -0.005548346, -0.012556244, -0.00825261, 0.029354738, 0.003539756, -0.009957694, -0.001417778, 0.013422427, 0.030827932, -0.019860826, 0.008723213, 0.0043343254, -0.037566427, -0.013395146, 0.01610964, 0.03442907, 0.024539579, -0.0040137693, -0.02820892, -0.017037207, -0.013047309, 0.03481101, -0.005210739, 0.0062337895, 0.03884865, 0.043595605, 0.028263485, 0.026312867, -0.0066464203, -0.028536297, 0.009978156, 0.0011765085, -0.018905979, -0.0023820032, 0.014772854, 0.004794698, -0.0020307559, -0.008293532, -0.026790291, -0.00624402, -0.016559783, -0.01913787, 0.0019625525, 0.013742982, 0.03080065, 0.021306738, -0.004648061, 0.014950182, 0.0127744945, 0.0044809626, -0.018060258, -0.004266122, 0.02598549, 0.008900542, 0.025317097, 0.021811444, -0.036529735, -0.013702061, 0.0096030375, 0.016764393, 0.01289044, 0.017228177, -0.01934248, 0.008266251, -2.6876398E-4, 0.0071749967, 0.0016675729, -0.0071340743, 0.042122412, -0.027104026, 0.012003796, 1.3225063E-4, 0.02820892, -0.006114434, 0.0019642576, 0.0052277897, -0.0138793895, 0.002579793, -0.0073114033, -0.02294362, 7.762398E-4, -0.022848135, 0.0103328135, -4.1689322E-4, -0.007918414, 0.026012773, 0.024266766, -0.021211253, 0.011833288, -0.0030060643, 0.019901749, -0.015250278, -0.0015141153, 0.02013364, 0.0058995932, -0.021033926, 0.009391607, -0.03565673, 0.0050436407, -0.02133402, 0.0018227355, -7.4640085E-4, 0.029163769, 0.007488732, -0.05178001, -5.2729744E-4, -0.001268583, 0.0055926777, -0.0047230846, -0.005582447, -0.017623756, -0.0022251355, -0.006520244, 0.005882542, -0.03140084, -0.024512298, 0.0032072642, -0.014677369, -0.023721138, 0.0154685285, 0.18682273, -0.02013364, 0.012372094, 0.04954294, -0.0010042948, 0.02314823, 0.03080065, 0.024075797, -0.014800135, 0.0066396, 0.0066702915, 0.0070385896, -0.0022183151, -0.0031492915, 0.013981694, -0.015018386, -0.027281355, -0.027786061, -0.020856597, -0.027745139, -0.01751463, 0.0057222643, -0.0147319315, -0.009384787, 9.736034E-4, -0.0037989288, -0.013299661, -8.1076776E-4, 0.014977464, 0.007747905, -0.002637766, -0.023693858, -0.0037511864, 0.0015541847, -0.02477147, -0.007086332, -7.097415E-4, 0.016191484, 0.018783214, -0.010557884, 4.6804576E-4, -0.0010341338, -5.925169E-4, -0.0069737965, 0.0023615423, 0.01729638, -0.012938183, -0.005098203, -0.010496502, 0.003466437, -0.039176024, 0.021852365, 0.016587064, 0.038002927, 4.7955508E-4, -0.011076231, 0.0012506796, -8.874966E-4, -0.0084981425, 0.008948284, 0.0111853555, 0.031537246, -0.021033926, 0.008893722, 0.0027861085, 0.009296122, -0.038957775, -0.009637139, 0.013552013, -0.037320893, -0.010182766, -0.042449787, -0.017228177, 0.008545885, -1.389644E-4, -0.01128766, -0.0060087186, 0.007570576, 0.016805315, 0.013729342, -0.030255023, -0.0131427925, -0.012310712, -0.01349063, -0.028672704, -0.021074846, 0.02396667, -0.011635498, -0.0089892065, -0.015373044, -0.011205817, -0.022670805, -0.011117152, -0.00865501, -0.006922644, 0.0039421557, 0.012426658, 0.01692808, -0.012024257, -0.007475091, -0.038712244, 0.025630834, 0.01971078, -0.015618576, -0.028836392, -0.018633166, 0.0012072, 0.004716264, 0.035547607, -0.018264867, -0.02014728, -0.0225344, 0.0050606914, -0.006786237, 0.004327505, 0.014431837, 0.025044285, -0.020761112, 0.044304922, -0.025808163, 0.0041910983, -0.011383145, 0.01128084, -0.003200444, -0.0012421542, -0.03824846, -0.028890956, 0.013565654, 0.01106941, -0.033965286, 0.019738061, -0.024826033, -0.0055381153, -0.0152912, -0.008811878, 0.007345505, 0.016573424, -0.010810237, 0.0152912, -0.0019369762, -0.0141317425, -0.00744781, 0.0062849424, -0.007768366, 0.0084981425, -0.024607783, 0.010414657, 1.4322711E-4, -0.016573424, -0.033774316, -0.021006644, -0.0072704814, -1.7455805E-4, 0.0029003492, 0.029682115, 5.5031606E-4, -0.008307173, -0.033501506, -0.021156691, 0.03879409, -0.026476555, 0.023830265, 0.015032027, -0.021374943, -0.0294093, -0.021606833, -0.17591017, 0.012140203, 0.0064145285, -0.027076745, 0.016014155, 0.01087162, 0.013340583, 0.006301993, 0.013981694, -0.019178793, 0.024116717, 0.011505912, -0.04084019, -1.9533877E-4, -0.0098417485, 0.010967105, -0.006278122, 0.034947418, 0.021811444, -0.0040308204, 0.02919105, -0.017814726, -0.024607783, 8.265398E-4, 8.900542E-4, 0.0053573763, 0.021306738, 0.0039455662, -0.0010759084, -0.0067555457, -0.033119567, 0.008730033, 0.021033926, 0.0022694678, -0.020256406, 0.0026701626, -0.011751444, -0.02335284, -0.017078128, -0.0065543456, 0.035929546, 0.012583525, 0.0087436745, -0.0030862032, 0.010912542, 0.026926698, 0.036147796, -0.017596474, 0.012563064, -0.01388621, -0.017378224, -0.041113004, 0.029463863, 0.0023308508, 0.011321763, 0.016396094, 2.197428E-4, 0.004978847, 0.0070931525, -0.0026940338, -0.028727267, -0.011260379, -8.030949E-4, -0.0026820982, -0.008730033, -0.01792385, -0.01673711, 0.019465247, -0.029327458, 0.012528962, -0.0153457625, 0.0073318644, 0.014813776, -0.0054835523, 0.014118101, -0.02276629, -0.042095132, 0.0073591457, -0.0042729424, -0.007468271, -0.022302508, 0.048997313, -0.0058450303, 0.0066702915, 0.016546141, -0.015850468, -0.0010094101, -0.010223688, -0.00704541, -0.011014847, 0.0076728812, -0.01590503, -0.019860826, -0.011785545, 0.0036284202, 0.02070655, -0.016450657, 0.0066327797, 0.017064488, -0.0015550372, 0.0025525119, 0.0073659658, -0.02839989, 0.015509451, 0.03830302, 0.017473709, 0.0091119725, 0.027595092, 0.01608236, 0.013770265, -0.014513681, 0.008416298, 0.012979105, 0.015263919, -0.020651987, 0.00624061, -0.023461966, -0.037129924, 0.014827416, 0.009800827, 0.048888188, -6.8970677E-4, 0.004562807, -0.010305532, -6.858703E-4, -0.010346454, -0.08599083, -0.006905593, -0.0051459456, 0.04648743, -0.018373992, 0.0294093, -0.010591987, 0.036693424, -0.026913058, 0.030718805, 0.0037921085, -0.031291716, 0.01930156, -0.008307173, 0.01568678, -5.081152E-4, -0.02171596, 3.2503178E-4, -0.0076387795, 0.033556066, 0.0077547254, -0.016805315, -0.002535461, -0.017200895, -0.021784162, 0.004897003, -0.03322869, 0.0209248, 0.017528271, -0.0034749627, 0.005671112, -0.03020046, 0.015195715, -0.027717857, -0.024048515, -0.042367946, -0.01289044, -0.021033926, 0.012835878, -0.039339714, 0.018005695, 0.017378224, 0.0043411455, -0.03442907, -0.0011952644, -0.018701369, -0.0342381, 0.023434684, -0.021675037, -0.032110155, -0.0103328135, -0.023189152, -0.035274792, -8.423118E-4, 0.013592935, 0.0076183183, 0.030118616, 0.02497608, 0.0034596168, -0.022234304, 9.3097624E-4, -4.365017E-4, -0.027049463, 0.020638345, 0.018046618, 0.008777776, -0.018469477, -0.0021415865, 0.01127402, -0.006680522, -0.012351634, 0.029736677, -0.025726318, -0.01793749, -0.012999566, 0.010694291, -0.02717223, -0.008423119, 0.024485016, -0.03099162, -0.004552576, -0.035411198, 0.028509017, -0.017610114, -6.6498306E-4, 0.026681166, 0.011076231, 0.01007364, -0.0027485965, -0.032955877, -0.0105783455, 0.016205125, -0.0072431997, -0.021647755, -0.02314823, 0.01590503, 0.018960541, 0.0016991169, -9.036949E-4, -0.006926054, -0.012160664, 0.002641176, -0.07371422, 0.032192, -0.019642577, -0.0070317695, -0.011499091, -0.004794698, -0.0045832675, -0.0024058744, -0.009698522, 0.012106101, -0.0132723795, 0.003099844, -0.01147863, -0.009159715, 0.0036795728, 0.0155912945, 0.004307044, -0.008238969, -0.0038398507, -0.0023513117, 6.5176864E-4, -7.157093E-4, 0.01289044, 0.0022677626, 0.0021279457, 0.013231457, 0.0027196102, 0.017078128, -0.021606833, -8.133254E-4, 0.03077337, -0.030636963, -0.0075364746, 0.011219458, -0.014800135, -0.037457302, 9.642254E-4, -0.0033709526, 0.022711728, 0.013545193, -0.011792365, -0.009984976, -0.011996976, -0.010380556, -0.008689112, 0.021115769, -0.012576705, 0.0024689627, 0.010639729, 0.0016095999, 0.027813341, 0.01350427, -1.3523453E-4, -0.018073898, 0.021756882, -0.016382454, 0.03898506, 0.010851159, 0.01145817, -0.0054187593, 0.027799701, 0.009889491, 0.03322869, -0.028809112, -0.007918414, 0.005255071, 0.017705599, -9.2841865E-4, -0.0052653016, -0.025630834, -0.0064145285, 0.007202278, 0.017391864, 0.028154358, 0.0157277, 0.0067555457, -0.011205817, 0.0060291793, 0.0064963726, 0.016218767, 0.023612013, -0.017569194, -0.02635379, 0.027936108, 0.007966156, 0.003181688, -0.0012447118, 0.009589396, 0.008048, 0.008307173, -0.01930156, 0.017214535, 0.028263485, -0.0010000322, 0.0054392205, 0.011178535, -0.019560732, -0.017814726, 0.0016692779, 0.012863159, -0.0077820066, -0.008532244, -0.008170766, -0.010632908, -0.02636743, 0.0012012322, -0.021265816, -0.027840624, 0.019738061, 0.015986875, 0.027813341, 0.010476041, -0.024307687, 0.013060949, -0.035520326, 0.017350942, 0.001792044, -0.0098417485, -0.0047401353, 0.031209871, 0.019410685, 0.008211688, 0.03344694, 0.0037750576, 0.041904163, 0.013135972, 0.014772854, -0.024116717, -0.008539064, -0.003463027, -0.0016957067, 0.0029122846, -0.026053695, 0.006561166, -0.008075281, 0.0011927068, 0.012740393, 0.024280407, -0.017364582, 0.07174996, 0.01972442, 0.0020972542, 0.017992053, -0.012576705, 0.024457736, 0.026108257, 0.031700935, -0.011587756, -0.003744366, -0.00966442, -0.020270048, 0.003502244, -0.035793137, -0.0012881915, 0.005248251, 0.013456529, 0.001890939, 0.004914054, -0.025726318, -0.0023496067, -0.0084913215, 0.023325559, 0.0077001625, -0.024239484, -0.0053573763, 0.021306738, -0.010817057, 8.9516945E-4, -0.015632216, 0.012945003, -0.024580501, -0.003359017, 0.004992488, 0.012767674, -0.0104624, 8.8238134E-4, 0.0012924542, 0.016396094, -0.0010690881, -1.1642532E-5, -0.010019078, -0.02598549, -0.012692651, 0.017964773, -0.007079512, 0.0030384609, -0.026640244, -0.028836392 ], + "id" : "99070cc6-cb13-42e4-a4a4-c0690ddf9b7d", + "metadata" : { + "source" : "movies.csv" + } + }, + "8f3d61f6-7807-488f-aff5-8c7a51c9c97e" : { + "text" : ",/wXsQvli6tWqja51pYxXNG1LFIGV.jpg,862-12-585-812-10020-9732-425-808-10193-953-10681-14160-9806-38757-2062-863-10144-11430-20352-10674-10191\r\n616037,Thor: Love and Thunder,Fantasy-Action-Comedy,en,After his retirement is interrupted by Gorr the God Butcher a galactic killer who seeks the extinction of the gods Thor Odinson enlists the help of King Valkyrie Korg and ex-girlfriend Jane Foster who now wields Mjolnir as the Mighty Thor. Together they embark upon a harrowing cosmic adventure to uncover the mystery of the God Butcher��s vengeance and stop him before it��s too late.,394.087,Marvel Studios-Kevin Feige Productions,7/6/22,250000000,760928081,119,Released,The one is not the only.,6.625,5488,Chris Hemsworth-Natalie Portman-Christian Bale-Tessa Thompson-Taika Waititi-Jaimie Alexander-Russell Crowe-Chris Pratt-Karen Gillan-Dave Bautista-Pom Klementieff-Sean Gunn-Vin Diesel-Bradley Cooper-Idris Elba-Carly Rees-Kat Dennings-Brett Goldstein-Stellan Skarsg��rd-Luke Hemsworth-Matt Damon-Sam Neill-Melissa McCarthy-Ben Falcone-Suren Jayemanne-Natasha Cheng-Stephen Curry-Bobby Holland Hanton-Daley Pearson-Dianne Close-Greg Mitchell-Briegh Winderbaum-Mayzie Winderbaum-Izaac Winderbaum-Alanis Long Borrello-Luka Bale-Kieron L.", + "embedding" : [ -0.0045154896, -0.05188757, -0.02133366, -0.031094689, -0.0075506014, 0.04261324, -0.021887956, -0.016669456, -0.0128502175, -0.028066335, 0.01611516, 0.022401694, 0.0077128345, -0.009916502, 0.005259058, 0.009619074, 0.021928515, -0.015398631, 0.016372029, -0.049913734, 0.004998809, -5.7035097E-4, -0.028147453, 0.026687354, 0.0012733613, -6.949832E-4, 0.031392116, -0.0076722763, -0.013668143, 0.0035961682, 0.012194525, -0.007935905, -0.0049650106, -0.023645483, -0.015750136, 0.0049683903, 0.010815544, -0.019603172, 0.02630881, -0.0152904745, -0.0010486008, 0.009186452, -0.0022915434, 2.6468508E-4, -0.013661384, 0.011119731, 0.012437875, -0.0109101795, -2.4482844E-4, 0.014087246, 0.027633714, 0.0375029, -0.024294415, -0.014641542, -0.0079697035, -0.012025532, -0.018061958, 0.016561301, 0.013357197, -0.011930897, 0.012072851, -0.0046337843, -0.030445756, -0.002817111, -0.015560864, -0.016223315, -0.02110383, -0.025024464, -0.017372467, -0.008077859, 0.043938145, 0.018562177, -6.016146E-4, 0.007510043, -0.005103585, -0.031932894, -0.015817733, -0.0010063526, -0.0025636218, 0.0063676513, 0.011322523, 0.004218062, -0.00687463, 0.025240775, 0.0033122604, 0.022983031, 0.0030182127, 0.013925012, -0.009172933, 0.0011677408, 0.013539709, 0.010964258, -0.003981472, 0.002582211, 0.004998809, 0.016777612, -0.011417158, 0.010693869, -0.030283522, -0.031635467, -0.0020972015, -0.016372029, -0.00355561, -3.994569E-4, -0.024524245, -0.0044208537, -0.00830769, -0.021996113, 0.035339788, -0.0088687455, 0.0014871373, 0.0075844, 0.018792007, -0.024767594, -0.010991297, -0.018075477, 0.013445073, -0.017656375, -0.0069963047, -0.009233771, 0.024132183, 0.043775912, 0.008747071, -0.026457524, 0.020738805, 0.018508099, -0.011511794, -0.0070503824, 2.782045E-4, 0.0038259986, 0.059864033, 0.013208482, 0.0132896, 0.0034677337, -0.017710453, 0.046074215, -0.043748874, 0.010071975, -0.011025095, -0.018372905, 0.024267375, 0.02607898, -0.0063169533, -0.031878814, -0.04001751, -0.002653188, 0.021901475, 0.005032608, 0.011254925, -0.0077331136, 0.021631088, 0.028607113, 0.008321209, -3.9818944E-5, 0.025619319, -0.010389682, 0.0037110834, -0.022009632, 0.009314887, -0.026863107, 0.020846961, -0.01894072, 0.0034406949, -0.009152654, -0.0078277495, 0.027444443, 0.023266938, -0.02987794, -0.003366338, 0.010565435, -0.001280966, 0.011728105, -0.014736178, 0.01680465, -0.0087267915, 0.01066007, -0.007368089, -0.013539709, -0.023645483, 0.008131937, -0.001870751, -0.005542966, 0.03690804, 0.04296475, -0.0017085179, 0.009889463, 0.027444443, -0.044154458, 0.005164422, -0.022144826, 0.011890339, 0.006049945, -0.0072396547, -0.012965133, -0.6402802, 8.5721636E-4, 0.010524876, -0.017980842, 0.008402325, 0.0069084284, 0.010957498, 0.0136208255, -0.041829117, -0.0076519973, -0.014600984, 0.017845647, 0.018521618, -0.025740994, -0.028012259, -0.006948987, -0.013215243, -0.012951613, 0.008334728, 0.004907553, -0.031581387, 0.0027072658, 0.014303557, 0.011248166, -0.0059654485, -0.0019265187, 0.0012970202, -0.017210234, 0.010511356, 0.01684521, -0.027904103, 0.004238341, 0.010700628, 0.015276955, 0.034799013, 0.0069151884, -0.024497207, 0.030256484, 0.03771921, 0.027011821, -0.030743184, 0.006377791, 0.02514614, 0.010971017, -0.023307497, 0.016939845, 0.0095109185, -0.01232972, 0.009875943, 0.02040082, -0.016399069, 1.5610717E-4, 0.009051258, 0.022077229, -0.015155281, 0.00924729, 0.014668581, -0.02939124, 0.015601422, 0.013147646, -0.01921111, 0.028715268, -0.012356759, 0.00877411, -0.001850472, 8.3820464E-4, -7.9046417E-4, -0.0043836753, 0.01587181, -0.018792007, 0.0074154073, -0.0011533763, -0.008165736, -0.011849781, 0.02063065, 0.009646113, 0.034934208, -0.0023861793, 0.0075235628, 0.018886643, -0.0011964695, -0.013992609, -0.008828187, 0.0061749993, 0.030202406, -0.014479309, -0.033257797, -8.77073E-4, 0.016872248, 0.0065501635, -0.0072193756, 0.019724848, 0.011112971, 0.020887518, 0.0059451694, 0.004380295, -0.0024588462, 0.002536583, 0.020563053, -0.044749312, -0.019129993, -0.03296037, 0.044614118, 0.0026988161, 0.03290629, 0.017223753, -0.04380295, -0.0109236995, 0.01871089, -0.0058741923, -0.016493704, 0.013532949, -0.016290912, -0.003721223, -5.547191E-4, -0.02276672, 0.008415845, 0.01397909, -0.0018639914, -0.0028796385, 0.012897536, 0.008206294, 0.016061082, 0.0052421587, 0.009659632, 0.03482605, -0.004583087, -0.009389244, -0.0067529553, 0.002299993, 0.005096825, 0.0147902565, 0.019224629, -0.008037301, 0.010971017, 0.0072328947, 0.016737053, -0.011815982, 0.025430048, -0.019251667, -0.013661384, -0.007158538, -0.0256058, 9.176313E-4, -0.009186452, -0.0073816087, -0.02987794, 0.0045560477, 0.009537958, 0.0060093864, -0.03950377, 0.019454459, -0.0024977147, 0.0059620687, 0.002041434, 0.0058437735, -0.019143512, -0.016331472, 0.015723096, -0.022212423, 0.0067495755, 0.020035794, 0.0016164168, -0.014736178, 0.027092937, -0.0042282017, -0.024754075, 0.00402203, 0.014303557, -0.009686671, 0.011085932, -0.009558237, -0.015141761, 0.008841707, -0.0074086473, 0.025416527, -0.0093689645, 0.026376408, 0.00947036, -0.014573946, 0.0054618497, -0.013803338, -0.025010945, -2.0680502E-4, 0.014979528, 0.04047717, 0.010051696, -0.0013781369, 0.0011871749, 7.7356485E-4, -0.022077229, -0.016480185, -0.0033832372, -0.016466666, 0.004714901, 0.009666393, 0.0058133546, 0.0051779416, -0.016642418, -0.004478311, 0.028661191, 0.026930705, 0.01684521, -0.0043971944, 0.008145456, -0.018305307, 0.009564997, -0.002512924, 0.008990421, -0.019238148, 0.028931579, -0.024470167, -0.02225298, -0.011396879, -0.0036198273, 0.029066773, -0.0039037354, 0.0038023395, -2.6405137E-4, -0.008720032, 0.009990859, -0.010761466, 0.01209313, 0.018251231, -0.025470605, 0.0115658725, 0.016682977, -0.017710453, 0.0073410505, -0.0023405512, -0.011755144, -0.008050821, 0.0023659002, -0.0027376844, -0.007063902, 0.0026514982, 0.022712642, -0.0030537012, 0.022888394, -0.018440502, 0.007327531, 0.011491516, 0.0053976323, -0.0036367266, -0.004866995, -0.018305307, -7.406113E-4, 0.0010300116, -0.009172933, 0.030580949, -0.01967077, 0.022212423, -0.0050157085, 0.004529009, 0.015817733, -0.016493704, 0.0023591404, 0.007861548, 0.025497645, 0.035393868, 0.023037108, -0.026700873, 0.02037378, 0.010889901, 0.037827365, 0.006225697, -0.023064148, -0.010369402, -0.0073545696, -0.028580075, -0.020792883, -0.016507223, 0.0114374375, 0.011234646, -0.012897536, -0.008415845, -0.013303119, 0.010572194, 0.00830769, 0.023104705, 1.825123E-4, -0.029796824, 8.546814E-4, 0.026457524, -0.0070977006, -0.016791131, -0.01469562, -0.01826475, -0.019711329, -0.007766912, -0.005553106, 0.020454897, -0.018440502, -0.019589653, -0.015817733, -0.010159851, 0.013316638, -0.007996743, 0.02583563, 0.028390802, 0.0018403324, 0.008152216, -0.009436562, -0.010112533, 0.02109031, -0.012302681, 0.011214367, -0.006083743, 2.2602796E-4, -0.010092255, 0.00902422, -0.0054550897, -0.03531275, 0.005597044, -0.018616255, -0.012302681, -0.023415653, 7.613129E-4, -0.0043633957, -0.016723534, -0.0052996166, -0.022104267, -0.029039735, -0.0062628756, 0.06997657, 0.0242133, 0.011957936, 0.014966008, -0.008875506, -1.0139572E-4, -0.0026126297, -0.008916064, -0.0067022573, -0.0021157907, 0.019968197, -0.0061276816, 0.020481937, 0.013073289, 0.010551915, -0.01373574, -0.002940476, 0.006688738, -0.0071990965, -0.027309248, -0.0025450327, -0.02064417, 0.02465944, 0.029283084, 0.007016584, -0.01895424, 0.024078105, 8.0440607E-4, 5.4162217E-4, 0.008436124, -0.007422167, 9.6832914E-4, 0.00924729, -0.010687109, 0.024591843, 0.021252543, 0.018602734, 0.0019146892, 0.0120796105, 0.03271702, -0.008415845, 0.00284415, 0.013668143, -0.0026464283, -0.0019873562, -0.015155281, -0.013722221, 0.025267813, 0.030472795, -0.027822986, 0.018170113, 0.0035961682, -0.023591405, -0.017467104, 0.0038361382, 0.006776614, -0.006337233, 0.009206732, -0.016196277, -9.742439E-4, 0.0023861793, -0.02795818, 9.877633E-4, 0.0016088121, -0.0020955116, -0.030499833, -0.014655062, -0.030067211, -0.012302681, 0.015087684, -0.007746633, -0.03217624, 3.2319885E-4, 0.001422075, 0.022077229, -0.010403201, 0.027606675, -0.013499151, 0.011930897, 0.014803776, -0.042342853, -0.009686671, -0.009815106, -0.028769346, -0.02133366, 0.007631718, 0.0056004236, 0.025321892, -0.016155718, 0.02133366, 0.006962506, 0.006137821, -0.026917184, 9.94523E-4, 0.024821673, 0.01326932, 0.014019649, 0.022442253, 0.0024875752, 0.002230706, -0.00686787, -0.021495894, -0.013093567, -0.019184072, -0.004005131, -0.019860042, 0.00451211, 0.0114374375, -0.01781861, -0.008260371, -0.019792445, -0.011897098, -0.001732177, -0.0036975641, 0.015696058, 0.0120796105, 0.03268998, -5.897851E-4, -0.0021107208, -0.0017913245, -0.014506348, -0.012586589, 0.011356321, 0.025578761, -1.9782728E-4, 0.030607989, -0.019495018, -0.022590967, 0.0034491445, 0.031905852, -0.003886836, 0.0067901337, -0.010274767, -0.005880952, -0.008233333, -0.020657688, 0.0048703747, 0.0059857275, -0.006492706, 0.0040389295, -0.02276672, 0.006512985, -6.9329323E-4, 0.0025855908, -0.0036434864, -0.027850024, 0.008801148, 6.345682E-4, 0.0017642856, 0.030662067, -0.0067630946, 0.020684727, -0.030770222, 0.0035049121, -0.019724848, -0.030175367, -0.028039297, -0.012458154, 0.038800765, 0.011342801, 0.03912523, 1.2258584E-5, 0.028039297, -0.0031855155, -0.007158538, 0.023104705, -0.02371308, -0.009409523, -0.028850462, 0.010349124, 0.015155281, 0.025457086, -0.007253174, 0.004829816, -0.0076722763, 0.0050596464, -0.0037922, 0.019224629, 0.0056815404, -0.021874437, -0.0045898464, 0.010491078, -0.02726869, -0.007165298, -0.01020041, -0.006604241, 0.036826927, -0.008632156, 0.010551915, -0.009463601, 0.02417274, 0.002178318, 0.005570005, -0.019386861, 0.021671645, -0.03625911, 0.0042518605, -0.019359823, -0.0030232824, 0.007537082, -0.010626271, 0.010004378, -0.0031956553, -0.023145264, -0.019062396, 0.01969781, -0.033014446, -0.009788067, 0.019900601, -0.02444313, 0.0010638101, -0.030067211, 0.0026886766, -0.038990036, -0.014073727, -0.0013401135, -0.0041403254, -0.0028137313, -0.018643294, -0.039233387, 0.031175805, 0.0078277495, 0.044451885, 0.009308128, 0.03934154, 0.03509644, 0.023077667, -0.015520305, 0.003058771, -0.008395566, -0.0089971805, 0.026660316, 0.019873561, -0.022144826, -0.0076722763, -0.008564559, -0.017169675, -0.045803826, -0.03198697, 0.010470798, 0.015114723, 0.036232073, -0.016493704, -4.7106761E-4, -0.031446192, 0.011660508, 5.3401745E-4, 0.007908867, 0.0039544334, -0.02537597, -0.028120413, -0.007753393, -0.013472112, 0.010518116, 0.0038564173, -0.03985528, 0.016534263, -0.0064758067, -6.4344035E-4, -0.031689543, 7.300492E-4, 0.03966601, -0.019535575, 0.018575696, 0.0023304117, 0.015006567, 0.013059769, -0.0059755878, 0.010687109, 0.0308243, -0.007246414, 0.026281772, 0.0067225364, -9.495287E-5, 0.005120484, 0.02252337, -0.024754075, -0.018156594, -0.032744057, -0.011457717, 0.029499395, -0.008949863, -0.01777805, -0.0070301034, -0.009260809, -0.019846523, -0.0029201969, -0.011802462, -0.018886643, -0.03769217, -0.0030874996, -0.012985412, -0.012890777, 0.003388307, -0.00782099, 0.0015471297, -4.4318382E-4, 0.017426545, -0.009429802, -1.8789894E-4, -0.011234646, -0.018305307, -0.03893596, -0.027552597, -0.022131307, -0.02537597, -7.038553E-4, 4.123426E-4, -0.0086253965, -0.014276518, -0.005995867, -0.007178817, -0.02655216, -0.024997426, 3.8129016E-4, 0.016399069, 9.5784635E-6, -0.016493704, 0.0025399628, 0.042748436, -0.012856978, -0.012349999, -0.0010038177, 0.016737053, 0.013566747, -0.011910617, 0.020698247, -0.007956184, -0.016142199, 3.5847613E-4, 0.012032293, 0.02346973, 0.003978092, -1.5367789E-4, -0.03271702, -0.004839956, -0.010835823, 0.01781861, -0.005255678, -0.0057220985, 0.033284836, 0.019075915, 0.0402879, 0.026822548, -0.02183388, -0.016209796, -0.007320771, -0.01232296, -0.003673905, -0.011133251, 0.01445227, 0.01422244, 0.005570005, -0.0128502175, -0.026160097, 0.00947036, -0.023023589, -0.0345827, -0.016020523, 0.020427858, 0.03866557, 0.011532074, 1.02293496E-4, 0.038476296, 0.0030993293, 0.010950738, -0.02041434, -0.018913683, 0.011917377, 0.019454459, 0.021144388, 0.01611516, -0.03252775, -0.008449644, 0.0022476052, 0.0059451694, 0.012877257, 0.027457962, -0.00947036, -0.0013485631, -0.015587903, 0.012681225, 0.003366338, -0.013803338, 0.035934646, -0.020522494, -0.0035420905, 0.011302243, 0.012390558, 0.0023743499, 0.019413901, 0.009402763, -0.017467104, -0.013370716, -0.0026599478, -0.01781861, -0.0045594275, -0.03563722, 0.02584915, 0.004931212, -0.003653626, 0.037556976, 0.020928077, -0.006942227, 0.01564198, 0.008138697, 0.011234646, 0.005999247, 0.0028357003, 0.007205856, 0.007915626, -0.021198466, 0.018508099, -0.019846523, 0.0038462777, -0.0066177608, 0.00900394, -0.014181882, 0.028012259, 0.0017287971, -0.027931143, -0.009815106, -0.008030541, 0.024591843, -0.012505473, -0.013140886, -0.023307497, -0.0016873939, -0.018291788, 0.014398193, -0.019400382, -0.013857416, -2.7630336E-4, -0.0054145316, 0.0019822863, 0.012924575, 0.18970464, -0.016818171, 0.0067225364, 0.054915924, -0.00402203, 0.013093567, 0.009118855, 0.014019649, -0.012931335, 0.011640229, 6.333008E-4, 0.010802024, -0.01232972, -0.00426876, 0.012167486, -0.022874875, -0.016317952, -0.008240093, -0.0028627391, -0.014344115, -0.0027444442, 0.010849343, -0.014425231, -0.02533541, 0.0151688, -0.0012987102, 0.004785878, 0.01991412, 0.021874437, 0.002703886, -0.020901037, -0.020792883, 0.004806157, 0.009612314, -0.02203667, -0.0069963047, 0.013181444, 0.0064589074, 0.013431554, 7.093476E-4, 0.005948549, -0.009984098, -0.0040862476, -0.0036434864, 0.034258235, 0.025565242, -0.024754075, 0.010700628, -0.013911493, -0.0012378728, -0.039882317, -0.004927832, 0.018116036, 0.031446192, -0.002183388, -0.00924053, 0.0011913998, -0.005968828, -0.015358072, 0.010605993, 6.15979E-4, 0.02868823, -0.02060361, 0.015317514, -9.4636006E-4, 0.016682977, -0.02966163, -0.0063237133, 0.028363764, -0.02749852, -0.0118227415, -0.008943102, -0.008138697, -0.0018403324, -0.0020448137, 4.4867606E-4, -0.0031821358, 0.0042282017, 0.016561301, 0.01661538, -0.023050627, -0.02395643, -0.0050765458, -9.4636006E-4, -0.02702534, -0.0015107963, 0.0029911739, -0.0132490415, -0.0021157907, -0.01068035, -0.01634499, -7.042778E-4, 0.0030131429, 0.0010452209, -0.0044749314, 7.6427025E-4, 0.022347618, 0.010119293, -0.01845402, -0.0054145316, -0.033095565, 0.016628899, 0.028390802, -0.010707389, -0.035664257, -0.0041301856, 2.4757456E-4, 0.018575696, 0.0115658725, -0.01946798, 0.0067022573, -0.04031494, -0.004877134, -0.020170989, 0.0075032837, 0.019089434, -0.014655062, -0.024051065, 0.03350115, -0.020089872, 0.0074356864, -0.02444313, -0.0032886013, -0.0064082094, -0.0054246713, -0.036935084, -0.024294415, 0.0180214, 0.0025855908, -0.019143512, 0.018359385, -0.016426107, 0.006570443, -0.0123364795, 0.004816297, 0.016020523, 0.020819921, -0.015101203, 0.009747509, -0.015263436, 0.008071099, -0.02371308, 0.010173371, 0.008686233, 0.015358072, -0.03433935, 0.010727667, -0.0013325087, -0.013695182, -0.029418278, -0.02679551, -0.013120607, 0.013255801, -0.018116036, 0.035231635, 0.016520742, -0.012458154, -0.02653864, -0.013532949, 0.023550846, -0.019495018, 0.033068527, 0.011396879, -0.0097677875, -0.048696987, -0.009497399, -0.1730487, 0.022171864, 0.0037786807, -0.018873123, 0.013390996, 0.022442253, 0.01754822, 0.002700506, 0.02419978, -0.009051258, 0.024483686, 0.007286973, -0.062892385, -0.005333415, 0.006442008, 0.0039138747, -0.021239024, 0.019102953, 0.014722659, 0.010044936, 0.04450596, -0.008010262, 0.012992172, -0.005316516, 0.0029810343, -0.009902982, 0.026146578, 0.022361137, 0.006512985, 0.0074289264, -0.028850462, -0.0070030647, 0.017872686, -0.010396441, -0.007881828, 0.0012218185, -0.021671645, -0.011640229, 0.0029049874, -0.0036434864, 0.035150517, 0.021698685, 0.02133366, 0.017440064, 0.024132183, 0.012201285, 0.017169675, -0.006523125, 0.024767594, -0.018886643, 7.110375E-4, -0.03536683, 0.0147767365, -0.0043262173, -0.0076722763, 0.023834754, -0.0213607, 0.003347749, -0.001091694, -0.009078297, -0.02939124, -0.012701504, -0.0067664743, -0.021658126, 0.0044478923, -0.008327968, -0.019778926, 0.01706152, -0.04366776, -0.0025416529, -0.015587903, 0.009193212, 0.029229008, 0.0150336055, 0.016980404, -0.010856102, -0.037611052, 0.0066515594, -0.0039273943, 0.019102953, -0.012377038, 0.03985528, -0.025348932, 0.0023642103, -0.007996743, -0.0093824845, 0.005546346, 0.0021259303, -0.006807033, 0.007868308, 0.0022374657, -0.017223753, -0.025037983, 0.0069963047, 0.0030891898, 0.009375725, 0.002465606, -1.357224E-5, 0.015317514, 9.074917E-4, 0.014817295, -0.020752324, -0.032311436, 0.010335604, 0.03385265, 0.01397909, 0.009463601, 0.024524245, 0.022563929, 0.0076925554, -0.020170989, 0.013607306, 0.021076791, 0.0071179797, -2.2222563E-4, 0.0128637375, -0.025930267, -0.022347618, 0.0044918307, 0.006083743, 0.05172534, 0.0021969073, -0.0101530915, -0.009504159, -0.005117104, -0.018318826, -0.0934463, 0.007848029, 0.016196277, 0.044019263, -0.027850024, 0.020901037, -0.008003502, 0.0153039945, -0.0051610423, 0.028607113, -0.02202315, -0.013789819, 0.007726354, 0.0017896345, 0.017872686, -0.0128502175, -0.025294853, -0.025389489, 0.0013485631, 0.024578324, -0.007063902, -0.017210234, -0.0077871913, -0.012762342, -0.031175805, 0.024280896, -0.027390365, 0.018170113, 0.006350752, 0.006141201, -0.008071099, -0.012924575, 0.02679551, -0.036853965, -0.03742178, -0.032122165, -0.027363326, -0.013897974, 0.013228762, -0.028769346, 0.01112649, 0.020698247, 0.015750136, -0.02205019, -0.01587181, 0.0023743499, -0.03725955, 0.028742308, 0.007908867, -0.021914996, 0.0011035234, -0.038016636, -0.043748874, 0.0026683975, 0.028877502, 0.0071517783, 0.04093683, 0.008902544, -0.0040456895, -0.015587903, 0.0022729542, 0.0024013887, -0.0051373835, 0.025930267, 0.014276518, 0.0019805965, 0.0018470921, -0.020738805, 0.02630881, -0.014411712, -0.018643294, 0.009592036, -0.047480237, -0.021266064, -0.021874437, 0.0032074847, -0.035015322, -0.0040659686, 0.025538202, -0.027795948, 0.004620265, -0.03250071, 0.008929583, -0.031932894, 0.007888587, 0.02729573, 0.013965571, 0.02586267, -0.0022019772, -0.04737208, -0.004356636, 0.025389489, -0.008321209, -0.0058640526, 0.00450535, 0.014154843, 0.010464039, 0.011991734, -0.0015429049, 0.014952489, -0.008828187, -0.0053232755, -0.07343754, 0.026565678, -0.013789819, -0.012998932, -0.0062223175, -0.002705576, -0.0031162286, -0.008503721, 4.6103367E-5, 0.034068964, 0.006725916, 0.007746633, -0.013174684, 6.548474E-5, -0.002724165, 0.008213053, -0.006276395, -0.011275204, -3.7030564E-4, 0.014195401, -0.016209796, -0.0010722597, 0.037016198, 0.010707389, 0.0054652295, 0.026403446, 0.00972047, -0.005860673, -0.009788067, -0.013647865, 0.030716144, -0.02418626, -0.008010262, 0.016250355, -0.003178756, -0.031365078, -0.020968635, -0.0013798268, 0.026362889, 0.006043185, -0.0058336337, -0.031419154, 0.011917377, -0.0011964695, -0.011579392, 0.03674581, -0.020252105, 0.006229077, 0.021982593, 0.017723972, 0.046101253, 0.0037178432, 0.01942742, -0.032635905, 0.021955553, -0.007138259, 0.054483302, 0.0064115897, 0.0037550216, -0.01585829, 0.026389927, 0.0037279828, 0.02607898, -0.04199135, 0.010112533, 8.4031705E-4, 0.010017897, -0.0068239323, 0.01255279, -0.023780677, -0.00355561, 0.010849343, 0.012843458, 0.019981718, 0.012032293, 0.0074086473, -0.0064555276, -0.0050900653, 0.004076108, -0.0042924187, 0.032933332, -0.008787629, -0.02844488, 0.021604048, 0.0028559796, 0.02346973, -0.011505035, 0.011491516, 0.006688738, -0.008814668, -0.025024464, 0.022225942, 0.01658834, 0.0020988914, 0.022699123, 0.009091817, -0.010403201, -0.007989983, 0.0014254549, 0.020441378, -0.011572632, -6.780839E-4, -0.001258152, -0.010322085, -0.03866557, 0.0018808907, -0.018251231, -0.011241406, 0.0075573614, 0.027309248, 0.021482375, -0.020874, -0.029823862, 0.013580267, -0.03793552, 0.015763655, -0.0061006425, -0.0147767365, -0.004572947, 0.04004455, 0.014154843, 0.02179332, 0.03152731, -0.014492828, 0.03385265, 0.014506348, 0.013147646, -0.00947712, -0.009409523, -0.005995867, -0.003129748, 0.009321647, -0.022496331, 0.007368089, -0.0091256155, 0.008395566, 0.014100765, 0.039693046, -0.02726869, 0.07592512, 0.019616693, -0.009030979, 0.017683415, 0.0026244593, 0.012660946, 0.010159851, 0.02461888, -0.012728543, -0.011890339, -3.6734826E-4, -0.017507661, -0.01209989, -0.03314964, 0.0016012074, 0.018305307, 0.019900601, -0.011058893, -0.010099014, -0.019751886, -0.016953364, -0.008104898, 0.020495456, 0.0043126983, -0.022131307, -0.003362958, 0.027403884, 0.001280966, 0.0011702756, -0.028309686, 0.0013722221, -0.03628615, -0.00355223, -0.0037854402, 0.01827827, 0.0051306235, -0.0011668957, 0.0013975711, 0.02346973, 0.016818171, -0.013897974, 0.010078735, -0.026119538, -0.013843896, 0.010295046, -0.008713272, -0.0025332032, -0.006654939, -0.009619074 ], + "id" : "8f3d61f6-7807-488f-aff5-8c7a51c9c97e", + "metadata" : { + "source" : "movies.csv" + } + }, + "a6d5b8b6-f8ed-41b1-b56e-dc08d2317adf" : { + "text" : ",863-920-12-862-2062-585-9806-10193-62211-49013-856245-14160-62177-950-37135-812-9325-897192-12092-10681\r\n181533,Night at the Museum: Secret of the Tomb,Adventure-Comedy-Fantasy-Family,en,When the magic powers of The Tablet of Ahkmenrah begin to die out Larry Daley spans the globe uniting favorite and new characters while embarking on an epic quest to save the magic before it is gone forever.,43.941,Moving Picture Company-21 Laps Entertainment-1492 Pictures-TSG Entertainment,12/17/14,127000000,363204635,98,Released,One Final Night to Save the Day.,6.2,5291,Ben Stiller-Robin Williams-Owen Wilson-Steve Coogan-Ricky Gervais-Dan Stevens-Rebel Wilson-Skyler Gisondo-Rami Malek-Patrick Gallagher-Mizuo Peck-Ben Kingsley-Dick Van Dyke-Mickey Rooney-Bill Cobbs-Andrea Martin-Rachael Harris-Matt Frewer-Brad Garrett-Regina Taufen-Percy Hynes White-Brennan Elliott-Kerry van der Griend-Matthew Harrison-Jody Racicot-Randy Lee-Darryl Quon-Paul Chih-Ping Cheng-Gerald Wong-Anjali Jay-Matty Finochio-Patrick Sabongui-Amir M. Korangy-Louriza Tronco-Sophie Levy-Jin Sangha-James Neate-Alice Eve-Hugh Jackman-Kishore Bhatt-Dmitrious Bistrevsky-Hannah Blamires-Jill Buchanan-Arpit Chaudhary-Michael Denis-Theo Devaney-John Dryden-Jordan Gardiner-Ian Hawes-Nils Hognestad-Tony Honickberg-Todor Jordanov-Zivile Kaminskaite-Shaun Lucas-Sid Man-Craig March-Stuart Matthews-Martyn Mayger-Doris McCarthy-Pete Meads-Leah Perkins-Jacqueline Ryan-Andrea Sandell-Steve Saunders-Bomber Hurley-Smith-Celeste White Steele-Ella Olivia Stiller-Quinn Dempsey Stiller-Winson Ting-Stefano Villabona-Seth Whittaker-Buppha Witt-Brian Woodward-Crystal the Monkey,night watchman-museum-natural history-smithsonian,/xwgy305K6qDs3D20xUO4OZu1HPY.jpg,/taC97dzVlFBl0vWzmp6PCBWOQtM.jpg,18360-1593-32657-950-10527-8355-10192-425-810-102651-57800-270946-118-953-10140-10555-80321-2454-411-278154-76285\r\n13804,Fast & Furious,Action-Crime-Drama-Thriller,en,When a crime brings them back to L.A. fugitive ex-con Dom Toretto reignites his feud with agent Brian O'Conner. But as they are forced to confront a shared enemy Dom and Brian must give in to an uncertain new trust if they hope to outmaneuver him. And the two men will find the best way to get revenge: push the limits of what's possible behind the wheel.,15.183,dentsu-Universal Pictures-Relativity Media-Original Film-One Race,4/2/09,85000000,363164265,107,Released,New model. Original parts.,6.", + "embedding" : [ 0.016423706, -0.03325495, -0.0056885253, -0.04944772, -0.015065253, 0.020363223, -0.0050806175, -0.020675667, -0.015404866, -0.0229307, 0.03263006, 0.027155492, 0.024737444, -0.005800598, 0.00123874, 0.012327968, 0.008632974, -0.023270315, 0.012294007, -0.018040268, -0.018597232, 0.0017125008, -0.020689253, 0.01820328, 0.023161639, 0.0016675021, 4.8012854E-4, -0.0022618256, -0.005318347, -0.023419743, 0.014739224, -0.019914933, -0.009475215, -0.012294007, -0.016423706, -0.0044217673, 0.0048768492, -0.01820328, 0.04064494, -0.009407293, 0.011818549, 0.02268618, -0.009556723, 0.0017226893, -0.011519688, 0.017551223, 0.033934176, 0.006153796, -0.0011725154, 0.025566101, -0.0012735504, 0.02457443, -0.0056138104, -0.028418854, -0.0229307, -0.01930363, -0.0202953, 0.02263184, -0.0023840864, -0.008014877, 0.0100797275, -0.025036303, -0.030402197, 0.01206307, -0.0091627715, -0.007566588, -0.006540955, -0.002499555, 0.002652381, 0.012294007, 0.019167783, 0.016206354, 0.022550333, -0.0077839405, 0.019656828, -0.0341787, -0.013013988, -0.0073899888, 0.010303873, 0.0115400655, 0.017442547, -0.004143284, -0.021028865, 0.021463571, 0.01170308, 0.010161235, 0.006079081, 0.01200194, -0.020132286, 0.02373219, 0.010874423, 0.03387984, 0.0067956652, 0.0066835927, 8.9912664E-4, 0.025579685, -0.015581465, 0.013272094, -0.025022719, -0.031651974, 0.019670412, -0.004496482, 0.004112719, -0.009509177, -0.007980917, -0.0021480552, 0.004961753, -0.014752809, 0.008510713, -0.0071115056, -3.9416386E-4, 0.013951321, 0.015391282, -0.030076168, 0.008646559, -0.012905312, 0.016505213, -0.022971455, -0.018868923, -0.022224305, 0.02504989, 0.036080536, 0.012334761, -0.022400904, 0.02454726, 0.021327725, 0.023283899, -0.0100797275, 0.006564728, -0.0041296994, 0.007980917, -0.005698714, 0.018148944, 0.01793159, -0.04760022, 0.053523082, 4.54233E-4, -0.0032857603, -0.032575723, -0.019779088, 0.03849858, 0.03089124, -0.021952614, -0.017035011, -0.02604156, 0.010772539, -0.0014059998, -0.0049311873, 0.019779088, -0.012239669, 0.04061777, 0.01721161, 0.0033876442, 0.032086678, 0.013543785, 0.009570307, -8.753537E-4, -0.0022635236, -0.020539822, -0.019181369, -0.022523165, 0.0055832453, 0.009733322, -0.019955687, 0.014100751, 0.025403086, 0.0062285108, -0.008014877, -0.022088459, -0.0016666531, -0.0049074143, 0.020431146, -0.0013643971, 0.017469717, -0.0019527774, 0.030239182, 0.011981563, -0.027291337, -0.023093715, -0.02547101, 0.0039463085, 0.013047949, 0.045155004, 0.051322386, -0.009291824, 0.016165601, 0.03002183, -0.032086678, 0.017483301, -0.016545968, 0.0019476832, 0.0010443113, -0.0035251877, -0.0027678497, -0.6403208, -0.0069756606, -0.026055144, -0.0051892935, 0.0047410037, 0.004231584, 0.018352712, -0.003932724, -0.043062985, -0.03526546, -0.030266352, 0.015880326, 0.002825584, -0.01957532, -0.033064768, -0.005831163, -0.0042961105, -0.005501738, 0.01299361, 0.008795989, -0.042818464, 0.025457425, 0.008503921, 0.003586318, 0.0077567715, 0.0028833183, -0.0065239747, -0.0061945496, 0.0032484026, 0.0018559876, -0.018651571, -0.0015206193, 0.016111262, -0.0035965065, 0.025022719, -1.2279149E-4, -0.006140211, 0.050480146, 0.020064363, 0.038471412, -0.030510873, -0.013604915, 0.012450229, 0.012368722, 0.008666935, 0.0027457748, 0.014087167, -0.010976307, -0.0041229073, -0.017483301, -0.0014807147, -0.0031159534, -0.008938626, -0.0039225356, 0.008612597, 0.021205464, 0.013584538, -0.027345676, 0.0242484, -0.00927824, -0.008639767, 0.014182258, 0.014481118, 0.004635724, -0.019262874, 0.029967492, 0.0012310988, -0.0027067193, 0.017116519, -0.03586318, 0.00495496, 0.024261985, -0.023868034, -0.006384733, -0.005352308, 0.015499958, 0.045562543, -0.0065986896, 0.0021752242, 0.022414489, 0.009583891, -0.0016292955, 8.7959884E-4, -0.0023382388, 0.023637097, -0.014657717, -0.020947358, 8.1634586E-4, 0.013013988, 0.006157192, 0.006911134, -0.002901997, 0.020458315, 0.0021140939, -0.013428316, 0.018271204, -0.008096385, -0.008795989, 0.019167783, -0.045426697, -0.015676558, -0.00787224, 0.025307994, -0.008395244, 0.0099710515, 0.004224791, -0.007199805, 6.843211E-4, 0.02822867, 0.0023501252, -0.015418451, -0.014684886, -0.005705506, -0.011655534, -0.0034980187, -0.025606854, 0.039340824, 0.016287861, 0.0029104874, -9.965532E-5, -0.014861485, 0.0030123715, -0.01367963, -0.01200194, 0.013903775, 0.025484594, 0.004584782, -0.008931834, 7.853561E-4, 0.0013041156, 0.008198269, 0.014304519, 0.027685288, -0.015241852, -0.0018797605, 0.011533273, 0.03295609, -0.011940809, 0.019059107, 0.0020478691, -0.02412614, -0.016708981, -0.011675911, -0.006856796, 0.0059330473, -0.024153309, -0.026204575, 0.010738578, 0.0012260046, 0.0027203038, -0.0285547, 0.022822024, -3.9437614E-4, -0.005783617, 0.0018356107, -0.00277634, -0.022944285, -0.015282606, -0.0035014148, -0.015853155, -0.0010553488, 0.011784587, 1.6662285E-4, -0.023772942, 0.02101528, -0.011336297, -0.0063983174, 0.021028865, 0.004092342, -0.027875472, -7.4545154E-4, -0.0035149993, 0.003053125, 0.014616963, 0.0070503755, 0.0070367907, -0.030076168, 0.0059636123, -3.0947276E-4, -0.0056409794, 0.01738821, 0.0022380527, -0.019711165, -0.006160588, 0.022129213, 0.010792916, 0.01589391, -0.009577099, -0.010765746, 0.018271204, -0.0021005091, -0.02131414, -0.014481118, -0.004204415, 0.015540712, 0.030157676, 0.0033434946, -0.008999757, 0.014032828, 0.014019243, 0.04702967, 0.018013097, -0.005705506, -0.005270801, 0.0035693375, -0.020240963, 0.013455485, -0.030429365, 0.020933773, -0.019806257, 0.01544562, -0.009237486, -0.011771003, -0.0029716177, 0.012049486, 0.018420635, -0.025267242, 0.008456375, -0.023650682, -0.0017965552, 0.0063236025, -0.0065239747, 0.029179588, 0.0035353762, -0.029831646, 0.011241205, 0.019140614, -0.00933937, -0.007627718, -0.0022227701, -0.0038749895, 0.0015240154, -0.003959893, 0.005977197, 0.015160345, -0.0016123148, 0.037031453, -0.014970161, 0.0315433, -0.0017965552, -0.009461631, 0.028065655, 0.048197944, -0.009026926, -0.018393464, 0.0063541676, 0.013285679, 0.017170856, -0.0055696606, 0.036678255, -0.015907494, 0.029369771, -0.015404866, 0.019616073, 0.01619277, 0.003433492, 1.2247311E-4, 0.009094848, 0.030510873, 0.01793159, -0.0027967168, -0.0039429124, 0.01439961, -0.0074103656, 0.012735505, -0.0037697095, 0.010867631, -0.013713592, 0.013047949, -0.01825762, -0.016260693, -0.0011079889, 0.014739224, 0.003260289, 0.011866095, -0.028663376, 0.0036746175, 0.011444974, 0.012613243, 0.015635803, 0.009366539, -0.035537153, 0.015785234, 0.0014917521, -0.012606451, -0.01882817, -0.025538933, -0.022265058, -0.018719494, -0.015540712, -0.011377051, 0.02912525, -0.01837988, -0.012565698, -0.022618257, -0.014888654, 0.016654644, -0.0032484026, 0.019534566, 0.03893329, -0.007091129, 0.027848303, -0.019167783, -0.024234816, 0.025036303, -0.009746906, 0.014304519, 0.0078043174, -0.004065173, -0.011003476, -0.0121309925, 0.010989891, -0.039911374, 0.013244925, -0.016505213, 0.0011478935, -0.01607051, -0.005623999, 0.024954798, -0.008850327, -0.019466644, -0.034314543, -0.0150516685, 1.09313085E-4, 0.06623821, 0.03325495, 0.016871996, 0.007369612, -0.02385445, 0.0028952048, -0.021123957, -0.01607051, 0.0015494864, -0.016708981, 0.008952211, -0.011601196, 0.0066224625, 0.017347455, 0.010208781, -0.0014620359, -0.006833023, 0.014358857, -0.0027814342, -0.010881215, -0.038417075, -0.006085873, 0.007301689, 0.031054255, 0.008021669, -0.038389906, 0.01708935, 0.0148343155, -0.0066156704, -0.00993709, -0.0096993605, 0.007145467, 0.011628365, 0.0048530763, -0.0040481924, -4.6192737E-5, 0.024071801, 0.018882507, 0.031407453, 0.0069009457, 0.004285922, 0.0070232064, 0.0051553324, 0.0014696772, 0.025498178, -0.026815878, 0.0037493326, 0.01852931, 0.023705019, -0.03469491, 0.01825762, -0.008198269, -0.0150516685, -0.0069484916, 0.0109423455, 0.0060621, -0.029043743, 5.4380606E-4, -0.020825097, -0.007892617, 0.0012905311, -0.043497693, 0.039313655, -0.009366539, -0.02720983, -0.022224305, -0.00933937, -0.016056925, -0.01577165, 0.014712055, 0.0066632163, -0.027821135, -0.02056699, -0.003178782, 0.0107182, 0.0020325866, 0.021327725, -0.003005579, 0.0038987624, 0.019262874, -0.01825762, -0.026978893, -0.012429853, -0.032168187, -0.014114335, 0.008585428, 0.009821621, 0.0035523567, 7.590361E-4, 0.008069215, 0.0020869246, -0.0073899888, 0.0023688038, -0.0033740597, 0.025131395, -0.014100751, 0.013258509, 0.018053852, 2.9694953E-4, 0.027440768, -0.0014688282, -0.016790489, -0.0054440037, -0.019588904, -0.0063473755, -0.006490013, 0.0022550335, 0.017456131, -0.008748443, -0.021110373, -0.02092019, -0.015880326, 0.012463814, 0.014386026, 0.0050840136, 5.620603E-4, 0.003205951, 0.027046816, -8.1337424E-4, -0.00247748, -0.00277634, 0.0043096947, 0.0095363455, 0.025688361, 0.006819438, 0.021382064, -0.008578636, -0.040943798, 0.006177569, 0.027345676, 0.013088702, -0.0019765503, -0.0022159778, -0.019806257, -0.022006951, -0.027698874, 0.011655534, 0.004965149, -3.2114697E-4, 0.007193013, -0.02544384, -0.011390636, 0.019969271, -0.0017829706, -0.0074782884, -0.02131414, 0.01299361, -0.026517019, 0.018366296, 0.036297888, -0.010106897, 0.0023755962, -0.030782564, -0.008395244, -0.01346907, -0.03972119, -0.0274136, 0.0042010183, 0.031950835, 0.008429206, 0.028907897, -0.0053624967, 0.01661389, 0.002146357, 0.017170856, 0.022441657, -0.030728227, 3.081992E-4, -0.023365406, -0.0028612434, 0.010487264, 0.0031821781, 0.013340017, 0.009074472, -4.28762E-4, 0.028663376, 0.010629902, 0.013041156, -0.006945095, -0.021735262, -0.015459205, -0.0023586154, -0.033010427, -0.022455242, -0.030565212, -0.012850973, 0.03966685, 1.6991286E-4, -0.002703323, -0.007654887, 0.030429365, -0.010371795, 0.016654644, -0.026394758, -0.0051179747, -0.025715532, -0.002448613, -0.031027086, -0.007845071, 0.0077771484, -0.00595682, 0.011662326, 0.0026897385, -0.011180075, 0.016423706, 0.0099167125, -0.01293248, -0.042275082, 0.010052558, -3.4640572E-4, -0.024031049, -0.012436645, -0.005773429, -0.033580977, 0.0062726606, 0.012103824, -0.0067413272, 0.004995714, -0.026503434, -0.04067211, 0.030864071, -0.0103514185, 0.030184845, 0.016926335, 0.044856146, 0.03292892, 0.0029716177, -0.020947358, 0.015377698, -0.028663376, -0.013136248, 0.031869326, 0.028201502, -0.0060179504, -0.013577746, -0.006140211, -0.006517182, -0.025131395, -0.040183064, 0.032412708, 0.014059997, 0.020105116, -0.014603378, -0.0022261662, -0.03205951, 0.011098567, 0.005223255, 0.01924929, 0.015119591, -0.011886471, -0.014019243, 0.007519042, -0.0022261662, -0.0063915253, 0.009869167, -0.029532786, 0.03328212, -0.028989404, 0.0019239102, -0.022876363, -0.008687313, 0.03205951, -0.02828301, 0.007199805, 0.018787416, 0.009549931, -0.012946065, -0.00757338, 0.003559149, 0.031624805, -0.021354895, 0.007539419, -0.0041772453, 0.028038487, -0.00927824, 0.012395891, -0.024207648, -0.006833023, -0.02939694, -0.0025606854, 0.031896494, 0.012056278, 0.01688558, -0.006785477, -0.023283899, -0.022332981, -0.0075597954, 0.001893345, 0.012015524, -0.03798237, 0.014413195, -0.004540632, 0.0010638392, 0.003915743, -0.019371552, 0.002119188, 0.0108948, 0.027400013, -0.0051417476, 0.00727452, 0.001512129, -0.010738578, -0.03800954, -0.019222122, -0.010677448, -0.0050670328, 0.023772942, -0.014059997, 0.007118298, 0.016545968, -6.159739E-4, 0.0031634993, 0.0012557207, -0.021708092, 0.0060654962, 0.026354004, -0.0017252364, 0.0017235383, -0.013604915, 0.035482813, 0.003081992, -0.0055730566, 0.008266192, 0.0047545885, 0.03203234, -0.019018354, 0.020553406, 0.006187757, -0.012355138, -0.017578393, 0.006204738, 0.030429365, -0.0023857846, -0.011716665, -0.03882461, 0.009020134, -0.011084983, 0.032439876, -0.009841998, 0.008429206, 0.033010427, 0.021803183, 0.036134873, 0.013795098, -0.003586318, -0.014223011, 0.01646446, -0.029695801, -0.021680923, -0.013380771, 0.009957466, 0.0075326264, -0.012219292, 5.879558E-4, -0.01895043, 0.008062423, -0.028418854, -0.03412436, -0.008164307, 0.014372442, 0.05151257, 0.006581709, -1.4340709E-5, 0.019045522, -0.016708981, 0.015241852, -0.030809732, 0.013795098, 0.0072269742, -0.012334761, 0.022102043, 0.024289155, -0.019860595, 0.007315274, 0.004204415, 0.021667339, 0.009923506, 0.03537414, -0.025185734, -0.0023348425, 0.0010247836, -0.0019884368, -0.002042775, -0.003027654, 0.018121773, -0.03684127, -0.01068424, -0.0016462762, 0.012633621, -0.009889544, 0.002069944, 0.015336944, -0.024234816, 0.0016955202, -0.016831243, -0.02780755, 0.018570064, -0.007946955, 0.028011318, 0.014087167, -0.005827767, 0.0147256395, 0.021680923, -0.015336944, -0.005022883, -0.010358211, -0.00600097, -0.0016038246, 3.5298575E-4, 0.006863588, 0.02915242, -0.026435511, 0.022197135, -0.020730006, 0.0047715693, -0.0070843366, 0.0028969028, -0.030157676, 0.018542895, 0.015866742, -0.049257535, -0.0073356507, -0.0014696772, -0.017524054, 0.011716665, 0.0033197217, -0.035781674, -8.1634586E-4, -0.009060887, 0.0214364, 0.010602732, -0.013570954, -0.0056613563, -0.021517908, -0.01619277, 0.011397428, 0.17681634, -0.009509177, 0.004523651, 0.036705423, 0.010514433, 0.03322778, 0.011363466, 0.011648742, -0.004696854, 0.015418451, -0.025647609, 0.0044319555, 5.522964E-4, -0.001362699, 0.019031938, -0.020471899, -0.026245328, -0.02673437, -0.022346565, -0.028310178, -0.015065253, -0.0069043417, -0.023908788, 0.002677852, 0.008096385, -0.0029121854, 0.0018322146, -9.466725E-4, 0.030864071, -1.6794947E-5, -0.029342603, -0.035075277, -0.024465753, 0.011995147, -0.027902642, -0.005980593, -0.0069756606, 0.013278887, 0.0018508934, 0.003080294, 0.014209427, -0.011954394, -0.021667339, -0.013102287, 0.0024554052, 0.024139725, -0.0056104143, -0.0069756606, -0.03790086, 0.018746663, -0.051077865, -0.009665399, 0.019656828, 0.009203524, -0.0011708174, -0.017972345, -0.003402927, 1.4231926E-4, -0.0045066704, 0.006163984, 0.011838925, 0.033390794, -0.0353198, -5.5739057E-4, -0.014372442, 0.015472789, -0.04480181, -0.012891727, 0.019344382, -0.03675976, -0.008585428, -0.010860838, -0.021205464, -0.0030650115, -0.0084020365, -0.008938626, -0.0035455646, 0.017985929, 0.0030718038, 0.01850214, -0.02598722, -0.027304921, 0.02106962, -0.010711408, -0.0031193497, -0.02678871, 0.0012310988, -0.00853109, -0.0025080454, -0.015024499, -0.009230694, -0.023297483, -0.020431146, 0.006945095, -0.0074171578, -0.0026065332, 0.038362738, 0.020988112, -0.013333225, -0.016790489, -0.020526238, 0.024886874, 0.019140614, -0.013258509, -0.017238779, -0.018176112, 0.006357564, 0.021626584, 0.041432843, -0.030212013, 0.01242306, -0.016926335, 0.004547424, 7.8365806E-4, -0.008218646, 0.0062285108, 0.018868923, -0.01272192, 0.028609037, -0.027671704, 4.894679E-4, -0.024017464, 0.009549931, 1.6089188E-4, 0.010867631, -0.03298326, -0.012715128, 0.0016471252, 0.004951564, -0.038661595, 0.012083447, -0.016410122, 0.020675667, -0.006259076, -0.017850084, 0.009943882, 0.024628768, 0.007186221, 0.0038478205, 0.0134826545, 0.016355785, -0.006184361, 0.0043436564, 0.010589148, 0.00963823, -0.03700428, 0.0056681484, -0.009672191, -0.0137543455, -0.018760247, -0.010466887, -0.02044473, 0.004666289, 0.022998624, 0.04743721, 3.659335E-4, -0.045209344, -0.029206757, -0.011017061, 0.02089302, -0.031108594, -8.350246E-4, 0.013163418, -0.0053896657, -0.0217896, -3.455567E-4, -0.1743168, 0.022876363, 0.0121242, -0.022455242, 0.020091532, 5.2135973E-5, 0.015377698, 0.009835206, -0.0027848303, -0.00840883, 0.010331041, 0.004649308, -0.046377614, 0.002499555, 0.0084020365, 0.004139888, -0.004988922, 0.028880728, 0.011954394, -0.008035255, 0.030184845, 0.0074103656, -0.020512654, -0.009597477, 0.013992075, 0.0012930783, 0.01631503, -0.006962076, -0.005630791, -0.015201098, -0.03034786, 0.005773429, -0.0063711484, 0.007743187, -0.008510713, 0.0030870864, -0.012633621, 0.0014934501, 0.0062760566, -0.0108880075, 0.024751028, 0.017306702, 0.021993367, 0.004139888, 0.008497128, 0.0163422, 0.023148052, -0.009617853, 0.011900055, -0.02193903, -0.005695318, -0.0443671, 0.023881618, -0.0055119265, -0.0027967168, 0.025104227, -0.011580819, -0.01293248, 0.006788873, -0.011784587, -0.02909808, -0.009617853, 0.014141505, 0.0014229803, -0.01837988, -0.037792187, -0.01607051, 0.0122125, -0.027237, 0.023297483, -0.021898275, -0.0038308399, 0.02373219, 0.002701625, 0.0033468907, -0.013869814, -0.024927627, -0.0012922292, 0.0018814586, 0.020485483, -0.02621816, 0.046133094, -0.012341553, 0.018311957, 0.01793159, -0.014494702, 0.019656828, 3.1732634E-4, 0.0048326994, 0.0016242013, -9.942184E-4, -0.010222365, -0.0014858089, -0.0075326264, 0.0257427, 0.0108948, -5.6673E-4, 0.011037437, 0.014644132, -0.0028935065, -0.009712945, -0.017836498, -0.010738578, 0.02268618, 0.020662082, 0.016654644, 0.011010269, 0.022767685, 0.012008732, 0.013163418, -0.011906848, 0.010419341, 0.017945176, 0.022251474, -0.025946468, -0.0075054574, -0.01837988, -0.0125113595, -0.016410122, 0.02092019, 0.038036708, -9.1440923E-4, -0.013761138, 0.0025097434, -0.0028867144, -0.02795698, -0.083517745, 0.01469847, -0.009380124, 0.04480181, -0.03616204, 0.029505618, -0.010263119, 0.02604156, -0.021300556, 0.046296105, 0.007519042, -0.018896094, -2.4303588E-5, -0.005980593, 0.017985929, 0.007349235, -0.010460095, -0.005878709, -0.02049907, 0.029858815, 0.0024808764, 0.0040719653, 0.005314951, -0.0147799775, -0.0405906, -0.010263119, -0.032005172, 0.029505618, 0.012864558, 0.0135369925, 0.0073899888, -0.017551223, 0.008035255, -0.04792625, -0.033010427, -0.007342443, -0.025280826, -0.02350125, 0.012035901, -0.066020854, 0.008972588, 0.019154198, -0.010358211, -0.019792672, -0.009563515, -0.029532786, -0.014970161, 0.028744884, -0.0055866414, -0.0246016, -0.014195843, 6.732837E-4, -0.03355381, -0.009033718, 0.010786124, 0.013672838, 0.012925688, 0.021028865, -0.0133196395, -0.0043538446, 0.006381337, -0.014331688, -0.017782161, 0.0023688038, 0.011594404, 0.0059092743, -0.0075122495, -0.013577746, 0.025566101, 0.004846284, -0.004248564, 0.023025792, -0.043470524, -0.01676332, -0.016804073, 0.028500361, -0.0039904583, -0.00555268, 0.008395244, -0.026897386, 0.0071047135, -0.022849193, -0.023623513, -0.010310665, -0.003586318, 0.0039802697, 0.023243146, 0.007288105, 0.00844279, -0.02792981, 0.009407293, 0.015581465, -7.7644124E-4, -0.0048802453, -0.010466887, 0.037194464, 0.019901348, 0.006496805, 0.0047376077, 0.0066292547, -0.017972345, -0.008775611, -0.07764922, 0.019317213, 0.0040787575, -0.020050779, 9.3563506E-4, 1.3011441E-4, 0.004217999, -0.019656828, 0.01975192, 0.012817012, -0.0134826545, 0.00772281, -0.0108880075, -0.003837632, -0.017918006, 0.008585428, 0.0043979944, -0.011818549, -0.0037900861, 0.007994501, -0.007091129, 0.0014272255, 0.0043572406, 0.007906201, 0.0148343155, 0.02909808, -0.010337833, 0.014236596, 4.4107297E-4, -0.011261582, 0.039259315, -0.023148052, -0.0017999513, -0.004088946, -0.007301689, -0.0311901, -0.025375918, -0.01140422, 0.012647205, 0.0028850164, -0.028310178, -0.019344382, -0.014209427, -0.0020257942, 7.1361277E-4, 0.01795876, -0.013306055, 0.009672191, 0.005759844, 0.0011385541, 0.019222122, 0.006439071, -0.022047706, 4.4149748E-4, 0.0038036706, -0.021205464, 0.039775528, 0.009509177, 0.018787416, -0.01837988, 0.02223789, -0.0060688923, 0.024737444, -0.04203056, -0.005321743, 0.0074647036, 0.0047613806, 8.6728786E-4, -0.0047851535, -0.035808843, 0.0043538446, -0.0022499391, 0.0039531006, 0.03860726, 0.010208781, 5.374383E-4, -0.0018390069, -0.0100253895, -0.0037323518, 0.020825097, 0.025253657, -0.026326835, -0.016247109, 0.008911457, 0.0052606123, 0.029016573, 0.0039531006, 0.010344626, 0.012905312, 0.015418451, -0.019385137, 0.009835206, 0.008109969, 0.0027152095, -0.009026926, 0.013183795, -0.014562625, 1.7171705E-4, -0.008884288, 0.031570468, 9.7299257E-4, -0.008042047, -0.014793563, -0.012192124, -0.009549931, 0.014888654, -0.011716665, -0.03320061, 0.022740517, 0.019914933, 0.009264655, 0.026014391, -7.2847086E-4, 0.008802781, -0.026652865, 0.002470688, 0.014059997, -0.0037629171, -0.014263765, 0.030048998, 0.003024258, 0.01664106, 0.018882507, -0.022876363, 0.04977375, 0.0038274436, 0.017238779, -0.03469491, 0.009882752, -0.0013465674, -0.008239022, 0.019860595, -0.016002586, 0.011655534, -0.018488556, 0.003481038, 0.008646559, 0.050507315, -0.004591574, 0.0857456, 0.0017473112, -0.00246899, 0.020947358, -0.021219049, 0.0039972505, 0.014223011, 0.0034250016, -0.0148343155, -0.0058583324, 0.007817902, -0.0039497046, 0.0062930374, -0.021137541, -0.0047410037, -0.0099710515, 0.016790489, 0.0059058783, -0.005824371, -0.012640413, 0.0074714962, -0.014182258, 0.0059262547, -2.8867144E-4, -0.0021548474, -0.0029869003, 0.022849193, -0.01155365, -0.019792672, -0.03627072, -0.0039293277, -0.020770758, -0.014358857, 0.016450876, 0.01376793, -0.01065707, -0.016355785, 0.007627718, 0.026177404, 0.016450876, -0.01912703, 0.019847011, -0.01691275, 0.0027457748, 0.013380771, -0.012436645, 0.003228026, -0.011995147, -0.037792187 ], + "id" : "a6d5b8b6-f8ed-41b1-b56e-dc08d2317adf", + "metadata" : { + "source" : "movies.csv" + } + }, + "773e7f40-0b16-48d7-8ef1-fefd1f612c0d" : { + "text" : "Osakalumi-Don Percassi-Jerry Petardi-Dawn Noel-Heather Gehring Plotkin-Donna Marie Portelli-Caity Quinn-Amir Raissi-Cristina Ram-Elizabeth Ramos-Kelvin Roche-Christopher Rodrick-Raymond Rodriguez-Luis Salgado-Alys Schaefer-Tony Scheppler-Barbara Schmidt-Paul J. Schmidt-Thomas Schneider-Nia-Imani E. Scriven-Carlos Sierra Lopez-Solomon Singer-Patrick Taverna-Mic Thompson-Rafael Tillis-Latonya Tolbert-Rainer Trubere-Regine Urbach-Vanessa Villalobos-Snejana Urbin-Robert Vance-Mayte Vicens-Kim Villanueva-Dan Weltner-Isabella Zubor-Jeff Watson-Rolando Morales-Matos-Iba Fitzgerald-Fatima Alonzo-Austin Applegate-Lothar Beer-Jessica Blandino-Joeann Boyd-Alex Blake-Richard Branker-Tyrone Brown-Augustin Bustamante-Leonel Cruz-Afferina English-Robert Fabien-Shandra Fallen-Raphael Gibbs-James E. Graseck-Pinkney Grissom-Kenneth Harry-Michael Hashim-Desmond Hill-Amelia Hoy-Ferdinand Huber-Tony 'Machine' Krasinski-Renita Leonce-Alexander Mattis-Nakima McEachern-Frank Miroddi-Susan Mitchell-Ralph Nader-Sandra Park-Jose Pinto-Carlina Ramirez-�ngel Ramos-Raymond Ramos-Russell Ramos-Tashawna Reid-Eganam Segbefia-Carl Slater-Harvey Thompson-Leslie Torres-Donnell Tribble-Tony Ventura-Lisa Washinton-Kevin Patrick Wright-Wilbur Pauley-Ev Depaolis-Tara Stiles-Tex Allen-Emanuele Ancorini-James Balsamo-AJ Billions-Robert Bizik-Matt Brockman-Peter Conboy-Tom Coughlin-Dono Cunningham-Elli-Eddie Eniel-John Farrer-Nicky Figueredo-Roy William Gardner-Thelma Guti��rrez-Hristo Hristov-Erica Huang-Edward M. Kelahan-Katharine Leonard-Racheline Maltese-Alicia Rachel Marek-Keith Moyer-Loukas Papas-Vincent Petrosini-Shannan Leigh Reeve-Robert Sciglimpaglia-Paul Thornton-Gerrold Vincent-Bill Walters-Steven Weisz-Gail Yudain-Ted Yudain,princess-new york city-magic-fairy tale-poison-queen-prince-musical-portal-female protagonist-manhattan new york city-evil queen-fantasy world-evil witch-true love-part animation-live action and animation-central park new york city,/8KCNzCArLlvLdQoHx6npua2VSVc.jpg,/dOeaWGpouIaONuhRKOj2SrTEWe7.jpg,9880-11130-10330-10096-10947-11887-11224-13649-10882-9820-10198-10521-10625-11247-20048-62764-14442-2976-1824-11283-350\r\n53182,300: Rise of an Empire,Action-Drama-War,en,Greek general Themistocles attempts to unite all of Greece by leading the charge that will change the course of the war. Themistocles faces the massive invading Persian forces led by mortal-turned-god Xerxes and Artemesia the vengeful commander of the Persian navy.,56.011,Warner Bros.", + "embedding" : [ 3.0092022E-4, -0.031417992, -0.0093219755, -0.046623852, -0.019594317, 0.04472312, 1.0225391E-4, -0.0090494435, -0.0134379, -0.047909644, 0.03603006, 0.030271962, 0.02851099, -0.001081391, 0.0075749783, 0.019426605, 0.025701817, -0.009678363, 0.0114393355, -0.02531049, -0.0012482293, -0.015988516, -0.0084135365, 0.014213567, 0.008700044, 0.012515485, 0.02881846, -0.011655963, -0.005681234, -0.031026665, 0.009307999, -0.0064184666, 0.002672905, -0.022235775, -0.006610636, 0.005548462, 0.015890684, -0.0068901554, 0.01714852, 0.0037455612, 0.011208732, 0.009524627, -0.008909684, 0.0036686934, -0.0065267803, 0.0031323654, 0.013948023, -0.001426423, -0.005597378, 0.03999924, 0.017316233, 0.028846413, -0.026107121, -0.020852154, 0.0119634345, 6.6604256E-4, 9.826857E-4, 0.0058279815, -0.016673338, -0.0068062996, 0.013968986, -0.005558944, -0.03180932, -0.003867851, -0.010880296, -0.013221272, -0.018895518, -0.014248506, -0.011956447, -0.0030921844, 0.03843393, 0.019454557, 2.364997E-4, 0.012585365, 0.022683008, -0.037651278, -0.03628163, -0.0064009964, -0.018476238, 0.0033734508, 0.00784751, -0.013975975, -0.01642177, -0.0031026665, 0.012215002, 0.0012220243, -0.010999092, 0.030132202, -0.02881846, 0.0032336912, 0.017889248, 0.042850338, 0.0020300103, -0.0038329111, 0.006250755, 0.014164651, -0.03323487, 0.014912365, -0.012515485, -0.04276648, 0.0034957407, 0.001687599, -0.002220433, -0.010006798, 0.008581248, -0.0036477295, -0.008343657, -0.0070963013, 0.03714814, -0.0014526279, -0.0048182174, 0.010216437, 0.0026921222, -0.039020922, -0.019706124, -0.012801993, 0.03066329, -0.025394347, -0.016687313, -0.025995314, 0.02701556, 0.023339879, -0.007861486, -0.02315819, 0.016198155, 0.027281104, 0.00453171, -0.019482508, -0.012599342, -4.5378244E-4, 0.018462263, -0.009867039, 0.010775477, 0.0019758535, -0.01906323, 0.02809171, -0.02294855, 0.0068412395, -0.021047818, -0.011327527, 0.031054616, 0.025380371, -0.019328773, -0.012969704, -0.03941225, 0.011103912, 0.0109851165, 0.0028773039, 0.021047818, 0.0068377457, 0.027071463, 0.02194228, 0.006624612, -0.001386242, 0.017763464, -0.011676927, 0.0041089365, -4.8653863E-4, -0.019175038, -0.017344184, 0.001405459, -0.0064673824, 0.004091467, -0.012683197, -0.0057476196, 0.021243481, 0.014024891, -0.009797159, -0.010670657, -0.0031987512, -0.013794287, 0.014143687, -0.03709224, 0.009615471, -0.006194851, 0.0118725905, -0.003338511, -0.01621213, -0.030747145, -0.008497393, 0.0040355627, 0.0040705027, 0.030299913, 0.041061413, -6.442051E-4, 0.02191433, 0.016072372, -0.011509215, 0.012284882, -0.024709523, -5.219153E-4, 0.01315838, -0.0011914519, -0.006879674, -0.6386461, -0.022012161, -0.020167332, -0.018518167, 0.009978846, 0.007295459, 5.459365E-4, -0.012801993, -0.037204046, -0.017162496, -0.0315298, 0.02409458, -4.19716E-4, -0.012166086, -0.023130238, -0.022613127, 0.0011512709, -0.03010425, 0.01829455, 0.0053108702, -0.022040112, -0.0012438617, 0.02839918, -0.0068167816, 0.015010197, 0.012662233, -0.008658117, -0.0042486964, -0.0013347056, 0.020530706, -0.018560095, 0.036141872, 0.011376443, -8.5111504E-5, 0.046484094, -0.0012875367, -0.030607386, 0.055680282, 0.02177457, 0.03885321, -0.02458374, -0.00888872, 0.014451158, 0.002810918, -0.001666635, 0.020055523, 0.009287035, -0.018322503, 0.0024423017, -0.0016316951, 0.004451348, -0.0010569331, -0.006138947, -0.0064778645, 0.006593166, 0.011152828, 0.009238119, -0.022766864, 0.017386112, 0.004482794, -0.019776005, 0.026931703, -0.0015530802, 0.011215719, -0.006704974, 0.016896954, -0.016323939, 2.9546084E-4, 0.01868588, -0.047853738, 0.0014290435, 0.01663141, -0.008154982, -0.0107125845, 0.013032597, 0.023773134, 0.027127367, 0.0010516921, -0.015722971, 0.008378597, -0.0073024468, -0.006774854, 3.0637957E-4, 0.015205861, 0.016659362, 3.913273E-4, -0.026344713, 0.018615998, 0.0057336437, 3.764778E-4, 0.011418371, 0.01257139, 0.013514767, 0.006914614, 0.015653092, 0.008825828, -0.01013957, 0.008036186, 0.03211679, -0.060543925, -0.005558944, -0.012215002, 0.029349547, -0.015052125, 0.011579095, 0.002737544, -0.01829455, 0.0013259706, 0.044359744, -0.008748961, 1.2938696E-4, 0.0014430194, -0.016896954, -0.020390946, 0.0070124455, -0.02996449, 0.018825639, 0.021676738, 0.0043639983, -0.013074525, -0.002763749, -0.015527308, 0.008881732, -0.020376971, 0.0175678, 0.043073956, -0.003853875, -0.0013574165, 0.0018325998, 0.018588047, 0.0030362806, -0.017623704, 0.015932612, -0.0134448875, 0.005429666, 0.003899297, 0.0058140056, -0.01225693, 0.036980428, -0.0047448436, -0.012962717, 0.0010403367, -0.012138134, -0.023675302, -0.0023898918, -0.015303693, -0.03024401, -0.0046889395, -0.0116210235, -0.0030065817, -0.020754322, 0.002713086, -0.00788245, 0.009510651, 0.0037106213, 7.1583193E-4, -0.029014124, -0.01635189, 0.0057546077, -0.020111429, 0.002805677, 0.019216966, -0.011299576, -0.019175038, 0.030803049, -0.0021645292, -0.0013181091, 0.013968986, -0.0019566366, -0.015876707, 0.018224671, -0.004870627, 0.0054226783, 0.023269998, -0.014164651, 0.015387548, -0.015792852, 0.03454861, 0.011802711, 0.004954483, -0.006135453, -0.009531615, -0.03440885, 0.0018221177, 0.02423434, 0.020167332, 0.01468875, 0.0022745898, -0.010258365, 0.020097451, -0.022696983, -0.008203898, 0.0041264067, -8.0885954E-4, -0.0031079075, 0.015191885, -4.1163614E-4, 0.0030467624, 0.0052724364, -1.479488E-4, 0.037511516, 0.006739914, 0.026554352, -0.018392382, 0.02343771, -0.032312453, 0.0026344713, -0.019608293, 0.018979374, -0.0014299169, 0.01899335, -0.01440923, -0.013388984, 0.0051536406, 0.0018605517, 0.032787636, -0.008832816, 0.003958695, -0.010915237, -0.0046155658, 0.010419089, 0.0032441732, 0.009643422, 0.011082948, -0.034660418, 0.010426077, 0.020908058, -0.002707845, 0.002195975, -0.014562965, -0.011264636, 0.012983681, 9.049444E-4, 0.016379843, 0.0127600655, -0.028608821, 0.0315298, 0.0017679608, 0.0265264, -0.014185615, 0.020670466, 0.017497921, 0.03340258, 0.0015653092, -0.009077395, -0.021243481, 0.019035278, 0.02642857, -0.006163405, 0.040809847, -0.010754513, 0.026470497, -0.0030886903, -0.007819558, 0.026568329, -0.023549518, -0.0021994691, 0.009356915, 0.03354234, 0.035918254, 0.007124253, -0.027141344, 0.016072372, 0.013416936, -0.0035918255, -0.0060725613, -0.0069809994, 0.013878143, -0.02715532, -0.028902316, -0.013270188, -0.012438618, 0.013975975, 0.025785673, -0.02357747, -0.009091372, -0.0017365149, 0.006310153, 0.015233813, 0.012103194, -0.008839804, -0.02912593, 0.018867565, 0.012746089, -0.008672092, -0.011509215, -0.020446852, -0.013724407, -0.037651278, -0.013249224, -9.1542635E-4, 0.028580869, -0.028077733, 0.017483944, -0.013787299, -0.0146048935, 0.018504191, -0.016924905, 0.026791943, 0.0123966895, -0.0034153787, 0.007232567, -0.0069914814, 8.9970336E-4, 0.019091181, -0.0073932908, -0.015932612, -0.0075260624, -0.007253531, -9.6783624E-4, -0.002842364, 0.0058000297, -0.043073956, 0.021564929, -0.008336669, -0.008350645, -0.014772605, -0.0016456711, 0.016882978, 1.7186081E-4, -0.02229168, -0.027574599, -0.03468837, -0.001104102, 0.08776912, 0.055987757, 0.0065232865, 0.012536449, -0.017162496, 0.0078894375, -0.0023881446, -0.011166804, -0.008441489, -0.013067536, -0.0023374818, -0.016575506, 0.028301349, 0.005045327, 0.01965022, -0.0054541244, -0.008147993, -0.0023671808, -0.0041683344, -0.015876707, -0.02528254, -0.01114584, 0.01440923, 0.026624233, 0.015876707, -0.016337914, 0.023102287, -0.0021523002, -1.977382E-4, 0.018727805, -0.0107615, 0.0041473703, 0.021970233, 0.013340068, -0.010474993, -0.0137174195, 0.037763085, 0.003839899, 0.021648785, 0.003397909, -0.0010385896, 0.002215192, 0.0058209933, -0.015918635, 0.019510461, -0.033067156, -0.03468837, 0.023311926, 0.037064284, -0.028874364, 0.022431439, 0.011355479, -0.01885359, -0.025352418, 0.010153546, 0.009210167, -0.0058734035, -0.004971953, -0.0011137105, 0.022123968, -0.003857369, -0.01927287, 0.015876707, -0.020894082, -0.003322788, -0.012606329, -0.015513333, -0.004612072, -0.02825942, 0.004982435, -2.9742622E-4, -0.012613317, -0.0138082635, 0.004950989, 0.017162496, -0.003881827, 0.021718664, -0.015862731, 0.021578906, 0.0040705027, -0.037176095, -0.030635336, 0.014073807, -0.02951726, -0.0061878627, 0.0037280913, -0.009280047, 0.023451686, -8.455465E-4, 0.008546309, 0.0013320851, -0.008217873, -0.0062332847, -0.015778875, 0.032759685, 0.0031550764, 0.0114393355, 0.016924905, -5.101231E-4, -7.0797047E-4, 0.012878861, -0.028105685, -0.0037525492, -0.0065582264, -0.017861295, -0.009601494, -0.008134018, 0.0024527835, -0.022836743, -0.011096924, -0.025324466, -0.021243481, -0.0057091857, 0.009594507, 0.0046819514, 0.008301729, 0.014094771, 0.027630502, -0.011830662, 0.011208732, 4.186241E-4, -0.0015391043, 0.030048346, 0.011355479, -0.016058395, 0.014535014, -0.0020544683, -0.018350456, 9.11168E-5, 0.005206051, -0.008364621, 0.020530706, -0.0052444846, -0.0130116325, 0.0063136467, -0.013361032, 0.0061983448, 0.0034433308, -0.013528744, 0.023311926, -0.024262292, 0.0048147235, 0.0063136467, 0.0029052559, -0.012536449, -0.02177457, 8.41179E-4, -0.025953386, 0.010558849, 0.0036617054, -0.013319104, 0.009545591, -0.021257458, -0.015639115, -8.935889E-4, -0.03384981, -0.018182743, -0.010223426, 0.023843013, 3.7625944E-4, 0.047406506, 0.002707845, 0.018140815, 0.0024195907, 0.00435701, 0.029489307, -0.019119134, -0.019398654, -0.015499356, 0.006554732, 0.01992974, 0.019678172, 0.010677645, 0.016323939, -0.006121477, 0.020670466, -0.0035533917, 0.0041683344, -0.0018972385, -0.02996449, -0.01944058, 0.004482794, -0.016882978, -0.01364754, -0.019636245, -0.001102355, 0.021229506, -0.0032756191, -4.6077042E-4, -0.003916767, 0.032172695, -0.01843431, 0.012033314, -0.013584647, 0.02979678, -0.01992974, 0.0080711255, -0.011523191, -0.010328245, 0.009217155, -0.01489839, 0.008734984, -0.008581248, -0.015569236, -0.0024754945, 0.021201555, -0.012592353, -0.020922035, 0.0240247, -0.012976693, -0.0068622036, -0.0134379, -0.0037315853, -0.038769353, -0.016295986, -0.009706315, -0.010747525, -0.010670657, -0.021397218, -0.0465959, 0.02951726, -0.005681234, 0.036756814, 0.008231849, 0.046847466, 0.014276458, 0.005534486, -0.020544684, 0.0070718434, -0.009915954, -0.0065162983, 0.021970233, 0.021103721, -0.020684443, 0.0080711255, 0.0058943676, -0.0016028696, -0.033318724, -0.020404924, 0.025673866, 0.02760255, 0.016198155, -0.028049782, -0.004011105, -0.028986173, 0.012997657, -0.008895708, 0.0032022453, 0.012368738, -0.028902316, -0.02531049, -0.010817405, 0.0010665415, 0.018168768, 0.00770775, -0.04410818, 0.010251378, -0.033039205, 0.0042207446, -0.021606857, -2.3933857E-4, 0.031781368, -0.014856461, 0.025576035, 0.021718664, 0.02767243, 0.0013006391, -0.009294024, 0.013703443, 0.03166956, 0.0023147708, 0.027993878, 0.012871873, -0.007204615, 0.024877235, 0.025380371, -0.016813098, -0.010775477, -0.02149505, -0.007078831, 0.02603724, -0.011641987, 0.006540756, 7.595069E-4, -0.02163481, -0.01333308, 0.016617434, 0.001638683, 0.0074771466, -0.045393966, 0.005055809, -0.0016185925, 0.0043185763, -0.006261237, -0.004975447, -4.799874E-4, 9.5910125E-4, -0.0078894375, -0.0049230373, 0.0052025565, -0.02086613, -0.02138324, -0.03510765, -0.0037350792, -0.017302256, 0.0016727495, 0.02236156, -0.02909798, 0.005489064, 0.011551144, 0.004472312, 0.008672092, 0.0047937594, -0.018727805, -0.0010307281, 0.021844449, -0.006778348, -0.015583212, -0.014674773, 0.030439673, 0.006708468, -0.0031166424, -0.012201026, 0.007190639, 0.03424114, -0.012452594, 0.019328773, 0.011956447, -0.02559001, 0.0063136467, 0.016268035, 0.027798215, 0.021578906, -0.0012351268, -0.018378407, -0.017665632, -0.00666654, 0.030914856, 0.008085102, -0.010880296, 0.02250132, 0.016505627, 0.03488403, 0.03236836, -0.0111109, -0.021411194, 0.0020946492, -0.014535014, -0.035610784, -0.0091402875, -8.3637476E-4, 0.023675302, -0.007554014, -0.011124876, -0.021606857, -0.010006798, -0.017651657, -0.027840141, -0.020670466, 0.01677117, 0.04802145, 0.0070159393, -0.0025104345, 0.019971669, 0.0019077206, -0.005576414, -0.030439673, 0.0035761027, 0.024905188, -0.013326092, 0.0154015245, 0.0059083435, -0.025044948, 7.714083E-5, 0.011327527, 0.019915763, 0.016533578, 0.017274305, -0.014702725, -0.011697891, -0.010447041, -0.003322788, -0.013892119, -0.0043046004, 0.020376971, -0.05118002, 0.012019338, 0.0052899066, 0.008672092, -0.0065372624, 0.010950176, 0.007204615, -0.02364735, -0.0012132893, -6.1363267E-4, -0.01590466, 0.0052899066, -0.031054616, 0.03343053, 0.011257648, -0.0075120865, 0.022096016, 0.03930044, -0.0011879578, -0.020446852, -0.013982963, 0.004580626, -0.016254058, -0.001086632, -0.011523191, 0.022179872, -0.023144213, 0.016128276, -0.009643422, 0.004954483, -0.012529462, 0.008567273, 0.004937013, 0.022990478, 0.032787636, -0.0530528, -0.0058384635, -0.0047238795, 0.014912365, -0.006687504, -0.008707033, -0.026190978, -0.0067469017, -0.008658117, 0.003983153, -0.013256212, -0.018238647, -0.022263728, -0.022878671, -0.021788545, 0.012354761, 0.18168767, -0.0021575412, 0.008008233, 0.044303842, -0.002672905, 0.006219309, 0.018588047, 0.016254058, -0.0101884855, 0.02128541, -0.0057581016, 1.6924032E-4, 5.4462627E-4, 0.0012508498, 0.023116263, -0.016673338, -0.028986173, -0.020265164, -0.0069181076, -0.026931703, -0.007840522, 0.0025558565, -0.0050383387, -0.021201555, 0.020446852, 0.0068167816, -0.0046784575, 0.014772605, 0.021998184, 0.008469441, -0.0019671184, -0.0053248466, 0.0016806109, -3.646856E-5, -0.018350456, -0.0018622987, 0.0020125404, -0.00548557, 0.025366394, -0.013277176, 0.0015260017, 0.00774269, -0.0123966895, -0.0021365772, 0.0049440013, 0.025981337, -0.03756742, 0.0018692866, -0.013060548, -0.0063415985, -0.04556168, -0.0035568855, 0.024695547, 0.028650748, 0.007344375, -3.4699726E-4, 0.0052549667, 0.0129207885, -0.013039584, -0.0060725613, -0.0027270622, 0.043213714, -0.025785673, 0.011474275, 0.0047693015, -0.008679081, -0.035359215, -0.005059303, 0.0038259232, -0.02965702, -0.0042626723, -0.039188635, -0.009210167, -0.003284354, -0.006083043, -0.012683197, 0.021369265, 0.0070124455, 0.0015382307, 0.008378597, -0.024905188, -0.0057860534, -0.0045631556, -0.010041738, -0.011495239, -0.028245445, 0.02194228, -0.026274832, -0.017595753, 5.8360612E-5, -0.03343053, -0.02388494, -0.023870965, 0.0042521902, 0.004902073, -0.0129207885, 0.021523, 0.018867565, -0.0019688655, 0.013067536, -0.037343804, 0.032759685, 0.029489307, -0.003955201, -0.02968497, -0.020740347, 0.009440771, 0.01482851, 0.02531049, -0.013109464, -0.009692338, -0.014982245, -0.0069181076, -0.013738384, 7.350489E-4, 0.022724936, 0.012026327, -0.014926341, 0.032927398, -0.011131864, -0.017931176, -0.014381278, 0.016757194, -0.0018832627, 0.0030956785, -0.020852154, -0.035582833, 0.004489782, -0.0057615954, -0.026931703, 0.020768298, -0.024052653, 0.010146557, -0.015778875, -0.010495957, -0.0064394306, 0.011208732, -0.0042242385, 0.008050161, -0.01201235, -0.01006969, -0.017106593, 0.0016098577, 0.0030450155, 0.0028895328, -0.01642177, -0.003397909, -0.006065573, -0.010824393, -0.043185763, -0.021201555, -0.010488969, 0.011669939, 0.018378407, 0.036756814, -0.00432207, -0.02121553, -0.043940466, -0.01742804, 0.040893704, -0.024919163, 0.024192413, 0.023870965, -0.0030991724, -0.022137944, -0.018532142, -0.18090501, 0.021033842, 0.0045037577, -0.026568329, 0.007924378, 0.0075330506, 0.03384981, 0.0029681476, 0.007043891, -0.023269998, 0.038350075, 0.011970422, -0.027448814, -0.0024405546, 0.008392573, 0.012033314, -0.0046854457, 0.031222329, 0.044555407, 7.8920583E-4, 0.021397218, -0.0100976415, 5.673372E-4, 0.007449195, 0.0067119617, -0.0030817024, 0.017008761, 0.0037490553, -0.0035289337, -0.014395254, -0.027560622, -0.0043395404, 0.020991914, 0.017735513, -0.019286845, -0.008336669, -0.0131024765, -0.026190978, -0.011418371, -0.00661413, 0.025603985, -0.0012491028, 0.025687842, 0.010307281, 0.020684443, 0.019748053, 0.032619927, -0.026051218, 0.013871155, -0.01468875, -0.022137944, -0.03069124, 0.019915763, -0.014241518, -9.879267E-4, 0.026680136, 0.008427513, -5.8349693E-4, 0.017218402, 0.0013347056, -0.020237211, -0.016128276, 0.01232681, -0.010628729, -5.271563E-4, -0.0032913422, -0.01726033, 0.020922035, -0.03382186, 0.017819367, -0.015457428, 0.016589481, 0.021089746, -0.0010385896, 0.008057149, -0.0200695, -0.051878817, 0.013249224, 5.8349693E-4, 0.018112864, -0.0056183417, 0.031417992, 1.6585551E-4, 0.004430384, -0.010195473, -0.008727997, 0.0065232865, -0.008839804, -0.0025890493, -0.018350456, -0.0057825595, -0.03055148, -0.032200646, 0.0024195907, 0.01475863, 4.4766793E-4, 7.3646836E-5, -3.8499443E-4, 0.008741972, -0.015331645, 0.009580531, -0.016072372, -0.023870965, 0.03284354, 0.010663669, 0.012096207, 0.0016360625, 0.012788017, 0.014066819, -5.725782E-4, -0.01020945, 0.017609729, 0.030160153, 0.008672092, -0.008839804, 0.0012185303, -0.0057371375, -0.027826166, -0.0024405546, 0.018965397, 0.056155466, 0.0028720628, 0.0023095298, -0.010810416, 0.001717298, -0.025394347, -0.09341542, 0.0035883316, 0.0084135365, 0.035359215, -0.02680592, 0.043465283, 0.0029052559, 0.022543248, -0.021788545, 0.02364735, 0.005076773, -0.03197703, 0.008469441, -0.006205333, 0.014884413, 0.020446852, -0.017861295, -0.011124876, -0.0030188106, 0.033514388, -0.014507062, -0.009922942, 0.004458336, -0.0147865815, 0.0032406792, 0.009888003, -0.01944058, 0.016519602, 0.007945342, 0.013892119, 0.014367302, -0.0116909025, 0.030048346, -0.027267126, -0.012648257, -0.03183727, -0.015359596, -0.030747145, 0.012138134, -0.044834927, 0.0069250953, 0.014017903, 0.008343657, -0.03594621, -0.02079625, 0.013172356, -0.033011254, 0.011984399, -0.008755948, -0.028427133, -0.008078113, -0.02093601, -0.0293775, -0.008259801, 0.0042137564, 0.016393818, 0.010656681, 0.0032983301, -0.0074002785, -0.027113391, -0.003955201, 0.0018063948, -0.017497921, 0.013556696, 0.02034902, 0.0036582113, -0.0014159409, -0.021159627, 0.006051597, -0.022710958, -0.02451386, 0.012543437, -0.023116263, -0.006603648, -0.0157649, -0.001635189, -0.024108557, -0.014451158, 0.033206917, -0.032871492, 0.0031236303, -0.032200646, 0.010237401, -0.007749678, 0.009524627, 0.02343771, 0.015708996, 0.029992443, -0.004384962, -0.040250808, -0.01843431, 0.0109851165, -0.012452594, -0.003417126, 0.0024685066, 0.01770756, 0.018280575, -0.016016467, -0.009398843, 0.0035446566, -0.020544684, 0.009147275, -0.07843317, 0.033514388, -0.018364431, 0.001130307, -0.019244917, -0.0052200267, -8.175945E-4, 0.005471594, -0.005524004, 0.015457428, -7.756666E-4, 0.03155775, -0.009559567, -0.010908249, -0.013913083, 0.013381996, 0.009608483, -0.005656776, 0.007260519, -0.0013975975, -0.028385205, 0.011278612, 0.020754322, -0.0023532049, 0.012089218, 0.02364735, 0.0039691767, 0.01461887, -0.022096016, -0.0046050837, 0.020237211, -0.023535542, -0.016855026, 0.016952857, -0.010593789, -0.02837123, -0.001621213, 0.0037245974, 0.018755758, 0.017721536, -0.010447041, -0.017176474, -0.0015941346, -0.013221272, 0.0062682247, 0.011977411, -0.006708468, 0.0020998903, 0.0064778645, 0.0076099182, 0.02823147, 0.0097552305, -0.008147993, -0.008727997, 0.017581776, -0.0142624825, 0.044555407, 0.013731395, -0.0033035711, -0.010307281, 0.020376971, 0.0033088122, 0.015191885, -0.026512424, 0.010454029, 0.003948213, 4.2342837E-4, -0.02086613, -0.009287035, -0.02107577, -0.008385585, 0.0029209787, 0.010167521, 0.04676361, -0.002887786, 0.013731395, 0.023549518, -0.001677117, -0.001677117, 0.015653092, 0.002777725, -0.005684728, -0.025156755, 0.03066329, -0.010132582, 0.0121451225, 0.0029751356, 0.013381996, -0.00566027, 0.009105348, 0.0073932908, 0.025687842, 0.01670129, -0.007554014, 0.010495957, -5.743252E-4, -0.016323939, -0.021886377, 0.016002491, 0.03756742, -0.014954293, -0.004332552, 0.0020876613, -0.022836743, -0.025534106, 0.004992917, -0.019748053, -0.02264108, 0.0027235681, 0.02729508, 0.03343053, 0.013955011, 0.006142441, 0.007232567, -0.0365891, 0.010481982, -0.006645576, -0.013780311, -0.013794287, 0.033626195, 0.008217873, 5.162376E-4, 0.037008382, 0.013479828, 0.04257082, -0.001421182, 0.009908966, -0.012990668, -0.0017146774, 0.004975447, 0.018881543, -0.008378597, -0.024122532, 0.008043174, -0.012375725, 0.017008761, 0.01250151, 0.007099795, -0.025771698, 0.0659666, 0.024807356, 0.0024772414, 0.008511369, -0.0062682247, 0.029153883, 0.0059677414, 0.021536978, -1.3604738E-4, -0.010565837, 0.007267507, -0.008427513, -0.0023584457, -0.03575054, -0.0059467773, -5.612227E-4, 0.02465362, 0.024150485, -0.017316233, -0.018951422, 2.1640923E-4, -0.00673642, 0.011565119, 0.022096016, -1.712057E-4, -0.012284882, 0.022123968, -0.0143533265, 0.006652564, -0.0265264, -0.007728714, -0.03169751, 0.008909684, -0.01440923, 0.017805392, -0.0077007622, 0.005985211, -0.003888815, 0.028483037, 0.003892309, -0.019762028, -0.0045247218, -0.03670091, -0.029601114, 0.02315819, 0.008497393, -0.016268035, -0.019258894, -0.025184706 ], + "id" : "773e7f40-0b16-48d7-8ef1-fefd1f612c0d", + "metadata" : { + "source" : "movies.csv" + } + }, + "f67c90dc-2aa6-44b8-911f-19741bc3e604" : { + "text" : "Johnson-Will Arnett-Jada Pinkett Smith-Tony Shalhoub-Alex Ziwak-Jason Liles-Jesse Ridgway-Justin Bieber-Erin Lindsey Krom-Tim Burton-Eha Urbsalu,time travel-time machine-based on comic-alien-buddy cop-fictional government agency-seeing the future-changing history,/90DdoEStzeObs96fsYf4GG544iN.jpg,/5AhpUb8CAP0jZ4Wrn7AsRUYjZxB.jpg,608-607-14655-3693-668406-433046-38842-172767-56292-14161-10528-1865-49538-2048-1858-27578-38356-58574-64635-2080-1930\r\n10138,Iron Man 2,Adventure-Action-Science Fiction,en,With the world now aware of his dual life as the armored superhero Iron Man billionaire inventor Tony Stark faces pressure from the government the press and the public to share his technology with the military. Unwilling to let go of his invention Stark with Pepper Potts and James 'Rhodey' Rhodes at his side must forge new alliances ��� and confront powerful enemies.,91.94,Marvel Studios-Fairview Entertainment,4/28/10,200000000,623933331,124,Released,\"It's not the armor that makes the hero, but the man inside.\",6.837,20035,Robert Downey Jr.-Gwyneth Paltrow-Don Cheadle-Scarlett Johansson-Sam Rockwell-Mickey Rourke-Samuel L. Jackson-Clark Gregg-John Slattery-Garry Shandling-Paul Bettany-Leslie Bibb-Kate Mara-Jon Favreau-Christiane Amanpour-Philippe Bergeron-James Bethea-Michael Bruno-Kate Clark-Luminita Docan-Fran�_ois Duhamel-Larry Ellison-Adam Goldstein-Tim Guinee-Eric L. Haney-Ali Khan-Evgeniy Lazarev-Stan Lee-Isaiah Guyman Martin IV-Helena Mattsson-Anya Monzikova-Keith Middlebrook-Margy Moore-Olivia Munn-Elon Musk-Bill O'Reilly-Alejandro Pati��o-Davin Ransom-Karim Saleh-Brian Schaeffer-Phillipe Simon-Jack White-Jenny Robinson-Melanie Brown-Krystal Ellsworth-Victoria Gracie-Gina Cantrell-Renee Herlocker-Jill Ann Pineda-Arnold-Sandy Colton-Annika Ihnat-Lindsay Dennis-Jennifer D. Johnson-Lindsay Rosenberg-Hannah Douglass-Brooke Long-Rachele Brooke Smith-Kylette Zamora-Nadine Ellis-Ayelet Ben-Shahar-John Ceallach-Katie Cleary-Ajarae Coleman-Timothy 'TJ' James Driscoll-Jasmine Dustin-Sam Felman-Shakira Vanise Gamble-Paul Grace-Mark Kubr-Cameron Lee-Jee-Yun Lee-Mathew Lorenceau-Christopher Maleki-Bryan McCoy-Tony Nevada-Allison Ochmanek-Nicolas Pajon-Steven James Price-Tanoai Reed-Peter Trenholm Smith-Doug Swander-Peter Sebastian Wrobel-Nick W. Nicholson-Kristin Quick-Matt McColm-Seth Green,technology-superhero-malibu-based on comic-revenge-aftercreditsstinger-marvel cinematic universe (mcu)-break out,/6WBeq4fCfn7AN0o21W9qNcRF2l9.jpg,/7lmBufEG7P7Y1HClYK3gCxYrkgS.", + "embedding" : [ 0.006537774, -0.024913577, -0.016318936, -0.030897187, -0.010328527, 0.032447487, -0.013993488, -0.017542858, -0.023567265, -0.025947109, 0.03146835, 0.028857319, 0.012327597, 0.0045693023, 0.012164407, -0.0021928572, 0.016631717, -0.018630786, 0.011022082, -0.023159292, -2.5073366E-4, -0.0059292135, -0.00736392, 0.011919623, 0.016155748, 0.011253267, 0.034160975, -0.01825001, -0.014034285, -0.001472954, 0.019297143, -0.0068029566, 0.012789967, -0.027701395, -0.020194683, 0.009798162, 0.0073571205, -0.028884517, 0.03576567, 0.0015587985, 0.009716567, 0.018440397, -0.002825216, -0.0030496013, -0.020357873, 0.0010020847, 0.014551052, 0.0053172535, -0.008268261, 0.03263787, 0.025579933, 0.022302547, -0.020847442, -0.03633683, -0.005045271, -0.016142149, -0.017461263, 0.009288195, 0.0023849446, 0.010981284, 0.014659844, -0.006058405, -0.042918805, 0.004205526, -0.012701572, -0.008982215, -0.019759512, -0.02408403, 0.0061637983, 0.012164407, 0.030244429, 0.006938948, 0.0138642965, -9.5958746E-4, 2.0961759E-4, -0.030570809, -0.020153888, -0.011804031, -0.024274418, -0.0022625525, 0.005966611, 0.009288195, -0.009696168, 0.0054770433, 0.015353399, 0.008519845, -0.014333466, 0.026899047, -0.020847442, 0.005966611, -1.5851467E-4, 0.0337258, 0.001427057, 0.0044095125, 0.012239203, 0.035684075, -0.03881187, 0.010076944, -0.013157142, -0.032311495, 0.011062879, -0.0115184495, -0.0043313177, -0.014537453, 0.0017177381, -0.007459114, 0.0013063649, -0.0020704651, 0.028830122, 0.011810831, -3.773754E-4, 0.012252802, 0.0142110735, -0.04846724, -0.0036513621, -0.013388327, -2.8600637E-4, -0.01732527, -0.014156678, -0.031685933, 0.034976922, 0.03008124, 0.0027351219, -0.033263434, 0.04068855, 0.028204562, -0.0036513621, -0.020820243, -0.004939878, 0.0045183054, 0.0291565, -0.012048814, 0.02026268, 0.020140288, -0.026871849, 0.03315464, -0.022696922, 0.0030496013, -0.022016965, -0.027116632, 0.029319689, 0.020915437, -0.011062879, -0.004004939, -0.03269227, 0.02238414, 0.009566977, 0.0028337154, 0.009526179, 0.006938948, 0.012062414, 0.015421395, 0.01043732, 0.00629299, 0.016903698, 0.0064833774, -0.008785028, -0.010403322, -0.0063949833, -0.023716854, 0.0017160382, -0.017733244, -0.0062215948, -0.0087442305, 0.010267331, 0.01965072, 0.015407796, -0.022424938, -0.005232259, 0.0030784993, -0.008159468, 0.015910963, -0.029428482, -0.0030343023, -0.009621373, 0.010675305, -0.0056266333, -0.015638981, -0.036799204, -0.0063031893, 0.002179258, 0.01582937, 0.028748527, 0.032311495, -0.00383495, -0.008655836, 0.031277962, -0.030162834, 0.015516588, -0.017311672, 0.01611495, 0.026069501, -0.0076019047, -0.020330675, -0.6318692, -0.016808504, -1.9654969E-4, 0.006612569, 0.0118992245, 0.020058693, -6.3405867E-4, -0.0035697673, -0.026817452, -0.01705329, -0.024478406, 0.026912646, 0.015788572, -0.016672514, -0.023064097, -0.009478582, 0.008621838, -0.023540067, 0.017230077, 0.016509324, -0.04085174, 0.021948969, 0.017202878, -0.009396988, -0.0049636764, 0.019297143, 6.735811E-4, -0.012551982, -0.0052254596, -0.0030445016, -0.015258206, 0.0121304095, 0.016033355, 4.1923518E-4, 0.047080133, 0.02284651, -0.030951584, 0.052220598, 0.021867376, 0.023050498, -0.020548262, -0.022329746, 0.010206135, -0.0052866554, -0.009165803, 0.016087752, -0.004725692, -0.0050282725, 0.0058238204, -0.0038655482, 0.007724297, 0.0053546512, -2.3564714E-4, 0.0039845402, -0.008982215, -0.008717032, 0.0021044628, -0.021133022, 0.0322299, 0.0054566446, -0.015312602, 0.013544718, -0.003161794, 0.0068947505, 0.0024529402, 0.029863654, -0.006921949, -0.010212935, 0.0030666, -0.03671761, 0.01426547, 0.015910963, -0.025307951, -0.005973411, 0.00966217, 0.008234263, 0.023662457, -0.014319867, 0.0040287375, 0.017434064, -0.0149046285, -0.0065717716, 0.0014398062, -0.0025872313, 0.040443763, 0.007078339, -0.026028704, 0.0076359026, 0.018209213, -0.003498372, 3.9033705E-4, 0.005453245, -0.0036445626, 0.008424651, -0.026967043, -0.02517196, -8.2710234E-5, -0.013238737, 0.024369612, -0.0521934, -0.008336257, -0.0245328, 0.04493147, -8.087223E-4, 0.00950578, -0.0075339093, -9.4768824E-4, -0.008009878, 0.016754108, -0.01750206, -0.029782059, -0.01611495, -0.01978671, 0.0043041194, -0.014170277, -0.027687795, 0.011797232, 0.016998893, 0.004219125, -0.0011610243, 0.003129496, 0.01826361, -0.014183876, -0.017991628, 0.0055144406, 0.032529082, 0.02377125, -7.199031E-4, 0.003974341, 0.01933794, -0.012395592, 0.0058884164, 0.014143079, -0.009866158, 0.015856566, 0.0070375414, 0.005895216, -0.022452137, 0.02102423, -0.0072075306, -0.0063303877, -0.0034949724, -0.010512115, -0.0067587597, -0.01763805, -0.030353222, -0.024913577, -0.003930144, -0.0019820707, -0.015421395, -0.017216478, 0.017597253, 0.004698494, 0.021214617, 0.010559712, 0.0023713454, -0.04465949, -0.015774973, 0.0030258028, -0.013075548, -2.4329664E-4, 0.027375016, -4.5812014E-4, -0.03546649, 0.031196367, 0.012953156, -0.011851627, 0.012483986, 0.0012001218, -0.010648106, 0.01519021, -0.026491074, 0.0067315614, 0.010172137, -0.022152957, 0.014102281, -0.0030750996, 0.026735857, 0.00904341, -0.010104141, -0.005184662, -0.008016678, -0.021391407, -0.017923633, 0.030026844, 0.015516588, 0.020153888, -0.0063201883, 0.006983145, 0.007656301, -0.031060375, -0.0046372977, 0.0051064673, -0.010994883, -0.002653527, 0.0046882946, 0.0045999005, -0.008608239, -0.0068573533, 0.0034915726, 0.029646069, 0.010790897, 0.01550299, -0.012137209, -0.0038451494, -0.031577144, -0.009566977, -0.0337258, 0.002163959, -0.011144474, 0.016359733, -0.015788572, -0.011756434, 0.0026280289, 0.0230097, 0.019759512, -0.014972624, 0.011321262, -0.014020686, 0.0020483665, -0.009118206, 0.0056028347, 0.014687043, 0.0031073976, -0.028666932, 0.014551052, 0.012749169, -0.016359733, 0.010770498, -0.013422325, -0.0070375414, 0.009186202, -0.0063881837, 0.00675196, -0.0048582833, 0.0073163235, 0.02776939, -0.013952691, 0.04324518, -0.0016650415, -0.027878184, 0.015774973, 0.016699713, 0.006000609, 0.010654906, -0.012959955, 0.025647929, 0.010138139, -0.019990698, 0.04158609, -0.009186202, 0.006309989, -0.02012669, 0.0059326133, 0.0045795017, -0.015353399, 0.0016242441, 0.002867713, 0.0383767, 0.017474862, 0.022152957, -0.03728877, 0.02654547, 0.013279535, 0.01396629, -0.0049942746, -0.020208282, -0.0027266224, -0.021880975, -0.023526467, -0.005004474, -0.028150165, 0.018453997, -0.0035629678, 0.0025345348, -0.016305337, -0.008615038, 0.018141218, 0.0050826687, 0.010797696, 0.0024801383, -0.037560754, -0.008377054, 0.024967972, -0.01426547, -0.023689656, -0.0064833774, -0.012864762, -0.015285404, -0.0074795126, -0.0095533775, 0.04082454, -0.012137209, 0.013068749, -8.673685E-4, -0.004093333, 0.017556457, 0.0038893465, 0.010797696, 0.0168765, 6.846304E-4, 0.013558316, 0.0045047062, -0.014374264, 0.02945568, -0.004542104, -0.007894286, -0.006367785, -0.011239667, -0.0050894683, -0.0033470818, 0.004161329, -0.020317076, 0.014551052, -0.01565258, -0.0042803213, -0.007853488, -0.009566977, -0.005789823, -0.020942636, -0.010654906, -0.042782813, -0.0352489, 0.0134835215, 0.08121391, 0.04387074, -0.0026042303, 0.004613499, -0.030407619, 0.002223455, -0.016060553, -0.01611495, -0.0070511405, -0.019446732, 0.019609923, -0.006126401, 0.028476544, -0.0014041085, 0.003020703, -0.012402392, 0.0011066279, -0.0026501273, 0.0103965225, -0.010994883, -0.029482879, -0.023852846, 0.022588128, 0.027905382, 0.012701572, -0.005001074, 0.028775726, 0.01350392, -0.0031702935, 0.007758294, -2.487416E-5, -0.0010063344, 0.0060074087, -6.676315E-4, -0.006258992, -3.8969962E-4, 0.025294352, 0.031277962, 0.024342414, -0.0041919267, 7.490137E-6, 0.023036899, 0.0074319155, -0.01920195, 0.0042259246, -0.018970763, -0.0017117885, 0.018331606, 0.021269014, -0.04512186, 0.018644385, 0.009811761, -0.0134019265, -0.01136886, 0.014156678, 0.005279856, -0.007561107, -0.026831051, -0.023444872, 0.01550299, -0.0024529402, -0.02945568, 0.024288017, -0.013707907, -0.0010981285, -0.022411339, -0.0037159577, -0.01671331, 0.0038995459, -0.01641413, 0.016794905, -0.0038927463, 7.6792494E-4, 0.010852093, 0.014972624, -0.010274131, 0.02439681, -0.0027215227, 0.008309059, 0.0132523365, -0.02469599, -0.029265294, 0.011464053, -0.026776655, 0.0015519989, 0.0101653375, -0.013306733, 0.025022369, -0.01457825, 0.022615327, 0.0018222813, -0.010600509, -0.006524175, -0.006581971, 0.021119423, 0.022220952, 0.019623522, 0.013571915, 0.0046712956, 2.4478405E-4, -7.024792E-4, -0.013524319, -2.2587278E-4, -0.018046023, -0.030625204, -0.006275991, -0.015353399, 0.01150485, -0.035874464, -0.02133701, -0.024587197, -0.016482126, 0.015802171, -0.01716208, 0.019378737, -0.0035391694, 0.010512115, 6.094103E-4, 0.001472954, -3.6165144E-4, 0.011824429, -0.022316147, 0.017556457, 0.03190352, 0.009675769, 0.022928106, -0.025729524, -0.025838315, -0.00491608, 0.030652402, -9.068909E-4, 0.024179224, -0.012851163, 0.007867088, -0.00966897, -0.020385072, -0.005725227, -2.0802395E-4, -0.0048684827, 0.004936478, -0.012422791, 0.010546112, 0.015217409, 0.007914685, -0.0058000223, -0.022955304, -0.0016590919, -0.005130266, 0.006000609, 0.023404075, -0.007459114, 0.013075548, -0.021976167, -0.0028643133, -0.0016046955, -0.027429413, -0.019351538, -0.015380598, 0.038295105, 0.0077854926, 0.038920663, -0.010559712, 0.031196367, -0.001196722, 0.017937232, 0.020480266, -0.012021617, -0.018698782, -0.026015105, 0.007812691, 0.01029453, 0.0109404875, 0.0144422585, 0.0023101494, -0.008268261, 0.022506533, 0.0040423367, 0.026708659, 0.003879147, -0.01550299, -0.015924562, 0.0027725194, -0.030353222, -0.014999823, -0.027959779, -0.008064275, 0.0383495, 0.0078058913, -0.0073571205, -0.0036003655, 0.01781484, -0.008499446, 0.024777586, -0.025076766, 0.013245537, -0.027184628, -2.0048069E-4, -0.035140112, -0.011158073, 0.00905701, -0.020480266, 0.017882835, 0.0031090975, -0.008526645, -0.0035391694, 0.032583475, -0.011783632, -0.027551804, 0.013395127, -0.013286334, -0.0067145624, -0.03579287, -0.0010216334, -0.050262325, -0.023064097, -0.007948682, 0.0028031173, 0.007329922, -0.010403322, -0.03331783, 0.022615327, 0.0014814534, 0.042592425, 0.018290808, 0.042130053, 0.039627817, 0.020493865, 0.006996744, -0.005973411, -0.012096412, 0.0049806754, 0.021255415, 0.024179224, -0.02226175, -0.0066839643, 0.0056062345, -0.026817452, -0.03054361, -0.029809257, 0.007737896, 0.020534663, 0.015530188, -0.01671331, -0.00951258, -0.015203809, 1.7126383E-4, 0.010988084, -0.007350321, 0.0015443494, -0.01735247, -0.008077874, -0.009791362, -0.010933688, 0.006629568, 0.011171672, -0.019433133, 0.012300398, -0.0260967, 0.012334396, -0.0108248945, -0.019256346, 0.03193072, -0.015584584, 0.026871849, 0.011151274, 0.0046916944, -0.0058680177, -0.0033181838, 0.0015757973, 0.03206671, -0.029646069, 0.018372403, 0.0072687264, -0.0015774972, 0.010566511, 0.00904341, -0.02320009, -0.019106755, -0.030598005, -0.0044061127, 0.020058693, 0.014170277, -0.006095803, -0.0038247507, -0.019351538, -0.013884695, 0.024505604, -6.128101E-4, -0.004647497, -0.05597395, 0.014591849, -0.0012179706, -0.002226855, -0.0121304095, -0.0053920485, -0.0066193687, -0.008268261, 0.010090542, 0.001948073, 0.008921019, -0.009689368, -0.018154817, -0.0168629, -0.034623343, 0.0127083715, -0.016658915, 0.016305337, -0.015584584, 0.009430986, -0.0016327436, -0.005147265, -0.0070647397, -0.008526645, -0.0069423476, 0.012456789, 0.011776833, -0.002653527, -0.0070375414, -0.0044231117, 0.008383853, -0.013313533, 0.0014840033, -0.010967685, 0.011810831, 0.03601045, -0.013524319, 0.02192177, 0.0020296678, -0.033753, 9.5958746E-4, 0.009804961, 0.028177364, 0.017706046, -9.655371E-4, -0.033073045, -0.007860288, -0.0026824253, 0.03541209, -0.018970763, 0.02179938, 0.03269227, 0.021065027, 0.037696745, 0.023404075, -0.0069423476, -0.030353222, 0.013891495, -0.026300685, -0.014986224, -0.009539778, 0.020969834, 4.100983E-5, 0.016182946, 0.0022914507, -0.034133777, -0.011273665, -0.026749456, -0.020901838, -0.011164873, 0.0064799776, 0.032338694, 0.004463909, -0.0048140865, 0.0168901, 0.021649789, 0.007010343, -0.028150165, -0.002517536, 0.031223565, 0.0036173642, 0.023159292, 0.027171029, -0.03883907, -0.012028417, -3.270162E-4, 0.009641772, 0.01242959, 0.02423362, -0.008207065, -0.007153134, 0.0046372977, 0.0013590615, -0.014755039, -5.231409E-4, 0.0123615945, -0.025947109, -0.010199335, 3.2404138E-4, 0.009696168, -0.009852558, 0.017216478, 8.2444627E-4, -0.0034660741, -0.013619512, 0.008030277, -0.027252624, -6.153599E-4, -0.019759512, 0.023349678, 0.0028609135, 2.2404009E-5, 0.029129302, 0.021649789, 4.6746954E-4, 0.0038553488, 0.00782629, 0.02011309, -0.022220952, 0.0035323699, -0.00122817, 0.012381993, -0.022628926, 0.012667575, -0.039383035, 0.0048174863, -0.008887021, 0.009757364, -0.005079269, 0.026899047, 0.011260066, -0.050751895, 0.0036955592, -0.0136331115, 0.011124075, -0.019868305, -0.02102423, -0.020208282, -0.016563721, -0.008349856, 0.0035255703, -0.0057320264, -0.021663388, -0.0043483167, -0.006507176, -0.0039539426, 0.014183876, 0.20181085, -0.0076970984, 0.009118206, 0.030598005, -0.0039199446, 0.010818095, 0.03174033, 0.01565258, 0.0063609853, 0.013544718, -0.0030258028, 0.0035561682, 0.017121285, -8.503696E-4, 0.011307663, -0.024587197, -0.027592601, -0.0230233, -0.006707763, -0.0134835215, -0.002226855, 0.011878826, -0.011062879, -0.028150165, 0.012599579, -0.0017916833, -0.01612855, 0.0074251164, 0.028422147, 0.007751495, -0.02284651, -0.012946356, -0.0035731671, 0.005307054, 0.0011593244, -0.015747774, -0.0040627355, 0.016346134, 0.011987619, 0.0080506755, -0.011124075, -0.0013140144, -0.022057762, -0.011226068, 0.01197402, 0.015734175, -0.023213686, -0.0073163235, -0.0027725194, 0.016373333, -0.03900226, -0.028449345, 0.012531583, 0.02823176, -0.0064425804, 0.0072483276, 0.012279999, 0.015516588, 1.4993554E-5, -0.0045625027, 0.015992558, 0.025702326, -0.03853989, 0.017406866, -0.0037703542, 0.014251871, -0.03130516, -0.0035799667, 0.02579752, -0.00889382, -0.0061467993, -0.03712558, -0.0097845625, 0.012347995, -0.011185271, -0.021976167, 0.0057830233, 0.0131707415, 0.020153888, 0.02591991, -0.009954551, -8.881921E-4, 0.017678848, -0.011124075, -0.017882835, -0.015407796, 0.015584584, -0.01920195, -0.00414433, -0.024505604, -9.961351E-4, -0.017026091, -0.008635437, -0.015883764, -0.011572846, 0.0076766997, 0.027456611, 0.012490786, -0.009573776, 0.0051948614, -0.02793258, 0.009125005, 0.02929249, -0.01089969, -0.0184268, -0.01519021, -0.017311672, 0.008676235, 0.03301865, -0.0117496345, -0.013694308, -0.015802171, 0.007629103, -0.016264541, 0.016808504, 0.030706799, 0.002026268, -0.019378737, 0.03894786, -0.023444872, 0.020344274, -0.02318649, 0.012885161, -0.0028354153, -0.0031719934, -0.020629855, -0.029537275, 0.011722436, 0.0051506646, -0.029809257, 0.013238737, -0.011001683, 0.014455858, -0.0040117386, 0.0034252768, -6.7443104E-4, 0.024342414, -0.0093221925, 0.010852093, -0.006095803, -0.008329458, 0.011729236, 0.014823034, 0.004283721, 0.0038893465, -0.017066889, 0.008662635, -0.016958095, -0.00168799, -0.032909855, -0.025022369, 0.002208156, 0.024016036, 0.0057150275, 0.039627817, 0.004110332, -0.017012492, -0.026069501, -0.0050418717, 0.043326776, -0.02578392, 0.015802171, 0.022302547, 0.0017780841, -0.04115092, -0.008166268, -0.17385107, 0.025838315, 0.018127618, -0.034460153, 0.029700466, 0.0021435602, 0.020833842, -1.3694733E-4, 0.013027951, -0.010539313, 0.035058517, 0.0041171317, -0.03620084, -0.007955481, 0.014714241, 0.023975238, -0.023648858, 0.034786534, 0.03432416, -0.0054056477, 0.04694414, -0.0018647785, -0.0011312763, -0.0016403932, 0.019405935, 0.015516588, 0.029102104, 0.015910963, 0.012565581, -0.011382459, -0.027415814, -0.023404075, 0.027252624, 0.0019412735, -0.0019531727, 7.8024913E-4, -0.0016837403, -0.008710233, 0.0031855924, 0.0039063455, 0.04191247, 0.009866158, 0.029972447, 0.0057660243, 0.009159003, 0.00783309, 0.030298825, -0.022628926, 0.01028093, -0.01918835, 0.0059768106, -0.043136388, 0.015938161, -8.60144E-4, 0.007853488, 0.029074905, -0.007350321, -0.0071463343, 0.010573311, 0.007914685, -0.021065027, -0.013333932, 0.00935619, -0.018657984, -0.009070609, -0.016250942, -0.03435136, 0.014224673, -0.03603765, 0.01243639, -0.034623343, 0.013415526, 0.020167487, 0.0044877077, 0.012626777, -0.018617187, -0.035901662, 0.007935083, -0.012613178, 0.014483056, -0.011865227, 0.033861794, -0.0030513012, 0.02072505, -0.01304155, -0.004419712, 0.015516588, -0.007778693, 0.0038043521, -0.009730166, 0.009621373, -0.024192823, -0.036880795, 0.00858784, -0.0072823255, -0.00905021, 0.010219734, 0.005813621, 0.004987475, -0.02239774, -2.4648394E-5, -0.0018171816, -0.0018953765, 0.024831982, 0.015570985, 0.01705329, 0.004402713, 0.023050498, 0.011906024, 0.01104248, -0.015530188, -0.012660775, 0.024315216, 0.019677918, -0.024804784, 0.011307663, -0.006510576, -0.009947752, -0.0037023588, 0.013748704, 0.0490656, 0.00429732, -0.012789967, -0.018916367, -0.017855637, -0.022479335, -0.101231806, -0.0129395565, 0.018916367, 0.037234373, -0.005324053, 0.020357873, -0.008349856, 0.009328992, -0.040171783, 0.03788713, -0.006524175, -0.02732062, -0.0017457863, 0.005262857, 3.021553E-4, -0.0043823146, -0.008390653, -0.00522206, -0.024165625, 0.03543929, 0.0027844186, -0.0047494904, 0.012565581, -0.005596035, -0.019093156, 0.01902516, -0.029510077, 0.022968903, 0.016182946, 0.005538239, 0.0049670762, -0.023580864, 0.0017984828, -0.04400673, -0.014755039, -0.029238096, -0.025661528, -0.009179402, -4.925429E-4, -0.06429661, 0.011280465, 0.008560643, 0.0044571096, -0.025375947, 7.424266E-4, -0.0041205315, -0.015570985, 0.027905382, 2.6050804E-4, -0.013293134, -0.010994883, -0.011266866, -0.035901662, -0.0033402822, 0.012449989, 0.02224815, 0.033100244, 0.0021095625, -0.005310454, -0.03862148, -0.007996279, -0.0101653375, -0.017202878, 0.018657984, 0.0102469325, 0.013952691, 0.010668505, 2.2736019E-4, 0.028884517, -0.02086104, -0.015625382, 0.02208496, -0.028830122, -6.693314E-4, -0.02715743, 0.0043483167, -0.015475792, -0.018318007, 0.0322571, -0.024573598, 0.00936979, -0.025987906, 0.0033793799, -0.023594463, 0.016495725, 0.014143079, 0.010457719, -6.6380674E-4, -0.0036343632, -0.0337802, 0.0068029566, 0.016386932, -7.352021E-4, -0.0015366998, 0.012021617, 0.010777297, 0.008798626, -1.3875346E-4, 7.5135106E-4, 0.024056833, -0.0057830233, -0.009179402, -0.073326424, 0.03432416, -0.01965072, -0.009900155, -0.0062113954, -0.013619512, 0.0048412844, -0.00904341, -0.002852414, 0.023132093, -0.013177541, 0.019514728, -0.0029017108, -0.0051982612, 5.0444214E-4, 0.018753178, 0.0039675413, -0.0064221816, -0.001581747, 9.6521835E-5, -0.0049942746, 0.010954087, 0.020330675, -0.0013335631, -0.008927818, 0.035656877, 0.0037941528, 0.0042429236, -0.031821925, -0.022533732, 0.03911105, 0.0046100994, -0.011130875, -0.016686114, -0.0054124473, -0.043326776, -0.010790897, 0.01582937, 0.013551517, 0.0033130841, -0.012096412, -0.03318184, 0.007187132, -0.01856279, -0.0019412735, 0.007289125, -0.015611783, 0.0036139644, 0.002255753, 0.021255415, 0.0117496345, 0.01136886, -0.014007087, -0.033127442, 0.023594463, -0.003559568, 0.049119998, -0.005344452, -0.005922414, -0.012014817, 0.028748527, 0.01780124, 0.014143079, -0.020820243, 0.0024257419, -0.011457253, 4.7554402E-4, -0.013456323, 0.0026161296, -0.01887557, -0.0066839643, -0.020983433, 0.027810188, 0.0337258, 0.009879756, 0.0058408193, 0.0028201162, 0.020806644, -0.015095016, 0.020752247, 0.022615327, -0.014972624, -0.046889745, 0.007411517, -0.006490177, 0.024723189, -0.004508106, 0.00935619, 3.9989894E-4, 0.011273665, -0.010274131, 0.0035017717, 0.018345205, -0.010471318, 0.0053648506, 0.017991628, -0.011858427, 0.0054396456, -0.006153599, 0.029972447, -0.0059462124, -0.009798162, 0.0053138537, -0.017148482, -0.032746665, -9.961351E-4, -0.02591991, -0.009872956, 0.014319867, 0.017842038, 0.014387863, 0.015897363, -0.01901156, 0.0069253487, -0.043544363, 0.0053478517, -0.00982536, -0.004589701, -0.023553666, 0.046889745, 0.028911715, 4.542954E-4, 0.039410233, -0.007153134, 0.048929613, 0.010423721, 0.020793045, -0.03454175, -0.0070171426, 0.003851949, -0.001873278, -0.008615038, -0.02102423, 0.015163012, -0.012028417, 0.012619978, 0.012572381, 0.032801062, -0.0030801992, 0.067506, 0.0078194905, -0.017134884, 0.013939092, -0.01732527, 0.008880221, 0.009580576, 0.02193537, -0.031386755, -0.012851163, 4.683195E-4, -0.017529259, 0.01012454, -0.028422147, 0.019677918, 0.0076834993, 0.019242747, 0.027986975, -0.0072347284, -0.015679779, -0.01596536, -0.0029510078, 0.022887308, -6.179097E-4, -0.025035968, -0.0068675526, 0.027905382, -0.016142149, 0.0023645458, -0.03356261, 0.007289125, -0.024831982, -6.990794E-4, 0.004402713, 0.04310919, -0.0038927463, -0.015312602, -0.004480908, 0.012715171, 0.011151274, -0.0077446955, 0.017923633, -0.02209856, -0.011790432, 0.0025532336, -0.0073435213, 0.004096733, -0.028721329, -0.014999823 ], + "id" : "f67c90dc-2aa6-44b8-911f-19741bc3e604", + "metadata" : { + "source" : "movies.csv" + } + }, + "67871e58-92eb-4f8e-9564-9047f193c302" : { + "text" : "Linz-Rosie O'Donnell-Brian Blessed-Nigel Hawthorne-Lance Henriksen-Wayne Knight-Taylor Dempsey-Sherry Lynn-Mickie McGowan-Jack Angel-Bob Bergen-Rodger Bumpass-Lily Collins-Jim Cummings-Debi Derryberry-Jason Marsden-Phil Proctor-Chris Sanders-Mary Kay Bergman-Aria Noelle Curzon-Danny Mann-Frank Welker-Scott Record-Joseph Ashton-Beth Anderson-Billy Bodine-Hillary Brooks,africa-gorilla-baby-adoption-feral child-tarzan-nest-jungle-anthropomorphism-camp-orphan,/ceGk1VcuI8pSXQhSlnqsqTFCPLD.jpg,/3Skg7e94WFreLgQAR0PAYSk0Zv1.jpg,10530-11970-9325-10674-10693-10545-10144-12230-10340-10895-11544-3170-11688-10882-11224-10112-408-11360-12092-11886-812\r\n313369,La La Land,Comedy-Drama-Romance-Music,en,Mia an aspiring actress serves lattes to movie stars in between auditions and Sebastian a jazz musician scrapes by playing cocktail party gigs in dingy bars but as success mounts they are faced with decisions that begin to fray the fragile fabric of their love affair and the dreams they worked so hard to maintain in each other threaten to rip them apart.,61.838,Summit Entertainment-Black Label Media-Gilbert Films-Impostor Pictures-Marc Platt Productions-TIK Films,11/29/16,30000000,447407695,129,Released,Here's to the fools who dream.,7.902,16210,Ryan Gosling-Emma Stone-John Legend-Rosemarie DeWitt-J.K. Simmons-Ami��e Conn-Terry Walters-Thom Shelton-Cinda Adams-Callie Hernandez-Jessica Rothe-Sonoya Mizuno-Claudine Claudio-Jason Fuchs-D.A. Wallach-Trevor Lissauer-Olivia Hamilton-Anna Chazelle-Marius de Vries-Finn Wittrock-Josh Pence-Nicole Coulon-Damon Gupton-Christopher Michael Stevens-Keith Harris-Kaveh Rastegar-David Douglas-Miles Anderson-Bobo Chang-Meagen Fay-John Hindman-Valarie Rae Miller-Nicole Wolf-Corrin Evans-Kiff VandenHeuvel-Tom Everett Scott-Hemky Madera-Zo� Hall-Dempsey Pappion-Clifton 'Fou Fou' Eddie-Cal Bennett-Nedra Wheeler-Javier Gonzalez-Khirye Tyler-Briana Lee-Shaylah J.", + "embedding" : [ 0.0075080334, -0.029290939, -0.009958096, -0.032118462, -0.028879164, 0.04356581, 0.0064991843, -0.0012027265, -0.027328143, -0.043703068, 0.011063025, 0.013266022, 0.02080837, -0.007830591, 0.0039530415, 0.012737578, 0.022661358, 0.0033782718, 0.014563114, -0.033024367, 8.7588E-4, -0.0054628835, -0.010376734, 0.009752207, 2.3419711E-4, 0.011419897, 0.043840326, -0.005682497, -0.010026725, -0.012984643, 0.007906083, -0.0073501864, 0.0052535646, -0.03080078, -0.01629257, -0.004550115, 0.0076521547, -0.026724206, 0.03354595, 0.0012979496, 0.009717893, 0.016429828, -0.007446267, -0.008640415, -0.0040868684, 0.0029613494, 0.015139599, -0.011721865, -9.813975E-4, 0.018722042, 0.027561482, 0.037965667, -0.021741727, -0.0119483415, -0.013650346, -2.85669E-4, -0.014837631, -0.011673825, 0.0060153487, 0.0104796775, 0.0039599044, 0.0010740468, -0.0335734, -0.014837631, -0.0180083, -0.004646196, -0.010472815, -0.017074943, 0.002964781, -0.0026061935, 0.022057422, -0.0015724663, 0.014782728, 0.0030214002, 0.01793967, -0.032338075, -0.029620359, 0.0012053001, 0.004550115, -0.0027794822, 0.019545592, -0.0086061, -0.02447317, 0.012538553, 0.019325979, 0.009704167, -0.027094804, 0.030883135, -0.022263309, 0.001962795, 0.010054177, 0.046009008, -0.011200284, 0.0014515073, 0.023402553, 0.009450239, -0.019037737, 0.024418266, -0.02605164, -0.030855684, -0.0033147899, -0.005205524, 2.2047127E-4, -0.00975907, -0.0024740824, 0.0015295731, 0.00615947, -0.007610977, 0.03502834, 0.016580813, 0.010054177, -3.3542517E-4, 0.017239653, -0.046969816, -0.0049172817, -0.023992766, 0.030114489, -0.009731619, -0.005414843, -0.01833772, 0.030608619, 0.024116298, 0.0012979496, -0.044361908, 0.04276971, 0.049358115, -4.7783073E-4, -0.011797357, 0.0015656034, 0.002647371, 0.020039724, -0.010575758, 0.016320022, 0.011934616, -0.023210391, 0.03508324, -0.024596702, 0.0045158006, -0.027630111, -0.013773878, 0.032694947, 0.04540507, -0.031075297, -8.514309E-4, -0.01876322, 0.009285529, 0.007837454, -0.012236585, 0.02080837, 0.0151258735, 0.018474977, 0.027314417, 0.01925735, 0.006190353, 0.023828054, -0.003898138, -0.002786345, 0.005504061, -0.0055212183, -0.023800602, -0.0049104188, -0.017912218, -0.0064991843, -0.0019027443, 9.83971E-4, 0.022469196, 0.015482745, -0.015139599, -0.007233517, -0.0073295976, 8.878902E-4, 0.02727324, -0.03975003, 0.02522809, -0.007974712, 0.01015712, -0.0038192144, -0.017967122, -0.034836177, -0.013917999, 0.004488349, 0.023416279, 0.030279199, 0.05141699, -0.022702536, 0.017006313, 0.024390815, -0.029098777, 0.0051986612, -0.012490513, -0.0086815925, 0.024033943, 0.014604292, -0.0133346515, -0.62370205, -0.026326157, 0.0014703803, -0.0018015163, 0.02047895, 0.017980848, -0.0022321644, -0.004309913, -0.023663344, -0.006272708, -0.030224295, 0.025502607, 0.023265295, 0.00380892, -0.009278666, -0.019490689, 0.008791399, -0.021878986, 0.003319937, -0.0016968567, -0.018557332, 0.0055589643, 0.01441213, -0.010568895, 0.011515978, 0.014288598, -0.0063825147, -0.014590566, 0.016814152, 0.00905219, -0.010953219, 0.019010285, 0.0060050543, -0.0056207306, 0.044856038, 0.0039736303, -0.015812166, 0.05355822, 0.0099031925, 0.031679235, -0.032859657, 3.2598866E-4, 0.011660099, 8.784536E-4, -0.019284802, 0.02480259, 0.007020766, 0.013650346, -0.011248324, -0.0031517956, 0.0036716617, 0.011001259, -0.005226113, -0.019600496, -0.011172832, -0.011872849, 0.013362103, -0.036153857, 0.03670289, -5.6275935E-4, -0.029373294, 0.025969286, 0.00587809, 0.013609168, 0.0041486346, 0.025694769, 3.9590464E-4, -0.013540539, 0.01669062, -0.02555751, 0.008324721, 0.012051286, -0.010260064, 8.927156E-5, 0.0076864692, 0.012236585, 0.019929918, 0.008818851, -0.013526813, 0.015331761, -0.0167867, -0.008166874, 0.0103973225, 0.014123887, 0.03802057, -0.0013794467, -0.03920099, -0.0021738296, 0.011090477, -0.0054560206, 0.014563114, 0.028714454, 0.0063138856, 0.002969928, -0.007370775, -0.014480759, -0.01286111, 0.0022647632, 0.025200639, -0.07318617, -0.0045295265, -0.021892712, 0.031953752, -0.013815056, 0.013211119, 0.006715366, -0.011330679, 5.636172E-4, 0.016086683, -0.011124792, -0.017816138, -0.008461979, -0.012312077, -0.021769179, -0.018708317, -0.027945805, 0.005205524, 0.007954123, -0.01793967, 0.005600142, -0.0010388744, 8.6601457E-4, 0.0010191435, -0.014865083, 0.010781646, 0.03453421, -0.007199202, 4.4437402E-4, 0.004361385, 0.0078649055, -0.003956473, -0.017074943, 0.025914382, -0.015825892, 0.013149353, 0.0039221584, 0.00554867, -0.0059432876, 0.01401408, -0.01027379, -0.009532594, 9.359306E-4, -0.010939493, -0.01093263, 0.0011340973, -0.01175618, -0.018474977, 0.0096629895, -0.01883185, -0.017994573, -0.022990778, 0.012346392, -0.007144299, 0.010637525, 0.0025375644, 0.0045158006, -0.03524795, -0.005490335, 0.013787604, -0.025584962, 0.017651428, 0.006722229, -0.013815056, -0.028439937, 0.02120642, -0.011344405, -0.010527718, 0.006437418, 0.002800071, -0.009765933, 0.018310267, -0.022880971, 0.010170846, 0.00745313, -0.01180422, 0.008866891, -0.011358131, 0.028165419, 0.010843412, 0.0051266006, 0.012538553, -0.009210037, -0.02694382, -0.016649442, 0.027945805, 0.023031956, 0.02064366, -0.016923958, -0.015276858, 5.511782E-4, -0.019875014, -0.0027005586, -0.0044334456, -0.0037917627, 0.007466856, 0.012778755, 0.0108022345, -0.0049378704, 0.0011864271, -0.019971095, 0.03618131, 0.01711612, 0.0117012765, 2.659381E-4, 0.0021240734, -0.019367157, -8.767379E-4, -0.026902642, 0.0037162707, -0.0059432876, 0.022579003, -0.009848289, -0.01662199, -0.0074188155, 0.009134545, 0.014233694, 1.6213646E-4, -0.002939045, 0.0030454204, -0.0043648165, 0.012552279, 5.0313777E-4, 0.0101502575, 0.01817301, -0.00949828, 0.007885494, 0.001593913, -0.021412307, -0.0014086141, -5.5074925E-4, -0.016498458, 0.020877, 0.0028481113, 0.009148271, -0.010637525, -0.03651073, 0.021728002, -0.011879712, 0.038459796, -0.024006492, -0.012463061, 0.01297778, 0.021027984, 0.010376734, 0.0148788085, -0.010534581, 0.010658113, 0.023292746, -0.012167956, 0.033326335, -0.01142676, 0.030032134, -0.004556978, 0.018900478, 0.015880795, -0.013979766, 0.0013863096, 0.008379624, 0.037773505, 0.01935343, 0.0046187444, -0.016663168, 0.022812342, 0.0060874093, 4.932723E-4, 0.0033353786, -0.017967122, 0.003970199, -0.013712112, -0.027465401, -0.022153502, -0.016306296, -0.0040937313, 0.0081943255, -0.0032513079, -0.009910055, -0.014865083, 0.0163612, 0.026751658, 0.020602483, 0.0070756692, -0.021563292, 0.021618195, 0.038926475, -0.030690974, -0.025653591, -0.005308468, -0.011838535, -0.033491045, -0.021014258, 0.011557155, 0.03634602, -0.028385034, 0.015757263, 1.9130387E-4, -0.004134909, 0.024253557, -0.00949828, 0.013698386, 0.022661358, 0.0010268643, 0.010541444, -0.005764852, -0.009717893, 0.020877, -0.03242043, 1.4572979E-4, -0.015139599, -0.0052535646, -0.0036991134, 0.0073982268, 0.0023814328, -0.03991474, 0.01065125, -0.005150621, -0.003561855, -0.003143217, 0.01619649, -0.008791399, -0.028357582, -0.017623976, -0.035495017, -0.034342047, 0.004862378, 0.09262195, 0.039722577, 0.013032683, 0.02360844, -0.015139599, -0.0098208375, -0.008256092, -0.020602483, -0.012415021, -0.009862015, 0.03258514, -0.017733783, 0.023992766, 0.0130875865, 0.0031157653, -0.012264037, -0.013952314, -0.009738482, 0.0024672195, -0.008784536, -0.031514525, -0.021892712, 0.022880971, 0.046667848, 0.0060359375, -0.018708317, 0.022880971, -0.0047937487, 0.010678702, 0.03458911, -0.018914204, 0.009601223, 0.0022733419, 0.016498458, -6.1809167E-4, 0.010568895, 0.028247774, 0.0063790833, 0.036922503, -0.009573772, 0.0051712096, 0.01711612, 0.015345487, -0.0059878966, 0.0082766805, -0.027890902, -0.0184338, 0.029098777, 0.035495017, -0.03096549, 0.022304486, 0.010019862, -0.00877081, -0.01718475, 0.008407076, -0.0013219698, -0.0073982268, -0.0039221584, -0.015729811, 0.016169038, -0.005631025, -0.030059585, 0.011104203, -0.011303227, 0.011083614, -0.011433623, -0.014892534, -0.008022753, -0.027753644, -0.008407076, 0.0043819738, -0.011708139, -0.013430732, -0.016347473, 0.028714454, -0.0016796994, 0.023100585, -0.0030951765, 0.027671289, 0.011907164, -0.028714454, -0.022798616, 0.0075697997, -0.009512005, -0.0033268, 0.004550115, -0.0067325234, 0.036455825, -0.010939493, 0.007315872, 5.2286865E-4, -0.0024088845, -0.030526264, -0.011351268, 0.031789042, 0.004965322, 0.010445363, 0.0152905835, -5.9707393E-4, -0.0021601038, -8.0982444E-4, -0.019971095, -0.011927753, -0.018790672, -0.020437773, -0.008571786, 0.013574854, 0.0021532408, -0.0184338, -0.023745699, -0.016498458, -0.02964781, 0.006152607, 0.011042437, 0.017322008, 0.011056162, 0.0054388633, 0.02360844, -0.012174819, 0.009017875, 0.0012945181, -0.015578826, 0.022496648, 0.01704749, -0.01032183, 0.033106722, -0.013368966, -0.022606455, 0.008372761, 0.030910587, -0.006790858, 0.015139599, -0.007823728, -0.013588579, -0.0052844477, -0.014123887, 0.008077656, 0.0077619613, -0.012586594, 0.013478773, -0.0032598865, 0.00441972, 0.029236035, -7.922382E-4, -0.0035446978, -0.034122434, 0.005205524, -0.014549389, 0.011234598, 0.015167051, -0.012442472, 0.010246338, -0.028632099, -0.01076792, -1.7672016E-4, -0.020629935, -0.0204515, -0.0089286575, 0.017912218, 0.020520128, 0.039146088, 0.0016419534, 0.027794821, 0.023484908, 0.012936602, 0.026504593, -0.029071325, -0.009422787, -0.032502785, -0.0060222116, -0.003035126, 0.01892793, 0.0051986612, 0.01962795, -0.012593457, 0.017390637, 0.0018529881, 0.0081943255, -0.0020657387, -0.022071147, -0.03239298, 0.0036339157, -0.025598688, 0.0042893244, -0.019765208, 0.002616488, 0.01586707, 0.003891275, -0.008310995, -0.010500266, 0.024582976, 0.0020228454, 0.016347473, -0.011337542, 0.014769002, -0.023965312, -0.0056859283, -0.01702004, -0.0081806, -3.079735E-4, -0.023196666, 0.010054177, 0.015606278, -0.015990602, -0.0035515607, 0.04178145, -0.018680865, -0.010664976, 0.0112963645, -0.014302324, -0.014919986, -0.024596702, -0.021947615, -0.021741727, -0.0034417538, -0.0074119526, -0.013767015, 0.0011761327, -0.018612236, -0.03590679, 0.009807111, -0.011138517, 0.03080078, 0.008702181, 0.03821273, 0.021714276, 0.0083590355, -0.027986983, 0.006602128, -0.0057854406, -0.0062624137, 0.010575758, 0.033024367, -0.019682853, 0.003613327, 0.010644387, 0.0061045666, -0.036757793, -0.032804754, 0.023594715, 0.024047669, 0.014316049, -0.022990778, -0.001803232, -0.023430005, 0.0027829136, -0.011914027, -0.0030248316, -0.005212387, -0.02654577, -0.014865083, 0.001231894, -0.0053599398, 0.011660099, 0.001650532, -0.01979266, 0.014123887, -0.027410498, 0.007315872, 5.6018576E-4, -0.016580813, 0.04145203, -0.021755453, 0.00134599, 0.0056516137, 0.01777496, 0.014192517, -0.002064023, 0.008413939, 0.032036107, -0.014508211, 0.022414293, -4.2893243E-4, -0.0109669445, 0.024445718, 0.019545592, -0.019463237, -0.0052913106, -0.018653413, 0.0016925674, 0.031816494, -0.0037574482, -9.745345E-4, 0.019367157, -0.024335911, -0.0032581708, 0.022098599, -0.0180083, -0.009072779, -0.03834999, 0.02012208, -0.008564923, 0.006248688, -0.010678702, -0.0054560206, -0.0073982268, -7.000177E-4, 0.008269818, -0.00933357, 0.005421706, -0.025475156, -0.022482922, -0.038569603, -0.02931839, -0.007803139, -0.010706154, -0.0024552094, -0.021782905, -0.0032924854, -0.0031826787, 0.0067256605, -0.0066295797, 0.0054011173, -0.028577195, 0.0011752748, 0.017884767, 0.0022321644, -0.009841426, 0.0018495567, 0.03255769, -0.0035206773, -0.014823905, -0.005977602, 0.012655223, 0.025818301, -0.020108353, 0.020492677, -0.004272167, -0.01899656, -0.010294379, 0.019916192, 0.01988874, 0.024322186, 0.005136895, -0.032942012, -0.005744263, -0.0060668206, 0.041204967, -0.011165969, 0.017157298, 0.026504593, 0.017253378, 0.037306827, 0.034451853, -0.003599601, -0.025584962, 0.008160011, -0.006145744, -0.016484732, -0.016869055, 0.0054491577, 0.006735955, -9.2735194E-4, -0.018790672, -0.024706509, -0.0025787419, -0.02809679, -0.0311302, 0.00834531, 0.013616031, 0.023539811, 0.015880795, 0.0025753104, -4.3708214E-4, 0.005332488, 0.0023213823, -0.026188899, -0.016278844, 0.026133996, 0.015935699, 0.03373811, 0.013073861, -0.031157652, -0.01048654, 0.007954123, 0.025667317, 0.017061217, 0.020506402, -0.01918872, -0.015729811, -0.0075629367, -0.00615947, -0.008962972, -0.0015287152, 0.023786876, -0.030498812, -0.0023591283, 0.020918177, 0.01998482, 0.006121724, 0.01603178, -0.002463788, -0.010973807, 0.0024843768, -0.0053187623, -0.009889467, -0.0037677425, -0.022222131, 0.012751304, 0.014007217, -0.0032015517, 0.03387537, 0.015098422, -0.0019336274, 0.011900301, -0.022071147, 0.0068526245, -0.01203756, -0.00949828, 0.0037025448, 0.021522114, -0.027685015, 0.011042437, -0.038295086, 0.009457102, -0.0025804576, 0.0030694406, -0.0108845895, 0.038981378, 0.0029047304, -0.05372293, 0.0036922505, -0.013753289, 0.016663168, -0.020959355, -9.745345E-4, -0.034973435, -0.015345487, -0.003263318, 0.008283543, -0.01098067, -0.042165775, -0.011632647, -0.01457684, -0.00872277, 0.022867246, 0.19073424, -0.013341514, 0.0034040078, 0.036922503, -0.008098245, 4.9498805E-4, 0.027588934, 0.025365349, 0.004474623, 0.023471182, 0.0019662264, 0.0028361012, 0.011014985, -8.6858816E-4, 0.027835999, -0.03159688, -0.028275225, -0.02163192, -0.010349282, -0.025077106, -0.014508211, -0.0058883843, -0.0011847113, -0.027890902, 0.014563114, 0.019339705, -0.004512369, 0.0031346383, 0.019971095, 0.0078649055, -0.0012747872, -0.011749317, -0.009155134, 0.0035721494, -0.005068266, -0.006856056, -0.01180422, 0.013890548, 0.014055258, -0.0019902466, 3.5129566E-4, 0.0029750753, -0.01523568, -0.0010045598, 0.011653236, 0.029785069, -0.01935343, 1.5452292E-4, -0.017651428, 0.0072541055, -0.052460153, 0.007823728, 0.020561306, 0.026188899, -0.0048898295, -0.016141586, -0.0011409603, 0.0056516137, -0.010493403, 0.010404185, 0.009285529, 0.033600852, -0.021933889, 0.01220227, 0.007137436, 0.0027949237, -0.030938039, -0.008084519, -0.003613327, -0.028412485, -0.010012999, -0.027986983, 0.0022064284, -1.9355577E-4, 0.0024191788, -0.020698564, 0.012799344, 0.0017148718, 0.013828781, 0.019737756, -0.033436142, -0.0021909869, 0.01810438, -0.021988792, -0.024541799, -0.007720784, 0.021247597, -0.007775687, -0.0090933675, -0.027300691, -0.010939493, -0.026737932, -0.00900415, -8.878902E-4, -0.0030763035, -0.0130875865, 0.025420252, 0.0154552935, -0.012566005, -0.0046702162, -0.044334456, 0.025337897, 0.015482745, -0.013567991, -0.039338253, -0.01711612, -0.0058437753, 0.0069795884, 0.029592907, -0.014919986, -0.022222131, -0.018873027, -0.009518868, -0.017720057, -0.005960445, 0.02809679, 0.0065849707, -0.011673825, 0.035659727, -0.020190708, -0.017033765, -0.025145736, 0.026641851, 0.006886939, -0.016759248, -0.028247774, -0.02021816, 0.0027400204, -0.007137436, -0.031240007, 0.022977052, -0.014631744, 0.008901206, -5.33163E-4, -0.0039839246, -0.00316209, 0.02278489, -0.00519523, 0.0071717505, -0.01998482, -0.0011092193, -0.0048280633, 0.009505142, -0.005593279, 0.0073295976, -0.03667544, 0.0051986612, -0.010548307, -0.018804397, -0.025049655, -0.04024416, -0.0060359375, 0.02179663, 0.016580813, 0.046914913, -0.00427903, -0.015620003, -0.042605, -0.012572868, 0.04222068, -0.026175173, 0.021549566, 0.010356145, -0.023896683, -0.01899656, -0.002431189, -0.17558092, 0.008818851, 0.0046427646, -0.030004682, 0.011303227, 0.0028172282, 0.01767888, -0.0036407786, -0.0032135618, -0.016223941, 0.031240007, -0.0020914746, -0.045597233, -0.0023591283, -0.008866891, 0.023622166, -0.010822823, 0.04356581, 0.038295086, -0.0051334635, 0.032859657, -0.014384679, -0.007535485, -0.006265845, 0.0033988606, -0.0058883843, 0.029181132, 0.015386664, 0.0064545753, -0.01220227, -0.042687356, -0.0025238385, 0.006550656, 0.0126964, -0.013032683, 0.0034829313, 3.0947477E-4, -0.0147964535, -0.0070619434, -0.010507129, 0.041479483, 0.019916192, 0.02318294, 0.017335733, 0.019902466, 0.022661358, 0.04029906, -0.01810438, 0.021686824, -9.5812786E-5, -0.005150621, -0.032530237, 0.029949779, -0.010376734, -0.016223941, 0.033847917, 0.012325803, 0.008461979, 0.0037437223, 1.0862714E-4, -0.019641675, -0.012675812, 0.008818851, -0.008338447, 7.716495E-4, -0.011399308, -0.008551197, 0.008365898, -0.034671467, 0.0050202254, -0.028632099, 0.010335556, 0.007707058, 0.01114538, 0.013389555, -0.023635892, -0.03305182, 0.0042447154, 6.438276E-4, 0.020259337, -0.011399308, 0.043016776, 0.002698843, 0.0015424411, 1.723236E-4, -0.0052089556, 0.008139422, 0.005929562, 0.0064991843, -0.013115038, 0.00867473, -0.025859479, -0.025475156, 0.013293474, 0.0020417185, 0.0024226103, -7.9524075E-4, 0.018145557, 0.015359213, -0.016072957, 0.0048966925, -0.014974889, -0.015057244, 0.029263487, 0.028549744, 0.011557155, -7.969565E-4, 0.02245547, 0.007693332, 0.0056653395, -0.0066570314, 5.473178E-4, 0.009642401, 0.013876822, -0.023333924, 0.0033336629, -0.012964054, -0.02473396, 0.0021789768, 0.011406171, 0.056330837, 2.3698517E-4, -0.0042584413, -0.02153584, -0.013115038, -0.0074050897, -0.09042582, -0.014206243, 0.017363185, 0.038569603, -0.032667495, 0.0515817, 9.5823506E-4, 0.028055612, -0.023800602, 0.02572222, 0.0051094433, -0.026751658, 0.017074943, 0.0039530415, 0.010754194, 0.0076452917, -0.029373294, -0.006578108, -0.014892534, 0.030690974, 2.9194214E-5, -0.0013657209, 0.0023556969, -0.018982833, -0.009807111, 0.021851534, -0.027986983, 0.012675812, 0.010671839, 0.0066501684, 0.0049927738, -0.016718071, -7.3905056E-4, -0.03387537, -0.024171202, -0.014919986, -0.025488881, -0.023814328, -0.00933357, -0.04474623, 0.00938161, 0.017527895, -0.0019525004, -0.0180083, -0.027492853, 0.0024963869, -0.030608619, 0.026271254, -0.008729633, -0.018969107, 0.0026490868, -0.023526086, -0.029181132, -0.0017311713, 0.024281008, 0.008208051, 0.03338124, 0.022867246, -0.023965312, -0.022510374, 0.0067187976, 0.005819755, -0.027918354, 0.02915368, 0.0047937487, 0.019325979, -0.004766297, -0.009361021, 0.00942965, -0.019778933, -0.021851534, 0.027341869, -0.031377267, -0.022839794, -0.012284625, 0.0048212004, -0.024926122, -0.022277035, 0.037471537, -0.024033943, 0.010857138, -0.03239298, 0.028275225, -0.015606278, 0.018049477, 0.02179663, 0.012264037, 0.009731619, -0.01457684, -0.03653818, -0.0081119705, 0.013314063, -0.002393443, 0.0034383223, 0.008365898, -0.0010843412, 0.0020211297, -0.0054182746, -0.005668771, 0.0034949414, -0.0044711917, 0.007885494, -0.07527249, 0.02964781, -0.030224295, -0.008777673, -0.011461074, -0.01396604, 0.0038192144, -0.00761784, -0.0028395327, 0.02898897, 0.006550656, 0.016182764, -0.002920172, 0.004752571, 0.0076658805, -0.010328693, 0.009306118, -0.012957191, 0.0013983197, 0.008537471, -0.00999241, 0.010342419, 0.023430005, 0.0100679025, 0.0104385, 0.010541444, 0.008413939, 0.004834926, -0.019573044, -0.014384679, 0.03994219, -0.032475334, -0.005287879, 0.0017672016, -0.0184338, -0.02915368, -0.0074119526, -0.0027074215, 0.01215423, 0.0012867973, -0.005764852, -0.019216172, 0.006670757, -8.2998426E-4, -0.008578649, 0.011172832, -0.01076792, 0.0054491577, 1.5023358E-4, 0.010212024, 0.02229076, 0.008571786, -0.0017551915, -0.009443376, 0.027479127, -0.012572868, 0.06615854, 0.009875741, -0.008160011, -0.026312431, 0.019682853, -0.004817769, 0.02127505, -0.009354158, 0.01220227, 0.0036339157, 0.017472992, -0.012119915, -0.008544334, -0.02146721, -0.033161625, -0.0066673257, 0.0050133625, 0.042632453, 0.01619649, 0.019490689, 0.014343501, -0.0058677956, -0.0038123515, 0.01652591, 0.024953574, -0.0072403797, -0.019971095, 0.018063203, -0.008853165, 0.005363371, -0.011598333, 0.008420802, 0.009251215, 0.015729811, -0.012620908, 0.014782728, 0.024281008, 0.014123887, 0.008468842, 4.4608975E-4, -0.027341869, -0.012566005, -0.006385946, 0.028632099, -0.016745523, 0.0019061757, -0.007219791, -0.03239298, -0.021714276, 0.009889467, -0.024994751, -0.0067942897, 0.006444281, 0.020396596, 0.022867246, 0.0073570493, -0.01490626, -1.4133324E-4, -0.04139713, 0.0028292383, -0.011872849, -0.023855506, -0.01859851, 0.03409498, 0.011893438, -0.0051712096, 0.033463594, -0.00446776, 0.04622862, -7.025913E-4, 0.02262018, -0.032145914, 5.344498E-4, 0.009065916, 6.1766274E-4, -0.012236585, -0.02769874, 0.014988615, -0.004361385, -0.0039050009, 0.009807111, 0.03804802, -0.027794821, 0.06994687, 0.010898315, -0.0055315127, 0.03242043, -0.020561306, 0.023635892, -3.4121575E-4, 0.019504415, -0.010616936, -0.0050339513, -0.0026525182, -0.020245612, 0.014810179, -0.03140472, 0.008139422, -0.010568895, 0.020355418, 0.003105471, -0.007768824, -0.015482745, -0.0052089556, -0.017651428, 0.01770633, 0.014933712, -0.0056859283, -0.015057244, 0.0070893955, -0.0038706863, -1.3918857E-4, -0.017569073, 0.008077656, -0.023210391, 0.0046736477, -0.00270399, 0.033793014, -0.006152607, -0.0035515607, 0.016429828, 0.016045505, -1.05570994E-4, -0.027026175, -0.010850275, -0.024582976, -0.026683029, 0.023979038, -0.004488349, -0.012332666, -0.03307927, -0.01902401 ], + "id" : "67871e58-92eb-4f8e-9564-9047f193c302", + "metadata" : { + "source" : "movies.csv" + } + }, + "f0a3fc03-76a6-4d65-9c4a-f6eb2dd840d3" : { + "text" : "Ringler-Britt Barrett-Chauntae Davies-Alisa Allapach-Nicholas Furu-Angelica Flameno-Lily Winn-Katerina Moutsatsou-Faleolo Alailima-Rio Ahn-Joey Brander-John Jason Bailey-Cody Deal-Natalie Cohen-Carrie Keagan-Stephanie Mathis-Guile Branco-Richard Alan Reid-Tom Spano-Lanette Fugit Hannah-David Hill-Mitch Holleman-Jessica Simons-Anthony Mingilino-Michael A. Rizza-Charlene Geisler-Kaitlin Clark-Heather Roop-Joe Satriani-Carrot Top-Jaira Valenti-Anat Gerber-Victor Yerrid,blackjack-stag night-lost weekend-chapel-hit with tire iron-memory loss-las vegas-drugs,/uluhlXubGu1VxU63X9VHCLWDAYP.jpg,/2o0PKGmnSgCGkzoSePNAqse8Ure.jpg,45243-109439-72105-10528-607-23483-14160-585-22-6479-12-8681-557-425-58-20352-597-1271-51876-1865-41154\r\n137106,The Lego Movie,Animation-Family-Adventure-Comedy-Fantasy,en,An ordinary Lego mini-figure mistakenly thought to be the extraordinary MasterBuilder is recruited to join a quest to stop an evil Lego tyrant from gluing the universe together.,28.816,Village Roadshow Pictures-Vertigo Entertainment-Lin Pictures-LEGO-Animal Logic-Warner Animation Group-RatPac Entertainment,2/6/14,60000000,469160692,100,Released,The story of a nobody who saved everybody.,7.415,6910,Chris Pratt-Elizabeth Banks-Will Ferrell-Morgan Freeman-Will Arnett-Liam Neeson-Alison Brie-Nick Offerman-Charlie Day-Channing Tatum-Jonah Hill-Cobie Smulders-Anthony Daniels-Billy Dee Williams-Keith Ferguson-Shaquille O'Neal-Will Forte-Dave Franco-Jake Johnson-Keegan-Michael Key-Todd Hansen-David Burrows-Chris McKay-Jorma Taccone-Christopher Miller-Chris Romano-Kelly Lafferty-Graham Miller-Amanda Farinos-Craig Berry-Doug Nicholas-Chris Paluszek-Melissa Sturm-Leiki Veskimets-Jadon Sand,prophecy-parent child relationship-friendship-superhero-based on comic-part live action-based on toy-falling in love-super power-good cop bad cop-duringcreditsstinger-live action and animation-lego-father son relationship-evil tyrant,/9klB7qKC9aCeGyyM4uU5hSA6xDV.jpg,/9531Jp42H0ppRXjkxxgCulnQNZp.jpg,148107-82702-280217-324849-82690-109445-127585-62211-786553-102382-100402-124905-177572-57158-187017-93456-109451-274862-10191-137113-10193\r\n424783,Bumblebee,Action-Adventure-Science Fiction,en,On the run in the year 1987 Bumblebee finds refuge in a junkyard in a small Californian beach town. Charlie on the cusp of turning 18 and trying to find her place in the world discovers Bumblebee battle-scarred and broken. When Charlie revives him she quickly learns this is no ordinary yellow VW bug.,40.", + "embedding" : [ 0.004043199, -0.033465788, -0.020415531, -0.04730018, -0.018315168, 0.034109898, 0.0048588403, -0.0011622009, -0.0161868, -0.02619853, 0.013666363, 0.02180177, 0.008716508, 0.013323304, 0.014590523, 0.006500624, 0.018819254, -0.0045472863, 0.005474947, -0.021465711, -0.012322131, 0.004228731, -0.006402607, 0.013022252, -0.0026534589, 0.009059567, 0.027010672, -0.0071027284, -0.013687367, -0.002382162, 0.021031637, -9.7579375E-4, -0.023972146, -0.017825082, -0.02231986, -0.014604526, 0.0132182855, -0.015892748, 0.030049197, 0.0022001304, 0.020247502, -0.004977861, -0.01335831, -0.0071972446, -0.025694443, 0.016032772, 0.009248599, -0.015346654, -0.0124481525, 0.02324402, 0.025596427, 0.025456402, -0.013974417, -0.025596427, 0.0014369985, -0.013379314, -0.0042077275, -0.0032905692, 0.0046803094, 0.0015875245, 0.010095746, -0.0074492884, -0.028536934, -0.025078338, -0.011138926, -0.023790114, -0.01642484, -0.00543644, -0.005324421, 0.0072322506, 0.025456402, 0.012441152, 0.01474455, -0.008408454, 0.025652437, -0.02191379, -0.025316378, -6.848059E-4, -0.014506509, 0.014100439, 0.02498032, 0.0058880183, -0.0077573415, -0.004141216, 0.010935891, 0.011566, -0.012938238, 0.012441152, -0.024532242, 0.017489025, -0.0011368216, 0.019001286, 0.011327959, 0.00890554, 0.012833219, 0.0260165, -0.010501816, 0.023720102, -0.012679193, -0.04948456, 0.0045857932, -0.011818044, -0.0072532543, -0.014674538, 0.003514608, -0.005355926, 0.0024556746, -0.0072882604, 0.021983802, 0.018791249, -0.0050548743, 0.001508761, 0.018693233, -0.034585983, -0.013974417, -0.0012033331, 0.012357137, -0.02115766, -0.020289509, -0.020499544, 0.03654632, 0.02769679, 0.014898577, -0.027794806, 0.040607024, 0.034473963, -0.0024259195, -0.018861262, 0.009927717, -0.0030542782, 0.0049918634, -0.0061960714, 0.013659363, 0.018301165, -0.017138964, 0.030469269, -0.024896305, -0.009766689, -0.02294997, -0.015472676, 0.021367695, 0.034165908, -0.036462307, -0.022585906, -0.021843778, 0.00780635, 0.02758477, 0.0010746858, 0.004729318, 0.0030875339, 0.014520511, 0.029461095, 0.00647612, 0.02283795, 0.01960339, 0.024154177, 0.005093381, 0.017797077, -0.008226423, -0.02121367, -0.005313919, -0.01335831, 0.013484332, -0.012266121, 0.01179704, 0.020093475, 0.012021079, -0.028788978, -5.507984E-5, -9.473514E-5, -0.008765516, 0.02799084, -0.029713139, 0.013365312, -0.0080793975, 0.015318649, -0.0023909134, -0.017166968, -0.022277853, -0.021661745, -7.959501E-4, -0.004596295, 0.033577807, 0.022459883, 0.007407281, 0.008555479, 0.028900998, -0.020583559, -0.003868169, -0.0075893123, -0.0022456383, 0.011888056, 0.005821507, -0.008555479, -0.63940656, -0.009276604, 0.01289623, -5.574714E-4, 0.025918482, 0.010193763, -0.0017389257, -0.010515818, -0.028368905, 0.0024819293, -0.0161868, 0.006350098, 0.03366182, 0.008779518, -0.02960112, -0.017292991, 0.014968589, -0.017124962, 0.004407262, 0.0015157622, -0.008702505, 0.014338479, 0.015696714, -0.0019935947, 9.617913E-4, 0.008366447, -0.008177415, -0.021311685, 0.010186762, -0.009787693, -0.020485543, 0.020401528, 0.010438805, -0.01666288, 0.038590673, 0.0049183504, -0.012973243, 0.049708597, 0.023986148, 0.01775507, -0.024560247, -0.011818044, 0.011425976, -0.009115577, -0.009906713, 0.012000076, 0.010767862, 0.0062765856, -0.007841356, -0.020961626, 0.006094554, 0.0019620892, 0.00844346, -0.011951067, 0.0064166095, -0.011096919, 0.012392143, -0.032233573, 0.017881092, -0.0072952616, -0.017292991, 0.02584847, -0.0026377062, 0.0037736527, 0.009738685, 0.021353694, -0.009822698, -0.014352482, 0.0088495305, -0.030721312, -0.0024031657, 0.008653496, -0.027402738, 0.0051213857, 0.011467983, 0.017194973, 0.025176354, 0.00531742, -0.015038601, 0.026786633, -0.008282432, 0.00422173, 0.004036198, 0.003157546, 0.030581288, 0.0052018994, -0.029209051, 0.008415455, 0.013673364, 9.5916586E-4, 0.023804117, 0.024700271, -4.0913327E-4, -8.8226196E-5, -0.010375794, -0.009374621, -0.009003557, -0.0039066756, 0.017349001, -0.06760369, -0.008044391, -0.021423705, 0.00959866, -0.0035338611, 2.0226935E-4, -0.0011438228, -0.015192627, -0.013953413, 0.027010672, -0.017278988, -0.014205457, 5.5484596E-4, -0.015290644, 0.0058950195, -0.01335831, -0.041615196, 0.022179836, 0.0093956245, 0.0019498372, -0.01318328, 6.694908E-4, 0.0014238713, 0.016452845, -0.015332651, 0.011320958, 0.030777322, -0.01046681, 0.0127702085, 0.0033115726, 0.009486641, 0.0047958293, -0.0025536916, 0.032177564, -0.021843778, 0.006273085, 0.0020601063, 0.025106343, -0.008989555, 0.024952315, -0.006042045, -0.019575385, -0.006119058, -0.010459809, -0.007032716, -0.025190357, -0.011488987, -0.025316378, -0.007680328, -0.0052089007, -5.0802535E-4, 0.003451597, 0.023510065, -0.017713062, 4.3626296E-4, 0.0037456478, -0.0020793595, -0.051528912, -0.035930213, 0.010347789, -0.018259158, 0.028242884, 0.010620837, -0.007085225, -0.030917346, 0.026324553, 0.01179704, -0.01664888, -0.0031645473, 0.011544997, -0.010508818, 0.01115993, -0.018315168, -0.007274258, 0.016438844, -0.031505447, 0.04377157, -0.012532167, 0.02682864, 0.0025011825, -0.0021213668, -0.0078553585, -0.0063465973, -0.018399183, -0.006448115, 0.016676884, 0.019855434, 0.019169316, -0.0012917233, -0.010200764, 0.010389796, -0.022529896, 0.0018973281, -0.014065432, 0.0029037523, -0.0056534777, 0.011355964, 0.006430612, -0.0052054003, -0.01323929, 0.0055589615, 0.027066682, 0.021871783, 0.008940546, -0.01803512, 0.01225912, -0.026744625, 0.005124886, -0.025120344, 0.018343173, -0.007078224, 0.01977142, -0.0017896845, -0.011026907, 0.005996537, -0.0010519319, 0.019001286, -0.009934718, 0.023888132, -0.0016811658, -0.0028809982, -0.0014842567, 0.0012934736, 0.022249848, 0.012959241, -0.019519376, 0.017320996, 0.0021213668, -0.016088782, -0.018427188, -0.008058393, -0.0029825158, 0.0011184434, 0.015248637, -0.0044667725, 0.0014545015, -0.019407356, 0.013624356, -0.011860051, 0.037386466, -0.005933526, -0.005348925, 0.017769072, 0.020849606, 0.006616144, 0.023258023, -0.0034323435, 0.014590523, 0.019911444, -0.001717922, 0.04828035, -0.027108688, 0.023328034, -0.011601007, 0.012252118, 0.022557901, -0.009059567, 0.013106267, 0.015332651, 0.026702618, 0.0063921055, 0.0113069555, -0.021493716, 0.014366484, 0.0020671075, 0.018581213, 0.007715334, -0.020247502, 0.0035076067, 8.6585285E-5, -0.024014153, -0.027416741, 0.003539112, -0.012112095, 0.012364138, -0.0036336284, -0.0132672945, -0.024308205, 0.015738722, 0.0055484595, 0.025708446, 0.019155312, -0.04632001, 0.02440622, 0.02156373, -0.014702543, -0.01133496, 0.0024626758, -0.0050583747, -0.037274446, -0.013729374, 0.0043407506, 0.044247653, -0.01087288, 0.022123827, -0.0023506565, 0.011033908, 0.020079473, -0.03279367, 0.023636088, 0.022767937, 0.011341961, 0.019015288, -0.019687405, -0.009976725, 0.015850741, -0.003983689, -0.007463291, 9.871707E-4, -0.019127307, 0.006661652, 0.009150582, 0.0012418397, -0.039514832, 9.42538E-4, -0.0071027284, -0.00936762, -0.0040396987, -0.004907849, -0.0069487016, -0.008513472, -0.032009535, -0.025008325, -0.024700271, 0.015080608, 0.08311837, 0.038366634, 0.017419012, 0.010585831, -0.024252195, 0.0091225775, -0.010263775, -0.0138133885, -0.0066476497, -0.012840221, 0.029993188, -0.013750378, 0.02451824, 0.020639569, 0.022053814, -0.0063290945, 0.006227577, 0.004326748, 0.0124971615, -0.013386315, -0.031869512, -0.008926543, -0.0029177547, 0.034529973, 0.0050268695, -0.03349379, 0.027220707, -0.0024626758, 0.0024994323, -0.0023751608, -0.0099907275, 0.008184415, 0.007932371, 0.012014078, -0.010011732, 0.0053909323, 0.033745836, 0.0021581233, 0.038030576, 0.005233405, 0.004571791, -0.006528629, 2.2086632E-4, -0.011348963, 0.019673401, -0.02758477, -0.0138764, 0.008912541, 0.01856721, -0.027360732, 0.020835603, 0.0058145057, 0.0063465973, -0.006780673, 0.009283605, 3.1221024E-4, -0.009591659, -0.009409627, -0.0023436553, 0.006101555, 0.010417801, -0.03360581, 0.01809113, -0.009129579, -0.0026674613, -0.014870572, -0.017138964, -0.009402626, -0.009521646, 0.009528648, -0.012707197, -0.017012943, -0.017587041, 0.005355926, 0.014450499, -0.005811005, 0.032065544, 0.0012103344, 0.007638321, 0.010375794, -0.022333862, -0.03329776, 0.008891538, -0.029629124, -0.020345518, 0.023678094, 0.01982743, 0.020359522, -0.017306993, 0.016158795, -0.0035216091, 3.221651E-5, -0.0123991445, -0.01624281, 0.030133212, 0.008982553, 0.011972071, 0.017503027, -0.005579965, -0.0065426314, 0.0068961927, -0.03226158, -5.0627504E-4, -0.016760899, -0.018917272, -0.009332614, 0.0064236107, 0.011075916, -0.023061989, -0.024938313, -0.021087646, -0.008359445, 0.007967378, 0.014422494, -0.002289396, -0.0055134534, 0.023216015, 0.012840221, -0.009815698, 0.009304609, 0.0042637372, -0.018007115, 0.014884574, 0.0323736, -0.017881092, 0.028522933, -0.017447017, -0.028088858, -0.0069837077, 0.01914131, 0.00670716, 0.015626702, -0.0138623975, -0.01949137, -0.0127702085, -0.008002384, 0.019071298, 0.011096919, -0.0059265248, 0.012385142, -0.017825082, 0.009276604, 0.017783076, 0.0025991995, -0.010011732, -0.030917346, 0.0035881205, 0.007498297, 0.0137153715, 0.031869512, -0.009353617, 0.02612852, -0.021843778, -0.013890402, 0.004417764, -0.034950044, -0.021381699, -0.0037491485, 0.021731758, 0.0059300256, 0.044247653, -9.670422E-5, 0.03382985, 0.009101574, 0.009556653, 0.02666061, -0.031897515, -0.0012173356, -0.029517105, -0.011664017, -0.003162797, 0.031701483, -0.0021091148, -0.0028669958, -0.0011324459, 0.015654707, 0.015626702, 0.006962704, -0.008835528, -0.023860127, -0.028634952, 0.017657053, -0.015430668, 0.005313919, -0.020149484, -0.0051178853, 0.028788978, -0.016284816, -0.0032573133, -0.0057970025, 0.013295299, 0.0030700308, 0.029993188, -0.020093475, 0.025414394, -0.010200764, -0.021031637, -0.020233499, -0.007778345, -7.613817E-4, 0.010837874, 0.021731758, -0.004193725, -0.019519376, -0.003127791, 0.025680441, -0.00370014, -0.036966395, 0.025750453, -0.010046737, -0.010564827, -0.03909476, -0.005684983, -0.03579019, -0.0069837077, -0.007442287, -0.01613079, 0.007820352, -0.011727028, -0.03290569, 0.01225912, -0.0050163674, 0.04615198, 0.014268467, 0.04237133, 0.01133496, 0.019337345, -0.028326899, 0.014289471, -0.0014965088, -0.007939373, 0.02474228, 0.020723583, -0.016144792, -0.0048028305, 0.004820334, 0.007183242, -0.041111108, -0.051892973, 0.010543823, 0.03265365, 0.022081818, -0.029125037, 8.2132954E-4, -0.027304722, 0.018721238, -0.021465711, -0.0063045905, 0.006840183, -0.030833332, -0.019785421, 0.00583901, -0.009052565, 0.0075473054, 0.009101574, -0.016060777, 0.017250983, -0.02342605, -0.01515062, -0.009836701, -0.010417801, 0.03573418, -0.019295337, 0.022403875, 3.4787266E-5, 0.01786709, 0.007309264, -0.0077573415, 0.0124971615, 0.0335498, -0.02353807, 0.016900923, 0.0061400617, 0.00624508, 0.012693195, 0.020667573, -0.015220632, -0.0053104185, -0.029629124, -0.0013284797, 0.028466923, 0.0059020207, -0.0135893505, 0.0016295318, -0.011341961, -0.0048063314, -0.0034148407, -0.016438844, 0.008667499, -0.044667725, 0.018581213, -0.010669845, 0.017264986, -0.017643051, -0.003885672, -0.004575291, -0.0022246346, 0.005691984, -0.02052755, 0.00147463, -0.016116787, -0.020611564, -0.030273234, -0.026002496, -0.007827354, -0.012812216, 0.0107608605, -0.010746858, 0.0034936043, -0.0039626854, 9.049065E-4, -5.539708E-4, 0.006619645, -0.018777248, -0.0073232665, 0.002753226, -0.007435286, -0.014590523, 0.0054959506, 0.01827316, 0.0047328183, -0.0033010708, 0.0037946561, 0.021143656, 0.02815887, -0.021255676, 0.018931273, -0.001168327, -0.02180177, -0.010347789, 0.020191493, 0.022235846, 0.015780728, -0.012819217, -0.02682864, 0.0031085375, -0.007918369, 0.021619739, -0.017391007, 0.0018833257, 0.03898274, 0.024098167, 0.045143805, 0.03713442, -0.006521628, -0.023314033, 0.0058670146, 0.010165758, -0.02457425, -0.0042357324, -2.719533E-4, 0.002289396, 0.0011805792, -0.006371102, -0.022641916, -0.010389796, -0.012406145, -0.023734104, -0.012273123, 0.023258023, 0.020443536, -0.006003538, 0.0036651338, 0.027514758, -0.007848357, 0.010704852, -0.0058005033, -0.0022456383, 0.022641916, 0.0018343172, 0.006182069, 0.024294201, -0.025974492, -0.012217113, 0.0102147665, 0.02294997, 0.017194973, 0.02463026, -0.014058432, -0.012126097, -0.007176241, -0.0056114704, -0.001942836, -0.007988381, 0.029097032, -0.031589463, -0.005730491, -0.009507644, 0.019995458, -0.006262583, 0.011222941, 0.009528648, -0.0017047948, -0.0013521088, -0.013750378, -0.015108613, -0.014450499, -0.0254424, 0.036910385, -0.003341328, 0.0015315148, 0.025708446, 0.010970897, -0.012784211, -4.2690976E-5, -0.021143656, 0.0018343172, -0.027598772, -6.655526E-4, -0.0053034173, 0.024560247, -0.033213742, 0.014842567, -0.027598772, 0.003955684, -0.008401453, -0.00901756, -0.0092976075, 0.031421434, -0.0051318873, -0.037386466, 0.005100382, -0.005730491, -0.0012470906, -0.0055589615, -0.0053909323, -0.019071298, -0.019505374, 1.0474468E-4, 0.0058005033, -0.03231759, -0.023258023, 0.016508855, -0.0050898804, -0.026758628, -3.653757E-4, 0.18718438, -0.015164622, 0.019029291, 0.061050557, -0.019211322, 0.009206592, 0.019561382, 0.020695578, -0.016634876, 0.005401434, -0.01063484, 0.022613911, -0.006434113, 0.0020040965, 0.0057689976, -0.0109848995, -0.020835603, -0.031421434, -0.022809945, -0.03399788, -0.018007115, -0.0066651525, -0.011439978, -0.013036255, 0.0030542782, 0.024084166, -0.018245155, 0.00838745, 0.017012943, 0.0062975893, -0.007932371, -0.014716545, -5.3515506E-4, -0.009724682, -0.015206629, -0.0058145057, -0.006469119, 0.009808696, 0.020765591, 0.0138133885, -3.848478E-4, -0.011103921, 0.015486678, -0.015976762, 0.0038121592, 0.0076943305, -0.02827089, -0.009640668, -0.007974379, 0.0035828697, -0.030777322, -0.0063921055, 0.027430743, 0.025484407, 0.017264986, -0.01596276, 0.01914131, -0.003012271, -0.012966243, 0.0052369055, 0.019533377, 0.030637298, -0.015318649, 0.010067741, 0.005352426, 0.011537995, -0.031365424, 3.8528538E-4, -3.2030538E-4, -0.0433795, 0.0010309283, -0.03562216, -0.01468854, -0.003486603, -0.031729486, -0.03307372, 0.0038716695, 0.018371178, 0.0146325305, 0.022543898, -0.033521798, -0.024126172, 0.013204283, 0.003434094, -0.013386315, -0.015094611, 0.031645473, -0.01300825, -0.006094554, -0.024028156, -0.0025764455, -0.019379351, -0.014758552, 0.01364536, -0.0050583747, -0.0027724796, 0.009031562, 0.018665228, -0.004834336, 0.0028267389, -0.048952464, 0.021087646, 0.03551014, -0.010963896, -0.034109898, -0.019813426, 0.019855434, 4.698469E-5, 0.029125037, -0.02300598, -0.009584658, -0.026758628, 0.018259158, 4.2926174E-4, 0.020737587, 0.018749243, -1.3903966E-4, -0.0026219534, 0.035146076, -0.013463329, -0.007848357, -0.026884649, 0.012154102, -0.0052299043, -0.020723583, -0.03973887, -0.028354904, 0.0075473054, -0.0055519603, -0.019617392, 0.0054539433, -0.024938313, 0.01925333, 0.006290588, -0.012553171, 0.0033728334, 0.030805327, -0.012679193, 0.013337307, -0.0029212553, -0.0048133326, 0.008100401, 0.011909059, -0.0057794997, -9.801695E-4, -0.040102936, 0.007680328, -0.0036511314, -0.017671056, -0.042231303, -0.02671662, 0.010445806, -7.303138E-4, 0.009549651, 0.0364343, -0.00659164, -0.0112579465, -0.044191644, -0.008583484, 0.039878897, -0.025540417, 0.0062310775, 0.014296472, -0.017433016, -0.03312973, -0.028298894, -0.18169542, 0.015892748, 0.01775507, -0.03579019, 0.015584695, 0.0057269903, 0.026380561, 0.029573115, 0.01087288, -0.010970897, 0.026520586, 0.009556653, -0.033521798, -0.021647744, 0.0035181085, 0.00931161, -0.009066568, 0.03273766, 0.040859066, -0.0031312916, 0.024364214, -0.011299954, -0.0059230244, 0.0023156505, 0.0021406203, 0.0012269622, 0.015430668, 0.009906713, 0.007526302, -0.0022316359, -0.036350287, -0.010613835, 0.0089475475, 9.871707E-4, -0.009808696, 0.0017616797, -0.0132672945, -0.014044429, -0.007848357, 0.009836701, 0.03839464, 0.020695578, 0.014926582, 3.1746115E-4, 0.016466849, 0.036294278, 0.031533454, -0.01832917, 5.9182108E-5, -0.028606948, -0.0048693423, -0.03660233, 0.032009535, -0.013057258, 0.013463329, 0.026002496, -0.01555669, 0.0055309567, 0.0025711947, -0.0064831213, -0.007372275, -0.012630184, -0.0017257985, -0.0088495305, -0.014023425, -0.018903269, -0.0111319255, 0.0077503403, -0.024994323, 0.006696658, -0.016928928, 0.0039346805, 0.0038121592, 9.635416E-4, 0.011089918, -0.019533377, -0.031393427, 0.0135403415, -0.0029072529, 0.019239327, 5.7935016E-4, 0.058026034, -0.0017126711, 0.0046242997, 0.013575348, -0.0040467, 0.0074282847, -0.0065531335, -0.0073232665, -0.008163412, 0.014646533, -0.029909173, -0.013785384, -0.013638359, -0.0045297835, 0.009570655, -0.005569463, 0.013729374, 0.011769035, -0.0149545865, 0.008065395, -0.0110829165, -0.008254427, 0.01474455, 0.01936535, 0.011860051, 0.013736376, 0.024154177, 0.01919732, 0.007799349, -0.0022946468, 0.0022981474, 0.013897403, 0.016172796, -0.0213957, -0.0028267389, -0.01914131, -0.014394489, 0.007337269, 0.014009423, 0.049708597, 0.0027549765, 0.009493642, 0.0075893123, -0.0020040965, -0.020947622, -0.086927034, -0.0041797226, -9.6879253E-4, 0.03399788, -0.031701483, 0.019785421, -0.008751513, 0.03324175, -0.018777248, 0.03730245, -7.626944E-4, -0.03621026, 0.0060735503, 0.005499451, 0.012469157, -6.813053E-4, -0.02422419, -0.005313919, -0.020233499, 0.027276717, -3.1024116E-4, -0.006724663, 0.011250946, -0.0149545865, -0.02156373, 0.0010300531, -0.023384044, 0.022683922, 0.005996537, 0.001144698, -0.009528648, -0.016858915, -0.0037386466, -0.03492204, -0.025666438, -0.021199666, -0.017503027, -0.029405085, 0.005730491, -0.04828035, 0.0062660836, 0.01243415, -0.003770152, -0.01664888, -0.022473887, -3.185551E-4, -0.015696714, 0.024042157, -0.008786519, -0.018119134, 0.0019708409, -0.013512337, -0.028116863, 0.0032713157, 0.022977974, 0.00618557, 0.026912654, 0.0077643427, -0.0056989854, -0.019743415, -0.009234597, -0.0027777303, -0.03615425, 0.013456327, 0.007407281, 0.013372312, -0.005075878, -0.0038156598, 0.024182182, -0.0080793975, -0.014786557, 0.017895095, -0.032401603, 0.0022053814, -0.012168105, -6.1216834E-4, -0.018903269, -0.008751513, 0.02671662, -0.02666061, 0.006749167, -0.037330456, 0.022977974, -0.009647668, 0.020583559, 0.013778383, 0.01121594, 0.0127702085, 8.790895E-4, -0.030105207, 5.395308E-4, 0.0135893505, 0.00832444, -0.00422173, -0.017334998, 0.009752687, 0.0112579465, -0.0020163488, 0.003434094, 0.013036255, -0.006812178, -0.016914925, -0.08132607, 0.04951256, -0.010732856, -0.0070502195, -0.004760823, -0.012777209, 0.0071377344, 0.0014562518, -0.0074282847, 0.02780881, -0.0021668747, 0.00908057, -0.014331479, -0.0056464765, -0.0138764, -0.0046172985, 0.006966205, -0.0035881205, -0.008450462, -7.7800953E-4, -0.003127791, 0.0063921055, 0.018763244, 0.0113069555, 0.01596276, 0.018133136, 9.801695E-4, 0.026996668, -0.02121367, -0.019379351, 0.040551014, -0.0242802, -0.0025711947, -0.005128387, -0.012812216, -0.041223127, 0.004078205, 0.0076663257, 4.6120476E-4, 0.0016102785, 0.0015472675, -0.018175144, -0.0037561497, -0.01249016, 0.0034831024, 0.01786709, -0.020191493, 0.0137643805, 0.004498278, 0.014898577, 0.02405616, 0.011972071, -0.011019906, -0.011327959, 0.01671889, -0.007869361, 0.04242734, 0.0048728427, -0.0050198683, -0.010627838, 0.01428247, 0.004295243, 0.02342605, -0.026870647, -0.019505374, 0.009787693, 0.010844875, 0.006157565, -3.13311E-6, -0.044443686, -0.017306993, 0.0028950006, 0.013694368, 0.04539585, 8.0163864E-4, 0.0123501355, -0.011636012, 0.002786482, -0.0067036594, 0.012168105, 0.015892748, -0.0052054003, -0.014366484, 0.0067001586, 0.011937064, 0.012791212, -0.008121405, 0.003945182, -0.002347156, -0.0023401547, -0.011383968, 0.019673401, 0.024182182, 0.006910195, 0.011110921, 0.029265061, -0.020359522, -0.007151737, 0.007246253, 0.020233499, -0.002364659, -0.01671889, -0.011769035, -0.010074742, 0.010711852, 0.009675673, -0.0060560475, -0.013463329, 0.021969799, 0.029153042, 0.028606948, 0.004249735, -0.02168975, 0.016816908, -0.013106267, 0.0036861375, -0.015514683, -0.008205419, -0.0063816034, 0.041083105, 0.026954662, -9.967973E-4, 0.035006054, -0.00416222, 0.05354526, 0.011909059, 0.011888056, -0.014163449, -0.01306426, -0.007890364, 0.0074772933, 0.004949856, -0.02654859, 0.0038016574, -0.00740028, -0.0031680479, 0.0248683, 0.036042232, -0.030721312, 0.08099001, 0.019589387, -0.009437632, 0.025568422, -0.017503027, 0.014926582, 0.0065426314, 0.017629048, -0.024042157, -0.0026394564, -0.00468381, -0.018203149, -0.009689676, -0.039402813, 0.0028144866, -0.0073302677, 0.011685021, 0.02052755, -0.0020846105, -0.03318574, -0.012336133, -0.019967454, 0.020891612, 0.0063045905, 0.008184415, -0.008590486, 0.02150772, -0.01515062, -0.013568346, -0.02932107, 0.0058425106, -0.010242771, -0.024364214, -0.008100401, 0.023874128, -0.020709582, -0.017138964, 0.011320958, 0.016270814, -0.004137716, -0.0072602555, -0.008044391, -0.035594154, -0.022851951, 0.014065432, -0.001306601, -0.0031347922, -0.03270966, -0.03562216 ], + "id" : "f0a3fc03-76a6-4d65-9c4a-f6eb2dd840d3", + "metadata" : { + "source" : "movies.csv" + } + }, + "b6668f68-7a23-459b-a46e-e5ef1b5b7f2c" : { + "text" : "042,3456,Arnold Schwarzenegger-Jamie Lee Curtis-Tom Arnold-Bill Paxton-Tia Carrere-Art Malik-Eliza Dushku-Grant Heslov-Charlton Heston-Marshall Manesh-James Allen-Dieter Rauter-Jane Morris-Katsy Chappell-Crystina Wyler-Ofer Samra-Paul Barselou-Charles A. Tamburro-Jean-Claude Parachini-Uzi Gal-Majed Ibrahim-Armen Ksajikian-Mike Akrawi-Mike Cameron-Charles Cragin-Louai Mardini-Gino Salvano-Scott Dotson-Tom Isbell-John Bruno-Sergio Kato-Sayed Badreya-Ray Buffer-Max Daniels-Joan Quinn Eastman-Richard Givens-Loren Janes-Lane Leavitt-Cassidy McMillan-Jody Millard-Erik Parillo-Manny Perry-Charlie Picerni-Dale Resteghini-William Shipman-Matt Sigloch-Ryken Zane,spy-terrorist-florida-gun-kidnapping-horseback riding-florida keys-secret agent-terrorist plot-top secret-mushroom cloud-jackhammer-special agent-key west,/pweFTnzzTfGK68woSVkiTgjLzWm.jpg,/jRZ3joUcg8YDCQYl4Tog5xhY6wk.jpg,10999-861-865-9268-9593-9739-9802-9350-1701-951-1637-942-9493-56870-702557-8452-9387-90-941-106-754\r\n76341,Mad Max: Fury Road,Action-Adventure-Science Fiction,en,An apocalyptic story set in the furthest reaches of our planet in a stark desert landscape where humanity is broken and most everyone is crazed fighting for the necessities of life. Within this world exist two rebels on the run who just might be able to restore order.,115.397,Warner Bros. Pictures-Village Roadshow Pictures-RatPac Entertainment-Kennedy Miller Mitchell,5/13/15,150000000,378858340,121,Released,What a Lovely Day.,7.", + "embedding" : [ 0.006948446, -0.024346916, -0.028012631, -0.05794019, -0.02481197, 0.037778754, 0.011195478, -0.016960774, -0.016304227, -0.03403097, 0.028204124, 0.030146407, 0.011455361, 0.007659704, 0.0058371047, 0.012241849, 0.020968439, -0.017371114, 0.00551909, -0.020722235, 0.012665868, -0.0019132162, -0.02040764, 0.014457691, 0.013322414, 0.010668874, 0.020776946, -0.012043517, -0.012050356, -0.021638663, 0.016823992, -0.014375623, -0.0046847295, -0.02202165, -0.02144717, 0.0015456189, 0.007625509, -0.0280947, 0.024059677, 0.012925751, 0.020530742, 0.009526757, -0.0140747065, -0.009766122, 0.00174737, 0.009472044, 0.024141746, -0.027916886, -0.008569294, 0.03794289, 0.030283187, 0.027219305, -0.017316403, -0.02250038, -0.014170452, 0.013507067, -0.017877202, 0.016126413, -0.010155947, 0.004062379, 0.0059567876, -0.018588461, -0.037395768, 0.0050130025, -0.019969942, -0.012392307, -0.020804303, -0.0037067495, 0.0010942434, 0.006760373, 0.019190295, 0.010231176, 0.0032160499, -0.0011651983, 0.015346764, -0.029243656, -0.020722235, -0.009472044, -0.0065928167, 0.0067535336, 0.017138587, -0.009328425, -0.010313245, 0.006575719, 0.020585455, -0.0070373532, -0.0053207586, 0.015551935, -0.03236225, 0.0026364427, 0.010805653, 0.030912377, -0.0011771666, 0.011544269, 0.009403654, 0.024264848, -0.019532245, 0.028970094, -0.019942587, -0.03173306, -0.0011412617, -0.005584061, -7.3348504E-4, -0.011824668, -0.0024911135, 0.0019969943, -0.0074818893, -2.9963462E-4, 0.020804303, 0.009663537, 0.007652865, -0.0022551673, 0.013773789, -0.049323022, -0.012043517, -0.014635506, 0.032799948, -0.027369764, -0.011981965, -0.020380285, 0.029872846, 0.03383948, 0.0039461153, -0.022172108, 0.02907952, 0.03383948, 0.011557946, -5.0865224E-4, 8.548777E-4, 0.0040350226, 0.025892535, 8.322234E-4, 0.032252826, 0.0031698865, -0.013083048, 0.04855705, -0.029790778, 0.0100807175, -0.019026158, -0.01027221, 0.034003615, 0.042155728, -0.031076513, -0.019313397, -0.0413624, 0.004312003, 0.014225164, -0.0074887285, 0.013917409, 0.0037341057, 0.029298367, 0.018438002, 0.011092893, 0.01278897, 0.022691874, -0.0053241784, 0.0026586696, -0.003628101, -0.0070783873, -0.013917409, -0.00650049, 8.441917E-4, 0.0049582906, -0.008220504, 0.010579966, 0.015428833, 0.011236512, -0.0194365, -0.0013062531, -0.006131183, -0.0043427786, 0.025194954, -0.027000457, 0.0026107964, -0.010162786, 0.027848495, 0.0066304314, -0.0033083765, -0.0299002, -0.022555092, 0.007652865, 0.0034058327, 0.03734106, 0.038900353, 0.010306405, 0.015018491, 0.019819483, -0.038325876, 0.0017559187, -0.0077896453, 7.411789E-4, 0.021748088, -0.0027800621, -0.011503234, -0.64385283, -0.022131072, -0.015278374, 0.010839849, 0.012460697, 0.012344434, -0.007919587, 9.463496E-4, -0.0343866, -0.009376299, -0.020188792, 0.017836168, 0.023539912, -0.015592969, -0.02202165, -0.011345937, 0.0033870253, -0.018191798, 0.010757781, 0.005878139, -0.024264848, 0.018602138, 0.011708405, -0.005368632, 0.0054062465, 0.006086729, -0.016058022, -0.011667371, 0.009095899, -0.0057926513, -0.01593492, 0.01579814, 0.009499401, -0.008227343, 0.04297641, 3.9452605E-4, -0.015743427, 0.04445364, 0.029216299, 0.047134537, -0.018438002, -0.009629342, 0.0135002285, 0.0049240952, -0.027356086, 0.022418313, 0.009191644, 4.169666E-4, 0.0015883627, -0.017206978, -4.731748E-4, 0.016153768, 0.0048317686, -0.015825495, 0.0053207586, 0.007981138, 0.008569294, -0.035125215, 0.012836843, -3.5819373E-4, -0.01845168, 0.04352353, 0.006373968, 0.0067056604, -0.013356608, 0.02200797, -7.471631E-4, -0.011708405, 8.7539473E-4, -0.04081528, 0.009663537, 0.015018491, -0.010614161, -0.007044192, 0.0019833161, 0.014922745, 0.029188944, 0.0059157535, -0.00150202, 0.02397761, -0.013719077, -0.0035528715, 0.003320345, 0.011913575, 0.019108227, -0.003542613, -0.036301527, 0.015565612, 0.015852852, -0.0023543332, 0.013329253, 0.0102927275, 0.0017695968, 0.003481062, -0.013137761, -0.013760111, -0.010217498, 0.0044043297, 0.01355494, -0.062590726, -0.008220504, -0.021269357, 0.027643325, -4.167529E-5, 0.018766275, 0.015811818, -0.006025178, -0.020995796, 0.024442663, -0.018342255, -0.016304227, 0.015127915, -0.011243351, -0.004968549, -0.0020636746, -0.030693527, 0.01572975, 0.010880883, -6.5056194E-4, -0.008760787, 0.012241849, -0.00230646, 0.009711411, -0.010012328, 0.007844358, 0.028395617, -7.873423E-4, -0.00859665, 0.0044487836, 7.79221E-4, -0.003737525, 0.0020072528, 0.017576285, -0.022090038, 0.004045281, -0.006213251, 0.014293555, -0.002921972, 0.01690606, -3.4814893E-4, -0.017795134, -0.008562455, -0.01950489, -0.011858863, -0.004640276, -0.0077486113, -0.037641972, -0.006862958, -2.55181E-4, -0.023663014, -0.017726744, 0.01810973, -0.0038127545, 0.009260035, -0.0016319614, -0.006247446, -0.037587263, -0.023526235, 0.011298063, -0.014402979, 0.0020859016, 0.009232678, -5.8388145E-4, -0.00789907, 0.016673535, 4.5479494E-4, 4.0756294E-4, 0.012877877, -0.015784461, -0.011681048, 0.023430487, -0.021269357, -0.0018157602, 0.023471521, -0.013254023, 0.021337748, -0.008603489, 0.021994293, 0.011277546, -0.0029749742, -0.0032468254, 0.0052215927, -0.020325571, -0.008651362, 0.024278525, 0.019901553, 0.007987977, 0.004247032, -0.018000305, 0.003228018, -0.022514058, -0.0017661772, -0.012447019, 0.0027304792, 0.0025988282, 0.027232984, 0.0077691283, 0.007577636, 0.010607322, -0.006233768, 0.03621946, 0.011092893, 0.0072630406, -0.016276872, 0.012125585, -0.022773942, 0.004886481, -0.03167835, 0.012959946, -0.012734258, 0.020175112, -0.012624834, -0.012700063, 0.00510191, 0.0010805654, 0.022404633, -0.014320911, -0.0015738298, -0.023936575, 0.008931762, 0.016304227, -7.6212344E-4, 0.027287696, 0.0012541056, -0.026070349, 0.012665868, 0.020640166, -0.009034348, -0.0061243437, -0.0054643783, 5.69776E-4, 0.0027698036, 0.012836843, 0.012590638, 0.011961448, -0.023854507, 0.017179621, -0.009984971, 0.046997756, -0.017494217, -0.013684882, 0.008918084, 0.035426132, -0.002648411, -0.008022172, -0.015524578, 0.01676928, 0.0223636, -0.00677747, 0.02654908, -0.0125017315, 0.023020146, 0.012105068, 0.009451527, 0.0034656741, -0.019545924, 8.2068256E-4, 0.0060388558, 0.040651143, 0.02656276, 0.018082373, -0.023909219, 0.024018643, -0.017001808, 0.01950489, 0.0026518304, -0.013370287, -0.0074887285, 0.00985503, -0.023772439, -0.01369856, 0.0023799795, 0.0042607104, 0.0059773047, -0.019176615, -6.650948E-4, 0.007105743, 0.015551935, 0.0112912245, 0.010518415, -0.013589135, -0.035480842, 0.018506393, 0.02200797, -0.0183149, -0.015415154, -0.012556443, -0.015278374, -0.023088537, -0.023909219, -0.015278374, 0.039638966, -0.01949121, -1.445812E-4, -0.013295057, -0.003248535, 0.023348419, -0.007454533, 0.01544251, 0.006876636, -0.0061380216, 0.017726744, 0.0042436128, -0.00950624, 0.018643172, -0.008911245, -0.0012472665, -0.007953782, 0.0035939058, -0.0015618615, 0.01950489, 0.006479973, -0.048201423, 0.009478884, -0.0053241784, -0.0023868184, -8.2709413E-4, -0.0035802277, 0.0074408553, -0.0016994969, -0.012679546, -0.028669178, -0.028942738, 0.0018961186, 0.07599521, 0.039775748, 6.3089974E-4, 0.0056011584, -0.010436347, -0.011947771, -0.013582297, -0.012747936, -0.0072356844, -0.018205475, 0.025824144, -0.011339097, 0.012262366, -0.0016088798, 0.020311894, -0.006415002, 0.0047086664, -4.259428E-4, -0.008391479, -0.01726169, -0.01802766, -0.016755603, 0.015086881, 0.02998227, 0.018629495, -0.0132677015, 0.023895541, -0.005023261, 0.008425674, 0.008726591, -0.010381634, 0.012009322, 0.004626598, 0.0051737195, -0.010265371, -0.0051121684, 0.017904557, 0.0018704723, 0.02578311, 0.0037033302, -0.0077691283, -2.596691E-4, 0.0032827302, -0.008220504, 0.01690606, -0.020093044, -0.016523076, 0.026234485, 0.03892771, -0.04073321, 0.020079367, 0.012905234, -0.016208481, 0.0019320236, 0.019313397, -0.0026689281, -0.013130921, -0.002564633, -0.045164898, 0.009451527, 0.003925598, -0.035125215, 0.014143096, -0.013527584, -0.0019234747, -0.012611155, -0.020106724, 0.004209418, -0.012679546, 0.0084667085, 0.013999477, -0.025003463, -0.010026005, 0.009820835, 0.029462505, -0.0020243502, 0.026726896, -0.0057276804, 0.015921243, -0.0031510792, -0.039885174, -0.029763421, 0.012317077, -0.020038333, -0.0049514514, 0.009492562, -0.009608825, 0.028067343, -0.0066475286, 0.018903054, -0.0059738853, -0.010942434, -0.008138436, -0.014197809, 0.036575086, 0.004954871, 0.01229656, 0.0063979044, 0.008630845, -5.689211E-4, -0.00265696, -0.025495872, -0.018588461, -0.013301897, -0.012029839, -0.021091541, 2.838194E-4, 0.0041991593, -0.01237179, -0.029763421, -0.020599132, -0.006165378, 0.009307908, -0.0062850607, 0.013760111, -0.002075643, 0.029790778, 0.0064697145, -0.011852024, 0.005495154, 0.0124812145, -0.008336768, 0.017849846, 0.030201118, -0.014690218, 0.018848343, -0.012139263, -0.021077864, -0.0031989522, 0.031158581, -0.0122692045, 0.010682551, -0.017316403, 0.007994816, -0.013951603, -0.032882016, 0.0045103347, 0.017015485, -0.007933265, 0.012823165, -0.017808812, 0.008883889, 0.0063192556, 5.501138E-4, -0.0018431162, -0.025290702, 0.003542613, -0.0028638402, 0.02054442, 0.025919892, -0.013787467, 0.0040487004, -0.0171933, 0.0020311894, -8.345743E-5, -0.030802952, -0.02341681, 0.002607377, 0.03725899, 0.010805653, 0.04032287, -0.015688716, 0.035863828, 0.014826998, 0.015688716, 0.02732873, -0.014019994, -0.004554788, -0.026795287, 0.011790473, 0.031951908, 0.013869535, 0.0077349334, 0.0037922373, 0.009246357, 0.01676928, 0.020134078, 0.024552086, 0.010190142, -0.02522231, -0.011995643, 0.0035904862, -0.030775595, 0.0037580424, -0.015811818, -0.015100559, 0.039365407, -0.0040213447, -0.0019115065, -0.0018140505, 0.024565766, -0.001593492, 0.017248012, -0.022924399, 0.01397896, -0.032799948, 0.0032263084, -0.018383289, 0.0020363186, 6.5996556E-4, -0.012631672, 0.018615816, -0.009622503, -0.016536754, -0.008234181, 0.026576437, -0.014758608, -0.02438795, 0.029435148, -0.015278374, -0.022732908, -0.029216299, -0.012139263, -0.04144447, -0.010176464, -0.012522249, -0.017029162, -0.0024996623, -0.030830309, -0.040377583, 0.017972948, -0.007310914, 0.035727046, 0.011311742, 0.048201423, 0.028696533, 0.012255526, -0.025071852, -0.0028552914, -0.02027086, 0.0010848398, 0.023115892, 0.011469039, -0.010477381, -0.012276043, -0.0049651293, -0.0050506173, -0.03342914, -0.031213293, 0.023471521, 0.033456493, 0.020106724, -0.021132575, -8.420545E-4, -0.02278762, 0.0027031233, -0.0062406072, 0.020489708, 0.021816479, -0.033976257, -0.015592969, 0.0039461153, -0.02047603, 0.009048025, 0.017097553, -0.037204277, 0.022801297, -0.030775595, 0.010470542, -0.021406136, -0.014389301, 0.032170758, -0.013890052, 0.017931914, 0.00845303, 0.014156775, -6.108101E-4, -0.008959118, 0.014799642, 0.030064339, -0.021898547, 0.021624986, -0.008042689, 0.0016370907, 0.010573127, 0.016892383, -0.0125017315, -0.016263193, -0.017617319, -0.0038948227, 0.028641822, 0.014143096, -0.005679807, -0.0060217585, -0.01635894, -0.014991135, 0.01062784, 0.0043598763, 0.0138832135, -0.025468515, 0.009526757, -0.0061585386, 0.0036793936, -0.02025718, -6.732162E-4, 0.0017200139, -0.0017524993, 0.011893058, -0.011564786, -0.010238015, -0.014963779, -0.016181124, -0.04081528, -0.022938078, 9.3352643E-4, -0.004842027, 0.003925598, -0.014785964, 0.0046095005, -0.009800318, -3.1203034E-4, 0.0023321062, 0.016687213, -0.0046573738, -0.0027236403, 0.0269731, -0.0041478663, -0.013404482, 0.0033442816, 0.022746585, 9.0702524E-4, -0.008056367, -0.005115588, 0.00349303, 0.038462657, -0.028286193, 0.025318056, 0.007926426, -0.019053513, -0.0077964845, 0.02229521, 0.036110032, 0.015251018, -0.0074682115, -0.03797025, -0.009991811, -0.009752445, 0.03892771, -0.0036999106, 0.002383399, 0.03167835, 0.020489708, 0.021501884, 0.020776946, -0.008637684, -0.030666173, 0.017220655, 0.0027561255, -0.023786116, -0.0057926513, -0.0077486113, 0.003823013, 0.0023286869, -0.0020944504, -0.030830309, -0.0052455296, -0.025906213, -0.023909219, -0.016427329, 0.0096772155, 0.03178777, 0.010956112, 0.0013951603, 0.009130093, 0.012515409, 2.6992764E-4, 0.003404123, 0.009588308, 0.016741924, 0.0060285972, 0.031979263, 0.013725916, -0.03969368, -0.010757781, -0.0029100035, 0.019792128, 0.013192472, 0.012816326, -0.019190295, -0.0044966564, 0.0033989938, -0.014279877, -0.0050198417, 0.0028057084, 0.023293708, -0.028340904, 0.0035186766, 0.009171127, 0.019039836, -2.7075579E-5, 0.0044624615, 0.012912072, -0.01425252, -0.0043838127, 0.00642868, -0.028286193, -0.011017663, -0.039447475, 0.026425978, 0.011277546, -0.01977845, 0.036082678, 0.021433493, 0.003501579, 0.012624834, -0.008952279, 0.006702241, -0.010367956, -0.0128641995, 0.0152646955, 0.02144717, -0.034058325, 0.027780104, -0.024305882, 0.0028638402, -0.008111079, 0.013678043, 0.012686385, 0.040021952, 0.0086787185, -0.065709315, -0.006623592, -0.0069381874, 0.0051942365, -0.002243199, 0.0013096726, -0.027807461, 2.652258E-4, -0.0071946504, 0.004465881, -0.01712491, -0.018561104, 0.001935443, -0.01867053, -0.024223814, 0.013643848, 0.16730982, -0.009861869, 0.0120777115, 0.05164829, 0.0072083287, 0.017275369, 0.005115588, 0.015743427, -0.018916734, 0.014922745, -0.0062508658, 0.0060901484, 0.013835341, 9.412203E-4, 0.03424982, -0.01984684, -0.02207636, -0.028778601, -0.01537412, -0.033511207, -0.002503082, 0.009424171, -0.0041786423, -0.01921765, 0.014225164, -0.0048044124, -0.018643172, 0.022185786, 0.019819483, 0.0017764358, -0.023854507, -0.018355934, -0.0056353537, -0.009684054, -0.020010976, -0.008514581, -0.011728922, 0.010217498, 0.015086881, -0.0064320997, 0.0077349334, -0.010921917, -0.0035973252, -0.014813321, 0.010983468, 0.0053070807, -0.030802952, -0.0038401105, -0.024401627, 0.0039050812, -0.039091848, -0.0048180907, 0.010764619, 0.032170758, -0.01705652, -0.013021497, 0.007721255, 2.4193038E-4, -0.0065073287, 0.013342931, 0.012966785, 0.03766933, -0.032444317, 0.017289046, -0.006449197, 0.010231176, -0.024360593, -0.016372617, 0.014772287, -0.0406785, -0.017630998, -0.03383948, -0.010839849, 0.0019935747, -6.629576E-4, -0.006452617, -0.0047907345, 0.018055016, -6.951224E-5, 0.011831507, -0.03206133, -0.021337748, 0.015182627, -0.016865026, -0.02620713, -0.016208481, 0.013855858, -0.009984971, -0.010039683, -0.02445634, -0.016016988, -0.037395768, -0.010361117, -0.008193147, -0.009342103, 0.009950777, 0.027301373, 0.011715244, -0.009622503, -0.004558208, -0.031076513, 0.032389604, 0.024196457, -0.008569294, -0.0325811, -0.016454685, 0.012002483, 0.01872524, 0.021433493, -0.02656276, -0.004694988, -0.035617623, -0.007256202, -0.012029839, -0.0018431162, 0.02522231, 0.00985503, -0.014608149, 0.031951908, -0.011133927, 0.0044624615, -0.010108073, 0.00950624, 6.031162E-4, 0.009068542, -0.030857665, -0.051484153, 0.004883061, -0.0071946504, -0.031268004, 0.018410645, -0.018971445, 0.011496395, 0.0015105689, -0.0028758084, -0.0010959532, 0.018465357, -0.006784309, 0.013390804, 0.013828501, -0.007379304, -0.013548101, 0.0070783873, 0.004270969, 0.025427481, -0.02165234, -0.0033459913, -0.006189314, -0.01809605, -0.04409801, -0.024935072, -0.011701565, -0.002591989, 0.018260187, 0.050636113, -0.005190817, -0.033866834, -0.03900978, -0.01586653, 0.041307688, -0.029435148, 0.024333239, 0.020735912, -0.0017225785, -0.03186984, -0.015360442, -0.17606376, 0.017001808, 0.0124812145, -0.030064339, 0.021283034, 0.014170452, 0.032745235, 0.011147605, -0.013308736, -0.011735761, 0.032389604, 0.010374796, -0.038271163, 0.0017131749, 5.0480524E-4, 0.010586805, -0.003137401, 0.0373137, 0.031158581, 6.6979666E-4, 0.04188217, -0.0026637989, -0.0048762225, -0.0010429508, 0.017042842, -0.0048933197, 0.025400126, 0.009034348, 0.006883475, -0.008124758, -0.035261996, 0.0030450742, 0.014662862, 0.0015174078, -0.017617319, 0.001320786, -0.0078922305, -0.013794306, -0.0140336715, -0.0084872255, 0.034687515, 0.0036930717, 0.019395465, 0.0026672184, 0.015333086, 0.018369611, 0.031541567, -0.02200797, 0.012980463, -0.014608149, -0.011092893, -0.031295363, 0.0057960707, -5.030955E-4, 0.012782131, 0.018342255, 0.0013584007, 0.004554788, 0.008329928, -0.0010728715, -0.03331971, 0.0025817305, 0.007981138, -0.0082546985, -0.013322414, -0.0269731, -0.019162938, 0.008637684, -0.032553744, 0.013301897, -0.02403232, 0.018957768, 0.014088384, -0.0018328577, 0.0051737195, -0.032553744, -0.040213447, 0.020024655, -0.0044624615, 0.011434844, -0.014061028, 0.05484895, -0.0032468254, 0.009191644, 5.223303E-4, -0.008829176, 0.018205475, -1.8956912E-4, 0.0075913137, -0.02159763, 0.008897567, -0.021187289, -0.04863912, -0.0018191797, 0.009560952, -0.0028399036, -0.0012327336, 0.0024500794, 0.0037580424, -0.020298215, 5.4541195E-4, -0.013089887, -0.025837824, 0.020311894, 0.006401324, 0.016892383, -8.061496E-4, 0.0314595, 0.017316403, 0.0056353537, -0.012741097, 0.0075502796, 0.02144717, 0.007666543, -0.014444013, 0.010668874, -0.005878139, -0.028122056, 0.0038059154, 0.021925902, 0.0418001, -0.008076884, 0.0026928647, -0.011003985, 0.0027424477, -0.015346764, -0.08267009, 0.0034673838, 0.012187136, 0.03613739, -0.032225467, 0.0395569, -0.0069347676, 0.030283187, -0.030830309, 0.023663014, -2.2248192E-4, -0.042046305, 0.015059525, -0.011428005, 0.0049514514, 0.0056524514, -0.01181099, 0.0011087763, -0.00866504, 0.024770936, -0.0126727065, -0.016523076, -0.0025902793, -0.01949121, -0.009567791, 0.018137084, -0.019368108, 0.022897044, 0.018191798, 0.0017020615, 0.0092942305, -0.023594623, 0.022131072, -0.048119355, -0.008076884, -0.024428984, -0.02166602, -0.01908087, 0.0016165737, -0.057557203, 0.00964302, 0.0138832135, 0.005276305, -0.020352928, -0.016413651, -0.0070578703, -0.023909219, 0.02369037, -0.0019029577, -0.017713066, -0.018971445, -0.015415154, -0.026015637, 0.018697884, 0.018916734, 0.029599285, 0.030365255, -0.0010874044, -0.015975954, -0.014635506, -0.0059431097, -0.010668874, -0.009232678, 0.021365102, 0.012023, 0.012255526, 0.0061448608, -0.006459456, 0.022760263, -0.0037580424, -0.021023152, 0.020175112, -0.03277259, -0.0068185045, -0.017357437, 9.232679E-4, -0.025947247, -0.013595975, 0.032198112, -0.02970871, 0.0069758017, -0.031486854, 0.0026313134, -0.009095899, 0.017097553, 0.012180297, 0.0109082395, 0.007693899, -0.0047086664, -0.030201118, -0.004694988, 0.02033925, 7.063427E-5, -5.864461E-4, -0.015333086, 0.004065798, 0.030283187, 0.014061028, -0.006869797, 0.0030245571, -0.013876375, -0.004592403, -0.073533155, 0.026877355, -0.018342255, -0.0014652603, -0.021857513, -6.4671494E-4, 0.0013660946, -0.0050506173, 0.009000152, 0.017248012, -0.004318842, 0.013630169, -0.011209156, -0.0010224337, -0.013684882, 0.0054404414, -0.0049172565, -0.0047291834, -0.0069997385, -0.00600808, -0.016659856, 0.008617167, 0.019614313, -0.010730425, 0.008097401, 0.030173762, -0.005570383, 0.014594472, -0.021857513, -0.017357437, 0.022445668, -0.011215995, -0.008685557, 0.004212837, -0.012782131, -0.015196306, -0.014813321, 7.475905E-4, 0.0035391937, -0.00223636, -0.0058473633, -0.020790625, 7.104034E-4, -0.0064115827, -9.813996E-4, 0.017453182, -0.012050356, 0.0098687075, 0.004794154, 0.0033374424, 0.016276872, 0.018643172, -0.007926426, -0.023129571, 0.02578311, -0.020954762, 0.050718185, -0.0025663427, -0.008432513, -0.012002483, 0.025112886, 0.008630845, 0.03137743, -0.029106876, 0.006534685, 2.228025E-5, 0.0046368567, -0.012323917, 0.0075502796, -0.030036982, -0.0059738853, -0.0035255156, 0.016865026, 0.03208869, 0.018793631, 0.013144599, 0.0033836057, 0.0120777115, 0.0012558153, 0.015428833, 0.02061281, -0.0049240952, -0.023375776, 0.0042812275, 0.004171803, 0.014061028, 0.0030895278, 0.0031049156, -0.0055806413, 0.015251018, -0.016605144, 0.009991811, 0.01671457, 0.0032092107, 0.007003158, 0.019723738, -0.011496395, -0.01656411, 0.002942489, 0.028286193, -0.0051805587, 0.0036622959, -0.008904406, -0.013814824, -0.01201616, -0.005187398, -0.020941084, -0.008548777, 0.018711563, 0.011448522, 0.033593275, 0.009882386, -0.019190295, 0.010381634, -0.037778754, 0.03186984, 0.002677477, -0.015893886, -0.008480387, 0.03362063, 0.01711123, 0.0044248467, 0.03362063, -0.00664069, 0.036383595, 0.0075229234, 0.015606646, -0.031815127, -0.0014370494, 0.0071330993, -0.011858863, -0.006729597, -0.01467654, 0.00115323, -0.021200966, 0.0016729956, 0.0148817105, 0.035398774, -0.020968439, 0.07150881, 0.017836168, -0.0011104861, 0.00901383, -0.011756278, 0.020640166, 0.014512404, 0.014389301, -0.0060422756, -0.00817263, -3.4836266E-4, -0.007310914, 0.013616492, -0.035234638, 0.0044214274, -0.009554113, 0.0059294314, 0.008439353, -0.004411169, -0.021693377, -0.011940931, -0.008350445, 0.010566288, 0.0052660466, -0.013137761, -0.011824668, 0.017945591, -0.016796637, -0.0019525406, -0.018438002, 0.0029151328, -0.011858863, -8.6128927E-4, -0.005720841, 0.028888026, -1.1508791E-4, -0.010949274, 0.013377126, 0.019586958, 0.0021406137, -0.014444013, 4.2337817E-4, -0.031185938, -0.01950489, 0.023717726, -0.01671457, -0.004534271, -0.037012786, -0.021214643 ], + "id" : "b6668f68-7a23-459b-a46e-e5ef1b5b7f2c", + "metadata" : { + "source" : "movies.csv" + } + }, + "6e59a083-4e8d-48ff-8b2d-61da2fc864ff" : { + "text" : "257,Illumination-Universal Pictures,6/15/17,80000000,1031552585,96,Released,Oh brother.,6.5,6466,Steve Carell-Kristen Wiig-Trey Parker-Miranda Cosgrove-Dana Gaier-Nev Scharrel-Steve Coogan-Julie Andrews-Jenny Slate-Pierre Coffin-Chris Renaud-Andy Nyman-Michael Beattie-Adrian Ciscato-Brian T. Delaney-Ken Daurio-Lori Alan-Carlos Alazraqui-Kyle Balda-Teresa Ganzel-Bob Bergen-Jess Harnell-Gregg Berger-John Kassir-Mona Marshall-John Cygan-Laraine Newman-Jan Rabson-Bill Farmer-Mindy Sterling-Danny Mann-Jim Ward-Matthew Wood-Katia Saponenko-Jude Alpers-Cory Walls-Sophie M. Siadatpour-Stephanie De Meautis-Bruno Dequier-Gregg Berger-Tara Strong,twin brother-sequel-despicable-minions,/6t3YWl7hrr88lCEFlGVqW5yV99R.jpg,/ftRkFtAGuHngHnLiOxktq0aCVMF.jpg,93456-20352-211672-295693-260514-278154-50349-378236-38832-10527-159824-140300-29233-8355-335797-950-80321-953-127380-49013-57800\r\n127380,Finding Dory,Adventure-Animation-Comedy-Family,en,Dory is reunited with her friends Nemo and Marlin in the search for answers about her past. What can she remember? Who are her parents? And where did she learn to speak Whale?,32.945,Pixar-Walt Disney Pictures,6/16/16,200000000,1028570889,97,Released,An unforgettable journey she probably won't remember.,7.042,11504,Albert Brooks-Ellen DeGeneres-Ed O'Neill-Hayden Rolence-Diane Keaton-Eugene Levy-Ty Burrell-Kaitlin Olson-Idris Elba-Dominic West-Kate McKinnon-Bill Hader-Andrew Stanton-Torbin Xan Bullock-Bennett Dammann-Bob Peterson-Alexander Gould-Katherine Ringgold-John Ratzenberger-Angus MacLane-Willem Dafoe-Brad Garrett-Allison Janney-Austin Pendleton-Stephen Root-Vicki Lewis-Jerome Ranft-Sloane Murray-Lucia Geddes-Gabriel C. Brown-Sigourney Weaver-Riley Lio,fish-amnesia-octopus-sequel-anthropomorphism-underwater-aftercreditsstinger-clownfish,/3UVe8NL1E2ZdUZ9EDlKGJY5UzE.jpg,/8yYuFjRsozwOckhAaTHRLTiDwml.jpg,12-62211-150540-2062-9806-863-585-14160-920-10193-9487-62177-269149-862-328111-49013-105864-277834-109445-10681-260514\r\n12155,Alice in Wonderland,Family-Fantasy-Adventure,en,Alice now 19 years old returns to the whimsical world she first entered as a child and embarks on a journey to discover her true destiny.,53.119,Walt Disney Pictures-Roth Films-Team Todd-Tim Burton Productions-The Zanuck Company,3/3/10,200000000,1025467110,108,Released,You're invited to a very important date.,6.", + "embedding" : [ 0.015692731, -0.036875937, -0.009100201, -0.035001785, -0.012102804, 0.02305736, -0.0040155705, -0.0065100417, -0.025301065, -0.027267605, 0.028666621, 0.030910326, 0.0064044558, -1.044003E-4, -0.006803703, 0.012723123, 0.016880576, -0.035080977, 0.025617823, -0.023809662, -0.009047408, -0.004975744, -0.030567171, 0.006114094, 0.025142686, -0.0046391883, 0.025960978, -0.0128947, 0.0073646293, -0.010855569, 0.020232933, -0.011403297, 0.0037813014, -0.0145840775, -0.015943497, -0.0070742676, 0.0034150498, -0.027109226, 0.031068705, -0.0035536315, 0.0010509115, 0.007589, -0.015903903, -0.01259114, -0.021262398, 0.017329315, 0.011574874, -0.004421417, 0.008585468, 0.015745524, 0.018860314, 0.02487872, -0.020919243, -0.03360277, -0.0055795643, -0.001684428, -0.017276522, 0.007503211, 0.010565207, 0.015771922, 0.014702862, -0.024997504, -0.01736891, -0.022186276, -0.019375047, -0.0072788405, -0.009806307, -0.006569434, -0.0010344136, -0.0035602306, 0.01623386, 0.012987088, 0.028402656, 4.5245286E-4, 0.019480633, -0.02252943, -0.02906257, 0.00629887, 0.003972676, 0.016959764, 0.011845439, -0.007945352, -0.010769781, -0.0042003463, 0.005365093, 0.022503033, -0.01888671, 0.027795536, -0.04727617, 0.012756119, 0.020562889, 0.029458517, 0.009014412, 5.42366E-4, 0.015600343, 0.015006422, -0.010908362, 0.02951131, -0.02062888, -0.035371337, -0.0027402889, 0.006348363, 8.471633E-4, -0.014148535, 0.0012266133, -0.012775916, -0.00978651, -0.005120925, 0.007753978, 0.0056917495, -0.006351663, -0.007773775, 0.020232933, -0.03740387, -0.009601735, -0.03368196, 0.013990155, 0.012419563, -0.012907898, -0.014267319, 0.031015912, 0.030699152, 0.015600343, -0.026238142, 0.037826214, 0.020760864, 0.0023905348, -0.010730186, -0.0023080457, -0.012703326, 0.026422916, -0.0067080157, 0.01600949, 0.014729259, -0.0379318, 0.05239709, -0.013079476, 0.006948884, -0.023981238, -0.02412642, 0.01622066, 0.03611044, -0.023492903, -0.007311836, -0.025116289, -1.4036041E-5, 0.0129013, -0.004992242, 0.02625134, -0.008209318, 0.01934865, 0.008050939, 0.0048008673, 0.035001785, 0.024020834, 0.01532318, 0.012116003, -0.01130431, 9.6842233E-4, -0.011581473, -0.009172791, -0.004421417, -0.011390098, -0.010591604, 0.008301706, 0.01730292, 0.014452095, -0.024007635, -0.023954842, -0.0013775683, -0.026211744, 0.0310951, -0.005094528, 0.013244454, 0.00645065, 0.013251053, 0.003050448, 0.002662749, -0.018530358, -0.012452559, 0.0012959042, -0.0028706216, 0.009865699, 0.031834204, -8.6201134E-4, -0.0014377855, 0.028006708, -0.021816725, 0.0033210122, -0.011442891, -0.008829636, 0.022344654, -0.006015107, 1.7869206E-4, -0.6428081, -0.00318573, -0.005332097, -0.01129771, 0.005424485, 0.026304133, 0.002829377, -0.008123529, -0.036664765, -0.009390562, -0.011838839, 0.00811033, 0.030751945, -0.019322254, -0.019031892, -0.0117332535, -0.003685614, -0.016906971, 0.012914497, 0.004909753, -0.030276809, 0.017540488, 0.016722195, -0.0056257583, 0.010598203, 0.009628131, -0.007925555, -0.02328173, -0.007569202, -0.005012039, -0.010136263, 0.012914497, 0.014267319, 0.004454413, 0.028534638, 0.013336842, -0.01259774, 0.033523582, 0.024641152, 0.03096312, -0.04384462, -0.0075296075, 0.01554755, 0.004975744, -0.019454235, 0.011588072, 0.021777129, 0.004437915, 0.017184135, -0.006516641, -0.0012043412, 0.006249376, -0.0039924737, -0.019533426, -0.027373191, 0.0068960907, 0.011192124, -0.021460371, 0.026832063, -0.013844975, -0.022753801, 0.014478492, 0.010618, 0.017830849, -0.020602483, 0.025631022, -0.01380538, -0.01335004, 0.021790328, -0.02457516, 0.0098591, -8.1664236E-4, -0.0174481, -5.9845863E-4, 0.011654064, 0.013033282, 0.026185349, 0.0076879864, 0.014966827, 0.011726654, 0.010235251, -7.844716E-4, 0.018530358, 0.004338928, 0.020562889, -0.007608797, -0.011350504, 0.009680924, 0.016379042, 0.003192329, 0.011244917, 0.011878435, 0.004421417, -0.007971749, 7.894209E-4, -0.004269637, -0.022885783, -6.995078E-4, 0.029828068, -0.0682614, -0.013647001, -0.027056433, 0.010228652, -0.0021216203, 0.029854465, 0.0028541237, 3.7016996E-4, -0.0015227493, 0.024324393, 0.008281908, -0.011951025, 0.0021661643, -0.033048443, -0.01092816, 0.004655686, -0.024680747, 0.020193338, 0.011423094, -0.004467611, 0.0057214457, 0.010129665, 0.0022783496, 0.015389171, -0.0159303, 0.0085062785, 0.009469751, -0.0063912575, -0.0032104768, 0.006688218, 0.0065958304, 0.013963759, 0.016735394, 0.0123601705, -0.012637334, -2.6808967E-4, 0.018715132, 0.027557967, -0.015943497, 0.022661412, -0.017329315, -0.027901122, -0.014848042, -0.015415568, -0.02169794, -0.015613542, -0.016128274, -0.02519548, -0.003451345, -0.0064671473, -0.021895913, -0.007602198, 0.011046944, -0.005348595, 0.017197333, -2.2045219E-4, 0.004454413, -0.021684742, -0.024324393, 0.024522368, -0.026752872, 0.013152067, 0.021143613, -0.005665353, -0.028244277, 0.017276522, -0.011614469, -3.8089353E-4, 0.012320576, -0.001752069, -0.020892845, 0.009806307, -0.01129771, -0.0075824005, 0.008532675, 0.003778002, 0.04004352, -0.0013165264, 0.010301242, 0.012168796, -0.008479882, 0.006783906, 0.0053914892, -0.029907258, -0.024179213, 0.028270673, 0.014240922, 0.020114148, -0.006150389, -0.0099580875, 0.0011136032, -0.0032022279, 0.0023839357, 0.0036361206, -6.7393616E-4, 0.0025423148, 0.04801527, 1.3414794E-4, -0.01548156, 0.019546622, 0.006417654, 0.044583723, 0.037509456, -0.0011936177, 0.0027897821, 0.0029712582, -0.026013771, 0.015098809, -0.007866163, 0.006351663, 3.468668E-4, 0.019018693, -0.025974177, -0.020140545, -0.002298147, 0.016062282, 0.018649142, -0.01259114, 0.012155598, -0.011819042, 0.021671543, -0.007523008, -0.0037153102, 0.012855105, 0.010347436, -0.020589286, -0.005794036, 0.02625134, -0.0033573075, -0.01001748, -0.0012035164, -0.00637146, 3.8109976E-4, -0.0035404332, 0.0014089142, -0.003434847, 0.009502747, 0.02625134, -0.007153457, 0.025512237, 0.0028772207, 0.0010418376, 0.024100022, 0.029036172, 0.0054376833, 0.0025654119, -0.011805844, 0.029854465, 0.0054871766, -0.011317508, 0.037377473, -0.00841389, 0.025908185, -0.004454413, 0.012353571, -0.007450418, -0.005711547, 0.0083479, 0.0050780308, 0.027557967, 0.021816725, 0.018715132, -0.026528504, 0.019625813, 0.014689663, 0.0027353393, -0.013099273, -0.025591426, -0.001516975, -0.0040683635, -0.029352931, -0.01775166, -0.0060184067, -0.005899622, 0.019441037, -0.0016943266, -0.002951461, -0.009383963, 0.015296783, 0.022437042, 0.029854465, -0.011977421, -0.020272527, 0.015613542, 0.023981238, -0.02040451, -0.020285726, -0.01236677, -0.005365093, -0.024535565, -0.018543556, -0.014491689, 0.040861815, -0.01736891, 0.009522545, -0.014346508, -0.008070736, 0.018108012, -0.013409432, 0.0042366413, 0.0062856716, -0.006955483, 0.019322254, -2.3798113E-4, -0.007945352, 0.016497824, -0.0020754265, 0.011238319, -0.005058233, -0.0103540355, 0.0018840516, -0.0037813014, 0.008565671, -0.03244132, 0.005045035, -0.012511951, -0.0136865955, -0.002108422, 0.0014155135, -9.2882756E-4, -0.0058303312, -0.016788187, -0.015890704, -0.0071468577, -0.005893023, 0.06197903, 0.051552404, 0.01259774, 0.012445959, -0.015112008, 0.017870445, -0.03193979, -0.0053749913, -7.3704036E-4, -0.0032269745, 0.011310909, -0.016511023, 0.040677037, 0.0022767, 0.006335165, -0.0051176255, 0.002420231, -0.014122139, -0.0010426625, -0.007833167, -0.011126134, -0.02025933, 0.022239069, 0.031121498, -0.006503443, -0.02230506, 0.016933369, 0.023096954, -0.0017570184, 0.006632126, -0.019691804, 0.002822778, 0.0013742688, 0.019229865, -0.0060250056, -0.0011993919, 0.027927518, 0.008367697, 0.036004853, 0.0099052945, 0.0017834149, -0.007087466, -0.01228758, -0.006849897, 0.006790505, -0.023360921, -0.018833917, 0.031623032, 0.03647999, -0.022727404, 0.01623386, -0.003223675, -0.011845439, -0.011079939, 0.034157097, 0.012267782, -0.011885033, -0.0069092894, -0.01129771, -0.026488908, 0.026079763, -0.037667833, 0.016194265, -0.012980489, -0.004187148, -0.022318257, -0.010875367, 0.0015681182, -0.018464366, 0.004946048, -0.0066090287, -0.02708283, -0.028085897, -0.012947493, 0.0026512004, 0.0023624885, 0.021961905, -4.4832838E-4, 0.0134358285, 0.028851397, -0.030857531, -0.023994436, 0.004942748, -0.019757796, -0.018108012, 0.00864486, -0.007773775, 0.019454235, -0.013924165, 0.012069809, 0.003975976, 0.014808448, -0.0025274667, -0.016748592, 0.040993795, -0.003307814, 0.014280518, 0.02988086, -9.723406E-5, -0.010763181, 0.012379968, -0.015257189, -0.008928623, -0.023677679, -0.012412963, -0.024337592, -0.0026726476, -1.0816387E-4, -0.024614755, -0.019678606, -0.018174004, -0.013072876, 0.01259774, 0.011310909, -0.0039858744, -5.023588E-4, 0.00826871, 0.014042948, 0.008031141, -0.006856496, 0.013554613, -0.010189056, 0.0095819365, 0.02342691, -0.012083007, 0.016445031, -0.015032819, -0.014267319, -0.0039990726, 0.03428908, 0.032335736, 0.0078793615, -0.022503033, -0.0052067135, -0.0182136, -0.0310951, 0.0116606625, -0.005104427, -0.027953915, -0.0019417941, -0.015494757, 0.0103540355, 0.011819042, -0.011502284, -0.0054508816, -0.033286013, 0.017104944, -0.02487872, 0.027769139, 0.030382395, 0.005249608, -1.419844E-4, -0.035397734, -0.0143861035, -0.0030207518, -0.039172437, -0.0219883, -0.0020242832, 0.030012844, 0.0013998405, 0.037351076, 0.013950561, 0.020734467, 0.019863382, 0.012175395, 0.021816725, -0.018068418, -0.0031279877, -0.030171223, 2.792257E-4, 0.008737248, 0.02109082, 0.015164801, 0.0045632985, 0.01850396, 0.029036172, 0.010037277, 0.004058465, -0.0070940647, -0.015917102, -0.020602483, -0.0124327615, -0.019520227, -8.0756855E-4, -0.012254585, -0.015151602, 0.03574089, -0.0064077554, 0.005407987, -0.0024994204, 0.039330814, -0.0128089115, 0.02313655, -0.0061635873, 0.024020834, -0.030619964, 7.2013005E-4, -0.027927518, -0.024311196, -0.005256207, 0.0016118375, 0.019902976, 0.0034975389, -0.017461298, -0.004305932, 0.033497185, -0.01532318, -0.03529215, 0.024601556, -0.004239941, -0.006015107, -0.027716346, -0.013211458, -0.03217736, -0.011337305, 0.008446886, -0.02184312, 0.005546569, -0.013831777, -0.04582436, 0.0074438187, 0.004724977, 0.048041668, 0.016946565, 0.047962476, 0.033470787, 0.007991547, -0.007984947, 0.008156525, -0.008658059, 0.0023344422, 0.044293363, 0.022542628, -0.022925379, -0.005180317, -0.014531285, 9.48625E-4, -0.025974177, -0.057386033, 0.0072656423, 0.027452381, 0.022133483, -0.015943497, 0.004444514, -0.0071336594, 0.024759935, -0.004457712, 5.650505E-5, 0.0126109375, -0.021803526, -0.018873513, 0.015006422, 0.008011344, 0.008790041, 0.0074174223, -0.018688736, 0.019586219, -0.004922951, 0.0029465116, -0.011772848, -0.0159303, 0.023176145, -0.025736608, 0.030329602, 0.015112008, 0.0044511133, -0.0040683635, -0.0029316635, -0.002859073, 0.0341307, -0.024786333, 0.0038868876, -0.002138118, 0.008499679, 5.0029653E-4, -0.009865699, -0.040096313, -0.020457303, -0.034869805, 0.005530071, 0.039172437, 0.002078726, 0.004421417, -0.0036988123, -0.016207464, -0.01623386, 0.007753978, -8.446886E-4, 0.004150853, -0.039779555, 0.024905117, -0.00432243, 0.012756119, 0.00796515, -0.009218984, -0.0040254695, -0.0048206644, 0.008526076, -0.0061107944, -0.021447172, -0.022542628, -0.025776202, -0.051288437, -0.033233218, -0.020074554, -0.022186276, 0.015349576, -0.029141758, 0.007160056, -0.0019698404, -0.0016514322, -0.013488621, -0.0076681892, -0.010004281, -0.0071138623, 0.018028824, -0.007087466, -0.008526076, -0.0040947604, 0.030408792, -0.0071930517, 0.0065727336, 0.023928445, 0.029484913, 0.038037386, -0.027874725, 0.009852502, -0.007918956, -0.025512237, -0.01979739, 0.008400693, 0.025763003, 0.010743383, 0.0029151656, -0.03840694, -0.013950561, 0.002557163, 0.036902335, -0.020800458, -0.024865523, 0.033022046, 0.01145609, 0.04748734, 0.014399302, 0.0075955987, -0.03890847, -0.011871835, 3.8171842E-4, -0.018477565, 0.0029844565, 0.01645823, 0.014425699, -9.0160617E-4, -0.00811693, -0.025353858, -0.003969377, -0.009852502, -0.0333916, -0.0030026042, 0.016035886, 0.037588645, 0.0060118074, 0.005635657, 0.019454235, -0.007391026, 0.008156525, -0.02040451, -0.007892559, 0.017936436, 0.012254585, 0.003619623, 0.021024829, -0.025604624, -0.008374296, 0.012102804, 0.02305736, 0.0025390154, 0.030012844, -0.024548763, 0.0104068285, -0.0073844264, 0.0035239356, 0.0074966117, 0.0046853824, 0.021777129, -0.022186276, -0.005500375, -0.0021711139, 0.022384249, 0.0055036745, 0.005401388, 0.006272473, -0.011119534, 0.004969145, -0.031306274, -0.004421417, -0.0071930517, -0.022780197, 0.010835771, 0.010974353, 0.014795249, 0.014518086, 0.02435079, -0.014280518, -0.0013792182, 0.0044511133, -0.0105322115, -0.00629557, 0.0050549335, 0.00955554, 0.009126597, -0.042603984, -9.172791E-4, -0.024297997, -0.002829377, -0.0023179445, 0.0040122713, -0.012399766, 0.02845545, -2.2931978E-4, -0.055274315, 0.0077473787, -0.011574874, 0.0034381468, -0.015903903, 0.008374296, -0.022146681, -0.027320398, -0.0069224876, 0.018332383, -0.023162946, -0.027821932, 0.012472356, -0.0062592747, -0.0145840775, 0.01532318, 0.1736891, -0.013020083, 0.015006422, 0.04907113, 0.011588072, 0.010030678, 0.01850396, 0.007021474, -0.01775166, 0.008658059, -0.0083281025, 0.007371228, -0.017540488, 0.0034579441, 0.021196406, -0.012010417, -0.023387317, -0.023202542, -0.029828068, -0.03244132, -0.00894842, -0.0064275526, -0.025894986, -0.018002426, 0.00447421, 0.008565671, -0.021829922, 0.012373369, 0.022199474, 0.0031461352, -0.022780197, -0.0060415035, -0.020958837, 0.014056147, -0.018913107, -0.014914034, -7.480733E-5, 0.0035635303, 0.008710852, 0.013541415, 0.012835308, 0.0026924452, -0.0038934867, -0.005813834, 0.0071798535, 0.02252943, -0.019177072, -0.0026297534, -0.0136865955, 0.015151602, -0.041891277, -0.0051836167, 0.0072326465, 0.014320112, -0.016181067, -0.009298175, 0.0048899553, 5.0112145E-4, -0.008816438, 0.01570593, 0.01872833, 0.029933654, -0.027663553, 0.011027146, -0.014095742, 0.029220948, -0.045454808, 0.0038142973, 0.01789684, -0.034685027, -0.01874153, -0.024416782, -0.025142686, 0.0021249198, -0.00621968, -0.0053716917, 0.0071336594, 0.012353571, 0.014399302, 0.0044115186, -0.023123352, -0.011310909, 0.0015681182, -0.012412963, -0.009357566, -0.021354785, 0.013726191, -0.008526076, 0.012406364, -0.032573305, -0.017910039, -0.021262398, -0.009773311, 1.5322355E-4, -0.0081301285, 0.019691804, 0.0026116057, 0.007311836, -0.017038954, -0.006351663, -0.020813657, 0.019005494, 0.029405724, 0.0033061642, -0.03497539, -0.016563816, -3.4996012E-4, 0.01767247, 0.033998717, -0.015692731, -0.022397447, -0.029696085, 0.021222802, -0.00864486, -0.008143326, 0.012954093, -0.0013709692, -0.021895913, 0.04497967, -0.013158665, -0.011508883, -0.014887637, 0.008677856, 0.020589286, -0.0030323002, -0.023096954, -0.014042948, 0.018767927, 0.0018527057, -0.03286367, -0.0020638779, -0.011654064, 0.015138404, 2.8850572E-4, -0.0010665844, 0.014425699, 0.02139438, 0.014848042, -0.010037277, -0.018992295, 0.0016209113, -0.018688736, -0.0076285945, -7.378652E-4, 0.014570879, -0.03331241, 0.020958837, 0.007918956, -0.0024301296, -0.034421064, -0.011792646, -0.0056785513, 0.012406364, 0.005401388, 0.042234432, -0.0019962369, -0.0379318, -0.03199258, -0.021354785, 0.042234432, -0.038565315, 0.019533426, 0.01129771, -0.0059194197, -0.028719414, -0.0016060633, -0.16745952, -7.729231E-4, -0.005444282, -0.013765785, 0.016893772, 0.013488621, 0.0020688272, 0.0083479, 0.012716523, -0.030831136, 0.014346508, 0.011535279, -0.048859958, -0.0031312872, -0.00121424, 0.03376115, 0.0032748182, 0.029273741, 0.015837912, -0.012017016, 0.043580655, 0.010552009, -0.008625063, 0.012023615, 0.006335165, 0.019520227, 0.017712066, 0.0037120106, -0.008070736, -0.018081617, -0.026436115, -0.0059260186, 0.0030768444, 0.00492955, -0.01016266, 0.011086538, -0.021130415, -0.017764859, 0.006203182, -2.1880241E-4, 0.032520514, 0.022766998, 0.02988086, 0.010631199, 2.2725754E-4, 0.02388885, 0.018094815, -0.009423558, 0.0035371338, -0.018794322, -0.010116466, -0.045507602, 0.0059392173, -0.007305237, -0.016286653, 0.024905117, -0.0026099558, -0.003761504, 0.010116466, -0.020958837, -0.0310951, -0.007186453, 0.018992295, -0.013871372, 5.8526034E-4, -0.033233218, -0.0052694054, 0.020417709, -0.036664765, 0.010710388, -0.012577942, 6.153689E-4, 0.005150621, -0.0017405206, 4.129612E-5, -0.018451167, -0.013844975, 0.008400693, -0.002002836, 0.021433974, -0.017619677, 0.042867947, -0.015098809, 0.007173254, 0.006562835, -0.01608868, 0.0018015625, 0.007047871, 0.002557163, -0.0057379436, 0.011489086, -0.0065760333, -0.009535743, -0.007859563, 0.008486481, 0.012300778, -0.0031642828, 0.00660243, 0.0077473787, 0.0048008673, -0.011198724, -0.012254585, -0.002388885, 0.023347722, 0.04344867, 0.010380432, 0.0060711997, -9.7089703E-4, 0.021711137, -8.22829E-4, 0.007021474, 7.7251066E-4, 0.013191661, 0.0030075535, -0.020232933, 0.0039033855, -0.019454235, -0.0087570455, 0.0016011139, 0.019071486, 0.029484913, 0.002496121, 0.0021067723, -0.02487872, -0.015309982, -0.012056611, -0.07913677, -0.012822109, -0.0037417067, 0.050760508, -0.037562247, 0.036532786, -0.02602697, 0.030356, -0.0111591285, 0.030329602, 0.0212492, -0.022885783, 0.0050483346, 0.0037219094, 0.024166014, -0.011568275, -0.022885783, -0.011792646, -0.011561676, 0.012003818, -0.0042498396, -4.475035E-4, 0.010835771, -0.019256262, -0.025406651, -0.003655918, -0.036664765, 0.017474497, 0.007839766, 0.02176393, 0.017025756, -0.024905117, 0.012056611, -0.04951987, -0.03291646, -0.026277736, -0.026198545, -0.017606478, 0.007424021, -0.06778626, 0.023004567, 0.019137478, 0.006539738, -0.021737535, -0.012676929, -0.0052826037, -0.01850396, 0.027425984, -0.016022688, -0.022027897, -0.020734467, -0.008539274, -0.023849256, 0.0013783933, 0.009337769, 0.010703789, 0.02185632, 0.017025756, -0.010129665, -0.025683815, 0.00132725, -0.010987552, -0.027901122, 0.021750733, 0.010136263, 0.0070676683, 0.004926251, -0.008717451, 0.014742456, -0.00500874, -0.030197619, 0.03003924, -0.019546622, 0.0049031535, -0.023598488, 0.012280981, -0.031068705, -0.0083479, 0.016379042, -0.035212956, -0.0063285655, -0.0348962, -0.0030784942, -0.014491689, -6.2815467E-4, 0.016867377, -0.0025769603, 0.016339445, 0.0062097814, -0.034394667, 0.005144022, 0.012822109, 0.0061569884, 0.006470447, -0.0012101155, 0.012280981, 0.0333916, 0.0011903181, 0.003966077, 0.0053815907, -0.0054376833, 0.0023228938, -0.0667832, 0.03267889, -0.026792469, -0.019441037, -0.0041838484, -7.7416043E-4, 0.0083479, -0.0031395361, 0.008156525, 0.00295806, -0.018781124, 0.02115681, -0.010063673, 0.0046985806, -0.004576497, 0.0044313157, -0.0010484367, -0.008829636, -0.01682778, 0.003434847, -0.01532318, 0.008031141, 0.029220948, 0.003959478, -0.0067443107, 0.037219092, 7.6766446E-5, 0.021077622, 0.0055102734, 0.008473283, 0.027267605, -0.0095819365, 0.0059755123, 0.00766159, -0.007846366, -0.03193979, -0.014306914, -0.0042993333, 0.021645147, -0.007041272, -0.0070280735, -0.03238853, -0.0052232114, -1.130101E-4, -0.0076285945, 0.01600949, -0.024390385, 0.016590213, 0.014702862, 0.014161733, 0.048279237, 0.013594208, 0.0033853538, -0.018015625, 0.01798923, -0.023017766, 0.036374405, -8.7520963E-4, -0.0026825464, -0.010459621, 0.027821932, -0.0032352235, 0.019665407, -0.015890704, -0.0070940647, -0.008367697, 0.0029564102, 0.008961619, -0.010255048, -0.030012844, 0.0058831247, -0.0036625173, 0.023242136, 0.034869805, 0.022133483, 0.0062559755, -0.017791254, 0.016326249, -5.196815E-4, 0.029986447, 0.025828995, -0.008262111, -0.035635304, 1.14247436E-4, -6.174311E-4, 0.016801385, -0.002237105, 0.010710388, -0.003543733, 0.011139331, -0.0053518945, -9.156293E-4, 0.007041272, -0.0038340946, 0.0072458447, 0.031015912, -0.013284049, -0.018517159, -0.01957302, 0.015692731, -0.0049361493, 0.007720982, -0.013594208, -0.021447172, -0.013699794, 9.849202E-4, -0.0220015, -0.024561962, 0.025855392, 0.016247058, 0.025578229, 5.4277846E-4, -0.023638085, 0.012459158, -0.029009776, 0.0069686812, -0.0019846885, -0.026752872, -0.014359707, 0.049942218, 0.003830795, 0.013409432, 0.041310553, -0.009185989, 0.048965544, 0.003603125, 0.025472643, -0.027320398, 0.013778984, -0.00804434, -0.005813834, -0.0021249198, -0.023994436, 0.009819506, 0.0036163232, -5.353544E-4, 0.008981416, 0.028402656, -0.015375973, 0.07565243, 0.0048734574, -0.011937826, 0.033206824, -0.019784192, 0.0039033855, 0.017461298, 0.011264715, -0.016577015, 0.008941821, 0.0012167146, -0.016972963, 0.012261184, -0.027267605, -0.0020539793, -0.015046016, 0.012855105, 0.014254121, -0.0136865955, -0.017052151, 0.0021760631, -0.012993687, 0.019388244, 0.0129013, -0.019916175, -0.02176393, 0.023479706, -0.017197333, -0.012195192, -0.043290295, 0.0033556577, -0.0130596785, 4.70188E-4, 0.0061536888, 0.025367055, 0.003444746, -0.0025819095, 0.0033771049, 0.029115362, -0.0032533712, 0.0025753104, 0.013871372, -0.025155883, 0.0050648325, 0.0048305634, -0.013026683, 9.5027476E-4, -0.022067491, -0.025960978 ], + "id" : "6e59a083-4e8d-48ff-8b2d-61da2fc864ff", + "metadata" : { + "source" : "movies.csv" + } + }, + "047c5569-2b5d-4966-95f7-02a3c82793a1" : { + "text" : "818,14437,Mark Hamill-Carrie Fisher-Adam Driver-Daisy Ridley-John Boyega-Oscar Isaac-Andy Serkis-Lupita Nyong'o-Domhnall Gleeson-Anthony Daniels-Gwendoline Christie-Kelly Marie Tran-Laura Dern-Benicio del Toro-Frank Oz-Billie Lourd-Joonas Suotamo-Amanda Lawrence-Jimmy Vee-Brian Herring-Dave Chapman-Justin Theroux-Tim Rose-Tom Kane-Adrian Edmondson-Mark Lewis Jones-Hermione Corfield-Veronica Ngo-Noah Segan-Jamie Christopher-Paul Kasey-Michaela Coel-Priyanga Burford-Navin Chowdhry-Crystal Clarke-Hugh Skinner-Shauna Macdonald-Kate Dickie-Ralph Ineson-Michael Jibson-Luke Neal-Andy Nyman-Lily Cole-Warwick Davis-Kiran Shah-Joseph Gordon-Levitt-Mike Quinn-Gareth Edwards-Gary Barlow-Peter Mayhew-Edgar Wright-Joe Cornish-Griffin Hamill-Nathan Hamill-Chelsea Hamill-Yang Liang-David M. Santana-Andrew Jack-Jonathan Harden-Danny Euston-Aki Omoshaybi-Togo Igawa-Tim Steed-Simon Lowe-Joe Van Moyland-Darren Morfitt-Gerard Monaco-Patrick O'Kane-Paul Bazely-Orion Lee-Amira Ghazalla-Akshay Kumar-Temirlan Blaev-Josiah Oniha-Sara Heller-Matthew Sharp-Jack Greenlees-Danny Sapani-Kevin Layne-Ben Morris-Andrew Abbott-Chris Adams-Samantha Alleyne-Martin Bratanov-Glen Carroll-Cavin Cornwall-James Cox-Steve Doyle-Josh Dyer-Karl Farrer-James Filanowski-David R. Grant-��mar Gu��j�_nsson-Craig Izzard-Christopher Jaciow-Tobias James-Samuels-Dan Lam-Antonio Lujak-Josh Methven-Sandeep Mohan-Ross Moneypenny-Florian Robin-Scott Tanner-Stephanie Silva-Clem So-Leo Thompson-Andy Wareham-William Willoughby-Oscar Wright-Karanja Yorke,bunker-space battle-defeat-failure-sequel-space opera-military operation,/kOVEVeg59E0wsnXmF9nrh6OmWII.jpg,/epVMXf10WqFkONzKR8V76Ypj5Y3.jpg,140607-1894-181812-1893-1895-330459-11-348350-1891-1892-284053-315635-12180-283995-141052-260485-92196-920930-924387-284054-1035038\r\n351286,Jurassic World: Fallen Kingdom,Action-Adventure-Science Fiction-Thriller,en,Three years after Jurassic World was destroyed Isla Nublar now sits abandoned. When the island's dormant volcano begins roaring to life Owen and Claire mount a campaign to rescue the remaining dinosaurs from this extinction-level event.,81.072,Amblin Entertainment-Universal Pictures,6/6/18,170000000,1310466296,129,Released,The park is gone.,6.", + "embedding" : [ 0.016967801, -0.02395219, -0.014861821, -0.033109207, -0.027964216, 0.02617813, -0.012076063, -0.0047051325, -0.025191786, -0.014008766, 0.024551995, 0.034628708, 0.02265928, 0.0010729835, 0.015581586, 0.028124163, 0.018220726, -0.013862147, 0.012655874, -0.02395219, 0.003495527, -0.008197327, -0.022592634, 0.007884096, 0.004561846, 0.018034121, 0.020593286, -0.007597523, -0.008170669, 0.005628165, 0.0052282955, -6.029284E-5, -0.0035655042, -0.02592488, -0.02368561, -0.0031606362, 0.0070110476, -0.023365716, 0.033562392, -0.0027241118, 0.017047776, 0.019007137, -0.020566627, 3.5217684E-4, -0.002660799, 0.0021209752, 0.019127097, -0.0047517843, -0.010083379, 0.02685791, 0.010556558, 0.0416131, -0.019180413, -0.027670978, -0.006774458, 0.0029990221, -0.014848492, 0.0049883737, -0.012509255, -0.0020593286, 0.008004057, -0.02265928, -0.025298418, -0.003602159, -0.020459997, -0.007624181, 0.0039320514, -0.004491869, 5.864755E-4, 0.00967018, 0.020726576, 0.002807418, 0.027177805, -0.0030956573, 0.0073376074, -0.037481114, -0.014302003, 0.0039187223, -0.0015961463, 0.0063379337, 0.008937086, -0.015168387, -0.0063679237, -0.0013820494, 0.017434316, 0.009057047, -0.021219749, 0.016354667, -0.030789962, 0.004735123, 0.0028174147, 0.039960306, -0.016434642, 0.008643849, 0.0014770185, 0.02040668, -0.019407006, 0.03396226, -0.019700244, -0.04081336, -0.0010921439, 0.005308269, -0.006837771, -0.018473977, -0.008910428, 0.004791771, 0.008783802, -0.0021443008, 0.016034773, 0.010629867, 0.029563695, -0.0025041834, -9.4552507E-4, -0.04593169, -0.015514942, -0.017301027, 0.025311748, -0.019726902, -0.013455613, -0.023912204, 0.048997357, 0.027097832, 0.0037054585, -0.03308255, 0.026884567, 0.04459879, 0.006694484, -0.0046318234, 0.012835815, 0.0041086604, 0.014142056, -0.0010696512, 0.030603355, 0.005618168, -0.01177616, 0.044438843, -0.011003079, 0.0010879786, -0.007344272, -0.01934036, 0.035161868, 0.036254846, -0.032469414, -0.018127423, -0.025831578, -0.0027407731, 0.01434199, 0.0041986313, 0.013195697, -0.006667826, 0.028497376, 0.016821181, 0.0055815135, 0.009950089, 0.026751278, -0.0037021262, 0.017727554, -0.009750155, 0.007890761, -0.0064778877, -0.010036727, 0.0075508715, -0.0077707996, -0.0044452175, 0.01816741, 0.020366693, 0.024698613, -0.014728531, -0.012715854, 4.765113E-4, -0.020579956, 0.034708682, -0.02104647, 0.014648558, -0.005911406, 0.02697787, -0.0019410338, -0.021659605, -0.04737122, -0.018633924, -0.008783802, 0.016781196, 0.020553298, 0.02831077, -7.5100514E-4, -0.005761455, 0.02777761, -0.024432033, 0.016234707, -0.010809809, 0.010783151, 0.031083198, 0.0075242133, 0.0025741607, -0.64363015, -0.024538666, 0.010716506, -0.0025841575, 0.020086784, 0.033109207, 0.007897425, -0.0071176793, -0.02871064, -0.01408874, -0.028550692, 0.007844109, 0.018487306, -0.0064345687, -0.0061213374, -0.0070110476, 0.0058347643, -0.024112139, 0.012056069, 0.007257634, -0.02356565, 0.029936906, 0.025591657, -0.017820856, 0.0046851393, 0.016314682, -0.015888153, -0.014155385, 0.0059613897, -0.00523496, -0.016941143, 0.0040553445, -0.0040286863, 0.009863451, 0.03214952, 4.7484518E-4, -0.01474186, 0.04787772, 0.022872543, 0.0471313, -0.026124816, -5.494042E-4, 0.010163353, 0.009163679, -0.015754864, 0.01923373, 0.0031756312, -0.0022925858, 0.011289652, -0.0051050023, -0.00803738, 0.008543881, -0.0031339782, -0.0077707996, -0.009383608, 0.0053249304, 0.014715202, -0.036761347, 0.028070848, 0.002172625, -0.02027339, 0.026498027, 0.014928466, 0.015208375, -0.011143033, 0.0315897, 0.008337282, 0.003143975, 0.007850774, -0.035081897, 0.00803738, 0.0050183637, -0.009636858, 3.644645E-4, 0.0072309757, 0.008283965, 0.032069545, 0.0077308128, 9.163679E-4, 0.034442104, 0.0028923904, -0.004725126, -0.0060813506, 0.012435946, 0.007424246, 0.0075375424, -0.03276265, 0.008803796, 0.017154407, -0.014182042, 0.01658126, 0.023792243, 0.010956428, 0.008490565, -0.00809736, -2.46378E-4, -0.014035424, 0.006857764, 0.018900504, -0.0595006, -0.0139287915, -0.005618168, 0.019460322, -0.011169692, 0.022446016, 0.016154733, -0.018074106, 0.009423594, 0.025258431, -0.006048028, -0.016767867, -6.622841E-4, -0.013342316, 5.7689525E-4, 0.0056881453, -0.030256802, 0.014315332, 0.02436539, 0.0034488756, -0.0033572388, 0.0062346337, 0.014861821, 0.02383223, -0.01896715, 0.0151817165, 0.030336775, -0.004052012, -0.016354667, 0.010010069, 0.001971024, -0.004505198, -0.0040986636, 0.018580608, -0.014381978, 0.0043952335, 0.0095635485, 0.010996414, -0.0016377993, 0.017660908, -0.0051050023, -0.021419683, -0.00510167, -0.0073509365, -0.018034121, -0.019380348, -0.012449275, -0.030390091, 0.0076708323, -0.01138962, -0.029510379, -0.0072443048, 0.0071643307, -0.0028190808, 0.008350611, 0.0043285885, 0.003278931, -0.03329581, -0.020340035, 0.008357275, -0.012822486, 0.016647905, 0.004035351, 0.005374914, -0.028763955, 0.020100113, -0.018833859, -0.007810787, -0.0017027782, -0.010456591, -0.011316311, 0.010836467, -0.008463907, -0.0062113083, 0.017967476, -0.010276649, 0.018513964, -0.014821834, 0.011183021, 0.015608245, -1.33394E-4, -0.0023925533, -0.0077841287, -0.021752907, -0.0049517187, 0.01934036, 0.021952843, 0.014555254, 0.0060247025, -0.0016161398, 0.0029057192, -0.0118494695, -0.002349234, -0.010636532, 0.012229346, 0.0030623348, 0.027004529, -5.2024703E-4, -0.0011304647, -0.004698468, 8.563874E-4, 0.03990699, 0.029163824, 0.016474629, -0.015261691, 0.012742512, -0.032735992, 0.008370604, -0.03777435, 0.010170017, -0.008190663, 0.027044516, 0.0018860517, -0.015301677, -0.0065778554, 8.872107E-4, 0.03332247, -0.020233404, -0.0015978124, -0.018673912, 0.0015261691, 0.0050416896, 0.001931037, 0.026911225, 0.004505198, -0.04238618, 0.004438553, 0.016168062, -0.009323627, 0.01447528, -0.008350611, -0.0046884716, 0.0055815135, -0.011183021, 0.015155058, -0.00993676, -0.0054082368, 0.016314682, -0.013742186, 0.037561085, -0.020300047, 0.0022426022, 0.010003405, 0.02725778, 0.0032822632, 0.007997393, -0.0053049373, 0.017500961, 0.01020334, -0.019660257, 0.032442756, -0.008597197, 0.028097507, 9.163679E-4, 0.0164613, -4.0341014E-4, -0.01552827, 0.007091021, 0.009930096, 0.042466152, 0.010909776, 0.019393677, -0.022685938, 0.028524034, 0.0093569495, 0.0109497635, -1.5698008E-5, -0.023898875, 0.015754864, 0.017847514, -0.034682024, -0.024392048, -0.008430584, -8.380601E-4, 0.00421196, -0.028337428, -0.0033422436, -0.0026074832, -7.3725963E-4, 0.004278605, 0.022899201, 0.0136622125, -0.034841973, 0.019833533, 0.031536385, -0.01591481, -0.025298418, -0.009903437, -0.0016852838, -0.03510855, -0.011576226, -0.011342969, 0.041133255, -0.023672283, 0.008477236, -0.014915137, 2.7636823E-4, 0.01842066, -0.0210598, 0.018727228, 0.016154733, -0.005708139, 0.017394328, -6.0896814E-4, -0.008843783, 0.010956428, -0.022086132, 5.777283E-4, -0.003075664, 0.0024991853, -0.0046084975, 0.008210656, 0.0034322143, -0.040253542, -0.007084357, -0.018034121, -0.026231447, -0.0021276397, 0.010010069, 0.008857112, -0.012942447, -0.0151817165, -0.014555254, -0.022006158, -0.014595241, 0.07464233, 0.03700127, 0.003992032, 0.020180088, -0.010656525, 0.0047284584, -0.0075108847, -0.0124692675, -0.031189831, -0.029856931, 0.0040653413, -0.011422942, 0.02435206, 0.015235033, 0.015821509, -0.008337282, -0.012949111, -0.023725597, 0.0015611576, -0.0046184943, -0.03308255, -0.015541599, 0.012935783, 0.024658628, 0.019806875, -0.019953495, 0.030363433, 0.005521533, -5.7814486E-4, 0.015741535, -0.001322069, 0.016208049, -4.6193274E-4, 0.013122388, -0.0017494296, -0.009396936, 0.03222949, 0.0023908871, 0.026004855, 0.010249991, -0.005994712, 0.0056514908, 0.006937738, -0.013215691, 0.015541599, -0.017700896, -0.018314028, 0.0352685, 0.018407332, -0.029430404, 0.014595241, -0.005188308, -0.029137166, -0.009423594, 0.010316636, 0.0031389766, 0.0027874245, -0.0063445983, -0.012056069, 0.0037987614, 0.007644174, -0.038360827, -4.3027638E-4, -0.0018593938, -0.014581912, -0.013742186, -0.013422291, 0.0024125467, -0.018127423, -0.0025641639, 0.013902134, -0.014688544, -6.4406086E-5, 9.4302587E-4, 0.012262668, -0.0022042813, 0.023152452, -3.4051397E-4, 0.023592308, 0.007004383, -0.025911551, -0.017394328, -0.001512007, -0.01816741, -0.013135717, 0.017807527, -0.0062346337, 0.023272412, -0.0045151943, 0.01434199, 0.012196024, -0.006004709, -0.016794525, -0.011496251, 0.029457062, 0.013475606, 0.014995111, 0.0029856933, 0.0076575032, 5.414901E-4, 0.0028740629, -0.025991526, -8.8637765E-4, -0.018367345, -0.02895056, -0.0113029815, -0.0059580575, -0.008743816, -0.0018843856, -0.018753886, -0.035748344, -0.011729509, 0.0055415267, 0.0010446594, 0.0024608644, -0.0058514257, 0.029190483, 0.0066978163, -0.007917418, 0.01656793, -0.003695462, -0.027830927, 0.019540295, 0.024991851, 0.0012762506, 0.019380348, -0.00823065, -0.019473651, -0.0069444026, 0.028737297, -0.006604513, 0.020300047, -0.015554928, 0.013715528, -0.018327357, -0.015741535, 0.00980347, 0.0034588722, -0.0071843243, 0.017700896, -0.030576697, -0.0023259083, 0.021113116, -0.009943425, -0.02724445, -0.03316252, 0.008843783, -0.009710168, 0.027857583, 0.029963564, -0.012809157, 0.011609548, -0.02764432, -0.018873846, -0.0041353186, -0.032656018, -0.006071354, -0.004871745, 0.034415446, 0.012662538, 0.040226884, -0.0063212723, 0.034015577, 0.0074309106, 0.0023175776, 0.013915463, -0.013995437, -0.0023808903, -0.018900504, 7.9015904E-4, 0.017007789, 0.009810135, 0.019913508, 0.010249991, 0.01950031, 0.017660908, 0.00796407, 0.015394981, 0.0069044153, -0.020193417, -0.030070195, -0.0070510344, -0.032949258, 0.0026141477, -0.02157963, -0.012329314, 0.029696984, -0.007990728, 0.0016419647, -0.0027574343, 0.029190483, 0.0015544932, 0.014955124, -0.031536385, 0.0108764535, -0.042466152, -0.0051616505, -0.013368974, -0.0073775947, -0.0077707996, -0.002185954, 0.034602053, 8.805462E-4, -0.017141078, -0.010696513, 0.03161636, -0.011056395, 0.003495527, 0.03134978, -0.02619146, -0.0021109784, -0.028817272, -0.007124344, -0.038520776, -0.017127749, -0.0012454273, -0.010849796, -5.952226E-4, -0.0164613, -0.034068894, 0.021819552, 0.015261691, 0.03726785, 0.0039087255, 0.04531856, 0.016168062, 0.021166433, -0.019993482, 0.005274947, -0.026204789, -0.0077841287, 0.0315897, 0.0251518, -0.022099461, -0.0153150065, 8.572205E-4, -0.012649209, -0.034122206, -0.033402443, 0.022486001, 0.018860517, 0.017221052, -0.023898875, 0.007257634, -0.019846862, 0.0052816113, -0.0073309434, 0.0037754357, 0.017154407, -0.02292586, -0.014288675, -0.02555167, -0.010569887, 0.016741209, 0.0065978486, -0.021606289, 0.019273715, -0.0126891965, 0.026391394, -0.012269333, -0.016354667, 0.020739904, -0.01818074, 0.009163679, 0.009170343, 0.0041986313, 5.498207E-4, 0.0024625305, 0.0049750446, 0.03132312, -0.020286718, 0.0188072, 0.010889783, 0.015634902, 2.0857783E-4, 0.004778442, -0.023365716, -0.0053515886, -0.028230796, 0.0010246659, 0.030523382, -0.008910428, -0.011742838, -0.0039453804, -0.016301353, -0.013848818, 0.006194647, -0.0018377341, 0.017847514, -0.02212612, 0.001606976, 0.0061613247, 0.0025541673, -0.015634902, 0.008583868, -0.016794525, -0.011416278, 0.011816148, -0.0058014416, -0.0090770405, -0.017607592, -0.009396936, -0.03366902, -0.017127749, -0.0070510344, -0.011502916, 0.006461227, -0.039027274, -0.013328987, 0.005518201, -0.0019277048, -0.007190989, -0.01159622, -0.018833859, 0.0055381944, 0.02908385, -0.013282336, 0.0050716796, -0.005874751, 0.03409555, -0.004371908, -0.007930747, 0.007277627, 0.017607592, 0.028604006, -0.029590352, 0.015075085, -0.002700786, -0.019833533, -0.0047084647, 0.01196943, 0.02988359, 0.0031739653, 0.0048384224, -0.020046797, -0.015714876, -0.015714876, 0.021752907, -0.008297294, -0.012729183, 0.034708682, 0.018380674, 0.04913065, 0.02067326, 0.009130357, -0.03670803, 0.0076041874, -0.010869789, -0.019726902, 0.0010413271, 0.0030473399, 0.012149372, -0.003333913, -0.009750155, -0.032842625, -0.016541274, -0.009303633, -0.026804594, -0.008383933, 0.011402949, 0.017767541, 0.01092977, 0.003822087, 0.0077707996, -0.007530878, 0.0012904126, -0.014448622, -0.0074975556, 0.021126445, 7.572531E-4, 0.022326054, 0.026511356, -0.019646928, -0.007290956, 0.008903763, 0.03134978, 0.011876128, 0.012862473, -0.018194068, 0.007757471, -0.011476258, 0.00691108, -0.02251266, 0.008323953, 0.03396226, -0.018833859, -0.009183672, 0.0027041184, 0.02617813, 0.0021776233, 0.00790409, 0.016594589, -0.010756493, -0.004062009, -0.002805752, -0.014381978, -0.003605491, -0.031109856, 0.020326706, 9.335498E-5, -0.014075411, 0.035188526, 0.029110508, -0.013055744, 0.0029323772, -0.010696513, 0.008723822, 0.00401869, -0.0048850738, 0.0068977512, 0.02581825, -0.027231121, 0.007944076, -0.04531856, -0.006171321, -0.011456265, 0.003375566, -0.024018835, 0.04121323, -0.0017477635, -0.046571482, 0.0066544972, -0.009137021, -0.006951067, -0.004511862, -0.007844109, -0.015474955, -0.0012237676, 0.0012037742, 0.015101743, -0.030709988, -0.024965193, 0.023379045, -0.0040953313, -0.029910248, 0.02052664, 0.17839517, -0.01013003, 0.018274043, 0.03884067, 0.01656793, 0.014461951, 0.03212286, 0.0033988918, -0.03129646, 0.001633634, -0.0015220038, 0.006704481, 0.012609222, -0.0029656996, 0.017221052, -0.026631316, -0.020606615, -0.024591982, -0.023872217, -0.020393351, -0.0012779167, 0.0032006232, -0.015554928, -0.011269659, 0.007824115, -0.017234381, -0.009903437, 0.010509906, 0.021512985, 0.019060452, -0.008983738, -7.205984E-4, -0.006088015, -0.004935058, -0.012922454, -0.017540948, -0.005508204, 0.0085905325, 0.013315658, 0.01882053, 0.001444529, -0.015874824, -0.0028907242, 0.0077308128, -0.012322649, 0.008217321, -0.020473326, -1.6130158E-4, -0.015954798, 2.5679127E-4, -0.047717776, -0.008443913, 0.010596545, 0.018860517, -0.007930747, -0.017074432, 0.011516245, 0.0037154553, -0.010083379, 0.012002753, 0.0067644613, 0.037187874, -0.034388788, 0.01474186, -0.007930747, -0.002427542, -0.041693073, 0.004091999, 0.011936109, -0.040333517, -0.012649209, -0.02660466, -0.028124163, -0.0016244703, -0.0013753849, -0.013635554, 0.0041786376, -0.0033639031, 0.005808106, 0.0038820675, -0.01934036, -0.016221378, 0.007091021, -0.021606289, -0.015941469, -0.03305589, 0.016367996, -0.026751278, -0.00658452, -0.015261691, -0.01487515, -0.021473, -0.025058497, -0.0075108847, -0.0068977512, -0.012096056, 0.026524685, 0.011616212, -0.00704437, -0.0029890256, -0.030736646, 0.022072803, 0.019860191, -0.004965048, -0.044358872, -0.016807854, 0.0047151293, 0.003888732, 0.030709988, -0.015021769, -0.0142087005, -0.031936254, -0.003103988, -0.009010396, 6.372922E-4, 0.020646602, 8.0890296E-4, -0.0077508064, 0.044572134, -0.022059474, 0.0023808903, -0.0106698545, 0.024685284, -0.013468942, -0.006857764, -0.028763955, -0.02475193, 0.009137021, -1.6734128E-4, -0.041479807, 0.020353364, -0.023112465, 0.021699592, 0.0073109497, 0.002107646, 0.003952045, 0.03145641, 6.243798E-4, 7.8765984E-4, -0.01618139, -0.012475932, -0.010849796, 0.008670506, 0.0024641966, 0.009990077, -0.021512985, 0.0132356845, -0.007204318, -0.006924409, -0.037187874, -0.019553624, 0.0035421785, -6.447898E-4, 0.01322902, 0.048490856, -0.0072176466, -0.019673586, -0.035321817, -0.013642219, 0.043799054, -0.032629363, 0.023325728, 0.008903763, -0.0074442397, -0.026124816, -0.016128074, -0.16975799, 0.021566302, -0.0025541673, -0.027697636, 0.0164613, 0.011376291, 0.028550692, 0.0049850415, 0.017420987, -0.018340686, 0.023139123, -0.0019743564, -0.03278931, 0.0011404615, 0.0042219567, 0.02461864, 0.0033922272, 0.03556174, 0.02409881, -0.01296244, 0.037960958, 0.0012470934, -0.01567489, -8.930422E-4, -0.0015286682, 4.9020477E-5, 0.0068977512, -0.0020160093, 0.00809736, -0.0017627586, -0.058540914, -0.008983738, 0.018034121, 0.007304285, -0.016394654, 0.0071176793, -0.010436597, -0.030470066, -0.0014470282, -0.002604151, 0.038254194, 0.011942773, 0.022672608, -0.0017877504, 0.015155058, 1.8900088E-5, 0.021886198, -0.010749828, 0.015954798, -0.016781196, -0.014395307, -0.03305589, 0.019660257, -0.003602159, -0.014808505, 0.03145641, 0.0049583833, 0.0012854142, 0.005318266, -0.01895382, -0.039293855, -0.012455938, 0.011236336, -0.008210656, -0.0108164735, -0.013782173, -0.019766888, 0.008637184, -0.031749647, 0.007997393, -0.017021118, -0.001986019, 0.018980479, 0.025191786, 0.0071843243, -0.04318592, -0.018847188, 0.0014561919, -0.013082401, 0.0069310735, -0.02303249, 0.038947303, -0.012495926, 0.017820856, 0.014155385, -0.017994134, 0.0052049696, 0.007464233, -0.008357275, -0.014621899, 0.014288675, -0.011949438, -0.024911877, -0.006671158, 0.015195046, 0.0097701475, 6.381253E-4, 0.014835163, 0.0073775947, 0.008790467, -0.00704437, -0.0030606687, -0.007644174, 0.014435293, 0.03132312, 0.01658126, -0.009816799, 0.021473, 0.01764758, -0.0049850415, -0.0067844545, -0.0027424393, 0.013502264, 0.020046797, -0.019273715, 0.008297294, -0.017940817, -0.025724946, 0.009970083, 0.01434199, 0.044518817, -0.011422942, -0.0030739978, -0.013275672, 0.007764135, -0.023219096, -0.086585104, 0.0072642984, 0.01447528, 0.037694376, -0.030256802, 0.032496072, -0.0041219895, 0.02317911, -0.028017532, 0.025298418, 0.005011699, -0.03198957, 0.008257308, 0.0016419647, 0.014515268, -0.0102566555, -0.019460322, 0.0044318885, -0.013602232, 0.020899853, 0.010276649, -0.0033405775, 0.024791917, -0.0055248654, -0.027884241, 0.017540948, -0.026631316, 0.03740114, 0.005114999, 0.02395219, 0.0074842265, -0.022872543, 0.013508929, -0.027431056, -0.040386833, -0.022685938, -0.0071443375, -0.03145641, 0.0023142456, -0.05662154, 0.0033372452, 6.6311716E-4, -0.014142056, -0.027591005, -0.02395219, 8.147344E-4, -0.023512334, 0.02988359, -0.010983085, -0.030230144, -0.019793546, -0.016794525, -0.023365716, 9.559383E-5, 0.01710109, 0.014035424, 0.02948372, 0.0071510016, 8.530552E-4, -0.027564347, -0.0053949077, -0.005384911, -0.021419683, 0.016034773, 0.0018394003, 0.017487632, -0.009583542, -0.009710168, 0.0134422835, -0.011289652, -0.022539318, 0.009316962, -0.023445688, -0.014102069, -0.018194068, -0.002767431, -0.03214952, 0.0028823935, 0.020446667, -0.032336123, -0.0013054077, -0.026657974, 0.01895382, -0.0130290855, 0.023152452, 0.021099787, 0.0062712887, -2.1388859E-4, 0.007204318, -0.014915137, -0.01244261, 0.027324425, -6.7769573E-4, -0.018873846, -0.0057181357, 0.025205115, 0.011176356, 0.010956428, -0.008323953, -0.008937086, -0.0021359702, 0.022539318, -0.07480228, 0.040040277, -0.019526966, -0.008430584, -0.013942121, -0.0037154553, -0.0054582204, 0.007124344, 0.006781122, 0.013209026, -0.0050816764, 0.012522584, -0.004281937, -0.00803738, -0.010976422, 0.012482597, 0.0055948426, -0.005804774, 0.0048917383, 0.001119635, -0.016341338, 0.017167736, 0.015608245, -0.003522185, 0.0075508715, 0.009616865, -1.5890652E-4, 0.008643849, -0.00909037, -0.017394328, 0.032442756, -0.0151817165, -0.004458546, 0.013915463, -0.0070776925, -0.022672608, -0.014248688, -0.0022709263, 0.010229998, 0.0024941869, -0.0059680543, -0.026364738, -0.0018060778, -0.014555254, -0.027617661, 0.011016408, -0.016914485, 0.018367345, -0.0038853998, 0.018527294, 0.030203486, 0.019913508, 0.0015236699, -0.0044418853, 0.018047448, -0.0251518, 0.057687856, 0.007777464, 0.0019277048, -0.0133089945, 0.02393886, -0.0077707996, 0.02092651, -0.022366041, 0.0021026477, -0.0121293785, 0.0052849436, -0.0065678586, 0.0019676918, -0.022019487, -0.01698113, -0.0059880475, 0.008203992, 0.032202832, 0.018407332, 0.022579305, 0.0023725599, 0.009890108, -0.002594154, 0.021819552, 0.024818575, -0.011516245, -0.03313586, 0.019273715, 0.010356624, 0.01895382, 0.0030689994, 0.02093984, 0.0070110476, 0.0142087005, -0.02356565, 0.016941143, 0.01658126, 0.0058914125, -0.0028374083, 0.01842066, -0.012715854, -0.015075085, -0.008463907, 0.027431056, -0.016354667, -0.0031506394, -0.011356297, -0.014022095, -0.02015343, 0.0057181357, -0.005854758, -0.023059148, 0.025325077, 0.014861821, 0.022299396, 0.020873195, -0.018927163, 0.010896447, -0.046544824, 0.0021009818, -0.0034522077, -0.017460974, -0.023232425, 0.044438843, 0.017594263, -1.92229E-4, 0.023112465, -0.012415952, 0.05662154, 0.015754864, 0.011842805, -0.022272738, -0.002036003, 0.011669529, 9.122026E-4, -0.007530878, -0.011216343, 0.0032439423, -0.0027624327, 0.007864103, -0.004301931, 0.0397737, -0.022885872, 0.06973726, 0.0036088233, -0.013282336, 0.016887827, -0.03305589, 0.011589555, 0.027857583, 0.016541274, -0.011382955, 0.0011946105, -0.005251621, -0.007450904, 0.010709842, -0.030709988, -0.0033272486, -0.0077041546, 0.026004855, 0.0024142128, -0.008570539, -0.026151473, -0.001632801, -0.017074432, 0.024285415, 0.003170633, -0.018274043, -0.027324425, 0.018713899, -0.012415952, -0.0014278678, -0.027151147, 0.015541599, -0.023845559, 0.002130972, 6.572857E-4, 0.01138962, 0.00750422, 0.013475606, 0.004158644, 0.023125794, 5.439893E-4, -0.016941143, 0.0028307438, -0.021433013, -0.0047584483, 0.022166107, -0.008883771, 0.0027974213, -0.02644471, -0.01282915 ], + "id" : "047c5569-2b5d-4966-95f7-02a3c82793a1", + "metadata" : { + "source" : "movies.csv" + } + }, + "0c83a7c3-aea5-487f-8c28-5137818c442e" : { + "text" : "Hamilton-Shane Harbinson-Fatimah Hassan-Dexter Howe-Mellanie Hubert-David Ingram-Shane Clinton Jarvis-Sergio Kato-Kevin Kent-Martin Kessler-Melissa Lem-John MacDonald-Stephanie Manchulenko-Matthew Mease-Christopher Meneses-Valiant Michael-Sabine Mondestin-Justin Moses-Drew Moss-Afsheen Olyaie-Dan Petronijevic-Alisha Phillips-Tamina Pollack-Paris-Michael Prather-Dennisha Pratt-Asad Que-Mark Quigley-Darryl Quon-Hugh Scott-Attila Sebesy-Rick Silver-Connor Skific-Amos Stern-Goran Stjepanovic-Vivienne Taylor-Jasmine Ren��e Thomas-Alen Toric-Dallas Wade-Joe Warshaw-James Weicht-Taylor Whittaker-Robert L. Wilson-Ryan Groves-Tony Watt,anti hero-secret mission-villain-superhero-supervillain-dc extended universe (dceu),/xFw9RXKZDvevAGocgBK0zteto4U.jpg,/zC70x9wqPPtxU99HsoGsxQ8IhSw.jpg,209112-293660-271110-246655-284052-259316-297762-291805-118340-102899-127585-99861-135397-269149-283366-263115-49521-330459-283995-76338-127380\r\n967614,X-Men: Days of Future Past - Rogue Cut,Adventure-Action-Fantasy-Science Fiction,en,Anna Paquin the actress who played Rogue in the first three X-Men films shot scenes for the 2014 theatrically released movie (Days of Future Past) but they later ended up on the cutting room floor due to time constraints. This extended version contains the scenes involving the character Rogue along with a few other changes from the original film.,5.379,,7/14/15,220000000,746000000,142,Released,X-Men: Days of Future Past - Rogue Cut,9,1,Hugh Jackman-Anna Paquin-James McAvoy-Michael Fassbender-Jennifer Lawrence-Nicholas Hoult-Patrick Stewart-Ian McKellen-Halle Berry-Elliot Page-Peter Dinklage-Evan Peters-Josh Helman-Shawn Ashmore-Omar Sy-Daniel Cudmore-Fan Bingbing-Adan Canto-Booboo Stewart-Evan Jonigkeit-Famke Janssen-James Marsden-Kelsey Grammer-Lucas Till-Mark Camacho,superhero team-marvel comics,/oY9G3W7MS2V1LZrcSwYOFwHz5hp.jpg,/Av8Yna9Oy7QYzLk2cZ35ZsMZp27.jpg,\r\n411,\"The Chronicles of Narnia: The Lion, the Witch and the Wardrobe\",Adventure-Family-Fantasy,en,Siblings Lucy Edmund Susan and Peter step through a magical wardrobe and find the land of Narnia. There they discover a charming once peaceful kingdom that has been plunged into eternal winter by the evil White Witch Jadis. Aided by the wise and magnificent lion Aslan the children lead Narnia into a spectacular climactic battle to be free of the Witch's glacial powers forever.,363.431,Walt Disney Pictures-Walden Media-C.S. Lewis Company,12/7/05,180000000,745013115,143,Released,Evil Has Reigned For 100 Years...,7.", + "embedding" : [ 0.010089005, -0.009734884, -0.035439976, -0.024857977, -0.01873375, 0.04624417, 0.0072282553, -0.0026281408, -0.02003914, -0.031662673, 0.024969075, 0.033190258, 0.02212221, -1.1676588E-5, 0.005315302, 0.008401718, 0.018719861, -0.021747258, 0.001465093, -0.018747637, -0.006974815, -0.008762784, -0.003336385, 0.009144681, -0.0030430192, -2.97814E-5, 0.024510799, -0.025746753, -0.008978034, -0.007443506, 0.011547155, -0.012352609, -0.004676494, -0.028052019, -0.016456258, 0.010394523, 0.025732867, -0.027260453, 0.022816567, -9.3477796E-4, 0.020789046, 0.0087211225, -0.004478602, -0.0035585791, -0.008130919, 0.016234064, -0.0014512059, -0.029690702, -0.006443632, 0.031551577, 0.035245556, 0.038967308, -0.019969704, -0.012942812, 3.4674446E-4, -0.001805328, -0.007151876, -0.003544692, -0.0077629103, 0.010200103, 0.027496533, -0.001014629, -0.02780205, -0.025205156, -0.03182932, -0.016442372, -0.0064783497, -0.0032929876, -0.004982011, -0.003398877, 0.03630098, 0.014845351, 0.02110845, -0.01422043, 0.014734253, -0.024580235, -0.020386318, -0.0010970839, -0.0052701687, -0.0019511429, 0.02751042, -0.0033329132, -0.011123598, 0.007922612, 0.02217776, -0.004089762, 0.0018504611, 0.02455246, -0.02795481, 0.004676494, 0.019233687, 0.032329258, 0.008450324, 0.016567355, -0.0020587682, 0.020552965, -0.029690702, 0.026024496, -0.024246942, -0.013935743, 0.019761397, 0.0017046462, -0.007992048, -0.013220555, -0.00119169, -0.008769727, -0.015373061, -0.0064644627, 0.004940349, 0.008839163, -0.009234947, 0.010804193, 0.018067166, -0.051854573, 0.0113735655, -0.03227371, 0.005940223, -0.025316253, -0.011415227, -0.021775031, 0.02916299, 0.04293903, -7.860337E-5, -0.016386822, 0.05749275, 0.032829195, -0.0053534918, -0.010554225, -0.015331401, -0.004884801, 0.02988512, -0.013394144, 0.013046966, 0.010457015, -0.004190444, 0.05688172, -0.04013383, -0.0066311085, -0.024316378, -0.015150867, 0.019317009, 0.026996596, -0.021705596, 0.0016091721, -0.02692716, 0.004450828, -0.0017202692, -0.005238923, 0.017914409, 0.006221438, 0.023260957, 0.022094436, 0.018844847, 0.02048353, 0.027288226, -0.001982389, 0.006165889, -0.007832346, 0.0022132627, -0.015192529, -0.0017983844, -0.018331023, -0.009762658, -0.008971091, 0.007915668, 0.024149733, 0.02338594, -0.023635909, -0.0024771183, 0.019705849, -0.01149855, 0.027149355, -0.019525316, 0.016747888, 0.008012879, 0.009720997, 0.0025968947, -7.069421E-4, -0.038995083, -0.014387075, 0.0024528157, 0.008873881, 0.036217656, 0.038411822, -0.012220682, 0.008179524, 0.011026387, -0.0070164762, 0.011880446, -0.010769475, -7.360183E-4, 0.012283173, 0.025607882, -0.0033606873, -0.6390305, -0.009471028, -0.01346358, -0.007714305, 0.015386948, 0.0073462958, -9.1828697E-4, -0.014984222, -0.017261712, -0.01737281, -0.023566473, 0.020164125, 0.029524054, -0.03571772, -0.02852418, -0.012609521, -0.0062422687, -0.031162737, 0.0140260095, 0.005315302, -0.011081936, 0.012755336, -9.304382E-4, -0.018942056, 7.911329E-4, 0.0059020338, -0.009859868, -0.012269286, 0.0018643483, -0.002206319, -0.02673274, 0.014859238, 0.014831463, 0.007526829, 0.039939407, 0.0072699166, -0.008158693, 0.03230148, 0.03313471, 0.032718096, -0.029718475, 0.0153452875, 4.2919937E-4, 0.025441237, -0.023913652, 0.015997984, 0.0014407906, 0.007693474, 5.663349E-4, -0.015484159, -0.011706857, -0.00902664, -0.013831589, -0.017108954, -0.013213612, -3.7733957E-4, 0.027343774, -0.0011951618, 0.029940668, 0.012185964, -0.019566977, 0.031190513, -0.0041001774, 0.007186594, -0.0013765625, 0.027885374, -7.6509453E-4, -0.0041765566, -0.008318395, -9.495331E-4, 0.011915164, 0.019011492, -0.010325087, 0.010401466, 0.009366875, 0.013477467, 0.036800917, 0.007092856, 0.0016456258, 0.018983718, 0.0034856717, -0.011706857, -0.021844467, 0.019136475, 0.028551955, -4.396147E-4, -0.03396794, 0.0059298077, 0.018719861, -0.0037391118, 0.008575307, 0.008214242, 0.005731916, -3.3437624E-4, -0.0047250986, 0.0046452475, -0.008547533, 0.006124228, 0.017136728, -0.06299206, -0.007492111, -0.023622021, 0.019414218, -0.026635531, 0.029301861, -1.4310262E-4, -0.009450197, -0.015053658, 0.028968569, -0.03838405, -0.02669108, -0.009137737, -0.025663432, -0.0096098995, -0.02140008, -0.03169045, 0.017553343, 0.018261587, -0.0028277684, -0.022719357, -0.0044230535, 0.025413463, 0.0011396132, -0.020122463, 0.021136224, 0.022622148, -0.017692214, -0.019205911, -0.0048188367, 0.007992048, 0.0012628617, 0.0020188426, 0.0239692, -0.026288353, -0.0029735833, 0.006940097, 0.018886508, 0.0059888284, 0.0076865307, -0.0026003665, -0.016511807, -0.0045723403, -0.007971217, -0.011213864, -0.017317262, -0.020608513, -0.022594374, -0.008873881, 0.011213864, -0.0067803953, -0.015997984, 0.017525569, 0.0022011113, 0.012220682, 5.042767E-4, -0.004527207, -0.0133524835, -0.013046966, -0.0054819477, -0.0074504493, 0.007811515, 0.01838657, -0.011734632, -0.027843712, 0.008394775, 0.012894208, 0.009186341, 0.015067545, -0.0031732111, -0.017678326, 0.016914533, -0.029412959, -0.0021976396, 0.005360435, -0.01326916, 0.019928044, -0.008228129, 0.011463832, 0.0026524432, -8.163033E-4, -9.1828697E-4, -0.0017792896, -0.028468633, -0.018219925, 0.0053708507, 0.011908221, 0.0025222513, -0.01688676, -0.004565397, 0.003898814, -0.01601187, -0.020775158, 0.007769854, -0.0157619, -0.005172959, 0.020400206, 0.021802807, 0.01278311, 0.0011187826, 0.0076309824, 0.025260704, 0.01513698, 0.008422549, -0.007526829, 0.012165133, -0.03280142, 0.0041418388, -0.02217776, 0.006846359, -0.008415606, 0.015011996, -0.0064783497, -0.021094562, 0.0129150385, -0.0029058836, 0.02474688, -0.016831212, 0.004381392, -0.025302365, -8.1456744E-4, 0.011269412, -0.012609521, 0.010977782, 0.027093805, -0.018886508, -0.0033589515, 0.015706353, -0.0072699166, 0.007443506, -0.0047077397, -0.014900899, -0.003641902, 0.0030030936, -0.003996024, 0.004037685, -0.0051035234, 0.017803311, -0.013144176, 0.044327743, -0.020261334, -0.014664818, 0.0036523172, 0.018275473, 0.007603208, 0.0021872243, -0.02741321, 0.031468254, 0.019205911, -0.004266823, 0.03727308, -0.023635909, 0.034801167, -9.434574E-4, 0.011116654, 0.0063672527, -0.027663179, 0.0020570322, 0.0082767345, 0.027232677, 0.010144554, 0.0100473445, -0.028635278, 0.00338499, -0.0026472358, 0.007964274, 0.0022323574, -0.01912259, 0.020955691, -0.011172202, -0.03566217, -0.008519759, -0.015011996, 0.008450324, 0.004676494, -9.425895E-4, -0.0021507705, 0.0019355199, 0.0029544886, 0.014956447, 0.041550316, -7.2733883E-4, -0.04013383, 0.008582251, 0.030746123, -0.023816442, -0.027288226, -0.0020153709, -0.0046799653, -0.013984348, -0.00277222, 0.009519633, 0.033051386, -0.015470272, 0.003947419, -0.0054229274, 0.0071588196, 0.035051137, -0.027329888, 0.017983845, 0.007637926, -0.018622652, 0.003898814, -0.008769727, 0.0037148094, 0.031884868, -0.013421919, 8.1847317E-4, 0.00803371, -0.0042321053, -0.0111652585, -0.008964147, -0.009936247, -0.027482646, 0.01960864, -6.2231737E-4, -0.017150614, -0.011811011, 0.010325087, 1.5324673E-5, -0.022066662, -0.011519381, -0.026746627, -0.02756597, -0.0026923688, 0.096265644, 0.05224341, 0.0064818216, 0.009679335, 0.005301415, 0.016831212, -6.657147E-4, -0.016317386, 0.0077906842, -0.020511303, 0.019192025, -0.0062769866, 0.002253188, 0.010811137, 0.013991292, -0.0062526837, -0.0064228014, -0.017053405, -0.010283425, -0.028413083, -0.035912137, -0.011443001, 0.025385689, 0.023469264, 0.0024094183, -0.016317386, 0.01799773, 0.0046278886, 0.0076448694, -0.007492111, 0.004127952, 0.00112833, 0.0142482035, 0.011561043, 0.011748519, -0.008373944, 0.033829067, 0.01620629, 0.022094436, -0.0046452475, 0.0015501517, 0.01149855, -0.0039370037, -0.0038883986, 0.019789172, -0.016428484, -0.010457015, 0.021816693, 0.018692087, -0.021247322, 0.018039392, -0.0049195187, -0.022705471, -0.006572088, -0.006092982, 0.023663683, -0.007908725, -0.0093807615, -0.017636666, 0.022455502, 0.012547029, -0.026607756, 0.024913525, 3.7386778E-4, 0.00422169, -0.026774403, -0.009415479, -0.007429619, -0.022205533, 0.009255777, -0.012630352, -0.01326916, 0.008540589, 0.0109291775, 0.022247195, -0.0014303752, 0.023163745, -0.012894208, 0.018719861, 0.01999748, -0.028329762, -0.013088628, 0.02910744, -0.015498046, -0.003365895, 0.01523419, -0.016053531, 0.006013131, -0.015900772, 0.008242017, 0.019233687, -0.003367631, -0.013220555, -0.0046834373, 0.023330392, 0.011387453, 0.002933658, 0.011255525, 0.015025883, 0.0049056313, 0.005620819, -0.022483276, -0.01902538, -2.1221282E-4, -0.013789928, -0.014484284, -0.0013001832, 0.0033155542, -0.009103019, -0.047827303, -0.015275852, -0.018372683, -0.0029076196, -0.016345162, 0.020414094, 0.015248077, 0.007978161, 0.01712284, -0.009352988, 0.0040203263, -0.01624795, -0.011866559, 0.00943631, 0.023816442, -0.030412832, 0.04410555, -0.020261334, -0.025413463, 0.0019320481, 0.010686153, 0.0029839987, 0.022358293, -0.01717839, 0.0052736406, -0.008422549, -0.029024119, 1.8579472E-6, -0.0048570265, 0.010318143, 0.01785886, -0.019789172, 0.006249212, 0.003303403, -0.0016629847, -0.0010337238, -0.030329509, -0.004673022, 0.0018331022, 0.012935869, 0.013637169, 9.086311E-5, 0.00624574, -0.032856967, -0.0067074876, -0.018664313, -0.033106938, -0.022649921, 0.0050826925, 0.025482899, 0.027260453, 0.030996092, -0.017692214, 0.01601187, 0.013394144, 0.0015006788, 0.020205786, -0.009644617, 9.070037E-4, -0.037967436, 0.01414405, 0.016650679, 0.035412204, 0.0052944715, -0.0133733135, 0.0075962646, 0.01984472, 0.012220682, 0.020066915, 0.007950386, -0.037995208, -0.014525946, 0.01601187, -0.027774276, -0.015470272, -0.02819089, -0.013289991, 0.028551955, -0.00496118, -0.0017966485, -0.027204903, 0.018206038, -0.002980527, 0.0155674815, -0.03216261, 0.036356527, -0.022830455, -0.007700418, -0.020900143, -0.011324961, 6.9826265E-4, -0.018192152, 0.01756723, -0.0015267172, -0.019400332, -0.0063394783, 0.016567355, -0.019136475, -0.027579855, 0.023802554, -0.005110467, -0.0153452875, -0.027204903, -3.803774E-4, -0.022705471, -0.0065130675, -0.0095960125, -0.03007954, 0.008297564, -0.034523424, -0.029329635, 0.024774654, 0.0021316756, 0.046882976, 0.015303626, 0.037495274, 0.03344023, 0.012151246, -0.01760889, 0.0053222454, -0.016900647, -0.004412638, 0.038634017, 0.017400583, -0.03435678, 8.5796474E-4, -0.0039022858, -0.011262469, -0.04216135, -0.049854826, 0.02377478, 0.015206416, 0.033606872, -0.010651435, 0.002386852, -0.018997604, 0.014789802, -0.01601187, 0.0059367516, -0.009672391, -0.018886508, -0.019289235, 0.008339226, -0.014157937, 0.016428484, -4.4438842E-4, -0.016234064, 0.003704394, -0.020122463, 0.01060283, -0.004055044, -0.038995083, 0.028690826, -0.023330392, 0.020858482, 0.01756723, 0.0210529, -0.0052111484, -6.3099683E-4, 0.016275726, 0.026427224, -0.0087211225, 0.03216261, -0.006426273, -0.003383254, 0.0065512573, 0.0074226754, -0.023247069, -0.03596769, -0.022219421, 0.0023486621, 0.022136098, -0.0029353937, 0.0044542993, -0.0056659523, -0.01317195, -0.010297312, 0.0129150385, -0.012790054, 0.01503977, -0.045744233, 5.507118E-4, -0.011935995, 0.0057041417, -0.0065130675, -0.0025170438, -0.00892943, -0.007249086, 0.020455753, -0.016720114, -0.010123723, -0.013685774, -0.011123598, -0.031940416, -0.02066406, -0.016525693, -0.014637044, 0.01244982, -0.010852798, -0.004166141, 0.0044542993, -0.0038085475, -0.0014954711, 0.0030204526, -0.01244982, 0.004548038, 1.5915962E-4, -0.008457267, 0.0052771126, -0.0033797822, 0.010200103, -0.011991544, -0.0050861645, -0.005381266, -0.005450702, 0.03410681, -0.01615074, -7.24735E-5, 0.0046140016, -0.017775537, -0.0044751302, 0.015831336, 0.018469894, 0.011706857, -0.004148782, -0.030662801, 0.003575938, -0.0059923, 0.017303374, -0.0023642853, 0.0054715322, 0.03430123, 5.038427E-4, 0.031134963, 0.020983465, -0.033523552, -0.022761019, 0.0067213746, -0.0076865307, -0.033190258, -0.005749275, -0.008533646, 0.008728066, 0.010665322, -0.0037009222, -0.016650679, -0.003992552, -0.023344278, -0.027607631, -8.9832424E-4, 0.03435678, 0.030829446, 0.009283552, 0.011956826, 0.018567104, -0.0028729017, -8.4798335E-4, -0.021177886, -0.009450197, 0.016039643, 0.0059159207, 0.03377352, 0.025760641, -0.037773017, -0.011199976, 0.015997984, 0.011477719, 0.0018869148, 0.007929556, -0.022219421, 0.00309336, -0.012102641, 0.010665322, -3.432727E-4, -0.0037981323, 0.020594625, -0.04410555, 0.009089132, 0.0016725322, -0.0014919994, 0.0031923058, 0.014414849, 0.02120566, -0.004992426, 0.002867694, 0.00875584, -0.020552965, 0.006638052, -0.038467374, 0.027260453, 0.01373438, -0.003721753, 0.034190133, 0.033106938, -0.015275852, 0.00692621, 1.5853579E-5, -0.009276608, -0.025830077, 0.0032825721, -0.017595004, 0.028274212, -0.039744988, 0.0069991173, -0.021761145, 0.010804193, -0.007221312, 0.009408536, -0.01935867, 0.025705092, -0.0012889, -0.049743727, 0.006488765, -0.011234694, 0.009602956, 1.13483955E-4, -0.0093877055, -0.024330266, -0.008978034, -0.01562303, 0.0063221194, -0.020011365, -0.0249413, -0.006398499, -0.014678705, -0.0014963391, 0.02289989, 0.1993082, -0.0074990545, -0.0046487194, 0.038995083, 0.003610656, 0.0111652585, 0.02751042, 0.0060790945, -0.00788095, 0.007693474, 0.002612518, 0.0020084274, 0.014102388, 0.0049368776, 0.015164754, 0.012790054, -0.03216261, -0.019969704, -0.011005557, -0.026843838, 0.012609521, 0.010429241, 0.007749023, -0.02756597, 0.009471028, 0.008186468, -0.003641902, -0.0010667058, -0.0054020965, -0.0023816442, -0.0126928445, -0.01969196, 0.0057076137, 0.019775284, -0.013859363, -0.0028468634, 0.0060825665, 0.016525693, 0.0064054425, 0.0072560296, -0.001175199, -0.0042321053, -0.004530679, 0.0069887023, -0.002496213, 0.024149733, -0.015970208, -0.0036037122, -0.022025, 0.0033155542, -0.028121455, -8.06322E-4, 0.0118248975, 0.034773394, -0.01089446, -0.015095319, 0.011561043, 0.018747637, -0.007582377, -5.8890146E-4, -0.014053783, 0.034384552, -0.028885247, 0.019400332, 0.0023469264, 0.030329509, -0.042633515, 0.0016638527, 0.021039015, -0.016386822, -0.032912515, -0.03216261, 5.9844885E-4, 1.8378759E-4, -0.01649792, -0.018414345, 0.0098251505, 0.008991922, 0.00844338, 0.012241513, -0.009776545, -0.014928673, 0.0068914923, 0.00393006, -0.024566347, -0.025982834, 0.013484411, -0.0029874705, -0.0031749469, -0.00951269, -0.008457267, -0.019803058, -0.0012055772, 0.007242142, -0.011526325, 0.002912827, 0.027940921, 0.017650552, -0.012074866, -0.0051139384, -0.03274587, 0.019678075, -0.0038918704, -0.0060443766, -0.035495523, -0.004016855, 0.0016490977, -0.0019112173, 0.026510546, -0.0034544256, -0.0019424635, -0.0163035, -0.012428989, -0.015692465, 0.016678452, 0.033356905, 7.7854766E-4, -0.020802932, 0.021552838, -0.007943443, -0.0091724545, -0.0036488455, 0.006395027, 0.0031506445, -0.008859994, -0.028163116, -0.025496785, -0.002912827, 0.0012524462, -0.024052523, 0.01863654, -0.004433469, 0.014539833, -0.0110125, -0.008991922, -0.0019598224, 0.0077559664, -0.02562177, 0.004395279, 0.015900772, -0.0014459982, -0.00834617, 0.011269412, 0.01317195, 0.011637421, -0.029190764, 0.0047285706, -0.0068914923, -1.7358923E-4, -0.03696756, -0.03130161, -0.0037634145, -3.2656474E-4, -0.0019719736, 0.033495776, -0.008610026, -0.012123471, -0.021775031, -0.005336133, 0.03405126, -0.047521785, 0.02416362, 0.0052909995, -0.009672391, -0.022455502, -0.009450197, -0.17964402, 0.011554099, 0.009741827, -0.03513446, 0.014442624, 0.0155674815, 0.048299465, -6.4835575E-4, -0.00904747, -0.023858102, 0.023885878, 0.0044195815, -0.046410814, -0.018511554, 0.008491985, 0.015220303, -0.016178515, 0.052771125, 0.033995714, -0.0066449954, 0.04521652, -0.0013027871, -0.00499937, -0.002595159, 0.00999874, 0.01305391, 0.017692214, 0.009491859, -0.004301541, -0.0044230535, -0.022427728, -0.019164251, 0.0075893207, 0.01678955, -0.0014303752, -0.001353128, -0.01737281, -6.908851E-4, -0.0116027035, -7.2516897E-4, 0.034023486, 0.016484033, 0.010616717, 0.0029770553, -1.950709E-4, 0.019872494, 0.037634145, -0.0019060096, 0.0039057576, -0.013776041, -0.001773214, -0.023649795, 0.04521652, -0.012435932, 0.016456258, 0.014539833, 0.0032443826, 0.023066536, -0.002369493, 0.0035238613, -0.012324835, -0.0225666, -0.00883222, -0.009040527, -0.005238923, -0.0069643995, -0.004013383, 0.014498172, -0.039967183, 0.01853933, -0.032690324, 0.024788542, -9.2523056E-4, 0.0031315496, 0.012845603, -0.005752747, -0.025871739, 0.00992236, -0.004565397, -0.010200103, -0.017470019, 0.034384552, -0.010401466, 0.0076657003, 8.984598E-8, -0.007485167, 0.0049195187, 0.008089257, 0.0067074876, -0.0034839357, -0.0020188426, -0.025024623, -0.008471154, 1.5392481E-5, -0.0010510827, 0.006697072, -0.016345162, -0.009109963, 0.012060979, -0.023122085, 0.0053048865, -0.01717839, -0.0011309338, 0.009602956, 0.008589195, 0.01610908, 0.014928673, 0.021122336, 0.026510546, -0.003334649, 0.004791063, -0.020705722, 0.030385058, 0.019219799, -0.00786012, 0.00402727, -0.018942056, -0.03085722, 0.0036939788, 0.015178641, 0.05468755, 0.010304256, 0.0028312402, -0.009297439, -0.007617095, -0.018692087, -0.097543254, -0.01108888, 0.0036939788, 0.029079666, -0.01353996, 0.042133577, -0.011429114, 0.00815175, -0.013533016, 0.039189503, 0.0062735146, -0.030662801, 0.018039392, 0.009672391, -4.3570896E-4, 0.005815239, -0.012165133, -0.012970587, -0.0034839357, 0.038328502, -0.004127952, -0.007033835, 8.796634E-4, -0.035745494, -0.016872872, -0.0019303121, -0.04021715, 0.021358417, 0.020108575, 0.006200607, 0.01799773, -0.010290369, 0.011311074, -0.035634395, -0.021802807, -0.01926146, -0.017164502, -0.014956447, -0.002980527, -0.057659395, 0.010186216, -7.763778E-4, -0.008693349, -0.009109963, 0.00412448, 0.0021663934, -0.029940668, 0.029635152, 0.0032426468, -0.01640071, 0.001754987, -0.009970965, -0.02464967, -0.012428989, 0.018692087, -0.0011213864, 0.014581495, 0.01297753, -0.015886886, -0.034523424, -0.006408914, -0.0038397936, -0.01161659, 0.005013257, 0.0042911256, 0.0069539845, -0.004898688, 0.0054576453, 0.025371801, -0.034467876, -0.0068706614, 0.023205407, -0.027038258, -0.012810885, -0.011116654, 0.005825654, -0.026746627, -0.008353113, 0.03046838, -0.019664187, 3.9361356E-4, -0.021455629, 0.0054715322, -0.012963643, 0.018692087, 0.019219799, 0.02260826, 0.005860372, -0.007110215, -0.03793966, -0.003850209, 0.026621643, 0.011095823, -0.0067456774, 0.00844338, 0.010804193, 0.019733623, -0.0022045833, -0.0025864795, 0.021497289, -0.010630604, -0.0066866567, -0.077268034, 0.034273457, -0.017247826, -0.01130413, -0.028551955, -0.008825276, -0.0023990031, -0.017108954, -0.005186846, 0.034717847, -0.00824896, 0.01863654, -0.009186341, 8.8790886E-4, -0.005138241, -0.0071796505, -0.0015813978, -0.017803311, 0.021497289, -0.0040828185, -0.0011309338, 0.022469388, 0.023441488, -0.0022809624, 0.004301541, 0.030829446, -0.006280458, 0.009679335, -6.561673E-4, -0.010901404, 0.04002273, -0.019928044, 0.011970713, 0.0042529358, -0.014116276, -0.019344782, -0.012831716, 0.019650301, 0.006377668, 0.02227497, -0.011047218, -0.020094689, 0.00319057, 0.004575812, -0.0095960125, 0.005190318, -0.025607882, 0.017817197, 0.0055374964, 0.01140134, 0.024441363, 0.0072907475, -0.0015544915, -0.019761397, 0.00490216, -0.016317386, 0.033523552, -0.009547408, 0.0055930447, -0.028232552, 0.018219925, -0.005697198, 0.024885751, -0.023788666, -3.1788528E-4, -0.0058707874, 0.011720744, -0.019011492, 0.002206319, -0.031079415, -0.022108324, 0.0039508906, 0.021566724, 0.047382914, 0.01385242, 0.0089502605, -0.009686279, -0.009103019, -0.0069157947, 0.0078392895, 0.010644491, -0.0115957605, -0.0172756, 0.01542861, -0.0056833113, 0.019678075, 4.929934E-4, -7.056402E-4, -0.0010970839, 0.013185837, 0.003480464, 0.011567986, 0.0060617356, 0.010463959, -0.004752873, 0.011991544, 0.004659135, -0.018497668, 6.44016E-4, 0.03007954, -0.025913399, 0.0023764365, -0.007853176, -0.020066915, -0.03182932, 0.0031818906, -0.016220177, -0.024691332, 0.0043848637, 0.0153452875, 0.008859994, 0.013713549, 0.011311074, 0.009797376, -0.031995967, 0.03130161, -0.0107139265, -3.831982E-4, -0.012880321, 0.045522038, 0.013630226, 0.013664944, 0.03324581, -0.010033458, 0.030662801, -0.0020431452, 0.025830077, -0.034079038, 0.012984474, -8.436436E-4, 0.0031784186, -0.025968948, -0.020219672, 0.01678955, -0.010179272, 0.010165385, 0.004565397, 0.024302492, -0.014060727, 0.061881088, 0.025663432, -0.01542861, 0.0056902547, 0.003884927, 0.008214242, 0.017150614, 0.0135816205, -0.009082188, -0.005898562, 0.014373188, -0.010609773, 0.014512059, -0.021719484, -0.01848378, 0.009818207, 0.012095697, 0.008408662, 0.005301415, -0.018275473, -0.01606742, -0.008748897, 0.042966805, 0.0016933628, -0.022399953, -1.5330098E-4, 0.028315874, -0.014400962, -0.006443632, -0.033190258, -7.368862E-4, -0.016484033, -0.0063047605, -0.0075962646, 0.028232552, -0.0028225607, -0.0049160467, 0.0015006788, 0.01984472, 0.012616465, -0.01278311, -0.016706226, -0.013880194, -0.017831085, 0.013526073, -0.014317639, -0.008082314, -0.007894838, -0.026746627 ], + "id" : "0c83a7c3-aea5-487f-8c28-5137818c442e", + "metadata" : { + "source" : "movies.csv" + } + }, + "ac119fd9-8333-4687-8bfb-8f8c36932b9c" : { + "text" : ",8355-425-57800-953-10527-810-809-9502-278154-920-808-80321-10192-12-863-49444-9806-46195-2062-1593-13053\r\n141052,Justice League,Action-Adventure-Science Fiction,en,Fuelled by his restored faith in humanity and inspired by Superman's selfless act Bruce Wayne and Diana Prince assemble a team of metahumans consisting of Barry Allen Arthur Curry and Victor Stone to face the catastrophic threat of Steppenwolf and the Parademons who are on the hunt for three Mother Boxes on Earth.,71.324,RatPac Entertainment-Cruel & Unusual Films-Atlas Entertainment-Warner Bros. Pictures-DC Films,11/15/17,300000000,657926987,120,Released,You can't save the world alone,6.101,12104,Ben Affleck-Henry Cavill-Amy Adams-Gal Gadot-Ezra Miller-Jason Momoa-Ray Fisher-Jeremy Irons-Diane Lane-Connie Nielsen-J.K. Simmons-Ciar��n Hinds-Amber Heard-Joe Morton-Lisa Loven Kongsli-Ingvar E. Sigur��sson-David Thewlis-Sergi Constance-Julian Lewis Jones-Salome R. Gunnarsdottir-�g�_sta Eva Erlendsd�_ttir-Bj�_rt Sigfinnsd�_ttir-Michael McElhatton-John Dagleish-Chris Courtenay-Heather Imbeah-Carla Turner-Lara Decaro-Serene Angus-Anna Burgess-Mia Burgess-Alison Chang-Constance Bole-Shahla Ayamah-Richard Clifford-Will Austin-Kobna Holdbrook-Smith-Rebecca C. Perfect-Francis Magee-V��d�_s V�_filsd�_ttir-Sn�_fr�_��ur R��n A��alsteins-Grace Cookey-Gam-Matthew Bates-Charlotte Comer-Doutzen Kroes-Brooke Ence-Hari James-Ann Ogbomo-Samantha Win-Marc McClure-Paul Foulds-Anthony Wise-Martin Troakes-Gianpiero Cognoli-J��r��me Pradon-Orion Lee-Oliver Gatz-Rachel Blenkiron-Lynne Anne Rodgers-Oliver Powell-Aurore Lauzeral-Frazer Hammill-JK. Glynn-Patrick Connolly-Ninaz Khodaiji-Rosa Escoda-Joe Reisig-Vaughn Johseph-Tara Ward-Jack Yang-Bruce Johnson-Peter Henderson-Yoni Roodner-Molly Shenker-Tomi May-Kasha Bajor-Dan Mersh-Nathan Wiley-Caitlin Burles-Melanie Gray-Katia Elizarova-Gemma Refoufi-Leila Reid-Suan-Li Ong-Tina Balthazar-Penny Lane-Stephanie Haymes-Roven-Kelly Burke-Keith Simpson-Gary A. Hecker-Holt McCallany-Paulina Boneva-Billy Crudup-Eleanor Matsuura-Jesse Eisenberg-Joe Manganiello-Daniel Stisen-Robin Wright-Bruce Lester-Johnson-Xenia Leblanc-Ayman Khechini,superhero-based on comic-super power-superhero team-aftercreditsstinger-duringcreditsstinger-dc extended universe (dceu),/eifGNCSDuxJeS1loAXil5bIGgvC.jpg,/2nyaeISu2xIxIgZYNpX4UayY8PN.", + "embedding" : [ -0.0030552442, -0.042031527, -0.02297166, -0.04783177, -0.026478782, 0.021717189, 0.0064409673, -0.014945742, -0.028110944, -0.03577266, 0.028461656, 0.031240378, 0.013104502, -0.010015535, 0.001338777, 0.007574038, 0.00596211, -0.011141862, 0.007965217, -0.023551684, -0.0016372197, -0.008444075, -0.0055844197, 7.187074E-4, 0.0035104956, 0.018183086, 0.012962868, -0.01688815, 0.010669749, -0.021852078, 0.017238861, -0.0054191803, -0.011391407, -0.014109428, -0.03561079, 0.012214232, 0.016389059, -0.0069468026, 0.033695363, -0.007918006, -0.0013269741, 0.012713322, 1.2034661E-4, -0.01446014, -0.02575038, 0.010251592, 0.016443014, -0.023443772, 3.2905627E-5, 0.033398606, 0.01535041, 0.023295393, -0.024887089, -0.025467113, -0.0050482345, -0.014015005, -0.015229009, 0.009975068, 0.01688815, -0.013893605, 0.016011368, -0.012315399, -0.03275114, -0.009631101, -0.004404138, -0.019505002, -0.0016743143, -0.001455119, -0.012052365, 0.011998409, 0.024806155, 0.028623523, 0.022985147, -0.0073649595, 0.0066837682, -0.031564113, -0.019505002, -0.010150425, 0.008788042, -0.0053618522, 0.0058508264, -0.015404366, -0.007958473, -0.0063364278, 0.023565173, 0.011364429, -0.0075403154, 0.0035914294, -0.023012126, 0.019505002, -0.00406017, 0.016213702, 0.017697485, 0.0038207413, 0.011856776, 0.024887089, -0.02436102, 0.018398909, -0.019073356, -0.0382816, 8.3547103E-4, -0.002419578, -0.0077561387, -0.015485299, -1.3836699E-4, -0.0080394065, -0.007702183, 0.0069468026, 0.014365718, -0.0032660088, -0.0076482273, 0.013880116, 0.020058049, -0.030377086, 0.0051190513, -0.013853138, -0.0034801457, -0.03399212, -0.017238861, -0.013158457, 0.017063504, 0.038146712, -0.001137286, -0.0073379814, 0.03159109, 0.015404366, -0.0032811838, -0.0044715824, -0.002635401, -0.006019438, 0.030943621, -0.013057291, 0.018844044, -0.0021599159, -0.029405883, 0.051284935, -0.02525129, 0.008012428, -0.007223326, -0.0016439642, 0.03059291, 0.022540012, -0.0020503183, -0.02345726, -0.044081844, 0.011465596, 0.011027206, -0.0057226815, 0.01242331, 0.0028309906, 0.026748562, 0.022135345, 0.00970529, 0.004940323, 0.011371174, 0.0067984243, -0.009158988, -1.3784008E-4, 0.020004094, -0.020530162, 0.009051076, -0.0063870116, 0.0047143833, -0.035691727, 0.0021076463, 0.025021978, 0.01787284, -0.008551986, -0.01471643, -0.0034902624, -0.01046067, 0.022917703, -0.012821234, 0.014986209, -0.01174212, 0.0071491366, 0.0075403154, -0.01382616, -0.025440134, -0.014257806, 0.007418915, 7.861521E-4, 0.023727039, 0.036366172, -0.006940058, 0.0058103595, 0.029783573, -0.039657474, 0.021339498, -0.012477267, 1.2825028E-4, 0.029405883, -0.0012283362, -0.019086845, -0.63149804, -0.012416566, -0.017225372, -0.017549107, 0.019882692, 0.014257806, 0.009064565, -0.0021666605, -0.036096394, -0.021339498, -0.034315854, 0.014028494, 0.0044715824, -0.011168839, -0.014015005, -0.0065050395, -0.007385193, -0.019896181, 0.02854259, 0.0035374737, -0.022809792, 0.016416036, -0.0032289142, 0.0019811876, -0.0072098365, -0.008558731, 0.013434981, -0.028515613, 0.004205176, -0.011829797, -0.023173993, 0.013596849, 0.026060626, -0.012996591, 0.036069416, 0.012962868, -0.015539255, 0.039279785, 0.031564113, 0.023308882, -0.041788727, -0.004178198, 0.013637315, 0.016982572, -0.020503184, 0.012989846, 0.026114581, -0.0067073735, 0.0070412247, -0.013839649, -0.011330707, -0.0010049258, -7.7350624E-4, -0.0053213853, 0.010561838, 0.016024856, -2.0570628E-4, -0.023254927, 0.005702448, 0.009948091, -0.005806987, 0.019774782, 0.0067410963, 0.0077561387, -0.0011929278, 0.03655502, 0.005692331, -0.0050617233, 0.002562898, -0.008430585, 0.020219916, 0.01002228, -0.008525008, 0.002161602, 0.016510459, -3.3695997E-5, 0.03350652, -0.016146258, -0.0034734013, 0.026316915, 0.005139285, -0.0091792215, -0.006795052, 6.6011486E-4, 0.023632618, -0.00697378, -0.02665414, -0.0027719764, 0.01376546, 0.0037769023, 0.017454684, 0.010346014, 0.014648985, -0.0029001213, -0.011384662, 0.010750682, -0.0027062178, 0.01293589, 0.014500607, -0.053227343, -0.020314338, -0.019572448, 0.031402245, -0.013016824, 0.017778419, 0.0019778153, -0.002406089, -0.019828737, 0.02727463, -0.01180282, -0.007304259, 0.0056248866, -0.02484662, 0.01122954, -0.0051628905, -0.022890726, 0.016712792, 0.015107609, 0.0029136103, -0.0048459005, 0.0040702866, 0.016901638, 0.0055945367, -0.012544711, 0.016389059, 0.030754775, 0.0058541987, -0.0016397488, -0.0041849427, 0.0032204837, 0.0055102305, 0.010103214, 0.0048796227, -0.019208245, 0.012018642, 0.003571196, 0.015444833, -0.010420203, 0.008585708, 0.009138755, -0.029945439, 3.9539445E-4, -0.019464536, -0.023376327, -0.00630945, -0.017899819, -0.011748863, -2.6714417E-5, -0.011930965, 1.4163383E-4, -0.028191878, 0.011836542, -0.0011861834, 0.013590104, -0.01180282, -0.012774023, -0.0152020315, -0.007992195, 0.010602304, -0.011027206, -0.0018699039, 0.0059385044, -0.0124368, -0.0345047, 0.026573205, 0.008774553, -0.008471052, 0.0051359124, 0.017616551, -0.026397849, 0.011202562, -0.017023038, -0.013306836, 0.016726281, -0.016699303, 0.042220373, -0.03056593, 0.01637557, -0.015148076, -0.014635496, 0.010474159, -0.0077359052, -0.020314338, 0.002175091, 0.035826616, 0.016011368, 0.025993181, -0.0030839082, -0.014824341, 0.009792968, -0.02434753, -0.031348288, -7.0606155E-4, -0.013043801, 0.002288061, 0.025062444, 0.0076684603, 0.011883753, -0.0065724845, 0.018547287, 0.029945439, 0.024698243, 0.019275691, -0.011047439, 0.0050043953, -0.027706277, -1.806253E-4, -0.0382816, 0.010824871, -0.0186552, 0.03107851, -0.0025561536, -0.022243256, 0.009111777, 0.016159747, 0.008336163, -0.018817067, 0.019437557, -0.007263792, -0.009948091, 0.008605941, -0.0058440818, 0.017845863, 0.0012763906, -0.026910428, -0.0016153002, 0.016955594, 0.0029338438, 0.006019438, -0.016294636, 0.0041984315, 0.010440437, 5.146872E-4, 0.010979994, -0.008855487, -0.010346014, 0.037849955, -0.015566233, 0.03650106, 0.0058339653, -0.004289482, 0.0012586864, 0.0408445, -0.002016596, -0.002375739, -0.01396105, 0.018749623, -2.0781394E-4, -0.0342619, 0.042975754, -0.018668689, 0.026182026, -0.02117763, 0.0014483746, 0.01852031, -0.014541074, 0.005125796, 0.012490755, 0.028434679, -3.2289143E-4, 0.02043574, -0.014028494, 0.017535618, 0.01646999, 0.015269476, -0.01344847, -0.026209004, 0.009894135, -0.00798545, -0.029972417, -0.013596849, 0.003928653, 0.010157169, -0.0031884473, 0.004323204, -0.026869962, -0.010346014, 0.01148583, 0.0025999926, 0.028839346, 0.0072907703, -0.03186087, -6.380899E-5, 0.032535315, 2.0749778E-4, -0.01648348, -0.015148076, -0.011425129, -0.0061914218, -0.015930435, -0.002780407, 0.029918462, -0.015431344, -1.9137429E-4, -0.00345654, 0.0014812539, 0.0031193167, -0.015282965, -0.006090255, 0.025682935, -5.353422E-4, 0.021595787, 0.010440437, 0.011276751, 0.032265536, -0.015134587, 0.014905275, -0.016227191, 0.016227191, -0.03008033, 0.0048290393, 0.009948091, -0.030835709, 0.02778721, 0.0122681875, -0.011506063, 0.0023504472, -0.01109465, 0.0019103707, -0.008255229, -0.03199576, -0.0410873, -0.011769097, 0.0016979199, 0.07564595, 0.026950896, 0.00818104, 0.003672363, -0.026708094, 0.0043097152, -0.018736133, -0.010285314, -4.9740454E-4, -0.0044007655, 0.029082147, 0.0045457715, 0.01649697, 0.0035104956, 0.020975297, -0.007884284, 0.003429562, 0.007621249, 0.014392695, -0.022310702, -0.027301608, -0.0051527736, 0.025548046, 0.03655502, 0.013610337, -0.01636208, 0.012996591, 0.013812671, -0.0045019328, 0.0060531604, 0.0069198245, 0.0022088133, 0.0042827376, 0.022094877, -7.098553E-4, -2.0243943E-4, 0.010663005, 0.005051607, 0.04416278, 0.014648985, 0.0036757353, 0.020759473, 0.0012822921, -0.0017400729, 0.02448242, -0.014514096, 0.0014146522, 0.009030843, 0.038227648, -0.035448924, 0.029972417, -0.008882465, -0.016254168, -0.012659367, 0.010885572, 0.0065859733, 0.013839649, -0.001540268, -0.03207669, 2.3985015E-4, 0.0033654897, -0.011020461, 0.020098515, -0.017319795, -0.0049436954, -0.024887089, -0.0027399403, -0.008612686, -0.007911261, 0.02409124, 0.010346014, -0.029999396, 0.0041680816, 0.0055338363, 0.020138983, -0.016645348, 0.039117917, -0.009988558, 5.404005E-4, -0.0017940286, -0.04273295, -0.03817369, 0.0042220373, -0.010096469, -0.009307366, 0.025386179, -0.016969083, 0.026074115, -0.01814262, 0.018183086, -0.005344991, -0.0055506974, 0.00293553, -0.005692331, 0.02448242, 0.016294636, 0.0041647092, 0.0056417477, 0.0031024555, 0.0052337074, 0.004606472, -0.02437451, -0.011850031, -0.0038241136, -0.0098536685, -0.006811913, -9.408533E-4, 0.019262202, -0.02623598, -0.028003033, -0.017926797, -0.029405883, 0.008909442, -0.008801531, -0.004201804, -0.008922932, 0.021838589, -0.0021396826, -0.012639133, -0.016631858, 0.010069491, -0.012591923, 0.00913201, 0.01646999, -0.0037499245, 0.028596547, -0.010966506, -0.023727039, -0.0048020612, 0.022809792, 0.011135117, 0.010811383, -0.021595787, -0.0071221585, -0.0076145045, -0.023740528, 0.006987269, -0.009718779, -0.00723007, 0.012430055, -0.025858292, 0.008005684, 0.005803615, -0.002202069, -0.014406185, -0.023497727, 0.014743408, -0.016065324, 0.0070209913, 0.012288421, -0.018385421, 0.012463777, -0.033344653, -0.009921113, -0.02436102, -0.016901638, -0.022135345, -0.0011836542, 0.047346167, 0.0016051835, 0.04464838, -2.0275557E-4, 0.022486057, -2.0770855E-4, 0.004033192, 0.018614732, -0.023996819, -0.014230828, -0.023619128, -0.0013547951, -0.0011153665, 0.029972417, -0.001252785, 0.014743408, 0.024239618, 0.025399668, 0.0010133564, 0.008140573, 0.0077966056, -0.01471643, -0.00982669, 0.003427876, -0.026424827, 0.008727342, -0.03892907, -0.0221893, 0.04491816, 0.0033351395, -0.015417854, -0.009334344, 0.03056593, -0.018088665, 0.01978827, -0.017697485, 0.023942862, -0.013893605, -0.008558731, -0.025035467, 0.005085329, 0.0041343593, -0.006120605, 0.018075176, -0.001224964, -0.01815611, 0.0126189, 0.01864171, -0.019747803, -0.034666568, 0.018628221, -0.0017189963, -0.0052505685, -0.028056988, 0.008848743, -0.02437451, -0.018223554, -0.011991665, 0.0062892167, 0.010076236, -0.015067142, -0.04275993, 0.03909094, -0.013273113, 0.017306305, 0.020152472, 0.05365899, 0.03107851, 0.005287663, -0.011431874, 0.008268719, -0.010818128, -0.011087906, 0.016267657, 0.021245075, -0.0156066995, -0.023497727, -0.0028529102, 0.0058845486, -0.025979692, -0.03655502, 0.027099274, 0.020597607, 0.023673084, -0.022607457, -0.021622766, -0.028569568, -0.0029338438, 0.0023588778, -0.0010563524, 0.0010580384, -0.010049257, -0.013542892, 0.0043872767, -0.005715937, 0.022175811, 0.011148606, -0.018965445, 0.012524478, -0.012463777, 0.0013902035, -0.02360564, -0.006194794, 0.029756594, -0.012477267, 0.01686117, 0.0024701615, 0.011694908, -0.0014087508, 0.0028107571, 0.016807215, 0.029972417, -0.016591392, 0.023511216, 0.0069468026, -0.0024600448, 0.005945249, 0.016672326, -0.024927555, -0.0043029706, -0.03806578, -0.0016937046, 0.016402546, 0.0033587452, -0.012328888, -0.014729919, -0.013812671, -0.023740528, -0.0018176342, -0.017171416, 0.026033647, -0.030458018, 0.0012148473, -0.00812034, -0.0060126935, 0.01382616, -5.323915E-4, 0.02360564, -0.009158988, 0.02892028, -0.010743938, 0.010393226, -0.0033789787, -0.0011769098, -0.04591634, -0.02484662, -0.005432669, -0.024266597, 0.019558959, -0.008855487, 0.007297515, -0.013853138, -0.016847681, -0.009772735, -0.008423841, -0.017319795, -0.0048324117, 0.022445591, -0.010197636, -0.01686117, -0.005746287, 0.022162324, -0.020907851, 0.0074054264, 0.014068961, -0.0020924713, 0.019505002, -0.013266369, 0.008073129, -5.197456E-4, -0.011560019, -0.0061711883, 0.013603592, 0.032238558, 0.012409822, -0.015404366, -0.037661113, 0.008052895, -0.01904638, 0.017913308, -0.010426948, 0.0095636565, 0.041249167, 0.020004094, 0.0434074, 0.025075933, -0.01726584, -0.03018824, -0.010926039, -0.009941346, -0.031348288, -0.006953547, 0.010784405, -0.005169635, -0.0068490077, -0.012322144, -0.042166416, -0.028083965, -0.016024856, -0.026573205, -0.014284784, 0.029109126, 0.03895605, 0.014392695, -0.008808276, 0.027733253, 0.0065623675, 0.009368067, -0.010366248, 0.017023038, 0.013880116, 0.013880116, 0.016335102, 0.027382541, -0.03817369, 0.023133526, 0.015040165, 0.00887572, 0.008578964, 0.02525129, -0.008066384, -0.01148583, -0.0049335784, 6.270248E-6, -0.0021160769, -0.008005684, 0.018344954, -0.028569568, 0.0037465522, 0.018992422, 0.020665051, -0.015121098, -0.007958473, 0.007762883, -0.02803001, -0.0016650406, -0.014729919, -0.034666568, 0.009685056, -0.028893303, 0.030134285, 0.008882465, -0.0011625778, 0.04300273, 0.026101092, -0.008788042, 0.027584875, -0.0072030923, 0.0076145045, -0.0128279785, -6.019438E-4, -0.008140573, 0.026613671, -0.038578358, 0.012160276, -0.035233103, 0.011364429, -0.005112307, 0.006639929, -0.019828737, 0.031024555, 0.0077426494, -0.045781452, -0.017090483, -0.0022813163, -0.0025123144, -0.007128903, -0.0104134595, -0.024077753, 0.0014753524, -2.925413E-4, 0.013434981, -0.03639315, -0.03172598, -0.008140573, -0.011917476, 0.0043569263, 0.00812034, 0.19380905, -0.018034708, 5.61477E-4, 0.053119432, -0.0038713247, 0.0029136103, 0.02981055, 0.0066163233, -0.013225903, 0.0037600412, -0.0067073735, 0.016254168, 0.004380532, -0.003008033, 0.025197335, 0.0036521296, -0.025345711, -0.013853138, -0.02081343, -0.0059992047, -0.005715937, 0.010892317, -0.0092669, -0.01951849, 0.001714781, -0.01687466, -0.004906601, 0.010292059, 0.04033192, 0.008592453, -0.031240378, -0.0125177335, 0.009152244, 0.031051531, -0.009671568, -1.10862195E-4, 0.010298803, 0.015836012, 0.0061711883, 9.400103E-4, -0.008585708, -0.009732268, -0.020961808, -0.011762353, -4.5567314E-4, 0.0084643075, -0.022998637, -0.011114884, -0.004761595, 0.021379964, -0.039387695, -0.006869241, 0.02081343, 0.025089422, -0.0028647128, -0.012187255, 0.006275728, 0.008261974, -0.004623333, 0.0019980487, 0.010683238, 0.04629403, -0.0092938775, 0.017913308, -0.002478592, 0.013556382, -0.015107609, 0.007223326, 0.03383025, -0.01864171, -0.012504244, -0.015701123, -0.0070412247, 0.012173765, -0.026923917, -0.021218097, -0.009354577, 0.031402245, 0.004478327, 0.029783573, -0.003911792, -0.010649515, 0.0026117954, 6.2091264E-4, -0.0149322525, -0.016658837, 0.014527584, -0.0035678237, -0.014109428, -0.02307957, -0.008471052, -0.013920583, -0.0040669143, 0.008956654, -0.021245075, -0.00818104, 0.014648985, 0.01675326, -0.0061914218, -0.001281449, -0.033398606, 0.02970264, 0.026033647, -0.0040264474, -0.026438316, -0.0039556306, 0.006771446, 0.017319795, 0.01904638, -0.009941346, -0.0036352684, -0.02715323, -0.011640952, -0.008214762, 0.0076077604, 0.02117763, 0.008154063, -0.0153369205, 0.039414674, -0.019343136, 0.0015099179, -0.02712625, 0.0016709421, 0.002291433, 0.013259625, -0.025480602, -0.014217339, 0.004957184, -0.004390649, -0.022782814, 0.01826402, -0.030161262, 0.011384662, -0.011593741, -0.009550167, 0.01903289, 0.008248485, 0.0133675365, 0.005425925, 0.001944093, -0.011155351, -0.004896484, 0.015134587, 0.0065320176, 3.7452875E-4, -0.031752955, 0.023767507, -0.006464573, -0.007830327, -0.020570628, -0.01331358, -0.0025258034, 0.0041174977, 0.018817067, 0.03132131, 6.807698E-4, -0.038227648, -0.047642924, 0.0157281, 0.035152167, -0.03909094, 0.019262202, 0.024576843, -0.03032313, -0.019882692, 0.0018817066, -0.17233466, 0.0158495, 0.00504149, -0.030377086, 0.016024856, 0.021272054, 0.0410873, 0.005287663, -0.003137864, 8.040671E-5, 0.028003033, 0.0076954383, -0.055736285, 0.0059823436, 0.016227191, 0.008585708, -0.009462489, 0.045646563, 0.007216581, -4.552516E-4, 0.042786907, -0.0045322827, -0.021150652, 0.004866134, 0.025440134, 0.005958738, 0.016928615, 0.019585935, 0.009287133, -0.005270802, -0.024603821, -8.6666417E-4, 0.004778456, -0.0016085557, -0.0016819017, 0.010683238, -0.018938467, 0.002417892, 0.0015183485, -0.0036993409, 0.04972022, 0.01021787, 0.013050546, 0.0016625115, 0.012207488, 0.009739012, 0.03477448, -0.0122479545, -0.016766747, -0.020705517, -0.002389228, -0.040277965, 0.020705517, -0.005213474, 0.010878827, 0.023511216, -0.0032137393, -0.009192711, 0.005139285, -0.009381555, -0.02662716, -0.018102152, 0.0068894746, -0.011162095, 0.0043265764, -0.0035948015, -0.014217339, 0.010157169, -0.028893303, 0.007938239, -0.0092938775, -0.011060928, 0.027355563, -0.01763004, 0.005189868, -0.020597607, -0.03258927, 0.009017354, 0.0013598534, 0.008868976, -0.010561838, 0.03258927, -5.943563E-4, 0.007918006, 0.007182859, -0.0048155505, 0.014095939, 0.0019322901, -0.002360564, -0.0043569263, -0.0013480507, -0.026370872, -0.032508336, -0.019005911, 0.011148606, 0.0033368256, 0.0039960975, 0.0024296946, 0.019896181, -0.00824174, -0.007297515, -0.015876478, -0.0048222947, 0.024064263, 0.018371932, 0.012099576, -0.010622538, 0.025817825, 0.0040669143, 0.012794256, -0.02398333, -0.019869205, 0.013590104, 0.0012755475, -0.021069719, -0.0036824797, -0.015363899, -0.023821462, -0.002549409, 0.012969612, 0.03917187, -0.002217244, -0.014028494, -0.0130775245, 0.0072907703, -0.024253108, -0.08595151, 0.0073110037, 0.011182329, 0.025224311, -0.020975297, 0.02156881, -0.010602304, 0.012274932, -0.026195515, 0.038227648, -0.001700449, -0.0124368, 0.022162324, -0.0031597833, 0.011647697, -0.0011735375, -0.010528115, -0.00812034, -0.010905805, 0.031267356, 0.0040399367, -0.015134587, 0.0050482345, -0.015431344, -0.039279785, 0.0035206124, -0.036851775, 0.019505002, 0.023807973, 0.00913201, -0.0048222947, -0.019842226, 0.012861701, -0.03199576, -0.016213702, -0.024253108, -0.020017581, -0.040385876, 0.021352986, -0.051554717, 0.003756669, 0.0053382465, 0.0073244926, -0.028164899, 0.0031328055, -0.012288421, -0.010487649, 0.036851775, -0.003009719, -0.032805093, -0.0143522285, -0.00264889, -0.035206124, -0.007418915, 0.016065324, 0.010393226, 0.026101092, -0.0025106284, -0.012133298, -0.02919006, 0.001886765, -0.017940287, -0.028191878, 0.021069719, 0.012032132, -1.9000431E-4, -0.0068388907, 0.0043029706, 0.035907548, -0.018493332, 0.0035442181, 0.0020553768, -0.043083664, -0.012976357, -0.034585632, -0.013590104, -0.024833132, -0.0035813127, 0.019828737, -0.033938166, -0.004559261, -0.026910428, -0.006940058, -0.0130977575, 0.004178198, 0.0124368, 0.006987269, 0.0093883, 0.0071626254, -0.04162686, 3.4881546E-4, 0.038902093, 0.017023038, -0.009300622, 0.0012704892, 0.027261142, 0.010305547, 0.010251592, 0.011991665, 0.02093483, -0.0038814414, -0.021379964, -0.0765632, 0.03704062, -0.014176873, -0.012187255, -0.0025460368, -0.016173234, 0.0025308616, -0.00913201, 0.0071626254, 0.00869362, 0.0014450024, 0.024819644, -0.016146258, 0.0015132901, -0.00907131, 0.007992195, 0.008174296, 1.5564969E-4, 0.0072907703, -0.0012477266, -0.009907624, 0.0033081616, 0.02537269, -0.006940058, 0.00371283, 0.032400426, 0.004259132, -0.0037667856, -0.02854259, -0.014041983, 0.017616551, -0.014905275, -0.019086845, 0.0018783344, 0.003945514, -0.031429224, -0.025669446, 0.010636027, 0.011452107, -0.0037499245, -0.011823053, -0.019828737, -0.018196575, -0.008066384, -0.0018024591, 0.030808732, -0.026209004, -0.003813997, 0.0113981515, 0.015674144, 0.015741589, 0.011836542, 2.4174704E-4, -0.03186087, 0.017023038, -0.027328586, 0.03752622, 0.01713095, -0.008032662, 8.7340863E-4, 0.024010308, -0.0063296836, 0.021663232, -0.04149197, -0.0066770236, 0.011371174, 0.013401259, -0.022850258, 0.0018108897, -0.043946955, -0.0070884363, 0.002950705, 0.0146220075, 0.031510156, 0.010298803, 0.023727039, 0.002879888, 0.015579722, -0.0031176305, 0.016915126, 0.021757655, -0.019505002, -0.02664065, 0.013104502, 0.009030843, 0.034936346, -0.009010609, 0.0049504396, 0.014568051, 0.005442786, -0.0100087905, 0.011593741, 0.029055169, 0.014176873, -0.009368067, 0.005628259, -0.007776372, 0.0018311231, 0.008976887, 0.009078055, -0.0026674373, -0.01313148, 0.002304922, -0.020125493, -0.030134285, 0.0010985052, -0.017535618, -0.047373146, 0.0040669143, 0.0217037, 0.018358443, 0.01192422, -2.7441556E-4, 0.014959231, -0.03293998, 0.010966506, -0.0041006366, -0.0042388984, -0.01814262, 0.03018824, 0.027342075, 0.017225372, 0.033263717, 0.0053517357, 0.045107003, 0.025305245, 0.026748562, -0.0074661262, 0.001955896, 0.003036697, -0.0023555055, -0.020611094, -0.024010308, -0.009395044, -0.022526525, 0.0158495, -9.754187E-4, 0.033533495, -0.010689982, 0.0708439, 0.026438316, -0.0020688656, 0.015943924, -0.011816309, 0.013434981, 0.01598439, 0.02054365, -0.012578433, -0.014729919, -5.892979E-4, -0.03412701, -0.0035948015, -0.024941044, -2.5397138E-4, 0.00837663, 0.025817825, 0.013037058, -0.012146788, -0.031294335, -0.005887921, -0.0078100944, 0.013219158, 0.006508412, -0.009051076, -0.008012428, 0.008147318, -0.009300622, -0.0045963554, -0.038713247, -9.3410886E-4, -0.028704457, 9.610867E-4, 0.0055911643, 0.031186422, 7.3346094E-4, 3.4460018E-4, -0.010919294, 0.023403306, 0.021137163, -0.017050017, 0.016631858, -0.02258048, -0.029378904, 0.008201273, 0.0050347457, -0.014244317, -0.034207944, -0.026613671 ], + "id" : "ac119fd9-8333-4687-8bfb-8f8c36932b9c", + "metadata" : { + "source" : "movies.csv" + } + }, + "96fedf78-15e9-4b3a-85eb-1055cc459468" : { + "text" : "479306,Never Say Die,Comedy-Fantasy,zh,A boxer and a journalist accidentally exchange bodies after they are struck by current embarking a series of adventures.,3.511,New Classics Media-Fun Age Pictures,9/30/17,0,334530869,100,Released,,5.353,34,Allen Ai Lun-Ma Li-Shen Teng-Xue Haowen-Chang Yuan-Yin Zheng-Wang Zhi-Wang Chengsi-Tian Yu-Gao Zhiheng,china-sports-boxing,/6GOMHYKPPsie8u5Cyl7PXNaGl8S.jpg,/lyGuft4aGUrCTvsOBNlvb6YcRCE.jpg,\r\n36218,Pok��mon: Jirachi - Wish Maker,Family-Action-Animation-Adventure-Fantasy-Science Fiction,ja,Ash May Brock and Max come upon the festival of the Wishing Star of Seven Nights. During their enjoyment the legendary Pokemon--Jirachi descends from the heavens and befriends Max. Jirachi with the power to grant any wish is sought after by many people wanting to claim its power. One man seeks to use its legendary power to revive an ancient Pokemon known as Groudon unaware of the dangers hidden within Jirachi's powers,18.127,Shogakukan Production-OLM-Pikachu Project,7/19/03,0,334000000,81,Released,,6.5,221,Rica Matsumoto-Y��ji Ueda-KAORI-Fushigi Yamada-Ikue Otani-Tomiko Suzuki-Shin-ichiro Miki-Megumi Hayashibara-Inuko Inuyama-Koichi Yamadera-Papaya Suzuki-Riho Makise-Unsho Ishizuka,comet-wish-anime,/5TBXNazCYqi28PSqDVdeFnap3Wd.jpg,/yWl2xNPc30P9SAbCUduFpeiztUd.jpg,34065-33875-16808-12600-34067-47292-10991-39057-25961-12599-88557-50087-227679-150213-350499-115223-36897-10228-303903-137773-382190\r\n9738,Fantastic Four,Action-Adventure-Fantasy-Science Fiction,en,\"During a space voyage four scientists are altered by cosmic rays: Reed Richards gains the ability to stretch his body; Sue Storm can become invisible; Johnny Storm controls fire; and Ben Grimm is turned into a super-strong ��_ thing. Together these \"\"Fantastic Four\"\" must now thwart the evil plans of Dr. Doom and save the world from certain destruction.\",35.959,Kumar Mobiliengesellschaft mbH & Co. Projekt Nr. 3 KG-1492 Pictures-Marvel Enterprises-20th Century Fox-Bernd Eichinger Productions-Constantin Film,6/29/05,100000000,333535934,106,Released,4 times the action. 4 times the adventure. 4 times the fantastic.,5.771,8447,Ioan Gruffudd-Jessica Alba-Chris Evans-Michael Chiklis-Julian McMahon-Hamish Linklater-Kerry Washington-Laurie Holden-David Parker-Kevin McNulty-Maria Menounos-Michael Kopsa-Andrew Airlie-Pascale Hutton-G.", + "embedding" : [ 0.00475619, -0.01937838, -0.007708918, -0.0302133, -0.01752541, 0.016506985, -0.005580125, -0.02594157, -0.00880514, -0.04031269, 0.024866564, 0.034796216, 0.0329291, -0.0030075388, 0.01133706, 0.009972086, 0.0079069445, -0.017751727, 0.01899647, -0.023466228, 0.010163041, 8.0360164E-4, -0.020580688, 0.0033399416, -0.0040807757, 0.027752103, 0.02152839, -0.0026114841, -0.0018529692, -0.008366651, 0.0064571025, 1.3713828E-4, -0.007970597, -0.016478695, -0.021429377, -0.0027882943, 0.0029651043, -0.017539555, 0.028586647, -0.01799219, 0.01905305, 0.013769966, -0.006043367, 0.010905643, -0.014682306, 0.010453009, 0.019166209, -0.015149084, 0.009866, 0.0372857, 0.020340227, 0.021726418, -0.02073628, -0.02694585, -0.005198215, -0.018572126, -0.0026662953, 0.008974877, 0.00954067, -0.007680628, -3.7958904E-5, -0.031825807, -0.018473113, -0.018119493, -0.015092505, -0.009618466, -0.013649735, -0.022716554, 0.0033028114, -3.469897E-4, 0.012638382, 0.02229221, 0.026054727, -0.009102181, 0.017129356, -0.04019953, -0.018077059, -8.63275E-4, -0.012992001, 0.01961884, 0.02011391, -0.006743535, -0.00933557, -0.0073199356, 0.014894478, 0.017681004, -0.011443146, 0.012475716, -0.01616751, -1.3415462E-4, 0.019887593, 0.032448176, -0.0053750253, 0.008691981, 0.012588874, 0.007772569, -0.0123484135, 0.0201422, -0.019010615, -0.025630383, -0.004176253, -0.0054174596, -0.005866557, -0.008232275, -6.816027E-4, -0.0067859692, -6.171085E-6, -0.010467154, 0.02871395, 0.0069309534, 5.644108E-5, 0.013861907, 0.022886291, -0.03821926, -0.0030252198, -0.024696827, 0.014809608, -0.014272106, -0.004918855, -0.018982325, 0.017893177, 0.02656394, 0.027723813, -0.010163041, 0.027412629, 0.02765309, -0.018925747, -0.015530993, 0.019958317, -0.0030729584, 0.02694585, -0.008932443, 0.027186312, 0.0143428305, -0.03502253, 0.053269327, -0.024131034, 0.009477018, -0.02073628, -0.0077018454, 0.027143877, 0.030807381, -0.03372121, -0.031769227, -0.027709669, 0.010530806, 0.0054033147, 0.0038509227, 0.02226392, -0.0039004295, 0.01649284, 0.012051372, 0.01961884, 0.023961296, 0.012977857, 0.0020563006, -0.01009939, 0.009583104, -0.016125076, -0.006690492, 0.012136241, -2.183604E-4, -0.010658109, -0.02691756, -0.025998147, 0.024965577, 0.025587948, -0.027695524, -0.0021075755, -0.00468193, -8.880284E-4, 0.028431054, -0.011556304, 0.021683984, -0.0035008388, 0.010559095, 0.014484278, -0.01219282, -0.033494893, -0.018402388, 0.0201422, 0.0045723077, 0.034060687, 0.014710595, -0.013890197, 0.018798443, 0.020934308, -0.024993867, 0.003293971, -0.0038332415, -0.008083755, 0.016308958, -0.0010697007, -0.014880333, -0.6327819, -0.016676722, -0.010339851, -0.012065517, 0.0059160637, 0.020128055, -2.921786E-4, 0.007694773, -0.022688264, -0.030298168, -0.021372797, 0.01828923, 0.023692545, -0.0143428305, -0.017624425, -0.011450218, 0.0049612895, -0.0039711534, 0.0043035564, 0.0041161375, -0.03440016, 0.012440355, 0.006725854, -0.01169068, -0.011499725, 0.012822264, -0.023169188, -0.014123586, 0.005725109, -0.0021517782, -0.014088224, 0.027737958, 0.02084944, -0.00609641, 0.037059385, -1.4863093E-4, -0.007836221, 0.036493592, 0.043226518, 0.034145553, -0.030326458, -0.0034071293, 0.0018352882, 0.009682118, -0.03872847, 0.006976924, 0.0073057907, 7.894568E-4, 8.049277E-4, -0.003914574, -0.002908525, -0.009271919, -0.004268194, -0.009498235, 0.0047243643, 0.022009313, 0.0038509227, -0.017440543, 0.021273784, -0.010735906, -0.008112044, 0.034881085, -0.0025407602, 0.004897638, 0.0014745957, 0.023989586, -0.0064747836, -0.006188351, 0.011669463, -0.027794538, -0.0043565994, 0.012970785, -0.023084318, 0.013395129, -0.0035255922, 0.019689566, 0.025305053, -0.011733114, -0.0027051936, 0.019533973, 0.0014781319, -0.0054881833, -2.1648179E-4, 0.0036139973, 0.015587573, -0.0023533416, -0.02111819, 0.018925747, 0.015644152, 0.011400711, 0.0046430314, 0.008557606, 0.0034142018, 0.008720271, -0.023565242, 0.0055341544, -0.01616751, 0.0022861538, 0.026691243, -0.05386341, -0.00983771, -0.012610092, 0.0152480975, -0.00753918, -0.003048205, 0.015304677, -0.017624425, -0.013472925, 0.028162302, -0.012864699, -0.0061671343, -0.014908622, -0.0042505134, -0.018982325, -5.1716936E-4, -0.033862658, 0.018359954, 0.022886291, 0.015219808, -0.0053644166, 0.010141823, -0.002749396, 0.02836033, -0.02008562, 0.0022843857, 0.030665932, -0.0053785616, -0.0013579011, 0.014470134, 0.0010529038, 0.013550721, 0.0117896935, 0.021132335, -0.02011391, 0.0035308965, -0.009441656, 0.021485956, 0.011669463, 0.010827847, 0.004685466, -0.010870281, 0.011676535, -0.017949754, -0.0020722137, 0.0032320875, -0.018359954, -0.018656995, -0.0040524863, 0.0027794538, 0.0059408173, -0.020029042, 0.007298718, 0.0027776856, 0.021104045, -0.001900708, -0.016648432, -0.028544212, -0.021273784, 0.009759914, -0.017355673, 0.012242327, 0.016945474, -0.008161551, -0.016606, 0.021542534, -0.026691243, -0.010877353, 0.027228747, -0.008635403, -0.026705388, 0.006492465, -0.010665181, -0.014866188, 0.024456365, 8.2349277E-4, 0.01937838, -0.011322915, 0.0064217406, 0.013204173, -0.015488559, -0.013338549, -0.00806961, -0.020000752, -0.0033081158, 0.024668537, 0.015955338, 0.030015271, -0.017765872, -0.006439422, -0.0039570085, -0.026125452, 0.007694773, -0.019930027, 0.0056649935, 0.010240837, 0.032702785, -0.008090828, 0.0031136249, 0.011669463, 0.018345809, 0.03952058, 0.0069521707, 0.0031136249, -0.01328197, 0.018968182, -0.034824505, 0.018713575, -0.0042858752, 0.012298906, -0.012567657, 0.019915882, 0.0072244583, -0.015573428, -0.0041974704, 0.020425096, 0.03312713, -0.006545508, 0.015092505, -0.019802725, -0.0020174026, 0.0024505872, -0.003576867, 0.009667973, 0.015658297, -0.010735906, 0.014498423, 0.016606, -0.010735906, -0.013161739, -0.01861456, 0.0017132893, -5.6667614E-4, 0.0033417097, 0.0133456215, 0.01292835, -0.0079988865, 0.038898207, -0.010870281, 0.044046916, -0.00109357, 0.0066480576, 0.009024384, 0.020807005, 0.008720271, -0.014852043, -0.013550721, 0.014300396, 0.004533409, -0.011216829, 0.045404818, -0.034711346, 0.019477393, -0.016422117, 0.023947151, 0.0048728846, -0.022985306, -0.015163229, 0.019689566, 0.021627404, 0.021245494, 0.008027175, -0.03655017, 0.02073628, 0.025149459, 0.017426398, 0.008543461, -0.02765309, -0.0057710796, -0.011174395, -0.030750802, -0.02550308, -0.03451332, 7.850366E-4, -0.0068425485, -0.0062873648, -0.007914017, 0.003186117, 0.019010615, -9.370932E-4, 0.014540858, -0.01272325, -0.036917936, 0.0023091391, 0.015545138, 0.009484091, -0.019364236, -0.021443522, -0.004193934, -0.040737033, 9.6361473E-4, -0.02011391, 0.015757311, -0.016238233, -0.006308582, -0.02580012, 0.005077984, 0.006467711, -0.012242327, -0.009073891, 0.027455064, 0.00457938, 0.018077059, -0.0013163508, -0.006991069, 0.019519828, 0.0082393475, 0.008713199, 0.0024152251, 0.0036988659, -0.008706126, 0.0027211064, -0.003610461, -0.036069248, 0.016294813, -8.5918626E-5, -0.004512192, -0.018501403, 9.804117E-4, 0.014328686, -0.014852043, -0.03287252, -0.027723813, -0.022688264, -0.0066692745, 0.06676347, 0.032617915, -0.00521236, -0.017893177, 0.0027016574, 0.006029222, -0.008812212, -0.010728833, -0.0016770432, 0.01169068, 0.032702785, -0.012999074, 0.025517225, 0.012107952, 0.021542534, -0.007645266, 0.004208079, -4.243441E-4, -0.01366388, -0.003484926, -0.010382285, 0.003506143, 0.010884426, 0.03816268, -0.014951057, -0.0125747295, 0.0066657383, 0.026634663, -0.0035008388, 0.025121171, 0.0060893376, 0.0068991277, 0.013826545, 0.014526713, -0.004526337, 0.00736237, 0.019505683, 0.0030605819, 0.01169068, 0.005527082, -0.012107952, 0.015573428, 0.0054174596, -0.0020739818, 0.02019878, -0.026988285, -0.028600791, 0.009187049, 0.036408722, -0.013642662, 0.029081715, -0.0075108903, -0.017539555, -0.003543273, 0.016931329, 0.0012730323, -0.035531744, -0.012355485, -0.02476755, -0.007602832, 0.016252378, -0.03878505, 0.024131034, -0.004628887, -0.017751727, -0.030298168, -0.010700543, -0.026931705, -0.0021553144, 0.01793561, -0.010757123, -0.022928726, -0.021019178, 0.0011642941, 0.007942307, -0.009597248, 0.030948829, 0.001250047, 0.014455989, -0.0056508486, -0.028035, -0.029166583, -0.010106462, -0.018374098, 0.0010352228, 0.015417836, 0.0016514057, 0.0028837717, -0.006269684, 0.013996283, 0.007666483, -0.005813514, -0.016733302, -0.0027600047, 0.023918862, -0.007503818, 0.016068496, 0.007327008, 0.005884238, 0.020071475, 0.0042717303, -0.019364236, -0.031995546, -0.030354748, -0.011733114, -0.018444823, 0.009979159, 0.017794162, -0.009441656, -0.019067194, -0.028431054, -0.018656995, 0.028501779, 0.011676535, 0.01799219, 0.014738885, 0.019463249, 0.02700243, -0.013890197, -0.005972643, 0.00260618, 0.008536388, 0.019986607, 0.02406031, -0.0051204185, 0.034230422, -0.0037766625, -0.031769227, -0.0038898208, 0.031090276, 0.018147781, 0.01961884, -0.0107924845, -0.01722837, -0.025686963, -0.020707991, 0.009187049, -0.0019095484, 0.0048587397, 0.0011757867, -0.031797517, 3.838988E-4, -0.0052052876, -0.0044768304, -0.005870093, -0.027935985, -0.003787271, -0.0154602695, 0.03326858, 0.011181467, -0.017284948, 0.006923881, -0.020382661, 0.0045546265, -0.010163041, -0.03748373, -0.021896156, -0.023423795, 0.026776113, 0.010219621, 0.050496947, 0.003995907, 0.01752541, 0.010184258, 0.009830638, 0.016888894, -0.02299945, -0.009738697, -0.033636343, 0.0059938603, 0.00402066, 0.029053425, 0.011846272, 5.215896E-5, -0.004126746, 0.015856324, 0.014364048, 0.023621822, 0.003101248, -0.02833204, -0.01899647, 0.005304301, -0.024258338, 0.020509964, -0.025870845, -0.023579387, 0.031825807, -0.015318821, -0.012079662, -0.01717179, 0.029704086, -6.789506E-4, 0.0018441287, -0.018048769, 0.021500101, -0.019944172, 0.019038904, -0.018048769, -0.0071749515, -0.002273777, 0.005901919, 0.016747447, -0.0017053328, -0.010311562, 0.010453009, 0.018911602, -0.017044488, -0.036097538, 0.01310516, -1.6465435E-4, -0.010750051, -0.026691243, 0.00927899, -0.032052122, -0.0013349158, -0.0046182782, -3.971319E-7, 0.015997773, -0.0033204926, -0.031882387, 0.02447051, -0.010297417, 0.024965577, 0.011301697, 0.045121923, 0.03499424, 0.003417738, -0.011881635, -0.009929651, -0.009604321, -0.0060469033, 0.020594833, 0.0101135345, -0.008366651, 0.006902664, 0.003939328, 0.0058064414, -0.035418585, -0.04014295, 0.024498798, 0.027596511, 0.041953485, -0.026493216, 0.0120160105, -0.020722136, 0.019434959, -0.0041585723, 0.0033364054, 0.006556116, -0.029675797, -0.012744468, -0.002961568, -0.008508099, 0.02447051, 0.01351536, -0.02582841, 0.015177374, -0.029223163, 0.0026733677, -0.008543461, -0.0058736294, 0.040567294, -0.019873448, 0.01469645, 0.0067718243, 0.02117477, 0.0069627794, -0.0025442964, 0.005569516, 0.032815944, -0.019236932, 0.018869167, 0.00475619, 0.006202496, 0.0027564685, 0.017794162, -0.020099765, -0.0276248, -0.02703072, 0.0015073055, 0.034683056, 0.004685466, -0.004190398, -0.019972462, -0.01186749, -0.004469758, 0.008288855, -0.0026662953, -0.0019431423, -0.06087923, 0.00430002, -0.009179977, -0.012023083, 0.011421928, 0.0038332415, 0.0052547944, -0.0120160105, 0.015912903, 0.0049117827, -0.010870281, 0.0014533785, -0.020099765, -0.039860055, -0.0060893376, -0.013586083, -0.024541233, 0.017864887, -0.016860604, 0.0064217406, -0.025545515, -0.0063297995, -0.010863209, 0.009731624, -0.012376702, -0.0023727906, 0.014526713, -0.021415232, -0.007553325, 0.002784758, 0.021061612, 0.0069203447, 0.017355673, 0.013289043, -0.010198403, 0.040454138, -0.0219103, 0.00675768, 0.0017751728, -0.018402388, -0.016407972, -0.00898195, 0.01507836, 0.009993304, 0.0014913926, -0.041161377, 9.459337E-4, -0.015163229, 0.03734228, -0.0035450412, 0.015120794, 0.016733302, 0.020906018, 0.022306355, 0.021302074, -0.009724552, -0.010608602, 0.009660901, -0.0029014528, -0.014993492, 0.009788204, 0.011612883, 0.02447051, 0.008423231, 0.01343049, -0.027313614, -0.021358652, -0.014314541, -0.032759365, -0.017030343, 0.042689014, 0.037823204, 0.00490471, -0.013338549, 0.02005733, -0.0071042273, 0.020722136, -0.009264846, -0.0011952359, 0.014922767, 0.028218882, 0.020707991, 0.030524485, -0.029930403, -0.009052674, 0.024032021, 0.022829711, 0.0113512045, 0.03307055, -0.019463249, -0.018473113, -0.012772758, -0.014738885, -0.010318634, -0.0025407602, 0.031910677, -0.040482428, 0.01216453, -0.007242139, 0.01937838, -1.06528045E-4, 0.015290532, 0.0032886667, 7.863626E-4, 0.014837898, -0.002572586, -0.023466228, -0.010155968, -0.029958693, 0.025262618, 0.025050446, 0.0028307287, 0.034711346, 0.020000752, -0.012214038, -0.008260565, -0.020778716, -0.01351536, -0.005866557, 0.013147594, -5.056767E-4, 0.009745769, -0.04305678, 0.022575106, -0.012355485, -0.0070724017, 0.0071183722, -0.0068991277, -0.015898759, 0.031712648, 0.013112232, -0.061275285, -0.0060150777, 0.009264846, -0.011549232, 6.745303E-4, -1.2420905E-4, -0.029053425, -0.009639683, 0.0012703801, 0.0053962423, -0.018359954, -0.030750802, -0.004685466, -0.023437938, -0.012150385, 0.0022454874, 0.18376929, -0.009759914, 0.010233765, 0.042717304, -0.0028749313, 0.028303752, 0.022405367, 0.00883343, -0.008882936, 0.008409086, -0.01758199, 0.0053325905, -0.0017504194, -0.0038084881, -0.0046783937, -0.033494893, -0.03507911, -0.016096786, -0.028487634, -0.03451332, -0.015700731, -0.0022949942, -0.0010864977, -0.013246608, -0.011676535, 0.004045414, -0.007963524, 0.005870093, 0.02650736, 0.0042540496, -0.021344507, -0.014880333, -0.009455801, 0.0019590552, -0.034626476, -0.007921089, 0.006343944, 0.010382285, 0.007482601, -0.0023674865, 0.0032426962, -0.002256096, 0.010311562, -0.010693471, 0.0021977487, 0.017101066, -0.027808683, -0.006414668, -0.0101135345, -0.009243629, -0.040878482, -0.0050709117, 0.030977119, 0.029902114, -0.0028607864, -0.024456365, -0.0018061146, -0.012383775, -0.012150385, -0.005141636, 0.0031702039, 0.03007185, -0.040539004, 0.015134939, 2.733925E-4, 0.024343206, -0.02550308, -0.016407972, 0.0058559487, -0.020679701, -0.015149084, -0.013062726, -0.018812587, -0.027214602, -0.013819473, -0.009172904, 0.013246608, 0.018656995, 0.012157458, 0.022858001, -0.009123398, -0.01295664, 0.011414856, 0.007850366, -0.012935422, -0.02155668, 0.014979347, -0.018954037, -0.007341153, -0.021698128, -0.010552023, -0.013076871, -0.011188539, -0.009413366, -7.0060976E-4, 0.0065136817, 0.02795013, 0.012992001, 0.001250047, -0.009774059, -0.016620144, 0.030581065, 0.0100711, -0.013769966, -0.020227069, -0.030665932, 0.005261867, 0.0012447427, 0.025234329, -0.016917184, 0.014682306, -0.028431054, -0.008691981, -0.016308958, 0.011202684, 0.018048769, 6.608275E-4, -0.0064075957, 0.043339677, -0.027384339, -0.0043247733, -0.009972086, 0.0034495639, 0.010856137, 8.407317E-4, -0.034258712, -0.009858928, 0.008034248, 0.0060221497, -0.036040958, 0.035503455, -0.030269878, 0.006662202, -0.003702402, 0.004490975, 0.014639871, 0.0075462526, 0.0060999463, -0.0015541603, -0.0059089917, -0.0017990421, -0.017482977, 0.009505307, 0.016280668, 0.01242621, -0.03431529, -0.010311562, 7.2315306E-4, -0.008027175, -0.024046166, 0.0012668439, -0.005336127, -0.0042399047, 0.018006334, 0.034202132, 0.007270429, -0.036889646, -0.021768851, -0.005424532, 0.039690316, -0.040652163, 0.005951426, 0.01663429, -0.016690867, -0.033692922, -0.013699242, -0.18365613, 0.025658673, 0.013876052, -0.031825807, 0.018430678, 0.0053962423, 0.018741865, -2.977039E-4, 0.009576032, -0.011315842, 0.012001866, 0.021005033, -0.040058084, -0.015856324, 0.005131027, 0.013876052, -0.023890572, 0.03589951, 0.039011367, 0.0011908156, 0.0258567, 0.013225391, -0.006464175, -0.0073057907, 0.0063297995, 0.014279178, 0.0223205, -0.001250047, -0.01004281, -0.017468832, -0.030411327, -0.011322915, 0.015955338, -0.0055023283, -0.008112044, 0.0040913844, -0.027596511, 0.004897638, -0.0017371586, -0.006598551, 0.02229221, 0.023862282, 0.0016903039, 0.013260753, -0.0063651614, 0.0011678303, 0.016761592, -0.012539368, -0.009547742, -0.012921277, -0.009667973, -0.031429753, 0.0134658525, 0.011266336, 0.0095689595, 0.004862276, -0.0011642941, -0.008416158, 0.001902476, -0.0062449304, -0.029138295, -0.021330362, 0.010856137, -0.012051372, 0.0022914582, -0.01613922, -0.01310516, 0.016379682, -0.013586083, 0.004703147, -0.019335946, 0.023126753, 0.013741676, 0.013310259, 0.012935422, -0.0035167516, -0.030439615, 0.008790995, 0.0013587851, 0.014965202, -0.017115211, 0.048262067, -0.017822452, 0.0083454335, 0.026295189, -0.016252378, 0.027129732, 5.215896E-4, -0.008126189, -0.010297417, 0.0059620347, -0.0035026069, -0.02596986, 0.004851667, 1.8763966E-4, -0.0030906394, -0.0044874386, 0.0061388444, 7.2315306E-4, -0.008373723, -0.0058099777, -0.013338549, -0.010863209, 0.015672442, 0.0293929, -0.0032285512, 0.01902476, 0.031373173, 0.029194873, -0.00989429, -0.0045369454, 0.01478132, 0.011803838, 0.021726418, -0.005764007, 0.0018954036, -0.005180534, -0.027851118, 0.0049789706, 0.00739066, 0.03655017, 0.0022614005, -0.021485956, -0.010134751, -0.026450781, -0.019251077, -0.07915432, 0.0068142586, 0.0060362946, 0.038502153, -0.048544966, 0.02703072, 0.0026415419, 0.033579763, -0.015828034, 0.031231726, -0.0030694222, -0.0064005232, 0.015729021, -0.0031560592, -3.0168213E-4, 0.009420439, -0.015969483, -0.0071608066, -0.003978226, 0.032731075, 0.0106863985, -0.0046041333, -0.0042894115, -0.01036814, -0.033381734, 0.0019926492, -0.015955338, 0.023904717, 0.016860604, 0.0025460646, 0.017355673, -0.019831013, 3.8146766E-4, -0.033947527, -0.018091204, -0.008295927, -0.011938213, -0.013819473, 0.0104600815, -0.063538454, 0.007468456, 0.0052936925, 0.016719157, -0.026761968, -0.0028731632, 0.008854646, -0.03324029, 0.03437187, -0.002694585, -0.020255357, -0.02234879, -0.02591328, -0.01328197, -9.5212203E-4, 0.03737057, 0.0276248, 0.026380058, 0.013416345, -0.0040383413, -0.020920163, 0.0057145003, -0.030383037, -0.048007462, 0.009038529, 0.014852043, 0.008755633, -0.005898383, -0.014767175, 0.02084944, -0.008458592, -0.02792184, 0.028162302, -0.042038355, -0.0019060122, -0.017864887, -0.002307371, -0.021273784, -0.010212548, 0.036974516, -0.015912903, -9.141079E-4, -0.024555378, -0.011315842, -0.028841253, 0.02185372, 0.019449104, 0.021302074, 1.8885522E-4, 0.018883312, -0.050751552, -0.013656807, 0.01505007, 0.0058347313, 0.007963524, -0.010530806, 0.022518527, 0.02299945, 0.004526337, 0.005636704, 0.0059832516, -0.023310635, -0.023338925, -0.07604246, 0.020962598, -0.01092686, -0.005923136, -0.007061793, -0.012850554, 0.008840502, -0.007970597, 0.0038473865, 0.008253492, -0.010615675, 0.00753918, -0.01186749, -0.013932631, -0.012765685, -0.0043990337, -0.006004469, 0.0140104275, 0.0011351204, -0.011591666, -0.026281044, 0.012320124, 0.02688927, 0.0045829164, -0.003398289, 0.026578085, 0.0065950146, 0.02447051, -0.016945474, -0.009696263, 0.018204361, -0.023338925, -0.012857626, -0.008564678, -0.0032798261, -0.01978858, -0.010382285, 0.010714688, 0.020297792, 0.013416345, -3.3345266E-5, -0.0139043415, -0.003748373, -0.008253492, 0.002498326, 0.016252378, -0.03745544, 0.01608264, 0.041359402, 1.4774689E-4, 0.018897457, 0.00675768, -0.013190029, -0.010247909, 0.01505007, -0.022815567, 0.054910127, 0.0091163255, -0.0015638848, -0.02650736, 0.013303188, 0.008486882, 0.0302133, -0.025573803, 0.018954037, -0.005954962, 0.0032338556, -0.011025874, -0.0061423806, -0.02800671, -6.5242907E-4, 0.0029456553, 0.014257962, 0.02950606, 0.011860417, 0.021613259, -0.0053325905, 0.004084312, 0.0034654767, 0.0133456215, 0.011754331, -0.019392526, -0.022461947, 0.0060681207, 0.009533597, 0.033975817, -0.02011391, 0.022702409, -0.01761028, 3.0521833E-4, -0.015361256, -0.008890009, 0.005318446, 0.0023674865, 0.0064960006, 0.031061986, -0.014455989, -0.013126377, 0.00683194, 0.025135314, 0.0069344896, -0.012921277, -0.025785975, -0.01113196, -0.027681379, -0.010728833, -0.013897269, -0.036889646, 0.017270805, 0.01867114, 0.028614936, 0.018430678, -0.01649284, 0.006499537, -0.01478132, 0.017681004, -0.0068814466, -0.025078736, -0.015403691, 0.05683382, 0.0063297995, 0.023777414, 0.030354748, -0.020538254, 0.037851494, 0.02017049, 0.019010615, -0.02120306, 0.008670764, 0.001532943, 0.011591666, 0.012256471, -0.02193859, 8.9952105E-4, 0.0083454335, -0.008854646, 0.017978044, 0.045093633, -0.021401087, 0.07366613, 0.013777038, 0.006043367, 0.004109065, -0.013564866, -0.003171972, 0.013006146, 0.0034990706, -0.0038968932, -0.02376327, -0.00806961, -0.015149084, -0.008479809, -0.045687713, -0.006938026, 0.0068779103, 0.0016425652, 0.008303, -0.010735906, -0.033381734, 0.009441656, 0.0012827568, 0.019222787, 0.012702033, -0.021330362, 0.0025938032, 0.013734603, -0.01657771, -0.0024010802, -0.029675797, -0.015658297, -0.029053425, 0.009243629, -0.01608264, 0.023310635, -0.015870469, -1.6465435E-4, 0.0061176275, 0.0035326646, 0.0015691891, -0.015375401, 0.013380984, -0.013840689, -0.008430302, 0.013550721, -0.0044450043, -0.017681004, -0.023508662, -0.041868616 ], + "id" : "96fedf78-15e9-4b3a-85eb-1055cc459468", + "metadata" : { + "source" : "movies.csv" + } + }, + "d3406b4d-154c-47c4-a062-af130c0c7956" : { + "text" : ",1995-27576-8960-4108-1858-8373-137562-1487-787-7451-277-2048-9679-1996-1979-36658-8681-13387-608-39254-602\r\n888,The Flintstones,Fantasy-Comedy-Family,en,Modern Stone Age family the Flintstones hit the big screen in this live-action version of the classic cartoon. Fred helps Barney adopt a child. Barney sees an opportunity to repay him when Slate Mining tests its employees to find a new executive. But no good deed goes unpunished.,34.284,Hanna-Barbera Productions-Amblin Entertainment,5/26/94,46000000,341631208,91,Released,Yabba-Dabba-Doo!,5.318,2138,John Goodman-Elizabeth Perkins-Rick Moranis-Rosie O'Donnell-Kyle MacLachlan-Halle Berry-Elizabeth Taylor-Dann Florek-Richard Moll-Irwin Keyes-Jonathan Winters-Harvey Korman-Lainey Silver-Melanie Silver-Hlynur Sigur��sson-Marin�_ Sigur��sson-Sheryl Lee Ralph-Jean Vander Pyl-Janice Kent-Jack O'Halloran-Becky Thyre-Rod McCary-Kate Pierson-Fred Schneider-Keith Strickland-Jim Doughan-Laraine Newman-Jay Leno-Alan Blumenfeld-Sam Raimi-Messiri Freeman-Alex Zimmerman-Tommy Terrell-Tabbie Brown-Andy Steinfeld-Bradford Bryson-Dean Cundey-Lita Stevens-Joseph Barbera-William Hanna,manager-jealousy-bad mother-in-law-adoption-family's daily life-stone age-plan-friendship-best friend-dinosaur-cavemen,/ocsb0qiGlcn6UlcDRHa3xxSCc8Y.jpg,/ge7Ut4a2ly41pCS5nSIjyINoUnp.jpg,882-889-181562-8839-885-3050-9327-60568-554-555-880-10137-12139-11674-9598-332-886-11806-11011-42515-10603\r\n447332,A Quiet Place,Horror-Drama-Science Fiction,en,A family is forced to live in silence while hiding from creatures that hunt by sound.,91.585,Paramount-Platinum Dunes,4/3/18,17000000,340952971,91,Released,\"If they hear you, they hunt you.\",7.396,12541,Emily Blunt-John Krasinski-Millicent Simmonds-Noah Jupe-Cade Woodward-Leon Russom-Rhoda Pell,deaf-fireworks-pregnancy-post-apocalyptic future-alien life-form-child in peril-creature-alien invasion-parenting-survival horror-human vs alien-sign languages,/nAU74GmpUk7t5iklEp3bufwDq4n.jpg,/roYyPiQDQKmIKUEhO912693tSja.jpg,520763-333339-493922-164431-419430-925130-376570-346364-300668-284054-299536-383498-405774-32119-427641-363088-460019-439079-138843-260513-338970\r\n4523,Enchanted,Comedy-Family-Fantasy-Romance,en,\"The beautiful princess Giselle is banished by an evil queen from her magical musical animated land and finds herself in the gritty reality of the streets of modern-day Manhattan.", + "embedding" : [ -0.00253112, -0.0439845, -0.012209721, -0.027450081, -0.019806433, 0.018519083, 3.268665E-5, -0.020973096, -0.020906046, -0.022944354, 0.02323937, 0.035750814, 0.030252753, -0.006436756, -0.007590008, 0.024406033, 0.014174273, -0.012498034, 0.0349194, -0.020329421, -0.00874326, -0.0039022833, -0.018076556, 0.012464509, -0.0012010249, 0.011606275, 0.033497952, -0.008521996, -0.0030239343, -0.002403726, 0.008984638, -0.01235723, -0.005263389, -0.01617235, -0.034490284, -0.020892637, -0.009547855, -0.035348516, 0.03183512, -0.007978896, 0.0022511883, 0.0155554935, -0.017204912, 0.0067787087, 0.0033424196, 0.025103347, 0.007127366, 0.0065004528, -0.025505645, 0.020731717, 0.013061251, 0.023668488, -0.0034329365, -0.030869609, -0.005826605, -0.009360116, -0.007817976, 0.011371602, -0.0028998926, -0.0012462833, 0.012162787, -0.004820862, -0.018317934, -0.007053612, -0.02342711, -0.01607848, -0.002762441, -0.020490339, 0.0021522902, 0.0054813, 0.016547827, -0.003526806, 5.830167E-5, 0.006366354, 0.025894532, -0.01889456, -0.01626622, 0.006993267, 0.016024841, 0.009534445, 0.008159929, -0.020932866, -0.0015345963, 0.017070813, 0.017097633, 0.03253244, -0.0011264323, 0.024674231, -0.02899222, 0.02045011, 0.0043179905, 0.03510714, 0.010580418, 0.008635981, 0.004110137, 0.013999944, -0.0054511274, 0.019337088, -0.011820834, -0.022287268, -0.008381193, 0.015796872, 0.003064164, 7.015058E-4, -0.0035502731, 0.007449204, -0.0018120138, -0.019444367, 0.008555521, -0.011773899, -0.021187656, 0.0075430735, 0.03639449, -0.05363963, -0.011552636, -0.014965458, 0.002319914, -0.013731746, -0.024580361, -0.005551702, 0.009071803, 0.021174245, 0.022890713, -0.023520978, 0.029850455, 0.013973124, -0.006071336, -0.0161053, -0.006218845, -0.0041939486, 0.02326619, -0.012565084, 0.011002829, -0.0016536093, -0.04226803, 0.03226424, -0.019725975, 8.92597E-4, -0.020101452, -0.016681926, 0.030172294, 0.041731633, -0.019766204, -0.026806407, -0.032854274, 0.015193426, 0.007053612, -0.011351488, 0.010459729, -0.0051829293, 0.02912632, 0.0084281275, 0.0073419246, 0.015247066, 0.027463492, 0.007784452, -0.0057025636, -0.005642219, -0.015300705, -0.019296858, -3.7924896E-4, 0.01242428, 0.011867769, -0.025224037, -0.015314115, 0.01898843, 0.017969277, -0.0060679833, -0.0019628752, -0.019270038, -0.016641695, 0.026028631, -0.015890742, 0.010493253, -0.0042341785, 0.0292336, -0.006782061, -7.295828E-4, -0.027383033, 0.003506691, -0.008568931, -0.004448737, 0.022917533, 0.045727786, -0.012699183, 0.0019712565, 0.020490339, -0.01884092, -0.008830424, -0.028402185, -0.0011457091, 0.018237475, -5.5232056E-4, -0.0030960126, -0.6466794, -0.007784452, -0.011405127, -0.031513285, 0.024553541, 0.02336006, 0.003409469, -0.016614877, -0.046022806, -0.02466082, -0.022609105, 0.025250858, 0.035509437, -0.015287295, -0.036126293, -7.6562195E-4, 9.2779804E-4, -0.009346706, 0.033095654, 0.016695336, -0.019484596, 0.018545903, 0.0014340221, 0.006359649, 7.7358406E-4, 0.0059573515, -0.020812178, -0.015930971, 0.014013354, -0.0076570576, -0.017929047, 0.028536284, -0.0019477891, -0.0066110846, 0.0349194, 0.009836168, -0.009735594, 0.04484273, 0.012833282, 0.0324788, -0.035777636, -0.0062691323, 0.0051427, 0.020047812, 0.004069907, -0.012008573, 0.0034429939, -0.003801709, 3.597627E-4, -0.017097633, -0.00479069, -0.0019695803, 0.001708087, -0.008609161, -0.01316853, 0.015394575, 0.027356213, -0.011693439, 0.037494104, -0.0137853855, -0.016440548, 0.023936685, 0.009849577, 0.027088014, -0.010473139, 0.034383003, 0.007127366, 0.006517215, 0.0129539715, -0.010875436, 0.018827511, 0.01741947, -0.023453929, 3.3482866E-4, 0.016252808, 0.0036743148, 0.014469291, -0.0027808796, -0.0017030584, 0.016319858, -0.0042140638, 0.012672363, -5.4854905E-4, 0.009722183, 0.03494622, -0.0032770464, -0.033873428, 0.012337116, 0.024969248, -0.0147240795, 0.019216398, 0.011659915, -0.0033055423, -0.012122557, -0.0117537845, -0.009098623, -0.01012448, 0.0145095205, 0.014227913, -0.06683498, -0.011854359, -0.021589952, 0.017111043, -0.00797219, 9.688659E-4, 5.560921E-4, -0.0033960592, -0.0031043938, 0.023024812, -0.011116814, 0.004147014, -0.00109626, -0.03078915, -0.011988458, -0.020329421, -0.030520951, 0.02751713, 0.009903217, 0.008139814, 7.962133E-4, 0.00405985, -0.006295952, 0.0033340384, -0.014134043, 0.014911817, 0.01752675, 0.0021891675, 0.014965458, 0.0063361814, -0.0020634497, 0.010513368, 0.0063998788, 0.017204912, -0.009172377, -0.006091451, -0.0025981697, 0.025894532, -0.009521035, 0.025840893, 0.004814157, -0.021737462, -0.012115852, -0.02781215, -0.021469263, -0.0109693045, -0.017339012, -0.0189482, 0.006024401, -0.009547855, 0.0051594623, -0.033068832, -0.011552636, -0.012712593, 0.015220245, -0.007154186, 0.012296886, -0.03741364, -0.027946249, 0.03073551, -0.0034312601, 0.015756642, 0.02480833, -0.014469291, -0.018358164, 0.016574647, 0.007737517, -0.022407956, 0.021308344, 0.02054398, -0.028750842, 0.012565084, -0.00948751, -0.02196543, 0.031513285, -0.03373933, 0.027999887, -0.022434777, 0.014134043, -0.009923332, -0.01089555, -0.0062020826, 0.0060612783, -0.011552636, -0.008361078, 0.04248259, 0.013202054, 0.008904179, -0.0109626, -0.016252808, 0.0162394, 0.0063160667, 0.011887884, -0.01747311, -0.010050726, -0.012819872, 0.012149377, -0.018465443, 0.008079469, 0.0059539992, 0.01916276, 0.05852084, 0.03215696, 0.013986534, -0.010674287, 0.0061048605, -0.041329335, 0.006570855, -0.01619917, 0.024218295, -0.0042710556, 0.013597647, 0.0064233458, 0.0042844657, -0.012048802, 0.002782556, 0.009822758, -0.025545875, 0.013745156, -0.0040062102, 0.0016251132, -0.004167129, 0.004730345, 0.027047785, 0.009728888, -0.018398395, 0.0075095487, 0.009608199, -0.019645516, -0.00220593, -0.0075028436, 0.0055047674, 0.006899398, -0.012283476, -0.0030658403, -0.0082135685, 0.004294523, 0.029582256, -0.027262343, 0.031352364, -3.3482866E-4, -0.008334258, 0.0049951905, 0.04213393, -0.0044185645, -0.0043917447, -8.2429027E-4, 0.0067150113, 0.007992305, -0.01739265, 0.039478768, -0.011083289, 0.016588056, -0.02201907, 0.018452033, 0.010379269, 0.010238465, 0.015367755, 0.0018874445, 0.03199604, 0.027946249, 0.021415623, -0.01902866, 0.020034403, 0.007429089, -1.6563332E-4, -4.7186113E-4, -0.026672307, -0.011472177, -0.0037715368, -0.02786579, -0.022783434, -0.0349194, -0.010701107, -0.0049247886, -0.012732708, -0.024178063, -0.0076436475, 0.026725946, 0.0086896205, 0.013959714, -0.011244208, -0.019202989, 0.019109119, 0.002564645, -0.016279629, -0.008850539, -0.01458998, -0.010479843, -0.010392679, -0.017942457, 2.1602523E-4, 0.022595694, -0.019712565, 0.011157043, -0.0065540927, -0.01017812, 0.007288285, -8.4859575E-4, 0.0020701545, 0.02329301, -0.009239427, 0.02754395, -0.023883047, -0.008528702, 0.024151245, -0.02333324, 0.014777719, -0.012793052, -0.00200981, 0.007301695, 0.014147453, 0.015515264, -0.024043966, 0.018317934, -0.027463492, 9.2025497E-4, -0.0029971146, 0.012940561, 0.013275809, -0.024929019, -0.02063785, -0.036260393, -0.023748947, 0.005065593, 0.0726817, 0.0025881124, 0.011760489, 5.066431E-4, 0.009232721, 0.0024288697, -0.021469263, -0.003660905, 0.0017265257, -0.005598637, 0.030896429, 0.008186749, 0.021174245, 0.012249951, 0.010305515, -0.009011459, 0.004260998, -0.0014767661, 0.020074632, -0.015394575, -0.023909867, 0.0019645516, 0.015475034, 0.032934733, -0.006148443, -0.029394519, 0.00951433, 0.0044252696, 0.010520073, -0.011317963, -0.016494187, 0.005692506, -0.0069597424, 0.01449611, 0.022247037, 0.011794014, 0.0075296634, 0.0041168416, 0.030225933, 0.008548817, 0.015716413, 0.005518177, 0.003163062, -0.011646505, 0.029796816, -0.009862987, 0.0028898353, 0.0083208475, 0.026055451, -0.019484596, 0.015582313, -0.0053304383, -0.009688659, 0.0013049517, 0.037172265, 0.014777719, -0.013671401, -8.4859575E-4, -0.02054398, -0.012531559, 0.019940533, -0.03931785, 0.010077546, -0.012109147, -0.010406089, -0.013235579, -0.024352392, -0.0014390508, -0.004596246, 0.031540103, -4.4252697E-4, -0.02636388, -0.022153169, -0.0061115655, 0.013135005, 0.0010711164, 0.020852407, 0.006601027, 0.0030306391, 0.018063147, -0.01457657, -0.03660905, 0.006108213, -0.01457657, -0.015756642, 0.005675744, 0.002376906, 0.01304784, -0.022179987, 0.010171415, 0.013644582, -0.0014004973, -0.020530568, -0.017204912, 0.018291114, -0.009735594, 0.0037145445, 0.0154482145, 0.009145557, -0.0023852873, 0.016869664, -0.009118738, -0.0033625346, -0.008454947, -0.014254732, -0.007824682, -0.0014667087, 0.009990381, -0.024955839, -0.02773169, -0.018170426, -0.008696325, 0.022890713, -0.0032334642, 0.01025858, 0.0031597095, 0.019377317, 0.003323981, -0.007730812, -0.0020701545, 0.018747052, -0.014938638, 0.017178092, 0.020020993, -0.006443461, 0.021107195, -0.006493748, -0.047041956, -0.015166606, 0.024446262, -0.0061115655, 0.010942485, -0.009869692, -0.015032507, -0.017875407, -0.010748042, 0.008401307, 0.005256684, -0.007757632, 0.0082135685, -0.014764309, 0.01243769, 0.021335164, -0.01897502, -0.007945371, -0.031325545, 0.01458998, -0.030172294, 0.017902227, 0.034061167, -0.020704899, 5.7075924E-4, -0.016601466, 0.0010275343, 0.012652248, -0.019109119, -0.011814129, 0.0066446094, 0.038754635, 0.012719298, 0.053559173, 0.021522902, 0.015488444, 0.008314143, 0.012907037, 0.015863921, -0.004961666, 0.0022813606, -0.02616273, 0.005095765, -0.0038184712, 0.009179082, 0.019471187, 0.015193426, -0.0021807863, 0.026725946, 0.003147976, 0.007160891, 0.0012622076, -0.027423263, -0.010788271, 0.011579456, -0.016306449, 0.015394575, -0.017969277, -0.020114861, 0.03615311, -0.010848615, -0.0073486296, -0.008951114, 0.026618667, 0.0017164683, 0.022997992, -0.0032083206, 0.008977934, -0.027034374, -0.0066446094, -0.028160807, -0.014522931, -0.0072681704, -0.0064568706, 0.012605313, -0.00732181, -0.011552636, 0.005209749, 0.010030611, -0.015153196, -0.014134043, 0.023789177, 0.0145095205, -0.010694401, -0.034463465, 0.0050823553, -0.027919428, 0.002487538, 0.012612019, -0.009749003, 0.009869692, -0.00479069, -0.03328339, 0.014429061, -0.013456843, 0.032317877, 3.8993498E-4, 0.053559173, 0.0102451695, 0.0050790026, -0.023051633, 0.024285344, -0.0066647246, -0.017902227, 0.016775794, 0.016775794, 9.814376E-4, -0.009279656, 0.004800747, 0.00944728, -0.023829406, -0.045459587, 0.0072145304, 0.016574647, 0.008247093, -0.021442443, 0.0055349395, -0.014214503, 0.014482701, 0.008589046, -0.011921409, 0.014536341, -0.0042375308, -0.02778533, 0.0017650791, -0.0074894335, 0.017781539, 0.011948228, -0.021308344, 0.014858178, -0.01752675, -0.0067317737, -0.005967409, -0.016802615, 0.02627001, -0.017164683, -0.0020332774, -0.004834272, 0.0146168, 0.0047404026, 0.001974609, 0.013416613, 0.025210626, -0.006363001, 0.0063495915, 0.0029904095, 0.021335164, 0.0039056358, 0.016641695, -0.023051633, -0.0035201008, -0.039666507, -0.01157275, 0.023588028, 0.003387678, -3.1597097E-4, -0.010151301, -0.006135033, -0.0070804316, 0.016963534, -0.009319887, 0.015287295, -0.053666454, 0.0111838635, 0.0010350773, 0.015300705, -0.0076570576, -0.009681954, 0.0052298643, 0.012223131, 0.023105271, 0.01456316, -9.5629407E-4, 0.007838091, -0.0070469067, -0.031084167, -0.03239834, -0.0015932648, -0.0132623995, 0.0058031376, -0.012042098, -0.0013854111, -0.0049918382, 0.0065775597, 0.007885026, 0.0025881124, -0.028214447, 0.008092879, 0.024996068, 0.0022880656, -0.0042811134, -0.004646533, 0.025411775, 0.016681926, -0.007127366, 0.016467366, 0.02326619, 0.05970091, -0.031486463, 0.009112032, -0.001581531, -0.015542083, -0.026873456, -0.004492319, 0.031245086, 0.01019153, -0.012524854, -0.034812123, -0.007127366, -0.002066802, 0.032881096, -0.032559257, 0.004254293, 0.03969333, 0.027758509, 0.041463435, 0.04529867, -0.008200158, -0.027262343, -0.020530568, -0.019109119, -0.01594438, -0.0057293833, 0.024057375, 0.014268142, -0.005712621, 0.0054142503, -0.018666591, -0.009554559, -0.016695336, -0.03226424, -0.004948256, 0.015609133, 0.044815913, 0.0057595554, 0.011244208, 0.030306391, -0.017218322, 0.015407984, -0.029796816, 0.011089994, 0.0043950975, 0.024419442, 0.020597618, 0.031620562, -0.013255694, -0.019779615, 0.013537303, 0.001341829, 0.011867769, 0.0347853, -0.023453929, 0.0059070643, -0.008890769, -0.011311257, 0.0037413645, -0.01905548, 0.029769996, -0.031647384, -0.0032586076, -0.0074894335, 0.006517215, -0.011083289, 0.0037480693, 0.0038251763, -0.030011375, 0.007918551, -0.011130224, -0.020838996, -0.011291143, -0.013892665, 0.02189838, 0.010412794, -0.010754746, 0.019618696, 0.01457657, -0.017178092, 0.01916276, -0.0025043003, 0.01017812, -0.012618723, -0.019927124, -0.0017885464, 0.024392623, -0.041195236, 0.015180016, -0.03379297, 0.0057260306, -0.0037983565, -0.0039458657, -0.021522902, 0.047631994, 0.01104306, -0.028858121, 0.0039022833, -0.007710697, -0.0035402158, -0.012216426, -0.0015128052, -0.030011375, -0.004173834, -0.0010283723, 0.021429034, -0.020195322, -0.037252724, 0.0159712, -0.0022193398, -0.013503778, 0.01617235, 0.18119468, -0.015501854, 0.02024896, 0.03786958, 7.056964E-4, 0.01607848, 0.022890713, 0.012209721, -0.0263907, 0.01603825, -0.016628286, 0.018250884, -0.0050857076, 0.0039961524, 0.005146052, -0.013812206, -0.013295924, -0.010754746, -0.03215696, -0.03360523, -0.0033910305, 3.597627E-4, -0.021616772, -0.019645516, 0.009762413, -0.0010878788, 4.104165E-5, -0.01027199, 0.018304525, 0.009407051, -0.019176168, -0.012625429, 0.0023735538, 0.010929075, -0.021536313, -0.015689593, 0.0073553347, 0.019793024, 4.2911706E-4, 0.019377317, 0.001630142, -0.015622543, -0.018197246, -0.026484568, 7.262303E-4, 0.021294935, -0.019337088, -0.011874474, -0.029609077, -0.0018673297, -0.03253244, 0.004026325, 0.014120633, 0.006852463, -2.3676868E-4, 0.0020550685, 0.002819433, -0.009440576, -0.009132148, 2.5520733E-4, 0.022568876, 0.02633706, -0.017821768, -0.0010275343, -0.0072145304, 0.023453929, -0.032586075, -0.0072279405, 0.022997992, -0.026216371, -0.008937703, -0.002782556, -0.014388831, 0.009842873, -0.01585051, -0.020892637, -0.0026149321, 0.028348546, 0.007703992, 0.023011403, -0.030118654, 8.29319E-4, -0.0068926928, -0.003603913, -0.012907037, -0.010432908, 0.029394519, -0.01614553, 0.0050991178, -0.017674258, -0.011465471, -0.003603913, -0.0079051405, 0.0015630925, 0.0036877247, 0.0073486296, 0.008387897, 0.016453957, -0.006872578, -0.010359154, -0.017312191, 0.023708718, 0.029716356, -0.0043246956, -0.035750814, -0.004294523, 0.0028512818, 0.015475034, 0.014080403, -0.015676182, -0.0028144044, -0.026886865, 0.0012680744, -0.0068357005, 0.012162787, 0.009896512, 0.012256656, -0.020584209, 0.015300705, -0.02181792, -0.0262566, -0.014884998, 0.0058467197, 0.012498034, 3.991543E-4, -0.033042014, -0.022381136, 0.0033155999, -0.0047471076, -0.029743176, -0.0016209226, -0.020074632, 0.01749993, -0.0020232198, -0.0027155064, 0.024379212, 0.022273857, 0.009521035, 6.331991E-4, -0.006295952, 0.012270066, -0.0076369424, -0.004830919, 0.0057226783, 0.008562227, -0.02912632, 0.008656096, -0.017687669, -0.011740374, -0.036984526, -0.016735565, -0.012182902, 0.019994173, 0.0039726854, 0.047605176, -0.0023031516, -0.029850455, -0.04800747, 0.010774861, 0.017888818, -0.03913011, -9.319886E-4, 0.021214474, -0.024312163, -0.01241087, -0.012337116, -0.17143227, 0.008220274, 6.306847E-4, -0.017634029, 0.017191501, 0.013329449, 0.020074632, 0.0020181912, 0.016400317, -0.0174597, 0.0068558156, -4.349839E-4, -0.05227182, -0.0131283, 0.003127861, 0.035670355, -0.016923305, 0.034409825, 0.022635926, -0.01089555, 0.015622543, 1.4981382E-4, 0.0021020032, 0.005705916, 0.010794976, 0.024111014, 0.018076556, -0.010104366, 0.0030742215, -0.013879254, -0.039854247, -0.004056497, -0.018492263, -0.009112032, -0.008897474, -0.010412794, -0.017151272, -0.013919485, 0.00944728, -0.0058903024, 0.019940533, 0.021134015, 0.01021835, -0.0019997526, 0.007925255, 0.01606507, 0.026538208, -0.012263361, 0.02333324, -0.028294906, -5.9841713E-4, -0.027074605, 0.016628286, -0.005608694, -0.010339039, 0.034570742, -0.020222142, -0.0017038964, 0.010184825, -0.022367727, -0.019243218, -0.0140938135, 0.015367755, -0.008957818, -0.011391717, -0.016507598, -0.022434777, 0.013946304, -0.025237447, 0.004753812, -0.033229753, -0.023976916, 0.018505674, 0.0017751366, 0.019900303, -0.02201907, -0.037038166, -0.004492319, 0.004676705, 0.011163749, -0.014482701, 0.044145416, -0.01311489, -0.0026668955, 0.016695336, -0.010902255, 0.025572695, -0.00617191, 0.0018572722, -0.0041704816, 0.004482262, -0.01310148, -0.01449611, -0.012752823, 0.011224093, 0.013564122, -0.0062993043, -0.0051628146, 0.034624383, -0.0074559087, -0.004807452, -0.028402185, -0.014294962, 0.032425158, 0.032612897, 0.016547827, 0.0048040994, 0.00552153, 0.0320765, -1.0811738E-4, -0.0015748261, 0.011022944, 0.0322106, 0.009956857, -0.028777663, 0.0037648317, -0.013007611, -0.022662744, 0.0075229583, 0.0040028575, 0.02494243, -0.0015547113, -0.003310571, 0.004090022, -0.006165205, -8.8253955E-4, -0.0910801, 6.403231E-4, -0.020624438, 0.03398071, -0.016252808, 0.02606886, -0.008790195, 0.020959686, -0.0065105106, 0.028724024, -0.008086175, -0.006332829, 0.0038486437, -0.019176168, 0.03218378, 0.009950152, -0.024003735, -0.009313181, -0.018639773, 0.032881096, -0.0030574591, -0.02635047, 0.004056497, -0.016561236, -0.030011375, 0.005374021, -0.031781483, 0.012591904, 0.009232721, 0.0042978753, 0.015823692, -0.015528673, 0.012591904, -0.04226803, -0.038513254, -0.009923332, -0.022796843, -0.018143605, 0.0025696736, -0.044950012, 0.0053036185, 0.015501854, -0.004948256, -0.031379186, 0.001335124, -0.026055451, -0.02344052, 0.023453929, -0.024929019, -0.027114835, -0.012417575, -0.010050726, -0.025156988, -0.021348573, 0.030279573, 0.017902227, 0.0054075452, -0.009695363, 0.004562721, -0.017339012, -0.0076771723, -0.014737489, -0.025452005, 0.014522931, 0.005749498, 0.016588056, -0.0142010925, -0.013584237, 0.019699154, -0.009091917, -0.020490339, 0.023105271, -0.031432826, 0.010010497, -0.012551674, 0.014402241, -0.00950092, 0.0016033221, 2.6715052E-4, -0.0347853, 0.0053438484, -0.03660905, 9.286361E-4, -0.0036340852, 0.0050722975, 0.010888846, 0.028402185, 0.019900303, 0.004307933, -0.035455797, 0.011297847, 0.028831303, -0.008877359, -0.008045945, -0.008079469, 0.03778912, 0.014791128, -0.0035033384, 0.0050555356, 0.013584237, -0.020771947, -0.01748652, -0.07595372, 0.02751713, 0.014911817, -0.011659915, 0.015488444, -0.008159929, 0.0022880656, -0.013295924, 0.011787309, 0.0061048605, -0.0075229583, 0.014281552, -0.01089555, -0.0065306253, -0.0031882057, -0.0035670355, -0.005974114, -0.0017667554, -0.003815119, 0.00728158, -0.001763403, 0.0027356213, 0.020128272, 0.012994201, 0.0047739274, 0.02181792, 0.002971971, 0.014160863, -0.011210683, -0.018210655, 0.025814073, -0.019538237, -0.009011459, 0.005598637, -0.008280618, -0.010587122, -0.028375365, -0.010426204, 0.02767805, 0.019430958, -0.0075430735, -0.0147240795, -0.005488005, -0.027919428, 0.003141271, 0.032720175, -0.029367698, 0.0083208475, 0.033685688, 0.005206397, 0.023065042, 0.007898436, 0.0071877106, -0.017271962, 0.01166662, -0.025317907, 0.03650177, 0.001405526, -0.0128936265, -0.0026870104, 0.011391717, 0.012350526, 0.012109147, -0.02928724, -0.020490339, 0.004569426, 5.334629E-4, -0.0076503525, 8.209378E-4, -0.022220219, -0.0069195125, 5.510634E-4, 0.009950152, 0.031781483, 0.012303591, 0.02196543, -0.03371251, 0.007603418, 0.006899398, 0.022702975, 0.02912632, -0.015863921, -0.027195293, 0.032317877, 0.022407956, 0.031218266, -0.021670412, 0.0069597424, -0.015193426, 0.008696325, -0.023588028, -0.012256656, 0.020181911, 0.028321726, -0.009923332, 0.014871588, -0.0011448709, 0.0051929867, 0.005444423, 0.018545903, -0.0039022833, -0.0032234066, -0.005565112, 0.0011423565, -0.019632105, 0.0065004528, -0.010466433, -0.027758509, 0.019511417, 0.009923332, 0.017151272, 0.014737489, -0.014402241, 0.0108150905, -0.030413672, 0.019658925, -0.014134043, -0.011472177, -0.014174273, 0.026779586, 0.011110109, 0.0189482, 0.038942374, -0.007945371, 0.04519139, 8.3853834E-4, 0.021536313, -0.025894532, -0.007784452, -0.007750927, -0.018063147, -0.012571788, -0.02773169, 0.009226017, -0.004609656, -0.004556016, 0.012819872, 0.028616743, -0.028294906, 0.06581583, 0.006285894, 0.011405127, 0.015863921, -0.015770052, 0.0026652191, 0.027383033, 0.02622978, -0.023386879, -0.021147424, 0.01751334, -0.004250941, 0.003851996, -0.017258551, 0.0080124205, -0.012035392, 0.004442032, 0.015609133, -0.03175466, -0.01456316, -0.0037581266, -0.012685773, 0.022917533, -0.008548817, -0.02034283, -0.013356268, 0.019229809, -0.009494215, -0.003204968, -0.03542898, -0.004056497, -0.0057595554, 0.010540187, 0.0072346455, 0.027141655, 0.012752823, -0.014375421, 5.9715996E-4, 0.012471215, 0.0045090816, -0.0073352195, 0.01017812, -0.015421394, 0.003717897, 0.0058064903, -0.006346239, 0.004981781, -0.020691488, -0.024419442 ], + "id" : "d3406b4d-154c-47c4-a062-af130c0c7956", + "metadata" : { + "source" : "movies.csv" + } + }, + "548c4905-ecda-445a-81dc-8f94d171e162" : { + "text" : "24,18424,Gal Gadot-Chris Pine-Connie Nielsen-Robin Wright-Danny Huston-David Thewlis-Sa��d Taghmaoui-Ewen Bremner-Eugene Brave Rock-Lucy Davis-Elena Anaya-Lilly Aspell-Lisa Loven Kongsli-Ann Wolfe-Ann Ogbomo-Emily Carey-James Cosmo-Wolf Kahler-Alexander Mercury-Martin Bishop-Flora Nicholson-Pat Abernethy-Freddy Elletson-Sammy Hayman-Michael Tantrum-Philippe Spall-Edward Wolstenholme-Ian Hughes-Marko Leht-Steffan Rhodri-Andrew Byron-Dominic Kinnaird-Rachel Pickup-Ulli Ackermann-Frank Allen Forbes-Peter Stark-Rainer Bock-Josh Bromley-Jennie Eggleton-Eva Dabrowski-Harvey James-George Johnston-Danielle Lewis-Florence Kasumba-Eleanor Matsuura-Josette Simon-Doutzen Kroes-Hayley Warnes-Caitlin Burles-Jemma Moore-Samantha Win-Brooke Ence-Madeleine Vall-Hari James-Jacqui-Lee Pryce-Betty Adewole-Caroline Winberg-Lizzie Bowden-Kattreya Scheurer-Smith-Rekha Luther-Thaina Oliveira-Ooooota Adepo-Zinnia Kumar-Toma McDonagh-Amber Doyle-Freddy Carter-Fred Fergus-Tim Pritchett-Gana Bayarsaikhan-Camilla Roholm-Stephanie Haymes-Roven-Nia Burke-Dee Lewis Clay-Tori Letzler-Mayling Ng-Zack Snyder-Lee Neville,hero-greek mythology-island-feminism-empowerment-world war i-strong woman-superhero-based on comic-female protagonist-period drama-super power-heroine-woman director-female empowerment-1910s-dc extended universe (dceu),/imekS7f1OuHyUP2LAiTEM0zBzUz.jpg,/AaABt75ZzfMGrscUR2seabz4PEX.jpg,283995-315635-141052-263115-284053-209112-271110-284052-102899-293660-118340-76338-284054-166426-99861-297761-10195-181808-246655-321612-282035\r\n758891,\"Hi, Mom\",Drama-Comedy-Fantasy,zh,After her mother Li Huanying is fatally injured in a car accident in 2001 grief-stricken Jia Xiaoling finds herself transported back in time to the year 1981 where she becomes her mother's close friend. Jia Xiaoling feels that she has not been a good enough daughter in the present so back in 1981 she does all she can to make Li Huanying happy including setting her up with a factory manager's son Shen Guanglin in the hope of giving her mother a better husband a better daughter and a better life than she had the first time around.,8.809,Alibaba Pictures Group-Tianjin Maoyan Media-��__�__叫�__���__��_�����_�__�_��΃�Ώ�-��__��__����±__�__���___����_�_��΃�Ώ�-��__�__�_�_�__��__���___����_�_��΃�Ώ�,2/12/21,59000000,822049668,128,Released,,7.", + "embedding" : [ 0.0074723493, -0.022504484, -0.018751495, -0.035942607, -0.027548824, 0.024993025, -0.010236648, -0.008925119, -0.014931248, -0.04035472, 0.02351335, 0.03126146, 0.009516989, -0.0142048625, 0.0032300593, 0.024723994, 0.011736498, -0.010203019, 0.0068603028, -0.018226882, 6.7888416E-4, -2.4738285E-4, -0.020715425, 0.020029394, 0.008992378, 0.010559485, 0.048129734, -0.005844709, -0.003880779, -0.015926663, 0.0024296907, -0.009846552, 6.099448E-4, -0.018791849, -0.009140344, 0.008851136, 0.0179444, -0.024495317, 0.029378237, -0.007996961, 6.8518956E-4, 0.012415803, -0.009691859, 0.010646921, -0.021670485, 0.0018546358, 0.009066361, -0.008602282, 0.013135462, 0.03325229, 0.015711438, 0.02257174, -0.018522818, -0.021132423, -0.009873455, -0.0032351036, -0.0077481065, -5.616032E-4, -0.0032838655, 0.006470207, 0.008339976, -0.015684536, -0.037987243, -0.012294739, -0.026136408, -0.015967019, -0.0075597847, -0.024670187, -0.0011946679, 0.012879882, 0.022154743, 0.018146174, 0.015173376, -0.0044861, 0.023257772, -0.034624353, -0.036776602, -0.005565589, -0.012469609, 0.0012678108, 0.011050468, -0.014056895, -0.007115883, -0.007445446, 0.010149213, 0.016047727, -0.021603229, 0.027979273, -0.020029394, 0.0033090871, 0.004667696, 0.024481865, 0.002646597, 0.011245516, 0.026096053, 0.021172777, -0.021468712, 0.024643283, -0.026297828, -0.026687924, 0.005373904, 0.004795486, -0.018495914, -0.012476335, -0.007358011, -0.011918095, 5.0779694E-4, -0.009725488, 0.027575728, 0.015280988, -0.010572937, -0.0014603365, 0.013686976, -0.029862495, -0.010398067, -0.02119968, 0.014299023, -0.022289257, -0.006594634, -0.023984157, 0.03666899, 0.02163013, 0.0045567206, -0.02401106, 0.026001893, 0.034409128, 0.0018142811, -0.019155042, 0.013101833, 0.0039581256, 0.035431445, -0.022881128, 0.029216819, 0.0057841768, -0.02341919, 0.03427461, -0.029647268, 0.0103644375, -0.018791849, -0.004825752, 0.033790354, 0.0316112, -0.016989337, -0.022760063, -0.02913611, 0.025531087, 0.012496512, -0.0023170337, 0.023567157, 0.0076270425, 0.02332503, 0.029189916, 0.015025408, 0.018186528, 0.027064567, 0.00927486, -0.019208848, -0.015523116, -0.0037630778, -0.029432043, 0.001829414, -0.019276105, -0.016101534, -0.010478776, -0.003635288, 0.0243608, 0.020957552, -0.004492826, 6.448348E-4, -0.003726086, -0.02469709, 0.026956955, -0.025167895, 0.016074631, -0.003594933, 0.0098936325, 0.005084695, -0.006537465, -0.017621562, -0.010882324, 0.0056799273, -0.0035108607, 0.029943204, 0.026849343, -0.014056895, 0.013182542, 0.014151056, -0.019370267, 1.2379652E-4, -0.0064063123, -0.0074723493, 0.023742028, -0.0064533926, -0.021885712, -0.6426624, -0.00647357, -0.0063323285, -0.0075665102, 0.006988093, 0.014810183, 0.001911805, -0.019800717, -0.04479374, -0.014877441, -0.026069151, 0.021065164, 0.018226882, -0.0072033177, -0.027373953, -0.022275807, 0.007990235, -0.015119569, 0.017204564, 0.005417621, -0.038175568, 0.011232064, 0.011420387, -0.0060061277, 0.010694002, 0.0045836237, 0.0010492228, -0.018939815, 0.0031308539, 0.017164208, -0.021737743, 0.0358619, 0.034678157, 0.023526803, 0.03793344, 0.0028988142, -0.02341919, 0.059455957, 0.03101933, 0.028732562, -0.0461658, -0.0015687898, -0.0011501096, 0.0012207304, -0.02624402, 0.019289557, -0.006981367, 0.00591533, 0.0042103427, -0.0015444088, -0.010949581, -0.005589129, 0.0042776004, -0.008743523, -0.009933988, 2.5074574E-4, 0.0033511233, -0.032875646, 0.012193852, 0.0070957053, -0.012193852, 0.02196642, -0.004970357, 0.01802511, -0.007512704, 0.034812674, -0.013976186, -0.0012081194, 0.0110908225, -0.031745713, 0.0076808487, 0.012361997, -0.0130009465, -0.0069611897, 0.0024027873, 0.012012255, 0.045277998, 0.0077548325, -0.003169527, 0.030696493, 0.007243673, -0.012563771, 0.009234506, 0.005111598, 0.021414906, -0.008736798, -0.031315263, 0.011454015, 1.0975381E-5, -3.8862438E-4, 0.005417621, 0.026916599, 0.004260786, 0.006947738, -0.0034015668, -9.45157E-6, -0.019975588, -8.306347E-4, 0.025235154, -0.06445994, -0.0086964425, -0.021697389, 0.03239139, -0.010021423, 0.009523715, 0.011312773, -0.022423774, -0.0073109306, 0.019329911, -0.011037016, -0.0010651965, 0.0044558337, -0.0018849018, -0.001972337, -0.011205161, -0.023177061, 0.013505381, 0.035162415, -0.005770725, 0.0049434532, 0.01144729, -0.0016402513, 0.002935806, 0.0075059785, 0.015442407, 0.03231068, -0.012321642, -0.0034049298, 0.020190813, 0.017231466, 0.011225339, -0.012913511, 0.021388004, -0.024495317, 0.011985352, 0.0010382934, 0.005400807, -0.010014697, 0.036615185, 0.0011711277, -0.010734356, 0.008245815, -0.017446691, -0.013135462, -0.014635312, -0.004267512, -0.024629831, -0.0032266963, -0.0071764146, -0.010095406, -0.029727979, 0.00807767, 0.01521373, 0.014460443, 0.002570932, 0.0056563867, -0.00619445, -0.007290753, 0.016464727, -0.023311578, 0.008434137, 0.022504484, 0.01529444, -0.018926365, 0.014177959, -2.188508E-5, -0.017110402, 0.0213611, -0.0010710816, -0.020661619, 0.004539906, -0.02487196, -0.012718463, 0.015711438, -0.0072571244, 0.014514249, -0.0043112296, 0.022531386, 4.807887E-5, -0.0094295535, -0.0024717266, -0.007162963, -0.027844759, -0.018563172, 0.02093065, 0.020406038, 0.015509665, -0.004452471, -0.0042103427, -0.001799148, -0.021616679, -0.005945596, -8.474492E-4, -0.016343663, -3.732812E-4, 0.019289557, 0.012288013, -0.006561005, 0.010182842, -7.6001394E-4, 0.03314468, 0.023903446, 0.014070346, 0.0029593464, 0.016168792, -0.026217118, 0.0027273067, -0.026513053, 0.016478179, -0.007983509, 0.026136408, -0.02495267, -0.026983857, 0.009981068, 0.005770725, 0.020473296, -0.007956606, 0.009194151, -0.0019992401, 0.008326524, 0.008568653, -0.0064567556, 0.010061777, 0.01059984, -0.034893382, 1.7655191E-4, 0.019168492, -0.023163611, 0.00854175, -0.008898216, -0.008373605, -0.00435831, -0.011971901, 0.02290803, -0.0034805948, -0.023338482, 0.029862495, -0.0050107115, 0.02530241, -0.01802511, 0.0044760113, 0.013095107, 0.03058888, -0.009173973, 0.0015898079, -0.0200832, 0.014863989, 0.0055117826, -0.014245217, 0.043798324, -0.016639598, 0.020298425, 0.0025961539, 0.0069342866, 0.015011957, -0.024925767, -0.008097848, 0.020284973, 0.0350279, 0.024239736, 0.03239139, -0.031987842, 0.02247758, 0.012140046, 0.0073445593, 0.0021018086, -0.007734655, 0.0019286195, -0.015052311, -0.03400558, -0.004640793, -0.021805001, 0.016437823, 0.0038706905, -0.0063558687, -0.0062549817, -0.004243972, 0.018159624, 0.012617577, 0.013828218, -0.015697988, -0.037906535, 0.0051822187, 0.027790952, -0.015361697, -0.020648167, -0.022652451, -0.0022632272, -0.027575728, -0.01793095, -0.0066854325, 0.029889397, -0.016424373, -0.008454314, -0.01914159, 0.0098869065, 0.024764348, -0.007452172, 0.015267537, 0.002574295, -0.014729474, 0.014433539, -0.009234506, -0.016209146, 0.012012255, -0.0042742374, -0.0075934133, -0.016720306, 0.007546333, -0.010068503, -0.011978626, -0.006288611, -0.035754282, -0.003722723, -0.010075229, -0.01162216, -0.012671383, 0.013814767, 0.009321941, -0.013882024, -0.017487045, -0.034086287, -0.024804702, 0.006941012, 0.08135512, 0.045600835, 7.465624E-4, 0.014850538, -0.012496512, 0.007579962, -0.012227481, -0.0013947601, -0.0028786368, -0.017392885, 0.020607812, -0.014460443, 0.016316758, -0.008380331, 8.260107E-4, -0.008212186, -0.0057942653, -0.007943154, 0.0063558687, -0.00713606, -0.01353901, -0.014299023, 0.02255829, 0.018845655, 0.011891192, -0.00807767, 0.015536568, 0.015953567, -8.2222745E-4, 0.015079214, -0.007425269, -0.0071764146, 0.0015427273, 2.6587877E-4, -3.3734026E-4, 0.0014561329, 0.030857911, 0.0077010263, 0.023338482, -0.0011139584, -0.003594933, 0.017231466, 0.014742925, -0.003221652, 0.013666799, -0.021697389, -0.010135761, 0.01598047, 0.029862495, -0.034167, 0.030723395, 0.0045264545, -0.012550319, -0.014258669, 0.031826425, -0.017621562, -0.0011459059, -0.005178856, -0.004620616, 0.003507498, 0.0060498454, -0.026553407, -0.0010929403, -0.0031779343, -0.010714179, -0.023943802, -0.017043144, -0.0039984803, -0.009476634, 0.0032132447, -0.008824233, -0.021428358, 0.0019168493, -0.0070822537, 0.013229623, -0.0047114138, 0.04000498, -0.0076875747, 0.009073087, 0.0166665, -0.03212236, -0.03136907, 0.012462883, -0.016854823, -3.2010544E-4, 0.010263551, -0.007290753, 0.026486149, -0.008871313, 0.0031073135, 0.0032620067, 0.009247957, -0.00858883, -0.010216471, 0.031422876, 0.021401454, 0.0071024313, 0.00700827, 0.0027373952, 0.014689119, 0.010956307, -0.026903149, -0.007243673, -0.027024213, -0.028355919, -0.0045331805, -0.0069948183, -0.0044793743, -0.020863391, -0.01735253, -0.025450379, -0.019975588, 0.0033729821, -0.0078086387, -0.005740459, -0.002860141, 0.017150758, 0.014487346, -0.012900059, -0.010229922, -0.0037159973, -0.025396572, 0.016289856, 0.0061036516, -0.0077212034, 0.029754883, -0.009052909, -0.024091769, 0.0036521023, 0.023378836, -0.0017075092, 0.0045668096, -0.02059436, -0.0012215711, 0.008003687, -0.021495616, -1.2407238E-5, 0.0055756774, -0.012395626, 0.014837086, -0.026257472, -1.9494274E-4, 0.0059254183, -0.0018714502, -0.007828816, -0.028651852, -0.016357115, -0.018253786, 0.020701973, 0.026351634, 6.877117E-4, -2.3771453E-4, -0.030561976, -0.006100289, -0.012462883, -0.02623057, -0.019195396, 0.0020194175, 0.01990833, -0.0042809634, 0.04471303, 0.0029223545, 0.026916599, 0.0029374876, 0.008339976, 0.03231068, -0.019881427, -0.015859406, -0.025598345, -0.0027945645, 0.010007971, 0.022881128, 0.021186229, 0.0053537264, 0.008723346, 0.020621262, -0.001586445, 0.007162963, 0.0037967067, -0.021320745, -0.035296932, -1.5595419E-4, -0.023271224, -0.00527638, -0.018428657, 0.0026634117, 0.03188023, 0.0023809287, 0.006537465, -0.010350986, 0.03411319, -0.017285272, 0.014837086, -0.022020226, 0.016558887, -0.021132423, 6.8855245E-4, -0.014581506, -0.013606267, 0.002646597, -0.015052311, 0.028920885, -0.0016822874, -0.010243374, -0.009718763, 0.026136408, -0.023620965, -0.037153248, 0.014285572, -0.027575728, 0.0017924223, -0.033548225, 0.008884764, -0.02956656, -0.01016939, -0.012106417, -0.011823934, 0.01615534, -0.01034426, -0.04659625, 0.02220855, 8.176035E-5, 0.025759764, 0.016128438, 0.055581905, 0.038256276, 0.013801315, -0.015940115, 0.012913511, -0.020056296, -0.004422205, 0.01353901, 0.016626146, -0.024481865, -0.0020042846, -0.009214329, 0.0056126695, -0.03949382, -0.024051415, 0.010620018, 0.0358619, 0.02674173, -0.0200832, -0.007243673, -0.033978675, 0.0066080857, -0.0047517684, -9.4665453E-4, 0.006120466, -0.026607214, -0.015496213, -0.0017554304, 0.003218289, 0.008790604, -0.016760662, -0.02640544, 0.026983857, -0.017419789, 0.012214029, -0.012335094, -0.016733758, 0.04578916, -0.03007772, 0.013895476, 0.010189568, 0.0120458845, 0.012079514, -0.015751794, 0.0015788785, 0.028329015, -0.015106117, 0.027199082, 0.016289856, -0.004442382, 0.016505081, 0.016034277, -0.012664657, -0.011527999, -0.0290554, -0.0033998853, 0.02025807, -0.022168195, 5.098987E-4, -0.008070945, -0.019114686, -0.026620666, -0.008615733, -0.010761259, 0.0013686976, -0.03451674, 0.008185283, -0.0014670623, 0.0033864337, 0.006157458, 0.008259267, 0.0028399637, -0.015307891, 0.0082256375, -0.011339677, 0.010794888, -0.015576922, -0.015657632, -0.04083898, -0.028086886, -0.015428956, -0.006597997, 0.013787864, -0.01623605, 0.0064937472, -0.0070822537, 0.0075328816, -0.015307891, -0.0046239784, -0.028086886, 0.0013619718, 0.022517934, -0.014056895, -0.026903149, 0.0017302088, 0.020150458, -8.1339985E-4, 0.00953044, -0.0049064616, 0.015267537, 0.023405738, -0.020661619, 0.009631327, -0.015011957, -0.025235154, 0.0051822187, 0.002784476, 0.019181944, 0.011608709, -0.005837983, -0.03518932, -0.007970057, -0.012234206, 0.03895576, -0.0071024313, 0.0024078318, 0.037637506, 0.014406635, 0.047806893, 0.038417697, -0.011373306, -0.023580609, -0.0070015443, -0.01401654, -0.03572738, -0.015751794, 0.013962734, 0.011763401, -0.0031493497, -0.009328667, -0.02538312, -0.013337236, -0.017998205, -0.047349542, -0.01904743, 0.013370865, 0.011897917, 0.011144629, -0.008185283, 0.0035478526, 0.009712037, -0.0024767711, -0.019814169, -0.005024163, 0.010196293, 0.0034940464, 0.022544838, 0.02273316, -0.045358706, -0.016088083, 0.026203666, 0.02289458, -0.0072571244, 0.018495914, -0.013619719, -4.30608E-5, -0.013048027, 0.0075261556, -0.012879882, -0.021186229, 0.031315263, -0.017379433, 0.0047618574, 0.011252242, 0.011743224, -0.010189568, -0.0011030291, 0.013754235, -0.0142048625, -0.0011946679, 0.005837983, -0.021818453, 0.0055824034, -0.0316112, 0.016505081, 0.0046273414, 0.002856778, 0.04374452, 0.021186229, -0.011299322, 0.00369582, -0.0046609705, 0.01307493, -0.015886309, 0.0118037565, -0.008568653, 0.026714826, -0.03196094, 0.0036420138, -0.033655837, -0.004960268, -0.007795187, 0.009712037, -0.017070048, 0.03561977, 0.0153886005, -0.050793145, 0.0015376831, -0.012900059, 0.0094161015, -0.018132722, -0.00302156, -0.030319847, -0.007667397, -0.008373605, 0.011353129, -0.011460741, -0.031126942, -0.0016520214, -1.3188848E-4, -0.006887206, 0.013606267, 0.19111997, -0.007983509, 0.009866729, 0.04993224, 0.0070553506, 0.0055521373, 0.031100038, 0.025557991, 0.005918693, 0.009772569, -0.0056093065, -0.010176116, 0.0029105844, 5.83462E-4, 0.00619445, -0.02144181, -0.019276105, -0.026042247, -0.01503886, -0.021468712, -0.003470506, 0.0031527127, -0.009026006, -0.024656735, -0.007801913, -0.005972499, 0.006248256, -9.547465E-5, 0.011218613, 0.005461339, -0.009281586, -0.013142188, 0.00471814, 0.024454962, -0.026042247, -0.001911805, -0.0038774163, 0.0056093065, 0.020809585, -0.011063919, 0.013431396, 0.0012955547, 0.005837983, 0.01183066, 0.008252541, 0.016222598, -0.026553407, 0.010277003, -0.01760811, 0.006413038, -0.041108012, 0.015415504, 0.023163611, 0.022437226, -0.0137206055, -0.005373904, -0.0016326848, 0.008925119, -0.009173973, 0.005585766, 0.018159624, 0.039413113, -0.02351335, 0.008790604, 0.0031644828, 0.008851136, -0.038067956, -0.011985352, 0.00596241, -0.030911718, -0.016209146, -0.02238342, -0.023163611, 0.0044020275, -0.023540255, -0.001957204, 0.017702272, -0.004169988, 0.010539308, 0.020836487, -0.010767985, -0.011581806, 0.0038774163, -0.008440862, 4.4053906E-4, -0.010404793, 0.0072503984, -0.016935531, -0.012711737, -0.0070822537, -0.0051048724, -0.003917771, -0.007364737, 0.014648764, -0.003857239, 0.0050208, 0.020944102, 0.017796433, -0.015227182, -0.013162365, -0.02674173, 0.025046831, 0.026338182, -0.0050342516, -0.03349442, -0.020150458, 0.0013182543, 0.006914109, 0.019168492, -0.011413661, -0.018670784, -0.027979273, 0.010445147, -0.012886608, -0.010761259, 0.015106117, 0.010828517, -0.0110975485, 0.03906337, -0.018442107, 0.0027542098, -0.023957253, 0.015442407, 0.004237246, -0.007983509, -0.03744918, -0.016868275, 0.008158379, 0.0075530587, -0.034167, 0.02366132, -0.022840774, 0.013404493, -0.0010702409, 0.0071764146, -9.5506175E-4, 0.014729474, -0.0020429578, 0.014608409, -0.00828617, -0.0019403895, -0.018280689, 0.0041834395, 0.014500797, 0.0146622155, -0.024414606, 0.0064500296, -0.0018159625, -0.019854523, -0.031772617, -0.017043144, -0.0040287464, 0.009160522, 0.02153597, 0.04253388, 0.0027558913, -0.036749702, -0.027468115, -0.004015295, 0.04204962, -0.031476684, 0.012651205, 0.029351335, 0.004260786, -0.026943503, -0.011050468, -0.17207253, 0.018280689, -0.0077279294, -0.027548824, 0.012456157, 0.026876245, 0.021751195, 0.0037126346, 0.023809286, -0.021078616, 0.025073733, 0.011615435, -0.040462334, -4.117443E-4, 0.0025188073, 0.02359406, -0.0020900383, 0.036023315, 0.03497409, -0.005209122, 0.026808986, -0.006513925, -0.01751395, -0.001215686, 0.01888601, -0.0021993325, 0.027293244, -0.015536568, 0.0038437874, -5.721123E-4, -0.031718813, -0.017460143, 0.01641092, -0.004065738, -0.011844111, 0.0052528395, -0.029351335, -0.014460443, -0.008824233, -0.007788461, 0.02051365, 0.012980769, 0.013249801, 0.016733758, 0.021751195, 0.015671084, 0.017244918, -0.019841071, 0.008420685, -0.021509066, -0.009463183, -0.037960343, 0.03812176, -0.0019218937, 0.0021102156, 0.038848147, 0.015375149, 0.0028012902, 0.008555201, 0.00529992, -0.019867975, -0.013276704, 0.01208624, -0.008669539, 0.013054753, -0.008656088, -0.008044042, 0.024091769, -0.041538462, 0.018469011, -0.01294714, 0.0022279168, 0.020150458, -0.011978626, 0.0059859506, -0.014312475, -0.031342167, 0.0015654269, 0.001680606, 0.017191112, -0.018267239, 0.026728278, -0.013195994, 0.019410621, -0.003944674, -0.010411519, 0.010303906, -0.0065811826, -0.0038471501, -0.0091874255, 0.021697389, -0.0094295535, -0.033359904, -0.00489301, 0.002458275, -4.6155712E-4, -7.2596467E-4, 0.002495267, 0.031207653, -0.005316735, -0.0059758616, -0.01998904, -0.0156172775, 0.015671084, 0.027306695, 0.0060565714, 0.01709695, 0.0156172775, 0.021213133, -0.00927486, -0.007539607, -0.0034335144, 0.02460293, 0.011649063, -0.01863043, 0.024589477, -0.011951723, -0.015159924, 0.0052326624, 0.028140692, 0.053967714, -0.0049030986, 0.00145277, -0.010821791, -0.004425568, -0.012207303, -0.0879733, 0.0019319823, 0.015442407, 0.031342167, -0.025571443, 0.036346152, -0.0098331, 0.005790903, -0.021697389, 0.027629534, 0.008918393, -0.03126146, 0.012859705, 5.1073945E-4, 0.014433539, -2.446505E-4, -0.020836487, -0.015657632, 0.008925119, 0.03169191, 1.9294601E-4, -0.024979573, 0.013195994, -0.024737446, -0.016195696, 0.0076943003, -0.027898565, 0.030696493, 0.01692208, 0.02025807, -0.0029862495, -0.034140095, 0.031153845, -0.041592266, -0.009564069, -0.030023914, -0.02359406, -0.017500497, 0.009167247, -0.037126344, 0.007579962, 0.0108554205, -0.0012955547, -0.015845954, -0.009476634, 0.005313372, -0.025127541, 0.04075827, -0.009463183, -0.0103778895, -0.0045668096, -0.018105818, -0.034220804, 0.003726086, 0.016720306, 0.009140344, 0.032337584, 0.006641715, -0.0035915703, -0.028329015, 0.0045836237, -0.009792746, -0.022410322, 0.010512405, 0.0076337685, 0.020997908, 0.008884764, -0.016209146, 0.01606118, -0.015227182, -0.023728577, 0.019639298, -0.02787166, -0.005347001, -0.034247708, 0.01248306, -0.024764348, -0.017769529, 0.036964927, -0.030669589, -0.0011332951, -0.035673574, 0.017204564, -0.017890593, 0.009389198, 0.013195994, 0.009510263, 0.0013081656, 0.0041868025, -0.049367275, -0.017191112, 0.01136658, -0.0019303008, -0.0020042846, 0.004694599, 0.012913511, 0.0018428656, -0.002081631, 0.008313073, -0.0018210069, -0.017675368, 0.001437637, -0.07371463, 0.029970108, -0.011514547, 0.0037462635, -0.005790903, -0.008198734, 0.013700428, 0.0023439368, -0.005642935, 0.013229623, 0.0077817356, 0.022679353, -0.007922977, 0.0070284475, -0.0013905565, 0.008064219, 0.0054108957, -0.0017655191, -0.002021099, -0.004795486, -0.009772569, 0.0062348046, 0.024710542, 0.0052259364, 0.0016688359, 0.016114986, 0.01149437, 0.0012905104, -0.017191112, -0.008790604, 0.037906535, -0.012752092, -0.0103846155, 0.011897917, -2.9551427E-4, -0.040462334, 0.0038908678, 0.0047080508, 0.020473296, 0.0024111946, -0.0013182543, -0.018509366, -0.0051586786, 0.0012350227, -0.018603526, 0.020554006, -0.024414606, 0.0016091445, 0.015967019, 0.008978926, 0.03349442, 0.0069073834, -0.0020580909, -0.021468712, 0.017836787, -0.014635312, 0.04495516, 0.002458275, -0.008508121, -0.01503886, 0.02562525, 0.0035646672, 0.014931248, -0.033386808, 0.004344858, -0.016182244, -0.0023842915, -0.0020110104, -0.013101833, -0.02854424, -0.0062314416, -0.00820546, 0.0025356216, 0.02709147, 0.008306347, 0.021899162, -0.011595257, -0.00604312, -0.0047517684, 0.023674771, 0.016195696, -0.01068055, -0.03271423, 0.023432642, 5.922896E-4, 0.016653048, 4.9224356E-4, 0.006914109, 0.01887256, 0.0103644375, -0.008272718, 0.018065464, 0.021334197, -0.009752391, 0.02033878, 0.030346751, -0.021240035, -0.003346079, 0.011756675, 0.014608409, -0.0010130716, -0.0017302088, 0.0046004383, -0.008427411, -0.027010761, -0.0047282283, -0.014971602, -0.02487196, 0.027656436, 0.025598345, 0.01906088, 0.001866406, -0.0058615236, 0.011507821, -0.036373056, 0.0031829786, 0.008434137, -0.0120593365, -0.0068098595, 0.0495556, 0.0016259591, 0.014339378, 0.024898864, -0.015940115, 0.04059685, 0.0063962233, 0.015106117, -0.022934934, 0.004768583, 0.007990235, 0.0071293344, 0.00382361, -0.03427461, 0.01546931, -0.0051553156, 0.008272718, -0.0025911094, 0.024468413, -0.035431445, 0.07296134, 0.021011358, -0.01179703, 0.022127839, 0.004267512, 0.020971004, 0.0066215373, 0.017392885, -0.007492527, -0.016868275, -0.00356803, -0.014393184, -0.0053873556, -0.018361399, -0.0033881152, 0.0062986994, 0.024764348, 0.00846104, -0.007761558, -0.013021124, -0.014366281, 3.4553732E-4, 0.021495616, 0.0048761955, -0.014325926, -0.008434137, 0.017164208, 0.0017571119, -0.0060094907, -0.02811379, -9.794427E-4, -0.016357115, 0.0057976283, -0.0038437874, 0.021213133, -0.011723047, -0.0022514572, 0.0045533576, 0.021240035, 0.001957204, -0.01144729, 0.0145277, -0.019033978, -0.0077817356, 0.02640544, -0.0030114711, 0.006661892, -0.026714826, -0.015913213 ], + "id" : "548c4905-ecda-445a-81dc-8f94d171e162", + "metadata" : { + "source" : "movies.csv" + } + }, + "5587366b-7dcc-4244-bb62-3a7ad4d44835" : { + "text" : ",/8LSl2BPsRmookhO0UITB6PStZJX.jpg,2454-411-32657-18360-2268-76285-10527-50619-8355-10192-50620-12444-24021-12155-1979-810-950-27022-953-1593-18239\r\n324668,Jason Bourne,Action-Thriller-Mystery,en,The most dangerous former operative of the CIA is drawn out of hiding to uncover hidden truths about his past.,27.179,The Kennedy/Marshall Company-Captivate Entertainment-Pearl Street Films-Double Negative-Perfect World Pictures,7/27/16,120000000,415484914,123,Released,You know his name,6.3,5226,Matt Damon-Tommy Lee Jones-Alicia Vikander-Vincent Cassel-Julia Stiles-Riz Ahmed-Joe Kennard-Amy De Bhr�_n-Ato Essandoh-Scott Shepherd-Bill Camp-Vinzenz Kiefer-Stephen Kunken-Ben Stylianou-Kaya Yuzuki-Matthew O'Neill-Lizzie Phillips-Paris Stangl-Gregg Henry-Matt Blair-Akie Kotabe-Robin Crouch-Miguel Alves-Khan-Robert Stanton-Duran Fulton Brown-Charles Jarman-Jay Vincent Diaz-Richard Nunez-Sonny Robertson-James Dormuth-Dexter Emery-Jorge Luis Alvarez-Ava Katharina Maria Hoeller-Shane Williams-Frank Roskowski-Johnny Cicco-Martin Daniel Latham-Trevor White-Sasha Larkin-Barrie Brown-Stuart Jeffrey Cram-Brian Duda-Bobby Akers-Hugo Alonzo-Griffin Andrews-Jeremy Angel-Jozef Aoki-Sarah Armstrong-Alphonso Austin-Martin Ballantyne-Tim Baros-Gintare Beinoraviciute-Tom Bonello-Charles-Jean Boucher-Allen Bracken-Vin'Cenzo Burgess-Anthony Burkhalter-Eduardo Jed Camara-Hunter Cannistraci-Lenisa Ann Careaga-Nicole Chauvet-Shin-Fei Chen-Jeannine Comeau-Constance Consola-Angel Contreras-Alexander Cooper-Jesse M. Cooper-Graig Couton-Lisamarie Cowan-Roger Julian Cross-Gioacchino Jim Cuffaro-Graham Curry-Darlene Dalmaceda-Erin C. Davis-Christine de Lota-Steven I. Dillard-Timothy Skyler Dunigan-Andrew Dunkelberger-Paul Edney-Barbara Edwards-Heiko Effenberger-Aaron Egawa-Daniel Eghan-Clara Emanuel-Ricardo Ewert-Dino Fazzani-Nathan Ferguson-Joseph D Fisher-Ellie Fox-Alexander Garganera-Gladis Giada-Alex Gillison-Philip Greene-Shane Griffin-Kevin Hager-Phillip Allen Hall III-Yumiko Hanasaka-Jeanette Hatlestad-Michael Haydon-John Heartstone-David Hershwitzky-Jamie Hodge-Yusuf Hofri-Ken Holliday-Romulus Hotea-Jahmilla Jackson-Dolly Jagdeo-Bron James-Jimi James-Kyle James-Natasha Jenssen-Kyle Jerichow-Jauhara Jivanji-Mark Justice-Attila G.", + "embedding" : [ -0.01086376, -0.008097812, -0.02070667, -0.043482628, -0.022982886, 0.048862774, -0.007939166, -0.007946064, -0.015119594, -0.0357297, 0.030763408, 0.04254455, 2.0121665E-4, -0.005462919, 0.0065906807, 0.0038040401, 0.02152059, -0.018361477, 0.006863137, -0.039426826, -0.0048904163, 0.012698527, -0.012388134, 0.0051835654, 7.47099E-4, 0.003807489, 0.010318847, -0.014236698, -0.011870813, -0.02262421, 0.014091847, -0.026680013, -0.0123329535, -0.0143056745, -0.005800903, 0.008835858, 0.011608703, -0.01902365, 0.008787574, 0.006801058, -0.0016580166, 0.02044456, 0.0038592212, -0.0063596102, -0.0111327665, 0.0018347682, 0.008035733, -0.017326834, -0.0021675786, 0.027507728, 0.042627323, 0.035508975, -0.029521836, -0.01957546, -0.011139665, -0.009270408, -0.012926149, -0.0030004669, -0.0016373238, -0.012926149, 0.018140754, -0.026073022, -0.035674516, -7.7856943E-4, -0.0025021136, -0.005680194, -0.017009543, -4.7981605E-4, 0.0017494102, -0.003679883, 0.03029437, 0.02038938, 0.017892439, 0.007449435, 0.016733639, -0.017768282, -0.02982533, 0.0060250754, 1.5972313E-4, 0.0013596943, 0.018292502, -0.004348953, -0.005280132, 0.019230578, 0.0159749, 0.0043868893, -0.014264288, 0.028197492, -0.012243285, -0.004145473, 0.018333888, 0.030542683, 0.005076652, 0.013250338, -0.011118972, 0.01736822, -0.013457267, 0.0135124475, -0.027962971, -0.042158283, -0.010180894, -0.015864538, 0.012029458, -0.013815943, -0.01678882, 0.0071114516, -0.0020468703, -0.017092315, 0.034653667, 1.8515812E-4, 0.00717353, -0.0030694432, 0.035950422, -0.031260036, 0.009877399, -0.008104709, 0.021893062, -0.02456934, 0.011387979, -0.014540194, 0.0026469636, 0.030680636, 0.013326212, -0.03854393, 0.038571518, 0.01792003, -0.0034126, -0.013988383, 0.009518722, -0.0061457837, 0.04229624, 0.00601128, 0.022293124, 0.015643813, -0.027342185, 0.04533119, -0.031039312, 0.003735064, -0.023038067, -0.022182763, 0.046655536, 0.03208775, -0.020265222, -0.008118505, -0.014181517, -0.009649778, 0.0024089955, -0.012174308, 0.007994347, 0.023148429, 0.02146541, 0.012167411, 0.010277461, 0.0116362935, 0.0011432813, 0.005273234, 0.0066458615, -0.0018813272, 0.00557673, -0.024707293, -0.019327145, -0.012326056, -0.005735375, -0.022831138, 0.010367131, 0.031867027, 0.0034229464, -0.009325589, 6.913791E-5, -0.00772534, 0.009429053, 0.011436262, -0.021575771, 0.016637072, 1.03733815E-4, 0.012381237, -0.014098746, -0.00490766, -0.03366041, -0.014236698, 0.0030763408, 0.0035419303, 0.0441448, 0.032832693, -0.0030297819, 0.014291879, 0.014429832, -0.033825953, -0.001783036, -0.013864227, -0.007139042, 0.019134011, -0.009008299, 0.0013131354, -0.6387752, -0.013298621, -0.011174153, -0.0060699102, 0.019741002, 0.014222903, -0.0044972515, 0.017464787, -0.014636761, 0.007739135, -0.026569651, 0.025176331, 0.021506796, -0.030073645, -0.027838815, -0.017175086, 0.0014778161, -0.01705093, 0.0059112646, 0.016981952, -0.016981952, 0.0023952003, 9.5101004E-4, -0.0040006223, 0.009987761, 0.013022716, -0.013084794, -0.017837258, 0.008960015, -8.783695E-5, -0.003828182, 0.0141125405, 0.010760295, 7.3459704E-4, 0.032418836, -0.0010242973, -0.0144988075, 0.04138575, 0.031177266, 0.034984753, -0.020182451, -0.0032660253, 0.017147496, 0.0020710118, -0.021092936, 0.009339385, 0.011118972, 0.0032798208, -0.013188259, -0.016706048, -0.0014355682, 0.0034194975, 0.008780677, -0.011084483, -0.022141377, 0.008946219, 0.0067734676, -0.028942434, 0.008415103, 0.0028745853, -0.024155483, 0.026404109, -0.0040213154, -0.012277773, -0.014912665, 0.031701483, -0.0060561146, -0.015836947, -0.0010182619, -0.010994814, 0.019492688, 0.0065699876, -0.015092003, -0.007739135, 0.0096428795, 0.023824397, 0.031839438, 0.0042420393, -0.0021020512, 0.018389069, 0.0026917981, -0.007263199, 0.00281768, 0.0220724, 0.02483145, -0.016085261, -0.046545174, 0.008325433, 0.031011723, -8.0874655E-4, 0.00952562, 0.022320714, 0.0019572012, 0.005883674, -0.017437195, -0.0056732967, -0.0030625456, -0.01765792, 0.035564154, -0.05341521, -0.009442849, -0.0074770255, 0.020016909, -0.004780054, 0.018402863, 0.022444872, 0.0020054844, -0.003255679, 0.028390625, -0.027066281, -0.018940879, 0.0010096398, -0.010387823, -0.007925371, -0.0030194353, -0.021506796, 0.021341251, 0.005297376, -0.0032711986, 0.0035902138, -0.0035902138, 0.001668363, 0.0046696924, -0.020554923, 0.011353491, 0.039068148, 0.0058802254, -0.004321362, -0.0133607, -0.0034022536, 2.5154775E-4, 0.008401307, 0.016416347, -0.022472462, 0.0018692564, -0.0041696145, 0.017285448, -5.6215643E-4, 0.0053422106, -0.004893865, -0.020306608, -0.014512603, -0.017147496, -0.014719532, -0.016209418, -6.052666E-4, -0.032887876, 0.005393943, 0.0037798984, 6.242351E-4, -0.016664661, 0.021065347, 9.139353E-4, 0.01899606, 0.019851364, -0.0067044916, -0.026183385, -0.013050307, 4.1730632E-4, -0.012905456, -0.004873172, 0.006918318, -0.01934094, 0.0068734833, 0.010470595, 0.010491287, 0.0033229308, 0.004400685, -0.009601494, -0.026321337, 0.03200498, -0.0051180376, -0.0063803033, 0.011974277, -0.010298154, 0.022389691, -0.011546624, 0.035122707, 0.019244375, -0.0057974537, 0.010808579, -0.016885387, -0.029714968, -0.027756043, 0.02979774, 0.031149674, -0.006673452, -0.0057457215, -0.00316601, 0.0081323, -0.013753864, -0.030266779, -0.016443938, 0.0020365238, 0.010422312, 0.026969714, 0.02570055, 0.010491287, -0.003255679, 0.0052456437, 0.036226325, 0.03258438, 0.005921611, -0.0029021758, 0.01254678, -0.01986516, -7.5141E-4, -0.015326523, 0.010367131, -0.017257858, 0.019451303, -0.023589877, -0.009560108, -0.009946375, -0.0017692408, 0.009456644, -0.0060595637, 0.0109603265, -0.0076356707, 0.005976792, 0.007263199, -0.01516098, 0.018747745, -0.00406615, -0.018885698, 0.0032125688, 0.0120432535, -0.01437465, -0.0015114421, -0.0070769633, 0.006859688, 0.00897381, -0.0055043045, -0.003403978, 0.0063596102, -0.012229489, 0.019506484, -0.002393476, 0.053746294, -0.014788508, -0.010656831, 0.0073114824, 0.0054422263, 2.3667476E-4, -0.0014105643, -0.009615289, 0.011946687, -0.0023038068, -0.024114097, 0.03749549, -0.01792003, 0.023024272, -0.007739135, 0.013864227, 0.0119259935, -0.024472773, 0.007601183, 0.012912354, 0.022348305, 0.021382637, 0.00830474, -0.016499119, 0.017795872, 0.009304896, 0.01826491, -0.011767348, -0.042682502, 0.007828805, -0.015119594, -0.034901984, -0.02038938, -0.024210664, 0.013250338, 0.014512603, 0.0062113116, -0.015616223, 6.626031E-4, 0.015423089, 0.0033522458, 0.010132611, -0.011898403, -0.033825953, 0.009553211, 0.03181185, -0.015105799, -0.02448657, -0.013174464, -0.006235453, -0.041137435, -0.0042765276, -0.005945753, 0.009222125, -0.026680013, 0.0035264108, -0.0118294265, 1.2113954E-4, 0.018430455, -0.015767971, 0.028997615, 0.012677834, 9.4756123E-4, -0.012553678, 0.0011855293, 0.0065630903, 0.032418836, 0.014485013, 0.006028524, 0.005428431, 0.007359766, -0.023065658, 0.0079805525, 0.0045800232, -0.05620185, 0.014167721, -0.017478582, -0.010905145, -0.0059733433, 0.0020692875, 0.0040144175, -0.019616846, -0.0050559593, -0.03200498, -0.020485947, 0.014167721, 0.07703268, 0.01794762, 0.005990587, 0.009277306, -0.0059664454, -0.0062457994, -0.0014821271, -0.010718909, 0.003433293, -0.008152992, 0.02007209, -1.2805063E-5, -0.0012579544, 0.024941811, 0.014733327, -0.009608392, 8.747051E-4, 4.7895385E-4, -0.013746967, -0.0154092945, -0.02154818, -7.2726834E-4, 0.030432321, 0.021865472, 0.0018916737, -0.014167721, 0.029135568, 0.02125848, 0.0055698324, 0.018609792, 0.0045144954, 0.006490665, 0.010477493, -4.664519E-4, -0.0044662124, 0.006180272, 0.027397366, 4.2118624E-4, 0.020458356, 2.7353395E-4, 0.011532829, 0.0052835806, 0.004562779, -1.2383392E-4, 0.025783323, -0.035426203, -0.018802926, 0.026017841, 0.027962971, -0.03087377, 0.02012727, 0.004321362, -0.01710611, -0.0042420393, 0.011008609, 0.008911732, -0.0026417903, 0.0039592367, -0.023686444, 0.0031125534, 0.008477181, -0.02979774, 0.0038143867, -0.010029146, 0.018430455, -0.018071778, -0.0109396335, -0.013133078, -0.0037281662, -0.0011312105, 0.005038715, -0.021824086, -0.0030470258, -0.0036350484, 0.025590189, 0.005556037, 0.02974256, -0.020361789, 0.017823463, -0.0029746008, -0.03305342, -0.025245307, 0.0040144175, -0.036088374, -7.8288047E-4, 0.011974277, 0.003467781, 0.01347796, -0.011477648, 0.031370398, -0.012153615, 0.0042006536, -0.019037444, -0.004538637, 0.026859352, 0.0029659788, 0.00839441, 0.017933825, 0.016416347, -2.9530458E-4, 0.0066596568, -0.013933202, -0.018927082, -0.02041697, -0.01202256, -0.009773934, 0.004749015, 0.015616223, -0.012726118, -0.014719532, -0.034929574, -0.01254678, 0.0076287733, -0.014167721, 0.011022405, 0.0043868893, 0.020913599, -0.0056250133, -0.003374663, 0.011360388, -0.0021727518, -0.003421222, 0.012560575, 0.035674516, 7.501167E-4, 0.030680636, -0.010394721, -0.027866405, -0.0024434836, 0.010822373, -0.0101464065, 0.0066872477, -0.021065347, -0.015105799, -0.013071, -0.020858418, 0.0065320507, 0.019175397, -0.0018157997, 0.008490976, -0.015092003, 0.0053284154, 0.007194223, 0.020085884, -0.009601494, -0.029107977, 0.008946219, -3.7160955E-4, -0.0024296883, 0.02456934, -0.0045662276, 0.0035833162, -0.040695988, -0.01844425, -0.012063947, -0.033853542, -0.03481921, 0.0028090577, 0.037164405, 0.01623701, 0.0270111, -0.0109396335, 0.028997615, 0.02041697, 0.010063635, 0.018540816, -4.3907695E-4, -0.0106499335, -0.03261197, 0.009773934, 0.026528265, 0.0132227475, 0.0053629032, 0.014250494, -0.0055181, 0.028059538, 0.0059871385, 0.009594596, 0.015919719, -0.008539259, -0.01647153, 0.0028331995, -0.028445806, -0.021589566, -0.031894617, -0.012864071, 0.036585003, -0.0023538144, -0.005166321, -0.02146541, 0.034626078, -0.00827715, 9.967068E-4, -0.023382949, 0.019561665, -0.016692253, -0.012077741, -0.0126226535, 0.007911576, 0.005628462, -0.019134011, 0.015685199, -0.0143056745, -0.015133389, 0.0010165375, 0.024458978, -0.014526398, -0.0028038847, 0.012450214, -0.00175717, -0.008490976, -0.042737685, -0.0066975937, -0.023051864, -0.014733327, -0.009366975, -0.0070528216, 0.004107536, -0.036943678, -0.048173014, 0.018595997, -0.0047386684, 0.037881758, 0.01867877, 0.056450162, 0.03272233, -0.0012639898, -0.037771396, 0.009608392, -0.007952962, -0.0043006693, 0.0077115446, 0.01565761, -0.023148429, -0.023962349, -0.011629396, -0.0058940207, -0.019465098, -0.030073645, 0.019409917, 0.0112500265, 0.026045432, -0.016954362, -0.007394254, -0.02480386, 0.026969714, -0.012974433, 0.015685199, 0.011215539, -0.028500987, -0.0011734584, 0.0062595946, -0.016664661, 0.0065596416, 0.01379525, -0.032308474, 0.008346126, -0.032336067, 0.015864538, -0.021437818, -0.015781766, 0.031094493, -0.010780988, 0.017450992, -0.0063872007, 0.010822373, 0.00743564, 0.0022175864, 0.010449902, 0.028252672, -0.012298466, 0.020692876, -0.008601339, -0.009711856, 0.0043868893, 0.020003112, -0.036833316, -0.030266779, 0.00789778, -0.0038902606, 0.023148429, 0.014360855, -0.0132227475, -0.012415725, -0.018513225, -0.018692564, 0.0016424969, -0.0058215954, 0.00882896, -0.03095654, 0.010463697, -0.0056698476, 0.0064320355, -0.011553522, 0.007959859, -0.008835858, -0.0060009337, 0.00938077, -0.003566072, -0.002814231, -0.021975834, -9.3031715E-4, -0.047566023, -0.007352868, -0.016319782, -0.009594596, 0.011146562, -0.017340628, 0.0061906185, -0.019271964, -0.019754797, 0.0049731876, 0.015850741, -0.0093531795, 0.014705736, 0.01298133, -0.017340628, 0.0024227907, -0.009987761, 0.026666218, -0.008835858, -0.009097967, -0.0022141377, 3.4078577E-4, 0.024859041, -0.039399233, 0.019271964, 0.013119283, -0.013305519, 6.444968E-4, 0.01902365, 0.02233451, 0.018871902, -0.011836325, -0.028859664, 0.0014269461, -0.018113162, 0.04042008, -0.0023710586, 0.0026900738, 0.038268022, -0.003641946, 0.024555545, 0.029080387, -0.017906234, -0.033439685, -0.003569521, -0.0028625145, -0.028045744, -0.004028213, -0.0033729386, 0.010994814, 0.005559486, -0.014236698, -0.029963283, -0.0070976564, -0.017175086, -0.0091600465, 0.0062837363, 0.0088496525, 0.04637963, 0.039040558, -3.20524E-4, 0.018802926, 0.00598369, 0.0081323, -0.008904834, 0.006528602, 0.035426203, 0.0066493107, 0.033467278, 0.010443004, -0.030101236, -0.005938855, 0.0040730475, 0.011008609, 0.002776294, 0.01792003, -0.026597243, -0.021437818, 0.008401307, -0.009608392, 0.0036936782, -0.0044800076, 0.022969091, -0.039592367, 0.0065182555, 0.009553211, 0.02869412, -0.0053042737, -0.005483612, 0.0035971114, -0.020610103, -7.9883117E-4, -0.011684577, -0.012974433, -0.0013596943, -0.01873395, 0.023134634, 0.0142091075, 0.0024072712, 0.041109845, 0.017492376, -0.010663728, -0.004417929, -0.0122156935, -0.01571279, -0.01115346, -0.016168034, 0.01007743, 0.040364902, -0.034488127, 0.033163782, -0.02677658, 0.017161291, -0.010311949, 0.01367799, 0.0050111245, 0.026583446, 0.0018520124, -0.04621409, -0.0021020512, -0.010063635, -4.5394994E-4, 0.010567161, 0.0027538768, -0.02695592, -0.027921585, 0.0025141842, 0.0013070999, -5.6689855E-4, -0.02114812, -0.0064699724, -0.023424335, -0.0067596724, 0.015698995, 0.17039894, 0.007601183, 0.0059560994, 0.050380252, 0.0049283532, 0.0025090112, 0.027783634, 0.022900116, -0.0061906185, 0.022569029, -0.006325122, 0.0023865784, 0.009967068, 3.8610535E-5, 0.013719376, -0.006842444, -0.017271653, -0.022320714, -0.023038067, -0.023244996, -0.01736822, 0.016678458, 0.0024158931, -0.021037756, 0.009270408, 0.007690852, -0.003735064, 0.0217827, 0.029494245, -0.011056893, -0.01876154, -0.015919719, 9.656675E-4, -0.0018796028, -0.020982575, -0.0023279483, -0.013484857, 0.013284826, 0.0055939737, 4.910247E-4, -0.0083668195, 0.008546158, -0.007670159, -0.019934136, 0.004780054, 0.018747745, -0.025369465, -0.010656831, -0.02154818, 0.025659164, -0.052118454, 0.009456644, 0.0019020201, 0.0238106, -0.01660948, -0.0069597038, 0.012367441, 0.005004227, -0.0045662276, 0.009794627, 0.010856862, 0.039344054, -0.02209999, 0.014760918, 0.0064492794, 0.032280885, -0.0040937406, -0.0107464995, 0.012015663, -0.032887876, -0.008449591, -0.005476714, -0.012657142, 0.0065561924, -0.002088256, 8.4194134E-4, 0.013671093, 0.015767971, 0.011001712, 0.021175709, -0.029770149, -0.019354736, 0.01545068, -0.010753398, -0.024196869, -0.0180028, 0.0076356707, -0.01565761, -0.013402086, -0.0071459394, 0.0065837833, -0.023244996, -0.013733172, 0.005890572, -0.0071804277, 0.0015485168, 0.031039312, 0.010739602, -0.021506796, -0.011601806, -0.037743803, 0.040999483, 0.02520392, -0.01376766, -0.017175086, -0.017037135, -0.006338917, 0.013215849, 0.04188238, -0.027480138, -0.017616535, -0.030432321, -0.009622187, -0.0047904006, -0.021299867, 0.025355669, 0.0101464065, -0.028073333, 0.034046676, -0.00798745, -0.010332642, -0.026114408, -0.0049180067, 0.0016614654, 0.0048593767, -0.029632198, -0.023769217, -0.014360855, -2.86467E-4, -0.03697127, 0.014078053, -0.010987917, 0.0034850251, 0.002593507, -0.013340007, 0.003566072, 0.025397055, -0.004673141, 0.0052525415, 0.00545947, 0.0032884427, -0.029770149, 0.024155483, 0.0074908207, 0.013857328, -0.01170527, 0.011656987, 0.006414791, -0.016140442, -0.020982575, -0.024941811, -0.013091693, 0.0039212997, 0.006218209, 0.03848875, -0.0071804277, -0.02866653, -0.026321337, -0.012967535, 0.051125195, -0.040061407, 0.020789443, 0.022031015, 0.0039316462, -0.020403175, -0.011091381, -0.17757246, 0.03319137, 0.0026176488, -0.028100925, -6.307016E-4, 0.0067562237, 0.027645681, -0.0075322064, -0.015878333, -0.0051076915, 0.03206016, 0.009594596, -0.037826575, -0.012112229, 0.0036591901, 0.006180272, -0.018927082, 0.02761809, 0.03523307, 0.003433293, 0.05788487, -0.0038109377, 7.440813E-4, 0.0020848073, 0.0013019267, -0.0032229153, 0.021768905, 0.018968469, -0.0029590812, -0.00981532, -0.026114408, -0.016981952, 0.012236387, 0.0027090423, -0.0076977494, -0.005938855, -0.01518857, -0.014940256, -0.014774713, -0.012760607, 0.035591744, 0.0076632616, 0.009222125, 0.0038695675, 0.015078208, 0.016250804, 0.019699616, -0.026183385, 0.015533452, -0.0071597346, -0.009035889, -0.05404979, 0.02204481, -0.012933047, 0.0038109377, 0.026293747, 0.008139198, 0.018789131, 0.0089669125, 0.016085261, -0.01931335, 0.0069838455, 0.0038488747, -0.0081323, -0.006897625, -0.0016804339, -0.0097601395, 0.017437195, -0.034046676, 0.0070217825, -0.008311639, 0.023741625, 3.9920004E-4, 0.008194379, 0.005514651, -0.020982575, -0.0171337, -0.006276839, 0.010898247, 0.008573748, -0.0171337, 0.034432944, 0.0030590966, 0.0035833162, 0.010036045, -0.0049559437, 0.010374028, -0.00531462, 0.014471217, -0.021768905, 0.003845426, -0.021272276, -0.024983197, 0.017823463, 0.0059181624, 0.0034970958, 0.001213982, 0.018720154, 0.0058422885, -0.017382015, -0.004780054, -0.019437507, -0.017450992, 0.032667153, 0.020003112, -7.204785E-5, -0.0045110467, 0.034543306, 0.009732549, 0.007946064, -0.008532362, -0.008504772, 0.026831761, 7.212329E-4, -0.012388134, 0.005038715, -0.017754488, -0.026735194, -0.016885387, -8.1909297E-4, 0.04345504, 0.012464008, -0.0015907647, -0.011650088, 0.0034867495, -0.006149233, -0.09143492, -0.0012527811, 0.024362411, 0.025590189, -0.03029437, 0.043841306, -0.010505083, 0.022086196, -0.025259104, 0.020554923, -0.0058595324, -0.028859664, 0.009691163, -0.016278395, 0.010132611, 0.0051559745, 0.0033522458, -0.01086376, -0.0031004825, 0.023038067, 0.0052766833, -0.0016252529, -0.0015355838, -0.020168656, -0.023534697, 0.008118505, -0.02454175, 0.017244063, 0.004724873, -0.017078519, -0.004417929, -0.012263977, 0.012815787, -0.05090447, -0.023162225, -0.013809045, -0.012857173, -0.020499742, 2.7137843E-4, -0.046738308, 0.013381393, 0.014429832, -2.9853783E-5, -0.011622498, -0.0041558193, -1.1273306E-4, -0.034570895, 0.025866093, -0.012188103, -0.0059354063, -0.010415413, -0.024155483, -0.02587989, 0.002215862, 6.78985E-4, 0.031729076, 0.018168345, 0.0069079716, -0.014843689, -0.016416347, -0.0016011113, -0.009456644, -0.018871902, 0.0025159088, 0.0034453636, 0.0033867338, -0.0030039158, -0.010594752, 0.014333265, -0.016485324, -0.036171146, 0.023783011, -0.04091671, -0.0066079246, -0.025079764, -0.00868411, -0.0141125405, -0.010615445, 0.027121462, -0.023382949, -1.243728E-4, -0.031701483, -0.0050732032, -0.025010789, 0.0043524015, 0.025576394, 0.014098746, 0.022665596, 4.716251E-4, -0.027080076, -0.0076356707, 0.023603672, -0.0057974537, -0.017837258, -0.013153771, 0.024817655, 0.01844425, 0.010815476, -0.012588166, 0.0133193135, -0.01408495, -0.0016580166, -0.07410809, 0.027631886, -0.033246554, -0.0099532725, -0.012877866, -0.014857484, -3.476834E-4, 0.001282096, -0.001867532, 0.039868273, -0.017961416, 0.011746655, -0.01269163, -5.7207176E-4, -0.016112853, 0.004173063, 0.0043661967, 2.6642077E-4, 0.008904834, 0.013691786, -0.03926128, 0.006732082, 0.02285873, -0.027549114, -0.0045869206, 0.029577017, 0.0013959069, 0.02398994, -0.021161914, -0.013202054, 0.026845556, -0.006238902, -0.00572158, -0.0042247954, -0.010111919, -0.031066904, -0.0133607, 0.0072011207, 0.027576705, 0.008001245, -0.0174234, -0.017975211, -0.0137055805, -0.014264288, -0.0062285555, 0.015326523, -0.0070769633, 0.0040902914, 0.0063734055, 0.026831761, 0.028500987, 0.005552588, -0.0220724, -0.009504927, 0.025921274, -0.025824709, 0.05733306, 0.009297999, 0.0068734833, -0.024776269, 0.035564154, 0.0014967846, 0.0071804277, -0.02425205, 0.019216783, -0.0010751673, -0.0016183553, -0.017644124, 0.0042592837, -0.0203342, -0.007304585, 0.0091600465, 0.0044834563, 0.023631264, 0.0127192205, -0.0027780186, 0.014429832, 0.0024555544, -0.0034022536, -0.004742117, 0.022003423, -5.1430415E-4, -0.00978773, 0.014843689, 0.0018416658, 0.023010477, -0.007911576, -0.01794762, 0.007504616, 0.013181361, -0.0132227475, 0.0053801476, 0.015933514, -0.0028297508, -0.0025193575, -7.754439E-5, -0.026128203, -0.027893996, -0.004283425, 0.027880201, 0.013181361, 0.0022693186, -0.012388134, -0.028307853, -0.013774557, 0.013622809, -0.022458667, -0.034543306, 0.017188882, 0.017064724, 0.02038938, 0.0057077846, -0.01873395, 0.007939166, -0.053332437, 0.024390003, -0.0053801476, -0.02619718, 0.002976325, 0.037605852, 0.023824397, 0.012277773, 0.03537102, -0.014360855, 0.0441448, -0.010463697, 0.04204792, -0.01571279, 0.004862826, -0.008739291, -0.0061664768, 0.01057406, -0.009877399, 0.009656675, -0.023382949, -0.0010415413, 0.015395499, 0.031204855, -0.011112074, 0.0760946, 0.018126959, 8.747051E-4, 0.0044248262, -0.01199497, -6.953668E-4, 0.012070844, 0.019796183, -0.0028125066, -0.005297376, 0.016374962, -0.003986827, 0.00484903, -0.03879224, 0.008070221, 0.007187325, -0.0042558345, 0.02012727, 0.008994503, -0.013940101, -0.006604476, 0.004114433, 0.0070183333, 0.0062113116, -0.013622809, 0.010229178, 0.033825953, -0.009739446, -0.009960171, -0.017450992, 0.017037135, -0.023244996, 0.0058940207, -0.010877554, 0.026983509, -0.012243285, -0.010318847, 3.5436547E-4, 0.037578262, 0.03641946, -0.0112293335, -7.721029E-4, -0.02341054, -0.033274144, 0.0036867806, -5.3629035E-4, -0.012539882, -0.024914222, -0.008580646 ], + "id" : "5587366b-7dcc-4244-bb62-3a7ad4d44835", + "metadata" : { + "source" : "movies.csv" + } + }, + "bdccca05-8a57-4600-8f02-28f822b99e7f" : { + "text" : "453,2738,Helen Hunt-Bill Paxton-Cary Elwes-Jami Gertz-Philip Seymour Hoffman-Lois Smith-Alan Ruck-Sean Whalen-Scott Thomson-Todd Field-Joey Slotnick-Wendle Josepher-Jeremy Davies-Zach Grenier-Gregory Sporleder-Patrick Fischler-Nicholas Sadler-Ben Weber-Anthony Rapp-Erik LaRay Harvey-Abraham Benrubi-Jake Busey-Melanie Hoopes-Alexa PenaVega-Rusty Schwimmer-Richard Lineback-J. Dean Lindsay-Dan Kelpine-Sharonlyn Morrow-Richard Lineback-Rusty Schwimmer-Taylor Gilbert-Bruce Wright-Gary England-Jeff Lazalier-Rick Mitchell-Paul Douglas-Samantha McDonald-Jennifer L. Hamilton-Anneke de Bont-Darryl Cox,husband wife relationship-tornado-twister-oklahoma-metereologist-invention-climate-barn-natural disaster-truck-disaster-storm chaser-divorce-disaster movie-motley crew,/6tagtmPVOG4QqraQ4piUFLoqaoj.jpg,/aoWQe00ctaK5k56yc7vsoqEWdHI.jpg,9619-8656-882-1637-10357-929-36955-9350-435-9772-8487-9804-1701-9208-2133-74-8367-602-1639-5503-1844\r\n18823,Clash of the Titans,Adventure-Fantasy-Action,en,Born of a god but raised as a man Perseus is helpless to save his family from Hades vengeful god of the underworld. With nothing to lose Perseus volunteers to lead a dangerous mission to defeat Hades before he can seize power from Zeus and unleash hell on earth. Battling unholy demons and fearsome beasts Perseus and his warriors will only survive if Perseus accepts his power as a god defies fate and creates his own destiny.,74.203,The Zanuck Company-Legendary Pictures-Thunder Road-Moving Picture Company-Warner Bros. Pictures,3/26/10,125000000,493214993,106,Released,Titans will clash.,5.9,5914,Sam Worthington-Gemma Arterton-Mads Mikkelsen-Alexa Davalos-Jason Flemyng-Ralph Fiennes-Liam Neeson-Pete Postlethwaite-Polly Walker-Ashraf Barhom-Elizabeth McGovern-Nicholas Hoult-Liam Cunningham-Hans Matheson-Vincent Regan-Alexander Siddig-Luke Treadaway-Mouloud Achour-Tine Stapelfeldt-Luke Evans-Izabella Miko-Ian Whyte-Katherine Loeppky-Sinead Michael-Ross Mullan-Robin Berry-Graham Hughes-Martin McCann-Rory McCann-Kaya Scodelario-Tamer Hassan-Danny Huston-William Houston-Jamie Sives-Phil McKee-Geoffrey Beevers-Michael Grady-Hall-Laura Kachergus-Adrian Bouchet-David Kennedy-Nina Young-Jane March-Nathalie Cox-Agyness Deyn-Natalia Vodianova-Charlotte Comer-Louis Leterrier-Katrina Vasilieva,hades-mythology-greek mythology-zeus-mythological beast-medusa-sea monster-perseus-kraken-gods-ancient greece-based on myths legends or folklore,/6iHYLipwEyZUPNO8MM3l1yHDaFE.jpg,/hUUTJPmvBvBKILNLrBu16pRxr6M.", + "embedding" : [ -0.0032309832, -0.02354486, -0.022637203, -0.020686422, -0.02307071, 0.04638527, -0.0018898203, -0.009665855, -0.0025790292, -0.046764586, 0.021160569, 0.022583015, 0.016581649, -0.0058896015, 0.011420205, 0.010261928, 0.023355199, -0.021539887, 0.0071393214, -0.028990792, -0.0038304424, -0.024791192, -0.021404417, 0.019792313, -0.0035764342, 0.008141806, 0.03722743, -0.009266216, -0.011264414, -0.004094611, -0.0031784882, -0.015619806, -0.007383169, -0.016107501, -0.012531067, 0.008277277, 0.009665855, -0.026918087, 0.017638324, 0.004108158, 0.0042808834, 0.010810586, -0.006228279, 0.008812388, -0.020239366, 0.012483652, 0.0064314855, -0.0133506665, -0.009225574, 0.04264627, 0.030508067, 0.0065500224, -0.0336239, -0.022908146, -0.008527899, 0.002338568, 0.0049988795, 0.010146777, 0.0017357222, 0.004900663, 0.008561767, -0.012524294, -0.027270311, -0.016920328, -0.016690027, -0.015335317, -0.02026646, -0.014725697, -0.008690464, -0.0023842894, 0.023328105, 0.024438968, 0.0020642392, 0.009130745, 0.010370305, -0.035005704, -0.03077901, -0.0068514454, -0.016784856, 0.010736076, 0.015362411, -0.015714636, 0.002797476, 3.5587596E-5, 0.0268639, 0.012314313, -0.012754594, 0.028340532, -0.027338047, -0.00616393, 0.02022582, 0.041128993, -0.012808783, 3.8524566E-5, 0.025292436, 0.016148143, -0.012652991, 0.0312938, -0.028503098, -0.04446158, -0.0031480072, -0.010282248, -0.0035019252, -0.008460164, 0.004243629, -0.006187638, -0.01438702, -0.0039760736, 0.030480973, -0.010505776, 0.00491421, -0.024398327, 0.011860485, -0.035059895, -0.010417719, -0.016148143, 0.01887111, -0.01305263, -0.021783736, -0.026931634, 0.018166661, 0.023409387, -0.010891868, -0.034219973, 0.031564742, 0.028746946, -0.0039049515, -0.010688662, 0.01616169, -0.0044332882, 0.02307071, -0.0017323353, 0.019507824, -4.9997267E-4, -0.019981971, 0.045518253, -0.016757762, -0.014685056, -0.016107501, -0.011684373, 0.037281618, 0.029478488, -0.013100045, -0.020469667, -0.030210031, 0.014685056, 0.014224455, 4.4070408E-4, -0.0042368555, 0.012449784, 0.019399447, 0.029288828, 0.010295795, 0.004020102, 0.0116911465, -0.011657279, -0.014359926, -0.0027856224, -0.007179963, -0.03386775, -0.0039388193, -0.0074509047, 0.007925053, -0.023355199, -0.011481167, 0.02372097, 0.019385898, -0.024547344, -0.0018779667, 9.838581E-4, -0.011657279, 0.008426296, -0.038798895, 0.010248381, 0.0012243191, 0.015132111, -0.0010134924, 0.005696555, -0.025482094, -0.014265096, -0.0046060137, -0.004622948, 0.037281618, 0.04031617, -0.01011291, 0.027351594, 0.017367382, -0.01461732, 0.01074285, -0.0099774385, 0.002695873, 0.02377516, -0.010451587, -0.020198725, -0.63898957, 0.012205937, -0.010668341, -0.009103651, 0.0018457923, 0.018803375, -0.0029143197, -0.0045924666, -0.02026646, -0.010661568, -0.025861412, 0.037281618, 0.011704694, -0.009591347, -0.024113838, -0.010092589, -0.0019592494, -0.013215195, 0.01635135, -0.0019829567, -0.024791192, 0.010072269, 0.012077239, -0.0010939282, 0.0065195416, 0.012341408, -0.0045382786, -0.022298526, 0.020009065, 0.011711468, -0.015281129, 0.03264851, 0.00197957, 0.013526779, 0.04587048, 0.008636276, -0.01929107, 0.058631845, 0.0336239, 0.022108866, -0.027121292, -0.009083331, 0.012734273, 0.0061300625, -0.0068209646, 0.021323135, -1.8849519E-4, 0.0033105724, 0.005249501, 0.008155354, 6.3634325E-6, -0.002557015, 0.0059776576, -0.010390625, -0.01406189, -0.009090104, 0.016121048, -0.04760451, 0.026335562, 0.008744652, -0.024140932, 0.042050198, -0.018315678, 0.014007701, -0.013459044, 0.029397206, -0.017882172, -9.4914366E-4, 0.0076812054, -0.030426785, 0.019020127, 0.016242972, -0.012971348, -0.008853029, 4.661049E-4, 0.009564253, 0.039665908, 0.009096878, -0.0034985384, 0.018342772, -0.006864993, -0.014048343, -0.0038880175, 0.0149559975, 0.030616445, -0.021336682, -0.040234886, 0.011989183, 0.016215878, -0.008487258, 0.0060115256, 0.016459726, 0.009103651, 0.010824133, -0.0060995817, -0.0041420255, -0.017814435, -0.0065974374, 0.024371233, -0.05646431, 0.004948078, -0.03516827, 0.03427416, -0.010356758, 0.019304616, 0.009530384, -0.0138586825, -0.011271187, 0.023043616, 2.444828E-4, -0.0027382076, -0.010011307, -0.029288828, -0.016649386, 0.0017865237, -0.024777645, 0.022948787, 0.014834074, -0.0071257744, -0.0031920352, 0.009801326, 0.0057270364, 0.0019694096, -0.019358804, 0.015619806, 0.03508699, -4.2080678E-4, -0.009862289, 0.011941768, 0.013228742, -6.5703434E-4, -0.017394476, 0.01639199, -0.018749185, 0.0064721266, -0.0020320648, 0.022894599, -0.014766338, 0.033650994, -0.004230082, -0.010986698, 0.003806735, -0.028042495, -0.0025587084, -0.010383852, -0.03492442, -0.023192635, -0.00344435, -0.01020774, -0.018234396, -0.0051953127, 0.014563132, 0.011189904, 0.020171631, -0.011853712, 6.1935646E-4, -0.015348864, -0.008121486, 0.010248381, -0.005886215, 0.0052461145, 0.011108622, -0.013614835, -0.012443011, 0.026376203, -0.004226695, -0.018247943, 0.011880807, 0.0094694225, -0.019304616, 0.017164174, -0.004257176, -0.008155354, 0.02503504, -0.0027348208, 0.03381356, -0.02045612, 0.0064924476, 0.006692267, 0.004094611, 0.005581405, -0.007173189, -0.025143417, -0.0031784882, 0.024533797, 0.013723211, 0.011020565, 0.0046703625, -0.009042689, 0.018464698, -0.0048803426, -0.017800888, 0.0051343506, -0.0010101056, 4.273157E-6, 0.022555921, 0.008927539, -0.0089072175, -0.016053313, 0.009279763, 0.046358176, 0.01312714, 0.009740365, -0.0036678773, 0.010417719, -0.028530192, -0.0013428562, -0.01667648, 0.01076317, -0.009035915, 0.015348864, -0.014427661, -0.011752109, -0.00782345, 0.008697238, 0.022704938, -0.0078505445, 0.0027026464, -0.0020388386, -0.0047177775, 0.018573074, -0.028719852, 0.025807224, 0.029668149, -0.0273245, 0.00260951, 0.037525464, -0.022244338, 0.0016298854, -0.0010727609, 0.007295113, -0.0062824674, -0.009300084, 0.025549829, 0.0058896015, -0.019372351, 0.030616445, -0.016093954, 0.037660938, -0.024479609, -0.007843771, 0.009970665, 0.014332831, 0.0015071149, -0.010736076, -0.0016730668, 0.019697482, 0.018925298, -0.012998442, 0.035655964, -0.0053612646, 0.037417088, 0.012571708, 0.008324693, 0.0099638915, -0.016635839, 0.011779203, 0.01639199, 0.029966185, 0.02261011, 0.023368746, -0.0411019, 0.033840656, 0.020578044, 0.028421815, -0.005344331, -0.022691391, -9.440635E-4, -0.017841531, -0.02764963, -0.013994154, -0.020036161, 0.011027339, 6.350203E-4, -0.013445497, -0.010681888, 0.0022691393, 0.002665392, 0.012544614, 0.011101848, -0.0128020095, -0.03627913, 0.008026657, 0.030101655, -0.02026646, -0.030264221, -0.020144537, -0.0039523663, -0.024344137, -0.014698603, -0.0011574303, 0.033325866, -0.017557042, 0.01022806, -0.008284051, -0.008832709, 0.022149507, -0.019182693, 0.011481167, 0.0044400617, -0.01169792, 0.01494245, -0.020605138, 1.1811377E-4, 0.028177967, -0.0056389803, -0.015470788, -0.023531312, -0.0021522956, -0.007674432, 0.006560183, 0.0029888288, -0.028557286, 0.022853957, -0.006411165, -0.0158772, -0.005703329, -3.3761913E-4, 0.008778521, -0.0064010047, -0.025305983, -0.022826863, -0.041318655, -1.8648429E-4, 0.08323338, 0.052833688, 0.016798403, 0.0035188592, -0.010817359, 0.001949089, -5.376505E-4, -0.015606259, -0.010932509, -0.014238002, 0.03516827, -0.013851909, 0.016256519, -0.0046839095, 0.004690683, -0.011101848, -0.012646218, 0.0033461335, 0.0026061232, -0.017557042, -0.031077046, -0.019101411, 0.017123533, 0.035330836, 0.004751645, -0.014143172, 0.0273245, 0.0070241713, 0.005598339, 0.030291315, -0.020117443, -0.0017035478, 0.007369622, 0.023991913, 0.0036949713, -0.0011785977, 0.013621609, 0.009367819, 0.029451394, 0.0036136888, -0.009618441, 8.2806643E-4, 0.017543495, -0.0056152726, 0.012951027, -0.01368257, -0.0068209646, 0.027378688, 0.022704938, -0.038934365, 0.016662933, -0.0021709227, -0.017475758, -0.023924178, 0.01074285, -0.0138722295, 9.4491016E-4, -0.0010499002, -0.02713484, 0.0016146449, 0.0013420095, -0.02386999, 0.011413432, -0.008019883, -0.0052088597, -0.011345696, -0.015470788, 1.1758459E-4, -0.025902053, 0.018166661, 0.011508261, -0.018004095, 1.796049E-4, 4.3202547E-4, 0.0354934, -0.0018457923, 0.018898204, -0.013005216, 0.02246109, -0.0048227673, -0.031456366, -0.0373629, 0.017719606, -0.025725942, 0.0038609235, 0.008656597, -0.018816922, 0.020049708, -0.005330784, 0.0050056535, -0.0053985193, -0.0037119053, -0.022379808, -0.0049311444, 0.039205305, 0.02251528, 0.0068378984, 0.015917841, 0.0014910277, 0.00479906, 0.007058039, -0.01965684, -0.019020127, -0.023693876, -0.010681888, -0.012890065, 0.011616638, 0.007132548, -0.010485455, -0.02825925, -0.019954877, -0.014779885, 0.00854822, -0.012652991, -1.3473014E-4, 0.005174992, 0.0067972573, 0.009950344, -0.015592712, -0.0012370195, -0.007687979, -3.3275064E-4, 0.013594515, 0.0021658426, -0.018667903, 0.021214757, 0.0033749212, -0.039286587, 0.0019457021, 0.017489305, -0.0068853134, 0.008378881, -0.009692949, -0.01696097, -0.0064314855, -0.02074061, -0.011054433, -0.013953513, -0.012111107, 0.013689344, -0.01877628, -0.0070783594, 0.003806735, 0.011095075, -0.012131427, -0.025888506, -2.2649056E-4, -0.019412994, 0.0038778572, 0.021404417, 0.0028347305, -0.0011955316, -0.01980586, -0.004961625, -0.0017814436, -0.022393355, -0.010282248, 0.008189222, 0.034761857, 0.0036204623, 0.028692756, -0.0035561137, 0.014481849, 0.006201185, 0.00719351, 0.022813316, -0.017028704, -0.015768824, -0.037769314, 0.0010473601, 0.010790265, 0.025604019, -6.635962E-5, 0.009726818, -1.5822588E-4, 0.0268639, 8.56854E-4, 0.007146095, -0.0040675164, -0.03722743, -0.009022368, -3.6047984E-4, -0.017069345, -0.0013682571, -0.025915602, -0.025685301, 0.038500857, -0.006800644, -0.0060521667, -0.0042639496, 0.041535407, -0.003251304, 0.0034477368, -0.014630867, 0.013086498, -0.02372097, -0.0035256327, -0.014725697, -0.008900444, -0.0122398045, -0.01116281, 0.026782615, 3.7021682E-4, -0.011237319, -0.0052122464, 0.015809465, -0.017977001, -0.023829348, 0.036495887, -0.01555207, -0.012930706, -0.008026657, 0.010702209, -0.020496761, -0.010099363, -0.009794553, -0.004575533, -0.0039693, -0.02858438, -0.029126264, 0.018275037, -0.008256957, 0.036929395, 0.017109986, 0.04974495, 0.03031841, 3.0226965E-4, -0.026349109, -0.005584792, -0.0127749145, -0.003505312, 0.030806104, 0.02251528, -0.011433752, -0.0017170949, -0.0030718048, 0.0032597708, -0.037525464, -0.03484314, 0.0128155565, 0.033136204, 0.02909917, -0.02242045, -0.014129625, -0.037850596, 0.0018017642, -0.018627262, 0.008121486, -0.0032800916, -0.02278622, -0.010126457, 8.519855E-5, -0.0037898012, 0.02858438, 0.006543249, -0.026010431, 0.011345696, -0.02517051, -0.008582087, -0.01156245, 0.0035425664, 0.035981096, -0.03386775, 0.022908146, 0.007904733, 0.007911506, 0.01639199, 2.326291E-4, -0.0036780376, 0.030480973, -0.010038401, 0.019751672, 0.007904733, 0.0040370356, 0.015673995, 0.010573511, -0.021634718, -0.014224455, -0.01356742, -0.01251752, 0.03717324, -0.0040641297, 6.0030585E-4, 0.007911506, -0.015294676, -0.0049311444, -2.1664775E-4, 0.0031903419, 5.511976E-4, -0.05749389, 0.007342528, -0.009300084, 0.004030262, -0.0013911178, -0.009320404, 0.015484335, -0.008487258, 0.020307101, -0.004612787, -0.011704694, -0.024560891, -0.018735638, -0.042321138, -0.025455, -0.0057846117, -0.006790484, 0.00782345, -0.011968862, 0.0022894598, -0.0024063035, 0.0027619149, -0.008480485, -0.0023030068, -0.023558406, 0.0010727609, 0.0065059946, -0.006150383, -0.023639688, 0.0015629967, 0.030751916, 5.9818913E-4, 0.0051580584, -0.005974271, 0.016188784, 0.024601532, -0.024791192, 0.014522491, 0.002797476, -0.028313437, -0.007342528, 0.0071122274, 0.019643294, 0.010824133, -4.733018E-4, -0.026091713, -0.014915356, 0.0034782179, 0.026701333, -8.1621273E-4, 0.00479906, 0.016121048, 0.010858, 0.036739733, 0.024980852, -0.020239366, -0.030101655, 0.0017424957, -0.019643294, -0.02536017, 0.0025756422, 0.013377761, 0.017109986, 0.012036598, -0.0150372805, -0.033786464, 0.0063874573, -0.02643039, -0.027216123, 0.0017729766, 0.02045612, 0.039530437, 0.030101655, -0.0025400813, 0.011853712, 0.011914674, 0.003972687, -0.0150508275, -0.02032065, 0.027771555, 0.012558161, 0.023355199, 0.01083768, -0.027446423, -0.0024638788, 0.022528827, 0.0058896015, 0.0037593201, 0.02120121, -0.014549585, -0.012896839, -0.017760247, -0.008304372, -0.0060691005, -0.018911751, 0.017706059, -0.024872474, -0.0071122274, 0.010898641, 0.022772674, -0.014874715, 0.011738562, 0.024506703, -0.023558406, -0.006919181, -0.008724332, -0.024831833, 0.009726818, -0.028313437, 0.01929107, 0.0055407635, -0.01681195, 0.048363145, 0.010309342, -0.02326037, 0.011433752, 0.0057846117, 0.016690027, -0.006756616, 0.008995274, 0.008053751, 0.020510308, -0.03180859, 0.020862533, -0.019534918, 0.009957118, -0.010038401, 0.012734273, -0.005771064, 0.0364417, 0.024696363, -0.030616445, -6.218965E-4, -0.010410946, 0.02461508, -0.014346378, -0.001835632, -0.032296285, -0.0014596999, 0.001136263, 0.00491421, -0.021783736, -0.027622536, -0.0028685983, -0.0060657137, -0.01532177, 0.023328105, 0.18304841, -0.0027060332, 0.002023598, 0.039991036, -0.007877639, 6.832818E-4, 0.02013099, 0.0076541114, -0.009367819, 0.013716438, -0.005263048, 0.004948078, -0.00541884, 0.0035459532, 0.031320892, -0.01677131, -0.03218791, -0.015267581, -0.019981971, -0.035764344, 2.775568E-5, 0.0027636082, 0.008500805, -0.024262855, -2.1379016E-4, -0.0040979977, -0.0038914043, 0.0060386197, 0.026782615, 0.0048329276, -0.0022488185, -0.02704001, -9.48297E-4, -3.7339193E-4, -0.02400546, 0.002457105, 0.011589544, 0.011589544, 0.027988307, -0.01406189, 0.0076066963, 0.0047042305, -0.005117417, -0.009029142, 0.0094694225, 0.010234834, -0.018505339, -0.0124972, -0.021092834, 0.012287219, -0.039286587, -0.002617977, 0.018424055, 0.01919624, -0.0050192005, -0.003715292, 0.009415234, 0.011061206, -0.0023588887, 5.6940154E-4, 0.018329225, 0.03535793, -0.030372597, 0.020537402, 0.009896156, 0.022379808, -0.030480973, -0.010160325, 0.009543932, -0.025509188, -0.005703329, -0.030155843, -0.01242269, 0.009665855, -0.004738098, -0.008995274, 0.010092589, 0.018098924, 3.3042222E-4, 0.0014139785, -0.019968424, -0.0064924476, 0.0044603827, 0.001888127, -0.021052193, -0.012639443, 0.02246109, -0.025197605, -0.0077692615, -0.024723457, -0.010167099, -0.011244092, -0.0071122274, -0.0022962333, 0.0015587631, -0.0011201758, 0.025346624, 0.0074034897, -0.012585255, -0.0050361343, -0.026308468, 0.027988307, 0.009543932, -0.0052427277, -0.019548465, -0.026457485, -0.008378881, 0.018112471, 0.038338292, -0.02045612, -0.016419085, -0.016852591, -0.0053646513, -0.017516399, -0.006346816, 0.028503098, 8.66591E-4, 0.0033054922, 0.02844891, -0.015823012, 0.0128155565, -0.016730668, 0.02769027, 0.009672629, -0.003928659, -0.04587048, -0.046574928, 0.004561986, -0.0057879984, -0.0327027, 0.025847865, -0.026836805, -0.002128588, 0.0023876764, -0.0088936705, 0.0030531776, 0.014468302, -0.007572829, 0.023788707, -0.0027737687, -0.010343211, -0.010200966, -0.003986234, 0.028990792, 0.004223308, -0.020496761, -0.005164832, -0.0018305518, -0.014116078, -0.039259493, -0.013289705, -0.005191926, 0.011501487, 0.02993909, 0.044732522, -0.0037999614, -0.026267827, -0.024723457, -0.009422008, 0.045409877, -0.027459972, 0.033027828, 0.016920328, -0.0070986804, -0.024127385, -0.011176357, -0.17296937, 0.0057507437, 1.8045159E-4, -0.026484579, 0.0011100154, 0.014007701, 0.034490917, -2.1241429E-4, 0.0076405643, -0.02120121, 0.024438968, 0.006360363, -0.046114326, -0.0037254523, -6.56611E-4, 0.012693632, -0.008988501, 0.023707423, 0.03592691, -0.009476196, 0.045518253, 0.0062824674, -0.0128155565, -0.0030870454, 0.031700213, 0.015091469, 0.019128505, 0.0045789196, 0.015850106, -0.005530603, -0.034545105, 0.011223772, 0.013093271, 0.0046568154, -0.024872474, -0.0025468548, -0.001534209, -0.010410946, -0.013655476, 0.0027636082, 0.030833198, 0.0013403161, 0.025536282, 0.011569223, 0.015579164, 0.012890065, 0.019819407, -0.020754157, 0.025793677, -0.008094392, -0.014495396, -0.028015401, 0.030589351, 0.012781688, 0.0013716439, 0.023273917, 0.015511429, -0.007471225, 9.432168E-4, -0.0044908635, -0.017949907, -0.022014037, 0.013011989, -0.011366016, -0.0012895146, -0.01868145, -0.023206182, 7.3112E-4, -0.04860699, 0.0074847727, -0.008758199, 0.002902466, 0.03427416, -8.2425633E-4, 0.010167099, -0.017435117, -0.047414847, 0.00982842, -0.012341408, 0.014508944, -0.018369867, 0.031402178, -0.0013674104, 0.0070377183, -0.01282233, -0.01826149, 0.0013013682, 0.001512195, -0.009699724, -0.004006555, 0.0012039985, -0.018410508, -0.054432247, 0.0074238107, 0.007952147, -0.0037186788, -0.010261928, 4.1212817E-4, 0.017042251, -0.002783929, 0.0043655527, -0.008148581, -0.015443694, 0.026918087, 0.027432876, 0.012537841, 0.010593832, 0.016053313, 0.02461508, 0.015890747, -0.002054079, -1.2160638E-4, 0.020903174, 0.005987818, -0.017977001, 0.008744652, -0.009449102, -0.027080651, -5.291836E-4, 0.022853957, 0.05399874, 1.5875508E-4, 0.007931827, -0.009408461, 2.7835056E-5, -0.01807183, -0.09867708, 5.768101E-5, 0.011311828, 0.043648753, -0.025251793, 0.039693, -0.008040204, 0.0127613675, -0.029966185, 0.03825701, -8.200229E-4, -0.012036598, 0.008046977, -0.00511403, 0.014454755, 0.009510064, -0.017841531, -0.016608745, -0.013181328, 0.028394721, 0.006211345, -0.010668341, 0.0027382076, -0.013133913, -0.015199846, 0.012578482, -0.016757762, 0.019412994, 0.017814435, 0.008324693, 0.006553409, -0.0068819267, 0.010912188, -0.024168026, -0.019385898, -0.031375084, -0.029315922, -0.004545052, 0.0021387483, -0.038094442, 0.004558599, 0.019020127, 0.019562012, -0.022433996, -0.013818041, -0.0031005924, -0.03947625, 0.012978122, -0.008284051, -0.01948073, -0.0035764342, -0.005672848, -0.03134799, 0.0016231119, -0.0013784174, 0.020442573, 0.028801134, 0.02246109, -0.016974516, -0.031375084, 0.0067193615, -0.010478682, -0.007383169, 0.019995518, 0.015118563, 0.021336682, -0.007627017, -0.02200049, 0.019060768, -0.020767704, -0.02606462, 0.03283817, -0.038934365, -0.0018694997, -0.025021493, 0.019020127, -0.032242097, -0.0023707424, 0.025902053, -0.035899814, 0.0025400813, -0.024479609, 0.0063061747, -0.010499002, 0.0067769364, 0.019968424, 0.021512793, 0.013221969, -0.0012048451, -0.045843385, -0.005855734, 0.012713953, 0.0044671563, 0.024506703, 5.816786E-4, 0.0083450135, 0.0040742904, 0.003911725, -2.7030698E-4, 0.014359926, -0.01681195, 0.0028025561, -0.066868484, 0.03909693, -0.02536017, -5.7151826E-4, -0.01240237, -0.0053985193, 0.009760685, -0.007383169, -0.013628382, 0.014576679, 0.0021387483, 0.014590226, -0.006577117, -0.0048938897, 5.889813E-5, 0.024682816, -0.0058286395, -6.609503E-5, -0.004257176, 0.008731105, -0.01335744, 4.8854225E-4, 0.015917841, 0.008195995, 0.002142135, 0.0053781983, 0.023856442, -0.00657373, -0.013066177, -0.012449784, 0.03419288, -0.0089343125, -0.005506896, 0.010079042, -0.009069783, -0.029017888, 0.0033461335, -0.010959604, 0.012700406, 0.0094694225, -0.004077677, -0.012619123, 0.0011989183, -0.0021641492, -0.011183131, 0.01929107, -0.013370987, 0.013587741, -0.002355502, 0.012964575, 0.035114083, 0.020835439, -0.0043249116, -0.020171631, 0.013100045, -0.0070648124, 0.036224943, 0.003054871, -0.009042689, -0.021878567, 0.02297588, -0.0077557145, 0.032242097, -0.037633844, 0.005584792, -0.010214513, 0.0062689204, -0.0212554, -0.017977001, -0.022339167, 0.0045348913, -5.719416E-4, 0.010526096, 0.04169797, 0.016432632, 0.007809903, -0.01335744, 0.0013174554, 0.0064789006, 0.0069293412, 0.016852591, -0.01232786, -0.03497861, 0.022718485, -0.0070919064, 0.0037559334, 0.006638079, 0.0053985193, 0.004975172, 0.0015816239, -0.002128588, 0.018654356, 0.023897083, -0.0039015647, 0.013492911, 0.004738098, -0.018058283, -0.0036814243, -0.0031192196, 0.022379808, -0.021878567, -0.020957364, 1.3081418E-4, -0.014224455, -0.0327027, -0.009144292, -0.02032065, -0.027297406, 0.006499221, 0.01375708, 0.02680971, 0.011521808, -0.009970665, 0.0127275, -0.032594323, 0.004375713, 0.0076405643, -0.0060657137, -0.008595634, 0.022569468, 0.015917841, 0.015565617, 0.030508067, 4.4917103E-4, 0.04833605, 0.0020794799, 0.019277522, -0.00992325, -0.002023598, -0.0024317044, 0.0011320295, -0.0020134377, -0.032621417, 0.0053341705, -0.012659765, -0.007247698, 0.007830223, 0.028828228, -0.019250428, 0.06432163, 0.0065330886, -0.009740365, 0.02120121, -3.9371257E-4, 0.009137519, 0.027121292, 0.011907901, -0.0070173973, -0.0072002835, 0.0036611035, -0.0073493016, 0.0138722295, -0.017692512, 0.008954633, -0.016215878, 0.0045789196, 0.0054662544, -0.009415234, -0.026755521, 0.0024486382, -0.008026657, 0.025387265, -0.002106574, -0.010797039, -0.008189222, 0.016215878, -0.023788707, 0.011575997, -0.021919208, 1.4552548E-4, -0.02606462, 0.006553409, 0.002316554, 0.028719852, -0.0058387998, -7.2053634E-4, 0.0034782179, 0.017922813, -6.028459E-4, -0.0055136695, 0.004375713, -0.01555207, -0.013743533, 0.019128505, -8.2637306E-4, -0.0047008437, -0.02680971, -0.018884657 ], + "id" : "bdccca05-8a57-4600-8f02-28f822b99e7f", + "metadata" : { + "source" : "movies.csv" + } + }, + "1c2e2484-2d7a-42fe-bae3-749d01c74622" : { + "text" : "N�_��ez Jr.-Philip Moon-Vince Howard-Paul Hipp-Lauren Shuler Donner-Marian Collier-James Oliver-Jan de Bont-Mic Rodgers-Stephen T. Kay-Norman D. Wilson-Anthony Johnson-Jason Rainwater-J. Mills Goodloe,showdown-police-sequel-mixed martial arts-los angeles california-rookie cop-wisecrack humor-buddy cop-lapd-maverick cop-aftercreditsstinger-action hero,/8FnOudDHPOY7MFJnvQMR1qpuyek.jpg,/kmt9XmhmX36sJduuDVFlTgEWh9U.jpg,944-942-941-81996-2112-3595-9359-18501-9350-9739-1573-1572-90-36955-29514-9319-881-96-10139-306-37137\r\n20943,The Ugly Truth,Comedy-Romance,en,A romantically challenged morning show producer is reluctantly embroiled in a series of outrageous tests by her chauvinistic correspondent to prove his theories on relationships and help her find love. His clever ploys however lead to an unexpected result.,26.367,Lakeshore Entertainment-Relativity Media,7/24/09,38000000,321682600,96,Released,The battle of the sexes is on.,6.494,3176,Katherine Heigl-Gerard Butler-Eric Winter-Nick Searcy-Bree Turner-John Michael Higgins-Kevin Connolly-Cheryl Hines-Bonnie Somerville-Jesse D. Goins-Noah Matthews-John Sloman-Yvette Nicole Brown-Nate Corddry-Allen Maldonado-Steve Little-Dan Callahan-Tess Parker-Arielle Vandenberg-Rocco DiSpirito-Valente Rodriguez-Jamison Yang-Blake Robbins-Tom Virtue-Adam J. Harrington-J. Claude Deering-Alexis Krause-Craig Ferguson-Jade Marx-Berti-Mimi Michaels-Earl Carroll-Marc D. Wilson-Jeff Newburg-Ryan Surratt-Vicki Lewis-Yolanda Pecoraro-Brooke Stone-Stephanie Mace-Ashley Ausburn-Kevin Bangos-Melinda Bennett-April Betts-Skyler Caleb-Adam Clark-Sandra Daubert-Sabrina Diaz-Kim Donovan-Christina Gabrielle-Steven Galarce-Jerald Garner-Lejla Hadzimuratovic-Justin Rodgers Hall-Stephen Hansen-James Howarth-Alexandra Nicole Hulme-Courtney Kocak-Bruna Matsin-Tina Mayer-Taylor McCluskey-Erin Micklow-Bob Morrisey-Barnett O'Hara-Shanna Olson-Sandra Plazinic-Calo Rodriguez-Ashton Shane-Anthony Simone-Rich Skidmore-Chris Spinelli-Holly Weber-Tracy Weisert-Tamara Witmer-Carolina Zaballa,surgeon-sexism-romantic comedy-romance-television producer-morning show-relationship-sex toy-misogyny-opposites attract-sacramento,/2rq96Ihbqb1eU3TEBVtgFlqbeX7.jpg,/5etQ5b9reaWiSJtc9cZK5ULVADp.jpg,6557-38408-37821-18240-27573-9029-41630-10521-32856-6023-10184-50546-50544-37056-12556-9919-4964-10096-878508-54054-62838\r\n20662,Robin Hood,Action-Adventure-Drama,en,When soldier Robin happens upon the dying Robert of Loxley he promises to return the man's sword to his family in Nottingham.", + "embedding" : [ 0.009090906, -0.039757565, -0.016377099, -0.028148139, -0.017845113, 0.034747463, 0.013562285, -0.0051313117, -0.027717164, -0.03267339, 0.025589218, 0.009865317, 0.024794605, 7.605216E-4, -0.0015277773, 0.01548821, 0.015609423, -0.027959587, 0.009144778, -0.027259251, 0.012734002, 0.0014436023, -0.019636357, 0.0077575734, 0.016888883, 0.011582488, 0.036579113, -0.013649828, -0.006040402, -0.010942757, 0.01380471, -0.0049865306, 0.004168349, -0.0317845, -0.019582486, -0.004636362, 0.0062255873, -0.03369696, 0.022828275, -0.0014343429, 0.015797975, 5.656564E-4, -0.01488215, -0.0052861935, -0.025212113, 0.0063131293, 0.02488888, -0.008404038, -0.0020740735, 0.034127936, 0.02828282, 0.03191918, -0.011542084, -0.033400662, 0.0014225584, 0.0035218843, -0.0038518507, 0.00839057, 0.0032239046, 0.0035925915, 0.0069898968, -0.011326596, -0.02712457, -0.008148146, -0.009171714, -0.016619524, -0.014074069, -0.018626256, -8.5732294E-4, 0.0082693575, 0.02833669, 0.021791238, 0.0045420863, 0.012868683, 0.017602688, -0.027420867, -0.027932651, 6.864476E-4, -0.0040841736, -0.010875418, 0.013898985, -0.007313129, -0.022437703, -0.006060604, 0.01143434, 0.010666664, -0.0054747458, 0.03450504, -0.019138042, 0.01244444, 0.001400673, 0.04261278, -1.92945E-5, -0.0053838366, -0.0010437707, 0.02550841, -0.02002693, 0.019218849, -0.013629626, -0.024336692, 0.009717168, -0.0108215455, -0.0053131296, -0.009427606, -0.0076700314, -0.007178449, 0.008787876, -0.0061616143, 0.020323226, 0.016430972, -0.0047609415, 0.0021111104, 0.022316491, -0.036767665, -0.0094343405, -0.01799326, 0.012653194, -0.012235686, -0.018168345, -0.021494942, 0.015663294, 0.02490235, 0.0067306375, -0.04565655, 0.032754198, 0.0234074, 0.004329965, -0.015636358, -0.0013223902, 0.0050235675, 0.037306387, -0.010303027, 0.021845112, 0.018235685, -0.034181807, 0.047784496, -0.025468005, 0.015851846, -0.025414133, -0.012430972, 0.032754198, 0.03326598, -0.020794606, -0.0111717135, -0.012707067, -0.0026784504, 0.014020198, -0.015003363, 0.020538714, 0.002025252, 0.027690226, 0.003986531, 0.01657912, 0.012060602, 0.027286187, -0.0066902335, -0.0013089222, 0.00798653, 0.0025319858, -0.017656561, 0.015932655, -0.0051515135, -0.0047912444, -0.014006729, -0.002089225, 0.010316495, 0.01934006, -0.00923232, 0.0018249153, -0.0066666645, -2.2622047E-4, 0.019690229, -0.022154875, 0.012936023, 0.006030301, 0.019542081, 0.008262624, -0.013515147, -0.01934006, -0.0052020187, 0.0019663293, -0.0013434339, 0.025023561, 0.025131306, -0.011111108, 0.023205379, 0.028121203, -0.024848478, -0.0023535346, -0.016727267, 0.0029511775, 0.014383834, 0.0049730623, -6.3804694E-4, -0.6516362, -0.015178447, -0.0065589203, -0.025144773, 0.01920538, 0.0035218843, 0.004491581, 0.0069090887, -0.041427597, -0.002734006, -0.019595953, 0.0109966295, 0.03504376, -0.014397302, -0.02401346, -0.021939388, 0.009023566, -0.011589222, 0.015380466, 0.0015008412, -0.03240403, 0.014262622, 0.022033663, -0.0017828278, 3.4238206E-4, 0.0025673392, -0.0032946118, -0.014060602, 0.013360265, -0.0054410757, -0.022141406, 0.010505048, 0.027515143, -0.0024124573, 0.037898976, -0.014909086, -0.02083501, 0.043528605, 0.032646455, 0.01468013, -0.027030295, -0.0072121187, 0.0015067335, 9.486529E-4, -0.016430972, 0.013090905, 0.006026934, -0.0089562265, 0.0061851833, 0.007104375, -0.005602692, 0.007144779, -0.0014739053, -0.024781138, -0.008478112, 0.013050501, 0.015340063, -0.025872046, 0.019771038, 0.0060740723, -0.027286187, 0.015043766, -0.008606058, -6.7003345E-4, -0.009723903, 0.030491574, 0.0047340053, -0.013952858, 0.015730634, -0.017360264, 0.005740739, 0.009387203, -0.00431313, -0.01488215, 0.003372053, 0.011259256, 0.027111102, -0.004282827, 0.004350167, 0.013993261, -0.0034208742, 0.005659931, -0.0054410757, 0.015730634, 0.016956223, 0.0036599315, -0.032107733, 0.007292927, 0.021144774, -0.0052659917, 0.01962289, 0.011346797, 0.009393936, 0.007299661, -0.0096565625, 0.018316492, -0.0037878775, 0.015420871, 0.028067332, -0.07245789, -0.009818179, -0.0170505, 0.024538713, -0.0027794605, 0.009427606, -0.0064747455, 0.00240909, -0.0054074056, 0.02278787, -0.0111245755, -2.8261775E-4, 0.0015277773, -0.017818177, 0.0012626259, -0.016067335, -0.032565646, 0.035070695, 0.024525246, 0.008235687, 7.2138023E-4, 0.0054882136, -0.002109427, -6.2289543E-4, -0.013319861, 0.011380468, 0.028013458, -0.0049730623, 0.0049696956, -0.004353534, -7.4831623E-4, -0.006006732, -0.003392255, 0.025966322, -0.01387205, 0.0035521875, -0.0021548814, 0.019569017, -0.0109494915, 0.017346796, -0.0029006724, -0.010639727, 0.0077643073, -0.012599323, -0.022208747, 0.0022861946, -0.029791236, -0.031703692, -0.0050269347, -0.018316492, -0.006262624, -0.0075084153, 0.011441073, 0.0014730635, 0.0018468008, 0.012680131, 0.012632993, -0.027582483, -0.0078114453, 0.0052323216, -0.007925923, 0.0026094269, 0.009084173, -0.010444441, -0.02429629, 0.031622887, -0.0070437687, -0.004080807, 0.007535351, -0.010235687, -0.035555545, 0.017656561, -0.011925922, -0.0072121187, 0.012437707, -0.021010095, 0.02495622, -0.009016832, 0.021212114, 0.011003364, 0.0015909086, 0.004074073, 0.0031784503, -0.03173063, -7.6388865E-4, 0.021481475, 0.022491576, 0.026639722, -0.013259255, -0.0078114453, 0.0016994944, -0.019609421, -0.012404037, 0.0035252515, -0.0029579115, 0.0010050501, 0.0223973, -3.1144773E-5, 0.019649826, 0.026262619, 0.002915824, 0.03997305, 0.017710432, 0.004148147, -0.010707067, 0.006983163, -0.03437036, 0.0064814794, -0.033239048, 0.008848482, -0.0091313105, 0.020538714, -0.002186868, -0.0041414127, -0.007407405, 0.004552187, 0.026707062, -0.024390565, 0.016915819, -0.014127942, 0.005558921, 0.0068653175, -0.007999998, 0.010787875, 0.007272725, -0.022828275, 1.246843E-4, 0.017912453, -0.01590572, -0.012228953, -0.01548821, -0.0048552174, -2.1022721E-4, -0.005252524, 0.0013156561, -0.0015816493, -0.004612793, 0.017872049, -0.015946124, 0.03369696, -0.0019713799, -0.0047676754, 0.03205386, 0.026693594, -0.0033097633, -0.0035892245, -0.017670028, 0.023353528, 0.022410767, -0.0022272721, 0.035097633, -0.013259255, 0.01859932, 0.010511781, 0.006030301, 0.002149831, -0.008713802, 9.200334E-4, 0.013380467, 0.04323231, 0.023959588, 0.017656561, -0.009292927, 0.018868681, 0.0065690214, 0.013629626, -0.015636358, -0.008370368, 0.0050471365, -0.022154875, -0.027851842, -0.0177239, -0.017292924, 0.008902354, 0.022518512, -0.0039326586, -0.0065959576, -0.016484844, 0.0050774394, 0.021898983, 0.020215482, -0.016215483, -0.019164978, 0.018316492, 0.026195278, -0.019299658, -0.0050505036, -0.021696962, -0.015434339, -0.024094269, 1.3404878E-4, -0.009124576, 0.024646457, -0.015232318, 0.010585856, -0.009730637, -0.008498314, 0.012350164, -0.0069562267, 0.020592585, 0.02232996, -0.0013148144, 0.006262624, -0.009420873, -0.011380468, 0.03302356, -2.1527772E-4, 0.021050498, -0.0068417485, -0.0011826595, -0.010606057, -0.009023566, 0.019811442, -0.0377643, 0.011744104, -0.015097639, -0.0066060587, -0.010538717, -0.011050502, -0.0025218846, -0.016915819, -0.013016831, -0.030733997, -0.02712457, -0.0017037032, 0.07897641, 0.029171707, 0.010370367, 0.008531984, -0.020255886, -0.0086195255, -0.008835014, -0.012087538, 0.009427606, -0.00454882, 0.0304377, -0.01427609, 0.018518513, -0.0015210432, 0.016902352, -0.014558918, 0.0014318178, -0.0053737354, 0.0055622878, -0.016067335, -0.017683497, 1.722432E-4, 0.021791238, 0.028848475, -0.007845115, -0.019703697, 0.03240403, 0.0041178437, 0.004434342, 0.0083569, -0.017158244, 0.0041111098, 0.012835013, 0.014531982, -0.015003363, -0.005612793, 0.03164982, 0.016686864, 0.032026924, 0.008673398, -0.011488212, 0.012282824, 0.005484847, -0.008680132, 0.027986523, -0.027164975, -0.006942759, 0.029063964, 0.021333328, -0.046033654, 0.0048888875, 0.0026683493, -0.019838378, -0.012760939, 0.019838378, -0.0012079121, -0.0035757564, 4.1119516E-4, -0.018181812, 0.016336694, -0.006888887, -0.026329959, 0.026828274, -0.01995959, -8.3333306E-4, -0.020956222, -0.0063973046, -0.0051649814, 0.0011026933, 0.0051750825, 0.0021111104, -0.00825589, -0.011528616, 0.0064579104, 0.014962958, 0.002791245, 0.02544107, -0.007057237, 0.002962962, 0.0018181812, -0.034531977, -0.031030294, 0.0160404, -0.022949487, -0.011043767, 0.0050740726, -0.0050875405, 0.011865316, -0.009494946, -0.0017895617, 0.0024579116, 0.0021986526, -0.009010098, -0.020471374, 0.040754195, -0.0019966324, 0.0031363626, 0.028929284, 0.018491577, -0.008505048, 0.0020572385, -0.017696964, -0.008457909, -0.021912452, -0.021346794, -0.0033366992, -0.001106902, 0.0090033645, -0.022370363, -0.019313125, -0.012343431, -0.0304377, 0.0068114456, 0.0030606051, 0.0047912444, -0.011037034, 0.007191917, 0.016754203, 0.004713803, -0.0072121187, -0.010410771, -0.009999997, 0.0036464634, 0.006895621, -0.008471378, 0.019851845, -0.009494946, -0.03455891, 0.010208751, 0.03620201, -0.0016944439, 0.0031430966, -0.017979791, -2.8172339E-5, -0.010404037, -0.02036363, 0.01745454, -0.0028265985, -0.0028939385, 0.004771042, -0.015299658, -0.0033821538, 0.027016826, -0.002146464, 0.0014461275, -0.02150841, 0.016215483, -0.007898987, -0.003013467, 0.02496969, -0.011286192, 0.0063467994, -0.022545448, 6.931816E-4, -0.0033905713, -0.038868673, -0.029575748, -0.01474747, 0.030760933, 0.010464643, 0.045117833, 0.0053703687, 0.022074068, 0.0021245785, 0.01602693, 0.027905716, -0.014343429, -0.012188548, -0.0230707, 0.0153669985, 0.017710432, 0.020457907, 0.006767675, 0.015340063, 0.0030757566, 0.015784508, 0.01244444, 0.008531984, -8.190233E-4, -0.016363632, -0.02076767, -0.0019057234, -0.022020195, -6.976008E-5, -0.027569015, -0.016053867, 0.03105723, 0.0076632975, -0.0052626245, -0.015407403, 0.024929285, 0.001964646, 0.010713802, -0.0083569, 0.0132457875, -0.0153669985, -0.004353534, -0.022074068, -0.015326595, 9.3771017E-4, -0.022451172, 0.012026932, -0.007178449, -0.020996626, 0.005602692, 0.035124566, -0.033858575, -0.04148147, 0.018451173, -0.0023400667, -0.009104374, -0.010020199, -7.6725567E-4, -0.033589214, -0.012922555, 0.0062895603, 0.0018097637, 0.0041414127, -0.01868013, -0.04255891, 0.018047132, -0.016592588, 0.033750832, 0.012659929, 0.046599314, 0.031622887, 0.002449494, -0.013178447, 0.028175075, -0.0047811433, -0.0040033655, 0.020269353, 0.027555548, -0.006077439, -0.004528618, -0.010296293, -0.016188547, -0.034962952, -0.034612782, 0.029333323, 0.02678787, 0.022437703, -0.03307743, -0.002163299, -0.02414814, 0.018383833, -0.0037878775, 0.0054343417, 0.009454543, -0.017037032, -0.026653191, 0.0024595952, -0.0065488196, -0.0020555549, 0.009474744, -0.04145453, 0.011205384, -0.02949494, 0.004915823, -0.005999998, -0.012390569, 0.040888876, -0.031973053, 0.0056733987, 0.017575752, 0.014855214, -4.9789547E-4, -0.007158247, 0.0026430967, 0.02828282, -0.011077438, 0.022356896, -0.01785858, -0.004033669, 0.011090905, 0.024673393, -0.023717165, -0.017279455, -0.019178445, -0.0067508398, 0.023286188, 0.016659927, -0.011447808, 0.002821548, -0.021777771, -0.007528617, 0.0032777768, 0.0012769356, 0.005491581, -0.044767663, 0.011696966, -0.018343428, 0.008491579, -0.0011481477, 0.0017045449, 0.00585185, 0.0022222216, 0.007353533, -0.007205385, 0.0024865312, -0.028148139, -0.0064343414, -0.027016826, -0.0160404, -0.0014520198, -0.0025993257, 0.03504376, -0.025925918, 0.014168345, 0.004602692, 0.0020269353, -0.01725252, -0.0017508412, -0.012471377, -0.0034090898, 0.019057233, -0.020673394, 4.036194E-4, -0.0040437696, 0.030814806, -0.004787877, 0.007892254, 0.0061548804, 0.0018754203, 0.027932651, -0.0297643, 0.0023316492, 0.007777775, -0.007649829, -0.008235687, 0.015474742, 0.018154876, 0.016094271, -0.009683498, -0.032888878, -0.0033417498, -0.0072525227, 0.038437698, -0.0017020197, 0.02232996, 0.026222214, 0.032323223, 0.021427603, 0.041104365, -0.012134676, -0.037791234, 0.005531985, -0.015245787, -0.020875415, -0.0047508404, 0.012821545, 0.008168347, 0.0033198642, -0.022033663, -0.035016824, -0.0024831642, -0.012235686, -0.038733993, -0.009225586, 0.025158241, 0.039057225, -0.004202019, -0.002989898, 0.008161614, 0.0054107727, 0.016835012, -0.009373735, -0.0033585848, 0.011037034, 0.002936026, 0.024794605, 0.020996626, -0.025387198, -0.0016321543, 0.0053771026, 0.02300336, 0.0077575734, 0.023501676, -0.023501676, -0.02211447, -0.014989894, -8.670031E-4, 0.0015303026, -0.0019225583, 0.020875415, -0.030599317, 0.0019124573, 0.012026932, 0.024929285, -0.009070704, 0.013750837, 0.0026228947, -0.0015159928, -0.01116498, -0.0036060594, -0.021804707, 0.004511783, -0.029872045, 0.015717167, -0.0015631309, -0.007872052, 0.016686864, 0.019501677, -0.0021430969, 0.0021818175, -0.011811445, 0.0035589214, -0.012269356, -0.010606057, 0.0012870366, 0.017952856, -0.04964308, 0.028983155, -0.021616155, -7.819863E-4, -0.0038888876, 0.012101007, -2.1517249E-4, 0.028255884, 0.021292923, -0.045414127, 0.005892254, -0.0015084171, -0.010835013, -0.0018989893, 4.1414128E-4, -0.026424235, -0.0118585825, -0.009104374, -0.0011725585, -0.005437709, -0.025670025, -0.004424241, -0.022289556, -0.014787874, 0.025616154, 0.18488882, -0.007111109, 0.013744104, 0.040915813, -0.0066094254, 0.009649829, 0.019730633, 0.018154876, -0.0019562284, 0.009690233, -0.0032727262, 6.9528597E-4, 0.0019494944, 3.6237363E-4, 0.0143299615, -0.010720535, -0.031622887, -0.020781139, -0.020875415, -0.025804706, -0.009124576, 0.0035555544, -0.004121211, -0.021481475, 0.014087537, 0.005872052, -0.0061313114, 0.010942757, 0.011555552, -7.8366976E-4, -0.025818173, -0.014303026, 0.0123366965, 0.008181816, -0.01934006, -0.0023804707, -0.016255887, 0.007528617, 0.012437707, -0.004764308, -0.0023131305, -0.021319859, -0.004612793, -0.019649826, 0.001988215, 0.018356897, -0.0277441, 0.0051380456, -0.024619522, -0.0034175073, -0.04931985, 0.0052895606, 0.023124572, 0.01948821, -1.7140147E-4, -0.0019713799, 0.001420875, 0.0026094269, -0.0076296274, -0.012592589, 0.010060603, 0.03428955, -0.032026924, 7.6388865E-4, -0.0014840063, 0.024323225, -0.035528608, -0.010161613, 0.013299659, -0.027097635, -0.009555552, -0.020336693, -0.013016831, 0.0030218845, 0.0013964642, -0.015380466, -0.005777776, 0.0028282818, -1.2215905E-4, 0.021952854, -0.023380464, -0.0066464627, -0.0069090887, -0.0042053857, -0.016242418, -0.011367, 0.005437709, -0.014801342, -0.008835014, -0.013730635, -0.021656558, -0.025239049, -0.018976426, 7.45791E-4, -0.0035892245, -9.478112E-4, 0.020659925, 0.03498989, -0.016430972, -0.0038686856, -0.031676758, 0.022639723, 0.022424236, -0.0097037, -0.019851845, -0.01948821, 0.018639725, 0.010599324, 0.030033661, -0.023986524, -0.010700333, -0.02949494, 0.004471379, -0.01711784, 0.003175083, 0.011919188, 0.023515144, -0.011643094, 0.021629622, -0.014734002, 0.0078047113, -0.009629627, 0.011919188, 0.011542084, 0.0028030295, -0.031138036, -0.026814807, 0.00595286, 0.0077575734, -0.03065319, 0.023084167, -0.028983155, 0.019636357, -5.652355E-4, 0.0021313124, 0.0033417498, 0.026464637, 4.1856046E-4, 0.009272724, -8.468011E-4, 0.0011010098, -0.0068821525, 0.012127942, -0.0052962946, 0.022882147, -0.022558916, -0.003067339, -0.014558918, -0.0038518507, -0.008673398, -0.0106464615, -0.008457909, 0.009973061, 0.009750838, 0.045494936, -0.0010303027, -0.02096969, -0.04729965, -0.01597306, 0.043259244, -0.030922549, 0.02936026, 0.016875416, -0.008175082, -0.029441068, -0.010215485, -0.17303698, 0.019569017, 0.0076700314, -0.02483501, 0.010545451, 0.01515151, 0.024309756, 0.006663298, 0.0077508395, -0.032242414, 0.008336698, 0.011643094, -0.037521873, -0.0034343423, 7.832489E-4, 0.016363632, -0.020457907, 0.028579116, 0.017629623, 0.010612791, 0.034451168, 0.0017710432, -0.013683497, -0.008181816, 1.235269E-4, 0.0033602682, 0.021872047, 0.01461279, 0.005771042, -0.012269356, -0.03030302, -4.1056384E-4, 0.0014217168, 0.010835013, -0.0048383824, -0.0068383818, -0.01859932, -0.011420872, -0.009797976, -0.005976429, 0.02678787, 0.012404037, 0.030006725, 0.0077104354, 0.0027441068, 0.030841742, 0.029010091, -0.005747473, 0.0106935995, -0.014572386, -0.014572386, -0.04824241, 0.026329959, -0.013090905, 0.006003365, 0.025414133, -0.0022053865, -0.013164979, 0.011414138, 0.001194444, -0.025144773, -0.012424239, 0.011851848, -0.014020198, -0.016969692, -0.03132659, -0.02197979, 0.025750834, -0.021117838, 0.0052424227, -0.01167003, 0.0020134675, 0.018437704, -0.011259256, 0.010686865, -0.020619523, -0.039003354, 0.002626262, 0.0013291242, 0.019245785, -5.6607724E-4, 0.044740725, -0.0015984843, 0.0059696953, 0.010282825, -0.016915819, -0.0062424224, -6.0900656E-4, 0.0063569006, -0.011508414, -0.011387202, -0.024538713, -0.020107739, 0.0070370347, -0.0050168335, 0.008720536, 0.008720536, 0.008639728, 0.00538047, -0.02280134, 7.5883814E-4, -0.015622891, -0.0117037, 0.027084166, 0.027164975, 0.021683495, 0.007643095, 0.006936025, 0.028686859, 0.0018282823, -0.007414139, 0.0037912447, 0.018855212, 0.015838379, -0.026841743, 0.015178447, -0.0037575746, -0.03119191, 0.010026933, -0.004350167, 0.06130638, -0.0027929284, 0.008902354, -0.021265987, 5.214645E-4, -0.020740734, -0.08694947, 7.0791226E-4, 0.013582488, 0.029333323, -0.025872046, 0.046329953, -0.013925921, 0.031407397, -0.01684848, 0.037845105, 0.008457909, -0.02130639, 0.009824913, -7.062287E-4, 0.016740736, 0.008983162, -0.021548815, -0.01441077, -0.0037575746, 0.02631649, -0.0063299644, -0.00585185, -0.012949491, -0.026545446, -0.025279453, -2.5862787E-4, -0.03706396, 0.016457908, 0.010175081, 0.014101006, 0.01656565, -0.025279453, 0.0067508398, -0.03889561, -0.027164975, -0.023555549, -0.023771036, -0.031676758, 0.0072525227, -0.05688887, 0.010060603, 0.011050502, 0.017656561, -0.03267339, -0.014356898, 0.0037508407, -0.027447803, 0.027084166, -0.0150168305, -0.013340063, -0.0034377093, -5.2861933E-4, -0.030491574, -0.024161609, 0.0237441, 0.040754195, 0.031084165, 0.005936025, -0.014397302, -0.01420875, -0.0025925918, 0.0014284507, -0.02685521, 0.0064814794, 0.0052424227, 0.007616159, 0.0035252515, -0.004531985, 0.016255887, -0.014666662, -0.025535345, 0.023420868, -0.041023556, -8.072388E-4, -0.012101007, 0.016296292, -0.027636355, -0.008922556, 0.032888878, -0.03030302, 0.019946123, -0.033400662, 0.007225587, -0.023771036, 0.010390569, 0.025360262, 0.022370363, 0.022828275, -0.0160404, -0.03146127, -0.0012676764, 0.019649826, 0.0070033646, -0.013272723, 9.869526E-5, 0.0116026895, 0.013562285, 0.0037845105, -0.0051010083, -0.001481481, -0.0066397283, 0.0067744087, -0.07779122, 0.026976423, -0.027905716, -0.010323229, -0.023205379, -0.0070774388, 0.008882152, -0.011939391, 0.010242421, 0.007690233, -0.016188547, 0.022639723, -0.0071245767, 0.010249155, 0.0010395619, 0.012888885, 0.0067239036, -0.0049427594, -0.004387204, -0.0048922542, -0.0011767673, 0.0064579104, 0.018289557, 0.0035925915, -0.0054478096, 0.032781135, 0.0050909077, 0.0194074, -0.015420871, -0.015999995, 0.019932654, -0.018693596, -0.015609423, 0.011494946, -3.242844E-4, -0.024161609, -0.005979796, 0.010922556, 0.026962955, 0.0061447793, -0.029414132, -0.03795285, -0.014828278, 0.0022053865, -0.02490235, 0.006855217, -0.025346793, 0.007602691, 0.0100875385, -0.0028366994, 0.035016824, 0.009622892, -0.008316495, -0.018855212, 0.014316494, -0.014976426, 0.05120537, 1.2226427E-4, -0.0018451173, -0.019124573, 0.024107736, 0.017494945, 0.023515144, -0.017468007, 0.014962958, 0.0050639715, 0.0037710427, -0.0019764304, 0.0068922536, -0.016956223, -0.012720535, -0.007286193, 0.004326598, 0.034181807, 0.002939393, 0.007535351, 0.013710434, 0.007602691, -5.5976416E-4, 0.026747467, 0.012471377, -0.017239051, -0.016942756, 0.022451172, 8.3838357E-4, 0.018020196, -0.014249153, 0.0139797935, 0.0031986523, 0.012350164, -0.018787872, -0.00444781, 5.8670016E-4, -0.0021919184, -0.0013964642, 0.009050502, -0.025858577, -0.007474745, -0.0056733987, 0.02618181, -0.012949491, -0.0060808063, -0.014787874, -0.028444435, -0.022882147, -0.0015959591, -0.021346794, -0.014181814, 0.0037441065, 0.021710431, 0.024929285, 0.011818178, -0.007063971, 0.0123771, -0.030949485, 0.0011919189, -0.01684848, -0.02490235, -0.018585853, 0.052013453, 0.011629626, 0.009488213, 0.032700326, -0.0064242403, 0.03760268, 0.022491576, 0.0083973035, -0.02611447, -0.004121211, -0.006006732, 0.010215485, -0.0066397283, -0.020646458, 0.014316494, -0.01079461, 0.011326596, 0.012592589, 0.030760933, -0.024269352, 0.061198633, 0.014653194, -0.007690233, 0.017104372, -0.020861946, 0.01393939, 0.009104374, 0.012579121, -0.019609421, -0.014020198, -6.9276075E-4, -0.0019292923, 0.01657912, -0.043824904, -0.0051077423, 0.008942758, 0.005774409, 0.020619523, 0.0035925915, -0.018949488, -0.0020841744, -0.014006729, 0.013043767, 0.005420874, -0.004333332, -0.0048249145, 0.01942087, -0.013481477, -0.010659929, -0.02016161, -0.0023468006, -0.021912452, 0.011151511, -0.007340065, 0.040646452, 0.001565656, -0.005909089, 0.012323229, 0.022451172, 0.0012962959, -0.019124573, -0.008410771, -0.016430972, -0.012895619, 0.01812794, -0.012498313, 6.9570687E-4, -0.020215482, -0.02719191 ], + "id" : "1c2e2484-2d7a-42fe-bae3-749d01c74622", + "metadata" : { + "source" : "movies.csv" + } + }, + "00fe0f21-f9e9-46a6-908b-7aa1fc90efb0" : { + "text" : "4,1626,Paul Hogan-Linda Kozlowski-Mark Blum-David Gulpilil-Michael Lombard-John Meillon-Ritchie Singer-Reginald VelJohnson-Rik Colitti-John Snyder-Steve Rackman-Caitlin Clarke-Anne Francine-Irving Metzman-Paul Greco-Maggie Blinco-Gerry Skilton-Terry Gill-Peter Turnbull-Khristina Totos-Graham 'Grace' Walker-David Bracks-Brett Hogan-J.J. Cole-Gwyllum Evans-Clarie Hague-Jan Saint-Peter Bucossi-Sullivan Walker-Bobby Alto-Anne Carlisle-Paige Matthews-Nancy Mette-Barry Kivel-Tony Holmes-Dan Lounsbery-Dolores Messina-Danny Aiello III-Dhonna Harris Goodale-Tony LaFortezza-Joe Pentangelo,new york city-prostitute-hotel-journalist-culture clash-subway-crocodile-wilderness-knife-tourist-limousine-poacher-fish out of water-adventurer-australian outback-kangaroo,/pduPduL1ub5kok3lPYT15ryC9L6.jpg,/8nSB593brq5iI3RTLGnjNqnhK46.jpg,9396-53460-9290-9336-96-10328-9354-10157-12154-8009-12118-951-90-10303-9493-2605-9326-8856-10136-623-10345\r\n807,Se7en,Crime-Mystery-Thriller,en,\"Two homicide detectives are on a desperate hunt for a serial killer whose crimes are based on the \"\"seven deadly sins\"\" in this dark and haunting film that takes viewers from the tortured remains of one victim to the next. The seasoned Det. Sommerset researches each sin in an effort to get inside the killer's mind while his novice partner Mills scoffs at his efforts to unravel the case.\",70.903,New Line Cinema-Juno Pix-Cecchi Gori Pictures,9/22/95,33000000,327311859,127,Released,Seven deadly sins. Seven ways to die.,8.371,19950,Morgan Freeman-Brad Pitt-Gwyneth Paltrow-John Cassini-Peter Crombie-Reg E. Cathey-R. Lee Ermey-Kevin Spacey-Daniel Zacapa-Andrew Kevin Walker-George Christy-Endre Hules-Hawthorne James-Bob Mack-William Davidson-Bob Collins-Jimmy Dale Hartsell-Richard Roundtree-Charline Su-Dominique Jennings-Allan Kolman-Beverly Burke-Gene Borkan-Julie Araskog-Mario Di Donato-Alfonso Freeman-John C. McGinley-Harrison White-Bob Stephenson-Michael Reid MacKay-Richard Portnow-Tudor Sherrard-Mark Boone Junior-Pamala Tyson-Lennie Loftin-Sarah Reinhardt-Emily Wagner-Martin Serene-Michael Massee-David Correia-Ron Blair-Jennifer Mueller-Leland Orser-Lexie Bigham-Evan Mirand-Paul Eckstein-Harris Savides-Rachel Flanagan-Heidi Schanz-Brian Evers-Shannon Wilcox-Richard Schiff-James Deeth-John Santin-Charles A. Tamburro-Richmond Arquette-Duffy Gaver-Charles S. Dutton-Arthur Max,drug dealer-rage and hate-police-s.w.a.t.", + "embedding" : [ 0.017947044, -0.020524547, -0.0049504386, -0.033575702, -0.038594328, 0.050349917, 0.0052743307, -0.005526626, -0.028038848, -0.04879523, 0.011721493, 0.023388436, 0.022270154, -0.002420669, -0.0018632333, 0.017142428, 0.022652008, -0.014333088, 0.02662054, -0.022829296, -0.007166544, 0.003000266, -0.023429349, 0.023947576, 6.575867E-4, 0.016160524, 0.018178884, 0.0027206957, -0.02168374, -0.0022842933, -0.0013160257, -0.016542375, -0.001696173, -0.014442189, -0.015424094, 0.007773416, -0.008271188, -0.0019586962, 0.018151607, -9.929857E-4, 0.010398649, 0.0014566631, -0.0040810434, -0.035675887, -0.004111728, 6.29033E-4, 0.007971161, -0.01117599, -0.0076643154, 0.022624731, 0.02825705, 0.03223922, 4.9691903E-4, -0.014483102, 0.00786206, -0.0022484947, 0.007814329, -0.0067710546, 0.0054788943, 0.0024308972, 0.008203, -0.023743013, -0.032157395, -0.0010262273, -0.015042242, -0.006975618, -0.014046699, -0.021179149, -0.013378458, -0.006767645, 0.015860496, 0.008503026, 0.0043674326, 0.005605042, 0.0096281255, -0.046858698, -0.030984564, -0.0011651601, -0.0017311192, 0.018369809, 0.02460218, -0.0067574168, -0.015737757, 0.011864687, 0.007671134, -0.0014634819, -0.014251263, 0.036494143, -0.0039105737, 0.013282995, 0.006975618, 0.05026809, 0.0010492407, -4.444996E-4, 0.010357736, 0.02734333, -0.021751927, 0.029866282, -0.019242615, -0.020647284, 0.00578574, -0.017183341, -0.0020354076, -0.013501196, 0.006419887, 5.224895E-4, 0.0040980903, -0.03559406, 0.0063210144, 0.0141967125, -0.00623237, -0.007425658, 0.0237021, -0.035757713, 0.002168374, -0.0041560503, 0.031639166, -0.024574904, -0.026211413, -0.034312133, 0.012846593, 0.025229508, 0.009075804, -0.044131182, 0.03447578, 0.01926989, 3.228269E-4, -0.011844231, 0.014701302, -0.0044731237, 0.036439594, -1.1741097E-4, 0.02701603, 0.002618414, -0.015069517, 0.04999534, -0.016419636, 0.010685038, -0.02033362, -0.024752192, 0.03690327, 0.031093664, -0.022392893, -0.0029286686, 0.0037264666, 0.0015606496, 0.018274346, 0.0033412052, 0.011551023, 0.014919504, 0.02319751, 0.018656198, 0.022788383, 0.011380554, 0.019078963, 0.012403372, 0.00674037, 0.0011268044, -0.012232902, -0.01696514, -0.012171533, -0.0071119936, -0.010139535, -0.01977448, 5.054425E-4, 0.020579096, 0.024383979, -0.021138236, -0.008571214, -0.0050186263, 0.011871506, 0.028884377, -0.032839272, 0.020415446, 0.013937598, 0.013378458, 0.008557577, -0.004728828, -0.032321047, -0.03043906, -0.009444019, 0.024956757, 0.022624731, 0.04437666, -0.011489654, 0.033575702, 0.0071597253, -0.022542907, 0.0017541327, -0.01736063, 0.0056118607, -5.736304E-4, 0.009934971, -0.022133779, -0.63191056, -0.023770288, 6.413921E-4, 0.0025621587, 0.0064539807, 0.009859964, 0.017401543, -0.0014651866, -0.028775277, 0.0013918846, -0.025420435, 0.022201966, 0.032839272, -0.00977132, -0.029948108, -0.024779469, 1.6833878E-4, -0.0012793747, 0.007937067, 0.005482304, -0.019610828, 0.006593766, 0.01701969, -0.020115418, 0.015287718, 0.010623668, -0.009559938, -0.03177554, 0.023156596, 0.008052986, -0.018997138, 0.015383181, 0.0055811764, -0.002909917, 0.03638504, -0.0069892555, -0.020974586, 0.041376393, 0.027766097, 0.029348055, -0.010385011, 0.013146619, 0.0024752193, -0.012853412, -0.00758249, 0.01466039, 0.0131398, -0.0024735145, 0.0044628954, 0.011591936, 0.022324705, -0.0067574168, -0.0051652305, -0.018751662, 0.0069381148, 0.013426189, 0.01151693, -0.03695782, 0.024356704, 0.014278538, -0.017183341, 0.024629455, -0.016242348, 0.0021155283, -0.0073097385, 0.038512502, -0.018042509, -0.0042924257, 0.008018892, -0.020592734, 0.0034281446, 0.0119942445, -0.018806212, -0.009757683, 0.0078279665, 0.012335184, 0.021410989, 0.010098622, 0.0066858195, 0.0065903566, -0.013289814, -0.0059187063, 0.008980341, 0.029729906, 0.023279335, -0.0048447475, -0.04227647, 0.005100452, -0.002033703, 0.006846061, 0.021274611, 0.0048720227, 0.019119876, 0.010569118, -0.012792042, 0.011135077, -0.0074802083, 0.0032031247, 0.016255986, -0.059405264, 0.0056425454, -0.010889601, 0.0380761, -0.008400745, 0.016787851, 0.0068835644, -0.009416743, -0.025638634, 0.023552086, -0.005093633, -0.0077665974, 2.3665982E-5, -0.015505919, -0.0096690385, -0.023756651, -0.032375596, 0.005451619, 0.0130307, -0.006044854, -0.006880155, 0.02505222, -0.0047492846, 0.012744311, -0.0033156348, 0.0041867346, 0.03112094, -0.014633114, -0.00393103, 0.013405733, -7.803248E-4, -5.199324E-4, -0.016078698, 0.019992681, -0.024615817, 8.527744E-4, -0.008509845, 0.011305547, 0.003022427, 0.008591671, -0.0028962793, -0.02258382, -0.018451635, -0.012287452, -0.017933408, 7.543282E-4, -0.02021088, -0.020524547, 0.0022263336, 0.0039719427, -0.013896686, 0.009737226, 0.0051925057, -0.01084187, 0.00505272, -0.0019450587, 0.0038219295, -0.033384778, -0.019310802, 0.00994179, -0.017265165, 0.009396287, 0.013221626, -0.008489389, -0.021301888, 0.015465006, -0.007521121, -0.0061744107, 0.0035696344, -0.006781283, -0.019760842, 0.032675624, -0.016078698, 0.00741202, 0.007780235, -0.006897202, 0.026252326, -0.0070574433, 0.03150279, 0.009137173, -0.007923429, 0.007166544, -0.01808342, -0.016187798, -9.732752E-5, 0.021656465, 0.026293239, 0.017292442, -0.0022365618, -0.016924227, -8.864422E-4, 0.0021786022, -0.002296226, -0.0091098985, -0.007623403, 0.0022212195, 0.03976716, -4.7877998E-6, 0.0057823304, 0.0018206158, 0.0020984814, 0.037257846, 0.010957789, 0.003359957, 0.011407829, 0.0141557995, -0.027452432, 0.004589043, -0.028502526, 0.011694218, -0.0018495957, 0.019679016, 0.0035559968, -0.017401543, 0.007957524, 0.0051311366, 0.025870474, -0.0012725559, -0.010330461, -0.0028792324, 0.008564395, 0.008373469, 0.004023084, 0.023743013, 0.024779469, -0.023756651, -0.0023610047, 0.004977714, -0.014346725, -0.01680149, -0.022883845, -0.013221626, 0.0029218497, 0.006246008, 0.01500133, -0.0063107866, -0.01937899, 0.018969862, -0.007977979, 0.04786788, -0.01527408, -0.015915047, 0.00982587, 0.022420168, 0.009853146, -0.0056766393, -0.006385793, 0.024452167, 0.010480474, -0.010296367, 0.044840336, -0.0094372, 0.025065858, -0.010016796, 0.006188048, 0.0036582786, -0.018724386, -3.0023966E-4, 0.025284057, 0.019297164, 0.016596925, 0.0142376255, -0.024193052, 0.022174692, 0.0037366948, 0.0071597253, -4.0635702E-4, -0.036194116, 0.0012299385, -0.013126163, -0.034066655, -0.017878857, -0.011646487, 0.008243912, -0.008966704, 0.0040912717, -0.004912935, 0.011005521, 0.008359832, 0.008209818, 0.011203266, -0.0071119936, -0.024083951, 0.023770288, 0.028993478, -0.019692654, -0.027561532, -0.0049504386, -0.031693716, -0.03409393, -0.01954264, 0.0013825089, 0.03196647, -0.0330302, 0.0024360113, -0.02044272, -0.0037230572, 0.012935237, -0.024070315, 0.004132184, 0.03556679, 3.3177657E-4, 0.011155534, -0.0068221954, -0.002004723, 0.039521683, -0.015301356, -0.0062766923, 0.0025024945, 0.0033514332, -0.001125952, -0.010200904, 0.0043947077, -0.044513036, 0.024574904, -0.015492282, 0.011666942, 0.010180447, 0.012144258, 0.0068767457, -0.025734099, -0.022665644, -0.037830625, -0.020538183, 0.0036241848, 0.08149813, 0.028993478, 0.0059562097, 0.016787851, 0.0030019705, -0.0014472873, -0.0214519, -0.0073438324, 0.0023797562, -0.012396553, 0.029457156, -0.001642475, 0.012417009, 0.006897202, 0.013010244, -0.021970129, -0.014142162, 0.0031093664, 0.013358002, 0.008782596, -0.014360364, -0.006153954, 0.0025348838, 0.036548693, -0.015996872, -0.014483102, 0.03403938, 0.012928418, 0.008775777, 0.014646752, -0.00578574, 0.0037503324, 0.008127993, 0.005298197, 6.6611014E-4, 0.0043435665, 0.028857103, 0.0070301685, 0.015314993, -0.004077634, 0.008687133, 0.0048788413, 0.012723855, 8.7418965E-5, 0.017292442, -0.040258113, -0.024520354, 0.037203297, 0.038103376, -0.047322374, 0.016092336, 0.005233418, -0.0029968563, -0.018669836, 0.017306078, -0.016201435, -0.001216301, 0.011857869, -0.017715206, 0.02038817, -5.6595926E-4, -0.033221126, 0.012989787, -0.013167076, -0.011203266, -0.0060414444, -0.020115418, 0.0051652305, -0.016037785, -2.819142E-4, 0.014442189, -0.024424892, -0.0052606934, 8.6001935E-4, 0.015014967, 0.004623137, 0.024861293, -0.010057709, 0.012041976, 0.006038035, -0.042140096, -0.026866017, 0.0038048825, -0.012110163, -0.014319451, 0.014046699, -0.0047936067, 0.014442189, -0.013978511, -1.5502084E-4, -0.0018564145, 0.0033480239, -0.025406796, -0.009103079, 0.03472126, 0.009750864, 0.025393158, 0.0075552147, 0.010289548, -0.0046538212, 0.007937067, -0.0189835, -0.022924758, -0.02757517, -0.0074324766, -0.017974319, -4.4364727E-4, 0.0013006835, -5.386841E-4, -0.031611893, -0.016051423, -0.026075037, 0.011448742, 0.0035798626, 0.02285657, 0.015969597, 0.020756384, 0.026579628, -0.004500399, 0.00572778, -0.0034417822, -0.016746938, 0.010466836, 0.016692389, -0.018451635, 0.03112094, 0.0069790273, -0.03319385, -4.069963E-4, 0.023006584, -0.010480474, 0.01561502, -0.014905866, -0.007180182, -0.0135148335, -0.0014438779, 0.0035287216, 0.0061744107, -0.019024413, 0.0024223737, -0.016487824, -0.007548396, 0.0031298227, 0.011591936, -0.010453199, -0.035621338, -0.002993447, -0.024356704, 0.017987957, 0.011441923, 0.0011225427, 0.0040299026, -0.019201702, 0.009328099, -0.001853005, -0.023006584, -0.031720992, 0.0019058507, 0.0237021, 0.009532663, 0.04200372, -0.00763704, 0.034584884, 0.013214807, 0.010262273, 0.028666176, -0.03032996, -0.014360364, -0.037721522, 0.006092585, 0.02314296, 0.016896952, 0.0052300086, 0.005741418, 4.918049E-4, 0.02752062, 0.0024070314, 0.015833221, -0.003504856, -0.022379255, -0.02195649, -3.3049803E-4, -0.020238157, 0.013637572, -0.026306877, -0.008850784, 0.020933673, 0.00190926, -0.010398649, -0.0030428832, 0.021165513, -0.003336091, 0.0084689325, -0.006880155, 0.012505653, -0.02353845, -0.016719664, -0.016992414, -0.0019586962, 0.0015521261, -0.01977448, 0.008591671, -0.0070574433, -0.027043305, -0.0072483695, 0.028147949, -0.016556012, -0.029784458, 0.016910588, -0.008121174, -0.024956757, -0.020879123, -0.016296899, -0.013610297, 7.402644E-4, -0.0060550817, -0.0014396162, 0.0052879686, -0.026975118, -0.043503854, 0.018997138, -0.0032661986, 0.035130385, 0.01224654, 0.047104172, 0.024083951, 0.0065187593, -0.018247072, 0.008312101, 0.0067437794, -0.020579096, 0.010828232, 0.02825705, -0.015874134, 0.011053252, -2.1138237E-4, -5.5146933E-4, -0.04497671, -0.03976716, 0.030711813, 0.02773882, 0.021929216, -0.029348055, -0.0060107596, -0.03769425, -0.004953848, -1.6759297E-4, 0.0051822774, -3.62248E-4, -0.03420303, -0.018247072, -0.0011464084, -0.0069790273, 0.013003425, 0.014033061, -0.05324108, -0.0029849235, -0.023511173, 0.010337279, -0.0024019172, -0.006532397, 0.03223922, -0.01297615, 1.8293524E-4, 6.030364E-4, 0.019201702, 0.012280634, 1.6737988E-4, -0.011380554, 0.03106639, -0.008114356, 0.024643093, 0.009273549, -0.019460816, 0.00404354, 0.020933673, -0.013958055, -0.019365352, -0.018219797, -0.0076643154, 0.014864953, 0.006996074, 0.012410191, 0.015069517, -0.024506716, -0.008734865, 0.0050799954, -0.016446913, 0.008823509, -0.03903073, -0.003353138, -0.03144824, 0.005352747, -0.01213062, -0.004190144, 0.0028110445, -0.010964608, 0.009566757, -0.012628391, 0.009375831, -0.023783926, -0.013153438, -0.039903536, -0.0049402104, -0.006215323, -0.0089871595, 0.0067267325, -0.0039242115, -0.00926673, -0.01808342, 0.0035355405, 0.00909626, 2.9704336E-4, -0.018519823, 0.012962512, 0.012969331, -0.004837929, 0.007207457, -8.280563E-4, 0.03881253, -0.013473921, -0.009634945, -0.0019501728, 0.011735131, 0.030875463, -0.011053252, 0.016242348, 0.0027905882, -0.016706025, -0.016651476, 0.006532397, 0.026334152, 0.039848987, 6.281807E-4, -0.026211413, -0.015014967, -0.011319185, 0.029893558, -0.0058675655, 0.015151342, 0.013964874, 0.026825104, 0.029566256, 0.020756384, -7.368551E-4, -0.02662054, 0.0014362067, -7.3472416E-4, -0.02021088, -0.01556047, -0.013296633, 0.020538183, 3.9101476E-4, -0.004571996, -0.017824307, 0.0031485744, -0.027056944, -0.026265964, -0.011462379, 0.016746938, 0.04061269, 0.025311334, 0.0025911387, 0.0048038345, 0.009853146, -1.5619282E-4, -0.020360895, -1.5331614E-4, 0.02303386, 0.0129216, 0.029157128, 0.0131943505, -0.018915312, -0.012348821, 0.006385793, 0.0120351575, 0.0038832987, 0.02184739, -0.032702897, -0.014183075, -0.007902973, -0.005172049, 0.013044338, -0.028475251, 0.020238157, -0.025829561, -0.0065562627, 0.0048617944, 0.023579363, -0.0011805024, 0.030411785, 0.010971427, -0.003145165, -0.0027667223, -0.009375831, -0.016910588, 0.00505272, -0.013242083, 0.031584617, 0.010289548, 0.010569118, 0.020101782, 0.030084483, -0.004626546, -9.333213E-4, -0.015860496, 0.007950705, -0.015014967, 9.870193E-4, 0.0076302215, 0.031311866, -0.03573044, 0.021097323, -0.017537918, 0.0020234748, -0.0026252326, -0.004207191, 0.001583663, 0.043612953, 0.012321547, -0.045985892, 0.0043333387, 0.009805414, 0.0037435135, -0.0033224535, -0.005795968, -0.03668507, -0.009614488, 0.0051209084, -3.1664738E-4, -0.0042481036, -0.02651144, -0.018110696, -0.025256783, -0.020974586, 0.019583553, 0.18590738, -0.013337545, 4.6538215E-4, 0.04066724, 3.1323798E-4, 0.009805414, 0.028993478, 0.025065858, -0.0018325488, 0.019992681, 0.0024956756, -0.0050970423, 0.0046367743, 0.006818786, 0.028284324, -0.013542109, -0.029238954, -0.035948638, -0.00983269, -0.027588809, -0.001887099, 0.0014975759, -5.838585E-4, -0.021874666, 0.008462113, 0.010425923, -0.026252326, 0.014496739, 0.021220062, -0.0045856335, -0.019597191, -0.012730673, -0.003965124, -9.5207297E-4, -0.022829296, -3.7652484E-4, -0.0045754053, -0.0077870535, 0.009532663, -0.004398117, 0.016092336, -0.006106223, -0.02016997, -0.018792573, -0.0017643608, 0.0077256844, -0.02942988, 0.007255188, -0.021315524, 0.0042890166, -0.028748002, -0.0034076883, 0.03016631, 0.024193052, 0.0036855538, -0.010875964, 0.00741202, 0.0025297697, -0.012717036, 0.012792042, 0.009444019, 0.029839007, -0.032484695, 0.006784692, -0.007193819, 0.012737492, -0.03393028, -0.020933673, 0.0074392953, -0.04358568, -0.0063005583, -0.017183341, -0.0031588026, -0.011387372, -0.012430646, -0.010037253, -0.0042344662, 0.006184639, 0.011598755, 0.031011838, -0.036412317, -0.0012273815, 0.01746973, 0.0038901174, -0.013023881, -0.021492813, 0.029839007, -0.0071256314, -0.004227647, -0.006873336, -0.013698941, -0.027138768, -0.005117499, 0.006471028, 0.010275911, 0.0028894607, 0.030848188, 0.018778937, -0.005666411, -0.022311067, -0.03633049, 0.030575436, 0.013371639, -0.013685304, -0.021056412, -0.020906398, 0.0044049355, 0.0024138503, 0.023238422, -0.024629455, -0.018560736, -0.019119876, -0.013317089, -0.0050288546, -0.006539216, 0.029048027, 0.031311866, 0.0019927903, 0.028175224, -0.015096792, -0.0040299026, -0.02190194, 0.023456624, -0.003825339, -0.009614488, -0.023524811, -0.030111758, -0.0043333387, -0.012989787, -0.02734333, 0.03447578, -0.009907696, 0.00544821, 0.0038696611, -0.007548396, 1.7963239E-4, 0.0034639433, -0.006396021, 0.012096526, -0.011155534, -0.0083871065, -0.015178618, -0.0017950454, 0.0021393942, 0.017210616, -0.025911387, 0.009662219, 0.0058402903, -0.017687932, -0.01656965, -0.012614754, -0.0023950986, 0.013426189, 0.024329428, 0.03573044, -0.016896952, -0.032266494, -0.042712875, -0.0058061965, 0.02089276, -0.04980441, 0.01903805, 0.023333885, -0.019569917, -0.027288781, -0.011987425, -0.17412452, 0.025352247, 0.0029985611, -0.02948443, 0.018956225, 0.019801755, 0.03823975, 0.0103509175, 0.00971677, -0.013180713, 0.023511173, -8.784514E-5, -0.03657597, -0.0043947077, 0.0041765063, -0.0013467103, -0.013187532, 0.038376126, 0.039739884, -0.005891431, 0.038621604, 7.564591E-4, -0.019706292, -0.0034110977, 0.0154377315, 0.012382915, 0.023429349, 0.01151693, -0.006733551, -0.005509579, -0.04336748, -0.0035798626, 5.4166734E-4, -0.00460609, -0.025106769, -0.0012520995, -0.018287985, -0.026102312, -0.0030735678, -0.016774213, 0.0382943, 0.019597191, 0.02397485, 0.011912419, 0.02932078, 0.026020488, 0.031830095, -0.02319751, 0.019924494, 9.401401E-4, -0.0081484495, -0.036548693, 0.041812796, -0.0052129617, -0.024220327, 0.007521121, 0.006014169, -0.0071188128, 0.009430381, 0.026388701, -0.028038848, -0.01937899, 0.01089642, 0.0039855805, 0.010985064, -0.033166576, -0.010657762, 0.018601649, -0.022092866, 0.0014805289, -0.028966203, 0.008925791, 0.01123736, 0.004459486, 0.01966538, -0.012642029, -0.0424674, 0.011448742, -0.008509845, 0.011680581, -0.014496739, 0.037366945, -8.3444896E-4, 0.008012073, -0.0058402903, -0.013951236, 0.01123736, 0.005284559, 0.018410722, -0.012798862, 0.008843966, -0.015574107, -0.015137705, 0.013848954, 0.0012844888, 0.0046197274, -0.004415164, 0.00836665, -0.005039083, -0.015137705, -9.3161664E-4, -0.0016876495, -0.0424674, 0.032648347, 0.020374533, 0.0019927903, -0.002695125, 0.0259523, 0.013603478, 0.015846858, -0.019024413, 0.017183341, 0.016692389, -9.819051E-4, -0.029784458, 0.0058436994, -0.009648582, -0.037203297, -0.0012342003, 0.0063721556, 0.047895152, -0.008325738, 0.017769756, -0.0021820115, -0.014455826, -0.01853346, -0.10184538, 0.009062166, 0.019447178, 0.050486293, -0.025338609, 0.042140096, -5.634022E-4, 0.016978778, -0.03032996, 0.026443252, 0.008271188, -0.022992946, 0.008496207, -4.444996E-4, 0.0080666235, 0.009580394, -0.014305813, -0.015683208, -0.014974054, 0.024343066, 0.0042344662, -0.0019228976, -0.012587479, -0.009321281, -0.021356437, 0.016910588, -0.015260443, 0.0374215, 0.007391564, 0.014510376, 0.010364555, -0.01982903, 7.313148E-4, -0.028857103, -0.020483634, -0.032211944, -0.008393926, -0.03442123, 0.021861028, -0.043012902, 0.008687133, 0.016215073, 0.016665112, -0.003370185, -0.0130307, 0.0022144008, -0.041921895, 0.026020488, -0.0056561828, -0.0034707622, -0.005707324, -0.025802286, -0.017933408, -0.013494377, 0.0043878886, 0.023292974, 0.032648347, 0.007848423, -0.019228976, -0.011653305, -0.0032781314, 0.0026542125, -0.0190926, 0.01914715, 0.0021598504, 0.018833486, -7.8970066E-4, -0.0042549223, 0.012321547, -0.024943119, -0.022420168, 0.010875964, -0.030575436, -0.011019158, -0.0023746423, 0.0050015794, -0.020101782, -0.007943885, 0.018697111, -0.030084483, 0.015955959, -0.027888834, 0.011476017, -0.012642029, 0.008612127, 0.013671665, 0.014346725, 0.009225817, -0.029129853, -0.045003988, -0.008864421, 0.020415446, 0.0027718365, 0.009396287, 0.005707324, 0.015410456, 0.007589309, -0.0040333117, -0.006808558, 0.0037264666, -0.006184639, 0.008441657, -0.066496804, 0.007364289, -0.019297164, -0.0028263868, -0.015928684, -0.02195649, -0.010037253, 0.010916877, -0.006324424, 0.033166576, 0.002746266, 0.024111228, -0.0129147805, -0.0031076616, -0.015792308, 0.007609765, -0.012744311, 0.0010100327, -0.0027905882, 0.0015529785, 1.703631E-4, 0.011728312, 0.006075538, 0.0091098985, 0.0065801283, 0.01089642, 6.163543E-5, 0.01286023, -0.016624201, -0.008059805, 0.048058804, -0.016024146, 0.0026354608, 0.002129166, -0.005939163, -0.036766894, 0.016146885, -0.0013978512, 0.008312101, 0.00955312, -7.014826E-4, -0.0069619804, -0.008284825, -0.0031195947, 0.004251513, 0.0020626828, -0.0024223737, 0.0067540077, 0.0058061965, -0.0027275144, 0.013508015, 0.013767129, -0.008223456, -0.020115418, 0.011864687, -0.028611626, 0.035648614, -0.0016117905, 0.004797016, -0.02640234, 0.016474187, -0.0051686396, 0.025065858, -0.022065591, 0.004947029, 0.0055163978, 2.1521794E-4, -0.01667875, -0.0064164777, -0.043231104, -0.021833753, 0.003245742, 0.0043162913, 0.04042176, 0.00758249, 0.006368746, 0.010023615, 0.006218733, -0.0099895215, 0.012621573, 0.025911387, -0.013173894, -0.016201435, 0.021479176, 0.0105623, 0.014905866, -0.0030991381, 0.016078698, 0.020674558, 0.009355375, -0.0073779263, 0.0065562627, 0.019897217, -0.010200904, 0.0021257566, 0.027166042, -0.034339406, -0.016133247, -0.009880421, 0.01207607, 0.009062166, -0.0063892026, -0.019583553, -0.018738024, -0.02004723, -6.933853E-4, -0.011387372, -0.030739088, 0.0068153767, 0.018519823, 0.02656599, 0.011871506, -0.013889867, 0.013855773, -0.040230837, 0.006921068, -0.0028655948, -0.015519557, -0.011878326, 0.03551224, 0.0042140097, 0.024411254, 0.020688197, -0.004121956, 0.03823975, -6.451211E-5, 0.016187798, -0.017278804, -0.012764768, -0.012798862, -0.010023615, -0.019256251, -0.037994277, 0.0044731237, -0.020456359, 8.012073E-4, 0.018383447, 0.03821248, -0.009280368, 0.061860025, 0.0072142757, -0.0076165837, 0.019392628, -0.018669836, 0.01696514, 0.012751129, 0.012662485, -0.02825705, -0.021915577, 0.0028655948, -0.016542375, 0.009934971, -0.044676684, 0.019583553, -0.011298728, 0.007364289, 0.01516498, -0.0012785224, -0.01656965, -0.019365352, -0.018642562, 0.015246806, 0.0072210943, 0.010773682, 0.0016237234, 0.016392361, 0.0064676185, -0.00763704, -0.04093999, 0.0015623544, -0.00909626, 0.009573575, -0.010685038, 0.019324439, -0.0025962528, -0.017728843, 0.013023881, 0.019842668, 0.0059664375, -0.02696148, 8.514959E-4, -0.02836615, -0.019515365, 0.028911652, -0.008168906, -0.014169437, -0.018969862, -0.01348074 ], + "id" : "00fe0f21-f9e9-46a6-908b-7aa1fc90efb0", + "metadata" : { + "source" : "movies.csv" + } + }, + "b1b0b76e-4530-4adb-9b45-2bbbde2d98f4" : { + "text" : ",/iKUwhA4DUxMcNKu5lLSbDFwwilk.jpg,338953-616037-993412-438148-634649-910974-526896-675353-414906-507086-752623-335787-524434-361743-434067-566525-555876-924482-234657-382928-615469\r\n872585,Oppenheimer,Drama-History,en,The story of J. Robert Oppenheimer's role in the development of the atomic bomb during World War II.,701.123,Syncopy-Universal Pictures-Atlas Entertainment,7/19/23,100000000,951469265,181,Released,The world forever changes.,8.129,5461,Cillian Murphy-Emily Blunt-Matt Damon-Robert Downey Jr.-Florence Pugh-Josh Hartnett-Casey Affleck-Rami Malek-Kenneth Branagh-Benny Safdie-Jason Clarke-Dylan Arnold-Tom Conti-James D'Arcy-David Dastmalchian-Dane DeHaan-Alden Ehrenreich-Tony Goldwyn-Jefferson Hall-David Krumholtz-Matthew Modine-Scott Grimes-Kurt Koehler-John Gowans-Macon Blair-Harry Groener-Gregory Jbara-Ted King-Tim DeKay-Steven Houska-Petrie Willink-Matthias Schweigh�_fer-Alex Wolff-Josh Zuckerman-Rory Keane-Michael Angarano-Emma Dumont-Sadie Stratton-Britt Kyle-Guy Burnet-Tom Jenkins-Louise Lombard-Michael Andrew Baker-Jeff Hephner-Olli Haaskivi-David Rysdahl-Josh Peck-Jack Quaid-Brett DelBuono-Gustaf Skarsg��rd-James Urbaniak-Trond Fausa Aurv��g-Devon Bostick-Danny Deferrari-Christopher Denham-Jessica Erin Martin-Ronald Auguste-M��t�� Haumann-Olivia Thirlby-Jack Cutmore-Scott-Harrison Gilbertson-James Remar-Will Roberts-Pat Skipper-Steve Coulter-Jeremy John Wells-Sean Avery-Adam Kroeger-Drew Kenney-Bryce Johnson-Flora Nolan-Kerry Westcott-Christina Hogue-Clay Bunker-Tyler Beardsley-Maria Teresa Zuppetta-Kate French-Gary Oldman-Hap Lawrence-Meg Schimelpfenig-Matt Snead-Troy Bronson-Joe Russo,husband wife relationship-based on novel or book-politics-atomic bomb-professor-patriotism-new mexico-world war ii-hallucination-atomic bomb test-surrealism-physics-biography-berkeley-based on true story-physicist-jewish american-interrogation-guilt-nonlinear timeline-historical event-nuclear weapons-communism-red scare-prometheus-mccarthyism-top secret project-moral dilemma-usa politics-1940s-ethics-quantum physics-antisemitism-apocalyptic vision-clinical-new mexico desert-male protagonist-20th century-manhattan project-affair-los alamos-hiroshima and nagasaki bombings-clich��-defiant-demeaning,/8Gxv8gSFCU0XGDykEGv7zR1n2ua.jpg,/fm6KqXpk3M2HVveHwCrBSSBaO0V.jpg,1046090-346698-678512-71915-115461-298618-447365-976573-808-724209-575264-12268-565770-884605-107113-980489-667538-615656-1163528-335977", + "embedding" : [ -0.023250699, -0.023250699, -0.017334525, -0.042708635, -0.0139424065, 0.026108626, -0.0027193702, 0.010944255, -0.022636378, -0.023037022, 0.0222758, 0.022876766, 0.011605318, -0.0038628746, -0.005308531, 0.018549811, 0.032345314, -0.024132116, -0.014489953, -0.0417738, -0.010089548, -0.0022653071, 0.0056190304, 4.1796337E-4, 0.0017210993, -0.0068276394, 0.023050377, -0.01804233, -3.3136585E-4, -0.023678053, 0.0012929111, 0.005909497, -0.0131144095, -0.007839265, -0.011218028, -0.0050514513, -0.013047636, -0.026188754, 0.010450128, -0.022743218, 0.0012995886, 0.020339353, -0.008393489, 0.0014506647, -0.029327132, 0.0021951946, 0.0069311387, -0.0045306142, -0.004403744, 0.01290741, 0.020780062, 0.03205151, -0.006754188, -0.011765575, -0.015665175, -0.02419889, -0.02751088, 0.018549811, -0.008527037, 0.006023013, 0.0139424065, -0.012226315, -0.03199809, 0.0034622308, -0.015999045, -0.016052464, -0.013328086, 0.012593572, -0.012439992, -0.010723901, 0.04051845, 0.02327741, -0.004864484, 0.018656649, 0.029727776, -0.013047636, -0.021808382, -0.01108448, 0.0027677815, 0.017254395, 0.024826566, 0.00613319, 0.008413522, -0.01668014, 0.009488583, 0.018282715, -0.01370202, 0.032265186, -0.025440885, -0.0029413938, 4.3611755E-4, 0.02258296, 0.014783759, 0.009288261, -0.016947236, 0.025748046, -0.006944494, 0.027671136, -0.02260967, -0.047623202, -0.011044416, -0.015785368, 0.0011276456, -0.009996065, -7.340964E-4, 0.015104274, 0.005602337, -0.008747391, 0.007605556, -0.019431228, 0.0044738567, -0.009141358, 0.013782149, -0.03600453, 0.0015583377, -0.0208869, 0.010610385, -0.042601798, -0.020780062, -0.0057492396, -9.840815E-4, 0.040758837, 0.016813688, -0.039396647, 0.018322779, 0.014583437, -0.020392774, -0.015625112, 0.024719726, -0.008019554, 0.04041161, 0.0089944545, 0.011531866, -0.0010708877, -0.020045549, 0.044818696, -0.017695105, 0.008660585, -0.017868716, -0.025213854, 0.03130364, 0.031704284, -0.0093750665, -0.04377702, -0.028205328, 0.018229296, 4.1879804E-4, 0.015999045, 0.013281344, 0.011511833, 0.012279735, 0.013294699, 2.0585165E-4, 0.0078860065, 0.014116019, 0.008954391, -0.015197758, -0.0011076133, 0.0051616286, -0.0011960889, 0.003559053, -0.009902581, -0.007625588, -0.011164609, 0.012099445, 0.027777975, 0.0033169973, -0.013995826, 0.0147704035, -0.017281106, -0.020045549, 0.022716507, -0.0320248, 0.02021916, -0.01031658, 0.027283847, 0.016439753, 0.011144577, -0.017334525, -0.004564001, -0.009335002, 0.0060931253, 0.02222238, 0.03389447, -0.010022774, 0.020606449, 0.024038631, -0.021648124, 0.010049484, -0.012533476, 0.007986167, 0.019925356, 0.013888988, -0.007658975, -0.64957726, -0.01324128, -0.025414176, -0.0050080484, 0.019805161, 0.017975556, 0.006510463, 0.024733081, -0.018536456, 0.0028011685, -0.026255528, 0.019952064, 0.0097222915, -0.022756571, -0.021661479, -0.019978775, -0.0023270731, -0.0109309, 0.0019314373, -0.011384963, -0.010356644, 0.014716985, -0.0015349669, 0.0034522146, 0.022689797, -0.0062467055, -0.010156322, -0.015945626, 5.52972E-4, 0.014783759, -0.0031700947, 0.011258093, 0.020873545, 0.00864723, 0.035577174, -0.011985929, -0.027644427, 0.0281252, 0.024599534, 0.019898646, -0.0033286829, -0.03004829, 0.03466905, 0.013301376, -0.022209026, 0.017160913, 0.020272579, -0.007658975, 0.012934119, -0.009021165, -0.0029630952, 0.011718833, -0.005215048, 0.015558337, -0.016853752, -6.906933E-4, 0.0024222261, -0.04115948, 0.004954629, -0.0069311387, -0.011491802, 0.010563644, -0.009702259, -0.007638943, -0.02024587, 0.032211766, -0.034134857, 0.007872652, 0.003625827, -0.027697846, -0.0058226907, 0.014636856, -0.00479771, -0.019230906, 0.014169438, 0.023117151, 0.025868239, -0.0053252247, -3.8603705E-4, 0.012753829, -0.0015817086, -0.011231383, -0.029193584, 0.01244667, 0.03725988, -0.002398855, -0.0247865, 0.012413283, 0.019137422, -0.010610385, 0.018162522, -7.845942E-4, -0.008573779, 0.0015892207, -0.012860668, -0.0048444523, 0.0022569604, -0.001516604, 0.025080306, -0.034936145, -0.019204196, -0.030609192, 0.0169873, -0.007705717, -0.0013271328, -0.0023754842, -0.0016660107, -0.011531866, 0.026429141, 0.0010533595, 0.0034038036, 0.015932271, -0.026522623, 0.0041500027, 0.016119238, -0.030849578, 0.021634769, 0.016039109, 0.007111429, -0.004393728, 0.001272879, -0.008480296, 0.006156561, -0.020366063, 0.0042969054, 0.010383354, 0.023905084, -0.003892923, 0.0036625527, -0.0044872114, -4.177547E-4, 0.00834007, -0.0021467833, -0.0046441304, 0.016800333, -0.0044771954, 0.022342574, -0.013875633, -0.004590711, -0.028979907, -0.028873067, 0.00913468, -0.015531627, 0.012313122, 4.0126988E-4, -0.022756571, -0.032318607, 0.0070580095, 0.005805997, 0.013929052, 0.0029847969, 0.009455196, 3.2682732E-5, 0.031891253, 0.00931497, 0.0018780181, -0.022996958, -0.028445715, 0.009668872, 7.94193E-4, 0.012920765, 0.02645585, -0.0023771536, 0.002216896, 0.032211766, -0.0222758, -0.015945626, -2.9192748E-4, 0.00459405, -0.022809992, 0.01871007, 0.0076990398, -0.022048768, 0.017227687, -0.017908782, 0.02740404, -0.00846694, 0.016960591, 0.026963333, -0.016252786, -0.0058527393, 0.004981339, -0.026869848, 7.758302E-4, 0.021768317, 0.024799855, 0.019164132, -0.009161389, -0.014262922, -0.0027460798, -0.01260025, 0.0042902282, -0.008934358, 0.0029681034, 0.0061365287, 0.016119238, 0.0041934056, -0.0050514513, 0.0057926425, 0.021287544, 0.029327132, 0.021060513, 0.012046026, 0.0011276456, 0.01726775, -0.042254575, 0.013848923, -0.020753352, 0.007472008, -0.016893817, 0.017334525, 0.0060463836, -0.023824956, -0.009702259, 3.5223275E-4, 0.04230799, -0.016786978, 0.010663805, -0.018803552, -9.381744E-4, 0.009001132, 0.009148035, 0.027043462, 0.009054552, -0.00718488, -0.010470159, 0.019791808, -0.011218028, 0.017281106, -0.020713288, 0.0057926425, -0.01193251, 0.0057225297, -0.008687294, 0.012747153, 0.011485124, 0.0105502885, -0.018309426, 0.05881452, -0.004390389, -0.012987539, -0.0031166754, 0.010016097, 0.007078042, -0.014957371, 0.01375544, 0.03531008, 0.013334763, -0.009141358, 0.03531008, -0.04046503, 0.028232038, -0.021260835, 0.0056891427, 0.017027365, -6.0180045E-4, 0.01765504, 0.009809097, 0.03218506, 0.034108147, 0.013641924, -0.015251176, 0.02122077, 0.016079174, 0.0039663743, -0.011865736, -0.014182793, -1.0673403E-4, -5.241757E-4, -0.0096889045, -0.03218506, -0.010563644, 0.007598879, 0.0034755855, -0.0017052405, -0.009054552, -0.009395098, 0.0165733, 0.023317473, 0.010650449, -0.027163655, -0.017788587, 0.013601859, 0.035737433, -0.0029163535, -0.0021751623, -0.0128339585, -0.015798723, -0.014142728, -0.006219996, 0.013902342, 0.033654086, -5.22089E-4, 0.013768794, -0.01501079, -0.022716507, 0.011899123, -0.014449889, 0.02707017, 0.0019548081, 0.008867584, -0.013795503, 0.00441376, 0.02389173, 0.013728729, -0.004947952, 0.023597924, -0.016292851, -0.004460502, 0.006951171, 0.0053619505, 2.4309901E-4, -0.020032194, 0.0082132, -0.0013697012, -0.009615453, 4.6866987E-4, -5.5453704E-5, -0.0019664937, -0.006300125, 2.305789E-4, 3.0131757E-4, -0.02709688, 0.008693972, 0.06773552, 0.01573195, 0.0027961603, -0.0014039229, 0.0068009296, 0.0054287245, -0.016746914, 0.01154522, 0.0069244616, 0.007992845, 0.014690275, 0.0016785308, 0.026469205, 0.0068276394, 0.008380135, -0.020192452, -0.0041199545, -0.023557859, 0.00795278, -0.019912, -0.034455374, -0.0135617945, 0.014743694, 0.013221248, -0.0029647646, -0.025013532, 0.020860191, 0.033921182, -0.003892923, 0.014329696, 0.0029497405, 0.024425922, 0.0019230905, -0.002106719, -0.00944184, 0.015798723, 0.02155464, 0.019591484, 0.014129374, -0.0019130745, 0.0020382756, -0.022809992, 0.00407989, -0.011638705, 8.580456E-4, -0.013207893, 0.0011284802, 0.033921182, 0.007351815, -0.009568711, 0.0029831275, 0.00849365, -0.0384351, -0.033413697, 0.008480296, 0.014716985, 0.0061131576, -0.005999642, -0.01342157, 0.0059261904, 0.013187861, -0.035497047, 0.010430096, 0.011765575, -0.009996065, -0.022008704, -0.02809849, -0.027617717, -0.007398557, 0.011044416, 0.008313361, -0.033253442, -0.021073867, 0.022128897, 0.027671136, -0.012226315, 0.017214332, -3.0517796E-5, -3.943838E-4, -0.0023287425, -0.047356106, -0.031036545, 0.008680617, -0.033734214, -0.0033119894, 0.029861324, 0.0070045902, 0.00862052, -0.003043224, 0.024465986, 0.0010500208, -0.0116921235, -0.005251773, 0.017307814, 0.04249496, 0.008720681, 0.0065138014, 0.03330686, 0.016800333, -0.00864723, 0.009555357, 0.011872414, -0.009234841, -0.015999045, -0.020699933, -0.013381505, 0.00269433, 0.008380135, -0.019498002, -0.013581827, 0.0036992785, -0.014890597, -0.009301615, -0.013454957, -0.0066607045, 0.015718594, 0.02250283, 0.0078860065, -0.008320037, 0.0013479997, 0.0014256245, -0.002804507, 0.01159864, 0.03068932, 0.00795278, 0.028472424, -0.027777975, -0.030181838, -1.8634113E-4, 0.005375305, -0.010069516, 0.027858105, -0.0128005715, -0.015157693, 0.0020900255, -0.027697846, 0.009588744, -0.007318428, 0.0062734154, 0.0049980325, -0.00882752, 0.001801228, 0.004767662, 0.010176354, -0.015264532, -0.021274189, -0.0065738983, 0.007598879, 0.019417873, 0.016052464, -0.011678768, -0.0041566803, -0.03328015, -0.0063735764, -0.018322779, -0.040812254, -0.020312645, -0.0013738746, 0.047462944, 0.027858105, 0.022395993, 0.004046503, 0.020860191, 0.009922613, 0.004533953, 0.011985929, 0.011331544, -0.0016092529, -0.030208549, -0.0059796097, 0.014890597, 0.030929707, 0.0029230309, -0.003038216, -5.462946E-4, 0.023678053, 0.0013421569, 0.009542001, 0.003846181, -0.02419889, -0.012980862, 0.013247957, -0.02183509, -0.0075454595, -0.014716985, -0.008059619, 0.03130364, -0.015718594, 0.0108975135, -3.770643E-4, 0.014209502, -0.013408215, -0.0116253495, -0.0014214511, 0.008774101, -0.02873952, -0.008066297, -0.014302986, 0.0071581705, 0.0050280807, 0.012687055, 0.0037794071, 0.0021300898, -0.03004829, -0.0011568592, 0.014970726, -0.03135706, -0.0057859654, 0.011224706, -0.003081619, -0.00669743, -0.017361235, 0.0030882964, -0.014944016, -0.0047743395, 0.010737255, 0.0078192325, -0.007271686, -0.005739223, -0.038168006, 0.024879985, -0.011498479, 0.03330686, -0.0014590115, 0.042361412, 0.024719726, 0.021421092, -0.032772668, -9.0395275E-4, -0.015945626, 0.008099684, 0.044952244, 0.012900732, -0.005989626, -0.011478446, 0.0040331483, -0.0058794487, -0.03461563, -0.036885947, 0.03458892, 0.007725749, 0.01631956, -0.019511357, -0.010283193, -0.034188278, -0.005805997, -0.0057859654, 0.009368389, 0.0064670597, -0.028712811, -0.026242174, 0.009635485, -0.009849162, 0.034882724, 0.008587133, -0.024773145, 0.024666307, -0.032906216, -0.015104274, -0.006750849, -0.011885768, 0.024973467, -0.028953196, 0.013301376, 0.004173374, 0.005999642, 0.009528646, 0.001958147, 0.0026809752, 0.032398734, -0.01963155, 0.01690717, -0.018656649, -2.3996898E-4, 4.8327667E-4, 0.016453108, -0.028953196, -0.021020448, -0.0075788465, -0.005578966, 0.014716985, 0.016493173, -4.1916323E-5, -0.015384724, -0.011251415, -0.0022135575, -0.0054320632, 0.0041833897, -0.010703868, -0.037580393, -0.02191522, 0.0131144095, 9.4401714E-4, 8.0180944E-5, 0.0012720443, 0.017721813, -0.026429141, 0.024946759, -0.014663566, 8.588803E-4, -0.008219876, -0.0063168183, -0.028499134, -0.013381505, -0.0124533465, -0.021981994, 0.012206283, -0.023397602, -0.008300005, -0.011064448, -0.017080784, 0.0030282, 0.027163655, -0.021514576, 0.014209502, 0.029033326, -0.0031133366, -0.027697846, -0.014262922, 0.04198748, 0.004700888, 0.00964884, 0.021153996, 0.012286412, 0.003315328, -0.027617717, -0.0021818397, -0.018469682, -0.01999213, -0.013808859, 0.03587098, 0.022890119, 0.022182316, 0.017508136, -0.027323911, -0.0045139208, -0.01904394, 0.010530257, -0.0028829665, 0.016773622, 0.020780062, 0.0067675426, 0.0048745004, 0.022569604, -0.01575866, -0.017214332, 0.00132129, -0.026776366, -0.017281106, 0.006053061, 0.0160124, 0.007371847, -0.007064687, -0.0046174205, -0.040785547, 6.623144E-4, -0.034856018, -3.186371E-4, -0.008420198, 0.015892208, 0.036218207, 0.01473034, 6.460382E-4, 0.018322779, 0.0053652893, 0.007719072, 0.0011677099, -0.009809097, 0.013434924, 0.008587133, 0.027991652, 0.017695105, -0.043937277, 0.007845943, -0.001624277, 0.0046875332, 0.0033687472, 0.03974387, -0.017147558, -0.0029413938, 0.011985929, 0.002670959, -0.0037193105, 0.023050377, 0.014877242, -0.025133725, -0.002574137, 0.0054520955, 0.011324867, -0.005355273, -0.005739223, 2.3746496E-4, -0.0247865, -0.0043403087, -0.009114648, -0.009942645, -0.007098074, -0.02258296, 0.024359148, -0.0033604004, -0.015878852, 0.016853752, 6.7191315E-4, 0.0018312763, 0.003949681, -0.007251654, -0.00654385, -0.0121128, 0.0065405113, -0.0011927502, 0.012306444, -0.037126333, 0.024238953, -0.026322301, 0.0151844025, -0.006997913, -0.018336134, -0.016893817, 0.028552553, 0.033627376, -0.027056815, 8.780778E-4, -0.013675311, 0.0064436886, -0.02216896, -0.00900781, -0.0070045902, -0.003602456, 0.01693388, -0.0019848566, -0.02029929, -0.020713288, 0.002450605, 0.006684075, -0.016666785, -3.7289094E-4, 0.191027, -0.031730995, 0.023557859, 0.04439134, -0.025093662, -0.0031367077, 0.01260025, 0.0041299704, 0.003458892, 0.008720681, -0.008560424, 0.019564776, -0.005565611, -0.0031500624, 0.019671613, 0.0024522743, -0.015585046, -0.027016751, -0.02743075, -0.022462767, 0.0037226493, 9.5987594E-4, -0.009281583, 0.0020566385, -0.0029864663, -3.3778244E-5, -0.019564776, 0.0025691288, 0.022422701, 0.011645381, -0.029113455, -0.025681272, -0.0029063374, 0.014663566, -0.009675549, -0.009107971, -0.0054153698, -0.004754307, 0.016439753, -0.0066673816, -0.0151844025, 8.939366E-4, -0.021167351, 0.0021668156, 0.007839265, 0.018683359, 0.0049646455, -0.018576521, -0.007625588, 0.0029280388, -0.025173789, -0.009281583, 0.018509747, 0.019030584, 0.002483992, -0.0035891014, 0.009001132, -0.0034455373, -0.0018513085, 0.025267273, 0.006033029, 0.026642818, -0.030422224, 0.012032671, -0.0064069633, 0.0047843554, -0.040545158, 0.005702498, 0.020285934, -0.024011923, -0.009168067, -0.03472247, -0.023704762, -0.008921004, -6.218327E-4, -0.011985929, 0.009021165, 0.026202109, 0.013374828, 0.0013346449, -0.018977165, 4.358567E-5, 0.0036558753, -0.0101696765, -0.0054387404, -0.007218267, 0.013254635, -0.010576998, 0.011825671, -0.00636356, -0.035096403, -0.021901865, -0.018870326, 0.006650688, -0.005341918, 3.649615E-4, 0.012787216, 0.01804233, -0.014543372, 0.003659214, -0.019150777, 0.02589495, 0.033440407, -0.020032194, -0.009855839, -0.017214332, -0.012406605, 0.015104274, 0.00456734, -0.016533237, -0.013247957, -0.026295593, 0.0052985153, -0.008814165, -0.0036391818, 0.025053596, -0.011445059, -0.018028975, 0.035684016, -0.018977165, 0.004246825, -0.026349012, 0.0068710423, -0.014075954, -0.0060697547, -0.03774065, -0.013495021, 0.013221248, 0.0041232933, -0.006654027, 0.03127693, -0.021354318, 0.0033169973, 0.009228163, 0.002039945, -0.007351815, 0.010757288, -0.009214809, 0.014049245, -0.021648124, 0.004724259, -0.03247886, 0.008173135, 0.013955762, -0.0018629939, -0.004831097, 0.01470363, 0.007845943, -0.0037059558, -0.030181838, -0.015571692, -0.01575866, 0.012974184, -0.018149167, 0.025975078, 0.0037393428, -0.024839919, -0.025467595, -0.022556249, 0.038168006, -0.03068932, 0.026749656, 0.024839919, -0.0154648535, -0.02743075, -0.012406605, -0.17083454, 0.01375544, 0.0147704035, -0.014476598, 0.016506527, 0.021821735, 0.026656171, 0.0043837116, 0.012192928, -0.022422701, 0.012887377, -0.0030198533, -0.04791701, -0.0015274547, 0.010142967, -0.0011443391, -0.018496392, 0.036912654, 0.009001132, 0.0047075655, 0.025253918, -0.0073852018, 0.008079652, -0.00228367, -4.8745004E-4, 0.021901865, -0.002024921, 0.030342096, -0.01075061, 0.008794133, -0.012947475, -0.023290763, 0.031757705, -0.0030448935, 0.0070246225, -0.01278054, -0.02191522, -0.022102186, -0.010009419, -0.012613605, 0.018923745, 0.01623943, 0.017695105, 0.017815297, 0.0065605436, 0.013154474, 0.03907613, -0.033654086, 0.013515053, -0.022102186, 0.004393728, -0.02455947, -0.0066907527, 0.0053385794, -0.0052317414, -0.005211709, 4.8118999E-4, 0.00803291, 0.015224467, 0.0039096163, -0.047302686, 0.002737733, 0.007398557, -0.020980384, -0.0013747093, -0.016626721, -0.011738866, 0.03456221, -0.04436463, -0.012667024, -0.0056891427, 0.00864723, 0.03587098, 0.0026976687, 0.011458415, -0.0183762, -0.032772668, 0.002837894, -0.0015266201, 0.01888368, -0.0143564055, 0.04369689, 1.658916E-4, -0.002083348, -0.0036091334, -0.011398318, -0.011919155, 0.00366923, -0.011044416, -0.019097358, 0.006223335, -0.02294354, -0.047275975, -0.005578966, 6.2225E-4, 0.007098074, 0.008126393, 0.008787456, -0.0038962616, -0.016453108, -0.005488821, -0.0143564055, -0.016212722, 0.015544982, 0.048103973, 0.0023153876, 0.0061598993, 0.018576521, 0.027190363, 0.010423418, -0.026095271, -0.005535563, 0.012874023, 0.005378644, -0.024572823, 0.0070313, 0.006353544, -0.012606927, -0.0023888391, 0.024706371, 0.0587611, 0.002766112, -0.016880462, 0.0027093543, -0.00900781, -0.009228163, -0.08691301, -0.0131811835, 0.0049179033, 0.03384105, -0.019030584, 0.032211766, 0.0052417573, 0.026242174, -0.011678768, 0.031704284, -0.021768317, -0.02581482, 0.0040899063, -4.3069216E-4, 0.009141358, 0.0051415963, -0.02740404, -0.016533237, -0.01044345, 0.02650927, -0.0022536218, -0.017134203, 0.005745901, -0.022703152, 0.009208132, 4.995528E-4, -0.029807903, 0.020032194, 0.014276276, 0.0034004648, 0.0034221665, -0.023130506, 0.0032669168, -0.042201154, -0.006457044, -0.009081261, -0.010076193, -0.033707503, 0.005348596, -0.04975997, -0.006320157, 0.025534369, 0.0064804144, 0.0032168364, 0.016359625, -0.013441602, -0.029086744, 0.027337266, -0.031597447, -0.0154648535, -0.007164848, -0.0014748703, -0.017187621, 0.013862277, 0.01223967, 0.005869433, 0.023971858, 0.013715375, -0.024425922, -0.022809992, 0.0169873, -0.010870804, -0.023397602, -0.0062834313, 0.021701543, 0.007238299, -0.018469682, -2.7690333E-4, 0.015999045, -0.015451498, -0.033440407, 0.013495021, -0.026215464, -0.013969116, -0.029300421, -0.02057974, -0.030368805, -0.0065405113, 0.026268883, -0.040064387, 0.004667501, -0.013848923, 0.015785368, 0.0036658915, -0.0029697728, 0.019751742, -0.0029029986, 0.018549811, 0.010603707, -0.027884813, -0.01467692, 0.041506704, 0.006426995, -0.031917963, -4.536457E-4, 0.033573955, 0.0075120726, 0.014610146, 0.0015341322, 0.0034789243, -0.033066474, -0.01963155, -0.06458379, 0.03851523, -0.010183032, -0.0040231324, -0.011044416, -0.0050648064, 0.0057859654, 0.0012912418, 1.4805043E-4, 0.020032194, 0.005735885, 0.003625827, -0.014516663, -0.021100577, -0.02640243, 0.0028345555, 0.007972813, -0.0077324267, -0.0065905917, 0.004393728, -0.020125678, -0.008259941, 0.042762056, 0.0058527393, -0.0054187085, 0.013835568, 0.01370202, 0.024439275, -0.022809992, -0.0045139208, 0.0036759074, -0.03338699, -0.009602098, 0.010984319, 0.008653907, -0.016706849, -0.014129374, -0.002024921, 0.016105883, 0.029941453, -0.010029452, -0.03338699, -0.0019314373, -6.7399984E-4, -0.0057859654, 0.018750133, -0.02294354, 0.00828665, 0.017054074, 0.014743694, 0.022182316, 0.011959219, -0.010036129, -0.036405172, 0.019858582, -0.014556727, 0.04046503, 0.014810468, 0.00433697, 0.0024305729, 0.036164787, 0.013288022, 0.010423418, -0.028151909, 5.4337323E-4, 0.005745901, 0.006033029, -0.013094377, 0.009335002, -0.033066474, 0.005144935, 0.011525189, 0.01010958, 0.017588265, 0.013321409, 0.01609253, -0.019017229, 0.009675549, 0.016413044, -0.008473618, 0.022823345, -0.0068910746, -0.018816907, 0.0179622, 0.011157932, 0.022890119, -0.014877242, -0.0066607045, -0.015451498, 0.016439753, -0.011525189, 0.012119477, 0.01676027, 0.0108975135, 0.010877481, 0.0010608715, -0.019124066, -0.017307814, 0.0054587726, 0.029727776, 0.009949323, -0.004854468, -0.009715614, -0.0068576876, -0.024105405, 0.004343647, -0.033440407, -0.03333357, 0.010697192, 0.03862207, 0.01567853, 0.0018396231, -1.476331E-4, 8.714004E-4, -0.04383044, 0.026722945, -0.011171287, -0.02319728, -0.02150122, 0.04959971, 0.020232515, -0.008239909, 0.025307337, -0.012954152, 0.034829307, -0.0023871697, 0.015157693, -0.033093184, 0.01804233, -0.004557324, 0.0022369283, 0.0010900851, -0.030956415, -9.3733973E-4, -0.017521491, 0.0011076133, 0.02809849, 0.02291683, -0.024960114, 0.06597269, 0.03448208, 0.0017411315, 0.011538544, -0.012366541, 0.008834197, 0.0050848383, 0.010049484, 0.0057525784, -0.008139748, 0.00880081, -7.0989085E-4, 0.001934776, -0.03282609, 1.3626064E-4, 0.009381744, 0.01606582, 0.017828653, -0.0030515708, -0.007739104, 0.0060397065, -0.0047743395, 0.016172657, 0.025868239, -0.010997674, -0.014583437, 0.030261967, -0.014503308, -0.0012027663, -0.032452155, -0.0038996004, -0.028045071, -0.010850771, -0.012353186, 0.040705416, 0.010122935, -0.018589875, 0.004049842, 0.031730995, 0.0017811959, -0.006944494, 0.009902581, -0.026268883, -0.010643772, 0.01303428, 0.0046140817, -0.0039430032, -0.009969355, -0.01590556 ], + "id" : "b1b0b76e-4530-4adb-9b45-2bbbde2d98f4", + "metadata" : { + "source" : "movies.csv" + } + }, + "e9146860-d6f5-4be0-99ab-cb6062e5c816" : { + "text" : "206,16189,Russell Crowe-Joaquin Phoenix-Connie Nielsen-Oliver Reed-Richard Harris-Derek Jacobi-Djimon Hounsou-David Schofield-John Shrapnel-Tomas Arana-Ralf Moeller-Spencer Treat Clark-David Hemmings-Tommy Flanagan-Sven-Ole Thorsen-Omid Djalili-Nicholas McGaughey-Chris Kell-Tony Curran-Mark Lewis-John Quinn-Alun Raglan-David Bailie-Chick Allan-David Nicholls-Al Hunter Ashton-Billy Dowd-Ray Calleja-Giannina Facio-Giorgio Cantarini-Allan Corduner-Michael Mellinger-Said Amel-Adam Levy-Gilly Gilchrist-Paul Bateman-Nick Beardshaw-Corey Booth-Michael Dickins-Malcolm Ellul-Simon Faulkner-James Fiddy-Peter Francis-Wemyss-Ruth Frendo-Cara Higgins-Earl Hundt-Mehdi Kashani-Tom Kay-Phil Lowes-Nic Main-Ray Mangion-Antonio Meitin-Jo��o Costa Menezes-Mike Mitchell-Arnold Montey-Antone Pag��n-Norman Campbell Rees-Neil Roche-Paul Sacks-Steve Saunders-Christopher Say-Brian Smyj-Richard Stride-Tony Tomlinson-Paul Woodadge-Michael Yale,rome italy-parent child relationship-gladiator-arena-senate-roman empire-emperor-slavery-ancient rome-epic-revenge-battlefield-slave auction-historical fiction-ancient world-combat-chariot-philosopher-barbarian horde-2nd century-successor-commodus-maximus,/ty8TGRuvJLPUmAR1H1nRIsgwvim.jpg,/aZtwH3RQ0L8jbInxr7OSc9tlGMJ.jpg,857-197-121-603-1271-120-122-1422-280-16869-85-272-13-329-89-22-105-8587-497-807-550\r\n603,The Matrix,Action-Science Fiction,en,Set in the 22nd century The Matrix tells the story of a computer hacker who joins a group of underground insurgents fighting the vast and powerful computers who now rule the earth.,66.157,Village Roadshow Pictures-Groucho II Film Partnership-Silver Pictures-Warner Bros. Pictures,3/30/99,63000000,463517383,136,Released,Welcome to the Real World.,8.202,23193,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Joe Pantoliano-Marcus Chong-Anthony Ray Parker-Matt Doran-Gloria Foster-Belinda McClory-Paul Goddard-Robert Taylor-Ada Nicodemou-Julian Arahanga-David Aston-Marc Aden Gray-Deni Gordon-Rowan Witt-Eleanor Witt-Janaya Pender-Adryn White-Natalie Tjen-Bill Young-David O'Connor-Jeremy Ball-Fiona Johnson-Harry Lawrence-Steve Dodd-Luke Quinton-Lawrence Woodward-Michael Butcher-Bernard Ledger-Chris Pattinson-Robert Simper-Nigel Harbach-Rana Morrison-Tamara Brown,saving the world-artificial intelligence-man vs machine-philosophy-prophecy-martial arts-self sacrifice-dream-fight-hacker-insurgence-simulated reality -virtual reality-dystopia-truth-cyberpunk-dream world-woman director-messiah-action hero-gnosticism,/f89U3ADr1oiB1s9GkdPOEpXUk5H.jpg,/l4QHerTSbMI7qgvasqxP36pqjN6.", + "embedding" : [ 0.011627888, -0.024550011, -0.03615768, -0.03691265, -0.01598919, 0.032949056, 0.0025766727, -0.015908299, -0.02694974, -0.04095713, 0.035375744, 0.027596856, 0.01540948, -0.002713174, 0.001943037, 0.0032945685, 0.025493724, -0.010738103, 0.021948062, -0.028419234, -0.002259855, -0.012558119, -0.0177418, 6.0161686E-4, -0.0014593843, 0.018024912, 0.026006026, -0.01834847, -0.0128007885, -0.019723596, 0.012483971, -0.006268949, -0.0020306676, -0.020438122, -0.030333623, 0.014020874, 0.01624534, -0.015112884, 0.017229497, 0.003886074, 0.02352541, 0.012726639, -0.0064273574, -0.0057734996, -0.005234235, 0.0047017117, 0.01306368, -0.018496769, 0.0017610353, 0.028607976, 0.03276031, 0.045486953, -0.025021868, -0.028688867, -0.010367358, 9.740463E-4, -0.015800446, 0.006380172, 0.007178957, -0.0058914637, 0.024887051, -0.015139848, -0.035213966, -0.014910661, -0.012753603, -8.577674E-4, -0.015625186, -0.011702037, -0.0046511553, -0.010171874, 0.013764724, 0.015692594, 0.019170849, 0.011499814, 0.016973346, -0.020680789, -0.020896496, -0.0035389226, -0.004462413, -0.0030283066, 0.0021081867, 8.7630464E-4, -0.0022901886, 0.0010903252, 0.00946409, 0.0022160397, -0.015031995, 0.024590457, -0.027826043, -1.3218298E-4, 0.0028008046, 0.031385187, -0.013137829, 0.0050454927, 0.01783617, 0.02469831, -0.015422962, 0.0154364435, -0.029605616, -0.026032988, -1.0806353E-4, -0.005604979, -0.010610027, -0.012618787, -9.428701E-4, 0.0039062966, -0.004617451, -0.0038456293, 0.029848285, 0.0033350133, 0.014829771, -0.0039231484, 0.017377796, -0.033973657, -0.01298279, -0.024994904, 0.027421596, -0.041064985, -0.0023525408, -0.02285133, 0.02596558, 0.024132082, 0.007987854, -0.044947688, 0.030549329, 0.04513643, -0.0013085587, -0.0128007885, -0.0024502827, 0.002286818, 0.027367668, -0.0031041407, 0.025979063, 0.02596558, -0.020842569, 0.03960897, -0.026774477, 0.004738786, -0.022123322, -0.009322533, 0.031169482, 0.039986454, -0.02670707, -0.01683853, -0.020465083, 0.016150968, 0.013036717, -0.0010684176, 0.02429386, 0.022231175, 0.022204211, 0.031034667, 0.0061408733, 0.0147354, 0.020802123, -0.008581045, -0.007050882, 0.013582722, 0.0091405315, -0.018186692, 0.0020727976, -0.009221422, -0.015773484, -0.013016494, 0.005604979, 0.009450609, 0.017755281, -0.017283425, 9.976391E-4, 0.003542293, -0.0059420196, 0.02219073, -0.017957505, 0.024374751, 0.008722601, 0.009733723, 0.003875963, -0.014007392, -0.03642731, -0.012463748, 0.004610711, 0.0031496412, 0.04203566, 0.03968986, -0.010441507, 0.005540942, 0.029875247, -0.020923458, 1.2175579E-4, -7.806695E-4, -0.0027182295, 0.017067717, -0.0032928833, -0.023498446, -0.63978326, -0.019656187, -0.0032136787, -0.0017896837, 0.01674416, 0.013360276, 0.005827426, 0.0020475194, -0.016393637, -0.002812601, -0.024078155, 0.020667309, 0.0144118415, -0.0031513264, -0.01950789, -0.015800446, 0.01557126, -0.01908996, 0.0088709, 0.0054870155, -0.025358908, 0.015894819, 0.005042122, -0.004846639, -0.0027569893, 9.976391E-4, -0.017121645, -0.015422962, 0.006808213, 9.209625E-4, -0.024900533, 0.016488008, 0.01884729, -0.0022901886, 0.040579647, 0.0037040724, -0.01952137, 0.051472787, 0.024051191, 0.02771819, -0.026032988, -0.009841575, 0.010272987, -0.0023002997, -0.026491364, 0.012949087, 0.003943371, -0.0038456293, 0.0048264163, -0.011567221, -0.010003354, 0.006491395, -0.01113581, -0.011769446, -0.008473191, -1.9682624E-5, 0.02002019, -0.02963258, 0.02167843, -0.004253448, -0.027098035, 0.015005032, -0.0036400347, 0.0061341324, -0.0069025843, 0.022824366, 6.0540857E-4, -0.0076238504, -4.7396286E-4, -0.0411998, 0.010650472, 0.013306349, -0.014681473, 0.0061610956, -0.008850677, 0.022500807, 0.04004038, 0.0040242607, -0.007731703, 0.030414512, -0.0023205222, -0.020208932, 0.009012456, 0.018159728, 0.031358223, -0.00895853, -0.043896124, 0.0053218654, 0.0091405315, 1.31867E-4, 9.0579566E-4, 0.015180293, -0.00778563, 0.002185706, -0.0036804795, 0.003717554, -0.0032221049, 4.8449537E-4, 0.03073807, -0.057000246, -0.004883713, -0.025493724, 0.025668986, -0.009100087, 0.0058173146, 0.008183337, -0.01674416, -6.3195045E-4, 0.027327223, -0.019723596, -0.01439836, 0.010583064, -0.01724298, -0.011398701, 0.0014231524, -0.026356548, 0.016299266, 0.014371396, -0.0130569395, -0.0126322685, -2.3550687E-4, 0.0035288115, 0.0011080198, -0.0170812, 0.013859095, 0.020990867, -0.011189736, -3.0586403E-4, -0.0047826013, 0.008311412, -0.0031075112, -0.012099745, 0.022460362, -0.01841588, 0.0014787641, -0.007772148, 0.011284107, -0.012416563, 0.017189052, 6.985159E-4, -0.011796408, -0.0048163054, -0.014088282, -0.013953466, -0.009268607, -0.01156048, -0.02436127, 0.0034883665, -0.0037478877, -0.012854715, -0.0013742816, 0.018294545, -0.0021873913, 0.010947067, -0.008190078, 5.131438E-4, -0.040229123, -0.018874254, 0.0063768015, -0.013832131, 0.0040984093, 0.011634629, -0.010677435, -0.012187376, 0.021179609, -1.931662E-4, -0.017054237, 0.020208932, -0.0055577937, -0.012625528, 0.015031995, -0.019656187, 0.005584757, 0.030845923, -0.021543613, 0.03559145, -0.012301969, 0.033272613, 0.013427683, -0.003257494, 0.009524757, -0.015544296, -0.020626863, -0.021557095, 0.008149633, 0.021381833, 0.031627856, -0.0144118415, -0.012133449, 0.0027216, -0.016865494, -0.013185015, -0.009632611, -0.007596887, 0.008014817, 0.023754597, -0.0010911678, -9.605647E-4, -0.0040882984, -0.004071446, 0.037613694, 0.0046848594, 0.015975708, -0.0031395298, 0.01289516, -0.027596856, -0.0018823697, -0.027745154, 0.0128816785, -0.005658906, 0.021745836, -0.010535878, -0.015544296, -0.010562842, 0.0071115494, 0.019817967, -0.021921098, 0.008810232, -0.024550011, 0.0055308305, 0.009518017, -0.009720241, 0.024523048, 0.018833809, -0.020963904, 0.017633947, 0.018469805, -0.01716209, 0.0014121986, -0.011857076, -0.005871241, -0.008021558, 0.0050556036, 0.011991892, -0.00359959, -0.010016836, 0.022365991, -0.013845613, 0.03993253, -0.0031361596, -0.0014223099, 0.01398043, 0.023943339, 0.008190078, 0.0040074084, -0.011850336, 0.014438804, 0.018806847, -0.020249378, 0.04421968, -0.016636306, 0.024914015, -9.934262E-4, 0.0017627205, 0.011425665, -0.0018941662, 0.012187376, 0.024172526, 0.03534878, 0.021139164, 0.01574652, -0.028230492, 0.021637984, 0.0088034915, -0.0023171518, -0.0025598207, -0.020289823, -0.0033687174, -0.01247723, -0.025318464, -0.027111517, -0.0205999, 0.009821353, 0.0075092567, -0.009935946, -0.0048432685, -0.0030721219, 0.014155691, 0.016757641, 0.012847974, -6.496451E-4, -0.031924453, 0.01439836, 0.0229457, -0.022365991, -0.020653827, -0.017795725, -0.006413876, -0.04238618, -0.0205999, -0.01650149, 0.033704024, -0.027111517, -0.01156048, -0.02193458, 0.005133123, 0.026572254, -0.018766401, 0.014978069, -9.571943E-4, -0.01230871, 0.009079864, 0.007974372, -0.009005715, 0.035510562, -0.016636306, -6.614415E-4, 0.0012815956, 0.0016439138, 5.266254E-4, -0.002101446, 0.002236262, -0.032355864, 0.010353876, 0.002360967, -0.006312764, -0.009915724, 0.005449941, -0.0065588034, -0.02135487, -0.013555759, -0.039555043, -0.017310387, -0.0050690854, 0.07673732, 0.03718228, -4.3688843E-4, 0.009673055, -0.009241643, -0.011203218, -0.0074755526, -0.008446229, -0.013427683, -0.017216016, 0.015530814, -0.013805169, 0.0269767, -0.0018941662, 0.0067273234, 0.001750924, -0.0032625496, -8.480775E-4, -0.009828093, -7.0399285E-4, -0.023067035, -0.014169172, 0.02328274, 0.02251429, 0.014560139, -0.01918433, 0.033892766, -0.010084244, 0.002563191, 0.007596887, 2.3592818E-4, 0.008345117, 0.003987186, 0.0132254595, -0.0074890344, 0.010832474, 0.034216326, 0.00837208, 0.027583374, -2.4856717E-4, -0.010407803, 0.010576323, 0.008668675, -0.007751926, 0.010138171, -0.024900533, -0.019440481, 0.013515314, 0.0313043, -0.030926812, 0.009558462, 0.0071385126, -0.01741824, -0.012403081, 6.698675E-5, -0.0030181955, -0.009902243, -7.7097956E-4, -0.027772117, 0.012780567, -0.0049005654, -0.029551689, 0.01298279, -0.021166127, -0.0049949363, -0.025453279, -0.0077249627, 0.0074620713, -0.01674416, 0.007974372, 0.017175572, -0.021543613, 0.010151653, 0.004539932, 0.010171874, 0.0028159714, 0.027691226, -0.002837879, 0.013778205, 0.0029878619, -0.042359218, -0.039743785, -2.515163E-4, -0.020047154, -0.0050353813, -0.0021216683, -0.01298279, 0.017269943, -0.014802808, 0.003341754, -0.009942687, -0.011156032, -0.023134442, 0.0027350816, 0.03602286, 0.025952099, 0.011021216, 0.008506896, 0.020303305, -6.9683074E-4, -0.01582741, -0.028581014, -0.014209617, -0.006683508, -0.0133130895, -0.005402755, 0.003333328, 0.016528454, -0.020074118, -0.027610337, -0.029875247, -0.024266899, 0.0025143202, -0.0058645005, 0.0155173335, -0.0047050817, 0.022163767, 0.014034356, -0.003156382, 0.0045028576, 0.003818666, -0.009248384, 0.010185356, 0.032922093, -0.016488008, 0.025817282, -0.003869222, -0.024307342, 0.009383201, 0.034944333, -9.277033E-4, 0.022864811, -0.007933928, -0.003073807, 0.006080206, -0.018469805, 0.01624534, 0.0032541235, -0.0059319083, 0.010872918, -0.013602944, 0.0020744829, 0.010650472, 0.014101764, -0.022123322, -0.022419916, 0.008338376, -0.022123322, 0.017175572, 0.023053553, -0.01875292, -8.539757E-4, -0.019804485, -0.009619129, -0.007556442, -0.028904572, -0.015800446, -0.0114391465, 0.04163121, 0.012362637, 0.03456685, -0.010704398, 0.049854994, 0.015935263, 0.015449925, 0.023484964, -0.015948744, -6.862982E-4, -0.032194085, -0.0059420196, 0.013778205, 0.024900533, 0.0011998633, 0.0037815915, 0.010340394, 0.023673708, 1.348161E-5, 0.008756306, -0.0038624813, -0.025668986, -0.019197812, 0.0075497017, -0.016986828, 2.1423122E-4, -0.021233536, -0.010556101, 0.03812599, 0.007967631, -0.00678462, 6.201541E-4, 0.038233846, 0.0078665195, 0.009248384, -0.025089277, 0.023377111, -0.023390593, 0.0044017457, -0.014115246, -0.0023828745, -6.3195046E-5, -0.020707753, 0.033164762, 0.0022194101, -0.0023811893, -0.010690916, 0.033730987, -0.022473844, -0.024819644, 0.029929174, -0.019103441, -0.009073123, -0.031924453, -0.007192439, -0.02839227, -0.024186008, -0.003869222, -0.004061335, 0.005331977, -0.020141525, -0.0341624, 0.03567234, -0.009700018, 0.039474156, 0.008244004, 0.04732045, 0.020950422, 0.0064037647, -0.023147924, 4.0760805E-4, -0.0051129004, -0.008405784, 0.030522365, 0.039204523, -0.01197841, -0.0065520625, -0.0067879907, -0.020613382, -0.03785636, -0.039150596, 0.021543613, 0.038206883, 0.025925135, -0.031277336, 3.254545E-4, -0.04238618, -2.6660411E-5, -0.017890096, -7.4190984E-4, 0.007927187, -0.021085238, -0.011904262, -0.011702037, -0.016595863, 0.013805169, 9.942687E-4, -0.03265246, 0.009093346, -0.032922093, 0.004728675, -0.016514972, -0.0043174857, 0.027421596, -0.01406132, 0.0068115834, 0.0085473405, 0.008843936, 0.0058678705, -0.009578684, 0.0059858346, 0.035726268, -0.015193774, 0.024266899, 0.0017728317, 0.005197161, 0.015611704, 0.025776839, -0.019642705, -0.019305665, -0.02127398, -0.0030923444, 0.02428038, -0.00569598, -0.0041826693, 0.007529479, -0.010845955, -0.014182653, 0.009073123, 0.0068250652, 0.010313432, -0.03785636, 0.015099403, 0.002521061, 0.008095707, 4.6511553E-4, -0.012935605, 0.012099745, -0.009828093, 0.004226485, -0.0068115834, 0.011715519, -0.014209617, -0.010542619, -0.032274973, -0.023646744, -0.010792029, -0.0138186505, 0.008419265, -0.021314425, 0.011735741, 5.215698E-4, -0.0011467794, -0.019036034, 0.0040748166, -0.022703031, 0.0020576308, 0.013926503, -0.010556101, -0.0019885374, 0.008095707, 0.02963258, -0.005604979, 0.0036804795, -0.0066295816, -0.0034462365, 0.03340743, -0.021813245, 0.017849652, 0.0017981097, -0.022055915, -0.0046511553, 0.010569582, 0.023970302, 0.021921098, -0.0057903514, -0.040498756, 0.0030485291, -0.0155173335, 0.034405068, -2.4540743E-4, 0.011169514, 0.022541251, 0.018860772, 0.041361578, 0.034270253, -0.008634971, -0.035294853, 0.015638668, -0.0066498043, -0.030414512, 0.0024755606, 0.006791361, 0.0116952965, 0.0052207536, -0.010987512, -0.03149304, -0.014465768, -0.022864811, -0.02839227, -0.0028243973, 0.010872918, 0.025453279, 0.031520005, -6.871408E-4, 0.015382517, 0.012854715, 0.0011897521, -0.009322533, 0.008163115, 0.019817967, 0.008095707, 0.017701354, 0.020438122, -0.04279063, -0.0033350133, 0.013771465, 0.009592165, 0.012355896, 0.015180293, -0.005669017, -0.013784946, -0.005409496, -0.004694971, 0.002949102, -0.0032456976, 0.012099745, -0.027259815, 0.0010818992, 0.009922465, 0.020047154, -0.007778889, 0.019265221, 0.004967973, 0.0021385204, -0.012153671, -0.005032011, -0.0111829955, 0.014694955, -0.03850348, 0.025008386, 0.007846297, -0.0044657835, 0.022729995, 0.01801143, 0.0011619462, 0.019750558, -0.013744501, 0.019049514, -0.020316787, 0.008823713, 0.013791687, 0.01807884, -0.031223409, 0.02419949, -0.036211606, 0.0031951417, -0.004637674, 0.0057128323, 0.0024132081, 0.030872887, 0.016919421, -0.04791364, -0.0011602611, -0.018564178, 0.009025938, -0.02051901, 0.0053353473, -0.018779883, -0.00770474, 1.8221239E-4, 0.0057263137, -0.020613382, -0.02922813, -0.013670352, -0.017189052, -0.003065381, 0.0014223099, 0.18421271, -0.005911686, 0.002445227, 0.048075423, -9.538239E-4, 0.0019952783, 0.029120278, 0.015382517, -0.0038085547, 0.01598919, -0.007259847, 0.016798086, -0.0027418225, 0.0021469465, 0.030414512, -0.008277709, -0.019548334, -0.014263543, -0.0133130895, -0.02386245, -0.004883713, 0.003240642, -0.0033602912, -0.032005344, 0.0062251333, -0.0046781185, -0.009032679, 0.0063700606, 0.020384194, -1.0074344E-4, -0.012996272, -0.008506896, 8.7124907E-4, 0.0049140467, -0.013913021, -0.0071654757, -0.0069362884, 0.009174235, 0.010454988, -0.013522055, 0.001892481, 0.008014817, -0.003616442, 0.003784962, 0.009046161, 0.027596856, -0.022716513, 0.0023104108, -0.033623137, 0.011290848, -0.04705082, 0.0033704024, 0.010205579, 0.02879672, -0.021718875, -0.007017178, 0.0082911905, 0.008270968, 0.004839898, -0.0049376395, 0.010690916, 0.034054548, -0.022379473, 0.012551378, 0.011877298, 0.016717196, -0.0323289, -0.011331293, 0.00485675, -0.02469831, -0.005625202, -0.035807155, -0.021395314, -0.0017475537, -0.011924484, -0.0048702317, -0.004637674, 0.0042062625, 9.133791E-4, 0.00929557, -0.017256461, -0.028149601, 0.006622841, -0.005449941, -0.018227136, -0.0038456293, 0.014829771, -0.017539574, -0.01623186, -3.939158E-4, -0.009369719, -0.017714836, -0.015099403, -0.010650472, -0.011189736, -0.0023929859, 0.02429386, 0.013886059, -0.019615743, -0.006009428, -0.036723904, 0.036616053, 0.01918433, -0.009801131, -0.024833126, -0.016488008, 0.007610369, 0.011998633, 0.033056907, -0.011533517, -0.02135487, -0.023174888, -0.0031681783, -0.0021284092, -6.407978E-4, 0.021948062, 1.1627888E-4, -0.010899882, 0.047644008, -0.017350832, 0.01180989, -0.028203528, 0.015166812, 0.01063699, -0.013286127, -0.038827036, -0.03197838, 0.011715519, -0.0074822935, -0.034728628, 0.036804795, -0.028527087, 3.8127677E-4, -0.0052510872, -0.00167509, 9.951113E-4, 0.026167804, -0.0021991876, 0.010623509, 0.0047826013, -0.006437469, -0.01817321, 0.0085406, 0.004897195, -0.0034209585, -0.012524416, -3.372509E-4, -0.005968983, -0.009302311, -0.029767394, -0.017647427, -0.0041826693, 0.008506896, 0.015274664, 0.044597168, -0.0017307017, -0.034216326, -0.030414512, -0.0047590085, 0.045594804, -0.041819952, 0.027084554, 0.02630262, -0.012032337, -0.032598533, -0.0014905605, -0.17213319, 0.025588095, 0.012908641, -0.032922093, 0.022649106, 0.00954498, 0.021840207, 0.0071115494, 0.014560139, -0.014169172, 0.025358908, 0.009915724, -0.03758673, 0.00385237, 0.010751584, 0.019265221, -0.0072868103, 0.021637984, 0.025722912, 0.0052207536, 0.028311381, -0.004135484, -0.016272303, -0.0012689566, 0.024725273, -0.0072463653, 0.027745154, 0.007529479, 0.0076238504, -0.005904945, -0.037964214, -0.010205579, 0.02596558, 0.0034546626, -0.024887051, -0.002896861, -0.0010953809, -0.0073070326, -0.011836854, -0.01365687, 0.039824676, 0.008843936, 0.019373074, 0.015288145, 0.013744501, 0.010434766, 0.041334618, -0.03475559, 0.016366674, -0.01632623, -0.012079523, -0.031115556, 0.0264644, -0.009383201, 3.9265188E-4, 0.022123322, 0.007832815, -0.00280586, 0.0047354153, 0.007981113, -0.023902895, -0.009531498, -0.004681489, -0.022797402, -9.074809E-4, -0.014128727, -0.015342073, 0.011257145, -0.028769756, 0.009079864, -0.0269767, 0.013245682, 0.013454647, 0.009868539, 0.0028109157, -0.016299266, -0.03459381, -0.0025025238, -0.004388264, 0.012686195, -0.0041388543, 0.026167804, 0.0029524725, 0.015679112, 0.014614065, -0.03157393, 0.009935946, -0.00962587, 7.2884955E-5, -0.007293551, 0.021651465, -0.0137377605, -0.0477249, 0.009167495, 0.006504877, 0.0012959198, 0.0020727976, 0.015530814, 0.014290507, -0.014128727, -0.00812941, -0.012153671, -0.014277025, 0.012362637, 0.018874254, 0.0060667247, 0.003980445, 0.023714151, 0.02143576, 0.0024603938, 4.2066837E-4, -0.002938991, 0.021961542, 0.018213656, -0.025453279, 0.013555759, -0.00694977, -0.024630902, 0.002620488, 0.019453963, 0.042898484, -0.00385237, 0.011216699, -0.011122328, -0.0020896494, -0.009632611, -0.08558126, 3.7348273E-4, 0.012355896, 0.034189362, -0.026504844, 0.049801067, -0.007906964, 0.012773826, -0.041739065, 0.030252732, -0.0037074427, -0.04028305, 0.012976049, -0.0041455952, -8.329107E-4, -1.3302558E-4, -0.017930541, -0.014371396, -0.009753945, 0.019427, 6.985159E-4, -0.0049140467, 0.0011130754, -0.015328591, -0.024630902, 0.01557126, -0.018833809, 0.006397024, 0.007226143, 0.018321509, 0.006814954, -0.030225769, 0.017768761, -0.05050211, -0.011344775, -0.029012425, -0.0121199675, -0.020330267, 0.003875963, -0.04211655, 0.010320173, 0.01481629, -2.2602762E-4, -0.006589137, -0.009740463, 0.0019025923, -0.019103441, 0.029821321, -0.015719557, -0.021705393, -0.018685512, -0.013771465, -0.029120278, -0.0035557747, 0.006605989, 0.026221732, 0.031789638, 0.013913021, 0.003105826, -0.019791003, 5.1904196E-4, 3.4967925E-5, -0.03257157, 0.024927497, 0.008237264, 0.008055262, -3.320373E-5, -0.005402755, 0.005460052, -0.023983784, -0.021085238, 0.03006399, -0.02755641, -0.017054237, -0.007893482, -0.007610369, -0.024914015, -0.01834847, 0.040471792, -0.034405068, 0.00468823, -0.030252732, 0.013966948, -0.019696632, 0.021503167, 0.022703031, 0.011317812, -6.513303E-4, -0.0046781185, -0.03524093, -0.014560139, 0.019952783, 0.009477572, 0.0044860058, -0.0042635594, 0.0056218314, 0.014910661, 0.0027098036, -0.007178957, 0.0017542945, -0.018874254, 0.0085406, -0.06983474, 0.02863494, -0.0264644, -0.011021216, -0.01013143, -0.011364997, 0.008830454, -0.0045702658, -9.3360146E-4, 0.018361952, -0.010057281, 0.008486673, -0.0039972975, 0.003316476, -0.007826075, 0.006707101, 0.0143309515, -0.0045433026, 0.008028299, -0.004135484, -0.01540948, 0.0054802746, 0.023808524, -0.005008418, 0.0067677684, 0.023511928, 0.009558462, 0.0038321477, -0.02436127, 0.0019362962, 0.019278701, -0.017957505, -0.00628243, 0.009551721, -0.004337708, -0.03057629, 0.0040343716, 0.0024384863, 0.023431038, 0.020451602, -0.011648111, -0.021327907, -0.007158735, 0.009571943, 0.0049646026, 0.013178274, -0.024037711, 0.015085922, 0.007987854, 0.012821011, 0.01807884, 0.0064003943, -0.010616768, -0.020572936, 0.01767439, -0.017633947, 0.055220675, 0.017202534, -0.008068743, -0.022298584, 0.032382827, -0.0067542866, 0.015625186, -0.025170166, 0.02244688, -0.010987512, 0.0017130071, -0.0023677077, -0.003575997, -0.02638351, -0.023579337, -0.0047522676, 0.007010437, 0.036184642, 0.017094681, 0.02235251, 0.021948062, -0.003501848, 1.5440656E-4, 0.016636306, 0.0177418, -0.018119283, -0.027327223, 0.026396992, -0.0093157925, 0.013697316, -0.0025480243, 0.016771123, 0.014856734, 0.010057281, -2.4709263E-4, 0.018240618, 0.026760995, -0.004051224, 0.0073002917, 0.014182653, -0.02487357, -0.007738444, 0.005470163, 0.021408796, -0.01230871, -0.0079474095, -0.015382517, -0.026450919, -0.028041748, -0.007846297, -0.021395314, -0.016272303, 0.0024182638, 0.033056907, 0.029794358, 0.013461388, -0.005736425, 0.0024772459, -0.0443545, 0.016878976, -0.0057330546, -0.015584741, -0.01021232, 0.033353504, 0.013252422, 7.751926E-4, 0.03559145, -0.012355896, 0.0571081, 0.020559454, 0.015422962, -0.029335983, -0.0018014802, 1.8563545E-5, 0.0010397692, -0.0050050477, -0.020950422, 0.010933585, -0.021381833, -0.009248384, -6.690249E-4, 0.02604647, -0.03246372, 0.07134468, 0.019723596, -0.003082233, 0.016177932, -0.011648111, 0.006204911, 5.329449E-4, 0.018321509, -0.018159728, -0.020316787, 0.0055443123, -0.0014998291, 0.010448248, -0.022392955, 0.007839556, 0.0023407445, 0.019467445, 0.018645067, -0.0023744486, -0.014667992, -0.0041455952, -0.009288829, 0.012719899, -6.5006636E-4, -0.0048668613, -0.007435108, 0.018901218, -0.00694977, -0.003323217, -0.015342073, -0.0015840891, -0.03289513, -0.00619817, -0.0032204196, 0.02445564, -0.008109189, 0.0018958515, 0.015625186, 0.01540948, -0.0037647395, -0.011257145, -0.0019868524, -0.028581014, -0.024927497, 0.019602261, -0.009369719, -0.010374099, -0.030765034, -0.010960549 ], + "id" : "e9146860-d6f5-4be0-99ab-cb6062e5c816", + "metadata" : { + "source" : "movies.csv" + } + }, + "194b8048-2c84-418e-bfbd-df91f7cfde1c" : { + "text" : "A team of experts including Niko Tatopoulos conclude that the oversized reptile is the culprit. Before long the giant lizard is loose in Manhattan as the US military races to destroy the monster before it reproduces and it's spawn takes over the world.,48.185,TOHO-TriStar Pictures-Independent Pictures (II)-Fried Films-Centropolis Entertainment,5/20/98,130000000,379014294,138,Released,Size does matter.,5.601,3478,Matthew Broderick-Jean Reno-Maria Pitillo-Hank Azaria-Kevin Dunn-Michael Lerner-Harry Shearer-Arabella Field-Vicki Lewis-Doug Savant-Malcolm Danare-Lorry Goldman-Christian Aubert-Philippe Bergeron-Frank Bruynbroek-Fran�_ois Giroday-Nicholas J. Giangiulio-Robert Lesser-Ralph Manza-Greg Callahan-Chris Ellis-Nancy Cartwright-Richard Gant-Jack Moore-Steve Giannelli-Brian Farabaugh-Stephen Xavier Lee-Bodhi Elfman-Rich Grosso-Lloyd Kino-Toshi Toda-Clyde Kusatsu-Masaya Kato-Glenn Morshower-Lola Pashalinski-Rob Fukuzaki-Dale Harimoto-Gary W. Cruz-Derek Webster-Stuart Fratkin-Frank Cilberg-Jason Edward Jones-Roger McIntyre-David Pressman-Robert Faltisco-Christopher Darius Maleki-Scott Lusby-Ali Afshar-Terence Paul Winter-Kirk Geiger-Pat Mastroianni-Eric Saiet-Burt Bulos-Robert Floyd-Seth Peterson-Jamison Yang-Nathan Anderson-Mark Munafo-Dwight Schmidt-Dwayne Swingler-Lawton Paseka-Greg Collins-James Black-Thomas Giuseppe Giantonelli-Paul Ware-Montae Russell-Christopher Carruthers-Daniel Pearce-Mark Fite-Craig 'Radioman' Castaldo-Eric Paskel-Lee Weaver-Leonard Termo-Joshua Taylor-Al Sapienza-Stoney Westmoreland-Gary Warner-Ed Wheeler-Bill Hoag-Joseph Badalucco Jr.-Jonathan Dienst-Benjamin Baird-Madeline McFadden-Julian M. Phillips-Raymond Ramos-Gary A. Hecker-Frank Welker-Al Leong-Ed Godziszewski-Steven Ho-George Cheung-John Koyama-Al Goto-Norman Fessler,new york city-atomic bomb-intelligence-missile-destroy-pregnancy-boat accident-flowerpot-atomic bomb test-us army-giant monster-creature-kaiju-military-animal horror-godzilla,/tqQ9Nt5C1Z5PRDPxYXQ4qwy5v5V.jpg,/z6fmvhQXS5hbXSizx4DGajjBmGD.jpg,876457-39264-39462-586221-124905-522348-1678-39466-12561-39464-10643-39465-19545-18627-38582-19336-1680-39468-18289-331-15766\r\n36955,True Lies,Action-Thriller,en,A fearless globe-trotting terrorist-battling secret agent has his life turned upside down when he discovers his wife might be having an affair with a used car salesman while terrorists smuggle nuclear war heads into the United States.,38.228,Lightstorm Entertainment-20th Century Fox,7/15/94,115000000,378882411,141,Released,\"When he said I do, he never said what he did.\",7.", + "embedding" : [ 0.020609293, -0.025164744, -0.00867182, -0.02757968, -0.008507165, 7.954028E-4, 6.719117E-4, -0.007505515, -0.018839255, -0.032821193, 0.039681807, 0.019113678, 0.025247071, -8.065513E-4, 0.0085414685, -0.001545354, 0.020540688, -0.01679479, 0.014283804, -0.015216849, 0.005649718, -0.002313743, -0.013741815, -0.008706123, 0.008520886, 0.0062706037, 0.012403996, -0.01879809, 0.006877769, -0.015326618, 0.015710812, -0.003178181, -0.029335998, -1.1105624E-4, -0.032162573, 0.0021353671, 0.022928182, -0.018743206, 0.021062095, -0.03471472, 0.01356344, 0.012966566, -0.008383674, -0.0037424667, -0.016095007, 0.008630657, 0.014503344, -0.012829354, -0.01233539, 0.022818413, 0.014695441, 0.038172472, -0.008575771, -0.018852975, -0.029006688, -0.01945671, -0.00545076, -0.015148242, 0.036004517, -0.027895268, -0.0010693987, -0.02613895, -0.028951803, -0.0020890578, -0.004528007, -0.002691077, -0.011505255, -0.019607643, -0.004503995, -0.006277465, 0.028485281, 0.022736086, 0.021981416, -0.0059172823, 0.0027442467, -0.028402954, -0.027291534, 0.0126235355, -6.234586E-4, 0.013549719, 0.013391924, -0.0123834135, -0.004740686, -0.0048401654, 0.022928182, 0.013295876, -0.017522017, 0.0021662398, -0.016643858, 0.012616674, -0.0019261183, 0.015299176, -0.007827964, 0.008507165, -0.010462441, 0.0064729922, -0.022214677, 0.011834565, -0.030763006, -0.05658637, 0.0017717544, -0.008026922, -0.010997569, -0.01922345, 0.00700126, 0.006061355, -0.0013781264, -0.012747026, 0.01624594, -0.018194357, -0.0014613115, 0.0071899267, 0.008369952, -0.046322886, -0.0054987846, -0.017206427, 0.022694921, -0.009844986, -0.011470952, -0.008431698, 0.029335998, 0.016657578, -8.31421E-4, -0.011697352, 0.039105516, 0.02144629, 0.014750327, -0.0041952673, -0.014160314, 2.136439E-4, 0.018839255, -0.0025607252, 0.030406255, 0.0040237517, -0.02213235, 0.028210858, -0.01634199, -0.0014767478, -0.010832914, -0.023696572, 0.04138324, 0.037651066, -0.02723665, -5.2740995E-4, -0.024272863, 0.010236041, 0.006757708, 0.02323005, 0.006236301, -0.0108603565, 0.022516545, -0.0040203216, 3.1430201E-4, 0.014640557, 0.02213235, 0.007827964, -0.015628485, 0.004236431, 0.0010196592, -0.016136171, -0.019374382, 0.013837865, -0.002234846, -0.0036189754, -0.0076358668, 0.025151022, 0.020966046, -0.016040122, 0.0067028226, -0.015408946, -0.023449589, 0.05417143, -0.008918802, 0.035949633, -0.004311898, 0.036059402, 0.008706123, -0.006027052, -0.002356622, -0.010030222, 0.013762398, 0.018400175, 0.020417197, 0.032546766, 0.006603344, 0.019045074, 0.021597221, -0.033864006, 0.031750936, -0.016863396, 0.010633957, 0.015148242, 8.824469E-4, -0.020156493, -0.63754344, -0.00689149, 9.22753E-4, -0.0076427273, 0.0024955494, 0.025068695, 0.0013052324, 0.003745897, -0.0171241, -0.005327269, -0.017522017, 0.010551629, 0.0056085545, -0.037211988, -0.039215285, -0.0071007386, -0.018359011, -0.012328529, 0.002656774, -0.0010548199, -0.03202536, 0.0053101177, 0.018496223, 0.0010976987, 0.021309076, -0.0017563179, -0.009941034, -0.034193315, 0.024547288, -0.0052998266, -0.022969346, 0.011326878, -0.016204778, -0.003023817, 0.037294313, -0.019511595, -0.006850326, 0.025535217, 0.017041773, 0.01212271, -0.019401824, -0.021775598, 0.020115329, 0.014475902, -0.0030495443, 0.01045558, 0.023943553, -0.0266878, 0.01690456, -0.0059618764, -7.988331E-4, 0.0090148505, 0.02058185, -0.02535684, -0.002046179, 0.0127881905, 0.023079116, -0.008356231, 0.021185586, -0.034001216, -0.01446218, 0.010867218, 0.0018832394, 0.01668502, -0.021405125, 0.033726793, -0.0085414685, 0.0016019541, 0.010400696, -0.015216849, 0.01701433, 0.028265743, -0.008795311, -0.0027408164, -0.017247591, 0.045938693, 0.03866644, 0.0029380592, 0.014969867, 0.012294225, 0.010654538, -0.008761008, -0.0057629184, 0.022379333, 0.0182218, -0.014914981, -0.042947464, 0.0018523666, 0.010201737, -0.0045760316, 0.017192706, 0.026193837, -0.01879809, 0.0062568826, 0.002101064, 9.3132874E-4, -0.010366392, 0.012534347, 0.03647104, -0.034961704, -0.02111698, -0.011326878, 0.013144942, -0.0066685197, 0.011059315, 0.01966253, -0.018962745, 0.019113678, 0.010489884, -0.0058658277, 0.0012169019, 0.013151803, -0.023298655, -0.0070321322, -7.4480573E-4, -0.026619194, 0.02034859, -0.0032313506, 0.0034217327, -0.018262962, 0.005618845, 0.0065450286, 0.0069120717, -0.014860096, 0.012506905, 0.013295876, 0.009515676, -0.011635606, 0.0039517153, -0.01490126, -0.016067564, -0.0070389933, 0.017645506, -0.02333982, 0.0029260532, 0.018262962, 0.016410597, -0.010194877, 0.016959446, 0.003214199, -0.031284414, -0.0152717335, -0.0077456366, -0.01212271, -0.0022382764, -0.014777769, -0.005955016, -0.009371603, -0.018949024, -0.006037343, -7.434122E-5, -0.018112028, 0.010434998, 0.009947895, -0.011683631, -0.015395225, -0.019923232, -0.031860705, 0.014969867, -0.0070870174, 0.019827183, 0.021281634, -0.012417717, -0.017878767, 0.027497353, -0.009796961, 0.0020187367, 0.0025847375, -0.009961616, -0.029665308, 0.020362312, -0.021638386, -0.010050804, 0.021048373, -0.011772819, 0.0021816762, 0.004469692, -0.008589492, 0.007869128, -0.010606514, 0.013439949, 0.0024646767, -0.012403996, 0.0011928898, 0.04113626, 0.006092228, 0.032162573, 0.006767999, -0.012095268, 0.018674599, -0.002378919, -0.0022880158, -0.008939384, 0.0014981872, 0.0098175425, 0.011930613, 0.014695441, 0.008177855, -0.0012649263, 0.038090147, 0.031613722, 0.014983588, 0.002246852, -0.013000869, 0.011697352, -0.016314548, 0.008795311, -0.025617544, 0.006136822, -0.020815112, 0.032629095, 0.007649588, -0.004905341, 0.0013421082, 0.01845506, 0.026783848, -0.010764308, 0.004294746, -8.8073174E-4, 0.0011294291, 0.005773209, 0.004847026, 0.023833783, -0.014969867, -0.024492403, 0.012026662, 0.019552758, 0.007148763, 0.011937474, -0.01234225, -0.002425228, -0.006370083, -0.0043016067, 0.0017940514, 0.012273644, -0.011848286, 0.027168043, -0.004305037, 0.0018163484, -0.0126235355, 0.0014707447, 0.009776379, 0.042673036, -0.027716894, 0.014352411, 0.009769519, 0.016273383, 0.019209728, -0.019429268, 0.025603823, -0.014613114, 0.0048058624, -0.012630396, -2.0024426E-4, 0.002480113, -0.013940774, 0.004157534, 0.006013331, 0.043853063, 0.014860096, 0.018166915, -0.03183326, 0.018166915, 0.018976467, 0.03213513, -1.9467E-4, -0.0055914028, 0.007862267, 0.030406255, -0.0027579681, -0.013481112, -0.014091708, 0.004281025, -0.011313157, -0.023161443, -0.005107729, -1.1780966E-4, 0.016040122, 0.013611464, 0.025946854, 0.004510856, -0.054555625, 0.008959966, 0.008369952, 0.0040511945, -0.026372211, 0.004534868, -0.0013446809, -0.011820843, 0.007539818, 7.229375E-4, 0.025823362, -0.021048373, 0.008390535, -0.01812575, -6.418965E-4, 0.01878437, -0.029500654, 0.01768667, -0.01245202, 0.010743726, 0.017878767, -0.007045854, 0.0051111598, 0.031284414, -0.010277204, 0.009131481, -0.009083457, 0.008033782, 0.0021319368, 0.0039620064, -2.0496093E-4, -0.03013183, 0.023600522, -0.0271406, -0.01934694, -0.01735736, -0.011073036, -0.0016671299, -0.014297526, -0.015957795, -0.030955104, -0.024890319, -0.017700393, 0.09099922, 0.04794199, 0.015326618, 6.5090106E-4, 0.006051064, 0.01166991, -0.005354712, -0.008932523, 0.007080157, -0.0075809816, -0.0012417717, 9.3990454E-4, 0.013021451, 0.014736606, 8.3956803E-4, 0.0010042228, -4.199984E-4, -0.011203388, -0.026152672, -0.021844205, -0.0302416, -0.005094008, 0.0141465925, 0.050988104, 0.012650978, -0.035400786, 0.005828094, 0.006507295, 0.0026207557, 0.019278334, -0.030598352, 0.0065964833, -0.0041198004, 0.020540688, -0.020746507, -0.006507295, 0.013940774, -0.009941034, 0.022543987, 0.0147091625, 0.007910292, 0.0057766396, -0.0031421627, -0.011217109, 0.017082937, -0.022324448, 0.0043462007, 0.03246444, 0.012657839, -0.016616415, 0.032190014, -0.0166713, -0.02546661, -0.005618845, -3.260937E-4, -0.010043943, -9.9532546E-5, -0.02102093, -0.009975337, 0.010647678, -0.0036532786, -0.03789805, 0.0023737736, -0.031284414, -0.008198437, -0.018839255, -7.010693E-5, 0.0012700717, -0.02323005, 0.015079636, 0.019250892, -0.05535146, -0.01945671, -0.0030032352, 0.017000608, -0.011676771, 0.01012627, 0.0038385151, 0.012280504, 0.0028420107, -0.024807991, -0.02213235, -0.013165524, -0.030625794, -0.015216849, 0.005804082, -0.0014021386, -0.0086992625, -4.9953867E-4, -0.0018986758, 0.007615285, -0.0017185846, -0.004538298, -5.437039E-4, 0.021871647, -0.027840383, -0.0017683241, 0.018921582, 0.019882068, -0.01989579, -0.0014124295, -0.008802172, -0.013467391, 0.0042535826, -0.010716284, -0.0065621804, 0.00867182, -0.012877379, -0.016149893, -0.02368285, -0.0010942684, -0.028485281, 0.0054233177, -0.008246462, 0.0039620064, -0.0021833915, 0.026728963, 0.011244551, -9.261833E-4, 0.0063117677, -0.0042295703, -0.008712984, 0.0013172384, 0.029555539, -8.4943016E-4, 0.018962745, 0.008925662, -0.037513852, -0.014023101, 0.013625185, -0.0064421194, 0.0057457667, -0.008733566, -0.0062122885, -0.018400175, -0.020129051, 0.0076976125, 0.0044422494, -0.017590621, 0.0068228836, -0.021624666, 0.00867182, 0.0026722103, 0.006524447, -0.010105689, -0.026317326, 0.008884499, 0.010071386, 0.030214157, 0.023490753, -0.010181156, -0.009220669, -0.023984717, -0.012568651, 0.0062225796, -0.03482449, -0.014969867, 0.0065450286, 0.023367262, 2.4934055E-4, 0.038199916, 0.01234225, 0.020705342, 0.010037082, 0.0122256195, 0.027620845, -0.008520886, -0.0015873753, -0.04560938, -0.020321148, 0.029198786, 0.017247591, 0.012994009, 0.005303257, -0.0049156323, 0.0271406, 0.0055502392, 0.028842034, -0.009968476, -0.016932003, -0.006105949, 0.0093372995, -0.006370083, 0.0036567089, -0.027538517, -0.032930963, 0.03046114, -0.008102389, -0.0025864525, -0.015861746, 0.028896919, -0.01679479, -0.008740426, -0.019072516, 0.016040122, -0.01779644, 0.004044334, -0.007237951, 0.0032622234, -0.0042432914, -0.0053512813, -2.2682916E-4, -0.0033445507, 0.0062122885, 0.0080543645, 0.016095007, 0.005495354, 0.006037343, 0.0018077726, -0.0011825989, -0.0024972646, -0.004802432, -0.0020650458, -0.029884847, -0.010983848, -0.010922102, -0.015299176, -5.8786914E-4, -0.014434738, -0.043331657, 0.03570265, 0.008294486, 0.041630223, 0.0049533653, 0.043194443, 0.02612523, 0.013734955, -0.033123057, 0.033068173, -0.007183066, -0.0011157078, 0.021309076, -0.0030666958, 0.00500139, -0.003691012, -0.0042398614, -0.01245888, -0.032272343, -0.052552328, 0.030598352, -0.0064078164, 0.018921582, -0.030104388, -0.02136396, -0.008925662, 0.0047098137, -0.0047303955, 0.0094196275, 0.0061436826, -0.027442468, -0.0039860187, -0.0126235355, 0.012884239, 0.014805212, -0.0016302541, -0.0070389933, 0.004431959, -0.029610423, -0.0053512813, -0.01789249, -0.007903431, 0.01779644, 0.0041643945, 0.0033599872, 0.011258272, 0.018811813, 0.0045623104, 0.0021731004, -0.016767347, 0.03035137, -0.043413986, 0.010510465, -0.01389961, 0.010579071, 6.234586E-4, 0.0034165874, -0.024629615, -0.01234225, -0.010359531, 0.00622601, 0.028265743, -0.0060887975, -0.02878715, -0.01490126, -0.024108209, -0.0091795055, -0.0094196275, -0.0027322408, -0.006109379, -0.038199916, 0.031970475, -0.008719844, -0.0020530396, 0.004613765, 0.015861746, -0.005773209, -0.0028179984, 0.024272863, -0.023504473, -0.006647938, -0.014283804, -0.014434738, -0.042673036, -0.00544733, 0.010304647, -0.008074947, 0.013975077, -0.0054404694, 0.0050322628, -0.007526097, -0.019621365, -0.0074231876, 0.0081366915, -0.019154843, 0.034495182, 0.025548939, -0.0026550589, -0.015834304, -0.0049533653, 0.047749896, 0.019991837, 0.017988538, 0.008040643, 0.008143553, 0.00723109, -0.012108989, 0.010668259, -0.011518976, -0.018043423, -0.0059001306, -0.010613374, 0.03210769, 0.006109379, -6.440404E-4, -0.030653236, -0.01289796, -0.012609814, 0.024835434, -0.012699002, -0.010270344, -3.9448548E-4, 0.020869996, 0.013083196, 0.021514894, -0.012184456, -0.033891447, -0.008774729, -0.0111828055, -0.042645596, -0.017028052, 2.324034E-4, 0.028073644, 0.0010994138, -0.025274513, -0.027840383, -0.006263743, -0.033040732, -0.02545289, -0.0014218629, 0.021062095, 0.04077951, 0.013295876, 0.00633921, 0.03122953, -0.0065175863, 0.026084065, -0.01078489, 0.0151208, 0.007148763, 0.007327139, 0.028457839, 0.016026402, -0.020389754, -0.0011654473, 0.0064249677, 0.014613114, -0.003313678, 0.034303084, -0.012959706, 8.0483616E-4, -0.010647678, 0.001634542, 0.0028162834, 4.2986052E-5, 0.007903431, -0.029034132, 7.010693E-4, 0.014489623, 0.03411099, 0.002123361, -0.0046412074, -6.440404E-4, 0.003522927, 0.0134262275, 3.3316872E-4, -0.013405645, 0.01389961, -0.027085716, 0.033644468, 0.014969867, 0.006105949, 0.028869476, 0.004469692, -0.020087887, -0.0011380048, -0.0053169783, -0.011059315, 0.009481372, 0.010880939, -0.0058658277, 0.008239601, -0.01745341, 0.028595053, -0.032546766, 0.0071762055, 0.012108989, -0.001439872, -0.029665308, 0.043413986, 0.0035092055, -0.049533654, -0.011189667, -0.001701433, 0.0107025625, 0.005694312, -0.0019158273, -0.032519326, -0.0128636565, 0.0064386893, 0.005358142, -0.031531397, -0.028704822, -0.009433349, 0.005680591, -0.03202536, -0.007382024, 0.1938536, -0.01734364, 0.042865135, 0.06328233, -0.0037733393, 0.021528617, 0.023545638, -0.0018746636, -0.021309076, 0.0027991317, 7.105027E-4, 0.023284934, 0.008088668, 0.0032605082, 0.022818413, -0.012108989, -0.022941904, -0.019991837, 0.0019192576, -0.01923717, -0.010695702, 0.005567391, -0.010620235, -0.016149893, -1.3185249E-4, -0.01624594, -0.018921582, 0.0048058624, 0.009145202, 0.0049019107, -0.02301051, -0.02748363, 0.018702041, 0.012822493, -0.00311472, 0.0076427273, -0.017275034, 0.010771168, 0.009392185, -0.0071967873, 0.015559879, -0.022955624, 0.0065518892, 0.008815893, -0.00444911, 0.0049533653, -0.022283284, 1.4857524E-4, -0.019744856, 0.02333982, -0.033617023, 1.8802378E-4, 4.8967655E-4, 0.029500654, 0.007601564, -0.013769259, 0.008109249, -0.02790899, 0.0029500653, -0.0055159363, 0.00889136, 0.02801876, -0.020705342, -0.015628485, -0.008706123, 0.017933654, -0.027442468, 0.025864527, 0.006246592, -0.036855236, -0.003402866, -0.026509425, -0.01645176, 0.006071646, -0.007930873, -0.024958925, -0.010606514, 0.020129051, 0.024602173, 0.007629006, -0.0066856714, -0.011347461, 0.0040306123, -0.005382154, -0.0119031705, -0.0041506733, 0.0073202783, 0.0070527145, 0.006246592, -0.023394704, -0.009440209, -0.027428746, -0.011333739, 0.009776379, -0.0068228836, 0.010407556, -0.00322449, 0.01356344, -0.015422667, -0.015312897, -0.022214677, 0.0044559706, 0.048847593, -0.018057143, -0.0020547549, -0.02867738, 0.0025058403, 0.026975947, 0.030406255, -0.028979246, -0.00300152, -0.026001738, 0.013412506, -0.004459401, 0.010284065, 0.017590621, 0.0075123757, 0.0061333915, 0.04448424, -0.015614765, 0.003270799, -0.018537387, 0.023147723, -3.7561878E-4, 0.001261496, -0.039078075, -0.036553368, 0.014242641, -8.730135E-4, -0.028183416, 0.0038179334, -0.019017631, -0.007629006, 0.010846635, 0.0029637865, -0.013391924, 0.0050871475, 0.0034062963, 0.02180304, -0.0052072085, 0.0022211247, -0.015381503, -0.0010539623, -9.879288E-4, 0.015806861, -0.015312897, 0.0041095098, 0.012150153, 0.0012923687, -0.007292836, -0.0018249241, -0.027977597, 0.010544769, 0.017000608, 0.012520626, -0.008390535, -0.021857927, -0.033287715, -0.01267156, 0.027648287, -0.051454626, 0.023655407, 0.018935302, -0.03647104, -0.035977077, -0.0143112475, -0.17683926, 0.009906731, 0.01468172, -0.025164744, 0.025768477, 0.019154843, 0.020801391, 0.0026722103, 0.0035366481, -0.0067336955, 0.025041252, 0.010016501, -0.054610513, -0.0120609645, -0.010332089, -0.002490404, -0.0042295703, 0.017371083, 0.00967347, -0.009920452, 0.01367321, -0.025041252, -0.0058521065, 0.0077319155, -0.004939644, 0.025178464, 0.009796961, 0.009687191, 0.012726445, -0.024272863, -0.031558838, -0.008987408, 0.0024715373, -0.003982588, 0.010723145, 0.006816023, -0.0060339128, -0.012040383, -0.023847505, -0.0032622234, 0.019703692, 0.013522276, 0.02056813, 0.012987148, 0.0041986974, 0.017261313, 0.01711038, -0.0033291145, -1.6508359E-4, -0.032436997, 0.007924013, -0.033671908, -7.8982854E-4, -0.0083768135, 0.0070732962, -7.833967E-4, 0.0029432047, 0.0033102478, 0.013357622, -0.014160314, -0.03647104, -0.003469757, 0.020444639, -0.008575771, -0.012685281, -0.043194443, 0.0022417067, 0.021199306, -0.025946854, 0.00411294, -0.012259923, 7.3322846E-4, 0.009248111, 0.013632046, 0.013556579, -0.012369692, -0.022502825, 0.011429788, 0.0013369628, 0.0012186171, -0.026921062, 0.021322798, -0.022447938, -0.0064695617, 0.003370278, -0.015024751, -0.0054233177, -0.010016501, 0.0028368651, -0.012630396, -0.0038625274, -0.022173515, -0.034467738, -0.019703692, 0.0062397313, 0.02457473, 0.010647678, 0.033699352, 0.0010839775, 0.024862876, -0.009536258, -0.0012855082, -0.026591752, 0.03869388, 0.02535684, 0.029281113, 9.28756E-4, 0.026715243, -1.3356764E-4, 0.008719844, -0.022530267, -0.0059755975, 0.013501694, 0.012712724, -0.019607643, 0.021254191, -9.476227E-4, -0.01690456, 0.022269564, 0.019168563, 0.043441426, -0.011525837, -0.0039620064, -6.2388735E-4, -0.0017528876, -0.019689972, -0.080571085, -0.0059207124, 0.006627356, 0.029006688, -0.024217978, 0.04925923, -0.0040683458, 0.038337126, -0.0036292665, 0.02734642, -0.0019535606, -0.029308556, 0.018605994, 0.0029740776, 0.014873818, 0.0045417286, -0.0073339995, 0.0016645573, -0.0073888847, 0.031421624, 0.0091109, -0.014914981, -0.010743726, -0.01599896, -0.031394184, 0.016396875, -0.028869476, 0.016026402, 0.00944707, 0.0027030832, 0.03781572, -0.020540688, -3.6489908E-4, -0.013933913, -0.009632306, -0.011148503, -0.019758577, -0.02379262, 0.020938603, -0.055461228, -0.006215719, 0.016492924, 5.6439294E-5, -0.027456189, -0.0027030832, -0.026070345, -0.016849676, 0.02723665, -0.004850456, -0.021322798, -0.027030831, -0.014324969, -0.020307427, 9.270409E-4, 0.013028312, 0.0039482852, 0.012747026, 0.010249762, -0.01878437, 0.017837605, -0.0025881678, -8.438559E-4, -0.024931483, 0.014503344, -0.012486323, 0.015655927, -0.013419366, -0.017755277, 0.021844205, -0.031476513, -0.023765177, 0.020883719, -0.016698742, -0.011066175, -0.040203217, 9.905016E-4, -0.011045594, 0.004462831, 0.030323926, -0.028101087, -2.7656863E-5, -0.016218498, -0.008623796, -0.009138342, 0.003257078, 0.025548939, 0.010764308, -0.020321148, 0.014517066, -0.027895268, -0.004034043, 0.016053844, 0.0134262275, -0.014393575, -0.012211898, 0.033891447, 3.4774753E-4, 0.0025178464, -0.004401086, 0.012246202, -0.022420496, -0.011169084, -0.06855129, 0.029061574, -0.0071624843, -0.021857927, -0.010236041, -0.01756318, 0.0058898395, -0.0031558839, 0.016561529, 0.023134, -0.009598003, 0.016712463, -0.0038659577, -0.0071213203, -0.027442468, -0.018496223, 9.77638E-4, -0.0032416414, 0.004905341, 0.0024629615, -0.0060750763, 0.001273502, 0.019621365, 0.012877379, 0.0044868435, 0.020170214, 0.0057766396, 0.013632046, -0.003715024, -0.016657578, 0.0063803736, -0.021981416, -0.0018386453, 0.004524577, -5.2740995E-4, -0.026317326, -0.014667999, 0.0034371691, 9.030287E-4, -0.0037356059, 0.0024338039, -0.024382632, 0.018935302, -0.027703172, -0.010318368, 0.025768477, -0.0037356059, 8.4943016E-4, 0.023641687, 0.02000556, 0.035071474, 0.008020061, -0.01778272, -0.016506644, 0.0057972213, -0.040971603, 0.04882015, 0.021706993, 0.0060990886, 0.032162573, 0.022681199, 0.005958446, 0.015738256, -0.01768667, -0.0058898395, 0.015820583, -0.012747026, 0.0029294835, 0.0032810902, -0.0090971785, -0.004078637, -0.0018901, 0.02390239, 0.010723145, 0.0117453765, 0.014695441, -0.017055495, 0.003646418, -0.006973817, 0.019539038, 0.002101064, -0.0067920107, -0.038858537, 0.012040383, 0.0047955713, 0.0028540166, -0.007141902, 0.02723665, -0.016877118, 0.015738256, -0.024807991, 0.012747026, 0.0052655237, 0.002125076, 0.010585932, 0.03125697, -3.6275512E-4, -0.009083457, 0.00889136, 0.02646826, 0.008740426, -0.017961096, -0.016726185, -0.01545011, -0.022543987, 2.4226554E-4, 0.0010050804, -0.03778828, 0.023984717, 0.024094487, 0.03079045, 0.005495354, 0.028979246, 0.010956406, -0.01845506, 0.023202607, -0.012280504, -0.022447938, -0.019182285, 0.054198876, 0.02069162, 0.02346331, 0.024382632, -0.024945203, 0.03880365, 0.015971517, 0.030982547, -0.0155736, 0.009035433, -0.014544508, -0.009646027, -0.0045623104, -0.027003389, 0.008733566, -0.007930873, 0.0028042772, 0.010373253, 0.01856483, -0.005512506, 0.06904525, -0.006586192, -0.0065107257, 0.013734955, -0.038062703, 0.007183066, 0.019031351, 0.030982547, -0.00822588, -0.021556059, 0.0015787994, 0.007203648, 0.01411915, -0.013501694, -0.026550587, -0.004826444, 0.029582981, 0.011196527, -0.027538517, -0.013474252, 0.024396354, 0.0023171734, 0.017659228, 0.0046652197, -0.017906211, -7.748209E-4, 0.034083545, -0.004634347, -0.0047166743, -0.026742686, -0.010434998, -0.013062615, -2.5148448E-4, 0.008109249, 0.021391405, 0.0064867134, -0.0010676836, -0.015161963, 0.03013183, -0.009364742, -0.0038110728, 0.01701433, -0.019484153, 0.0014047113, -0.0022760096, 0.006816023, -0.0018540818, -0.02001928, -0.050658796 ], + "id" : "194b8048-2c84-418e-bfbd-df91f7cfde1c", + "metadata" : { + "source" : "movies.csv" + } + }, + "80f6c985-75f1-4228-b745-4e68fcd06434" : { + "text" : "Shocked by this strange new environment that doesn't operate on a \"\"happily ever after\"\" basis Giselle is now adrift in a chaotic world badly in need of enchantment. But when Giselle begins to fall in love with a charmingly flawed divorce lawyer who has come to her aid - even though she is already promised to a perfect fairy tale prince back home - she has to wonder: Can a storybook view of romance survive in the real world?\",47.652,Walt Disney Pictures-Josephson Entertainment-Andalasia Productions-Right Coast,11/20/07,85000000,340487652,107,Released,This fairytale princess is about to meet a real Prince Charming.,6.8,5130,Amy Adams-Patrick Dempsey-James Marsden-Timothy Spall-Idina Menzel-Rachel Covey-Susan Sarandon-Julie Andrews-Jeff Bennett-Kevin Lima-Emma Rose Lima-Teala Dunn-Fred Tatasciore-Courtney Williams-William Huntley-Samantha Ivers-Elizabeth Mathis-Edmund Lyndeck-Tonya Pinkins-Isiah Whitlock Jr.-Tibor Feldman-Jodi Benson-Matt Servitto-Christopher Maggi-Muriel Kuhn-Marilyn Sue Perry-John Rothman-Marlon Saunders-Paul Klementowicz-Michaela Conlin-Cathleen Trigg-Paige O'Hara-Danny Mastrogiorgio-Canedy Knowles-Lillian Lifflander-Matte Osian-Judy Kuhn-Joseph Siravo-Margaret Travolta-Tony Machine-Jon McLaughlin-Helen Stenborg-Anita Keal-Kater Gordon-Raymond W. Abbiw-Veronica Archul-Jonathan Arons-Simone Assboeck-Dimitre Atanasov-Judy Ayres-Kathleen Banovich-Barbara G. Barclay-Nicole Barth-Margery Beddow-Carol Bentley-Tom Berklund-Heather Berman-Tetyana Bilych-Timothy Bish-Corey Bradley-Lee Van Bradley-Adrian Brian-Lou Brock-Vitalii Buza-Michelle Aguilar Camaya-Oscar Campisi-Christa Capone-Iresol Cardona-Marcus Choi-Olivia Cipolla-Angel G. Clemente-Jason Colacino-Keltie Knight-Rachel B. Coppola-Kristine Covillo-Leonard J. Coyne-Evan Crook-James Cunneen-Paul Daggett-Jennifer Thomas Damalas-Bill Davies-Richard Diaz-James Du Chateau-Joey Dudding-Hilary Elliot-Harvey Evans-Charles Fetta-Michael Fielder-Paul Frolov-Linda Gammon-Gabriela Garcia-Ingrid Gartner-Charles Goddertz-Aaron Hamilton-Jules Helm-Barbara Hendel Coyne-Khetanya Henderson-Cynthia Henn-Seymour Hewitt-Bonnie Herbert Diaz-Betina Hershey-Eric Hoffman-Linda Rose Iennaco-Ruth Taveras-Marc Inniss-Joan Jaffe-Sydney James-Anna Kaiser-Violetta Klimczewska-Joseph Knebel-Joey Lauren Koch-Vicky Lambert-Jacey Lambros-Susan Lehman-Sarah Lewis-Kenneth Ley-George Marcy-Michelle Marmolejo-Natalie Mavor-Angelina McCoy-Richard McMurrich-Gilberto Melesio-Marina Micalizzi-Bert Michaels-Thomasz Mielnicki-Mayumi Miguel-Nell Mooney-Shannon Moore-Eric Neumann-Michelle Officer-Lance Olds-Adesola A.", + "embedding" : [ -9.863605E-4, -0.03852452, -0.003022182, -0.016406132, -0.008090149, 0.02440329, 0.0069742664, -0.012865861, -0.01790726, -0.041075107, 0.017867407, 0.027166428, 0.008269487, -0.018412063, 0.0153035335, 0.008342551, 0.031271283, -0.01904971, 0.011052552, -0.022849025, 0.00510782, -1.0793508E-4, -0.018026818, 9.049941E-4, -0.0025290018, -0.008674659, 0.0459106, -0.013709415, -0.0024542776, 0.005190847, 0.0036930402, -0.012812723, -0.015888043, -0.02713986, -0.020391427, -0.021480741, 0.01975378, -0.02286231, 0.016007602, 0.0035701601, -8.157401E-4, 0.018133093, -0.017083632, 0.0050115087, -0.01221493, 0.023566378, 6.4636505E-4, -0.012321204, -0.008827428, 0.037807167, 0.0020175555, 0.027737655, -0.02043128, -0.022118388, -0.0204977, -0.010175787, -0.005124425, -0.0036664715, 0.008329267, 0.013423802, 0.021520594, -0.010507895, -0.017867407, -0.032971676, -0.014426768, -0.009405296, -0.02031172, -0.020723535, 0.002467562, -0.008853997, 0.026316231, 0.0012146847, 0.0044203564, 0.00821635, 0.01526368, -0.028295595, -0.034858048, -0.0053137266, 0.0042011654, 0.012573606, 0.015104269, -0.014426768, -0.01781427, 0.016180297, -0.006994193, 0.037886873, -0.018239368, 0.023167849, -0.031962067, 5.082808E-5, 0.017482162, 0.031165008, -0.010800149, 0.010541106, 0.01858476, -0.0037494984, -0.009697552, 0.014320494, -0.0042044865, -0.025718438, 0.005390112, 0.0043406505, -4.2551328E-4, -0.009338874, 0.0025024333, 0.0069875508, 0.0184652, -0.0044568884, 0.013383949, 0.010321914, -0.0016298196, -0.010255492, 0.035495695, -0.02781736, -0.013596498, -0.03443295, -0.007306374, 0.010693875, -0.001886373, 8.966914E-4, 0.0091728205, 0.03873707, 0.008442183, -0.028720694, 0.036478736, 0.019222407, -0.009113042, -0.0157552, -0.017668141, -0.01209537, 0.032971676, -0.014307209, 0.009637772, 0.0056657614, -0.025240202, 0.03499089, -0.033582754, 0.0055229547, -0.0022201415, -0.025359761, 0.016299857, 0.018903583, -0.011849611, -0.019647505, -0.025213633, -0.019554514, 0.002636937, 0.0014670867, 0.02061726, 0.016950788, 0.029012948, 5.102008E-4, -0.0063532246, 0.015901327, 0.02895981, 0.011663631, -0.015688779, -0.007817821, -0.012274709, -0.021082211, 0.0083226245, 0.0057188985, -0.011723409, -0.009219316, 4.446095E-4, 0.021454172, -9.0250326E-4, -0.014413484, -0.022025397, -0.01944824, -0.01809324, 0.024655692, -0.027923634, 0.012221572, 0.0013259408, 0.023805495, -0.014506474, -0.010076154, -0.029066086, 0.002935834, -0.004241018, 0.002507415, 0.023220986, 0.029331772, -0.029703733, 0.007937379, 0.01024885, -0.0038292045, -0.0042875134, -0.016937504, -0.010268777, 0.019341966, 0.0075322078, 0.0050015454, -0.64827466, -0.01935525, -0.00224671, -0.008681301, 0.008269487, 0.015795052, -0.006821497, -0.0077779675, -0.020696966, 0.0035834445, -0.03716952, 0.014971425, 0.0153699545, -0.013596498, -0.02323427, -0.009624488, 0.012188361, -0.041101675, 0.022809172, 9.847E-4, -0.028375302, 0.020364858, 0.008176497, 0.0069742664, 0.0047956384, 0.014798729, 0.0029640633, -0.022849025, -0.009166178, 0.01942167, 0.0048321704, 0.032520007, 0.0046262634, 0.008694585, 0.047159325, -0.0062569133, -0.0014205916, 0.03560197, 0.032945108, 0.020856377, -0.030793047, -0.006907845, 0.006652122, 0.016313141, -0.0055163126, 0.01535667, 0.025598878, 0.009199389, -0.009285738, 0.025917703, 0.0021487384, -0.0030338059, -0.0040915697, -0.010288703, -0.0039221947, -0.012626743, 0.017269611, -7.0863526E-4, 0.023592947, 0.017495446, -0.00846211, 0.0041447068, 0.0171102, 0.006618911, -0.008541816, 0.015117553, -0.010009733, -0.005579413, 0.0071004676, -0.006329977, 0.010687233, -8.684622E-4, -0.01187618, 0.004563163, 0.006200455, 0.013775837, 0.0071403203, 0.026754614, 0.0046362267, -0.008548458, 6.0817263E-5, -0.008329267, 0.019461524, 0.008840713, 0.025970839, -0.0034173906, -0.037302364, 0.014360347, 0.008761007, -0.0077779675, -0.0048819864, 0.044396188, 0.008761007, -0.0024011403, 0.0054698177, -0.0036631504, -3.1010577E-4, 0.0031898967, 0.0150777, -0.060204525, -0.010328556, -0.02031172, 0.016658533, 0.005410038, 0.020564122, 0.009219316, -0.026688192, 0.002640258, 0.026781183, -9.000125E-4, -0.0026867532, -0.0070141195, -0.018558191, -0.014572896, -0.0046030157, -0.017150054, 0.018651182, 0.017229758, 0.0019893264, -5.126916E-4, -0.005572771, 0.007459144, 0.0147588765, -0.009624488, 0.0019860053, 0.031722948, 0.006213739, 0.0018979968, -0.010122649, 0.022171525, 0.018797308, -0.005021472, 0.009783899, -0.02482839, 0.0039421213, -0.01002966, 0.021494025, 0.0084289, 0.022317652, -0.01877074, -0.020524269, -0.013656278, -0.010268777, -0.007332943, -0.012287993, -0.0057122563, -0.017867407, 0.013437087, -0.013629709, 0.0044602095, -0.042934913, 0.003184915, -0.011464366, 0.037089814, -0.0025655336, 0.0074724285, -0.0026469002, -0.010607527, 0.004413714, -0.005991227, 0.03344991, 0.016990641, -0.008242919, -0.0036365818, 0.020816525, -0.004775712, -0.023739075, -0.014997994, 1.0617075E-4, -0.014293925, 0.0045531997, -0.025173781, -0.008880566, 0.040038932, -0.009033335, 0.0454855, -0.010673949, 0.009637772, -0.014360347, -0.011922674, 0.005622587, -0.016233435, -0.03987952, 0.011397944, 0.03849795, 0.008827428, -0.006741791, 0.0027498535, -0.011132258, -0.0047657485, -0.010375052, 0.013563287, 9.431865E-4, -0.0057620723, -0.025452752, 0.0071868156, 0.008521889, -0.009823753, -0.010687233, 0.01963422, 0.044183638, 0.011563998, 6.745942E-4, -0.005566129, 0.012812723, -0.0445556, 0.006120749, -0.021733142, 0.015728632, -0.010600885, 0.015954465, -0.004958371, -0.0046295845, -0.011072478, 0.015037847, 0.018106524, 0.0022018754, 0.011085763, -2.1981393E-4, 0.0040317904, 0.0068148547, 7.513942E-4, 0.013490224, -0.0011989096, -0.006080896, -0.0061439965, 0.019222407, -0.014732308, 3.7076737E-5, -0.0031101906, -0.019195838, -0.002409443, -0.004330687, 0.004317403, -0.03289197, -0.007279806, 0.0168578, -0.022702897, 0.04301462, -0.020882946, 3.0159552E-4, 0.018133093, 0.013596498, -0.0043406505, -0.0025688547, -0.0049118763, 0.009325591, 0.012327846, -0.018797308, 0.05098521, -6.438742E-4, 0.0157552, 0.010873213, 0.01975378, 0.00347717, -0.012992062, -0.0018548227, 0.010913067, 0.022012113, 0.022304367, 7.358266E-5, -0.014426768, 0.00895363, 0.009684267, 0.018319072, -0.017003926, -0.007080541, 0.005410038, -0.0027016979, -0.0229553, -0.014652601, -0.011823042, -0.007764683, 0.011318238, -0.004270908, -0.010321914, -0.010036302, -0.008143286, 0.03052736, 0.017947113, -0.0041712755, -0.040145207, 0.03368903, 0.01652569, -0.016113877, -0.009113042, 0.0012578588, 0.009504929, -0.009930027, -0.0026884137, -0.007000835, 0.020975936, -0.006329977, 0.01089314, 0.0019926475, -0.01966079, 0.00704733, -0.020630544, 0.021401035, 0.0070074773, -0.001163208, 0.011211963, -0.017654857, -0.0030288242, 0.019979613, -0.02618339, -0.0041679544, -0.006021117, -0.014187651, -0.039773244, 0.0048587387, 0.0016962412, -0.03403442, 0.009976522, -0.023978192, -0.019607652, -0.012394268, 0.018226083, 0.0071469625, -0.023871917, 0.0031998598, -0.014984709, -0.017362602, 0.004191202, 0.09219316, 0.03265285, -0.0022051965, 0.02234422, -0.036452167, 0.013184684, -0.0031168328, -0.026010692, -0.012221572, 0.018425347, 0.02575829, -0.02480182, 0.031430695, 0.014692455, 0.01790726, -0.003483812, 0.0096510565, -0.020577407, -0.0050513614, -0.00507793, -0.0018099882, -0.0047989595, 0.027684517, 0.037382066, -0.009850321, -0.018292505, -0.0029574211, 0.013277675, -0.02683432, 0.016658533, -0.013443729, -0.0014288943, -0.0011690198, 0.016047455, -0.0038325253, -0.010760297, 0.024562702, -0.0015949483, 0.033131085, 0.009438507, 0.0038192412, 0.0024692225, 0.016419416, -0.013895395, -0.0013184685, -0.01935525, -0.023074858, 0.034884617, 0.019527946, -0.029995987, 0.037036676, 0.0012055518, -0.009431865, 0.0064727836, 0.012380984, 0.013065126, 0.0011225247, 0.0046860427, -0.0070207617, 0.012420836, 0.012128581, -0.018212799, -0.0075255656, -0.010886498, 0.0019677395, -0.025253486, -0.01187618, -0.018505054, -0.012062159, 0.008183139, -0.003228089, -0.0191427, -0.013656278, -0.015688779, 0.020962652, -0.0150777, 0.02326084, 0.004649511, -0.002607047, 0.008741081, -0.014865151, -0.026116967, 0.002575497, -0.013656278, -0.01400167, 0.012759587, -0.011803116, 0.037780598, -0.03034138, 0.017176623, 0.01400167, 0.017986964, -0.017893976, -0.014240787, 0.037647754, 0.015502798, 0.0047923173, 0.0062203812, 0.014227504, -0.0030786404, 0.013775837, -0.0068879183, -0.01944824, -0.030128831, -0.0012628403, -0.0118961055, -0.011411228, -0.01190939, -8.933703E-4, -0.040145207, -0.029039517, -0.016950788, -0.0031948783, 0.0059082, 7.372796E-4, 0.009152895, 4.840473E-4, 0.016167013, 0.013603141, -0.004905234, 0.015024562, -0.012600175, 0.011577282, 0.024881525, -0.0073263007, 0.025147213, 0.004187881, -0.01673824, -0.018000249, 0.014373631, 0.012952209, 0.007452502, -0.0091728205, -0.0073595117, -0.008541816, -0.020763388, -0.0031218145, -0.021281475, -0.022397358, 0.004237697, -0.013158116, 0.006705259, 0.0112518165, -0.0046860427, 0.011563998, -0.027206281, 0.0059480527, -0.015595788, 0.008236277, 0.03366246, -0.01633971, 0.009797184, -0.022676328, -0.0014720684, 0.018319072, -0.031457264, -0.0033841797, -0.0026385975, 0.025492605, 0.013045199, 0.043413147, 0.00864809, 0.00473918, 0.019023143, 0.0012412533, 0.021175202, -0.02043128, -0.0069809086, -0.030580498, 0.016499123, 0.006117428, 0.031962067, 0.019062994, 0.0015376597, 0.005781999, 0.018651182, -0.0079838745, -0.007073899, -0.0037627828, -0.011039267, -0.036452167, 0.012806081, -0.018133093, 0.008594953, -0.0074060066, -0.0054598544, 0.014918288, 0.0010453097, 0.006960982, -0.02538633, 0.046999913, -0.02169329, 0.015741916, -0.016260004, -0.0026352764, -0.015529366, -0.016804662, -0.027285988, -0.018172946, -0.0014114587, -0.010786866, 4.0122788E-4, -0.002351324, -0.014665886, -0.0070606144, 0.036000498, -0.019116132, -0.024522848, 0.00870787, -0.0168578, -0.004868702, -0.040756285, -0.0015401505, -0.028933242, -0.011982454, -0.015237112, -0.011623777, 0.019129416, -0.02713986, -0.039374717, 0.01584819, -0.009790542, 0.02671476, 0.0043340083, 0.047371875, 0.022397358, -0.017189907, -0.010182429, 0.023114711, 6.945207E-4, 0.002788046, 0.019860053, -0.010222282, -0.028694125, -0.015037847, 0.0066355164, 0.0063200137, -0.04298805, -0.025598878, 0.004387146, 0.034459516, 0.013158116, -0.020882946, -0.008169855, -0.023114711, 0.03775403, -0.014174366, 0.014134513, 0.014240787, -0.018877015, -0.011962527, 0.007498997, 0.015436376, 0.016153729, 0.019341966, -0.019209122, 0.025094075, -0.028508143, -0.001972721, 0.0060078325, -0.016631965, 0.032546576, -0.030208537, 0.0031068695, 0.008395689, 0.0050580036, 0.006874634, 0.0021138669, 0.016685102, 0.023220986, -0.011563998, 0.012686523, 0.0091063995, 0.0064329305, -0.0038823416, 0.004324045, -0.02089623, -0.011530787, -0.02258334, -0.011271743, 0.028906673, -0.006658764, 0.0076916195, -0.015316818, -0.025864566, -0.020364858, 0.016299857, -0.023499956, -0.0065192785, -0.029145792, 0.0033244004, -0.023659369, -0.001763493, -0.0026004051, -0.013377307, 0.0045133466, -0.0025273412, 0.021135349, 0.008734439, -0.007831105, -0.0052340208, -0.022995153, -0.034140695, -0.015688779, -0.009823753, 0.0136695625, 0.0063963984, -0.0073860805, -0.0031981992, -0.0034107484, -0.006828139, -0.0042476603, -0.012168434, -0.03153697, -0.0063000876, 0.020298436, -0.00547646, 0.0013956835, 0.01255368, 0.016764808, 0.009179463, -0.006914487, 0.028242458, 0.010733728, 0.025280055, -0.017947113, -0.0049749766, -0.020165592, -0.019023143, 0.0080170855, 0.0061705653, 0.0030703377, 0.017362602, -0.005439928, -0.02898638, -0.0020540876, 0.01098613, 0.027445398, -0.0019029784, -0.012427478, 0.017840838, 0.0026253131, 0.019953044, 0.036505304, -0.013450371, -0.0012835971, -0.024655692, -0.019886622, -0.025585594, -0.02393834, 0.011371375, 0.022636477, 8.10032E-5, -0.015130837, -0.02683432, 0.016406132, -0.03698354, -0.030739909, -0.026223242, 0.012354415, 0.031404126, 0.016844515, 0.002993953, -0.009132968, -0.0045166677, 0.015197258, -0.038258832, -0.009597919, 0.019780347, -0.0034207117, 0.01849177, 0.018000249, -0.03541599, -0.023380399, 0.015197258, 0.016366279, 0.016871082, 0.0073263007, -0.012952209, -0.014453337, -0.0059447316, -0.001255368, 0.0034339959, 0.0029574211, 0.030421086, -0.036824126, -0.0046860427, 0.013563287, 0.011763263, -0.012128581, 0.0027598168, 6.5715855E-4, -0.029012948, -7.0572936E-4, -0.025452752, 7.814915E-5, -0.014254072, -0.0145197585, 0.031085301, -0.019979613, 0.0047956384, 0.0150644155, 0.01944824, -0.020046035, -0.0021088852, -1.3107885E-4, 0.0065857, -0.010826718, 0.010747013, -0.016884366, 0.024204025, -0.023088142, 0.0027116612, -0.0049716556, -0.0051177833, 0.013583214, 0.011809758, -0.004818886, 0.039826382, 0.01877074, -0.043120895, 0.010826718, -0.012314562, 0.019594368, -0.0236328, -0.0045465576, -0.014918288, -0.017322749, -0.018425347, -0.01566221, -0.04123452, -0.0047059692, -0.0064694625, -0.0063963984, -0.016379563, 0.012407552, 0.20277181, -0.008973557, 0.016167013, 0.03791344, -0.018438632, -0.016631965, 0.0168578, 0.014785444, -0.01209537, 0.003526986, -0.009000124, -0.0042476603, 0.0094119385, -0.0019893264, 0.008661374, -0.015516082, -0.030580498, -0.020417996, -0.008043654, -0.016193582, 0.0062701977, -0.012719734, -0.007884243, -0.031085301, 0.012759587, -9.6145243E-4, -0.0144002, 0.00144633, 0.016299857, 0.0068879183, 0.0070938254, -0.00870787, -0.006326656, 0.012367699, -0.0043373294, -0.0041978443, 0.011364733, 0.020298436, 0.0032197863, 0.017163338, -0.005127746, -0.0047657485, -0.009670983, -0.0098569635, 0.0016821267, 0.016645249, -0.03071334, 0.0027647985, -0.014891719, 0.01633971, -0.033104517, 2.544777E-4, 0.026475644, 0.012268066, 0.016193582, -0.0047059692, 0.008315982, 0.003120154, -0.011524145, -0.018505054, 0.004569805, 0.02520035, -0.01849177, 0.02073682, -0.012009023, 0.030686771, -0.034698635, -0.014466621, 0.0023247555, -0.01806667, -0.0026170104, 0.0027282666, -0.007113752, -0.0064628203, -0.020444565, -0.016007602, 0.024549417, 0.0051675993, 0.011510861, 0.01942167, -0.016791377, -0.013948533, -0.022636477, -0.0012786156, -0.022636477, -0.031988636, 0.029889714, -0.0034007852, -0.014054807, -0.027843928, -0.0050613247, 0.005157636, -0.0033991246, 0.0034240326, -8.9503085E-4, 0.007585345, 0.0072665215, 1.1468102E-4, -0.011510861, -0.005735504, -0.0153699545, -0.009405296, 0.01582162, 0.009006767, -0.0342204, -0.0014438392, 0.0038889837, 0.0022118387, 0.023712507, -0.009770615, -0.023380399, -0.018691033, -0.0015169029, -0.032546576, 0.0037627828, 0.017840838, 0.011298312, -0.02150731, 0.03639903, -0.027312556, -0.021414319, 0.005964658, 0.0062303445, 4.890289E-4, -0.0071071098, -0.014028239, -0.0015883062, 0.009943311, -0.0010478005, -0.022450496, -0.0021520595, -0.017269611, 0.0053004427, -0.0042111287, -0.008442183, 0.0121020125, 0.03517687, 0.015396523, 0.013104979, 0.008687943, 0.019527946, -0.00957135, 0.01692422, 0.0164327, -0.013370665, -0.020909514, 0.029783439, -0.018252652, -0.013031915, -0.033928145, -0.019793632, -0.016764808, 0.007817821, -0.008701228, 0.030819615, 0.025226917, -0.031085301, -0.046893638, 0.0026967165, 0.041712753, -0.041128244, 0.03347648, 0.039215304, 0.018319072, -0.0020806561, -0.015409808, -0.16865769, 0.01916927, -0.0021670042, -0.0243103, 0.042722363, 0.020975936, 0.018505054, -0.003952084, -0.009797184, -0.024297016, 0.018398779, 0.006047685, -0.032520007, 0.0013400555, -0.002135454, 0.029145792, -0.03212148, 0.019341966, 0.042616088, -0.004393788, 0.041367363, 0.0055528446, -0.0013068446, -0.007366154, 0.0054565333, 0.005503028, 0.018332357, 9.7473676E-4, -4.317403E-4, -0.016964072, -0.020099172, -0.018438632, -0.008694585, 0.0015924575, -0.011311596, -0.0063930773, -0.030261675, -0.012022307, 5.66244E-4, -0.005160957, 0.05696315, 0.0066853324, 0.019341966, 0.018943436, 0.028694125, 0.03520344, 0.04317403, -0.0065259207, 0.0031101906, -0.008262845, 0.0112850275, -0.03594736, 0.0064262883, -0.010202356, 0.0039720107, 0.061586093, 0.008329267, 0.011504219, 0.0031334383, -0.017349318, -0.0043140817, -0.02033829, 0.019368535, -0.010959562, -0.006828139, -0.009797184, 0.004446925, 0.010414905, -0.0315104, 0.017256327, -0.015622357, 0.019155985, 0.0075787026, 0.014307209, 0.02326084, -0.020524269, -0.025984123, -0.025798144, 0.011922674, 0.0010162502, -0.029570889, 0.025173781, -0.01713677, -0.0024659014, 0.0022450495, -0.00898684, 0.020789957, 0.0017734563, -0.010036302, 0.014028239, 0.012188361, -0.023074858, -0.014506474, -0.010461399, -0.009504929, -0.0043439716, 0.0083226245, 0.006711901, 0.013457013, -0.0020275188, -0.0036664715, -0.0061473176, -0.0031068695, 0.020922799, 0.025001084, 0.01926226, 0.0010926351, 0.0011781529, 0.026170105, 8.900492E-4, -0.003065356, 0.003052072, 0.025492605, 2.0497286E-5, -0.02975687, 0.03366246, -0.013563287, -0.020564122, 0.010786866, 0.004958371, 0.05422658, -0.0025987446, -0.008242919, -0.0041978443, -0.007618556, -0.007791252, -0.10420218, -2.7336634E-4, -0.0047491435, 0.023327261, -0.019992897, 0.032413732, -0.011710125, 0.017575152, -0.014240787, 0.020245299, -0.017668141, -0.017083632, 0.0032878683, -0.005190847, 0.034114126, 0.007924095, -0.0145197585, -0.017495446, -0.015290249, 0.024775252, -0.0023214344, -0.009152895, 7.2150445E-4, -0.03169638, -0.0139751015, 0.011065836, -0.024416575, 0.01692422, -0.0060642906, 0.016260004, 0.003296171, -0.004782354, 0.011118974, -0.030421086, -0.034911186, -0.011457724, -0.029066086, -0.0014355365, 0.010687233, -0.057281975, 0.01818623, -0.0038192412, 0.0029424762, -0.03427354, -0.007279806, -0.00307698, -0.028109614, 0.03459236, -0.003952084, -0.039162166, -0.0019577763, -0.008395689, -0.0022085176, 7.742266E-4, 0.04181903, 0.025891135, 0.014851866, 1.875372E-4, -0.002532323, -0.025399614, -0.0037594617, -0.014812013, -0.024164172, -0.0027000373, 0.0012287993, 0.0044170353, 0.006283482, -0.010135934, 0.023526525, -0.01095292, -0.022437211, 0.0136695625, -0.045272954, 0.0038458097, -0.016167013, 1.2827669E-4, -0.025426183, -0.008408973, 0.021587014, -0.02190584, 0.008900492, -0.037222657, 0.018531622, -0.0034572436, -0.003812599, 0.0027714407, 0.014147798, 0.011995738, 0.0062270234, -0.023619516, -0.016844515, 0.0036299396, -0.0010004751, 0.0018166304, 0.007711546, 0.03671785, 0.003855773, -0.014692455, 0.0052506262, 0.018438632, -0.026940595, 0.0016887687, -0.062117465, 0.016592111, -7.9622876E-4, -0.0056292294, -0.008501963, 0.0042808712, 0.014652601, -0.0035701601, -0.0029889713, -0.00501483, 0.0037162877, 0.011935959, -0.0024426538, -0.009465076, -0.010594243, 0.0045963735, -0.0034672068, 0.005987906, -0.019235691, 0.02150731, -0.031590104, 0.0012669917, 0.014121229, 0.030580498, 0.026143536, 0.0056757242, 0.021068927, 0.005911521, -0.0025040938, -0.01818623, 0.020603975, -0.008475394, -0.017256327, 0.011703483, -0.012713091, -0.030686771, -0.0073595117, 0.0049417657, 0.031988636, 0.012467331, -0.03034138, -0.010753655, 0.003606692, -0.020856377, 0.003062035, 0.03613334, -0.029066086, 0.0066122687, 0.015728632, 0.024761967, 0.03323736, 0.019992897, 0.008482036, -0.0019179232, 0.016180297, -0.017375886, 0.057228837, 0.002077335, -0.020205446, -0.0023961586, 0.026767898, -0.002200215, 0.00947836, -0.019647505, 0.012128581, 7.8543526E-4, -0.008747723, 0.013211253, -0.005874989, -0.021480741, -0.011962527, 8.7593467E-4, 0.01409466, 0.03889648, 0.020550838, 0.0222778, -0.0098569635, 0.013403876, 0.004350614, 0.019833485, 0.030633636, -0.0049716556, -0.04838148, 0.013895395, -0.009916742, -0.004350614, -0.0057620723, 0.009744046, -0.0037494984, 0.011683557, -0.018146377, 0.012327846, 5.496386E-4, 0.016685102, 0.013988386, 0.02461584, -0.013443729, -0.017920544, 0.0059082, 0.017336033, -0.006967624, 0.00144633, 0.0039919373, -0.019395104, -0.025771575, 0.0020989222, -0.037063245, -0.01895672, 0.026103683, 0.02353981, 0.030739909, 0.0035369494, -0.015582504, 0.008668017, -0.033343635, 7.493185E-4, -4.6910244E-4, -0.0040483954, -0.016512405, 0.037328932, -0.0075322078, 4.268106E-5, 0.040543735, -0.012593533, 0.031616673, 0.0056757242, 0.012048876, -0.0057454673, 0.016260004, -0.018212799, 0.012819366, 0.0047723907, -0.019076278, 0.0072333105, 0.0064927097, 0.0034937754, 0.019833485, 0.02082981, -0.0107403705, 0.040570304, 0.027684517, 0.005071288, 0.019395104, -0.018172946, 0.017375886, 0.00880086, 0.018425347, -0.024642408, -0.00661559, 0.013842259, -5.0854025E-4, 0.006240308, -0.0229553, -0.011165468, 0.026316231, -0.003339345, 0.005160957, -0.015595788, -0.0022765999, -0.0031184934, 0.002683432, 0.020657113, 0.01877074, -0.021414319, -0.020803241, 0.014267356, -9.182784E-4, 0.00864809, -0.016910935, 0.014028239, -0.024482995, -3.7901817E-4, -0.009810468, 0.023074858, 0.004895271, 0.009146253, -0.021122064, -0.006210418, 0.008601596, -2.6713932E-4, 0.006874634, -0.017668141, -0.014360347, -0.014307209, -0.001246235, -0.004304119, -0.007758041, -0.011451081 ], + "id" : "80f6c985-75f1-4228-b745-4e68fcd06434", + "metadata" : { + "source" : "movies.csv" + } + }, + "9801ddf9-eb30-49d4-89ad-604b9d9a64a9" : { + "text" : "Vance-Russell Crowe-Marwan Kenzari-Neil Maskell-Javier Botet-Andrew Brooke-Selva Rasalingam-Shanina Shaik-Dylan Smith-Hadrian Howard-Rez Kempton-Bella Ava Georgiou-David Burnett-Stephen Thompson-James Arama-Vera Chok-Sean Cameron Michael-Martin Bishop-Simon Atherton-Matthew Wilkas-Sohm Kapila-Erol Ismail-Parker Sawyers-Rhona Croker-Timothy Allsop-Grace Chilton-Hannah Ankrah-Dylan Kussman-Peter Lofsgard-Shane Zaza-Alice Hewkin-Daniel Tuite-Noof McEwan-Maryam Grace-Sonya Cullingford-Fionn Cox-Davies-Neus Gil Cortes-Emily Thompson-Smith-St��phane Deheselle-Madeleine Fairminer-Mich��le Paleta Rhyner-Michael Haydon-Jason Matthewson-Kelly Burke-Chasty Ballesteros-Emma Louise Saunders-Ayman Khechini,egypt-monster-mummy-supernatural-horror-remake-tomb-egyptian mythology,/zxkY8byBnCsXodEYpK8tmwEGXBI.jpg,/i4ZougHEyBAboDpi6jsaTUDTjUl.jpg,109953-297762-166426-126889-274857-335988-339846-293167-353491-311324-281338-564-339964-315837-305470-337339-395992-263115-1735-283995-1734\r\n278154,Ice Age: Collision Course,Adventure-Animation-Family-Comedy-Science Fiction,en,Set after the events of Continental Drift Scrat's epic pursuit of his elusive acorn catapults him outside of Earth where he accidentally sets off a series of cosmic events that transform and threaten the planet. To save themselves from peril Manny Sid Diego and the rest of the herd leave their home and embark on a quest full of thrills and spills highs and lows laughter and adventure while traveling to exotic new lands and locations.,38.524,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/23/16,105000000,408579038,95,Released,One small step. One giant mess.,6.1,4052,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Seann William Scott-Josh Peck-Simon Pegg-Keke Palmer-Jennifer Lopez-Neil deGrasse Tyson-Jesse Tyler Ferguson-Jessie J-Adam DeVine-Wanda Sykes-Melissa Rauch-Michael Strahan-Nick Offerman-Max Greenfield-Lilly Singh-Chris Wedge-Stephanie Beatriz-Robert Cardone-Byron Thames-Rif Hutton-Chris Campbell-Holly Dorff-Moosie Drier-Jason Fricchione-Jackie Gonneau-Hope Levy-Terence Mathews-Edie Mirman-Juan Pope-Ruth Zalduondo-David Zyler-Ashley Peldon-Carlos Ponce,fire-mammoth-fireworks-sequel-prehistoric-singing-critically bashed-cavemen-meteor crash,/tFzUkdhPOForVrEfvxydXfPLrZR.jpg,/AuplFVF0C2BzK1goJaHpgH1iczZ.jpg,57800-8355-950-425-140300-387893-10527-80321-172385-49444-953-127380-46195-324852-810-239508-9502-328111-270946-788106-10192", + "embedding" : [ 4.4073124E-5, -0.032792747, -0.014122125, -0.016532555, -0.013761241, 0.038920958, -0.002905794, -0.012515171, -0.021598544, -0.030368697, 0.024553705, 0.02685519, 0.01984179, -0.001949112, 0.01190916, 0.002584063, 0.020018827, -0.016355518, 0.014380872, -0.02784932, -0.007830494, 0.004436145, -0.013747623, -0.0062882267, 0.011085255, 0.009083373, 0.023995357, -0.008239041, 0.0010596701, -0.013597823, 0.017077286, 0.0029006873, 0.009634912, -0.02023672, -0.030150805, 0.002058058, 0.0055119866, -0.030205278, 0.026065331, 0.0020291193, -0.0016818539, 0.007639838, -0.0148302745, 0.00532814, -0.004878738, 1.620359E-4, 0.011950014, -0.0062984405, -0.009069755, 0.027250119, 0.036551382, 0.032819983, -0.02218413, -0.01789438, -0.005876275, 0.0012086197, -0.019474097, 0.003523722, 0.0025312921, 0.0013933171, 0.011691268, -0.005375804, -0.03219354, -0.01260369, -0.018221218, -0.0056924284, 0.0035611724, -0.029524365, -0.0013269283, -0.004643823, 0.017690107, 0.0026419405, 0.008531833, 0.007973486, 0.011800214, -0.035189558, -0.02046823, -0.012440271, -0.007401519, -4.096114E-4, 0.012978192, 0.0011311659, -0.003922056, 0.016614264, 0.023137406, 0.017308796, -0.009471493, 0.014721328, -0.029851204, 0.01632828, 0.008729298, 0.042243812, -0.006053312, 0.0024751169, 0.0058524427, 0.010724371, -0.01393147, 0.014299163, -0.026201513, -0.04965214, 0.003734805, -0.010928646, 2.9555857E-4, -0.012876055, -0.005423468, 0.011446139, -0.017785434, 0.0068601933, 0.02069974, -0.005004707, 0.020318428, 0.0011022271, 0.0012324516, -0.046928488, -0.017104521, -0.03619731, 0.03834899, -0.015143494, -0.020876776, -0.02094487, 0.03780426, 0.012433462, 0.006676347, -0.03453588, 0.032819983, 0.027876558, -0.0020478442, -0.012930528, 0.007837303, -0.010724371, 0.016001444, -0.0023031866, 0.019120023, -0.0028036572, -0.024390286, 0.032956164, -0.032547615, -0.011555085, -0.015279676, -0.007558129, 0.021721108, 0.033174057, -0.029197527, -0.021258088, -0.035843235, 0.023491481, 0.011432521, 0.0055290093, 0.016314663, 0.006366532, 0.019855408, 0.022279456, 0.005430277, 0.017227085, 0.018548056, -0.0066933697, -0.01774458, -0.01058138, -0.009600867, -0.03788597, 0.004037811, -0.011793404, -0.007993912, -8.681634E-4, 0.008443315, 0.013938279, 0.022524586, -0.025221, -0.0051102485, 0.006175876, -0.010935455, 0.035298504, -0.038893722, 0.029987385, 0.0026657723, 0.0042284667, -0.004974066, -0.006754652, -0.034209043, -0.018956603, 0.0061384263, 0.0021465765, 0.02808083, 0.046982963, -0.011997678, -0.003275189, 0.021584926, -0.021503216, 0.009410211, -0.012651354, 0.0023559572, 0.010023032, 0.0010332847, -0.013107565, -0.62535006, -0.025724875, 0.002287866, -0.010111551, 0.012835201, 0.03546192, 0.0044395495, -0.01726794, -0.023123788, -0.006506119, -0.03546192, 0.01711814, 0.0105337165, -0.0139587065, -0.008538643, -0.018575292, 0.022156892, -0.025248235, 0.024730742, -4.7110632E-4, -0.042216573, 0.019351533, 0.017676488, -0.0057877563, 0.0044157174, -0.003836942, -0.014530673, -0.019201733, 0.0016597242, -5.9154275E-4, -0.028598325, 0.01665512, 0.0039050332, 5.9239386E-4, 0.041372243, 0.006015862, -0.007258527, 0.05523562, 0.021271706, 0.026010858, -0.04257065, -0.007462801, 0.0025278877, 0.014748565, -0.0076602655, 0.01812589, 3.283275E-4, 0.014326399, 1.0692454E-4, -0.009015282, -0.010928646, 0.014380872, -0.003935674, 0.003911842, -0.0083343685, -9.694492E-4, 0.015184348, -0.029769493, 0.021666635, 0.0039050332, -0.031784996, 0.019269824, -0.0036360726, 0.004453168, -0.00513408, 0.031812232, 3.612028E-5, 0.004068452, 0.010138787, -0.045730084, 0.015102639, 0.012630926, -0.011412093, 0.0013345885, 0.0048344787, 0.015157112, 0.02124447, -0.005556246, 0.0034471194, 0.029687785, 0.0063835545, -7.711334E-4, 0.011105683, 0.014435344, 0.024022592, -0.016927484, -0.026964135, 0.0041808025, 0.009151464, 0.0042761303, 0.008988045, 0.02754972, -0.0074968464, 0.006826148, 0.008953999, -0.013795287, -0.0044906177, 0.00824585, 0.019651134, -0.06498629, 0.0038028962, -0.009042518, 0.018915748, -0.024499232, 0.017090904, -0.0033245552, -0.027835703, -0.005586887, 0.026038093, -0.0014869426, -0.009219555, 0.005127271, -0.008007531, -0.024104303, 4.7025518E-4, -0.029987385, 0.0021891335, 0.007421946, 5.8941485E-4, -0.0016852585, 0.0043135807, -7.521955E-5, -0.0025619334, -0.005896702, 0.02294675, 0.023219116, -0.013141611, -0.0073947096, 0.0026725815, 0.011194201, 0.004279535, -0.0038641784, 0.022034328, -0.01952857, 0.016355518, 0.013985942, 0.010452007, 3.153476E-4, -0.0046268003, -0.0060260757, -0.018411873, -0.0041910163, -0.02131256, -0.0076602655, -0.018820422, -0.0070610624, -0.024662651, 0.009423829, -0.017649252, -0.014871129, -0.014925602, 0.020223102, 2.135299E-4, 0.006070335, 0.011841068, 0.011527848, -0.026637297, -0.019732844, 0.012494744, -0.028298723, 0.018765949, 0.014026797, -0.0060430984, -0.024717124, 0.02154407, -0.0042999624, -0.016450847, 0.010206878, 0.005260049, -0.019882645, -0.0032173116, -0.02598362, 6.8176363E-4, 0.027182026, -0.027018609, 0.029388184, -0.012304089, 0.026514733, -0.006131617, 0.0011030782, -0.002444476, 0.016900249, -0.007687502, -0.020114155, 0.021053813, 0.019787317, 0.017404124, -0.01711814, -0.018793184, 0.01058138, -0.0042352756, 2.5108648E-5, 0.0054064454, -0.01408127, -0.0051170574, 0.009777904, 0.0015431179, -0.010234115, 0.00817095, -0.01665512, 0.033419184, 0.0030113354, 0.024104303, 0.0056277416, 0.02428134, -0.036061127, 0.0040241927, -0.017799053, 0.0108265085, -0.014530673, 0.018861275, -0.025820201, -0.020155009, -0.010097932, 0.0011056317, 0.019351533, -0.023872793, -7.3144896E-8, -0.013393548, 0.017009195, -0.008919953, -0.01571546, 0.029660549, 0.015375004, -0.033201292, 0.011085255, 0.0036837365, -0.006621874, 0.003431799, -0.0011209522, -0.004156971, 0.01330503, -0.0057673287, 0.0026334291, -0.0025023534, -0.013563776, 0.0115823215, 0.0050659887, 0.029442657, -0.013529731, 0.01642361, 0.018629765, 0.019651134, 0.0010034948, 0.0055766734, -0.011166965, -0.0015924841, 0.012630926, -0.0033688145, 0.04943425, -0.011112492, 0.021653017, -0.015347768, 0.004623396, 0.0050932253, -0.017635634, 0.009464684, 0.004575732, 0.030178042, 0.014258307, 0.013025856, -0.011636795, 0.023627663, 0.0051238667, 0.024989488, -0.013563776, -0.017336031, 0.002311698, 0.0050455616, -0.028979635, -0.021775581, -0.021775581, 0.0071495813, 0.0022963774, -0.0017482428, -0.012896483, 8.2901097E-4, 0.026909662, 0.011888732, 0.021911765, 0.015960589, -0.039302267, 0.019337915, 0.008021149, -0.023232734, -0.02598362, -0.024471994, -0.0059579844, -0.027713139, -0.0067103924, -0.0067206062, 0.026868807, -0.022987606, 0.022265838, -0.015647369, -0.012862437, 0.02848938, -0.008531833, 0.022156892, 0.007537701, -0.0034096693, 0.029932912, 0.014203834, -0.0056685964, 0.01579717, -0.019732844, -0.0012358562, -0.008089241, -0.016913867, 0.005610719, -0.0011754251, -0.013216511, -0.024649031, 0.013114374, 0.002875153, -0.016178481, -0.01673683, -0.0033330666, -5.0472637E-4, -0.0144762, -0.019800935, -0.0273863, -0.030559352, -0.017336031, 0.096580625, 0.045784555, -0.003390944, 0.010908218, -0.0035850042, -0.0024002166, -0.025874674, -0.011248674, -0.007408328, -0.028108068, 0.009328501, -0.0040650475, 0.028516615, 0.005477941, 0.025575073, -0.0025312921, -0.0025261852, 0.003704164, -0.0063086543, -0.005556246, -0.017907998, -0.010411152, 0.033364713, 0.026732624, 0.008579497, -0.011895541, 0.022388402, 0.0036360726, -0.0040582386, 0.005048966, -0.003945888, 0.012664972, 0.0054983683, 0.03197565, 0.011711695, -0.002560231, 0.030913427, 0.006856789, 0.038839247, -0.0077011203, -0.005345163, 0.013100756, 0.006349509, -0.012317707, 0.010274969, -0.012876055, -0.006683156, 0.026664533, 0.017703725, -0.039111614, 0.02545251, 0.010574571, -0.012215571, -0.010785654, 0.004582541, 0.0030726176, -0.030232515, 0.007741975, -0.0073810914, 0.0068499795, -0.0051170574, -0.018643385, 0.001610358, -0.01719985, -0.015960589, -0.012658163, -0.013339075, 0.006131617, -0.019419624, 0.010329442, 0.0014554504, -0.021530453, -0.00638015, -0.0080415765, 0.009355738, 0.024104303, 0.032166306, -0.0070610624, 0.018806802, 0.01050648, -0.012828391, -0.015061785, 0.009845994, -0.014108507, -0.016695974, -0.00778283, -0.017322414, 0.013127993, -0.0028598325, 7.136814E-4, 0.00801434, 0.0060192663, -0.018643385, -0.0031713499, 0.037831496, 0.011997678, 0.0066593243, 0.01190235, 0.013277793, 6.3580205E-4, 0.015184348, -0.020904014, -0.0121610975, -0.0035509586, -0.013665914, -0.020413756, -0.004293153, -5.2685605E-4, -0.0128011545, -0.03461759, -0.019800935, -0.025098434, -0.0024172394, -0.0068295524, 0.017376887, -0.0058218017, 0.018534439, 0.01929706, -0.018234836, 0.013025856, 0.024458377, -0.016042298, 0.013625059, 0.01579717, -0.0095463935, 0.035979416, -0.0033126392, -0.021979855, 0.0011030782, 0.040664095, 0.013516113, 0.017553924, -0.0041365433, 6.7921024E-4, -0.0150073115, -0.016627884, 0.009920895, 0.0045519, -0.011085255, 0.013863378, -0.025861057, -2.706627E-4, 0.017458595, 0.007217672, -0.004388481, -0.027672283, 0.012440271, -0.011555085, 0.012767109, 0.026827952, -0.018861275, -0.0043306034, -0.032901693, -0.018970221, -0.008300323, -0.02746801, -0.017063666, 0.0068601933, 0.031621575, 0.027590575, 0.036469672, 9.022091E-5, 0.023777464, 0.0095463935, 0.014734946, 0.011609558, -0.013584204, -0.0046710595, -0.038022153, 0.005494964, 0.020345666, 0.020686122, 4.974917E-4, 0.013407167, -0.0057230694, 0.012739873, 0.0017414337, -0.0014145958, -0.0042284667, -0.016382754, -0.023028461, 0.011119301, -0.021285325, -0.0133799305, -0.00941702, -0.008123286, 0.054037217, 0.004412313, -0.014993693, -0.008177759, 0.019487716, -0.0044838088, 0.030995136, -0.022851422, 0.015225204, -0.033582605, -0.0015448203, -0.026936898, -0.013972324, -0.0030096332, -0.018561674, 0.02069974, 0.0067989114, -0.0056685964, -0.011738932, 0.020958487, -0.021857291, -0.009920895, 0.02816254, -0.024621796, -0.012937337, -0.022524586, 8.651844E-4, -0.029606076, -0.012201952, -5.647318E-4, -0.011214629, 0.006815934, -0.010860554, -0.03666033, 0.025588691, -0.002524483, 0.043932475, 0.017254323, 0.043197088, 0.020032445, 0.011139728, -0.03546192, 0.011500612, -0.01743136, -0.00412633, 0.033963915, 0.03219354, -0.0053519723, -0.015974207, -0.004487213, -0.008538643, -0.05158593, -0.052403025, 0.026787097, 0.01929706, 0.026732624, -0.02979673, -0.012188334, -0.011214629, 0.0046404186, -0.0015584384, 0.0020835921, 0.0047731968, -0.034345224, -0.020822303, -0.0011541466, 0.0038812011, 0.002541506, 0.015116258, -0.018507201, 0.01034987, -0.0054983683, 7.6049415E-4, 0.0012026617, 1.4362998E-4, 0.0326838, -0.031294737, 0.018411873, 0.008279896, 0.0031764568, 0.0036054316, -3.440736E-4, 0.0065742102, 0.031294737, -0.025901912, 0.025193762, -0.0075649377, 0.0028615347, 0.004684678, 0.01424469, -0.018657003, -0.013985942, -0.025003107, -0.006403982, 0.03314682, -0.0019218755, -0.005508582, 0.0023900028, -0.0044497633, 0.007884966, 0.015184348, 0.008102858, 1.8895321E-4, -0.045321535, 0.011657222, 0.0069350936, 0.0060328846, -0.020549938, 0.0040344065, 0.008940381, -0.0056515737, 0.0025023534, -0.007891776, 0.005324736, -0.014013179, -0.013420785, -0.04295196, -0.021489598, -0.0050557754, -0.008858671, 0.007741975, -0.011480184, -0.0034283944, 0.017404124, 0.0017959067, -0.010370297, -0.01408127, -0.014271926, 0.013591013, 0.015429477, -0.0035203176, -4.04079E-4, -0.0046302048, 0.023668518, -0.0024666055, 0.0010996737, -0.0079802945, 0.00988004, 0.03050488, -0.015279676, 0.009451065, 6.4218557E-4, -0.03042317, 0.001719304, 0.021040196, 0.028462142, 0.03401839, -0.017608397, -0.039029904, -0.015946971, -0.012562836, 0.029851204, -0.018738711, -0.006175876, 0.038784776, 0.035162322, 0.016559793, 0.01797609, -0.017213468, -0.0452943, 0.0026725815, -0.005900107, -0.027794847, -0.016709592, 0.00746961, 0.015919734, 0.011636795, -0.008075622, -0.029469892, -0.0029687784, -0.034889955, -0.025139289, -0.014149361, 0.019977972, 0.031104082, 0.0032241207, -0.0034249898, 0.007217672, -7.1453257E-4, 2.0140114E-4, -0.0016861096, -0.0044838088, 0.019814553, 0.019855408, 0.031294737, 0.030232515, -0.016478082, -0.005151103, 0.0197737, 0.013781669, 0.004558709, 0.02094487, -0.03423628, -0.022197748, -0.004153566, 0.0054132543, 0.0040275976, -0.008899527, 0.025861057, -0.014217453, -0.01611039, 0.0028938781, 0.003578195, -0.0052021714, 0.0013005428, 0.012229188, -0.011711695, 0.0101319775, -0.0026657723, -0.015388622, 0.0013916149, -0.042897485, 0.021108286, 9.0050674E-4, -0.0023031866, 0.024104303, 0.015116258, -0.011650412, 0.010560953, -0.011990869, 0.018030563, -0.00988685, -7.0048874E-4, -0.002870046, 0.020549938, -0.020549938, 0.019106405, -0.046329286, -0.009069755, -0.012222379, 0.0021874313, 6.399513E-5, 0.044586148, 0.009927704, -0.047881767, 0.01485751, -0.028543852, -0.006230349, -0.020563558, -1.5086467E-4, -0.021830054, -0.0028513211, 0.0076602655, 0.006155449, -0.031485394, -0.027808467, 0.010145596, 0.0029023895, -0.016437227, 0.016546173, 0.1882587, -0.009205936, 0.0035747907, 0.028108068, 0.008933572, -0.0014784313, 0.028380433, 0.01773096, -0.0024155371, 0.020822303, 0.010526907, 0.013570586, -0.014653237, -3.6896946E-4, 0.015456714, -0.009239983, -0.037640844, -0.023437008, -0.010540525, -0.03448141, 0.005307713, -0.0031321975, -0.010806081, -0.021298943, 0.01042477, -0.0014358743, -0.0017482428, 0.010601807, 0.013339075, 0.0017754793, -0.018452728, -0.0200733, -0.010091123, 0.004388481, -0.021966238, -0.0061111897, 7.651754E-4, 0.014340017, 0.020291192, 0.004837883, -0.0055051777, 0.0032070978, 0.006145235, -0.0049161883, -6.179281E-4, 0.036469672, -0.0114052845, 0.0072653363, -0.024526468, 0.024022592, -0.043660108, 0.013134802, 0.014980075, 0.018956603, -0.0026232153, -0.01439449, -0.00291771, -0.0076806927, -0.001416298, 0.014993693, 0.0013550159, 0.038158335, -0.023477864, 0.014626, 0.0031849681, 0.0127603, -0.030477643, -0.010390725, 0.0071087265, -0.012127051, -0.019950736, -0.04681954, -0.010179642, 0.012242806, -2.8640882E-4, -0.018806802, -0.009948132, -0.0062269447, 0.0056447648, 0.024717124, -0.029388184, -0.003540745, -0.0028189777, -0.020972105, -0.01626019, -0.024621796, 0.020890396, -0.014489817, -0.0068363613, -0.011643603, -0.027726756, -0.020168629, -0.012576453, -0.0051068435, -0.008763344, 0.0010732883, 0.027944649, 0.013134802, -0.01602868, -0.0050523705, -0.038975433, 0.0069146664, 0.011664031, 0.0010809486, -0.03167605, -0.017921617, 0.0014316185, 0.021108286, 0.027822085, -0.01135762, -0.016818538, -0.010642663, 0.0073810914, -0.017526688, 0.0049264017, 0.020972105, 0.0030130378, -0.010077504, 0.03834899, -0.01042477, 0.0061077853, -0.021421507, 0.024880541, 0.0070678717, -0.0016520639, -0.040718567, -0.03445417, 0.013339075, 0.007217672, -0.033882204, 0.012031724, -0.007197245, 0.010322633, -0.015838025, 0.012378989, 0.0036224544, 0.022197748, -0.018942986, 0.011194201, -0.00956682, -0.01860253, 0.011371238, 0.002318507, 0.011228247, 0.008123286, -0.024376668, 0.012787537, -0.003135602, -0.01883404, -0.031076847, -0.02941542, 3.4726536E-4, 0.013311839, 0.0100162225, 0.04722809, 0.008885908, -0.01384976, -0.03393668, -0.02279695, 0.04483128, -0.033637077, 0.024499232, 0.0068295524, -0.012678591, -0.012099815, -0.0010886089, -0.17387782, 0.006986162, 0.015184348, -0.019310677, 0.006863598, 0.008674826, 0.035843235, 0.0021925382, 1.2054279E-4, -0.02140789, 0.024635414, 0.004974066, -0.032792747, 0.0045416863, 0.0078645395, 0.026405787, -0.0091038, 0.023518717, 0.011248674, -0.0019201732, 0.03633349, -0.013727196, -0.021339798, -0.004623396, -0.0014052332, -0.0098391855, 0.025697637, 5.762222E-4, 0.0039084377, -0.009893659, -0.04060962, -0.007796448, 0.0095463935, 0.01392466, -0.01322332, -0.0030232514, -0.011657222, -0.016437227, -0.0066729425, -0.001331184, 0.032901693, 0.011248674, 0.025575073, 0.013516113, 0.0129169095, 0.004085475, 0.024717124, -0.008102858, 0.025588691, -0.005648169, -0.00602948, -0.036387965, 0.013870187, -0.009376165, 0.009982177, 0.031321976, 0.013550159, -0.0021772177, 0.013999561, -0.012998619, -0.028843453, -0.0044293357, 0.007367473, -0.013121184, -0.010731181, -0.00825266, -0.014421727, 0.016178481, -0.033037875, 0.026351314, -0.015838025, 0.016055917, 0.006209922, 0.008293514, 0.010792463, -0.033419184, -0.04101817, 0.0137884775, -0.001331184, -0.012753491, -0.02053632, 0.047990713, -0.025071198, 0.024431141, 0.031948414, -0.020427374, -0.007101917, -0.009764285, -0.0024172394, 0.0013082031, -0.005539223, -0.026324077, -0.039901473, -0.008204996, -7.358111E-4, 0.0141357435, -0.012971383, 0.010690326, 0.0309679, -0.0013226725, -0.010377106, -0.02218413, -0.019174496, 0.01976008, 0.022374785, 0.014871129, 0.0051613166, 0.026119804, 0.018234836, -0.0012426653, 0.0029926104, 0.005494964, 0.025629546, 0.027631428, -0.008606734, 0.002652154, -0.016900249, -0.033201292, 0.018098654, 0.020318428, 0.057686906, -0.004242085, 0.005845634, -0.0063631274, 0.012787537, -0.0072721452, -0.09358461, -0.0065878285, 0.001706537, 0.040037654, -0.029115818, 0.03401839, 0.00247001, 0.02340977, -0.027209263, 0.032874454, 0.014803038, -0.024240484, 0.022973988, 0.0031509225, 0.0076602655, -0.0022912705, -0.020563558, -0.011650412, -0.00227595, 0.02241564, 0.0017822884, -0.016301045, -0.0051408894, -0.020658884, -0.03292893, 0.03072277, -0.028462142, 0.01158913, 0.012971383, 0.007027017, 0.008858671, -0.024458377, 0.028652798, -0.029823966, -0.023682136, -0.017472215, -0.016450847, -0.0364152, 0.0022010496, -0.04123606, 0.0063086543, 0.013407167, -0.010077504, -0.014884747, -0.017281558, -0.004752769, -0.026555587, 0.024989488, -0.010091123, -0.028217014, -0.01135762, -0.006281418, -0.020631649, -0.0133799305, 0.011473375, 0.024730742, 0.023927266, 0.009594057, -0.0033092347, -0.030014623, -0.0049706614, 0.0019950736, -0.023191879, 0.035053376, 0.0067886976, 0.013134802, -0.0048106466, -0.011800214, 0.017758198, -0.019964354, -0.01954219, 0.037014402, -0.02824425, -0.010955882, -0.012630926, 0.029170291, -0.039955944, -0.023300825, 0.022279456, -0.04199868, 0.01058138, -0.034971666, 0.013339075, -0.023151025, 0.024703505, 0.024717124, 0.02094487, 3.6513933E-4, -0.0038880103, -0.034835484, 0.005610719, 0.014517054, -0.005654978, -0.0020223102, -5.745199E-4, 0.011132919, -0.010513289, -0.0017448383, -0.0083343685, 0.006598042, -0.010220497, 0.018221218, -0.07620773, 0.026242368, -0.023137406, 0.0032734869, -0.009730239, -0.013318649, 0.012576453, -0.015020929, 0.0054473, 0.022388402, -0.004262512, 0.027018609, 0.004187612, -0.009471493, 0.011064828, 0.020332048, 0.0053179264, -0.0070746806, 0.0016188695, 0.0051306756, -0.006472073, 0.0182076, 0.031893943, -0.0036326682, 0.010295397, 0.026174277, 0.0197737, 0.017213468, -0.014925602, 0.0023338275, 0.022674385, -0.016995575, 0.0023814915, 0.01049967, -0.008627161, -0.035570867, -0.004225062, 0.0070610624, 0.0062575857, 0.0062848222, -0.023368917, -0.022320312, -0.008722489, 5.881382E-4, -0.012998619, -0.0020444398, -0.023777464, 0.011418902, 0.015388622, 0.010840127, 0.01936515, 0.0043067713, -0.0075445105, -0.015892498, 0.010472435, -2.4895862E-4, 0.06307973, 0.023954501, -0.0012724552, -0.023627663, 0.018262073, 0.008177759, 0.028843453, -0.028053595, 0.0013788478, -0.0125083625, 0.0014597061, -0.012678591, -0.010179642, -0.01393147, -0.019882645, -0.0037858735, 0.0059171296, 0.046874017, 0.013339075, 0.003195182, -0.008783771, -0.002730459, -0.0047051054, 0.02264715, 0.015470332, -0.0050319433, -0.040255547, 0.030368697, -0.0063597225, 0.0050217295, -0.005048966, 0.010336252, 0.0046199914, 0.003608836, -0.0034028601, 0.00602948, 0.014803038, 0.0033449826, 0.013046283, 0.024077065, -0.008599925, -0.024757978, 0.008116477, 0.036905456, -0.012324516, 0.004691487, -0.007428755, -0.021857291, -0.023396153, 0.0109422635, -0.008681634, -0.013768051, -0.0020137988, 0.013434404, 0.0164917, 0.009096991, -0.015388622, 0.0052089808, -0.03649691, 0.010785654, -0.01439449, -0.009062945, -0.010343061, 0.020549938, 0.014285544, -0.0020597603, 0.035598107, -0.004732342, 0.050850544, 0.01812589, 0.01914726, -0.031158555, 0.010921836, -0.011459758, 0.009165082, -0.004487213, -0.0216394, 0.013795287, -0.023791082, 3.7343794E-4, 0.004187612, 0.034835484, -0.034835484, 0.07637115, 0.01205896, -0.002881962, 0.026392167, -0.006529951, 0.013114374, 0.033963915, 0.02154407, -0.017186232, 0.0034573332, -8.988045E-4, 0.0012775621, 0.014176598, -0.023900028, 0.005859252, -0.0055358186, 0.020400139, 0.00676827, -0.014557909, -0.017758198, -0.0078645395, -0.006397173, 0.032166306, 0.0057366877, -0.01812589, -0.009042518, 0.0148302745, -0.016178481, 0.0020835921, -0.021258088, -0.0026827953, -0.02131256, -0.006717202, 0.001610358, 0.017581161, -0.006683156, 0.01525244, 0.008307132, 0.008579497, 0.016682357, -0.022919515, -0.014816656, -0.029197527, -0.025833819, 0.023954501, -0.0072449087, -0.0056617875, -0.0200733, -0.016900249 ], + "id" : "9801ddf9-eb30-49d4-89ad-604b9d9a64a9", + "metadata" : { + "source" : "movies.csv" + } + }, + "a728f138-3da0-4a79-8770-7469dc30bdcc" : { + "text" : "Bailey-Adrian Schiller-Harriet Jones-Adam Mitchell-Tom Turner-Michael Jibson-Zoe Rainey-Daisy Duczmal-Jolyon Coy-Jimmy Johnston-Dean Street-Alexis Loizon-Sophie Reid-Rafa�lle Cohen-Carla Nella-Obioma Ugoala-Lynne Wilmot-Jane Fowler-Alison Harding-Chris Andrew Mellon-Jemma Alexander-Sandy Strallen-Dale Branston-Daniel Ioannou-Peter Challis-Wendy Baldock-Norma Atallah-Leo Andrew-Steven Butler-Sharon Gomez-Jacqui Jameson-Vivien Parry-Simone Sault-Beth Willetts-Mandy Montanez-Tom Oakley-William Bozier-Jak Allen-Anderson-Phil Grannel-Freddie August-Nicola Keen-Ebony Molina-Alison Jenkins-Ellen O'Grady-Dawn Buckland-Rebecca Mckinnis-Jody Hall-Ben Fox-Nathan Vaughan Harris-Tim Stanley-Ben Clare-Marina Abdeen-Danielle Acors-Hayley Ainsley-Rhianne Alleyn-Gabby Antrobus-Sophie Atkins-Koko Basigara-Holly Bluett-Daisy Boyles-Ava Brennan-Sophia Brown-Sophie Carmen-Jones-Cassie Clare-Tanya Cumberland-Natalie Davis-Paige Drury-Lawrence-Stephanie Elstob-Cordelia Farnworth-Cj Field-Lily Frazer-Lucy Alexa Gilbert-Helen Gulstan-Selina Hamilton-Leah Hill-Abigayle Honeywill-Chelsea Inez-Blythe Jandoo-Shireen Jathoonia-Billie Kay-Piper-Hannah Kenna-Thomas-Ella Kora-Jennifer Leung-Emily Loumba-Cassie Macmillian-Fiona McDonald-Samira Mighty-Sonoya Mizuno-Anna Momcilovic-Nicola Mooi-Nicole O'Neill-Abiona Omonua-Jazz Peters-Courtney Pruce-Kayla Radam-Katie Singh-Lucy St Louis-Ruth Steele-Jasmine Takacs-Naomi Weijand-Leah West-Skye Lucia Degruttola-Timia Julien-Box-Adelaide Morgan-Gemma Fray-Lara Decaro-Max Brophy-Samuel Brown-Daniel Daszek-Green-Freddie Hunter-Joey Brown-Tom Burgering-Nate Leung-Kai Gordon-Oscar Francisco-Harry Marcus-Johanna Smitz,france-magic-fairy tale-transformation-cartoon-castle-musical-remake-curse-creature-18th century-beast-live action and animation-live action remake,/hKegSKIDep2ewJWPUQD7u0KqFIp.jpg,/m3tdSyl11fhgXPDSEt3aBctTqGP.jpg,150689-259316-10020-102651-109445-269149-297762-150540-263115-283366-131631-283995-277834-8966-672-118-12445-12155-313369-675-12444\r\n260513,Incredibles 2,Action-Adventure-Animation-Family,en,Elastigirl springs into action to save the day while Mr. Incredible faces his greatest challenge yet ��� taking care of the problems of his three children.,61.45,Walt Disney Pictures-Pixar,6/14/18,200000000,1242805359,118,Released,Back to work.,7.491,11599,Craig T. Nelson-Holly Hunter-Sarah Vowell-Huck Milner-Samuel L.", + "embedding" : [ 7.285646E-4, -0.031508416, -0.029861446, -0.03032044, -0.018251661, 0.03715131, 0.005528148, -0.0079446025, -0.0041241734, -0.032993387, 0.023665061, 0.029348457, 0.02110011, 0.006979371, 0.017455177, 0.011582785, 0.012149775, -0.00814035, 0.01133979, -0.026149016, -0.008835587, -0.0058690165, -0.009510574, -0.004795786, -0.0035875586, -0.003376625, 0.040121257, -0.012602016, -0.007073869, -0.011191293, 0.002721887, -0.008349596, 1.0472853E-4, -0.035936333, -0.02805248, -0.0080796005, 0.004488667, -0.030887429, 0.030374438, -0.011562536, 0.01028006, -3.666026E-4, -0.020222625, 2.1768347E-4, -0.014093739, 0.014768726, -0.0043874187, -0.00565977, -0.018845651, 0.020398123, 0.02043862, 0.0324534, -0.01775217, -0.03032044, -0.015268218, -3.7904768E-4, -0.008707339, 0.017954668, -0.006476505, 0.013169006, 0.012588517, -0.021262106, -0.027755486, -0.021734597, -0.018197663, -0.022045093, -5.7458313E-4, -0.012379271, 0.0027606988, 0.009429576, 0.027836485, 0.007202117, 0.0135065, -0.015349216, 0.020249626, -0.027066998, -0.03180541, -0.009571323, -0.024232052, 0.0071548675, 0.014525731, -0.0016258762, -0.012730264, -0.0061828857, 0.012777514, 0.011184543, -0.009125831, 0.03023944, -0.048707098, 0.018022167, 0.0162267, 0.043658193, 0.0010369496, 0.0021245233, 0.018400159, 0.033155385, -0.03520735, 0.03504535, -0.0070941187, -0.041336235, -0.007492361, -0.012568267, -0.0050927806, -0.0140532395, 0.012845012, -0.005656395, 0.0061288867, 0.010941547, 0.0114815375, 0.009902067, 0.0058993907, -0.010212561, 0.025717024, -0.03131942, -0.0077353567, -0.013742746, 0.011137294, -0.01138029, -0.017725172, -0.020641118, 0.032615397, 0.033911373, 0.002080649, -0.043469194, 0.023449065, 0.031103425, -0.009659071, -0.018616155, 0.0054268995, -0.0141342385, 0.03626033, 0.004978033, 0.024961038, 0.010327308, -0.02805248, 0.03677332, -0.016334698, -0.0017161557, -0.016253699, -0.016604692, 0.025582027, 0.01779267, -0.014201737, -0.02321957, -0.014998223, 0.011387039, 0.027215496, -0.0076408586, 0.013850744, 0.0142422365, 0.0078366045, 0.01406674, -8.563904E-4, 0.01297326, 0.027998481, 0.014485232, 0.0047249123, -0.0062942584, -0.013229755, -0.016456196, 5.188966E-4, -0.0049645333, 2.5670617E-4, -0.009470074, 0.0018579031, 0.0010681677, 0.017914169, -0.022922575, 0.004272671, 0.0012056964, -0.011407289, 0.025096035, -0.027566489, 0.00621326, -0.009841318, 0.013850744, -0.005612521, -0.013654998, -0.020843614, -0.024610044, -0.007296615, 0.013918242, 0.021667099, 0.032696396, -0.015875706, -4.6869446E-4, 0.0376643, -0.016510194, 0.015538212, -0.025379531, 0.0031201297, 0.024218552, 0.011954029, -0.008795087, -0.6415081, -0.007769106, 0.0021650223, -0.008349596, 0.0017414677, 0.017941168, -0.013371502, -0.016172701, -0.027755486, 0.0016182825, -0.017414678, 0.021140609, 0.015497713, -0.008781588, -0.005892641, -0.016928686, 0.019709636, -0.016307699, 0.017725172, 0.0067127505, -0.027998481, 0.01943964, 0.00918658, 7.074713E-4, 0.004799161, 0.010016815, -0.005784643, -0.031643413, 0.0031724414, 0.0011812281, -0.02263908, 0.012325272, 0.018805152, 8.7664E-4, 0.03850129, 0.020465622, -0.01841366, 0.04797811, 0.028430473, 0.02585202, -0.032345403, -0.0018460908, 0.0075193606, 0.0020789616, -0.017765671, 0.020506121, 0.0028383224, 0.009011083, -0.004927409, -0.007127868, -0.011812282, -0.006155886, -0.015875706, -0.025163535, -0.009098832, 0.0027944483, 0.007330364, -0.021127108, 0.014147738, 0.0027488866, -0.016105201, 0.017063685, -0.00807285, 0.0108133, 0.003982426, 0.03285839, 9.812631E-4, -0.0022949574, 0.00242658, -0.01888615, 0.009058332, 0.013425501, -0.020411622, -0.004907159, 0.013067758, 0.0019355266, 0.020627618, 0.010752551, -0.011407289, 0.023530064, 0.010610804, -0.0124467695, 0.006817374, 0.0020688367, 0.022382585, 0.006054638, -0.024434548, 0.0011677283, 0.008261847, -0.012149775, 0.0140532395, 0.009888567, 0.001178697, -0.008261847, -1.8119196E-4, -0.0054673986, -0.026203016, 0.012575017, 0.038042296, -0.072088666, -0.007951353, -0.018805152, 0.024205051, -0.02380006, 0.019331641, 0.0066283774, -0.0040802993, 0.0042861705, 0.029753448, -0.016361697, -0.015146719, -0.0022190213, -0.007384363, -0.009510574, -0.011812282, -0.037610304, 0.020344123, 0.0033074387, 0.0022358962, -0.0023438942, 0.007188617, 7.2054914E-4, 0.012129526, -0.010145063, 0.0044920417, 0.029888447, 0.003563934, -0.0021734599, 0.003725931, 0.015943205, 0.007620609, 0.0081336, 0.020978611, -0.020222625, 0.019223643, 0.0037428057, 0.022922575, -0.013715746, 0.014309735, -0.015578711, -0.017198682, -0.010421807, -0.013837243, -0.004434668, -0.0053222766, -0.010111312, -0.029915446, 0.018467657, -0.0052041537, 0.0015448777, -0.031346418, 0.016024204, -0.007613859, 0.013789995, 0.0037428057, -0.0012031653, -0.021478102, -0.027350493, 0.009996565, -0.017455177, 0.01887265, 0.020600619, -0.0023168947, -0.03023944, 0.017171683, -6.2183227E-4, -0.024380548, 3.5247003E-4, 0.0080256015, -0.013823744, 0.01668569, -0.03742131, -0.01191353, 0.012257773, -0.013121757, 0.05831892, -0.0038980527, 0.016874688, 0.0037968047, -0.0044920417, -0.0045629153, -0.025015038, -0.027107498, -0.0045764153, 0.03350638, 0.012183525, 0.0041849227, -0.0024637044, -0.011123794, 0.0041714227, -0.0065608784, -0.008822086, 0.00701987, -0.0033833748, -0.0066688764, 0.012676265, 0.001889965, 0.003059381, 0.002347269, 0.0014394108, 0.037718304, 0.02972645, 0.018251661, -0.007384363, 0.018521657, -0.039149277, -0.0025531403, -0.021842595, 0.019196644, -0.018400159, 0.016591193, 0.006685751, -0.018143665, -0.0073033646, -2.7231526E-4, 0.027269496, 0.0024755166, 9.357014E-4, -0.012352271, 0.010745801, 0.003023944, -0.005838642, 0.016618192, 0.015808208, -0.023908058, 5.790127E-5, 0.007458612, -0.02915946, -7.9205565E-5, -6.598003E-4, -0.0028923214, 0.006655377, 0.011191293, -0.0034761857, -0.008045851, -0.0055213976, 0.027269496, 0.0024232052, 0.041255236, -0.019736635, 0.010334059, 0.022747079, 0.0022122716, 0.0022207089, -7.357364E-4, -0.020897614, 0.02215309, 0.021977592, -0.0052210283, 0.044657174, -0.009355327, 0.026594508, -4.3874187E-4, 0.012359021, 0.010577054, -0.0028265102, 0.013634748, 0.0055213976, 0.023840558, 0.02378656, 0.0098210685, -0.02429955, 0.02212609, 0.016132202, -0.0022443335, -0.0032011282, -0.020411622, 0.006547379, 6.0959806E-4, -0.037097313, -0.027485492, -0.013310754, 0.006203135, 0.026756505, 0.004657414, -0.005089406, -0.010003315, 9.5763855E-4, 0.008707339, 0.028025482, -0.020641118, -0.034343366, 0.008329346, 0.023719061, -0.019709636, -0.00811335, -0.0038710532, -0.005075906, -0.018197663, -0.026635006, 4.3621068E-4, 0.033317383, -0.008700589, 0.01999313, -0.008869336, -6.914403E-4, 0.016861187, -0.019655636, 0.012838262, 0.019210145, 0.007343864, 0.012035027, -0.012919261, -0.011090045, 0.01187303, -0.017711673, 0.0067262505, 6.037974E-5, -0.010232811, -0.014269236, 0.0031521916, -0.023030574, -0.047114126, 0.024596544, -0.013985741, -0.01077955, -0.007877104, -0.006797124, 0.0062301345, -0.012818012, -0.03939227, -0.021991093, -0.0378533, 0.021208107, 0.08683039, 0.035801336, -0.0012504144, 0.010550055, -0.0063280077, 0.014782227, -0.0018190914, 0.0013035696, -0.013216255, -0.0080931, 0.017941168, -0.009233829, 0.019358642, 0.005906141, 0.01725268, -0.01188653, -0.015200718, -0.017198682, 0.008457594, -0.0062436345, -0.026041018, -0.00676, 0.019574638, 0.019480139, 0.011778532, -0.025757523, 0.0052716522, 0.0161997, 0.0010369496, 0.00565977, 0.0014368796, 7.534548E-4, 0.010415058, 0.017914169, 0.0057913926, -0.006098512, 0.018670155, 0.008680339, 0.03393837, -0.0065440037, 2.7927608E-4, 0.008761338, 0.012305022, -0.0037968047, 0.023408568, -0.029969444, -0.019358642, 0.022409584, 0.025001537, -0.041741226, 0.022990074, 0.018035667, -0.005980389, -0.013547, 0.025136534, 0.004603415, -0.0067262505, -0.00619301, -0.0067330003, -2.894009E-4, -0.0043637943, -0.028808467, 0.014917224, -0.015821707, -0.0045460407, -0.0048565352, -0.023287069, -0.013958742, -0.006044513, 0.0034441238, 0.0029530704, -0.01888615, -0.0067701247, 9.871692E-4, -3.9212554E-4, 0.015295217, 0.02057362, -0.0041849227, 0.016429195, -0.00311338, -0.025123036, -0.025730524, 0.010550055, -0.012062027, 0.0016621568, 0.026122017, -0.011083295, 0.01564621, -0.011711033, 0.014404234, -6.1634794E-4, -6.927059E-4, -0.019196644, -0.020047128, 0.048113108, 0.02432655, 0.0028923214, 0.026230015, -0.0019507139, -0.011630035, 0.0215996, -0.031103425, -0.005548397, -0.012372521, -0.017860169, -0.01564621, -0.016820688, 0.016469695, -0.014741727, -0.04379319, -0.032075405, -0.007384363, 0.0024788915, -0.014876724, 0.0108403, 0.0055753966, 0.018116664, 0.012379271, -0.006439381, 0.001337319, 0.008356345, -0.017090684, 0.019831132, 0.011009046, -0.012649266, 0.039635267, -0.005896016, -0.03131942, -0.0040533, 0.025771024, 0.016078202, 0.017333679, -0.021437604, -0.008417094, -0.017509175, -0.02591952, 0.003027319, 0.010752551, -0.012649266, 0.002818073, -0.009524073, 0.018157164, 0.016820688, 7.1337743E-4, -0.0045122914, -0.03072543, 0.011859531, -0.0052041537, 0.0097670695, 0.03077943, 3.157676E-4, 0.027228996, -0.026095018, -0.010320559, -0.004768787, -0.014498732, -0.021370104, 0.014728228, 0.025771024, 0.03018544, 0.046358142, 0.007937853, 0.019682636, 0.0049442835, 0.016510194, 0.019507138, -0.010118063, -0.0056293956, -0.01896715, 0.006054638, 0.017900668, 0.030617433, 0.02267958, 8.8676484E-4, 0.010010065, 0.0016570943, 0.0051805293, -0.0019068397, 0.0024417674, -0.030671433, -0.02267958, 0.005622646, -0.029402455, -0.0063280077, -0.023125071, -0.006051263, 0.034343366, 0.01080655, 0.0015145033, -0.0066823764, 0.03385737, -0.0021278982, 0.015484213, -0.0114815375, 0.031184422, -0.024974538, -0.0081201, -0.027390992, -0.014633729, 0.0012099151, -0.0097940685, 0.022004593, -0.006527129, -0.012305022, -0.009605072, 0.024056554, -0.012514268, -0.015376216, 0.030617433, 0.002779261, 0.004765412, -0.02323307, -0.014701228, -0.043469194, -0.009389076, 0.0023101447, -0.0050725313, 0.008383345, -0.017428176, -0.0322914, 0.0081201, -0.009510574, 0.038096294, 0.023854058, 0.055294976, 0.034910355, 0.0055315224, -0.001922027, 4.0520343E-4, -0.015605711, 0.0026088266, 0.03018544, 0.01775217, -0.016969185, -0.02104611, 0.0066621266, -0.006867998, -0.026635006, -0.028349476, 0.026216514, 0.023489565, 0.023030574, -0.02645951, -0.004863285, -0.010610804, 0.021883095, 3.328532E-4, 0.00515353, 0.011501787, -0.024380548, -0.014741727, 0.0036145581, -0.012230773, 0.018022167, 0.014458233, -0.022571582, 0.02323307, -0.021356605, 0.015281717, -0.008396844, -0.009031333, 0.023638062, -0.03347938, 0.024380548, 0.008005352, 0.008970584, 0.003719181, 0.008491343, 0.019021148, 0.030887429, -0.01892665, 0.008275347, -0.0044414178, -0.0048430352, 0.013094758, 0.02218009, -0.011839281, -0.025271533, -0.029996445, -0.0031251921, 0.027215496, -0.0033344382, 0.001569346, 0.01186628, -0.016024204, -0.007674608, 0.003430624, -0.012217274, 0.00862634, -0.03342538, 0.0074316124, -0.0047417874, 0.008666839, -0.0058656414, -0.017711673, -0.012575017, -0.012851762, 0.0035403094, -1.6442273E-4, -0.0017752171, -0.023287069, -0.017171683, -0.042173218, -0.029348457, -0.009888567, 0.015079221, 0.0028805092, -0.01835966, 0.0059230155, -0.0021211482, -0.0066283774, -0.008484593, -0.011272292, -0.017374178, -0.0049341586, 0.019061647, -0.0034272491, -0.012480519, 0.0027168246, 0.021248607, 0.0029834448, -0.006371882, -0.002951383, 0.015200718, 0.034829356, -0.023462566, 0.010097813, 2.4974538E-4, -0.016334698, -0.008376595, 0.0161997, 0.021248607, 0.024353549, 0.007870355, -0.028403474, -0.01842716, -0.00914608, 0.023854058, -0.01134654, 0.0037495557, 0.013931742, 0.009429576, 0.04754612, 0.039932262, -7.4881426E-4, -0.032021407, -0.0056428956, -0.0013685372, -0.018710654, -0.0059702643, 0.014201737, 0.015362715, 0.023057573, -0.012730264, -0.03412737, -0.0072628655, -0.012575017, -0.029564453, -0.023935057, 0.010752551, 0.013162256, 0.010428557, 5.467399E-4, -0.0074451123, 7.791887E-4, 0.013128507, -0.033074386, -0.015416714, 0.019196644, 0.008005352, 0.02049262, 0.022328587, -0.019331641, -0.0089368345, 0.015943205, 0.016699191, 0.030023444, 0.02262558, -0.022328587, -0.021167608, -0.009787319, 0.008545342, 0.011447788, -0.011218293, 0.032723393, -0.011805532, -0.012271273, -0.007843355, 0.0026932003, 9.795756E-4, 0.0046540387, 0.00863984, -0.011063045, -0.001121323, 0.0054268995, -0.0041849227, -0.014431233, -0.020398123, 0.020263124, 0.007600359, 0.0016570943, 0.020263124, 0.017333679, -1.9542998E-4, 0.009996565, 0.0024215176, -0.007364114, -0.011272292, 0.006098512, -0.012588517, 0.027431492, -0.03666532, 0.007289865, -0.03148142, -0.0012647578, -0.00540665, -0.0064697554, -0.003027319, 0.03293939, -0.0037023064, -0.05170404, -0.0036955567, -0.0065710032, 0.0076408586, -0.012372521, -0.004367169, -0.019264143, -0.021140609, 0.0015465651, 0.009125831, -0.034883354, -0.01245352, 0.009058332, 8.032351E-4, -0.0065777535, 0.019088646, 0.18219262, -0.012615517, 0.021437604, 0.04816711, -0.0043941685, 0.00917983, 0.028349476, 0.025622526, -0.013297254, 0.0105973035, -0.005305402, 0.022436585, -0.0080796005, 0.0013685372, 0.013816995, -0.021167608, -0.028106479, -0.028187478, -0.02215309, -0.016550694, -0.008552092, -0.010448807, -0.023354568, -0.026662007, 0.010300309, -0.0020654618, -0.009362076, 0.005565272, 0.010975297, -0.0073371143, 0.0018258411, -0.02428605, -0.008241598, 0.020465622, -0.02593302, -0.013027259, 2.1093359E-4, 0.004701288, 0.025015038, 0.0061288867, -0.008018851, -0.00920683, -0.00920683, -0.010698552, -2.134648E-4, 0.021896595, -0.02813348, -0.011846031, -0.005572022, 0.015902705, -0.028592471, 0.0025244532, 0.02486654, 0.026176015, -0.012905761, 1.7686782E-4, 0.014323235, -0.011771782, -0.0040263003, 0.002048587, 0.014390734, 0.033182386, -0.020978611, 0.015875706, 4.0478157E-4, 0.014957723, -0.037475307, -0.018319162, -0.006260509, -0.034397364, -0.00758011, -0.033803374, -0.019844633, 0.011123794, -0.0024603296, -0.0020654618, 0.023314068, 0.023543565, -0.0036618072, 0.009355327, -0.042578213, -0.0067903744, -0.002382706, -0.007397863, -0.017428176, -0.016955687, 0.0161862, -0.019817634, -0.0024940788, -0.028808467, -0.009497074, -0.015727209, -0.0067127505, 8.4457814E-4, -0.010516305, 0.005558522, 0.017671173, 0.018562157, -0.014525731, -0.005021907, -0.031697415, 0.027836485, 0.016429195, -0.011117044, -0.024556046, -0.04006726, 0.005237903, -0.008504842, 0.01730668, -0.022612082, -0.019291142, -0.035801336, 0.007235866, -0.0047755367, 0.012723515, 0.0016385322, 0.009051583, -0.011198043, 0.039554268, -0.008167349, -0.009227079, -0.014552731, 0.0029058212, 0.0027910734, -0.008599341, -0.038447287, -0.03131942, 0.012878762, 0.0021245233, -0.035153348, 0.0040094256, -0.020195626, 0.023071073, -6.8595604E-4, 0.005335776, 0.0020215877, 0.024029555, 0.009524073, 0.005889266, -0.005936515, -0.004100549, -0.021748098, 0.016523695, 0.008052601, -0.0015339091, -0.022855077, 0.014471732, -0.010165311, -0.017428176, -0.045764152, -0.023395067, -0.0044481675, 0.009773819, 9.956065E-4, 0.04660114, 0.003211253, -0.015524712, -0.02807948, -0.001677344, 0.04954408, -0.024596544, 0.023111572, 0.009287828, -0.0048767845, -0.033803374, -0.023489565, -0.1730128, 0.01565971, 0.0046742884, -0.02003363, 0.009011083, 0.0115895355, 0.030482436, 0.013121757, 0.0023101447, -0.027647488, 0.029348457, -0.0014090365, -0.034073368, -0.0031707538, -0.010867299, 0.025136534, -0.02262558, 0.033776376, 0.029456455, -0.0039689266, 0.03469436, 2.593165E-5, -0.0057373936, 0.00511978, 0.007620609, 8.484804E-5, 0.012203774, -9.998252E-4, -0.0014124113, -0.017333679, -0.027566489, -0.0035841838, 0.015551712, 8.390938E-4, -0.0013221317, 0.0033850623, -0.01574071, -0.014093739, 0.0023995806, -0.003290564, 0.042578213, 0.010118063, 0.022477085, 0.009416075, 0.013310754, 0.008997584, 0.033668377, -0.0011525411, 0.0014950973, -0.020087628, -0.01241302, -0.04433318, 0.0325614, -0.013627998, 0.004262546, 0.041687228, -0.004211922, 0.0050387816, 0.015214219, -0.016496694, -0.021856096, 1.7602408E-4, 0.025150035, -0.0024670793, -0.012919261, -0.01788717, 0.0030728807, 1.4227472E-4, -0.030536436, 0.016672192, -0.019804133, 0.014282736, 0.0076476084, 0.008012102, 0.0061288867, -0.017374178, -0.033317383, -0.009983066, -0.010671552, 0.007134618, -0.023651563, 0.05664495, -0.012703265, 0.015619211, -0.010759301, -0.02057362, 0.0011128857, 0.00865334, 0.00917308, -0.010664803, 0.007404613, -0.022558082, -0.02590602, -0.0054842737, -0.0090178335, 3.8579755E-4, -0.013236505, 0.009895317, 0.0162132, -0.008700589, -0.0061255116, -0.024394048, -0.014120739, 0.017320178, 0.019250644, 0.01133304, 0.021424104, 0.019682636, 0.027755486, -0.0012124463, 0.009976315, -0.0066182525, 0.022045093, 0.009584823, -0.022571582, 0.0065203793, -0.026702506, -0.009395826, 0.005990514, 0.009125831, 0.054026, 3.7398527E-4, 0.006527129, -0.009281078, -0.006388757, -0.006925372, -0.07678658, -4.281952E-4, 0.017455177, 0.048356105, -0.012102526, 0.028160479, -0.020506121, 0.008957084, -0.029537452, 0.03577434, -0.0017870294, -0.019628637, 0.01727968, -0.0013592561, 0.016942186, 0.0065642535, -0.016577693, -0.010529805, -0.020830115, 0.018440658, -0.02000663, -0.011555786, 0.0038643035, -0.0071548675, -0.029996445, 0.016564194, -0.028511472, 0.025015038, 0.010894299, 0.01775217, 0.010772801, -0.007964852, 0.016591193, -0.04754612, -0.013155507, -0.017873669, -0.018076165, -0.020857114, -8.9604594E-4, -0.045629155, 0.0162402, 3.923365E-4, -0.0017254368, -0.023557063, -0.003617933, 0.0017549675, -0.018697154, 0.025595525, -0.023597563, -0.028295476, -0.0064900047, 0.0040836744, -0.011171043, -0.011238542, 0.025703523, 0.02000663, 0.02266608, 0.008869336, -0.001054668, -0.03628733, 0.0039216774, 1.3805604E-4, -0.027971482, 0.015821707, 0.023516566, 0.004903784, -0.002321957, 0.0035234347, 0.012048527, -0.026554009, -0.017684672, 0.038123295, -0.026284013, 0.011002297, -0.015727209, 0.013931742, -0.019277643, -0.014782227, 0.021532102, -0.046115145, 0.003570684, -0.035963334, 0.003236565, -0.023179071, -0.0030340687, 0.004917284, 0.018035667, 0.016024204, -0.0161457, -0.027917484, 0.0050489064, 0.02272008, 0.0057913926, -0.002483954, -0.013128507, 0.030941427, -1.877309E-4, -0.012055277, -2.0639852E-4, 0.0067802495, -0.0074316124, -0.018170664, -0.07181867, 0.03658432, -0.011441038, -0.0032011282, -0.011812282, -0.01023956, 0.013648247, -8.5976534E-4, -0.0035470594, 0.013547, -0.005882516, 0.024556046, -0.011657034, -0.004627039, -0.0022274589, 0.0034154367, 0.0037934298, -0.0054842737, -0.014984722, 0.016334698, -0.0098750675, 0.013735996, 0.023192571, 0.021775097, 0.011387039, 0.02597352, 0.0013592561, 0.020600619, -0.022301586, -0.010381307, 0.027728487, -0.013702246, -0.014809226, 0.0075868596, -0.0062335096, -0.026702506, -2.976273E-4, -0.0064360057, 0.027228996, -0.007364114, -0.00809985, -0.039824262, -0.008862586, -0.010523055, -0.0026543883, 0.01788717, -0.017117683, 0.007782606, 0.016429195, 0.010388058, 0.036017332, 0.0049341586, -0.0036314328, -0.015362715, 0.03350638, -0.015497713, 0.039122276, 0.0034154367, -0.0067667495, -0.010867299, 0.018778153, 0.0017617174, 0.02429955, -0.012696515, -0.0014309735, 0.0016022515, 0.006463005, 0.0042861705, -0.0047924113, -0.0377993, -0.004002676, 0.009625322, 0.014120739, 0.052784022, 0.020195626, 0.031535417, -0.011265541, 0.005345901, -0.0048835347, 0.017239181, 0.014390734, -0.011927029, -0.028511472, 0.012892261, -0.0019490264, 0.019844633, -0.006584503, -8.833899E-4, -0.008147099, 0.008822086, -0.009125831, 0.0015490963, 8.1884424E-4, 0.0019254019, 0.021505103, 0.016469695, -0.012791013, -0.02597352, 0.004272671, 0.009240579, 1.4385671E-4, -0.007910853, -0.011272292, -0.029618451, -0.019817634, -0.011839281, -0.01842716, -0.027269496, 0.0045122914, 0.013985741, 0.011117044, 0.016456196, -0.03137342, 0.007600359, -0.038528286, -0.004120799, -0.0054336493, -0.0036685572, -0.010523055, 0.046628136, 0.0018933399, -0.010739051, 0.038636286, -0.008302346, 0.047843114, 0.012082276, -0.0023658313, -0.034802355, 0.0058217673, 1.14220544E-4, 0.002963195, -0.002099211, -0.012143025, 0.0020637743, 0.0016942186, -0.0028146978, 0.028349476, 0.03685432, -0.017603675, 0.072250664, 0.0126357665, -0.0033243136, 0.021289106, -0.009200079, 0.018845651, 0.018197663, 0.017077183, -0.032129407, -0.0044616675, -0.020141628, -0.004198422, 0.0024738293, -0.023935057, 1.5071205E-4, -0.0015111283, 0.008275347, 0.005744144, -0.011987778, -0.018683653, -0.011792032, -0.0040937993, 0.023611063, 0.007235866, -0.0012968198, -0.017738672, 0.017239181, -0.023543565, -0.00863309, -0.019655636, 0.0074991114, -0.018265162, -0.008531842, -0.0051366547, 0.027809486, -0.004360419, -0.0013305692, 0.01136004, 0.015673209, 0.016105201, -0.011805532, -0.0046844133, -0.023678562, -0.009429576, 0.007310115, -0.0015457214, -0.0065743783, -0.023921557, -0.016010704 ], + "id" : "a728f138-3da0-4a79-8770-7469dc30bdcc", + "metadata" : { + "source" : "movies.csv" + } + }, + "1cfba0d5-7a6d-481e-b7da-554e5db41f28" : { + "text" : "195,8312,Tom Cruise-Jeremy Renner-Simon Pegg-Rebecca Ferguson-Ving Rhames-Sean Harris-Simon McBurney-Zhang Jingchu-Tom Hollander-Jens Hult��n-Alec Baldwin-Mateo Rufino-Fernando Abadie-Alec Utgoff-Hermione Corfield-Nigel Barber-William Roberts-Patrick Poletti-Martin Cochrane-David Peart-Barnab��s R��ti-Ash Merat-James Weber Brown-Robert Maaser-Wolfgang Stegemann-Eva-Marie Becker-Adam Ganne-Jesus Alvarez-America Olivo-James Cleverton-Martin Nelson-James McOran Campbell-Tom Lowe-Nicholas Sharratt-Nicholas Lupu-Stella Stocker-Martin Bermoser-Benjamin Plautz-Nina Hartmann-Daniela Nitsch-Carola Niederhuber-Tim Breyvogel-Laurence Rupp-Wolfgang Cerny-Rupert Wickham-Judith Bogner-Peter Stark-Ulli Ackermann-Saif Al-Warith-Robert Luckay-Tarrick Benham-Tyler Fayose-Rachel Handshaw-Julian Moore-Cook-Sean Cronin-Emilio Aniba-Volkan Ay-Amra Mallassi-Hadrian Howard-Walles Hamonde-Shamir Dawood-Sagar Radia-Yasen Atour-Noor Dillan-Night-Mingus Johnston-Osy Ikhile-Nigel Allen-Georgina Redhead-Bruce Lawrence-Femi Ogunbanjo-Katie Pattinson-Jorge Leon Martinez-Alana Maria-Jessica Allain-Anna-Marie Sullivan-Romeo Visca-Tom Coulston-Steven G�_tjen-Teddy Newton,mission-london england-spy-morocco-villain-austria-europe-sequel-conspiracy-vienna austria-vienna opera,/sGvcWcI99OTXLzghD7qXw00KaY5.jpg,/ki5RnA0xNOEd3R0RohXqJt9R6Om.jpg,956-56292-955-954-353081-206647-87101-102899-166424-135397-168259-203801-137113-267246-207703-99861-127585-254128-140607-158852-286217\r\n284052,Doctor Strange,Action-Adventure-Fantasy,en,After his career is destroyed a brilliant but arrogant surgeon gets a new lease on life when a sorcerer takes him under her wing and trains him to defend the world against evil.,104.302,Marvel Studios,10/25/16,165000000,677796076,115,Released,The impossibilities are endless.,7.", + "embedding" : [ 0.018546462, -0.026192695, -0.021291608, -0.0387534, -0.011034141, 0.04504715, -0.0042449306, -0.0018261905, -0.025978439, -0.03602165, 0.01865359, 0.031227691, 0.008382733, -0.010284248, 0.0011725449, 0.003715988, 0.01989895, -0.023460941, 0.0031870457, -0.026915805, -0.0034046485, -0.0059991446, -0.02513481, 0.014167623, 0.0014035387, 0.0052090785, 0.029567214, -0.012888787, -0.009373664, -0.0026631248, 0.020822924, -0.011081009, 0.005942233, -0.022014719, -0.020166768, 0.013571725, 0.005640937, -0.026527468, 0.031388383, 0.0010009734, 0.011824207, 0.005714587, -0.011208223, -0.0062334863, -0.015720973, 0.0017960609, 0.018332208, -0.01032442, -0.012025071, 0.022536965, 0.030558143, 0.033022076, -0.016176265, -0.01625661, -0.02260392, -0.005804976, -0.02259053, 0.024331352, -0.009788783, 0.0054132906, 0.009092454, -0.012915569, -0.022657484, -0.010920318, -0.022644093, -0.012098721, -0.015453154, -0.022510184, -0.0016345326, 0.014221187, 0.01866698, 0.023273468, 0.02048815, -0.0097686965, 0.021104135, -0.02656764, -0.03503072, 0.0023953058, -0.011743861, 0.005671066, 0.008161782, -0.008516643, -0.011603257, -0.003004594, 0.023635022, 0.0072311116, -0.012600882, 0.016203048, -0.03744109, 0.008469774, 0.008878198, 0.035968088, -0.0071373754, 0.0065716077, 0.0038766793, 0.0161227, -0.024652734, 0.025670446, -0.020836314, -0.040226407, -0.003170307, -0.009869128, -0.019805212, -0.012841919, -8.473959E-4, -0.0024990856, 0.0034983852, -0.011924639, 0.029567214, 0.009915997, 0.0029209005, -0.014020323, 0.015868273, -0.021264825, -0.002850598, -0.024880381, 0.020421196, -0.00960131, -0.018372381, -0.022818176, 0.040494226, 0.031977583, 0.004375492, -0.035084285, 0.043708052, 0.041458376, -0.0054568113, -0.018198298, 0.0032556741, -0.0033109118, 0.032754257, -0.002708319, 0.027371097, 0.02698276, -0.009340187, 0.050778475, -0.019055318, 0.021371953, -0.026607813, -0.009427227, 0.03304886, 0.030317105, -0.023554677, -0.021800464, -0.019711476, 0.0022680918, 0.02387606, -0.008670638, 0.029433303, 0.011482738, 0.020715795, 0.02954043, 0.012714705, 0.018117953, 0.030263543, -0.013437816, 0.010900232, -0.004134455, -0.0024890425, -0.0252955, -0.016162874, -0.004800655, -0.0025158243, -0.016966332, 0.007063725, 0.017836742, 0.016926158, -0.013317297, -0.011054227, 0.0022212234, -0.009005412, 0.03237931, -0.023996579, 0.017689442, -0.0044524902, 0.011335437, -0.014783607, -0.01624322, -0.03588774, -0.0153862, 0.0035820785, 0.005671066, 0.03007607, 0.034950376, -0.0045730085, 0.008971935, 0.025389237, -0.016042355, 0.0036088605, -0.018117953, -0.0056576757, 0.019175837, -0.0017977348, -0.0057112393, -0.6311957, -0.015158553, -0.010257466, 0.0023819148, 0.025362456, 0.0015566977, 0.007847096, -0.0014930906, -0.03331668, -0.02161299, -0.013116433, 0.016765466, 0.017341277, -0.018760718, -0.016189655, -0.0141140595, 9.6414826E-4, -0.014770215, 0.0012470321, 0.0023333726, -0.04633268, 0.019564174, 0.010143643, 0.0017860177, -0.003893418, -0.0040206322, -0.022403056, -0.01667173, 0.00905228, -0.0046299202, -0.01949722, 0.008771071, 0.019323139, 0.0036456855, 0.039235476, 0.011449261, -0.0124870585, 0.059562936, 0.02841559, 0.030317105, -0.014971079, -8.0764154E-4, 0.013832849, -0.00674569, -0.04368127, 0.023916233, -0.0010244076, 0.0037695519, 0.008797852, -0.0036289468, -0.0030715487, 0.016136093, -0.018573245, 0.0059221466, -0.007036943, -0.013196779, 0.00996956, -0.039021224, 0.014047104, 0.008811244, -0.021840636, 0.024893772, 0.0040909345, -0.0026748418, 0.008730898, 0.028683411, -0.0063673956, -0.008784462, 0.013176693, -0.036423378, 0.013431121, 0.010766322, -0.01201168, 0.0047337003, 0.013404339, 0.0028556196, 0.03189724, -6.565749E-4, -0.0033510847, 0.014100668, 0.0031719808, 0.0010294291, 0.0072645894, 0.013819458, 0.015225507, 0.0034716032, -0.045556005, 0.0013943325, 0.014328314, -0.0028020558, 0.0026296475, 0.01384624, 0.0035988172, 0.008108219, -0.01652443, -0.003295847, -0.016229829, -5.9380487E-4, 0.027089888, -0.0590273, -0.0062033567, -0.020528324, 0.030343888, -0.017073458, 0.010980577, 0.013939977, -0.00536977, -0.010853363, 0.01668512, -0.017327886, -0.00797431, -0.005132081, -0.01594862, -0.0035586443, -0.011998289, -0.031281255, 0.002365176, 0.008302388, -0.0050249533, -0.014890734, 0.011636734, 0.0073516304, 0.009233058, -0.0033694974, 0.017019894, 0.02698276, -0.008811244, -0.0017776483, -0.001859668, 0.0052793813, 0.0027802954, -0.0095142685, 0.014221187, -0.027799608, 0.01809117, 0.008831331, 0.012721401, -0.006273659, 0.008074742, -2.5212645E-4, -0.020327458, -3.8540823E-4, -0.0049747373, -0.004365449, -0.011663516, -0.01511838, -0.027076496, 0.0036825107, 0.0052124267, -0.022577139, -0.008603684, 0.0184929, 0.0030765703, 0.0011365567, 0.0023032431, -0.011147964, -0.02118448, -0.023568068, 0.012420104, -0.026875632, 1.9103024E-4, 0.031629417, 0.008556816, -0.02103718, 0.020541715, 0.004368797, -0.031602636, 0.012808442, -0.0025392585, -0.009802174, 0.017555533, -0.0021626381, 0.0019517307, 0.015520109, -0.008362647, 0.021438908, -0.022416446, 0.03221862, 0.0113689145, -0.0029744643, -0.010003038, -0.019684693, -0.012071939, -0.0016880963, 0.025335673, 0.01976504, 0.018693764, -0.017274322, -0.0065582166, 0.0076931, -0.022978866, -0.013538248, -0.0033443891, -0.0015282419, 0.013524857, 0.026219476, 0.0151049895, -0.0061129676, -0.0028204685, -0.010284248, 0.022831567, 0.029299393, 0.02176029, -0.005550548, 0.0072445027, -0.013243647, -0.0038733317, -0.014569351, 0.0031385035, -0.0072311116, 0.017702833, -0.018050998, -0.011998289, 0.0036724675, 0.0016136093, 0.032673914, 3.9482373E-4, -7.270866E-5, -0.017341277, 0.0024153923, 0.0035686877, -0.022001328, 0.015024643, 0.011214918, -0.0322454, -0.0035184715, 0.01989895, -0.024625953, 0.0010888515, -0.012681228, -7.549147E-4, -4.2809185E-4, 0.0068561654, 0.009681655, 0.012480363, 0.0028187945, 0.018024215, -0.01002982, 0.044511512, -0.008135001, -0.0039570252, 0.030986654, 0.023835888, 0.005640937, -0.0046433113, -0.020782752, 0.021063961, 0.016577993, 0.002571062, 0.04772534, -0.011449261, 0.024465261, 8.9384575E-4, 0.009949475, 0.005332945, -0.017341277, 0.004934564, 0.010063297, 0.032298967, 0.024103707, 0.020501541, -0.023822496, 0.020903269, 0.003538558, 0.016176265, 0.008817939, -0.021291608, 0.004730352, -0.0093870545, -0.026955979, -0.017100241, -0.02458578, 0.023956405, 0.011141269, -0.018573245, -2.661451E-4, -7.737457E-4, 0.0013474642, 0.010692672, 0.024210833, -0.0025543233, -0.04491324, 0.006718908, 0.024344744, -0.016765466, -0.027022934, -0.014288141, -0.009608005, -0.033852316, -0.024492044, -0.008195261, 0.035271756, -0.018559854, 6.8367066E-5, -0.014100668, 0.013464598, 0.02769248, -0.011482738, 0.0081684785, 0.014917516, -0.012038462, 0.00282549, 5.703707E-4, -0.021023788, 0.022911912, -0.013036088, -0.0019785126, -0.016511038, -0.003068201, 3.2849668E-4, -7.699795E-4, 0.0091326265, -0.04140481, 0.0047705253, -0.008054655, -0.013016001, -0.0136052035, -0.007934136, 0.005587373, -0.019644521, -0.014087277, -0.024371525, -0.02047476, -0.006069447, 0.07563207, 0.026755113, 0.008007787, 0.0020270548, -0.0055036796, -0.0047537866, -0.0023785671, -0.006146445, -0.017582314, -0.027344316, 0.025817748, -0.010980577, 0.028736975, 0.0055170706, 0.009146017, -0.008784462, 0.0014822106, -0.014020323, -0.014770215, -0.02007303, -0.023434158, -0.022818176, 0.042984944, 0.032968514, 0.0143417055, -0.0028171206, 0.028174555, 0.009447314, 0.012788355, 0.011395697, -0.007572581, -0.0022480055, 0.006082838, 0.016604776, 0.00565098, -0.01201168, 0.024050143, 0.0039503295, 0.0044357516, -0.0067021693, -0.013457903, 0.016055746, 0.012694619, -0.007050334, 0.003973764, -0.02386267, -0.012172372, 0.024666127, 0.04735039, -0.039637204, 0.0058853216, 0.012326367, -0.021519253, -0.015560281, 0.0102507705, 0.008710812, -0.001082156, -0.015051425, -0.033798754, -0.007907354, -3.964976E-4, -0.034146916, 0.021278216, -0.007967614, -0.0069298157, -0.030611707, -0.021063961, -0.017568924, -0.020889878, 3.983807E-4, 0.004248278, -0.017193977, 0.0018245167, 0.010344507, 0.008690725, -0.009869128, 0.023434158, -0.0067490377, 0.015145162, 0.0024170661, -0.038485583, -0.02726397, 0.0076194494, -0.025482973, 3.6343868E-4, 0.010290943, -0.009253145, 0.022349492, -8.1517396E-4, 0.010585545, -0.0026966021, -1.9364565E-4, -0.0153862, -0.010411462, 0.03473612, 0.0113689145, 0.01440866, 0.010371289, 0.00600584, -0.008536729, -0.009427227, -0.0248536, -0.0020170116, -0.0072378074, -0.020796143, 0.0063305707, -0.0030196588, 0.0019902296, -0.023286859, -0.030451015, -0.015493327, -0.017006503, 0.006200009, -0.009909301, 0.01991234, 0.0077332724, 0.02121126, 0.009668265, -0.008576903, 0.002761883, -0.00924645, -0.005436725, 0.016082529, 0.027478226, -0.014181014, 0.026714941, -0.01934992, -0.012085331, 9.733545E-4, 0.032298967, -0.009212973, 0.018948192, -0.020166768, -0.008054655, -0.013002611, -0.04239574, 0.009407141, -0.004666745, 0.0050082146, 0.019122273, -0.019524002, 0.0044357516, 0.009360272, 0.014904125, -0.012259413, -0.026902415, 0.014703261, -0.0052023833, 0.0074989307, 0.020206941, 0.0057882373, 0.012580795, -0.02443848, -0.012065244, -0.022577139, -0.028362028, -0.019510612, -0.005353031, 0.040440664, 0.0218942, 0.04764499, -0.0073851077, 0.03583418, 0.009085759, -7.369206E-4, 0.028067427, -0.019256184, -0.0095410505, -0.022188801, 0.0075524948, 0.017100241, 0.019135665, 0.010699367, -0.0016772163, 0.0037528132, 0.015279071, 0.012252717, 0.02954043, 0.0068896427, -0.034254044, -0.034120135, -0.009139322, -0.027638916, 0.0017542142, -0.0151049895, -0.014649697, 0.011683602, 0.010183816, -0.0074989307, -0.01096049, 0.028576283, 0.004927869, 0.009594615, -0.03251322, 0.020247113, -0.028442373, 0.018760718, -0.01087345, -0.0096147, -0.011871075, -0.018412553, 0.021546036, 0.0055538956, -0.022001328, -0.0092866225, 0.02331364, -0.011784034, -0.024679517, 0.043708052, -0.010478416, -0.012252717, -0.023233294, -0.0016755423, -0.041994013, -0.012346454, -0.008570206, -0.016711904, 0.0013466273, -0.025523147, -0.031816892, 0.02782639, 5.611644E-4, 0.040333536, 0.01794387, 0.044377603, 0.039503295, 0.007405194, -0.022014719, 0.0035720353, -0.0064075687, -0.0017893654, 0.02585792, 0.018425945, -0.0151049895, -0.02315295, 0.0012035115, -0.00646448, -0.026125738, -0.030879525, 0.025509756, 0.026393559, 0.032727476, -0.024625953, -0.0058351057, -0.023514504, 0.010471721, -0.0065481737, 0.012708009, 0.0039034614, -0.0409763, -0.021653162, -0.0021442256, -0.016497647, 3.8132817E-5, 0.014904125, -0.032406095, 0.018573245, -0.02556332, 0.033263113, -0.012888787, -0.019564174, 0.025402628, -0.018559854, 0.019550784, 0.011121182, 0.0141140595, 0.0035954695, -0.009018803, 0.011415783, 0.031656202, -0.015051425, 0.011489433, 0.013009306, -0.0042616692, 0.015426372, 0.017984044, -0.0145961335, -0.011964812, -0.019296356, -0.008576903, 0.031147344, 0.0010871775, -0.015279071, 0.010712759, -0.019684693, -0.016885985, 0.013022697, 3.3351828E-4, 0.0054936362, -0.020742578, 0.015493327, -0.0075056264, 0.01810456, 0.001082156, -0.0044223606, -0.008530034, -0.0064075687, -3.2263814E-4, -0.012835223, -0.013062869, -0.015828101, -0.016711904, -0.036664415, -0.02119787, -0.008985326, -0.017408233, 0.0020655538, -0.022121847, 0.009226363, -0.0044658813, 0.0014504071, -0.009065672, 1.0869683E-4, -0.020541715, 0.0023735454, 0.012795051, 2.7284055E-4, -0.011034141, 4.0423925E-4, 0.0313616, 0.006591694, 0.0073784124, -0.0066486057, 0.0101235565, 0.03345059, -0.004248278, 0.017662661, 0.002368524, -0.013471293, -0.0069565973, 0.021546036, 0.02655425, 0.001819495, -0.010752931, -0.04242252, -0.00511869, -0.0018161474, 0.040387098, 0.0031167432, 0.0046299202, 0.030424234, 0.009715132, 0.037762474, 0.019095492, -0.010478416, -0.019698085, 0.004492663, -0.0041177166, -0.018010825, -3.2512933E-6, 0.0031150694, 0.015761146, 0.021238044, 0.006518044, -0.023568068, -0.004412317, -0.031227691, -0.030852744, -0.003856593, 0.019858776, 0.03248644, 0.0065381303, 0.004583052, 0.013357471, 0.010083384, -0.001705672, -0.007545799, -0.0014579395, 0.01989895, 0.008463079, 0.03176333, 0.023139559, -0.03235253, -0.0033176073, 0.012754878, 0.0248536, 0.009581223, 0.015265681, -0.016845813, -0.01038468, -0.0072712847, 0.0027786216, 0.0010921992, -0.0014085603, 0.021813855, -0.02895123, -0.0040541096, 2.525449E-4, 0.012373236, 0.003930243, 0.016417302, 0.0045495746, -0.010465026, -0.0012897156, -0.009360272, -0.02359485, 0.0035619922, -0.04081561, 0.026219476, 0.014930907, -0.009085759, 0.030558143, 0.012821833, 0.005409943, 0.009340187, 0.007873877, 0.0015064817, -0.009313405, -0.0057581076, 0.004398926, 0.017475188, -0.027799608, 0.007063725, -0.031254474, 0.011054227, -0.00996956, 0.014542569, -0.00575476, 0.035084285, 0.010183816, -0.05608129, -3.8373435E-4, -0.0069030337, 0.0072511984, -0.024063533, -0.0026581031, -0.014207795, -0.0051354286, -0.0034849942, 0.0071440707, -0.01328382, -0.022429837, 0.004107673, -0.009634787, 8.7208545E-4, 0.016390521, 0.18704475, 0.0034448213, 0.0027049715, 0.047939595, 0.010210598, 0.008811244, 0.026219476, 0.024264397, -0.0015031339, 0.006022579, 0.0053798133, 0.0049613463, 0.0011139595, 0.003930243, 0.018533072, -0.023460941, -0.033102423, -0.018332208, -0.020836314, -0.028549502, 0.010766322, 0.008791157, -0.0058853216, -0.03955686, 0.0044022743, -0.0044993586, -0.00417128, 0.0034213872, 0.019082101, -0.002571062, -0.0065381303, -0.024384916, -0.010183816, 0.013638681, -0.020247113, -0.0018178212, -0.004184671, 0.012319672, 0.010297639, 0.0036624242, -0.0047906116, 0.0071842438, -0.0062669637, -0.0010202228, 0.014381878, 0.019671302, -0.016725294, 0.0067523853, -0.006467828, 0.011837598, -0.046895098, -0.0031736547, 0.014435442, 0.023393987, -0.02134517, -0.00968835, 0.019671302, 0.0018998408, -0.0076663177, 0.020930052, 0.0013282147, 0.03390588, -0.03744109, 0.006963293, 0.0057614553, 0.017850133, -0.03730718, -0.0055271136, 0.020541715, -0.03291495, -0.0105051985, -0.041029863, -0.015466545, 0.009661569, -0.0042181485, -0.010746236, 0.006173227, -2.032704E-4, 0.0035285149, 0.0148505615, -0.024344744, -0.020581886, 0.015305853, -0.00832917, -0.022188801, -0.008027873, 0.0040038936, -0.009721829, -0.002977812, -0.014140841, -0.0019282965, -0.027879953, -0.019028537, -6.9674774E-5, -0.0151049895, 0.015359418, 0.023193121, 0.022403056, -0.023501113, -0.0068896427, -0.038324893, 0.036503725, 0.016176265, -0.003322629, -0.022764612, -0.010746236, 4.1972252E-4, 0.009226363, 0.022282537, -0.012942351, -0.008590293, -0.02430457, -9.633113E-4, -0.0054568113, 4.8081874E-4, 0.02753179, -0.016216438, -0.005995797, 0.050939165, -0.016631557, 0.013652071, -0.024920555, 0.023460941, 0.003729379, 0.0047537866, -0.027451443, -0.025174983, -0.0026162565, 0.004887696, -0.040547792, 0.017743006, -0.025308892, 0.01667173, 9.683329E-4, 0.0048977393, 0.0033176073, 0.015479935, -0.0143684875, 0.0015885012, -0.006146445, -0.0096147, -0.028549502, 0.0138596315, 0.01850629, -0.009594615, -0.011717079, 5.591767E-5, -0.001896493, -0.015747754, -0.03007607, -0.016176265, -0.017809961, 0.012808442, 0.015747754, 0.044725765, -0.0072311116, -0.022697657, -0.041860104, -0.0187875, 0.036075212, -0.026594423, 0.01810456, 0.015828101, -0.0029978985, -0.035325322, -0.01214559, -0.17054711, 0.020689014, 0.012694619, -0.031656202, 0.01822508, 0.0013792677, 0.032754257, -0.004007241, -2.9941322E-4, -0.022389665, 0.036503725, -0.008643857, -0.04732361, -0.008128305, 0.005969015, 0.020715795, -0.008355952, 0.0252955, 0.03007607, -0.00582841, 0.042288613, -0.0046935272, -0.011777339, -0.0014311576, 0.019644521, -0.0073650214, 0.030183196, 0.0045160973, 0.012895483, -0.0052124267, -0.034655772, -0.012540623, 0.030906308, -0.0026262996, -0.003916852, 0.0065113483, -0.013056174, -0.0060995766, -0.009353577, -0.01652443, 0.05608129, 0.015011253, 0.030692052, 0.011830903, 0.014582742, 0.01738145, 0.03618234, -0.013330689, 0.008362647, -0.0153326355, -0.012433495, -0.039235476, 0.02445187, -0.0043252762, -0.0055974163, 0.010444939, 0.012185763, 0.008817939, 0.0067222556, -0.0016495974, -0.028174555, -0.0039369385, -0.0014194405, -0.0089049805, -0.01668512, -0.020555105, -0.0030514624, 0.010766322, -0.040895954, 0.012734791, -0.029352957, 0.015426372, -0.0021475733, -0.0013851261, -0.0019768386, -0.01059224, -0.03813742, 0.006300441, -4.929543E-4, 0.013029392, -0.007820314, 0.040735263, 0.0016345326, 0.022670874, 0.0050818645, -0.012634359, 0.013518162, -7.498931E-4, 0.0045930953, -0.011147964, 0.011603257, -0.023367204, -0.04761821, 0.004696875, -4.4608596E-4, 0.005178949, -0.015372808, 0.0069699883, 0.0054768976, -0.017287714, 0.0026363428, -0.02047476, -0.019135665, 0.012460277, 0.023420768, 0.01031103, 0.01087345, 0.017582314, 0.015881665, -0.00259617, -0.017743006, -0.012138894, 0.019122273, 0.00656826, -0.019724866, 0.015225507, -0.026206085, -0.02769248, -0.0036456855, 0.016310174, 0.038887314, -0.0043721446, 0.008376038, -0.0097686965, -0.015895056, -0.009005412, -0.07589989, 0.0040541096, 0.019858776, 0.05013571, -0.025041072, 0.04239574, -0.0098959105, 0.00282549, -0.029942159, 0.026085567, 0.0034950373, -0.034066573, 0.017207367, -0.009668265, 0.007786836, -0.0034180395, -0.019149056, -0.015265681, -0.012185763, 0.019162446, -0.008322475, -0.009340187, 0.008824634, -0.010826581, -0.015225507, 0.018733935, -0.012687923, 0.016551211, 0.010572153, 0.007934136, -0.0011223288, -0.022563748, 0.009822261, -0.05393874, -0.019952513, -0.02358146, -0.020046249, -0.01810456, 0.0017592357, -0.0502964, 0.004907782, 0.007077116, -0.007673013, -0.016283393, -0.012821833, -0.008141696, -0.032111492, 0.032620348, -0.014957689, -0.023474332, 9.700068E-4, -0.014930907, -0.019510612, -0.012393322, 0.0123598445, 0.021559427, 0.028897665, 0.009360272, -0.012922265, -0.029968942, -0.006618476, -0.013518162, -0.028870884, 0.027063105, 0.01165682, 0.004271712, 0.003511776, 0.0022312666, 0.013511467, -0.015426372, -0.031013435, 0.02133178, -0.033852316, -0.01807778, -0.012868701, 0.0077332724, -0.019242791, -0.011362219, 0.035807393, -0.045154277, 3.2933362E-4, -0.027156843, -0.0010026472, -0.0116233425, 0.028281681, 0.023608241, 0.024947336, 0.017756397, -0.0027049715, -0.03572705, -0.0013884739, 0.021144306, 0.0016914441, 0.011824207, 0.0016236524, 0.020287286, 0.01822508, -0.005282729, -0.011429174, 0.0076395357, -0.008335865, -0.0035452535, -0.072203994, 0.028094208, -0.02741127, -6.334546E-5, -0.009842346, -0.009594615, 0.004870957, -0.009922693, -4.7370477E-4, 0.023273468, -0.0070972024, 0.008195261, -0.007438672, 0.009273231, 0.004723657, 0.009842346, 0.0065716077, -0.013939977, 6.821014E-4, 7.38176E-4, -0.026206085, 0.017635878, 0.022804784, 0.00834256, 0.0032874777, 0.024170661, 0.008543424, 0.0017709528, -0.016711904, -0.010793104, 0.029727904, -0.019738257, -0.0067925584, 0.0064376984, 1.1350921E-4, -0.018988363, -1.4991585E-4, -0.001705672, 0.018144734, 0.0026547555, -0.0053998996, -0.02599183, 0.005034996, 0.01822508, -0.0045663132, 0.019483829, -0.016939549, 0.014448833, 0.014783607, 0.021425517, 0.028710192, 0.012092026, 0.002035424, -0.024130488, 0.025643665, -0.017769787, 0.037655346, 0.009721829, -0.009849043, -0.032700695, 0.029460086, 0.0014805367, 0.026098957, -0.03586096, -0.0020956832, 0.0061832704, 0.006451089, 0.0039402866, 0.0055538956, -0.014154232, -0.010565458, 0.0014027018, 0.0068561654, 0.03966399, 0.021813855, 0.021452298, 0.0067791673, 0.005905408, -8.227064E-4, 0.013819458, 0.016069137, -0.005306163, -0.026326604, 0.006769124, -0.005041692, 0.031388383, -0.0013148237, 0.010752931, 0.009306708, 0.0035050807, -0.0066921264, 0.0085501205, 0.019858776, -0.0075792763, 0.019872166, 0.008958545, -0.009186191, -0.009192886, 0.00593219, 0.020595279, -0.015560281, -0.007458758, -0.02230932, -0.029058358, -0.02315295, -0.0056744143, -0.022496792, -0.0077399677, 0.011696993, 0.017448405, 0.027478226, 0.023273468, -0.013156606, 0.0037494653, -0.04234218, 0.00960131, -0.006350657, -0.014060495, -0.006441046, 0.04622555, 0.012071939, 0.007867182, 0.024893772, -0.011563083, 0.05396552, 0.016591385, 0.01723415, -0.03492359, 0.0014914168, -0.0026380168, 4.3185806E-4, -0.013792676, -0.008858112, 0.008951848, -0.008255519, -0.0042817555, 0.019082101, 0.03366484, -0.02769248, 0.077935316, 0.0055907206, -0.0079408325, 0.01668512, -0.019082101, 0.010083384, 0.015372808, 0.016604776, -0.025871312, -0.005868583, 0.0042817555, -0.009380359, 0.01356503, -0.022858348, 0.0012637707, -0.0066486057, 0.014462223, 0.016390521, -0.013116433, -0.016698511, -0.020662233, -0.014703261, 0.018733935, -0.0038097247, -0.013926586, -0.015024643, 0.024826817, -0.005895365, -0.00384655, -0.029352957, 0.00861038, -0.01667173, -0.010284248, 0.0070034657, 0.021974545, 1.8987946E-4, -0.008998717, 0.00968835, 0.021679945, 0.020407805, -0.025590101, 0.011335437, -0.024947336, -0.008369342, 0.013504771, -0.01865359, -0.004921173, -0.030718835, -0.011944725 ], + "id" : "1cfba0d5-7a6d-481e-b7da-554e5db41f28", + "metadata" : { + "source" : "movies.csv" + } + }, + "0b2d968c-574a-4528-8173-478e590f0f55" : { + "text" : "Brown-Lauren Buglioli-Ricardo Burgos-Santos Caraballo-Matthew Carter-Joe Crosson-Ellen Marguerite Cullivan-LeBron Daniel-Jos�� Alfredo Fernandez-Darin Ferraro-Fred Galle-Joseph Giambrone-Derrick Gilbert-Jenin Gonzalez-Wil Gonzalez-Steve Heinz-Elvia Hill-Cal Johnson-Julia Kay-Melissa Kennemore-Tony Kim-D.L. Lewis-Josue Louis-Charles-Hans Marrero-Ryan L. Price-Scott Rapp-Ashae Reagan-Felicia M. Reyes-Manuel Rivera-London Seabreeze-Pedro Tavarez Jr.-Robert Tinsley-Emily Towles-Joseph Velez-Jamil C. Winston,detective-police-sequel-police officer-police detective-buddy cop-buddy comedy-buddy film-action hero,/y95lQLnuNKdPAzw9F9Ab8kJ80c3.jpg,/4J1Vu6oGzt60fakP4delEPDqEhI.jpg,338762-8961-495764-512200-9737-454626-962608-443791-545609-384018-51138-42480-522627-73335-290859-448119-934293-453405-570670-530915-458156\r\n68718,Django Unchained,Drama-Western,en,With the help of a German bounty hunter a freed slave sets out to rescue his wife from a brutal Mississippi plantation owner.,67.235,The Weinstein Company-Columbia Pictures,12/25/12,100000000,425368238,165,Released,\"Life, liberty and the pursuit of vengeance.\",8.161,23743,Jamie Foxx-Christoph Waltz-Leonardo DiCaprio-Kerry Washington-Samuel L. Jackson-Walton Goggins-Dennis Christopher-James Remar-David Steen-Dana Gourrier-Nichole Galicia-Laura Cayouette-Ato Essandoh-Sammi Rotibi-Clay Donahue Fontenot-Escalante Lundy-Miriam F. Glover-Don Johnson-Franco Nero-James Russo-Tom Wopat-Don Stroud-Amber Tamblyn-Bruce Dern-M.C. Gainey-Cooper Huckabee-Doc Duhame-Jonah Hill-Lee Horsley-Zo� Bell-Michael Bowen-Robert Carradine-Jake Garber-Ted Neeley-James Parks-Tom Savini-Michael Parks-John Jarratt-Quentin Tarantino-Amari Cheatom-Keith Jefferson-Marcus Henderson-Lil Chuuch-Kinetic-Louise Stratten-Kim Robillard-Shana Stein-Shannon Hazlett-Jack Lucarelli-Victoria Thomas-Grace Collins-Sharon Pierre-Louis-Christopher Berry-Kim Collins-Dane Rhodes-J.D. Evermore-Rex Linn-Michael Bacall-Ronan Hice-Ned Bellamy-Dave Coennen-Dani��le Watts-Jon Eyez-Omar J. Dorsey-Evan Parke-Craig Stark-Brian Brown-Ritchie Montgomery-Nicholas Dashnaw-Jarrod Bunch-Edrick Browne-Kerry Sims-Jamal Duff-Todd Allen-Lewis Smith-Keniaryn Mitchell-Jakel Marshall-Carl Singleton-Ashley Toman-John McConnell-Mark Amos-Monica Rene'e Anderson-Marsha Stephanie Blake-Catherine Lambert-Deborah Ayorinde-Takara Clark-Kimberley Drummond-Tenaj L. Jackson-Carl Bailey-Ross P. Cook-Gregory Allen Gabroy-Seth Bailey-David G. Baker-Richie J. Ladner-Glen Warner-Kesha Bullard-Edward J.", + "embedding" : [ 0.0043978686, -0.008407894, -8.9342525E-4, -0.042551976, -0.029060561, 0.029559217, 0.012501028, 0.007556023, -0.023118244, -0.04413105, 0.023422979, 0.020375637, 0.026567282, 0.014267101, 0.009619905, 7.6096976E-4, 0.027647704, -0.015569148, 2.9586055E-4, -0.040778976, 1.9208211E-4, -0.0043009077, -0.018284053, 0.016580312, -2.0073932E-4, 0.002879392, 0.030085577, -0.019586097, -0.010000822, -0.011102021, -6.904134E-4, -0.008047753, -0.005284368, -0.026165586, -0.022467222, 0.005654897, 0.017051265, -0.017189778, 0.013754594, -5.2549335E-4, 0.0033970939, 0.0025729262, -0.010596439, -0.009259764, -0.01033326, 0.0013184949, 0.024891244, -0.017009709, -0.010028525, 0.02406015, 0.027730813, 0.042164132, -0.019225959, -0.027758516, 0.005474827, 0.0056722118, -0.016178615, 0.0026266011, -1.5842715E-4, 0.008373265, 0.0032447267, -0.011905411, -0.020763481, -0.015347523, -0.017840803, -0.01782695, -0.0010102978, 0.004262816, -0.0011886365, 0.0039373045, 0.012237849, -0.0044671264, 0.013532969, 0.0038022518, 0.022993581, -0.0148488665, -0.03324373, -0.010132412, -0.001405067, -0.007590652, 0.002567732, 0.0017098013, -0.022439519, 0.019433731, 0.00841482, 0.0055233072, -0.026165586, 0.02699668, -0.03163695, -0.003125257, -0.0051181493, 0.041471556, -0.003502712, -0.01251488, -0.014557984, 0.012030075, -0.02511287, 0.026636539, -0.014405617, -0.031082889, 0.009322097, -0.004972708, -0.0021366023, -0.016885046, -0.0019582636, -0.001835331, -9.107397E-4, -0.0018162851, 0.015776921, 0.012667247, 0.0083801905, -0.0042489646, 0.029476108, -0.0401141, -0.017757693, -0.012791911, 0.008671073, -0.035792418, -0.012625692, -0.016857343, 0.017189778, 0.023381425, 0.005744932, -0.040418837, 0.03573701, 0.025916258, 0.0046229563, -0.012791911, -0.0033035958, -0.0018682284, 0.019641504, -0.0018959315, 0.017189778, 0.017854653, -0.01612321, 0.034379557, -0.025237532, 0.013900035, -0.022148635, -0.018935075, 0.027301414, 0.041526962, -0.028090952, -0.008615667, -0.021511463, 0.007091996, 0.01007008, 0.004719917, 0.0028430317, 0.015389077, 0.01933677, 0.010063155, 0.008837292, 0.0145025775, 0.01194004, 0.005080058, 0.018062428, 0.0125772115, 0.006621043, -0.0072582145, -0.00220586, -0.020320231, 0.0029209466, -0.007147402, 7.943001E-4, 0.025057463, 0.014419468, -0.016912749, -0.0053674774, -0.0056514344, -0.0062020337, 0.024337182, -0.027772367, 0.021705385, -0.012473325, 0.0058384305, 0.0063613267, -0.006866908, -0.043355364, -0.0036879764, 0.014031624, -0.0017816562, 0.016178615, 0.033299137, 0.0039927107, 0.004965782, 0.02556997, -0.017785396, 0.013823852, -0.024614213, -0.00441172, 0.0178131, 0.010935802, -0.0075075426, -0.6311876, -0.013311344, 0.0029157524, -0.0131936055, 0.022591885, 0.012327883, -0.0057483953, 0.0053328485, -0.030528827, -0.0019357548, -0.023021284, 0.020195566, 0.019586097, -0.008975808, -0.012757282, -0.019793872, 0.002969427, -0.020444894, 0.0058384305, 1.5831894E-4, -0.02040334, 0.006465213, 0.012030075, -5.964826E-4, 0.017868506, 0.014474874, -0.014904273, -0.009557573, 0.009599128, 0.0012648201, -0.01782695, 0.020070903, 0.016414093, 0.005568325, 0.040585056, -0.0015141481, -0.00820012, 0.06039278, 0.026691945, 0.038978275, -0.017591475, -0.01185693, 0.006787262, -0.014177066, -0.016538756, 0.02458651, 0.0035979412, -0.0013998727, -0.009571425, -0.012909649, 0.0055891024, 0.0068080393, -0.0057760985, -0.020375637, -0.012798836, 7.8780716E-4, 0.0021140936, -0.029780842, 0.029559217, -0.003433454, -0.037177574, 0.0049519306, 0.0015574342, 0.0026594985, -0.013242086, 0.02555612, -0.012556435, -0.012424844, 0.0021400652, -0.008096234, -0.004913839, -2.090719E-4, -0.008934253, 2.3720787E-4, 0.020112457, 0.0083317105, 0.021996269, 0.0029174837, -0.003857658, 0.013671485, -0.021220582, 6.298129E-4, 0.023367573, 0.015970843, 0.021940863, 0.008546409, -0.053494703, -0.0098069, 0.0024621137, 0.0053397743, 0.011711489, 0.0056341197, 0.0038438065, 0.029392999, -0.0025313715, 0.0025850465, -0.0014639362, -0.005232425, 0.03249575, -0.06781721, 0.001330615, -0.010686475, 0.025403751, -0.0035356092, 0.021428354, 0.022342557, 0.002630064, -0.015181304, 0.019350622, -0.023021284, -0.025362197, -1.1514105E-4, -0.020694222, -0.0030577306, 0.011663009, -0.030362608, 0.007715316, -0.008304007, -0.0047683977, -0.0047164545, -0.007119699, 0.0064271213, 0.010762658, -0.033354543, 0.01305509, 0.029919358, -0.014488726, -0.01087347, 0.0107765095, 0.009793049, -0.0068080393, -0.0017704018, 0.014100882, -0.017175928, 0.022037823, 0.0040896717, 0.01923981, -0.0011081244, 0.012203219, -0.011302869, -0.005471364, -0.022065526, -0.010367889, -0.02424022, 0.008248601, -0.014571835, -0.045571614, 2.5322373E-4, -0.014668796, -0.0048930617, -0.005294757, -0.0011756507, -0.0064028814, 0.003199709, 0.010090858, 0.0069569433, -0.02886664, -0.015389077, 0.009716866, -0.022785807, 0.008677999, 0.0044671264, -2.445665E-4, -0.02466962, 0.02324291, -0.01461339, 0.0021850828, 0.012507954, 6.6271034E-4, -0.011988521, 0.019863129, -0.030750452, 0.008864995, 0.011095095, -0.007583726, 0.024960501, -0.009238987, 0.036401886, 0.013062016, -0.0057657096, 0.010125486, -0.020237122, -0.03432415, -0.011372127, 0.021982417, 0.023021284, 0.008449448, 4.345925E-4, -0.022536479, 0.006219348, -0.024489548, -0.021691535, -0.0027997454, -0.0011418875, 0.0070192753, 0.031082889, 8.129131E-4, 0.010721103, 0.001299449, -0.007874609, 0.034241043, 0.014904273, 0.01487657, -0.025182126, 0.004976171, -0.04202562, 0.0024984742, -0.034905918, 0.015389077, -0.007465988, 0.021345247, -0.008657222, -0.009238987, 0.0041139117, 0.02414326, 0.011482939, -0.013851555, 9.367114E-4, -0.004948468, 0.0048930617, 0.012369438, 0.0020240585, 0.022384113, 0.0029330668, -0.03277278, 0.016164765, 0.00739673, -0.01389311, 0.0117391925, -0.00882344, -0.0062609026, 0.004418646, 0.01100506, 0.0043978686, -0.020555707, -0.01969691, 0.01549989, -0.010471775, 0.04296752, -0.024378736, -0.0032828185, 0.01897663, 0.023727713, 0.017051265, 0.014585687, -0.01925366, 0.0070088864, 0.018103981, -0.009585276, 0.05338389, -0.0061016097, 0.020444894, -0.007015812, 0.0018214794, 0.0133182695, -0.01674653, 0.0017920448, 0.026567282, 0.033714686, 0.011836153, 0.013803074, -0.02842339, 0.008684925, 0.0017504902, 0.014931976, -0.007957718, -0.021636128, -1.85995E-5, -0.015112046, -0.033077512, -0.033188324, -0.021331394, -0.0059527056, 0.017591475, -0.0028863177, -9.774003E-4, -0.013048165, -0.004259353, 0.0043009077, 0.005405569, -0.006222811, -0.012930426, 0.028312577, 0.02816021, -0.01968306, -0.024378736, 0.00547829, -0.0011141844, -0.025431454, 0.002567732, 0.005038503, 0.04000329, -0.0059319283, 0.02148376, -0.008207046, 0.014516429, 0.013546821, -0.016954303, 0.028201764, 0.014682648, -6.611953E-5, 0.001342735, -0.010915025, -0.012390216, 0.04052965, 0.0020032811, 0.015638405, 0.0036187186, 0.009820752, -0.0033070587, 0.0122517, 0.0062054964, -0.03172006, 0.018117834, 0.00882344, -0.016192468, 0.0027651165, -0.005125075, 0.0073898043, -0.022148635, -0.018477974, -0.04715069, -0.022952026, 0.0046818256, 0.084328264, 0.04382632, 0.0044047944, 0.017134372, -0.014024699, 6.0990127E-4, -0.010568736, -0.009481389, -0.009010436, -0.011102021, 0.02056956, -0.0218439, 0.0126533955, 0.0113929035, 0.020805035, -0.021179028, 0.0010856156, -0.012771133, -0.00939828, -4.2052454E-4, -0.024295626, -0.01487657, 0.02146991, 0.027426079, 0.011711489, -0.008878847, 0.024808135, -0.007625281, -0.0050765947, 0.015513741, -0.0018630341, 0.019032037, 0.009799975, 0.012037001, -0.00752832, 0.005197796, 0.038978275, -4.726843E-4, 0.04604257, 0.0072859176, -0.005734544, 0.017896209, -0.001638812, 0.0010864813, 0.02289662, -0.03055653, -0.022952026, 0.026165586, 0.032855887, -0.02717675, 0.015430632, 5.3296022E-5, -0.01479346, -0.036568105, 0.024877392, -0.008677999, 0.008968881, -0.0022474148, -0.016289428, -0.0033451505, -0.0018491825, -0.028561905, 0.0018561083, -0.017633028, 7.575069E-4, -0.007950792, -0.011870782, -0.0011418875, -0.011843079, 0.0018405253, 0.007687613, -0.015652256, -0.008082382, 0.0074175075, 0.025292939, 0.007375953, 0.0196138, 0.0034542314, 0.02333987, 0.010547959, -0.027190601, -0.024808135, 0.028451093, -0.028187914, 0.009045065, -0.0033884365, -0.011205908, 0.010208596, -0.022037823, -2.0333649E-4, -0.01809013, 0.005879985, -0.024988204, -0.008705702, 0.028922046, 0.013214383, 0.021165175, 0.019309066, 0.0050315773, -0.019835426, 0.005938854, -0.011912337, -0.010991208, -0.020998957, -0.019863129, -0.0084633, -0.015222859, 0.0025885093, -0.025182126, -0.017536068, -0.020818887, -0.032717373, 0.017175928, -0.0074105817, 0.01461339, -0.012050852, 0.013068941, 0.006229737, 2.869869E-4, 0.0026317954, 0.0178131, -0.018907372, 0.01914285, 0.035709307, -0.006877297, 0.032745074, -0.006911926, -0.021234434, 0.0017530874, 0.025791595, 0.01640024, 0.012937352, -0.014391765, 0.0026058238, -0.016414093, -0.02325676, 0.006946555, 0.015181304, -0.014835015, 0.01251488, -0.01736985, 0.0060115745, 0.025819298, -4.4411546E-4, 0.0018405253, -0.032107905, 0.011420607, -0.009405206, 0.0051770187, 0.02201012, -0.009010436, -0.0063682524, -0.015790772, -0.0023513015, -0.014052402, -0.016774233, -0.02137295, -0.0063024573, 0.044075646, 0.02378312, 0.020528004, -0.007050441, 0.02655343, 0.006053129, 0.015804624, 0.04116682, -0.020611113, -0.007881534, -0.022328706, -7.133551E-4, 0.016012397, 0.033825498, 0.0064790645, -1.7509231E-4, -0.008400968, 0.018007021, -0.0047787866, 0.022591885, -2.3158068E-4, -0.020209419, -0.02825717, 0.011517568, -0.020680372, -0.01175997, -0.023187503, -0.011559122, 0.026581133, -0.005069669, -0.0033486134, 0.0018266737, 0.035321463, -0.01385848, 0.0068322793, -0.022841213, 0.0061708675, -0.023201354, -0.011884633, -0.012092407, -0.004945005, 0.004848044, -0.015402929, 0.007930015, -0.0048307297, -0.022674995, -0.0013453322, 0.03163695, -0.008941178, -0.031304512, 0.022065526, -0.0055267704, -0.0052705165, -0.018464122, -0.006229737, -0.027301414, -0.020070903, -0.0024378735, -0.010991208, 0.0070712185, -0.018768856, -0.03521065, 0.027398376, 0.022176338, 0.037011355, 0.0059596314, 0.04571013, 0.027966289, 0.011663009, -0.016954303, 0.01487657, 0.0021989343, -0.0052151103, 0.015347523, 0.015402929, -0.0155414445, -0.009474464, 0.007812277, 1.8180166E-4, -0.04413105, -0.032745074, 0.013796149, 0.023132097, 0.013983144, -0.028561905, 0.0065240823, -0.027204454, 0.0029832786, -0.023561494, 0.011718416, 0.011656083, -0.033576168, -0.02832643, 0.013976218, -0.0018751542, 0.015278265, 0.011863857, -0.028035546, 0.0061777933, -0.012736505, -0.008276304, -0.01612321, -0.011898485, 0.031581543, -0.0169266, 0.007500617, -0.007895386, 0.019641504, -0.0010830184, -8.652893E-4, 0.009751494, 0.03235723, -0.028229468, 0.011295943, -0.0011886365, -0.010845767, 0.012092407, 0.021442207, -0.017633028, -0.025071314, -0.01381, 0.0026802758, 0.025874704, 0.0014544133, -0.0029919357, 0.028174061, -0.021580722, -0.0093498, 0.009952342, -0.0075768004, 0.00841482, -0.027952436, 0.016538756, -0.014765757, 0.013311344, 0.009744569, -5.3241913E-4, 0.0068599824, 0.0010760926, -0.0042455015, -0.011766896, 0.010167041, -0.027370673, -0.026705798, -0.031747762, -0.020652669, -0.010125486, -0.028021695, 0.013124348, -0.016095506, -0.0024569195, -0.013283641, -0.004813415, -0.011489864, 5.194333E-4, -0.035127543, 0.0041762437, 0.01207163, -9.150683E-4, 4.0732228E-4, 0.008324784, 0.03892287, -0.007237437, -0.0038957498, -0.006995035, 0.0015089537, 0.023298316, -0.023561494, 0.031775467, 0.010984283, -0.024004744, -0.005450587, 0.010374814, 0.04036343, 0.024074001, -2.9434555E-4, -0.023824673, -0.0070816074, -0.015375226, 0.042247243, -0.010264002, 0.0051804814, 0.0401141, 0.019419879, 0.023533791, 0.04413105, -0.014239398, -0.023949338, 0.006939629, -0.0046818256, -0.021206731, -0.0079369405, 0.0051804814, 0.014973531, -0.0018110907, -0.014751906, -0.031249108, 0.004318222, -0.017175928, -0.03280048, 0.0014180529, 0.011732267, 0.022924323, 0.007625281, -0.0038992127, 0.008352487, 0.0031633489, 0.017536068, -0.012992758, -0.014973531, 0.018588787, -0.003156423, 0.038895164, 0.00975842, -0.01251488, -0.0067699472, -0.005405569, 0.017425256, 0.012618766, 0.02156687, -0.02460036, -0.009405206, -0.0020933163, 0.01180845, -0.013110496, -0.0038645838, 0.01720363, -0.033077512, -0.01764688, 0.0075352457, 0.021705385, -0.0059561683, -0.0024915484, 0.025500713, -0.017854653, -0.0031633489, -0.010000822, -0.006409807, 0.0075144684, -0.01817324, 0.019572247, -7.055636E-4, -0.005159704, 0.032274123, 0.015707662, 0.007299769, -0.0070469785, -0.010111635, 0.0169266, -0.0021054363, -0.016801937, 0.0015764801, 0.032274123, -0.039726257, 0.019890832, -0.024752729, 0.0033139845, -0.005879985, -0.004480978, 0.0016872925, 0.03191398, 0.008006198, -0.061445497, 0.0013557209, -0.019987794, 0.00864337, -0.01118513, 0.0055856393, -0.035099838, -0.013152051, 0.0020084754, -0.0014137243, -0.0058557447, -0.026040923, -0.00532246, -0.016372537, -0.010478701, 0.02128984, 0.19137308, 5.648837E-4, 0.009114323, 0.051555485, -0.012168591, 0.014862718, 0.016164765, 0.024364885, -0.004318222, 0.019018184, 0.008276304, -0.0032862814, 0.008491003, -0.0031010169, 0.019807722, 0.011088169, -0.026872016, -0.017993169, -0.01879656, -0.031082889, -0.022591885, 0.016289428, -0.0044221086, -0.028977452, 0.009079694, 0.0071958825, -0.0015202081, 0.015430632, 0.0094675375, 0.0030248333, -0.0051908703, -0.0077707223, 0.0041520037, -0.0016933526, -0.015513741, -0.015112046, -0.0052358876, -2.607988E-4, 0.016691124, 0.018228646, 0.003732994, 0.0024222906, -0.0160401, -0.020098606, -0.0020656132, 0.023021284, -0.022481073, -0.002155648, -0.010485627, 0.011074318, -0.04202562, -0.004667974, 0.015278265, 0.031969387, -0.009245913, -0.007819203, 0.007909237, 0.004913839, -0.020444894, 0.007022738, 0.008006198, 0.027162898, -0.01595699, 0.021137472, -0.011413681, 0.016261725, -0.019281363, -0.007749945, 7.1248936E-4, -0.02370001, -0.010007748, -0.031304512, 0.0035252206, 0.0015141481, 0.0047510834, -0.01978002, -0.0035633123, 0.009148952, -0.0010111635, 0.017536068, -0.023533791, -0.013823852, 0.012771133, -0.013442934, -0.027855476, -0.012501028, 0.006285143, -0.02370001, -0.0066764494, -0.030362608, -0.004792638, -0.03055653, -0.01479346, 3.471546E-4, -0.0063509378, -0.004972708, 0.023048988, 0.016414093, -0.017951615, -0.0106033655, -0.02593011, 0.018685747, 0.028118655, -0.012542583, -0.024489548, -0.0071058474, -0.008830366, -0.004695677, 0.04731691, -0.0041139117, -0.019572247, -0.0048307297, -0.003499249, -0.027481485, -0.011946966, 0.015486038, 0.016538756, -0.02743993, 0.034379557, -0.00752832, 0.0046194936, -0.018311756, 0.012854243, -0.0030421477, 0.0011306332, -0.02609633, -0.024101704, 0.007154328, -0.0084563745, -0.025348345, 0.0020967792, -0.026124032, 0.016192468, -0.017065115, 0.0019149774, -0.0069430918, 0.025417604, 0.0018907372, 0.005260128, -0.0022335632, -0.0069569433, -0.008193195, 0.018741153, -0.012861168, 0.0044671264, -0.04296752, -9.142026E-4, -0.010111635, -0.024558807, -0.032024793, -0.023921635, -0.0024067075, 0.009460612, 0.0169266, 0.04233035, 0.0028153285, -0.013470637, -0.040778976, -0.014031624, 0.03795326, -0.019738466, 0.02593011, 0.029115967, -0.012424844, -0.018477974, -0.021192878, -0.1781864, 0.038535025, 0.008040828, -0.034795105, 0.002910558, 0.020070903, 0.025015907, 0.010935802, 0.0013946784, -0.011572974, 0.025819298, 0.0061812564, -0.039698556, 0.009896936, -0.011469088, 0.0064721387, -0.019876981, 0.035958637, 0.03787015, -0.0018266737, 0.04703988, -0.011531419, -0.007978495, -0.019987794, -9.687431E-4, -0.003012713, 0.025292939, 0.021400651, 0.0018838114, -0.00815164, -0.037205275, -0.013740743, -0.0029607697, 0.017411403, -0.031165998, 0.008435597, -0.021331394, -0.0145025775, -0.010859619, 0.0023582273, 0.030611936, 0.010450998, 0.0142809525, 0.01746681, 0.02237026, 0.028672718, 0.039947882, -0.010984283, 0.023478385, -0.020860441, -0.022093229, -0.050308846, 0.035875525, 0.003004056, 0.0021106307, 0.013249012, -0.012757282, 0.005225499, 0.006066981, 0.003004056, -0.011988521, -0.0010631068, 0.0048099523, -0.0031165997, -0.006094684, -0.02192701, -0.020708075, 0.001077824, -0.031969387, -0.0023634215, -0.033520762, 0.034019418, 0.0031356458, 0.00410006, 0.015472187, -0.014557984, -0.02816021, -0.0084563745, -0.0074521364, 0.0151951555, -0.013733816, 0.036651213, 0.0011704564, 0.0106033655, -1.2574614E-4, 0.0031391087, 0.0073136208, -0.0067630215, 0.011102021, -0.014087031, -2.4110363E-4, -0.0253899, -0.025071314, 0.0024621137, -0.0056341197, -9.912519E-4, 0.0034403799, 0.013325196, 0.016192468, -0.006094684, -0.0050558173, -0.020874294, -0.02101281, 0.022204041, 0.015112046, 0.0145025775, 0.007500617, 0.015887734, 0.020278675, 0.012293255, -0.012099333, -0.0020604187, 0.0063578635, 0.011780747, -0.017799247, 0.009924639, -0.026705798, -0.018367162, 0.005904225, -4.7571433E-4, 0.06476987, 0.0036429588, 9.600859E-4, -0.016344834, 0.0028153285, -4.3242823E-4, -0.09036754, 0.0015383883, 0.013172829, 0.03252345, -0.027052086, 0.044491194, -0.0057380064, 0.03770393, -0.013581449, 0.024004744, -0.003975396, -0.026705798, 0.014516429, 0.0026248696, 0.008338636, 0.010277853, -7.938672E-4, 0.003795326, -0.01809013, 0.022882769, -0.018879669, -0.0036602733, 0.0015011622, -0.012445622, 0.0062089595, 0.016275577, -0.024821986, 0.020070903, -0.0041243006, -9.6701167E-4, -0.004938079, -0.0072928434, 0.010838841, -0.03493362, -0.023395276, -0.03324373, -0.0060773697, -0.027052086, 3.932543E-4, -0.049921002, 0.010949654, 0.014010848, -0.001367841, -0.01772999, -0.0012232654, 0.015666109, -0.017411403, 0.029808545, 0.0018145536, -0.019433731, -0.0017496245, -0.001330615, -0.028395686, -0.024628064, 0.012618766, 0.020638816, 0.020320231, 0.012314032, -0.015721515, -0.023741564, -0.007784574, 3.5451323E-4, -0.020528004, 0.021608425, 0.01710667, 0.0029642326, -7.7698566E-4, -0.020472597, 0.015222859, -0.0054990673, -0.015028937, 0.019128997, -0.0400864, -0.0071266247, -0.013345973, -0.004532921, -0.03485051, -0.01185693, 0.020915847, -0.053467, 0.016511053, -0.033354543, 5.8306387E-4, -0.019406028, 0.007978495, 0.010707252, -8.392094E-5, 0.015832327, -0.004948468, -0.043743208, -0.0025642691, 0.0141562885, 0.0025279087, -0.017577622, 0.0060912212, 0.015430632, 0.005225499, -0.005443661, -0.0050211884, -2.9369624E-4, -0.012244774, 1.8580562E-4, -0.07119699, 0.020832738, -0.034434963, -0.0043424624, -0.01162838, 0.0125287315, -0.0072651403, -0.0024465309, 4.3199537E-4, 0.030307202, 0.002302821, 0.03992018, 0.01399007, -0.025736189, -0.007805351, 0.0061639417, 0.005911151, 0.0030681193, 0.014364062, -8.31959E-4, -0.016275577, 0.021095918, 0.017937763, -0.0013747668, 6.038412E-4, 0.02601322, -0.009751494, 0.017951615, -0.012639544, -0.027592298, 0.018644193, -0.0065690996, 0.0019461435, 9.4277144E-4, -0.015790772, -0.050031815, 0.002545223, 0.008511781, 0.021663832, -0.0048722844, -0.0164695, -0.023727713, -0.010894247, -0.0067630215, -0.004470589, 0.0035563866, -0.0117876725, 0.016289428, 0.0074175075, 0.018339459, 0.010194744, 0.003760697, -0.0063059204, -0.02102666, 0.032551154, -0.0218439, 0.03983707, 0.008290156, -0.021151325, -0.013255938, 0.037620824, 0.013214383, 0.033105217, -0.026594985, 0.017078968, -0.010769583, 0.01825635, -0.00957835, 0.0046437336, -0.02005705, -0.017785396, -0.007562949, 0.0032603096, 0.031193702, 0.006212422, 0.007091996, 0.01818709, 0.01871345, 0.0036429588, 0.021262137, 0.012057778, -0.009786123, -0.022508776, 0.03349306, -0.0032360693, 0.01730059, -0.0160401, 0.006468676, 0.0032170236, 0.010153189, -0.009010436, 0.005689526, 0.01809013, -0.01344986, 3.4412456E-4, 0.010845767, -0.010880396, -0.014211695, 0.0057657096, 0.032218717, 0.002910558, -0.0061985706, -0.0011920994, -0.009855381, -0.019225959, 0.0178131, -0.018505678, -6.91712E-4, 0.0019063202, 0.024808135, 0.031664655, -0.0068599824, -0.036429588, 0.001944412, -0.04036343, 0.0068253535, -0.014959679, -0.0033243732, -0.019987794, 0.03593093, 0.0231598, 0.003701828, 0.034545776, 0.0011081244, 0.056375828, 7.3889387E-4, 0.020112457, -0.035099838, 0.003137377, -0.01189156, 0.02201012, -0.004082746, -0.022176338, 0.007930015, -0.008948104, 0.009058917, 0.018284053, 0.017799247, 0.0019825038, 0.07280377, 0.015527593, 0.0036775877, 0.013546821, -0.003888824, 0.0033382247, 0.004127763, 0.021857753, -0.022785807, -0.007777648, -3.1144355E-4, -0.0016942183, -0.010097783, -0.048618957, -0.014377913, 0.0025227144, 0.005377866, 0.010658772, -0.003359002, -0.014267101, -0.0049553937, 0.005028114, 0.015707662, 0.027910883, -0.009010436, -0.011178205, 0.016081655, -0.008172417, -4.480112E-4, -0.025223682, 0.005717229, -0.026650392, -0.004242039, -0.007362101, 0.022328706, -0.012459474, -0.005592565, 0.016150912, 0.01505664, 0.02502976, -0.0071958825, -0.016760381, -0.025182126, -0.020597262, 0.027606148, -0.00672493, -0.014959679, -0.03188628, -0.0049069133 ], + "id" : "0b2d968c-574a-4528-8173-478e590f0f55", + "metadata" : { + "source" : "movies.csv" + } + }, + "ab35a1e9-ab3c-4686-8819-65f96398feec" : { + "text" : ",534-280-218-87101-74081-605-604-1571-1572-608-1573-861-1734-955-956-217-602-8373-954-163516-1858\r\n332562,A Star Is Born,Music-Drama-Romance,en,Seasoned musician Jackson Maine discovers ��� and falls in love with ��� struggling artist Ally. She has just about given up on her dream to make it big as a singer ��� until Jack coaxes her into the spotlight. But even as Ally's career takes off the personal side of their relationship is breaking down as Jack fights an ongoing battle with his own internal demons.,34.809,Warner Bros. Pictures-Live Nation Productions-Metro-Goldwyn-Mayer-Peters Entertainment-Gerber Pictures-Joint Effort,10/3/18,36000000,433888866,136,Released,,7.5,11237,Lady Gaga-Bradley Cooper-Sam Elliott-Andrew Dice Clay-Rafi Gavron-Anthony Ramos-Dave Chappelle-Alec Baldwin-Marlon Williams-Brandi Carlile-Ron Rifkin-Barry Shabaka Henley-Michael D. Roberts-Michael Harney-Rebecca Field-Derek Kevin Jones-Willam Belli-Dennis Tong-Josh Wells-Greg Grunberg-D.J. 'Shangela' Pierce-Eddie Griffin-Drena De Niro-Sanaa Chappelle-Leandro De Niro Rodriguez-Jacob Schick-Gabe Fazio-Benjamin Rice-Halsey-William H. Slattery III-Matthew Libatique-Robert S. Wilhelm Jr.-Luenell-Lukas Nelson-Anthony LoGerfo-Alberto Bof-Corey McCormick-Jesse Siebenberg-Tato Melgar-Don Was-Victor Indrizzo-George Doering-Michael Bearden-Lenny Castro-Chris Kelly-Don Roy King-Gena Rositano-Greg Scarnici-Michael Mancini-Richy Jackson-Christine Grady-Imani Wisdom-Christopher Martinez-Amanda Balen-Montana Efaw-Caroline M. Diamond-Sloan-Taylor Rabinor-China Taylor-Hunter Goligoski-Joey Courteau-Julian Astudillo,concert-country music-waitress-pop star-self-destruction-talent-addiction-death of father-alcoholism-remake-aspiring singer-singer-fame-tinnitus-falling in love-insecurity-alcoholic-death of mother-aspiration-death of parent-showbiz-emotional vulnerability-hearing impaired-brother brother relationship,/wrFpXMNBRj2PBiN4Z5kix51XaIZ.jpg,/dDYpjrwh1wNVQk0rEpc9P81wQt4.jpg,424694-1010821-336775-490132-487558-369972-375262-426426-743110-527508-335983-970218-484247-260513-338952-405774-447332-154738-297802-466282-282759\r\n68735,Warcraft,Action-Adventure-Fantasy,en,The peaceful realm of Azeroth stands on the brink of war as its civilization faces a fearsome race of invaders: orc warriors fleeing their dying home to colonize another. As a portal opens to connect the two worlds one army faces destruction and the other faces extinction. From opposing sides two heroes are set on a collision course that will decide the fate of their family their people and their home.,48.424,Universal Pictures-Atlas Entertainment-Legendary Pictures-Blizzard Entertainment-Tencent Pictures,5/25/16,160000000,433677183,123,Released,Two worlds. One home.,6.", + "embedding" : [ 0.010557022, -0.042551883, -0.0016822092, -0.03332376, -0.013977093, 0.023785342, -0.0147461025, -0.012014094, -0.014543732, -0.033809453, 0.02675345, 0.019144299, 0.010462582, -0.008391652, 0.0072583742, 0.037398167, 0.02281396, -0.02742802, 0.0018129072, -0.033647556, -0.013268794, 0.0045432295, -0.020439474, 0.013268794, 0.002109718, 0.012229956, 0.009045985, -0.0037168812, 5.485098E-4, -0.017255504, 0.01024672, -0.010300686, -0.019171283, -0.015596061, -0.012864051, -0.012418835, 0.009410253, -0.034241177, 0.008297212, 0.0023137755, -8.836868E-4, 0.021815596, -0.0070492574, -0.0024604944, -0.009862215, 0.024284523, 0.012209719, -0.010145534, -0.009133679, 0.034025315, 0.018483222, 0.02483767, -0.018280849, -0.022044951, -0.017741194, -0.006843514, -0.01236487, 0.02425754, 0.012783104, 0.004607314, 1.1007877E-5, -0.0061284695, -0.038369548, -0.020547405, -0.029438239, -0.0147461025, -0.031300053, -0.015056404, -0.0021754885, -8.533312E-4, 0.028709704, 0.016837269, 0.014692137, -0.0020270832, 0.0053054937, -0.0251075, -0.030517552, -0.0074877283, 0.003148556, 0.023785342, 0.019643482, -0.019886326, -0.0039057608, 0.008276975, -0.0055854404, 0.008297212, -0.0063544502, 0.008229755, -0.049918186, 0.0032851563, 0.003700017, 0.02358297, 0.0070087835, 0.009504693, 0.011305795, 0.003787711, -0.003635933, 0.022665555, -0.02366392, -0.030004878, -0.0033340626, -0.0015422358, 0.0030608617, -0.0072313915, -0.0129382545, -0.004047421, -0.0063713146, -0.0028618637, 0.018523695, 0.006813158, -0.009039239, -0.012149007, 0.023110772, -0.034780834, -0.001757255, -0.0065601943, 0.023016332, -0.026605045, -0.017161064, -0.014934982, 0.020952147, 0.0475437, 0.010934781, -0.032082554, 0.02549875, 0.022355253, -0.017687228, -0.015838906, -0.007831759, -0.008647989, 0.037533082, 7.757556E-5, 0.017336452, 0.012088296, -0.02549875, 0.035185575, -0.013896144, 0.0074539995, -0.013538622, -0.012971983, 0.02281396, 0.04136464, -0.014624679, -0.027684357, -0.02954617, 0.009585641, 0.01790309, -0.00842538, 0.023555988, -0.0015751212, 0.030274706, 0.014692137, 0.014449292, 0.01096851, 0.020952147, 0.00851982, 0.009052731, 3.7628363E-4, -0.004560094, -0.008459109, -0.01024672, 1.8677159E-4, -0.0011248456, -0.018982403, 0.0050660213, 0.021694174, 0.0072044088, -0.013201336, -0.014395325, -0.0076833535, -0.026982805, 0.025255904, -0.0072313915, 0.016688865, -1.336492E-4, 0.02752246, -7.926199E-4, -0.009457473, -0.032298416, -0.011852196, -0.0014891136, 0.0015751212, 0.02126245, 0.03761403, -0.01511037, 0.02521543, 0.009329304, -0.018941928, -0.0031974623, -0.0026038405, 0.0019748039, 0.019130807, -5.232134E-4, -0.0046680253, -0.6462921, 0.0037843382, -0.0058316584, -0.015811924, 0.006475873, 0.009039239, 0.013700519, 0.011818469, -0.03666963, -0.014894508, -0.011427217, 0.031138156, 0.024001203, -0.018064987, -0.017714212, -0.0050390386, 0.0045466023, -0.025552716, 0.004684889, 0.0132755395, -0.02637569, 0.02135689, 0.010718918, -0.0056731347, -0.010132043, -1.5314849E-4, -2.6034188E-4, -0.016149208, 0.005612423, 0.0013963601, -0.020385507, 0.016972184, 0.027954185, 0.0097205555, 0.034484025, -0.0014570714, -0.028601773, 0.041256707, 0.04168843, 0.02742802, -0.029923929, -0.004465654, 0.007629388, 0.0074742367, -0.021397363, 0.012068059, 0.02270603, 0.0033171985, 0.0017016031, -0.024028188, -0.0016467943, -0.0020810487, 0.016324596, -0.020655336, 0.0048805145, 0.015231793, 0.010071332, -0.028089099, 0.030787379, 0.0031974623, -0.011346269, 0.03003186, 0.019252231, 0.020601371, -0.0017319587, 0.010239974, -0.0034942732, 0.005012056, 0.0073123397, -0.009916181, -0.0018769912, 0.0063308403, -0.008189281, -0.010982001, 0.021114044, 0.009410253, 0.02733358, 0.0051975627, -0.014031058, 0.01799753, 0.0029832863, -0.0014933295, 0.008978528, -0.0010135416, 0.021896545, -0.0114676915, -0.025714612, 0.012337887, 0.002732009, -0.016230157, 0.007784539, 0.0096598435, 0.014233429, -0.011460946, 0.004327367, 0.021626716, -0.012776358, 0.014773085, 0.02598444, -0.050727673, -0.016473003, -0.018388782, 0.02954617, -9.6800807E-4, 0.029869964, 0.011346269, -0.011568877, -0.015461147, 0.03550937, -0.017660245, -0.0033374357, 0.012789849, -0.024217067, -9.823428E-4, 0.009889198, -0.025094008, 0.02203146, 0.016931709, 0.0073123397, -0.01453024, 0.009120188, 6.636083E-4, 0.005372951, -0.014759594, 4.962306E-4, 0.021586243, -0.003834931, -0.0010658208, 0.025040042, 9.975205E-4, 0.0041452334, 0.0061891805, 0.022598099, -0.012648189, 0.007825013, -0.0051672067, 0.02174814, -0.0013778094, 0.015663518, -0.014705628, -0.02656457, -0.008782903, -0.022625081, -0.019576024, -0.004688262, -0.012149007, -0.029708067, 0.005976691, -0.0013061364, -0.0045027556, -0.019009385, 0.0026780432, -0.0012555436, 0.0050289202, -0.003172166, 0.001241209, -0.019859344, -0.008857106, 0.008324195, -0.011602606, 0.002006846, 0.009545167, -0.0064556357, -0.027846254, 0.030625483, 0.0060508936, -0.017430892, -0.0034285025, 0.009868961, -0.016041277, 0.009936417, -0.0038450495, -0.017984038, 0.011703791, -0.012978729, 0.023367109, -0.016783305, 0.019778395, 0.012486293, -0.01010506, 9.325932E-4, 0.0063746874, -0.022625081, -0.012169245, 0.010833596, 0.027900219, 0.012007347, -0.0142873945, -0.0074405083, -0.014570714, -0.026024915, 5.822383E-4, -0.0037742197, -0.0025785442, -0.0042261817, 0.030085826, -0.007400034, 0.010111806, 0.009356287, 0.014138989, 0.042012226, 0.016257139, 0.0058721327, -0.0050828857, 0.0013221574, -0.031731777, -0.0041620973, -0.03550937, 0.018267358, -0.016392054, 0.026011422, -0.02830496, -0.0025414429, -0.003415011, 0.010314177, 0.038693342, -0.0123716155, 0.007582168, -0.005184071, 0.002391351, -0.015056404, -0.005359459, 0.016041277, 0.007865488, -0.021775123, 0.009578896, 0.017957056, -0.0032345636, -0.010314177, -0.015919855, -0.004802939, -0.009268593, -0.002737068, 0.0029377528, -0.01606826, -0.0047388547, 0.021302924, -0.013059678, 0.034484025, -0.0121422615, -0.0070357663, 0.022490168, 0.016769813, 0.005093004, -0.010118552, -0.019926801, 0.0034875274, 0.03022074, -0.015960328, 0.033863418, -0.02482418, 0.01809197, 0.00360895, -0.0011762816, 0.012385107, -0.009275339, -0.008290467, 0.005096377, 0.020722793, 0.034780834, 0.0075416937, -0.01077963, 0.0080206385, -0.003612323, -1.9794416E-4, -0.0044487896, -0.017498348, 0.010138788, -0.0010110119, -0.013390216, -0.019495076, -0.008857106, 0.017295977, -0.0019866088, -0.02386629, 0.0014975456, 0.012418835, -0.0060137925, 0.015272267, 0.022071933, -0.008870597, -0.020709302, 0.012668426, 0.017579297, -0.0055618305, -0.022463184, -0.007825013, -0.004394824, -0.024392454, -0.011481183, -0.009201136, 0.022719521, -0.0018516949, -0.007042512, -0.009841978, 0.0010438972, 0.020533914, -0.0145167485, -0.006927835, 0.026888365, 0.003168793, 0.017700719, -0.0044723996, -0.0035111373, 0.0233806, -0.020506931, 0.007271866, -0.019306196, -0.009423744, -0.0057945573, 0.0044589085, 0.01385567, -0.03510463, 0.0041249963, -0.013990584, -0.008337687, -0.014260412, -0.003791084, 0.013734248, 0.0059227254, -0.0035718486, -0.033647556, -0.020439474, -0.012000602, 0.07242185, 0.024230558, 0.016972184, 0.00851982, -0.019980766, 0.007285357, -0.01713408, -0.015218302, -0.01589287, 0.006357823, 0.026389182, -0.020169646, 0.022962365, 0.0037978296, 0.017188046, -0.0058147945, -0.0036190685, -0.0062127905, -0.013740993, 0.0024014695, -0.010712173, -0.022557624, -0.0014132244, 0.0458168, 0.0038888967, -0.022544133, 0.012014094, -0.0020220238, -0.006927835, 0.010496311, -0.006830022, 0.0027033396, -0.004310503, 7.015529E-4, 0.012918018, 0.018118953, 0.028925566, 0.019710938, 0.026537588, 0.009626116, 0.008715446, 0.0046309237, 0.009774521, -0.016540458, 0.01227043, -0.022867925, -0.012810086, 0.035644285, 0.035374455, -0.031407982, 0.02482418, 0.0032935885, -0.01589287, -0.017633263, 0.023555988, 0.0073932884, 0.005956454, -0.007878979, -0.009693572, -0.015623043, 0.017619772, -0.03723627, 0.009734047, 0.0019495076, -0.006516347, -0.008108333, -0.030490568, -0.0046680253, -0.0065601943, 0.021910036, -0.007379797, -0.018132444, -0.006833395, 2.1881367E-4, 0.017066624, -0.009558658, 0.0263622, -1.4229213E-4, 0.008216264, 0.019252231, -0.025620172, -0.030868327, 0.004381333, -0.019764904, 2.5032874E-5, 0.0045870766, 0.0010253466, 0.027603408, -0.010759393, 0.022166373, -6.00789E-4, 7.061906E-4, -5.5862835E-4, -0.011089932, 0.050835602, 0.0031165138, 0.019211756, 0.019427618, 0.0027252631, -0.010003875, -0.010644716, -0.015434164, -0.026874872, -0.017403908, -0.012864051, 0.0018702456, -0.0018078479, 0.0089245625, -0.02231478, -0.027090736, -0.04589775, -0.015825415, 0.005926098, 0.002737068, 0.005413425, -2.479045E-4, 0.02570112, 0.0054269163, 0.0014300887, 0.0040103192, 0.005588813, -0.0038214396, 0.009342796, 0.03340471, -0.027063752, 0.013936618, -0.021910036, -0.021518786, -0.005035666, 0.019441111, 0.004148606, 0.0039563538, -0.011379997, 0.005824913, -0.01366679, -0.033539627, 0.01655395, -0.0052211727, -0.00505253, 0.009410253, -0.024756722, -0.0035043918, -0.0038720323, -0.006435399, -0.007271866, -0.032298416, -0.0037573555, -0.008351178, 0.004985073, 0.036507733, -0.0032531144, 0.011852196, -0.015677009, 0.0013305895, -0.017511839, -0.022786979, -0.034403075, -0.011838705, 0.035023678, 0.0027168312, 0.04400895, 0.0012918017, 0.011245084, -1.3143577E-4, 0.0051537156, 0.0105637675, -0.019805377, -0.005507865, -0.027414529, 0.003700017, 0.0071976627, 0.03359359, -0.001550668, 0.010739156, 0.0057405913, 0.01608175, -0.0037337455, 0.021033095, -0.0051537156, -0.025930475, -0.023448057, 0.00253807, -0.02753595, -0.0061217234, -0.024513878, -0.010772885, 0.02954617, -0.014192955, 0.009045985, 0.007602405, 0.033728506, -0.0017555687, 0.014611188, -0.01655395, 0.015164336, -0.019845853, -0.014611188, -0.023434564, -0.004765838, -0.0043206215, -0.0050289202, 0.024851162, -0.004684889, -0.026685992, -9.2584745E-4, 0.024756722, -0.021181501, -0.037667993, 0.013417199, -0.011811722, 0.0109617645, -0.019576024, 0.008513074, -0.019103825, -0.020169646, -0.0013120389, -0.011150644, -0.0014823677, -0.011845451, -0.06130493, 0.025741596, -0.0016645017, 0.029384274, 0.0060610124, 0.039232995, 0.0169452, -0.007447254, -0.012162499, 0.011960127, -0.018820506, -0.017444383, 0.02694233, 0.018199902, -0.022692539, 0.0038450495, 0.0021012858, -0.0075956592, -0.028062116, -0.03003186, 0.027306598, 0.04435973, 0.02540431, -0.02319172, 0.0062802476, -0.038288597, 0.029708067, -0.0112990495, 0.009761029, 0.005636033, -0.018159427, -0.010536785, -0.002106345, -0.0024992821, 0.017161064, 0.0026797296, -0.035779197, 0.027455004, -0.017268995, 0.0047523463, -0.020506931, -0.01178474, 0.036156956, -0.02868272, 0.010914545, 0.009443982, 0.019643482, -0.004428553, 0.0022480048, 0.0031822845, 0.028601773, -0.023407582, 0.020749776, 0.0074742367, 0.009693572, -0.005841777, 0.028655738, -0.022112409, -0.002367741, -0.03340471, -0.008344432, 0.029681085, 0.0034605446, -1.17838965E-4, -0.006367942, -0.022719521, -0.02115452, -0.003200835, -0.0013120389, 0.010698682, -0.030328672, 0.013322759, -0.0073865424, -0.009369778, -0.0022614961, -0.009201136, 0.01057726, 0.0015548841, 0.0054910006, -0.0045297383, -0.0037202542, -0.00808135, -0.015703991, -0.04012343, -0.023272669, -0.0059868097, -0.028547807, 0.006880615, -0.027981168, 8.158082E-4, -0.0039259978, -2.1101396E-4, -0.008202773, -0.006880615, -0.013538622, -0.0016139089, 0.037317216, -0.016203174, -0.016203174, -0.007690099, 0.029438239, 0.0013668477, -0.016284123, 0.020196628, 0.013531876, 0.0150833875, -0.01578494, 0.020992622, -0.0040946407, -0.024014695, -0.015515112, 0.017579297, 0.026888365, 0.015353216, 0.0014351478, -0.020034732, 0.0044723996, -0.009450727, 0.026416166, 0.0040271836, -0.002192353, 0.029842982, 0.026672501, 0.03580618, 0.027981168, 0.008067858, -0.021491803, -0.005639406, -0.012877543, -0.029033497, -0.0069818003, 0.0074270167, 0.010327668, -0.014031058, 0.0011568877, -0.03445704, 0.0031215732, -0.013639808, -0.02897953, 0.01255375, 0.032568246, 0.04562792, 0.010988747, -0.007784539, 0.027981168, -0.0032564872, 0.0119264, -0.027468495, -0.010017366, 0.0044791456, -0.0014132244, 0.024271032, 0.021397363, -0.027927201, -0.008297212, 0.002581917, 0.040636104, 0.0044757724, 0.017687228, -0.01322832, -0.02223383, -0.0071032234, 0.0037101356, -0.007534948, -0.0016358325, 0.027293107, -0.040258344, 0.002280047, 0.002772483, 0.014907999, -0.003990082, 0.013079914, 0.021410855, -0.027077245, 0.0025245785, -0.017161064, -0.026254268, 0.013160863, -0.03202859, 0.04311852, 0.017849125, 0.0012487979, 0.03183971, 0.013187845, -0.009882452, 0.031246087, -0.007561931, 0.012182736, -0.0046342965, -0.010584005, 0.0013095092, 0.011224846, -0.02665901, 0.012027585, -0.012978729, 0.009794758, -0.0038551681, -8.9970784E-4, -0.001522842, 0.038234632, 0.011170881, -0.041013863, -0.005440408, -0.011245084, 0.0048602778, -0.0070560034, -0.008823377, -0.031407982, 0.007177426, -0.015501621, 0.016149208, -0.017295977, -0.027981168, 0.0031114547, -0.0045196195, 1.6400486E-4, 0.017080115, 0.1887717, -0.008722192, 0.008992019, 0.040959895, 0.008965037, 0.009268593, 0.026335217, 0.0024082153, -0.012466055, 0.015407181, -0.01703964, 0.013093405, 0.005464018, 0.0010287194, 0.020857707, -0.009578896, -0.02502655, -0.026119355, -0.019953784, -0.02579556, -0.017282486, -0.0056090504, -0.0043476042, -0.015353216, 0.010024112, -0.0030541162, -0.0062836204, 0.0131068975, 0.019225247, 0.0031553016, -0.020560896, 0.0047051264, -0.0025515615, 0.026308233, -0.011278812, -0.027900219, 0.012837069, 0.020830724, 0.0058721327, 0.008580532, -0.0058957427, -0.00253807, -0.01501593, 0.002629137, 0.019926801, 0.017336452, -0.027212158, 0.0057608285, -0.014449292, 0.009511438, -0.030085826, -0.010186008, 0.013511639, 0.026254268, 0.0012816832, -0.01010506, 0.011386743, 0.0076496247, -0.012074805, 0.0059227254, 0.020277577, 0.029438239, -0.031111173, -0.0032463686, -0.012668426, 0.006742328, -0.03040962, -0.009019002, 0.016769813, -0.032109536, -0.0031907165, -0.004232927, -0.02193702, 3.0355655E-5, -0.012108534, -0.015164336, 0.0068468866, 0.008958291, 0.0029141428, 0.015447656, -0.030517552, -0.00181628, 0.010091568, -0.01424692, -0.025552716, -0.013693773, 0.014921491, -0.02096564, -0.018105462, 0.0018584406, -0.012837069, -0.011305795, -0.0037742197, -0.014921491, -0.0030052098, -1.2880073E-4, 0.023785342, 0.01664839, 6.6402997E-4, -0.009126933, -0.020345034, 0.032568246, 0.029141428, -0.0033964606, -0.034025315, -0.016810287, -0.0053156125, 0.007717082, 0.018011022, -0.008067858, -0.0021400736, -0.02618681, -0.0061891805, -0.028601773, -8.613417E-4, 0.011885925, 0.012783104, -0.016000804, 0.026335217, -0.019764904, -0.012014094, -0.023502022, 0.013740993, -0.00654333, 0.0025836034, -0.034564972, -0.023205211, 0.009956655, -0.0054505263, -0.029411256, -3.391296E-5, -0.018051496, 0.006749074, 7.660587E-4, -0.008870597, 0.013032694, 0.023704393, 0.0042936387, 3.589978E-4, 0.0041216235, 0.008115078, -0.015123862, 0.021478312, 0.018051496, 0.006577058, -0.034322128, 0.003323944, -0.014192955, -0.011973619, -0.02250366, -0.013518385, -0.013187845, 0.009734047, 0.016675374, 0.03782989, 0.013909635, -0.037101354, -0.044143867, -0.016837269, 0.04060912, -0.040959895, 0.023879781, 0.029033497, 0.0039259978, -0.018334815, 9.814994E-4, -0.17333753, 0.019049859, 7.6437223E-4, -0.0056326604, 0.012762866, 0.021572752, -0.004698381, 0.017889598, -0.0023626818, -0.0087087, 0.014570714, 0.010422108, -0.0433074, 6.6655956E-4, 0.012621206, 0.017565805, -0.0053864424, 0.044494644, 0.019953784, -0.006226282, 0.03629187, -0.004033929, -0.026537588, -7.2558445E-4, 0.017525332, 0.018011022, 0.027846254, 0.010975256, -0.001618125, -0.008162298, -0.035671268, -0.0038720323, 0.014678645, 0.008297212, -0.0074877283, 0.01082685, -0.030328672, -0.015838906, 0.0041620973, 0.0012420522, 0.035374455, 0.01598731, 0.021572752, 0.019953784, 0.011683554, 0.031677812, 0.026874872, -0.019117316, 0.006499483, -0.018145936, -0.018726066, -0.019468093, 0.01024672, -0.0032176995, -0.0011492989, 0.03494273, -0.0014022626, 0.0033762234, 0.004371214, -0.01597382, -0.032784108, -0.016054768, 0.003323944, -0.008904325, 0.006091368, 0.007285357, -0.018375289, 0.028277978, -0.044980336, 0.014462783, -0.022733012, 0.008621006, 0.017349944, 0.002109718, 0.0024807316, -0.024082152, -0.04166145, 0.011912908, 0.007818268, 0.029654102, -0.015703991, 0.034430057, -0.006138588, 0.007480982, 0.013120389, 6.9101277E-4, 0.012155754, 0.00702902, 0.0078519955, -0.0069143437, 0.015852397, -0.010159026, -0.042983606, -0.011049458, 0.01606826, 0.011825214, 0.0022277678, 0.011798231, 0.008607514, -0.0018921691, 0.0039259978, -0.018968912, -0.019967275, 0.022557624, 0.03529351, 0.01245931, 0.007379797, 0.017970547, 0.011609351, 0.0031974623, -0.02222034, 0.013390216, 0.025228921, 0.0015059777, -0.011353015, 0.010523293, -0.012068059, -0.024621809, 0.007905962, 0.011002238, 0.031542897, 0.0044083158, -0.0045499755, -0.013235065, -0.0062431465, -0.021289432, -0.080031, -0.0147461025, 0.008749174, 0.0119264, -0.039232995, 0.026065389, -0.021141026, 0.016796796, -0.02684789, 0.032379366, 0.0038754053, -0.026119355, 0.006415162, -0.019049859, 0.025863018, -0.0074337623, -0.017080115, -0.013815195, -0.007838504, 0.04020438, -0.012196227, -0.01227043, -0.011002238, -0.013963601, -0.023272669, 8.077977E-4, -0.039286964, 0.02010219, -0.0033998333, 0.0161627, 0.022571115, -0.017363435, 0.023542497, -0.036588684, -0.023124263, -0.029708067, -0.024594827, -0.024851162, 0.021815596, -0.060171653, 0.014125498, 0.029222377, 0.0065736854, -0.037290234, 0.0038888967, -5.813951E-4, -0.029627118, 0.033539627, -0.014138989, -0.025188448, -0.006000301, -0.019157792, -0.03243333, -0.0052953754, 0.023110772, 0.004583704, 0.022085425, 0.010354651, -0.013295776, -0.014934982, 0.016351579, -0.013687028, -0.016257139, 0.008749174, 0.005612423, 0.011116915, -0.0023458176, 0.008364669, 0.017012658, -0.0010691936, -0.02752246, 0.0066681253, -0.048946805, -0.025201939, -0.024190083, 0.0047489735, -0.026982805, -0.015474638, 0.02308379, -0.02182909, -0.0076563708, -0.034564972, -0.0011138839, -0.0087559195, 0.026402673, 0.010428853, 0.007238137, 0.0119264, -0.0077035907, -0.049621377, 0.00586876, 0.02753595, 5.944649E-4, -0.0151913185, 9.435549E-4, 0.011137152, 0.016526967, 0.008978528, -0.0023222077, 0.0068468866, -0.012499784, -6.9185597E-4, -0.07263771, 0.035671268, -0.012041076, -0.0016130657, -0.0042970115, -1.4397856E-4, 0.0069345804, -0.009545167, 0.0044555357, 0.012256939, -0.0045499755, 0.022692539, -0.010449091, 0.0043779598, -7.120931E-4, 0.009781267, 0.0048332945, -0.012041076, -0.011197864, -0.017201537, -0.016864253, -0.011568877, 0.032703158, 0.0020490068, 0.0034048925, 0.018361798, -0.010159026, 0.008506329, -0.00582154, -0.021437837, 0.03464592, -0.0153127415, -7.268493E-4, 0.016540458, -0.017080115, -0.040824983, 0.004836668, 0.0035516117, 0.017970547, -5.776007E-4, -0.009761029, -0.018941928, -0.0062836204, -0.005072767, -0.009585641, 0.015069896, -0.010024112, 0.014098515, 0.0148540335, -0.0029276342, 0.048353184, 0.009376524, -0.007602405, -0.028035134, 0.008897579, -0.026672501, 0.049567413, 0.0018719321, -0.011353015, -0.011366506, 0.035185575, 0.005234664, 0.025943967, -0.030004878, 0.007602405, 0.0054505263, 0.018253867, -0.0070492574, -0.0043779598, -0.034214195, 0.004765838, -0.009976892, 0.010233228, 0.02366392, 0.015919855, 0.013869161, -0.013727502, 0.017768176, -0.0037033898, 0.02116801, 0.025943967, -0.011029221, -0.020803742, 0.01886098, -0.010212991, 0.03580618, -0.003089531, 0.019454602, -0.0026561199, 0.0076496247, -0.008722192, 0.003521256, 0.014786577, 0.0087559195, 9.224746E-4, 0.01799753, -0.017538823, -0.005531475, 0.0031704796, 0.006853632, -0.010880816, -0.015596061, -0.022935383, -0.024513878, -0.02135689, 0.009551913, -0.014395325, -0.020237103, 0.010044348, 0.019198265, 0.022368744, 0.011211355, -0.0028298215, 0.006857005, -0.027185176, 0.0032817835, 0.0070492574, -0.013781467, -0.02174814, 0.038369548, 0.01636507, 0.011170881, 0.020034732, -0.0100578405, 0.04117576, 0.0038720323, 0.019670464, -0.020385507, -6.9733686E-4, 0.004290266, 0.014462783, -0.00593959, -0.011892671, 0.010941527, -0.0027151445, -0.0046612793, 0.013599333, 0.033215832, -0.017484857, 0.070964776, 0.027481986, 0.001261446, 0.02184258, -0.015123862, 0.013815195, 0.0131811, 0.006819904, -0.0066681253, -0.028844617, 0.011670062, -0.025350343, -0.0060137925, -0.02868272, 0.0061520794, 9.7222417E-4, 0.019360162, -6.429496E-5, -0.0037506097, -0.013565605, -0.0010118552, -0.0039394894, 0.02088469, 0.019306196, -0.013079914, -0.017876107, 0.01140698, -0.011224846, -0.008303958, -0.02366392, -7.467702E-5, -0.03337773, -0.008263484, 0.001685582, 0.035428423, 0.0076158964, -0.022571115, -0.0056663887, 0.027927201, 0.0155420955, -0.0030288198, 0.0032750377, -0.024284523, 2.592879E-4, 0.026308233, -0.02106008, -0.0058518955, -0.029789016, -0.031623848 ], + "id" : "ab35a1e9-ab3c-4686-8819-65f96398feec", + "metadata" : { + "source" : "movies.csv" + } + }, + "3c1d7737-f701-4f61-a313-9785b86029fd" : { + "text" : "Persi-Rachael Harris-Skylar Astin-Adam Carolla-Horatio Sanz-Maurice LaMarche-Stefanie Scott-John DiMaggio-Rich Moore-Katie Lowes-Jamie Elman-Josie Trinidad-Cymbre Walk-Tucker Gilmore-Brandon Scott-Tim Mertens-Kevin Deters-Gerald C. Rivers-Martin Jarvis-Brian Kesinger-Roger Craig Smith-Phil Johnston-Reuben Langdon-Kyle Hebert-Jamie Sparer Roberts-Ava Acres-Isabella Acres-Bob Bergen-David Boat-Mike Carlsen-Reed Buck-David Cowgill-Jim Cummings-Terri Douglas-Sandy Fox-Eddie Frierson-Earl Ghaffari-Emily Hahn-Jennifer Hale-Daniel Kaz-Dave Kohut-Lauren MacMullan-Mona Marshall-Scott Menville-Laraine Newman-Paul Pape-Lynwood Robinson-Trenton Rogers-Jadon Sand-Kath Soucie-April Stewart-Fred Tatasciore-Jennifer Christine Vera-Elizabeth Daily-Will Deters-Debi Derryberry,support group-product placement-bullying-jail-racing-arcade-medal-self esteem-curiosity-precocious child-aftercreditsstinger-duringcreditsstinger-first person shooter-glitch-carefree-interrupted wedding-social reject-escape from jail-hoverboard-purpose of life,/zWoIgZ7mgmPkaZjG0102BSKFIqQ.jpg,/riKyo85CmJU48ZaSMLpuDNTZHuE.jpg,20352-62177-10191-38757-585-93456-10193-57800-62211-953-76492-9502-49519-14160-12-10681-2062-863-862-425-9806\r\n578,Jaws,Horror-Thriller-Adventure,en,When an insatiable great white shark terrorizes the townspeople of Amity Island the police chief an oceanographer and a grizzled shark hunter seek to destroy the blood-thirsty beast.,40.454,Zanuck/Brown Productions-Universal Pictures,6/20/75,7000000,470653000,124,Released,Don't go in the water,7.654,9184,Roy Scheider-Robert Shaw-Richard Dreyfuss-Murray Hamilton-Lorraine Gary-Jay Mello-Jeffrey Kramer-Carl Gottlieb-Susan Backlinie-Lee Fierro-Craig Kingsbury-Phil Murray-Fritzi Jane Courtney-Belle McDonald-Ted Grossman-Robert Nevin-Peter Benchley-Dorothy Fielding-David Engelbach-Joseph Oliveira-Beverly Powers-Ayn Ruymen-Christopher Sands-Rex Trailer-Joe La Creta-Denise Cheshire-Steven Spielberg,based on novel or book-beach-fishing-atlantic ocean-bathing-shipwreck-shark attack-police chief-ferry boat-dying and death-animal attack-long island new york-dead child-creature-skinny dipping-shark-great white shark-dead dog-child killed by animal-fourth of july-severed leg-fishing boat-animal horror-shark cage,/lxM6kqilAdpdhqUl2biYp5frUxE.jpg,/p3DeIBpSrg0R0yCIRhgEMvfY7mb.jpg,579-601-17692-9552-85-348-329-580-89-694-87-840-620-105-927-1366-218-539-165-679-1091\r\n399566,Godzilla vs.", + "embedding" : [ 0.016248005, -0.02524563, -0.0049184263, -0.025685878, -0.028052228, 0.041080896, -0.0017025322, 7.6312997E-4, -0.014597064, -0.040090334, 0.03076252, 0.032000724, 0.020567965, -2.4463152E-4, 0.0039003463, 0.016289277, 0.021283371, -0.025507027, 0.019219697, -0.024502706, 0.01894454, -0.0030146858, -0.011577219, 0.0170322, -0.0049115475, 0.019247212, 0.04410762, -0.0013542869, -0.018641867, -0.014720884, 0.019123392, -0.005066323, -0.010414681, -0.01945358, -0.018696899, 0.0068617207, 0.009589211, -0.025149323, 0.030267239, -0.0044472204, 0.0025039262, -5.761094E-4, -0.008935714, -0.0042030187, -0.012361416, 0.00813776, -0.005994977, 7.996742E-4, -0.023677235, 0.035962984, 0.031175256, 0.017706335, -0.020100199, -0.028176047, -0.0039313016, 5.6923047E-4, -0.005881475, -0.013654652, 0.0069201915, -0.0039760144, 0.025672121, -0.01595909, -0.02294807, -0.012643451, -0.004588238, -0.002173738, -0.02085688, -0.003387867, -0.010662323, -0.0031195893, 0.034559682, 0.023154438, 0.014982283, 0.0037730865, 0.018407984, -0.034752294, -0.015450049, -0.007855725, 0.0041514267, 0.004158306, 0.009740547, -0.009451633, -0.007979545, -0.0012519631, 0.021902474, 0.003910665, -0.014012355, 0.020581722, -0.040640645, 0.008447311, 0.024612768, 0.042566743, -0.013365737, 8.4137765E-4, 0.010462834, 0.02003141, -0.031367864, 0.020609237, -0.02624995, -0.04683167, 0.01169416, -9.897043E-4, -0.0086399205, -0.010875569, 0.0012278869, 0.005324282, -0.0056991833, -0.003934741, 0.010669202, -0.00806897, 0.013874778, -0.0046604667, 0.006063766, -0.05035368, -0.0056097573, -0.026511349, 0.02091191, -0.015271198, -0.003845315, -0.025892247, 0.031450413, 0.027075421, -0.0038281179, -0.022934312, 0.025328176, 0.0488128, -0.0054515423, -0.010208314, -0.005375874, 0.0027429685, 0.02192999, -8.787818E-4, 0.028176047, 0.013193765, -0.022686671, 0.048537645, -0.019316, -0.001678456, -0.013063065, -0.025011744, 0.030679973, 0.02206757, -0.016413098, -0.02593352, -0.02421379, -0.0011324418, 0.026538866, 0.019027086, 0.008550495, 0.013523952, 0.012127532, 0.013379496, 0.010394045, 0.023429595, -2.5537983E-4, -0.008213428, -0.0045607225, 0.008179033, -0.009121445, -0.01773385, 0.011852375, -0.0073122894, -3.7210647E-4, -0.017183537, -0.0013138733, 0.017513724, 0.026745232, -0.020389112, -0.0030748763, -0.010118888, -0.016220488, 0.03362415, -0.019797526, 0.015491323, -0.012148169, 0.02891897, 0.004976897, -0.003865952, -0.026208676, 0.004939063, 0.010084493, -0.007958908, 0.034091916, 0.023278259, 0.013090581, 0.011989954, 0.04171376, -0.03153296, 0.009816215, -0.030735005, 0.013812867, 0.023635961, 0.015917815, 1.9733896E-4, -0.63220006, -0.023236984, -0.013386374, -0.010270224, 0.024654042, 0.022328967, -0.011756071, -0.015450049, -0.01785767, 0.006902994, -0.024117487, 0.011226394, 0.022150116, -0.023512142, -0.021145793, -0.0038281179, 0.009032019, -0.015216166, 0.002536601, 0.008763742, -0.02231521, 0.0069133122, 0.024516463, -0.0054893764, 0.006858281, 0.0065246536, -0.008323491, -0.022617882, 0.019123392, 0.013207522, -0.021558529, 0.022466546, -0.00197081, -0.0022511259, 0.0363482, -0.0077525405, -0.011756071, 0.057232596, 0.020719301, 0.028726362, -0.032193337, -0.0064627435, 0.021572286, 0.007381079, -0.014624579, 0.024516463, 0.0030164055, 0.0085092215, 0.011824859, 7.149775E-4, -0.019426065, -6.517775E-4, -0.0067688553, -0.004344037, -0.0014505918, -0.02479162, 0.00661064, -0.043062024, 0.019481095, 0.0025004866, -0.017238569, 0.017830156, 0.010696718, 0.014624579, -0.008406037, 0.027240515, 0.0022115721, 0.0038797096, 0.005695744, -0.02828611, 0.016812075, 0.022796733, -0.021077003, -0.014996041, -0.005496255, 0.017211052, 0.023828572, 0.009554816, 0.008880683, 0.0114533985, 0.0017713213, -0.0018693459, -0.0030593986, 0.01595909, 0.011529067, -0.017362388, -0.041988913, 0.009458512, 0.02719924, -0.006445546, 0.010579776, 0.0147484, 1.7218791E-4, 0.011116331, -0.0113502145, -0.002270043, -0.012120653, 0.0035495216, 0.028643813, -0.07038508, -0.014775915, -0.019604916, 0.030432332, -0.015587628, 0.028107258, -3.6071325E-4, -0.015945332, -0.01766506, 0.026263708, -0.019673705, -0.016495645, 0.0071059223, -0.030542396, -0.006603761, 0.00883941, -0.028368657, 0.016234245, 0.01766506, 0.0037077367, -0.018793203, 0.015986605, 0.011205757, 0.015450049, -0.011907407, 0.03120277, 0.020416629, -0.0046948614, -0.008192791, 0.008921957, 0.010462834, 0.0076493565, -0.010861811, 0.02549327, -0.014129297, 0.016124183, 0.032688618, 0.015945332, -0.009843731, 0.022040052, 0.0026535424, -0.023003101, -0.009114566, -0.021379676, -0.015037314, -0.013778472, -0.015972847, -0.018683141, -0.0011496391, -0.010545381, -0.017747607, 5.180685E-4, 0.009252144, -0.003413663, 0.023952391, -0.0069442675, 0.0031247484, -0.025575817, -0.029139096, 0.016289277, -0.007023375, 0.010435319, 0.020155229, -0.002701695, -0.020499175, 0.014225602, -0.001169416, -0.006204784, 0.004044804, 2.9708326E-4, -0.023911119, 0.014693368, -0.0044988124, -0.010091373, 0.014720884, -0.015917815, 0.03128532, -0.019990135, 0.012980518, -0.010476592, 4.9254126E-5, -0.0018297922, -0.005485937, -0.0123407785, 0.0015907497, 0.015147377, 0.0147896735, 0.024612768, -0.003038762, -0.011260789, 0.014418212, -0.009197113, 9.991628E-4, -0.011136968, -0.0012571223, -0.0057026227, 0.0034566561, -0.004557283, -0.007931393, -0.003420542, -0.002275202, 0.043887496, 0.025768425, 0.014542032, -0.013750956, 0.03222085, -0.033156384, 0.0047189374, -0.033321477, 0.0033603513, 0.008605526, 0.019866314, -0.004309642, -0.013757836, 4.335868E-4, -1.1790895E-4, 0.025782185, -0.022301452, 0.010689838, -0.007030254, 0.017293599, 0.007284774, -0.002586473, 0.018352952, 0.004292445, -0.024488948, 0.00438531, 0.011824859, -0.009148961, -0.0033964657, -0.009382844, -0.005104157, 0.0136065, -0.010710475, 0.009492907, 0.008873804, -0.007422352, 0.010579776, -0.0034291404, 0.025823457, -0.003883149, 0.011597855, 0.021503497, 0.013861019, 0.0018349513, 0.0067035053, 0.0012046705, 0.019027086, 0.013675288, -0.019852556, 0.048922863, -0.016812075, 0.025892247, -0.009059534, 0.014624579, 0.013578984, -0.02180617, 0.01143964, 0.014266876, 0.029606862, 0.014528275, 0.01042844, -0.016069151, 0.027887132, 0.014156813, 0.021475982, -0.009699274, -0.032661103, 0.0013396692, -0.0067860526, -0.028313626, -0.023594689, -0.013455164, -0.0021857761, 0.009685516, -0.0096029695, -0.009224629, 0.0017377866, 0.0057748514, 0.0054137083, 0.021145793, -6.977802E-4, -0.02867133, 0.011893649, 0.01977001, -0.016536918, -0.015849026, -0.0044850544, -0.008564252, -0.040833257, -0.009293418, -0.0032055757, 0.0337067, -0.01887575, 0.011164484, -0.003597674, -0.009988189, 0.015367502, -0.0035770372, 0.0077594193, 0.007986424, -0.0022046932, 0.02542448, -0.0074636256, 0.002008644, 0.014473243, -0.024310095, -0.010208314, -0.004877153, -0.015904058, -0.006091282, 0.01226511, -0.0031247484, -0.03183563, 0.012877334, 0.004591678, -0.013145612, -0.01557387, -0.004158306, -0.010132646, -0.011102573, -0.011006269, -0.026676442, -0.018779445, -0.016055394, 0.073576905, 0.05668228, 0.016660739, 0.016041636, 0.007381079, 0.013530832, -0.015505081, -8.783518E-4, -0.010270224, -0.022095084, 0.02638753, -5.84708E-4, 0.0258097, 0.0033293962, 0.02911158, -0.01042156, -0.0040276065, -0.017527483, -0.0064042723, -0.011308941, -0.017720092, -0.009341571, 0.015312471, 0.040337972, 0.002942457, -0.017197294, 0.02408997, -0.0028719483, 0.021077003, 0.0012038106, -0.0027756433, 0.017004685, 0.0048221215, 0.004601996, 0.012003711, -0.0049081077, 0.020870637, 0.0015623742, 0.04240165, 0.020925667, -0.0054515423, 5.206481E-4, 0.010572896, -0.007917634, 0.01887575, -0.02796968, -0.009320933, 0.031010162, 0.030074628, -0.021393435, 0.025713395, 0.0034050643, -0.005066323, -0.01131582, 0.01849053, -0.008729347, -0.019563641, -0.009836853, 0.0010266785, 0.0036011136, -0.0089013195, -0.023828572, -5.369855E-4, -0.020994456, -0.01938479, -0.0074017155, -0.012106895, 0.008846289, -0.027914649, 7.582932E-5, 0.012629693, -0.031092709, -0.01710099, -0.01685335, 0.011756071, -0.0048668343, 0.016564434, -0.007271016, 0.019728737, 0.0221226, -0.029909534, -0.0057989275, 0.006662232, -0.016922139, 0.0062632547, 0.0051179146, -0.02530066, 0.011178241, -0.004106714, 0.01099251, 0.0082478225, 0.012691603, -0.02955183, -0.00514887, 0.032523524, 0.010841174, 0.02021026, 0.008674315, -2.6290363E-4, -0.0070164963, -2.364628E-4, -0.03153296, -0.010194556, -0.0103596505, -0.0067585367, -0.018531805, 0.0074017155, -0.0010593534, -0.023979908, -0.014899736, -0.025314417, -0.011281425, -0.008791257, -0.0066312766, 0.014053629, -0.004436902, 0.028946485, 0.025837215, -0.023677235, 0.00915584, 0.009658, -0.016248005, 0.021475982, 0.016963411, -0.010641686, 0.017651303, -0.0011169643, -0.026112372, -0.002942457, 0.024310095, -0.007367321, 0.02549327, -0.020650512, 0.0047086193, -0.015161135, -0.00514887, 0.0091352025, 0.007209106, -0.010311497, 0.018284164, -0.022645397, 0.015945332, 0.003057679, -0.006713824, -0.018834477, -0.03246849, -0.0043199603, -0.012533388, 0.014982283, 0.025782185, -0.013682168, 0.0031316273, -0.007470505, -0.009451633, -0.005606318, -0.036183108, -0.020375354, 0.004491933, 0.03285371, 0.006975223, 0.02524563, 0.008103365, -6.3973933E-4, 0.019921346, 0.013709683, 0.016550677, -0.009451633, -8.056933E-4, -0.025507027, 0.0026157084, 0.021242099, 0.01716978, 0.010627928, 0.015738964, 0.0073054107, 0.019150907, 0.006648474, 0.005269251, -0.014280633, -0.01880696, -0.020196503, 0.015793996, -0.021971263, -6.4059923E-4, -0.014720884, -0.020471659, 0.0312578, -0.02084312, 6.6209584E-4, -0.013957324, 0.023484625, 5.877175E-4, 0.003724934, -0.020540448, 0.024860408, -0.013207522, -0.011425883, -0.0072572585, -0.008633042, -0.0054446636, 0.011515308, 0.022273935, 0.00711968, -0.0123339, -0.0059846584, 0.013689047, -0.027350577, -0.003088634, 0.023484625, -0.018848235, -0.0069201915, -0.03095513, -0.011233273, -0.026071098, -0.01989383, 0.0024506145, -0.011831739, -0.010641686, -0.0063526807, -0.047244407, 0.01945358, 0.00813776, 0.049748335, 0.010861811, 0.04201643, 0.02600231, 0.005575363, -0.011185121, 0.007422352, 0.0012184284, -0.0057370174, 0.027722038, 0.011804223, -0.0147484, -0.010215193, 0.002314756, -0.009974431, -0.040448036, -0.04900541, 0.020719301, 0.013737199, 0.015339986, -0.024874168, -0.00826158, -0.033514086, 0.006971783, -7.042292E-4, -0.004316521, 0.015450049, -0.029249158, -0.0133313425, 0.008557374, 0.0032537282, 0.023181953, 7.9236535E-4, -0.01613794, 0.001798837, -0.007367321, -0.008942593, -5.980359E-4, 0.0012081099, 0.032165818, -0.033348992, 0.016729528, 3.0095264E-4, 0.014459485, 0.016935896, -5.662209E-4, -0.0013551468, 0.029826988, -0.010277104, 0.019302243, 2.2958388E-4, -0.004677664, -0.0032520085, 0.004264929, -0.013193765, -0.021118278, -0.010263345, -0.002662141, 0.033789244, -0.0012571223, -9.037178E-4, -0.005823004, -0.02103573, -0.007271016, 0.009754306, -0.00699242, 0.0033001609, -0.027006632, 0.009272781, 0.0014032993, 0.004529767, -0.013805988, 0.012464599, -0.012505872, -0.010146404, 0.007697509, -0.010634807, -0.011308941, -0.029992081, -0.01690838, -0.049610756, -0.030074628, 0.0077525405, -0.0029699728, 0.013235038, -0.012932366, -0.011425883, -0.014638337, 0.0062322994, -8.211708E-4, -0.016055394, -0.00782133, 0.015023557, 0.020182746, -0.007456747, -0.005936506, -0.010015705, 0.031092709, -0.0091352025, -0.0021324644, -0.004048243, 0.0024196594, 0.043447245, -0.02930419, 0.008598647, 3.552316E-5, -0.024227548, -0.0089013195, 0.014363181, 0.043144573, 0.0063217254, -0.011171362, -0.040640645, -0.022136357, -0.017045958, 0.024819136, 0.0018229132, -0.0017850791, 0.020609237, 0.022452788, 0.018022764, 0.027928406, 6.9595303E-6, -0.020774331, 0.0043749916, -0.010586655, -0.02816229, 0.005286448, 0.011817981, 0.004601996, -0.0011350214, -0.012065622, -0.028974002, 0.0054171477, -0.021448465, -0.017706335, -0.008990746, 0.012643451, 0.035935465, 0.0041995794, 0.011914286, 0.021902474, -0.006177268, 0.0027945603, -0.002015523, -0.016110426, 0.015339986, 0.011921165, 0.017527483, 0.03032227, -0.025713395, -0.005933067, 0.02059548, 0.017898943, 0.007828209, 0.021297129, -0.02479162, -0.0012063902, -0.0047842874, 0.0044265836, 0.0071609532, -0.010208314, 0.021682348, -0.012980518, 0.0020619556, 0.008997625, 0.01964619, 4.4455007E-4, 7.1110815E-4, 0.012554025, -0.010077614, -0.013489557, -0.0062322994, -0.015408776, -0.002263164, -0.029771956, 0.023690993, -0.0042683687, -0.00686516, 0.03153296, 0.015876543, -0.01716978, 0.013241917, 0.0031539837, 0.0058058067, -0.014775915, 0.0012683005, 0.004436902, 0.027625734, -0.030459847, 0.009878126, -0.032743648, 0.0069889803, -0.013750956, 0.0021651394, 0.0012244474, 0.038632, 0.004571041, -0.04683167, 0.0039656963, -0.008894441, 6.539271E-4, -0.013090581, -0.005124794, -0.020815605, -0.011749191, 0.0010559139, 9.768063E-4, -0.022782976, -0.030267239, 0.013180006, 0.005420587, -0.02542448, 0.023484625, 0.1943707, -0.013723441, -0.0038109205, 0.04862019, -0.010662323, 0.013764715, 0.022617882, 0.023443352, -0.011233273, 0.010566018, 0.014569548, 2.7386693E-4, -0.016949654, 0.0010808499, 0.0269516, -0.019040845, -0.02421379, -0.022301452, -0.0074980203, -0.026236193, 5.1333924E-4, 0.013482679, -0.013166249, -0.0147896735, 0.0065108957, -0.0018934221, -0.010449076, 0.0075117783, 0.0158903, 0.012368294, -0.016894622, -0.009265902, 0.009272781, 0.01055226, -0.016674496, -0.007346684, -0.015450049, 0.0012115494, 0.010964995, 5.821284E-4, -0.0065693664, 7.068088E-4, -0.0055031343, -0.002567556, -0.0065831244, 0.025094293, -0.026800264, -0.0014290952, -0.012801666, 0.0070921644, -0.037448827, 0.01417057, 0.0031006723, 0.024447674, 0.0031058313, -0.022769218, -0.0019725296, 0.0022614442, -0.0117147975, 0.0076012043, 0.027089179, 0.039457474, -0.034972418, 0.013744078, -0.013021791, 0.0044988124, -0.043144573, 0.0015623742, 0.0021152673, -0.033266447, -0.011597855, -0.03464223, -0.031587992, 0.008557374, -0.004233974, -0.013262553, -5.034508E-4, 0.014266876, 0.020815605, 0.023979908, -0.033954337, -0.0031746207, 0.009375965, -0.006751658, -0.0073191687, -0.029359221, 0.040640645, -0.010407803, 0.0066140797, -0.003910665, -0.017554998, -0.025603332, -0.009541059, 0.00845419, 0.0014832667, -0.009444755, 0.00985061, 0.007683751, -0.0052933274, 0.009541059, -0.027364336, 0.023333289, 0.020512933, -0.016371824, -0.024832893, -0.02549327, 0.0028633496, 0.021283371, 0.023801055, -0.008179033, -0.031587992, -0.020457901, 0.00941036, -0.017389905, 0.01564266, 0.020168986, 0.013812867, -0.02198502, 0.027749555, -0.008089608, -0.0017274682, -0.021393435, 0.01913715, 0.010903085, -0.0032468492, -0.043887496, -0.035605278, 0.011577219, 0.0032554478, -0.049032927, 0.00782133, -0.0110888155, 0.010909963, -0.0030215646, -0.0042477315, 0.010689838, 0.03692603, -0.0021066687, 0.018476773, -0.023828572, -0.016481888, -0.006197905, 7.235762E-4, 0.0019346956, 0.0054549817, -0.025479512, 2.212002E-4, 0.013049307, -0.011075058, -0.033156384, -0.02161356, 0.00985061, 0.0052451747, -0.0026105493, 0.043447245, 0.00190718, -0.015339986, -0.04182382, -0.025053019, 0.03312887, -0.0317806, 0.019756252, 0.021572286, -0.017114747, -0.03604553, -0.016220488, -0.17731099, 0.01741742, 0.010112009, -0.02396615, 0.009713032, 0.024640284, 0.043447245, 7.7688775E-4, 0.0061256764, -0.023236984, 0.024543978, 0.005561605, -0.017293599, -0.0074017155, 0.0032588872, 0.010834295, -0.012636572, 0.020650512, 0.0109856315, -0.007133438, 0.041080896, -0.0117147975, -0.010112009, 0.0086124055, 0.00502161, 0.011914286, 7.9236535E-4, 0.016027879, 0.009100808, -0.0049872156, -0.039017223, -0.009651122, 0.008289096, 0.015367502, -0.019316, -0.0065693664, -0.008364764, -0.016344309, -0.009424117, 0.0073191687, 0.024007423, 0.0129392445, 0.01849053, 0.0049975337, 0.016633224, -0.002084312, 0.026016068, -0.022796733, 0.014039871, -0.030845068, -0.019935103, -0.05263748, 0.010731112, -0.006940828, 0.0014720884, 0.024323853, 0.012361416, -0.0036286293, 0.012856698, -0.0068479627, -0.032248367, -0.010077614, 0.0017188695, -0.014720884, -0.006590003, -0.01887575, -0.030542396, -0.009355328, -0.024764104, 0.0065177744, -0.026511349, 0.0070784064, 0.0059640217, 0.0110613, 0.021214582, -0.017266084, -0.032028243, 0.015092346, 0.0051213545, 5.5289303E-4, -0.0027859616, 0.036788452, -0.021475982, 8.5771506E-5, 0.0077594193, -0.025630848, -0.007222864, -0.02275546, 0.0025194036, -0.009747427, 0.009802458, -0.013014913, -0.03610056, 0.0062391786, -0.0060293716, 0.014514517, -0.010215193, 0.0029407374, -0.0010258186, -0.0053036455, 0.003337995, -0.017059715, -0.015518839, 0.033734214, 0.010978753, 0.004034485, 0.01646813, 0.028974002, 0.031010162, 0.0013310706, -0.008997625, 9.2521444E-4, 0.020237776, 0.011742312, -0.020457901, 0.011425883, -0.02955183, -0.03992524, 0.010394045, 0.015271198, 0.055884328, -0.014184329, 1.6756613E-4, -0.010579776, 0.003907225, -0.02598855, -0.07908004, 0.0033036002, 0.010001946, 0.054453515, -0.043722402, 0.045235764, -0.0044334624, 0.020237776, -0.03533012, 0.032826196, 0.004048243, -0.024186276, -0.0019192181, -3.3642206E-4, 0.006541851, -0.0033397146, -0.012038106, -0.019302243, -0.014583305, 0.029194128, 0.0051557487, -0.01137773, -0.004591678, -0.0061497525, -0.029771956, 0.022851765, -0.026607655, 0.027240515, 0.009809337, 0.011680403, 0.013867898, -0.021957505, 0.010311497, -0.030212207, -0.03640323, -0.032110788, -0.008983866, -0.020457901, 0.0078006927, -0.039567534, 0.020870637, 0.0097887, 0.015656417, -0.025286902, -0.026112372, -0.0091076875, -0.037916593, 0.030624943, -0.012953002, -0.01620673, -0.013503316, -0.015560112, -0.02542448, -0.015271198, 0.02384233, 0.008736226, 0.028891455, 0.019591158, -0.017554998, -0.019549884, 0.00508696, -0.004227095, -0.01423936, 0.014514517, 0.0066450345, 5.180685E-4, -0.010400924, -0.0017936778, 0.0058505195, -0.029139096, -0.016055394, 0.043089543, -0.034091916, -0.009637364, -0.013097459, 0.014652095, -0.026690202, -0.004976897, 0.015367502, -0.045015637, -0.0015021837, -0.02842369, 0.003344874, -0.017775124, 0.015450049, 0.017513724, 0.014542032, 0.0027567262, -0.004663906, -0.039017223, -0.004877153, 0.041961398, 0.0031299077, 4.1552962E-4, 0.011240152, 0.023635961, 0.006094721, -0.00336895, -0.0064971377, 0.009974431, -0.0063079675, -0.0010954677, -0.072476275, 0.032633588, -0.019302243, -0.0028616297, -0.026786506, -0.0070715277, -0.0056407126, -1.8293622E-4, -0.0044093863, 0.010008825, 0.010380287, 0.01754124, -0.020746816, 0.010710475, 0.0056751072, 0.0062254206, 0.0041755033, -0.015587628, 0.007346684, -0.001245944, -0.012368294, 0.018765688, 0.005688865, 0.011852375, 0.01799525, 0.016977169, -0.004880592, 0.01086869, -0.009885005, -0.009314055, 0.0093966015, -0.0120793795, 4.4154053E-4, 0.010634807, 0.0022098524, -0.033073835, 0.004667346, 0.008351007, 0.0033104792, -0.0036699027, -0.019288486, -0.01880696, 0.007546173, -0.017334873, -0.00743611, 0.0063010887, -0.02103573, 0.011040663, -0.002369787, 0.0059777796, 0.021517254, 0.019990135, -0.017293599, -0.00941036, 0.004773969, -0.008798135, 0.048400067, 0.011831739, 0.007470505, -0.007546173, 0.019205939, 0.0055031343, 0.032881226, -0.03954002, -0.005038807, 0.008433553, 0.01201747, -0.0010696717, 0.014597064, -0.026855296, -0.03012966, -0.004791166, 0.015505081, 0.04127351, 0.0013697646, 0.0033087595, -0.0013637454, -0.008172154, -0.0026724595, 0.012003711, 0.034807324, 0.00896323, -0.023580931, 0.022975586, -5.7352975E-4, 0.0050560045, 0.01214129, 0.012478357, 2.4304614E-5, -0.004158306, -0.011721676, 0.022838008, 0.025727153, 2.6010908E-4, 0.016096668, 0.026855296, -0.014349422, -0.017706335, -0.010414681, 0.027625734, -0.009623606, -0.007773177, -0.011928043, -0.011900527, -0.02370475, 0.010132646, -0.010793022, -0.013503316, 0.01690838, -0.006872039, 0.036265656, 0.007367321, -0.022934312, 0.01404675, -0.020733058, 0.017018443, -0.00285991, -0.02084312, -0.02638753, 0.03293626, -3.9489288E-4, 0.0059915376, 0.03120277, -0.012175685, 0.054205872, 0.0130699435, 0.022342725, -0.028451204, 0.013379496, -0.01328319, -0.0042374134, -0.00985061, -0.01659195, 0.008254701, -0.009265902, -0.001691354, 0.011646008, 0.03227588, -0.02135216, 0.07297156, 0.009355328, -0.004880592, 0.028698845, -0.011859254, 0.016646981, 0.021379676, 0.023058133, -0.023801055, -0.015216166, 0.014528275, -0.01887575, 0.019522369, -0.036183108, 0.004983776, -0.0036286293, 0.017953975, 0.0029063427, -0.009018261, -0.024461431, -0.0030748763, 0.005111036, 0.028451204, -0.009637364, -0.030982645, -0.021696107, 0.0129392445, -0.019618673, 0.0070027383, -0.035440184, 0.0028134773, -0.027006632, -0.011302062, -0.006094721, 0.01487222, 0.007525536, -0.0034738535, 0.009747427, 0.004849637, -0.012120653, -0.0017266084, -0.01061417, -0.026731474, -0.031312834, 0.026621412, -0.0065762457, 0.0021565408, -0.024310095, -0.017087232 ], + "id" : "3c1d7737-f701-4f61-a313-9785b86029fd", + "metadata" : { + "source" : "movies.csv" + } + }, + "826ac7ac-0c8e-496e-b206-82116383aa6e" : { + "text" : "825,9809,Jesse Eisenberg-Mark Ruffalo-Woody Harrelson-Morgan Freeman-Dave Franco-Daniel Radcliffe-Lizzy Caplan-Michael Caine-Jay Chou-Sanaa Lathan-David Warshofsky-Tsai Chin-Richard Laing-Henry Lloyd-Hughes-Brick Patrick-Zach Gerard-Ben Lamb-James Richard Marshall-Jim Pirri-Christopher Logan-Varada Sethu-Justine Wachsberger-Simon Connolly-Dino Fetscher-Martin Delaney-Danielle Bird-Tai Yin Chan-Bruce Chong-Missy Malek-Krystal Ellsworth-Jessica Lee Keller-Luis Rosado-Savannah Guthrie-Gia Labarbera-Alexander Cooper-Michael Cooke,magic-secret society-illusion-vigilante-revenge-heist-on the run-illusionism-magician,/A81kDB6a1K86YLlcOtZB27jriJh.jpg,/qWE206uqSbEXLVATvbB6fUIX8WE.jpg,75656-297761-246655-131634-259316-262504-328387-283366-198663-294254-271110-262500-325133-101299-131631-127380-278927-207703-269149-293660-302699\r\n58574,Sherlock Holmes: A Game of Shadows,Adventure-Action-Crime-Mystery,en,There is a new criminal mastermind at large (Professor Moriarty) and not only is he Holmes�� intellectual equal but his capacity for evil and lack of conscience may give him an advantage over the detective.,32.782,Warner Bros. Pictures-Village Roadshow Pictures-Silver Pictures-Wigram Productions-Lin Pictures,11/22/11,125000000,334615000,129,Released,The game is afoot.,7.125,9463,Robert Downey Jr.-Jude Law-Noomi Rapace-Jared Harris-Rachel McAdams-Eddie Marsan-Kelly Reilly-Stephen Fry-Paul Anderson-Geraldine James-William Houston-Wolf Kahler-Iain Mitchell-Jack Laskey-Patricia Slater-Karima McAdams-Richard Cunningham-Marcus Shakesheff-Mark Sheals-George Taylor-Michael Webber-Mike Grady-Alexandre Carril-Victor Carril-Thorston Manderlay-Affif Ben Badra-Daniel Naprous-Lancelot Weaver-Vladimir Furdik-Alexander Devrient-Fatima Adoum-Stanley Kaye-Thierry Neuvic-Martin Nelson-Mark Llewelyn-Evans-Anthony Inglis-Ian Wilson-Pope-Pamela Hay-Laurence Dobiesz-Peter Stark-Roman Jankoviۍ-Fredrick Ruth-Carsten Hayes-Jonathan Christie-James McNeill-Laurentiu Possa-Maitland Chandler-Joe Egan-Clive Russell-Sala Baker,paris france-london england-detective inspector-steampunk-buddy-criminal mastermind-19th century-sherlock holmes,/y1MYZkwhZK6L0Jy4YMuPktzDOfn.jpg,/nVMalJRUsOeGP5xPx9ULmirZ4cJ.jpg,10528-46541-1865-56292-49538-285-20526-41154-58-38356-10138-10764-2080-27578-1858-36557-64635-2501-36668-39514-8373", + "embedding" : [ 0.0046385312, -0.02118744, -0.018500384, -0.046432335, -0.029960679, 0.031169854, -0.0019229248, -0.011661825, -0.023484873, -0.04146128, 0.02243692, 0.017452432, 0.012602295, 0.0041414257, 2.5946888E-4, 0.010150355, 0.023740143, -0.013119553, 0.011782742, -0.040896997, 0.0020488806, -0.0013216959, -0.018097324, 5.2943407E-4, -0.006485882, 0.01602829, 0.03565724, -0.008323157, -0.011063955, -0.0015551338, 0.015678974, 0.0015677295, -0.010701202, -0.03447493, -0.014913163, 0.01335467, 4.8367016E-4, -0.014792246, 0.025352377, -0.004994566, 0.0060358006, 0.00589473, -0.015786456, -0.017304644, -0.027448282, 0.012998635, 0.0031253824, -0.012172366, -0.012797106, 0.035361663, 0.031787876, 0.031196725, -0.016847843, -0.00988165, -0.019494595, -0.0070199347, -0.019843912, 8.1703305E-4, 0.0023898007, 0.0019447571, 0.0059719826, -0.034098744, -0.04476636, -0.015235609, -0.0109967785, -0.014227964, -0.0124142, -0.016874714, 0.008921027, -0.010130202, 0.024076026, 0.01717029, 0.006227253, 0.00256278, 0.020220099, -0.03447493, -0.036409613, 0.0021546832, 0.0062675592, -0.015531186, 0.012830694, -0.011205025, -5.3489214E-4, 0.0010647461, 0.020770947, 0.01452354, -0.012978482, 0.036597706, -0.022907156, 0.013126271, 0.0068184054, 0.035576627, -0.0059787002, 9.2451536E-4, -0.0045142546, 0.022772802, -0.029315785, 0.023229603, -0.024559695, -0.027045222, 0.022772802, -0.017546479, -0.012286565, -0.015222174, 0.005505107, -4.639371E-4, 0.0015358207, -0.01047952, 0.010506391, 0.009216604, 0.01549088, -0.0040507377, 0.018070454, -0.035952814, -0.00939798, -0.017264338, 0.022813108, -0.02859028, -0.01691502, -0.020112617, 0.028858986, 0.033104535, 0.008121628, -0.03622152, 0.030068161, 0.02187264, 0.0012704738, -0.020797817, 0.008605298, -0.0038861553, 0.02335052, -0.011802895, 0.01762709, 0.0132136, -0.025325507, 0.036409613, -0.026051011, 0.009115838, -0.025500165, -0.0197633, 0.025218025, 0.023498308, -0.019199017, -0.01790923, -0.024183508, 0.007987275, 0.019857347, -0.002542627, 0.025607647, 0.0022453715, 0.016135773, 0.018675042, 0.016740361, 0.027072093, 0.02263845, -0.0010571887, -0.0013544443, 0.0019833834, -0.004974413, -0.011124413, -0.0025745358, -0.015020645, -0.010170508, -0.012320153, -0.00865904, 0.015343092, 0.029262044, -0.010909449, 0.010224249, 0.0031757648, -0.0052834246, 0.020542545, -0.0259704, 0.011312507, 0.014805681, 0.0073759696, 0.009774168, -0.01640448, -0.035549756, -0.0102914255, 0.008974768, 0.0039701257, 0.03530792, 0.033991262, -0.0014274988, 0.014375752, 0.041541893, -0.026145058, -4.8031134E-4, -0.007765593, 0.011164719, 0.022221956, 0.008867286, -0.0072684875, -0.641884, -0.015987985, -0.01360994, -2.5296118E-4, 0.021980122, 0.018863136, -0.006025724, 0.005236401, -0.029477008, -0.013045658, -0.013374823, 0.015813326, 0.030471219, -0.017788313, -0.022356309, -0.016122337, 0.014241399, -0.012635883, 7.515361E-4, 0.013576352, -0.03197597, 0.023256473, 0.007953687, -0.019722994, 8.716139E-4, 0.009135991, -0.0053237304, -0.027757293, 0.008262699, 0.0016878073, -0.025553906, 0.01141999, 0.008303004, 0.014416058, 0.031626653, -2.323884E-4, -0.014429493, 0.051698964, 0.03055183, 0.036382742, -0.013636811, 0.004080967, 0.01261573, 8.4978156E-4, -0.02721988, 0.03095489, 0.013361388, 0.0064455764, -0.0014132237, -0.012736647, -0.0113595305, -0.015652103, -0.009962262, -0.00859858, -0.0011294034, 0.004994566, 0.0017986484, -0.040440198, 0.022195086, 0.0018355954, -0.022947462, 0.024452213, -0.009525615, 0.012434353, -0.011003496, 0.020193228, -0.010049591, -0.016417915, 0.0035032497, -0.03055183, 0.009028509, 0.014711633, -0.01996483, -0.007590934, 0.0090419445, 0.0020539188, 0.02953075, -0.0026786593, -0.012736647, 0.015074386, 0.00424219, -0.0024956036, -0.006714282, 0.011278919, 0.016794102, -0.015235609, -0.029638233, 0.009592791, 0.010976626, 1.9628108E-4, 0.015652103, 0.016538832, 0.019145276, 0.0124813765, -0.023484873, -0.0064422176, -0.0026585064, 0.0075304755, 0.03522731, -0.06260841, -0.016928455, -0.022772802, 0.028348444, -0.005995495, 0.0040540965, 0.02457313, -0.008894157, -0.012776953, 0.026843693, -0.01936024, -0.009619662, -0.00891431, -0.03235216, 0.010217532, -0.013085965, -0.0259704, 0.01905123, 0.009095686, 0.0051557897, 0.0030279767, 0.0019665894, 0.005538695, -0.002640033, -0.010183943, 0.019803606, 0.026601858, -0.004097761, -0.015611798, 0.009290498, 0.017976407, 0.0012763517, 0.008712781, 0.014416058, -0.031116113, 0.0068452763, 0.0053035775, 0.012823977, -0.011460296, 0.0033873704, 0.0014459722, -0.023726707, -0.009102403, -0.017667396, -0.024734354, -0.008766522, -0.017707702, -0.040440198, 0.0046519665, -0.018419772, 0.006012289, -0.0010236006, 0.0142548345, -0.0057167127, 0.004114555, -0.008061169, -0.0015836839, -0.023216167, -0.023081815, 0.008491098, -0.017774878, 5.290142E-4, 0.021254616, 0.0034495087, -0.02357892, 0.018728783, -0.0018372748, -0.010130202, 0.014993775, -0.004883725, -0.013757729, 0.014120481, -0.0130792465, 0.0046318136, 0.008672475, -0.009868215, 0.025849482, -0.008746369, 0.028993338, 7.733684E-4, -0.019131841, 0.0019094894, -0.014322011, -0.030444348, -0.018097324, 0.017022502, 0.014872857, 0.019548336, -0.023672966, -0.0017029219, 0.0018943747, -0.009706991, -0.0121186245, 0.0076379576, -0.009021792, 0.014725069, 0.04484697, 0.012394047, -0.011063955, -0.0029003415, 0.0038189788, 0.03138482, 0.028805245, 0.0025678182, -0.0013359708, 0.011507319, -0.046916004, -0.0031875207, -0.017103113, 5.5892873E-5, -0.013052376, 0.025580777, -0.013139706, -0.018339159, 0.009250192, -0.0063884766, 0.039365377, -0.0055151833, 0.013448717, -0.009774168, 7.464978E-4, 0.013072529, -0.013052376, 0.027811034, 0.016673185, -0.010029438, -0.0037450849, 0.011782742, -0.010929602, 0.0032127118, -0.011426708, -0.007893228, 0.010587002, 0.003442791, 0.016122337, -0.0032227882, -0.024747789, 0.025500165, -0.012179083, 0.03761879, -0.017788313, -0.002865074, 0.030390607, 0.02668247, -0.0015458971, 0.012098472, -0.015074386, 0.017049372, 0.012998635, 0.0012167327, 0.06669274, -0.020596286, 0.03202971, 0.0053539597, 0.002750874, 0.00583763, 0.010405626, -4.4924224E-4, 0.02266532, 0.014187657, 0.026104752, 0.015544621, -0.018433208, 0.025943529, 0.0071072644, -0.002542627, 0.0043060076, -0.0113595305, -0.0045209723, -0.0016290279, -0.030444348, -0.018151065, -0.008034298, 0.0010781813, 0.018258547, -0.010486238, -0.01854069, 0.0021093392, 0.0155043155, 0.016498527, 0.022947462, -0.0043698256, -0.026212236, 0.00600893, 0.033238888, -0.010882579, -0.025298636, -0.0030716413, -0.016673185, -0.03904293, -0.017022502, 0.0037685966, 0.028375315, -0.01973643, 0.0012830694, -0.010002567, 0.0068587116, 0.0199917, -0.0047392957, -1.6710132E-4, 0.019064665, -0.007349099, 0.0039365375, -0.009861497, -0.013005353, 0.025150849, -0.0049374662, -0.009525615, 0.009968979, 4.0830662E-5, 3.0082435E-4, -0.0015954397, 0.008719498, -0.034958605, 0.0155580565, -0.010271273, 7.7126914E-4, -0.004860213, -0.0070064995, 0.009559203, -0.011883507, -0.018957183, -0.0429929, -0.029933808, -0.003385691, 0.08706063, 0.031841617, 0.005931677, -2.3679684E-4, -0.010519826, 6.423744E-4, -0.007557346, -0.0050382307, -8.640566E-4, -0.017049372, 0.032620866, -0.0035234026, 0.026091317, 0.010492955, 0.0146175865, -0.009317368, -0.0021261333, -0.0046553253, -0.008303004, -0.005327089, -0.017103113, -0.012629165, 0.0051994543, 0.033050794, 0.005538695, -0.008578427, 0.021603933, 0.0195349, -0.0015761266, -0.0022369744, -0.004000355, 0.019588642, 0.013918952, 0.0026383535, -0.006472447, 0.013388258, 0.035899073, 0.02050224, 0.022504097, 0.012266412, 0.0044806665, 0.009801039, 0.012871, 0.002636674, 0.021294922, -0.025889788, -0.018688478, 0.023189297, 0.033453852, -0.036651447, 0.012871, 0.0076043694, -0.024667177, -0.01059372, 0.023175862, 2.8759902E-4, -0.009921956, -0.0099286735, -0.019561771, 0.005186019, -0.006771382, -0.033185147, 0.025903223, -0.016780667, -0.022504097, -0.011366248, -0.013623375, 0.0013955899, -0.011137849, 0.018124195, 0.015987985, -0.027098963, -0.00808804, -0.0013065812, 0.018406337, -0.0132136, 0.033534463, -0.0031085883, 0.019239323, 0.005259913, -0.02998755, -0.038478646, 0.010304862, -0.018661607, -0.014214529, -0.0014031472, -0.0019229248, 0.0066874116, -0.013233753, 0.0050382307, -0.002488886, 0.0035401967, -0.012555271, 3.363019E-4, 0.021966686, 0.016283562, -7.6497137E-4, 0.023767013, 0.014819116, -0.0075304755, 0.008303004, -0.010587002, -0.017385256, -0.013636811, -0.020206664, -0.016095467, -0.0047292192, 0.0027391182, -0.018554125, -0.010694484, -0.02024697, -0.022786237, 0.007987275, 0.010116767, 0.008034298, -0.008833698, 0.024049155, 0.016082032, -0.016364174, 0.0079738395, 0.00578053, -0.011440143, 0.012971764, 0.028375315, -0.011097543, 0.03278209, -0.012837412, -0.018742219, 0.0052531953, 0.026548117, -0.012864282, 0.024747789, -0.02670934, -0.019158712, -0.009075533, -0.028079739, 0.018218242, -0.009572638, -0.011762589, 0.017546479, -0.012844129, 0.0023646096, 0.003152253, 0.008853851, -0.013542764, -0.034286838, 0.011339378, -0.0059417533, 0.004175014, 0.026991481, -0.0038895141, 0.008618733, -0.010412344, 8.8253006E-4, -0.023175862, -0.033050794, -0.016995631, -7.620324E-4, 0.03568411, 0.004806472, 0.027139269, 0.0020354453, 0.022813108, 0.0036241673, 0.010647461, 0.010002567, -0.012709777, -3.356721E-4, -0.025567342, 0.010459367, 0.013515893, 0.026548117, 0.008994921, -0.0051289187, -0.003286606, 0.024976188, 0.008054451, 0.026118187, -0.010190661, -0.024949318, -0.028267832, 0.008672475, -0.032244675, -0.00253423, -0.02095904, -0.012850847, 0.030444348, 8.4558304E-4, 0.0045377663, -0.021066522, 0.013415129, -0.012555271, 0.0069326055, -0.024022285, 0.013206882, -0.024358166, 0.0031673678, -0.024331296, -0.0043127253, -0.004282496, 0.0019128482, 0.02998755, 0.0053909067, -0.00988165, -0.008491098, 0.018809395, -0.019064665, -0.026763082, 0.019279629, -0.021093393, 0.006640388, -0.021160569, -0.0127568, -0.0248284, -0.0019044512, -5.1300736E-5, -0.009384545, 0.006287712, -0.025621083, -0.033212017, 0.029880067, 0.005202813, 0.046593558, 0.012776953, 0.04917313, 0.029315785, 0.012373894, -0.013475588, 0.016283562, 3.883636E-4, -0.0065497, 0.029584492, 0.018755654, -0.028402187, -0.0037114967, -0.0155043155, -0.012373894, -0.03901606, -0.02813348, 0.031357948, 0.02149645, 0.019951394, -0.020945605, -0.015786456, -0.042616714, -0.007013217, -0.0010269594, 0.007960404, 2.3868617E-4, -0.035576627, -0.016122337, 0.014631022, 0.0033604999, 0.016740361, 9.858138E-4, -0.029127691, 0.008632169, -0.01643135, -0.004225396, -0.0069729113, -0.0046889135, 0.040682033, -0.028429057, 0.003983561, 0.004924031, 0.0063716825, 0.008141781, -0.010956473, -0.004302649, 0.033695687, -0.013415129, 0.019884218, -0.0021664393, -0.0056428183, 2.0593769E-4, 0.03584533, -0.011426708, -0.013771164, -0.01526248, -0.0051356363, 0.032674607, 0.0021009422, -0.002030407, 0.011305789, -0.022235392, -0.013119553, -0.0049173133, -0.009794321, -0.0010664255, -0.0346899, 0.0041951668, -0.011688695, 0.0035838615, 0.002488886, 0.003906308, -0.0061096945, -0.0076849815, 0.0070803934, -0.011876789, 0.007523758, -0.010089897, -0.010728072, -0.034609288, -0.024868706, -0.011628237, -0.024196943, 4.7191427E-4, -0.011950683, 1.874904E-5, -0.014980339, 0.0074901697, -0.018191371, 0.022141345, -0.022786237, -0.0018305571, 0.0069124526, -0.004437002, 0.0032983618, -0.012750083, 0.027488587, -0.0150878215, 0.0039936374, -3.4585355E-5, 0.013623375, 0.038021848, -0.017076243, 0.023014639, 0.0074028405, -0.013509176, -0.018258547, 0.006133206, 0.030283125, 0.0050449483, 5.9954944E-4, -0.027784163, 3.978103E-5, -0.009592791, 0.024385037, -0.0130792465, 0.0033420264, 0.026051011, 0.034582417, 0.025285201, 0.024505954, -0.012279848, -0.028079739, -0.0028466003, -0.012629165, -0.041595634, 0.004080967, 0.0043899785, 0.014241399, 0.0014568884, -0.004020508, -0.037457567, 6.024884E-4, -0.026521247, -0.036570836, 0.0023327009, 0.025473295, 0.03229842, 0.011997707, -0.011970836, 0.009008356, 0.006190306, 0.009861497, -0.0069326055, 0.0064657293, 0.0037383672, 0.008303004, 0.017694267, 0.024761224, -0.0070400876, 0.002460336, 0.0021781952, 0.023283344, -0.00928378, 0.028751504, -0.009921956, -0.016216386, -0.0045176134, 0.0052162483, -0.009075533, -0.0023965184, 0.015101257, -0.015531186, -0.0048333425, 0.004772884, 0.016726926, -0.006734435, 0.015410269, 0.00583763, -0.01193053, -0.0047930367, -0.005370754, -0.014174222, 0.01455041, -0.028697763, 0.03340011, -0.007866357, -0.008867286, 0.02095904, 0.017183725, 0.00404402, 0.010076461, -0.003462944, 0.0021446068, -0.024237249, 0.004678837, -0.013616658, 0.02523146, -0.022302568, 0.0068251234, -0.008618733, 0.00820224, -0.0031052295, -0.013038941, 9.538526E-6, 0.031008631, 0.013415129, -0.04608302, -0.0050617424, -0.01856756, -0.0013913914, -0.0025778948, 0.0034763792, -0.024076026, -0.0047426545, 0.0023007921, 0.0029624796, -0.011252048, -0.026857128, -0.002210104, -0.0022588067, -0.0036779083, 0.008437357, 0.17799062, -0.016162645, 0.006848635, 0.039123543, 0.0023511744, 0.01762709, 0.012286565, 0.009135991, -0.0098749325, 0.018325724, -0.0032295058, -4.3748636E-4, -0.0075640636, -0.0011310828, 0.012555271, -0.014671328, -0.010029438, -0.032567125, -0.013918952, -0.03759192, -0.010781813, 0.01452354, -0.009754015, -0.03055183, -0.011137849, -0.0048803664, -0.010506391, 0.0010387152, 0.019978264, -0.012844129, -0.013180012, -0.007879793, -0.014805681, 0.007879793, -0.024492519, -0.0044101314, -0.004578072, 0.005804042, 0.0057771713, -5.7519804E-4, 0.0018036866, -0.0026316359, -0.015181868, -0.0032714913, 0.010627308, 0.0014728428, -0.012488094, -0.0036241673, -0.0188497, 0.014805681, -0.044685747, -0.004749372, 0.019185582, 0.022450356, 7.532155E-4, -0.0113595305, 0.015477445, 0.018191371, -0.005518542, -0.0088068275, 0.0036140908, 0.03436745, -0.029853197, 0.0050046425, 0.0043698256, 0.017640525, -0.043664668, -1.8011675E-4, 0.0035368379, -0.015678974, -0.008444075, -0.032970183, -0.011762589, 0.0027156065, -0.007832769, -0.010573567, 0.02093217, 0.0018204807, -7.171082E-4, 0.028482798, -0.024640307, -0.024761224, 0.023592355, -0.0033168353, -0.0075170402, -0.006274277, 0.011097543, -0.006398553, -0.0076178047, -0.016162645, -0.010882579, -0.011137849, -0.008235828, 0.0020472012, -0.0068217646, -0.010634026, 0.035442274, 0.023310214, -0.016673185, -0.0071274173, -0.029262044, 0.022960898, 0.02599727, -0.007866357, -0.024613436, -0.020327581, 0.004752731, 0.0048803664, 0.029826326, -0.009545768, -0.021832334, -0.03904293, -0.010358603, -0.015477445, 0.009868215, 0.023713272, -0.0043328786, -0.016579138, 0.030363737, -0.017116548, 0.012521682, -0.022826543, 0.015423704, 0.0055118245, -1.2123243E-4, -0.020461934, -0.02192638, 0.0022252186, 0.003943255, -0.04143441, 0.021778593, -0.014577281, 0.012884435, 0.00800071, 0.009196451, 0.0051960954, 0.02192638, -0.011325942, 0.014671328, -0.0133681055, -0.0054715187, -0.010701202, 5.3027377E-4, 0.016807538, 0.0034461499, -0.015356528, -0.0125351185, -2.81931E-4, -0.0150878215, -0.022275697, -0.015652103, -0.0068116877, 0.01133266, -0.0014560487, 0.035952814, -0.006469088, -0.011003496, -0.034045003, -0.014322011, 0.05336494, -0.0399834, 0.018379467, 0.034233097, -6.016487E-4, -0.019830476, 0.0018439924, -0.17154168, 0.026991481, 0.014039869, -0.03581846, 0.007066958, 0.02218165, 0.031653523, -0.0031539325, -7.6245226E-4, -0.024613436, 0.017533043, 0.010855707, -0.044013985, 0.0063380944, -0.0034125617, 0.020220099, -0.006398553, 0.026145058, 0.026279412, -0.0031455355, 0.04336909, -0.005222966, -0.0043127253, 0.010943037, 0.012400765, -8.716139E-4, 0.032593995, 0.016995631, 5.3741125E-4, -0.008276134, -0.032217804, -0.021254616, 0.015517751, -0.0027525534, -0.017748008, -0.0026971328, -0.0057704537, -0.01933337, -0.011265484, -0.01790923, 0.03869361, 0.012031295, 0.018728783, 0.010163791, 0.013905517, 0.015652103, 0.04621737, -0.028402187, 0.0032463, -0.010627308, -0.016323868, -0.03431371, 0.036973897, -0.010063026, 0.01358307, 0.013529329, 0.0042589842, -0.0032143912, 0.0042220373, 0.008504533, -0.033453852, -0.01429514, 0.0057738125, -0.003966767, -0.014510104, -0.011231896, -0.01973643, 0.016995631, -0.017062807, 0.012844129, -0.02383419, 0.009209886, 0.01597455, -0.0051322775, 0.012931459, -0.016216386, -0.03444806, -0.0046889135, 0.0017667395, 0.013435282, -0.007328946, 0.039123543, -0.009021792, 0.010546696, 0.012360459, -0.021966686, 0.008544839, 0.0018574278, 0.0059216004, -0.014174222, 0.013945823, -0.020824688, -0.038881704, 8.0317794E-4, 0.0017700983, 0.0039365375, -0.0029154562, 0.011473731, 1.4191016E-4, -0.01455041, 6.973751E-4, -0.01668662, -0.011312507, 0.015383398, 0.023699837, 0.004920672, 0.0059787002, 0.007940251, 0.016928455, 0.0066538234, -0.023444567, -0.005538695, 0.029342655, 0.0067814584, -0.022705626, 0.024411907, -0.016417915, -0.024505954, -0.005276707, 0.019978264, 0.051591482, -0.008786675, 0.012004425, 0.0029910295, -0.0030179003, 0.004282496, -0.090876244, -0.012609012, 0.004557919, 0.031357948, -0.026951175, 0.044013985, -0.001637425, 0.015961114, -0.03342698, 0.03337324, 0.009068815, -0.025701694, 0.02095904, 0.0052632717, 0.009868215, -0.0033050794, -0.011440143, -0.009552485, 0.0039566904, 0.021590497, -0.0070064995, -0.0066168765, -5.407701E-4, -0.02312212, -0.009921956, 0.019427417, -0.027676681, 0.02859028, 0.008282851, 0.006223894, 0.011493884, -0.026883999, 0.0044638724, -0.04052081, -0.007013217, -0.014926598, -0.001215893, -0.030417478, 0.015517751, -0.044981323, 0.008067886, 0.008188805, 0.008464227, -0.016256692, -0.011399836, 0.0042724195, -0.041676246, 0.0248284, -0.008900874, -0.015356528, -0.009525615, -0.0048165484, -0.014778811, -0.015584927, 0.018070454, 0.032647736, 0.029853197, -0.0014375752, -0.012904588, -0.03380317, 0.0038290555, -0.022060733, -0.033641946, 0.02169798, 0.013569634, 0.01452354, -0.004020508, -0.015598362, 0.011896942, -0.020690335, -0.019575207, 0.027085528, -0.045572475, -0.01381147, -0.025903223, 0.004047379, -0.02398198, -0.014926598, 0.033158276, -0.042616714, 0.007167723, -0.034206226, 0.007275205, -0.019373676, 0.017640525, 0.009948826, 0.010828837, 0.014631022, -0.016565703, -0.04382589, 0.005236401, 0.020220099, 0.011997707, -0.010318297, -9.6818E-4, 0.019615512, 0.010969908, -0.007046805, 4.824106E-4, 0.013146424, -0.028724633, -0.00242003, -0.066424035, 0.032137193, -0.016108902, -0.010553414, -0.0044235666, -0.017667396, 0.0067243585, 9.2619477E-4, 0.0059216004, 0.016606009, -0.0064489353, 0.005350601, -0.006925888, 0.008255981, -0.009189733, 0.011567778, 0.010385473, -0.0096935555, -0.006526188, -0.0033705763, 2.8801887E-4, 0.023310214, 0.027837904, 0.0037753142, -0.0063918354, 0.024935883, -0.0044101314, 0.019252758, -0.029262044, -0.018057019, 0.024250684, -0.017694267, 0.0020236894, 0.0032849265, -4.272E-4, -0.0381562, 0.0039365375, 0.0038962318, 0.012884435, 0.005542054, -0.0197633, -0.019521466, 0.003966767, 0.0033151559, -0.014711633, 0.013085965, -0.033212017, 0.013388258, 0.004020508, 0.012111907, 0.03055183, 0.011903659, -0.017546479, -0.024868706, 0.016901584, -0.0051188422, 0.047587767, 0.008820263, -4.6687605E-4, -0.015961114, 0.026669035, 0.011137849, 0.025567342, -0.039365377, -0.0028029357, 0.007295358, 0.016740361, 0.0072684875, 0.014429493, -0.012407483, -0.0155580565, -0.0015836839, 0.01073479, 0.031599782, 0.0124276355, 0.015235609, 0.01813763, -0.0016903264, -0.0123000005, 0.02243692, 0.012400765, -0.016780667, -0.013106118, 0.02716614, 0.0021446068, 0.02398198, -0.018755654, 0.017533043, 0.0036611143, 0.015786456, -0.0017633807, 0.013798035, 0.028482798, -0.0031740854, 0.02599727, 0.016417915, -0.020260405, -0.016606009, 0.00953905, 0.022356309, 0.0048333425, -0.01882283, -0.015638668, -0.017277773, -0.01668662, 0.0010017682, -0.006677335, -0.0072819227, 0.0032311853, 0.03471677, 0.0351467, 0.011231896, -0.017250901, 5.1641866E-4, -0.04108509, 0.0066907704, -0.013240471, -0.02269219, -0.019521466, 0.043288477, 0.022074169, 0.009921956, 0.016646314, -0.0133143645, 0.051725835, -0.0034495087, 0.012138777, -0.035496015, 2.9200746E-4, -0.004416849, -0.012105189, 0.0026299565, -0.016861279, 0.012138777, -0.025580777, 0.0021781952, 0.014886293, 0.036087167, -0.014039869, 0.065402955, 0.016606009, -5.222966E-4, 0.017533043, -0.006751229, 0.0076984167, 0.008994921, 0.020072311, -0.027515458, -0.017976407, -5.72259E-4, -0.012044731, 0.005273348, -0.036409613, 0.0068217646, -0.004000355, 0.010600437, 0.034555547, 0.0033974468, -0.01882283, -0.0022151421, 0.00261988, 0.016135773, 0.001016883, 0.0018271983, -0.015665539, 0.031761006, -0.013636811, 0.0033722557, -0.030417478, 0.0030514884, -0.024922447, 0.0113595305, -0.0039701257, 0.024855271, 0.006170153, 0.005152431, 0.011836483, 0.014940034, 0.015423704, -0.024479084, 0.0023108686, -0.017936101, -0.018554125, 0.020394757, -0.021738287, -0.007396123, -0.032137193, -0.010929602 ], + "id" : "826ac7ac-0c8e-496e-b206-82116383aa6e", + "metadata" : { + "source" : "movies.csv" + } + }, + "5935cd73-67e0-424d-a4ae-8c419eb5fa98" : { + "text" : "Grey and he relaxes into an unfamiliar stability new threats could jeopardize their happy ending before it even begins.,188.422,Universal Pictures-Perfect World Pictures,1/17/18,55000000,368307760,105,Released,Don't Miss the Climax,6.699,7194,Dakota Johnson-Jamie Dornan-Eric Johnson-Luke Grimes-Rita Ora-Eloise Mumford-Victor Rasuk-Marcia Gay Harden-Andrew Airlie-Max Martini-Brant Daugherty-Arielle Kebbel-Fay Masterson-Dylan Neal-Kim Basinger-Gary Hudson-Jennifer Ehle-Callum Keith Rennie-Tyler Hoechlin-Ashleigh LaThrop-Amy Price-Francis-Robinne Lee-Kirsten Alter-Hiro Kanagawa-Jaclyn Jonet-Guillaume Campanacci-Ben Corns-Michelle Harrison-Laura Jacobs-John Emmet Tracy-Brad Harder-Adil Zaidi-Nathan Dellemme-Jordan Gardiner-Tenz McCall-Catherine Lough Haggquist-Benita Ha-P. Lynn Johnson-Kwesi Ameyaw-Marci T. House-Fraser Aitcheson,based on novel or book-eroticism-sequel-bdsm,/9ZedQHPQVveaIYmDSTazhT3y273.jpg,/9ywA15OAiwjSTvg3cBs9B7kOCBF.jpg,341174-216015-164431-925130-454983-8966-336843-24021-18239-50620-50619-537915-222935-419478-466282-351819-296096-417678-462919-449176-321612\r\n8488,Hitch,Comedy-Drama-Romance,en,Dating coach Alex 'Hitch' Hitchens mentors a bumbling client Albert who hopes to win the heart of the glamorous Allegra Cole. While Albert makes progress Hitch faces his own romantic setbacks when proven techniques fail to work on Sara Melas a tabloid reporter digging for dirt on Allegra Cole's love life. When Sara discovers Hitch's connection to Albert ��� now Allegra's boyfriend ��� it threatens to destroy both relationships.,24.876,Columbia Pictures-Sony Pictures-Overbrook Entertainment,2/11/05,70000000,368100420,118,Released,The cure for the common man.,6.5,5124,Will Smith-Eva Mendes-Kevin James-Amber Valletta-Julie Ann Emery-Adam Arkin-Robinne Lee-Nathan Lee Graham-Michael Rapaport-Jeffrey Donovan-Paula Patton-Philip Bosco-Kevin Sussman-Navia Nguyen-Matt Malloy-Maria Christina Thayer-Ato Essandoh-Marlyne Barrett-Jack Hartnett-David Wike-Frederick B. Owens-Jenna Stern-Austin Lysy-Adam LeFevre-Joe Lo Truglio-Ryan Cross-Beau Sia-Fran Kranz-Amy Hohn-Mimi Weddell-Caprice Benedetti-Rain Phoenix-Anya Avaeva-Brielle Barbusca-Kimberly Cash-Valbona Coba-Michelle Deighton-Michelle DiBenedetti-Alexa Lane-Christina Lauren-Rebecca Mader-Amy Metroka-Maria Nomi-Jennifer Pedersen-Keri Uribe-Olivia Weston-Dianne Zaremba-Joanna Lu-Mercedes Renard-Tony Travis-Ptolemy Slocum,speed date-romantic comedy-dating,/x3W9H3nhGQbWSlyI8Amp2F6Z6cz.", + "embedding" : [ 0.015405806, -0.03628309, -0.013803049, -0.042086173, -0.020891102, 0.044241603, -1.836132E-4, -0.01216575, -0.020379877, -0.046452302, 0.015115651, 0.032939408, 0.021816831, -0.004259049, 0.012718425, 0.0074265655, 0.022466224, -0.018265897, 0.009195125, -0.024068981, 0.014024119, 0.0032348738, -0.020794384, 0.009354019, 0.0013005125, 0.012407546, 0.022604393, -0.009091498, 0.005758179, 0.009443828, 0.007081144, -0.013174382, -0.00938856, -0.029153587, -0.017865207, -0.0075232834, 3.7154416E-4, -0.0092780255, 0.015986115, -0.0035923852, -0.0038169092, 5.379942E-4, -0.011343647, -0.015433439, -0.01309148, 0.013443811, 0.032552537, -0.007440382, 0.002310871, 0.023737377, 0.013457628, 0.042555947, -0.031944595, -0.016193368, -0.010749522, 0.006010337, -0.004601016, -1.2651068E-4, 0.010611353, 0.010183031, 8.068834E-5, -0.028711447, -0.031999864, -0.017713223, -0.024124248, -0.0039792573, -0.014797864, -0.022286605, 0.015751228, 0.0010561267, 0.023336686, -0.0045077526, 0.015101834, 0.0037858214, 0.028131139, -0.024524936, -0.03421056, 0.0017081101, -0.004462848, 0.016372986, 0.011184753, 0.0039170817, -0.013388543, 0.008656266, 0.015129468, 0.010618262, -0.027992971, 0.013602705, -0.028490378, -0.00886352, 0.0139826685, 0.027633732, -0.0065699196, 0.018196812, -0.001867004, 0.0028687268, -0.014397174, 0.030866878, -0.01877712, -0.035371177, -0.009727074, -0.004017254, -0.008898062, -0.013360909, -0.008338478, -0.010044862, -0.0020068998, -0.013436902, 0.024414402, 0.0019965372, 0.0095750885, -0.019730484, 0.013885951, -0.048663, 0.0013816867, -0.014189921, 0.024055164, -0.0081795845, -0.017851392, -0.026956705, 0.015267637, 0.030977413, 0.008145043, -0.033630252, 0.019730484, 0.036310725, 0.009443828, -0.008918787, -0.009899785, 0.002841093, 0.024980893, -0.010894598, 0.02702579, 0.03249727, -0.01839025, 0.044683743, -0.01662169, 0.00846283, -0.026569834, -0.016469704, 0.035481714, 0.04932621, -0.040372882, -0.0059965197, -0.019012008, 0.004559566, 0.007654544, -0.0030984322, 0.017906658, 0.004373038, 0.02632113, 0.012518081, 0.022355689, 0.02535395, 0.011509449, 0.011447273, 0.009450736, -0.003651107, -0.017644137, 0.0018255535, -0.013215832, 0.0052435007, -0.017257266, -0.00174697, 0.0074541993, 0.005730545, 0.004601016, -0.027191592, -0.01287041, -0.016345352, -0.014162288, 0.036973935, -0.015709776, 0.019537048, 2.1146282E-4, 0.023613025, 0.014410991, -0.0071847704, -0.036918666, -9.833723E-5, 0.0010785791, 0.01692566, 0.03545408, 0.03183406, -0.008925696, 0.017160548, 0.025602654, -0.022245154, 0.01772704, -0.0016649324, 0.0031640623, 0.019343613, 3.123907E-4, -0.0026873804, -0.63447046, -0.008248669, 0.016704591, 0.0068842536, 0.009644172, 0.015999932, 0.017616505, -0.0021105262, -0.03310521, 4.6658908E-5, -0.037858214, 0.025948074, 0.0039170817, -0.0029101775, -0.004480119, -0.02024171, 0.013678698, -0.02698434, -0.007841071, -0.0013307369, -0.024234783, 0.017271083, 0.017215814, -0.016013747, 0.024870358, 0.003827272, -6.869573E-4, -0.026569834, -0.0025768455, -0.010811698, -0.0043661296, 0.032607805, 0.009955052, -0.0073436643, 0.046535205, -0.013830683, -0.017892841, 0.03307758, 0.027039606, 0.030231303, -0.039958376, 0.0015621694, -8.363522E-4, -0.012683883, -0.012041398, 0.025948074, 0.005740908, -0.012746059, -5.919664E-4, 0.004179602, 0.008027599, 0.00820031, 5.215867E-4, -0.003271143, -0.009782341, 0.012020674, 0.01847315, -0.012041398, 0.0015345357, -0.0053022224, -0.024290051, 0.012352278, -0.0038825395, -0.0026562924, -0.015682142, 0.018887656, -0.0023505944, -0.0078065293, 0.0050776983, -0.021568129, 0.0046666465, 0.005630373, -0.0050466103, 0.0011934318, 0.028103506, 0.017478336, 0.034818504, 0.028158773, 0.0073643895, 0.029153587, -0.011778878, -0.017436884, 0.017188182, 0.003986166, 0.03302231, -0.010424825, -0.035371177, 0.019993005, 0.015447256, 0.0014775412, 0.007226221, 0.028407477, -0.0023972262, 0.010638987, -0.005806538, -0.009671806, -0.0034421268, 0.014259006, 0.032082763, -0.060849477, 0.001452498, -0.032911774, 0.02579609, 0.005516384, 0.016069015, 0.0047875443, -0.016331535, 0.018003376, 0.018569868, 0.005761633, -0.0059101647, 1.343906E-4, -0.036614694, -0.011958498, -0.0060552415, -0.028462743, 0.025713189, 0.010569902, -0.008096684, -0.033492085, 0.019495597, 0.016414437, 0.0094023775, -0.027606098, 0.011350555, 0.013554346, 0.0025578474, 0.007896339, -0.003699466, -0.009243484, 0.009519821, -0.007889431, -0.0029395383, -0.013429994, -0.004801361, 0.006155414, 0.020656215, -0.013326367, 0.014369541, -0.012518081, -0.029485192, -0.01961995, -0.0047599105, -0.004196873, 0.0024628565, -0.0023350504, -0.024041347, -0.006556103, 0.0036165647, -0.019012008, 0.0020725299, 0.019854836, 0.009367835, 0.007661452, -0.012428271, 5.125194E-4, -0.03611729, -0.017975742, -0.0027685545, -0.024455853, 0.016124282, 0.025782272, -0.01119857, -0.027537014, 0.015861763, -0.0030397105, -0.010549177, 0.023405772, 0.006860074, -0.0112538375, 0.009208941, -0.021125989, -0.02120889, 0.031143216, -0.008055232, 0.0151432855, -0.01401721, 0.015626876, 0.009768524, 0.012863502, -0.007889431, -0.009540546, -0.03368552, -0.014756413, 0.036835764, 0.010141579, 0.015999932, -0.0048600826, -0.0045664744, -0.015060384, -0.018445516, 3.952919E-4, -0.008600999, 0.0050915154, 2.9814205E-4, -0.009298751, 0.014480076, 0.006797898, -0.009160582, -0.010300473, 0.042224344, 0.007875614, -0.002601025, -0.014756413, 0.00285491, -0.019163994, 0.015405806, -0.021692479, -0.013519803, -0.01216575, 0.02632113, -0.01839025, -0.01591703, -0.0132711, 0.014410991, 0.019730484, -0.003094978, 0.029623361, -0.01891529, 0.014687329, -0.002423133, -0.017271083, 0.046175968, 0.014355724, -0.024359135, 0.0018773667, 0.030783977, -0.009070773, 0.019951554, -0.0036234732, -0.025326315, 0.0092573, -0.004003437, 0.0045837453, 5.962841E-4, -0.012407546, 0.017519787, -0.021816831, 0.044877183, -0.018182997, 0.0011139849, 0.008566457, 0.018873839, 0.003782367, 0.010072496, -0.012559531, 0.0027081058, 0.019785753, 4.7495478E-4, 0.015378172, 0.0018946377, 0.033132844, 0.0085250065, 0.009692532, 0.024138065, -0.0061001466, 0.002647657, 0.006656275, 0.042555947, 0.032248564, 0.0037236453, -0.022521492, 0.0086493585, 0.0053402185, 0.021443777, -0.0076200017, -0.037112102, -5.46198E-4, -3.1541314E-4, -0.023765009, -0.0115509, -0.011108761, 0.0048289946, 0.005474933, -0.015433439, -0.0054162117, -0.014701146, 0.010086312, 0.0059965197, 0.01569596, 0.0014619972, -0.033353914, 0.021043086, 0.037858214, -0.017934293, -0.024856541, 0.0014015484, 0.0023074166, -0.027260676, -8.186493E-4, -0.009250392, 0.04280465, -0.038189817, -0.003253872, -0.008193402, 0.00491535, 0.016635507, -0.034763236, 0.01869422, -0.005184779, 0.001309148, -0.0032745972, -0.012138117, -0.017533602, 0.008145043, -0.007903247, -0.0021502497, -0.009761616, -0.012027582, -0.002457675, 0.0094023775, 0.0013186472, -0.036034387, 0.009354019, -0.028960152, 0.0065595573, 0.001115712, 0.0039516236, 9.922237E-4, -0.017257266, -0.0069913343, -0.022935998, -0.015640693, -0.030424738, 0.06958174, 0.047530018, -0.0015233095, 0.0095750885, -0.011702886, 0.011937772, -0.008490465, -0.025036162, -0.0043626754, 0.004514661, 0.021457594, 9.6372643E-4, 0.014936032, 0.011502541, 0.00727458, -0.011675252, 0.020614764, -0.0123039195, -0.009222758, 0.0090431385, -0.003685649, -0.017671771, 0.0111916615, 0.02372356, 0.0011105306, -0.0065630116, 0.02332287, 0.0051122406, -0.0061485055, 0.0052607716, -0.007640727, 0.011212387, 0.00562001, 0.008676992, -0.0025423034, -0.0015543974, 0.018307347, 0.0016122556, 0.03050764, -0.002314325, -0.00500516, 0.010411008, 0.004321225, -0.011440366, -8.527597E-4, -0.02601716, -0.02455257, 0.037498973, 0.018210629, -0.030369472, 0.024511121, 0.009968868, -0.012739151, -0.009202032, 0.00930566, 0.004328133, 0.0054334826, -0.019302161, -0.029733896, 0.007723628, 0.003699466, -0.04457321, -0.0019844475, -0.019495597, -0.0068428027, -0.034707967, -0.013823775, 0.0022469677, -0.011661435, -0.0060966923, -0.0013644155, -0.02543685, 0.012504264, -6.66232E-4, 0.018984374, -9.231394E-4, 0.019385064, -0.0061519598, 0.008207219, -6.4421137E-4, -0.0413677, -0.011578534, 0.019730484, -0.0115509, -0.009036231, -0.009955052, -0.016483521, 0.015640693, -0.018058645, 0.01573741, 0.001324692, 8.570775E-5, -0.018846205, -0.021858282, 0.046866808, -0.009423102, 0.008898062, 0.026127694, 0.004732277, 0.0015405805, 0.006860074, -0.016262451, -0.008151951, -0.023765009, -0.021264156, -0.020476596, -0.014120837, 0.008815161, -0.027094875, -0.02720541, -0.01979957, -0.028849617, -0.0068324404, 0.0031623351, -9.274571E-4, 0.0050017056, 0.009319476, 0.013941218, -0.003447308, 0.00793779, 0.012317736, -0.01899819, 0.0196614, 0.030480007, -0.0037236453, 0.02336432, -0.008241761, -0.028904883, -0.007854888, 0.019495597, 0.0035716598, -0.002773736, -0.0029239943, 0.0030345293, -0.011889413, -0.016870394, -0.009312567, 0.0021105262, -0.0010181303, 0.016165733, -0.009492187, 0.010507727, -0.004469756, 0.004528478, -2.3553439E-4, -0.023405772, 0.0012012038, -0.019205444, 0.0017754673, 0.019081092, 4.7927254E-4, -0.0060034283, -0.02173393, -0.006435205, -0.013823775, -0.037968747, -0.013720148, -0.003557843, 0.019564683, 0.0049568005, 0.033132844, -0.012393729, 0.030369472, 0.023474855, 0.005999974, 0.027896253, 0.0075992765, -0.014687329, -0.04457321, 0.017934293, 0.011433457, 0.022576759, 0.01803101, 0.012967129, 0.003269416, 0.043606028, 6.196001E-5, 0.0012780601, -0.0037789128, -0.017008562, -0.0124766305, -0.013720148, -0.013727057, -0.011702886, -0.035426445, -0.009471462, 0.014300456, 0.014880764, -0.0067426306, -0.019329796, 0.035205375, -0.0105629945, 0.013326367, -0.025478302, 0.009098406, -0.015516341, 9.248665E-4, -0.013374726, -0.004462848, 0.0045215692, -0.012255561, 0.024234783, 0.016580239, -0.013809958, -0.015088018, 0.024303867, -0.0028151865, -0.030037867, 0.020490412, -0.020338427, -0.02125034, -0.016262451, -0.007854888, -0.03324338, -0.010832423, -0.003906719, -0.00793779, 0.004611379, -0.017644137, -0.0154887065, -0.0011675252, 0.003462852, 0.040234715, -0.014590611, 0.048663, 0.02817259, 0.013727057, -0.0053540356, 0.010873874, -0.022300422, 0.016967112, 0.019896287, 0.007412749, -0.020891102, 0.0075094667, -0.005388578, -0.0013955035, -0.037747677, -0.032607805, 0.017561236, 0.03390659, 0.024372952, -0.019371247, -0.008594091, -0.014659695, 0.0070742355, -0.0065906453, 0.008766801, 0.026252046, -0.028573278, -0.014438625, -0.003716737, 0.0113160135, 0.010742613, 0.010763339, -0.03539881, -0.008960238, -0.03094978, 0.018873839, -0.0036718321, -0.011778878, 0.040676855, -0.022383323, -0.0041208803, 0.029291756, 0.0057823583, 0.008310845, -0.0032607804, -0.0016588875, 0.03443163, -0.010942958, 0.021678664, 0.013333276, -0.0064801103, 0.0369463, -0.0060241534, -0.01001032, -0.009588905, -0.014853131, -0.012663158, 0.033132844, 0.018362615, -0.0035785683, 0.010148488, -0.020697664, -0.023129433, 0.007412749, 0.002202063, 0.012580257, -0.036227822, 0.008566457, -0.022797829, -0.0026217503, 0.0016537062, 0.008787527, -0.005295314, 2.4589704E-4, -0.0064904727, -0.0067011802, -0.0074058403, -0.022051718, -0.009409286, -0.033381548, -0.019385064, -0.013015488, -0.004991343, 0.015322904, -0.0053643985, -9.766797E-4, -8.363522E-4, -0.011530175, -0.018942924, -0.018597502, -0.020835834, -0.0038341803, 0.0266251, -0.01216575, -0.0076959943, 0.0015448984, 0.031198483, 0.013022397, -0.018818572, 0.010113946, 0.005084607, 0.02706724, -0.010217573, 0.014272823, 0.00577545, -0.02084965, 0.0011321194, 0.020214075, 0.02102927, 0.018887656, -0.0035543889, -0.009098406, -0.0243315, -0.014286639, 0.053139668, -0.0071433196, 0.0055405633, 0.022880731, 0.0131674735, 0.026777087, 0.016207185, -0.0043937634, -0.027840985, -0.0015440348, -0.010169214, -0.019260712, 5.164054E-4, 0.0073574814, 0.017036196, 0.014272823, -0.020614764, -0.042445414, -0.0038479972, -0.01891529, -0.022742562, -0.01375469, 0.01260789, 0.04324679, 0.0065699196, -0.003716737, 0.00513642, 0.0047599105, 0.008345387, -0.01913636, -0.008600999, 0.026652735, 0.0065181064, 0.026072426, 0.025906624, -0.022245154, 0.003927444, 0.021968817, 0.023309054, 0.004663192, 0.013070756, -0.0035682057, -0.0044144886, 0.0043937634, -0.017353984, -0.014714963, -0.011820329, 0.022120802, -0.019606132, -0.0038859935, 0.009153673, 0.020490412, 0.0030224395, 0.013139839, 0.017395435, 0.0062763114, -0.02040751, -0.026666552, -0.013968851, -0.021568129, -0.03589622, 0.022880731, -0.0038721766, 0.0091053145, 0.016649324, 0.043440226, -0.0030880696, -0.0042141443, -0.008835886, 0.005264226, 0.0010284929, 0.016856577, 0.0073643895, 0.019993005, -0.026749453, 0.013927401, -0.028283125, -0.002010354, -0.0017927383, -0.0022055171, 0.019081092, 0.03249727, 0.02120889, -0.049795985, 0.012594073, -0.013789232, 0.0095129125, 0.0037236453, -0.011875597, -0.022894546, -0.018307347, -0.023212334, -0.009381652, -0.018182997, -0.0110811265, 0.0075232834, 0.004020708, -0.014977483, 0.018860022, 0.19852073, 8.2944374E-4, -0.0016778857, 0.053498905, 0.0030017141, 0.004117426, 0.016856577, 0.009892876, -0.0017521513, 0.016290085, 9.3868334E-4, 0.0039792573, -0.0048393575, -0.0027236496, 0.012055215, -0.015419623, -0.020214075, -0.021540495, -0.00221588, -0.02742648, -5.664915E-4, 0.01609665, -0.008476648, -0.02623823, 0.017008562, -0.018638952, -0.004480119, -0.007930881, 0.013789232, 0.011571625, -0.00952673, -0.021637212, 0.0036476527, 0.007944698, -0.010044862, 0.0017184727, 0.0018721854, 0.002999987, 0.009374743, 0.008428289, -0.0014801318, -0.0048393575, -0.005868714, 0.0068635284, 0.0126976995, 0.006476656, -0.014493893, -6.437796E-4, -0.019564683, 5.954206E-4, -0.06466293, 0.0016096649, 0.0027081058, 0.027260676, -0.014604428, 0.007771987, 0.0109775, 0.002231424, -0.021084538, 0.002345413, 0.01675986, 0.022466224, -0.029761529, 0.027523197, -0.016207185, -6.54574E-4, -0.032607805, -0.021955, 0.017851392, 0.003397222, -0.009091498, -0.021941183, -2.4114749E-4, 0.012904953, -0.0093402015, -0.0071087778, 0.029070687, -0.0023419587, 0.0050466103, 0.014894581, -0.028960152, -0.01883239, 0.009740891, 6.0751033E-4, -0.018127728, -0.02764755, 0.032442, -0.007433474, -0.021485226, -0.020835834, -0.022217521, -0.008442105, -0.0099205095, -0.019813387, -0.0035785683, -0.0027184684, 0.0061001466, 0.012013765, -0.014687329, -0.0057374537, -0.026265863, 0.0149083985, 0.023419589, -0.002231424, -0.023958446, -0.015419623, -0.0027720088, 0.020518046, 0.024414402, -0.010742613, 0.0036580153, -0.017257266, 0.012379912, -0.011799604, -0.021125989, 0.037526608, 0.0018739124, -0.020960186, 0.014466259, -0.015889397, 0.008338478, -0.010127763, 0.0069326125, 0.003588931, -0.009001688, -0.028573278, -0.01869422, 0.01005177, 0.004880808, -0.044020534, 0.0012150207, -0.025036162, 0.0055267466, 0.008269395, 6.1960006E-4, -0.008697717, 0.04125716, -0.024068981, 0.0068738908, 0.0122417435, 0.00557856, -0.014100112, 0.031226117, 0.018003376, 0.015889397, -0.023074167, 0.021775382, -0.0039205356, -0.0138583165, -0.03169589, -0.012531898, -0.008449013, 0.019481782, 0.017671771, 0.034929037, 0.008165767, -0.027454114, -0.0323591, -0.010203755, 0.036587063, -0.030286571, 0.026666552, 0.009485278, -0.016511155, -0.030397106, -0.007101869, -0.17774017, 0.03561988, 0.0012314282, -0.030093133, 0.008967146, 0.020214075, 0.025920441, 0.0060863295, 0.004932621, -0.008987871, 0.026072426, -0.013630338, -0.030231303, 0.0060379705, -1.5759862E-5, 0.01921926, -0.004559566, 0.0142175555, 0.024815092, -0.007986149, 0.04227961, -0.014811681, 0.0063592126, 0.0083522955, 0.0061692307, 0.00797924, 0.02402753, 0.011993039, 0.014507709, 0.0038825395, -0.043495495, -0.008193402, 0.022894546, 0.013257283, -0.010749522, 0.004625196, -0.014259006, -0.0118341455, -0.007813438, -0.012373003, 0.03258017, 9.689077E-4, 0.025105245, 0.010825515, 0.021360874, 0.022355689, 0.016345352, -0.024138065, 0.01124002, -0.012690792, -0.021678664, -0.030839246, 0.03183406, -0.012131209, -0.0054127574, 0.031198483, 0.0055267466, 2.0757683E-4, 0.00956818, -0.017409252, -0.03263544, -0.007392023, 0.01794811, 0.006656275, -0.009160582, -0.023295237, 0.0034766688, 0.014162288, -0.04203091, 0.014825498, -0.019260712, 0.008690809, -0.0047184597, 0.002407589, 0.008801344, -0.013782324, -0.0076821777, 0.01979957, -0.011302196, 0.015447256, -0.013429994, 0.032386735, -0.021637212, 0.0030742527, 0.00478409, -0.01732635, 0.020448962, 0.004531932, 0.0047944523, 0.0024196787, 0.018942924, -0.019343613, -0.013381635, 5.3432414E-5, -0.010293566, -0.006131234, -0.0035025754, 0.015101834, 0.014535343, -0.013996486, -0.010196847, 0.012075941, -0.017395435, 0.012366096, 0.024649289, 0.001636435, 0.009588905, 0.01547489, 0.0036580153, 0.017409252, -0.019025825, -0.0021450685, 0.019288344, 0.005426574, -0.016718408, 0.019233078, 0.008794435, -0.020448962, -0.005105332, 0.011495632, 0.064165525, -0.0032141486, 0.00899478, -0.015557791, -0.011219296, -0.021125989, -0.099039294, -0.0034179473, 0.00762691, 0.027440296, -0.029347023, 0.03777531, -0.007896339, 0.009319476, -0.023184702, 0.028987786, -0.011025859, -0.01754742, 0.0019740846, 0.014314273, 0.011585442, -0.009188216, -0.0066908174, -0.022659661, -0.029650996, 0.023005081, -0.016898027, 0.006797898, 6.9904706E-4, -0.015391989, -0.008476648, 0.0108462395, -0.023074167, 0.021692479, 0.0011062128, 0.005858351, -4.991343E-4, -0.014272823, 0.013029304, -0.030866878, -0.018100094, -0.04158877, -0.030120768, -0.029015418, -0.004659738, -0.05242119, -0.004148514, 0.018086277, 0.008628633, -0.003478396, -0.0143280905, 0.0014611336, -0.025119063, 0.026362581, -0.012407546, -0.021139804, -0.010127763, -0.01758887, -0.03139192, -0.011813421, 0.02040751, 0.013616522, 0.041561134, 0.014991299, -0.0044939355, -0.02887725, -0.0016951568, -0.015378172, -0.043329693, 0.022024084, -0.002134706, 0.0021157076, -0.0034110388, -4.702052E-4, 0.019965371, -0.006404117, -0.03050764, 0.015723594, -0.025105245, -0.009506004, -0.015115651, 0.012739151, -0.0415335, -0.004165785, 0.020642398, -0.029043052, 0.0022935998, -0.022410957, 0.011578534, -0.00698788, 0.019771935, 0.02283928, -2.6036156E-4, 0.005630373, -0.0032504178, -0.033602618, -0.015018933, 0.013961943, 0.008297028, 0.017436884, 0.002297054, 0.007951606, -0.008939512, 0.0071571367, -0.014811681, -0.004138151, -0.030535273, 1.68501E-4, -0.060186267, 0.03398949, -0.023889361, -0.009485278, -0.018003376, -0.026141511, -9.784069E-4, 0.0067080883, -0.013284917, 0.024649289, 0.003283233, 0.017298717, -0.00952673, -0.013443811, -0.0070155137, 0.0054956586, -0.0015984387, -0.01706383, -0.008987871, -4.611379E-4, -0.031143216, 0.014044845, 0.019744301, -5.798766E-4, -0.0068428027, 0.0161381, -0.0032970496, 0.015405806, -0.011350555, -0.010970592, 0.034403995, -0.03050764, -0.0040759756, 0.008234852, -0.013195107, -0.026859988, -0.014535343, 0.0132711, 0.028048238, -0.0012383367, -0.018873839, -0.023115616, -7.081144E-4, -0.012297011, 0.011295288, 4.3231677E-5, -0.021775382, 0.0046666465, 0.004355767, 0.014314273, 0.03769241, 0.009146766, -0.0105629945, -0.025588837, 0.0048773536, -0.020034457, 0.034597434, 0.0063108536, 0.0056372816, -0.010694254, 0.025063796, 0.0052918596, 0.015088018, -0.010666621, 0.028214041, -0.010604445, 0.01591703, -8.570775E-4, -0.0029948058, -0.026873805, -0.015060384, -0.0061001466, 0.014853131, 0.041201893, 0.013326367, 0.01640062, -9.455918E-4, 0.0031070677, 0.0044248514, 0.01186178, 0.033353914, 0.003015531, -0.015613059, 0.011813421, -0.0024611293, 0.027716633, 0.005689095, 0.015626876, 0.011405823, 0.019537048, 0.0035371177, 2.9101773E-4, 0.033630252, 0.0042521404, 0.003958532, 0.018625135, -0.011343647, -0.002804824, -0.0075992765, 0.021360874, -0.00650429, -0.014949849, -0.0087598935, -0.03517774, -0.012117391, 0.0052607716, -0.009851426, -0.020863468, 0.0045042983, 0.03385132, 0.034625065, -0.0035474803, -0.016414437, 0.017630322, -0.03628309, 0.020932551, 0.005436937, -0.01891529, -0.012158842, 0.03791348, 0.010632078, -0.010238298, 0.042390145, -0.010569902, 0.042832285, -0.0038790852, 0.021333242, -0.021333242, -0.0049878885, 2.9965327E-4, 0.008310845, -0.011122577, -0.018334981, 0.016013747, -0.012967129, -0.007302214, -5.6001486E-4, 0.028628547, -0.0036821947, 0.06742631, 0.037112102, -0.013547437, 0.031060316, -0.018058645, 0.014044845, 0.0069222497, 0.011537083, -0.012511172, -0.011094944, -0.006424843, -0.010735705, 0.024649289, -0.038604323, -0.005195142, -0.0060966923, -4.8197115E-5, 0.021043086, -0.014853131, -0.009519821, -0.010473184, -0.01631772, 0.0046390127, -2.0304316E-4, -0.0019602678, -0.012863502, 0.004051796, -0.010873874, -0.007129503, -0.020352244, 0.007889431, -0.029153587, 0.0089326035, 9.1428796E-5, 0.042307243, -0.0043350416, -0.006825532, 0.021015454, 0.017450701, 0.0044248514, -0.015613059, -0.016124282, -0.02350249, -0.029872064, 0.0027478293, 0.007468016, -0.002597571, -0.031419553, -0.02579609 ], + "id" : "5935cd73-67e0-424d-a4ae-8c419eb5fa98", + "metadata" : { + "source" : "movies.csv" + } + }, + "199c5380-3931-4bb7-8aac-176915976438" : { + "text" : ",/abwxHfymXGAbbH3lo9PDEJEfvtW.jpg,1893-1895-1892-1891-11-140607-330459-181808-12180-348350-181812-87-558-217-36658-89-36657-557-85-36668-559\r\n76338,Thor: The Dark World,Action-Adventure-Fantasy,en,Thor fights to restore order across the cosmos��_ but an ancient race led by the vengeful Malekith returns to plunge the universe back into darkness. Faced with an enemy that even Odin and Asgard cannot withstand Thor must embark on his most perilous and personal journey yet one that will reunite him with Jane Foster and force him to sacrifice everything to save us all.,113.743,Marvel Studios,10/30/13,170000000,644571402,112,Released,Delve into the darkness,6.552,15786,Chris Hemsworth-Natalie Portman-Tom Hiddleston-Anthony Hopkins-Christopher Eccleston-Jaimie Alexander-Zachary Levi-Ray Stevenson-Tadanobu Asano-Idris Elba-Rene Russo-Adewale Akinnuoye-Agbaje-Kat Dennings-Stellan Skarsg��rd-Alice Krige-Clive Russell-Jonathan Howard-Ramone Morgan-Obada Alassadi-Imaan Chentouf-Claire Brown-Henry Calcutt-Ava Caton-Abbie McCann-Thomas Arnold-Sam Swainsbury-Connor Donaghey-Royce Pierreson-Annabel Norbury-Sophie Cosson-Chris O'Dowd-Justin Edwards-Gruffudd Glyn-Richard Brake-Stan Lee-Steve Scott-Brett Tucker-Talulah Riley-Richard Wharton-Tony Curran-Chris Evans-Benicio del Toro-Ophelia Lovibond-Elsa Pataky-Joe Cash,superhero-based on comic-hostile takeover-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-mythological place,/wp6OxE4poJ4G7c0U2ZIXasTSMR7.jpg,/4zTsF0RtO0av3YX1NaKDqGKPxYF.jpg,10195-100402-68721-99861-10138-1771-24428-102899-271110-284053-1726-118340-1724-283995-284052-315635-127585-102382-1930-363088-49521\r\n335797,Sing,Animation-Comedy-Family-Music,en,A koala named Buster recruits his best friend to help him drum up business for his theater by hosting a singing competition.,80.856,Illumination-Universal Pictures-Fuji Television Network-dentsu,11/23/16,75000000,634151679,108,Released,Auditions begin 2016.,7.115,7183,Matthew McConaughey-Reese Witherspoon-Seth MacFarlane-Scarlett Johansson-John C. Reilly-Taron Egerton-Tori Kelly-Jennifer Saunders-Garth Jennings-Peter Serafinowicz-Nick Kroll-Jennifer Hudson-Beck Bennett-Jay Pharoah-Nick Offerman-Leslie Jones-Rhea Perlman-Laraine Newman-Bill Farmer-Adam Buxton-Brad Morris-Wes Anderson-Chris Renaud-Edgar Wright-Asher Blinkoff-Jessica Rau-Carlos Alazraqui-Sara Mann-Daamen J.", + "embedding" : [ -0.0032452103, -0.04919766, -0.01378371, -0.03492143, -0.0120430365, 0.040750667, -0.011469558, -0.010599221, -0.014451643, -0.026460946, 0.026973702, 0.024517868, 0.018540204, -0.013702748, 0.013473357, 0.012083517, 0.013574559, -0.019444274, 0.007866767, -0.03608188, -0.009459012, -0.0039367573, -0.024450399, 0.019309338, 0.0031878625, -8.8383065E-4, 0.039617203, -0.012157732, -0.002825222, -0.0067400523, 0.013021322, -0.016529657, -0.002123555, -0.017865524, -0.015504144, 0.0045878235, 0.0038726625, -0.023937643, 0.023532834, -0.021279404, -0.008035437, 0.0112671545, -0.005825861, -0.0069626966, -0.025152067, 0.0045372224, 0.017433729, -0.016664593, -3.2173799E-4, 0.014950907, 0.025516395, 0.051734455, -0.025624342, -0.021063507, -0.017339272, -0.0034982152, -0.024409918, 0.015220778, 0.023789214, -0.0025452299, 0.009324077, -0.010423805, -0.029308096, -0.015949434, -0.015868472, -0.023897162, -0.017433729, -0.017771069, -0.017906005, -0.004500115, 0.033437137, 0.012407363, 0.0070976326, 0.006045132, 0.013561066, -0.032087777, -0.025125079, -0.0069154687, -0.003095094, 0.009330823, 0.0042943377, 9.200947E-4, -0.012974095, 0.025057612, 0.010315856, 0.028174633, -7.6407497E-4, 0.021427834, -0.022669245, 0.004736253, 0.018270332, 0.020415813, 0.0015382702, 0.0021809028, 0.0028657028, 0.015585106, -0.009391544, 0.018688634, -0.017231325, -0.033653032, -0.0045810766, -0.011773164, -0.0052220225, -0.009202634, -0.019795109, -3.9574192E-4, -0.004304458, -0.013898406, 0.020604724, -0.007455213, 0.00680752, 0.006696198, 0.017892512, -0.035083354, -0.007954476, -0.018702127, 0.015760522, -0.006382472, -0.0058629685, -7.1094395E-4, 0.018729113, 0.051356632, 0.013405889, -0.031817906, 0.026838766, 0.016678087, -0.0070436583, -0.015247766, 0.0024170408, -1.0083302E-4, 0.036918484, 0.0050128717, 0.025556874, 0.007360758, -0.022885142, 0.052759968, -0.037404254, 0.013163005, -0.017406741, -0.017163856, 0.02554338, 0.023222482, -0.010747651, -0.032951366, -0.03424675, -1.3704435E-4, 0.025678316, 0.0024592082, 0.015585106, -0.004469754, 0.0299288, 0.035245277, 0.011145712, 0.012319655, 0.028363543, -0.0013071923, 0.013216979, -0.008136639, 0.0065713823, -0.022966104, 2.3445126E-4, -0.008021944, -0.007246062, -0.022264436, -0.006443193, 0.019849082, 0.025003636, -0.022008058, -0.0076711103, 0.011651722, -0.01818937, 0.0144381495, -7.047242E-5, 0.019579211, -0.010761145, 0.021684213, -0.006169948, -0.003997478, -0.033733994, -0.004557463, -0.0018469362, 0.0052557564, 0.039239384, 0.03953624, -0.006557889, 0.016529657, 0.030009761, -0.03629778, 0.017636133, -0.021103987, 0.009155407, 0.020051487, -0.012474831, -0.013756723, -0.6390568, 6.0510356E-4, 0.01036983, -0.014896932, 0.0069964305, 0.0055492423, 0.021279404, 0.01188786, -0.042127013, -0.014937413, -0.023343924, 0.014667541, 0.02516556, -0.015908953, -0.03222271, -0.011091737, -0.002320899, -0.0072595556, 0.019336326, 0.0069222157, -0.032465596, 0.014208758, 0.0042875907, 0.008595422, -0.0041256677, 0.0025081225, -0.003405447, -0.018459242, 0.0034813483, -0.0077723125, -0.025705304, 0.008069172, 0.016367733, 0.020753155, 0.033922907, 0.020618217, -0.022142993, 0.04717362, 0.03500239, 0.017622638, -0.02689274, 0.010160679, 0.020915076, 0.011415584, -0.024733765, 0.01953873, 0.009108178, -0.013830937, 0.009870566, 0.0037545937, -0.012704222, 0.005859595, 0.010329349, 0.014681035, -0.014222252, 0.009499493, 0.02160325, -0.038834576, 0.021090494, 0.006588249, -0.004307831, 0.02771585, 0.005748273, 0.004044706, 0.0024001738, 0.025367964, -0.0072325687, -0.006045132, 0.0063386178, -0.030090723, 0.006848001, -0.0017744082, -0.0047598667, -0.0030681067, 0.02175168, 0.01361504, 0.036891498, -0.010525007, 0.0033666526, 0.013601547, 0.004054826, -0.013122524, 0.0016200751, 0.0047666132, 0.020577736, -0.010261881, -0.031817906, 0.0010212967, 0.017150363, 0.008608916, 0.0025823372, 0.012650248, 0.004500115, 0.017258313, -7.919055E-4, 0.0054345466, -0.0043112044, 0.0024743886, 0.024032097, -0.04371926, -0.015585106, -0.024558349, 0.041128486, -0.01020116, 0.029443031, 0.020807128, -0.020037994, -0.004135788, 0.019646678, -0.0076036425, -0.023343924, 0.0066152364, -0.0320338, 0.004004225, 0.0028741364, -0.02497665, 0.019403793, 0.014883438, 0.0019093441, -0.0034003868, 0.010801625, 0.0037006193, 0.016475683, -0.009236367, 0.010288868, 0.031925853, -0.0068749883, -2.2137933E-4, -0.0018570564, 0.004668785, -1.2355075E-4, 0.0071718474, 0.01709639, -0.007745325, 0.008568435, -0.0034088201, 0.020955557, -0.011219927, 0.015207285, -0.014586579, -0.020861102, -0.010565487, -0.027365016, 3.9347542E-5, -0.004419153, -0.0031726821, -0.022035046, 0.0021201817, 4.8323948E-4, 0.0042673503, -0.032789443, 0.015841484, -0.0049555236, 0.006891855, -0.009276848, 0.0017912751, -0.014883438, -0.025435433, 0.015288247, -0.025300495, -0.001118282, 0.030171685, -0.0048711887, -0.026568895, 0.022588283, -0.0017642879, -0.028120657, 0.006982937, 0.011010776, -0.012312908, 0.01612485, -0.012387123, -0.015854977, 0.019187896, -0.009924541, 0.026541907, -0.019646678, 0.013021322, 0.007495694, -0.009438772, 0.0036162843, 9.757558E-4, -0.02554338, -0.010835359, 0.017204337, 0.033841945, 0.0067906533, -0.011368357, -0.016367733, 0.013513838, -0.028741363, -0.02190011, 0.0017609146, -0.009033964, 0.0018165756, 0.02208902, 0.006908722, 0.0051208204, 0.002196083, 0.0011857499, 0.023195494, 0.024382932, 0.017879017, 0.0010381637, 0.0063048834, -0.0187561, 0.0030073856, -0.012380376, -0.0013358662, -0.01567956, 0.02868739, -0.027499953, -0.01717735, -0.018108409, -2.7198033E-4, 0.03484047, -0.00935781, 0.006308257, -0.015517638, -0.010025743, 0.0061834413, -0.003825435, 0.020523762, 0.015369208, -0.022642257, 0.006004651, 0.019079948, -0.021967577, 0.00271896, -0.013399143, -0.006247536, -0.015031868, -9.875627E-4, 0.002494629, -0.017109882, 0.004500115, 0.021697706, -0.008258082, 0.027243575, -0.011294141, 0.012866146, 0.014370682, 0.0187561, 0.0040919334, -0.009749125, -0.018661646, 0.004813841, 0.0063554845, -0.01549065, 0.030846365, -0.01608437, 0.021171454, -0.0015045361, 0.0047936006, 0.012576033, -0.008048931, -0.0016850131, 0.006561262, 0.022831168, 0.03419278, 0.014046836, -0.026906235, 0.017150363, 0.014559592, 0.029146172, -0.010133692, -0.031898867, 0.0054176794, -0.0010432238, -0.022723218, -0.025138574, -0.015922446, 0.009216127, 0.005903449, -0.013642027, -0.016367733, -0.008372777, 0.0030107591, 0.012360136, 0.019417288, -0.0013864671, -0.027850786, 0.0034611078, 0.03292438, -0.014303214, -0.02839053, -0.013203486, -0.01675905, -0.021103987, -0.013055056, -0.0019093441, 0.025583861, -0.02111748, -0.010525007, -0.02295261, -0.007407985, 0.024382932, -0.0087168645, 0.023735238, 0.023492355, -0.005329971, 0.014222252, -0.019106934, -0.008919268, 0.015841484, -0.008028691, 0.0025637837, -0.0075901486, -0.008979989, -0.0013459864, 0.008298563, 0.0107881315, -0.032789443, 0.0111119775, -0.009222874, -0.011024269, -0.011881113, 4.575173E-4, -0.0046148105, -0.012333148, -0.0026734192, -0.031925853, -0.024328956, -0.009998756, 0.06714414, 0.03743124, 0.013176498, 0.009175647, -0.01072741, 0.010653196, -0.0012177972, -0.0050870865, -0.0035589365, -0.0018266959, 0.023748733, -0.008109652, 0.023654277, 0.02242636, 0.016192317, -0.015099336, -0.009600695, 0.0087303575, -0.0035218291, -0.011395344, -0.012204959, -0.023303444, 0.017244818, 0.03195284, 0.012191466, -0.03195284, 0.024841715, -0.0010474406, 0.007785806, 0.007981463, -0.011004029, 0.0070638987, 0.004554089, 0.012495072, 0.019457769, 0.023708252, 0.0047598667, 0.01642171, 0.018837063, 0.019025974, -0.0036264043, 0.0044461405, 0.012697476, -0.0057246587, -0.0043550585, -0.02160325, -0.003488095, 0.022345398, 0.026784793, -0.0333022, 0.017420234, 0.0028285955, -0.025260014, -0.017798055, 0.019903056, 0.006780533, -0.002600891, 0.0019278978, -0.013810697, -0.0069289627, 0.0079409825, -0.03071143, 0.007455213, -5.7263457E-4, -0.009641176, -0.025071105, -0.025867227, -0.026906235, -0.017986966, 0.026960209, -0.008453739, -0.0221295, -5.119134E-4, 0.003449301, 0.012191466, -0.0058089937, 0.0265554, -0.0065005408, 0.01679953, 0.011874367, -0.038348805, -0.016637607, -0.0024355943, -0.018971998, -0.009175647, 0.0077318316, -0.0011629795, 0.029955788, -0.013142765, 0.019309338, 0.0046991454, -0.001424418, -0.019147415, -4.6679415E-4, 0.028444504, 0.008905775, 0.017717093, 0.03378797, 0.0026379984, 5.1570847E-4, -0.0017373008, -0.014316708, -0.003258704, -0.016151836, -0.0042707236, -0.011698949, 0.0016588692, 0.006635477, -0.015841484, -0.028363543, -0.02257479, -0.01140209, 0.0016470623, -0.007785806, 0.020753155, 8.4672327E-4, 0.01987607, 0.0061969347, -0.008770838, 1.759175E-5, -0.002938231, -0.011058004, 8.226878E-4, 0.033059314, -0.0038659158, 0.021387354, -0.012994335, -0.020469788, -0.002584024, 0.034813482, 0.0069559496, 0.005994531, -0.017055908, -0.0054412936, -0.018297318, -0.012994335, 0.010842106, 2.7155865E-4, -0.007455213, 0.0033244852, -0.012481578, 0.012609767, 0.0033767729, -0.0034138802, -0.0018806702, -0.033653032, 0.009573707, -0.008204107, 0.008244588, 0.03281643, 2.4056555E-4, 0.017312286, -0.031170212, 0.0075901486, -0.02362729, -0.031925853, -0.022372385, -0.0070841387, 0.034867458, 0.017163856, 0.050466057, 0.0053906925, 0.03397688, 0.0019700653, -0.0037782073, 0.025421938, -0.013830937, -0.0037984478, -0.034678545, 0.008959749, 0.00594393, 0.025448926, -9.959962E-4, 0.013459864, -0.00255029, 0.0032721974, -1.5694213E-5, 0.015328728, -0.001660556, -0.022318412, -0.013351915, 0.0077992994, -0.018135395, 7.973873E-4, -0.013189992, 5.6546606E-4, 0.039482266, 0.0042774705, 0.0028184752, -0.015841484, 0.030873353, -0.003808568, 0.015436676, -0.021279404, 0.01515331, -0.026636362, 0.009101432, -0.022116007, -0.009539974, -0.0016495923, -0.01207677, 0.0059236893, 9.512986E-4, -0.016732061, -0.0073742513, 0.024167035, -0.02111748, -0.017959978, 0.015517638, -0.019363314, -1.16066025E-4, -0.032546557, -0.0104777785, -0.033410147, -0.011165952, -0.00697619, -0.012177972, 3.2490052E-4, -0.026123606, -0.042747717, 0.026339503, 8.8298734E-4, 0.038645666, 0.005505388, 0.035919957, 0.02554338, 0.014775489, -0.009155407, 0.001819949, -0.015436676, -0.011510039, 0.035380214, 0.012967347, -0.021994565, -0.0036095374, -0.0048678154, -0.0040413328, -0.04012996, -0.03675656, 0.002680166, 0.01462706, 0.038915537, -0.010848853, -0.0017710347, -0.03967118, 0.0074687065, -0.006814267, -0.002106688, 0.004651918, -0.027418992, -0.026204567, -0.010983788, -0.0076441234, 0.014896932, 0.020321358, -0.03427374, 0.023910655, -0.013196738, 0.008757345, -0.031440083, -1.1448475E-4, 0.037134383, -0.023748733, 0.01983559, 0.0071988343, 0.014654048, 0.007812793, 0.0019110308, 0.0047328793, 0.032789443, -0.015247766, 0.016880492, 0.007920742, 6.4347597E-4, 0.001311409, 0.020618217, -0.028903287, -0.012704222, -0.033545084, -0.004938657, 0.032060787, -9.841893E-4, -0.018769594, -0.0073742513, -0.01241411, -0.018621165, -0.0022399372, 0.0020122328, -0.007286543, -0.03818688, 0.011914847, -0.003258704, -0.011078244, 2.5208255E-5, -0.01039007, 0.0075091873, -0.0076373764, 0.018013952, 0.004543969, -0.00596417, -0.011476305, -0.006436446, -0.050574005, -0.027162613, -0.027311042, -0.033733994, 0.0010912947, -0.0061362134, -0.0067974, -0.0141143035, -0.017123375, -0.010093211, -0.013898406, -0.012852652, -7.332927E-4, 0.033032328, -0.006331871, -0.018648153, -0.0047092657, 0.038618676, -0.0029314843, -0.0047396263, 0.002320899, 0.012002556, 0.032735467, -0.020091968, 0.01530174, 0.0069626966, -0.028363543, -0.008420005, 0.01226568, 0.03716137, 0.008123146, -0.0066658375, -0.034084827, -0.0023225856, -0.008150133, 0.0320338, -0.015018375, -0.00526925, 0.021211935, 0.005019618, 0.039239384, 0.023451874, -0.021967577, -0.016745554, -0.0025941443, -0.0051646745, 0.0022466842, -0.007657617, 0.018796582, 0.022642257, 0.011071497, -0.015355715, -0.043746244, 0.0024541481, -0.013297941, -0.026474439, -0.0072123283, 0.012393869, 0.027405497, 0.005242263, -0.0017212771, 0.029955788, -0.004213376, 0.008426752, -0.02632601, -0.016340747, 0.004085187, 0.016893985, 0.020253891, 0.025260014, -0.02839053, 0.0013223726, 0.010565487, 0.015854977, 0.019997513, 0.034084827, -0.012292667, -0.0072932895, -0.019619692, 0.0071313665, 7.784119E-4, -0.014006355, 0.042612784, -0.026784793, -0.0072190748, -0.0022702978, 0.011935087, 0.0071246196, 0.010160679, 0.017865524, -0.020577736, -0.016920973, -0.010666689, -0.01886405, -0.0022449973, -0.03378797, 0.017865524, 0.009708644, -3.3839413E-5, 0.03743124, 0.025354471, -0.004864442, 0.013243967, -0.0029669048, 0.0115910005, 0.011253661, -0.013432877, 0.0035319494, 0.029119184, -0.02415354, 0.017109882, -0.020483281, 0.015949434, -0.012393869, 0.002444028, -0.012555793, 0.04107451, 0.0052051554, -0.04803721, -5.355272E-4, -0.0064533134, 0.016705073, -0.008069172, -0.008339044, -0.029820852, -0.0034223138, -0.011786657, 0.010214654, -0.028633416, -0.015827991, 0.003341352, -0.011941834, -0.0057044183, 0.017946485, 0.18534806, -0.008541447, 0.005060099, 0.045581374, 3.7676655E-4, 0.01428972, 0.013547572, 0.015652573, -0.017015427, 0.019106934, 0.0025064358, 0.014586579, -0.0033059316, -8.8383065E-4, 0.011941834, -0.019903056, -0.020415813, -0.0040312125, -0.012474831, -0.02459883, 0.002914617, -0.0034644813, -0.017109882, -0.023006584, 0.010916321, -0.007846527, -0.004726133, 0.0067029446, 0.019268857, 0.0016647726, -0.020145942, -0.008352537, -0.0033953267, 0.02010546, -0.030441556, -0.009047457, 0.018054433, 0.0073405174, 0.0074012387, -0.002656552, -0.0102956155, -0.0052152756, -0.0067096916, 0.0035926704, 0.025340976, 0.028147645, -0.01642171, -0.006443193, -0.024450399, 0.009141913, -0.03656765, 4.7986608E-4, 0.022196969, 0.035056368, -0.0074822, -0.0065815025, -3.5512935E-6, 0.0021488555, -0.004422527, 0.0062272954, 0.0036466448, 0.031440083, -0.021400847, 0.01325746, -0.0122117065, 0.015166804, -0.03251957, -0.009897554, 0.02227793, -0.01852671, -0.0248687, -0.016678087, -0.01751469, -0.003680379, -0.0046755318, -0.010160679, -1.4431824E-4, 0.009742377, 0.012400617, 0.016165331, -0.029335082, -0.01563908, 0.0050364854, -0.0043584323, -0.019363314, -0.014330201, 0.0020527137, -0.009405037, -0.0035454428, -0.016516164, -0.015760522, -0.008231095, -0.0063217506, 0.0037680871, -0.0043449383, -0.009162153, 0.026231555, 0.008102906, -0.022790687, 0.011827138, -0.030900339, 0.025340976, 0.027459472, -0.0022466842, -0.025071105, -0.00969515, -0.0027678742, 0.0072932895, 0.022642257, -0.01192834, 0.0040244656, -0.031979825, -6.1142864E-4, -0.016961453, 0.0018604298, 0.030009761, -0.011935087, -0.017946485, 0.037890024, -0.01207677, 0.0020645205, -0.027068157, -0.0015028495, -0.0043516853, -6.6044835E-5, -0.038456753, -0.023330431, 0.0051309406, 0.0025384831, -0.029766876, 0.02055075, -0.017838536, 0.013588053, 0.002786428, 0.0071988343, 0.016192317, 0.014600073, -0.011260407, 0.0057111653, -0.011510039, 0.0018638032, -0.015396195, 0.0055121346, 0.007887008, 0.008399765, -0.032006815, 0.0112806475, -0.00510058, -0.02152229, -0.028849313, -0.022250943, -0.012157732, 0.012778437, -0.006682704, 0.040291883, 0.01852671, -0.013729736, -0.02651492, -0.03071143, 0.03397688, -0.027958734, 0.01976812, 0.0060923593, -0.0071313665, -0.04053477, -0.009027217, -0.17250216, 0.01087584, 0.0136622675, -0.029308096, -0.0013636968, 0.01087584, 0.013857925, 0.00594393, 0.0072595556, -0.015180297, 0.0265554, 0.0038389286, -0.06860145, 0.0015315234, 9.0238434E-5, 0.004034586, -0.019930044, 0.024625815, 0.02482822, 0.0010592474, 0.049764387, 0.0045878235, 9.1250456E-4, 0.004469754, 0.010673436, 0.0070571518, 0.025489407, 0.019133922, 0.008278322, 0.0028437758, -0.027486458, -0.012987588, 0.01852671, -0.006190188, -0.012791931, 0.006254283, -0.021819148, -0.019997513, 6.392592E-4, -0.010997282, 0.03648669, 0.013810697, 0.019025974, 0.008170374, 0.020388827, 0.017973473, 0.02017293, -0.009600695, 0.016219305, -0.023559822, -0.012724463, -0.035083354, 0.013716242, -0.0022281304, -0.015328728, 0.027405497, -0.0141143035, -0.0011764731, 0.0028657028, -0.012292667, -0.030171685, -0.006935709, 0.0030596734, -0.017069401, 9.0913114E-4, -0.010605968, -0.015517638, 0.018027447, -0.038888548, 0.0054784007, -0.013365408, 0.014262733, 0.011698949, -0.0017760948, 0.011307635, -0.014856451, -0.037296306, 0.010767891, 0.0051208204, 0.01578751, -0.0016217618, 0.03735028, -0.020712674, 0.010066224, 0.001342613, -0.016138343, 0.012731209, -0.0130010815, -0.006095733, 0.0029129304, -0.0011705696, -0.016394721, -0.022898635, 0.0057212855, 0.0045642094, 0.0051882886, -0.0011326189, 0.0045473427, 0.006385845, 0.004382046, 0.0023580063, -0.02310104, -0.023505848, 0.019579211, 0.03397688, 0.013189992, 0.01087584, 0.022790687, 0.029874826, 0.0063183773, -0.00952648, 0.011226674, 0.024693284, 0.01612485, -0.008312057, 0.011058004, -0.024328956, -0.010680183, 0.011982315, -0.0058224876, 0.039968036, 0.0034290606, -0.0034121936, -0.011510039, 0.0042774705, -0.018432254, -0.09882711, -0.0011511726, 0.00731353, 0.040669706, -0.023343924, 0.022925623, -0.012663742, 0.0150723485, -0.0084065115, 0.027081652, -0.003953624, -0.02017293, 0.022142993, 0.003302558, 0.029092196, -0.012279174, -0.01953873, -0.022250943, -0.0066692107, 0.028849313, -0.0038186882, -0.013129271, -0.0073944917, -0.0150588555, -0.038159896, 0.019592704, -0.028984249, 0.02516556, 0.010842106, 0.0065680086, -0.0034509876, -0.01207677, 0.016394721, -0.046849772, -0.034219764, -0.022345398, -0.02617758, -0.024990143, 0.008622409, -0.041587267, 0.010686929, 0.023208989, 0.019930044, -0.008602168, -0.004307831, -0.0069896835, -0.029550979, 0.034570597, 0.00238668, -0.03041457, -0.013743229, -0.026379984, -0.03764714, -0.0026363118, 0.01976812, 0.010565487, 0.041128486, 0.0030461797, -0.011955327, -0.021832641, 0.009944782, -0.0021168082, -0.00988406, 0.022331905, 0.017730588, -6.6160795E-4, -0.00900023, -0.01631376, 0.014613567, -0.015274753, -0.021103987, 0.020159435, -0.03945528, -0.014573086, -0.016853504, 4.3348182E-4, -0.04587823, -0.007117873, 0.024423413, -0.030549506, 0.0032435236, -0.030549506, 0.015342221, -0.023573315, 0.013284448, 0.022385878, 0.010821866, 0.025678316, -0.003707366, -0.043260474, 0.0017153736, 0.034381688, -0.008777586, -0.012070023, -1.491675E-4, 0.029038223, 0.006004651, 0.013034816, -0.0076778573, 0.02314152, -4.811311E-4, -0.009688403, -0.072325684, 0.032357648, -0.017055908, -0.011219927, -0.009418531, 7.539548E-4, 0.0044393935, -0.010592475, 0.004850948, 0.02088809, -7.337144E-4, 0.004503488, -0.014154784, -6.7720993E-4, 0.0013544199, 0.0031153343, -0.010599221, -0.012029543, -0.0053468384, 0.005842728, -0.016367733, -0.007050405, 0.032735467, 0.019444274, 0.0033329187, 0.013871418, 0.006436446, -0.003449301, -0.0028657028, -0.001055874, 0.039158422, -0.019444274, -0.0010272001, 0.016097862, -0.007954476, -0.032195725, -0.020861102, -0.011017523, 0.025732292, 0.0057111653, -0.007151607, -0.02670383, -3.0972023E-4, -0.0034088201, -0.010457538, 0.030846365, -0.020388827, 0.0058089937, 0.020753155, 0.02261527, 0.04601317, 0.003005699, 0.010228147, -0.023006584, 0.012616514, -0.01882357, 0.05456811, 0.0071718474, -0.0016563392, -0.025678316, 0.025799759, 0.0018553697, 0.02598867, -0.036216818, 0.010457538, -9.150346E-4, 0.012441097, -0.011354863, -0.0032536439, -0.027405497, 0.0057381527, 0.008271576, 0.011361609, 0.031655982, 0.013992861, 0.007151607, -0.008500966, -8.513617E-4, -0.004473128, -0.0014252613, 0.026002163, -0.008339044, -0.024612322, 0.024409918, 0.0056706844, 0.02227793, -0.0063892184, 0.008278322, 0.0045878235, -0.0014783923, -0.016732061, 0.020577736, 0.021684213, 0.005363705, 0.008170374, 0.016570138, -0.0022686112, -0.011483052, 0.0019936792, 0.018283825, -0.011752924, 1.2355075E-4, -0.012974095, -0.0045473427, -0.028903287, 0.0020493402, -0.018796582, -0.008602168, 0.0050432323, 0.022331905, 0.024315463, -0.010855599, -0.028984249, 0.009081191, -0.048738874, 0.020969052, -0.0070638987, -0.004601317, -0.01669158, 0.033949893, 0.0071313665, 0.008399765, 0.041155472, -0.013075297, 0.04493368, 0.006250909, 0.0144246565, -0.012036289, -2.9158822E-4, -0.0031929226, -0.005404186, -1.6613993E-4, -0.038078934, 0.009283596, -0.013264207, 0.011820392, 0.018634658, 0.034219764, -0.025219534, 0.074268766, 0.020753155, -0.018499723, 0.01848623, -0.010754397, 0.010950055, 0.0049217897, 0.015989913, -0.014073823, -0.0029534113, 0.0018621165, -0.009459012, -0.013095537, -0.03349111, -0.0033093048, 0.007488947, 0.012029543, 8.986947E-5, -7.8979717E-4, -0.011665216, -0.0150588555, -0.008285069, 0.011685456, 0.004635051, -0.011543773, -0.015436676, 0.027850786, 0.0016192318, -0.0096614165, -0.031979825, 0.0017507944, -0.02670383, -0.002167409, 0.0038895295, 0.02415354, 0.007947729, 0.0010474406, -0.003690499, 0.017582158, 0.014694528, -0.008811319, 0.022561295, -0.021387354, -0.0048239613, 0.01275145, -0.0067434255, -0.0025435432, -0.021873122, -0.018648153 ], + "id" : "199c5380-3931-4bb7-8aac-176915976438", + "metadata" : { + "source" : "movies.csv" + } + }, + "9e562e6b-ee9f-4429-a461-871863b52d2b" : { + "text" : "46195,Rio,Animation-Adventure-Comedy-Family,en,Captured by smugglers when he was just a hatchling a macaw named Blu never learned to fly and lives a happily domesticated life in Minnesota with his human friend Linda. Blu is thought to be the last of his kind but when word comes that Jewel a lone female lives in Rio de Janeiro Blu and Linda go to meet her. Animal smugglers kidnap Blu and Jewel but the pair soon escape and begin a perilous adventure back to freedom -- and Linda.,64.382,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,4/3/11,90000000,484635760,96,Released,1 out of every 8 Americans is afraid of flying. Most of them don't have feathers.,6.7,5925,Jesse Eisenberg-Anne Hathaway-Leslie Mann-Jane Lynch-Will.i.am-George Lopez-Wanda Sykes-Jamie Foxx-Rodrigo Santoro-Jemaine Clement-Jake T. Austin-Tracy Morgan-Carlos Ponce-Karen Disher-Jason Fricchione-Sofia Scarpa Saldanha-Kelly Keaton-Gracinha Leporace-Phil Miler-Bernardo de Paula-Carlos Saldanha-Renato D'Angelo-Jeffrey Garcia-Davi Vieira-Thomas F. Wilson-Cindy Slattery-Justine Warwick-Bebel Gilberto-Judah Friedlander-Francisco Ramos-Tim Nordquist-Miriam Wallen-S��rgio Mendes-Ester Dean-Priscilla Avila-Anzolin Borges-Claudia Bretas-Carlinhos Brown-Ubirajara de Castro-Shanti Correa-Wendy Cutler-Heber Moreira-Fl��via de Mellow-Andrea De Oliveira-Holly Dorff-Matheus dos Santos-Lucas dos Santos-Andrea Ferraz-Marcos Daniel Ferreira-Hanna Frankel-Johnny Gidcomb-Jean Gilpin-Julia Saraiva Gomez-Nicholas Guest-Rif Hutton-Julia Kamanchek Lopes-Lorrayne Mathias-Mikael Mutti-Leo Nobre-Mina Olivera-Bianca Rossini-Julia Scarpa Saldanha-Manoela Scarpa Saldanha-Adriana Souza-Maxwell Wippich-Matthew Wolf,rio de janeiro-pet-carnival-parrot-musical-canary-jungle-samba-animal-duringcreditsstinger-pets-cartoon bird-brazilian cinema,/BSZ2dA3G369e3pHIXGhh5orzPt.jpg,/qPQTqmJ5nL96ou81spQIJ32HC9a.jpg,172385-10527-13053-80321-8355-953-22794-49444-57800-10192-950-810-9502-38757-38055-425-44896-15512-41513-49013-809\r\n310,Bruce Almighty,Fantasy-Comedy,en,Bruce Nolan toils as a 'human interest' television reporter in Buffalo N.Y. but despite his high ratings and the love of his beautiful girlfriend Bruce remains unfulfilled. At the end of the worst day in his life he angrily ridicules God���and the Almighty responds endowing Bruce with all of His divine powers.,40.739,Pit Bull Productions-Spyglass Entertainment-Universal Pictures-Shady Acres Entertainment,5/23/03,80000000,484592874,101,Released,In Bruce we trust?,6.", + "embedding" : [ -0.011863749, -0.028728358, -0.020362554, -0.039049286, -0.0037306966, 0.020123152, -0.0016575332, -0.008911111, -0.021160563, -0.033596218, 6.051576E-4, 0.016678408, 0.018899536, -0.009722421, -0.013100663, 0.013805572, 0.017356716, -0.021200465, 0.009988424, -0.017316816, -0.025975224, 0.017010912, -0.027185539, -0.02483141, 0.009090664, 0.008299303, 0.012994262, -0.008884511, 0.008033301, -0.007301791, 0.012728259, 0.004239428, -0.0072685406, -0.0010781448, -0.02644073, -0.016492207, 0.00321199, -0.01199675, 0.02808995, -0.01685131, 0.0026450704, 0.017037513, -0.010979287, -0.014603582, -0.016545407, 0.010094826, 0.0080466, 0.0027015961, -0.026520532, 0.009596069, 0.02556292, 0.030217977, -0.02480481, -0.018181328, 0.0029110739, -0.006643433, -0.021094063, 0.0055528195, 0.020309353, -0.0072286404, 0.018952737, -0.0069825873, -0.02632103, -0.0017456468, -0.017263616, -0.003153802, -0.006018325, -0.024525506, 0.0014946061, 0.010786435, 0.013439817, 0.010021675, 0.027052538, 6.342517E-4, 0.02971257, -0.010480531, -0.042932935, 0.002234428, -0.0031654395, 0.015853798, 0.027584543, -0.0056425952, -0.005024138, 0.023621095, 0.024232902, 0.02229108, -0.028382555, 0.01929854, -0.033915423, 0.025283616, 0.0032003524, 0.016040001, -0.011923599, -0.007780597, 3.7905472E-4, -0.0051770895, -0.022490581, 0.011837148, -0.019099038, -0.052402653, 0.011185439, -0.011537894, -0.013040813, -0.006869536, -0.0041230517, 0.009655921, -0.00561932, -0.011644295, 0.030723384, 7.9884124E-4, 0.009170464, -0.008598558, 0.020189652, -0.051099237, 0.001142983, -0.023527993, 0.015893698, 0.013579469, 0.0018503856, -4.3017726E-4, 0.022078276, 0.019311842, 0.016292704, -0.016917812, 0.041283716, 0.025030913, 0.003236928, -0.0400069, -0.009223665, -2.6834125E-5, 0.022211278, 0.0038836484, 0.021825572, 0.0032053401, -0.026294429, 0.017729122, -0.02646733, 0.023434892, -0.006882836, -0.0018154726, 0.019045837, 0.022317678, -0.015029187, -0.016585307, -0.02316889, 0.015361692, 0.00881136, -0.012322604, 0.017955225, -0.012655108, 0.038916286, 3.399855E-4, 0.022184677, 0.022158077, 0.008458906, 0.033995226, 0.0070224875, 0.020229552, -0.0011803898, -0.015587795, -9.3101163E-4, -0.0027348467, -0.008206203, -0.007926899, 0.0067032836, 0.023807297, 0.0043524792, -0.017237015, -0.013712471, 3.881986E-4, -0.0024123176, 0.04301274, -0.006576932, 0.035165638, 0.016492207, 0.024352605, -0.0037207215, -0.007108939, -0.017370017, -0.00881136, 7.7930663E-4, -0.0064439303, 0.031627797, 0.0032385904, -0.004375755, 0.0023341791, 0.023621095, -0.049184013, 0.007308441, -0.00642398, -0.0082261525, 0.0037074212, -0.015587795, -0.021865472, -0.6388336, -0.009064063, 0.0014638496, -0.01286126, 0.030297779, 0.026706733, -0.0013624358, -0.008665058, -0.027744146, -0.008419005, -0.011464743, 0.004871186, 0.023740796, 0.0041862275, -0.0074746935, -0.011611045, 0.020296054, -0.022025075, 0.0012410717, -0.014217878, -0.032745007, 0.010507131, 0.010048276, 0.008472206, 0.0062145027, -0.006962637, 0.00240733, -0.03841088, 0.007348342, -0.0032552157, -0.013007563, 0.023913698, 0.020761559, -0.0015394943, 0.036016848, -0.019404942, -0.015694195, 0.028595356, 0.045220565, 0.020482255, -0.0011388267, 0.016319303, 0.012588607, 0.010919436, -0.0044189803, 0.014776484, 0.026254527, -0.0043591294, 0.014656783, -0.008685009, -0.0057223965, 0.0073749423, 0.0017639345, -0.01759612, -0.014257778, 0.02082806, 0.028914561, -0.020442355, 0.030457381, -0.011025838, -0.026706733, 3.3479012E-4, 0.011637645, 0.02169257, 0.008425655, 0.055222288, -0.006074851, -0.030084975, 0.005024138, -0.040485706, 0.022251178, 0.0021064137, -0.025443217, -0.0033715921, 0.015321791, 0.0045885574, 0.018274428, -0.0039401744, -0.018606933, 0.01759612, 0.0067963847, -0.009057413, 0.0063574794, 0.015374992, 0.002806335, -0.001235253, -0.014151377, 0.0026001825, 0.01119209, -0.0029376743, 0.027744146, 0.023900399, -0.0061480016, 0.014776484, -0.016345903, -0.0047747595, 0.003010825, -0.004339179, 0.034686834, -0.06235118, -0.0053898925, -0.009103964, 0.013007563, 0.0037872223, 0.02811655, -0.0033466544, -0.0125819575, 0.007906949, 0.017476419, -0.010926086, 0.001401505, 0.00643728, -0.009230316, -0.022809785, -0.002458868, -0.02814315, 0.015082388, -3.784313E-4, 0.025948623, -0.008505456, -0.0030640257, 0.0034214677, -0.0055794194, -0.014896186, 0.013227015, 0.024951112, -0.01687791, -0.01677151, 0.019378342, -0.008871211, -0.0025536318, 0.025376717, 0.023581194, -0.008279353, 0.016585307, 0.010167977, 0.032452404, 0.007813848, 0.028409155, 0.0011197077, -0.039554693, -0.008897811, -0.00964927, -0.010719934, -0.017875424, -0.033064213, -0.0069958875, -0.002053213, -0.021931974, -0.013752372, -0.006005025, -1.9183932E-5, 0.0090973135, 0.007441443, 0.013778972, 0.0059784246, -0.037320267, -0.019710846, 0.010048276, -0.01361937, 0.018753234, 0.021360066, -0.0064406055, -0.022889586, 0.01996355, -0.006174602, -0.021107363, 0.0320002, -0.015361692, -0.03444743, 0.0059717745, -0.0051604644, 0.0065037813, 0.0151621895, 0.0024322679, 0.02088126, -0.01364597, 0.007434793, 3.6429986E-4, -0.01847393, 9.5345563E-4, 0.018221227, -0.016239503, -0.029286966, 0.01443068, 0.012395754, 0.03604345, 0.025523018, -0.015374992, 0.0020981012, -0.008299303, -0.0018337604, -0.014816385, 0.010320929, -7.0698693E-4, 0.014563682, 0.003697446, 0.014962687, 0.007607695, 0.019697545, 0.03851728, 0.01678481, 0.0049842373, 0.008957662, -0.0012743222, -0.031574596, 0.008691658, -0.022796484, -0.0032518907, -0.028967762, 0.018035024, -0.006497131, 0.002275991, -6.411096E-5, 0.030643582, 0.0019069113, -0.015135589, 0.006320904, -0.016452305, -0.018128127, -0.0047880597, -0.0034247928, 0.01040738, 0.0049243863, -0.02806335, 0.014842985, 0.0027448218, -0.0015345067, -0.008651758, -0.008272704, -0.013399918, 0.005256891, 0.0055661197, -0.0049277116, 0.006889486, -0.0024222927, 0.024512205, -0.017423218, 0.02082806, -0.014124776, 0.016399104, 0.017835522, 0.02801015, -0.0048578857, 0.0057257214, -0.009057413, 0.01681141, 0.023488093, -0.014364179, 0.04397035, -0.034261227, 0.0047614593, -0.013080713, 0.028488956, -0.001401505, -0.0130275125, -0.003167102, 0.014217878, 0.033330217, 0.0016500518, 0.013592769, -0.010008375, 0.018580332, 0.02949977, 0.025709221, -0.008053251, -0.017476419, 0.0022211277, -0.0068562357, -0.026188027, -7.905286E-4, -0.021040862, 0.0021396643, -0.003080651, 0.0030740008, -0.013938574, -0.02572252, 0.012568657, 0.019551244, 0.013459768, -0.020202952, -0.041948725, 0.021439867, 0.006344179, -0.025390018, -0.024232902, -0.02005665, 0.003330029, -0.01916554, 0.013167164, -0.008917761, 0.0319204, -0.018686734, 0.010759834, -0.0027614469, -0.022025075, 0.008512107, -0.01682471, 0.022304378, 0.0017256965, 0.0051737647, 0.010221178, 0.003943499, 0.0050773383, 0.023780696, 0.0053200666, 0.015507993, -0.011584445, -0.0035544694, -0.016665109, -0.006197877, -0.012063251, -0.035671044, 0.008984262, -0.014005075, 0.0042959535, -0.027611144, -0.00958942, -2.1820586E-6, -0.009409867, -0.03617645, -0.032532208, -0.023767397, 0.0042494033, 0.083578244, 0.017370017, -0.0017439843, 0.0027248715, 0.008864561, -6.0889823E-4, -0.025975224, -0.0014571995, -0.013473068, -0.0051538143, 0.010114776, -0.012076551, 0.03367602, 0.016226202, 0.022995988, -0.0039567994, -0.005054063, -0.011684196, 0.010932736, -0.015813898, -0.014058275, -0.0043558045, 0.01284131, 0.041416716, 0.00438573, -0.023674296, 0.01678481, 6.0017E-4, 0.008505456, 0.012269403, -0.012129751, 0.0041928776, -9.875373E-4, 0.006962637, -0.0012751534, -0.011544544, 0.018207928, 0.0012310966, 0.03051058, 0.010074875, 0.008133052, 0.014550381, 0.003936849, 0.0010756509, 0.007960149, -0.03607005, -0.026068326, 0.021546269, 0.019697545, -0.027345141, 0.034952838, -0.0066966335, -0.013712471, 0.0037107463, 0.035617843, 0.00956947, 0.014989288, -0.003674171, -0.010739884, -0.01119209, -0.007448093, -0.025323516, 0.008192902, -0.019431543, -0.014709984, -0.024711708, -0.01203, -0.0014139739, -0.028355954, -3.1026793E-4, -0.0022111526, -0.021094063, -0.005130539, -0.007547844, 0.018673433, -7.2485907E-4, 0.008206203, -9.1106136E-4, 0.008645108, 0.005852073, -0.016186303, -0.023421593, 0.023248691, -0.016040001, -0.007055738, 0.014576982, -0.0044189803, -8.9859247E-4, -0.02163937, 0.032479007, 0.009296816, -0.0010332566, 0.006234453, -0.005443093, 0.04628458, -0.0037539718, 0.013379967, 0.032691807, 0.014563682, -0.01840743, 0.006733209, -0.019045837, -0.008219503, 0.005845423, -0.007627645, -0.014563682, 6.0141686E-4, 0.008724909, -0.036628656, -0.027065838, -0.003684146, -0.017729122, 0.0080732005, 0.010367479, 0.01681141, -0.016665109, 0.011777297, 0.025350116, 0.007734047, -0.020322654, 0.032558806, -0.014177977, 0.002324204, 0.04242753, -0.0049842373, 0.011391592, -0.011803897, -0.022211278, -0.024006799, 0.029978575, 0.024791509, 0.015454793, -0.016066601, -0.028435756, -0.029446568, -0.024312703, -0.006151327, 0.00638408, -0.042613734, 0.01041403, -0.02314229, 0.027158938, 0.028169751, 0.0105669815, -0.008565307, -0.022756584, 0.018713333, -0.011085688, 0.002771422, 0.02561612, -0.025483118, 0.0010889511, -0.006174602, 0.005226965, 0.003458043, -0.011936899, -0.02726534, -0.020894561, 0.022623582, -4.7589658E-4, 0.049450018, 0.005270191, 0.03138839, 0.0071887397, 0.012601907, 0.015694195, -0.025004312, -0.010513782, -0.029792372, 0.002404005, 0.009715771, 0.026786534, 0.007108939, 0.0055395192, -0.02481811, 0.024991011, 0.0044322805, 5.8686984E-4, 0.003233603, -0.0034946187, -0.0077473465, 0.0117107965, -0.016159702, 0.0012876224, -0.022756584, -0.005123889, 0.027823947, -0.0030191378, -6.467206E-4, 0.018460631, 0.035671044, 0.0016591958, 0.010899486, -0.019591145, 0.006736534, -0.013778972, -0.0027697596, -0.014630183, -0.0045287064, 0.0015212065, -0.0022444031, 0.020163052, -0.014177977, 0.0015345067, -0.0044888062, 0.014350879, -6.870367E-4, -0.025961924, 0.023807297, 0.0038204726, -0.018673433, -0.03676166, -0.0037273716, -0.03920889, -0.010753185, -0.0023358418, 0.0028312728, 0.013832172, 0.0013674233, -0.04181572, 0.0067864098, -0.007694146, 0.049716022, 0.015574494, 0.047694396, 0.033223815, -0.01835423, -0.02082806, 0.021094063, 0.006656733, -0.010068226, 0.017316816, 0.02088126, -0.0018719984, -0.011105639, -0.007394892, -0.023355091, -0.019936949, -0.049450018, 0.020695059, 0.018194627, 0.019976849, -0.0318672, -0.012462256, -0.014630183, 0.034261227, -0.0044189803, -0.0029310242, 2.975912E-4, -0.029872173, -0.009742372, -0.0028977736, 0.006723234, 0.0080200005, 0.012628508, -0.024272803, 0.02330189, -0.004239428, -0.017290216, -0.022916187, 0.015773997, 0.018434031, -0.0026583706, 0.013519619, 0.011384943, 0.0070357877, 0.0015444817, 0.008412355, 0.018074926, 0.02886136, -0.018859636, 0.012143051, -0.008764809, 0.0019085738, 0.0038636983, 0.025961924, -0.03144159, -0.017343417, -0.022091575, -0.008871211, 0.030457381, 0.0043491544, -0.011883698, -0.008399054, -0.026400829, 0.0022593657, -0.017556218, -0.011005888, 0.01284796, -0.018287728, 0.014643483, -0.009030812, -0.0037007711, 0.0023524668, 0.0013449793, 0.008332554, 0.002844573, 0.015348392, -0.021213764, -0.0125487065, -0.024951112, 5.710759E-4, -0.03144159, -0.026613632, -0.007674196, -0.008079851, 0.009064063, -0.029792372, 0.0067598093, -0.008718259, -0.0077938973, -0.014656783, 0.0037406718, -0.020601958, 0.003920224, 0.027850548, -0.006969287, -0.030324379, 0.0055228937, 0.025855523, 0.009768972, 0.006005025, 0.024006799, 0.010267728, 0.01832763, -0.027065838, 0.013493018, -0.0014089864, -0.016585307, -0.0095761195, -0.0011296829, 0.030670183, 9.542869E-4, -0.032133203, -0.042055126, 0.010227827, -0.027664345, 0.026400829, -0.026986036, -0.019085739, 0.044129953, 0.03428783, 0.013519619, 0.032665208, -0.0131804645, -0.03295781, -0.0054031922, -0.027052538, -0.014058275, -0.009330067, 0.0058853235, 0.007813848, 0.0022178027, 0.004555307, -0.023793997, -0.02798355, -0.02729194, -0.0042128274, -0.0030158127, 0.030297779, 0.035777446, -0.003434768, 0.010793085, 0.020734958, -0.005788897, 0.020349255, -0.010580282, 0.006467206, 0.016465606, 0.0072352905, 0.0065270565, 0.022756584, -0.029419968, -0.018846335, 0.0038670234, 0.012083201, 0.0038902985, 0.030749984, -0.057031114, -0.011577794, -0.0025137314, 0.016465606, 0.0240467, -0.0013815548, 0.019830547, -0.017928625, -0.016957711, 0.0116775455, 0.014364179, -0.0042893034, 0.0010457255, 0.011112289, 0.006636783, -0.0135728195, -0.022596981, -0.0025453193, 0.001098095, -0.026254527, 0.014005075, 0.012442306, 0.020362554, 0.028409155, 3.3416666E-4, -0.0069360365, 5.644258E-4, 0.004252728, 0.0026533832, -0.0032984412, -0.010932736, -0.016611908, -0.0012011712, -0.03936849, 0.020708358, -0.043464944, 0.00240068, -0.008319254, -0.00220284, -0.022118175, 0.023607794, 0.006630133, -0.045885574, -0.006573607, -0.014005075, 0.010261078, -0.0059784246, -0.0010257753, -0.024099901, -0.02323539, 0.014151377, 0.0071820896, -0.020136451, -0.024565406, 0.01999015, 0.011790597, 0.00340318, 0.028675158, 0.17002933, -0.003840423, 0.03348982, 0.0562331, 0.010653433, 0.0025802322, 0.0160001, 0.023541294, -0.0038503981, 0.005925224, -0.016239503, 0.0049842373, -0.009862073, 0.013014212, 0.0071820896, -0.003320054, -0.016345903, -0.034128226, -0.009742372, -0.043597944, -0.014803085, -0.0027182214, -0.0092170155, -0.008405705, 0.0033765796, -0.0021080764, -0.008332554, 0.0044954563, 0.041469917, -0.005842098, -0.025416618, -0.017968524, -0.018846335, 0.008312603, -0.0058986237, -0.004335854, -0.01847393, 0.018979337, 0.010287679, 0.016651807, -0.0050839884, 0.010088176, -0.011730746, -0.01526859, 0.0077473465, 0.032346003, -0.02487131, 0.008724909, -0.0077406964, 0.0069426866, -0.038038474, 0.02475161, 0.029473169, 0.022051675, -0.0052602156, -0.013300166, 0.018952737, -0.019857148, -0.018035024, -0.008246103, 0.0063774297, 0.036309455, -0.019099038, 0.018713333, -0.012222853, 0.016306004, -0.024312703, 0.006663383, 0.021293566, -0.037878875, -0.0051538143, -0.0023508044, -0.032558806, -0.002483806, -0.006822985, -0.029127363, -0.011451443, 0.015095688, 0.01674491, 0.024126502, -0.03354302, -0.011265241, -0.0072219903, -0.0038337728, -0.016665109, -0.024272803, 0.019551244, -0.024365904, -0.006360804, -0.028435756, -0.007780597, -0.010999237, -0.02250388, 0.008758159, -6.242765E-4, 0.0065802573, 0.017968524, 0.022330979, -0.02080146, 0.0060615507, -0.032346003, 0.004409005, 0.03444743, -0.0011504644, -0.0042028525, -1.9991813E-4, -0.006560307, 0.017941924, 0.0321598, -0.007434793, -0.021466468, -0.03851728, 0.0021479768, -0.008186252, 0.003936849, 0.0041297018, 0.012575307, -0.0104472805, 0.051471643, -0.011118939, 0.009669221, -0.025070813, 0.0037772472, -0.0044356054, -0.0011296829, -0.03048398, -0.021798972, 0.013512969, 0.021280266, -0.034101624, -0.011291841, -0.014031675, 0.013034163, -0.0063541546, -0.0019501369, 0.030829785, 0.035724245, -0.020961061, 0.019830547, -0.018221227, 0.0030540507, -0.012169652, 0.0026217953, 0.009802222, 0.017117314, -0.040592108, 0.027664345, -0.0069227363, -0.012648458, -0.028276153, -0.013087363, -0.0062843286, -2.4750776E-4, 0.014138076, 0.039900497, -0.0055794194, -0.012289354, -0.024472306, -0.01282801, 0.027025938, -0.02487131, 0.018168027, 0.01989705, -0.013133914, -0.036389254, -7.830473E-4, -0.1690717, 0.014936087, 0.019537944, -0.025735822, 0.018766534, -0.007906949, 0.007441443, 0.003843748, -0.0035843947, -0.014071575, 0.010334229, 0.017157214, -0.04482156, -0.03537844, -7.6933147E-4, 0.020349255, -0.020947762, 0.022517182, 0.023049187, -0.001261022, 0.022184677, -0.02242408, -0.013340066, -0.004375755, 0.004475506, 0.0014289366, 0.01283466, -0.02247728, -0.009802222, -0.034873035, -0.020947762, -0.006407355, 0.0035910448, 0.008744859, 0.009529569, 0.012382454, -0.03434103, -0.001321704, -0.017902024, 0.00881801, 0.022769885, 0.0071820896, 0.019351741, 5.1122514E-4, 0.0046051824, 0.024645207, 0.020349255, -9.1604894E-4, -0.011910299, -0.019537944, -0.018606933, -0.03521884, 0.007361642, -0.014630183, 1.21779645E-4, 0.031680994, -0.025416618, 0.019950248, 0.015827198, -0.025203815, -0.034793235, -0.007773947, 0.0065137562, -0.029925374, 0.007634295, -0.0150424875, -0.00963597, 0.022743285, -0.02793035, 0.007587745, -0.012256103, 0.012129751, -0.005157139, 0.005220315, -0.019351741, 0.005752322, -0.028462356, 0.015534594, -0.011118939, 0.025137315, -0.016212903, 0.04960962, -0.020349255, 0.003920224, 0.028222952, 0.006733209, 6.7207403E-4, -0.012435655, -0.0066101826, -0.01284796, 0.008405705, -0.031813998, -0.013699171, -0.013991775, 0.012688358, 0.009795573, -0.0023674297, 0.017276915, 0.010181277, -0.013473068, -0.009137214, -0.018872935, -0.0138986735, 0.018314328, 0.03793207, 0.028887961, 0.022038376, 0.025523018, 0.021958575, 0.004631783, -8.329229E-4, 0.010187928, 0.019976849, 0.014696684, -0.018939437, 0.002206165, -0.017130613, -0.013360017, 0.015853798, -0.012482205, 0.03551144, 0.002886136, 0.0069825873, -0.010181277, -0.022703383, -0.010939387, -0.08746189, -0.0046284576, 9.883686E-4, 0.020269454, -0.041390117, 0.025403317, -0.014044975, 0.04391715, -0.00879806, 0.022796484, 0.015069088, -9.0108626E-4, 0.023807297, -0.0029493119, 0.03612325, 0.0043491544, -0.0088579105, -0.008552006, -0.00439238, 0.029366767, 0.007042438, -0.01202335, -0.014071575, -0.016931111, -0.021439867, 0.0045253816, -0.038916286, -0.005473018, -0.001765597, 0.008325904, 0.018074926, -0.016465606, 0.010081526, -0.024977712, -0.008512107, -0.012695009, -0.02247728, -0.021213764, 0.01923204, -0.05264206, 0.008598558, 0.004947662, 0.006636783, -0.022277778, 0.0018952737, -0.005542844, -0.021147264, 0.006916086, -0.01441738, -0.030909587, -0.014776484, -0.006656733, -0.021027563, -0.0017838847, 0.021546269, 0.0037838973, 0.0062145027, 0.011870398, -0.0038836484, -0.0025303566, 0.0044888062, -0.009130564, -0.018979337, 0.029020963, -0.0072219903, -0.0060283, -0.016957711, -0.012987612, 0.021200465, -0.011690846, -0.016691709, 0.035431642, -0.022570381, -0.013579469, -0.013493018, 0.004276003, -0.01920544, -0.021918673, 0.0057390216, -0.027664345, -0.0013557856, -0.03793207, -0.0055860695, -0.014949387, 0.0033898798, 0.012535406, 0.008658408, 0.018700033, 9.102301E-4, -0.03593705, 0.017822223, 0.013373317, -0.0036409204, -0.0089776125, 0.006473856, -0.0044721807, -0.003246903, -0.011870398, 0.01923204, 0.011803897, 0.006862886, -0.007042438, -0.07458733, 0.022995988, 0.005017488, -0.025243714, 0.01766262, -9.118926E-4, 7.946849E-4, -0.005848748, 0.009828823, -0.003690796, -0.0026616957, 0.028276153, -0.0055461694, -0.006407355, -0.008093151, 0.021612769, 0.013965175, -0.0040100003, -0.00557277, -0.0017672596, -0.017037513, -0.008312603, 0.03301101, -0.010367479, 0.0011795585, 0.010234478, 0.011032488, 0.01916554, -0.008212852, -0.017050812, 0.030191377, -0.010573632, -0.0160267, 0.012482205, -0.0038237977, -0.01929854, -0.0042660283, -0.0013192102, 0.01681141, 0.020362554, 0.022756584, -0.015920298, 0.0034181427, -0.024339303, 0.015667595, 0.0040233, -0.02726534, 0.0051737647, 0.036282852, 0.0033383416, 0.019285241, -0.00319869, -0.0043624546, -0.01440408, 0.006460556, -0.040272903, 0.03460703, 0.022197977, -0.0019833872, 0.005689146, 0.043518145, 0.011364992, 0.015654296, -0.026919536, 8.3791045E-4, 0.006896136, 0.0053200666, 0.016705008, 0.003604345, -0.017104013, -0.016159702, -0.015787298, 0.015095688, 0.014962687, 0.012362504, -0.0050008623, -0.0067564845, 0.0239669, -0.0088579105, 0.006733209, 0.02560282, -0.0068429355, -0.015787298, 0.008984262, 0.005991725, 0.027664345, -0.013173815, 0.011085688, -7.585251E-4, 0.00887786, -0.022783184, -0.010254428, 0.009210365, 0.016705008, -0.0010565319, 0.021825572, -0.01361937, -0.029313566, 0.0024123176, 0.028488956, -4.513744E-4, -0.012734909, -0.01847393, -0.026307728, -0.030803185, 0.001724034, 0.0029576244, -0.030084975, 0.013579469, 0.012415705, 0.023009287, 0.0075079435, 3.8217197E-4, 0.0050839884, -0.017370017, -0.010094826, 0.0058154976, -0.007787247, 4.9127487E-4, 0.039847296, 0.004555307, 0.0047581345, 0.052455854, -0.0038237977, 0.007368292, 0.017729122, 0.013446468, -0.021360066, 0.0020931137, -0.007893649, 0.01443068, -0.0030706758, -0.03037758, 0.024552107, -0.013280216, -0.009197065, 0.019883748, 0.031148989, -0.0011305141, 0.074108526, -0.007594395, -0.0031139015, 0.013712471, -0.019458143, 0.014324279, 0.019910349, 0.018101526, -0.02327529, 0.005951824, 0.0080067, -0.014470581, 0.019032538, -0.019099038, -0.01199675, -0.012615208, -0.010487181, 0.0010573632, -0.024764908, -0.0161198, 0.004977587, -0.013805572, 0.013040813, -0.0037539718, -0.01521539, 0.0051770895, 0.0080732005, -0.008512107, -0.02806335, -0.01360607, 0.010626833, -0.008691658, -0.006334204, -2.795113E-4, 0.04628458, -8.2377903E-4, -0.010101476, 0.0030590382, 0.027079139, -0.0045187315, -2.477156E-4, 0.013592769, -0.033223815, 0.009157164, 0.019045837, -0.001640908, -0.011697496, -0.035112437, -0.011351692 ], + "id" : "9e562e6b-ee9f-4429-a461-871863b52d2b", + "metadata" : { + "source" : "movies.csv" + } + }, + "aad418c0-0397-473d-9b27-649f89d2e3ed" : { + "text" : "Smith-Audrey Wasilewski-Angela Oh-Robert Briscoe Evans-Chris Rolfes-Katie Kneeland-Jeanine O'Connell-Kelley Hazen-Brooke Elliott-Kristina Martin-Harmony Rousseau-Lisa Long-Heidi Helmer-Marla Martensen-Sally Meyers Kovler-Ashley Quirico-Regan Rohde-Liz Tannebaum-LeShay N. Tomlinson-Cristine Rose-Arden Myrin-Rachel Duncan-Alex McKenna-Regiane Gorski-Juliandra Gillen-Lisa Anne Hillman-Tracy Pacheco-Jamie Gutterman-Maggie Egan-Juanita Jennings-Hallie Meyers-Shyer-Kate Asner-Caryn Greenhut-Jennifer Greenhut-Marnie Mosiman-Nnenna Freelon-Gil Hacohen-Nancy Monsarat-Jacqueline Thomas-Rory Byrne-Victoria Garcia-Kelleher-Gertrude Wong-Andi Eystad-Greg Bronson-Kira Coplin-Kiva Dawson-David C. Fisher-Elizabeth Friedman-Melanie Good-Drew Howerton-Kimberly Lyon-Krista McRoberts-Bette Midler-Andy Schofield-Nancy Sinclair-Melinda Songer-Lauren Stewart-Tracey Stone-Dean Teaster-Gena Vazquez-Nancy Wetzel,telepathy-womanizer-single father-super power-teenage daughter-misogyny-advertising executive-woman director-female psyche,/n5NOxrcgeiCxvEn47FG9bvlHNsV.jpg,/xXHtSqFx8mLjzNGX9oCKQEx2yTa.jpg,17439-15402-18896-1597-693-390056-544-9489-15566-1493-9029-114-634-2024-9919-4806-8346-1824-4327-8488-1844\r\n862,Toy Story,Animation-Adventure-Family-Comedy,en,Led by Woody Andy's toys live happily in his room until Andy's birthday brings Buzz Lightyear onto the scene. Afraid of losing his place in Andy's heart Woody plots against Buzz. But when circumstances separate Buzz and Woody from their owner the duo eventually learns to put aside their differences.,111.892,Pixar,10/30/95,30000000,373554033,81,Released,,7.966,16430,Tom Hanks-Tim Allen-Don Rickles-Jim Varney-Wallace Shawn-John Ratzenberger-Annie Potts-John Morris-Erik von Detten-Laurie Metcalf-R. Lee Ermey-Sarah Freeman-Penn Jillette-Jack Angel-Spencer Aste-Greg Berg-Lisa Bradley-Kendall Cunningham-Debi Derryberry-Cody Dorkin-Bill Farmer-Craig Good-Gregory Grudt-Danielle Judovits-Sam Lasseter-Brittany Levenbrown-Sherry Lynn-Scott McAfee-Mickie McGowan-Ryan O'Donohue-Jeff Pidgeon-Patrick Pinney-Phil Proctor-Jan Rabson-Joe Ranft-Andrew Stanton-Shane Sweet-Nathan Lane-John Lasseter-Ernie Sabella-Jonathan Benair-Anthony Burch,martial arts-jealousy-friendship-bullying-elementary school-friends-rivalry-rescue-mission-buddy-walkie talkie-toy car-boy next door-new toy-neighborhood-toy comes to life-resourcefulness,/uXDfjJbdP4ijW5hWSBrPrlKpxab.jpg,/lxD5ak7BOoinRNehOCA85CQ8ubr.", + "embedding" : [ -0.0026566181, -0.02992873, -0.018811176, -0.04275143, -0.019370465, 0.032684248, 0.009617026, 0.0019813802, -0.0026821955, -0.056419887, 0.013948099, 0.010776526, 0.028209943, 0.0050097206, -0.0022149852, 0.006564814, 0.015441807, -0.0070593064, 0.020066164, -0.03620367, -0.010271803, -0.005783857, -0.018770253, 0.014527848, 4.143506E-4, -0.0021518948, 0.037322246, -0.01082427, -0.011594996, -0.008580297, 0.011090273, -0.011192582, -0.009207791, -0.01628756, -0.026095562, -0.01733793, 0.0050779264, -0.020448117, 0.027405115, 0.0042117117, 0.008157421, 0.009603385, -0.019752417, -0.005957782, -0.02735055, 0.0037990664, 0.006476146, -0.016355766, -0.0048596677, 0.020925557, 0.029765038, 0.027623374, -0.031756647, -0.01967057, -1.2873857E-4, -6.6202314E-4, -0.011594996, 0.01919313, 0.003945709, 0.004876719, 0.02223511, -0.0070593064, -0.028100815, -0.018715687, -0.016601305, -0.007052486, 8.717562E-4, -0.018006347, -0.01548273, -0.012618084, 0.02050268, 0.008048291, 0.0155236535, -0.0030556226, 0.02224875, -0.014405077, -0.018579276, -9.923952E-4, -0.00594073, 0.0018449685, 0.0058520627, -0.0058281906, -0.008430244, 0.0059475508, 0.014814313, 0.0036865268, -0.01105617, 0.036612906, -0.042669587, 0.021744028, 0.0049858484, 0.042642303, -0.0040241457, -0.0062408363, 0.018142758, 0.025277091, -0.025563557, 0.031620238, -0.01886574, -0.033420872, 0.0023241148, 0.0014715415, 0.0053030057, -0.0149780065, 6.255756E-5, 0.0128022395, 0.0019182898, -5.2646396E-4, 0.025781816, 0.003350613, -0.0051393113, -0.016833207, 0.012317978, -0.042642303, -0.001244757, -0.02036627, 0.014186819, -0.015046213, -0.023490097, -0.017010542, 0.039204728, 0.040568847, -0.0025730662, -0.045043148, 0.031347413, 0.039532118, -0.006421582, -0.0032483041, -0.010578729, -0.0064045303, 0.03642193, -0.0047641792, 0.013798045, 0.009480614, -0.022753475, 0.02932852, -0.03527607, 0.0046959734, -0.019097641, -0.027500603, 0.02943765, 0.021621257, -0.01664223, -0.01932954, -0.027691578, 0.012781778, 0.018265529, -0.008512091, 0.023312762, 0.020570887, 0.0075844917, 0.03235686, -0.0040207356, 0.015278112, 0.02189408, 0.0091668675, 0.0045595616, -0.0038502207, -0.022480652, -0.024526827, -0.0075913123, -0.010544626, 0.009753438, -0.010524164, 7.174404E-4, 0.018565634, 0.013804866, -0.011185761, -8.6834584E-4, 0.0018193913, -0.017133312, 0.019806981, -0.04133275, 0.009767079, -0.0049040015, -0.0021246125, -0.005112029, -0.0051154396, -0.040814385, -0.018742971, 0.0043242513, 0.0016394984, 0.030337967, 0.025986433, 0.001969444, 0.0025048603, 0.009678411, -0.02467688, 0.0034989605, -0.009071379, 0.0012353787, 0.031947624, 0.0010034788, -0.018333735, -0.6416807, -0.030447096, -1.94813E-4, -0.019506875, 0.019165847, 0.02514068, -0.005432597, -0.015196266, -0.0339938, 0.0018228017, -0.041223623, 0.017638035, 0.0202435, -0.007298027, -0.014336872, -0.018210964, 0.017883576, -0.022903528, 0.027077727, 0.007870956, -0.016805924, 0.027064085, 0.016614947, -0.0051870556, 0.016492177, 6.910106E-4, 0.0029533138, -0.018906664, -5.17512E-4, 0.008273371, -0.01430959, 0.021266587, 0.011601817, -0.01222931, 0.043679032, 0.026518438, -0.02398118, 0.06274939, 0.032056753, 0.020543605, -0.029273955, -0.017556189, 0.004668691, -0.0026054638, -0.007973265, 0.02829179, -0.0084507065, -0.0027913249, -0.007959624, -0.019111281, 0.004215122, -0.010162673, -0.0174607, -0.00873035, -0.001885892, -0.004181019, 0.015073495, -0.018674765, 0.023367327, 0.007195718, -0.012011052, 0.028128097, 0.0027606322, 0.022794398, -0.010681038, 0.03325718, -0.0018466737, -0.018565634, -0.012536237, -0.037322246, 0.007379874, 0.023803845, -0.029546779, 0.007379874, -9.5402944E-4, 0.013409272, 0.021007406, 0.002746991, -0.0071206917, 0.016778642, -0.0061282967, -2.8454632E-4, 0.0010384342, 0.0014706888, 0.034730423, -0.0011714357, -0.030201554, 0.012324799, 0.008368859, -0.015782837, 0.006203323, 0.027159574, 0.007113871, 0.0012822702, -0.0053371084, -0.017256083, -0.015332677, 0.011206223, 0.014609695, -0.06596871, 1.6710436E-4, -0.024281286, 0.028155379, -0.014091331, -0.0019080589, -0.002143369, 0.003584218, 0.0038263488, 0.029819602, 0.004593665, -0.021607617, -0.011622279, -0.00896907, -0.004099172, -0.023953898, -0.024063027, 0.012747675, 0.013313784, -0.0015320742, 0.0020205986, -3.7214824E-4, 0.0045697927, 0.0020529963, -0.0030760842, 0.027827991, 0.025072474, -0.008941788, -0.005487161, 0.0017869936, 0.022071416, 0.0073730536, -0.012515775, 0.006356786, -0.01829281, -6.8951864E-5, -8.487367E-4, 0.0133478865, -0.012147464, 0.03186578, -0.0049176426, -0.009603385, -0.0035876282, -0.008859941, 0.0035398842, -0.011506328, -0.0050404132, -0.033584565, 0.0018483788, -0.011485867, -0.014773389, -0.014541489, 0.013184193, 0.018647483, 0.018920306, 0.008634862, 0.0015320742, -0.04250589, -0.016792282, 0.006370427, 0.002665144, 0.0042083017, 0.018470148, -0.0031374695, -0.015550936, 0.013388811, -0.0010606011, -0.022480652, -8.167652E-4, -0.0012166221, -0.016437612, 0.010114929, -0.020775504, 0.0049210526, 0.008457527, -0.019997958, 0.024895139, -0.0047471276, 0.032329578, -1.2266397E-4, -0.011942846, -0.002003547, -0.00814378, -0.022003211, -0.005248441, 0.025618121, 0.015223548, 0.023953898, -0.0016906528, -0.009030456, 0.0070115626, -0.021689463, -8.585679E-6, 0.0071206917, -0.0073730536, -0.0071479743, 0.008171062, 7.9161423E-4, 0.00675238, 0.007843674, 0.008205165, 0.036476493, 0.020311706, 0.0038945547, -0.0039866325, 0.013327425, -0.043242514, -4.8724562E-4, -0.023380969, -0.0016829796, 0.006912664, 0.01489616, -0.00698428, 0.00698087, -0.0069433567, 0.0028100815, 0.012113361, -0.0046038954, 0.021007406, -0.027282344, 0.01233844, -2.8518576E-4, 7.191455E-4, 0.025058832, 0.021784952, -0.020448117, 0.0039081955, 0.016614947, -0.010210417, -0.010114929, -0.008825839, -0.007168436, -0.0015525359, 0.007741365, 0.024635956, -0.0174607, -0.0067319185, 0.03410293, -0.006203323, 0.036612906, -0.010878835, 0.012781778, 0.026750337, 0.012372543, 0.013047781, -0.0040650694, -0.01385943, 0.012386184, 0.020993764, -0.009446512, 0.02758245, -0.013525222, 0.020925557, -0.0019131744, 0.024731444, 0.014596054, -0.0040821205, 0.0044299704, 0.0053848526, 0.030829048, 0.029983295, 0.013641172, -0.018947588, 0.013327425, 0.007318489, -4.360912E-4, -0.0010154147, -0.018742971, 0.015387242, -0.0019796751, -0.027841631, -0.01732429, -0.014486925, -0.010544626, 4.0070942E-4, 0.0031971496, -0.022330599, -0.0020683426, 0.013491119, 0.0017418071, 0.012747675, -0.023039939, -0.025127038, 0.015646424, 0.020789146, -0.014391436, 0.004003684, -0.01898851, -0.01082427, -0.019861547, -0.020284424, 0.008689427, 0.030337967, -0.007277565, 0.019997958, -0.0065614036, -0.002862941, 0.0013555915, -0.02294445, 0.027473321, 0.021744028, -0.0036012693, 0.02036627, -0.015414524, -0.0029942372, 0.01793814, -0.023912974, -0.009760259, -0.015496371, -0.018415581, -0.012461211, 0.00767998, -0.013443375, -0.045588795, 0.004736897, -0.015209907, -0.0077004414, -0.010271803, -0.0026856058, 0.0038604517, -0.016669512, -0.020216217, -0.038222563, -0.033038918, 0.020570887, 0.074971884, 0.040950797, -0.002049586, 0.01851107, -0.021962287, 0.0058384216, -0.011206223, -0.003224432, 0.0066193785, -0.004620947, 0.017856294, 0.0018569045, 0.043951858, -0.0043719956, 0.008907685, -0.009610206, -4.9321365E-4, -0.0055928803, 0.0012174746, -0.0163012, -0.026750337, -0.014473284, 0.0043037897, 0.022003211, 7.454687E-5, -0.013791225, 0.022726193, 0.016151147, -0.0043140207, -0.0048119235, -0.0076663387, 0.0058520627, 0.0030811997, 0.011233505, 0.0074821827, 0.008184703, 0.049844842, 0.02107561, 0.01872933, -0.011820075, 0.012011052, 0.014923442, 0.013920816, -0.00767998, 0.005142722, -0.017788088, -0.011547252, 0.016874129, 0.021430282, -0.044442937, 0.0140776895, 0.0059611923, -0.017542547, -0.015114418, 0.02153941, -0.015237189, 4.991816E-4, -0.007864135, -0.0048255646, -2.1442217E-4, -0.0018142759, -0.022848964, 0.008300653, -0.010135391, -0.010033082, -0.03153839, -0.013068243, -3.7726367E-4, -0.01327286, -0.0051495424, 0.0018091605, -0.0076526976, -0.015496371, -0.002851005, 0.025086116, 0.017474342, 0.024649598, -7.835148E-4, 0.0035194224, 0.015319036, -0.02711865, -0.030119708, 0.02188044, -0.029737756, -0.0035671664, 0.01164274, -0.00581796, 0.02535894, -0.0066841743, 0.007298027, 0.01733793, 0.01267947, -0.011110734, -0.029355802, 0.043351643, 0.020966481, 0.015496371, 0.02002524, 0.005783857, -0.0024707573, 0.0070388447, -0.019738777, -0.002409372, -0.013832148, -0.030801766, -0.0049449247, -0.014827954, 0.009582924, -0.019288616, -0.02246701, -0.019806981, -0.022344239, 0.003805887, 0.0021791772, 0.007693621, -0.0021962286, 0.006690995, 0.012045155, 0.0032210217, 0.018742971, 0.0061521684, -0.025931869, 9.881324E-4, 0.014159537, -0.019738777, 0.034403037, -0.008791735, -0.02654572, -0.001682127, 0.01593289, -0.010953861, 0.020802787, -0.015100777, -0.0193159, -0.0075844917, -0.023599228, -0.0133478865, 0.004576613, -0.0015550936, 0.021021046, -0.017065106, 0.009630667, 0.019438671, -0.0060669114, 0.011697305, -0.030856332, -0.003887734, -0.011745049, 0.009835285, 0.030747201, -0.008825839, 0.023039939, -0.018906664, 0.0059611923, -0.00710023, -0.035576176, -0.017897218, 0.0040105046, 0.027800709, 0.017392494, 0.04073254, 0.011117555, 0.018811176, 0.017256083, 0.0069535873, 0.02571361, -0.008580297, -0.016955977, -0.026395667, 0.0149780065, 0.0135388635, 0.019834263, 0.016969617, -0.0037990664, 0.015878323, 0.021975929, 0.010919758, 0.013184193, 0.004273097, -0.018238246, -0.006997921, 0.0044674836, -0.015810119, 0.013995842, -0.022562498, -0.004723256, 0.030938178, 0.008477989, -0.003386421, -0.004685743, 0.03797702, -0.0069228946, 0.018401941, -0.01535996, 0.015864683, -0.035658024, -0.017146952, -0.024649598, -0.017487982, -0.0026480926, -0.0069535873, 0.032902505, 0.0059202686, -0.010851553, -0.011090273, 0.028182661, -0.017065106, -0.028128097, 0.019370465, -0.007877776, -0.006298811, -0.026013715, 2.7602058E-4, -0.023926616, -0.01257716, 0.0015926068, -0.009828464, 0.017378854, -0.023790203, -0.037431374, 0.017624395, -0.007870956, 0.044088267, 0.024690522, 0.0363128, 0.026600285, 0.0015431576, 0.0018262119, 0.007195718, 5.1452796E-4, -0.009105482, 0.029874166, 0.015782837, -0.021593975, 0.005019951, -0.009357844, -0.01489616, -0.03674932, -0.043569904, 0.022548858, 0.0109947845, 0.019479593, -0.029246673, 0.0018279171, -0.030283403, 0.0176926, 8.917916E-4, -0.002107561, 0.0047675897, -0.034266625, -0.01594653, 0.021784952, 0.0020581118, 0.007379874, 0.0066296095, -0.020830069, 0.003062443, -0.003979812, -0.0023820896, -0.0070388447, -0.010237699, 0.044442937, -0.015291754, 0.02339461, 0.011138017, 0.00873035, -4.970502E-4, 0.0074071563, 0.0031920343, 0.029055696, -0.00593732, 4.4717468E-4, -4.9960794E-4, -0.012890908, 0.018906664, 0.016901413, -0.019711493, -0.015032572, -0.009139585, -0.00873035, 0.03734953, 0.0074003357, 0.020680016, -0.0095283585, -0.02736419, -0.0039320677, 0.014323231, -0.009514717, 0.0012473146, -0.034948684, 0.0020751632, -0.008743991, 0.028100815, -0.011363097, -0.002397436, -0.008525733, -0.0029175056, 0.0068956125, -0.0077686473, -0.0056985994, -0.032984354, -0.025686327, -0.03061079, -0.024622316, -0.014677901, -0.0034068828, 0.0052927746, -0.01898851, -0.01188146, 0.0022678447, 0.01897487, 0.0044674836, -0.008198344, -0.008007368, -0.003272176, 0.018429223, -7.498382E-4, -0.016792282, 0.0047675897, 0.0060259877, -0.0012635136, -0.015755553, -0.006578455, 0.0056406246, 0.024608674, -0.01641033, 0.020134369, 0.0072434624, -0.039068315, 0.0013172256, 0.032629684, 0.011731408, 0.023421893, 0.007598133, -0.033693694, -0.012058796, -0.0049517453, 0.029601343, -9.4891404E-4, -0.0057190615, 0.0080823945, 0.027064085, 0.014145895, 0.027759785, -0.009378306, -0.018702047, 0.003737681, -0.013068243, -0.027500603, -0.013668454, 0.007714083, 0.008402962, 0.011131196, -0.019479593, -0.018811176, -0.004900591, -0.03464858, -0.022767115, -0.020448117, 0.011369917, 0.024267646, 0.006926305, 0.00512567, -0.0063226833, -0.0030061733, 0.008477989, -0.021402998, -0.0016096582, 0.012713572, 0.014937083, 0.0202435, 0.020966481, -0.028073533, -0.0040548383, 0.019002153, 0.011547252, 0.003516012, 0.021866798, -0.02025714, -1.4365859E-4, -0.006718277, 0.013361528, 7.170141E-4, -0.013341066, 0.032411426, -0.02724142, -0.0044060987, 7.123249E-4, 0.012590801, 8.512944E-4, -0.0035637561, 0.008518912, -0.013572966, -0.008225626, -0.017256083, 6.436928E-4, -0.0078982385, -0.012706752, 0.026586644, 0.005794088, 0.011472225, 0.02932852, 0.028128097, 0.009521538, 5.771921E-4, -0.0073525915, 0.018933946, -0.001873956, -0.0029720704, -0.014350513, 0.026900392, -0.019070359, 0.014582413, -0.028837437, 0.0066261995, -0.0057565747, 0.005504213, -0.0051290807, 0.028701026, -0.004163968, -0.043679032, 0.016587665, -0.0051631834, -0.005991885, -0.0076731592, -0.019370465, -0.02119838, -0.007577671, -0.012502134, 0.0065000183, -0.032547835, -0.017487982, 0.006704636, -0.004914232, -0.014568771, 0.012195208, 0.18377388, -0.016724076, 0.009453332, 0.034157496, -0.01036047, 0.003050507, 0.026491156, 0.032193165, -0.013388811, 0.022712551, -0.0066671227, 0.01548273, 0.008866762, 0.0021467793, 0.009023636, -0.02585002, -0.016246635, -0.016369406, -0.015960172, -0.021730388, 0.014064048, 5.925384E-4, -0.002619105, -0.02911026, 0.0050676954, 0.0065852758, -0.022644345, 0.004740307, 0.016860489, 0.0060464493, -0.016355766, -0.010053543, -0.0020649324, -0.0051972866, -0.011315352, -0.008362038, -0.0051290807, 0.018183682, 0.031156437, -0.011322172, -0.004876719, -0.013313784, 0.0042185322, 0.0032465989, -0.006875151, 0.02911026, -0.033830106, -4.1882662E-4, -0.017201519, 0.009582924, -0.025522633, 0.0018466737, 0.016369406, 0.041960243, 0.0031357645, 0.008778094, 0.004153737, 0.004750538, -0.013995842, 0.0075094653, 0.0045697927, 0.039395705, -0.030419813, 0.020870993, 0.0031971496, 0.014159537, -0.023203634, -0.0119087435, 0.012461211, -0.02188044, -0.004048018, -0.023094503, -0.0052279793, 4.139243E-4, -0.011397199, -0.017269723, 0.006141938, -9.105482E-4, -0.0031562261, 0.022685269, -0.045070432, -0.020420834, 0.0015354845, -0.00308461, -0.01593289, -0.024417698, 0.018142758, -0.017146952, -7.954508E-4, -0.011185761, -0.016082942, -0.017392494, -0.0010333188, 0.0030777894, 0.0033454974, -0.005968013, 0.015919248, 0.015851041, -0.024567751, -0.010728782, -0.04294241, 0.013995842, 0.020325346, -0.0028220175, -0.035303354, -0.008375679, 1.473886E-4, 0.009964876, 0.027677938, -0.004201481, -0.026832186, -0.024185797, -0.012051975, -0.013115987, -0.0062919906, 0.037485942, 0.01094704, -0.014773389, 0.02606828, -0.0052109277, -3.642619E-4, -0.008928147, 0.016724076, 0.0014152715, -0.0073866947, -0.024772368, -0.02957406, 0.012618084, -0.0044299704, -0.020216217, 0.02829179, -0.012358902, -7.1147236E-4, -0.0017750575, 4.1403087E-5, -0.0046004853, 0.017897218, 0.009412409, 0.0091668675, -0.0021842928, -0.0037956561, -0.009562462, 0.003340382, -0.005671317, 0.010224058, -0.015059854, 0.0052552614, -0.0028441844, -0.013245578, -0.037213117, -0.028946567, -0.00395594, 0.017651677, 0.019070359, 0.023926616, 5.3967885E-4, -0.024704162, -0.035849, -0.017433418, 0.053282417, -0.029410366, 0.025195245, 0.02793712, 5.060022E-4, -0.029464932, -0.019493235, -0.1753709, 0.02211234, 0.0043719956, -0.038604517, 0.013150089, 0.012352081, 0.030310685, 0.016464895, 0.012195208, -0.01767896, 0.026586644, 0.010612831, -0.023872051, 0.0041162237, 0.00943287, 0.030583508, -0.009808003, 0.032438707, 0.020734582, 0.006926305, 0.03500325, -0.010490061, -0.0019336361, 0.009821644, 0.005551957, 0.0040343767, 0.024363132, -0.0024502955, 0.0045220484, -0.0014715415, -0.03745866, -0.009248715, 0.014050407, 0.0013717903, -0.007925521, 0.0034068828, -0.018401941, -0.013954919, -0.008014188, 0.00512567, 0.03516694, 0.0020512913, 0.029383084, 0.007236642, 0.028428202, 0.014582413, 0.043815445, -0.020216217, 0.014909801, -0.018783893, -0.01175187, -0.040487, 0.012754496, -0.005688369, -0.01070832, 0.022030493, 0.0016053955, 0.020775504, 0.0028441844, -0.001969444, -0.012017872, -0.013607069, 0.0043106102, 3.0223723E-4, -0.0061385273, -0.021784952, -0.009944415, 0.001572145, -0.030801766, 0.0020427655, -0.018074553, 0.022657987, 0.010565088, -0.009760259, 0.004740307, -0.022821682, -0.031374697, 0.013218296, -0.0048119235, 0.009453332, -0.018838458, 0.03142926, -0.003945709, 0.004392457, -0.008655324, -0.02153941, 0.0065750447, -0.009992158, -0.0013828739, -0.014350513, 0.013566146, -0.026600285, -0.031511106, -0.0045732027, -0.010019441, -0.0021518948, -0.0015380421, 0.016669512, 0.022412445, 0.007516286, -0.0058418317, -0.018333735, -0.0050438233, 0.018401941, 0.011956487, -0.0032551247, 0.00616922, 0.023135427, 0.018824818, 0.0041946606, -0.0176926, 0.005807729, 0.03224773, 0.0044163293, -0.01628756, 0.019247694, -0.0055076233, -0.022057775, 0.01059919, 0.015155342, 0.06356786, -0.0010964092, -8.866762E-4, -0.0043242513, -9.761964E-4, -0.016219353, -0.08904957, -0.009910312, 0.006234016, 0.047825947, -0.028510049, 0.020325346, -0.013184193, 0.015264471, -0.033448152, 0.0400232, 0.010803808, -0.025263451, -0.0027964402, -0.01898851, 0.0017332814, -0.001618184, -0.015837401, -0.011363097, -0.027145931, 0.03292979, 0.002956724, -0.008723529, 0.0047641792, -0.008130139, -0.017842652, 0.017556189, -0.035412483, 0.023776563, 0.012372543, 0.0057770363, 0.0058520627, -0.03467586, 0.023476457, -0.04239676, -0.01732429, -0.027132291, -0.013777584, -0.034539446, -0.0031869188, -0.04550695, -1.9044355E-4, 0.0050574644, 0.015441807, -0.011022067, -0.01385943, 0.011151658, -0.03587628, 0.016601305, -0.016314842, -0.019506875, -0.008362038, -0.0059509613, -0.021907723, 0.009398768, 0.02106197, 0.029901449, 0.034975965, 3.086315E-4, -0.0119087435, -0.034075648, -0.0026600286, 0.0050029, -0.015100777, 0.017037824, 0.011588176, 0.017597111, 0.010053543, -0.0124475695, 0.023121787, -0.023803845, -0.023421893, 0.027309626, -0.034021083, -0.012072437, -0.011253967, 0.0011271018, -0.029192109, -0.032520555, 0.030256119, -0.037158553, -6.1086874E-4, -0.030201554, 0.013061422, -0.019643288, 0.008014188, 0.011731408, 0.0066057374, 0.015414524, -0.012768137, -0.043460775, -2.1474189E-4, 0.018320095, -0.0076663387, -0.008061932, -0.00966477, 0.0012029809, 0.00581796, 0.0054530585, 1.1939355E-6, -0.008041471, 3.459316E-4, -0.013361528, -0.06645979, 0.029492214, -0.005879345, 0.003096546, -0.013150089, -0.014064048, -0.0035773974, -0.010074005, -0.005794088, 0.018770253, -0.0050029, 0.022439728, -0.0061282967, -3.5744134E-4, -0.0057327026, 0.011410841, 0.01198377, -0.004269687, 0.003070969, 0.015510012, -0.010060364, 0.024758726, 0.024540469, 0.02211234, 0.012372543, 0.02943765, -0.0012652187, 0.003282407, -0.025386222, -0.0065886863, 0.026054638, -0.026000073, 0.0028424792, 0.011192582, -0.009582924, -0.0377042, -0.006063501, 0.009944415, 0.013586607, -0.0022627295, -0.018770253, -0.027145931, -0.0016940631, -0.015960172, 0.006742149, 0.008709888, -0.014677901, 0.01641033, 0.019465953, 0.0030658534, 0.033693694, 0.01548273, 0.004552741, -0.0041878396, 0.019043077, -3.7832937E-4, 0.04250589, -0.0074821827, -0.01187464, -0.016655872, 0.017665317, -0.007925521, 0.021225663, -0.025058832, 4.1861346E-4, -0.004457253, 0.018933946, -0.0045595616, -0.002095625, -0.033066202, -0.028946567, -0.0104696, 0.007475362, 0.03980494, 0.015510012, 0.0027640425, -0.0053746216, 0.024267646, -0.012720393, 0.021675821, 0.007850494, -0.010831091, -0.036367364, 0.02432221, -5.260377E-4, 0.010606011, -0.004781231, 0.010633294, 0.01489616, -0.0022064596, -0.013647992, 0.01094704, 0.009576103, -0.019438671, 0.024185797, 0.039477553, -0.016505819, -0.01268629, 0.014064048, 0.016219353, 0.0024724624, -0.015278112, -0.0076868003, -0.027473321, -0.020789146, 0.005749754, -0.034403037, -0.011124375, 0.010278623, 0.014295949, 0.024786009, 0.0015747028, -0.020052522, 0.006087373, -0.017501624, 0.005112029, -0.0024946292, -0.025781816, -0.018129118, 0.040214173, 0.009303279, -0.0026583234, 0.040487, 0.0071206917, 0.052791335, 0.005688369, 0.0067592007, -0.028482767, 0.003468268, 0.0014775094, 0.011513149, -0.010189955, -0.024990628, 0.022535216, -0.0022439728, -0.0014902981, 0.014282307, 0.021116534, -0.028701026, 0.07731816, 0.014991648, -0.0047641792, 0.02211234, -0.016369406, 0.02037991, 0.017201519, 0.016205713, -0.015128059, -0.007918701, -0.011792793, -0.014500566, 0.01430959, -0.030201554, 0.019725135, -0.0018688405, 3.7918196E-4, 0.012508955, -0.017297005, -0.030856332, -0.017447058, -0.015237189, 0.027446037, 0.008757632, -0.002663439, -0.007209359, 0.0181564, -0.020898275, 0.0066671227, -0.02583638, 0.00441974, -0.017297005, -0.008061932, 0.0020444707, 0.014023125, -0.006472736, -0.014364154, 0.012747675, 0.01932954, 0.0030095836, 0.0039525297, -0.022125982, -0.024117593, -0.010844732, 0.028264508, -0.011049349, 0.01094022, -0.023299122, -0.036831163 ], + "id" : "aad418c0-0397-473d-9b27-649f89d2e3ed", + "metadata" : { + "source" : "movies.csv" + } + }, + "b0da16c7-f099-4814-8e64-dafa46e59c1d" : { + "text" : ",11-1892-1894-1893-1895-140607-121-120-85-122-330459-105-181808-89-155-603-280-87-348-272-218\r\n20352,Despicable Me,Family-Animation-Comedy,en,Villainous Gru lives up to his reputation as a despicable deplorable and downright unlikable guy when he hatches a plan to steal the moon from the sky. But he has a tough time staying on task after three orphans land in his care.,74.231,Illumination-Universal Pictures,7/8/10,69000000,533700000,95,Released,Superbad. Superdad.,7.231,14353,Steve Carell-Miranda Cosgrove-Dana Gaier-Elsie Fisher-Jason Segel-Russell Brand-Julie Andrews-Will Arnett-Kristen Wiig-Pierre Coffin-Chris Renaud-Jemaine Clement-Jack McBrayer-Danny McBride-Mindy Kaling-Rob Huebel-Ken Daurio-Ken Jeong-Charles Bright-Katie Leigh-Ranjani Brow-Scott Menville-Holly Dorff-Edie Mirman-Jackie Gonneau-Al Rodrigo-Wendy Hoffmann-Jakob Roston-James Kyson-John Hans Tester-Tony Lee-Debi Mae West,parent child relationship-orphanage-adoptive father-life's dream-rivalry-ballet-stealing-little girl-orphan-tomboy-intelligent-evil doctor-duringcreditsstinger-supervillain-despicable-minions,/9lOloREsAhBu0pEtU0BgeR1rHyo.jpg,/euCnMxNRlHNxA4f9BMnWbmxPOse.jpg,93456-82690-585-953-12-10191-425-57800-38757-14160-62177-10193-70160-9502-9806-8587-862-2062-10681-920-950\r\n281957,The Revenant,Western-Drama-Adventure,en,In the 1820s a frontiersman Hugh Glass sets out on a path of vengeance against those who left him for dead after a bear mauling.,36.746,Monarchy Enterprises S.a.r.l.-Regency Enterprises-Appian Way-CatchPlay-Anonymous Content-New Regency Pictures-Hong Kong Alpha Motion Pictures Co.-M Productions-RatPac Entertainment,12/25/15,135000000,532950503,157,Released,\"(n. One who has returned, as if from the dead.)\",7.522,16830,Leonardo DiCaprio-Tom Hardy-Domhnall Gleeson-Will Poulter-Forrest Goodluck-Duane Howard-Arthur RedCloud-Melaw Nakehk'o-Grace Dove-Lukas Haas-Paul Anderson-Kristoffer Joner-Joshua Burge-Fabrice Adde-Christopher Rosamond-Robert Moloney-Brendan Fletcher-Tyson Wood-McCaleb Burnett-Vincent Leclerc-Stephane Legault-Emmanuel Bilodeau-Cole Vandale-Tom Guiry-Scott Olynek-Amelia Crow Show-Peter Strand Rumpel-Timothy Lyle-Kory Grim-Anthony Starlight-Jamie Medicine Crane-Veronica Marlowe-Clarence Hoof-Dion Little Child-Blake Wildcat-Paul Young Pine-Cody Big Tobacco-Dallas Young Pine-Chesley Wilson-Michael Fraser-Scott Duncan-Mariah Old Shoes-Adrian Glynn McMorran-Isaiah Tootoosis-Alex Bisping-Chris Ippolito-Jeffrey Olynek-C.", + "embedding" : [ 0.008587366, -0.03918974, -0.012382583, -0.06385865, -0.024380144, 0.035944555, -2.8618824E-4, -0.0038708462, -0.026841534, -0.04812775, 0.026635272, 0.04430503, 0.018701069, 1.714551E-4, -0.004465568, 0.016088419, 0.01523587, -0.018054781, 0.026374007, -0.019828632, 0.0010794366, -5.8999466E-4, -0.026979042, 0.01147503, 0.01610217, 0.016047167, 0.03063675, -0.021767493, -0.003396444, -0.0018666692, 0.005919713, -0.027570326, -0.0041492996, -0.011942557, -0.01942986, -0.017628508, 0.010113703, -0.017064726, 0.026635272, 0.0016775959, -0.005287177, 0.002004177, -0.005379995, -0.013503271, -0.0030733007, 0.009261155, 0.021616235, -0.0074116737, -0.0126851, 0.016198426, 0.025246443, 0.05497564, -0.024380144, -0.02959169, 0.0023393524, 0.0030733007, -0.0071779103, 0.009213027, -0.0031214284, -4.0520504E-6, 0.026346505, -0.025232691, -0.023940118, -0.01505711, -0.020956198, 0.0031231472, -0.0093505345, -0.032781873, 0.009989946, -0.0058715856, 0.036824603, 0.018467305, 0.021478727, -0.017133478, 0.0030045467, -0.02590648, -0.028711641, 0.005912838, -0.0010674048, 0.012155695, 0.0065247477, -0.009096145, -0.0064491187, 0.0028223488, 0.006026282, 0.017752264, 0.005706576, 0.022812553, -0.036329575, 0.013468894, 0.0027398441, 0.035614535, 0.017270986, 0.01732599, 0.010113703, 0.024875171, -0.018962333, 0.030939268, -0.0129051125, -0.030746756, -0.0016664234, -0.0011834269, 0.010216834, -0.009996821, -0.00805796, 0.014190811, 0.004475881, -0.03132429, 0.007872324, 0.0010467785, -0.0024820168, 0.0011808487, 0.024985177, -0.045460097, -0.009591173, -0.014892101, 0.028244114, 0.0045962003, -0.0059059625, -0.020007392, 0.007920452, 0.025947733, 0.017119728, -0.040564816, 0.03641208, 0.023500092, -0.012086941, -0.017188482, 0.0060881604, -0.014452076, 0.030581748, -0.0033190958, 0.014259565, -0.004915906, -0.034239456, 0.06259358, -0.012451337, 4.850375E-5, -0.021396223, -0.027171552, 0.027199054, 0.03624707, -0.013517022, -0.022743799, -0.012960115, -3.3388627E-4, 0.013688907, -0.01032684, 0.017876022, -0.0037058368, 0.013633904, 0.02747407, 0.005266551, 0.019347355, 0.029096663, 0.0035305142, 0.011502532, 0.003047518, -0.002093557, -0.016088419, 0.0038124053, -0.004348686, -0.0063494253, -0.0072466643, -0.010622482, 0.018866077, 0.017738514, -0.015029609, -0.011282519, 0.001414612, 0.0063047353, 0.02257879, -0.026511515, 0.0035184822, -0.0021812185, 0.02746032, 0.00866987, 4.6451873E-4, -0.029564189, -0.017821018, 0.0014197687, 0.007047278, 0.026153995, 0.042269915, -0.0146445865, 0.013104498, 0.0367146, -0.015593391, 0.010340591, -0.019993642, -0.0064250547, 0.015098363, -0.0012642129, 0.001290855, -0.63803643, -0.010876872, -0.0011920212, -0.021038702, 0.013627029, 0.029674195, 4.183247E-4, -0.0024201383, -0.039299745, -0.008202343, -0.036494587, 0.014108306, 0.029564189, -0.01295324, -0.01871482, -0.022345027, 0.0042627435, -0.004585887, 0.02151998, 0.0038536577, -0.018151037, 0.013716409, 0.009694304, 9.771652E-4, -0.0050671645, 0.007927328, 0.008903634, -0.020626178, 0.0070747794, -0.0034617602, -0.01680346, 0.015208369, 0.025658967, 0.0047302702, 0.03602706, -0.0028945403, -0.0035648912, 0.048017744, 0.0201174, 0.03960226, -0.048705284, -0.0093711605, 0.003791779, 0.0047715227, -0.023527594, 0.0064491187, 0.016555946, -0.0071091563, -0.006517872, -0.012492589, -1.8370191E-4, 0.010285588, -0.00441744, 0.001013261, -0.021657487, 0.007191661, 0.020378664, -0.018659817, 0.017711012, -0.013207629, -0.0057203267, 0.008628618, 0.017394744, 0.01890733, -0.0034067573, 0.025218941, -0.007542306, -0.0013570307, 0.026319005, -0.022702547, 0.0074322997, 0.002796566, -0.0053078034, -0.0071779103, 0.015717149, 0.025425203, 0.018288545, -0.0066725686, 0.0069372714, 0.021286216, -0.0030268917, 0.006229106, 0.010698112, 0.016308432, 0.022248771, 7.5758237E-4, -0.033441912, 0.004475881, 0.025246443, 0.0070610284, 0.0025765535, 0.02013115, 0.0066863196, -0.007865449, -0.0144933285, -4.236961E-4, -0.011736295, 0.004754334, 0.031626806, -0.066278785, -0.008532363, -0.012581969, 0.013661406, -0.007239789, 0.018481055, 0.0033878498, 0.014795845, 0.0011628008, 0.019457363, -0.007906701, -0.009529294, 0.006125975, -0.023211326, 0.0048609027, -0.008518612, -0.0332494, 3.7256035E-4, 0.0055965697, 0.005919713, 0.022908809, -0.0031334602, 0.0012384302, -4.95458E-4, -0.022565039, 0.0060778474, 0.021492478, -0.007769194, 0.00699915, -0.0041596126, 0.0075904336, 0.0064525562, 0.007404798, 0.008436107, -0.015373378, 0.022358777, 0.014012051, 0.014850848, -0.010828744, 0.013716409, 0.009659927, -0.030306732, -0.0067447606, -0.016418438, -0.0032365911, -0.008910509, -0.007081655, -0.0271303, 0.0045343214, -0.0017807267, 0.0061190994, -0.022276273, 0.011976934, 0.0051015415, 0.013943297, -0.0030268917, 8.23758E-4, -0.017766016, -0.017876022, 0.01853606, -0.0209837, 0.009666802, 0.023142572, -0.0021038703, -0.02414638, 0.01680346, -0.013895169, 0.0013355451, 0.016322182, 0.00516342, -0.010911249, 0.0011499095, -0.007507929, -0.0060847225, 0.009749307, -0.009006765, 0.035477027, -0.015167116, 0.007920452, 0.0040461686, 8.710263E-4, 0.0039120987, -0.0029839205, -0.029261673, -0.0032778436, 0.023926368, 0.018742321, 0.0036714599, -0.00954992, -0.013097623, 0.010663735, -0.0055346913, -0.012437586, -0.0046615163, 0.0012092097, -0.007507929, 0.031764314, 0.0023702916, 0.009041142, 0.008504861, 0.009213027, 0.035779543, 0.02292256, -0.0036095812, -8.5469725E-4, 0.0061878534, -0.030251728, -0.0011241267, -0.029619193, -0.008284848, -0.012080065, 0.029564189, -0.0077073155, -0.018137285, -0.003884597, 0.01766976, 0.023431338, -0.01978738, 0.0014885225, -0.007067904, -0.0020987138, 0.006057221, -0.007934203, 0.011399401, 0.0016741581, -0.033854436, 0.0024510776, 0.0071504083, -0.014067054, -0.0074873026, -0.0146445865, -0.009598048, -0.008717998, 6.514435E-4, -0.0028567258, -0.0041355486, 0.0012779636, 0.024586406, -0.01259572, 0.03080176, -0.008539238, -0.009735556, 0.023706354, 0.035477027, -0.010643108, -0.00901364, -0.008614867, 0.016225927, 0.009309282, -0.022867557, 0.049832847, -0.023995122, 0.041252356, -0.005290615, 0.01854981, 0.0074804276, -0.01595091, 0.0127607295, 0.009763058, 0.036192067, 0.01960862, -0.0071297823, -0.014988356, 0.004957158, 0.0072947918, 0.020722434, -0.014727091, -0.014465827, 0.0074116737, -0.0014197687, -0.03063675, -0.015840905, -0.018811075, -0.014060179, 0.008546113, -0.009818061, -0.028574133, -0.008126714, 0.0075560566, 0.011873803, 0.010842495, -0.015125864, -0.03198433, 0.016734706, 0.0110625075, -0.016418438, -0.02151998, -0.016225927, -0.019484863, -0.022455033, -0.015730899, -2.945676E-4, 0.032616865, -0.020378664, 0.0043177465, -0.014060179, -0.009948693, 0.013193879, -0.007954829, 0.0012693694, 0.032781873, -0.0012659318, 0.027240306, -0.002322164, -0.016762208, 0.026167745, 0.002287787, 0.002571397, 0.002105589, -0.011392526, 0.011255018, 0.005981592, 0.015304624, -0.037154622, 0.011619414, -0.029096663, 1.06729734E-4, -0.024998927, 0.0064009908, -0.0033775368, -0.0057547037, -0.032259345, -0.02959169, -0.0026985917, 0.008497986, 0.063583635, 0.048760287, 0.007831072, 0.024270136, -0.012726353, 0.005459062, -0.01234133, -0.012025062, 0.00407367, -0.0052528, 0.026566518, -0.0071847853, 0.023857614, 0.010993754, 0.016432188, -0.016583448, -0.0058578346, -0.007102281, 0.004293683, 0.0051256055, -0.020859942, -0.0011791298, 7.378156E-4, 0.033359405, -0.00917865, -0.02517769, 0.023940118, 0.01155066, 0.005187484, 0.018618563, -0.014273316, -0.0062153554, 0.008724874, 0.011585037, -5.4960174E-4, 0.005390308, 0.016432188, 0.022193769, 0.042984955, 0.017518502, 0.0139983, 0.009522419, -0.004843714, -0.008607992, 0.013193879, -0.035972055, -0.0011722544, 0.031599306, 0.024723914, -0.04301246, 0.025892729, -0.0022671607, -0.0066381916, -0.010876872, 0.03393694, -0.003884597, -0.008855506, 0.001653532, -0.021423724, -0.0039327247, 0.014190811, -0.047192696, 0.008449858, -0.009721805, -0.001041622, -0.023733856, -0.014273316, -0.007054153, -0.015510886, 0.010986878, 0.008999889, -0.011303145, -0.01331076, -0.015978413, 0.006600377, 0.002977045, 0.019416109, -0.025122685, 0.011399401, 0.016060919, -0.032314345, -0.039959785, 0.0072879163, 7.2105683E-4, 0.008539238, 0.006541936, 1.4330896E-4, 0.022565039, -0.026552767, -0.0025731158, 0.010436846, 0.005345618, -0.013702658, -0.007473552, 0.023843862, -0.002806879, 0.009742431, 0.017270986, 0.0064834952, 0.0014627398, 0.009879939, -0.005785643, -0.009075519, -0.008539238, -0.017917274, -0.012458212, 0.0023599786, 0.015744649, -0.01783477, -0.024957675, -0.02345884, -0.001489382, -0.008037334, 7.38675E-4, 0.01698222, -6.815233E-4, 0.026057739, 0.0030148597, -0.0075904336, 0.009928067, -0.0019508927, 0.011921931, 0.015249621, 0.03393694, -0.006332237, 0.01783477, -0.012286327, -0.040894836, -0.014032677, 0.021588733, 0.017573504, 0.013867667, -0.013716409, -0.017243486, -0.009653051, -0.022963813, 0.009680553, 8.955199E-4, -0.014046428, -0.0076729385, -0.014232064, -4.0435905E-4, 0.01190818, -0.010986878, -0.008999889, -0.02678653, 0.010519351, -0.018838577, 0.010368092, 0.026869034, -0.0018133848, 0.014630836, -0.033221897, -0.015414631, -0.0063941153, -0.027391566, -0.011557535, -0.0024734226, 0.04760522, 0.007989206, 0.035449527, 0.011468155, 0.020199904, 0.0075216796, 0.009659927, 0.021038702, -0.0018924519, -0.012740103, -0.02904166, 0.0016604074, 0.012691976, 0.01557964, 0.015029609, 6.0460484E-4, 0.013647655, 0.0049090306, 0.016720956, 0.008704247, -0.005335305, -0.024737664, -0.012478838, -7.1504083E-4, -0.014073929, 0.0111037595, -0.013675156, -0.022840055, 0.057808302, -0.003523639, -0.008683621, -0.014933353, 0.039079733, -0.0067310096, 0.032479357, -0.0061775404, 0.02678653, -0.025081433, -0.0040599196, -0.030086718, -0.008552989, 0.001726583, -0.011371899, 0.015840905, -0.009811185, -0.030691754, -0.0026985917, 0.015345877, -0.020859942, -0.030361734, 0.021437475, -0.007336044, -0.0028825086, -0.037842162, -0.018563561, -0.034926996, 0.0060847225, 0.009219902, -0.004214616, 0.007892951, -0.02517769, -0.03921724, 0.0129463645, 0.0019698, 0.03602706, 0.02168499, 0.032616865, 0.012080065, 0.010698112, -0.01854981, 0.016404686, -0.004678705, -0.0031403357, 0.020502422, 0.014905851, -0.018316047, -0.020048646, 5.5003143E-4, -0.016198426, -0.026126493, -0.036302075, 0.027529074, 0.011255018, 0.018041031, -0.015112113, -0.0061534764, -0.012155695, 0.019581119, 0.008821129, -0.0042318045, 0.0076248106, -0.024861421, -0.022303775, 0.0017738513, -0.0023496656, 0.012960115, 0.017119728, -0.03047174, 0.023252578, -0.023032567, 8.2075E-4, -0.006806639, 0.006033157, 0.023720106, -0.02572772, 0.012636972, -0.008009832, 0.0037230253, 0.004881529, -0.014135808, 0.002650464, 0.02329383, -0.007679814, 0.0025662405, -0.0021434037, -0.0077279415, 0.0043796254, 0.012602595, -0.02662152, -0.01837105, -0.012719477, -0.012004436, 0.035119507, 0.009824936, 0.0010837337, -0.0074322997, -0.014190811, -0.012733228, -0.0034101948, -0.011536909, 0.021107456, -0.025232691, 0.016404686, -0.016377186, 0.005943777, 0.005393746, -0.0036886483, -0.006648505, 0.0016629857, -2.6126494E-4, -7.3008076E-4, 0.0017858833, -0.012980741, -0.006916645, -0.037567146, -0.01926485, 0.004403689, -0.021299968, 0.019993642, -0.021794995, -0.0014764906, -0.007047278, -0.012038813, -0.0105056, -0.010292463, -0.002478579, 1.1290684E-4, 0.024407644, -0.007631686, -0.00935741, -7.681103E-5, 0.03555953, -3.3775368E-4, 0.0055140653, 0.018426053, 0.020254908, 0.042049903, -0.010271837, 0.013936421, 0.0057581416, -0.024036374, -0.013592652, 0.008243596, 0.0128913615, 0.020254908, 0.0041252356, -0.036632095, -0.008078586, 0.0025335823, 0.038914725, -0.017491, -0.008167966, 0.024256386, 0.015552139, 0.025700219, 0.013152626, 0.013991425, -0.026759028, -0.013379514, -0.0032417476, -0.032396853, -0.005648135, 0.0038295938, 0.008195468, -0.0058028316, -0.014424575, -0.023362584, 0.0015504011, -0.0033586293, -0.0022482534, -0.0077279415, 0.017738514, 0.050767902, 0.011571286, 0.00253702, 0.024558904, -0.011007504, 0.014012051, -0.0128432335, 0.015909659, 0.0054418733, 0.029069161, 0.015387129, 0.02378886, -0.02572772, -0.0112137655, 0.017862272, 0.02432514, 0.004472443, 0.03269937, -0.01909984, 0.0014068773, -0.008594241, 4.5871762E-5, 0.009213027, -0.005153107, 0.018618563, -0.03465198, -0.013737035, -0.0022345027, 0.021794995, -0.019718627, -0.006669131, -0.0073291687, -0.032066833, -0.0044105644, -0.009378036, -0.010175581, -0.01129627, -0.018921081, 0.017779766, 0.024558904, 0.013441393, 0.023390086, 0.017862272, -0.009584297, -5.0319283E-4, 0.005366244, -0.008216094, -0.0062222304, -0.0019869886, 0.0055553173, 0.02432514, -0.035504527, 0.025878979, -0.021258716, -0.006679444, -0.004293683, 0.008573615, -0.011378775, 0.030994272, 0.018769823, -0.034046944, -0.0060090935, 6.62616E-4, 0.00823672, -0.020323662, 0.0013432798, -0.033001885, -0.018976085, 0.008174842, 0.0014764906, -0.007721066, -0.015593391, 0.0064731822, 0.0016346247, -0.014424575, 0.017408494, 0.17744014, 4.7225354E-4, 0.029619193, 0.056268215, 0.0111450115, 0.0059162755, 0.027804088, 0.01977363, -0.004609951, 0.017876022, -0.011282519, -0.0053284294, 0.002514675, 0.0063253613, 0.011578161, -0.009756182, -0.030774258, -0.01147503, -0.024545152, -0.02660777, -8.6114294E-4, -0.0013510147, -0.023238828, -0.019127343, -0.011564411, 0.0034119138, -0.019691125, 0.017174732, 0.022853807, 0.012588845, -0.0201174, -0.014046428, -0.016995972, -0.0011791298, -0.018329797, -0.017862272, -0.008181717, 0.0028618823, -0.002433889, 0.009336784, 0.010519351, -0.0042421175, -0.002038554, -0.029261673, 0.013785163, 0.027391566, -0.023761358, 0.0069028945, -0.024228884, -0.0066038147, -0.041169852, -0.0076729385, 0.009226778, 0.018756071, -0.00625317, -0.0016578292, 0.0041286736, -0.014218313, -0.0069475845, -0.013633904, 0.023582598, 0.032066833, -0.03517451, 0.008387979, -0.003396444, 0.012554468, -0.04094984, -0.019333605, 0.012293203, -0.03819968, -0.0047921487, -0.019141093, -0.019223599, 0.003013141, -0.0033465975, -0.0060984734, 0.0016243116, 0.01680346, 0.009749307, 0.017229734, -0.04658766, -0.010897498, 0.00516342, 0.002196688, -0.014974605, -0.028244114, 0.021464976, -0.0027604701, -6.6476455E-4, -0.016184675, -0.010134329, -0.012210698, -0.0039017855, 0.01049185, -0.011949433, -0.0073497947, 0.017229734, 0.015648395, 0.0023273204, -0.020034894, -0.025631465, 0.016762208, 0.046532657, -0.008449858, -0.029976713, -0.024352642, 0.004878091, 0.013193879, 0.037842162, -0.019319855, -0.016088419, -0.03291938, 0.0024923298, -0.013606402, -0.005290615, 0.016074669, 0.0038570955, -0.016047167, 0.025796475, -0.027625328, -0.004967471, -0.030196726, 0.015607142, 0.010869996, -0.011688168, -0.034541972, -0.015868407, 0.010017447, -0.015194618, -0.019869884, 0.01471334, -0.044717554, 0.0127607295, 0.0030423612, -3.2765543E-4, 0.015277123, 0.017546002, 0.012052564, 0.008546113, -0.013345137, 0.007391047, -0.002547333, 8.314928E-4, 0.005538129, 0.0032623739, -0.025438953, 0.026153995, -0.0047062063, -0.01138565, -0.030994272, -0.024916423, -0.008587366, 0.014273316, -0.005613758, 0.03374443, 0.006806639, -0.032534357, -0.0402348, -0.01434207, 0.036549587, -0.018412301, 0.019979892, 0.016913466, -0.015689647, -0.030169224, -0.010395594, -0.17656009, 0.009921192, 0.0074116737, -0.027542824, 0.017697262, 0.01189443, 0.025328947, 0.012451337, 0.013180128, -0.025700219, 0.024737664, 0.0060537835, -0.0507404, 0.0046615163, 0.0072741657, 0.018233541, -0.020804938, 0.037484642, 0.015717149, -0.0128226075, 0.03866721, 0.012691976, -0.013750786, -0.0058715856, 0.008264222, 0.008016708, 0.019374857, 0.0038536577, 0.003509888, -0.025163937, -0.029866707, -0.0012418678, -0.0012031938, 0.016005915, -0.008965513, -0.006205042, -0.011090009, -0.0018993273, -0.005899087, -0.0145758325, 0.023225076, 0.0058234576, 0.01577215, 0.004812775, 0.015703397, 0.017766016, 0.027914096, -0.014465827, 0.018632315, -0.022427531, -0.018563561, -0.051730454, 0.008951762, -0.011770672, -0.0053834324, 0.028065354, -0.010244335, -0.0065591247, 0.0032744058, -0.012533841, -0.02414638, -0.017270986, 0.00573064, -0.0062016044, 0.011543784, -0.019498615, -0.022331277, 0.017449748, -0.037127122, 0.004754334, -0.025768973, 0.0039430377, 0.01023746, 0.0074873026, 0.012004436, -0.011406276, -0.039657265, 0.0042661815, -2.2022743E-4, 0.007047278, -0.024297638, 0.05233549, -0.005094666, 0.004358999, -0.0071985363, -0.017270986, 0.009776808, 0.010691236, 0.020969948, -0.0071847853, -0.015964663, -0.0067791375, -0.01373016, -0.012403209, 0.003678335, 0.0056206337, -0.006645067, -0.0032675304, 0.016170925, -0.0038467823, -0.011653791, -0.020213654, -0.014122057, 0.02310132, 0.023843862, 0.0048952796, 0.0044930694, 0.010044949, 0.013572025, -0.017298488, -0.0075698076, -0.004475881, 0.0129669905, -2.8962592E-4, -0.021960005, 9.814623E-4, -0.03011422, -0.015139615, -0.0047130818, 0.0058372086, 0.034734484, -0.015785903, 0.008821129, -0.0051152925, -0.00901364, -0.0058475216, -0.105551034, -2.8210596E-4, 0.004678705, 0.034211956, -0.02099745, 0.027185304, -0.016913466, 0.031021772, -0.014122057, 0.033441912, 0.002004177, -0.019471113, 0.0067894505, -0.0074460506, 0.014658337, -0.0020179278, -0.012258826, -0.01032684, -0.022345027, 0.039079733, -0.013104498, -0.007260415, 3.390428E-4, -0.015263372, -0.02380261, 0.021739991, -0.021286216, 0.013922671, 0.0039327247, 0.008353602, 0.018494807, -0.020543674, 0.014727091, -0.02677278, -0.033139393, -0.02468266, -0.020419916, -0.030884264, 0.0034978562, -0.04988785, 0.01765601, 0.012740103, 0.005400621, -0.015703397, 0.005428123, -0.015277123, -0.022537537, 0.036659595, -0.0059403395, -0.016707204, -0.017064726, -0.009577422, -0.035119507, -0.011330647, 0.009611799, 0.03555953, 0.02396762, -0.005469375, -0.015125864, -0.031956825, 0.004427753, -0.009219902, -0.025865227, 0.008161091, 0.016954718, 0.014383322, 0.0033569105, -0.026057739, 0.010223709, -0.012437586, -0.032534357, 0.044167522, -0.035257015, -0.006287547, -0.017917274, 0.0017188482, -0.011901305, -0.018866077, 0.02310132, -0.025947733, -0.003702399, -0.033909436, -0.001868388, -0.021822497, -5.629228E-4, 0.025713969, 0.0047612097, 0.01783477, -0.010120578, -0.037154622, 0.01452083, 0.025108935, 0.005923151, -0.007631686, -0.0022482534, 0.021574983, 0.018976085, 0.00908927, 2.1410403E-4, 8.615727E-4, -0.015373378, -0.011310021, -0.07254914, 0.029866707, -0.013097623, -0.009728681, -0.0040599196, -0.008099213, 0.013578901, -0.0094949175, -0.016143423, 0.007404798, -0.0055518798, 0.020969948, -0.029564189, 4.7182385E-4, -0.005967841, 0.0077623185, 0.010319965, 0.009604923, 0.00954992, 0.005404059, -0.017889772, -2.2216114E-4, 0.020956198, 0.019003585, -0.0020248033, 0.039519757, 0.00629786, 0.026456513, -0.01084937, -0.01942986, 0.017559754, -0.013324511, 0.010732488, 0.006287547, -0.004338373, -0.025823975, -0.028766643, 0.002072931, 0.041004844, 0.010622482, -0.0016879089, -0.022812553, -0.002275755, -0.027281558, 0.0063012973, 0.0210112, -0.01768351, 0.011028131, 0.017243486, 0.008559864, 0.024586406, 0.0039052232, -0.008133589, -0.015703397, 0.018329797, -0.028491627, 0.042379923, 0.010863121, -0.0059162755, -0.0063803648, 0.035972055, -0.0010313089, 0.027267808, -0.022056261, 0.0036920859, -0.0053078034, 0.0048987176, -0.004441504, -0.003092208, -0.028574133, 0.0049880976, -0.0037986545, 0.021038702, 0.036137063, 0.02432514, 0.005300928, -0.006308173, 0.017917274, -0.0011404558, 0.014850848, 0.020213654, -0.017518502, -0.01926485, 0.017546002, 0.017518502, 0.019374857, -0.017202232, 0.0047199572, 0.0026487452, 0.015552139, -0.017243486, -5.646416E-4, 0.015167116, -0.0039017855, 0.005197797, 0.030719256, -0.013365763, -0.0073222932, -0.0045136954, 0.019072339, -0.0043211845, -0.001704238, -0.017903524, 0.0010149799, -0.008814254, 0.013805789, -0.011935682, -0.01980113, 0.010182457, 0.029481685, 0.022798803, 0.011798174, -0.028120358, 0.013193879, -0.032176837, 0.0111037595, -0.012657599, -0.016528444, -0.01647344, 0.040179797, 0.01505711, -2.281771E-4, 0.041774888, -0.014410824, 0.046642665, 0.0049880976, 0.030416738, -0.043177467, 0.0025421765, 0.0043314975, -0.001319216, -0.013214505, -0.029399179, -0.0037677153, -5.860198E-5, -0.0070025874, 0.0111931395, 0.038914725, -0.003023454, 0.06462869, 0.006566, -0.0033775368, 0.008717998, -0.015648395, 0.012588845, 0.018783573, 0.03047174, -0.02781784, -0.0066863196, -0.007975455, -0.0029357928, 0.005242487, -0.031406794, -6.4456806E-4, 7.7520055E-4, 0.007913577, 0.020227406, -0.0129326135, -0.009075519, 0.009653051, -0.0052390494, 0.027735334, 0.010814993, -0.0058681476, -0.019154845, 0.012458212, -0.007009463, -0.0045583853, -0.037704654, 0.011921931, -0.021781245, 0.0015306344, 0.009969319, 0.01023746, 0.0066760066, -0.011041881, -0.02295006, 0.01960862, 0.0129669905, -0.017105978, -0.009158024, -0.019072339, -0.008188593, 0.008133589, -0.0029512623, 7.0043065E-4, -0.021932503, -0.018041031 ], + "id" : "b0da16c7-f099-4814-8e64-dafa46e59c1d", + "metadata" : { + "source" : "movies.csv" + } + }, + "423e43f6-f037-4b66-8e4a-569abc7a9f30" : { + "text" : "Carla Gallo-Bellamy Young-Paul Keeley-Jane Daly-Greg Grunberg-Sabra Williams-Rose Rollins-Sasha Alexander-Tracy Middendorf-Aaron Paul-Kathryn Fiore-Colleen Crozier-Sean O'Bryan-Bruce French-Ellen Bry-Patrick Pankhurst-Tony Guma-James Shanklin-Anne Betancourt-Antonietta De Lorenzo-Andrea Sartoretti-Antonio Del Prete-Francesco De Vito-Giorgio Marchesi-Niccol�_ Senni-Paolo Bonacelli-David Waters-Michael G. Kehoe-Timothy Omundson-Jos�� Z�_��iga-William Francis McGuire-Michelle Arthur-Barney Cheng-George Cheung-Brandon Molale-Simon Rhee-Marcus Young-Jerry Trimble-Alex Kurtzman-Roberto Orci,mask-mission-berlin germany-cia-computer-the white house-shanghai china-funeral-explosive-secret mission-spy-vatican-secret identity-traitor-map-honeymoon-pretended murder-letter-covered investigation-secret agent-stamp-hard drive-e-mail-decipherment-suitcase-revenge-murder-hospital-duel-disguise-celebration-research laboratory-blast,/zje0121z523lqe8ic163ck1BYcY.jpg,/mOyF7rHVLF6uLbyb18FWTmcrjJe.jpg,955-954-56292-177677-353081-2501-2502-10764-1571-180-2503-217-36557-296-298-1573-36668-6637-605-1572-604\r\n572802,Aquaman and the Lost Kingdom,Action-Adventure-Fantasy,en,Black Manta still driven by the need to avenge his father's death and wielding the power of the mythic Black Trident will stop at nothing to take Aquaman down once and for all. To defeat him Aquaman must turn to his imprisoned brother Orm the former King of Atlantis to forge an unlikely alliance in order to save the world from irreversible destruction.,2141.691,Warner Bros. Pictures-The Safran Company-Atomic Monster-DC Films-Domain Entertainment,12/20/23,205000000,397860076,124,Released,The tide is turning.,6.786,756,Patrick Wilson-Yahya Abdul-Mateen II-Randall Park-Amber Heard-Nicole Kidman-Dolph Lundgren-Temuera Morrison-Indya Moore-Pilou Asb�_k-Jani Zhao-Vincent Regan-Michael Beach-Martin Short-John Rhys-Davies-Natalia Safran-Samuel Gosrani-Jay Rincon-Sohm Kapila-Ricardo Molina-Ingrid Bisu-Grant Huggair-Osian Roberts-Jonny Vaughton-Jay McDonald-Jonathan Bremner-Jack Waldouck,superhero-secret society-half-brother-sequel-revenge-dysfunctional relationship-dc extended universe (dceu)-ancient evil-underwater world-vengeance-brother brother relationship,/7lTnXOy0iNtBAdRP3TZvaKJ77F6.jpg,/jXJxMcVoEuXzym3vFnjqDW4ifo6.jpg,\r\n58595,Snow White and the Huntsman,Adventure-Fantasy-Drama,en,After the Evil Queen marries the King she performs a violent coup in which the King is murdered and his daughter Snow White is taken captive. Almost a decade later a grown Snow White is still in the clutches of the Queen. In order to obtain immortality The Evil Queen needs the heart of Snow White.", + "embedding" : [ -0.0033738075, -0.033575855, 0.0025540844, -0.04047879, -0.034707937, 0.02458824, -0.014151009, -0.0027145776, -0.02041887, -0.041334752, 0.023677053, 0.02705949, 0.02232408, 0.0025074896, 0.009367277, 0.014703243, 0.025250921, -0.013764445, 0.0038794472, -0.031090802, -3.087444E-5, 5.772576E-4, -0.012742811, 0.03106319, -0.0011027432, 0.004055472, 0.027805006, -0.019631935, -0.009263733, -0.023483772, 0.008787431, -0.012370053, 0.0082421, -0.01738158, -0.01634614, -0.0037551944, 0.006554333, -0.028012093, 0.018223738, 9.724504E-4, 0.008897878, 0.007924565, -0.005398092, -0.005781205, -0.016691288, 0.0013788604, 0.0013184599, -0.0041245013, 0.0011527895, 0.03012439, 0.021081552, 0.026507255, -0.013647094, -0.035177335, -0.008863363, 0.002821573, 0.0016083829, -0.0030131293, 0.0072618835, 0.009463918, 0.020128947, -0.02371847, -0.014924137, -0.012287217, 0.0034790772, -0.011106816, -0.012142256, -0.0023659796, -0.013177696, -0.012383858, 0.011534798, 0.009615783, 0.010016153, 0.0092430245, 0.016953599, -0.050170504, -0.025471816, -0.0032374747, -0.009601977, -0.0025489072, 0.0023935912, -0.008373255, -0.017533444, -0.003965734, 0.0098919, 0.024671076, -0.02242072, 0.021882292, -0.030869907, 0.01841702, 0.008200682, 0.044178758, -0.0016420347, -0.0011614182, -0.010961855, 0.0242569, -0.02298676, 0.033686303, -0.019272983, -0.025761738, 0.006191929, -0.0043039774, -0.012404567, -0.014075076, -0.014786079, 0.0017999392, -0.009284442, 0.0021485372, 0.015131225, 0.013357172, -0.011652147, 0.003989894, 0.022669226, -0.04183176, -0.018527467, -0.02458824, 0.0022192923, -0.02545801, -0.010747864, -0.019480072, 0.024450181, 0.020142753, -0.01156241, -0.037855674, 0.028150152, 0.022669226, 0.003151188, -0.020087529, 0.007959079, -0.0032461032, 0.019811412, 0.0035101403, 0.010085182, 0.006478401, -0.018693138, 0.036143746, -0.025513234, 0.008200682, -0.010602902, -0.015821518, 0.01785098, 0.027584111, -0.035646737, -0.020460287, -0.017726727, 0.0027404637, 0.007503486, 0.0035446552, -0.004939047, 0.010913534, 0.011555507, 0.014247649, 0.0031995084, 0.010589096, 0.026976654, 0.0010432055, -0.016498005, 0.004500711, -0.013723027, -0.017726727, -0.0100368615, -5.4980766E-5, -0.0024954095, -0.015490177, -0.017257327, 0.022379301, 0.009318957, -0.012390761, -0.013757542, -0.007972885, -0.016856957, 0.027280383, -0.039816108, 0.009815968, -0.004707799, 0.0197838, -0.0023159334, -0.009954027, -0.024505405, 0.0014263181, 0.0068684164, 0.0054740245, 0.017505834, 0.021771844, -0.016718898, 2.0396004E-4, 0.011244874, -0.022531167, -5.474887E-4, -0.015255477, 0.009919512, 0.018706944, 0.0056017283, -0.002253807, -0.6397084, -0.009802162, 0.009332763, -0.010589096, 0.008097138, 0.017505834, 0.009346569, -0.0150207775, -0.03393481, -0.0068994793, -0.026369195, 0.009118772, 0.003913962, -0.012142256, -0.025747932, -0.013515939, 0.010023056, -0.0049701105, 0.028232988, 0.0070099263, -0.015628235, 0.019604323, 0.02152334, -0.008193779, 0.0148136895, 0.0038035149, 0.002911311, -0.016332334, -5.522345E-4, 0.0071514365, -0.01914873, 0.033354964, 0.004649124, 0.0051116203, 0.043985475, 0.0061436086, -0.024767715, 0.042218328, 0.027156131, 0.029599767, -0.030013943, 0.0027646238, 0.0076415446, -0.0040761805, -0.0014565184, 0.018444631, -0.009546754, 0.006084934, -3.9713425E-4, 0.003139108, 0.004635318, -0.006671683, -0.022558779, -0.0031977827, -0.003913962, -0.0043177833, 0.025885992, -0.027805006, 0.0072687864, 0.008331838, -0.010319882, 0.023345713, 0.0032392005, 0.0144133195, -0.0126323635, 0.016939793, -0.002447089, 0.016525617, -1.0819535E-5, -0.017519638, 0.014399514, 0.008504411, -0.01121036, -0.001265825, 0.01236315, 0.019259177, 0.03567435, 0.0057156268, -0.0013158713, 0.011279389, 0.009802162, -8.156784E-6, 0.0074482625, 0.015103613, 0.02345616, -0.016470393, -0.0355639, 0.023566606, 0.010602902, -0.007821021, 0.016636064, 0.014385709, -0.0022158409, 1.4679514E-4, 0.0041279527, -0.01858269, -0.0063368906, -0.0038104178, 0.027073296, -0.06289951, -0.0044903564, -0.021440504, 0.034183316, -0.012121547, 0.024698688, 0.007058247, -0.01349523, -0.015628235, 0.03592285, -0.019894248, -0.0033013267, 0.011417448, -0.031753484, 0.004010603, -0.011804012, -0.023014372, 0.022061767, 0.003945025, -0.003422128, -0.012963705, 0.012818743, 0.015338313, -0.017202104, -0.018486049, 0.009318957, 0.02235169, -0.0047285077, -0.0036412962, -7.882284E-4, 0.0047216048, 0.008704596, -0.0075241947, 0.019466266, -0.0024039457, 0.01841702, 0.009277539, 0.02298676, -0.009498433, 0.025278533, -0.0029147626, -0.007399942, -0.005774302, -0.016042411, -0.0039036074, -0.009974735, -8.364411E-5, -0.039208647, -0.00546367, -0.016401364, -0.02272445, -0.017160686, 0.02235169, -6.3808967E-4, 0.024298318, 0.006720003, 0.0015617881, -0.0315602, -0.018610302, 0.017630085, -0.004583546, 0.015628235, 0.016774122, 0.0026369197, -0.01778195, 0.024063617, 0.011679759, -0.0075380006, 0.0076415446, 0.0023469965, -0.012404567, 0.007993594, -0.016235694, 0.009367277, 0.007044441, -0.012466693, 0.022572584, -0.009733133, 0.036613148, -0.013488327, 0.006078031, -0.0033669046, -0.015738683, -0.014565185, 6.13498E-4, 0.024105035, 0.021233415, 0.014937943, -6.221267E-4, -0.0021278285, 0.011403642, -0.01156241, -0.011555507, 9.734211E-5, -0.0065439786, -0.0052979994, 0.013771348, 0.0045041624, -0.011079204, -0.0023935912, 0.0050598485, 0.02345616, 0.017505834, 0.020888269, 0.0035998784, 0.011086107, -0.031974375, 0.0076691564, -0.035287783, 0.03526017, 0.0062333466, 0.019797606, -0.0022520812, 0.002053622, 0.0036274903, -0.0036102328, 0.016139053, -0.013902503, -0.0030114036, -0.011596924, 0.01874836, 0.0043695555, 0.006160866, 0.011079204, 0.011590021, -0.033078846, -0.00925683, 0.021343863, -0.019769995, 0.0057501416, -0.0077934093, -0.0033858877, -0.003299601, -0.008207585, 0.0047354107, -0.018127097, -0.0100368615, 0.021771844, -0.006478401, 0.032222882, -0.013377881, 0.0036309417, 0.01785098, 0.017326357, 0.014827495, -0.0015859484, -0.0047768285, 0.033244517, 0.01132771, -0.010671931, 0.0365027, -0.009084257, 0.028163958, 0.0038518354, -0.0043246862, 0.0052738395, -0.016856957, 0.012501208, -5.863177E-4, 0.026755761, 0.009712424, 0.021537146, 0.0029026824, 5.090912E-4, -6.0400646E-4, 0.0052462276, -0.0056811124, -8.374118E-4, 0.0077865063, -0.008870266, -0.036088523, -0.01834799, -0.016539423, -0.001395255, 0.0062022833, -0.008787431, -0.008097138, -0.0126254605, 0.009022131, 0.0061228997, 0.022959149, -0.010906631, -0.030152002, 0.0197838, 0.032885563, -0.024795327, -0.01825135, -0.0055879224, 0.002990695, -0.024671076, -0.017174492, 5.7423755E-4, 0.025982631, -0.025885992, 0.012853257, -0.0043799095, -0.002479878, 0.008980713, -0.008559634, 0.018472243, 0.008877169, -0.017643891, 0.011472671, -0.015752489, -0.0074827773, 0.024753911, -0.023193847, -0.008297323, -6.644071E-4, 0.0015868113, -0.013398589, -0.0039553796, 0.005339417, -0.04277056, 0.011382933, -0.011748789, -9.025582E-4, -0.011907556, -0.00840777, 0.017464416, -0.006502561, -0.011320807, -0.030621402, -0.026866207, -0.012052517, 0.09515, 0.06494278, 0.0041693705, 0.0134192975, -0.01745061, 0.02265542, -0.024505405, -0.012646169, 0.0018033907, -0.030704238, 0.025333757, -0.0041245013, 0.02091588, 0.0032857952, 0.010920437, -4.8795092E-4, 0.01092734, -0.017036434, 5.7434543E-5, 0.002562713, -0.0052013583, -0.014730855, 0.02178565, 0.04116908, 0.0069512515, -0.012715199, 0.016843151, -0.001078583, -0.0051116203, 0.0020156559, -0.008725305, 0.005553408, 0.014302873, 0.008497508, -0.0024229288, -6.549156E-4, 0.036972098, 0.0046905414, 0.030566178, 0.0069236397, 0.0043039774, 0.008676984, 0.0023349165, -0.014088882, 0.014440931, -0.03216766, -0.016387558, 0.03169826, 0.037717614, -0.042135492, 0.03473555, -0.0046387697, -0.014468543, -0.020101335, 0.020556929, -0.0022175666, -0.007096213, -0.008345644, 0.0041866275, 0.013557357, 6.851159E-4, -0.014717049, 0.011942071, -0.011997294, 0.0069478, -0.008193779, -0.019659547, 4.1676447E-4, -0.010112794, 0.011514089, -0.0098919, -0.02932365, -0.008476799, 9.905706E-4, 0.025154281, 0.007800312, 0.033327352, -0.011141331, 0.019065896, 0.022406913, -0.020377452, -0.039512377, 0.010464843, -0.026300168, -0.013336463, 0.008179973, -0.005070203, 0.014951749, -0.0074068448, 0.006057322, 0.008518217, 0.013060345, -0.03329974, -0.0074482625, 0.031422142, 0.033990033, 0.020556929, 0.016373752, 0.012004197, 8.353625E-5, 0.0069961203, -0.0235528, -0.008904781, -0.015931964, -0.022779671, -0.009912609, -0.011942071, 0.008828849, -0.018209932, -0.023428548, -0.025181891, -0.01681554, -5.19877E-4, -0.0061228997, 0.0012106015, -0.012301023, 0.028826639, 0.025375174, -0.007199757, -0.0075310976, 0.013108666, -0.03476316, 0.02091588, 0.008683887, -0.016760316, 0.03589524, -0.008304226, -0.012722102, 0.013847279, 0.01992186, 0.012887772, 0.008152361, -7.77874E-4, 0.002183052, -0.0023107561, -0.0050978144, 0.0042970744, 0.0047871824, -0.0065853964, 0.019535294, -0.026949042, 0.019480072, 0.01674651, -0.012687587, -0.0077865063, -0.028163958, 0.013750639, -0.013364075, 0.0072618835, 0.032112435, -0.008083332, 0.0021726976, -0.022669226, -0.0039622826, 0.003938122, -0.027666947, -0.028163958, 0.004811343, 0.04260489, -0.008421576, 0.03136692, 0.0024160258, 0.011921362, 0.0077727004, 0.011134428, 0.016939793, -0.015655847, -0.004138307, -0.024767715, 7.575967E-4, 0.0054740245, 0.02312482, -0.0015868113, -0.0024246546, 0.014509961, 0.023000566, 1.4906017E-4, -0.0032115886, -0.005325611, -0.023746083, -0.031643037, 0.0065853964, -0.026162108, 0.0077865063, -0.023290489, -0.0026265653, 0.043598913, 0.014799884, -0.0023608024, -0.013771348, 0.027294189, -0.0078555355, 0.015131225, -0.007986691, 0.02018417, -0.034652714, -0.0142200375, -0.016511811, -0.01356426, 0.0076760594, -0.0017334985, 0.0041555646, 0.0034273053, -0.017243521, -0.013854182, 0.02145431, -0.012977511, -0.017519638, 0.035204947, -0.01921776, -0.013315754, -0.031284083, -0.015876742, -0.034845997, -0.013136278, -0.010147309, -0.013170793, 0.009056645, -0.029820662, -0.054063756, 0.022890119, -0.0061056423, 0.06069057, 0.022765866, 0.04674665, 0.026645314, 0.0012813566, -0.0071721454, 0.01205942, -0.013888697, -0.020998716, 0.024905775, 0.02032223, -0.029875886, 0.0035929757, -0.009457015, -0.0017947621, -0.03313407, -0.025016222, 0.014075076, 0.018389408, 0.009636492, -0.027666947, 0.008877169, -0.018845001, 0.013847279, -0.014164815, -0.005688015, 0.005011528, -0.028357241, -0.030069167, 0.0021778748, -0.0024194773, 0.017809562, 0.012466693, -0.02819157, 0.026217332, -0.025278533, 0.008621761, -0.0074620685, -0.024546823, 0.045421287, -0.03189154, 0.008532023, 0.004183176, 0.002060525, 0.023304295, 0.015835324, 0.008035012, 0.024602046, 0.002795687, 0.034376595, 0.0029734375, -0.009415598, 0.011079204, 0.018058067, -0.017492028, -0.013308851, -0.014758467, -0.0077105737, 0.030814683, 0.004172822, -0.008145459, -6.738986E-4, -0.026244944, -0.010727155, 0.007959079, 8.7839796E-4, 0.0049632075, -0.0282606, -0.007303301, -0.013032733, 0.004417876, 0.008421576, 0.0055361507, -0.015807712, -0.0063161817, 0.0034859802, -0.0076898653, -0.0028077671, -0.02211699, -0.023815112, -0.03139453, -0.013757542, 7.5587095E-4, -0.009332763, 0.019659547, -0.015904352, -0.009967832, -0.006989218, -0.0021519887, 0.0011804012, -0.0074689714, -0.009546754, 0.0073378156, 0.012218188, -0.005501636, -0.0010595999, -0.006799387, 0.012901578, 0.006464595, -4.3208033E-4, 0.009484627, 0.008062623, 0.035481066, -0.032388553, 0.0076553505, 0.0036585534, -0.03106319, 0.008607955, 0.013833473, 0.028909475, 0.023649441, -0.010540776, -0.02522331, -0.010478649, -0.004293623, 0.030566178, -0.005822622, -0.0063575995, 0.024781521, 0.010002347, 0.03205721, 0.022903925, -0.018775972, -0.017008822, -0.004331589, -0.01825135, -0.024974804, -0.011279389, 0.0126254605, 0.014592797, 0.0050805574, -0.016843151, -0.029075146, 0.005470573, -0.019590518, -0.03570196, -0.013957727, 0.018996866, 0.04674665, 0.012942996, -0.001214053, 0.026907625, 0.0037759033, -0.014164815, -0.016594646, -0.0042245938, 0.021233415, 0.002595502, 0.02913037, 0.006078031, -0.040175058, -0.0037931607, 0.0061712204, 0.0074344566, -0.018596496, 0.02202035, -0.028909475, 4.6335923E-4, -0.019176342, 0.008393964, 0.009153287, -0.0066026533, 0.02131625, -0.026162108, 0.005656952, 0.0024850552, 0.012466693, -0.0061228997, 0.009719327, 0.014772273, -0.019328207, -0.007931468, -0.0072618835, -0.024602046, -0.006388663, -0.029958721, 0.034487043, 0.006443886, -0.0071514365, 0.033741526, 0.033023622, -0.012984413, 0.009553657, -0.01761628, 0.011479574, -0.009864288, 0.0138196675, -0.002034639, 0.0237875, -0.028964698, 0.009167092, -0.01921776, 0.0057052723, -0.003958831, 0.007037538, -0.004959756, 0.026949042, 0.0037482916, -0.04114147, 0.009063548, -0.0047112503, -0.0017050239, -0.0012899853, 2.125887E-4, -0.020764016, 0.0014125123, -0.0104372315, -0.0014780901, -0.012956802, -0.020971105, 0.005360126, 0.0022520812, -0.0026265653, 0.009077354, 0.19162537, -0.013357172, -0.0047423136, 0.052986898, -0.015931964, 0.006243701, 0.01738158, 0.013688512, -0.011058495, 0.005035688, -0.009035937, 0.008966907, -0.011472671, 0.00254373, 0.018085679, -0.011044689, -0.02131625, -0.020791627, -0.0021036682, -0.027832618, -0.01252882, 0.0074551655, -0.017906204, -0.016760316, 0.013578066, 0.001988044, -4.7889084E-4, 2.1657946E-4, 0.016760316, 0.016456587, -0.009622686, -0.013881794, -0.0017619731, 0.019093508, -0.016235694, -0.007199757, 2.5001552E-4, 0.007096213, 0.012549529, 0.0084491875, -0.004818246, -0.0040727295, -0.0059434236, -0.0017404015, -0.009512239, 0.017975232, -0.028743805, -0.008932393, -0.024698688, 0.0031926057, -0.044289205, -2.80863E-4, 0.023331907, 0.024049811, -0.008352547, 0.0026559026, 0.0025299243, 0.016470393, -0.020874463, 0.015476371, 0.004152113, 0.03843552, -0.025099058, 0.018430825, 0.0102439495, 0.019742383, -0.032747503, -0.0054809274, 0.004863115, -0.038573578, -0.016456587, -0.012549529, -0.018762166, 0.018831195, -0.032802727, -0.006644071, 0.015393537, 0.0142200375, -0.0023590766, 0.014302873, -0.029434098, -0.0013943921, 0.01658084, -0.0066475226, -0.017588668, -0.021564756, 0.027763588, -0.0056327917, -0.011141331, -0.004131404, -0.014330485, -0.003132205, -0.015959576, 0.008297323, 0.0054533156, -0.003913962, 0.024146453, 0.010865213, -0.009884997, -0.017077852, -0.025085252, 0.0074137477, 0.018886419, 0.0024781523, -0.027487472, -0.0013745461, -0.0092430245, 0.00267316, 0.027114714, -0.025402786, -0.01396463, -0.015227865, 0.014040561, -0.017036434, -0.0050909114, 0.030152002, 0.010154212, -0.015255477, 0.03796612, -0.010423426, -0.006754518, -0.008918587, 0.013488327, 0.004538677, -0.010630514, -0.036585536, -0.03393481, 0.012508111, 0.0028491847, -0.042190716, 0.022103185, -0.02812254, 0.005028785, -0.017174492, -0.009864288, 0.020833045, 0.036944486, -0.00829042, -0.0065646875, -0.020501705, -0.0120249055, -0.001052697, 0.019825218, -0.008759819, -0.004901081, -0.0346251, -0.005946875, -0.016070023, -0.017091658, -0.03523256, -0.027570307, -0.0026593541, -4.9442245E-4, 0.014040561, 0.047519777, 0.002795687, -0.021178192, -0.040037, -0.006078031, 0.04533845, -0.033851974, 0.018762166, 0.02371847, -0.020639764, -0.0072825924, -0.011134428, -0.17792995, 0.016290918, -0.010720252, -0.03713777, 0.013039636, 0.010954952, 0.034514654, 0.009546754, -0.009588171, -0.012687587, 0.03012439, 0.015835324, -0.038822085, -0.0013779976, 1.3870577E-4, 0.012653072, -0.023759888, 0.034956444, 0.029627379, 0.0025040382, 0.046580978, -0.011086107, -0.014523767, 0.012687587, 0.019231565, -0.0039174133, 0.023511384, 0.014102688, -0.009905706, 0.0043281377, -0.035646737, -0.016677482, 0.014302873, 0.016221888, -0.0016998467, 0.008780528, -0.026907625, -0.015807712, -0.010154212, -0.0010276738, 0.0273218, 0.009318957, 0.02305579, 0.009387986, 0.013467618, 0.033575855, 0.02352519, -0.018527467, 0.028909475, -0.023911754, -0.011769498, -0.038849697, 0.027114714, -0.0036585534, 0.0021105711, 0.023953171, 0.023235265, -0.010050667, 0.015807712, 0.0046008034, -0.014703243, -0.0019449008, 0.007924565, -0.011403642, 0.009595074, -0.011514089, -0.025306145, 0.0039622826, -0.042577278, 0.017561056, -0.032885563, 0.010513164, -0.0039415737, -0.011797109, 0.020639764, -0.029019922, -0.037110157, 0.004276366, -0.004700896, 9.379357E-4, -8.4172614E-4, 0.03940193, 3.1429908E-4, -2.9849783E-5, 0.011362225, -0.021081552, -0.006326536, -0.0066026533, -0.0013443459, -0.0035929757, 0.0027525437, -0.026355391, -0.025955021, 0.0021019424, 0.010195629, 0.007938371, 0.005211713, 0.0075449036, 0.015476371, -0.011693565, -0.0042383997, -0.018693138, -0.014634213, 0.02545801, 0.024671076, 0.003422128, 0.019107314, 0.021247221, 0.02345616, -0.0045628375, -0.0029009567, -0.005325611, 0.016097635, 0.017795756, -0.013909406, -0.0028612649, -0.0034238538, -0.031753484, -0.001994947, 0.009387986, 0.055140615, 0.0066613285, 0.0010423426, -0.00600555, 0.0019914955, -0.020501705, -0.100727566, 0.012162965, 0.011935168, 0.03782806, -0.023511384, 0.03432137, -0.015724877, 0.021164386, -0.020432675, 0.021343863, 0.009339666, -0.03589524, 0.0052462276, -0.0050978144, 0.01794762, 0.007931468, -0.023663247, -0.021896098, -0.009539851, 0.02115058, -0.0034307567, 0.0043350407, -0.017188298, -0.023083402, -0.009601977, 0.006078031, -0.03045573, 0.022903925, 0.015034583, 0.024105035, -0.012211285, -0.017409192, 0.017160686, -0.045393676, -0.020625958, -0.023759888, -0.0048320517, -0.014109591, 0.0022934987, -0.0480444, 0.0072687864, 0.008186876, 0.008104041, -0.015931964, -0.013916309, 0.010133503, -0.02545801, 0.018154709, -0.0077105737, -0.01738158, -0.010899728, -0.014192426, -0.03683404, 0.0033720818, 0.00925683, 0.0080074, 0.03327213, -0.003042467, -0.011065398, -0.026341585, -0.0025420042, 0.012618558, -0.0013383058, 0.012004197, -0.0066682315, 0.002176149, -0.006816644, -0.0154073415, 0.025168085, -0.03136692, -0.020888269, 0.029102758, -0.028067317, -0.0070755044, -0.018831195, 0.0077450885, -0.019272983, -0.008732208, 0.02659009, -0.03313407, -0.0031649938, -0.022268856, 0.008566537, -0.010713349, 0.019576712, 0.005501636, 0.0114381565, 0.009291345, -0.0028767965, -0.032416165, -0.0035929757, 0.014427125, -0.0040830835, -0.015310701, 0.0060020983, 0.02578935, 0.006509464, -0.0027232063, -0.006367954, 0.010168017, -0.023304295, -0.0018033907, -0.0836083, 0.030814683, -0.016125247, 0.011362225, -0.0156144295, 8.706322E-4, -0.006188478, 0.001969061, -0.016856957, 0.013136278, -0.007910759, 0.037469108, -0.0016316803, -0.0100368615, -0.0072135627, 0.0044247787, 0.005967584, -0.0026973202, 0.02112297, 0.011762595, -0.009160189, 0.03793851, 0.019231565, 0.012570238, 0.0102439495, 0.014565185, 0.009526045, -5.6992326E-4, -0.0022900472, -0.010989466, 0.026783371, -0.009898803, -0.014454737, 0.0104441345, -0.0030752558, -0.031449754, -0.010333688, -0.0027335607, 0.008835752, 0.0074137477, -0.013412395, -0.02682479, -0.0021416342, -0.0016290917, -0.010796184, 0.023677053, -0.01811329, 0.015628235, -5.2462274E-4, 0.0064404346, 0.034155704, 0.014509961, -0.012611655, -0.013357172, 0.017588668, -0.013681609, 0.04903842, 0.014896525, -0.0063852114, -0.015421147, 0.012804937, 0.006485304, 0.031725872, -0.03271989, -0.0010768572, -0.011127525, 0.019673353, -0.01721591, -3.3975363E-4, -0.034045257, -0.0074896803, 0.001310694, 0.0124252755, 0.048016787, -0.0044213273, 0.016525617, -0.004165919, 0.00706515, -0.015490177, 0.0240222, 0.014275261, 4.797537E-4, -0.03553629, 0.019797606, -3.4147938E-4, -0.003247829, -2.5713418E-4, 0.008897878, 0.004476551, 0.010954952, 0.014730855, 0.010803087, 0.016152859, -1.9015418E-4, 0.014841301, 0.025485622, -0.006109094, -0.004300526, 0.011845429, 0.028716194, -0.0056983694, 0.0066199107, 3.8052408E-4, -0.018845001, -0.02081924, 0.0074137477, -0.01771292, -0.013032733, 0.007800312, 0.0054740245, 0.02545801, 0.0031460107, -0.0068684164, 0.015131225, -0.03647509, 0.01349523, -0.013281239, -0.012521917, -0.024974804, 0.018568885, 8.4690336E-4, 0.0024677978, 0.030952742, -0.0071307276, 0.04196982, 0.0072411746, 0.022089379, -0.02018417, 0.0015471195, -0.013633288, 0.011155137, -0.022199826, -0.02602405, 0.0023400935, -0.009298248, 0.004538677, 0.006354148, 0.02152334, -0.021606173, 0.065605454, 0.024132647, -5.9063203E-4, 0.01745061, -0.007051344, 0.0028716193, 0.020391257, 0.016111441, -0.02032223, -0.017257327, 0.009864288, -0.0116314385, 0.017809562, -0.03316168, 0.008152361, 0.001969061, 0.024629658, 0.020777822, -0.016622258, -0.012093935, -0.012376956, -0.008366352, 0.0405064, -0.012722102, -0.007910759, -0.027694559, 0.02265542, 3.8958417E-4, -0.0036481991, -0.02185468, -9.0083247E-4, -0.02251736, 0.01356426, -0.011866138, 0.015573013, -0.022710644, 0.0023625281, 0.009940221, 0.017409192, 0.013288142, -0.009809065, -0.011286292, -0.025264727, -0.02491958, 0.0033927907, -0.018900225, 0.016456587, -0.025706515, -0.009857385 ], + "id" : "423e43f6-f037-4b66-8e4a-569abc7a9f30", + "metadata" : { + "source" : "movies.csv" + } + }, + "4241f2a0-a489-4af3-9072-b6ae8809afe5" : { + "text" : "ell-Julienne Schembri-Alessio Scozzaro-Stella Segar-Parisa Shahmir-Esther Scheills-Michael Simkins-Gregory Sims-Helen Siveter-Michael Skyers-Simon Slater-Michael Small-Duncan Smith-Philippa Stefani-Gregor Stewart-Sandy Strallen-Lizzie Stavrou-Dean Street-Adi Suissa-Antonio Susinni-Jasmine Takacs-Mikaela Taube-Melissa Odette Teo-Kenneth Tharp-Alex Thomas-Justin Thomas-Amy Thornton-Emily Tierney-Poppy Tierney-Joe Toland-Paul Tomkinson-Sebastien Torkia-Zara Treherne-Amy Trigg-Tim Wallers-Billy Warren-Tom Wheatley-Grace Cinque White-Johnny White-Chad Wilder-Laura Wilson-Amanda Wilkin-Beth Willetts-Luke Woolaston-Matthew Seadon-Young-Elena Zacharia-Benny Andersson-Bj�_rn Ulvaeus-Pedro Etchepare,greece-musical-sequel-greek island-aftercreditsstinger-lgbt interest,/aWicerX4Y7n7tUwRAVHsVcBBpj2.jpg,/gtv2H1u9eGffjxVqNfJBZuFCKxR.jpg,11631-275060-466282-683841-595931-122928-449176-462919-470174-260513-402900-104154-316029-11130-420814-454983-451480-621-454992-556803-384677\r\n530915,1917,War-Drama-History,en,At the height of the First World War two young British soldiers must cross enemy territory and deliver a message that will stop a deadly attack on hundreds of soldiers.,37.846,DreamWorks Pictures-Reliance Entertainment-New Republic Pictures-Neal Street Productions-Mogambo Films-Amblin Partners,12/25/19,100000000,394638258,119,Released,Time is the enemy,7.986,10794,George MacKay-Dean-Charles Chapman-Mark Strong-Andrew Scott-Richard Madden-Claire Duburcq-Colin Firth-Benedict Cumberbatch-Daniel Mays-Adrian Scarborough-Chris Walley-Nabhaan Rizwan-Jamie Parker-Tommy French-Paul Tinto-Billy Postlethwaite-Richard McCabe-Justin Edwards-Jonny Lavelle-Gabriel Akuwudike-Pip Carter-Michael Jibson-Andy Apollo-Josef Davies-Spike Leighton-Robert Maaser-Gerran Howell-Adam Hugill-Benjamin Adams-Anson Boon-Kenny Fullwood-Ryan Nolan-Elliot Baxter-Bogdan Kumshatsky-Kye Mckee-Ivy-I Macnamara-Merlin Leonhardt-Taddeo Kufus-Jos Slovick-Luke Hornsby-Jack Shalloo-Elliot Edusah-Joe Mendes-Jacob James Beswick-Ian Wilson-Bradley Connor-John Hollingworth-Daniel Attwell-Samson Cox-Vinell-Richard Dempsey-Phil Cheadle-Jonah Russell-Michael Rouse-Kieran Geary,world war i-british army-race against time-soldier-trenches-1910s-trench warfare-no man's land,/iZf0KyrE25z1sage4SYFLCCrMi9.jpg,/2lBOQK06tltt8SQaswgb8d657Mv.", + "embedding" : [ -0.0023102881, -0.025449026, -0.01646059, -0.03456041, -0.00513625, 0.04786548, -0.001660573, 0.0015017727, -0.02055866, -0.047073185, 0.02165148, 0.03341295, 0.0182091, 0.009992465, 0.0073833596, 0.008742553, 0.01655621, 0.0022300342, 0.0049962327, -0.025271444, -0.008599121, 0.003650699, -0.004453238, 0.004316636, -0.003917074, 0.00794343, 0.020053232, -0.014083708, -0.015668295, -0.020176174, -0.0040366007, -0.02222521, -0.014971623, -0.028003491, -0.022525735, -0.009411905, 0.0018373022, -0.026664788, 0.02046304, 0.0027952266, -0.00241274, 0.012253235, -0.0028379147, 0.0062495596, -0.030544296, 0.009234322, 0.01655621, -0.0034048147, 0.0033928622, 0.038549196, 0.031090707, 0.023290709, -0.016966019, -0.025708571, -0.015695617, -0.005187476, -0.009521187, 0.016651833, 0.008257615, 0.012109803, 0.0037770562, 0.0019756122, -0.027648326, -0.022006646, -0.009917335, -0.010074427, -0.018659888, -0.024069343, -0.0020575738, 0.0072740777, 0.017922236, 0.016843075, 0.011529243, 0.013339224, 0.013557788, -0.019588783, -0.011044304, -0.011105775, -0.015094565, 0.005535812, 0.018933093, -0.015408751, -0.00851033, 0.009548508, 0.013229942, -0.007280908, -0.010033446, 0.008202974, -0.023454633, -0.0018902357, 0.010429593, 0.025804194, 0.005460681, 0.0015956868, 0.006044656, 0.017990535, -0.021979326, 0.02958808, -0.0102042, -0.040625554, 0.0011833183, -0.017812952, -0.006379332, -0.008845005, -0.006420313, 1.8238554E-4, -0.014602796, -0.0109555125, 0.0077180355, 0.002942074, 0.008476179, -0.015026264, 0.019097015, -0.029915925, 2.608252E-4, -0.00482548, 0.02793519, -0.028549902, -0.024014702, -0.009159191, 0.044122577, 0.013195792, 0.011638524, -0.03475165, 0.033330984, 0.039286852, -6.0105056E-4, -0.0061744284, -0.009295793, 0.0026859448, 0.021952005, -0.004784499, 0.018673548, 0.01650157, -0.021706121, 0.040680196, -0.026022756, 0.00653984, -0.022675999, -0.014561816, 0.024301566, 0.030516976, -0.025175823, -0.02107775, -0.01930192, 0.013865144, 0.006085637, -0.011508753, 0.011686335, 0.0148077, 0.012601571, 0.023509273, 0.01025201, 0.02169246, 0.024069343, 0.0018834056, -0.017170921, 0.0077112056, -0.013960766, -0.009411905, -0.009760241, 4.5356264E-5, 0.0041288077, -0.027976172, 0.020025913, 0.013871973, -0.0025954456, -0.015750257, -0.0031264874, 0.002201006, -0.005733886, 0.014889661, -0.03352223, 0.014957963, -0.0018953583, 0.027525384, 0.0025237293, -0.007219437, -0.031172667, -0.023550253, -0.012765494, -1.2304889E-4, 0.019957611, 0.03578983, -0.016037121, 0.02046304, 0.0089133065, 0.004729858, 0.0021309974, -0.00853765, 0.008052711, 0.020162513, 0.016228365, -0.01815446, -0.64388907, -0.023277048, -0.007465321, 0.0032596746, 0.009521187, 0.020312777, -0.0055289823, 0.0025237293, -0.014466194, 0.0102042, -0.031008745, 0.016856736, 0.007615584, -0.017047979, -0.020121533, -0.018523285, -0.0057885265, -0.017785633, 0.020312777, -0.003073554, -0.004999648, 0.017430466, 0.014903322, 0.011672675, 0.028058132, -0.012649382, -0.010607176, -0.03079018, -0.0025698326, 0.0038829232, -0.004180033, 0.016323987, 0.0043029757, -1.3265373E-4, 0.04797476, -0.0037429058, -0.029260233, 0.050542887, 0.035243418, 0.020340098, -0.024738695, -0.0075336224, 9.6646196E-4, -0.009896844, 0.0012541808, 0.027743947, 0.0047947443, -0.008032221, 0.0021514879, -0.022716979, 0.010395443, 5.003063E-4, -0.002638134, -2.8473063E-4, 0.016228365, -8.879156E-4, 0.011126266, -0.037893504, 0.011775127, -5.805602E-4, -0.026254982, 0.024957258, 0.006184674, 0.011754637, -0.008722063, 0.0145891365, -8.742554E-4, 9.639007E-4, 7.23139E-4, -0.022088608, 0.0061915037, 0.016187385, -0.014370573, -0.0069769677, 0.013257263, 0.012301046, 0.022826262, -0.009719261, -0.0147530595, -0.002786689, 2.3414505E-4, 0.0024895787, -5.4470205E-4, 0.014903322, 0.04652678, -0.0028259621, -0.034451123, 0.0011355075, 0.0045727654, 8.742554E-4, 0.009965145, 0.014930642, 0.010928192, 0.0056553395, -0.003054771, -0.0012080774, 0.008182484, 0.007362869, 0.03363151, -0.04832993, 6.952848E-5, -0.007233097, 0.028112775, -0.015121886, 0.0029147537, 0.017771972, -0.012881606, -0.017389486, 0.03363151, -0.028249376, -0.003643869, 0.009418735, -0.022020306, 0.004494219, -0.0056075286, -0.02958808, 0.026295962, 0.011775127, -0.0056655845, -0.016050782, -0.0022214965, -0.0070828344, 0.012355687, -0.023249729, 0.011672675, 0.02626864, 0.0061300327, 0.006618386, 0.0070350235, 0.015654635, 0.007301398, -0.021187032, 0.03177372, -0.0070486837, 0.005067949, 0.0041288077, 0.021788083, -0.017034318, 0.008694743, 0.0035550774, -0.01024518, -0.007069174, -0.012225915, -0.008667422, 0.008148333, -0.009944655, -0.023495613, 0.002132705, -0.004736688, -0.0024639657, 0.008503499, 0.012239575, -0.0067481585, 0.00739019, 0.010969172, 0.0014659145, -0.032702614, -0.022716979, -6.61241E-4, -0.018386682, 0.011146756, 0.008592291, -7.6198525E-4, -0.022607697, 0.024957258, 0.0024161548, -0.022635018, -0.003589228, -0.004938177, -0.012867946, 0.027060935, -0.007922939, -0.0036609443, 0.021569518, -0.023700517, 0.025367066, -0.011215057, 0.02447915, 0.009008928, -9.724383E-4, 0.005809017, -0.016884057, -0.024110323, -0.016037121, 0.016856736, 0.024752354, 0.019534143, -0.0030581863, -0.012581081, 0.0026637467, 0.0089133065, -0.029861284, -0.011679505, -0.0045591053, 0.0044600684, 0.022525735, 0.0077658463, 0.00799124, 2.746989E-4, 0.0067891395, 0.026254982, 0.008783534, 0.030872142, -0.010532045, 0.01655621, -0.029369516, 0.005563133, -0.03185568, 0.032757256, -4.0703246E-4, 0.02512118, -3.788582E-4, -0.031008745, -0.0045727654, 0.008742553, 0.032156207, -0.0028379147, 0.0023751743, -0.019684406, 0.016064443, -0.009719261, -0.009691941, 0.017485106, 0.024943598, -0.051253222, -9.1182103E-4, 0.015804898, -0.0060549015, -0.001765586, -0.020708924, -0.021678802, -0.008578631, 0.003869263, 3.8824964E-4, 0.0026825296, -8.4821554E-4, 0.02956076, -0.0078068273, 0.044204537, -0.009732921, 0.009855863, 0.009965145, 0.010504724, -0.0041219774, 0.005054289, -3.4492105E-4, 0.016706474, 0.014766719, -0.0102042, 0.04089876, -0.0087084025, 0.038303312, -0.008209804, 3.726684E-4, 0.0056655845, -0.008701573, 0.0034867763, -0.0025595874, 0.026364263, 0.0159415, 0.009282133, -0.021788083, 0.021146052, 0.0033655416, -0.002325656, -6.155646E-4, -0.025763212, 7.26554E-4, -0.010067597, -0.03371347, -0.021706121, -7.1118627E-4, 0.018851131, 0.004787914, -0.0066730273, -0.01598248, 0.014985283, 0.0012874777, 0.0059012235, 0.014848681, -0.011577053, -0.040707514, 0.006949647, 0.023099465, -0.02055866, -0.018523285, -6.608141E-4, 5.6519243E-4, -0.038385276, -0.010135898, -0.0054333606, 0.028167415, -0.0128952665, 0.010484234, 5.3317624E-4, -0.004723028, 0.029068992, -0.022525735, 0.016078103, 0.021979326, 0.0041492977, 0.01708896, 0.0052796826, -0.009002098, 0.039368812, -0.031719077, -0.020667942, -0.013004549, -0.0024554282, 0.0073560392, -3.6455767E-4, 0.0054982468, -0.039040964, 0.024042021, -5.660462E-4, -4.5249544E-4, -0.0027115576, 0.006375917, 0.008387388, -0.013468997, -0.009603148, -0.040844116, -0.041390527, -0.0074448306, 0.081196465, 0.048002083, 0.011187737, 0.0075541125, -0.014561816, -0.0071374755, -0.01769001, -0.004729858, 1.5997421E-4, -0.006543255, 0.01479404, -0.009070399, 0.019329239, 0.007267248, -0.0010031739, -0.0034372578, -0.008681082, -0.009452886, 0.005634849, 5.7885266E-4, -0.019602444, -0.0073765297, 0.0054948316, 0.020749904, -0.0049211015, -0.021842724, 0.008503499, -0.004890366, 9.212124E-4, 0.016310327, -0.010989663, -0.0013293121, 0.011146756, 0.013393865, -0.013243603, 0.011201397, 0.026350603, 0.025530988, 0.027648326, -0.014179329, 0.0049245167, -0.001507749, 0.010545705, -0.0053718896, 0.023399992, -0.028604543, -0.009309454, 0.03420524, 0.03311242, -0.02446549, 0.015258488, 0.009343605, -0.01819544, -0.025735892, -0.007130645, 0.011618034, 4.1151472E-4, -0.0011457526, -0.009323114, 0.026569167, 0.005245532, -0.030544296, 0.0145891365, -0.010368122, -0.0054811714, -0.014056387, -0.023509273, 0.0016187384, -0.0062495596, -0.011980031, 0.01079842, -0.02390542, -0.002535682, 0.00912504, 0.01137898, -0.004849385, 0.020258136, -0.0060753915, 0.0053445688, 0.009623639, -0.04608965, -0.015490712, 0.016733794, -0.0182091, -0.0030718464, 0.026418904, -0.009691941, 0.016337646, -0.0045317844, 0.021146052, -0.005819262, 0.006994043, -0.017293863, -0.0088928165, 0.043466885, 0.012423988, 0.0048220647, 0.02449281, 0.004268825, 0.0040741665, -0.004678632, -0.02050402, -0.014452534, -0.015162867, -0.011563393, 0.008080032, 0.004955252, -0.0016767945, -0.028304018, -0.01479404, -0.025380725, -0.019083355, 0.005351399, -2.4652465E-5, 0.009138701, -0.0054914164, 0.025490008, 0.031036066, -0.004514709, 0.0011167246, 0.013503147, 0.0027986416, 0.017758312, 0.016105423, -0.014916982, 0.03191032, -0.009411905, -0.017252883, 0.005597283, 0.018468644, -0.010859891, 0.015586333, -0.013318734, 0.007827317, -0.016364967, 0.0027405857, 0.010491064, 2.0042133E-4, -0.006328106, 0.025244124, -0.008155163, 0.017621709, -0.0017143601, 0.010682307, -0.021815402, -0.02219789, 0.0043439562, -0.022252532, 0.008817685, 0.029697362, -0.017717332, 0.01644693, -0.012724513, -0.0051464955, 0.0042961454, -0.051417142, -0.041773014, 0.004538615, 0.019465841, 0.025271444, 0.013421185, -0.011802447, 0.028741146, 0.021200692, -4.9091486E-4, 0.016296666, -0.0011679506, -0.011440451, -0.024629412, -0.0055904533, 0.030516976, 0.03756566, -0.0075814333, 0.004142468, 0.009589489, 0.024957258, -0.010333971, 0.01365341, 0.0023307784, -0.027539045, -0.015996141, -0.0064100674, -0.018359363, -0.008469349, -0.019124337, -0.015162867, 0.017211903, 0.008202974, 1.2529001E-4, -0.008100523, 0.021419257, 3.1738714E-4, 0.024001041, -0.016638173, 0.0204084, -0.034396484, -0.015258488, -0.024001041, -0.026528185, -1.3361422E-4, -0.015299468, -0.004169788, -0.0020507434, -0.016050782, -0.00967828, 0.025544649, -0.0061300327, -0.023850778, -0.0059524495, -0.007362869, 0.0026876521, -0.013735372, -0.0060651465, -0.014343252, -0.014930642, -0.008209804, -0.009890013, -0.014930642, -0.02615936, -0.053247616, 0.014725738, -0.010176878, 0.031199988, 0.015777577, 0.041144643, 0.01767635, 0.014152009, -0.023236068, 0.013489487, 0.0010313481, 0.00199098, 0.03584447, 0.022962863, -0.015299468, 0.0047708387, 0.0015188479, 2.8344998E-4, -0.030052528, -0.028140094, 0.036828008, 0.023113126, 0.013031869, -0.032811895, -0.004767424, -0.029260233, 0.019151656, -0.019206297, 0.0020763564, -0.0014266414, -0.025175823, -0.01648791, 0.0029386592, -0.020982128, 0.02278528, -0.0085239895, -0.02326339, 0.009985635, -0.038904365, 8.9389196E-4, 0.0068642707, 0.0030633088, 0.024970919, -0.02904167, -5.5868248E-5, 0.020968469, 0.011221888, 0.0072740777, -0.013188962, 0.014561816, 0.026978973, -0.011645354, 0.016720133, 0.00967828, -0.012458139, 0.029833963, 0.013250433, -0.015272148, -0.009036249, -0.0010296406, -0.0069872127, 0.018127138, 0.010866721, 0.010340801, -0.0021122147, -0.022894561, -0.005856828, 0.01305919, 0.016378628, -9.834306E-5, -0.041226603, 0.007014533, -0.011201397, 0.009036249, -0.0029130462, -0.0054436056, 0.0077112056, -0.004774254, 0.010176878, -0.016228365, -0.008701573, -0.022457434, -0.0075814333, -0.030079849, -0.020080553, -0.0072467574, -0.023017505, 0.01306602, -0.018974073, 0.008045881, 0.011611204, -4.828041E-4, -6.480076E-4, 1.7523527E-4, -0.018236421, 0.015668295, 0.034341842, -0.0010509847, -0.0018834056, -6.5355713E-4, 0.024970919, 0.003920489, -0.014602796, -0.0063417666, 0.0016255686, 0.02506654, -0.016706474, 0.001736558, 0.00797758, -0.03073554, -0.0105252145, 0.028659184, 0.022402793, 0.029779322, -0.0071101547, -0.022621358, 7.2996906E-4, -0.012287386, 0.030981423, 0.009971975, -0.002561295, 0.011549733, 0.0032374768, 0.03600839, 0.017307524, 0.00597294, -0.01536777, 6.6508295E-4, -0.017963216, -0.03303046, -8.618758E-4, 0.012198594, 0.014220309, -2.917742E-4, -0.009207002, -0.024397189, -0.0064681238, -0.022990184, -0.011242378, -0.0059866, 0.014862341, 0.045351997, 0.029287554, -0.012478629, 0.017567068, 0.0013233357, -0.0076429043, -0.011454111, -0.019848328, 0.023481952, 0.010900872, 0.012861116, 0.00908406, -0.0341506, 0.007902449, 0.013387036, 0.013612429, 0.011556563, 0.018017856, -0.017225562, -0.019219957, -0.005822677, -0.0041390527, -0.010142728, 9.937824E-4, 0.0150399245, -0.030571617, 0.002252232, -5.7799893E-4, 0.011276528, -0.014766719, 0.017403146, 0.0026466714, -0.00855814, -0.0013054067, 0.0029471968, -0.018536946, -0.0055426424, -0.035106815, 0.038412593, 0.0013199206, 0.004221014, 0.032675292, 0.010067597, -4.2389432E-4, 8.947457E-4, -0.014903322, 0.007055514, -0.015285809, -0.001383953, 0.009254812, 0.023222407, -0.019110676, 0.019233618, -0.021555858, 0.0056177736, -0.009459716, 0.0021958835, 0.015518033, 0.023700517, 0.022375474, -0.053029053, 0.012902097, -0.013646579, 0.007827317, -0.011010153, -0.004268825, -0.018564265, 5.724494E-4, -0.002742293, -0.006205164, -0.030462336, -0.023072146, 0.0031145348, -0.006580821, -0.009910504, 0.0014172499, 0.19080622, -0.01426129, 0.018058836, 0.04029771, -0.0029591494, -0.0074721514, 0.019452183, 0.005750961, -0.0060412413, 0.015012603, -0.0023666366, 0.023591235, 0.0033006554, 0.0044190874, 0.017908575, -0.02613204, -0.025927136, -0.025394386, -0.019329239, -0.015026264, -0.019752707, 0.0035926432, -0.016638173, -0.028631862, 0.0040605064, -0.0038043768, -0.014152009, 0.004159543, 0.019657085, -0.0015760502, -0.031609796, -0.019629765, 8.1491866E-4, 0.0062154094, -0.008476179, -0.008735724, -0.0059387893, 0.0026398413, 0.01872819, 0.016283005, -0.01194588, -0.016214704, -0.012417158, 0.0015308006, 0.0037087551, 0.019056035, -0.02676041, -0.011850258, -0.0076702246, 0.025421707, -0.03589911, -0.020722585, 0.024998238, 0.029150952, 0.00370534, 0.0047947443, 0.014397893, 0.010641327, 0.006994043, -0.0064681238, 0.0049347617, 0.017362164, -0.020736244, 0.020640623, -0.011208227, 0.025517328, -0.044614345, -0.010709628, -0.0042005237, -0.028850427, -0.007560943, -0.038330633, -0.015121886, 0.023645876, -0.0147120785, -0.0128133055, 0.01759439, -0.003818037, 0.004094657, 0.010019786, -0.04619893, -0.025831513, -0.0012140538, 0.0027747361, -9.3572645E-4, -0.0036882649, 0.027566364, -0.0074380008, -0.026651127, -0.0086469315, -0.026104718, -0.027388781, -0.0019926876, 0.008032221, -0.009855863, -0.007834148, 0.038303312, 0.024274247, 0.003012083, -0.002332486, -0.016802095, 0.011536073, 0.012826965, 0.0031230724, -0.028741146, -0.01602346, -0.006618386, 0.003944394, 0.016364967, -0.016938698, -0.020326437, -0.023509273, -0.0020251307, -0.014015406, -0.004767424, 0.037702262, -0.0038795082, -0.0030274508, 0.033139743, -0.016911376, 0.005225042, -0.0074789813, 0.021132391, 0.007499472, -0.0145481555, -0.043002434, -0.041800335, 0.011139926, -0.0029147537, -0.025708571, 0.011645354, -0.02044938, 0.018236421, -0.015340449, -0.012014181, -0.0036097185, 0.02278528, -6.778894E-4, 0.014179329, 0.010190539, 0.002902801, -0.027784929, 0.0017775387, 0.011822938, 7.7137665E-4, -0.022990184, 0.012458139, 0.0022949204, -0.015572674, -0.050215043, -0.01536777, -0.0055938684, 0.014930642, 0.010695968, 0.046335533, 1.5922717E-4, -0.02221155, -0.030598937, -0.011590714, 0.050952695, -0.030680899, 0.012820135, 0.026350603, -0.0146710975, -0.020572321, -0.0023546838, -0.17572533, 0.019219957, 0.018441323, -0.01595516, 0.02046304, 0.0272795, 0.022716979, 0.012990888, -0.01815446, -0.013646579, 0.02559929, 0.0021771006, -0.029915925, -0.005918299, -0.0024673808, 0.008496669, -0.016651833, 0.017225562, 0.024069343, 0.012417158, 0.03704657, 0.0015717814, -0.020749904, 0.01022469, 0.016925037, 0.010859891, 0.020381078, 0.009090889, -0.0016358137, 0.0054401904, -0.03915025, -0.0027644911, 0.020681603, -0.0014718908, -0.03177372, 0.0019465842, -0.013270923, -0.02506654, -0.011857089, 0.003186251, 0.043357603, -0.0062495596, 0.0145481555, 0.017526088, 0.020476699, 5.058558E-4, 0.040652875, -0.03065358, 0.01538143, -0.01939754, -0.023249729, -0.03013449, 0.020353757, -0.013769522, -0.010743779, 0.018277401, 0.022675999, -0.009767071, 0.0052933428, 0.012697193, -0.03578983, -0.0069598923, 0.006792554, -0.01937022, 0.00227443, -0.009958315, -0.0126698725, 0.006089052, -0.029123632, 0.00913187, -0.027866889, 0.013168471, 0.016802095, -0.002387127, 0.022375474, -0.021460237, -0.039040964, 0.00625639, -0.015121886, 0.026883353, -0.0028037643, 0.031090707, 0.009241153, 0.02383712, 0.008442028, -0.006833535, -0.006642292, 0.015217507, -5.9891614E-4, -0.002438353, 0.0038351123, -0.024615752, -0.043057077, 0.0018116893, -0.006085637, -0.0023820044, -0.0204084, 0.008319086, -0.0028020567, -0.0034782386, 0.010163219, -0.024356209, -0.009446056, 0.0317464, 0.02159684, 0.014288611, 0.0047708387, 0.009883184, 0.023222407, 0.014274951, -0.021583179, -0.004480559, 0.014111028, 0.021255333, -0.022129588, 0.009200172, 0.004203939, -0.03352223, 0.005631434, 0.015135546, 0.050980017, -0.014698418, 0.004962082, -0.011023814, 0.011925389, -0.002873773, -0.08780802, 7.009411E-4, 0.023399992, 0.040434312, -0.031992283, 0.037210494, -0.014042727, 0.0014292026, -0.012908927, 0.019097015, -0.0054777563, -0.027525384, -6.7703566E-4, -0.005795357, 0.006444218, 0.0052694376, -0.021514878, -0.024574772, -0.028768465, 0.023700517, -0.010306651, -0.0010911117, 0.0029523193, -0.017608048, -0.0047332733, 0.0107301185, -0.024656733, 0.017512428, 0.0058943937, 0.023044825, 0.004955252, -0.017840274, -0.0022232041, -0.03371347, -0.016187385, -0.02333169, -0.0087493835, -0.031008745, -0.009732921, -0.03693729, 0.017867593, 0.024137644, 0.012881606, -0.016706474, 0.0075472826, -0.002139535, -0.02726584, 0.031637117, -0.008264445, -0.020422058, -0.016283005, -0.018591587, -0.03341295, -0.0056177736, 0.01602346, 0.017157262, 0.02169246, 0.010593516, -0.009541677, -0.016091762, -0.0035516624, -0.0042415047, -0.019725386, -2.245402E-4, -0.0033126082, 0.018400343, -0.0049074413, -0.014766719, 0.015818559, -0.011092115, -0.03704657, 0.032675292, -0.028659184, -0.001794614, -0.024438169, 0.004388352, -0.016870396, -0.009323114, 0.021897364, -0.039450772, 0.007875129, -0.03363151, -0.010682307, -0.015217507, 0.016283005, 0.01988931, 9.1352855E-4, 0.01598248, -0.0050440435, -0.045242716, -0.010593516, 0.018864792, 0.012458139, -0.019097015, 0.014329592, 0.022921883, -6.928303E-4, -0.005624604, -0.0073696994, -0.0018151044, -0.010491064, 1.8548044E-4, -0.0716343, 0.04554324, -0.020572321, -0.0029010936, -0.02505288, -0.0013813918, 0.015135546, -0.0011150171, 0.0027303405, 0.026719429, -0.0025015315, 0.013387036, 0.0013165056, 0.005812432, -0.009528018, -0.005409455, 0.0043473714, -0.001958537, -0.005921714, -0.0030581863, -0.025790533, 0.010238349, 0.016009802, 0.03185568, 0.012683533, 0.015531693, 0.007895619, 0.014343252, -0.037756905, -0.008592291, 0.029178273, -0.020654283, -0.028140094, -0.001024518, -0.0070486837, -0.013284584, 0.0074311704, 0.004787914, 0.012622062, 0.010900872, -8.998683E-4, -0.027689306, 0.006727668, -0.0038829232, 0.005587038, 0.018933093, -0.0023273635, 0.017498767, 0.017976876, 0.014083708, 0.020135194, 0.005737301, -0.014329592, -0.022006646, 0.037838865, -0.008073201, 0.051581066, 0.0097056, 0.010320311, -0.017881254, 0.024260586, 0.008018561, 0.017444126, -0.03477897, 0.018632567, 0.0068574403, 0.0086264415, -0.0036814346, -0.00969877, -0.02449281, -0.0068608555, -0.0044088424, 2.1440173E-4, 0.03182836, 0.011583883, 0.019766368, 0.008694743, 0.008291766, -0.0034184752, 0.018127138, 0.019001395, -9.0157584E-4, -0.034970213, 0.024752354, -0.009568998, 0.0023273635, 7.470444E-4, 0.028358659, -0.009138701, 0.017157262, 0.009732921, 0.013578279, 0.013749031, -0.007636074, 0.0045727654, 0.012041502, -0.030571617, -0.007342379, 0.0024861638, 0.020667942, 6.881346E-4, -0.0047947443, -0.009200172, -0.021105072, -0.017157262, -0.0016212998, -0.026678449, -0.009022589, -0.002892556, 0.0088928165, 0.018345702, 0.0029659795, 0.0014018822, 0.009350434, -0.03923221, 0.0170753, 0.0054367753, -0.014029066, -0.016638173, 0.027115576, 0.017375825, 0.001820227, 0.03292118, -0.017362164, 0.044286497, -0.006652537, 0.018960413, -0.022512075, 0.0054401904, 0.015900519, 0.0036165486, -0.010081257, -0.014070047, -0.0011525827, -0.0071852864, 0.0059866, 0.017990535, 0.017840274, -0.040106464, 0.065350585, 0.028058132, 0.0023495613, 0.015996141, -0.02169246, 0.030380374, 0.017403146, 0.019698067, -0.029533438, -0.024246925, -0.0048459703, -0.011788787, -0.012642552, -0.031145347, 0.012984058, -0.0053923796, -2.1984449E-4, 0.020599643, -0.019219957, -0.021146052, -0.0041971086, 0.0024315228, 0.019001395, 0.008974778, 0.0051704007, -0.027457083, 0.0044122576, -0.0048049893, -0.007615584, -0.019766368, 0.008995268, -0.028276697, -0.018646227, -0.012171274, 0.022348152, -0.004480559, -0.011187737, 0.009247983, 0.037319776, 6.198334E-4, -0.0088108545, -0.0029967153, -0.025995437, -0.036035713, 0.016829416, -0.0034867763, -0.0014770135, -0.020545, -0.02565393 ], + "id" : "4241f2a0-a489-4af3-9072-b6ae8809afe5", + "metadata" : { + "source" : "movies.csv" + } + }, + "5661c6e1-5ce3-47b2-95e4-7cb00f93f564" : { + "text" : "402,23258,Elijah Wood-Ian McKellen-Viggo Mortensen-Sean Bean-Sean Astin-Ian Holm-Billy Boyd-Dominic Monaghan-Christopher Lee-Liv Tyler-John Rhys-Davies-Orlando Bloom-Hugo Weaving-Cate Blanchett-Brent McIntyre-Sala Baker-Alan Howard-Lawrence Makoare-Craig Parker-Marton Csokas-Peter McKenzie-Mark Ferguson-Harry Sinclair-Andy Serkis-Noel Appleby-Megan Edwards-Sarah McLeod-David Weatherley-Ian Mune-Michael Elsworth-Cameron Rhodes-Martyn Sanderson-Billy Jackson-Katie Jackson-Victoria Beynon-Cole-Paul Bryson-Lance Fabian Kemp-Phil Grieve-Lee Hartley-Jonathan Jordan-Semi Kuresa-Sam La Hood-Jono Manks-Ben Price-Chris Streeter-Clinton Ulyatt-Peter Jackson-Chris Ryan-Bret McKenzie-Betty Adams-Timothy Bartlett-Bob Blackwell-David Houma-Jo Surgison-Liz Merton-Zo Hartley-Norman Cates-Jeff Kingsford-Brown-Marta Mart�_-Riley Brophy-Phoebe Gittins-Taea Hartwell-Shane Rangi-Jed Brophy-Paul Shapcott-Alan Lee-Larry Rew-Gino Acevedo-Xander Forterie-Richard Maybery-Sabine Crossen-Gareth Jensen-Ben Britton-Kester Fordham-Jarl Benzon-Sam Kelly-Matt Appleton-Blair Morton-Ray Henwood-Ralph Johnson-Jonathan Harding-J�rn Benzon-Ben Fransham-Tim Kano-Sacha Lee-Thomas Robins-Randall William Cook-Rachel Clentworth-Lani Jackson-Sharon Maxwell-David J. Muzzerall-Winham Hammond-Mana Hira Davis-Warren Green-Stu Johnson-Peter Lyon-Peter Daube-Samuel E. Shore-Rodney Bane-Daniel Andrews-Siaosi Fonua-Ken Stratton-Lynden Berrymen-Ryan Carey-Tack Daniel-Shane Dawson-Branko Dordevich-Greg Lane-Tim McLachlan-Dean Morganty-Greg Morrison-Andrew Munro-Grant Roa-Vincent Roxburgh-Mike Stearne-Andrew Stehlin-Tim Wong-Elizabeth Moody,elves-dwarf-orcs-loss of loved one-based on novel or book-river-mountain-mine-maze-magic-fireworks-castle-volcano-birthday party-uncle-addiction-fugitive-battle-death-blizzard-wizard-journey-ring-live action and animation-sword and sorcery,/6oom5QYQ2yQTMJIbnvbkBL9cHo6.jpg,/tqj7NKj11keFuLzPsBDMUq2dOUO.jpg,121-122-49051-603-11-1891-155-122917-22-57158-27205-49026-272-1726-12445-98-673-58-671-680-278\r\n452557,Wolf Warrior 2,War-Action-Drama,zh,China's deadliest special forces operative settles into a quiet life on the sea. When sadistic mercenaries begin targeting nearby civilians he must leave his newfound peace behind and return to his duties as a soldier and protector.,26.062,Beijing Century Media Culture-Spring Era Film Company-Beijing Dongfang International Cultural Communications Company-Chao Feng Pictures-Orange Image,7/27/17,29700000,870322670,124,Released,,6.", + "embedding" : [ 0.0066286786, -0.03302899, -0.033998054, -0.031709984, -0.026999248, 0.043500282, -0.010235757, -0.016191473, -0.013169873, -0.030956266, 0.021992408, 0.01979855, 0.020458054, -0.0032537726, 0.007920766, 0.02445545, 0.013001632, -0.008593729, 0.008842724, -0.0064772624, -0.011191363, -0.0018708352, -0.018210359, 0.008869643, 0.01321025, 0.0021618914, 0.028506683, -0.003408554, -0.0053231316, -0.01053186, 0.010955826, -0.026191693, 1.1808385E-4, -0.017752746, -0.020404218, -0.007786174, 0.012274832, -0.043015752, 0.028614357, -4.710736E-5, 0.016541414, 0.0144417705, -0.018318035, -0.0035801595, -0.016285688, 0.014239882, 0.0072478037, -0.0074968, -0.004529036, 0.021844355, 0.022611532, 0.03854728, -0.0057403683, -0.0125911245, -0.022503858, 0.0025538919, -0.016770221, -0.0026195059, 0.02265191, 1.0278448E-4, -0.0023082606, -0.015612725, -0.035774674, -0.030767836, -0.029341156, -0.010827963, -0.0041891905, -0.018627597, -0.012079673, -0.006107133, 0.026891574, 0.02142712, 0.010942367, 0.009562794, 0.013849564, -0.02693195, -0.031494636, -0.012840121, -0.0031696525, -0.0012163793, 0.021629008, -0.007066104, -0.01393032, 0.008142844, 0.019327477, -0.0015688434, -0.005999459, 0.019596662, -0.028156742, 0.011810488, 0.012570935, 0.027779885, -0.0065782066, 0.0060936734, 0.0016445516, 0.019717796, -0.010767397, 0.028183661, -0.028237497, -0.028964298, 3.0199182E-4, -0.008761969, 4.613998E-4, -0.008297625, -0.015316622, 4.613998E-4, -0.0069853486, -7.1334006E-4, 0.03136004, 0.011770111, -0.006208077, -0.0086273765, 0.031871494, -0.02214046, -0.00365755, -0.01643374, 0.026232071, -0.015505051, -0.007335289, -0.021803979, 0.034159567, 0.024401613, 0.018183442, -0.048695553, 0.039354835, 0.028587438, -0.0031124507, -0.01160187, 0.004017585, -0.004522307, 0.025572568, 0.0026901667, 0.021642467, -0.002400793, -0.02588213, 0.04732271, -0.0100271385, 0.0053096726, -0.017052865, -0.01036362, 0.039866287, 0.025720619, -0.028425928, -0.027995232, -0.024320858, 0.011723003, 0.013284276, 0.0028971026, 0.011117337, 0.0011381474, 0.018614138, 0.021440579, 0.026353203, 0.010848152, 0.024966901, -0.005743733, -0.0057168147, -0.017039405, -0.012651691, -0.020619566, -0.010578968, -0.018318035, -0.008089007, -0.012153699, 0.008364921, 0.017200917, 0.025222627, -0.02267883, -0.0050236634, 0.0044886586, -0.012005648, 0.029556504, -0.02695887, 0.019327477, 4.4247272E-4, 0.014899385, -0.0016798822, -0.012288292, -0.01982547, -0.02640704, 0.005763922, 0.009246502, 0.030848593, 0.04064692, -0.015316622, 0.009542606, 0.022180837, -0.017914256, 0.01285358, -0.0032773265, 0.0037181168, 0.020902209, -0.0014157444, -0.0079140365, -0.6378606, -0.016164554, -0.006194618, -0.008095737, 0.016783679, 0.0150743555, 0.013809186, 0.0054711835, -0.014845548, -0.029556504, -0.014980141, 0.020821454, 0.025774457, -0.01748356, -0.02072724, -0.012779554, 0.006770001, -0.018062308, 0.010471294, -0.0031999357, -0.03300207, 0.028829705, 0.013809186, -0.003080485, 6.8179495E-4, -0.006918052, -0.013230438, -0.027362647, 0.009596443, 0.007126671, -0.004017585, 0.02371519, 0.015922287, 0.024051672, 0.039166406, 0.0049496377, -0.02786064, 0.05402541, 0.023997836, 0.029529586, -0.03485945, -0.0019213074, 0.0062316307, -0.012046025, -0.030444814, 0.028479764, -0.002873549, 0.010727019, -6.424687E-5, -0.012483451, 0.0038493443, -0.003284056, -0.008661025, -0.019610122, -0.0058816904, -0.0018960712, 0.006372953, -0.04212744, 0.029691096, 0.014239882, -0.015868451, 0.03585543, -0.0053635095, 0.020498432, -0.006749812, 0.01713362, -0.005905244, -0.0024445355, 0.0035767946, -0.023405628, 0.021090638, 0.009320528, -0.0082841655, -0.0059691756, 0.005905244, -0.0036676445, 0.03994704, 0.0053164023, -0.0086812135, 0.004606427, 0.0013164826, -0.0104511045, 2.98627E-4, 0.013587109, 0.017160539, -0.009569524, -0.013425598, -8.782158E-4, 0.0040949755, -0.008795617, 0.006625314, 0.020821454, 0.020256165, 2.7212914E-4, -0.0036306316, -0.008782158, -0.004724195, 0.00893021, 0.032409865, -0.06756541, -0.01569348, -0.016649088, 0.027268432, -0.0107001, 0.01391686, 0.02428048, -0.011810488, -0.020982964, 0.040243145, -0.011366333, -0.0024748188, 0.007819822, -0.011312496, -0.005188539, -0.0048419638, -0.024428532, 0.009825249, 0.01893716, -0.008950398, -0.006248455, 0.006406601, -0.0010195379, 0.0019835564, -0.011393252, 0.004333877, 0.027752966, -0.018816026, -4.4794052E-4, 0.010229027, 0.00893694, 0.0034489317, -0.005514926, 0.026474336, -0.021090638, 0.018627597, 0.001973462, 0.021467498, 1.7970196E-4, 0.0078602, 0.007086293, -0.01802193, -0.0049159895, -0.017025946, -0.02445545, 0.001397238, -0.015760778, -0.032679047, 0.010854882, 0.0027137205, -0.014495607, -0.008405299, 0.010935637, 0.0108750705, -0.013102576, 0.004535766, -6.009343E-5, -0.027752966, -0.013849564, 0.01943515, -0.020188868, 0.008620647, 0.012059485, -0.0049193543, -0.025249545, 0.029852608, 0.0016866118, -0.020794535, 0.011669166, 0.007954414, -0.020956047, 0.030256385, -0.0038123315, 0.0024479004, 0.021548253, -0.018358411, 0.01943515, -0.008687943, 0.03176382, -0.0026985789, 0.0027726046, -0.001513324, -0.002624553, -0.020942587, -0.009697387, 0.018102685, 0.02747032, 0.016649088, -0.020579187, -0.01660871, 0.0015309892, -0.013499624, -0.0077054184, -0.0022510588, 0.0010775808, 0.0029307508, 0.03623229, 0.003304245, -0.0065916656, 0.016003044, 0.0053601447, 0.036286127, 0.025182249, 0.01786042, 3.9073874E-4, 0.012375777, -0.040916108, -0.010390538, -0.029368075, 0.017645072, -0.013714972, 0.023782488, -0.016622169, -0.019381315, 0.0115345735, -0.0014746287, 0.035990022, 0.011016393, -1.3164825E-4, -0.010114623, 0.004677088, 0.011803758, -0.031844575, 0.027268432, 0.011823948, -0.034374915, -0.0013804139, 0.011904703, -0.013614028, -0.0023940634, -0.0037214814, -0.013526542, -0.005037123, 0.015007059, 0.005602411, -0.023446007, -0.00874178, 0.029179646, -0.010195379, 0.052221876, -0.011487466, -0.00963682, 0.037443623, 0.022948014, 2.3264516E-5, 0.0071334005, -0.0072881817, 0.0054711835, 0.00732183, -0.00802171, 0.03305591, -0.008095737, 0.0260571, 0.001223109, -0.008977317, 0.010155001, -0.010074246, 0.003097309, 0.012200806, 0.02909889, 0.018721811, 0.026689684, -0.028668193, 0.029879525, -0.0045021176, 0.011924892, 0.009132098, -0.020458054, 0.010552049, -0.0086273765, -0.03485945, -0.014172586, -0.002488278, 0.00965028, 0.018156523, -0.0037214814, 0.006457073, 0.009118639, 0.0053130374, 0.020834913, 0.020498432, -0.0037685889, -0.023513302, 0.0026682955, 0.021440579, -0.012342129, -0.032571375, -0.017066324, -0.014307179, -0.03413265, -0.024953442, -0.0075371778, 0.034617182, -0.01393032, -1.753908E-4, -0.008613917, 0.010282864, 0.018842945, -0.017712368, -3.9746836E-4, 0.028775867, -0.011413441, 0.010673182, -0.0020037452, -0.009212854, 0.02356714, -0.014266801, -0.0038426148, -0.0060734847, -0.007604474, 0.007429504, 0.002918974, 0.0024613596, -0.029691096, -0.0053130374, -0.0027305444, -0.0010010314, -0.007261263, 0.0037383055, 0.012032566, -0.009226313, -0.0032369487, -0.034374915, -0.010760667, -0.0022830246, 0.07558712, 0.04086227, 0.017981553, 0.015397377, -0.011904703, -0.004226203, -0.019852389, 6.55297E-4, -0.0030989915, -0.02516879, 0.024186265, -0.02033692, 0.023809407, -0.0045256712, 0.0054375352, -0.004831869, -0.0072343447, -0.008788887, -0.021669386, -0.01803539, -0.020283084, -0.013169873, 0.027389565, 0.041023783, 0.0024748188, -0.007281452, 0.007974603, 0.0025387502, -0.0068507562, 0.021198312, 0.009159017, -0.0024512652, 0.0054038875, 0.004855423, 0.009185935, 0.004835234, 0.017941175, 0.013492894, 0.016406821, -0.0046535344, -0.004071422, 7.688594E-4, 0.010814504, -0.01784696, 0.015087815, -0.033298176, -0.0137284305, 0.030606326, 0.029771851, -0.03179074, 0.01802193, 0.014347556, -0.029152727, -0.019556284, 0.016541414, -0.0028584073, -0.010578968, -0.002924021, -0.0045593195, 0.013661135, 6.3510815E-4, -0.0432311, 0.01516857, -0.013580379, -0.017402805, -0.0058850553, -0.014657119, 0.006120592, -0.014482149, 0.011191363, -1.8611613E-4, -0.0028584073, -0.004747749, -0.006716164, 0.013627486, -0.004572779, 0.033594277, 0.0038796277, 0.01624531, 0.011857595, -0.031090857, -0.01588191, 0.011144255, -0.022598075, -0.01018192, 0.011272118, -0.013398679, 0.02230197, -0.0026464243, -0.00481841, -0.0089705875, 0.01338522, -0.010753938, -0.01607034, 0.047376547, 0.022921097, 0.006655597, 0.022921097, 0.006265279, -0.0066354084, 0.0011145938, -0.009320528, -0.012941065, -0.029368075, -0.0125642065, 8.2069855E-5, -0.004569414, -0.012362317, -0.009731035, -0.023176821, -0.035451654, -0.03160231, 0.010848152, -0.005141432, 0.0064772624, 0.008519703, 0.020242706, 0.014751334, -0.009535876, 0.0024579947, 0.0047511137, -0.0119316215, 0.018129604, 0.0151281925, -0.027699128, 0.026191693, -0.004640075, -0.011480737, 0.01891024, 0.039516345, -0.023230659, 0.017456641, -0.011379792, 0.0067733657, -0.017456641, -0.025316842, 0.020040818, -0.009010965, -0.006618584, 0.011897974, -0.014791711, -0.009811791, 0.010787586, 0.004566049, -0.00232172, -0.033782706, 0.0090513425, 3.546196E-5, 0.021090638, 0.026756981, -0.014953222, 0.011662437, -0.02017541, -0.0066892453, -0.01767199, -0.042585053, -0.03803583, 0.0020474878, 0.021561712, 0.0019011186, 0.039139487, -0.0050438526, 0.031090857, 0.008829265, 0.011272118, 0.019556284, -0.024805391, -0.013136224, -0.03574776, -0.0067565413, 0.017362427, 0.022248134, 0.0064738975, 0.0033950948, 0.01321698, 0.019569743, -0.0017034358, 0.017725827, -0.009239772, -0.015626185, -0.035774674, 0.0042598513, -0.035370898, -0.0023772393, -0.027456861, -0.005235647, 0.035236306, -0.005245741, 0.00402095, -0.008405299, 0.02125215, -0.0111375265, 0.022032786, -0.023365252, 0.01391686, -0.016366443, 0.0067767305, -0.020417675, -0.011662437, -0.009320528, -0.0027440037, 0.019946603, 0.0027608278, -0.011648977, -0.008142844, 0.023136444, -0.017914256, -0.030956266, 0.02230197, -0.028641276, -0.00857354, -0.03052557, -0.01445523, -0.01944861, -0.010020409, -0.0027389566, -0.012550747, 0.0052255522, -0.019946603, -0.04479237, 0.028183661, -0.0049361787, 0.043661796, 0.01767199, 0.049476188, 0.020484973, 0.008385111, -0.031521555, 0.011763381, -3.2533522E-4, -0.0038089666, 0.012880499, 0.027618373, -0.028587438, 0.004572779, 0.0019246722, -0.00893694, -0.035640083, -0.0292604, 0.03286748, 0.024697717, 0.020511892, -0.021857815, 0.009212854, -0.038977977, 0.010686642, -0.013795727, 0.003586889, 0.0046669934, -0.032679047, -0.0023065782, 0.0024159346, -0.006554653, 0.004444916, 0.011514385, -0.014482149, 0.021830898, -0.021440579, 0.003913276, -0.014482149, -0.014186045, 0.03106394, -0.029314239, 0.003213395, 0.012099862, 0.014145668, 0.016285688, -0.0018758824, 0.0036676445, 0.03160231, -0.012079673, 0.035290144, -0.0034724856, 0.0024058402, 0.010215567, 0.020417675, -0.017941175, -0.016137635, -0.021534793, -0.007819822, 0.028479764, 0.004000761, 0.0062854677, 0.01160187, -0.028668193, -0.012295021, 0.014051453, -0.00579757, -0.0010792633, -0.029879525, 0.007765985, 0.009307069, 0.0030047768, -0.0028920555, -0.0037820481, -0.0012845168, 0.0022981663, 0.0059691756, -0.011204822, -0.00437089, -0.011110608, -0.02304223, -0.04064692, -0.030848593, -0.005191904, -0.011568222, 0.007725607, -0.020148491, -0.001534354, -3.2870003E-4, 0.0040579624, -0.020552268, 0.0029660813, -0.019017914, 0.0016142683, 0.029691096, -0.0072881817, 7.818981E-4, 5.017775E-4, 0.031683065, 0.0077592554, -0.015303163, 0.0086812135, 0.008250518, 0.030364059, -0.008156303, 0.02712038, -0.015262785, -0.0060196477, -0.02733573, 0.0100540565, 0.018964078, 0.016541414, -0.005730274, -0.03127929, -0.005228917, -0.0032941503, 0.030417897, -0.0077525256, 0.005942257, 0.038628034, 0.011157715, 0.031736903, 0.026730062, -0.009670468, -0.031521555, -0.0011373063, -0.010491482, -0.020054277, -0.00785347, -0.0072208853, 0.019327477, -7.4572634E-4, 0.008761969, -0.036851417, 0.011204822, -0.028641276, -0.029718015, 0.0051111486, 0.029233482, 0.026232071, 0.013176601, 0.0052760243, 0.009805061, -1.09566674E-4, -0.0032705967, -0.021211771, -0.015626185, -0.0022426469, 0.012335399, 0.020054277, 0.019744715, -0.02177706, -0.005652883, 0.008728321, 0.020969504, 0.004034409, 0.016299147, -0.0060061887, -0.028102906, -0.009206125, 0.0026228705, -0.008634106, -0.0050404877, 0.01285358, -0.039543264, -0.002210681, 0.0022291876, 0.017335508, -0.012375777, 0.011130797, 0.021575172, -0.015330081, -0.004465105, -0.0044852938, -0.013122764, -0.0029055148, -0.025612945, 0.030041037, 0.0164472, -0.010753938, 0.039327916, 0.011817218, -0.0043305126, 0.02088875, -0.010262675, 0.017820042, -0.0058278535, -0.012456533, 1.5625343E-4, 0.020471513, -0.03160231, 0.004714101, -0.033648115, -0.0030468367, -0.0013930319, 0.022463482, 3.488889E-4, 0.038331933, 0.014334097, -0.0510913, -0.0076785, -0.014401393, 0.008788887, -0.02499382, 0.0024798661, -0.03819734, 0.006726258, -0.011352874, -0.0038863572, -0.020606106, -0.030390978, 0.006372953, -0.019260181, 6.9315115E-4, 0.018721811, 0.17270905, -0.0069718896, 0.00802171, 0.039031815, 0.009865628, 0.0039502885, 0.035505492, 0.02070032, -0.008553351, 0.0034657558, -2.7023641E-5, 0.0040949755, -0.006046566, 0.005908609, 0.018883321, -0.030229466, -0.01658179, -0.022759585, -0.022705749, -0.023082606, -7.8904827E-4, -0.00669261, 5.2112516E-4, -0.02909889, 0.010525131, -0.010652993, -0.012234455, 0.01285358, 0.0075371778, -0.004481929, 0.0018960712, -0.0041521774, -0.011198092, 0.0052087284, -0.034509506, -0.009044614, -0.0046501695, -0.004677088, 0.010188649, -0.0054745483, 0.007786174, -0.0064873565, -0.017402805, -0.0017362428, 0.0071535893, 0.027012706, -0.03138696, 0.0023351791, -0.014468689, 0.014118749, -0.035936188, -0.0035061336, 0.008277437, 0.015155111, 0.0031360043, -0.007409315, 0.008277437, 0.0041521774, -0.011043311, -0.0050102044, 0.006658962, 0.035397816, -0.037228275, 0.009414743, -0.0018472815, 0.015922287, -0.03394422, -0.011951811, 0.0045795087, -0.037524376, -0.0116086, -0.03087551, -0.01303528, 0.013580379, -0.008109196, -0.009724305, -0.0021467498, 0.011830677, -0.005228917, 0.014374475, -0.030390978, -0.019475529, 0.0076448517, -0.0030569313, -0.015828073, -0.019367855, 0.01178357, -0.02371519, -0.017214376, -0.014387934, -0.0093945535, -0.016178014, -0.011675896, 0.0010716924, 0.0028113, 0.010585697, 0.025209168, 0.007786174, -0.0129612535, -0.0028920555, -0.025451435, 0.037066765, 0.008815806, -0.0041286238, -0.036689904, -0.011312496, 0.004088246, -7.7138306E-4, 0.015854992, -0.014239882, -0.017039405, -0.041992847, -0.008183221, -0.014037994, -0.0042362977, 0.0060398364, -0.0064200605, -0.0067228936, 0.029045053, -0.024563124, 0.0025067846, -0.026797358, 0.033594277, 0.0076313927, -0.001463693, -0.022571156, -0.044011734, 0.010646263, -0.008344732, -0.038305014, 0.0062282663, -0.01963704, 0.0066690566, 0.0061104978, 0.0023957458, 0.01322371, 0.010760667, -0.0026296002, 0.005050582, 0.0074496926, 0.0047208304, -0.020027358, 0.0037753184, 0.00579757, 0.01589537, -0.015814614, -1.777041E-4, 3.1019357E-4, -0.013445787, -0.040135473, -0.018883321, -0.004158907, 0.018479545, 0.011144255, 0.05049909, 0.0035296872, -0.013116036, -0.040781517, -0.015733859, 0.046811257, -0.039004896, 0.026541634, 0.019031374, -9.2532317E-4, -0.025801374, -0.0033076096, -0.17173998, 0.012967983, 0.004710736, -0.02445545, 0.021521334, 0.0146302, 0.03176382, 0.0044482807, 0.0056125056, -0.02747032, 0.010504941, 0.012530558, -0.045626845, 0.0021248783, 0.0021265608, 0.015141652, 0.0032689143, 0.03623229, 0.015612725, -0.005545209, 0.040996864, 0.0042497567, -0.018062308, -0.009401283, 0.014468689, -0.0075035295, 0.041804418, -0.0044920235, 0.020040818, -0.012725717, -0.045869112, -0.008270707, 0.003159558, -0.0070795636, -0.020013899, -0.007974603, -0.014966682, -0.026528174, -0.006918052, -4.719148E-4, 0.035290144, 0.016460657, 0.006615219, 0.02428048, 0.007873659, 0.016568331, 0.031037021, -0.027618373, 0.013681323, -0.015020519, -0.010901989, -0.03087551, 0.024724634, -0.011103878, -0.004263216, 0.018721811, 0.023849783, -0.0059893643, -5.598205E-4, 0.0042026495, -0.0385742, -0.0074362336, -0.002823077, -0.013640946, 3.3227514E-4, -0.00571345, -0.01231521, 0.022799963, -0.02428048, 0.012954525, -0.032221437, 0.014387934, 0.019340936, 0.007227615, 0.008432218, -0.018829485, -0.031117776, 4.155542E-4, 0.008674484, 0.022759585, -0.015276244, 0.0346441, -0.0075439075, 0.024199724, 0.004222838, 5.282754E-4, 0.0059220684, 0.0018842944, 0.0058312183, -0.0042396626, 0.011891244, -0.012342129, -0.045626845, 0.0017883973, -5.1776035E-4, 0.012342129, 7.9872215E-4, 0.0082841655, 0.016662547, 0.006046566, 0.013533272, -0.021817438, -0.014670578, 0.027887559, 0.021359824, 0.0055182907, 0.012631502, 0.013997616, 0.014899385, 0.006615219, -0.009569524, 0.0064671678, 0.024886146, 0.002567351, -0.020929128, 0.0051010544, -0.030229466, -0.029529586, -0.0022241403, 0.0108750705, 0.031817656, -0.0023234023, 0.0064200605, -0.007409315, -0.010013679, -0.007355478, -0.07870967, 8.0461055E-4, 0.013324654, 0.03674374, -0.037578214, 0.03485945, -0.014428312, 0.010033868, -0.024939982, 0.024966901, 0.01660871, -0.024011295, 0.014024534, 0.007940955, 0.014535986, 0.004784762, -0.025061116, -0.011366333, -0.0052760243, 0.03429416, -0.005642789, -0.010316512, -0.0026464243, -0.014684037, -0.01356692, 0.010774126, -0.021709764, 0.02228851, 0.012241184, 0.018856404, 0.016366443, -0.025680242, 0.025949426, -0.03052557, -0.025801374, -0.013546731, -0.014374475, -0.031521555, 0.0027540983, -0.047564976, 0.012207536, 0.01642028, -2.912665E-4, -0.019004455, -0.025263004, 0.007476611, -0.027362647, 0.022867259, -0.010962556, -0.02177706, -0.016770221, -0.017079784, -0.032382946, -0.002111419, 0.014078371, 0.016716383, 0.031683065, 0.003105721, -0.0130150905, -0.01874873, -0.00254548, -0.0024495828, -0.019488988, 0.013876483, 0.0060061887, 0.001513324, 4.672882E-4, -0.010592426, 0.004391079, -0.019394774, -0.017308591, 0.021440579, -0.03413265, -0.020067737, -0.0192871, 0.0097377645, -0.018667974, -0.010626075, 0.025626404, -0.027268432, -3.6592325E-4, -0.032679047, 0.02409205, -0.021184852, 0.021171395, 0.016326066, 0.020040818, 0.0026481065, -0.010814504, -0.047672648, -9.7074814E-4, 0.014724415, 0.015060896, -0.011823948, -0.005494737, 0.014387934, 0.019260181, 0.01214024, -0.0115076555, 0.0035296872, -0.005387063, 0.010518401, -0.0732183, 0.032571375, -0.031171614, -0.008499513, -0.01285358, -0.006770001, 0.01249018, -0.012920876, 0.009401283, 0.028345171, -0.0056091407, 0.013371761, -0.010249216, 0.011251929, -0.008418758, 0.0022813422, 0.009966572, -0.012106592, -0.0057235444, -0.004673723, -0.012234455, 0.0039570183, 0.024953442, -0.0018371871, -0.011857595, 0.017187458, 1.3511821E-4, 0.0060230126, -0.018964078, -0.0074160444, 0.03927408, -0.027201137, -0.0047982214, 0.0031107683, -0.014428312, -0.03585543, 0.0046568993, 0.012618043, 0.012914146, 0.0079678735, 0.0010809457, -0.017577775, -0.0039502885, 0.008183221, -0.009542606, 0.005286119, -0.014482149, 0.019219803, 0.016124176, 0.018721811, 0.036501475, 0.012745906, -0.007786174, -0.0035195928, 0.007261263, -0.01695865, 0.050445255, -0.0014249977, 0.0025067846, -0.017564315, 0.023943998, -0.011548033, 0.025236087, -0.042262033, 4.7696204E-4, 0.0078063626, 0.017160539, 0.0028079352, 0.009333987, -0.033244338, -0.016097259, -0.0072949114, 0.01393032, 0.023499843, 0.016379902, 0.024441991, 0.00535678, -0.0025437975, 0.003275644, 0.028883541, 0.027039625, -0.011090418, -0.024724634, 0.014024534, -0.0062282663, 0.018439166, 4.433139E-4, 0.018196901, 0.007301641, 0.008903291, -0.0049058953, 0.016635628, 0.011090418, -0.0038325202, 0.015289703, 0.018102685, -0.014859008, -9.623361E-4, 5.0009514E-4, 0.023688274, -0.015087815, -0.001132259, -0.012860309, -0.017685449, -0.022759585, 1.309122E-4, -0.0144417705, -0.01178357, 0.006352764, 0.019690877, 0.024293939, 0.014657119, -0.017887337, 0.0055216555, -0.03983937, 0.025303382, -0.0056259646, -0.018250737, -0.011346145, 0.038278095, 0.0036037131, 0.013405409, 0.0164472, -0.020390758, 0.05090287, 0.00875524, 0.0053164023, -0.030633245, 0.008788887, 0.011971999, -0.0051481617, -0.012227725, -0.010296323, 0.012375777, 0.0012374094, -0.0029307508, 0.005800935, 0.025303382, -0.024603501, 0.06605798, 0.020767616, -0.0077054184, 0.0185603, -0.020108113, 0.025814833, 0.010989474, 0.028856624, -0.005784111, -0.022221215, -0.0065243696, -0.012126781, 0.009906005, -0.03819734, -5.581381E-4, -0.009185935, 0.009165746, 0.019340936, -0.0013753667, -0.014253342, -5.1271316E-4, -1.9652602E-4, 0.030579407, 0.014226423, -0.0108818, -0.013116036, 0.019569743, -0.008714862, -0.0047746673, -0.0371206, 0.013775539, -0.025612945, 3.0640815E-4, 0.0036205372, 0.031844575, -0.005854772, -0.012059485, -0.0019414963, 0.02177706, 0.0017816677, -0.021373283, -0.009105179, -0.02553219, -0.008398569, 0.026985789, -0.009919465, -0.0071805078, -0.020929128, -0.010868341 ], + "id" : "5661c6e1-5ce3-47b2-95e4-7cb00f93f564", + "metadata" : { + "source" : "movies.csv" + } + }, + "8c93c386-09b1-47c7-82e1-ffcbec00c411" : { + "text" : "Tobin-Ted Grossman-Ana Maria Quintana-Tim Camarillo-Janet Lopez-Maria Zambrana-Marly Coronel-Chuck Maldonado-David LaVera-Arnold Chon-Philip J Silvera-Amanda Bromberg,saving the world-riddle-whip-treasure-mexico city mexico-leather jacket-machinegun-maya civilization-peru-treasure hunt-nuclear explosion-alien-refrigerator-archaeologist-adventurer-area 51-archeology-1950s-father son relationship,/56As6XEM1flWvprX4LgkPl8ii4K.jpg,/sL0vdRNTaKcaXDUIacw1ykvehoL.jpg,87-89-85-1894-1895-1893-6637-1734-330-1571-1979-196-608-10764-607-564-956-1892-8373-296-1573\r\n383498,Deadpool 2,Action-Comedy-Adventure,en,Wisecracking mercenary Deadpool battles the evil and powerful Cable and other bad guys to save a boy's life.,231.478,Maximum Effort-Genre Films-20th Century Fox,5/10/18,110000000,785900000,120,Released,Prepare for the Second Coming.,7.491,16514,Ryan Reynolds-Josh Brolin-Morena Baccarin-Julian Dennison-Zazie Beetz-T.J. Miller-Leslie Uggams-Karan Soni-Brianna Hildebrand-Jack Kesy-Eddie Marsan-Shioli Kutsuna-Stefan Kapiۍiۈ-Randal Reeder-Nikolai Witschl-Thayr Harris-Rob Delaney-Lewis Tan-Bill Skarsg��rd-Terry Crews-Brad Pitt-Paul Wu-Robert Maillet-Alan Tudyk-Matt Damon-Michasha Armstrong-Joe Doserro-Hayley Sales-Islie Hirvonen-Jagua Arneja-Gerry South-Mike Dopud-Luke Roessler-Andy Canete-Tanis Dolman-Eleanor Walker-Hunter Dillon-Sala Baker-Sonia Sunger-Paul Wernick-Rhett Reese-Abiola Uthman-Tony Bailey-Alex Kliner-Elaine Kliner-David Leitch-Alicia Morton-Andre Tricoteux-Lisa Bunting-Miles Ellis-Lars Grant-Sam Hargrave-Nicholas Hoult-Simon MacIntyre-James McAvoy-Evan Peters-Tye Sheridan-Alexandra Shipp-Kodi Smit-McPhee-Scott Vickaryous-Dan Zachary-Hugh Jackman,hero-superhero-mutant-mercenary-based on comic-sequel-aftercreditsstinger-duringcreditsstinger,/to0spRl1CMDvyUbOnbb4fTk3VAd.jpg,/3P52oz9HPQWxcwHOwxtyrVV1LKi.jpg,293660-299536-284054-363088-284053-283995-335983-315635-351286-102899-333339-271110-260513-348350-99861-284052-701461-299537-263115-118340-141052\r\n558,Spider-Man 2,Action-Adventure-Fantasy,en,Peter Parker is going through a major identity crisis. Burned out from being Spider-Man he decides to shelve his superhero alter ego which leaves the city suffering in the wake of carnage left by the evil Doc Ock. In the meantime Parker still can't act on his feelings for Mary Jane Watson a girl he's loved since childhood.", + "embedding" : [ -0.010463329, -0.039842185, -0.009464557, -0.035819918, -0.020355932, 0.020192867, -0.001754646, -0.020437464, -0.014934025, -0.040494442, 0.01929601, 0.029840872, 0.037124436, 0.017923547, 0.014906847, 0.009573267, 0.016034713, -0.010959318, -3.0574662E-4, -0.043918807, -0.015015557, 0.0033751032, -0.01907859, 0.008771531, 0.0018123981, 0.0098790135, 0.022326298, -0.014607895, -0.010130405, -0.011720288, 0.015368864, -0.007534956, -0.005618944, -0.034243625, -0.019907502, 0.0020451052, 0.0033037623, -0.02049182, 0.022163235, -0.003021796, 0.01374501, 0.009192782, -0.01842633, -0.0015321304, -0.011292242, 0.0011100301, 0.008520139, 3.7305336E-4, -0.01627931, 0.010680749, 0.025872959, 0.02187787, -0.02619909, -0.023916181, 0.0115164565, -0.008336691, -0.03288475, 0.0061828764, 0.012155128, 0.003747095, 5.571383E-4, -0.0041479627, -0.027571552, 0.0011907133, -0.024527675, -0.014091522, 0.0061489046, -0.011169944, 0.002124939, 0.016347254, 0.04462542, 0.010103228, 0.011224299, -8.433511E-4, 0.022570897, -0.028481998, -0.022788316, -0.013724627, -0.01072831, 7.0746377E-4, 0.021755572, -0.008336691, -0.002841745, 0.0024120011, 0.024446143, 0.0065701553, 0.015980357, 0.0066890568, -0.016075479, 0.008397841, 0.0027653084, 0.036173224, 0.017284876, 0.0031271086, 0.0041309767, 0.030547487, -0.021633273, 0.020573352, -0.014363297, -0.043565497, -0.008771531, -0.017665362, -0.0087171765, -0.017325643, -0.005666504, 0.0043110275, 0.012508434, 0.0013894486, 0.01853504, 0.02005698, 0.011842586, -0.003380199, 0.011618372, -0.055768188, -0.0077999365, 0.006933654, 0.0032528045, -0.0074330405, 0.0036247962, -0.018467097, 0.021483798, 0.029242966, -3.4460193E-4, -0.022992147, 0.014838903, 0.022217588, 0.0055000423, -0.0073854798, 0.004681321, -0.0032850776, 0.027041592, 0.009953751, 0.028210223, 0.011299036, -0.019567784, 0.050359868, -0.036907017, -0.0046099797, -0.028400466, -0.037586454, 0.024731506, 0.02888966, -0.02899837, -0.025940903, -0.015260154, -0.005207884, 0.018874759, -0.012895714, 0.03416209, 0.014580717, 0.023562875, 0.016972335, -0.001083702, 0.0076232827, 0.02921579, -0.007861086, 0.008126066, 0.0044401204, 0.006852122, -0.024446143, -0.010048873, -0.021497386, 0.0049870675, -0.020002624, -0.005235062, 0.021361498, 0.017284876, -0.005275828, -0.00786788, -0.0010488809, 3.847312E-4, 0.017855603, -0.01778766, 0.02445973, -0.005955265, 0.012630734, -0.0061998623, -0.012596762, -0.04019549, -0.013785776, 0.011081617, 5.1891996E-4, 0.008153244, 0.026715461, -0.0043721767, -0.003225627, 0.0108166365, -0.01876605, 0.02414719, -0.02414719, -0.0070661446, 0.017203344, 0.013031601, -0.0019075193, -0.64182335, 7.367645E-5, -0.014485596, -0.0231688, 0.0059314845, 0.007922235, 0.006230437, -0.009512117, -0.054382134, -0.014866081, -0.025614774, 0.011122383, 0.020831537, -0.014947614, -0.013398497, -0.018195322, 0.008887036, -0.003025193, 0.019323187, 0.002491835, -0.024092834, 0.012107567, 0.02791127, 0.0016433882, -2.1073162E-4, 0.0049293153, 8.892131E-4, -0.02403848, 0.017339231, 0.0064682397, -0.027218245, 0.016904391, 0.015531929, -0.009233548, 0.03750492, -0.005367552, -0.02004339, 0.047479056, 0.03288475, 0.02219041, -0.024813037, 0.0019363953, 0.0082551595, 0.0014081331, -0.008608466, 0.022244766, -0.0020434067, 0.010891374, 3.142396E-4, -0.008526934, 6.2890386E-4, -0.004966684, -0.006138713, -0.007772759, -0.0066992487, 0.0027398295, 0.018494274, -0.025370177, 0.017515885, -0.010721515, -0.016958747, 0.015368864, -0.009797481, 0.010938935, -0.0094237905, 0.03845613, 0.0012221372, 0.0054490846, 0.005846555, -0.019119356, 0.0138265425, 0.006930257, -0.015273743, 0.0038761878, -0.0018106995, 0.025872959, 0.029297322, -9.5885544E-4, -0.007684432, 0.0161706, 0.00522487, 0.0041615516, -0.00345154, 0.0076436657, 0.020355932, -0.0037742723, -0.04258711, 0.005551, 0.012630734, -0.0029538523, 0.016211366, 0.008295925, -0.0037165203, 0.0033954862, -0.013996402, 0.005584972, -0.025152756, 0.0041207853, 0.026253445, -0.055985607, -0.0041683456, -0.012114361, 0.028726595, -0.016836448, 0.029025547, 0.009586856, 7.3124404E-4, -0.0064036935, 0.027313367, -0.022136057, -0.012182305, 0.0070117894, -0.008241571, -0.014974791, -0.0010616203, -0.027028002, 0.0074330405, 0.0048172083, 0.0010132104, -0.008180421, -0.009233548, -2.7326104E-4, 0.0021198434, -0.015396042, 0.021116901, 0.02834611, 0.0029198804, -0.006206657, 0.011625166, -0.0045828023, -0.002700762, 0.010606011, 0.0091859875, -0.009566473, 0.016768504, 0.007820319, 0.006447857, -0.008187216, 0.013690655, -0.00474247, -0.021932226, -0.005805789, -0.023454163, -0.008982156, -0.0010684147, -0.023100857, -0.034759995, -0.013480029, -0.0070049954, -0.0101236105, -0.00404265, 0.005299608, -0.0021385278, 0.007534956, 0.016347254, -0.0024357815, -0.014145877, -0.0076368717, 0.004650746, -0.011930913, 0.0034855118, 0.013446057, 0.016741326, -0.027707439, 0.0171354, 0.0029623453, -0.0024697534, -1.5191786E-4, 0.0034158693, -0.019594962, 0.019594962, -0.02383465, 9.0534973E-4, 0.011231093, -0.013867308, 0.028210223, -0.008336691, 0.009695565, 0.008465785, -0.007854291, -0.0101236105, 0.0014624881, -0.016116245, 0.016985925, 0.022693194, 0.020192867, 0.022122467, -0.00679437, -0.013534385, 0.007881469, -0.004745867, -0.022353476, 4.6286645E-4, -0.0025410943, -9.902794E-4, 0.029541919, 0.0089549795, 0.016673382, -0.0043449993, 0.004334808, 0.016102657, 0.003271489, 0.008968568, -0.0034141708, -0.0055645886, -0.030900793, -0.0060707694, -0.02986805, 0.004314425, -0.014254588, 0.021633273, -0.009308286, -0.0110544395, -0.005999428, 0.00786788, 0.029161435, -0.010639983, 0.0016595247, -0.02598167, 0.0143089425, 0.0011312625, -0.0023440574, 0.015097089, 0.008581289, -0.027231833, 0.01422741, 0.013425674, -0.022951381, -0.021646861, -0.025016868, -0.0055645886, 0.008289131, 0.0066448934, 0.010714721, -0.009457762, -7.915441E-4, 0.015069912, -0.005788803, 0.049000993, -0.0063833105, 0.004796825, 0.027299777, 0.017665362, 0.010680749, 4.7687982E-4, -0.014050757, 0.024432553, 0.021415854, -0.0055204253, 0.031580232, -0.008139655, 0.013439263, -0.012202688, -0.0032765847, 0.008003768, -0.026892114, 0.0049938615, 0.0067060427, 0.027856916, 0.026253445, 0.012182305, -0.035928626, 0.021701217, 0.0025835591, 0.019173712, -0.0068657105, -0.01562705, -0.011577606, 0.0052282675, -0.026321389, -0.003492306, -0.007331125, 0.0037165203, 0.0029929199, -0.0039033655, -0.007242798, -0.017121812, 0.0022727167, -0.0050652027, 0.013065573, -0.002637914, -0.036037337, 0.024717918, 0.027394898, -0.011163149, -0.02682417, 0.001519391, -0.012800593, -0.0065497723, 4.0129246E-4, -5.040573E-4, 0.035303544, -0.0017351122, 0.01962214, -0.022040935, -0.0021164462, 0.02359005, -0.01949984, 0.009342258, 0.0017444544, -0.0066109216, 0.018738871, 8.289131E-4, 0.00345154, 0.013663477, 0.0062202453, 0.0036315906, -0.01121071, 0.005078791, -6.3272566E-4, 0.010694338, 0.002371235, -0.038727906, 0.015097089, -0.005921293, -0.014240999, -0.016673382, 1.7888301E-4, -0.004378971, -0.019132946, -0.020750005, -0.021837104, -0.022897026, -0.0011609879, 0.07365096, 0.04408187, -0.013459646, -0.0043416023, -0.0033224467, 0.008778325, -0.0076776375, -0.0026888717, -5.847404E-4, -0.02436461, 0.015545518, 0.012956863, 0.017977903, 1.4300024E-4, 0.02511199, -0.013160694, -7.236004E-4, -0.0059450734, 0.007833908, -0.018480685, -0.020682061, -0.011788231, 0.017121812, 0.028617885, 0.018684516, -0.0065769497, 0.0110476455, -0.004246481, 0.012236659, 0.010470124, -0.0064614457, 0.016211366, 0.008581289, 0.018725283, -2.9852762E-4, -0.01044974, 0.046419133, 0.016007535, 0.026606752, 0.013011218, -0.005992634, 0.015912414, 0.016306488, -0.02049182, 0.0037165203, -0.02619909, -0.0050550113, 0.022516541, 0.02598167, -0.043157835, 0.028944016, 0.0089549795, -0.016619029, -0.019160122, 0.02080436, -0.012732649, -0.009471351, -0.008513345, -0.03823871, 0.016985925, 0.0094237905, -0.049218412, 0.00533358, -0.009043306, -0.0025309026, -0.012032828, -0.011625166, -0.0019618743, -0.014743783, -0.0044231345, 0.0011822203, -0.023019325, -0.009260726, -8.8751454E-5, 0.0010709625, 0.009145222, 0.025641952, -0.0037606836, 0.004613377, 0.009763509, -0.026729051, -0.028019981, 0.02198658, -0.026457276, 0.015817292, 0.004684718, -0.002096063, 0.0051671183, -0.01778766, 0.012005651, 0.004246481, -0.0059314845, -0.012820976, -0.008853064, 0.04234251, 0.018562218, 0.017515885, 0.011869764, 0.005139941, -0.007222415, -0.0071001165, -0.03655371, -0.019241655, -0.016061889, -0.026022436, -0.007283564, -0.009770304, 0.015151445, -0.023005735, -0.027245423, -0.015640639, -0.009226754, 0.007793142, -0.0056257383, 0.0029793312, 0.005204487, 0.015083501, 0.011081617, 0.004266864, 0.0075009842, -0.0035670442, -0.01736641, 0.014852492, 0.040494442, -0.007331125, 0.02166045, -0.010925346, -0.044897195, -0.0018701502, 0.031226924, -0.0055204253, 0.011822203, -0.028074335, -0.008452196, -0.008832681, -0.032096602, -0.005163721, 0.0075485446, -0.012787004, 0.0063697216, -0.015912414, 0.007242798, 0.009668388, 0.0094169965, 0.009192782, -0.028944016, 0.009926574, -0.009763509, 0.030357243, 0.030031115, -0.008921008, 0.022666017, -0.03652653, 0.0038184358, -0.016048301, -0.01939113, -0.027965626, -0.013316965, 0.031063858, 0.020695651, 0.039488878, 3.972583E-4, 0.027965626, 0.009491734, 0.020573352, 0.03601016, -0.018236088, 0.004246481, -0.026484452, 0.024201544, 0.024609206, 0.02306009, 2.197554E-4, 0.0013342444, 0.010069256, 0.011251477, 0.013711038, 0.013561562, 0.011414541, -0.014920436, -0.030003937, 0.017869193, -0.027734617, -0.006237231, -0.026960058, -0.015029145, 0.03859202, 0.0033835962, 1.15504285E-4, -0.0015584585, 0.014648661, -0.006631305, 0.019798793, -0.008778325, 0.024772272, -0.02629421, -0.0085677, -0.029487565, -0.014947614, -0.0087171765, -0.027313367, 0.017529475, -0.01341888, -0.013751804, -0.0021215419, 0.02943321, -0.0062779975, -0.02274755, 0.03201507, -0.009940163, -0.015749348, -0.03372725, 5.584123E-4, -0.040711865, -0.009321875, 0.0035126891, 0.0012068499, 0.013459646, -0.02652522, -0.03845613, 0.015260154, -0.008499756, 0.051908985, 0.019350365, 0.031444345, 0.032178134, 0.006155699, -0.009960546, 0.00878512, -0.008520139, -0.0054830564, 0.02219041, 0.026226267, -0.011822203, -0.011285448, 0.011339803, -0.015545518, -0.023970537, -0.029242966, 0.019214477, 0.012243454, 0.026729051, -0.027041592, -0.013697449, -0.03147152, 0.0068147527, -0.007113705, 0.0021232406, 0.015531929, -0.03459693, -0.020423876, -0.0013987909, -0.0060198116, -0.0020620911, 0.0016977431, -0.03264015, 0.025179934, -0.024228722, 0.010694338, -0.016659794, -0.0017478516, 0.041771784, -0.015097089, 0.016048301, 0.0108234305, 0.015694994, -0.011862969, 0.013126723, 0.018086612, 0.02705518, -0.016850038, 0.020505408, 0.0035942215, -0.011496074, 0.015640639, 0.011149561, -0.0070389668, -0.01670056, -0.025139168, -0.00786788, 0.021184845, 0.013547973, -0.0063493387, -0.0032562017, -0.008662822, -0.018874759, 0.013357731, -0.014580717, 0.012481257, -0.044571064, 0.010001312, 0.0010386893, 0.005235062, 0.0021538152, 0.00463376, 0.00867641, -0.018548628, 0.0017529473, -0.008499756, 0.016741326, -0.01746153, -0.021252789, -0.044897195, -0.027653085, -0.005938279, -0.006580347, 0.0028145676, -0.022204, 0.0018633559, -0.007854291, -0.0011448513, -0.0182225, 0.004076622, -0.007969796, 0.0057208594, 0.015491162, -0.020423876, -0.017515885, 0.0065124035, 0.043918807, -0.0073243305, -0.002829855, -0.009790687, 0.0049870675, 0.02274755, -0.028101513, 0.028536353, 0.011129177, -0.025139168, 0.0024578632, 0.020124923, 0.024187956, -3.9322415E-4, 0.004446915, -0.032748863, -0.011652344, -0.0119716795, 0.026756227, -0.012270631, 0.0046745264, 0.026851349, 0.025478886, 0.030003937, 0.015151445, -0.014920436, -0.03223249, 0.007949413, -0.0017665362, -0.037260324, -0.0070049954, 0.0035262778, 0.0067909723, 0.01422741, -0.013147105, -0.023100857, -0.0065735527, -0.021035368, -0.03288475, -0.02383465, 0.021782748, 0.03193354, -0.0057854056, -0.014648661, 0.017094634, 0.012454079, 0.010911758, -0.020763595, -0.01352759, 0.022095291, 0.006763795, 0.021198433, 0.010164377, -0.03601016, -0.0022149645, 0.004701704, 0.020940248, -5.4524816E-4, 0.02899837, -0.031308457, -0.020152101, -0.017108222, -0.0046609375, -0.005921293, -0.01250164, 0.031417165, -0.018086612, -0.0023984124, 6.671222E-4, 0.025737071, 0.0034821145, 4.2146325E-4, 0.020872304, -0.008662822, 0.00716806, -0.0037708753, -0.02469074, 0.011985268, -0.022244766, 0.03071055, 0.007854291, -0.009321875, 0.02296497, 0.032150958, 0.0013724627, -0.011530045, -0.003971309, 0.006858916, -2.0425573E-4, -0.00920637, 0.0036281934, 0.029895227, -0.032259665, 0.015694994, -0.020614117, 0.0065939357, -0.011564017, 0.0025818604, 0.010191554, 0.023562875, 0.0065463753, -0.056420445, -0.004681321, -0.0061998623, 0.012379342, -0.004080019, -0.0122094825, -0.033455476, -0.0014285162, -0.0017597417, -0.008058122, -0.017284876, -0.024976103, -5.516179E-4, -0.0015261853, -0.008418224, 0.019268833, 0.1906772, -0.003279982, 0.0019279023, 0.036499355, -6.1913696E-4, 0.025207112, 0.028264578, 0.02834611, -0.007534956, 0.011265065, -0.0052146786, 0.0069710235, 0.003346227, 0.0034957032, 0.004331411, 0.005031231, -0.017515885, -0.02383465, -0.021932226, -0.027435664, -0.0077048154, 0.007793142, -0.0046405545, -0.020736417, 0.0036315906, -8.169168E-5, 7.380384E-4, -0.0017223727, 0.014349708, -0.005618944, -0.018263265, -0.016985925, 0.014431241, 0.009016128, -0.016727738, -0.011203916, -0.0031644776, 0.008058122, 0.01626572, 0.006434268, -0.0020349137, -0.0022115672, 0.002649804, -0.0152329765, 0.009022923, 0.024867393, -0.017611006, -8.6118636E-4, -0.0182225, -0.010619599, -0.036336288, 0.0043585883, 0.03147152, 0.019024234, -0.0075621335, -0.003896571, 0.005680093, 0.009172399, -0.013840131, 0.009471351, 0.013452852, 0.032069426, -0.03340112, 0.02360364, -0.002333866, 0.0126647055, -0.02327751, -0.007861086, 0.019336777, -0.03859202, -3.2612975E-4, -0.028590707, -0.009532501, 0.009124839, -0.006559964, -0.0080309445, -0.003971309, 9.911287E-4, 0.0036349879, 0.009199576, -0.01962214, -0.013174282, 0.017611006, -0.012243454, -0.03071055, -0.017189756, 0.0080173565, -0.020736417, -0.010470124, -0.02049182, -0.016034713, -0.023426987, -0.017488707, 0.0055034393, -0.004946301, 0.017121812, 0.032612976, 0.010422563, -0.01498838, -0.012787004, -0.03652653, 0.022244766, 0.02058694, -0.0065463753, -0.010694338, -0.017882781, -7.0491584E-4, 0.013119928, 0.030520309, -0.0049870675, -0.0039101597, -0.016741326, 0.0040732245, -0.008941391, 0.01466225, 0.015545518, 0.019459074, -0.0023015926, 0.027761795, -0.008221188, -0.0018633559, -0.024473319, 0.00926752, -0.0042328923, 0.011502868, -0.0340262, -0.019649317, 0.008662822, 0.00335472, -0.032259665, 0.01757024, -0.025601186, 0.026389332, 0.007365097, 9.962245E-4, 0.010850608, 0.024962515, 0.0025037252, -0.012087184, 0.004080019, -0.010442946, -0.0067162346, 0.0021979786, 0.0025326014, 0.010089639, -0.021932226, 0.0039950893, -0.006892888, -0.0017495502, -0.023943359, -0.0072156205, 0.0038150386, 0.008581289, 0.014186644, 0.039597586, -0.014920436, -0.024772272, -0.050522935, -0.0171354, 0.033020638, -0.028726595, 0.025954492, 0.005812583, -0.0038184358, -0.025492474, -0.019119356, -0.17458813, 0.011557223, 0.014390475, -0.0345154, 0.014281765, 0.014716605, 0.024405375, 0.008757942, 0.0063391468, -0.012583173, 0.032748863, -4.8664672E-4, -0.023372632, 0.008778325, -8.722272E-4, 0.01811379, -0.012365753, 0.032123778, 0.02253013, -0.0041479627, 0.04891946, -0.009403408, -5.3319876E-5, -0.0013342444, -0.0027364325, 0.0040086783, 0.023617228, 0.018589396, 2.9088394E-4, -0.010381797, -0.042016383, -0.0101100225, 0.022339888, 0.0047084983, -0.005051614, 0.014893258, -0.013412085, -0.008594878, -0.008499756, 0.0035126891, 0.027992804, 0.010076051, 0.021198433, -0.001304519, 0.013133517, 0.012358959, 0.025478886, -0.014363297, 0.0018344799, -0.018371975, 0.0019652715, -0.03177047, 0.02134791, -0.0011558922, -0.002999714, 0.01994827, -0.009437379, 0.009491734, 0.01876605, 0.006964229, -0.005812583, -0.010531273, 0.015885236, -0.014594306, -0.005088983, -0.030438777, -0.014947614, 0.0015661023, -0.036445, 0.010381797, -0.024935337, 0.01626572, 0.006509006, -0.023019325, 0.00926752, 0.0010429358, -0.037423387, 0.007222415, 0.004460504, 0.027585141, -0.0018735474, 0.034624107, -0.0039237486, 0.02663393, 0.0018701502, -1.7569815E-4, 0.0034311567, -0.007317536, 0.0071408823, -0.01735282, 0.002833252, -0.014730194, -0.03731468, -0.0031746693, 0.007684432, 0.009192782, 0.0044197375, -0.0030676578, 0.019459074, -0.020301577, -0.008560906, -0.0033394326, -0.020926658, 0.014159466, 0.025791427, 0.018304031, 0.00819401, 0.02619909, 0.014635072, -0.008180421, -0.0027822943, -0.003509292, 0.014268177, 0.02089948, -0.008058122, 0.00850655, -0.018358387, -0.011285448, -0.009063689, 0.011998856, 0.054599553, -0.007113705, -0.0050821886, -0.01374501, -0.012039623, -0.021578917, -0.08767454, -4.4885304E-4, 0.018317621, 0.05207205, -0.01551834, 0.036037337, -0.012549201, 0.015830882, -0.0063255583, 0.034134913, 0.008662822, -0.02263884, 0.019662905, -0.018304031, 0.021864282, -0.0018463699, -0.013357731, -0.013276198, -0.01841274, 0.02382106, -0.019214477, -0.013432469, 0.0029436606, -0.0036859456, -0.019554196, 0.009858631, -0.029161435, 0.02089948, 0.012759826, 0.0023321675, 0.009797481, -0.023698762, 0.022258354, -0.03978783, -0.011727082, -0.017339231, -0.0145263625, -0.03750492, 0.0033054608, -0.049544543, 0.00705935, 0.027965626, -0.0053777434, -0.027231833, -0.0034005821, 0.0075961053, -0.025940903, 0.027123123, -0.021701217, -0.019445486, -0.0075757224, -0.016999513, -0.017733306, 0.002038311, 0.011781437, 0.01929601, 0.029134257, 0.003950926, -0.0012357259, -0.030927971, 0.003675754, -0.013215049, -0.019309599, 0.022040935, 0.024962515, 0.009912985, -0.0013393401, -0.017203344, 0.019282421, -0.018249677, -0.024921749, 0.010762282, -0.0304116, -0.0101236105, -0.029460387, 0.007242798, -0.017855603, -0.022204, 0.03546661, -0.032123778, 0.0035534552, -0.02888966, 0.01136698, -0.010626394, 0.01951343, 0.021918636, 0.029541919, 0.0070253783, -0.011468896, -0.03932581, -0.0051807067, 0.024079246, -0.006712837, 0.0037403004, -0.013758599, 0.01962214, -2.505424E-4, -0.0032001482, -0.0054524816, 0.01585806, -0.0074534235, -0.013534385, -0.07522726, 0.024704328, -0.009131633, 0.0064852256, -0.008642438, -0.015178622, 0.005805789, 0.006821547, -0.0013367923, 0.014961202, -0.0077999365, 0.02761232, 0.012970451, -0.0045929938, -0.016061889, 0.0056563127, -0.009505323, -0.0059144986, 0.008064916, 0.002451069, -0.031172568, 0.022231178, 0.019377543, 0.019214477, 0.0022370461, 0.030112647, -0.010714721, 0.010789459, -0.014132289, -0.020845126, 0.03514048, -0.005812583, 0.0054490846, -0.003621399, -0.0015898825, -0.020505408, -0.018439919, -0.0014353106, 0.009797481, 0.0064852256, -0.010966113, -0.043402433, 0.004117388, -0.025275055, -0.0011516457, -0.007895058, -0.019717261, 0.009946957, 0.0098722195, 0.014159466, 0.02458203, 2.4162477E-4, -0.012685088, -0.032422733, 0.026932882, -0.019486252, 0.06239949, -0.0059144986, -0.0105788335, -0.018127378, 0.038130004, 0.019567784, 0.01800508, -0.03891815, -0.0032748862, -0.013344142, 0.012787004, -0.017053869, -0.004029061, -0.03405338, -0.0071612657, -0.008764737, -6.751905E-4, 0.048158493, 0.0014055852, 0.01896988, 0.006743412, 0.009022923, -0.009960546, 0.011081617, 0.023236744, -0.00835028, -0.030167002, 0.024962515, 0.0013554768, 0.030629018, 0.008547317, 0.016061889, -0.0065735527, 0.0035976188, -0.019540608, 0.02060053, 0.011686316, -0.009634417, 0.020614117, 0.011020468, 0.006396899, -0.017108222, 0.0061455076, 0.016917981, -0.0033241455, -0.004429929, -0.013955635, -0.020355932, -0.025614774, -5.5628904E-4, -0.02997676, -0.014852492, 0.014798137, 0.024908159, 0.02285626, 0.0080309445, -0.015436808, 0.013051984, -0.044054694, 0.010218732, -0.026334977, -0.022367066, -0.011074822, 0.031118212, 0.010952524, 0.0018242883, 0.027653085, -0.0061624935, 0.042722996, 0.02306009, 0.016904391, -0.029677806, 0.010368208, 0.001800508, 0.0010777569, -0.00850655, -0.020451052, 0.0038082441, -0.020994602, 0.0060028257, 0.008513345, 0.026267033, -0.011924119, 0.07250951, 0.021796338, -0.006838533, 0.01094573, -0.013928458, 0.006695851, 0.010035284, 0.017121812, -0.0069200657, -0.01551834, 0.0110544395, -0.009756715, 0.020002624, -0.023698762, -0.013996402, -0.005330183, 0.008615261, 0.020532586, -0.005184104, -0.015409631, -0.012868536, -0.0191873, 0.027734617, -0.0069166683, -0.012820976, -0.0030659593, 0.038428955, -0.0064070905, -0.009029717, -0.03171612, -0.0023032913, -0.025737071, -0.0010692639, -0.0074330405, 0.020573352, -0.0016816065, -0.008336691, 0.011890147, 0.01638802, 0.008982156, -0.0010386893, 0.0152193885, -0.026919292, -0.023331866, 0.010408974, -0.0015372261, -0.004620171, -0.044190582, -0.020817949 ], + "id" : "8c93c386-09b1-47c7-82e1-ffcbec00c411", + "metadata" : { + "source" : "movies.csv" + } + }, + "f23aadc6-53e1-44ed-8793-cdba7e37091e" : { + "text" : "6,5426,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Frances McDormand-Sacha Baron Cohen-Andy Richter-Cedric the Entertainer-Jessica Chastain-Bryan Cranston-Martin Short-Paz Vega-Frank Welker-Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-Vinnie Jones-Steve Jones-Nick Fletcher-Danny Jacobs-Dan O'Connor-Eric Darnell-Stephen Kearin-Emily Nordwind-Asucena Jimenez,circus-lion-zoo-hippopotamus-giraffe-penguin-madagascar-friendship-cartoon-zebra-slapstick comedy-animal-lemur-talking animals,/cF3NBLvutUyhliNcnnhNdX4NI9U.jpg,/pGa4217asjzjepco86110xLWjE4.jpg,10527-953-57800-8355-46195-49444-10192-950-810-9502-49013-425-13053-22794-76492-809-15512-38055-49519-81188-41513\r\n297761,Suicide Squad,Action-Adventure-Fantasy,en,From DC Comics comes the Suicide Squad an antihero team of incarcerated supervillains who act as deniable assets for the United States government undertaking high-risk black ops missions in exchange for commuted prison sentences.,51.35,DC Entertainment-Dune Entertainment-Warner Bros. Pictures-Atlas Entertainment-DC Comics-DC Films-Lin Pictures,8/3/16,175000000,746846894,123,Released,Worst Heroes Ever,5.9,19723,Will Smith-Jared Leto-Margot Robbie-Joel Kinnaman-Viola Davis-Jai Courtney-Jay Hernandez-Adewale Akinnuoye-Agbaje-Cara Delevingne-Ike Barinholtz-Scott Eastwood-Adam Beach-Karen Fukuhara-Common-David Harbour-Jim Parrack-Alex Meraz-Corina Calderon-Ben Affleck-Ezra Miller-Robin Atkin Downes-Shailyn Pierre-Dixon-Matt Baram-Alain Chanoine-Ted Whittall-Michael Murray-Jaime FitzSimons-Christopher Dyson-Bambadjan Bamba-Robert B. Kennedy-Billy Otis-James McGowan-Derek Perks-Aidan Devine-Andrew Bee-Clive McLean-Frank J. Zupancic-Kent Sheridan-Roger Shank-Dwight Ireland-Amanda Brugel-Peter Tufford Kennedy-Rosemary De Los Santos-Kevin Hanchard-Joel Lacoursiere-Jameson Kraemer-Ho Chow-Birgitte Solem-Kevin Vance-Tyler Grey-Nathan Brown-Kenneth Choi-Nicolas Van Burek-Agueda Cardenas-Daniela Uruena-Nicolas Uruena-Ariane Bellamar-Murray Urquhart-Tim Ajro-Devlin Anderson-Briana Andrade-Gomes-Raffi Atamian-John Byers-Heather Byrne-Corey Chainey-Shak Chaudhry-James Chilli Chillingworth-Andrew Christie-Alex Chung-Gavin R. Downes-Reid Eastwood-Scott Edgecombe-Brendan Egan-Jeff Ellenberger-Tatyana Figueiredo-Gary 'Si-Jo' Foo-Tazito Garcia-Brianna Goldie-William Hainsworth-Shawn J.", + "embedding" : [ 0.0062051043, -0.015668226, 0.0017591268, -0.03374279, -0.028605666, 0.046315223, 0.004059003, -0.012518358, -0.006543073, -0.020359231, 0.02380651, 0.032742403, 0.020507937, -0.0012040132, 0.004268544, 0.018561238, 0.020021262, -0.007137898, 0.007671888, -0.024387818, 0.00743531, -6.045414E-4, -0.013897271, 0.01562767, 0.010152578, 0.021900369, 0.03017384, 0.0022829783, -0.01228854, -0.011578806, 0.011112409, -0.011261115, -0.0021089243, -0.028903078, -0.015884526, -0.005238514, 0.008151804, -0.008111248, 0.032093503, 0.0032005631, 0.0048735077, 0.0056069, -0.020494418, -0.0069046994, -0.0074217916, 0.0041705333, 0.018088082, -0.02102165, -0.015762858, 0.013748565, 0.0377173, 0.013775602, -0.0206972, -0.013653933, -0.0048464704, -0.00452878, -0.018290862, -0.008009857, 0.0079355035, 0.0030129903, 0.01218039, -0.021089243, -0.02717268, -0.006630945, -0.026348036, -0.012058721, -0.005586622, -0.019210137, 0.0049242033, 0.010916387, 0.026861748, 0.009071078, 0.015871007, -0.010990741, 0.021183874, -0.032769438, -0.026821192, 0.0030687554, -1.0846681E-4, -0.016628057, 0.015438408, -0.020305157, -0.014356908, 0.0181016, 0.0035520503, 0.0022441118, -0.01950755, 0.021805737, -0.022873718, 0.02187333, -0.004809294, 0.04601781, -0.007915226, 0.0023978876, 0.020102374, 0.018655868, -0.015424889, 0.0209135, -0.018980319, -0.04688301, 0.002930188, -0.008935891, 0.006380848, -0.014519133, 0.012619749, 0.004914064, -6.1299064E-4, -0.0030349584, 0.012572434, 0.0074555883, 0.013201055, -0.011139447, 0.010186375, -0.053101633, -0.016641576, -0.007982819, 0.032066464, -0.02111628, -0.019277731, -0.028227141, 0.034013163, 0.024793379, 0.0027459953, -0.035770603, 0.026307479, 0.02587488, -0.0068303463, -0.019980706, 0.008584403, 0.009875444, 0.02576673, -0.009037281, 0.025307093, 0.0020075338, -0.017952895, 0.0407455, -0.0181016, 0.0025685616, -0.019223657, -0.022441117, 0.0370684, 0.029065304, -0.022143705, -0.031498678, -0.024455411, 0.009253581, 0.016506389, -0.0023776095, 0.0090508, 0.010409434, 0.019129025, 0.026902305, 0.0075704977, 0.0133159645, -0.0031093115, 0.008679035, -0.011092131, 0.0025347648, -0.0018993837, -0.026645448, -0.010281006, -0.0052993484, 0.0072798445, -0.013140221, 0.003007921, 0.02371188, 0.018047526, -0.015181552, -0.008814222, 0.004214469, 0.0025888397, 0.021251468, -0.015533038, 0.025158387, -0.012754937, 0.018385494, -0.00387988, -0.010983981, -0.027132122, -0.0041739126, 0.002705439, 0.0017092765, 0.023130573, 0.041962188, -0.0070500257, 0.0048532295, 0.024793379, -0.032607216, 6.2143983E-4, -0.013910789, -0.001013061, 0.024942085, 0.01854772, -0.0202646, -0.6315958, -0.012619749, 0.0014389015, -0.0020193628, 0.030309027, 0.007854391, -0.017547332, -0.009422566, -0.03631135, -6.1932753E-4, -0.02844344, 0.021319062, 0.025266536, -0.00927386, -0.018709945, -0.016898433, 0.016438795, -0.026361555, 0.011457137, 0.016736208, -0.012998274, 0.011159725, 0.00981461, -8.246435E-4, 0.011795105, 0.012883365, -0.013174018, -0.028849004, 0.020359231, 4.8836466E-4, -0.02057553, 0.022265375, -0.0049647596, -0.010199893, 0.032499064, 8.8209816E-4, -0.014694877, 0.05699503, 0.022022037, 0.023495581, -0.019710332, 0.0022964969, 0.0024536524, 0.007888189, -0.014884139, 0.008746629, 0.0014642491, 0.017101213, -0.004302341, 0.0049478607, 0.0048768874, -0.0022356627, -0.00269361, -0.005532547, -0.010179616, -0.0035419115, 0.006282837, -0.043935925, 0.025158387, -0.0012868156, -0.0064720996, 0.008381622, -0.0050965673, 0.009780813, -0.0029470865, 0.039582886, -0.0045254, -0.0073339194, 0.01562767, -0.03222869, 0.006941876, 0.008293751, -0.030417178, -5.97782E-4, 0.012200668, 0.016749727, 0.011666678, -0.0107812, -0.016357683, 0.024806898, -0.009787572, -0.013674212, 0.0155465575, 0.014613764, 0.007854391, 0.007949023, -0.037311736, 0.004508502, 0.009510438, -0.0017489877, 0.013735046, 0.008469494, 0.0030907232, 0.014289314, -0.01497877, -0.016519908, -0.0029082203, 0.0043259985, 0.021927405, -0.0637544, -0.0073271603, -0.027605278, 0.03449984, -0.010929906, -0.0014938214, 0.008435697, -0.008368104, -0.012295299, 0.04228664, 4.0767467E-4, -0.019899594, -0.0050222143, -0.025253017, -0.006100334, -0.014694877, -0.026564335, 0.018223269, 0.026699523, -0.004082661, -0.0057082903, -0.001929801, 0.013640415, 0.011707234, -0.024158, 0.029660128, 0.040366974, -0.0064923777, -0.001703362, 0.013802639, 0.009665904, 0.0017540572, 4.6386197E-4, 0.023360392, -0.014045977, 0.0053973594, 0.0120046465, 0.015762858, -0.004934342, 0.016763244, -0.0014169335, -0.015303221, -0.00636057, -0.01422172, -0.014775989, -0.01746622, -0.020467382, -0.020467382, 0.009280619, -0.010389156, -0.007489385, -0.0127887335, 0.009111634, -0.0027493748, 0.022197781, -5.9989434E-5, -0.011720752, -0.034689102, -0.015208589, 0.01541137, -0.034607988, 0.014086533, 0.018453088, -0.011835662, -0.022792606, 0.01629009, 0.0013290617, -0.014424502, 2.2643899E-4, -0.011308431, -0.0019365604, 0.008496531, -0.020007744, 0.012099277, 0.007834113, -0.01669565, 0.0187505, -0.0075096632, 0.021237949, 0.013011793, -1.9559935E-4, 0.009314416, -0.008956169, -0.022400562, -0.028794928, 0.037149515, 0.024279667, 0.018642351, 0.007820594, -0.02102165, 0.004765358, -0.015533038, -0.005089808, -0.014045977, -0.012308818, -0.0047450797, 0.020737756, -0.0019872556, -0.0042313673, -1.487062E-4, -0.003731174, 0.039528813, 0.016087307, 0.009361732, -0.0027121983, 0.0181016, -0.033472415, 0.0011245906, -0.026131736, 0.009152191, 0.0058975527, 0.025847841, -0.008814222, -0.014830064, 0.01218039, 0.006282837, 0.026564335, -0.019804962, 0.0046301703, -0.0062997355, 0.0045254, 0.0016306987, -0.018588275, 0.017222881, 0.02037275, -0.014857101, 0.023725398, 0.008570884, -0.0062693185, 0.004109699, 0.003609505, -0.0076786475, 0.007563738, 0.0015267733, 0.010308044, -0.005309487, -0.018507162, 0.009861925, -0.0110245375, 0.03998845, -0.010848793, -0.0055494453, 0.020562012, 0.017141769, 0.008314028, 0.01681732, -0.013032071, 0.005431156, 0.022022037, -0.01055814, 0.050830483, -0.02488801, 0.02133258, 0.0013130081, 0.021062206, 0.010139059, -0.0025854602, -0.0036128848, 0.008293751, 0.030471252, 0.015438408, 0.0056001404, -0.028578628, 0.03479725, 0.01326189, 0.0073677166, -0.012660305, -0.023738917, 0.006012462, 0.004353036, -0.028632704, -0.025253017, -0.0093820095, -0.013343002, 0.017628444, 0.0018875549, -0.018507162, -0.020021262, 0.020967575, -8.29713E-4, 0.01293068, 0.010862312, -0.030227916, 0.019129025, 0.03363464, -0.015816933, -0.013822918, -0.003427002, -0.016898433, -0.040934764, -0.008307269, -0.019345324, 0.031552754, -0.016263051, 0.019818481, 0.0022018657, -0.0046943845, 0.013613377, -0.009584791, 0.016668614, 0.020399787, -0.0021258227, 0.01326189, 0.0015174792, -0.013566061, 0.014803027, -0.01282929, -0.017952895, -0.01012554, -0.00916571, -0.0029791936, 0.0054818513, 0.011801865, -0.0448552, 0.011565287, -0.007901707, -0.013309205, -0.019358844, 7.2821684E-5, 0.009652385, -0.026118217, -0.030038653, -0.042719238, -0.029768279, -0.004991797, 0.073704205, 0.051100858, 0.013735046, 0.012227706, -0.015316739, 0.013065868, -0.0042617847, -0.012971236, -0.015059883, -0.026550816, 0.017385107, -0.017966414, 0.030011615, 0.007137898, 0.015587114, -0.014573208, -0.022076111, -0.008212638, 0.006715437, -0.0029842632, -0.01950755, -0.017885301, 0.006478859, 0.046152998, 0.010057947, -0.005035733, 0.013288927, 0.014519133, 0.0027290967, 0.0092671, -0.007164935, 0.011666678, 7.419468E-5, 0.010281006, 0.0012226016, 0.007840873, 0.026145255, 0.0065599713, 0.044909272, -0.0015276183, -0.0052993484, 0.011754549, 0.00980785, -0.00463355, 0.018061044, -0.020007744, -0.01303883, 0.022697974, 0.026821192, -0.02920049, 0.018939763, 0.007638091, -0.0047146627, -0.004535539, 0.0108285155, -0.013593099, -0.011457137, 0.0019010736, -0.024225593, -0.0036061255, -0.0049951766, -0.025239497, 0.009861925, -0.018628832, -0.008435697, 0.0015707093, -0.025928954, -0.0026885406, -0.017087694, -0.005914451, 0.0061983448, -0.021224432, -0.0035081145, -0.004031966, 0.009929519, -0.012552155, 0.033012778, -0.004910684, 5.128674E-4, -0.005110086, -0.021738144, -0.029714203, 0.015222108, -0.023792993, -0.01207224, 0.008706072, 0.007671888, 0.034121316, -0.028821966, 0.014775989, -0.014289314, 0.006641084, -0.016344164, -0.010842034, 0.02619933, 0.011693715, 0.012079, 0.016127864, 0.0022255236, 0.0026902305, 0.011727512, -0.029551977, 0.008496531, -0.021967962, -0.017439183, -0.025347648, 0.0046707266, 0.0038832596, -0.020954056, -0.032931663, -0.01811512, -0.021156836, -0.006215243, 0.0047450797, 0.028821966, -0.011193521, 0.007793557, 0.02844344, -0.020859424, 0.009287379, 0.0172364, -0.008719591, 0.008868298, 0.036068015, -0.01152473, 0.03666284, -0.0049478607, -0.02114332, -0.018439569, 0.022779087, 0.005407498, 0.022062592, -0.011267874, -0.0055122687, -0.0183179, -0.014586726, 0.009740257, 0.021467768, -0.017641963, 0.019061431, -0.027983803, 0.011240837, 0.013201055, -7.076219E-5, -0.014775989, -0.031228302, 0.0013814468, -0.01357282, 0.016452314, 0.022454636, -0.013018552, 0.012146593, -0.016411757, -0.005434536, -0.0060732965, -0.028037878, 1.8514345E-4, 0.006211864, 0.041989226, 0.026104698, 0.025996547, -0.005887414, 0.025536912, 0.013336243, 0.012626508, 0.02748361, -0.038068786, -0.014018939, -0.03028199, 0.01357282, 0.0064957575, 0.01045675, -3.307868E-4, 0.002953846, 0.02037275, 0.01930477, 0.013653933, 0.008428938, -0.00679317, -0.012525118, -0.012619749, 0.008077451, -0.022941312, 0.0022356627, -0.021224432, -0.02231945, 0.04042105, -0.0011448688, -0.009003485, -0.006086815, 0.021900369, -0.011274634, 0.016181938, -0.020832388, 0.01629009, -0.029011229, -0.017141769, -0.022224817, -0.011132687, 0.0015386023, -0.014302833, 0.03925844, 0.007982819, -0.011105649, -0.0034337614, 0.034283537, -0.009625347, -0.02176518, 0.029146416, -0.021305542, -0.010821756, -0.025847841, -0.012207427, -0.03785249, -0.012653546, -0.009652385, -0.015600633, 0.011119168, -0.002338743, -0.02974124, 0.0096997, -0.0078070755, 0.03741989, 0.022400562, 0.046991162, 0.02318465, 0.015478964, -0.014613764, 0.00420771, -0.009037281, 0.0030434076, 0.018020488, 0.03747396, -0.012342615, -0.010368878, 0.003815666, -0.0028710435, -0.032715365, -0.039150286, 0.0155465575, 0.024942085, 0.02715916, -0.02660489, -0.0030315788, -0.02683471, -4.2436188E-4, -0.005627178, 7.718359E-4, 0.019047912, -0.028200103, -0.01949403, 7.5578236E-4, -0.0107812, 0.008057172, 0.011801865, -0.025307093, 7.088892E-4, -0.013964864, -9.961625E-4, -0.018034007, -7.2156306E-4, 0.03255314, -0.016411757, 0.016884914, 0.01703362, 0.01908847, 0.00743531, 0.003731174, 0.001692378, 0.031606827, -0.017966414, 0.012220946, -0.004968139, -0.005508889, 0.011254356, 0.010605456, -0.02230593, -0.012633268, -0.02488801, -8.5506064E-4, 0.031309415, 0.006607287, -0.006857384, 0.017101213, -0.0146272825, -0.00754346, 0.009138672, -0.010274246, 0.006962154, -0.03925844, 0.028470479, 1.8049638E-4, 0.0015386023, -0.015776377, -0.00538722, -0.006843865, 0.0032107022, 0.0059043122, -0.013897271, -5.7708146E-4, -0.022481674, -0.023468543, -0.04980306, -0.022765568, -0.0073541976, -0.013356521, -0.0042482656, -0.021156836, -0.010544621, -0.005647456, -3.4029217E-4, -0.0034084138, -0.0047281813, -0.010720366, 0.009956556, 0.012599471, 0.0037649707, -0.014600245, -4.315437E-4, 0.032039426, -0.012302059, -0.011220559, -0.011910015, -0.002274529, 0.027875654, -0.022224817, 0.017763631, 0.012160112, -0.015397851, -0.00830051, 0.0077800383, 0.027118605, 0.021062206, -0.014208201, -0.031525716, -0.0062220027, -0.016668614, 0.04388185, -0.0013932757, 0.014546171, 0.033823904, 0.013018552, 0.03860954, 0.016803801, 0.0020007743, -0.036554687, 0.009875444, 0.0031025521, -0.029984578, -4.925893E-4, -0.0017388486, 0.002058229, 0.005863756, -0.012511599, -0.02660489, -0.0065802494, -0.017114732, -0.017385107, -0.005488611, 0.016438795, 0.022819642, 0.0077732787, -0.012863087, 0.013248371, 0.0046707266, 0.0075840163, -0.02317113, -0.009260341, 0.013964864, 0.01984552, 0.031417564, 0.019034393, -0.012903643, 0.0047180424, 0.024631156, 0.0075772568, 0.021494806, 0.02748361, -0.019466994, -0.008422178, -0.01152473, 0.0060395, -0.008097729, -0.012058721, 0.019129025, -0.024806898, -0.012349375, 0.00851681, 0.003006231, 0.004981658, 0.013329484, 0.012356133, -0.015100439, 0.0029724343, -0.009882203, -0.015749339, 0.0025753211, -0.02920049, 0.009949797, 0.008719591, 0.008077451, 0.043665547, 0.012565674, -0.010064706, -4.841401E-4, 8.623481E-5, 0.026334517, -0.01293068, -0.002705439, 0.0032833654, 0.025347648, -0.02715916, 0.015046364, -0.02380651, 0.010909628, -0.019183101, 0.015911564, -0.005779264, 0.043151837, -0.005110086, -0.046071887, 0.0076245726, -0.010848793, 0.007016229, -0.006232142, 2.3953528E-4, -0.036825065, -0.0034202426, -0.0069891918, 0.00355543, -0.031120153, -0.03136349, -0.0029977818, -6.3242385E-4, -0.026050624, 0.009686181, 0.18893799, -0.014640802, 0.013207815, 0.041367363, 0.0075772568, 0.010544621, 0.020818869, 0.018169194, 0.017276958, 0.018196233, 0.0065261745, 0.0077732787, 2.0531596E-4, -0.0015504311, 0.023874106, -0.024293186, -0.02380651, -0.022927793, -0.012984755, -0.020751275, -0.006854004, 0.0012133074, -0.009253581, -0.009017004, -8.9223724E-4, 0.0067965495, -0.020183487, 0.0023691603, 0.02338743, 0.0057758843, -0.006188206, -0.021264987, 0.0038089065, 0.0034945959, -0.028605666, -0.0139783835, -0.013498467, 0.018399013, 0.0187505, 0.011484174, -0.004366555, -0.008097729, -0.013221334, -0.010835275, -0.011450377, 0.018034007, -0.020629605, 0.0046977643, -0.02825418, 0.013991902, -0.039934374, 0.006762753, 0.025239497, 0.03049829, 0.006154409, -0.01228178, 0.005887414, -0.011220559, -0.008165322, 1.3138531E-4, 0.02490153, 0.03263425, -0.014830064, 0.02317113, -0.002004154, 0.014492095, -0.032850552, -0.0017320893, 0.0027493748, -0.016087307, -0.015695265, -0.03363464, -0.020210525, -0.010220172, -0.011382784, -0.030011615, 0.0013273718, 0.014181164, 0.016979545, 0.03933955, -0.030065691, -0.005001936, 0.013099665, -0.0022931173, -0.008949409, -0.0063639497, 0.03847435, -0.014478576, -0.0058772746, -0.02080535, -0.011159725, -0.035094664, -0.0047146627, -0.0020937158, -0.0062760776, -0.008347825, 0.009550994, 0.011193521, -0.014465058, -0.016776763, -0.030092727, 0.034445763, 0.025550429, -0.011247597, -0.0204809, -0.023765955, -0.01660102, 0.017723076, 0.035202812, -0.0125318775, -0.031120153, -0.023874106, -0.011254356, -0.0036602004, 0.01562767, 0.024874492, 0.0062693185, -0.021319062, 0.041313287, -0.019331807, -0.010152578, -0.028389366, 0.014951733, 8.6857943E-4, -0.007063545, -0.04201626, -0.03258018, 0.0074555883, 0.0023624008, -0.022157224, 0.019453475, -0.010929906, 0.006583629, -0.004150255, -0.00603612, 0.0026108078, 0.015478964, 8.440767E-4, 0.013268649, -0.012964477, -0.012376412, -0.0028152787, 0.011044815, -1.4765005E-4, 0.008449216, -0.03263425, 0.011274634, -0.009679422, -0.011200281, -0.037203588, -0.025577467, 0.012376412, 0.023117056, 0.010760922, 0.042854425, -7.469107E-4, -0.013052349, -0.049532685, -0.017141769, 0.039366588, -0.014451539, 0.021900369, 0.021994999, -0.017479738, -0.023319837, -0.0060395, -0.1724992, 0.024212074, -0.0018199611, -0.025888398, 0.0037852488, -4.896321E-4, 0.029227529, 0.008246435, 0.008293751, -0.0101052625, 0.03028199, 0.017696038, -0.040556237, -0.014397464, 0.0033661677, 0.023617249, -5.3948245E-4, 0.020845907, 0.02898419, -8.394296E-4, 0.038312126, -0.0011786657, -0.008868298, -0.008543847, 5.411723E-4, 0.011328709, 0.026915822, 0.0022981868, 6.974828E-4, -0.015330258, -0.037771374, -0.003981271, 0.006583629, -6.814293E-4, -0.025915436, 0.008205879, -0.012538637, -0.016425276, -0.0074826255, -0.0032799856, 0.03406724, 0.0074082725, 0.016641576, 0.005154022, 0.021075724, 0.011294912, 0.030957928, -0.016993063, 0.011240837, -0.022211298, -0.004934342, -0.041313287, 0.018182714, -0.010375638, 0.0091251535, 0.021778699, 0.0039373348, -0.0014236929, 0.0015309979, -0.0055426857, -0.020764794, -0.018250307, 0.011517972, -0.011139447, -0.014694877, -0.023455024, -0.035013553, -0.001691533, -0.03674395, 0.0059009325, -0.020751275, 0.026212849, 0.007320401, -0.008428938, 0.016344164, -0.035824675, -0.04150255, 0.0068168277, -0.0145056145, 0.004711283, -0.006887801, 0.0392314, -0.0076042945, 0.008935891, -0.008699313, -0.0025026577, 0.010659531, -0.013194296, -0.0027088188, -0.0011237457, 0.0058806543, -0.01854772, -0.038555462, 0.0014955113, -0.0054480545, 0.0075029037, -0.010808237, 0.010010631, 0.008226157, -0.00905756, -0.0029927124, -0.017682519, -0.0111462055, 0.0146272825, 0.010504065, 0.01647935, 0.010531103, 0.023765955, 0.022873718, 0.0048667486, 0.008232916, 0.010625734, 0.012809011, 0.010463509, -0.006810068, 0.0036061255, -0.01541137, -0.025185423, -2.940327E-4, 0.0038393238, 0.061483257, 0.0037210349, -0.007705685, -0.009618588, 0.0011592325, -0.013626896, -0.09111635, 0.0015250836, 0.0074015134, 0.05959063, -0.021711105, 0.028903078, -0.0028541451, 0.028713817, -0.030038653, 0.030525329, 0.012680584, -0.035283927, 0.020737756, -0.0046605878, 0.009415806, 0.0061780666, -0.028200103, 1.0788593E-4, -0.011984368, 0.02371188, 0.006519415, -0.008036895, -2.2960745E-4, -0.018561238, -0.024860973, 0.019994225, -0.010639253, 0.033688713, 0.003835944, 0.0050255936, 0.010551381, -0.02522598, 0.01055814, -0.04301665, -0.027078047, -0.017060658, -0.00851681, -0.036608763, 0.010233691, -0.047369685, 0.0071852133, 0.013633655, 0.0051438827, -0.03441873, -0.012599471, -0.010091743, -0.02771343, 0.028903078, -0.0053263856, -0.005684633, -0.011038056, -0.017209364, -0.039474737, -9.877133E-4, -0.0017506776, 0.023373911, 0.035743564, 0.020453863, -0.009530716, -0.030984966, -0.0052249953, -0.0031667661, -0.01833142, 0.03633839, -0.0011820453, 0.022738531, -0.017966414, 0.005218236, 0.02167055, -0.020629605, -0.021792218, 0.029497903, -0.043719623, -0.0024232352, -0.015370814, 0.018250307, -0.02340095, -0.016560463, 0.02436078, -0.02941679, 0.0024063368, -0.035608377, -0.001465094, -0.022738531, 0.012545396, 0.006962154, 0.021264987, 0.002791621, -0.0071716947, -0.041421436, -0.0036703395, 0.026348036, -0.006438303, 0.0019247314, -3.3036436E-4, 0.007516423, 0.019994225, -0.0033002638, 0.0035250129, 0.009037281, -0.015384332, -0.0053703217, -0.07078415, 0.024604117, -0.031309415, -0.0016070409, -0.0114301, -0.0021731383, -0.0045659565, 0.0060023232, 1.4627706E-4, 0.014005421, -0.015046364, 0.0183179, -2.7628936E-4, -0.0016991374, -0.0048904065, 0.012991515, 0.019385882, -0.008861538, 0.002717268, -0.004978278, -0.0104973065, 0.0059482483, 0.030795703, 7.245203E-4, 0.006161168, 0.017898818, -0.007928744, 0.01207224, -0.03093089, 0.0045625768, 0.027334904, -0.009963316, -0.008949409, 0.0017126561, -2.7333215E-4, -0.03103904, -0.009131913, 0.0018030627, 0.0018030627, -0.0106324935, -0.018412532, -0.020318676, 6.349586E-4, -0.021940924, -0.007766519, 0.0023759196, -0.020467382, 0.02469875, 0.0074285506, 0.009436085, 0.013924308, -4.968139E-4, -0.0043395176, -4.5256114E-5, 0.017601406, -0.001789544, 0.038447313, 0.010801478, 0.013964864, -0.0084019005, 0.009916, 0.0062895967, 0.03363464, -0.020832388, -0.0054041184, -0.0063977465, 0.002112304, -0.02230593, 0.003050167, -0.03168794, -0.014613764, -0.008496531, 0.010821756, 0.032769438, 0.011261115, 0.016776763, 0.007840873, 0.008205879, -0.017114732, 0.01908847, 0.015762858, 0.0039609927, -0.018777538, 0.020507937, -0.007415032, 0.01519507, 0.0021410314, 0.004437528, 0.009395529, -0.019007357, -0.029281603, 0.009422566, 0.015073402, 0.017682519, 0.013613377, 0.030606441, -0.023265762, -0.0034455904, 0.011761309, 0.026780635, -0.0016788592, -0.012694103, -0.0034776973, -0.0010519275, -0.01057166, -0.0026023586, -0.008935891, -0.019061431, 0.013133462, 0.016033232, 0.025131349, 0.006810068, -0.019953668, 0.010760922, -0.026483223, 0.015560077, -0.003428692, -0.0103486, -0.0035148738, 0.020507937, 0.017398626, 1.6592148E-4, 0.03974511, 0.009523956, 0.058346905, 0.010335081, 0.00830051, -0.034526877, 0.0025465938, -0.001465939, -0.0023083258, -0.008719591, -0.025063755, 0.01746622, -0.005911072, 0.018142156, 0.006833726, 0.033066854, -0.023225205, 0.076407954, 0.0012487941, -6.2904414E-4, 0.020453863, -0.0096388655, 0.0073001226, 0.01001739, 0.032363877, -0.011457137, -0.0032259107, 0.0065261745, -0.0053162468, 0.0088547785, -0.030471252, 0.011234078, 0.004440908, 0.014073014, 0.018642351, -0.006512656, -0.021751663, 0.0020075338, -0.0031397287, 0.027929729, -0.0023539516, -0.008787185, -0.018601794, 0.0093820095, -0.010003872, -3.0058087E-4, -0.021846293, 0.0033999647, -0.013065868, -0.012964477, 0.0017878541, 0.027983803, -0.02263038, -0.008888575, 0.0069283573, 0.013640415, 0.009652385, -0.026496742, -0.003332371, -0.029551977, -0.01163964, 0.03298574, -0.0033340608, -0.0074015134, -0.030606441, -0.017222881 ], + "id" : "f23aadc6-53e1-44ed-8793-cdba7e37091e", + "metadata" : { + "source" : "movies.csv" + } + }, + "b8f2b0a5-73cf-4b63-ad12-ef3ca2abbd85" : { + "text" : "Byrne-Kenneth Choi-Brian Sacca-Henry Zebrowski-Ethan Suplee-Barry Rothbart-Jake Hoffman-Mackenzie Meehan-Bo Dietl-Jon Spinogatti-Aya Cash-Rizwan Manji-Stephanie Kurtzuba-J. C. MacKenzie-Ashlie Atkinson-Thomas Middleditch-Jon Bernthal-Stephen Kunken-Ted Griffin-Sandra Nelson-Dan Bittner-Spike Jonze-Edward Herrmann-Jordan Belfort-Fran Lebowitz-Robert Clohessy-Welker White-Danny Flaherty-Carla Corvo-Madison McKinley-Aaron Lazar-Steve Routman-Steve Witting-Charley Morgan-Michael Nathanson-Kathleen Fellegara-John Behlmann-Ward Horton-Bret Shuford-J.T. O'Connor-Steven Boyer-Danny A. Abeckaser-Matthew Rauch-Michael Izquierdo-Donnie Keshawarz-Johnathan Tchaikovsky-Aaron Glaser-Ben Rameaka-Brian Charles Johnson-Sebastian Tillinger-Chris Riggi-Meghan Rafferty-Jos�� Ram�_n Rosario-Davram Stiefler-Dan Daily-Ben Van Bergen-Matte Osian-Michael Devine-Jason Furlani-Jeremy Bobb-Tom Greer-Sharon Jones-Emily Tremaine-Zineb Oukach-Giselle Eisenberg-Deema Aitken-Ashley Springer-R��my Bennett-Catherine Curtin-Paul Urcioli-Michael O'Hara-Michael Bryan French-Armen Garo-Garry Pastore-Louis Vanaria-Peter Youngblood Hills-Brendan Griffin-Derek Milman-Victor Verhaeghe-Chris Caldovino-Fileena Bahris-Silvia Kal-Kamron Leal-Tommy Bayiokos-Gianni Biasetti Jr.-Rick Bolander-Spenser Granese-Julian Brand-Kenneth Carrella-Austin Farwell-Zach Miko-Tyler Evan Rowe-Stefano Villabona-Gregory Brown-Tucker Bryan-Michael Jefferson-Bryan Burton-Mike Catapano-Steven Conroy-Kelsey Deanne-Maria Di Angelis-London Hall-Rosemary Howard-Chris Kerson-Natasha Kojic-Ben Leasure-Paul Jude Letersky-Will MacAdam-Jeff Moffitt-Chris Nunez-Seregon O'Dassey-Joseph Oliveira-Michael Power-Nicole Rutigliano-Sibyl Santiago-Vitaliy Shtabnoy-Madeleine Wade-Blago Simon-Jaclyn Keys-Natalie Bensel-Krista Ashworth-Paul Thornton-David Wenzel-Joe Zaso-Claudette Lal�_-Francis Brooke-Martin Klebba-Michael Dubuc,corruption-drug addiction-anti hero-con man-fraud-wall street-rise and fall-based on true story-con artist-stockbroker-wealthy-drugs-stripping-hedonism-decadence-corrupt-1980s-sharemarket fraud-financial market-black monday,/pWHf4khOloNVfCxscsXFj3jj6gP.jpg,/7Nwnmyzrtd0FkcRyPqmdzTPppQa.jpg,11324-68718-16869-1422-640-281957-27205-64682-550-680-157336-597-13-769-103-205596-500-37165-807-24-49047\r\n1452,Superman Returns,Science Fiction-Action-Adventure,en,Superman returns to discover his 5-year absence has allowed Lex Luthor to walk free and that those he was closest to felt abandoned and have moved on.", + "embedding" : [ 0.021914646, -0.03778293, -0.008057257, -0.039533913, -0.03187336, 0.03597723, -0.0030180516, 0.004876761, -0.033925295, -0.032146953, 0.027003441, 0.030642202, 0.017865498, 0.013460682, 0.0048117833, -2.7145367E-4, 0.015731487, -0.028002048, 0.0037242586, -0.029657274, -0.0061831586, -0.0023255243, -0.027277032, 0.006593545, 0.018043332, 0.026168987, 0.024691595, -0.008556562, -0.004278281, -0.0064909486, 0.013323886, 0.0024640297, -0.011340351, -0.009397854, -0.03373378, 0.009274738, -3.5524092E-4, -0.021572657, 0.031216742, -0.009315777, 0.008023059, 0.0066174846, -0.013604317, -0.006696142, -0.01533478, 0.003652441, 0.012865621, -0.020943398, -0.005793291, 0.02551237, 0.03346019, 0.03261206, -0.015430537, -0.013720593, 0.0017680824, -0.010321224, -0.005252949, 0.0046476284, -0.0012499692, -0.0017056694, 0.026196346, -0.026100589, -0.035402685, -0.0036250819, -0.010382782, -0.015102228, -0.012817742, -0.009787722, -0.0070996885, 0.0032129853, 0.016675377, 0.024021298, 0.0077289483, 0.0031736565, 0.010040793, -0.032666776, -0.018768348, -0.006815838, -7.6947494E-5, 3.8024885E-4, 0.008200893, -0.0055949376, -0.011251434, -0.0060053244, 0.004203043, -0.0022519967, 0.006846617, 0.028289318, -0.03159977, 0.015115907, 0.005311087, 0.03220167, 0.009760362, 0.0069423737, -0.004114126, 0.03688008, -0.032365825, 0.020888679, -0.012680947, -0.034280963, 0.006884236, -0.013884747, -0.003442118, -0.020081585, -0.0042235623, -0.0038610543, 4.699675E-5, -0.0025666263, 0.020998117, 0.0051845512, 0.0066790422, 0.012981897, 0.016907929, -0.03923296, 0.0043364186, -0.019233454, 0.027673738, -0.014267775, -0.0062447167, -0.03835747, 0.017851818, 0.019780636, 0.0023084248, -0.035211172, 0.03006766, 0.025868038, -0.012680947, -0.014555045, 6.630309E-4, -0.0017142191, 0.04024525, -6.514888E-4, 0.02826196, 0.012503113, -0.004083347, 0.04060092, -0.020601409, 0.0032317948, -0.019397607, -0.023419397, 0.035949867, 0.020355176, -0.01901458, -0.011340351, -0.0337885, -0.011935411, 0.019082978, -0.0012251751, 0.028316677, 8.194908E-4, 0.031353537, 0.010683732, 0.009110583, 0.0026504137, 0.008809633, 0.010519577, -0.011914892, -0.0059950645, -7.9726154E-4, -0.017044725, -0.009999754, -0.005136673, 0.0036729602, -0.012680947, -0.0014500328, 0.015102228, 0.030313892, -0.010813688, -0.005400004, -0.007003932, -0.0045792307, 0.021682093, -0.035758354, 2.8598818E-4, -0.012920339, 0.006723501, 0.01782446, -0.0154031785, -0.04139433, -0.0282346, 0.002270806, 0.0055060205, 0.042105667, 0.032666776, 0.014322493, 0.015717808, 0.025238778, -0.02731807, 0.009425213, -0.012393676, -0.010724771, 0.016990006, 0.012386836, -0.0046202694, -0.63429356, -0.027961008, -0.022311352, -0.013330726, 0.020792922, 0.012167963, -0.004162004, 0.0059027276, -0.027413826, -0.004278281, -0.031216742, 0.007270683, 0.020382537, -0.021230668, -0.009172142, -0.014541366, -0.0054513025, -0.01194909, 0.027263353, 0.008371887, -0.034198884, 0.02266702, 0.0017629525, 0.0055436394, 0.0110941185, 0.017646626, 0.0048630815, -0.019520724, 0.007640031, -0.0024486403, -0.02674353, 0.016757455, 0.00889171, 0.004934899, 0.038494267, 0.0032010158, -0.024007618, 0.030204456, 0.03190072, 0.026620412, -0.019876393, -0.006408871, 0.005400004, 0.018932503, -0.022776458, 0.025074624, 0.0044629546, 0.009117423, 0.008153015, -0.003833695, -4.2983724E-4, -0.0026504137, -0.013310206, -0.008118816, 0.009185821, 0.015622051, 0.015156946, -0.028562909, 0.007400639, 0.00214598, -0.007763147, 0.03097051, -8.1179605E-4, 0.0027837893, 0.010184428, 0.027112877, 0.006785059, -0.011141997, 0.005974545, -0.03649705, 0.01043066, 0.012667268, -0.005164032, 0.004120966, 0.007031291, 0.015608371, 0.01901458, 0.008139335, 0.0051811314, 0.012653587, -0.010841046, -0.0037960764, 8.823312E-4, 7.3784095E-4, 0.026004832, -0.012058527, -0.04667464, 0.008488163, 0.0027666898, 0.00767423, 0.021463221, 0.010382782, 0.0075579537, 0.0019202675, -0.010211787, 0.008433445, -0.00429196, 0.017892856, 0.027290711, -0.05925983, -0.01135403, -0.017961254, 0.027495904, -0.012366317, 0.0021237507, 0.0060019046, 0.0036627008, -0.014158338, 0.034581915, -0.027865252, -0.005393164, -0.006511468, -0.030778997, -8.5411716E-4, -0.016415466, -0.030833716, 0.014691841, 0.0011388229, -0.010321224, -0.01015023, -0.0024640297, 0.014404571, 0.004209883, -0.005037496, 0.00857708, 0.033952653, -0.0035088058, -0.008166694, 0.0031086786, 0.009917676, 0.00737328, -0.008795953, 0.018084371, -0.021654734, -0.0054547223, 7.9726154E-4, 0.016100835, -0.015074869, 0.0041859434, 0.00521875, -0.02701712, 0.00922002, -0.012954538, -0.01349488, -0.032420542, -0.008775434, -0.014254096, -0.012906659, -0.010245986, -0.008173534, -0.012229522, 0.014883355, -0.010594815, 0.02053301, 0.0037037393, -0.011648141, -0.029520478, -0.024664236, -1.253603E-4, -0.014185698, -0.002479419, 0.02611427, 2.1107125E-4, -0.035183813, 0.035457406, -0.0048665013, -9.1802634E-5, 0.010957323, 0.005410264, -0.022831175, 0.017140482, -0.011367709, 0.0020331237, -2.9950743E-5, -0.02149058, 0.029575197, -0.009945036, 0.020642448, -0.004777584, -0.006265236, 0.0060292636, -0.0041791038, -0.023392038, -0.005403424, 0.022366071, 0.018316923, 0.029547837, -0.022188237, 0.004883601, 0.008960108, -0.017373035, -0.019561762, 0.013782151, -0.019739596, 0.010800008, 0.041558485, 0.0060942415, 0.0025717563, -0.0036011427, -0.006200258, 0.037591416, 0.023460435, 0.0063746725, -8.6394936E-4, 0.024951506, -0.03340547, -7.0406956E-4, -0.024801033, -0.0069218543, 0.0034335682, 0.018782029, -0.004421916, -0.01807069, 0.014445609, 0.0026555434, 0.02023206, -0.018891465, 0.014267775, -0.01597772, 0.003525905, 0.0067747994, -0.017947575, 0.014048902, 0.015170625, -0.013932626, 0.015840923, 1.3519247E-4, -0.011531864, -0.002819698, -0.023309961, 0.0014902165, 0.009938196, 0.011545544, 0.0074485173, -0.0073185614, -0.013857389, 0.028316677, -0.0066380035, 0.025033584, -0.022242956, 2.8470572E-4, 0.022037761, 0.01379583, 0.004664728, 0.014938073, -0.014390891, 0.026059551, 0.015416858, -0.0037345183, 0.046701998, -0.018316923, 0.03567628, -0.0055812583, -0.005311087, 0.01503383, -0.026319463, -0.0033395211, 0.019780636, 0.019931111, 0.014541366, 1.966436E-4, -0.032010157, 0.027728457, 3.45195E-4, 0.017851818, 7.955516E-4, -0.011299312, 0.0059950645, -0.004534772, -0.026634092, -0.020341497, 0.0033549108, 1.7783421E-4, 0.009302097, 0.0075032357, -0.02422649, -0.0019322371, 0.011203555, -0.0027718197, 0.02428121, -0.0071338876, -0.031189384, 0.0133580845, 0.03466399, -0.008966948, -0.026839286, -0.008009379, -0.01905562, -0.028426114, -0.01413098, -0.011908052, 0.022803817, -0.017619265, 0.002428121, -0.011880693, 0.002484549, 0.014062582, -0.010225466, 0.017249918, 0.01963016, -0.007845225, 0.01722256, 0.0042851204, -0.0039157723, 0.034499835, -0.0053008273, -0.00798886, -0.0033634603, -0.0023272343, -0.030861074, 0.009343135, 0.012619389, -0.04552556, 0.0114019085, -0.009315777, -0.011306152, -0.0057351533, 0.008994307, -0.0068637165, -0.010957323, -0.022502868, -0.03343283, -0.02270806, 0.011436108, 0.08705668, 0.04935583, 0.002792339, 0.004203043, -0.0075374343, 0.012304759, -0.007838384, -0.014938073, 4.7707447E-4, -0.02243447, 0.03400737, -0.0023426237, 0.008433445, 0.00827613, 0.04081979, -0.0063370536, -0.006193418, -0.0060634622, 0.010560616, -0.017906537, -0.027386468, -0.0016364167, 0.017031046, 0.023364678, 6.02221E-5, -0.0154031785, 0.019233454, 0.012810903, 0.010841046, 0.0062857554, -0.0027102616, 0.011319831, 0.014295135, 0.021709453, -0.016470183, -0.002301585, 0.03252998, 0.021517938, 0.030861074, 0.008850671, 0.01656594, 0.008419766, 0.020314138, 0.0019989249, 0.00706549, -0.034280963, -0.016757455, 0.01534846, 0.034280963, -0.037974443, 0.010396461, -1.6468902E-4, -0.016716415, -0.0148423165, 0.035813075, -0.0020485132, 0.0011268533, -0.006261816, -0.031134665, 0.020314138, -0.0014012994, -0.032913007, 0.017523509, -0.014910714, 0.008871191, -0.013152892, -2.054605E-5, -0.0028709965, -0.013672714, 0.0030146318, 0.0120722065, -0.014541366, -0.003129198, -0.0035088058, 0.02424017, -0.0035840431, 0.027441187, -0.0127425045, -0.0017381584, 1.0783336E-4, -0.043665137, -0.04079243, 0.017236238, -0.010280185, -0.0026042452, 0.009774041, 0.0026179247, 0.023145806, -0.0040628277, 0.015581013, -0.012414196, 0.0023751126, -0.026251065, -0.0136111565, 0.038302753, -0.004982778, 0.008857511, 0.012858781, 0.0066106445, -0.010287025, 0.03069692, -0.02180521, -0.012838262, -0.008385567, -0.019424967, -0.012708306, -0.008830152, 0.008816473, -0.017140482, -0.011490826, -0.0010533257, -0.017892856, 6.2113727E-4, 0.0022212176, 0.010854727, -3.9521087E-4, 0.013939465, 0.0071954457, -0.01564941, -0.0020775823, -0.0013337565, -0.009233699, 0.01289298, 0.026387861, -0.015594692, 0.019862713, -0.0060292636, -0.029575197, 0.0048665013, 0.032010157, -0.015321101, 0.022612303, -0.029055374, -0.013310206, -0.008324008, -0.024623198, -0.004849402, 0.004384297, -0.0114566265, 0.004791264, -0.024076015, 6.0275535E-4, 0.009261059, -0.008166694, -0.007646871, -0.028125163, -0.01349488, -0.008953269, -0.0045005735, 0.0062241973, -0.019124016, 0.02239343, -0.025662843, 0.00337714, 0.0043466785, -0.039424475, -0.020450933, 7.186041E-4, 0.026004832, 0.010560616, 0.045498196, -0.0031120987, 0.019780636, 0.0056325565, 0.009261059, 0.015143267, -0.01901458, -0.014500327, -0.025881717, 0.015526294, 0.020054227, 0.005649656, 0.020026868, 0.009384174, 0.0080504175, 0.024992546, 0.0073254015, 0.015827244, -0.0013149471, -0.021613697, -0.016155554, 0.0024623198, -0.019315531, 0.0059403465, -0.026032193, -0.013282848, 0.02820724, -0.008351368, -0.025526049, -0.0148423165, 0.023583552, -0.008043578, 0.009343135, -0.003223245, 0.020888679, -0.021723133, -0.011634461, -0.018891465, -0.024048656, 0.0059677055, -0.009938196, 0.017619265, -0.0038302753, -0.008734396, -0.0053384462, 0.025019905, -0.02826196, -0.022475507, 0.028781783, 1.5998667E-4, -0.004086767, -0.030751638, 0.0070723295, -0.024431683, -0.016456503, -0.012421035, -0.01043066, 0.012667268, -0.021121232, -0.04692087, 0.022215595, -0.007284363, 0.032092236, 0.017974934, 0.039068807, 0.034937583, 8.011089E-4, 0.0019476266, 0.0079956995, 0.005177711, -0.017140482, 0.01748247, 0.025115661, -0.016935289, -0.0064533297, -0.0018039913, -0.003932872, -0.038795214, -0.021258028, 0.025731241, 0.032064874, 0.03720839, -0.016347067, -0.018617874, -0.017550869, 0.010936804, 0.002551237, -0.0015500645, -0.0010576005, -0.030204456, -0.0072638434, -0.0042988, -0.005153772, -0.0073459204, 0.012858781, -0.027523262, 0.0026521236, -0.0060190037, 0.012763024, -0.012598869, -0.009363655, 0.048097312, -0.008932749, 0.029657274, -1.13497554E-4, 0.02485575, -0.013125532, -0.009391014, -0.016128195, 0.024253849, -0.009657766, 0.018905144, -0.012051688, -0.014760239, 0.0177971, 0.026565695, -0.004852822, -0.013029776, -0.024459044, 0.0037550377, 0.024253849, 0.013871068, 0.0021664994, 0.009828759, -0.010403301, -0.0046818275, 0.010594815, -0.011511345, 0.025580766, -0.036305536, 0.01012287, -0.012838262, 0.017263597, 0.0018005713, 0.0033532009, -0.010512738, -0.014924394, 0.01349488, -0.009124262, -0.004226982, -0.015813565, -0.016032437, -0.039205603, -0.014035223, -0.005249529, -0.0059437663, 0.00306422, -0.005954026, 0.00889855, -0.007120208, -0.007332241, -0.02180521, 0.013228129, -0.013166571, -0.008652318, 0.011504505, -0.02240711, -0.018043332, -0.008672837, 0.018590514, -0.012667268, -0.003159977, -7.2031404E-4, 0.0043124794, 0.027263353, -0.0069423737, 0.013036615, -7.3420735E-5, -0.033897936, -0.0036285017, 0.015539974, 0.019766957, 0.031572413, -0.0071612466, -0.020149983, -0.007332241, -0.013399123, 0.028480832, -0.011169356, 0.015129587, 0.027673738, 0.027536944, 0.04443119, 0.023638269, -0.027495904, -0.02611427, 3.9820326E-4, -0.004391137, -0.028398754, 0.004534772, 0.008023059, 0.018604195, 0.0076879095, -0.0045518717, -0.045388762, -0.009473091, -0.020738205, -0.019999508, 0.004261181, 0.027249672, 0.033679064, 2.8668284E-5, -0.006207098, 0.010656373, -0.005177711, 0.0119627705, -0.01564941, 0.0075305947, 0.02976671, 0.03250262, 0.016087156, 0.030888434, -0.0232826, -0.0026829026, 0.010198108, 0.016634338, 0.0061523793, 0.028480832, -0.0051161535, -0.010163909, 0.006107921, 0.0042235623, 0.0018604194, -0.0147192, 0.0135154, -0.030642202, 0.012639908, 0.01871363, 0.013645356, -0.0051058936, 0.009794561, 0.0081051355, -0.013959985, -7.0107717E-4, 0.019493366, -0.024732634, 0.012790383, -0.02239343, 0.023692988, 0.016675377, 0.0019869553, 0.03622346, 0.025731241, -0.009931357, 0.012790383, -0.015197985, 0.015745167, -0.017414073, -0.005160612, -0.006990252, 0.02024574, -0.02916481, 0.013652195, -0.021928325, 0.01778342, -0.00398759, -0.006631164, 5.8522844E-4, 0.02859027, 0.010047632, -0.06287123, -0.012140605, -0.011846494, -0.0030248915, 4.0958508E-5, -0.0030573804, -0.023802424, -0.022967972, 0.0011824265, 0.004688667, -0.018057011, -0.015772525, -0.007817865, -0.007455357, -0.01844004, -0.004456115, 0.18133616, -0.013830029, -0.0034472477, 0.044567987, 0.0025837258, 0.0016560811, 0.02451376, 0.019575443, -0.017537188, 0.02176417, 0.003011212, 3.5801958E-4, -0.009391014, -0.0056325565, 0.016702736, -0.0038165958, -0.036715925, -0.021422181, -0.018604195, -0.012092726, 0.0010798299, 0.018576834, -0.00951413, -0.026428899, -0.005099054, -0.0078110257, -0.015430537, 0.008365047, 0.0313809, 0.01595036, -0.018631553, -0.007215965, 0.004982778, 0.0019390768, -0.023583552, 1.3348252E-4, -0.0028983555, 0.0039499714, 0.019753277, -0.0041585844, 0.012660428, 0.0129955765, -0.003043701, -0.0051708715, 5.0101365E-4, 0.0013217869, -0.03677064, -1.1798616E-4, -0.014076262, 0.0033925294, -0.049492627, 0.0067679593, 0.023747707, 0.03436304, -0.006268656, -0.0017159291, 0.0010362263, 0.014007864, 3.4690494E-4, -0.010163909, 0.013440162, 0.043117955, -0.025307175, 0.031763926, 0.0020963917, 0.005276888, -0.014527687, 0.0239529, 0.018617874, -0.024718955, -0.01593668, -0.022338713, -0.0011311282, 0.010478538, -0.020149983, -0.006408871, -0.0023255243, 0.0063165342, 0.00827613, 0.024965186, -0.01844004, -0.014390891, 0.0026487038, 8.2975044E-4, -0.01653858, -0.0103691025, 0.021600015, -0.008864352, -0.0077905064, -0.023446755, 0.0015526294, -0.024089696, -0.0027068418, 0.005276888, -0.0026504137, -0.0014440479, 0.028508192, 0.02332364, -0.0025939855, 0.008823313, -0.028289318, 0.034718707, 0.0177971, -0.008795953, -0.02053301, -0.03567628, 0.0024640297, 0.007120208, 0.01872731, -0.011422428, -0.014076262, -0.020081585, -0.004421916, -0.0075305947, 0.01473288, 0.022872215, 0.017277278, -0.013768472, 0.03871314, -0.010943644, 0.008310329, -0.013146052, 0.015485255, -8.994307E-4, 0.004969098, -0.025361894, -9.864241E-5, -8.1778085E-4, -0.0064635896, -0.03742726, 0.035047017, -0.01964384, 0.010663212, -0.0076537104, 0.003036861, -0.0049622585, 0.03034125, -5.680221E-5, 0.01935657, -0.004781004, -0.020136304, 0.00797518, -0.008159854, -0.00798202, -0.0060053244, -0.009979235, 0.004729706, 0.004534772, -0.0090285055, -0.017290957, -0.02512934, -5.450447E-4, 0.0022964552, 0.0071749263, 0.03343283, -0.01258519, -0.024431683, -0.041011304, -0.0069936723, 0.041613203, -0.03958863, 0.026716169, 0.02276278, -0.015280062, -0.037044235, -0.009760362, -0.1754266, 0.006538827, 0.012646748, -0.033843216, 0.01809805, 0.017290957, 0.0497115, -5.9677055E-4, 0.0025290076, -2.6143445E-5, 0.01748247, -0.0065490864, -0.044622704, -0.0036387614, 3.3001925E-4, 0.0065183076, -0.0155126145, 0.028344037, 0.026524656, -0.014445609, 0.040354684, -0.016620658, -0.026237385, 0.00984244, 0.0016962647, 0.0028008888, 0.030040301, 0.027536944, -0.008474484, -0.011682339, -0.0141720185, 0.0026794828, 0.011148836, -0.0073596, -0.0127425045, 0.0029137451, -0.015895642, -0.012571511, -0.013228129, -0.017523509, 0.037399903, 0.0036148222, 0.026798246, 0.0036045625, 0.015594692, 0.020875, 0.03466399, -0.011778097, -0.009999754, -0.0075305947, -0.014048902, -0.0399443, 0.016128195, -0.0037276784, 0.010375942, 0.0232826, -0.0014722621, 4.7963936E-4, 9.4474424E-5, 0.0038644741, -0.029028013, -0.009172142, 0.016907929, 6.506338E-4, -0.019493366, -0.014910714, -0.009541489, 0.008248772, -0.03742726, 0.015115907, -0.008645479, 0.010225466, 0.022543905, -0.0030830295, 0.0024024716, -0.019165056, -0.025826998, 0.009774041, -0.0058001312, 0.010389621, -0.023487795, 0.044622704, -0.001781762, 0.0014166888, 0.0038952532, 0.0028419273, 0.0051674517, -5.2067806E-4, 0.0016629208, -0.023884501, -0.023200525, -0.022872215, -0.03009502, -0.0010276765, 0.004233822, 7.2458887E-4, -0.0043227393, 0.014240416, 0.0070996885, -0.0020416735, 4.659598E-4, -0.005741993, -0.020943398, 0.020409895, 0.0294384, 0.008132495, -0.010594815, 0.03225639, 0.0061557996, 0.004203043, -0.023829784, -0.015622051, 0.020765563, 0.011080439, -0.01656594, 0.012291079, -0.02517038, -0.028891219, 0.005560739, 0.0214769, 0.053432338, -0.0073254015, 0.0040388885, -0.013535919, 0.0058822082, -0.0023221043, -0.08481324, -0.0019082979, -0.00184161, 0.03923296, -0.016524902, 0.04552556, -0.0071612466, 0.017072083, -0.020765563, 0.045908585, 0.010020274, -0.033542268, 0.013118693, -0.014021543, -4.9828846E-5, -0.0016620659, -0.017865498, -0.0019544663, -0.004209883, 0.021654734, -0.00950045, -0.013077654, -0.017537188, -0.024034977, -0.027728457, 0.011224074, -0.035840433, 0.024021298, 0.015827244, 0.007092849, 0.00826929, -0.0331866, 0.021914646, -0.02976671, 0.0017526929, -0.025813319, -0.016429145, -0.036114022, 0.007024451, -0.051380407, 0.0020844222, 0.021983044, 0.030833716, -0.026292104, -0.0069218543, -0.011607102, -0.042242464, 0.023227884, 0.00796834, -0.011559224, -0.0069594732, -0.01991743, -0.033843216, -0.009001147, 0.032721493, 0.017345674, 0.022885894, -0.0033685903, -0.028781783, -0.031216742, -0.0063165342, 0.005092214, -0.022352392, 0.0048733414, 0.005317927, 0.009384174, -0.010779489, -0.009910837, 0.02361091, -0.031216742, -0.016059797, 0.017687663, -0.037016872, -0.0048733414, -0.02607323, -0.0069560534, -0.0343904, -0.018604195, 0.025279816, -0.040026374, 0.004083347, -0.029848788, -0.0023819525, -0.018152768, 0.0061626392, 0.01045802, -3.7340907E-4, 0.018864105, -0.009986075, -0.03562156, 0.019766957, 0.0343904, 0.01474656, -0.0019236873, -0.0032745432, 0.014773918, 0.010334903, 0.0015782786, 5.05716E-4, 0.0013371764, -0.01716784, -0.0037208388, -0.07064122, 0.030423328, -0.011477146, -0.012858781, -0.010649533, -0.011162517, -0.014213057, -8.8575116E-4, -0.02366563, 0.028426114, -0.0010986392, 0.014240416, -0.006330214, -0.0014679872, -0.006682462, 6.006179E-4, 8.1478845E-4, -0.009124262, 0.01686689, 0.007284363, -0.01012971, 0.016784813, 0.037044235, -0.004148325, -0.006600385, 0.022475507, -0.0027205213, 0.011066759, -0.008132495, -0.023734028, 0.03159977, -0.016702736, 0.0046852473, 0.010943644, -0.0030556705, -0.022639662, -0.0041004466, 0.0023477536, 0.016442824, -5.0710536E-5, 1.6736079E-4, -0.014992791, -0.010813688, -9.3704945E-4, -0.014828637, 0.008960108, -0.032940365, 0.018002294, 0.01627867, 0.011395069, 0.014801278, 9.567138E-4, -0.00888487, -0.02272174, 0.020710845, -0.015676768, 0.03802916, 0.0061181807, -0.0011131738, -0.0035361648, 0.027003441, -0.00460317, 0.0263605, -0.020478293, 0.0018672592, 0.0018911983, -0.0028880958, -0.019178735, -0.00981508, -0.03165449, -0.019315531, -0.0014115591, 0.01660698, 0.036798, -0.0031702367, 0.021039154, -0.0033754301, 0.0074963956, -0.010854727, 0.0058480096, 0.0061455397, -0.016333388, -0.006025844, 0.027427506, 0.010902605, 0.01318025, 0.007838384, 0.011723378, 0.008481324, 0.00521875, 1.594523E-4, 0.008932749, 0.021326425, -0.007544274, 0.017550869, 0.011449787, -0.03154505, -0.014254096, -4.3924192E-5, 0.009541489, -0.009042186, -0.0019784055, -0.0062857554, -0.030286534, -0.033596985, 0.0010584556, -0.02058773, -0.03466399, 0.0060942415, 0.019698558, 0.032639418, 0.011613942, -0.024814712, 0.010772649, -0.037317824, 0.0026350243, -0.0040354687, -0.022311352, -0.0030864493, 0.041558485, 0.01809805, 0.009733003, 0.037646133, 0.0035464244, 0.048316184, 0.015854603, 0.0142267365, -0.018864105, -0.012188483, 0.00460659, -5.7657184E-5, -0.009281578, -0.017715022, 0.0036353415, -0.011853334, -1.9330386E-5, 0.0029308444, 0.033624344, -0.01845372, 0.06259764, 0.016374426, -0.010027113, 0.009343135, -0.0177971, 0.026469938, 0.01043066, 0.010758969, 0.0019476266, -0.009295257, -0.0037550377, -0.021654734, 0.003898673, -0.039971657, 0.0050545954, 0.008775434, 0.024705276, 0.016347067, -0.012523632, -0.014445609, -0.025485009, 0.005345286, 0.024814712, -0.015129587, 0.0056291367, 0.001781762, 0.021121232, -0.022448149, 0.011983289, -0.040436763, -0.0060361032, -0.022899574, 0.0011191586, -0.0029000656, 0.02886386, -0.0031411676, 0.0029855627, -0.0091995, 0.013747952, 0.010902605, -0.025991153, -0.0017903117, -0.012612549, -0.027058158, 0.021723133, -0.0023682727, -0.010163909, -0.03463663, -0.02116227 ], + "id" : "b8f2b0a5-73cf-4b63-ad12-ef3ca2abbd85", + "metadata" : { + "source" : "movies.csv" + } + }, + "d38d9008-6b66-44a8-b378-e4a7dc482950" : { + "text" : "656,9794,Sam Worthington-Zoe Salda��a-Sigourney Weaver-Stephen Lang-Kate Winslet-Cliff Curtis-Joel David Moore-CCH Pounder-Edie Falco-Jemaine Clement-Giovanni Ribisi-Britain Dalton-Jamie Flatters-Trinity Bliss-Jack Champion-Brendan Cowell-Bailey Bass-Filip Geljo-Duane Evans Jr.-Dileep Rao-Matt Gerald-Robert Okumu-Jennifer Stafford-Keston John-Kevin Dorman-Alicia Vela-Bailey-Sean Anthony Moran-Andrew Arrabito-Johnny Alexander-Kim Do-Victor T. Lopez-Maria Walker-Phil Brown-Jocelyn Christian-Joel Tobeck-Moana Ete-Phil Peleton-Jamie Landau-Jim Moore-Benjamin Hoetjes-Nikita Tu Bryant-Anthony Ahern-Shane Rangi-Rick Lucas-Tanya Drewery-Ava Diakhaby-Isaac Te Reina-Eric Farmer-Philip Mtambo-Daniel Lough-Cruz Moir-Alex Lucas-Scarlett Fernandez-Chloe Coleman-Jeremy Irwin-Jake McLean-CJ Jones-Adrien Antoine-Ingrid Donnadieu-Ninon Moreau-Sylvie Genty-Xavier Fagnon-Matt Mouredon-Julien Alluguette-Oscar Douieb-Anneliese Fromont-Mathieu Buscatto-Jaynelia Coadou-Marianne Leroux-Thi��ry Dub��-Laurent Maurel-Carmen Levrau-Pierre Boulanger-Patrick Mancini-Mich��le Bardollet-Luc Boulad-Boris Rehlinger-Alexandre Nguyen-Damien Witecka,loss of loved one-dying and death-alien life-form-resurrection-sequel-dysfunctional family-alien planet-distant future-adopted child-rebirth-family dynamics-adopted son-stronger villain-war,/t6HIqrRAclMCA60NsSmeqe9RmNV.jpg,/8rpDcsfLJypbO6vREc0547VKqEv.jpg,136283-823999-183392-1033219-111332-1064215-980078-676841-83121-874764-315162-594767-1007938-640146-762338-1109607-1109558-1109559-267805-965839\r\n597,Titanic,Drama-Romance,en,101-year-old Rose DeWitt Bukater tells the story of her life aboard the Titanic 84 years later. A young Rose boards the ship with her mother and fianc��. Meanwhile Jack Dawson and Fabrizio De Rossi win third-class tickets aboard the ship. Rose tells the whole story from Titanic's departure through to its death���on its first and last voyage���on April 15 1912.,167.631,Paramount-20th Century Fox-Lightstorm Entertainment,11/18/97,200000000,2187463944,194,Released,Nothing on Earth could come between them.,7.89,22529,Leonardo DiCaprio-Kate Winslet-Billy Zane-Kathy Bates-Frances Fisher-Gloria Stuart-Victor Garber-Bill Paxton-Bernard Hill-David Warner-Jonathan Hyde-Lewis Abernathy-Suzy Amis-Nicholas Cascone-Danny Nucci-Jason Barry-Lew Palter-Eric Braeden-Ewan Stewart-Bernard Fox-Ioan Gruffudd-Jonny Phillips-Edward Fletcher-Scott G. Anderson-Martin East-Gregory Cooke-Alexandrea Owens-Seth Adkins-Michael Ensign-Anatoly M.", + "embedding" : [ 0.013083919, -0.03756809, -0.017026, -0.040029354, -0.023125065, 0.036567356, -0.010325139, 0.004222691, -0.009392022, -0.03773037, 0.00472982, 0.043058604, 0.017675124, -0.008857847, 0.013117728, 0.014077892, 0.013144774, -0.022800503, 0.01367895, -0.038785197, 0.0036648496, -0.004963099, -0.003122222, 0.025221199, -4.8368715E-6, 0.0062545864, 0.025613377, -0.0030579858, 0.0069442815, -0.019365553, 0.0035600432, -0.014929867, -0.012914876, -0.042517666, -0.019487264, 0.0054938938, -0.0050171926, -0.031753015, 0.02463969, 0.002897395, 0.009743632, 0.016146977, -0.007011899, -0.00973687, -0.017161233, -0.0013210701, -0.0021671297, -0.004750105, -0.008607663, 0.029832687, 0.026952198, 0.018702904, -0.014091414, -0.021623965, -0.0030698187, -0.007573121, -0.020406857, 9.060698E-4, 0.0011393491, 0.023476675, 0.015322046, -0.019162701, -0.032321, -0.017377608, -0.024626167, -0.020961318, -0.011021595, -0.013969704, 0.004936052, 0.017675124, 0.022164902, 0.015633086, 0.015443757, 0.018702904, 0.016579727, -0.041895587, -0.03059, -0.0069172345, -0.013624856, 2.6877818E-4, 0.009966768, -0.003051224, -0.011055404, -0.008418336, 0.020758465, 0.018756999, -0.016917812, 0.022070238, -0.031185031, 0.00902689, 0.013705997, 0.024937205, -0.025883846, 0.014632352, 0.013023064, 0.010825506, -0.0011579437, 0.022462418, -0.01782388, -0.057447534, -0.0034789024, -0.0064912466, -0.0041483124, -0.017837405, 0.0011376586, -0.0034586173, -6.4489857E-4, -0.006531817, 0.025816228, 0.01210347, 0.0043815915, 0.004838007, 0.015998218, -0.02014991, 0.002136702, -0.013293532, 0.018270155, -0.011887096, -0.014443024, -0.022935739, 0.022489466, 0.008283101, 0.0072079883, -0.022300137, 0.03429542, 0.029805642, 0.0025812848, -0.016119929, 0.008499476, 0.012279275, 0.027303806, -0.0044052573, 0.022976309, 0.008979558, -0.01998763, 0.04146284, -0.028831953, 0.0080058705, -0.006812428, -0.011887096, 0.02317916, 0.03180711, -0.02486959, -0.013766852, -0.019757733, 0.006430391, 0.017553413, -0.0059266435, 0.01092017, -0.0014520783, 0.016079359, 0.033321735, 0.006957805, 0.021475207, 0.03110389, -0.0069307582, 0.0011325873, -0.0071200863, 0.0080599645, -0.019406123, -0.0044221617, -4.4923145E-4, -0.009567827, -0.0056866026, 0.0061599226, 0.019581927, 0.024747878, -0.025599854, -0.0072485586, -0.008986319, -0.013726282, 0.023977043, -0.030481812, 0.025545761, 0.011041881, 0.01655268, 0.010264284, -0.0027723033, -0.025897369, -0.014578258, -0.00607202, 0.018080827, 0.031428453, 0.0422472, -0.018364819, -0.004537111, 0.026113745, -0.011407014, 0.030130204, -0.002456193, -0.0029768453, 0.027533704, 0.016079359, 0.0028483726, -0.63744044, -0.029156515, 7.687225E-4, -0.0023784332, 0.009324405, 0.026816962, 0.014632352, -0.0053552785, -0.035215013, -0.007816543, -0.04013754, 0.024964252, 0.011373205, 0.0034721408, -0.023638956, -0.022421848, 0.0074716955, -0.019406123, 0.009763917, 1.7675546E-4, -0.030698188, 0.01597117, 0.018824615, -0.0027892075, 0.022678792, -7.0871226E-4, 0.004016459, -0.023868855, 0.0013413553, -0.0035634239, -0.012069662, 0.014510641, 0.0143618835, 0.010622655, 0.037541043, -0.008654996, -0.01040628, 0.042111963, 0.030995702, 0.02184034, -0.024450362, -0.0061666844, 0.015673656, -0.006176827, -0.015876507, 0.022611177, -0.0010413042, 0.017675124, 0.0038136074, 0.008283101, -0.0030343197, -0.004084076, -0.012657931, -0.008533285, -0.0071403715, -0.016823148, 0.020826083, -0.048224553, 0.019892966, 0.0040637907, -0.022800503, 0.01694486, 0.012529458, 0.013394958, -0.0012010497, 0.033213545, -0.011603103, -7.4167567E-4, 0.0108795995, -0.028750813, 0.014618828, 0.007809781, -0.0018493291, -0.004865054, 0.0068597603, 0.014294266, 0.028236924, 0.007038946, -0.001324451, 0.021813294, -0.009615159, -0.007904445, 0.012164325, 0.025194151, 0.020920748, -0.007099801, -0.029508125, 0.004222691, 0.02050152, -0.0015737893, 0.012448317, 0.035620715, 0.0028990854, 0.00954078, 9.3058107E-4, -0.0010810292, -0.005865788, -0.009351452, 0.025329385, -0.06794172, -0.007917969, -0.021651013, 0.036134608, -0.0050239544, 0.010994549, 0.0046993922, -0.019500786, -0.0067820004, 0.037027154, -0.0062173973, -0.00827634, 0.0048616733, -0.014280743, -0.016417444, -0.008418336, -0.016931335, 0.018635288, 0.023043925, -0.015416711, -0.015998218, 0.009831534, 0.0086482335, 3.5541266E-4, -0.024436839, 0.004638537, 0.0161605, -0.0073770313, 0.010615893, 0.009493448, 0.005034097, -8.0760237E-4, -0.0036918966, 0.0133611495, -0.017553413, 8.7817776E-4, 0.0032337904, 0.0056629367, -0.0047568665, 0.0226247, 7.7083556E-4, -0.008979558, 0.0033538109, -0.014997484, 0.0011063856, -0.011684244, -0.023409057, -0.026478877, -0.0056156046, -0.012056138, -0.023030402, -0.0014985652, 0.007836828, -0.0060246885, 0.007911207, -0.0023835045, 0.002932894, -0.02408523, -0.011400252, 0.0053755636, -0.030049063, 0.011691006, 0.008431859, -0.0035329962, -0.023720097, 0.023152113, -0.015416711, -0.016823148, -0.0055412254, 0.002921061, -0.009885628, 0.02534291, -0.010473897, 0.014402454, 0.0082560545, -0.0063864402, 0.030535907, -0.008046441, 0.025180629, 0.008181675, -0.008979558, 0.0034991875, -0.026154315, -0.017688647, -0.0136113325, 0.026465353, 0.007147133, 0.013699235, -0.0031864583, -0.018905755, 0.0076136915, -0.0054262765, -0.016998952, -2.3919568E-4, 8.7141606E-4, 0.0033926906, 0.018905755, -0.009682776, -0.009669253, 0.007025422, -0.0047399625, 0.05306594, 0.020217529, 0.013942657, -0.0034112853, 0.006697479, -0.008898417, 0.006646766, -0.020623231, 0.027587797, 0.006001022, 0.016092882, -0.009824772, -0.034349512, 0.006768477, 0.015754797, 0.031590734, 0.005027335, -0.0047332007, -0.0049292906, 0.008073488, 0.009236503, -0.0023682907, 0.008188437, 0.012975732, -0.032510325, 0.0024883111, 0.02684401, -0.025532236, 0.007742164, -0.0063019185, -0.01021019, -0.006629862, 0.0079653, 0.016769053, -0.00260157, -0.02042038, 0.021353496, -0.0050442396, 0.022367755, -0.028020548, -0.018080827, -0.009074222, 0.024463886, 2.7046862E-4, 0.007911207, -0.008411574, 0.017201804, 0.010311616, -0.030130204, 0.025099486, -7.619608E-4, 0.017539889, -0.012157564, 0.011325873, 6.4870203E-4, -0.00945964, 6.22923E-4, 0.018932803, 0.033213545, 0.015146242, 0.020717895, -0.022881644, 0.006792143, 0.0064067254, 0.0061125904, -0.0037223243, -0.007356746, -0.0027097573, -0.00461149, -0.031374358, -0.029832687, -0.021055982, 0.004364687, 0.012833736, -0.0069003305, -0.01305011, 0.0033926906, 0.008242531, 0.010582085, 0.014037321, -0.009101269, -0.031076843, 0.021907957, 0.047548383, -0.020393332, -0.038136072, -0.019554881, -0.0034146663, -0.027263235, 6.8166543E-4, 0.0025609997, 0.034079045, -0.02420694, 0.0030765804, -0.009581351, 0.0016625368, 0.023963518, -0.02116417, 0.0069307582, 0.008296625, -5.5699627E-4, 0.0038507967, 0.009757156, -0.009953245, 0.027628368, -0.018540623, 2.7997727E-5, 0.0023463152, -0.006403344, -0.008925464, 0.010142573, -0.003489045, -0.029426984, -0.006815809, -0.024626167, -0.011366444, -0.0041280272, 0.004307213, -0.012860782, -0.02676287, -0.013570762, -0.021461684, -0.037270576, -0.012766118, 0.08763183, 0.05522969, 0.012860782, 0.010419803, 0.007099801, -0.0071538948, -0.015687179, 0.0023091258, -0.016863719, -0.003847416, 0.022408325, -0.01943317, 0.019297935, 0.0015467424, 0.016228117, -0.009980292, -0.007897683, -0.011265018, -0.0066061956, -0.008857847, -0.015781844, -0.033997905, 0.01671496, 0.037513997, 0.0055919387, -0.011947951, 0.018581193, 0.016471539, 0.0048751966, 0.020204006, 0.0029312035, 0.016255163, -2.5208518E-4, 0.0030613665, 0.011920904, 0.007897683, 0.026505923, -0.00307489, 0.028804908, 0.008026156, -0.009561066, -7.146288E-4, 0.015511375, -0.0167961, 1.3977733E-4, -0.024152847, -0.007011899, 0.038622916, 0.020785512, -0.05160541, 0.026992768, 0.012684978, -0.019527834, -0.01782388, 0.020663802, 8.0168585E-4, -0.020487998, 0.0041618356, -0.0028162545, 0.014267219, -0.0036986582, -0.039488416, 0.011643673, -0.011738338, -0.0057812664, -0.018716428, -0.022692317, 0.003827131, -0.03429542, -0.007194465, 0.0016895836, -0.0025576188, -0.0017969258, -0.0027942788, 0.021015411, -0.0061599226, 0.03196939, -0.0073499843, 0.030049063, 0.020122865, -0.02491016, -0.0082019605, 0.005443181, -0.029616313, -4.517671E-4, 0.002613403, -0.020596184, 0.014902821, 0.009412307, 0.013618095, 0.015470805, 0.01597117, -0.015795367, 0.002192486, 0.044302758, 0.022421848, 0.016931335, 0.0045506344, 0.001556885, 0.011055404, -0.0025474762, -0.029805642, -0.0010379233, -0.013814184, -0.03015725, -0.0116301505, -0.0039758887, 0.0037662755, -0.023260301, -0.011143307, -0.01762103, -0.02033924, 0.0025525475, 2.575791E-4, -0.017905021, 0.010507706, 0.022205472, 0.038812246, -0.005889454, 0.02869672, 0.0054736086, -0.022056716, 0.015578992, 0.0020741562, 9.5509226E-4, 0.030779328, -0.020122865, -0.02964336, -0.0026032603, 0.02921061, 0.008343956, 0.0011562533, -0.0091486005, -0.008499476, 0.0022736269, -0.009243265, 0.016458014, 0.0014765896, -0.005013812, 0.023949996, -0.023395535, 0.00847243, 0.0120629, -0.0021806532, -0.002806112, -0.03326764, 0.006454057, -0.025572807, 0.022070238, 0.021691583, -0.005483751, -0.004300451, -0.018554147, -0.0068597603, -0.0050002886, -0.029967923, -0.019744208, 0.002030205, 0.034782264, 0.0033216926, 0.025045393, -0.0063864402, 0.036405075, 0.0019693496, 0.018324248, 0.017364085, -0.018905755, -0.016255163, -0.032672606, -0.003216886, 3.3301447E-4, 0.023125065, 0.0043105935, 0.02054209, -0.001355724, 0.027547227, 0.00512538, 0.0109336935, -0.008242531, -0.028642626, -0.021218263, 0.0051727123, -0.031130938, 0.0028906332, -0.013097443, -9.846748E-4, 0.029697454, -0.0097909635, -0.002912609, -0.0020234433, 0.019595452, -0.009953245, 0.008249292, -0.03797379, 0.024382746, -0.022773458, 0.004716296, -0.026546493, -0.016065836, -0.0050510014, -0.020785512, 0.023544293, 0.0077218786, -0.007309414, -0.013902087, 0.027547227, -0.03773037, -0.019892966, 0.031482548, -0.015470805, -0.004084076, -0.009385261, -0.0018087588, -0.026681729, -0.013766852, -0.005845503, -0.011785669, 0.0032304095, -0.013692473, -0.042788133, 0.032618515, 0.0033453587, 0.04146284, 0.024112277, 0.05420191, 0.015078625, 0.0146999685, -0.02495073, 0.007843589, -0.00930412, 0.013847993, 0.02278698, 0.034592934, -0.017364085, 0.011805954, -0.004327498, 0.001352343, -0.041814446, -0.034403607, 0.016052311, 0.023787715, 0.02614079, -0.023530768, 0.003776418, -0.029886782, 0.020839605, -0.01273231, -0.017404655, 0.022530036, -0.031293217, -0.016092882, 0.0078030196, 0.0023175778, 0.014037321, 0.0030207962, -0.032077577, 0.023287347, -0.020663802, 0.012874306, -2.802414E-5, -0.008350719, 0.020609709, -0.043518398, 0.010663225, 0.01782388, 0.01265117, 0.015822414, 0.0077556875, 0.0033605725, 0.029616313, -0.0062782527, 0.013699235, 0.0035262345, 0.015524899, 0.009763917, 0.006839475, -0.018594718, -0.018473007, -0.021312926, -0.016525632, 0.03378153, -0.011562533, 0.010649702, 0.0027723033, -0.019257365, -0.021935005, 0.009189171, 5.4389547E-4, -0.00567646, -0.038920432, 0.001182455, -0.0058049327, -0.0037899413, 0.011136545, 0.0021383925, -0.012833736, -7.9830503E-4, 0.012083185, -0.008715851, -3.9175688E-4, -0.021759199, -0.016390398, -0.045141213, -0.03059, -0.019636022, -0.010419803, 0.0120764235, -0.023287347, 0.005247091, 0.007890922, 6.8927236E-4, -0.0074649337, 0.013577525, -0.023625433, -0.008458906, 0.016742008, -0.028669672, -0.0098450575, 0.0038643202, 0.019216795, 0.0010472207, 3.2730927E-4, 0.016525632, 0.016958382, 0.03843359, -0.01844596, 0.0027925884, -0.0083101485, -0.019811826, -0.012793166, 0.022638222, 0.019257365, 0.004915767, 0.0032473137, -0.022800503, -0.023233254, -0.0070659923, 0.025545761, 0.0100141, -0.0060449736, 0.03883929, 0.0115760565, 0.024152847, 0.018026734, -0.006369536, -0.025275292, -0.004131408, -0.013327341, -0.024829019, -0.004942814, 0.020555614, 0.0049225288, -7.7590684E-4, -0.0048582926, -0.041381698, -0.0050881905, -0.034755215, -0.02605965, -0.0032659085, 0.010609131, 0.019324983, 0.016904289, 0.018148445, 0.0012559886, 0.0054736086, -2.9054246E-4, -0.024666738, -0.031834155, 0.017499318, 0.002530572, 0.029021282, 0.008465667, -0.030265437, 0.0013269866, 0.014537687, 0.024883112, -0.002530572, 0.012989255, -0.0018155206, -0.0115219625, 2.6476342E-4, -0.005669698, -0.0055750343, 0.007890922, 0.04021868, -0.023530768, -0.0057778857, 0.017242374, 0.011102736, -0.009628682, 0.009763917, 0.02534291, 0.008141105, -0.0015070173, -0.0092905965, -0.02597851, -7.2434876E-4, -0.018594718, 0.015876507, 0.019744208, -0.021569872, 0.04616899, 0.02661411, -0.00417874, 0.00575422, -0.007627215, 0.0013489622, -2.0094973E-4, -0.001336284, 0.0072282734, 0.0024308367, -0.034619983, 0.0063560125, -0.022218997, -0.0021265594, -0.0023666003, -0.001016793, -0.013455814, 0.03310536, 0.016119929, -0.050442398, 0.019176224, -0.014091414, 0.0060618776, -0.011968236, 0.006596053, -0.02614079, 0.006798905, -0.016146977, 0.011772146, -0.023206206, -0.035539575, 0.0075663594, -0.005774505, -0.013983227, 0.02688458, 0.17158529, -0.003681754, 0.0015365998, 0.04292337, -0.002439289, -0.0062579676, 0.012590314, 0.021110075, 0.007316176, 0.009716585, 0.002802731, 2.1996706E-4, -0.0031272932, 0.0013633309, 0.012867544, -0.011359681, -0.031320266, -0.036675543, -0.011224448, -0.025748612, -0.0015484327, -0.007627215, 0.0025525475, -0.023246776, 0.009709823, -9.719966E-4, -0.010156096, -7.146288E-4, 0.017566936, 0.011887096, -0.011427299, -0.018851662, -0.010832268, 0.013367911, -0.026235456, -0.0030765804, -6.93921E-4, -0.0017529747, 0.016917812, -0.007931492, -0.00567646, 0.0030241772, -0.0017969258, -0.004898863, 0.0021062742, 0.024774924, -0.026695251, -0.011569295, -0.016660867, -0.003945461, -0.04473551, -0.0036648496, 0.006454057, 0.019216795, -0.013766852, -0.005987499, -0.0011621699, 0.0016523942, -0.017323514, -0.004658822, 0.013428766, 0.02834511, -0.02791236, 0.0037662755, -0.004682488, 0.016782578, -0.031428453, -0.011095975, 0.0047365814, -0.027384946, -0.015011008, -0.025288815, -0.023611909, 0.008249292, -0.0071200863, -0.010697033, 0.006552102, -0.0047399625, 0.011339396, 0.022083761, -0.019798303, -0.013158298, 0.00788416, -0.0034822833, -0.011265018, -0.015565469, 0.018432437, -0.014294266, -2.7913204E-4, -0.020961318, -0.013455814, -0.02116417, -0.023801237, -0.016998952, 0.0161605, -0.0048549115, 0.015876507, 0.009080984, -0.0114340605, 0.0051591885, -0.037027154, 0.025829753, 0.012928399, 3.840443E-5, -0.02546462, -0.02192148, -0.02124531, 0.011880334, 0.022137856, -0.004540492, -0.029264703, -0.020433903, 0.0046858685, -0.0063357274, -0.013307055, 0.033619247, 0.006552102, -0.006673813, 0.042706992, -0.0069645667, 0.004814341, -0.029967923, 0.024274558, 0.007654262, -0.010656463, -0.032537375, -0.037243526, 0.019730685, -0.011697767, -0.032672606, 0.027939407, -0.0103454245, 0.0037797987, 0.008999843, 0.013814184, 0.0012788094, 0.02085313, -0.005980737, -0.0038812247, -0.012177849, -3.81403E-4, -0.013746567, -0.007167418, 0.022759933, 0.0062613483, -0.029967923, 0.0064439145, -0.015416711, -0.01092017, -0.036053468, -0.010304854, -3.7738823E-4, 0.009175648, 0.0211236, 0.04549282, -4.90647E-4, -0.025924416, -0.028615579, -0.0073499843, 0.020122865, -0.032970123, 0.013340864, 0.0050171926, -0.038487684, -0.02605965, -0.007694832, -0.17245078, 0.016187547, -0.015281476, -0.033916764, 0.030860469, 0.006629862, 0.01801321, 0.014402454, 0.0062883953, -0.019068036, 0.01883814, -0.011048643, -0.034619983, -0.0013041658, -0.011934428, 0.0021468445, -0.01064294, 0.031428453, 0.019960584, -0.0040029353, 0.04222015, -5.582641E-4, -0.010311616, -0.022908691, 0.029156515, 0.012218419, 0.019920014, -0.0054059913, 0.022421848, -0.010588846, -0.047304958, -0.013888563, 0.006839475, 0.0039353184, -0.0264924, 0.011386729, -0.0031780063, -0.021069504, 0.0039488417, 0.005896216, 0.02921061, 0.008377765, 0.014618828, -0.0103454245, -0.0039522224, 0.013063634, 0.022530036, -0.026641158, 0.02739847, -0.01320563, -0.021394067, -0.023868855, 0.017485796, -0.008736136, -0.0030224868, 0.024693783, 0.002743566, -0.0037899413, -0.0048616733, 0.003110389, -0.025397003, 0.0014994104, 0.00417874, -0.021637488, 0.0038879863, -0.0152003355, -0.019690115, -0.003453546, -0.029426984, 0.010142573, -0.017877975, -0.0014301027, 0.0049800035, 0.0069037112, 0.0061869696, -0.007897683, -0.02546462, 0.008884894, 0.0022009383, 0.018378342, -0.01943317, 0.033754483, -0.0012204896, 0.011657197, 0.015565469, -0.009642206, -0.0072620823, -3.685135E-4, -0.014524165, -0.011251494, 0.018378342, -0.011650436, -0.04108418, 0.0029497982, 0.002968393, -0.0020048486, -0.008107296, 0.013266485, 0.010413041, -0.0039217947, 0.012096709, -0.011075689, -0.0058049327, 0.015470805, 0.04238243, 0.009337929, 0.014483594, 0.01367895, 0.03334878, 0.0092026945, -0.008803753, -0.0061396374, 0.017080093, 0.018243108, -0.012630885, 0.008053203, -0.010311616, -0.027019814, -0.005152427, 0.010440089, 0.045438726, -0.005152427, 0.010453612, -0.005392468, -0.009337929, -0.013300294, -0.08968739, -0.0116301505, 0.017837405, 0.052254535, -0.027777126, 0.038812246, -0.007309414, 0.016376873, -0.02455855, 0.02877786, 0.007309414, -0.02542405, 0.0032811223, 0.00997353, 0.019974107, -0.005010431, -0.01825663, -0.010710557, -0.016255163, 0.020826083, 0.008938988, -0.01300954, 0.006403344, -0.021935005, -0.008783468, 7.5942517E-4, -0.022070238, 0.014267219, 0.010778174, 0.031157983, 0.018067304, -0.01908156, 0.0029667027, -0.0370542, -0.03773037, -0.017850928, -0.017201804, -0.012123755, -0.0048819585, -0.046601743, 0.010304854, 0.007478457, -0.002092751, -0.030400671, -0.018067304, -0.0032320998, -0.038325403, 0.0249913, -0.011603103, -0.021678058, -0.007836828, -0.019460216, -0.030103156, -0.00283823, 0.018324248, 0.017877975, 0.04308565, 0.014537687, -0.012083185, -0.016809624, -0.020176958, 0.006558864, -0.015389664, 0.022989832, 0.0052065207, 0.0041753594, -0.006998375, -0.008654996, 0.011170354, -0.012874306, -0.0105618, 0.0335922, -0.035377294, -0.005862407, -0.012813451, 0.008749659, -0.037865605, -0.009554303, 0.026397737, -0.030292485, -0.0016718342, -0.023963518, 0.021218263, -0.0056020813, 0.014929867, 0.027885314, 0.0072823674, 0.0033453587, -0.012279275, -0.04833274, -0.011332635, 0.0063999635, -0.001592384, 0.021975575, 0.002243199, 0.009676014, 0.005774505, 0.003773037, 0.004486398, -0.0021975574, -0.019527834, 0.011237971, -0.06951043, 0.028859, -0.011346159, -0.0048887203, -0.006028069, 0.0069916137, 2.1764271E-4, 0.005098333, 0.0011224448, 0.015240906, -0.0019693496, 0.024747878, 0.0044018766, 0.0012382391, -0.0047636284, 0.019311458, 0.006552102, 0.0041483124, 0.008283101, 0.008242531, -0.026546493, 0.0075393124, 0.024937205, 0.019852396, 0.012428032, -6.410951E-4, 0.020677324, -0.0072553204, -0.002941346, 0.002672568, 0.049387567, -0.013739806, -0.0012466912, 0.0049090055, -0.02424751, -0.014537687, -0.016931335, 0.0098450575, 0.0018713047, 0.010609131, 0.0040198397, -0.00512538, 0.009608397, -0.011447584, -0.003519473, 0.015795367, -0.016836671, 0.0109877875, 0.008479191, 0.011292065, 0.02614079, 0.020880178, 0.0020048486, -0.0020318953, 0.009865343, -0.018594718, 0.054905128, 0.0021113455, -0.005111857, -0.027384946, 0.018364819, 0.0012424652, 0.005683222, -0.018243108, 7.4547913E-4, -0.014470071, 0.012678216, 0.011684244, 0.00477039, -0.026046127, -0.014023798, -0.005696745, 0.012570028, 0.035296153, 0.03180711, 0.020244576, -0.0032540755, 0.0027553989, -9.4241404E-4, 0.01786445, 0.026505923, -0.012306321, -0.04254471, 0.02227309, -0.009128315, 0.0033335257, 0.0010151025, 0.019690115, 0.013313818, 0.010717318, -5.6671625E-4, 0.025288815, 0.01805378, -0.0104874205, 0.010426565, 0.028101688, -0.012975732, -0.018946325, 0.003871082, 0.02042038, -0.009141839, -0.005984118, -0.012948684, -0.014767586, -0.02948108, 0.004939433, -0.014145508, -0.02274641, 0.0058928346, 0.009561066, 0.038649965, 0.020609709, -0.0040637907, 0.002767232, -0.041219417, 0.0105415145, -0.004554015, -0.010311616, -0.007099801, 0.041814446, 0.008817277, 0.0035532813, 0.035296153, -0.0155925155, 0.066156626, -0.0018611621, 0.021867387, -0.028236924, 8.8155863E-4, 0.008627948, -0.0022837694, 0.003911652, -0.0051084757, 0.0077759726, 0.00954078, 8.1943534E-4, 0.008519761, 0.022448895, -0.019149177, 0.066373, 0.015457281, -0.009358214, 0.017959116, -0.021515777, 0.022259567, 0.017012475, 0.017986163, -0.013340864, -0.022989832, 0.004270023, -0.023720097, 0.011386729, -0.026046127, 0.0069645667, -0.013496384, 0.018540623, 0.011974998, -0.008580617, -0.016336303, -0.015470805, -0.0024375983, 0.02231366, 0.025153581, -0.0015323737, -0.018892232, 0.0040637907, -0.002459574, -0.012975732, -0.023368487, -1.58689E-4, -0.037162386, -0.009209456, -0.0063052997, 0.011265018, 0.0032963362, -0.011231209, 0.0017200114, 0.01572775, -0.004821103, -0.007546074, -0.0010666606, -0.034160186, -0.02029867, 0.007661023, -0.022962784, -0.0066670515, -0.04240948, -0.018500052 ], + "id" : "d38d9008-6b66-44a8-b378-e4a7dc482950", + "metadata" : { + "source" : "movies.csv" + } + }, + "c33c4969-d253-4399-8594-2dedd02579b2" : { + "text" : "925,318,L�_ Yanting-Joseph-Han Mo-Chen Hao-L�_ Qi-Yang Wei-Zhang Jiaming-He Yuxiang-Ren Junpeng-Yu Chen-Liu Linzhu-Da Hai-Xingliner-Li Nan-Tao Yuan,based on novel or book-swordplay-magic-dragon-demon-16th century-donghua-feng shen yanyi-nezha character-nezha-3d computer animation,/vhnxaQel1CwfcwLtCkTNpSdjte1.jpg,/eGK2JJO1ZeoabWThHmC9IjUTmfP.jpg,635389-351694-532753-663558-573699-19067-612845-10753-535167-575813-455714-928344-360814-568160-10376-899112-637-43949-389-431693-20453\r\n504093,The Legend of Nezha,Fantasy,zh,Nezha gets into trouble and implicates his parents who get punished by the heavens along with him. He bravely steps up and admits his fault which touches the heavens and his effort comes to fruition. The family of three finally reunites in the end.,3.241,Film Carnival-Rocket Science 3D-Its Just Us Productions-October Media,,20000000,742500000,110,Post Production,,0,0,Michelle Yeoh-Zhang Feng Yi-Collin Chou-Leo Wu-Winston Chao-Jiang Chao-Jike Junyi-Zhang Chunzhong-Xing Fei-Pao Guoan-Fu Qianwen,based on novel or book-swordplay-magic-curse-dragon-demon-historical-based on fairy tale-based on myths legends or folklore-crude-donghua-3d computer animation,/4SCKVllTzSo3iDmD8MDjK72QH4s.jpg,,\r\n604,The Matrix Reloaded,Adventure-Action-Thriller-Science Fiction,en,Six months after the events depicted in The Matrix Neo has proved to be a good omen for the free humans as more and more humans are being freed from the matrix and brought to Zion the one and only stronghold of the Resistance. Neo himself has discovered his superpowers including super speed ability to see the codes of the things inside the matrix and a certain degree of pre-cognition. But a nasty piece of news hits the human resistance: 250000 machine sentinels are digging to Zion and would reach them in 72 hours. As Zion prepares for the ultimate war Neo Morpheus and Trinity are advised by the Oracle to find the Keymaker who would help them reach the Source. Meanwhile Neo's recurrent dreams depicting Trinity's death have got him worried and as if it was not enough Agent Smith has somehow escaped deletion has become more powerful than before and has fixed Neo as his next target.,40.388,Village Roadshow Pictures-Silver Pictures-NPV Entertainment,5/15/03,150000000,738599701,138,Released,Free your mind.,7.", + "embedding" : [ 0.00935547, -0.03506394, -0.028142696, -0.017629063, -0.004168004, 0.013280745, -0.023981627, -0.008391489, -0.026145384, -0.01633913, 0.032317635, 0.01810065, 0.019210268, 0.013648306, 0.009757707, -0.0024845048, 0.016089467, -0.030625466, 0.008134889, -0.024605788, -0.006810283, -0.021249192, -0.019487673, -0.013093497, -0.016269779, 0.018225482, 0.03861472, -0.017018773, -0.024647398, -9.78718E-4, 0.021970443, 0.009723031, -0.010458153, 0.013669112, -0.01925188, 0.009334665, 0.003814313, -0.028766856, 0.026949856, -0.006113304, 0.029293925, 0.005163193, -0.012781417, 0.016672015, -0.0128923785, 0.010215424, 0.002538252, -0.020625032, -0.0051978687, 0.030597726, 0.024300642, 0.039058566, -0.02416194, -0.013502669, -0.0289333, -0.0075800805, -0.0053608436, 0.0023145946, 0.0068726987, -0.012524817, 0.025590574, 0.017975818, -0.018336443, -0.022816528, -0.014050542, -0.009445626, -0.0026336098, -0.001237918, -0.0020111834, -0.024342254, 0.004022367, 0.027046949, 0.01509081, 0.020070223, 0.021221451, -0.02721339, -0.011706474, -0.0018135326, -0.014633092, 0.021679169, 0.017726153, -0.014272466, -0.014397298, -0.006220798, 0.020139573, 0.010257035, -0.017642932, 0.015756581, -0.021443374, 8.38282E-4, 0.019695725, -0.0031225355, 0.0094248215, 0.0087451795, 0.015617878, 0.0066785156, -0.017753894, 0.007663302, -0.024966413, -0.016436223, -0.0108534545, -0.0071570384, -0.02837849, -0.004521695, -0.0010905468, -0.011304237, 0.001496251, -0.004691605, 0.030680949, 0.025479613, 8.478178E-4, -0.009743837, 0.01629752, -0.029931955, -0.0014867153, -0.036145817, 0.039030828, -0.016741367, -0.00755234, -0.015382085, 0.014175375, 0.0517637, 0.011019898, -0.02055568, 0.056535058, 0.033122107, 0.002163756, -0.020846955, -0.017254565, -0.013467993, 0.021360153, 0.008266657, 0.04715878, 0.016491704, -0.038919866, 0.056867942, -0.020833084, 0.0033427253, -0.04166617, -0.0149659775, 0.03251182, 0.025507353, -0.01205323, -0.014799535, -0.0076771723, 0.014646962, 0.0040951855, 0.006948985, 0.021526596, -0.004043172, 0.020028612, 0.009119676, 0.014355687, 0.020319887, 0.012150321, -0.009875604, -0.0065848916, 0.0106662065, -0.012164191, -0.01811452, -0.010451218, -0.0027359028, -0.014952107, -0.02301071, 0.0023353999, 0.023801314, 0.0180313, -0.03739414, -0.0022885879, -0.0067756074, -0.0136275, 0.025521223, -0.015631748, -0.0018378054, -0.01387023, 2.9127483E-4, 0.02288588, -0.01510468, -0.019778948, -0.0014919166, 0.018974474, 0.011116989, 0.03137446, 0.012358375, -0.0087451795, 0.0092722485, 0.009750771, -0.02837849, -0.008821466, -0.008502451, -0.01997313, 0.0032022893, -0.0121433865, -0.03076417, -0.6449102, -0.018808031, -0.011394394, 0.0041714716, 0.002508778, -4.327945E-4, -0.0013341428, 0.0045806435, -0.010409608, -0.025535094, -0.020264406, 0.0075870156, 0.014015867, -0.010791039, -0.010610726, -0.0032924458, -0.0074760537, -0.02471675, 0.012074035, -0.0023614066, -0.026048291, 0.008627282, -0.0024723685, 0.015839802, -0.017670672, 0.024356123, -0.024300642, -0.003907937, 2.76321E-4, 0.004608384, -0.0252993, 0.014133764, 0.02410646, 0.017934207, 0.035923894, 0.002546921, -0.011713409, 0.06408046, 0.016436223, 0.017767765, -0.026464399, -0.0048996587, 0.021998184, 0.012275153, -0.029654551, 0.013426382, 0.017393269, 0.0015716704, 0.008779855, -0.017795505, 0.0043656547, -0.010166879, 0.016200429, -0.016630406, -0.0030930613, 0.006026615, 0.012122581, -0.03500846, 0.027407574, -0.0064982027, 0.0033288551, 0.014036672, -0.017393269, -0.0035421099, -0.0058012237, 0.022691695, -0.0013662176, -0.003627065, -0.0051458552, -0.0073512215, 0.0041888095, 0.008127955, -0.0020493264, 0.0036166625, -0.002602402, 0.011789695, 0.04765811, 0.01418231, -0.012850768, 0.016547184, -0.012261283, -0.010728623, -0.0048857885, 0.0077742636, 0.011165535, -0.011318107, -0.013363967, 0.012684325, 0.007919901, 0.0088977525, -0.0041090557, 0.004930867, -0.0060682255, -0.009112741, -0.0057596127, 0.008169565, -0.0104789585, -0.0057769506, 0.022872008, -0.03437043, -0.00783668, -0.025118986, 0.0027064285, -0.017129734, 0.012372245, 0.017823245, -0.014549871, -0.010395737, 0.04713104, -0.01693555, -0.014078283, -0.014549871, -0.039530154, -0.017823245, 0.012809157, -0.028087215, 0.03187379, 0.022455903, 0.020195054, -0.016103337, -0.0036235976, 0.0071015577, 0.0047054756, -0.011976943, 0.0111239245, 0.027463054, -0.008550997, 0.0074760537, 0.008426164, -0.005419792, 6.6923857E-4, -0.001042001, 0.015021459, -0.017004902, 0.0074760537, -0.022192368, 0.017490359, -0.003462356, 0.002052794, -0.009785447, -0.02169304, -0.007857485, -0.005828964, -0.008134889, -0.0078782905, -0.01507694, -0.01144294, 0.0063109547, -0.0076355613, 0.0039530154, -0.01694942, -0.00452863, -0.005194401, 0.0109366765, -0.010534439, 0.008003122, -0.020680513, -0.018599978, 0.0061653173, -0.028045604, 0.010825714, 0.01142907, -0.009875604, -0.0069697904, 0.013128173, -0.030569986, -0.005312298, 0.029876474, -0.010839584, -0.024328383, 0.0029647616, -0.016727498, -0.0052394792, 0.032789223, -0.020777604, 0.02414807, -0.017615192, -0.007011401, 0.0072888057, -0.0042581605, -0.002163756, 0.0073304162, -0.019002214, -0.020264406, 0.026727933, 0.01179663, 0.016089467, -0.021914963, 0.0013679514, 0.006494735, -0.026811155, -7.5419375E-4, -0.012164191, -0.0040535745, 0.0025798627, 0.019016085, 0.02169304, -0.00631789, 0.0049482044, -6.9784594E-4, 0.025604444, 0.021623688, -0.025715405, 0.013606695, 0.0019817092, -0.034925237, 0.018863512, -0.013440252, -6.295784E-5, -0.011595512, 0.014924367, -8.551864E-4, -0.017060382, -0.015187901, 0.009688355, 0.02417581, -0.00847471, -0.0073928325, -0.009716096, 0.013086562, 0.0075662103, -0.027352093, 0.022483643, 0.014993718, -0.022580734, 0.01814226, 0.02715791, 0.014327947, 0.0020909372, -0.01571497, -6.948118E-4, -0.012982535, -0.01301721, 7.3902315E-4, 0.0061653173, 0.007011401, 0.029987436, -0.013377837, 0.032872446, -0.010506699, -0.024356123, 0.01625591, 0.013967321, -0.011491485, -0.014147635, -1.906073E-4, 0.00573534, 0.0050626337, -0.008800661, 0.03076417, -0.02116597, 0.028170437, -0.0030514505, -0.003016775, 0.0065467483, -0.031818308, 0.008613412, 0.014369558, 0.03681159, 0.02233107, 0.01747649, -0.0314022, 0.014868886, 0.0056555863, 0.02896104, -0.0150492, -0.014230856, 0.009091935, -0.0029890344, -0.034536872, -0.013218329, -0.009903344, 0.019557023, -3.9465138E-4, 0.004313641, -0.009223702, -4.616186E-4, 0.001966105, 0.010090592, 0.03500846, -0.019987, -0.03855924, -0.003831651, 0.016977161, -0.0082181115, -0.014633092, -0.03070869, 0.0052637523, -0.015229512, 1.3209226E-4, -0.016269779, 0.022733307, -0.010693947, 0.0059641986, -0.02778207, -0.012462402, 3.4978986E-4, -0.0050730365, -0.0029682291, 0.012947859, 0.0075176647, 0.010180749, -0.008967103, -0.010187684, 0.02471675, -0.009563523, -0.0011685669, 6.5233425E-4, 0.016242038, -0.0063872407, -0.011234886, -0.0070460765, -0.019806689, 0.013086562, -0.003126003, -0.020874696, -0.0073720273, 0.01683846, 0.020930177, -0.01361363, -0.012462402, -0.02840623, -0.02959907, 0.015548527, 0.06485719, 0.04119458, 0.0019938454, -0.0077603934, -0.003831651, -0.0044870195, -0.016810719, -0.009119676, -0.0062970845, -0.0019210269, 0.009861734, -0.021235323, 0.022566864, 0.0069697904, 0.020694382, 0.003377401, 0.01419618, -0.0084331, -0.021041138, -0.017323917, -0.02896104, 0.010673142, 0.038864385, 0.021540467, -0.013523474, -0.012920119, 0.014258596, 0.004018899, 0.0065675536, 0.016713627, -0.0025365183, -0.002044125, -0.0096467445, 0.0037310917, -0.01993152, 0.010610726, 0.0069073746, 0.0050348933, 0.022233978, 3.0882933E-4, -0.011997749, 0.031846046, 0.0108187795, -0.012448532, 0.01118634, -0.0071431682, -0.009237573, -0.010839584, 0.022663955, -0.03495298, 0.028822338, -0.030042918, -0.028461711, -0.018197741, 0.012282088, -0.0025746613, -0.025535094, -0.0144389095, -0.009175157, -0.015756581, 0.010437348, -0.026922116, 0.024647398, -2.2669157E-4, -0.007011401, -0.014272466, -0.007718783, 0.0071709086, -0.0104789585, 0.0149659775, -0.0075939507, -0.007725718, -0.016658146, -0.0042720307, 0.0019331633, -0.0036235976, 0.041222323, 0.0012968665, 0.011928397, 5.6607876E-4, -0.025604444, -0.045050506, -0.0060127447, -0.03500846, 0.007316546, 0.0055654296, -0.010347191, 0.0111239245, -0.015923023, -0.012448532, 0.021609819, -0.0069905957, -0.008280527, 0.014674703, 0.028281398, -0.0036409353, 0.01927962, 0.018821903, 0.011533096, 0.009223702, 0.009833992, -0.02240042, -0.017004902, -0.018003559, -0.0067582694, -0.012358375, 0.024120329, 0.010908935, -0.01574271, -0.011338913, -0.016727498, -0.025743145, 0.015548527, 0.0068622963, 0.015340474, 0.005808159, 0.012580298, 0.02600668, -0.009632874, 0.0052290764, 0.013814749, -0.012184997, 0.00694205, 0.027934643, -0.019681856, 0.0175181, -0.0025989343, 0.0062728114, 0.005808159, 0.049128354, 0.015604008, 0.022636214, -0.0058809775, -0.008231982, -0.022663955, -0.02298297, 0.0064773974, -0.007198649, -0.0027324352, -0.0074829888, -0.02722726, -0.007919901, 0.0044315383, -0.007427508, -0.0013636169, -0.026311826, 0.003713754, 0.0018083312, 0.022469772, -0.005766548, -0.016075596, -0.0035317072, -0.012122581, -0.0072818706, -0.019043826, -0.029460369, -0.016033985, -0.012753677, 0.017892595, -0.008273592, 0.048684508, -0.001504053, 0.017004902, 0.017032642, -0.018253222, 0.030348063, -0.01693555, -1.1876384E-4, -0.033565957, 0.003299381, 0.013793943, 0.03198475, 0.01622817, 0.0048823208, -0.005201336, 0.017850986, 0.008384554, 0.0020337224, -0.0037276242, -0.04591046, -0.02117984, 0.02352391, -0.021401765, 0.005513416, -0.026422787, -0.01026397, 0.03695029, -0.009820122, -0.003627065, -0.008661958, 0.017850986, -0.010520569, -0.01327381, -0.0057388074, 0.04896191, -0.019723468, 0.020222794, -0.014577611, -0.013793943, -0.016741367, -0.00589138, 0.019737337, 0.008093279, -0.005617443, -0.00560704, 0.020208925, -0.013682982, -0.041416507, -0.006820685, -0.010895065, -0.012809157, -0.034675576, 0.006713191, -0.037782505, 0.008169565, -0.011151665, -0.007926837, 0.0087105045, -0.013155913, -0.014688573, 0.03622904, -0.007091155, 0.043774445, 0.008620348, 0.04771359, 0.049932826, -0.001042001, -0.020070223, 0.003980756, -0.0050869067, -0.017795505, 0.03018162, 0.031235756, -0.016699757, 0.007129298, 0.004303239, -0.019113177, -0.03864246, -0.044190552, 0.019584764, 0.023815185, 0.020666642, -0.026103772, -0.00901565, -0.010381867, 0.015201772, -0.029931955, 2.5204808E-4, -0.02291362, -0.024342254, -0.006931647, -0.0034207455, -0.0015551995, 0.019487673, 0.010048982, -8.1140845E-4, 0.009480302, -0.017684544, -0.00589138, -0.003250835, -0.0118382415, 0.034231726, -0.011831306, 0.005537689, 0.021290803, 0.023482298, -0.008765985, 2.7762132E-4, -9.189027E-4, 0.034037545, -0.0078782905, 0.009792382, 9.952974E-5, 4.375624E-4, 0.01448052, 0.018683199, -0.02346843, -0.006463527, -0.018905124, 0.019113177, 0.019806689, -0.01507694, 0.0013896236, -0.0012942659, -0.014730184, -0.02664471, 0.0051423875, 0.006997531, 0.0040639774, -0.047242, 0.016047856, 0.014910497, -0.0071015577, -0.0034398169, -0.023718093, 0.0073997676, -0.014924367, 0.027476925, -0.005336571, 0.0060439524, -0.003112133, -0.017115863, -0.030514505, -0.023621, -0.01147068, -0.014369558, 0.01057605, -0.031735085, 0.001997313, -0.003769235, -0.0017701881, 0.003595857, 0.014702443, -0.0077811987, 6.4063125E-4, 0.0010550043, -0.0069767255, -0.008994844, 0.016782979, 0.029654551, 0.010964417, 0.006432319, 0.0025972005, -8.083743E-4, 0.0348975, -0.022663955, -9.180358E-4, 0.015409825, -0.031318977, -0.015312733, -0.010673142, 0.01145681, 0.005398987, -0.010693947, -0.03450913, 0.01000737, -0.014536001, 0.01568723, -0.0047124107, 0.016505573, 0.042026795, 0.0049724774, 0.011900657, 0.028766856, -0.009986565, -0.018170001, 0.012698195, -0.025826368, -0.028059475, -0.0076494315, -0.010867325, 0.011761955, 0.013849424, -2.784882E-4, -0.023690352, -0.003925275, -0.038531497, -0.015520787, -0.006300552, 0.017129734, 0.03928049, 0.013676046, 0.009833992, 0.003360063, 0.0035889219, 0.00391834, -0.018974474, -0.0065536834, 0.006456592, 0.0019799753, 0.008890817, 0.0314022, -0.028572673, -0.002429024, 0.008010058, 0.014314077, -0.0065918267, 0.018849643, -0.011657928, -0.0087105045, 4.8242393E-4, -0.0076841074, -0.008752115, -0.009750771, 0.010333321, -0.05622991, -0.005225609, -0.0023232636, 0.0039668856, -0.0011850378, -4.694206E-4, 0.0051493226, -0.024966413, -0.02416194, -0.0120601645, -0.004622254, -0.012358375, -0.014029738, 0.026935985, 0.010492829, 0.0060543553, 0.052928798, 0.014383428, -0.010333321, 8.7469135E-4, -0.012275153, 0.01148455, -0.007989252, 0.007233325, 0.01022236, 0.027671108, -0.030875131, 0.019778948, -0.026325695, 0.020347627, -0.0051042447, 0.0142863365, -0.018211612, 0.03425947, 0.02044472, -0.04363574, 0.009514977, -0.00560704, 0.0020649305, -0.009660615, 0.0040466394, -0.035563268, -0.00878679, -0.008197306, 0.009251444, 0.003266439, -0.02898878, -0.01419618, -0.026908245, -0.005444065, 0.001754584, 0.19063243, -0.004098653, -7.325215E-4, 0.039419193, 0.003072256, 0.020000871, 0.027851421, 0.010922806, -0.0118382415, 0.00878679, -0.01925188, 0.009487237, -0.008398424, -2.737203E-4, 0.012032424, -0.008994844, -0.024619658, -0.012101775, -0.00904339, -0.026339566, -0.0051527903, -0.017462619, 0.0077534583, -0.013398642, -0.0062589413, 0.004022367, -0.007808939, 6.0292153E-4, 0.022525253, -0.00393221, -0.017004902, -0.017226825, -0.004858048, -0.0031884192, -0.032373115, -0.006910842, 0.0042338874, 0.017989688, 0.003462356, 0.007788134, -1.987073E-5, 0.01301721, -0.014189245, -0.0023926147, 0.004722813, 0.02667245, -0.027393704, -6.4626604E-4, -0.033316292, 0.005242947, -0.027879162, -0.0057492102, 0.02407872, 0.024050979, -0.008953233, 0.0047124107, 0.011352783, 0.0066819834, 0.006855361, 0.00631789, 0.004507825, 0.033177588, -0.021471115, 0.014175375, 5.192667E-4, -0.010895065, -0.028461711, -0.011734215, 0.026242474, -0.028433971, -0.0059641986, -0.015284993, -0.014633092, -0.010624596, -0.021068878, -0.0123653095, 0.020888565, 0.001927962, -0.004858048, 0.0012916651, -0.0037553648, -0.028031735, 0.0033843361, -0.0073928325, 0.008356813, -0.02542413, 0.0067964126, -0.029099742, -0.012760611, 0.01118634, -0.020694382, -0.0068033477, -0.018378055, -0.003408609, 0.0022885879, 0.0025035765, 0.03514716, 0.0031138666, -0.006595294, 0.011394394, -0.012427726, 0.032816965, 0.022414291, 0.0066750483, -0.011595512, -0.01145681, 0.0044592787, -4.668199E-4, 0.022150757, 0.011817436, 0.012490142, -0.019515414, -0.0047297482, -0.029293925, 0.0053400383, 0.009847863, -0.005641716, -0.022899749, 0.043857668, -0.020708254, 9.856533E-4, -0.028239788, 0.0018950201, 0.02179013, -0.008578737, -0.01869707, -0.0040709125, 0.012767547, -0.012171127, -0.01812839, 0.026727933, -0.047990996, 0.011574707, 9.457763E-4, -8.963636E-4, 0.017961947, 0.021096619, 0.007871355, 0.010596856, -0.009847863, -0.0021568206, -0.01694942, 0.016741367, 0.004913529, 0.015340474, -0.0056659887, 0.006324825, 0.0026509475, -0.002756708, -0.028212048, -0.02294136, -0.0028069878, 0.007365092, 0.011997749, 0.038947605, 0.0010229294, -0.041610688, -0.020278275, -0.008197306, 0.046714935, -0.050959226, 0.016796848, 0.023745833, -0.0045875786, -0.023940016, -0.012157257, -0.1790924, 0.012136451, 0.025285428, -0.028850079, 0.03020936, 0.016796848, 0.017088123, 0.0059815366, 0.012767547, -0.0044523436, 0.0133847715, 0.0146608325, -0.038392797, -0.01449439, 0.0030063724, 0.03206797, -0.02113823, 0.041610688, 0.042470645, 0.006792945, 0.026880505, 0.017226825, -0.013426382, 0.0046569295, 0.027587887, 0.023066193, 0.008634218, -0.0057492102, 0.0017927272, -0.0038177806, -0.007496859, -0.013821684, 0.010596856, 0.015784321, 0.011921463, 0.008356813, 0.0012673922, -2.7241997E-4, -0.0065536834, 0.008634218, 0.019113177, 0.024980284, 0.007947641, 0.0028312607, 0.0036062598, 0.030042918, 0.013807814, -0.009480302, 0.014674703, -0.013745397, -0.008627282, -0.018932864, 0.033011146, -0.0063803056, 0.013461058, 0.032234415, 0.021582078, 1.4317219E-5, 0.015909154, -0.010659272, -0.010943611, -0.015839802, -0.0012422524, -0.009910279, -1.4617921E-4, -0.012101775, -0.0059607313, 0.031013833, -0.042442903, 0.014015867, -0.026395047, 0.008863077, 0.023121674, 0.012309829, 0.008058604, -0.016519444, -0.011394394, 0.009813188, 0.015604008, 0.006321357, -0.012601104, 0.037144475, 0.0016791647, -3.6149286E-4, 0.02105501, -0.0033895373, 0.032484077, -0.019029954, 0.007496859, -0.00966755, 0.0017927272, -0.003299381, -0.01814226, -0.003814313, -0.00438646, 0.0016496904, 0.003869794, -0.010437348, 0.0035854543, 0.0071015577, 4.4254703E-4, -0.020292146, -0.016061725, 0.0033479268, 0.013578955, -0.0070738173, -0.0040397043, 0.04174939, 0.035951637, -0.0029127481, 0.0027879162, 0.0059503284, 0.028572673, 0.020264406, -0.018780291, 0.022594605, -0.014189245, -0.015881414, 0.009286119, 0.012982535, 0.037005775, 0.0036305327, -0.019640245, 0.0073304162, -0.014563741, -0.026284086, -0.09381823, 0.009847863, -0.0020805344, 0.040972658, -0.038919866, 0.03728318, -0.01633913, 0.04094492, -0.03617356, 0.034287207, 0.004306706, -0.017864855, -0.0012127782, -0.01629752, 0.013904905, -0.002963028, -0.0054752734, 0.005131985, 0.011789695, 0.033704657, 0.007857485, -0.01693555, 0.0072055846, -0.035369087, -0.00996576, 0.013710722, -0.035923894, 0.013433318, 0.014425039, 0.0146608325, 0.0022591136, -0.024619658, 0.013655242, -0.034620095, -0.018544497, -0.013343161, -0.030015176, -0.0016583593, 0.0135720195, -0.057755638, 0.0074552484, 0.008890817, 0.005846302, -0.01419618, -0.020874696, 0.0106662065, -0.025576703, 0.03817087, -0.010409608, -0.03625678, -0.0043379143, -0.009494172, -0.016810719, 0.010083657, 0.023426818, 0.020250535, 0.017074253, 0.02234494, -0.023246504, -0.020791475, 0.009958825, 0.011477615, -0.03314985, -0.0049724774, 0.007802004, 0.008093279, -0.014029738, -0.010700882, 0.01298947, -0.019876039, -0.011720344, 0.036506444, -0.027324352, -0.0044939546, -0.04837936, -0.009334665, -0.008155695, -0.013086562, 0.033011146, -0.025757017, 6.2416034E-4, -0.030264841, 0.0015014524, -0.0109713515, 0.018863512, 0.022525253, 0.029127482, -0.007926837, 0.0033461929, -0.033565957, -0.0108187795, 0.014327947, 0.001402627, -0.007815874, -0.004143731, 0.021429505, 0.02292749, 0.0063907085, -0.014300207, 0.023704223, 0.0013280745, -0.0140990885, -0.06652162, 0.010929741, -0.01506307, -0.016214298, 0.0012465869, -0.018017428, 0.026367307, -0.013787008, -0.0087105045, -0.0019123579, -0.021609819, 0.0040674447, -0.02829527, -0.0019331633, -0.01266352, -0.0039599505, 0.015215642, -0.0043379143, -0.00963981, 4.5468347E-4, -0.002406485, 0.008453905, 0.02535478, 7.9580443E-4, -0.004050107, 0.009570459, 4.7765602E-4, -0.0067409314, -0.00905726, 0.0010784103, 0.0375051, -0.026922116, 0.006234668, 0.0024723685, -0.015992375, -0.037366398, -6.4203996E-5, -0.007191714, -0.0010524037, 0.012933989, -0.020930177, -0.028433971, -0.022039795, 0.011755019, 0.0048372424, 0.02957133, -0.0076979776, 0.014868886, 0.017268436, 0.009175157, 0.023329725, 0.008613412, -0.0058636395, -0.016436223, -0.0038767292, -0.028461711, 0.0398353, 0.0020978723, -0.011845176, -0.02238655, 0.035840675, 0.004379525, 0.023135543, -0.018821903, -0.003353128, 0.006831088, -0.0053677787, 0.020860825, -0.013148977, -0.011976943, -0.0040951855, -0.012004684, 0.005461403, 0.02301071, 0.016810719, 0.023440689, 0.004695073, 0.005797756, -0.013766203, 0.007607821, 0.031957008, -0.01572884, -0.026020551, -9.232372E-4, 0.0022400422, 0.013689917, -0.020222794, 0.012399985, 0.0024949075, -3.0232765E-4, -0.011942267, 0.0064669945, 0.016533313, -0.0047886968, -0.0019331633, 0.0097299665, -0.012545623, -0.0074552484, -0.0027688446, 0.0106662065, -0.0019695726, 0.003061853, 7.632961E-4, -0.015368215, -0.03259504, 0.004393395, -0.03206797, -0.0059676664, 0.02357939, 0.0101044625, 0.007802004, 0.009466432, 0.0021845612, 0.009542718, -0.0054822084, 0.012816092, -0.0017155741, -0.013551215, -0.028461711, 0.050626338, 0.0040674447, 0.018225482, 0.010042046, -0.020389238, 0.044495698, 0.017837115, 0.02477223, -0.010749428, -0.0011529628, 0.0029474238, -0.0055584945, -0.0070807524, -0.034120765, 0.0033080499, -0.005718002, -0.0068726987, 0.009258378, 0.02285814, -0.02047246, 0.060862567, 0.023343597, -0.017726153, 0.01873868, -0.0050487635, 0.017864855, 0.0034103426, 0.010714753, -0.0023648741, -0.017323917, 0.008807596, -0.010118333, 0.007725718, -0.00996576, 0.0026110706, 0.0034311481, -0.013828619, 0.0325673, -0.0139465155, -0.00694205, 0.008807596, 0.007933771, 0.02425903, 4.356119E-4, -0.024300642, -0.0012032425, 0.02832301, -0.0013289414, 0.0025261156, -0.020042483, -0.008856142, -0.00753847, -0.009147417, -0.016269779, 0.018170001, -9.570458E-4, 0.0014268999, 0.0028225917, 8.9116226E-4, 0.0021048074, -0.0016366871, 0.020139573, -0.015617878, -0.012829962, 0.031318977, -0.011318107, -0.018225482, -0.024522565, -0.028059475 ], + "id" : "c33c4969-d253-4399-8594-2dedd02579b2", + "metadata" : { + "source" : "movies.csv" + } + }, + "f650d846-b926-4939-be9b-7a069c56785b" : { + "text" : "418,6926,Matt Damon-Julia Stiles-David Strathairn-Scott Glenn-Paddy Considine-Edgar Ram�_rez-Albert Finney-Joan Allen-Tom Gallop-Corey Johnson-Daniel Br�_hl-Joey Ansah-Colin Stinton-Dan Fredenburgh-Lucy Liemann-Bryan Reents-Arkie Reece-John Roberson-Russ Huards-Mark Bazeley-Sinead O'Keefe-Charles Venn-Scott Adkins-Branko Tomoviۈ-Laurentiu Possa-Trevor St. John-Albert Jones-Jeffrey Lee Gibson-Uriel Emil Pollack-Omar Hernandez-William H. Burns-Michael Wildman-Kai Martin-Michael Ahl-Glynis Brooks-James Ciccone-Sebastian Feldman-Luis Mottola-Mark Mottram-James Schram-Brian Smyj-Paul Thornton-John Warman-Chris Wilson-Ben Youcef,paris france-corruption-madrid spain-assassin-based on novel or book-europe-prosecution-dangerous-fake identity-revelation-government-interpol-sequel-flashback-conspiracy-shootout-espionage-motorcycle-foot chase-dark past-langley virginia-moscow russia-action hero-security leak-bourne-jason bourne,/15rMz5MRXFp7CP4VxhjYw4y0FUn.jpg,/qiBILuWhv7ipF0pxiEqIJdkQzj8.jpg,2502-2501-49040-324668-36557-161-1571-10764-956-8681-56292-298-562-954-89-1572-955-10528-604-1573-605\r\n82695,Les Mis��rables,History-Drama,en,An adaptation of the successful stage musical based on Victor Hugo's classic novel set in 19th-century France in which a paroled prisoner named Jean Valjean seeks redemption.,20.899,Universal Pictures-Working Title Films-Cameron Mackintosh Ltd.-Relativity Media,12/18/12,61000000,441809770,158,Released,Fight. Dream. Hope. Love.,7.", + "embedding" : [ 0.007221265, -0.020624474, -0.020570481, -0.037037667, -0.02474127, 0.048051782, -0.009407891, 0.0010148577, -0.026981886, -0.026914397, 0.02005757, 0.04157289, 0.007437228, -0.003190517, -0.0033777973, 0.02286509, 0.016791128, -0.024997724, 0.0054868115, -0.029667927, 0.004430617, -0.007997382, -0.02484925, 0.021191375, 0.0099545475, 0.023661453, 0.029694922, -0.004660078, -0.00795014, -0.006711727, 0.015940774, -0.016926106, -0.008287583, -0.021839265, -0.02379643, 0.0032698158, 0.005638661, -0.02958694, 0.028912056, 0.008989463, 0.008766751, 0.0029003164, -0.011392051, -0.02461979, -0.012006197, 0.015252392, 0.01029199, -0.00859803, -0.0021832515, 0.034878034, 0.039143305, 0.05139921, -0.022244196, -0.021825768, -0.0077814194, 0.0068028364, -0.018572824, 0.0027923349, -0.010312237, 0.0027822116, 0.018316368, -0.018343363, -0.033312302, -0.02309455, -0.022176707, -0.0030757864, -0.0075519583, -0.013538185, 0.0017665104, 0.017533502, 0.029262995, 0.014415534, 0.025929065, 0.0025594998, 0.028291162, -0.028966047, -0.031314645, -0.010480957, 9.6339773E-4, 0.0057972586, 0.01712857, -0.010919632, -0.0038097235, -0.002242304, 0.016116245, 0.005115625, -0.0070322976, 0.031773567, -0.03180056, 0.006880448, 0.009232421, 0.03474306, -0.0075519583, 0.0017665104, 0.00859803, 0.017263548, -0.015873285, 0.018815782, -0.013470696, -0.025186693, -0.0128363045, -0.012478616, -0.010953377, -0.015279387, -0.0039278283, -0.005736519, 0.004825425, -0.004835548, 0.013416706, 0.01327498, 0.0053012185, -0.009785826, 0.016129741, -0.047619857, -0.004906411, -0.02474127, 0.021758279, -0.021380344, -0.011742991, -0.02484925, 0.023769435, 0.03946725, 0.017735967, -0.03765856, 0.046324078, 0.03946725, 0.0012535981, -0.017290544, -0.0035330208, 0.008166104, 0.028021207, -0.0069445623, 0.02660395, 0.0014493146, -0.030396802, 0.047376897, -0.016926106, 0.012559602, -0.030099852, -0.002714723, 0.02812919, 0.032718405, -0.02918201, -0.0036477512, -0.026172023, 0.012026443, 0.015171405, -0.004541973, 0.029694922, 0.0031415878, 0.021906754, 0.007140279, 0.015589834, 0.03223249, 0.012647337, -0.008827491, -5.62685E-4, 0.0023435368, -0.006100957, -0.01391612, 0.0032748773, -0.008827491, -0.012492114, -0.012309895, 0.010136766, 0.0119926995, 0.01040672, -0.019693132, -0.015738308, -0.0074237306, -0.0057736374, 0.0204625, -0.035876863, 0.015049926, -4.154758E-4, 0.02525418, 0.0020870806, -0.005911989, -0.025699604, -0.025065213, -1.6555762E-4, 0.016804626, 0.037523583, 0.037442595, -4.7705905E-4, 0.011304317, 0.021609804, -0.014496521, 0.0047748084, -0.005787135, -0.007801666, 0.018316368, 0.0039244536, -0.0066982294, -0.6427061, -0.022122717, -0.0155763365, -0.0023351007, 0.014199572, 0.011783484, 0.00678259, 0.007477721, -0.03571489, -0.014631498, -0.02128586, 0.013133254, 0.02121837, -0.01040672, -0.023027062, -0.006623992, 0.0034992765, -0.025915569, 0.0042045307, 0.0013531436, -0.02121837, 0.017681977, 0.006374285, 0.008496797, 0.0049907714, 0.0012907168, -0.010973623, -0.024309343, -0.003072412, -0.0039953166, -0.018208386, 0.01239763, 0.019747123, 0.0068332064, 0.035067003, 0.004332759, -0.021245366, 0.057392184, 0.026846908, 0.030126847, -0.033825215, -0.008017628, 0.0020702085, 0.009320156, -0.027548788, 0.023526477, 0.009947799, 0.005051511, 6.660267E-4, -0.02186626, -0.0156168295, 0.015603332, -0.0023688448, -0.011095103, 0.004508229, 9.7352103E-4, 0.009920803, -0.029262995, 0.016966598, 0.014199572, -0.023701947, 0.013362715, 0.011857722, 0.01607575, -0.002888506, 0.013821636, -0.0020668341, -0.0032529437, 0.013423454, -0.029532949, 0.0036241303, 0.0021765027, -0.011479787, -0.013902622, 0.010636181, 0.0063371663, 0.038198467, 0.0057972586, -0.010049031, 0.014496521, -0.010683423, -0.008557537, 0.0055543003, 0.021650298, 0.023162039, -0.007180772, -0.03971021, 9.785827E-4, 0.021042902, -0.0012426312, -0.0034891532, 0.021677293, 0.010730665, -0.0027923349, -0.008564285, 0.013403208, -0.02391791, 0.011311065, 0.03144962, -0.065760754, -0.011904964, -0.017560497, 0.027521793, -0.007889401, 0.021744782, 0.009623854, -0.008915225, -0.005682528, 0.029397972, -0.011108601, -0.0073359953, 3.9754919E-4, -0.020894427, -0.009907305, -0.0082673365, -0.031260654, 0.02449831, 0.018194888, -0.004514978, -0.0128767975, 0.0015201775, -0.0017125197, -0.0066509875, -0.009218924, 0.018937262, 0.036713723, -0.0058681215, -0.012600095, 0.012870049, 0.013889125, 0.0033626123, 0.0064350246, 0.027265336, -0.020260036, 5.28519E-4, 0.008085118, 0.011614764, -0.013774394, 0.005314716, -0.0013337407, -0.018869773, -0.007970387, -0.0064012804, -0.00853729, 7.052544E-4, -0.01730404, -0.027616277, -0.010683423, 1.9476748E-4, -0.01737153, -0.011277322, 0.018761791, 0.0017327662, 0.011641759, 0.0022541145, 0.004420494, -0.024997724, -0.019477168, 0.0068669505, -0.020570481, 0.0016138178, 0.014078093, -0.014280558, -0.005682528, 0.024457818, -0.005466565, -0.006424901, 0.01297803, -0.010872391, -0.014941945, 0.026226016, -0.0059862263, 1.7705176E-4, 0.021771777, -0.019855104, 0.027697263, -0.015454857, 0.026711931, 0.020138556, -0.0067454716, 0.008193099, -0.0021208248, -0.022986569, -0.021731284, 0.024916738, 0.022541145, 0.012424625, -0.0077274283, -0.008861234, -0.005186488, -0.010615935, -0.0014214757, -0.008571034, -0.009245919, 0.0029070654, 0.028291162, 0.013706906, -5.8461877E-4, 1.5965238E-4, -8.773499E-4, 0.04648605, 0.028453134, 0.018977754, 0.0017057707, 0.0151849035, -0.027994212, 0.006823083, -0.016534673, 0.010568692, -0.006998553, 0.022473656, -0.025740098, -0.018896768, 0.0010561944, 0.01374065, 0.021056399, -0.014024101, 0.013160249, -0.013396459, 0.0024633287, 0.0067623435, -0.0010047344, 0.017385026, 0.018518833, -0.02725184, -0.008159354, 0.018167892, -0.023013564, -0.0018879896, -0.013072514, -0.0074237306, 0.005895117, 0.0072010183, 0.0072955023, -0.0010258246, -0.024484813, 0.022095721, -0.009198677, 0.0491046, -0.011000618, -0.0040594307, 0.021002408, 0.011648508, -0.0018846152, 0.00305554, -0.017965427, 0.008314578, 0.023782933, -0.02385042, 0.045892153, -0.009212174, 0.03180056, 0.0036646232, 0.0053990767, -0.0027889605, -0.0111895865, -3.7266282E-4, 0.029829899, 0.030801732, 0.021555813, 0.011668755, -0.019045243, 0.017600989, 0.014172576, 7.4490387E-4, -0.003271503, -0.026441978, -0.0018609943, -0.009259417, -0.042139795, -0.027008882, -0.010885889, 0.0059423586, 0.0018221884, -0.007747675, -0.009610357, -0.002696164, 0.016831622, 0.020664966, 0.016237723, -0.008550787, -0.0333393, 0.009785826, 0.026064042, -0.014118586, -0.022986569, -0.017789958, -0.013983608, -0.03881936, -0.016305212, -0.0156168295, 0.03223249, -0.025092209, 0.004157289, -0.010399971, -0.0042079054, 0.028426139, -0.015562839, 0.014294055, 0.010892637, -0.0057398933, 0.0053653326, 0.0073359953, -0.00952937, 0.018356862, -0.010049031, -0.0030825352, -0.007821912, 0.0039885677, -0.006198815, -0.0035802627, 0.012370635, -0.033825215, 0.0061853174, -0.011452791, -0.0022642377, -0.014496521, 0.011324563, 0.007909647, -0.010771158, -0.008719509, -0.030315815, -0.021974241, -0.008118861, 0.07294153, 0.048510704, 0.016966598, 2.1090143E-4, 0.0017749465, -0.0058006328, -0.008490048, -0.0151849035, -0.009549617, -0.0010131705, 0.02848013, -0.018410852, 0.025578126, 0.0019048618, 0.018275874, 3.1529763E-4, -0.007403484, -0.006239308, -0.0066037457, -0.009893808, -0.02263563, -0.012755319, 0.021056399, 0.017803455, 0.009698091, -0.012100681, 0.030099852, 0.0023485983, -0.0056150397, 0.017978925, -0.0047275666, 0.0027045999, 0.0017901313, 0.014928447, -9.6424134E-4, -0.0046263337, 0.029856894, -0.003359238, 0.033636246, 0.0071200323, -0.010379725, 0.0022068727, -0.0016863679, 0.0054800627, 0.021069897, -0.03169258, -0.025510637, 0.0257266, 0.037766542, -0.038279455, 0.018181391, 0.00432601, -0.029451963, -0.0027940222, 0.021636799, 6.3565694E-4, -0.010825149, 0.0012206975, -0.024484813, 0.0088004945, -0.0026033672, -0.04494731, 0.0123638855, -0.009806073, 0.0027062872, -0.01731754, -0.01795193, -0.0046567037, -0.025996555, 0.0077679213, 0.008051373, -0.031908542, -0.004771434, -0.0073629906, 0.019787615, -0.005314716, 0.024390329, -0.016980097, 0.0051898626, -0.0047275666, -0.04276069, -0.023620961, 0.006030094, -0.004015563, -0.003630879, 0.0063877827, -0.0026202393, 0.017115073, -0.010467459, 0.013821636, 0.007234763, -0.0016610597, -0.023593964, -0.022271192, 0.0438675, 0.0103459805, 0.01496894, 0.009779078, 0.006924316, -0.006030094, 0.0011279009, -0.024403827, -0.0078084148, -0.0125731, -0.004123545, -0.009394393, 0.0013404895, 0.007005302, -0.017560497, -0.018748295, -0.028750082, -0.01730404, -6.311225E-5, 0.002912127, 0.014671991, 0.003031919, 0.010912884, 0.009637352, 0.0068332064, 0.0016416567, 0.0025864951, -0.012411128, 0.011466289, 0.027116863, -0.011331312, 0.028831068, -0.008679016, -0.023674952, 0.004963776, 0.033987187, -0.0029863643, 0.024822256, -0.027062872, 0.0014763101, -0.010318985, -0.027697263, 0.012181667, -0.001923421, -0.015873285, 0.022919081, -0.016399695, -0.0038198468, 0.0054395697, 0.008220094, -0.009029956, -0.02725184, 0.015346875, -0.026819913, 0.009927552, 0.03876537, -6.522127E-5, 0.0038637142, -0.021123888, -0.006273052, -0.012951035, -0.02667144, -0.023890914, -0.012822807, 0.023593964, -0.0016813062, 0.045892153, -0.008199847, 0.033420283, 0.009509124, 0.0152658895, 0.021771777, -0.012525857, -0.011817229, -0.017641483, 0.008496797, 0.02327002, 0.018694302, 0.0018390605, 9.558053E-4, -0.0040594307, 0.029775908, 0.0076126982, 0.01321424, 0.0021714412, -0.019031744, -0.026927894, 0.007956889, -0.029451963, -0.010399971, -0.027508296, -0.013045519, 0.026927894, -0.0093539, -0.011614764, -0.0050076437, 0.027697263, -0.012073685, 0.011263824, -0.016413193, 0.011668755, -0.037766542, 0.0071605253, -0.020799942, 0.0020870806, -0.006246057, -0.023512978, 0.03414916, -0.002520694, -0.01865381, -0.013032021, 0.030099852, -0.022460159, -0.014631498, 0.02578059, -0.015103917, -0.0075789536, -0.023121545, -0.009839817, -0.030369807, -0.021717785, 0.0034031055, -0.0077881683, 0.009218924, -0.021893255, -0.036686726, 0.020206043, -0.0028294537, 0.03069375, 0.0095631145, 0.041707866, 0.023674952, 0.006823083, -0.02818318, 0.014887954, -0.011371805, 0.009826319, 0.03339329, 0.023904411, -0.01327498, -0.01712857, 0.0017066144, 0.011533777, -0.028426139, -0.026280006, 0.038441427, 0.03204352, 0.023836924, -0.022959573, -2.35366E-4, -0.026037047, 0.027521793, 9.3049713E-4, 0.01105461, 0.010082776, -0.030207833, -0.018883271, 8.832552E-4, -0.0028581363, -0.0034992765, 0.0054058256, -0.031422626, 0.019841606, -0.024579296, 0.011317815, 0.001882928, -0.0078084148, 0.03104469, -0.020570481, 0.0123638855, 0.014105088, 0.01607575, 0.0020702085, -0.004467736, -0.0027569034, 0.02718435, -0.013025273, 0.011081605, 0.005345086, 0.0010477583, 0.01800592, 0.011311065, -0.01783045, -0.013180496, -0.018167892, -0.013173747, 0.029505953, -0.0037388606, -0.0033929823, 0.013059016, -0.011587768, -0.026981886, 0.011823978, -0.015360373, 0.009866812, -0.036632735, 0.005105502, -0.0039683213, 0.007221265, -0.010332483, -0.005864747, 0.0047815572, -0.0017783209, 0.004039184, -7.714774E-4, -0.0010005163, -0.016588664, -0.009664347, -0.029964875, -0.020651469, -0.017600989, 0.0024886369, -0.004302389, -0.0103864735, 0.008476551, 0.005898491, 0.008199847, -0.009576612, 0.013416706, -0.019139728, 0.0011852661, 0.020219542, -0.012141174, -0.004930032, 0.001204669, 0.023823425, -0.010251497, -6.495764E-4, -0.0022237448, 0.022770606, 0.033987187, -0.017331036, -0.0022220574, 0.0029796155, -0.012228909, -0.008631774, 0.0152658895, 0.024079882, 0.010109771, -0.0063877827, -0.03474306, -0.014361544, -9.988291E-4, 0.037226632, -0.009684593, 0.0123638855, 0.028156186, 0.007821912, 0.027940221, 0.029694922, -0.0068635764, -0.028075198, -0.002114076, -0.018869773, -0.018788787, -8.9590927E-4, -0.007862405, 0.004811927, -8.6300867E-4, -0.0023013565, -0.024295844, -0.012451621, -0.021002408, -0.02777825, 0.0053079673, 0.01982811, 0.042544723, 0.023944905, -0.0046634525, -4.6060872E-4, 0.017398525, -0.0019892224, -0.009718338, -0.0055205557, 0.024970729, 0.0103459805, 0.017236553, 0.030882718, -0.033582255, -0.0049738996, 0.012694579, 0.021906754, 0.010784656, 0.008233592, -0.014429033, -0.018370358, 0.0033761102, -0.01064293, -0.010804902, -4.0176723E-4, 0.026968388, -0.022284688, -0.0068264576, 0.011533777, 0.016993593, -0.0048389225, 0.005638661, 0.0018491837, -0.012681081, -0.0058040074, -0.014105088, -0.020179048, -1.8865133E-4, -0.026239512, 0.01712857, 0.017938431, 0.0024397078, 0.033015355, 0.02783224, -0.0012932476, 0.023526477, -0.0083280755, 0.00298299, -0.019045243, -0.0067859646, -0.0023705321, 0.02525418, -0.029020038, 0.016453685, -0.025740098, -0.0013025273, -0.0064383987, 0.002345224, 0.0063641616, 0.037685554, 0.021137385, -0.057662137, 0.016399695, -0.017236553, 0.0046263337, -0.010082776, 0.001906549, -0.017385026, -0.027008882, -0.0065126363, -0.0022220574, -0.019085735, -0.02251415, 0.012174918, -0.020489495, -0.006964809, 0.01672364, 0.17795357, -0.007268507, 0.00435638, 0.048834648, 0.0012789062, 0.0055880444, 0.032124504, 0.013450449, -0.008496797, 0.021056399, 0.001739515, -0.009488877, 0.0041842842, 0.009252667, 0.021569312, -0.012154671, -0.026846908, -0.031287648, -0.017412022, -0.026441978, -0.0064991387, 0.014537014, -0.010663176, -0.023782933, 0.007099786, 0.012694579, -0.006374285, 0.005243853, 0.013342468, -4.0471985E-4, -0.013382961, -0.011412298, -0.008625025, 0.0087600015, -0.010656428, -0.008118861, -0.023661453, 0.0061583216, 0.011412298, 7.482783E-4, 0.002785586, 0.0026320498, -0.013342468, -0.010615935, 0.011655257, 0.023121545, -0.030909713, 0.007389986, -0.029856894, 0.010420218, -0.03374423, -5.6816847E-4, 0.01602176, 0.025227185, -0.006671234, -0.021839265, 0.01333572, 0.008031126, -0.020934919, 4.6524857E-4, 0.014887954, 0.027440807, -0.0132682305, 0.015414364, 0.0029222502, 0.013551682, -0.048861645, -0.021029403, 0.01649418, -0.030801732, -0.011236828, -0.027602779, -0.014887954, 0.012195164, -0.0045116036, -0.0040999237, 0.004784932, 0.003614007, -0.008604778, 0.012802561, -0.03490503, -0.023081053, 0.0124448715, -0.012107429, -0.014186074, -0.022203702, 0.012343639, -0.011655257, -0.013733901, -0.019720128, -0.012208662, -0.030558774, -0.011608015, -0.008894979, -0.0050245156, -0.001416414, 0.027724259, 0.015427861, -0.013956613, 0.0034166032, -0.032691408, 0.026253011, 0.018896768, -0.0050886297, -0.028102195, -0.026333997, -0.010865642, 0.0011270572, 0.027575783, -0.009144686, -0.026037047, -0.028210176, -0.008064871, -0.0012746883, -8.0564345E-4, 0.013443701, 0.003910956, -0.010609185, 0.037577573, -0.019220714, 3.096033E-4, -0.02386392, 0.018896768, -8.6258684E-4, -2.145922E-4, -0.029209005, -0.039251287, 0.005456442, -0.002235555, -0.033663243, 0.013416706, -0.016953101, 0.0074574747, 0.0061583216, 0.0028952549, 0.018950759, 0.015090419, -0.0060537145, 0.0052303555, 0.0012637214, -0.006566627, -0.0245658, 0.010143516, 0.015130912, 0.011702498, -0.011803731, 0.009495626, -0.008442806, -0.011324563, -0.025402656, -0.025470143, -0.002751842, 0.014860959, 0.021326352, 0.043057635, -0.004477859, -0.024984227, -0.046054125, -0.02005757, 0.030504784, -0.044488393, 0.008874732, 0.018046414, 9.41464E-4, -0.026037047, -0.0029222502, -0.17287843, 0.015657322, 0.015198401, -0.022217201, 0.013835134, 0.014037599, 0.02379643, 0.0033086217, -0.004110047, -0.017398525, 0.021717785, -2.2313371E-4, -0.03995317, 0.004724192, -5.0869427E-4, 0.018964257, -0.0046229595, 0.030153843, 0.02853412, 2.9167667E-4, 0.04667502, -0.0031449622, -0.008179601, -0.0039784447, 0.00824034, -0.009077198, 0.031206664, 0.008179601, -1.0935239E-4, -0.01789794, -0.037685554, -0.0019200466, 0.019247709, 0.01005578, -0.016926106, 0.0012105742, -0.008982713, -0.021744782, -0.006748846, -0.013436952, 0.047349904, 0.010487706, 0.006718476, 0.0024802007, 0.011628262, 0.01134481, 0.0345001, -0.02274361, 0.01882928, -0.006964809, 0.002385717, -0.024970729, 0.023404997, -0.008733006, -0.0057972586, 0.030369807, 0.014429033, 7.2676636E-4, 0.0071537765, 5.2008295E-4, -0.042166788, -0.0010005163, 0.0043091383, -0.004936781, -0.008894979, -0.0192882, -0.0136394175, 0.002832828, -0.036605738, 0.012417876, -0.011385303, 0.001172612, 0.011857722, -0.0015674194, -2.1432857E-5, -0.017749464, -0.034419112, 0.009819571, -0.0056994003, 0.0020145306, -0.018059911, 0.03852241, -0.003455409, 0.011817229, -0.005179739, -0.0066813575, 0.020449003, 8.081743E-4, 0.0069850553, -0.020610975, 0.0057230215, -0.017398525, -0.03063976, 0.008631774, 0.0075857025, -0.007180772, -0.0046229595, 0.009313407, 0.01479347, -0.007558707, 0.0059086145, -0.023458987, -0.016237723, 0.019544657, 0.024876246, 0.006424901, -0.002785586, 0.019490667, 0.017263548, 0.0135989245, -0.008611527, -0.0034824044, 0.01297803, 0.010258245, -0.026226016, 0.0111490935, -0.012951035, -0.030045861, 0.00593561, 0.03485104, 0.037955508, 0.0054058256, 0.01777646, -0.0069715576, -0.0023840298, -0.015387368, -0.08233592, -0.007619447, 0.013646166, 0.0386034, -0.01795193, 0.053126913, -0.013059016, 0.0032698158, -0.030936709, 0.020152053, 0.007531712, -0.026333997, 0.018383857, -0.001850871, 0.014658493, -0.0028260793, -0.024052886, -0.013234487, -0.01865381, 0.017560497, -0.0023502856, -0.01900475, 9.853315E-4, -0.019855104, -0.01731754, 0.01712857, -0.022257693, 0.019369187, 0.014550512, 0.017762963, 0.015765304, -0.034041177, 0.0095226215, -0.034824044, -0.015292885, -0.035633907, -0.024106877, -0.0245523, -0.0015437985, -0.051966112, -0.0056285374, 0.02239267, 0.011446043, -0.01953116, -0.013571929, -0.003526272, -0.035984848, 0.020260036, -0.01742552, -0.024268849, 0.0046297084, -1.2422094E-4, -0.019733625, -0.02314854, 0.021056399, 0.02474127, 0.027089868, -2.1142869E-5, -0.016359203, -0.01011652, -0.0038198468, -0.0051594926, -0.019369187, 0.014591005, 0.0107981535, 0.007410233, -0.0048490455, -0.008402313, 0.019922594, -0.014725981, -0.025794089, 0.035930853, -0.029451963, -0.010946628, -0.01531988, 0.013443701, -0.029532949, -0.0075519583, 0.019085735, -0.020543486, -0.0045588454, -0.032691408, 0.0096441, -0.00576014, -0.0017344534, 0.02193375, 0.015549341, 0.019423177, -0.018640311, -0.035120994, -0.014348046, 0.013450449, 0.016615659, -9.45682E-4, -0.008139108, 0.01496894, 0.016791128, -0.0046634525, -0.008233592, 0.003549893, -0.023404997, 0.0033659867, -0.07056593, 0.025659112, -0.025699604, -0.0067218505, -0.0030606017, -0.022028232, 0.009799324, -7.06098E-4, -8.153449E-4, 0.006951311, -0.007261758, 0.007902899, -0.0023553472, 0.008044624, -0.006661111, 0.0136596635, 0.010332483, 0.010433716, 0.0026995384, 0.0044238684, -0.022311684, -0.007005302, 0.020165551, 0.0032984985, 0.0023688448, 0.019571653, -0.0052134832, 0.0037861024, -0.021434335, -0.0011160903, 0.030450793, -0.016818123, -0.0041134213, 0.0061313263, -0.011027614, -0.017560497, -0.0034435985, 0.0018289372, 0.016926106, 0.008112113, -0.0071875206, -0.017047584, 0.004936781, -0.0014931821, 0.0020381515, 0.014213069, -0.027022379, 0.009421389, 0.013146752, 0.00795014, 0.02263563, 0.013997106, -0.0031247155, -0.02051649, 0.009657598, -0.02988389, 0.033069346, 0.0076329447, -0.0019082362, -0.016966598, 0.03455409, -0.005220232, 0.024646785, -0.026752425, 0.009664347, -1.3571508E-4, 0.015252392, -0.0053079673, -0.0017530126, -0.027805245, -0.0193017, -0.007180772, 0.011756489, 0.035174984, 0.024687277, 0.00959011, 0.0070187994, -0.0019588524, 0.0043125125, 0.010865642, 0.017695474, -0.004214654, -0.031233659, 0.029721918, 0.0013016836, 0.012789063, -0.00865877, 0.023135044, 0.007558707, 0.020475999, 1.3824589E-4, 0.008172852, 0.013781143, 0.0059491075, 0.0074979677, 0.011014116, -0.015859788, -0.020907924, -0.0070660417, 0.027508296, -0.015549341, 0.0033288682, -0.030072857, -0.020921422, -0.025645614, 7.090506E-4, -0.014186074, -0.01742552, 0.018100405, 0.016116245, 0.03871138, 0.019679634, -0.008530541, 0.007309, -0.03414916, 0.0014383477, 0.002664107, -0.013929618, -0.0026624196, 0.036605738, 0.023202531, 0.012525857, 0.048699673, -0.010730665, 0.05420673, -0.0032343843, 0.019868603, -0.030477788, 0.0024700775, -0.0021208248, -0.008321327, -0.0083483225, -0.0049604014, 0.010784656, -0.0076059494, -0.014361544, 0.005847875, 0.03374423, -0.019382685, 0.07510116, 0.020071067, -0.002871634, 0.012492114, -0.004683699, 0.02111039, 0.01192521, 0.02642848, -0.020948417, -0.0054429444, -6.550598E-4, -0.008706011, -0.0032664414, -0.041842844, 0.01099387, 2.65314E-4, 0.00713353, 0.016251221, -0.015562839, -0.009434886, -0.007970387, 0.004859169, 0.0030859096, 0.0048456714, -0.0023755936, -0.010548446, 0.015522345, -0.011392051, 0.0042349007, -0.02321603, 0.0045925896, -0.025564628, -0.0034824044, 0.0046229595, 0.027589282, 0.008672267, -0.0037894768, -0.003104469, 0.025443148, 0.003246195, -0.024025891, -0.0050312644, -0.0251462, -0.01801942, 0.016737137, -0.0039042074, -0.009083946, -0.036173813, -0.010480957 ], + "id" : "f650d846-b926-4939-be9b-7a069c56785b", + "metadata" : { + "source" : "movies.csv" + } + }, + "61d07695-742e-4bb7-b35e-cc56c1af6b07" : { + "text" : "Pictures,3/1/22,185000000,770945583,177,Released,Unmask the truth.,7.714,8191,Robert Pattinson-Zo� Kravitz-Paul Dano-Jeffrey Wright-John Turturro-Peter Sarsgaard-Andy Serkis-Colin Farrell-Jayme Lawson-Gil Perez-Abraham-Peter McDonald-Con O'Neill-Alex Ferns-Rupert Penry-Jones-Charlie Carver-Max Carver-Barry Keoghan-Kosha Engler-Archie Barnes-Janine Harouni-Hana Hrzic-Joseph Walker-Luke Roberts-Oscar Novak-Stella Stocker-Sandra Dickinson-Jack Bennett-Andre Nightingale-Richard James-Neale-Lorraine Tai-Joseph Balderrama-James Eeles-Dave Simon-Angela Yeoh-Leemore Marrett Jr.-Ezra Elliott-Itoya Osagiede-Stewart Alexander-Adam Rojko Vega-Heider Ali-Marcus Onilude-Elena Saurel-Ed Kear-Sid Sagar-Amanda Blake-Todd Boyce-Brandon Bassir-Will Austin-Chabris Napier-Lawrence-Douglas Russell-Phil Aizlewood-Mark Killeen-Philip Shaun McGuinness-Lorna Brown-Elliot Warren-Jay Lycurgo-Stefan Race-Elijah Baker-Craige Middleburg-Akie Kotabe-Spike Fearn-Urielle Klein-Mekongo-Bronson Webb-Madeleine Gray-Ste Johnston-Arthur Lee-Parry Glasspool-Jordan Coulson-Hadas Gold-Pat Battle-Bobby Cuza-Dean Meminger-Roma Torre-Mike Capozzola-Amanda Hurwitz-Joshua Eldridge-Smith-Daniel Rainford-Nathalie Armin-Jose Palma-Kazeem Tosin Amore-Rodrig Andrisan-Craig Douglas,crime fighter-secret identity-nightclub-politician-police-psychopath-vigilante-superhero-based on comic-organized crime-serial killer-millionaire-social injustice-murder investigation-aftercreditsstinger-masked superhero-political corruption-neo-noir-vengeance-mayoral election,/74xTEgt7R36Fpooo50r9T25onhq.jpg,/b0PlSFdDwbyK0cf5RxwDpaOJQvQ.jpg,327749-360606-1010821-1028938-453395-773867-634649-146034-526896-335787-572261-454467-253805-639933-253021-338953-508947-361743-100784-524434-696806\r\n591,The Da Vinci Code,Thriller-Mystery,en,A murder in Paris�� Louvre Museum and cryptic clues in some of Leonardo da Vinci��s most famous paintings lead to the discovery of a religious mystery. For 2000 years a secret society closely guards information that ��� should it come to light ��� could rock the very foundations of Christianity.,39.207,Imagine Entertainment-Skylark Productions,5/17/06,125000000,767800000,149,Released,Seek the truth,6.", + "embedding" : [ 0.016725106, -0.022582252, -0.00902081, -0.038958076, 8.404534E-4, 0.04288075, -0.0025675388, -0.012513603, -0.01986862, -0.025860103, 0.017074386, 0.042397134, -0.0076572774, -0.013192011, 0.011942666, 0.0074154683, 0.013742798, -0.028479697, 6.653939E-4, -0.03713108, 0.006643024, 0.0074759205, -0.03334274, -0.0037178097, 0.005279491, 0.0104918135, 0.025658596, -0.009813406, -0.00728113, -0.0016221338, 0.015771305, -0.017880414, -0.00884617, -0.015099613, -0.019331267, 0.008906622, 0.005088059, -0.028748374, 0.016577333, -0.0023559562, 0.013904003, 0.0073415823, -0.0038252801, -0.026894508, -0.0132255955, 0.016993782, 0.020459708, -0.005212322, -0.007449053, 0.043418106, 0.01638926, 0.03662059, -0.016174318, -0.025349617, -0.0064482335, -0.007811766, 0.002384503, -0.003116646, -0.0011418747, 0.007925954, 0.018995421, -0.036378782, -0.034175638, -0.015462327, -0.014750334, -0.013306199, -0.02001639, 0.010135817, 0.008738699, 0.0027119524, 0.023240509, 0.029608138, 0.01143218, -0.008577494, 0.028130418, -0.038662534, -0.019720847, 0.0012913259, 3.0142133E-4, 0.005470923, 0.016335525, 0.0014357395, -0.011311276, -0.0047085537, 0.009840273, 0.008093877, -0.009202166, 0.041967254, -0.03014549, 0.012097155, 0.007919237, 0.026706433, -0.007946105, 0.008241649, -0.01178146, 0.021480678, -0.012916618, 0.031058991, -0.006857965, -0.02187026, 0.0026397456, -0.0032291545, -0.007153509, -0.015408591, 0.0015331347, -0.019573076, 0.011949383, -0.003425624, 0.006733702, 0.0048462506, 0.004423085, -0.0022904663, 0.0211717, -0.035760827, 0.011190372, -0.010202986, 0.023710692, -0.0052257557, 0.0012778922, -0.015435459, 0.027015412, 0.03017236, 0.0050175316, -0.042477738, 0.043901723, 0.023724126, 0.003993203, -0.015704134, 0.022219539, -0.009450692, 0.031112727, -0.005601903, 0.023764428, 0.010894828, -0.025094375, 0.045486912, -0.013944305, 0.015489195, -0.02451672, -0.011210523, 0.033450212, 0.024140574, -0.023831597, -0.022461347, -0.023267375, -0.005353377, -0.0021544488, 0.0010453191, 0.027284088, 0.0013937588, 0.031703815, 0.013366651, 0.012372548, 0.014750334, 0.018337164, -0.0036069807, -0.006323971, 8.9166977E-4, -0.00539032, -1.8481998E-4, -0.027055712, 0.010968714, -0.013850268, -0.009309637, 0.021225436, 0.017249025, 0.02169562, -0.024812264, -0.0011141674, -0.009141714, -0.014965275, 0.028828977, -0.034659255, 0.01860584, 0.0012417887, 0.019049156, 0.001421466, -0.020110428, -0.032187432, -0.010370909, 0.018269995, 0.015207084, 0.033530813, 0.038044576, -0.010485096, 8.690002E-4, 0.02447642, -0.0258198, 0.0018001319, -0.0064616674, -0.0034356995, 0.014924973, 0.020862723, -0.011438898, -0.6392349, -0.015636966, -0.0039529013, 0.010740339, 0.025739199, 0.011452331, 0.004258521, 0.0039596185, -0.035948902, -8.6480216E-4, -0.008033425, 0.0027085938, 0.011895647, -0.021547846, -0.018874517, -0.01836403, -0.0029369688, -0.010303739, -1.1072406E-4, 0.006031785, -0.039683502, 0.021467244, 0.02743186, 0.0072475458, 0.0047958735, 0.012130739, -0.0023542768, -0.016026547, 0.008275233, -0.006851248, -0.020164164, 0.0043088975, 0.015569797, 0.008483457, 0.0294738, -0.010679887, -0.005255982, 0.055132397, 0.022394177, 0.032912858, -0.02584667, -0.008228214, 0.0104515115, 0.011754592, -0.016953481, 0.02264942, 0.0015406912, -0.004503688, 0.011056034, -0.015408591, -5.2528336E-5, 0.0045607816, -0.008570777, -0.015005576, 0.0043290486, 0.0153414225, 0.014535393, -0.028882712, 0.024879433, -0.0026901225, -0.022246405, 0.004355916, 0.010337324, 0.002562501, -0.0066094394, 0.032268036, 0.010659736, -0.0041980688, -0.007919237, -0.03143514, 0.018229693, 0.010397776, 0.0019143193, -0.009188733, 0.0072475458, -0.0027522538, 0.043874856, -0.006763928, -3.7677668E-4, 0.0020234692, -0.0020620914, -0.008698398, -0.012291945, 0.017571436, 0.013077823, -1.5375427E-4, -0.034551784, 0.018055053, 0.022421045, 0.010787358, 0.0024164084, 0.02334798, 0.0011922515, 0.0150458785, -0.009376806, 0.004567499, -0.008826019, 0.0027153108, 0.02469136, -0.04253147, -0.0040469384, -0.012587489, 0.014710032, 0.0033550966, 0.030118624, 0.016483298, -0.01315171, -0.009618615, 0.039307356, -0.023482317, -0.0058873715, -0.003286248, -0.014132379, -0.0096253315, -0.0075632404, -0.028775241, 0.028936448, 0.022555383, 0.010142534, -0.009571597, 0.005541451, 0.01804162, -2.7644282E-4, -0.01923723, 0.021010494, 0.03527721, -0.016940046, -0.007831917, 0.005219039, 0.0048865518, 0.0076304097, -4.928533E-4, 0.018874517, -0.029043918, -0.011680706, 0.01058585, 0.018269995, 5.121644E-4, -0.008684965, 1.469324E-4, -0.028022949, -0.010914979, -0.013413669, -0.004789157, -0.009235751, -0.018256562, -0.011385162, -0.0070393216, -6.095596E-4, -0.0062702354, -0.0137965325, 0.002141015, -0.0052996418, 0.004040221, 0.008839454, -0.003188853, -0.02334798, -0.02732439, 0.005957899, -0.026142213, 0.014642864, 0.030736579, -0.009551446, -0.027485596, 0.027203485, -3.5452688E-4, -0.0010998939, 0.015287687, -0.0051048514, -0.016872877, 0.025967574, -0.008570777, 0.006763928, 0.02008356, -0.013655478, 0.025443655, -0.009591747, 0.0112978425, 0.0073482995, -0.0025944065, -6.5070065E-4, -6.578374E-4, -0.035465285, -0.009806688, 0.020379104, 0.02004326, 0.010135817, -0.0068848324, 0.0014768805, 0.01371593, -0.014898106, -0.013333066, 0.0020184314, -0.002104072, 0.013527856, 0.044465944, 0.018726744, -0.0123994155, -0.0043995758, 0.0011040921, 0.032375507, 0.045057032, 0.015972812, 0.016335525, -0.0031938907, -0.029769344, 0.014038342, -0.021252302, 0.0028916297, -5.992743E-5, 0.027512463, -0.014602562, -0.013642044, 0.0041812765, -0.0056825057, 0.04124183, -0.019882053, 0.013568158, -0.03425624, 0.0026565378, 0.006068728, -0.011163504, 0.02152098, -0.0035163022, -0.029527536, -2.865182E-4, 0.020002957, -7.2416686E-4, -0.0032728142, -0.032187432, -0.0133465, -0.005618695, -0.0077311634, 0.01234568, -0.004449953, 6.3222914E-4, 0.008980509, -0.017947583, 0.034336843, -0.009336505, -0.015529496, 0.022783758, 0.010485096, -0.01134486, 0.0016112188, -0.005836995, 0.027096014, 0.023549486, -0.012748695, 0.045863062, -0.0175177, 0.02373756, 0.0032308337, 0.011667272, 0.010841092, -0.013232312, 0.006266877, 0.020405972, 0.026934808, 0.026948242, 0.012305379, -0.0133733675, 0.029635007, 0.006659816, 0.014871239, 0.0016263318, -0.022259839, -0.011459048, -0.0036640742, -0.02268972, -0.012513603, -0.017598303, 0.02912452, 0.0024180876, -0.007811766, -0.019331267, -0.011600103, 0.022783758, 0.004345841, 0.020271635, -0.010202986, -0.040220857, 0.009128281, 0.024557022, -0.011479199, -0.0377759, -0.01399804, -0.014212981, -0.041913517, -0.011270975, -0.013904003, 0.009316354, -0.023401713, -0.0032207582, -0.00884617, -0.02317334, 0.018525237, -0.01856554, 0.010182835, 0.010827659, -0.011479199, 0.009618615, -0.0069721523, -0.010283589, 0.028748374, -0.0018958478, 6.1333785E-4, 0.0035901882, 0.0015877095, -0.016456429, 0.005541451, 0.024315214, -0.038420726, 0.01325918, -0.0085439095, 0.007012454, -4.7270252E-4, 0.006266877, -0.0093499385, -0.0011443935, -0.016093716, -0.034417447, -0.028425962, -0.017678907, 0.0883408, 0.045809325, 0.01176131, 0.003580113, -0.023401713, 0.01021642, -0.0047857985, -0.00510821, -0.005175379, 0.001125922, 0.026263118, -0.01547576, 0.024704795, 0.01997609, 0.0063609136, -0.0020704875, 0.0038790153, -0.0037749032, -0.0016464825, -0.013769665, -0.026276551, -0.0126748085, 0.026034743, 0.024597324, 0.0041006734, -0.031247064, 0.019747715, 0.0053265095, -0.0047421386, 0.012681526, -0.014051775, 0.0151936505, -6.062011E-4, 0.010397776, -0.010659736, -0.0069923033, 0.036808666, 6.011634E-4, 0.03369202, 0.024785398, -0.0072005275, 0.007375167, 0.00313008, -0.0034138695, 0.007375167, -0.03062911, -0.024745096, 0.027942345, 0.034095034, -0.039253622, 0.0067605698, -0.0051115686, -0.023468884, -0.008053575, 0.0202582, -0.013279331, -0.006223217, -0.006814305, -0.03253671, 0.0057530333, -0.019882053, -0.026961677, 0.009134998, -0.016657937, 6.842852E-4, -0.015838474, -0.0041779177, -0.003751394, -0.021373207, 0.01593251, 0.008496891, -0.026263118, -0.015059312, -0.005867221, 0.012184475, -0.0044096513, 0.019425303, -0.0110426, 0.028049815, 0.01004178, -0.036808666, -0.045701854, 0.012291945, -0.032348637, -0.018055053, 0.0055313753, -0.0030629109, 0.008510325, -0.0029268935, 0.019210363, -0.004473462, 0.016362393, -0.010854526, -0.01754457, 0.027942345, 0.0017783019, 0.0114254635, 0.030064888, 0.008167762, -0.005286208, 0.010364192, -0.0076505602, -0.0013333067, -0.02349575, -0.008725266, -0.004644743, -0.0054574893, 7.10733E-4, -0.013574875, -0.008570777, -0.017222157, -0.023965934, 0.004527197, 0.0138234, 0.011492632, -0.005692581, 0.010941846, -0.007146792, 0.0044163684, -0.01252032, -0.013050956, 0.012762128, 0.016510164, 0.020311935, 0.0069184173, 0.020298501, -0.015919076, -0.028076684, 0.010579133, 0.035196606, -0.0076975785, 0.011680706, -0.009188733, -0.0015969453, -0.0065389117, -0.032026228, 0.01217104, -0.010290306, -0.014535393, 0.019035723, -0.012446434, 0.0020939966, -0.003764828, 0.0066631744, 0.0071132076, -0.031005256, 0.01758487, -0.010303739, 0.011136636, 0.03151574, -0.0095178615, -0.0031216838, -0.01769234, -0.002975591, -0.01417268, -0.035304077, -0.028076684, -0.013682345, 0.020137295, -0.0021645243, 0.049328987, -0.006703476, 0.017249025, 0.012782279, 0.001749755, 0.023965934, -0.008402854, -0.0035398116, -0.036136974, 0.011049316, 0.0065489872, 0.015704134, 0.009188733, -0.006132539, 0.01241285, 0.022098633, 0.0059243143, 0.023589788, 7.203886E-4, -0.018659575, -0.025443655, 0.0019831676, -0.028130418, 0.0027791215, -0.018122222, 0.0075699575, 0.034175638, -0.00745577, -0.012224776, -0.017034084, 0.03723855, -0.01362861, 0.010626151, -0.021588149, 0.015395157, -0.019385003, 0.0022333725, -0.020405972, 7.640485E-4, 6.993982E-4, -0.012788996, 0.020231333, 0.009887291, -0.018202826, -0.0047522136, 0.017638605, -0.003647282, -0.027351256, 0.022421045, -0.012788996, -0.0096454825, -0.019573076, -0.019559642, -0.032912858, -0.0039831274, -0.009867141, -0.018659575, 0.00469512, -0.012956919, -0.042209063, 0.03788337, 0.0015222197, 0.047367647, 0.022609118, 0.048308015, 0.03095152, -0.002821102, 8.807548E-4, 0.025349617, -0.016080283, -0.0028093476, 0.02714975, 0.023939067, -0.016187754, 7.8084075E-4, -0.0013710893, -0.0028043098, -0.038877476, -0.03232177, 0.023764428, 0.030467903, 0.028882712, -0.024570456, -1.2457768E-4, -0.02500034, -5.810127E-4, -0.026894508, 0.020110428, 0.006481818, -0.030091757, -0.009833556, -0.013272614, 0.0022770325, 0.008940207, -0.0039965613, -0.022313574, 0.010861243, -0.027337823, 0.015569797, -0.006481818, -0.021332907, 0.014656297, -0.0064784596, 0.020701516, 0.027203485, 0.006703476, 0.005706015, -0.0031367969, -0.008893189, 0.03027983, -0.023334544, -0.0034760009, -0.019747715, -0.014521959, -0.0015003898, 0.014548827, -0.022783758, -0.025618294, -0.025631728, 0.001897527, 0.028479697, 0.00736845, -0.008691682, -0.011741159, -0.0132457465, -0.016953481, -1.5270474E-4, -0.0018186034, 0.012614356, -0.033154666, 0.010122383, -0.0037312433, -0.007059472, 0.002775763, -0.0027438577, 0.0062131416, -0.0066329483, 0.014844371, -0.014938408, -0.0036069807, -0.003256022, -0.019640245, -0.034766726, -0.023092736, -0.02532275, -0.013662195, 0.0036573573, -0.0151936505, 0.0041443333, -0.008134178, -0.0062131416, -0.0069587184, 0.012016552, -0.030252961, 6.7001174E-4, 0.011089618, -0.019425303, -0.0045910077, -0.0077781817, 0.03473986, 0.010666453, -0.009296203, 0.012735261, 0.008080442, 0.035895165, -0.023724126, 0.01058585, 0.0055179414, -0.014333885, -0.028184153, -0.0013895608, 0.0350354, -0.0042685964, -0.010229854, -0.015408591, -0.005306359, -0.013165143, 0.018941686, 0.0021880334, -0.010115666, 0.037265416, 0.023509184, 0.027619934, 0.021494111, -0.008886471, -0.03178442, 0.012029986, -0.0151936505, -0.007133358, -0.006528836, -0.023885332, 0.008308818, 0.0065657794, -0.0023458807, -0.028479697, -0.012459868, -0.02993055, -0.019022288, -0.012634507, 0.02008356, 0.047152705, 0.0017883773, -0.0021191852, 0.0077311634, 0.011982967, 0.015610099, -0.0021107888, 0.0060351435, 0.025349617, 0.014320452, 0.019425303, 0.016953481, -0.051370926, -0.012231492, 0.01684601, 0.020755252, 2.5986045E-4, 0.020970192, -0.022044899, -0.0025272374, -0.009907442, -0.0042417287, 0.008167762, 0.0014886352, 0.01888795, -0.040140253, -0.0050746254, 0.0132457465, 0.024812264, 2.9134596E-4, 0.027042279, 5.4784796E-5, -0.013420386, -0.0073482995, -0.016617635, -0.019559642, -2.1431141E-4, -0.010404494, 0.02767367, 0.0153011205, -0.0017447174, 0.028237889, 0.020768685, -0.007878935, 0.01571757, -0.004228295, -0.0029050636, -0.028855845, 0.008779001, 0.009853707, 0.033181533, -0.024328647, 0.009860423, -0.019962655, 0.02004326, -0.008570777, 0.0014273433, -0.007993123, 0.03277852, 0.011385162, -0.0524725, 0.0043995758, -0.013104691, -0.0030511564, 9.6303696E-4, -0.0040704473, -0.037453488, -0.008987226, -0.01280243, 0.0052089635, -0.013534573, -0.024006236, 0.0023206924, -0.004228295, -0.033047196, 0.012842732, 0.17721894, -0.004355916, 0.0022938247, 0.053332265, -0.012016552, 0.019156627, 0.016980348, 0.008100593, -0.0010008196, 0.0011972892, -0.009967894, 7.031765E-4, 9.840273E-4, 0.002177958, 0.016026547, -0.012661375, -0.0050679087, -0.034605518, -0.024207743, -0.032402374, -0.014898106, 0.015260819, 8.060292E-4, -0.018646142, -0.015905643, 0.0023492393, -0.012506886, -0.0040872395, 0.024221176, -0.0061661233, -0.00930292, -0.018914819, -0.022891229, 0.0041980688, -0.023724126, -0.010142534, -0.014105511, 0.005655638, 0.016080283, 0.007677428, 0.005292925, 0.0071736597, -0.012298662, -0.014132379, 0.0013811645, 0.0072744135, -0.014723467, 0.004157767, -0.008349119, 0.012144173, -0.039871577, -0.0017447174, 0.01712812, 0.014790636, -0.0070258877, -0.022609118, 0.019277532, 0.023012133, -0.011015732, -0.017262459, 0.0067504942, 0.024543589, -0.032832254, -0.003653999, -0.0017413589, 0.018404333, -0.034793593, 0.015314555, 0.017141555, -0.038420726, -0.0037413188, -0.025457088, -0.01134486, 0.0054608476, -0.009712651, -0.010686603, 0.012788996, 0.0039125998, 0.01671167, -1.743248E-4, -0.008893189, -0.03393383, 0.018928252, -0.015435459, -0.017880414, -0.016698238, 0.021131398, 0.0017228874, 0.004799232, -0.009276053, -0.009175299, -0.02915139, -0.016510164, -0.0026380664, 0.0013265897, 0.014750334, 0.023576353, 0.012728544, -0.023831597, -0.0013870419, -0.020392539, 0.022944964, 0.028022949, -0.01547576, -0.024906302, -0.007516222, -0.0045372727, 0.013037522, 0.035250343, -0.03766843, -0.009719369, -0.02497347, 0.0028446114, -4.957919E-4, 0.0068411725, 0.014804069, -0.002421446, -0.008684965, 0.035142872, -0.016604202, 0.011788176, -0.019022288, 0.027593065, -0.0050376826, 8.874717E-4, -0.03175755, -0.024866, -2.6828282E-5, 0.0043827835, -0.054783117, 0.024140574, -0.0117008565, 0.0133935185, 0.004228295, -0.0045070467, 0.00773788, 0.026437758, -0.009873858, 0.013057672, -0.0040335045, -0.0015146632, -0.008698398, 0.003697659, -0.0014861163, -0.0022602403, -0.01417268, 0.0068781157, -0.014266716, 0.0077177295, -0.010572416, -0.017034084, -0.015422025, 0.0065389117, -3.9944623E-4, 0.03132767, 0.006703476, -0.018404333, -0.033154666, -0.011929232, 0.037507225, -0.030548505, 0.013413669, 0.018337164, -0.011277691, -0.02753933, -0.005863862, -0.17173795, 0.019425303, 0.01225836, -0.034766726, 0.027378125, 0.009860423, 0.014280151, 0.010948563, 0.0034289826, -0.023858463, 0.026464624, 0.01769234, -0.031488873, -5.591827E-4, -0.007227395, 0.006938568, -0.013400235, 0.035250343, 0.035357814, 5.4155086E-4, 0.042504605, -0.009504427, -0.0033937187, -0.0054373387, 0.008476741, -0.009383523, 0.035948902, 0.01702065, -0.008792435, -0.014159246, -0.021601582, -9.6303696E-4, 0.0183909, 0.004681686, -0.004597725, 0.0085439095, -0.0033550966, -0.010908262, -0.010720188, -0.012043419, 0.03632505, 0.009235751, 0.020701516, -0.0045305556, 0.008409571, 0.026719868, 0.039683502, -0.0129099, -0.004275313, -0.005041041, 5.881494E-4, -0.045674987, 0.019129759, -0.010357475, -0.005988125, 0.026827337, 0.0072744135, -0.010384343, 0.008080442, -0.017961018, -0.034309976, -0.013957739, 0.012829298, -0.0071199243, -0.012661375, -0.03347708, 0.0020755252, 0.021185134, -0.015032444, 0.019008854, -0.016657937, 4.466745E-4, 0.0010024988, -0.0054003955, -0.009571597, -0.0092223175, -0.03527721, -0.010834375, 0.010740339, 0.019788016, -0.0071199243, 0.04634668, 0.002901705, 0.01362861, 0.018941686, -0.023750992, -0.0033752471, -0.009383523, 0.004429802, -0.01010895, 0.0049637966, -0.0028614036, -0.029661873, 0.008678247, 0.012332247, 0.0049873055, 0.012862883, 0.011197088, -4.1455927E-4, -0.03742662, -1.2468264E-4, 0.0040335045, -0.012144173, 0.03288599, 0.035572756, 0.009813406, 0.003949543, 0.016241487, 0.012836015, 0.01723559, -0.020164164, 0.0050074565, 0.018256562, -0.0041476917, -0.024382383, 0.018081922, -0.012553904, -0.016510164, 0.016375827, 0.009611898, 0.041806046, -0.006088879, -0.004641385, 0.0022216178, -0.018511804, -0.021319471, -0.076357834, -0.0077916156, 0.008302101, 0.041752312, -0.018001318, 0.0423434, -0.008906622, 0.016617635, -0.016590767, 0.03449805, 0.0138234, -0.03140827, 0.013642044, 0.008879755, 0.0067303437, -0.0043357653, -0.011351578, -0.009148431, -0.01775951, 0.012600923, 0.008093877, -0.0045641405, 0.014051775, -0.017652038, -0.021977728, 0.002983987, -0.037614696, 0.029581271, 0.0062568015, 0.010679887, 0.0053701694, -0.031247064, -0.009423825, -0.04519137, -0.025201846, -0.013178577, -0.03629818, -0.033289004, 0.006401215, -0.0653421, 0.0028479698, 0.016523598, 0.02043284, -0.01667137, -0.011136636, 0.0055548847, -0.019116325, 0.03302033, -0.008826019, -0.0049201366, -0.006340763, -0.0030326848, -0.013406952, -0.014078643, 0.008765567, 0.0044600284, 0.021037363, 0.0037782618, -0.014320452, -0.0331278, 0.0019982806, -0.010397776, -0.01250017, 0.015771305, -0.0085237585, 0.0153011205, 0.0020604122, -0.0014600883, 0.022622552, -0.007845351, -0.028721506, 0.00654227, -0.022568816, -0.016940046, -0.029312594, 0.0069587184, -0.023227075, -0.007845351, 0.01712812, -0.03516974, 0.0046078, -0.022582252, 0.0045204805, -0.0028093476, 0.02412714, 0.0092223175, 0.012634507, 0.012023268, -0.024288345, -0.026115345, -0.02799608, 0.0068848324, 0.00313008, -0.0029705535, -0.008967075, 0.014105511, -6.838654E-4, -0.0034491331, -0.010861243, 0.0032896067, -0.02982308, -0.0071736597, -0.07662651, 0.023939067, -0.022622552, -0.0076975785, -0.0069721523, -3.417228E-4, 0.0026313495, 0.013749515, -0.012862883, 0.013165143, -0.013131559, 0.0023374846, -0.016241487, 0.006250085, -0.021426942, -5.5372523E-4, 5.4522417E-5, -0.011438898, 0.009894008, -0.009692501, -0.012614356, 0.022273272, 0.027216919, -0.0053701694, -0.006753853, 0.014159246, -0.001771585, 0.020903023, -0.010088799, -0.014186114, 0.039307356, -0.023791295, 0.005101493, 0.006119105, -0.00884617, -0.021400075, -0.013158427, 0.005988125, 0.0137965325, 0.0062165, -0.004345841, -0.03551902, -0.0016179356, 0.009705935, -0.009027527, 0.014387621, -0.024919735, 0.010740339, 0.0031216838, 0.00736845, 0.04497643, 0.007878935, -0.024946604, -0.020070126, 0.02106423, -0.009927593, 0.04983947, 0.008819303, 0.00810731, -0.018256562, 0.038152047, 0.014884672, 0.015395157, -0.030414168, -0.0038219218, 0.012896467, -0.004473462, 3.7467762E-4, 0.003966335, -0.014226415, -0.011062751, -0.017504267, 0.0014634468, 0.030387301, 0.012224776, 0.010162685, 0.0061997077, 0.013165143, 0.004755572, 0.03017236, 0.0039293924, 0.0042417287, -0.021829957, 0.018014751, 0.0069520017, 0.020419406, -0.0029554404, 0.01149935, 0.011969534, 0.023576353, -0.007428902, 0.01884765, 0.012600923, -0.0061829155, 0.0016960198, 0.009423825, -0.012795714, -0.0067135515, -0.009276053, 0.026222816, -0.003714451, 9.4456546E-4, -0.01775951, -0.019559642, -0.020392539, -0.0012904863, -0.017262459, -0.039979048, 0.009833556, 0.028022949, 0.03377262, -0.012379264, -0.015516061, 0.009040961, -0.028614037, 0.021104531, -0.004789157, -0.018028187, -0.013863702, 0.0350354, 0.005350019, 0.0036271312, 0.034605518, -0.006098954, 0.050779838, 0.0063877814, 0.013675628, -0.021077663, 0.0114456145, 0.005034324, -0.009208883, 0.0032073245, 0.0018034903, 0.012654658, -0.016120583, 0.003247626, 0.005632129, 0.024059972, -0.025940705, 0.07157539, 0.022125501, 7.2416686E-4, 0.009685784, -0.023616655, 0.0077714645, 0.020701516, 0.008819303, 0.0012972032, -0.0072744135, 0.0058605038, -0.011566519, -1.6152069E-4, -0.028587168, -0.0024281628, -6.7714846E-4, 0.0041308994, 0.02901705, -0.018659575, -0.017356494, 2.928153E-4, 0.003831997, 0.0039226753, -0.007858785, 0.001882414, -0.016872877, 0.0331278, -0.013319632, -0.004755572, -0.036513124, -0.0085036075, -0.008785718, 0.012728544, -0.009853707, 0.035922036, 5.4784794E-4, 0.0025641804, 5.6044216E-4, 0.012023268, 0.0026766886, -0.016523598, 0.0062131416, -0.017558003, -0.009705935, 0.003329908, -0.009894008, 0.0075229392, -0.030790314, -0.023750992 ], + "id" : "61d07695-742e-4bb7-b35e-cc56c1af6b07", + "metadata" : { + "source" : "movies.csv" + } + }, + "f92d8706-6faf-45e0-aa11-ff47207b9b04" : { + "text" : "But the term also brings danger: soul-sucking Dementors hover over the school an ally of the accursed He-Who-Cannot-Be-Named lurks within the castle walls and fearsome wizard Sirius Black escapes Azkaban. And Harry will confront them all.,183.403,Warner Bros. Pictures-1492 Pictures-Heyday Films-P of A Productions Limited,5/31/04,130000000,789804554,141,Released,Something wicked this way comes.,8.021,19192,Daniel Radcliffe-Rupert Grint-Emma Watson-Robbie Coltrane-Michael Gambon-Richard Griffiths-Gary Oldman-Alan Rickman-Fiona Shaw-Maggie Smith-Timothy Spall-David Thewlis-Emma Thompson-David Bradley-Tom Felton-Pam Ferris-Dawn French-Julie Christie-Robert Hardy-Julie Walters-Mark Williams-Harry Melling-Adrian Rawlins-Geraldine Somerville-Lee Ingleby-Lenny Henry-Jimmy Gardner-Jim Tavar��-Abby Ford-Oliver Phelps-James Phelps-Chris Rankin-Bonnie Wright-Devon Murray-Warwick Davis-Matthew Lewis-Sitara Shah-Jennifer Smith-Bronson Webb-Josh Herdman-Genevieve Gaunt-Kandice Morris-Alfred Enoch-Annalisa Bugliani-Tess Bu Cuar�_n-Violet Columbus-Paul Whitehouse-Ekow Quartey-Ricky Sahota-Jamie Waylett-Sharon Sandhu-Danielle Tabor-Freddie Davies-Peter Best-Lewis Barnshaw-Ian Brown-Samantha Clinch-Marianne Chase,flying-witch-bus-traitor-magic-school friend-child hero-school of witchcraft-black magic-time travel-friendship-school-best friend-werewolf-muggle-wizard-aftercreditsstinger-magical creature-night bus-teenage life-school class-based on young adult novel-magic spell,/aWxwnYoe8p2d2fcxOqtvAtJ72Rw.jpg,/wDuoQwcn1XSrAaUsmZFhDWPCeix.jpg,674-672-671-675-767-12444-12445-22-58-285-1865-12-121-585-8587-557-9806-120-425-558-808\r\n82992,Fast & Furious 6,Action-Thriller-Crime,en,Hobbs has Dominic and Brian reassemble their crew to take down a team of mercenaries: Dominic unexpectedly gets convoluted also facing his presumed deceased girlfriend Letty.,12.484,Universal Pictures-Relativity Media-Original Film-One Race-Fuji Television Network-F & F VI Productions A.I.E-dentsu,5/21/13,160000000,788680968,131,Released,All roads lead to this,6.817,9865,Vin Diesel-Paul Walker-Dwayne Johnson-Jordana Brewster-Michelle Rodriguez-Tyrese Gibson-Sung Kang-Gal Gadot-Ludacris-Luke Evans-Elsa Pataky-Gina Carano-Clara Paget-Kim Kold-Joe Taslim-Samuel M.", + "embedding" : [ 0.0073585007, -0.027735366, -0.014526754, -0.024120662, -0.021783337, 0.04204469, -0.0033683996, -0.01566824, -0.028673014, -0.038266923, 0.028645836, 0.021416431, 0.01093923, 0.013310529, 0.0065295654, -0.0027619856, 0.024066307, -0.015301333, 0.016755367, -0.03386405, 0.008017573, -0.00919303, -0.028020736, 0.012060331, -0.015070318, 0.01989445, 0.02523497, -0.010212213, -0.008907659, -0.018399648, 0.017271753, -0.014649056, -0.023047123, -0.02065544, -0.029189399, 0.0026906428, 0.004531967, -0.014961606, 0.0079836, -0.0027602871, 0.038701773, 0.01307272, -0.018875267, -0.014377274, -0.034135833, 0.0033768928, -0.0042228145, -0.00858152, -0.008071929, 0.031037517, 0.01989445, 0.033048704, -0.01825017, -0.03842999, -7.724557E-4, -0.018481184, -0.009315332, 0.0123253185, 0.01778814, 0.010348104, 0.008642672, -0.027490761, -0.021035936, -0.034054298, -0.026104672, 0.0021640651, -0.023984771, -0.01826376, -0.0024902036, -0.007270172, 0.02766742, 0.014513165, 0.023998361, -0.006526168, 0.01655153, -0.02766742, -0.04120217, -0.014227794, -0.004131088, 0.003944238, 0.023332495, -0.01017824, -0.031526726, 0.008398067, 0.014621878, 0.013262968, -0.017652249, 0.012128277, -0.036092665, 0.021185417, -0.009206619, 0.02629492, -0.02174257, 0.008296149, 0.009770567, 0.00228297, -0.0067775664, 0.04892078, -0.0136026945, -0.023971183, 0.004644077, -0.015437224, -0.039924793, -0.020791331, 0.009865691, -0.016361283, -0.010755777, -0.004046156, 0.008853302, 8.680041E-4, 0.0055205743, 0.0010268268, 0.024704995, -0.037913606, 0.012699019, -0.0026736564, 0.011598302, -0.019853683, -0.01947319, -0.026933609, 0.013031952, 0.020111877, 0.03361945, -0.012760171, 0.047779296, 0.020832099, 0.004246596, 0.004022375, 0.009186235, -0.013718203, 0.015641062, 0.011231396, 0.01959549, 0.00874459, -0.023835292, 0.057889592, -0.040658604, 0.004661063, -0.024582691, -0.014214205, 0.036880832, 0.022992767, -0.01747559, -0.01610309, -0.015124675, 0.001514336, 0.02204153, -0.00995402, 0.011564329, -0.015382867, 0.03024935, 1.03616934E-4, 0.008302944, 0.009464812, 0.016334105, 0.00414128, 0.008323328, -0.009396867, -0.01686408, -0.010110294, -0.016605888, 5.337971E-4, 0.0010641968, 0.0030099868, 0.0050415583, 0.02325096, 0.02736846, -0.020234179, -0.010619886, -0.0051332847, -0.00501438, 0.023889648, -0.030575488, 0.016293338, -0.010613091, 0.016143858, 0.013575517, -0.019323708, -0.027939202, -0.033836875, -0.016198214, 2.6833175E-5, 0.028537123, 0.036853656, -0.007310939, 0.020207, 0.026308509, -0.0097298, 0.0088329185, -0.0042635817, 0.006081125, 0.025561107, -0.0068285256, -0.024052717, -0.6444498, -0.019799327, 0.00577537, -0.011244985, 0.0070187734, 3.473715E-4, 0.02216383, 0.012868883, -0.02766742, -0.02384888, -0.03310306, 0.019432422, 0.0043655, -0.02946118, -0.022313312, 6.633182E-4, -0.016836902, -0.010803339, 0.006706224, -0.0040733344, -0.033347666, 0.02643081, -0.018793734, -0.025207791, 0.020845689, 0.015233387, -0.009172646, -0.01897039, -0.013065925, -0.008404862, -0.012366086, 4.3612535E-4, 0.015260566, 0.018834502, 0.027232569, 0.010191829, -0.008656261, 0.0382941, 0.022014352, 0.030113459, -0.031200588, -0.0036452776, 9.4868947E-4, 0.0142413825, -0.009607498, 0.011231396, 0.018956803, 0.0028656027, 0.009519168, -0.009906458, 0.0105791185, -0.0112110125, -0.0021148047, -0.0031611656, 0.0032783719, 0.006414058, 0.018345293, -0.027218979, 0.017856086, -0.00203327, -0.015450813, 0.031744152, 0.011047943, 0.009369688, -0.001349568, 0.021035936, -0.004695036, 0.007474008, 0.008975605, -0.0018888857, 0.00301848, 0.011081915, -0.01929653, 0.0049702153, 0.011639069, -0.003502592, 0.046746522, -0.0066688536, -0.0031662616, 0.015600294, -0.0049872017, -5.142627E-4, -0.014010368, 0.0027687803, 0.017842496, -0.015722595, -0.0143908635, 0.011808933, 0.004406268, 2.4014497E-4, -0.0019891053, 0.0050823255, 0.005996193, -0.003832128, -0.0059010694, -0.01313387, -0.009573525, -0.001016635, 0.019119872, -0.051856026, 0.016619476, -0.02340044, 0.005693835, -0.0081942305, 0.026933609, 0.033211775, -0.013969601, -3.250769E-4, 0.044164594, -0.018358883, -0.006087919, 0.0060607414, -0.0017665838, -0.009091112, 0.007888476, -0.028401231, 0.03571217, 0.008608699, 0.011509973, -0.015573115, 0.002858808, 0.018929625, -0.0091522625, -0.027409226, -0.016932026, 0.0077457903, -0.0151790315, 0.00843204, -0.006281564, -0.0022761752, 0.01898398, 0.0053812857, -7.312638E-4, -0.026987964, 0.016306927, 0.0044640214, 0.020288534, 0.004820735, 0.0137521755, -0.0071478696, -0.009077523, -0.0070867185, -0.007854504, -5.384683E-4, 0.0011092108, -0.022218188, -0.030602666, -0.001354664, -0.008418451, -0.024677817, -0.0044674184, 0.018195814, -0.008391273, 0.002347518, -0.008302944, -0.008676644, -0.02326455, -0.0064208526, 0.007881681, -0.011041149, 0.009682238, 0.022843286, -0.003944238, -0.0061898376, 0.017095095, -0.029406825, -0.015831308, 0.005758384, -0.007290555, -0.007997189, 0.024270143, -0.012549539, 0.0021487772, 0.03478811, -0.002464724, 0.02796638, -0.019853683, 0.03269539, -0.0017971592, -0.009288154, 0.020003164, -0.007800147, -0.018956803, -0.013724997, 0.03720697, 0.0042567872, 0.020641852, -0.022435613, -0.02156591, -0.0061796457, -0.0105723245, -0.0118564945, -0.0057719727, 0.0015593499, -0.016959203, 0.028944796, 0.010151062, 0.0051910384, 0.011482795, 0.036255736, 0.043539494, 0.01656512, 0.02172898, -0.0077525848, 0.006750388, -0.034570687, 0.005160463, -0.02842841, -0.002778972, -0.016334105, 0.015899254, -0.011992386, -0.02263945, 0.004202431, -0.012250579, 0.03313024, 5.822083E-4, 1.9417558E-4, -0.028455587, 0.009077523, 0.017557126, -0.0060539464, 0.03478811, 0.023821702, -0.0042601847, -0.004732406, 0.021321308, 8.480451E-4, 0.010803339, -0.02235408, -1.3291845E-4, -0.0032053303, 0.0024545323, 0.00874459, -0.009743389, -0.009974403, 0.03497836, -0.012033153, 0.04968177, -0.023916826, -0.0065567438, 0.028102271, 0.01223699, -0.0015253772, 0.011115888, -0.025044722, 0.020016752, 0.0063257287, -0.007344912, 0.013161049, -0.013045542, 0.027001552, -9.1089474E-5, 0.020234179, 0.019011158, -0.023577098, 0.0054526287, 0.014948016, 0.010932435, 0.01086449, -5.473862E-4, -0.013392064, 0.018318115, -0.0028333284, 0.007942832, 0.022585094, -0.008241792, 0.017557126, -0.0029148632, -0.044001523, -0.031744152, -0.010667448, -0.002807849, 0.003944238, -0.0031288916, -0.008642672, -0.023278138, 0.0038083468, 0.023876058, 0.03250514, -0.012107893, -0.034271725, 0.0011440328, 0.034135833, -0.01928294, -0.03313024, 0.0013724997, -6.896471E-4, -0.0105791185, -0.009600704, 0.0010879778, 0.022761753, -0.00444024, -0.0033717968, -0.0131134875, -0.007270172, 0.009233797, -0.022680217, 0.003460126, 0.018589897, -0.006590716, 0.0025003955, -0.022843286, -7.877435E-4, 0.02098158, -0.006991595, 0.017095095, 0.002277874, -0.008717411, 0.00813308, -0.010946025, 0.011842906, -0.037451576, 0.01869861, -0.003614702, -0.0028995755, -0.0040495535, 0.0021946407, 0.011143067, 0.005272573, 0.0015100894, -0.018752966, -0.02538445, -0.0140783135, 0.08648107, 0.032342073, -0.008466013, 0.015437224, -0.0067639775, 0.005778767, -0.012882472, -0.0243245, 0.0072090207, 0.0040087863, 0.022979178, -0.010755777, 0.015111086, 0.02826534, 0.008948426, 0.0037811687, -0.019554723, 0.002863904, -0.005418656, -0.02356351, -0.036799297, -0.02812945, 0.01626616, 0.016701011, -0.0020349687, -0.017230986, 0.0040631425, 0.018508362, -0.013262968, 0.004525172, -0.003084727, 0.0036113048, 0.015029551, -0.01748918, -1.8270977E-4, -0.020533139, 0.022299722, 0.0124747995, 0.011870084, -0.019310119, 3.3463174E-4, 0.020696208, 0.010728599, -0.0059010694, 0.016388461, -0.02965143, 0.0025666424, 0.014798536, 0.054274887, -0.025955193, 0.019269353, -0.0046474743, -0.017978387, -0.009723005, -0.010769366, -0.0030830284, -0.0021317909, -0.006414058, -0.0093085375, 0.006886279, -0.009050344, -0.026199795, 0.016646655, 0.009655059, -0.013269762, -0.012454416, -0.004820735, -0.001934749, -0.005619095, 0.025615465, 0.010191829, -0.032776922, -0.0011007176, 0.00479016, 0.018426828, -0.0041752527, 0.015831308, -0.0049668183, 0.0038185387, 0.012739787, -0.034407616, -0.011462411, -0.008065134, -0.02995039, -0.010701421, 0.013330913, 0.002474916, 0.015912842, -0.004691639, 0.00414128, -4.1085813E-4, 0.01580413, -0.015287744, -0.027286924, 0.024555514, 0.008839713, 0.012603896, 0.02584648, 0.005557944, 0.0011644165, -0.004321336, -0.024609871, -0.007949627, -0.010592708, 0.021144649, -0.019568313, 0.0151790315, 0.013691024, 0.0010973203, -0.030983161, -0.014961606, -0.020519549, 0.0047392007, -0.001676556, 0.0069236495, 0.006281564, 0.016021555, 0.03799514, -0.0045285695, 0.0075147757, -0.008697027, -0.019011158, 0.012366086, 0.013419242, -0.010354899, 0.038810488, -0.008792152, -0.02386247, -0.018725788, -0.0061898376, 0.0034771124, 0.0034890028, -0.0062204134, -6.904964E-4, -0.019677024, -0.016184624, 0.014146259, -8.391273E-4, -0.008323328, 0.027504351, -0.019962396, 0.0054492312, 0.0070119784, -0.025180614, -0.0050211744, -0.02796638, 0.01382012, 8.166203E-4, 0.031064697, 0.02596878, 0.0010794846, 0.0022150243, -0.018209402, -0.0029946992, 0.01034131, -0.039897613, -0.022435613, -0.009675443, 0.010701421, 0.019187817, 0.049763307, -0.00275689, 0.028781727, 0.008615493, -0.0031254943, 0.02872737, -0.025506752, 3.9748134E-4, -0.038973555, 0.02007111, 0.0043281303, 0.018589897, 0.031526726, 0.012257373, 0.03484247, 0.021035936, 0.011414849, 0.005010983, 4.299678E-6, -0.02764024, -0.022286134, 0.018222991, -0.029542716, 0.0059690145, -0.036092665, -0.025778534, 0.008248587, -0.0049702153, -0.017584303, -0.022829698, 0.0328041, 0.0031102067, 0.0073585007, -0.021538733, 0.030439597, -0.023753757, 0.018358883, -0.010354899, -0.020750565, 0.009981198, 0.0057685752, 0.009186235, 0.009546347, -0.0070527457, 0.015980788, 0.016225392, -3.928101E-4, -0.021661034, 0.022068707, -0.0110547375, -0.017054327, -0.01793762, -0.0067300047, -0.0142413825, -0.003723415, -0.005456026, -0.010674243, 0.005591917, -0.02736846, -0.030575488, 0.014567521, -0.012033153, 0.042126227, 0.024704995, 0.036228556, 0.032450784, 0.016035145, -0.025819302, 0.01687767, 0.0049124616, -0.01748918, 0.020302124, 0.009050344, -0.025194202, 8.229902E-4, -0.019187817, 5.435642E-4, -0.028020736, -0.049138207, 0.034924, 0.01928294, 0.0017529946, 0.0010225802, 0.0029471372, -0.034760933, 0.0075147757, -0.01928294, 0.016320515, 0.005948631, -0.048567463, -0.019527545, -0.0074128574, 0.012284552, 0.010674243, 0.001985708, -0.021049526, 0.00958032, -0.017108684, 0.007569132, -0.020845689, -0.014812125, 0.04000633, -0.02143002, 0.01223699, 0.022870464, 0.013548339, 0.01504314, 0.009675443, -0.00904355, 0.03207029, -0.021511555, 0.009159057, -0.0014990482, 0.0019568312, -0.01064027, 0.0079836, -0.010049144, -0.017122272, -0.0108916685, -0.0019126666, 0.04136524, 0.019609079, 0.010334515, 0.008078723, -0.017258164, -0.016891258, -0.018766556, -0.002299956, -0.0017445014, -0.033646625, -0.010694626, -0.010538352, -0.017448412, -0.0033870847, -0.019690614, 0.0017122274, -0.010531557, 0.02081851, -0.023115069, -0.01071501, -0.002384888, -0.0021215992, -0.022326902, -3.730634E-4, -0.005394875, -0.0078748865, 0.019853683, -0.002661766, 0.007555543, -0.002789164, 7.868942E-4, 1.7273027E-4, -6.127837E-4, -0.01488007, 0.013235789, 0.018725788, -0.0012901158, 0.006451428, -0.0060267686, 0.023047123, -0.0018973789, -0.0072090207, 0.019051926, -0.01207392, 0.022394847, -0.006916855, 0.006142276, 0.0025207791, -0.035739347, -0.016592298, 0.00752157, 9.687546E-5, 0.0032460976, -0.007963216, -0.015858486, -0.0023679016, -0.011740987, 0.032450784, 0.0035297703, 3.743374E-4, -0.0015873774, 0.00603696, 0.013419242, 0.02598237, -0.02144361, -0.004385884, -0.0054662176, -0.03190722, -0.027069498, 0.0046644607, -0.010769366, 0.015722595, 0.013201816, -0.006417455, -0.01776096, 0.022585094, -0.027110266, -0.01566824, -0.01329694, 0.024976777, 0.04204469, 0.023033535, -0.002155572, 0.013127076, 0.006403866, 9.5718267E-4, -0.035141427, 4.335774E-4, 0.010524763, 0.016592298, 0.029080687, 0.022000762, -0.023835292, -0.008058339, -4.3739934E-4, 0.023577098, 0.017095095, 0.026077494, -0.007813736, 0.009349305, -0.00323081, 0.0021623664, -0.005000791, -0.008710617, 0.0010293748, -0.024541926, -0.00668584, 0.0044878023, 0.019622669, -0.008330122, -0.001314746, 0.020533139, -0.01763866, -3.8750184E-4, -0.008622288, -0.025928013, -0.011299342, -0.014187027, 0.039245337, 0.010592708, 0.005354108, 0.013038747, 0.024555514, -0.0040291697, -0.006390277, -0.0012552936, 0.0017445014, -0.011034354, 0.008533958, -0.011163451, 0.02175616, -0.03997915, 0.010667448, -0.028238162, -0.0044232537, -0.014594699, -0.006427647, -0.024800118, 0.03739722, -0.0012383072, -0.03842999, 3.9811834E-4, -0.014812125, 3.4673454E-4, 0.003760785, -0.0063732904, -0.021076703, 0.014798536, -0.01132652, -0.0073381173, -0.018182224, -0.011999181, -0.00820782, -0.016687421, -0.0064684143, 0.0015347196, 0.19948807, -0.0030320692, 0.01565465, 0.043702565, -0.008615493, 0.0033514132, 0.022422025, 0.009743389, -0.004892078, 0.02614544, -0.027083088, 0.021905638, -0.002342422, -0.0023135452, 0.021633856, 0.0020077904, -0.032477964, -0.029841676, -0.020601084, -0.032858457, -0.014975195, -0.009512374, -0.0118564945, -0.019323708, 0.01458111, 6.59921E-4, -0.0143908635, 2.6562455E-4, 0.014825715, 0.0031237956, -0.007949627, -0.017516358, -0.011815728, 0.012447621, -0.008255382, -0.009566731, 3.8113195E-4, -0.005517177, -0.007535159, 0.012447621, 0.004321336, -0.009804539, -0.023495564, 0.001429404, -0.003760785, 0.010816928, 0.005921453, -0.0063732904, -0.0014786646, 0.011788549, -0.031852864, -0.0135959005, 0.028836083, 0.03435326, -0.012671841, -0.0071071023, 0.00410391, 0.008071929, -0.0039918, 0.0043824865, 0.0072090207, 0.022068707, -0.026525935, 0.028346874, -0.0031679603, 0.015423635, -0.03709826, -0.007956421, 0.016469996, -0.039218158, -0.019731382, -0.026539523, -0.022000762, 0.010545146, -0.0096210865, -0.00896881, 0.012678635, 0.024365267, 8.54415E-4, 0.0278169, -0.022272544, -0.023957593, 0.0056564654, 0.004117499, -0.014064725, -0.020940812, 5.35071E-4, -0.023712989, -0.008071929, -0.002874096, -0.0045421585, -0.01307272, -0.009159057, -0.0049430374, -0.006590716, 0.0062985504, 0.017203808, 0.017625071, 0.0031424807, -0.008105902, -0.028238162, 0.015518758, 0.008404862, 0.0026957388, -0.00505175, -0.019717792, 0.0015483088, 0.0019670231, 0.02932529, -0.019867273, 0.0070323623, -0.023658633, -0.0053133406, 0.0023645044, 0.020804921, 0.020764153, -0.034081478, -0.0066382783, 0.020179821, -0.022856876, 0.0053812857, 6.607703E-4, 0.013086309, -0.013657051, 0.01223699, -0.017557126, -0.025207791, 0.014159848, -0.019636258, -0.029053507, 0.017991977, -0.043050285, 0.021294128, 3.9918E-4, 7.019623E-4, -0.008466013, 0.009498785, -6.4528344E-6, -0.012345702, 0.006145673, -0.011136272, -0.012529155, 0.033673804, 0.007535159, -0.008731, -0.025615465, 0.008778563, -7.321131E-4, -0.0140783135, -0.031825684, -0.0140783135, -0.009675443, 0.009104701, 0.0045727342, 0.030983161, -0.0013138966, -0.03495118, -0.0325595, -0.015885664, 0.04177291, -0.043702565, 0.029705785, 0.019568313, -0.009797745, -0.030521132, 0.005170655, -0.17404927, 0.023373261, -1.7477394E-5, -0.03310306, 0.032179, 0.00543904, 0.012209811, 0.0076506664, -0.013426037, -0.021334896, -0.001868502, -0.020302124, -0.04351232, -0.008071929, 0.011822522, 0.01947319, -0.015736185, 0.03962583, 0.016238982, -0.0050415583, 0.045686573, -0.0077322014, 0.0023645044, -0.008275765, 0.02965143, -0.0062373998, -0.0023916827, 0.006084522, -0.008452424, -0.010633475, -0.019568313, -0.010382077, 0.001149978, 0.0035807295, -1.5818568E-4, 0.011781755, -0.009458018, -0.013663846, 0.0137589695, -0.002879192, 0.050959148, 0.0032715772, 0.02007111, 0.019880861, -0.0038389224, 0.023944004, 0.018046333, -0.014907249, 0.0051672575, -0.03484247, 0.005483204, -0.00596222, 0.028700192, -0.009553141, 0.006315537, 0.023047123, 0.0039884024, -0.0017988579, -0.016701011, -0.0077525848, -0.018603485, 2.4693954E-4, 0.010619886, -5.597013E-4, -0.012257373, -0.031689793, 0.0056802463, 0.013059131, -0.027015142, 0.010293747, -0.02401195, -0.002592122, 0.004756187, 0.025955193, -0.009172646, -0.016293338, -0.005038161, 0.016048733, 0.004406268, 0.015233387, -0.005897672, 0.019201407, -0.020193411, -5.087422E-4, 0.003215522, -0.008554342, 0.0064582224, -0.0070867185, 0.018576307, -0.0015449114, 0.0011856494, -0.011340109, -0.004501391, 0.004120896, -5.193586E-4, 0.018494774, 0.009036755, 3.195563E-4, 0.009886075, -0.016048733, 0.01123819, -0.010538352, -0.016211804, -0.0068726903, 0.029107865, 0.010585913, 0.011747782, 0.01763866, 0.01884809, 0.01078975, 0.0012340606, -0.0074536246, 0.03435326, 6.076878E-4, -0.02326455, 0.010286953, 7.720311E-4, -0.027395638, -0.0033989751, 0.009525963, 0.055253305, 0.018875267, 0.0037777715, -0.015776953, -9.869088E-4, -0.0060301656, -0.114692055, -0.0053642993, 0.008479602, 0.037179794, -0.017122272, 0.030629845, -0.0015525554, 0.0097298, -0.027083088, 0.01807351, -0.0043553086, -0.03951712, 0.008126285, -0.010619886, 0.0027806708, 0.002597218, -0.012175838, -0.004854708, -0.020736976, 0.01344642, 0.013860888, 0.0143908635, 0.007175048, -0.012366086, -0.01928294, -4.7094745E-4, -0.027151033, 0.026172617, 0.0032087276, 0.01795121, 0.0025003955, -0.016646655, 0.010300542, -0.023291728, -0.01580413, 0.0013283351, -0.00964147, -0.025438806, 0.002559848, -0.05046994, 0.010069528, 0.019486777, -0.009356099, -0.003108508, -0.008160258, -0.0057006297, -0.042370833, 0.024079895, -0.0032647827, -0.014975195, -0.027110266, -0.020302124, -0.01519262, -0.0107353935, 0.013310529, 0.004963421, 0.020872867, 0.016850492, 0.0016018158, 0.0035569484, -0.011197424, -0.015477992, -0.020519549, -0.009553141, 0.008411656, 0.0012391566, -3.078782E-4, -0.014404452, 0.02734128, -0.029053507, -0.016660243, 0.007555543, -0.022802519, -0.0034618247, -0.020533139, 0.017081507, -0.012039947, 0.005174052, 0.010171446, -0.01566824, -3.238029E-4, -0.02098158, 0.010585913, -0.02447398, 0.014418041, 0.015070318, 0.025112668, 0.010912052, 0.0048716944, -0.03296717, 0.0032936595, 0.02765383, 0.025003955, -0.0015661444, -0.004800352, 0.024609871, 0.020043932, 9.597306E-4, 0.022422025, 0.021226183, -0.0034737152, 0.0031102067, -0.056150187, 0.019799327, -0.014187027, -0.020505961, -0.0065567438, -0.0028129448, 0.003906868, 0.013473598, 0.005296354, 0.034054298, -0.015817719, -3.9599504E-4, -0.013242584, 0.0060199737, -0.020397248, 0.01398319, 0.018603485, -0.005197833, -0.0068591014, -0.0059316447, -0.0264444, 0.005099312, 0.021457197, 0.007684639, -0.004022375, 0.018617075, 0.006077728, 0.015600294, -0.008493192, -0.0025462587, 0.020872867, -0.039843258, 0.011000381, -8.505931E-4, -0.01626616, -0.012862088, 0.010049144, 0.0017079808, 0.01854913, 0.015111086, -0.02202794, -0.0056326846, -0.004385884, -0.014594699, 0.013555133, 0.0011533754, -0.029080687, 0.01640205, 0.024555514, 0.009458018, 0.035793703, 0.025615465, -0.011673042, -0.022381257, 0.015573115, -0.012549539, 0.040468358, -3.4171824E-6, -0.012046742, -0.0264444, 0.015817719, -0.001059101, 0.013493982, -0.012603896, -0.005503588, 0.002704232, 0.02386247, -0.017394055, -0.002023078, -0.025778534, -0.013901656, -0.01064027, 0.019799327, 0.045387615, 0.0017920634, 0.016130269, -0.004239801, 0.008112696, -0.0034618247, 0.0072769662, 0.027830489, -0.023712989, -0.015872076, 0.019717792, 0.011435232, 0.011068326, 0.0064208526, 0.0012009372, 7.389076E-4, 0.022123065, -0.0012451018, -0.0017232685, 0.00995402, 0.0029522332, 0.0085067805, 0.0040835263, -0.026539523, -0.005738, 0.0053371214, 0.01717663, -0.0013003076, -0.0012272662, -0.021321308, -0.016456407, -0.026838483, 0.014445219, -0.013507571, -0.01856272, 0.014146259, 0.03326613, 0.025642643, -0.0061490703, 0.003832128, 0.005459423, -0.044735335, 0.016456407, -0.01837247, -0.009288154, -0.0041684583, 0.05408464, 0.01838606, 0.013330913, 0.033999942, -0.016510764, 0.03587524, 0.008663055, 0.023033535, -0.020003164, 0.0083573, -0.004915859, -0.0048479135, -0.007800147, -0.009566731, 0.0051774494, -0.0034380439, -0.02325096, 0.011143067, 0.019840095, -8.960317E-4, 0.056911174, 0.028047914, -0.0078748865, 0.008676644, -0.029379647, 0.007949627, 0.004239801, 0.0016621175, -0.0012646362, -0.02296559, 0.019867273, -0.01298439, 0.02492242, -0.02946118, -0.021199005, 0.012617485, 0.0056258896, 0.0033599064, -0.004817338, -0.012338908, 0.00505175, -0.001511788, 0.025017545, 0.014839304, -0.010592708, -0.026023138, 0.023998361, -0.001370801, -2.2974082E-4, -0.028346874, 0.0017317616, -0.016972793, -0.020587495, -0.014458808, 0.02568341, 0.0049430374, -0.003995197, -0.0074128574, 0.019799327, 0.017842496, -0.012821321, 0.012345702, -0.00928136, -0.016972793, 0.017081507, -0.014975195, -7.622639E-4, -0.02674336, -0.027273335 ], + "id" : "f92d8706-6faf-45e0-aa11-ff47207b9b04", + "metadata" : { + "source" : "movies.csv" + } + }, + "07c77171-3807-43ad-a654-547bfb0fcc63" : { + "text" : "soldier-giant animal-kaiju-aftercreditsstinger-giant ape-monster island-water buffalo-uncharted-monsterverse-king kong,/r2517Vz9EhDhj88qwbDVj8DCRZN.jpg,/nVodCGKYLpqNC8YwQAbivKlWCgZ.jpg,263115-305470-283995-315837-124905-337339-254-297762-395992-324552-282035-311324-281338-126889-315635-274857-335988-166426-330459-135397-284052\r\n41513,The Smurfs,Animation-Family-Adventure-Comedy-Fantasy,en,When the evil wizard Gargamel chases the tiny blue Smurfs out of their village they tumble from their magical world and into ours -- in fact smack dab in the middle of Central Park. Just three apples high and stuck in the Big Apple the Smurfs must find a way to get back to their village before Gargamel tracks them down.,30.498,Columbia Pictures-Sony Pictures Animation-Kerner Entertainment Company,7/29/11,110000000,563749323,103,Released,Smurf Happens.,5.8,3554,Hank Azaria-Neil Patrick Harris-Jayma Mays-Jonathan Winters-Katy Perry-Anton Yelchin-Sof�_a Vergara-Tim Gunn-Frank Welker-Madison McKinley-Meg Phillips-Mahadeo Shivraj-Julie Chang-Mark Doherty-Minglie Chen-Sean Kenin-Victor Pagan-Adria Baratta-Paula Pizzi-Andrew Sellon-Julianna Rigoglioso-Daria Rae Figlo-Bradley Gosnell-Heidi Armbruster-Finnerty Steeves-John Speredakos-Skai Jackson-Alex Hall-Eric Redgate-Jojo Gonzalez-Scott Dillin-Tyree Michael Simpson-Sean Ringgold-Mario D'Leon-Liz Smith-Tom Colicchio-Michael Musto-Joan Rivers-Olivia Palermo-Julia Enescu-Lauren Waggoner-Mr. Krinkle-Hank-Alan Cumming-Fred Armisen-George Lopez-Kenan Thompson-Jeff Foxworthy-John Oliver-Wolfgang Puck-Gary Basaraba-Paul Reubens-B.J. Novak-Tom Kane-John Kassir-Joel McCrary-Mary McGloin,moon-magic-based on comic-blue-vortex-cat and mouse-duringcreditsstinger-live action and animation,/vRhnslP2gW0QDym7BsMeSuioUfK.jpg,/iYLimHUF0C0R61v1ofg79SUIja9.jpg,77931-6477-55301-23398-46195-5559-10527-80321-22794-137116-13053-9982-9836-172385-7484-15512-50359-8355-57800-10192-45772\r\n254,King Kong,Adventure-Drama-Action,en,In 1933 New York an overly ambitious movie producer coerces his cast and hired ship crew to travel to mysterious Skull Island where they encounter Kong a giant ape who is immediately smitten with the leading lady.,44.817,Universal Pictures-WingNut Films-Big Primate Pictures-MFPV Film,12/12/05,207000000,562363449,187,Released,The eighth wonder of the world.,6.", + "embedding" : [ 0.0059455764, -0.035813667, -0.007290926, -0.018240668, 0.008212307, 0.010168571, -0.016798507, -0.0161709, -0.0020630916, -0.033890788, 0.030792812, 0.021819364, 0.03578696, -0.0078317365, -0.003942575, 0.018521087, 0.023007812, -0.023688832, -0.001777664, -0.011977949, 0.0046269335, 0.0062126433, -0.022473678, -0.021579003, 0.002365211, 0.014448318, 0.025130993, -0.025451474, -0.0056518028, -0.012084777, 0.003418456, -0.0061725834, -0.0115706725, 4.018522E-4, -0.020270376, 0.012805857, 0.0062159817, -0.011196779, 0.016117485, -0.015276225, 0.0043531903, 0.018147195, 0.0014630257, 0.003378396, -0.010542465, 0.004603565, 0.0061391997, -0.011370372, -0.02016355, 0.02903017, 0.016064072, 0.018708035, -0.014274725, -0.018761449, -0.02479716, -0.0018694681, -0.019602709, -0.0075379624, 0.0048138807, -0.018521087, 0.003396757, -0.005344676, -0.01279918, -0.013546967, -0.023248171, -0.006369545, -0.011190102, -0.025985608, -0.011136689, 0.010121834, 0.028496036, 0.029003464, 0.024783807, -0.006943739, 0.0036721695, -0.031727545, -0.03327653, -0.009133687, -0.017426115, 0.0054615177, 0.0058487644, -0.018708035, 0.0013344998, -0.010836239, 0.023194758, 0.025331294, -0.009581024, 0.004670332, -0.023528593, 0.013607058, 0.0024987445, 0.014835565, -0.004389912, 0.012565496, -0.0027441122, 0.017866774, -0.014421611, 0.02547818, -0.022019664, -0.05095636, -0.0043164683, 0.004343175, -0.0041896114, -0.007557993, -0.0057486147, 0.028255675, -0.0051944507, -0.016504733, 0.01321981, 0.005504916, -8.8298984E-4, 0.010916359, 0.014982452, -0.04676341, -0.0067401, -0.0327424, 0.015983952, -7.0146786E-4, -0.0053313226, -0.01633114, 0.030312091, 0.027774956, 0.0039826347, -0.011831063, 0.028202262, 0.040193565, -0.0023368353, -0.01793354, -0.011717559, -0.01319978, 0.043344956, -0.0022734068, 0.036481336, -0.0015289579, -0.0052979393, 0.040353805, -0.02862957, -0.0013136351, -0.006676672, -0.024249673, 0.04516101, 0.03175425, -0.014568498, -0.014635265, -0.038163856, -0.0017442806, 0.015182752, 0.016064072, 0.013794004, -0.0099482415, 0.023942545, -0.00310966, 7.982796E-4, 0.015075925, 0.035680134, -0.002812548, -0.01179768, 6.6432887E-4, 0.009060244, -0.0025221128, -0.015529939, -7.787712E-5, 0.010989802, -0.018507734, -0.0042463634, 0.034131147, 0.03130024, -0.009080274, 3.9851386E-4, 0.0024169553, -0.026706688, 0.030872932, -0.015783653, 0.018894982, -0.018561147, 0.03130024, 0.008092127, -1.1569421E-4, -0.0040794467, -0.0026556463, 0.007264219, 0.0040560784, 0.021659125, 0.014101131, 0.010749442, -0.0037990264, 0.017786654, -0.033169705, 0.021071577, -0.02160571, -0.005815381, 0.0117242355, 6.3929136E-4, -0.005538299, -0.6409605, -0.013980951, 0.011163396, -0.015569999, 0.014101131, 0.020176902, 0.004166243, 0.0044566784, -0.018173901, -0.0019495882, -0.0133066075, 0.012872623, 0.019268876, -0.016584853, -0.034558453, -0.009180424, 0.0010557488, -0.022527091, 0.00892671, -0.0040026647, -0.02156565, 0.0096811745, 0.017639767, 0.006750115, -0.0087664705, -0.0035219444, -0.013994304, -0.009554317, 0.02503752, 0.030819518, -0.027561301, 0.0064930636, 0.018988455, 0.0021932868, 0.038511045, -0.0035152677, -0.024903987, 0.025544947, 0.03586708, 0.024343146, -0.02999161, -0.0114371395, 0.007738263, 0.008432637, 0.008559493, 0.009901504, 0.015142692, -0.0149290385, 0.026252674, 0.005411443, -0.025892133, 0.018053722, 0.009547641, -0.01237855, -0.0027557963, 0.009240514, 0.010963095, -0.010462345, 0.01323984, -0.005601728, -0.0019312274, 0.013106307, 0.0023702185, 0.023822365, -0.017359346, 0.029243823, -0.007017182, -0.011637439, 0.01285927, -0.03258216, 0.017078927, 0.0075846994, -0.006356192, -0.007003829, -0.0054515027, 0.031433772, 0.023421764, -0.00822566, -0.00924719, 0.015543292, 0.012966097, -0.007103979, -0.010522435, 0.009173747, -0.0062126433, -0.0043531903, -0.044867236, 0.0146619715, 0.017666474, -0.004496739, 0.015756946, 0.022740744, 0.0012235001, 0.0096811745, -0.0068702954, 0.009153717, -0.008552817, 0.0059388997, 0.0058487644, -0.04727084, -0.026706688, 0.003645463, -0.0022133167, -0.0123718735, 0.02991149, -0.001584875, -0.012752444, -0.0045768586, 0.034398213, -0.020030016, 0.0018244006, 0.00882656, -0.011363695, -0.0025287895, 0.001053245, -0.024102787, 0.024730394, 0.02012349, 0.0065197702, 0.0012977781, 0.006109155, 0.021218464, 0.024596859, -0.020617563, 0.012011332, 0.023622066, 0.00423301, -0.018173901, 9.330649E-4, -0.0024586844, 0.012885977, -0.006209305, 0.009687851, -0.0057486147, 0.0058187195, 0.01789348, 0.024770454, -0.0010315458, 0.019509235, -0.0064830487, -0.03258216, 0.0063395, -0.0066265967, -0.023074578, -0.00312969, 4.2981075E-4, -0.025090933, -4.3106262E-4, -0.017626414, -0.014581852, -0.0013478531, -0.011263546, 0.014434964, 0.016544793, 0.01181771, 0.0055850362, -0.016357847, -0.016584853, 0.026412914, -0.017319286, 0.013600381, 0.016825214, -0.009654468, -0.0071774223, 0.018854922, -0.012865947, -0.025812013, 0.0051911124, -0.0020630916, -0.04847264, -0.0077449395, -0.033490185, -0.0073777223, 0.019495882, -0.010929712, 0.011590702, -0.0038691314, -0.0080787735, -0.011851093, -0.0036321096, 0.0021932868, -0.012431963, -0.0018210623, 0.0035620045, 0.0423301, 0.0069303853, 0.020216962, -0.0019963249, -0.013687178, -0.0037289213, -0.0031847726, 0.0010624254, -0.0064530033, -0.00447337, -0.0045568286, 0.0022333467, -0.014234665, 0.032395214, 0.015276225, 0.02511764, 0.034318093, 0.02204637, -0.012912683, -0.01239858, 0.015369698, -0.022540445, 0.0052545406, -0.04062087, 0.011764296, -0.004199627, 0.03250204, 0.009614408, -0.014274725, 0.0026706688, -8.4585085E-4, 0.017452821, -0.005264556, -0.004630272, -0.022513738, -0.007411106, -0.010475698, -0.013346667, 0.0015681833, 0.007871796, -0.021218464, 0.029003464, -0.012164896, 0.024970753, -0.0077849994, -0.0119712725, -0.010322135, -0.00890668, 8.082946E-4, -0.009754618, 0.0138607705, 0.0108829755, 0.027240822, -0.0040393868, 0.022460325, -5.307954E-4, -0.0011884476, 0.021378703, 0.028843222, -0.01215822, 0.004419957, 0.012311783, 0.006609905, -0.0015832059, -0.02571854, 0.04305118, -0.024490032, 0.009193777, -0.018681329, 0.012051393, 0.018427614, -0.010736088, 0.010522435, 0.0149290385, 0.036962055, 0.025384707, 0.010408931, -0.03789679, 0.013293254, -4.8901406E-5, 0.040941354, -0.0011049892, -0.0045034154, -0.018601209, 0.01705222, -0.013400081, -0.014648618, -0.012325136, -0.0015932209, -0.008332486, -0.007551316, -0.025932195, -9.447491E-4, 0.016584853, 0.0020497383, 0.022233317, -0.008619583, -0.04249034, 0.0042697317, 0.008259043, -0.001480552, -0.013186427, -0.0043732203, -0.0060256966, -0.032875933, 0.007023859, -0.005751953, 0.024449972, 0.0039091916, 0.0022533769, -0.020283729, -0.0103688715, 0.029804664, 0.0018928365, 0.018641269, 0.0049741208, 0.009160394, 0.037683137, -0.004954091, 0.019495882, 0.030018317, -0.019736242, -0.0071306857, 8.713057E-4, 0.008773147, 0.008953417, 0.0058387495, -0.0067334236, -0.026292734, 0.016130839, -0.009307281, -0.014902332, -0.017559648, -0.0052044657, 0.012632263, -0.0027774954, -0.012211633, -0.0241562, -0.026773455, -0.010342165, 0.066072345, 0.023168052, 0.012812533, 0.005284586, 0.003151389, 0.021645771, -0.016157547, -0.0031346974, -0.0035152677, -9.222153E-4, 0.00619929, -0.022981105, 0.03146048, -0.0033299902, 0.021432117, -0.017452821, -0.027534595, -0.001584875, 6.547311E-4, -0.025918841, -1.551283E-4, 3.8432592E-4, 0.006776822, 0.05354691, -0.011537289, -0.023368351, 0.013493554, 0.013453494, -0.0043164683, -0.003528621, -0.019629415, -0.010969772, 0.0012610564, 0.015075925, -0.016184254, 0.0019712874, 0.02619926, 0.014635265, 0.014234665, 0.023101285, 0.010489051, 0.019108634, -0.0039091916, -0.02156565, 0.027801663, -0.016825214, 0.0015898825, 0.018721389, 0.029644424, -0.015169399, 0.043985914, -0.014635265, -0.02128523, 0.005625096, 0.027961902, -2.9001792E-4, 0.0061759218, -0.0109030055, 0.0020614224, -5.120173E-4, 0.0026756763, -0.025958901, 0.0032181558, -0.011403755, -0.0059989896, -0.02224667, -0.0066399504, 8.796515E-4, -0.019135341, 0.010689352, 0.0036721695, -0.03338336, -0.0030428933, -0.016104132, 0.008218983, -5.1785936E-4, 0.010969772, -0.009200454, 0.008239013, 0.015716886, -0.03621427, -0.025625067, -0.008212307, -0.018881628, -0.02068433, 0.015049218, 0.013593704, 0.013767297, 0.0066533037, 0.0042263335, 0.02152559, 0.006162568, -0.004620257, 9.0552366E-4, 0.03167413, -0.021725891, 0.015610059, 0.022460325, 0.0068302355, -0.014715385, 0.011657469, -0.026266027, -0.002343512, -0.009534287, -0.011363695, -0.008706381, 0.005424796, -0.011296929, -0.025464827, -0.010963095, -0.011657469, -0.012151543, -0.0017159047, -0.006312793, 0.017426115, -0.010242015, 0.029484183, 0.0110565685, -0.010255368, 0.0037122297, -0.0073376624, -0.005805366, -1.8225228E-4, 0.03258216, 0.0033667118, 0.031033171, 1.9748343E-4, -0.026306087, 3.1150848E-4, 0.0058621177, -0.015009158, 0.016197607, -0.01215822, 0.0046069035, -0.020176902, -0.007057242, 0.009260544, 0.007811706, -0.016638266, -0.015369698, -0.028843222, -0.0020247009, 0.014862272, 0.0037322596, -0.023047872, -0.026720041, 0.0060323733, 0.0044934, 0.02220661, 0.022860926, -0.006569845, 0.0010206962, -0.015823713, 0.0031864417, -0.014862272, -0.04038051, -0.040914647, 0.013647118, 0.040674284, -0.0068636187, 0.0241562, 0.02363542, 0.032475334, 0.01645132, -0.0010290421, 0.007938563, -0.014688678, -0.005982298, -0.061639037, -0.011049892, 0.012946066, 0.02959101, -0.0023985943, -0.0066265967, -0.0014346499, 0.013299931, 0.012625586, 0.011630762, -0.004887324, -0.023622066, 0.0050742705, 0.019362349, -0.02052409, -0.006943739, -0.018347494, -0.024182906, 0.0415289, -0.009160394, -0.006793514, -0.01653144, 0.02959101, -0.011183426, 0.016838567, -0.008960093, 0.018774802, -0.010642615, 0.0028058714, -0.019348996, -0.0061258464, 0.022406911, -0.0173727, 0.013820711, -0.0025154362, -0.011196779, -0.013393404, -0.0024887295, -0.015636766, -0.033650428, 0.0015364691, -0.018080428, -0.011543966, -0.038350802, 0.00318978, -0.036027323, -0.013580351, 0.0024770454, -0.0034551776, 0.007264219, 8.391742E-4, -0.04289094, 0.042917646, 0.01235852, 0.049407374, 0.014621912, 0.037442777, 0.019736242, 0.02160571, -0.012672324, 0.023608712, -0.019896483, -0.016958747, 0.028175555, 0.013032864, 7.240016E-5, -0.0065331236, -0.009934888, -0.0012727405, -0.04104818, -0.047938503, 0.021271877, 0.02064427, 0.009527611, -0.021899484, -0.009661145, -0.011457169, 0.029323943, 0.0066399504, -0.011423785, 0.021765951, -0.025812013, -0.019736242, -0.003985973, 0.014074424, 0.019415762, -0.0015423112, -0.035332948, 0.0013620411, -0.0066533037, -0.01173759, -0.0047938502, -0.005852103, 0.023902485, -0.0074044294, 0.0085862, 0.025905486, -4.4149492E-4, 0.0155967055, -0.011490553, -0.0043298216, 0.035760254, -0.023074578, 0.020203609, -0.0036821845, -0.0019529265, -0.0070639187, 0.0037489512, -0.023354998, -0.018667975, -0.022433618, 0.0039993264, 0.01669168, 0.009474197, -0.008699704, -0.022139844, -0.013253193, -0.00788515, -0.009387401, 0.0038123797, 0.0038691314, -0.048365813, 0.009761294, 0.00814554, -0.0011266884, 0.007184099, 0.0094341375, 0.0055416375, 0.0022533769, 0.02571854, -0.01253879, -0.0043965885, -0.0050509023, -0.022019664, -0.0359472, -0.01269903, 2.9982429E-4, -0.02152559, 0.0058955015, -0.03757631, -0.014848919, -0.0076381126, -0.019095281, -0.004540137, -0.0053914124, -0.003935898, 0.02351524, 0.019041868, -0.011370372, -0.026653275, -0.015182752, 0.03199461, 0.020831216, -8.955086E-4, 0.022460325, -0.013393404, 0.010415608, -0.022153197, 0.008172247, 0.0065831984, -0.035680134, -0.021151697, 0.019629415, 0.03477211, -0.0019028515, -0.0046736705, -0.033463478, -0.016130839, -0.009754618, 0.028095435, -0.0056518028, -0.023127992, 0.030819518, 0.022673978, 0.021819364, 0.023929192, -0.010869622, -0.017466174, 0.0016716718, -0.012472023, -0.016277727, -0.004016018, 0.002742443, 0.0131931035, -0.023675479, 0.00840593, -0.038457632, -0.014328138, -0.032181557, -0.024142846, 0.004423295, 0.027694834, 0.046416223, 0.01279918, -0.0068502654, 0.027801663, -0.0045134304, 0.011951243, -0.03586708, -0.014501732, 0.009080274, 0.008619583, 0.015877126, 0.013413434, -0.02052409, 0.011009832, 0.013927538, 0.02623932, 0.0076047294, 0.039712846, -0.038430925, -0.0089868, -0.00882656, 0.0086329365, 0.015276225, 0.009888151, 0.018641269, -0.024543446, -0.007304279, 0.002296775, 0.02919041, -0.0013153044, -0.0028626232, 0.0063395, 4.9741205E-4, 0.015797006, 0.0061391997, -0.0150625715, -0.006516432, -0.027187409, 0.02152559, -3.6969464E-6, -0.012044717, 0.029404063, 0.0020580841, -0.020323789, -8.0412166E-4, -0.0031079908, 0.009861444, -0.009500904, 0.0042063035, 0.0020948057, 0.0046169185, -0.020390555, 0.02208643, -0.015503232, -0.004199627, 0.0018460997, 0.001777664, -0.01729258, 0.019509235, 0.0034251327, -0.04208974, -0.0165715, 0.008299103, -0.0062026284, -0.012024686, -1.4521761E-4, -0.022340145, 0.00316975, 0.009534287, 0.008933387, -0.021178404, -0.034131147, -0.0155967055, -0.004126183, -0.026426267, 0.004122845, 0.17508905, -0.020136843, 0.022033017, 0.05966274, 0.0016124162, 0.019616062, 0.017466174, 0.014061071, -0.0054815477, 0.006843589, 0.004186273, 0.028763102, -6.780995E-4, -0.0012385227, -0.0012702368, -0.026746748, -0.035146, -0.002445331, -0.0075446395, -0.015089279, -0.010121834, -0.003378396, -0.015302932, 8.496065E-4, -0.010335488, -0.018748095, -0.011717559, 0.0058387495, 0.019041868, 0.009327311, -0.030312091, -0.01729258, 0.011163396, 0.010355518, -0.03338336, -0.008372546, -0.0054281345, 0.011163396, -0.0041896114, 0.030953052, 0.005474871, -0.022059724, -0.007451166, 0.013740591, -0.0074778725, 0.014942392, -0.026933694, -0.011770973, -0.007057242, 0.012792503, -0.03517271, 5.461309E-5, 0.006189275, 0.03175425, 0.008279073, -0.021779304, 0.014888979, -0.020230316, -0.0015297924, -0.014461671, -0.0087464405, 0.036401216, -0.033463478, 9.071928E-4, 0.0016633259, 0.0026506388, -0.042517047, 0.016825214, 0.008532787, -0.03789679, -0.018000308, -0.011717559, -0.02483722, -0.004126183, -5.278744E-4, -0.032181557, -0.003081284, 0.02084457, 0.038003616, -8.955086E-4, -0.019175401, -0.020030016, 5.8212236E-4, -0.012265046, -0.016130839, -0.016117485, 0.015169399, -0.014982452, -0.001386244, -0.0039091916, -0.007264219, -0.027214115, -0.0077249096, 0.012765797, -0.002922713, 0.015102632, -0.006823559, 0.007985299, 0.0026706688, -0.01263894, -0.019068575, -9.864783E-4, 0.040567458, -0.016598206, -0.028228968, -0.018013662, 0.0022867601, 0.009721234, 2.3973425E-4, -0.04096806, -0.023849072, -0.033116292, -0.005037549, -0.020537443, 0.006589875, 0.02487728, 0.0137272375, -0.004136198, 0.025852073, -0.015503232, -0.0050241956, -0.020951396, 0.01209813, -0.005802028, 0.0033266519, -0.034157854, -0.011844416, 0.019108634, 0.021298584, -0.02487728, 0.0167718, -0.032101437, 0.004950752, -0.0039792964, -0.0032448627, 0.030045023, 0.009881474, 0.0023201434, 0.024369853, -0.017305933, 0.010622585, -0.0035653429, 0.018601209, 0.0027307589, 0.015997306, -0.0094341375, 0.0056518028, 0.021725891, 1.8047879E-4, -0.020096783, -0.012004656, -0.018788155, 0.010555819, 0.0011859438, 0.03864458, 0.00784509, -0.009674498, -0.0098347375, 0.0011266884, 0.031433772, -0.04604233, 0.0035319594, 0.013133014, -0.02132529, -0.029377356, -0.011190102, -0.17006819, 0.004867294, 0.007911856, -0.01281921, 0.018734742, 0.012679, 0.015289579, -7.244189E-4, 0.019028515, -0.026145848, 0.02627938, 0.013506907, -0.048205573, -0.011851093, 0.005057579, -0.0106359385, -0.010115158, 0.030231971, 0.0021932868, -0.017639767, 0.017305933, -0.003975958, -0.020363849, -2.5371354E-4, -0.0010866284, 0.013713884, 0.00587881, 0.006322808, 0.00395259, -0.010702705, -0.023421764, -0.022834217, -0.0022784143, -0.021979604, -0.0020580841, -5.358029E-4, -0.028522743, -0.008065419, -0.018988455, -0.003001164, 0.021632416, 0.017679827, 0.024009312, 0.007911856, 0.004930722, 0.018240668, 0.021071577, -0.00657986, -0.0019796332, -0.027347649, -0.011016509, -0.034905642, 0.0062059667, 1.9195431E-4, 0.004687024, 0.020657623, -0.0015823713, 0.0021231817, 0.016264373, -0.004186273, -0.025010813, -0.01669168, 0.005090962, -0.023087932, -0.008819884, -0.015115986, -0.014381551, 0.03805703, -0.031139998, 0.011109982, -0.008112157, 0.015756946, 0.013373374, 0.006750115, -0.0024253011, -0.012946066, -0.04078111, -0.005207804, -0.0065731835, 0.007364369, -0.027774956, 0.03957931, -0.013580351, 0.010949742, 0.015222812, -0.0053413375, -0.007023859, -0.016037365, -0.00316975, -0.015957246, -0.00621932, -0.016945394, -0.044279687, -0.010896329, 0.008439314, 0.020457324, -0.017118987, 0.0011358688, -0.00304957, 0.008178923, -3.4989935E-4, -0.013326637, -0.023702186, 0.031220118, 0.04054075, 0.026546448, 0.023168052, 0.024222966, 0.028122142, 0.010021685, -0.014354845, 0.008599553, 0.017920187, 0.021552296, -0.017199107, 0.0055850362, -0.025064226, -0.027774956, 0.018294081, 0.0025321278, 0.05239852, -0.011884476, -0.019616062, -0.0072108055, -0.0064530033, -0.0073376624, -0.08679674, 0.007224159, 0.00314972, 0.04224998, -0.03733595, 0.028148849, -5.8170507E-4, 0.04144878, -0.006269395, 0.021231817, 0.0019295582, -0.013593704, 0.030579157, -0.0034752078, 0.034131147, 2.7061385E-4, -0.024676979, -0.0024002634, -0.003448501, 0.038190562, -1.9591859E-4, -0.011250192, -0.005558329, -0.0101018045, -0.011009832, 0.020470677, -0.034825522, 0.016584853, 0.028736396, 0.009500904, 0.04206303, -0.028496036, 0.019202108, -0.017452821, -0.025945548, -0.021378703, -0.022340145, -0.015182752, 0.026880281, -0.049407374, 0.012231663, 8.554486E-4, 0.009627761, -0.043344956, 0.0012986127, -0.013253193, -0.031941198, 0.0339442, -0.02092469, -0.02272739, -0.018147195, -0.014248018, -0.038110442, 0.0056184195, 0.04030039, 0.018053722, 0.023181405, 0.0035219444, -0.014488379, 0.009073597, 0.0050642556, -0.012245016, -0.01629108, -0.0015214466, -0.004700377, 0.015409759, -0.007110656, -0.002445331, 0.004510092, -0.011503906, -0.0014021011, 0.019829717, -0.034131147, -0.011624086, -0.026452973, 0.0064530033, -0.034131147, -0.0052044657, 0.018921688, -0.030579157, 0.004303115, -0.021712538, 0.0016716718, -0.020190256, 0.017946893, 0.022219963, 0.012992804, -0.01984307, 0.004343175, -0.03976626, 0.023622066, 0.028789809, 0.0064530033, -0.014782151, -0.0078317365, 0.030045023, 0.008459344, 0.013600381, -0.0019312274, 0.021632416, -0.017118987, 0.009093627, -0.07937228, 0.014995805, 0.009540964, -0.0031563966, -0.0031630734, 0.006152553, 0.00842596, -0.01669168, -0.0070705954, 0.018027015, -0.015022512, 0.013940891, -0.0062760715, 0.010862946, -0.009621085, 0.0017559647, 0.0173727, -0.0061258464, 7.4778724E-4, 0.0055683446, -0.008980123, 0.005144376, 0.030285385, 0.007938563, -4.485889E-4, 0.026533095, 0.008212307, 0.021806011, -0.013794004, -0.020791156, 0.015463172, -0.020510737, -0.013293254, 0.021338644, 0.0020998134, -0.029537596, -0.014448318, 0.006876972, 0.010262045, 0.014808859, -0.0057886746, -0.020470677, 0.0012009664, -0.026105788, -0.027254175, 0.028095435, -0.00587881, 0.0165715, 0.02927053, -0.0089868, 0.03458516, -0.0022734068, -0.0052812477, -0.026679981, 0.0026222628, -0.032956053, 0.056885246, 0.012298429, 0.003962605, 0.018440967, 0.0167718, 9.622754E-4, 0.035039175, -0.022406911, -0.008272396, 0.010255368, -0.0059756213, -0.002455346, 0.005197789, -0.030979758, 0.027534595, -0.016838567, 0.006346177, 0.008172247, 0.011844416, 2.6226803E-4, 0.008592877, -0.0043298216, 0.0021982943, 0.00678016, 0.0036154178, -0.006272733, -0.040674284, 0.015115986, 0.017960247, 0.0130395405, -0.018788155, 0.032929346, -0.014715385, 0.009200454, -0.029804664, 0.0045635053, 0.011023185, 0.0021432117, 0.018988455, 0.024863927, -0.014808859, 0.0050342106, 0.019629415, 0.020337142, 0.010756118, -0.012211633, -0.0038090413, 0.0027374355, -0.026786808, -0.0036588162, -0.0038624548, -0.02627938, 0.014915685, 0.022473678, 0.02704052, 0.010655968, -0.014194605, 0.002088129, -0.028869929, 0.014782151, -0.0036120794, -0.019495882, -0.02152559, 0.041395366, 0.011143366, 0.017573, 0.017599707, -0.02790849, 0.043585315, 0.020751096, 0.016037365, -0.012411933, 0.01725252, -0.010302105, -0.010662645, 0.011490553, -0.027347649, 0.019789655, -0.015503232, 0.011109982, -0.014021011, 0.028255675, -0.0032415243, 0.060837835, 0.00894674, -0.0035319594, 0.017145693, -0.02708058, 0.020630917, 0.019682828, 0.018440967, -0.007878473, -0.00832581, -0.011844416, -0.011009832, 5.900509E-4, -0.012805857, -0.01573024, 0.0037890114, 0.019268876, -0.010408931, -0.0039926497, -0.02527788, 0.008212307, -0.0054681944, 0.03869799, 0.007090626, -0.034531746, -0.013874125, 0.015863772, -0.014782151, 0.001356199, -0.0323418, 3.496907E-4, -0.00882656, -0.007631436, -0.0026222628, 0.014728738, 0.004907354, -0.006002328, -0.0077115563, 0.01625102, -0.008953417, 0.003508591, -0.0033366669, -0.005080947, 0.015489879, 0.009974948, 0.0026356163, 0.001331996, -0.016731739, -0.020270376 ], + "id" : "07c77171-3807-43ad-a654-547bfb0fcc63", + "metadata" : { + "source" : "movies.csv" + } + }, + "d907f307-d4d0-43af-9cf9-a5051edf858e" : { + "text" : "Wood-Annie Mumolo-Elise Gallup-McKenna Roberts-Brylee Hsu-Sasha Milstein-Lauren Holt-Sterling Jones-Ryan Piers Williams-Jamaal Lewis-Kathryn Akin-Grace Jabbari-Ira Mandela Siobhan-Lisa Spencer-Naomi Weijand-Tom Clark-Ireanne Abenoja-Davide Albonetti-Charlotte Anderson-Michael Anderson-Rico Bakker-James Bamford-William John Banks-Callum Bell-Adam Blaug-Mason Boyce-Taylor Bradshaw-Alex Brown-Miekaile Browne-Lewis Calcutt-Nikkita Chadha-Oliver Chapman-Megan Charles-Callum Clack-Danny Coburn-Kat Collings-Adam Crossley-Sia Dauda-Gustave Die-Grace Durkin-Joelle Dyson-Lewis Easter-Onyemachi Ejimofor-Cameron Everitt-Luke Field-Wright-Sasha Flesch-Adam Fogarty-Mikey French-Anna-Kay Gayle-Charlie Goddard-Marlie Goddard-Ellis Harman-Yasmin Harrison-Josh Hawkins-James Healy-Tim Hodges-Mira Jebari-Beccy Jones-Thomas Kalek-Lily Laight-Maiya Leeke-Cristian Liberti-Prodromos Marneros-Nahum McLean-Jordan Melchor-Ramzan Miah-Andy Monaghan-Florivaldo Mossi-Hannah Nazareth-Grant Neal-Freja Nicole-Shaun Niles-Ella Nonini-Jack William Parry-Josie Pocock-Barnaby Quarendon-Redmand Rance-Zara Richards-Liam Riddick-Alana Rixon-Adam Paul Robertson-Kingdom Sibanda-Sebastian Skov-Aaron J. Smith-Joshua Smith-Lucia-Rose Sokolowski-Janine Somcio-Callum Sterling-Todd Talbot-Charles Tatman-Grant Thresh-Connor Tidman-Wahchi Vong-Jerry Wan-Sasha Wareham-Stan West-Oliver Wheeler-Josh Wild-Joe Wolstenholme-Richard Womersley-Ashley Young-Alex Sturman,feminism-satire-patriarchy-based on toy-female protagonist-doll-fantasy world-motherhood-existentialism-woman director-mother daughter relationship-gender discrimination-barbie-secret world,/iuFNMS8U5cb6xfzi51Dbkovj7vM.jpg,/nHf61UzkfFno5X1ofIhugCPus2R.jpg,617932-615656-298618-872585-16418-1061181-13002-828898-1034470-667538-71915-1083862-34564-1160089-1160053-335977-1076487-385687-823346-1160057-37353\r\n99861,Avengers: Age of Ultron,Action-Adventure-Science Fiction,en,When Tony Stark tries to jumpstart a dormant peacekeeping program things go awry and Earth��s Mightiest Heroes are put to the ultimate test as the fate of the planet hangs in the balance. As the villainous Ultron emerges it is up to The Avengers to stop him from enacting his terrible plans and soon uneasy alliances and unexpected action pave the way for an epic and unique global adventure.,87.546,Marvel Studios,4/22/15,365000000,1405403694,141,Released,A new age has come.,7.277,21708,Robert Downey Jr.-Chris Hemsworth-Mark Ruffalo-Chris Evans-Scarlett Johansson-Jeremy Renner-James Spader-Paul Bettany-Elizabeth Olsen-Aaron Taylor-Johnson-Samuel L.", + "embedding" : [ -0.0072462405, -0.03656981, -0.026546974, -0.05073723, -0.010876133, 0.03312954, -0.016551226, -0.00996866, -0.031693835, -0.046701003, 0.022889992, 0.013496969, 0.02145429, -0.0064606667, -0.005177337, 0.010747462, 0.01093031, -4.554296E-4, -0.002314395, -0.027535712, -0.010253091, -0.0022246635, -0.019503899, 0.013706907, 0.01284684, -0.013043232, 0.030068511, -0.012162848, -0.0019233011, -0.008593906, 0.011099615, -0.014221593, 0.00931853, -0.02585621, -0.019652888, 2.2813806E-4, 0.0060170884, -0.036136393, 0.027427359, -0.005068982, -5.1807234E-4, 0.0036095758, -0.016185528, -0.0025361842, -0.027467992, 0.015250966, 0.008654855, -0.004774392, -0.023038981, 0.025910389, 0.030556109, 0.031477127, -0.013009371, -0.0047540753, -0.01461438, -0.004269864, -0.027129382, 0.020614538, 0.0032591152, 0.019260101, 0.007598394, -0.0027512012, -0.025151903, -0.0055599655, -0.013144815, -0.0145872915, -0.011891961, -0.010713601, -0.0064200335, -0.001625325, 0.02944547, 0.010070242, 0.006988897, -0.01024632, 0.021562643, -0.02352658, -0.02811812, -0.012691079, -0.007869282, 0.0046897396, 0.010395307, 6.298134E-4, -0.012955194, 0.011072526, 0.0072123795, 0.013767856, 4.376526E-4, 0.019869598, -0.031124972, 0.012494685, 0.0038635328, 0.025815578, 0.0031795418, 0.004632176, -0.0043138834, 0.028009767, -0.028632808, 0.02034365, -0.01665958, -0.026831405, 0.007821877, 0.0013434327, -0.009216947, -0.013354753, -0.009061187, 0.004344358, -0.009521695, -0.008783527, 0.013706907, 0.009379479, -0.0050114184, -0.013585008, 0.018366171, -0.038709823, -0.0066739903, -0.028280653, 0.011004805, -0.021278212, -0.01817655, -0.015345776, 0.0539337, 0.04095819, 0.0130906375, -0.03922451, 0.030908262, 0.030393576, -0.0066638323, -0.014952989, -0.00572927, 0.0052518314, 0.03814096, -0.0048014806, 0.015007167, 0.012474369, -0.014790457, 0.04003717, -0.021833532, 0.018894402, -0.01405906, -0.0130026, 0.021657454, 0.026519885, -0.016537681, -0.012738484, -0.043883774, 0.015129066, 0.021698087, 0.008898654, 0.014655014, 0.014925901, 0.0076864325, 0.024732027, 0.008560045, 0.0035350816, 0.03204599, -0.0026157573, 0.008465234, -0.008268841, -0.00736814, -0.02771179, 0.0045407517, -0.01712009, 0.002019805, -0.008140169, -0.0036028037, 0.016686669, 0.020790614, -0.013862668, -0.004513663, -0.0051874956, -0.005563352, 0.016361604, -0.02879534, 0.014506025, 0.0053568003, 0.014993623, -0.0046457206, -0.012271203, -0.03594677, -0.012921333, 0.003934641, 0.013977794, 0.039278686, 0.025991654, -0.004622018, 0.010165053, 0.026018742, -0.0049098358, 0.010374991, -0.018149462, 0.018488072, 0.02412253, 0.0064335777, -0.00897992, -0.63192636, -0.010916766, 0.0071107964, 0.0033556188, 0.013056777, 0.011174109, 0.014871723, -1.5046954E-4, -0.030799907, -2.907808E-4, -0.029770534, 0.01981542, 0.027142927, -0.011018349, -0.015576031, -0.004266478, 0.0086142225, -0.025341524, 0.00293405, -0.0024075126, -0.035459172, 0.038032603, 0.027589891, -0.008688716, 0.0019470039, 0.012027404, -0.004991102, -0.02275455, -0.008946059, 0.0026648557, -0.013910073, 0.025991654, 0.016456414, 0.009806127, 0.0450215, 0.020194663, -0.03507993, 0.0601912, 0.028199388, 0.024664305, -0.025273804, -0.0116617065, 0.012128987, -0.003548626, -0.015928185, 0.027332548, -0.010686511, 0.0021230807, 0.005742815, -0.0030711868, -0.0074087726, 0.007334279, -0.0019368456, 9.3710143E-4, -0.009386252, -0.006653674, 0.014235138, -0.026370898, 0.016375149, 0.0118513275, -0.026086465, 0.020140484, -0.0048996774, 0.016239705, -0.0033793214, 0.02448823, -0.014438303, 0.008255296, 0.0025074023, -0.029174583, 0.013822034, 0.017093001, -0.019300733, -0.0031609184, 0.019097568, -0.0057665175, 0.029526737, -0.0012706317, 9.523388E-4, 0.019056935, 0.0033420743, -0.0044730296, 0.0015956967, 0.0066773766, 0.0258833, -0.019273644, -0.034077644, 0.014451847, 0.008587133, 6.97112E-4, 0.011228287, 0.012826523, 0.016510593, -6.784885E-4, -0.011946138, -0.004120876, -0.011770061, 0.007964092, 0.024528863, -0.058132455, -0.008891881, -0.010049926, 0.05759068, -0.010253091, 0.019029846, 0.01439767, -0.016930468, -0.0021992677, 0.025585324, -0.008289157, -0.009352391, 0.0017218286, -0.012054494, 1.8771656E-4, -0.012061265, -0.020059219, 0.013679818, 0.014506025, -0.007828648, -0.013036461, 0.0026546973, 0.013287031, -0.0017353729, -0.0032083236, 0.011451769, 0.028876606, 8.761517E-4, -0.00807922, 3.2062075E-4, 0.020370739, 7.5213605E-4, 0.0029103474, 0.014668558, -0.01164139, 0.023987086, 0.008201119, 0.009304985, -0.016605403, 0.024014177, -0.00441208, -0.0135376025, -0.012785889, -0.018284906, -0.015887551, -0.024230886, -0.0118174665, -0.027793057, -0.0049470826, 0.0015821522, -0.0059493664, -0.016673125, 0.028307743, 0.0065656356, 0.016022995, 0.00303394, 0.0039380267, -0.027955588, -0.025517602, 0.006575794, -0.021020869, -0.0025209468, 0.027522169, 0.0069008586, -0.02089897, 0.024718484, 0.014465392, -0.018379716, 4.3384323E-4, 0.0049335384, -0.012183165, 0.0024244431, -0.010544295, 0.0032337194, 0.009806127, -0.0030779592, 0.022117963, -0.009772266, 0.027671156, -0.00657918, -0.009216947, -0.003333609, -0.004554296, -0.033888023, -0.0108693605, 0.025991654, 0.041201986, 0.028632808, -0.011018349, -0.005461769, -0.0022669898, -0.019463265, -0.009792583, 0.0016769628, -0.021508466, -0.004019293, 0.023255691, 0.0027562801, -0.00636247, -0.008424601, -0.0010818569, 0.01786503, 0.02024884, 0.019530987, -0.007158202, 0.014235138, -0.027522169, 0.0020875267, -0.028497364, 0.005285692, -0.0033183717, 0.012156076, -0.0052653756, -0.013036461, 0.0017641548, -0.0017328335, 0.023445312, -0.008187574, -0.0017827783, -0.015616664, 0.0019944091, 0.00628459, 5.269608E-4, 0.014722735, 0.009860304, -0.04437137, 4.486574E-4, 0.01254209, -0.015562486, 0.00730719, -0.014492481, 0.011194426, 0.012603041, 0.0058410116, 0.014113238, -0.012752028, -0.028091032, 0.016293883, -0.009271124, 0.034673598, -0.022713916, 0.008045359, 0.016944012, 0.029255848, 0.0072462405, 0.005935822, -0.030691553, 0.03155839, 0.012318608, -0.012575951, 0.0382764, -0.016767936, 0.03182928, -0.007232696, 0.0017827783, 0.018786047, -0.013131271, 0.0017641548, 0.009386252, 0.042150095, 0.02944547, 0.018623514, -0.033888023, 0.0074087726, 0.008377195, 5.8706396E-4, 1.2814248E-4, -0.0043883775, 0.006514844, -0.010849044, -0.02876825, -0.019761242, -0.006416647, 0.012961966, 0.001680349, -6.200784E-4, -0.011235058, 9.066266E-4, 0.0126775345, 0.022957714, 0.027684702, -0.016497048, -0.031206239, -0.0053500277, 0.040199704, -0.020072764, -0.016889835, -0.009054414, -0.004662651, -0.021589734, -0.012474369, -0.0010623869, 0.028416097, -0.018135918, 0.012948422, -0.008932515, 0.015846917, 0.019923775, -0.0130026, 0.018393261, 0.019652888, -0.005959525, 0.009670683, -0.014329948, -0.0066638323, 0.025720768, -0.005275534, 0.0043545165, -0.011546579, -0.01882668, -0.009034098, 0.0039177104, 0.0013307348, -0.02966218, 0.020005042, -0.0015076582, -0.0051502483, 0.0014348571, 0.0035858732, 0.012081582, -0.017147178, -0.011715884, -0.024054809, -0.039278686, 0.0071852906, 0.088200964, 0.04025388, 0.013706907, 0.012758801, -0.022361763, 0.01610426, -0.018339083, -0.006298134, 0.0041107177, -0.021941887, 0.013124499, -0.010523979, 0.028903695, -6.2346447E-4, 0.015548942, -0.008180802, 0.016334515, -0.013219309, 0.009670683, -0.014952989, -0.0059493664, -0.016388694, 0.016632492, 0.021684544, 0.0034572016, -0.011018349, 0.010625562, 0.0016371763, -0.0060611074, 0.0064200335, -0.013436019, 0.00860745, 0.002534491, 0.0065690214, 8.939287E-4, 0.005719112, 0.043694153, 0.02275455, 0.02498937, 0.0014255454, -0.0071378853, 0.008573589, 0.0061999373, -0.01024632, 0.0036942281, -0.022185685, -0.011390819, 0.03288574, 0.034565244, -0.047486577, 0.023052525, 0.011011576, -0.031097883, -0.022212774, 0.03380676, -0.004886133, 0.011411135, -3.5575146E-4, -0.009420113, -1.5787661E-4, -0.009670683, -0.01827136, 0.023242146, -0.016226161, -0.006179621, -0.029851802, -0.017174266, -0.010354674, -0.013408931, 0.00795732, -2.7596662E-4, -0.02272746, 0.004943697, 0.004777778, 0.012196709, -0.0014560203, 0.024732027, -0.0025937478, -0.0033827075, 0.015007167, -0.027386725, -0.021535555, 0.015995907, -0.030556109, -0.012494685, 0.0128671555, 0.0017895505, 0.029851802, -8.7869127E-4, 0.0085803615, 0.004581385, -0.002532798, -0.012887472, -0.0034605877, 0.04087692, 0.02176581, 0.01730971, 0.028930783, -0.011228287, -0.009643595, 0.0057665175, -0.0238381, -0.006724782, -0.009115364, -0.025829121, -0.01254209, -0.016944012, 0.01625325, -0.01988314, -0.020479094, -0.010016065, -0.016415782, -0.0020942988, -0.0031016618, -0.0038262857, -0.0053026224, 0.022443028, 0.01817655, -0.016199071, -0.004229231, 0.00462879, -0.039495397, 0.020221751, 0.032994095, -0.008946059, 0.032425232, -0.02362139, -0.026885584, 0.011384047, 0.0237162, 0.00622364, 0.032912828, -0.005353414, -0.014329948, -0.002062131, -0.028659897, -0.013645957, -0.02043846, -0.013226082, 0.008241752, -0.013246398, 0.021847077, 7.3700445E-5, 0.01346988, -5.625148E-4, -0.034971576, 0.013368297, 0.002854477, 0.011790378, 0.027440902, -0.0046186317, 0.01808174, -0.019354912, -7.017679E-4, -0.012352469, -0.027793057, -0.026208365, -0.007571305, 0.041499965, 0.012217026, 0.04439846, 0.0021857235, 0.032587767, 0.006721396, 0.0056987954, 0.0054888576, -0.020641627, -0.02099378, -0.02015403, 0.013077093, 0.021251123, 0.021928342, 0.008146942, -0.0106458785, 0.011533035, 0.0099754315, -0.006792504, 0.01012442, -0.005136704, -0.023959998, -0.035215374, -2.1797977E-4, -0.025937477, -0.006778959, -0.02944547, -0.008783527, 0.024393419, 0.00592905, 0.009691, -0.010327586, 0.02660115, -0.00397866, 0.019463265, -0.024163164, 0.018799592, -0.02653343, -1.0930734E-4, -0.020641627, 0.0034639738, 0.004381605, -0.0053229393, 0.02578849, 0.0099754315, -0.017323256, -0.0066401297, 0.028903695, -0.020479094, -0.020411372, 0.021711633, -0.034483977, -0.004913222, -0.01969352, -6.882235E-4, -0.044615168, -0.012318608, 0.014980078, -0.0038838494, 0.014343493, -0.025504056, -0.045536187, 0.02402772, -0.0039922046, 0.030447753, 0.0098196715, 0.04033515, 0.028253565, 0.026831405, -0.014248682, 0.00990771, -0.017133635, -0.0022331288, 0.033021186, 0.016618947, -0.034294356, -0.0034673598, -0.0010590007, 0.001573687, -0.031910546, -0.03510702, 0.012088354, 0.013781401, 0.027034571, -0.01892149, -4.6177852E-4, -0.038384758, 0.0047574616, -0.0021484764, -0.0054380666, 0.0055024023, -0.031937636, -0.016984645, 0.006585952, 0.0042834086, 0.008654855, -0.0022246635, -0.021887708, 0.015779195, -0.019571621, 0.008593906, -0.019097568, -0.011878416, 0.042285535, -0.019260101, 0.020763526, 0.0061017405, -0.0047202143, 0.008952832, 0.008383968, 0.007808332, 0.02963509, -0.008722577, 0.01610426, 0.021386568, 0.00702953, 0.013896529, 0.021603277, -0.0076593435, -0.021251123, -0.028984962, -0.010862588, 0.020939603, -0.0051604067, -0.0045407517, -0.004303725, -0.022741005, -0.017580599, -0.0026462323, -0.016226161, 0.007821877, -0.028416097, 0.0011038665, 0.0015711475, 0.005962911, -0.0063116783, 0.0014704112, -0.010896449, -0.021616822, 0.0056581623, -0.013855895, 0.0074764946, -0.018311994, -0.030501932, -0.030231044, -0.024352785, -0.01093031, -0.015684385, -6.1372947E-4, -0.013171904, -0.0062608873, 0.013415703, 0.0035892592, -0.011329869, -0.00941334, -0.014045516, 0.011092843, 0.020086307, -0.0014991929, -0.0106797395, -0.007300418, 0.029364204, -0.010463029, -0.013138043, -0.0017760061, 0.018582882, 0.02882243, -0.0074629504, 0.027874323, 0.0011241831, -0.029120404, 7.453639E-4, 0.02631672, 0.030420665, 0.0057394286, -0.0041547366, -0.04095819, -0.0065453188, -0.005366958, 0.028416097, -0.013151588, -1.5057535E-4, 0.029255848, 0.021819986, 0.056669664, 0.019964408, -0.008085991, -0.020045673, -0.008309473, -0.009284669, -0.018149462, -0.014248682, 0.005177337, 0.02597811, 0.016673125, -0.0028290811, -0.022280496, 0.008600677, -0.028984962, -0.032154344, 3.7606803E-4, 0.014370581, 0.030420665, 0.012000316, 0.00941334, 0.005874872, 0.0048962915, -0.018447438, -0.021698087, -0.012718167, 0.014871723, 0.0024176708, 0.027589891, 0.008715805, -0.026723051, -9.540319E-4, 0.0067112376, 0.019761242, -6.907631E-4, 0.025463425, -0.016429326, 0.0019639344, -0.014004883, 0.0069414917, -0.008113081, -0.012345698, 0.04263769, -0.021779355, 6.1499927E-4, 0.0042597055, 0.017106544, -0.010117648, 0.016239705, -0.0011622766, -0.012731712, 0.001720982, 0.0012503151, -0.017038822, -0.0031338297, -0.023553668, 0.03353587, 0.004943697, -0.016944012, 0.029553825, 0.01969352, -0.0021230807, 0.01665958, 7.347823E-4, 0.011512718, -0.0033149857, -0.006982125, -0.0030931965, 0.007997953, -0.027346091, 0.005935822, -0.028280653, 9.074731E-4, -0.017418066, -0.0061660763, -0.018433893, 0.027671156, 0.0025971339, -0.042962756, 5.5404956E-4, -0.017539965, 0.009677456, -0.020099852, -0.012426964, -0.020194663, -0.017065912, -0.007889598, -0.00448996, -0.020533271, -0.009487835, 0.010740689, -0.0010175211, -0.006335381, 0.019761242, 0.18864605, -0.009914482, 0.0029746832, 0.04594252, -0.008512639, 0.002783369, 0.026777228, 0.012968739, 0.0010573077, 0.0055836686, 0.0017861644, 0.006765415, 0.0010615403, 8.682156E-5, -0.002603906, -0.02968927, -0.016916923, -0.021698087, -0.020086307, -0.015968818, 4.5162023E-4, 0.0045339796, -0.011614301, -0.026885584, 0.0023364045, 0.0035994174, -0.0059188916, 0.0045712264, 0.008018269, 0.0022161982, -0.0041750534, -0.011174109, 5.904501E-4, 0.017905664, -0.014072605, -0.01418096, -0.0062744315, 0.0071040243, 0.02675014, -0.0065453188, 7.4113125E-4, -0.0015745335, -0.001719289, 0.010720372, 0.0041750534, 0.008797071, -0.008411056, -2.3662975E-5, -0.0058308532, 0.010618789, -0.026831405, -0.009216947, 0.01786503, 0.027427359, -0.007828648, 0.006585952, 0.0021501693, 0.012115443, -0.008620994, 0.002527719, 0.0063387672, 0.03984755, -0.034348533, 0.0149665335, 0.0036231203, 0.013767856, -0.04098528, -0.0013789866, 0.0066062687, -0.017539965, -0.006826365, -0.025869755, 0.004581385, 0.0038601467, -0.013801717, -0.012217026, 0.0058782585, 0.009467518, -0.0061423737, 0.013835578, -0.033942204, -0.009738405, -0.0063116783, -0.0020570518, -0.019652888, -0.009684227, 0.019341366, -0.01600945, -0.015643753, -0.014506025, -0.014031972, -0.027034571, -4.5289003E-4, 0.010049926, -0.019571621, 0.0021738722, 0.020479094, 0.019314278, -0.025517602, -0.0091830855, -0.03703032, 0.022266952, 0.021684544, 0.013408931, -0.03223561, -0.017174266, -0.0043883775, 0.014519569, 0.0065453188, -0.017079456, -0.022998348, -0.033048272, 0.0026665488, -0.0027799828, 0.010916766, 0.026018742, -0.012183165, -0.013246398, 0.04439846, -0.018311994, 0.0062405705, -0.016984645, 0.007239468, -0.0050520515, 2.7744804E-4, -0.0279285, -0.0148988115, 0.016022995, -1.234866E-4, -0.029743446, 0.02034365, -0.007049847, 0.011255375, 0.0048996774, 0.0010336051, 0.009873849, 0.021169858, -0.019666431, 0.009447201, -0.016591858, -0.008553272, -0.008302702, 0.0070701633, 0.0053093946, 0.007076936, -0.02749508, 0.009081503, -0.0029171195, -0.013056777, -0.041391607, -0.028876606, -0.006108513, 0.020370739, 0.0030559495, 0.026357353, 0.008627767, -0.016916923, -0.017594142, -0.026736595, 0.039522484, -0.031991813, 0.03814096, 0.026059376, -0.0069550364, -0.027765967, -0.009101819, -0.17347635, 0.023594301, 0.020357195, -0.040362235, 0.01827136, 0.013801717, 0.02099378, 0.0029188127, 4.2918738E-4, -0.024650762, 0.031991813, -0.0057326565, -0.03461942, -0.005163793, -5.096071E-4, 0.014113238, 0.0028747935, 0.019530987, 0.02554469, 5.5447285E-4, 0.03315663, -0.014560202, -0.004879361, 0.013056777, 0.009833216, -0.005644618, 0.036271837, 9.4895274E-4, 0.006701079, -0.006724782, -0.03957666, -0.026858494, 0.016226161, -0.0037788805, -0.010686511, 0.009758722, -0.025300892, -0.020113396, -0.006318451, 0.009155997, 0.035865504, 0.01690338, 0.028389009, 0.018745415, 0.021169858, 0.02968927, 0.040606033, -0.008228207, 0.009623278, -0.028876606, -0.009880621, -0.023729743, 0.028876606, -0.011979999, -0.015291599, 0.023350501, 0.0031558392, 0.008898654, 0.015576031, -0.0130026, -0.028984962, -0.0034165685, 0.011925822, -0.0053838887, -0.008553272, -0.01827136, -0.011952911, 0.019950863, -0.035648793, 0.00636247, -0.021874165, 0.02056036, 0.014411215, -0.012961966, 0.021725176, -0.025991654, -0.042935666, 0.0065453188, -0.0030847313, 0.007937004, -0.011241831, 0.03296701, -0.005360186, 0.015643753, 0.010070242, -0.0035621705, 0.0011715884, 0.0023736516, -0.010056698, -0.01483109, 0.018758958, -0.01767541, -0.036298923, -0.008424601, -0.0035621705, 0.006758643, 0.0015372864, 7.004981E-4, 0.010706828, -0.01916529, 0.0015161234, -0.019368455, -0.021589734, 0.0066638323, 0.039305776, 0.0101989135, -1.3438558E-4, 0.013598552, 0.01959871, 0.0032777386, -0.015657296, -0.0038804633, 0.028605718, 0.003765336, -0.012007088, 0.020316562, -0.018027563, -0.015765652, 3.6400507E-4, 0.013171904, 0.05526105, 0.013774629, 0.0061322157, -0.007327507, 0.0019334594, -0.0234724, -0.08657564, -0.005089299, 0.013408931, 0.033292074, -0.014506025, 0.028416097, -0.01712009, 0.013991339, -0.02046555, 0.042962756, 0.0029949998, -0.025341524, 0.023607844, -0.0012350776, 0.0052382867, -0.0019436177, -0.023242146, -0.020167574, -0.024555951, 0.020397827, -0.005268762, -0.016822113, 0.007517128, -0.0100092925, -0.015088433, 0.017445154, -0.03573006, 0.020546816, 0.014411215, 0.018311994, -0.005021577, -0.02108859, 0.031070795, -0.03808678, -0.016226161, -0.03830349, -0.019111112, -0.023147335, -0.00795732, -0.046863537, -0.0027545872, 0.025558235, 0.0010767778, -0.020628082, -0.010449485, 0.0011978307, -0.025260258, 0.01690338, -7.673735E-4, -0.016524136, -0.013043232, -0.023242146, -0.036678165, -0.006149146, 0.0018132532, 0.0075239, 0.031016618, 0.009189858, -0.007916687, -0.041039456, -0.0036671394, -0.01244728, -0.025531147, 0.01678148, 0.0118513275, 0.0108693605, -4.423085E-4, -0.009264352, 0.025057092, -0.017106544, -0.021481378, 0.01699819, -0.040010083, -0.018217184, -0.0064606667, 0.011654934, -0.028036855, -0.00860745, 0.035188284, -0.03356296, 0.0020079536, -0.0409311, 0.018393261, -0.0139507055, 0.015806286, 0.017892119, -7.084343E-5, 0.01904339, -0.008140169, -0.04786582, -8.243022E-5, 0.0256395, 0.0074764946, -0.016117806, 0.008072447, 0.011214742, 0.0076187104, 0.0032641944, -0.0015000395, 0.0025006302, -0.017472243, -0.009054414, -0.08240397, 0.046998978, -0.01309741, -0.0019453107, -0.009101819, -0.005973069, 0.0028172298, -0.009812899, 0.0077676987, 0.02219923, -8.147788E-4, 0.018406805, -0.007571305, -0.0035553982, 4.4569458E-4, 0.010144737, 0.0031795418, -0.0070701633, -0.003001772, 0.0036772976, -0.014871723, 0.007869282, 0.020397827, 0.0059087332, 0.010957399, 0.019910231, -0.011187653, 0.0031355226, -0.013361526, -0.009582645, 0.022889992, -0.013171904, -0.010463029, -0.004872589, 1.1184691E-4, -0.038168047, 0.002060438, -0.0027359636, 0.015467675, 0.008180802, 0.00419537, -0.03424018, -5.341563E-4, 0.0047608474, -0.0116278455, 0.012528546, -0.01981542, 0.022253407, 0.011309553, 0.019341366, 0.052714705, 0.008370424, -0.005136704, -0.031097883, 0.018813137, -0.00730719, 0.04242098, -0.003040712, -0.011614301, -0.012332153, 0.017445154, 0.0014797229, 0.016456414, -0.031883456, -0.008837705, -0.0068026623, 0.0061762347, -0.0032980551, -8.269476E-5, -0.033048272, -0.0075035836, -0.0049403105, 0.021657454, 0.03296701, 0.006071266, 0.009928026, -0.0036400505, 0.014329948, -0.0017133633, 0.018352628, 0.0098196715, 5.464309E-4, -0.016835658, 0.025219625, -0.006376014, 0.0077473824, -0.006186393, 0.016862746, 0.0067417123, 0.006762029, -0.010740689, 0.021142768, 0.0045102765, -0.0025565007, 0.01615844, 0.011512718, -0.0017387591, -0.015061344, 0.010388535, 0.015670842, -0.0128671555, -0.01656477, 0.0043240413, -0.022348218, -0.032154344, -0.0022500593, -0.02077707, -0.026235454, 0.016036538, 0.0066028824, 0.016415782, 0.0042495476, -0.016212616, 0.012704623, -0.032723207, 0.004344358, -0.015115522, -0.009020553, -0.016280338, 0.044940233, 0.012616585, 4.192407E-4, 0.042935666, 8.9054264E-4, 0.04978912, 0.0029425153, -1.6390809E-4, -0.021129224, 0.0027512012, -0.0014966534, -0.0010107489, -0.012697851, -0.036217656, 0.013165132, -0.0066096545, 0.018122373, 0.010943854, 0.036894877, -0.021711633, 0.07454824, 0.01680857, -0.011072526, 0.010131192, -0.008221435, 0.021034414, 0.012196709, 0.0054075914, -0.017472243, -0.022646194, -0.013781401, -0.021427201, 0.001987637, -0.027589891, 0.0148988115, 0.0046423343, 0.0128807, 0.022158597, -0.021901254, -0.017878573, -0.013605325, -0.011553352, 0.029851802, 0.0028697143, -2.9529117E-6, -0.008932515, 0.01353083, -0.0057699033, -0.005163793, -0.03719285, 0.0064505083, -0.02207733, -0.002928971, -0.0013806797, 0.014655014, -0.006220254, -0.006118671, 0.008905427, 0.020614538, 0.00614576, -0.017567053, 9.119967E-6, -0.019449722, -0.012379558, 0.020533271, -0.010591701, 0.005570124, -0.022551384, -0.014248682 ], + "id" : "d907f307-d4d0-43af-9cf9-a5051edf858e", + "metadata" : { + "source" : "movies.csv" + } + }, + "7ffb82e7-5bab-4616-8119-97d44797fcc9" : { + "text" : "38,10630,Anne Hathaway-Meryl Streep-Emily Blunt-Stanley Tucci-Simon Baker-Adrian Grenier-Tracie Thoms-Rich Sommer-Daniel Sunjata-David Marshall Grant-James Naughton-Tibor Feldman-Rebecca Mader-Jimena Hoyos-Gisele B�_ndchen-George C. Wolfe-John Rothman-Stephanie Szostak-Colleen Dengel-Suzanne Dengel-Heidi Klum-Valentino Garavani-Bridget Hall-Ines Rivero-Alyssa Sutherland-Robert Verdi-Paul Keany-David Callegati-Rori Cannon-Stan Newman-James Cronin-Eric Seltzer-Lindsay Brice-Steve Benisty-John Graham-Wells Dixon-Ilona Alexandra-Frank Anello-Alexander Blaise-Marie Brandt-Carl Burrows-Dono Cunningham-Guy A. Fortt-Alexie Gilmore-Toree Hill-Vivian Kalinov-Tim Krueger-Hector Lincoln-Nina Lisandrello-Zev McAllister-Denis McKeown-Mateo Moreno-Matt Murray-Ingrid Sophie Schram-Bobby Shue-Brandhyze Stanley-Jen Taylor-Taylor Treadwell-Donatella Versace-Lauren Weisberger-Laura D. Williams,paris france-new york city-journalist-based on novel or book-journalism-fashion journal-assistant-job entrant-job interview-editor-in-chief-fashion-fashion magazine-bullied-city life-fashion industry,/8912AsVuS7Sj915apArUFbv6F9L.jpg,/3tWw50B1xXlCnJ9A7NX4nNzZF4j.jpg,10625-9880-11631-11130-10521-162-11036-787-118-50544-4523-24803-114-310-222935-44214-634-18240-1593-621-12155\r\n260346,Taken 3,Thriller-Action,en,Ex-government operative Bryan Mills finds his life is shattered when he's falsely accused of a murder that hits close to home. As he's pursued by a savvy police inspector Mills employs his particular set of skills to track the real killer and exact his unique brand of justice.,70.651,EuropaCorp-Grive Productions-M6-TSG Entertainment-Taken 3-20th Century Fox-Fox International Productions,12/16/14,48000000,325771424,109,Released,It Ends Here,6.229,5151,Liam Neeson-Forest Whitaker-Famke Janssen-Maggie Grace-Dougray Scott-Sam Spruell-Don Harvey-Dylan Bruno-Leland Orser-David Warshofsky-Jon Gries-Jonny Weston-Andrew Borba-Judi Beecher-Andrew Howard-Cedric Cirotteau-Catherine Dyer-Jimmy Palumbo-Robert Pralgo-Tony Williams-Al Vicente-Alexander Wraith-Shelley Calene-Black-Adam J.", + "embedding" : [ -0.0022352578, -0.02003815, -0.011171236, -0.048916265, -0.01328016, 0.053309295, 0.002191462, -0.0023851732, -0.019175716, -0.04635591, 0.023716977, 0.024444656, 0.017882062, -0.00491184, 0.0066838753, 0.025953919, 0.013751804, -0.020024676, 0.007512622, -0.038728744, -8.6380416E-5, -3.453111E-4, -0.019216143, 0.020024676, 0.0017366621, 0.016588408, 0.030077439, -0.009749564, -0.015065671, -0.012875893, 0.009352035, -0.010052764, -0.008664782, -0.031128533, -0.013798969, 0.004605271, 0.0032509777, -0.027732693, 0.021331804, 0.0034564799, 0.01761255, 0.01491744, -0.013414916, -0.0028837689, -0.012727662, 0.0019270044, 0.02037504, 7.382078E-4, -0.0074048177, 0.02988878, 0.022059483, 0.043256532, -0.03352718, -0.014499698, -0.024188621, 0.0058618663, -0.016440177, -0.0027827022, -0.0041403645, 0.012943271, 0.009277919, -0.017113956, -0.031748407, 4.0468777E-4, -0.01352272, -0.017356515, -0.010126879, -0.029322809, -2.0034361E-4, 0.014081955, 0.027948301, 0.011312729, 0.030859021, 0.0052318843, 0.016413227, -0.03692302, -0.023299234, 0.008503076, -0.0027725955, 0.002752382, 0.0106928535, -0.017343039, -0.015752925, 0.0070814043, 0.01552384, 0.007303751, -0.006192018, 0.022638932, -0.030373901, 0.020550221, 0.01494439, 0.033149865, -0.006114533, 0.0066063907, 8.649622E-4, 0.016305422, -0.014351467, 0.030616462, -0.014715306, -0.028244764, -7.2220556E-4, -0.013239733, 0.003816951, -0.0075867376, -0.0053161066, 0.0027759643, -0.0028029154, -0.020644551, 0.010039289, 0.012801778, 0.012397511, -0.010389653, 0.010665902, -0.033446327, -0.012990436, -0.02328576, 0.033419378, -0.025441848, -0.012242542, -0.021156622, 0.026735501, 0.029080248, 0.0029477777, -0.039025206, 0.041369956, 0.035575464, 0.009183591, -0.016655786, -0.0012490156, 0.0010165622, 0.024997154, 9.2054886E-4, 0.029807929, 0.015375609, -0.029457564, 0.053767465, -0.0175856, 0.018757973, -0.019876445, -0.015335182, 0.03207182, 0.035764124, -0.026991537, -0.0056159375, -0.017531697, 0.009021884, 0.014472746, -0.0070746667, 0.025293617, 0.010396391, 0.02619648, 0.021722594, 0.01931047, 0.015833776, 0.01761255, -0.006939911, 0.0069601242, -0.005484551, -0.008112284, -0.013003911, 0.00715552, -0.0059460886, 0.0050196443, -0.0073509156, -0.0035002755, 0.017235234, 0.008738898, -0.016413227, -0.0062560267, -0.0032930889, 1.4886277E-4, 0.021412658, -0.014607502, 0.0075867376, 0.0071016178, 0.020280711, 0.013596836, -0.0114879105, -0.021439608, -0.022625457, 0.00203144, 0.018205475, 0.028110009, 0.040911786, -0.005087022, 0.016521031, 0.01288263, -0.021722594, 0.011925866, -0.0187984, -0.012532266, 0.02340704, 0.011009528, -0.014162809, -0.6334589, -0.0043964, -0.024606364, -0.004234693, 0.00933856, 0.012289707, 0.0016347533, -0.0056496267, -0.04101959, -0.0022739999, -0.032098774, 0.018474987, 0.015011769, -0.016332373, -0.0141089065, -0.019229617, 0.0030522132, -0.023811307, 0.0065188, 0.006629973, -0.028918542, 0.014755733, 0.011588978, 0.004568213, 0.023595696, 0.0043458664, -0.009938222, -0.031748407, 0.009149902, 0.0065524885, -0.014526648, 0.018272853, 0.0055889864, -6.615655E-4, 0.038513135, 0.0033267776, -9.1065274E-5, 0.055896603, 0.025657456, 0.031128533, -0.03420096, 2.1897777E-4, 0.0059595644, 0.007142044, -0.018501937, 0.03131719, -2.7582777E-4, 0.012222328, -0.01043008, -0.00764064, -0.0105985245, 0.010753493, -0.019256568, -0.021830399, 0.0052251467, 0.008779325, 0.012539004, -0.033958398, 0.028999396, -0.003513751, -0.01928352, 0.024377279, 0.0118248, 0.0118248, -0.0077080177, 0.0291072, -0.0052217776, -0.0049219467, 0.024633314, -0.021601316, -1.0685694E-5, 0.004935422, -0.014216711, -0.0032442398, 0.010470507, 0.0024037021, 0.026816355, 0.008880391, -0.016143715, 0.01661536, -0.0030387377, -0.010955626, 0.0026631067, 0.017033102, 0.030023538, -0.01200672, -0.03250304, 6.072422E-4, 0.0048882575, -0.006939911, 0.0068556885, 0.014122382, 0.0050634397, 0.0078023463, -0.013495768, 0.0021948311, -0.014957867, 0.0010679377, 0.018542364, -0.063173406, -0.023245333, -0.02013248, 0.028918542, -0.011959556, 0.011871964, 0.018205475, -0.0018124622, 0.0024087555, 0.034066204, -6.716722E-4, -0.010901724, -0.00129618, -0.025104959, -0.019323947, -0.016844444, -0.02816391, 0.011339679, 0.011818062, -0.014028053, -0.007721493, -0.0040157153, 0.012956746, 0.0045648445, -0.0061077955, 0.0028871377, 0.037812408, 6.624078E-4, -0.0130308615, 0.0065289065, 0.009547431, 0.00733744, -0.0034935377, 0.024943253, -0.024512036, 0.021453084, 0.01127904, 0.00812576, -0.011656355, 0.014486222, -0.0018512044, -0.009129689, -0.010261635, -0.016022434, -0.008213351, 0.0038337954, -0.004265013, -0.030805118, 0.0035912355, -0.008193137, -0.016453654, -0.011615928, 0.019728214, -0.011784373, -0.0062829778, -0.002752382, -5.4912886E-4, -0.022908444, -0.033338524, 0.0066097598, -0.028837688, -8.952822E-4, 0.027395803, -0.007061191, -0.0142975645, 0.025724836, -0.0027304844, -0.011562026, 0.0057203732, 0.0071757333, -0.01761255, 0.026654648, -0.0108343465, 7.1504666E-4, 0.009655235, -0.018852301, 0.034578275, -0.010072977, 0.02813696, 0.012599644, -0.004726551, -0.0018040399, -0.009837155, -0.027786594, -0.01639975, 0.03471303, 0.024538986, 0.015941583, -0.008705209, -0.0070072887, -0.004874782, -0.006296453, -0.023204906, -0.010510933, -0.005575511, 0.008981458, 0.035871927, 0.011427271, -0.006781573, -5.592355E-4, -0.010295324, 0.04808078, 0.030373901, 0.0068725334, -2.7982832E-4, 0.010409866, -0.028298667, 0.0062560267, -0.012444675, 0.0029949422, -0.005585618, 0.017504746, -0.017841635, -0.016130239, 0.0066097598, 6.5819663E-4, 0.035656318, -0.021318328, -0.005545191, -0.0074115554, 0.010335751, 0.020698452, -0.013334062, 0.017194808, 0.0080718575, -0.027274523, -0.0016608621, 0.0051004975, -0.01685792, -0.0084491735, -0.013482293, -0.0060404176, 0.0069803377, 0.002600782, 0.010167306, -0.004969111, -0.015793351, 0.013455342, -0.007000551, 0.040561423, -0.013738329, -0.015537315, 0.014930915, 0.01564512, -0.0050634397, 0.007694542, -0.024188621, 0.014823111, 0.019229617, 0.0074385065, 0.041369956, -0.014149333, 0.043714702, -0.012741137, 0.0069736, 0.011925866, -0.012047146, -1.0948889E-4, 0.008846702, 0.030239146, 0.022894967, 0.0015286333, -0.02404039, 0.032260478, -0.0013627155, 0.010699591, -0.003961813, -0.017652977, -0.0012069044, -0.001895, -0.037435092, -0.019836018, -0.009224017, -0.0019303733, 0.015065671, -0.012357084, -0.0070679286, 7.0115E-4, 0.016628835, 0.018811876, 0.016534505, -0.0108343465, -0.033850595, 0.01409543, 0.018852301, -0.017477795, -0.017760782, -0.0055013956, -0.025670933, -0.043310434, -0.026668124, -0.017639501, 0.033311572, -0.034686077, 0.018933155, -0.011966293, 0.007721493, 0.02086016, -0.010355964, 0.015564267, 0.018326756, -0.0041605774, 0.011157759, -0.0012633333, -0.011541813, 0.01270071, -0.014472746, -0.007047715, 0.003571022, -0.014486222, -0.008826489, 0.017572124, 0.013158879, -0.039672036, 0.023622649, -0.015928106, 0.011481173, -0.009028622, 0.02576526, 0.008253777, -0.020280711, -0.01916224, -0.04444238, -0.03347328, 0.010167306, 0.072875805, 0.048754558, 0.0035305955, 0.0053430577, -0.0061852797, 0.008112284, 4.324811E-4, -0.0030033644, -0.013556409, -0.010820871, 0.022450276, -0.011083644, 0.0326917, 0.0029966265, 0.018326756, -0.005902293, -0.0132195195, -0.015254328, 0.008698471, -0.010349226, -0.019566506, -0.022531128, 0.011730471, 0.040157154, 0.004686124, -0.0041134134, 0.030912923, 0.0056428886, 0.021506986, 0.023838257, -0.0015244222, -0.0056428886, -6.636711E-4, 0.019350898, -0.00594272, -0.0023329556, 0.021668693, -0.0011984822, 0.031748407, 0.0037192532, -7.584211E-4, -0.00563952, 0.0133138485, -0.0014587288, -0.0019876445, -0.02670855, -0.010578311, 0.023582222, 0.041585565, -0.03616839, 0.015389084, 0.01555079, -0.021156622, -0.0026142576, 0.020927537, -0.0016280155, -0.0087725865, -0.0022622088, -0.01588768, -0.0032543465, -5.3944334E-4, -0.037030827, 0.01433799, -0.010207733, -0.0080246935, -0.009911271, -0.018448034, 0.00209208, -0.016817493, 0.010605262, 0.014742257, -0.009466577, -0.015618169, -0.009655235, 0.01712743, 0.0041268887, 0.027813546, -0.015725972, 0.004393031, 0.006323404, -0.041908976, -0.019633884, 0.018609742, -0.0142032355, -0.0046019023, 0.0020061734, -0.01955303, 0.015699022, -0.012040408, 7.478933E-4, -0.013165617, -0.00430544, -0.021318328, -0.018138098, 0.03161365, 0.011973031, 0.019445226, 0.010167306, 0.007970791, -0.0031734933, 0.006181911, -0.021116195, -0.018488461, -0.018299803, -0.015173475, -0.017208284, 0.0037664177, -0.015847253, -0.013657475, -0.027840497, -0.016103288, -0.013536195, 0.0094261505, 0.007020764, 0.010571573, 0.0024255998, 0.009385725, 0.011730471, -0.002816391, 0.01291632, -0.005888818, -0.022679359, 0.02076583, 0.014930915, -0.007910151, 0.01409543, -0.0064682667, -0.022719786, -0.0030353689, 0.03420096, -0.007991004, 0.0033570977, -0.0163728, -0.0037259911, -0.02161479, -0.016682737, 0.0063031907, 7.6810666E-4, -0.01140032, 0.0254688, -0.022652408, 0.0028180755, 0.009170115, 0.018501937, -0.01291632, -0.025320569, 0.018501937, -0.019418275, 0.007755182, 0.030859021, -0.0066097598, -0.0064109955, -0.024997154, -0.008678257, -0.014890488, -0.031586703, -0.019175716, -9.9298E-4, 0.02040199, 0.017787732, 0.033608034, -0.00782256, 0.03686912, 0.005238622, 0.0018731022, 0.034281813, -0.022275092, -0.008826489, -0.019202666, 0.013960675, 0.007991004, 0.015092622, 0.00551824, 0.021911252, 0.00764064, 0.026183004, -0.00130376, 0.014418844, 0.0012953377, -0.028487323, -0.026897209, 0.0019926978, -0.0327995, 0.013536195, -0.024417706, -0.006653555, 0.02219424, 0.012053885, -0.0029511466, -0.0047366577, 0.030805118, -0.007000551, 0.0074250307, -0.02913415, 0.013711377, -0.030751217, -0.0031280133, -0.02246375, -0.009540693, -0.0040965686, -0.025953919, 0.011777636, 0.0051072356, -0.024390755, 9.474999E-6, 0.03301511, -0.017343039, -0.014378417, 0.025158862, -0.009843893, -2.960411E-4, -0.01807072, -0.020954488, -0.027597938, -0.008577191, 0.005356533, -0.016911821, -0.014459271, -0.021533936, -0.040399715, 0.025078008, -0.007418293, 0.03735424, 0.007856249, 0.05144967, 0.015469938, 0.016157191, -0.010766968, 0.0056462577, -0.009271182, -0.0034413198, 0.015294755, 0.036842167, -0.015658595, 0.0039045422, -0.0038001065, -0.007142044, -0.025684409, -0.01603591, 0.035575464, 0.030751217, 0.024606364, -0.03110158, 7.4073445E-4, -0.028056106, 0.023555271, -9.6013333E-4, 0.0057978574, 0.02576526, -0.033392426, -0.0089612445, 0.0139202485, 7.5463107E-4, 0.005848391, 0.005083653, -0.031128533, 0.016696213, -0.02934976, 0.019229617, -0.009129689, -0.013024124, 0.034174006, -0.01840761, 0.004857938, 0.006613129, 0.009864107, -0.0049185776, 0.0038573777, -0.0024053867, 0.028729884, -0.0089612445, 0.020792782, 0.0015261066, -0.0014486222, 0.01170352, 0.017262187, -0.0107400175, -0.016992675, -0.019714737, -0.00259236, 0.035764124, 0.002255471, -0.00206176, 0.012195378, -0.014445795, -0.0100056, 0.011696782, -0.00137198, 0.01710048, -0.029969634, 0.012458151, -0.010281849, 0.01591463, -0.0058618663, -0.0015522155, -0.007047715, -0.0047972975, 2.9140888E-4, -0.00794384, -0.017626027, -0.025576605, -0.016709689, -0.03708473, -0.0236496, -0.017019626, -0.01003255, 0.006842213, -0.020078577, 0.0017905644, -0.0021139777, 1.3338694E-4, -0.006636711, 0.012181902, -0.027018487, 7.3525996E-4, 0.014378417, -0.01018752, -0.004079724, 0.013563146, 0.02816391, 0.0016120133, -0.0017282399, 1.8086722E-4, 0.021412658, 0.030131342, -0.020186381, 0.014364942, -4.560633E-4, -0.022423323, -0.008711946, 0.023016248, 0.027813546, 0.012485102, -0.0011791111, -0.021264426, 7.1588886E-4, -0.0054340176, 0.036707412, -0.00855024, 0.005110604, 0.031721458, 0.011615928, 0.04754176, 0.031451944, -0.0095204795, -0.027005013, 0.0011327888, -0.009884319, -0.019229617, 0.0038405333, 0.0035811288, 0.0011075222, -3.301511E-4, -0.0109286755, -0.03444352, -0.00442672, -0.036976922, -0.032179628, -0.0046288534, 0.0127344, 0.036545705, 0.015752925, -0.004874782, 0.004342498, 0.0030454756, -0.017626027, -0.012795039, -0.0027456444, 0.023231857, 0.00839527, 0.028595129, 0.02125095, -0.028864639, -0.013603573, 0.02015943, 0.014055004, 0.0018579422, 0.013226258, -0.017801208, -0.021884302, -0.015995484, -0.0059561953, -0.00921728, -0.005585618, 0.034416568, -0.021412658, -0.0098977955, 0.010908462, 0.015294755, -0.010807395, 0.0044705155, 0.013057813, -0.013697902, -0.00128102, -0.016750116, -0.015779875, -0.0074048177, -0.022019057, 0.021560889, 0.014688355, -0.0040494045, 0.038701795, 0.028999396, -0.009904533, 0.0019893288, -0.0039921333, -0.009453102, -0.009453102, -0.0069601242, 0.0062762396, 0.02049632, -0.031721458, -0.0030471599, -0.024565937, -5.642889E-4, -0.009149902, -0.015092622, 0.0013450289, 0.032314382, 0.020563697, -0.05843001, 0.015025244, -0.016830968, -0.0016928667, -0.0112184, 0.00391128, -0.027840497, -0.02197863, -0.006815262, 0.004753502, -0.023743927, -0.030131342, -0.010894987, -0.011413795, -0.0091027375, 0.012768089, 0.18477681, -0.0071218307, 0.0052622044, 0.051314913, 0.0024340223, 0.007061191, 0.028837688, 0.040830933, -0.00594272, 0.0051813507, -0.0011100488, -0.0060370485, -0.007047715, 0.0019691156, 0.019040959, -0.023986489, -0.032853402, -0.021884302, -0.021533936, -0.020792782, -0.0028551333, 0.004686124, -0.0011336311, -0.040965687, 0.011871964, 0.0068994844, -0.02212686, 0.0065592267, 0.026371662, -0.012923057, -0.004884889, -0.012727662, -2.968833E-4, -0.004180791, -0.014930915, 0.0028787155, -0.012828728, 0.009392462, 0.012202115, -5.011222E-4, -0.0025704622, 0.007020764, -0.008617617, -0.0073104887, 0.007573262, 0.017922489, -0.028595129, 0.00400224, -0.02088711, 0.0032779288, -0.04465799, 0.006724302, 0.011353156, 0.015079146, -0.007950578, -0.0066569243, 0.008516551, 0.0035575465, -0.010025813, -0.0036720887, 0.013974151, 0.032449137, -0.031451944, 0.010093191, -0.005477813, 0.01794944, -0.022989297, -0.0077686575, 0.005595724, -0.029754026, -0.013091502, -0.030643413, -0.007512622, 0.010322276, -0.0056462577, -0.005241991, 0.0028837689, 0.009075786, 0.0077012796, 0.019296994, -0.026317758, -0.023204906, 0.00573048, -0.0123772975, -0.011993244, -0.023743927, 0.006744515, -0.017073529, -0.0075260974, -0.032206576, -0.003722622, -0.022787163, -0.013259946, 0.002285791, -0.0024761332, -0.0020449155, 0.023636123, 0.01494439, -0.0041100443, -0.006111164, -0.036599606, 0.038001064, 0.0130780265, 0.00436608, -0.02571136, -0.021048818, -0.004450302, 0.015429511, 0.030400852, -0.02197863, -0.020469368, -0.021682167, -0.0043357597, -6.4345775E-4, 0.0095204795, 0.020321136, -0.003965182, -0.018084195, 0.033446327, -0.016318897, -0.0038876976, -0.018744497, 0.02525319, 0.0100864535, 0.005309369, -0.03010439, -0.029915733, -5.8197556E-4, -0.0142032355, -0.03298816, 0.017935963, 0.002164511, 0.00903536, -0.0013079711, 0.008644569, -0.0040056086, 0.026371662, -0.0021156622, 0.007323964, -1.8455194E-4, -0.0017484532, -0.020617599, 0.0030656888, 0.0063739377, 0.0029663066, -0.021776497, -0.004756871, -0.006296453, -0.011191448, -0.01831328, -0.017828159, -0.017909013, 0.004143733, 0.008934293, 0.05999317, -0.0070948796, -0.016952248, -0.040857885, -0.01649408, 0.04120825, -0.033446327, 0.021493511, 0.024660265, 5.5628776E-4, -0.032853402, -0.0055654044, -0.17162468, 0.033850595, 0.008314418, -0.027355377, 0.01676359, 0.010254897, 0.024660265, -0.00391128, 4.4469332E-4, -0.020792782, 0.03686912, -0.0018478355, -0.04126215, -0.0070544533, -0.010814133, 0.0023076888, -0.011083644, 0.033392426, 0.03562937, 0.0055519287, 0.038998257, -0.004248169, -0.014001102, 0.011993244, 0.01267376, 0.00491184, 0.029161101, -0.004793929, 0.010153831, -0.009985386, -0.032853402, -0.009816942, 0.016386274, 0.012963484, -0.006097689, 0.0053464267, -0.014445795, -0.020240285, -0.0030303155, -0.013718115, 0.039941546, 0.003096009, 0.024592888, 0.016547982, 0.00933856, 0.010679377, 0.034389615, -0.010160568, 0.010153831, -0.016022434, -0.00921728, -0.03320377, 0.02282759, -0.009965173, -0.011946079, 0.019579982, 0.0052992622, 0.004066249, 0.0040864623, -0.0026614221, -0.03738119, -0.006151591, 0.015011769, -0.006414364, -0.0043896623, -0.027732693, -0.0073846043, 0.01067264, -0.026129102, 0.028298667, -0.029646222, 0.016238043, 0.0012481733, -0.010800658, -0.0019640622, -0.02037504, -0.026007822, 0.005693422, -0.009311609, 0.013893297, -0.019202666, 0.03832448, -0.015038719, 0.0077147554, 0.00518472, -0.017423892, 0.003096009, 0.012410986, 0.009264444, -0.021453084, 0.00903536, -0.026183004, -0.044226773, -0.004898364, 0.017006151, 0.0012725977, 0.0026664755, 0.009695662, 0.0018512044, -0.011009528, -0.008684996, -0.015483413, -0.0139202485, 0.028810738, 0.026034772, 0.0021510355, 0.0070814043, 0.015375609, 0.012835466, 0.0021813556, -0.011285777, 0.007000551, 0.020550221, 0.005484551, -0.014364942, 0.009958435, -0.009695662, -0.02934976, -0.006966862, 0.008092071, 0.04902407, 0.003058951, 0.008462649, -0.007849511, -0.0055249776, -0.006906222, -0.088992566, -0.0070072887, 0.01797639, 0.047110543, -0.028110009, 0.04301397, -0.0027692267, 0.02292192, -0.012970222, 0.035144247, -0.015833776, -0.027786594, 0.011730471, 0.0035036444, 0.008799537, 5.811333E-4, -0.01634585, -0.017518222, -0.008381795, 0.03646485, -0.0033267776, -0.0048916265, -4.2953333E-4, -0.02137223, -0.017545173, 0.020563697, -0.028433422, 0.01431104, 0.010093191, 0.01024816, 0.010780444, -0.026048249, 0.013051075, -0.037569847, -0.01761255, -0.024377279, -0.013185831, -0.032368284, 0.0020415466, -0.046194203, 0.009587858, 0.008536764, -0.00758, -0.023730453, -0.015294755, -0.01166983, -0.051395766, 0.029161101, -0.0034497422, -0.014715306, -0.0114879105, -0.013536195, -0.017733831, -0.0097563015, -0.003635031, 0.01348903, 0.028379519, 0.0041942666, -0.009628284, -0.016211092, -3.301511E-4, -0.0056799464, -0.012835466, 0.016224569, 0.016574932, 0.014041528, -0.0014907332, -0.0130376, 0.016062861, -0.021533936, -0.027126292, 0.01891968, -0.030481705, -0.0031381198, -0.00921728, 0.0088669155, -0.02413472, -0.016049387, 0.0278944, -0.035305955, -2.6740556E-4, -0.042340193, 0.0068017864, -0.013104977, -0.002191462, 0.017895536, 0.008442435, -0.0027540666, -0.005818071, -0.04538567, 0.010302062, 0.021520462, 0.00676136, -0.0045345244, -0.011696782, 0.019795591, 0.0089612445, 5.2259886E-4, -0.0019876445, 0.009493529, -0.0024171777, 0.008065119, -0.072228976, 0.030454755, -0.019984249, -0.004787191, -0.006114533, -0.007903413, 0.004116782, 0.010234684, -0.011919129, 0.014378417, -0.0014048266, 0.016521031, -0.005935982, 0.0043761865, 0.0071353065, 0.016453654, 0.0046928623, -0.006707458, 0.010207733, 0.013603573, -0.01809767, -0.0010932044, 0.015510364, -0.008994933, 0.007788871, 0.009345298, 0.0026277332, 0.009904533, -0.021776497, -0.008826489, 0.037246436, -0.020644551, -0.0016271733, 0.0065861777, -0.0031566487, -0.02819086, 0.0052824174, -0.007270062, 0.01625152, -0.0065895463, -0.014769209, -0.032880355, 0.011946079, -0.005056702, -0.0047130752, 0.018380657, -0.005201564, 0.0062257065, 0.0034564799, 0.012943271, 0.031667553, 0.017450845, 0.0075260974, -0.020119004, 0.014324515, -0.024309902, 0.046490666, 0.014028053, 0.00673104, -0.02112967, 0.02464679, 0.0046558045, 0.013138667, -0.019809065, -0.0015901155, 0.009385725, 0.006326773, -0.0011563711, 0.0076204264, -0.022692835, -0.0046288534, -0.020172907, 0.018165048, 0.03789326, 0.030885972, 0.022625457, 0.012195378, -0.0031078, -2.3279548E-5, 0.023757404, 0.01043008, -0.009291396, -0.01843456, 0.025320569, -0.009419413, 0.0049488978, 0.0017467688, 0.013273422, 0.014715306, 0.0033149866, 0.0056496267, 0.018016817, 0.021399181, -0.005268942, 0.018030293, 0.020994915, -0.0069736, -0.013893297, -0.012370559, 0.027490133, -0.0061718044, -0.0019236355, -0.016830968, -0.016440177, -0.019256568, -3.8657998E-4, -0.022814116, -0.023487892, 9.887689E-4, 0.010531146, 0.031910114, 0.016440177, -0.010962364, 0.009736089, -0.05144967, 0.010537884, -0.022032533, -0.007445244, -0.011467697, 0.034012303, 0.0069736, 0.003631662, 0.033796694, -0.0047703465, 0.055303678, 0.009183591, 0.012343609, -0.026317758, 0.00582144, 0.0054036975, 0.0044671465, 0.0043728175, -0.016170666, 0.014850061, -0.006727671, 0.004702969, -0.0069601242, 0.046517618, -0.0017383466, 0.071582146, 0.0068287374, -0.0010553044, 0.009965173, -0.005211671, 0.0062290756, 0.017531697, 0.011481173, -0.013718115, -0.009372248, -0.016480604, -0.009776515, -0.006663662, -0.04344519, 0.007964053, 0.0020263866, 0.020078577, 0.0057372176, -0.019606933, -0.007364391, -0.012242542, 0.0030202088, 0.015725972, 0.0015235799, 9.7329306E-5, -0.013381226, 0.015133048, -0.0041369954, 0.0020903954, -0.023231857, 0.01146096, -0.027112817, 0.0066063907, -0.0014401999, 0.03207182, 0.0016170667, -0.011319466, 0.007270062, 0.022841066, 0.010564835, -0.019593457, 0.0034025777, -0.02813696, -0.015712498, 0.033095963, -0.014796159, -0.019216143, -0.03129024, -0.014391893 ], + "id" : "7ffb82e7-5bab-4616-8119-97d44797fcc9", + "metadata" : { + "source" : "movies.csv" + } + }, + "5ff4ffc0-13a4-4039-9951-3a562976b442" : { + "text" : "26,Walt Disney Pictures-Silver Screen Partners IV-Walt Disney Feature Animation,10/22/91,25000000,424967620,84,Released,The most beautiful love story ever told.,7.7,9462,Paige O'Hara-Robby Benson-Richard White-Jerry Orbach-David Ogden Stiers-Angela Lansbury-Rex Everhart-Jesse Corti-Bradley Pierce-Hal Smith-Jo Anne Worley-Mary Kay Bergman-Kath Soucie-Alvin Epstein-Tony Jay-Brian Cummings-Alec Murphy-Kimmy Robertson-Frank Welker-Alex Murphy-Sherry Lynn-Mickie McGowan-Jack Angel-Bruce Adler-Scott Barnes-Vanna Bonta-Maureen Brennan-Liz Callaway-Philip L. Clarke-Margery Daley-Jennifer Darling-Albert de Ruiter-George Dvorsky-Bill Farmer-Bruce Fifer-Johnson Flucker-Larry Hansen-Randy Hansen-Mary Ann Hart-Phyllis Kubey-Hearndon Lackey-Larry Moss-Panchali Null-Wilbur Pauley-Jennifer Perito-Caroline Peyton-Patrick Pinney-Cynthia Richards-Hewes-Phil Proctor-Stephen Sturk,princess-france-prince-castle-rose-musical-insane asylum-beast-based on fairy tale-eccentric man-toxic masculinity,/hUJ0UvQ5tgE2Z9WpfuduVSdiCiU.jpg,/g38W2qmTlpFog1TAnT86FOOLBFT.jpg,812-10144-11224-408-10882-8587-10674-38757-9325-12092-10340-12230-10693-37135-10895-11970-10530-12-3170-595931-425\r\n581,Dances with Wolves,Adventure-Drama-Western,en,Wounded Civil War soldier John Dunbar tries to commit suicide���and becomes a hero instead. As a reward he's assigned to his dream post a remote junction on the Western frontier and soon makes unlikely friends with the local Sioux tribe.,33.475,Tig Productions-Majestic Films International-Allied Filmmakers,3/30/90,22000000,424208848,181,Released,Inside everyone is a frontier waiting to be discovered.,7.857,3661,Kevin Costner-Mary McDonnell-Graham Greene-Rodney A. Grant-Floyd Red Crow Westerman-Tantoo Cardinal-Robert Pastorelli-Charles Rocket-Maury Chaykin-Jimmy Herman-Nathan Lee Chasing His Horse-Michael Spears-Jason R. Lone Hill-Tony Pierce-Doris Leader Charge-Tom Everett-Larry Joshua-Kirk Baltz-Wayne Grace-Donald Hotton-Annie Costner-Conor Duffy-Elisa Daniel-Percy White Plume-John Tail-Steve Reevis-Sheldon Peters Wolfchild-Wes Studi-Buffalo Child-Clayton Big Eagle-Richard Leader Charge-Redwing Ted Nez-Marvin Holy-Raymond Newholy-David J. Fuller-Ryan White Bull-Otakuye Conroy-Maretta Big Crow-Steven Chambers-William H. Burton Jr.-Bill W. Curry-Nick Thompson-Carter Hanner-Kent Hays-Robert Goldman-Frank P. Costanza-James A. Mitchell-R. L.", + "embedding" : [ -0.0058130226, -0.037544157, -0.0024787802, -0.03251445, -0.0118115675, 0.030425608, 0.0023293318, -0.0047308113, -0.0056652925, -0.038918395, -0.004473142, 0.054529727, 0.02231761, -0.011406167, 0.0068677496, 0.0139897335, 0.013254517, -0.019569136, 0.012478072, -0.024543874, -0.018634655, -0.007702599, -0.027663393, 0.0010976718, 0.020970857, 0.0011869973, 0.026701426, -0.015034153, -0.0036657774, -0.029765975, 0.019060668, -0.0209846, -0.0080599, 0.0027450386, -0.024145346, -0.014237096, 0.0037482316, -0.0177414, 0.018249867, -0.0025749768, -0.0015623358, 0.022468776, -0.0069398973, -0.0012780405, -0.004139889, 0.01965159, 0.013756113, -0.0124849435, -0.0059916736, 0.033641323, 0.0043597673, 0.034740712, -0.023980437, -0.019376744, 0.006032901, -0.01223071, -0.007496463, 0.016161028, 0.0032260215, -0.0023138716, 0.016903115, -0.0029357139, -0.031085243, -0.0161198, -0.02208399, -0.0048304433, -0.022482518, -0.01743907, 0.002707247, 0.0034012368, 0.023403257, 0.021176994, 8.417202E-5, 0.014566913, 0.010822117, -0.03402611, -0.02064104, 0.0062321653, -0.0061978092, 0.012670466, 0.0129247, -5.5484823E-4, -0.003634857, 0.0094341375, -8.5760985E-4, 0.009495978, -0.0027038115, 0.038506124, -0.056673538, 0.005263328, 0.023142152, 0.046229336, -0.010176226, 7.1073824E-4, 0.012265066, 0.014965442, -0.014072187, 0.02006386, -0.013240774, -0.02226264, -0.0036726485, 0.005204923, 0.0020699445, -0.008066772, 0.0044937553, 0.0051155975, 0.010272422, -0.024323996, 0.033201568, 0.008238551, -0.008204196, 0.0039646737, 0.03270684, -0.030645486, -0.016298452, -0.022853563, 0.011667273, 4.1398892E-4, 0.0014481023, -0.011110706, 0.011351198, 0.028858978, 0.01646336, -0.03240451, 0.023059698, 0.024859948, -0.0040127723, -0.015254032, -0.005314862, -0.0061084838, 0.037654094, -0.0013776727, 0.02028374, 0.002657431, -0.02307344, 0.041117173, -0.04056748, 0.01182531, -0.015556363, -0.010217452, 0.017645204, 0.0464767, -0.017645204, -0.02289479, -0.03663716, 0.016078575, 0.006513884, -0.0042120367, 0.03402611, 9.069965E-4, 0.008719535, 0.022647427, 0.005356089, 0.0318823, 0.014759306, -6.475287E-6, 7.897569E-4, -0.003466513, 0.0021644235, -0.021836627, 0.0063902023, 0.015363971, -0.0085821105, -0.0038066367, 0.004033386, 0.0124849435, 0.0065894667, -0.02040742, -0.012203225, -0.01356372, -0.012993411, 0.031222666, -0.026907561, 0.024186572, -0.008540884, -0.010615981, 0.009152419, -0.012952184, -0.039330665, -0.015748756, 0.01669698, -0.013295744, 0.019720301, 0.03361384, -0.013714886, -0.0064211227, 0.013900408, -0.04249141, 0.0043597673, -0.0103548765, -0.004301362, 0.022413807, 0.0021747302, -0.015556363, -0.62225455, -0.019115638, -4.3868224E-4, -0.024323996, 0.03037064, 0.015817469, 0.013137707, 0.0029202537, -0.034988075, -0.009056223, -0.03147003, 0.0209846, 0.01617477, -0.015034153, -0.022812335, -0.0061462754, 0.005888606, -0.0399903, -0.0070979344, 0.005974496, -0.029463643, 0.024736267, -0.002530314, 0.005493513, 0.009310456, -0.012567398, -0.006740633, -0.010093771, 0.003610808, -0.015501394, -0.008437816, 0.027539711, 0.009516592, 0.004387252, 0.036389798, -0.0024650376, -0.020544844, 0.033064146, 0.04447031, 0.022180187, -0.0217954, -5.4540033E-5, -0.0015030717, 0.008266036, -0.025670748, 0.011241259, 0.007668243, 0.013227032, -0.010925185, -0.015295259, -0.0074689784, -0.005902348, -0.005761489, -0.01767269, -0.034355927, -0.016422134, 0.018854532, -0.024598844, 0.02759468, 0.009873893, -0.00423265, 0.012107029, 0.001349329, 0.015721273, -0.010540399, 0.009090578, -0.0103548765, -0.02475001, 0.0076819854, -0.012072673, 0.01356372, 0.0030387817, 0.001298654, -0.0038959621, 0.013199547, 0.010155612, 0.034630775, 0.005699648, -0.0072765853, 0.022729881, -0.004868235, -0.005727133, 0.01999515, 0.008863829, 0.02318338, 0.0055450466, -0.018139929, -0.0072765853, 0.030150762, -0.0021541165, 0.012904086, 0.009537205, -0.0066169514, 0.0023155895, 0.009200517, -0.00892567, -0.008135484, 3.9423426E-4, 0.0070360936, -0.07728709, -0.02568449, -0.016587041, 0.010767148, 0.0053767026, 0.024365224, 0.008472172, -0.021905338, -0.0116329165, 0.03809385, -0.013996605, 0.0053079906, -0.0066410005, -0.019761529, -0.03215715, -0.0043597673, -0.023142152, 0.013488137, 0.014347035, 0.0015735014, 0.0027484742, 0.0024598844, 0.01466311, 0.011729114, -0.022908531, 0.0035901943, 0.02040742, -0.0021661413, -0.004572774, 0.010272422, 0.006129097, 0.026426578, -0.0090974495, 0.013687401, -0.011461137, 0.0017933794, 0.0020098218, 0.033888686, -0.007750697, 0.019349258, -0.014718079, -0.03867103, 0.0030009903, 0.0011148498, 0.0068540075, -0.012855988, -0.026728911, -0.028199345, -0.0030971868, -0.006070692, -0.01240249, -0.018785821, -0.0077644396, 0.0063558463, 0.015556363, 0.002118043, 0.016820662, -0.017164221, -0.007702599, 0.016614527, -0.026921304, 0.023087183, 5.076088E-4, -0.01860717, -0.010952669, 0.014003476, -0.015996119, -0.011529849, 0.0038272503, 0.0037001334, -0.017892567, 0.011852794, -0.007936219, -0.0084653, 0.013769856, -0.015844954, 0.03867103, -0.008417202, 0.029875914, 0.016312193, -0.01403096, 0.0155151365, 0.025340931, -0.02764965, 0.00961966, 0.026756397, 0.014470716, 0.00617376, -0.0060947416, -0.010739663, 2.2739329E-4, -0.02266117, 1.6694833E-4, -0.007042965, -2.8719407E-5, -0.016298452, 0.03204721, -0.0027982902, 0.010993897, 0.003837557, 0.011385554, 0.032129664, 0.009695242, -0.009812052, -0.009867022, -0.010677822, -0.03234954, 0.01153672, -0.027044985, 0.009056223, -0.008650823, 0.019115638, -9.499414E-4, -0.0018242997, -0.015968636, 0.02568449, 0.02307344, 0.0026625844, 0.0055484823, -0.007317812, 0.004191423, -0.0057889735, -0.0025646698, 0.009427266, 0.0015142375, -0.010657208, -0.0034270037, 0.01873085, -0.0098601505, -0.008856958, 0.0015159553, -0.01680692, -0.0060191583, 0.005734004, -0.0020802515, -0.013749242, -0.005263328, 0.021094538, -0.009090578, 0.036719613, -0.009138676, -0.010244938, 0.020187542, -5.750323E-4, 0.015240289, -0.017260417, 0.0024684733, 0.011076351, 0.027003758, -0.025519582, 0.041639384, 0.004452528, 0.013233903, 3.9911924E-5, 0.011440524, 0.0016662624, -0.010574754, 0.012429974, 0.010739663, 0.02249626, 0.026151732, 9.688371E-4, -0.017013054, 0.0112962285, -0.0060432074, 0.011584818, -0.011784083, -0.028419223, -0.0028704377, -0.0072422293, -0.014814275, -0.016793177, -0.012045188, 0.0024272462, 0.00597106, -0.0029786588, 0.0046620993, -0.010856473, 0.016559556, 0.015391455, 0.026701426, -0.016793177, -0.022248898, 0.024337739, 0.01565256, -0.03361384, -0.011818439, -5.320874E-4, 0.008279778, -0.02932622, 0.004504062, -0.0025045471, 0.025478356, -0.01930803, 0.020847177, 0.0128216315, -0.006417687, 0.027374802, -0.01570753, 0.0011586536, 0.0071322904, 0.0053938804, 0.010712178, -0.006266521, -0.0014412311, 0.03559274, -0.027608423, 0.01767269, -0.0134056825, -0.018785821, -0.018882018, 0.013034639, -0.0033857767, -0.043563314, 0.017081767, -0.015803726, -0.008932541, -0.028996402, -0.0025921548, 0.0074414937, -0.01873085, -0.018579686, -0.03245948, -0.026000565, 0.0025440564, 0.07756194, 0.03234954, 0.0070567075, -0.0023001293, -0.023471968, -0.0013046663, -0.02359565, -0.024200315, -0.019060668, 0.010774018, 0.019459197, -0.008795117, 0.038176306, 0.006654743, 0.026990017, -0.015762499, 0.0018483489, -0.012553656, 0.0028120326, -0.0063867667, -0.0039852876, -0.019761529, 0.023526939, 0.04375571, -0.012787276, -0.033064146, 0.035262924, 0.010993897, -4.0582937E-4, 0.010677822, 0.0025698233, 0.0124849435, 0.0067268903, 0.019734044, 0.0069605107, -0.0048167007, 0.03454832, 0.02556081, 0.033421446, 0.0030593954, 0.015199062, 0.008300392, 0.0209846, -0.005819894, 0.014951699, -0.03147003, -0.01662827, 0.031085243, 0.037983913, -0.038286246, 0.02185037, -0.004538418, -0.0108702155, -0.008451558, 0.026880078, -0.004067742, -0.0036657774, -0.0023344853, -0.010767148, 0.0061222264, 0.010739663, -0.033146597, 0.014058446, -0.014676852, 0.01339194, -0.02069601, -0.015254032, -0.026591487, -0.0063386685, 0.0049816095, -0.006163453, -0.009599046, 5.4298467E-5, -0.022482518, 0.02916131, -0.007640758, 0.015034153, -0.007049836, 0.00782628, 0.015061638, -0.022358837, -0.014388262, 0.012697951, -0.01866214, -0.017961279, 0.0060363365, -0.013440039, 0.029463643, -0.006922719, 0.0067371973, 0.0032260215, 0.0024581666, -0.011447395, -0.021836627, 0.048015844, -0.0016069985, -0.015405198, 0.02550584, 0.021575522, -0.011722242, 0.019967664, 8.5782456E-5, -0.0060844347, -0.022386322, -0.01588618, -0.015583849, -0.011268744, 0.0035901943, -0.015034153, -0.028858978, -0.03204721, -0.02417283, -0.008561497, 0.0075376905, 0.014278323, 0.021067055, 0.0057821027, 0.0053354753, -0.0028326462, -0.0031813588, 0.011646659, -0.007152904, -0.0012977951, 0.017521523, -0.027099956, 0.02799321, -0.02475001, -0.023705589, 0.0016679802, 0.03616992, 0.013261388, 0.01078089, -0.023417, -0.0028584132, -0.017136736, -0.019211834, -0.0040127723, 0.0035317892, -0.014237096, 0.017384099, -0.008149226, 0.0048647993, 0.015721273, -0.010368619, 0.015487651, -0.026399095, 0.014223354, -0.008822602, 0.008657694, 0.031992238, -0.004881977, 0.008321006, -0.02464007, 0.003011297, 0.008046158, -0.032761812, -0.017975021, -0.0011174266, 0.026880078, 0.018002506, 0.040952265, 7.8718015E-4, 0.01743907, 0.015542622, 0.01513035, 0.026316639, -0.018002506, -0.003112647, -0.021204477, -9.791439E-4, 0.0117085, 0.031085243, -0.004270442, 0.011220646, 0.0029357139, 0.020269997, 0.00402995, -0.009337941, -0.009887636, -0.010451073, -0.02312841, -0.0025818478, -0.032074694, 0.0045006266, -0.016023604, -0.0053011193, 0.044332888, -0.008183582, 1.2282244E-4, -0.017947536, 0.046064425, 0.0047686026, 0.026564002, -0.023966694, 0.011255002, -0.013762984, -0.019624105, -0.03240451, -0.021094538, 0.0065894667, -0.016587041, 0.010987026, 0.012052059, -0.0069364617, -0.019582879, 0.030920334, -0.03366881, -0.028391737, 0.004545289, -8.030698E-4, -0.005960753, -0.03883594, 2.5294552E-4, -0.03078291, -0.011715371, -0.00915929, -0.018401034, 0.004160503, -0.011516106, -0.04040257, 0.020036377, -0.0021043005, 0.038533606, 0.02219393, 0.03924821, 0.027718361, -0.012897215, -0.026220443, 0.011289357, -0.0060432074, -0.0035386605, 0.019514166, 0.020324966, -0.03402611, 0.017287903, -8.039287E-4, -0.0076132733, -0.04620185, -0.035922557, 0.017975021, 0.02266117, 0.021960309, -0.033091627, -0.007867508, -0.013412554, 0.024433935, -0.0117909545, 9.997574E-4, 0.027979467, -0.024818722, -0.020833435, -0.0051980517, -0.0045281113, 0.007675114, -0.006774989, -0.038313728, 0.012897215, -0.011371812, 0.011433653, -0.0026368173, -0.014250838, 0.04012772, -0.028996402, 0.012491815, 0.005558789, 0.02242755, 0.003432157, -0.0041089687, 0.012794147, 0.037819006, -0.01709551, 0.01779637, -0.007379653, -0.004098662, -0.0034304394, 0.012560527, -0.025492098, -0.03020573, -0.021740431, 0.0039406247, 0.025313446, -0.0028635664, -0.0085821105, -0.0020390241, -0.014759306, -0.006957075, 0.015982376, -0.007833151, 0.0031847944, -0.04166687, 0.024832465, -0.009296713, 0.0020184107, 0.006403945, -0.0065825954, 0.013536235, -0.0029391495, 0.010011317, -0.017700173, -3.6234767E-5, -0.015350228, -0.012739178, -0.045569703, -0.028130634, -0.019857725, -0.009832666, 0.0038512994, -0.0060260296, 5.982226E-4, 0.01651833, -0.0064348653, -0.0065070125, 0.005431672, -0.011255002, -0.00443535, 0.01356372, -0.018112445, -0.015281516, 0.0056721633, 0.029463643, 0.019569136, -0.0064005093, 0.021974051, 4.917192E-4, 0.027237378, -0.03204721, 0.005819894, -0.007833151, 0.0017195141, -0.006080999, 0.0027089647, 0.029985853, 0.014979184, -0.005617194, -0.033119112, -3.2788437E-4, 0.0046517923, 0.02921628, -6.119649E-5, -0.007077321, 0.030892849, 0.023320803, 0.03501556, 0.042876195, -0.0122169675, -0.02817186, -0.0068299584, -0.0037585383, -0.023581909, -0.010327391, 0.006740633, 0.014443232, -0.0057030837, -0.018208642, -0.022042762, 0.008733276, -0.019101895, -0.04493755, 0.0023344853, 0.016106058, 0.047603574, 0.0023757124, -0.0014292066, 0.018964471, -0.005826765, 0.011227516, -0.024956144, -0.015377712, 0.012478072, 0.008506527, 0.026316639, 0.024791237, -0.023375772, -0.03177236, 0.022468776, 0.0062115514, 0.0124643305, 0.014525685, -0.038726002, -0.0286391, -0.004751425, -0.004758296, -0.005953882, -0.005194616, 0.030865364, -0.035867587, -0.0054694638, 0.009571562, 0.015927408, -0.002008104, -0.007255972, 0.005356089, -0.007523948, -0.011735984, -0.015020411, -7.080542E-5, -0.0064967056, -0.02406289, 0.010650338, 0.0045933872, 0.0055347397, 0.025299704, 0.017370356, -0.005843943, 0.006500141, -0.015089123, 0.009351683, -0.018717108, -0.011990218, 0.023554424, 0.016642012, -0.024516389, 0.021726688, -0.02312841, 0.003231175, -0.012773533, 0.014044703, -0.01368053, 0.035812616, 0.010348005, -0.046229336, 0.012574269, -0.022743624, 0.01228568, -0.011584818, -0.0028549775, -0.03366881, -0.02208399, -0.004833879, 0.002775959, -0.028309284, -0.033091627, 0.0108977, 0.0010298189, -0.01541894, 0.018675882, 0.19063416, -0.0061187907, 0.016325936, 0.045899518, 0.0041364534, 0.004967867, 0.019101895, 0.020668525, 0.004991916, 0.013549978, -0.020201284, 0.015762499, 0.008856958, 0.00811487, 0.017631462, -0.01228568, -0.03454832, -0.013330099, -0.024351481, -0.020242512, -0.0020802515, -0.0127323065, 0.002453013, -0.02330706, 0.011069479, -1.0000796E-4, -0.013144578, 0.019610362, 0.022138959, 0.008966897, -0.014305808, -5.277929E-4, -0.014237096, 0.0129796695, -0.01675195, -0.016655752, 9.757083E-4, 0.022853563, 0.017975021, 0.0055862735, 0.012910957, -0.00472394, -0.00507437, -0.016298452, 0.01513035, 0.011873408, -0.020957116, 0.013996605, -0.01240249, 0.014676852, -0.042463925, 0.015762499, 0.01970656, 0.039055817, -0.012594882, 0.002200497, 0.0013261387, 0.0122169675, -7.811679E-4, -9.5853035E-4, 0.004782345, 0.030892849, -0.015391455, 0.010258679, -0.008211067, 0.025643263, -0.021905338, 2.3963259E-4, 0.018579686, -0.03784649, 9.147265E-4, -0.016435875, -0.013082737, 0.0036451637, -0.011048866, -0.011770341, 0.005088113, 0.011557334, 0.020668525, -0.0063902023, -0.032596905, -0.0209846, -0.021589264, -0.008692049, -0.019541651, -0.010155612, 0.015528879, -0.011323714, 0.0042292145, -0.035895072, -0.0108702155, -0.00661008, -0.005387009, -0.010561012, -0.0054041874, -0.015803726, 0.014690594, 0.012959056, -0.032596905, 0.0023602522, -0.024090376, 0.013852309, 0.016270967, -0.002818904, -0.041172143, -0.017535266, -0.020888403, 0.0052083586, 0.033943657, -0.013646174, -0.0077300835, -0.016243482, -0.0015958328, -0.015693787, -0.010004446, 0.0061462754, 0.010602239, -0.030040823, 0.02545087, -0.010712178, -0.018002506, -0.022853563, 0.014690594, 7.481003E-4, -0.0033978012, -0.010732791, -0.0034098257, -4.7926517E-4, 0.009289843, -0.0432335, 0.0028962046, -0.005819894, 0.012450588, -0.0068883635, -0.0070567075, 0.010856473, 0.026962532, 0.008843215, -0.004005901, 0.0023911726, -9.800028E-4, -0.019143123, 0.0020115394, 0.008939412, 0.011138191, -0.041089687, 0.016655752, -0.011200032, 0.008623337, -0.028419223, -0.020682268, -7.193272E-4, 0.016683238, 0.010712178, 0.043975588, 0.007840022, -0.027608423, -0.02103957, -0.01785134, 0.027869528, -0.04342589, 0.030810395, 0.020847177, -0.0033703165, -0.021864112, 0.0042154724, -0.17601228, 0.034630775, -0.011687886, -0.030013338, 0.013062123, 0.012155127, 0.0052598924, -0.008994382, 1.5524584E-4, -0.016257225, -0.002049331, 0.010677822, -0.02736106, -0.01651833, -0.0027879835, 0.03501556, -0.025230993, 0.03732428, 0.014731822, 0.009516592, 0.051836222, -0.0026024615, -0.005826765, -0.025107311, 0.01588618, 0.012629239, 0.032596905, -0.0053663957, -0.008039287, -0.017219191, -0.044965036, 0.005555353, -0.0036211147, 7.3521683E-4, -0.009083707, 0.0041433247, -0.020654783, -0.01635342, 0.006774989, 0.013330099, 0.033064146, 0.015844954, 0.016985571, 0.009784568, 0.01662827, 0.021259448, 0.02921628, -0.007956833, 0.028364252, -0.017631462, -0.015171577, -0.04595449, 0.011055737, 0.0018878581, -0.017494038, 0.024007922, 0.007352168, 0.01605109, 0.011797825, -0.011282486, -0.029656036, -0.0262067, -0.003820379, -0.020201284, -0.011701629, -0.012107029, -0.014024089, 0.01651833, -0.030233216, 0.0047686026, -0.008293521, 0.0027708055, 0.012361262, 0.003104058, 0.004799523, -0.015336486, -0.02348571, 0.014003476, -3.7190292E-4, 0.028474191, -0.025643263, 0.039495572, -0.006276828, -0.0011784083, 0.007221616, -0.008767633, 8.215361E-4, -0.004699891, 0.0063867667, -0.008994382, 0.011557334, -0.014718079, -0.022510003, -0.0049128975, -0.012107029, 0.01031365, -0.007640758, 0.009812052, 0.018483488, -0.014773048, 0.0011088375, -0.020888403, 4.6251668E-4, 0.026976274, 0.027745847, 0.014910473, 0.016779434, 0.02300473, 0.0040127723, 0.0058714277, -0.004747989, 0.019156864, 0.020943373, 0.01489673, -0.02121822, 0.014113415, 0.0034012368, -0.03193727, 0.002818904, 0.0017478578, 0.048840385, 0.018964471, 0.0043803807, -0.0075376905, -0.021080798, 0.0025354675, -0.07778182, 0.0103754895, 0.007785053, 0.038973365, -0.03218463, 0.044332888, -0.012175741, 0.028996402, -2.0667237E-4, 0.02608302, 0.0011955863, -0.020503618, 0.012849117, -0.0023001293, 0.025093568, 0.003837557, -0.011110706, -0.011275616, -0.013701144, 0.03380623, -0.0068952343, -0.023458228, 0.013206419, -0.023856755, -0.016545814, 0.006032901, -0.03537286, 0.025299704, 1.6061396E-4, 0.013247645, 0.00480983, -0.008238551, 0.020132573, -0.03762661, -0.043260984, -0.034575805, -0.038698517, -0.017177964, 0.0058851703, -0.04317853, 0.030755425, 0.01704054, -0.006046643, -0.013721758, -0.011062608, 0.009674629, -0.03083788, 0.021286933, -0.0262067, -0.018827047, 0.010547269, -0.02300473, -0.014676852, -0.0024495777, 0.028089406, 0.029903399, 0.018785821, 0.008595853, -0.013948507, -0.025437128, -0.0051259045, 0.005795845, -0.026165474, 0.016422134, -1.1670279E-4, 0.008911927, 0.010189968, -0.0072628427, 0.017494038, -0.02962855, -0.039523058, 0.022482518, -0.03287175, -0.004789216, -0.022345094, 4.5435713E-4, -0.040952265, -0.025066083, 0.040210176, -0.027099956, 0.016765691, -0.03465826, 0.007523948, -0.021149509, 0.012100157, 0.027732104, 0.005136211, 0.009887636, -0.008602724, -0.03339396, -0.0014833171, 0.015982376, 0.018813305, -0.00524615, 0.0062287296, 0.011468008, 3.5322187E-4, 0.006860879, 0.0020218464, 0.0032930155, -0.017631462, 0.0089187985, -0.078221574, 0.02683885, -0.0010435613, 0.0025887191, -0.0013948507, 0.006510448, -0.0037104401, -0.015735015, 0.00195657, 0.0091661615, -0.012759791, 0.023210865, -0.00349228, -0.0060294652, -0.013893537, -0.010045673, -0.003002708, -0.0051671313, 0.0033273716, 0.013859181, -0.02029748, 0.0029563275, 0.016779434, 0.012072673, 0.009001253, 0.010767148, 0.010657208, 0.010567883, -0.008726405, 0.0036417283, 0.022881048, -0.00472394, -0.0023722767, 0.0061531463, -0.013501879, -0.028831493, -0.02301847, 4.2773128E-4, 0.024763752, -0.011241259, -0.01662827, -0.016958086, -0.0048132655, -0.0066925343, 0.009310456, 0.018167414, -0.021122023, 0.0041433247, 0.014415747, 0.025340931, 0.024269026, 0.0059401398, -1.7478578E-4, -0.022798592, 0.022510003, -0.016545814, 0.05321046, -0.013364456, -0.006874621, -0.021135766, 0.032431994, 0.003095469, 0.017384099, -0.019761529, 0.017136736, 0.009001253, 0.012471202, -0.009138676, -0.0014695748, -0.007496463, -0.013282001, 0.012457459, 0.013639303, 0.035730164, 0.020036377, 0.0206273, 0.0015915383, 0.010746534, -0.0074208803, 0.007599531, 0.01842852, -0.008211067, -0.039935328, 0.01785134, -0.013199547, 0.021424357, -0.00649327, 0.016408391, 0.0025818478, 0.028130634, -0.013687401, 0.0043838164, 0.006857443, 0.0031315428, -4.2810705E-5, 0.0026522775, -0.011344327, -0.026811365, -0.0024100682, 0.01743907, -0.0051499535, -0.0052667637, -0.0065344973, -0.03182733, -0.027704619, 0.0035420961, -0.024846205, -0.031634938, 0.010657208, 0.023719331, 0.028611615, 0.0043838164, -0.024351481, 0.0024908048, -0.037186854, 0.004486884, -0.0058405073, -0.01860717, -0.015226547, 0.030095791, 0.005517562, 0.004370074, 0.0412546, -0.013728628, 0.038176306, 0.012629239, 0.012175741, -0.027237378, 0.0036623417, -0.003153874, 0.0040608705, -0.010134999, -0.021548036, 0.018373549, 0.0049609956, 0.005819894, 0.006561982, 0.021657975, -0.01704054, 0.07233984, 0.033009175, 0.010705307, 0.014704336, -0.009997575, 0.011990218, 0.021891596, 0.01710925, -0.006967382, -0.005610323, 0.010396103, -0.013048381, 0.010602239, -0.01947294, 0.02231761, 9.53377E-4, 0.0044937553, 0.010176226, -0.01594115, -0.028199345, -0.01565256, -0.003500869, 0.008643951, 0.00794309, -0.0037379249, -0.016408391, 0.020448647, -5.1576836E-4, -0.0031676164, -0.034520835, 0.0038616061, -0.033641323, -0.0037825876, -0.005153389, 0.03924821, 0.0072491006, -0.004967867, -0.0049953517, 0.003820379, 0.0058989124, -0.006139404, -0.007949961, -0.024969887, -0.0079980595, 0.02348571, 0.013632432, -0.015570106, -0.019843983, -0.026000565 ], + "id" : "5ff4ffc0-13a4-4039-9951-3a562976b442", + "metadata" : { + "source" : "movies.csv" + } + }, + "35f89601-3d51-4ac8-beca-57da0f5a6551" : { + "text" : ",/w53FK3MoMLavk1sxErUiGMnLpf2.jpg,221518-664-9341-9619-736545-95-435-379880-10357-929-9772-2157-602-10153-9268-9208-74-6950-8487-9739-1701\r\n400650,Mary Poppins Returns,Fantasy-Family-Comedy,en,Mary Poppins returns to the Banks family and helps them evade grave dangers by taking them on magical musical adventures.,22.555,Walt Disney Pictures-Marc Platt Productions-Lucamar Productions,12/13/18,130000000,348807090,131,Released,Magic Always Returns.,6.5,2969,Emily Blunt-Ben Whishaw-Emily Mortimer-Pixie Davies-Nathanael Saleh-Lin-Manuel Miranda-Joel Dawson-Julie Walters-Meryl Streep-Colin Firth-Jeremy Swift-Kobna Holdbrook-Smith-Dick Van Dyke-Angela Lansbury-David Warner-Jim Norton-Noma Dumezweni-Tarik Frimpong-Sudha Bhuchar-Steve Nicolson-Christian Dixon-Christopher Godwin-John Dagleish-Karen Dotrice-Ian Conningham-Billy Barratt-Felix Collar-Kate Attwell-Chris O'Dowd-Mark Addy-Edward Hibbert-Jon-Scott Clark-Calvin Chen-Craig Stein-Leon Cooke-Alex Sturman-Tara Nicole Hughes-Johanna Thea-Jag Patel-Nina Kumar-David Gambier-Jeremy Azis-Bern Colla�_o-Steve Carroll-Martyn Mayger-Fran Targ-Raj Awasti-Ash-Shay Barclay-Ashley Birchall-Michael Carroll-Jack Harrison-Cooper-Sean Corrie-Momar Diagne-Antony Edwards-Aston Newman Hannington-Jake Moyle-Marlon Pelayo-James Revell-Charles Ruhrmund-Christopher Scott-Zac Smith-Johnny White-Jahrel Thomas-Teneisha Bonner-Lavinia Fitzpatrick-Hannah Kenna-Thomas-Jennifer Leung-Rachel Muldoon-Cassie Rogers-Lorraine Stewart-Antonio Raul Corbo-Johnny Bishop,london england-based on novel or book-nanny-magic-musical-sequel-family relationships-animated scene-female protagonist-housekeeper-family-discipline-depression era-live action and animation-1930s,/uTVGku4LibMGyKgQvjBtv3OYfAX.jpg,/oGzToOBTRdXVOrHj8r0VgK3d2sU.jpg,433-708510-602495-106006-54793-473553-512218-404368-368186-13141-572125-426543-448446-557648-250777-45759-573921-113529-297802-420814-576697\r\n73723,The Lorax,Animation-Family,en,A 12-year-old boy searches for the one thing that will enable him to win the affection of the girl of his dreams. To find it he must discover the story of the Lorax the grumpy yet charming creature who fights to protect his world.,73.291,Universal Pictures-Illumination-dentsu-Comcast-Hell,3/1/12,70000000,348800000,86,Released,Meet the original force of nature.,6.493,3364,Danny DeVito-Ed Helms-Zac Efron-Rob Riggle-Taylor Swift-Jenny Slate-Betty White-Nasim Pedrad-Joel Swetow-Michael Beattie-Elmarie Wendel-Dave B.", + "embedding" : [ 0.004918248, -0.034805033, -0.025135485, -0.02943603, -0.022077022, 0.027860055, -0.0069783693, -0.011679586, -0.010851531, -0.03368315, 0.026671395, 0.028661398, -0.003676165, -0.01388996, 0.007993405, 0.014477612, 0.012187104, -0.02424065, 0.0013397468, -0.039372694, -0.010437503, 0.009963375, -0.040547997, 0.0028848378, 0.011692942, 0.015132043, 0.025576225, -0.021556148, -0.0019349115, -0.01764292, 0.012080259, -0.020447623, -0.01961957, -0.013048549, -0.02293179, -0.032454424, -0.0040968703, -0.032988656, 0.033042077, -0.012113648, 0.0010158702, 0.013849893, -0.013362409, -0.008200418, -0.012440863, 0.010911632, -0.00347249, 2.2203902E-4, -0.00475464, 0.013656234, 0.015519359, 0.041536324, -0.021128766, -0.025562868, -0.00660107, -0.0035125571, -0.009656194, -0.0028648041, 0.008293909, 0.0051319394, 0.028234014, -0.026070386, -0.02164964, -0.031198986, -0.017936746, -0.005485866, -0.02286501, -0.02055447, 0.010377402, -0.0033322547, 0.011532674, 0.022985213, 0.020888362, -0.0034257448, 0.011933345, -0.025963541, -0.022183869, 0.0011152035, -0.0060401293, 0.011245525, 0.009883241, -0.0024073704, -0.010591094, 0.0134558985, 0.0040033804, 0.037022084, 0.0030234035, 0.029596299, -0.04022746, 0.011071901, 0.02002024, 0.045409486, -0.001179478, -0.0026427652, 0.011078578, 0.0025225636, -0.015973454, 0.022250647, -0.01961957, -0.032240734, -0.0024123788, -0.0053222585, 0.0029900142, -0.0027546193, -0.007098571, 0.0039599743, 4.178883E-5, -0.0098565295, 0.028661398, -0.0054457993, -0.006300566, -0.0049282648, 0.019071983, -0.026057031, 0.0063139214, -0.026364213, 0.010744685, 0.0015843236, -0.011365727, -0.0127547225, 0.033202346, 0.043780085, 0.017429229, -0.035446107, 0.024627967, 0.016975133, -0.0034624732, -0.015118687, -0.012961737, -0.018243928, 0.039906923, -8.0969115E-4, 0.0058130817, 0.0017078641, -0.03656799, 0.05283527, -0.030851739, 0.011552707, -0.027512806, -0.011773077, 0.01808366, 0.022264004, -0.013008482, -0.022197224, -0.024855014, -0.0076328, 0.01836413, -0.0032020365, 0.03178664, 5.655317E-4, 0.029729856, 0.0020150458, 0.010430826, 0.028581263, 0.024641324, 0.017028557, 5.6386227E-4, -0.018404197, 6.331451E-4, -0.021435948, -0.0011410803, -0.005011738, -0.006898235, -0.008340654, 0.0061703473, 0.009609448, 0.01964628, -0.0093223, 0.010851531, 0.009349012, -0.019245608, 0.032401003, -0.017095335, 0.014477612, 0.004350629, 0.015212177, 0.00456766, -0.015626205, -0.01801688, -0.004961654, -0.0019599535, 0.011118646, 0.010904954, 0.041429475, -0.014210497, 0.007592733, 0.020153798, -0.012768079, 0.002899863, -0.02396018, -0.015506003, 0.020688027, -0.013142039, -0.029195627, -0.6397929, -0.012500964, -0.010965055, -0.018537754, 0.02002024, 0.026644683, 0.00569288, -0.0035860136, -0.04353968, -0.0021753146, -0.01032398, 0.011145357, 0.037556313, 0.0014365758, -0.02048769, -0.019980174, 0.0028397623, -0.015025197, 0.01626728, 0.0076995785, -0.028394284, 0.022891723, -0.0059299446, 0.0035459464, 0.009121964, 0.00215862, 0.001104352, -0.021168834, -0.0022537794, 0.0060735187, -0.008006761, 0.0074458197, 0.015786473, 0.011726332, 0.031012006, 0.02139588, -0.030077105, 0.04044115, 0.028420994, 0.024454342, -0.043406125, 0.014170431, 0.019245608, 0.0021352475, -0.008293909, 0.009475891, 0.012080259, 0.0066277813, -5.630275E-4, 9.380314E-5, -0.012534353, 0.015091975, 0.013122005, -0.006340633, -0.006187042, 0.0068314564, 0.019713059, -0.01160613, 0.028474418, -0.005963334, -0.021636283, 0.01407694, 0.008207097, 0.017496007, -0.0068047447, 0.041002095, 0.0048681637, 0.003419067, 0.021903398, -0.03253456, 0.0053856983, -1.237492E-4, -0.013956739, -0.0039967024, 0.002212043, -0.0038564673, 0.021890042, -0.005612746, 0.0014975113, 0.014744727, -9.240496E-4, -0.004020075, -0.0010058534, 0.004323918, 0.032294158, -0.008494245, -0.018444264, 0.00516199, 0.012841535, 0.0012212147, 0.01829735, 0.014557746, 0.011078578, -0.0073590074, -0.0072922288, 6.9032435E-4, -0.031866774, 0.0020167152, 0.021516083, -0.039693233, -0.02440092, -0.022758165, 0.005639457, -9.2738855E-4, 0.03312221, 0.003953296, -0.004153632, 0.0064174286, 0.031012006, -0.0034591341, -4.3531336E-4, -0.008367365, 4.6369428E-4, -0.021182189, -0.002681163, -0.034778323, 0.038998734, -0.0055793566, -0.001429898, 0.00753931, -6.840638E-4, -0.0049349423, 0.003716232, -0.009936663, -0.0141570745, 0.021088699, -0.007773035, 0.008440821, 0.016093655, 0.0041369377, 0.015692983, 0.0061703473, 0.013429187, -0.0186446, 0.023893403, 0.007492565, 0.023252327, -0.007866525, 0.032107178, -6.9825427E-4, -0.026644683, -0.008627802, -0.015385802, -0.017963458, -0.011178747, -0.012100292, -0.009335656, 0.0016193823, -0.0033239075, 0.0141570745, -0.03413725, 0.0050785164, 0.012614488, 0.009222132, 0.0039332625, 0.007919949, -0.015933387, -0.016494328, 0.014677948, -0.012340695, 0.009896596, 0.023813268, -0.008674547, -0.01911205, 0.017522719, -0.008934984, -0.020354133, 0.0066077476, 0.0075660213, -0.017723054, -0.0016335729, -0.00694498, -0.005656152, 0.01069794, -0.012066903, 0.034858458, -0.010784753, 0.015105331, 0.0038364336, -0.012153715, 0.02887509, 1.7529397E-4, -0.02940932, 0.008013438, 0.03365644, 0.029088782, 0.0155594265, -0.019566145, -0.019379165, 0.008901594, -0.012300628, -0.0013213826, 0.009743005, 0.006404073, -0.0017445923, 0.01973977, 0.0038397727, -0.006447479, 0.015866607, 0.012347373, 0.034244094, 0.031572945, 0.018283995, -0.007739646, -0.0031168936, -0.040734977, 0.010177067, -0.020514403, 0.0062771933, 0.005856488, 0.013783114, -0.011726332, -0.008594412, -0.014330699, 0.004360646, 0.02158286, -0.013021837, 0.0063807005, -0.011178747, 0.0046778447, 0.001367293, -0.013409154, 0.024133805, 0.012280595, -0.014664592, -0.014811506, 0.012894958, -0.022744808, -0.015385802, -0.018497687, -0.00822713, 1.7393753E-4, -0.0010091924, -0.008167029, -0.001066789, -0.0032137227, 0.030424355, -0.005342292, 0.0475464, -0.014998485, 0.0025392582, 0.02812717, 0.018965138, -0.009676226, -0.0144509, -0.021569505, 0.007639478, 0.019419232, -0.009435824, 0.026070386, -0.022277359, 0.026831662, -0.00653763, 0.016681308, -0.0038631451, 0.0028447707, -1.9994468E-5, 0.0023489392, 0.035900205, 0.03365644, 0.0041970382, -0.020073663, 0.020006884, 0.017562786, 0.024000248, -0.015586138, -0.015065264, 0.0012462566, -0.010157033, -0.044287603, -0.022157157, -0.009549348, 0.00544246, -0.007432464, -0.0037796719, -0.01589332, 3.1761598E-4, 0.0074992427, 0.01051096, 0.029542876, -8.3974155E-4, -0.031332545, 0.021248968, 0.017616209, -0.013175428, -0.018417552, -0.013549388, -0.0048347744, -0.012140359, -0.006243804, -0.006343972, 0.03290852, 0.011806466, 0.0073456517, -0.016868288, -0.014824861, 0.013148717, -6.109203E-5, 0.023238972, 0.0042404444, 4.3990437E-4, 0.025349177, -0.010838175, -0.014517679, 0.008380721, -0.0048347744, -0.0022003567, -0.0024941827, -0.011592774, -1.5390392E-4, 0.0037362657, -0.0063573276, -0.037743296, 0.021382526, -0.030317508, 0.009222132, -0.012347373, 0.0056761857, 0.007919949, -0.0035426077, -0.025723137, -0.020420913, -0.022531118, 0.008894917, 0.07217437, 0.018885003, 0.02468139, 0.015719695, -0.01626728, -0.008848172, -0.015091975, -0.007732968, -0.006891557, 0.011071901, 0.024841659, -0.007338974, 0.032641407, 0.014864928, 0.0145844575, -0.009422468, -0.0076328, 0.008641157, -0.0043305955, -0.01698849, -0.0130285155, -0.0063740225, 0.0021419253, 0.03178664, -3.4328402E-4, -0.01645426, 0.0074458197, 0.011492606, 0.0017178808, 0.005699558, -0.008354009, -0.0048881974, 0.0015133712, 0.023519441, 3.7667333E-4, -0.0064307842, 0.019138763, 0.017122047, 0.03675497, -0.0025659697, 0.00456766, 0.009335656, 0.0049950434, -0.0056227627, 0.013849893, -0.017375806, -0.010744685, 0.033576306, 0.037556313, -0.024320785, 0.01820386, -5.872348E-4, -9.1486756E-4, -0.009162031, 0.03670155, 0.003712893, -0.012307306, -0.01326224, -0.01282818, -0.009963375, 0.021128766, -0.039719943, 0.005115245, -0.0028447707, -3.372322E-4, -0.018871648, -0.017349094, -0.011913312, -0.011859889, 0.013823181, -0.006657832, -0.013716335, -0.031065429, -0.0072187725, 0.008140318, 0.0019749787, 0.026604615, -0.010557705, 0.019686347, 0.019245608, -0.0142639205, -0.02997026, 0.003873162, -0.018938426, -0.0048781806, 0.015038553, 0.008380721, 0.025349177, -0.016854933, 0.009389078, 0.0085610235, 0.014517679, -0.010143678, -0.020995209, 0.03947954, -0.0018881664, 0.013222173, 0.03801041, 0.0074458197, -0.007612766, 0.018791514, -0.0155594265, 0.0034658122, -0.0108181415, 0.001179478, -0.021409236, 3.660305E-4, -0.0052788523, -0.013589456, -0.037342623, -0.028848378, -0.008801427, -0.003525913, 0.007492565, -0.006891557, -0.0039065513, 0.0029733195, 0.012874925, 0.004901553, 8.889908E-5, 2.6732328E-4, -0.015626205, 0.0103306575, 0.022544473, -0.0031085464, 0.015973454, -0.011132002, -0.029115492, -0.009108609, 0.029783279, 0.016895, -0.0011494276, -0.018564466, -0.020153798, -0.012601132, -0.02311877, 0.020634605, -0.0011869905, -0.009569381, 0.001623556, -0.013442542, 0.010537672, 0.016868288, -0.015319023, 0.010243845, -0.02652448, 0.018564466, -0.015025197, 0.014544391, 0.04180344, 0.0114592165, 0.017709699, -0.026377568, 0.002202026, -0.002974989, -0.019526077, -0.019352453, -0.008714614, 0.026444346, 0.0068247784, 0.05577353, 0.016534394, 0.012287272, 0.0032370952, 0.008307264, 0.014744727, -0.009996764, -0.0022437628, -0.026177231, 0.019085338, -0.0072120945, 0.021422591, 0.016387481, 0.003626081, -0.008520956, 0.014477612, -0.0012420829, 0.011893278, -0.00972965, -0.006010079, -0.011392438, 0.00431724, -0.025896762, 0.0036795037, -0.01664124, 0.0012604471, 0.04038773, -0.00118866, 8.7646986E-5, 8.898256E-4, 0.042337667, -0.022477694, 0.014490968, -0.009469213, 0.028527841, -0.026270723, -0.007051826, -0.029302472, -0.024481054, -0.0014357411, -0.0021001888, 0.009048508, -0.0021903398, 0.0017946763, -1.2281012E-4, 0.028073745, -0.019980174, -0.028020322, 0.020087019, 0.010524316, 0.0014190464, -0.031706505, -0.0077797133, -0.031920195, -0.008434144, 0.009442502, -0.007532632, 0.014918352, -0.031012006, -0.03857135, 1.07263215E-4, -0.0044407803, 0.028501129, 0.032053754, 0.053476345, 0.018911714, -0.0066711875, -0.013462576, 0.019806549, -0.019218896, -0.013616167, 0.034938592, 0.013716335, -0.010430826, -5.1377824E-4, -0.011272237, -0.003716232, -0.02277152, -0.03638101, 0.02090172, 0.008460855, 0.021208901, -0.0046811835, -0.00904183, -0.023826623, 0.014731371, -0.009148675, 0.0050484664, 0.02130239, -0.023706421, -0.024254007, 0.0047846907, 0.006297227, -0.008420788, -2.7713142E-4, -0.016948422, 0.030477777, -0.019192185, -0.004243783, -0.008354009, -0.0033422715, 0.030878449, -0.020634605, 0.022223936, 0.016347414, 0.014664592, -0.0014457578, 4.6119007E-4, 0.0020033596, 0.029355897, -0.011566062, 0.0160803, -0.017723054, 0.002684502, 0.004357307, 0.008213774, -0.039773367, -0.03416396, -0.023359172, -0.013122005, 0.050244257, 0.0037930275, -0.012587776, -0.016975133, -0.019152118, -0.006180364, 0.012147037, -0.01817715, -0.0014424189, -0.042658202, 0.016761443, -0.010938344, -0.0019632925, -0.0041870214, -0.007919949, -0.0017379144, -0.008167029, 0.0263375, -0.005402393, -1.04967694E-4, -0.024227295, -0.017335739, -0.05387702, -0.017536074, -0.014824861, -0.021943465, -0.0070251143, -0.017055267, -0.002559292, -5.363161E-4, -0.003018395, -0.0160803, -0.0028681431, -0.014277276, 0.0061102468, 0.021342458, -0.021195544, -0.01470466, 0.0085009225, 0.037529603, -0.008641157, -0.010644517, 0.019913394, 0.010657873, 0.019445945, -0.04126921, 0.002230407, -0.005609407, -0.02922234, -0.023706421, 0.0071853832, 0.022063667, 0.0062838714, -0.0038531283, -0.038491216, 0.006998403, -0.005135278, 0.045756735, -0.008213774, 0.0013439204, 0.02661797, 0.01836413, 0.047492977, 0.030130528, -0.015692983, -0.029489454, -0.022624608, -0.011038511, -0.012427507, -0.012360728, 0.009242166, 0.013743047, 0.009622804, -0.016935067, -0.031866774, 0.013061904, -0.039826788, -0.04695875, -0.016721375, 0.026885085, 0.021809908, -0.014531035, 0.007332296, 0.011806466, -0.0032454426, 0.017469296, -0.03670155, -5.513413E-4, 0.020287355, 0.015225532, 0.025228975, 0.022157157, -0.014290632, -0.006828117, 0.0063372944, 0.029008647, 0.017442584, 0.03670155, -0.028287437, -0.015278956, -0.026417635, 0.013556067, 0.018003525, -0.010544349, 0.037128933, -0.020167153, 9.966714E-4, 0.016414193, 0.009369045, -0.005061822, -0.015185466, 0.016387481, -0.016427549, 0.0042471224, -0.028447706, -0.021689707, -0.015025197, -0.0178299, 0.017696343, -0.0039766687, 0.009990087, 0.018657956, 0.014117007, -0.011572741, 0.007953337, -0.0013973434, -0.0022537794, -0.0022170513, 0.012187104, -5.7638326E-4, 0.01961957, -0.03178664, 0.011465895, -0.010430826, 6.552655E-4, -2.4541156E-4, 7.103579E-4, -0.009816462, 0.03379, 0.013596133, -0.043753374, -0.0022604575, 0.002148603, 0.0078598475, -0.0066778655, 0.0059599946, -0.024507767, -0.020273998, -0.00397333, 0.024668034, -0.023292394, -0.018778156, 0.0038765008, -0.0039933636, -0.016975133, 0.022370849, 0.17554772, -0.013956739, 0.022036955, 0.03913229, 0.005305564, 0.015212177, 0.014931707, 0.029729856, -0.031332545, 0.015599493, -0.020514403, -9.315622E-4, 0.0034324229, 0.007178705, 0.002896524, -0.011706298, -0.024294075, -0.030103818, -0.026457703, -0.028607976, -0.014397478, -0.019819904, -0.005566001, -0.021876687, 0.009803106, 0.0087747155, -0.013769758, 0.0065276134, 0.026417635, 0.0020384183, -0.013242207, -0.021916755, -0.015599493, 0.01726896, -0.01138576, -0.022036955, -0.0014424189, 0.00872797, 0.016040232, 0.011332338, 0.009656194, 4.4574752E-4, -0.008661191, -0.003031751, 0.008955018, 0.022557829, -0.017335739, -0.013769758, -0.0030234035, 0.016881643, -0.042898607, 0.020314066, 0.02058118, 0.026631327, -0.014424189, 1.2406222E-4, 0.0014874944, 6.14781E-4, -0.0049516372, 0.005793048, 0.0046177437, 0.030290797, -0.015319023, 0.0039065513, -0.02533582, 0.013489288, -0.03843779, -0.014317343, -0.001661119, -0.035259128, -0.004838113, -0.0136695905, -0.010136999, 0.016467616, 0.0011786432, -0.015879964, -0.0038931954, 0.012554387, 0.014838217, 0.024534477, -0.028367572, -0.012113648, -0.0072721955, -0.012641199, -0.013823181, -0.023599576, 0.030878449, -0.017656276, -0.011919989, -0.03290852, -0.008834816, -0.006347311, -0.009836496, 0.0072187725, 0.0020133764, 0.019713059, 0.004106887, 0.0178299, -0.028634686, 0.0019666313, -0.037209064, 0.024093738, 0.028260726, -0.00832062, -0.025509445, -0.026123809, 0.009983408, 0.007459176, 0.0091553535, -0.019793192, -0.009162031, -0.034297515, 0.00397333, -0.004270495, -0.004173666, 0.011185424, 0.010798108, -3.599787E-5, 0.039906923, -0.0069182683, -0.007385719, -0.0085076, 0.011178747, 0.0060301125, 0.008714614, -0.030370932, -0.012587776, 0.016601173, 0.014490968, -0.030931871, 0.014223853, -0.014811506, 0.0067980667, 0.0067246105, -0.017843256, 0.0147981495, 0.040868536, 0.006884879, 0.0020200543, 7.704587E-4, 0.006280532, -0.012741367, -0.0011652875, 0.004363985, 0.01820386, -0.017616209, 0.007893236, 0.011692942, 4.6119007E-4, -0.03923914, -0.017562786, -0.018684667, 0.009302266, -0.0012980101, 0.048561435, 0.023746489, -0.03050449, -0.026163876, -0.019419232, 0.03419067, -0.022971857, 0.01817715, 0.0048447913, 0.007866525, -0.022971857, -0.006651154, -0.17031227, 0.014637881, -2.2496059E-4, -0.0074992427, 0.011652875, 0.0043840185, 0.021008564, 0.002656121, 0.012901636, -0.027232334, 0.009162031, 0.022517761, -0.048721705, -0.016895, -0.0043740016, 0.024734814, -0.022157157, 0.04420747, 0.017950103, -0.005258819, 0.040494576, -0.003919907, -0.007786391, -0.00794666, 0.015920032, -9.741336E-4, 0.012360728, 0.010731329, -0.019526077, -0.020327423, -0.03528584, 0.0011778085, 0.011726332, 0.005395715, -0.011552707, -0.005956656, -0.014731371, -0.022370849, 0.0054624937, 7.4875564E-4, 0.023799911, 0.02761965, 0.02258454, 0.010090254, -0.0034391007, 0.011005122, 0.027993612, -0.02002024, 0.005739625, -0.013676268, -0.014651236, -0.041215785, 0.021195544, -0.0040501254, -0.013122005, 0.02780663, -0.02090172, 0.009702939, 0.0065075797, -0.022824943, -0.031519525, -0.0111987805, 0.016654596, -0.007879881, -9.490916E-4, -0.017696343, 0.0047613177, 0.016187146, -0.033362616, 0.020955142, -0.013101972, -0.004367324, 0.014023517, 0.0014198811, 0.01229395, -0.024641324, -0.021155477, 9.941672E-4, 0.0059666727, 0.03456463, -0.018190505, 0.048000496, -0.00854099, 0.017963458, 0.012914992, -0.016440904, 0.0055059, -0.013903315, 0.009816462, -0.012821501, -9.7402924E-5, -0.0061236024, -0.014103652, -0.0066544926, 0.001141915, 0.013823181, 0.00215862, 0.0010951699, 0.015586138, 7.9257914E-4, -0.006300566, -0.025696427, -0.016627885, 0.015319023, 0.0356598, 0.009455857, 0.0041569714, 0.0053322753, 0.020367488, -0.0102238115, 0.0017429228, -0.0014023518, 0.031065429, 0.0117931105, -0.021262323, 0.011085256, -0.012781434, -0.018978493, 0.002577656, 0.006998403, 0.035339262, -7.404083E-4, -0.008694581, 8.6979195E-4, -0.0076728673, 0.005065161, -0.08066861, -0.01799017, -0.0053356146, 0.04041444, -0.03050449, 0.020594537, -0.01698849, 0.022223936, 0.0017479312, 0.033870135, 0.015759762, -0.01892507, 0.01329563, -0.014557746, 0.0330955, 0.0010108618, -0.023105415, -0.0041836826, -0.0010826489, 0.019940106, -0.010971732, -0.014023517, 0.006477529, -0.020327423, -0.032748252, 0.010551027, -0.03018395, 0.03346946, 0.009996764, 0.021289034, 0.016000165, -0.0136695905, 0.007071859, -0.042658202, -0.025456022, 1.6120784E-5, -0.015145399, -0.017536074, 0.010050187, -0.049255934, 0.011165391, 0.007439142, 0.0024440987, -0.024013603, -0.008828138, -0.018163793, -0.030317508, 0.029168915, -0.005245463, -0.02074145, -0.0054925443, -0.0014023518, -0.021342458, 0.006497563, 0.021476015, 0.0028130508, 0.028794955, -0.0052654967, 0.001514206, -0.029729856, 0.001958284, -0.015879964, -0.025362533, -0.0016786484, 0.00753931, -0.0038798398, 0.016961778, -0.009168709, 0.014063585, -0.021703063, -0.0314661, 0.023639644, -0.024440987, 0.0036027082, -0.022077022, 0.0142639205, -0.0133490525, -0.011993446, 0.0068782014, -0.032641407, 0.014063585, -0.035419397, -0.003946618, -0.019245608, 0.006300566, 0.014063585, 0.017656276, 0.019499367, -0.0030768265, -0.040841825, 0.0069783693, 0.016681308, 0.012287272, -0.009242166, -0.007786391, 0.027699785, 0.0027312469, 0.007846491, 0.008053506, 0.0038264168, -0.008594412, -0.0051419563, -0.065336235, 0.029890126, -0.0037763328, 0.004971671, -0.007739646, 0.0034925235, 0.008280553, -0.013676268, 0.007766357, 0.011245525, -0.016814865, 0.016093655, -0.0071653496, 0.014223853, -0.006898235, -0.008340654, -0.006106908, -0.020514403, -0.010851531, 0.006530952, -0.012494286, -0.0014065254, 0.031893484, -2.7728793E-5, -0.0017729732, 0.0073923967, 0.008260519, 0.02030071, -0.017001845, -0.011559385, 0.016961778, -0.014731371, -0.0066177645, 0.017041912, -0.011359049, -0.018844936, -0.002305533, 4.7120688E-4, 0.014918352, -0.0076995785, -0.014424189, -0.03619403, -0.0013965085, -0.011085256, -0.0014132032, 0.009656194, -0.03200033, -0.006497563, 0.021208901, 0.023719778, 0.061169248, 0.008661191, -0.009035151, -0.01692171, 0.028367572, -0.029890126, 0.05833783, 7.483383E-4, 0.0043205786, -0.01129227, 0.01288828, 0.0034391007, 0.014838217, -0.036113895, -0.011305626, -0.01032398, 0.009455857, 0.01248093, -0.011325659, -0.037689872, 0.009589415, -0.0118866, 0.01507862, 0.04081511, 0.022998568, 0.005312242, -0.03178664, 0.010056865, -0.002076816, 0.021783197, 0.020567825, -0.025696427, -0.021622928, 0.016761443, -0.0055359504, 0.033763286, -0.015225532, 0.0060401293, -0.0127547225, 0.017723054, -0.012808146, -0.0063673444, -0.0102839125, 0.011205458, 0.006434123, 0.017482651, -0.0045476262, -0.02074145, -0.009402434, 0.017375806, 0.009001763, 0.0028714822, -0.026564548, -0.035526242, -0.0051920405, -0.021409236, -0.014838217, -0.031038718, 0.014424189, 0.026123809, 0.019900039, -0.003869823, -0.01927232, 0.0047312677, -0.037956987, 0.009576059, -0.0036461144, -0.019993529, -0.013415831, 0.051953793, 0.010430826, -0.0015926709, 0.04776009, -0.012514319, 0.022891723, 0.0104976045, 0.01883158, -0.04204384, 0.004621083, 0.0048848586, 0.0012596124, 0.011399116, -0.025015283, -0.0010834837, -0.0054758494, 7.458341E-4, 0.014010161, 0.024267362, -0.013021837, 0.0745784, 0.012601132, -0.011953379, 0.019192185, -0.014718015, 0.005649474, 0.010571061, 0.009021796, -0.017055267, 0.012454219, -0.0037262489, -0.016627885, -0.0022637963, -0.025041996, 3.0926862E-4, -0.009963375, 0.006884879, 2.0763988E-4, -0.0062738545, -0.014117007, -0.0010876573, -0.007879881, 0.019085338, 0.0038130612, -0.012147037, -0.018524399, 0.019699702, -0.0057863705, -0.013495966, -0.024254007, 0.011873244, -0.009682905, -0.0028230676, 0.008701258, 0.040147327, -0.0128615685, -0.009829817, 6.177025E-5, 0.01883158, 0.0062671765, -0.012728011, 0.017562786, -0.022197224, -0.0040868535, 0.004297206, -0.005001721, 0.020046951, -0.02164964, -0.035312552 ], + "id" : "35f89601-3d51-4ac8-beca-57da0f5a6551", + "metadata" : { + "source" : "movies.csv" + } + }, + "008cf3dc-bc74-4d4b-9f3f-1731e1a9756c" : { + "text" : ",327749-131634-101299-70160-360606-1028938-262500-198663-157350-1029119-67200-12444-12445-122917-294254-454467-675-767-109445-672-674\r\n10192,Shrek Forever After,Comedy-Adventure-Fantasy-Animation-Family,en,A bored and domesticated Shrek pacts with deal-maker Rumpelstiltskin to get back to feeling like a real ogre again but when he's duped and sent to a twisted version of Far Far Away���where Rumpelstiltskin is king ogres are hunted and he and Fiona have never met���he sets out to restore his world and reclaim his true love.,123.12,DreamWorks Animation,5/16/10,165000000,752600000,93,Released,It ain't Ogre... Til it's Ogre,6.355,6850,Mike Myers-Eddie Murphy-Cameron Diaz-Antonio Banderas-Walt Dohrn-Julie Andrews-John Cleese-Jon Hamm-Jane Lynch-Craig Robinson-Lake Bell-Kathy Griffin-Mary Kay Place-Kristen Schaal-Meredith Vieira-Ryan Seacrest-Cody Cameron-Larry King-Regis Philbin-Christopher Knights-Conrad Vernon-Aron Warner-Jasper Johannes Andrews-Ollie Mitchell-Miles Bakshi-Nina Zoe Bakshi-Billie Hayes-Jeremy Hollingworth-Brian Hopkins-Chris Miller-Mike Mitchell-James Ryan-Ashley Boettcher-Danielle Soibelman-Frank Welker,sequel-ogre,/6HrfPZtKcGmX2tUWW3cnciZTaSD.jpg,/gVl6aX2paJIHpMxAAe8X36VNExi.jpg,810-809-808-10527-8355-953-80321-950-9502-46195-13053-49444-425-57800-5559-22794-15512-863-38757-38055-10555\r\n127585,X-Men: Days of Future Past,Action-Adventure-Science Fiction,en,The ultimate X-Men ensemble fights a war for the survival of the species across two time periods as they join forces with their younger selves in an epic battle that must change the past ��� to save our future.,53.206,Bad Hat Harry Productions-The Donners' Company-Simon Kinberg Productions-20th Century Fox,5/15/14,250000000,747862775,132,Released,\"To save the future, they must alter the past.\",7.", + "embedding" : [ 0.012677731, -0.051462993, -0.035400953, -0.02954556, -0.0069029173, 0.026416417, -0.0050529623, -0.022978388, -0.021245943, -0.019352341, 0.039779067, 0.038865842, 0.030781101, -0.0024089704, 0.01615605, 0.025718067, 0.017055847, -0.030646803, 0.0061542057, -0.019231474, -0.013590957, -0.0050630346, -0.02957242, 6.983496E-4, 0.001977538, 0.010032061, 0.02895465, -0.014880219, -0.0073461006, -0.0040625143, 6.219676E-4, -0.011328036, -0.0097164605, -0.0061105588, -0.023717027, -0.008789804, 0.012556863, -0.03021705, 0.024939138, -0.0154577, 0.01674696, 0.023179835, -0.008292901, -0.0051839026, 0.0060702697, 0.0112273125, 0.009192698, -0.012926183, -0.00352868, 0.01547113, 0.004260604, 0.04617165, -0.023676736, -0.017888494, -0.0082056075, -0.0149607975, -0.019970112, -0.004079302, -0.00907183, -0.0022864235, 0.018358536, -0.0031711115, -0.028283158, -0.026685013, -0.014705631, -0.00335745, -0.0101126395, -0.033440202, 0.0011885373, -0.009165838, 0.02684617, 0.019862674, -0.0017895208, 3.0164589E-5, 0.008662221, -0.017727336, -0.030969119, 1.6829219E-4, 0.011952522, 0.008709225, 0.024093062, -0.015054805, -0.0043210383, 0.006060197, 0.013752115, 0.015981462, -0.01036109, 0.025086867, -0.022978388, 0.008494348, 0.01611576, 0.026376126, 0.0060769846, 0.021353383, 0.016908119, 0.0076281265, -0.0074938284, 0.018559983, -0.035374094, -0.037334844, 0.007957157, -0.005512933, 0.0011532841, -0.0040625143, -0.008749515, 0.0040121526, -0.0028437602, -0.018224237, 0.016411215, 0.0029763794, -0.0020816189, 0.0067786914, 0.020775901, -0.041068327, -0.0017097814, -0.024992857, 0.023045536, -0.0087629445, -0.021877144, -0.007513973, 0.032741852, 0.03948361, 0.017122995, -0.029276963, 0.04241131, 0.026295548, -0.0013211565, -0.009978341, -0.014356456, -0.00868908, 0.029679857, 0.002338464, 0.02082962, 0.0051436136, -0.0309154, 0.04982456, -0.016894689, -0.002202487, -0.0174856, -0.02814886, 0.034890622, 0.036072444, -0.027719107, -0.015095095, -0.03757658, -0.004448621, 0.003461531, -0.0087629445, 0.027369931, -0.005251052, 0.03150631, 0.009615737, 0.015135384, 0.040074524, 0.039026998, -0.0015309972, 0.013752115, -0.0037200546, -9.115477E-4, -0.0040222253, 2.0669302E-4, -0.0055700094, 8.4691675E-4, -0.0069432063, -0.008172033, 0.012496429, 0.02873977, -0.014920508, 0.005962831, 0.0016837611, -0.01607547, 0.023851324, -0.020655032, 0.009750035, 0.011986096, 0.028793491, -0.006244857, -0.018210808, -0.018519694, -0.024710832, -2.763601E-4, 6.559618E-4, 0.03942989, 0.04238445, -0.005536435, 0.009192698, 0.0118249385, -0.016290348, 0.012308411, -0.008850238, 0.0018230954, 0.005559937, 0.013201493, -0.0064798784, -0.6364651, -0.019889534, -0.02143396, -0.013778974, 0.01739159, 0.008460774, -5.9175055E-4, -0.008178748, -0.026564144, -0.011126589, -0.021514539, 0.023394711, 0.03419227, -0.0221726, -0.021890573, -0.011576488, 0.0074333944, -0.039188158, 0.02479141, 0.0074871136, -0.00972989, 0.00653024, 0.0065772445, 0.0027514303, 0.0013883056, 0.011287747, -1.3356356E-4, -0.012489714, 0.0012506502, -0.0018969593, -0.018667422, 0.007050645, 0.01005892, 7.008677E-4, 0.03010961, -0.0034716032, -0.0076818457, 0.05036175, 0.03137201, 0.034111694, -0.02219946, -8.1544067E-4, 0.015914313, 0.01686783, -0.020534163, 0.00176434, 0.01740502, 0.009884332, 0.021689126, -0.0032516902, -0.014907078, 0.0019439636, 0.0059258994, -0.008024305, -0.0026355982, -0.0014269162, 0.01950007, -0.01688126, 0.024039341, -0.0019540358, -0.0036159735, 0.030673662, -0.0060501248, 0.02758481, 0.001581359, 0.01740502, -0.007937011, -0.011784649, 0.023797605, -0.017687047, 0.013322362, 0.023676736, -0.016706672, 0.007117794, -0.01042824, 0.023676736, 0.010669976, 0.0101932185, -0.0015469451, 0.01479964, 0.010952001, -0.001468045, -0.0027329642, 0.025006287, 0.016639521, 2.3900847E-4, -0.02551662, 0.0082056075, 0.010052205, -0.003132501, -0.0046064216, 0.015229393, -5.4432655E-4, 7.9613534E-4, -0.012234548, 0.008111599, -0.023435, 0.016585803, 0.018251099, -0.055438213, -0.016908119, -0.015591998, 0.0073461006, -0.0031996497, 0.02688646, 0.013020191, -0.0041833827, -0.010381236, 0.030405067, -0.021044496, -5.95108E-4, 4.985813E-4, -0.007513973, -0.014329596, -0.011871943, -0.035266653, 0.023743887, 0.013423085, 0.0028269729, -0.002655743, 0.0072655217, 0.0073595303, 0.018801719, -0.03134515, 0.02009098, 0.031183995, -0.011650352, -0.0092397025, -0.0020027189, 0.0029881306, 0.0067652618, 0.0025785216, 0.022736652, -0.014651911, -0.011536198, 0.014141579, 0.02946498, 0.0024828343, 0.019325482, 7.28147E-4, -0.027087906, -5.921702E-4, -0.015793445, -0.014249017, -0.020399867, -0.019674657, -0.032473255, -0.0055028605, 0.00738639, 4.2387805E-4, -0.020023832, 0.0012800278, -0.012449425, -0.0013530523, -0.004126306, -0.005274554, -0.015175674, -0.029894734, 0.02614782, -0.013308932, 0.017646758, 0.018318247, -0.007191658, -0.018627133, 0.01107287, 0.001581359, -0.020990778, 0.018465975, 0.0071580834, -0.020507304, 0.0087428, -0.028712912, -0.012476284, 0.020869909, -0.025838936, 0.023139546, -0.013282072, 0.007171513, -0.00369991, -0.015820304, 0.008306331, 0.003338984, -0.02342157, -0.004260604, 0.016518654, 0.015027946, 0.009891047, -0.011670496, -0.010387951, 0.00225117, -0.021313092, -0.0027296068, -0.01873457, -0.0019825741, -0.008360051, 0.0071580834, -0.0117175, 0.013047051, 0.012664301, 0.013604388, 0.033628218, 0.010011916, -0.016545514, -0.0018147017, 0.016491795, -0.038543526, 0.0071446537, -0.01950007, 0.0070976494, -0.01739159, 0.0062717167, -0.013664821, -0.019298622, -0.01677382, 8.72937E-4, 0.037119966, -0.020332716, 0.008816663, -0.013261927, 0.0013933417, -0.011596632, -0.012321841, 0.015215963, 0.014289307, -0.005946044, 0.008118314, 0.0086420765, -0.01540398, 0.0033624861, -0.009326996, -0.008957677, -0.004932094, 0.008668936, -0.010448384, 0.0074333944, 0.0054054945, 0.044022884, -0.013282072, 0.03354764, -0.010636401, -0.013604388, 0.02618811, 0.029196385, 0.0024828343, -0.016236627, -0.025234593, 0.019983543, 0.014907078, 7.6843635E-4, 0.045929916, -0.019607509, 0.023018677, 0.005170473, 0.00871594, 0.0031358583, -0.012932898, 0.0056875204, 0.0049488815, 0.024576534, 0.009145694, -0.004864945, -0.031828627, 0.023717027, -0.0016333994, 0.009575447, 0.008078025, -0.019070316, -0.005126826, -0.018989736, -0.029867874, -0.02614782, -0.012825459, 0.0066981125, 0.010562537, 5.4054946E-4, 0.0024526173, -0.008514493, 0.0051301834, 0.013261927, 0.025274884, -0.017324442, -0.028041422, 0.020332716, 0.014933937, -0.007319241, -0.019056886, 0.008192178, -0.0136513915, -0.025462901, -0.023596158, -0.0049287365, 0.029115805, -0.01474592, -0.003975221, -0.008339906, 0.001266598, 0.019567218, -0.01882858, -0.0018868869, 0.02214574, -0.004089374, 0.01815709, -0.022038301, 0.0019036741, 0.023085825, -0.01607547, 0.008467489, 0.0028722985, -0.0068458403, 0.002783326, -0.010515533, 8.200572E-4, -0.041739818, 0.017566178, -0.01611576, -0.0049052346, -0.010032061, 9.820542E-4, 0.02895465, -0.0021605191, -0.0033070883, -0.034729462, -0.026443277, 0.008850238, 0.05962831, 0.036341038, 0.008239183, -0.008595072, -0.0040625143, 0.010455099, -0.003693195, -0.018640563, -0.017579608, 8.34746E-4, 0.024388516, 7.2898634E-4, 0.019244904, 0.01071698, 0.011636921, -0.014987657, -0.0034279565, -0.0058016735, -0.020574454, -0.014235588, -0.03746914, -2.7777653E-5, 0.00936057, 0.04611793, -0.001477278, -0.015968032, 0.008870383, 0.017673617, -0.013966992, 0.008776374, -2.5600556E-4, -0.014208728, 0.011992811, 0.0043042507, -0.005523005, -0.011093015, 0.010508819, 0.008890527, 0.008279472, 0.0019221401, -0.00838691, 0.011697356, 0.0075542624, -0.014181869, 0.02553005, -0.022750081, -0.013194778, 0.015350262, 0.033332765, -0.02873977, 0.012812029, 0.007453539, -0.022938099, 0.018237669, 0.0013648034, 0.017727336, 0.0017072633, -0.010025346, -0.029679857, -0.005499503, 0.013980421, -0.035078637, 0.019016597, 3.5672906E-4, -0.008890527, -0.009125549, 0.0030116327, -0.010851278, -0.020359576, 0.01808994, 0.004223672, -0.035051778, -0.011522768, 0.009870903, 0.011408615, -0.008098169, 0.012053246, -0.0025382321, 0.008709225, 0.0013228353, -0.018936018, -0.030888539, 0.006432874, -0.017243862, -0.018371966, 0.008783089, -0.010528963, 0.027719107, -0.006305291, 0.004045727, 0.024307938, 0.003241618, -0.015363691, -0.0018734571, 0.030619944, -0.004962311, 0.022964958, 0.01737816, 0.009085259, 0.0075206878, 0.0046970723, -0.010831133, -0.021111645, -0.023220124, -0.0046903575, -0.005825176, 0.004059157, -0.0022041658, -0.013161204, -0.027316213, -0.02753109, 0.0016569016, 0.010314086, -4.6920363E-4, 0.016585803, 0.0031543241, 0.0073259557, 0.016411215, 0.002546626, 0.011113159, -0.0058553927, -0.0030938901, 0.013235068, 0.023220124, -0.022709792, 0.02814886, -0.021702556, -0.024630252, -0.006627606, 0.031237714, -0.0053014136, 0.023260413, -0.011865228, -0.0022545278, -0.01936577, -0.017096136, -0.0018029506, -0.009736605, -0.009521728, 0.010737125, -0.021648837, -0.0013992173, -0.0051738303, -0.01745874, -0.001391663, -0.02820258, 0.0037603439, -0.0077489945, 0.021380242, 0.035105497, -0.002660779, -0.0034951053, -0.027235635, 0.0023837895, 0.008138459, -0.03282243, -0.037415422, -0.012247978, 0.03569641, 0.018304817, 0.0429485, 0.0026137747, 0.008971106, 0.009347141, 0.007319241, 0.013671536, -0.020467015, -0.008306331, -0.05226878, 0.0025096938, 0.01802279, 0.022696361, 0.019594079, 2.8832103E-4, 0.009951482, 0.026470136, 0.01876143, 0.021286232, -0.010884853, -0.023945333, -0.0132955015, 0.0058990396, -0.03080796, -0.0012011278, -0.02414678, -0.02426765, 0.03233896, 0.0028085068, -0.008843523, -0.010622972, 0.030029032, 0.004378115, 0.008346621, -0.014249017, 0.001727408, -0.023784176, 0.0044016168, -0.029787296, -0.003276871, -0.007111079, -0.016934978, 0.007876578, -0.0020799402, -0.02554348, 0.0034262778, 0.02479141, -0.007111079, -0.036099304, 0.02347529, -0.007675131, -0.005499503, -0.037119966, 0.0010399701, -0.036153022, -0.014678772, -0.0014932259, -0.032688133, 0.007896722, -0.021715986, -0.045204706, 0.010857993, -0.0070103556, 0.041793536, 0.008494348, 0.050630346, 0.039805926, -0.004730647, -0.029814156, 0.010864708, -0.009253132, -0.009703031, 0.03158689, 0.003162718, -0.013684966, -0.02347529, 0.008225752, -0.0117175, -0.0349712, -0.04020882, 0.022602353, 0.03177491, 0.03284929, -0.0044452637, -0.012012956, -0.019970112, 0.031909205, -0.0015150493, 9.4900424E-5, -0.0011751074, -0.022951528, -0.021608548, 3.26512E-4, -0.018479405, 0.006157563, 0.014423605, -0.026523855, 0.0135708125, -0.03550839, 0.0024761194, -0.010065635, -0.008883812, 0.026322408, -0.019043457, 0.0023367852, 4.4905892E-4, 0.003894642, 0.004492268, -0.002875656, -3.527421E-4, 0.028900929, -0.016478365, 0.018063081, -0.0051604006, -0.00972989, 0.0054222816, 0.019218044, -0.024697402, -0.014611622, -0.03156003, -0.0071312236, 0.030243909, 0.011213883, 0.004441906, -0.0011633564, -0.010985577, -0.013711826, 0.013120915, -0.010676691, 0.01174436, -0.043834865, 0.019835815, -0.014275877, 0.020238709, 0.0015435877, 3.8531984E-5, 0.019634368, 0.012603867, 0.01878829, -0.011462335, -0.0050999667, -0.00844063, -0.019244904, -0.036475338, -0.017807914, -0.0076952754, -0.032016642, 0.0046735704, -0.0274908, 0.0021470892, 0.0064295167, -0.0019003167, -0.00941429, -0.012328557, -0.02414678, 0.00572781, 0.012973187, -0.0068324106, -0.009971626, -0.011791364, 0.03349392, 0.009394145, -0.013805835, 0.010703551, -0.0019540358, 0.04090717, -0.015739726, 0.01477278, 0.015954603, -0.016693242, -0.017673617, 0.022575494, 0.02218603, 0.001266598, -0.0020195062, -0.042733625, 0.0035051778, 0.005657303, 0.019849245, -0.012214403, 0.002612096, 0.016317207, 0.02009098, 0.019526929, 0.02283066, -0.020467015, -0.016518654, 0.010475243, -0.009347141, -0.010878138, -0.0048145833, 4.4863924E-4, 0.024106491, 0.0027631812, -0.009172553, -0.02010441, 0.0039147865, -0.015162244, -0.029652998, 0.0021135148, 0.03360136, 0.05984319, 0.0035488247, 0.0016342388, 0.029679857, -0.010616257, 0.026268689, -0.013926703, 0.00808474, 0.007507258, 0.009709746, 0.020010402, 0.036717072, -0.014692201, -0.012153969, 0.0049052346, 0.027692247, 0.024106491, 0.023381282, -0.021957723, -0.003998723, -0.01477278, 0.0068458403, 0.00434454, -0.0074065346, 0.025033146, -0.03421913, 0.009575447, 0.010139499, 0.017149854, 0.004156523, 0.002643992, 0.005677448, -0.011012436, 0.0018516337, -0.012523289, -0.013517094, -0.0037066247, -0.03284929, 0.02949184, 0.0042438167, -0.007654986, 0.010408095, 0.030781101, -0.023972193, 0.008971106, 0.0016703313, -0.010817704, -0.024509385, -0.012247978, -0.0070103556, 0.022575494, -0.035132356, 0.012006241, -0.017284153, 0.0018197378, -0.017969072, 0.01042824, -0.022763511, 0.02350215, 0.0062784315, -0.053960934, 0.0033423414, -0.008574927, 9.333711E-4, -0.014061, -0.00771542, -0.04437206, 0.0073461006, -0.017243862, 0.0043982593, -0.007191658, -0.031183995, -0.012516573, -0.022951528, -0.019902963, 0.028471176, 0.18307503, -0.017176714, 0.0074132495, 0.04114891, 0.009703031, 0.015766585, 0.020171558, 0.014477325, -0.018694282, 0.019338911, 0.0048078685, 0.010327516, 0.018452546, -8.1124384E-4, 0.011274317, -0.002007755, -0.030378208, -0.0052409796, -0.012664301, -0.030619944, 0.008467489, 0.00318622, -0.02021185, -0.022454625, 0.008648791, -0.00872937, -0.004193455, -0.0030502432, 0.010952001, 4.7172172E-4, -0.024039341, -0.008131743, 0.0014722418, 0.013765545, -0.028578615, -0.011932377, 0.011314606, 0.019030027, 0.0049455236, 0.0135708125, 0.010126069, 3.8862485E-4, -0.011710785, -0.0040322975, 0.01747217, 0.025060007, -0.024482526, -0.0029763794, -0.017243862, -0.0077422797, -0.039832786, 0.0050697494, 0.010179788, 0.030566225, 0.0037200546, -0.013342506, 0.02013127, -0.0019976827, 0.0024811556, 0.005815103, 0.0049287365, 0.03427285, -0.023837894, -0.0024324725, -0.023931904, 0.025677778, -0.049851418, 0.00668804, 0.017821344, -0.021863714, -0.012247978, -0.005690878, -0.012328557, 0.0021135148, -0.0048078685, -0.0069432063, -0.0014227194, 0.008957677, 0.023408141, 0.0029881306, -0.039403033, -0.024992857, -0.0075408327, -0.0026456707, -0.0034044543, -0.019043457, 0.015202533, -0.010810989, 0.00803102, -0.019338911, -0.011838368, -0.008749515, -0.0038442803, -0.0010978861, -0.00972989, 0.0141684385, 0.012966472, 0.02344843, -0.0033792735, -0.004908592, -0.027719107, 0.016236627, 0.014987657, -0.019298622, -0.028551754, -0.017767625, 0.005576724, 0.0035454673, 0.020708751, -0.012590437, 1.404883E-4, -0.031291433, -0.0039651482, -0.02291124, 0.018063081, 0.010777415, 0.015981462, -0.011811509, 0.017861634, -0.020668462, -0.023394711, 0.0030955689, 0.016236627, -0.010515533, -0.0057781716, -0.024254218, -0.02010441, 0.008662221, 0.0039685057, -0.015766585, 0.021501109, -0.01810337, 0.0013211565, 0.006432874, -0.011166879, 0.008769659, 0.005566652, 0.0041195913, 0.024724262, 0.004284106, -0.004089374, -0.008219037, -6.7484746E-4, 0.012382275, 0.006335508, -0.03220466, 0.010542393, -0.0036965525, -0.010898283, -0.025731497, -0.018519694, -0.02074904, 0.010763984, -0.011885373, 0.0349712, 3.5924715E-4, -0.031882346, -0.027437082, -0.0057210946, 0.041874114, -0.04096089, 0.012469569, 0.0031308222, 1.4741304E-4, -0.024589963, -0.011858514, -0.17114937, 0.0011289426, 0.008950962, -0.023018677, 0.025959803, 0.0076012667, 0.03575013, 0.011784649, 0.016276918, -0.027155055, 0.0059426865, 0.018331677, -0.05302085, -0.025180874, 0.020923628, 0.017203573, -0.018465975, 0.0456076, 0.01947321, -0.0058184606, 0.027262494, 0.0047037876, -0.0136111025, 0.006536955, 0.02346186, 0.011408615, 0.027772825, 0.006422802, -0.0035421096, -0.0141684385, -0.043163378, 0.006019908, 0.01145562, 0.00837348, -0.012778454, -0.00369991, -0.01105944, -0.010522248, 8.1544067E-4, -0.009844043, 0.043727428, 0.025973232, 0.027692247, 0.01042824, -7.726332E-4, 0.015283112, 0.029169526, -0.0067014704, 7.4367516E-4, -0.013913273, 0.002111836, -0.030082751, 0.029330682, -0.0107707, 0.012899322, 0.020708751, -0.007513973, -0.0011944128, 0.008769659, -0.0075206878, -0.033816237, -0.02957242, -0.0051771877, -0.007245377, -0.015014516, -0.013718541, -0.01540398, 0.028712912, -0.046198513, 0.001794557, -0.021205654, 0.013221638, 0.017028986, 0.021998012, -0.0062717167, -0.011999526, -0.039349314, 0.011959237, 0.0035454673, 0.0059527587, -0.013940132, 0.04759521, -0.021366812, 0.018519694, 0.019083746, -0.0036394757, 0.01876143, -0.0025180874, 0.0044083316, -0.01747217, 0.009656026, -0.010804274, -0.025758356, 0.0015074951, 0.01540398, 0.009501583, -0.011979382, -2.4748078E-5, 0.014866789, -0.01947321, -0.011798079, -0.012375561, -0.010213363, 0.016263487, 0.02144739, 0.0062045674, 0.021313092, 0.024106491, 0.02485856, -0.0030452071, -2.3774942E-4, 0.0074065346, 0.020493874, 0.0040927315, -0.022441195, -0.00404237, -0.014034141, -0.022964958, 0.0073259557, 0.012550148, 0.027987704, 0.0101126395, -0.008823379, -0.009938052, -0.0201447, -0.016330637, -0.094330914, 0.0047172173, 0.0017106207, 0.029330682, -0.031183995, 0.027692247, -0.008125029, 0.02481827, -0.014557903, 0.03373566, 0.0038979994, -0.018707711, 0.011354896, -0.0053081284, 0.01747217, 7.6675764E-4, -0.020507304, -0.0025063364, -0.008185463, 0.039805926, -0.009823899, -0.0056875204, 7.562656E-4, -0.016693242, -0.030485645, 0.014947367, -0.037307985, 0.022736652, 0.016330637, 0.0029579133, 0.032580696, -0.016505225, 0.02342157, -0.046037354, -0.03550839, -0.013557383, -0.023287272, -0.015511419, 0.0064865933, -0.0496634, 0.021192225, 2.4089703E-4, -0.004008795, -0.027987704, -0.0015612142, -0.0058016735, -0.023717027, 0.025315173, -0.019553788, -0.03427285, -0.0091188345, -0.0072722365, -0.033305902, -0.008266042, 0.024751121, 0.009521728, 0.014719061, 0.020359576, 0.00807131, -0.013752115, 0.008836809, -0.00771542, -0.026926748, 0.01872114, 0.016921548, 0.012979901, 0.009394145, -0.0012380597, 0.016599232, -0.008991251, -0.021071356, 0.02758481, -0.025637489, -0.0053786347, -0.015605427, 0.010636401, -0.013000046, -0.009991772, 0.026214968, -0.036153022, 0.01616948, -0.03298359, 4.7423982E-4, -0.015739726, -0.006684683, 0.01749903, 0.027208775, 0.0024442235, 0.006167636, -0.021219084, -0.0050160303, 0.02820258, 0.004596349, 0.0011104766, -0.0037435568, 0.037173685, 0.016585803, 0.013886413, 0.011234027, 0.022709792, -0.018962877, -0.0074736835, -0.069458924, 0.010911712, 0.003223152, -0.009152409, -0.01604861, -0.0025080151, 0.017807914, -0.018989736, 0.0020648318, 0.008897242, -0.0034447436, 0.0058621075, -0.016370926, 0.010690121, -0.0039785784, 0.0076885605, 0.0014050928, -0.012516573, 0.0047205747, -0.003192935, -0.0125770075, 0.0013958599, 0.02074904, 0.011442189, 0.0077422797, 0.02480484, 9.115477E-4, 0.025879225, -0.016988697, -0.009138979, 0.028336877, -0.026053812, -0.013047051, 0.0021135148, -0.0106296865, -0.025731497, -0.013953562, 0.009649311, 0.023367852, 0.0041531655, -0.025462901, -0.020775901, -0.0048750173, -0.025758356, 0.0036428333, 0.013913273, -0.03556211, -0.002405613, 0.025718067, 6.870182E-4, 0.040746015, 0.018251099, -0.0018482762, -0.007708705, 0.02143396, -0.022212889, 0.03953733, -0.0023216766, -0.008615216, -0.009803754, 0.023905044, 0.005902397, 0.023609588, -0.029008368, -0.005825176, 0.002880692, 0.0034581735, -0.014611622, -0.005825176, -0.016545514, 2.1005046E-4, 0.006865985, 0.014719061, 0.032580696, 0.011422045, 0.024724262, -0.022024872, -0.007836288, -1.5937396E-4, 0.0033910244, 0.028632334, -0.033950534, -0.019271763, 0.018398825, 3.645981E-5, 0.031855486, 5.997245E-4, 0.008890527, 0.001479796, 0.020278998, -0.023972193, -0.0010777414, 0.017901924, 0.010502104, -0.0029629497, 0.017606467, 0.011576488, 0.0020765828, -0.0033809522, 0.024522815, -0.0045627747, -0.0063153636, -0.020668462, -0.016572373, -0.026926748, 0.0076079816, -0.015833734, -0.022709792, 0.0135305235, 0.04235759, 0.020158129, 0.0026238472, -0.014034141, 0.0012439352, -0.045177847, 0.012932898, -0.015632287, -0.026107531, -0.0016199696, 0.039779067, 0.019016597, 0.01615605, 0.028095141, -0.018251099, 0.02479141, 0.009306851, 0.026537284, -0.030888539, 0.0047272895, -0.008977821, -0.013147774, -0.0033658436, -0.018076511, 0.01407443, -0.009850758, -0.007863148, -0.0015696079, 0.038060054, -0.01037452, 0.0646242, 0.024240788, -0.0018298102, 0.009938052, -0.0077422797, 0.0075274026, 0.012362131, 0.010945287, -0.020869909, -0.005523005, 0.018210808, -0.014423605, 0.0101529285, -0.01939263, -0.009844043, 0.015914313, 0.018748, 0.014598193, -0.01604861, -0.021675697, 0.01005892, -0.014275877, 0.031936064, 0.003369201, -0.024455665, -0.00771542, 0.026550714, -0.012503143, -0.012496429, -0.025221163, 0.0041296636, -0.025167445, 0.0051839026, 0.0073528155, 0.030458786, 0.0069633513, -0.009152409, -0.0041363784, 0.024254218, 0.005566652, 0.0063287932, 0.00840034, -0.026591003, 0.012053246, 0.00418674, -0.0063388655, 0.007950442, -0.012019671, -0.03301045 ], + "id" : "008cf3dc-bc74-4d4b-9f3f-1731e1a9756c", + "metadata" : { + "source" : "movies.csv" + } + }, + "873259ac-8ec8-42d9-bfc3-b0119e2c14a3" : { + "text" : ",57165-9543-1979-44833-14869-27578-38356-49529-8373-44912-20526-64635-2080-1735-58574-534-1858-9738-12437-1734-34544\r\n68728,Oz the Great and Powerful,Fantasy-Adventure-Family,en,Oscar Diggs a small-time circus illusionist and con-artist is whisked from Kansas to the Land of Oz where the inhabitants assume he's the great wizard of prophecy there to save Oz from the clutches of evil.,30.268,Roth Films-Walt Disney Pictures,3/7/13,200000000,491868548,130,Released,\"In Oz, nothing is what it seems.\",5.9,6099,James Franco-Mila Kunis-Rachel Weisz-Michelle Williams-Zach Braff-Bill Cobbs-Joey King-Tony Cox-Stephen R. Hart-Abigail Spencer-Bruce Campbell-Ted Raimi-Tim Holmes-Toni Wynne-Rob Crites-William Dick-Gene Jones-John Lord Booth III-Suzanne Keilly-Shannon Murray-Ralph Lister-John Manfredi-Robert Stromberg-Channing Pierce-Brian Searle-Russell Bobbitt-Julie Gershenson-Dan Nelson-T.J. Jagodowski-John Paxton-Melissa Exelberth-Steve Forbes-Arnold Agee-Deborah Puette-Julius Kline III-Theresa Tilly-Betsy Baker-Ellen Sandweiss-Bella Shepard-Sasha Kida Reynolds-Ja'Vonne Cousins-Victoria Lurz-Dashiell Raimi-Oliver Raimi-Brandon Hamilton-Stevie Lee-Martin Klebba-Danielle Ragland-Bart McCarthy-Timothy Patrick Quill-Nicholas Lindsay-Abaire-Bill E. Rogers-Dan Hicks-Mia Serafino-Lanika Wise-Mikayla Bouchard-Nellie Ann Prestine-Lowery-Emma Raimi-Jayne Violassi-Jay Schwalm-Wendy Cutler-James Bird-Kenneth D. Ciszewski-Chester F. Guilmet-Robert Buck-Jim Moll-Phillip Huber-Bernie Allemon-Dan Cota-Dale Drew-Spencer Frost-Jon Overgaauw-Eduardo Piedra-Eric Potts-Jordan Rafael-Adam Romano-David Spradlin-Mani Love-Michael Witous-Christophe Zajac-Denek-Chidi Ajufo-Talia Akiva-Apollo Bacala-Kelly Bacon-Cameron Barnett-Robert T. Barrett-Colin Bryant-Ron Causey-Grady Chambless-Lee Christian-Michael Clossin-Neil Ellice-John C. Epperson-Mike Estes-Jessee Foudray-Logan Fry-Nesti Gee-Derrick Gilliam-Ryan Groves-Brice Harris-Niki Haze-Ron Heisler-Dennis Kleinsmith-Doug Kolbicz-Kef Lee-Davy J. Marr-Julia Metas-Bob Jay Mills-Reza Mir-Jessica Nichole-Jor ��l Quinn-Gene Richards-Ari Rufino-Keith Schloemp-David Schwager-Ashley Siloac-Amy Sutherland-Eric Adam Swenson-Kevin Thompson-David Waldman-Filip Watermann-Matt Weinglass-Otis Winston,circus-witch-magic-hope-illusion-magic trick-wizard-based on young adult novel,/tkzfAUEKoUp4YFNbZV9hfpZOz0z.jpg,/a4KUVG5P5hBSgAgHHindbnyubTF.", + "embedding" : [ 3.949192E-4, -0.04053637, -0.0126709705, -0.036026362, -0.019435981, 0.040375296, -0.0028472773, -0.026133878, -0.028804982, -0.03307338, 0.030039866, 0.020482946, 0.015986362, -0.013919276, -0.011677695, 0.012583723, 0.020925894, -0.0150602, 0.013268278, -0.01770446, -0.015087046, -0.0027264734, -0.040939048, 0.014872284, 0.00885223, 0.011657562, 0.0133756595, -0.0022231245, -0.005993208, -0.027328493, 0.0051979166, -0.0075703682, -0.009724702, -0.01688568, -0.026925813, -0.016241392, 0.011456222, -0.033663977, 0.007328761, -0.004033503, 0.01617428, 0.017315203, -0.023731224, -0.0062482385, -0.0024865437, 0.01495282, -0.0044227596, -0.012342116, -0.0015234695, 0.031811655, 0.018335324, 0.022576878, -0.0074696983, -0.03097945, -0.003489886, -0.016013209, -0.0013758205, 0.005325432, 0.00956363, -0.0028455993, 0.02436209, 0.005325432, -0.024737922, -0.025368787, -0.0059999195, -0.0046207434, -0.0128119085, -0.0050234227, 0.011536757, -0.010691131, 0.032268025, 0.032590166, -0.004741547, 0.009100549, 0.023086939, -0.027784862, -0.049529538, -0.0045267846, 0.010080402, 0.0047214134, 0.011261594, -0.020831935, -0.0076106363, 0.016483, 0.0047079907, 0.029315043, -0.010697843, 0.03511362, -0.036053207, 0.0046408772, 0.0034244508, 0.025207715, 0.0015545094, -0.0011811922, 0.018966189, 0.0034663964, -0.030174091, 0.031570047, -0.0077851303, -0.0383619, 0.008127408, 0.0026660715, 0.005718044, -0.008509953, -0.010395833, -0.010865626, 0.0053891893, -0.0074696983, 0.023489617, -0.001805345, 2.0668766E-4, 0.0027633857, 0.019758124, -0.054630138, -0.0088589415, -0.013811895, 6.84974E-4, -0.00702004, -0.02848284, -0.017758152, 0.015368922, 0.043381967, 0.015959518, -0.033583444, 0.025570126, 0.013697803, -0.010509926, -0.01628166, 0.00763077, -0.015328653, 0.042361848, 0.005157649, 0.008932766, -0.0078858, -0.022912445, 0.0670595, -0.03046939, 0.010187782, -0.034925707, -0.014697789, 0.029583495, 0.02379834, -9.2532317E-4, -0.020899048, -0.024241285, -0.0015041744, 0.01684541, -0.0015771601, 0.01597294, -0.001212232, 0.034764633, 0.010120669, 0.0110468315, 0.031059986, 0.033851895, 0.011530046, 0.024630541, -0.0025284896, -0.015476302, -0.028187541, -0.0150736235, -0.002159367, -0.004278466, -0.005905961, -0.0033288144, 0.018751426, 0.024939263, -0.017489698, -0.0069931946, 0.0069931946, -0.0145098725, 0.0037482718, -0.029261352, 0.01546288, -8.707937E-4, 0.033395525, 0.006140857, -0.004379136, -0.026415752, -0.007825398, 0.0022801708, 0.01597294, 0.019811815, 0.043032978, -0.009879062, 0.0076777493, 0.033046536, -0.017972913, 0.0077045946, -0.031570047, 0.007852243, 0.018375592, -0.019825237, -0.012382384, -0.6417095, -0.014966242, -0.022576878, -0.022254735, 0.008449551, 0.013241433, 0.006872391, 0.005942873, -0.04593227, -0.012751507, -0.02253661, 0.013576999, 0.023033248, -0.023274856, -0.018456127, -0.014791748, -0.0040871934, -0.018858807, 0.02904659, -0.002050308, -0.019959463, 0.0050133555, -0.0055167046, 0.003983168, 0.0025117113, 0.008409283, -0.005355633, -0.017878955, 0.005026778, 0.0065636705, -0.0037717614, -8.57371E-4, 0.0105569055, 0.010281742, 0.035489455, 0.0145769855, -0.02432182, 0.05428115, 0.01901988, 0.053073112, -0.021207768, 0.0031794875, 0.023905719, 0.007905934, -9.731413E-4, 0.017570235, 0.023207743, 0.0041173943, 0.0073019154, -0.017221246, -0.008033449, -0.003125797, 0.0019009812, -0.0068489015, 0.0017415874, 0.006520047, 0.018295057, -0.011422666, 0.026617093, -0.009080415, -0.035731062, 0.031704273, 0.012214601, 0.010926028, 0.0037214265, 0.026415752, 0.0028606998, 0.0051442264, 0.020576905, -0.00991933, 0.0054999264, 0.020576905, -0.013019959, -0.003340559, 0.0032516343, 0.011107233, 0.022576878, -0.0010662609, -0.004899263, 0.014684367, -0.0027415738, -5.708816E-4, 0.0067952108, 0.0077247284, 0.022764795, 0.002739896, -0.031059986, 0.001912726, 0.0111877695, 6.405115E-4, -0.006150924, -0.010919317, -0.0026409042, -0.0025872136, -6.249916E-5, -0.012684394, -0.009966309, 0.0153554985, 0.023060093, -0.050898645, -0.023100361, -0.0125300335, 0.006251594, -0.011066966, 0.021892324, 0.02273795, -0.0013053516, -0.009932753, 0.04314036, -0.0179058, -0.011677695, -0.012375672, -0.0052583185, 0.0011031731, 0.0018087005, -0.024737922, 0.023019826, 0.011221326, 0.013670958, -0.0033858607, 5.8975717E-4, 0.0019798393, 0.009087127, -0.013644112, 0.01297298, 0.024227863, -0.00674152, -0.0068858135, 0.0049227527, 0.0015008188, -0.0031039852, -0.0026610382, 0.008664313, -0.011207903, -0.00885223, -0.009691145, 0.028992899, -2.862797E-4, 0.0286976, -0.008892498, -0.035677373, -0.01805345, -0.02140911, -0.028214386, 0.002939558, -0.014563563, -0.014281687, 0.011919303, -0.0062482385, 0.0027063396, -0.023919143, -0.016308505, -0.006050254, 0.012932712, -0.0068287672, -0.0022147354, -0.030147247, -0.008905921, 0.025100334, -0.005479792, 0.009624032, 0.01383874, -0.0057247556, -0.0233017, 0.009288466, -0.015167582, -0.021395685, -0.0038623642, 0.01017436, -0.026482865, 0.013395794, -0.015597106, 0.007214668, 0.018201098, -0.013758205, 0.0440531, -0.009053569, 0.016187701, 0.0029546584, -0.014147461, 0.0133085465, -0.013462907, -0.026791587, -0.00818781, 0.024550006, 0.015046778, -0.001458873, -0.0042583323, -0.013436061, 0.0071408437, -0.02507349, 0.0039026323, 5.0922134E-4, 0.0040100133, -0.0074092965, 0.019932618, -0.008637468, 0.005177783, 0.006734809, 0.023825184, 0.042415537, -1.2709561E-4, 0.004060348, -0.01404008, 0.009657589, -0.022550033, 0.007919357, -0.02640233, -6.228943E-4, 0.0057012658, 0.021086965, -0.008033449, -0.022227889, -0.008677736, 0.004201286, 0.029637186, 0.008228078, 0.0040167244, -0.010563617, -0.0021274881, 0.002713051, -0.011959571, 0.012483054, 0.022066819, -0.022214467, 0.004506651, 0.024791613, -0.017006483, -0.003429484, -0.014214574, -0.008503241, -0.004516718, -0.00516436, 0.00351002, 0.0010914283, 0.0044730944, 0.0186172, -0.021248037, 0.057019368, -0.019825237, 0.0021795009, 0.010577039, 0.040106844, -0.003067073, -0.022805063, -0.014483027, 0.023274856, 0.008100563, -0.02410706, 0.03272439, -0.012785063, 0.020523215, -0.009879062, 0.011026697, 0.006389176, -0.009764969, 0.0027633857, 0.004268399, 0.010583751, 0.040482678, 0.008979745, -0.025167447, 0.015570261, 0.009832083, 0.0073690284, -0.0037549832, -0.011362264, 0.010160937, -0.008583778, -0.03130159, -0.028751291, -0.010590462, 0.0014538396, 7.1517495E-4, -0.01002, -0.0011904202, -0.010670998, -0.006959638, 0.020764822, 0.031274747, -0.0073421835, -0.026187567, 0.019919196, 0.009939464, -0.005046912, -0.021086965, -0.0048589953, -0.021073543, -0.021046698, -0.01027503, -0.0018993034, 0.030764688, 0.0022717817, -0.0025184227, -0.003540221, -0.011811922, 0.008268345, -0.024617119, 0.011415954, 0.022831907, -0.017087018, 0.0058321366, -0.01963732, 0.004003302, 0.024939263, -0.01622797, 0.012134065, 0.006436155, -0.0056844875, 0.019368868, 0.006103945, 0.010758244, -0.033851895, 0.019717855, -0.020429255, -0.0053287875, -0.005617374, -0.004338868, 0.004348935, -0.021073543, -0.016362196, -0.019556785, -0.024831882, 0.0056609977, 0.063784376, 0.0171944, 0.008194521, 0.017234668, -0.0043892027, 0.010610596, -0.0050737574, -0.027180843, -0.011207903, 0.014134038, 0.020684287, -0.013932699, 0.02599965, 0.0083623035, 0.010389122, -0.0024261419, -0.009624032, 0.0064932015, -0.012697816, -0.010603884, -0.03403981, -0.0069327927, 0.007127421, 0.030147247, -0.0030150602, -0.025677508, 0.003993235, 0.026979504, -0.0020284962, 0.011201192, -0.010610596, 0.0029949262, -0.0013900821, 0.009590475, 0.0027533188, 0.014120616, 0.025972806, 0.010026711, 0.035731062, 0.011516624, 0.00490933, 0.017328626, 0.0020184293, -0.008543509, 0.011872324, -0.020026578, -0.008785117, 0.026523134, 0.026482865, -0.04467054, 0.017422585, 0.008469685, -0.007758285, -0.004533496, 0.013556865, 0.018778272, -0.011207903, 0.007228091, -0.012060241, -0.010657575, 0.011254882, -0.029717721, 0.00737574, 1.2468373E-4, -0.012046819, -0.014670944, -0.011530046, -0.0157716, -0.027328493, 0.019261487, 0.0018087005, -0.014764902, -0.0032415672, 0.010053556, 0.016791722, -0.0015201138, 0.034549873, -0.015838714, 0.028375458, -0.0017717883, -0.015154159, -0.04679132, 0.003875787, -0.031221058, 0.010449524, 0.0142951105, 0.006674407, 0.032133795, -0.022630569, 0.008885787, 0.021704407, 0.010456235, -0.022670837, -0.020415833, 0.050227515, -0.0011937759, 0.009389136, 0.018993033, 0.0114696445, -0.008630756, 2.1444763E-4, -0.0019462826, 9.705197E-5, -0.008261634, -0.008805251, -0.016778298, 0.0021459444, -0.0010679386, -0.01455014, -0.01912726, -0.037127018, -0.017986335, 0.018630622, 0.0062079704, 8.5653213E-4, 0.004929464, 0.0103421435, 0.022362117, 7.3111436E-4, -0.009476383, -0.008570354, -0.002879156, -0.009026725, 0.019529939, -0.008731427, 0.035543147, -0.008415994, -0.02569093, -0.0066240723, 0.02665736, 0.009926042, 0.020187648, -0.015234695, 0.0050435564, -0.0036408908, -0.01251661, 0.017167555, -0.009436115, -0.0058925385, 0.0140132345, -0.004231487, -0.0033506262, 0.030174091, -0.02680501, -0.019972887, -0.026603669, 0.012275003, -0.013160897, 0.0033455926, 0.031006295, 0.0047046347, 0.0015922606, -0.026321795, 0.0027583523, 0.01042939, -0.03275124, -0.03849613, -0.0023741291, 0.0268587, 0.02751641, 0.048348345, 0.005848915, 0.031194212, 0.019462826, -0.0023808405, 0.022979558, -0.019301753, -0.002454665, -0.025476169, 0.0087918285, 0.0019479605, 0.026039919, 0.007798553, 0.020241339, -0.011181058, 0.01887223, 0.0024815104, 0.030362008, 0.003429484, -0.015852137, -0.017999759, 0.004278466, -0.026872123, 0.017972913, -0.033127073, -0.008261634, 0.050737575, 0.013288412, -0.0028254655, -0.012214601, 0.03750285, -0.016657494, 0.013254856, -0.018805116, 0.011905881, -0.042200778, -0.004466383, -0.022241313, -0.014899129, 0.0027885532, -0.0014085381, 0.0019144039, -0.012254869, -0.021784943, 0.0019446048, 0.028966054, -0.013442772, -0.028455993, 0.02518087, -0.015207849, -0.001498302, -0.030791532, -7.780936E-4, -0.03626797, -0.013972967, -0.0057348222, -0.009436115, 0.0042449096, -0.014402491, -0.034925707, 0.023583576, 0.0052415403, 0.041986015, 0.011355552, 0.040214226, 0.008617334, -0.0018456128, -0.015785024, 0.016966214, -0.006892525, -0.012697816, 0.014993087, 0.009389136, -0.039382022, -0.018174253, 0.0037885397, -0.022952711, -0.040563215, -0.024227863, 0.020617172, 0.02671105, 0.029932484, -0.012832043, -0.0091408165, -0.02416075, 0.020281607, 0.0049730875, -0.010610596, -0.0091408165, -0.014979665, -0.029341888, -1.7973752E-4, -0.0076106363, 0.009046858, 0.0077180173, -0.020523215, 0.0171944, -0.017610501, -0.0039395443, -0.020509792, -0.022603724, 0.022295002, -0.014724635, 0.024509737, 0.013758205, 0.01653669, 2.1748869E-4, -0.008429417, 0.006171058, 0.027435873, -0.005872404, 0.010315298, -0.014254842, 0.006174414, -0.015476302, 0.027409028, -0.025341941, -0.031892188, -0.028804982, -0.0034194172, 0.027596945, 0.006650917, 0.014308533, 0.0025335231, -0.020576905, -0.0048891963, 0.021140656, -0.012181045, 0.007355606, -0.031731118, 0.010442813, -0.0058925385, -0.008932766, -6.203776E-4, -0.016120588, -0.009134105, 0.01149649, 0.008832096, -0.0058455593, -0.0033002913, 0.0077717076, -0.04008, -0.03103314, -0.022925867, -0.0093086, -0.032939155, 0.0030117047, -0.019207796, 0.0021727895, -0.009020013, -1.7281648E-4, -0.011926014, -0.009899196, -0.026133878, -0.011771654, 0.03377136, 0.0020435967, -0.0046979235, -0.004812016, 0.027838552, 0.0011417632, -0.012684394, 0.0131676085, 0.005234829, 0.021798365, -0.002246614, 0.02324801, 0.016066898, -0.023516463, -0.026013074, -0.0018758137, 0.010040133, 0.008456263, 0.0014832015, -0.03234856, 0.01826821, 0.0046576555, 0.022550033, -0.0120333955, 0.010422679, 0.014107193, 0.012127354, 0.035892136, 0.039382022, -0.012476343, -0.014174307, -0.0065536033, -0.016563537, -0.035999518, -7.6676824E-4, 0.0015385699, 0.009442827, 0.0061979033, -0.00232715, -0.026751319, 0.0020385631, -0.026214413, -0.01617428, 9.1525615E-4, 0.026227836, 0.045771196, 0.012436075, 0.010422679, 0.0031895544, -0.0027281514, 0.0067314534, -0.041180655, -0.005194561, 0.014590408, 0.021503067, 0.017113864, 0.011201192, -0.030147247, -0.0050066444, 6.11569E-4, 0.018657468, 0.023999678, 0.024778191, -0.022174198, -0.0010889116, 0.0040804823, 0.007778419, -0.007060308, -0.0080133155, 0.016187701, -0.040616903, -0.0060905223, -0.006597227, 0.0140803475, 0.008939478, -0.0014152494, 0.015691064, -0.034415644, 0.0051006027, 0.0029731144, -1.7113864E-4, -0.003362371, -0.009389136, 0.024751345, 0.0042281314, 0.019342022, 0.019167528, 0.0033556595, -0.009717991, 0.0022264803, 0.0034965973, 0.0037314936, -0.005207984, 0.012228024, 0.0022264803, 0.021328572, -0.038630355, 0.014335378, -0.014617253, 0.0046811453, -0.0033674045, 0.013644112, -0.022241313, 0.034549873, 0.01022134, -0.02324801, -0.004261688, -0.004439538, -0.0047214134, -0.009838794, -0.011087099, -0.027194265, -0.0016434343, -0.014697789, 0.0103421435, -0.016254816, -0.011160924, -0.0148588605, -0.010409256, -0.0028875452, 0.014093771, 0.17997074, -0.0071945344, 0.014590408, 0.041529644, -0.0016283338, 0.018469552, 0.03194588, 0.01383874, -0.015811868, 0.015449457, -0.016509846, 0.009879062, 0.006399243, 0.0036744473, 0.01017436, -0.016791722, -0.018563509, -0.018496396, -0.01495282, -0.022388961, -0.003459685, -0.016107166, -0.0017172588, -0.009610609, 0.015154159, -0.004600609, 0.0010914283, 0.011348841, 0.027449297, 0.010140804, -0.009033436, -0.0068187006, -0.005026778, 0.014939397, -0.0151407365, -0.009543496, 0.016738031, 0.0025117113, 0.01526154, 0.008469685, 0.026952658, -1.583452E-4, -0.014845438, -0.011919303, 0.019100415, 0.04024107, -0.01989235, -0.0012592113, -0.020563483, 0.0030989517, -0.024509737, -0.019355444, 0.012080375, 0.026375486, -7.634125E-5, -0.004231487, 0.02264399, -0.0063086404, -1.0276708E-5, -0.009530073, 0.013120629, 0.030764688, -0.009322022, -0.0047650365, 0.0017315204, 0.018026603, -0.03908672, -0.0053086537, -0.0016820244, -0.026013074, -0.009684434, -0.021825211, -0.010469658, -0.012019973, -9.5132954E-4, -0.011597159, -0.003952967, 0.019422557, 1.1251946E-4, 0.021811787, -0.030657306, -0.025972806, 0.005540194, -0.002998282, -0.026107032, -0.016858835, 0.008228078, 0.003795251, -0.0058522704, -0.012858888, -0.020268185, -0.014281687, -0.003067073, -0.0023741291, 1.1084163E-4, -0.009113972, 0.021852056, 0.022778219, -0.0030217716, 0.0026190924, -0.026375486, 0.018778272, 0.010261607, -0.017677614, -0.024509737, -0.026321795, 0.006862324, 0.019623898, 0.028804982, -0.0085972, 0.007523389, -0.03052308, -0.013536731, -0.009496517, 0.008395861, 0.020254761, -0.0061375014, -0.022724528, 0.038012914, -0.021529913, -0.0010511604, -0.010637441, 0.022496343, -0.01149649, 0.006567026, -0.020147381, -0.016738031, 0.0137313595, -2.8816727E-4, -0.01546288, 0.020107113, -0.017073596, 0.006419377, 0.0073220492, -0.010080402, 0.013268278, 0.01475148, 0.009315311, 0.018107139, -0.014630676, 0.004614032, -0.021167502, 0.009879062, 0.003067073, -0.0044328263, -0.030254627, 0.005463014, -0.009301889, -0.0038288077, -0.039194103, -0.007879089, -0.035704218, 0.0077448627, 0.017315203, 0.044885304, -0.0025184227, -0.02492584, -0.04155649, 0.0069663497, 0.0315432, -0.020670863, 0.02767748, 0.027449297, -0.013254856, -0.015113891, -0.005738178, -0.17116548, 0.010046845, 0.008275056, -0.033637132, 0.03108683, -0.006805278, 0.03132844, 0.0059831413, 0.005244896, -0.012966269, 0.019194374, 0.012335405, -0.037529696, 8.439484E-4, -0.002978148, 0.012536745, -0.025865424, 0.034872014, 0.026523134, 3.861106E-4, 0.029986175, 0.0042415536, -0.0011971316, 0.015234695, 0.022805063, 0.018147407, 0.014362223, 0.010489792, 0.0076643266, -0.016831988, -0.032053262, 0.005093891, -0.0034345177, -0.0096643, -0.023825184, -0.012201179, -0.020308452, -0.016160857, 0.0042348425, -0.00534221, 0.041986015, 0.01617428, 0.017986335, 0.0058925385, 0.013999812, 0.041126966, 0.026469443, 0.0018758137, -2.2797512E-4, -0.012603858, -0.0066173607, -0.029395578, 0.029637186, -0.0069931946, -0.022415806, 0.028939208, -0.0025217782, -0.0050804685, -0.0026006363, -0.03261701, -0.019301753, -0.028670756, 0.0056609977, -0.015100469, -0.0077717076, -0.0040200804, -0.0036811586, 0.014201151, -0.032160643, 0.0035569991, -0.014912551, 0.022858754, 0.020617172, 0.027999625, 0.018040026, -0.021328572, -0.034549873, 0.0017600434, 0.017798418, 0.014268265, -0.027221112, 0.0426303, -0.01739574, 0.005137515, 0.0153554985, -0.010523349, 0.0013514919, -0.0015142414, -7.348895E-4, -2.248292E-4, 0.016738031, 0.0015771601, -0.03433511, 0.0031710984, 0.017127287, 0.009234776, 0.0018657468, -0.0039496114, 0.013563576, -0.018348748, 0.0028304989, -0.025261406, -0.0047516143, 0.016362196, 0.028992899, 0.010026711, 9.697856E-4, 0.0275701, 0.029878793, 0.005556972, -0.0050435564, 1.8781208E-4, 0.033556595, -0.0068254117, -0.04273768, 0.008610623, -0.011986416, -0.015087046, 0.011865612, 0.010026711, 0.03645589, 0.010872337, -0.009946175, -0.01205353, -0.018040026, -0.017382316, -0.09186454, -0.009409269, -0.010456235, 0.014456182, -0.03449618, 0.021194346, -0.0074696983, 0.009677722, -0.016429309, 0.036751185, 0.010120669, -0.014201151, 0.003411028, 6.3757534E-4, 0.026523134, -0.002701306, -0.0225903, -0.013362236, 0.0014706178, 0.03103314, -0.015503148, -0.005372411, -0.0033741158, -0.008637468, -0.020630596, 0.01139582, -0.029851949, 0.027382182, -3.1039852E-4, -0.006342197, 0.023113783, -0.010415968, 0.011624005, -0.040267915, -0.030791532, -0.002909357, -0.017838687, -0.019046724, 0.021597026, -0.056536153, 0.0030989517, 0.0120333955, 0.002719762, -0.030737843, 0.0031543202, 0.004587187, -0.019503094, 0.025167447, -0.023489617, -0.039596785, -0.01327499, 0.0033472704, -0.027180843, 3.861106E-4, 0.017583657, 0.011778366, 0.019006457, -0.0064697117, -0.0077448627, -0.018335324, 0.007899223, -0.01591925, -0.01332868, 6.0989114E-4, 0.0061945478, 0.01994604, 0.014160884, -0.020053422, 8.154253E-4, -0.026872123, -0.0059529403, 0.013932699, -0.03677803, -0.006892525, -0.02706004, -0.0031979436, -0.023986256, -0.0071945344, 0.012442786, -0.037610233, 0.010422679, -0.040455833, 0.009912618, -0.020509792, 0.010791802, 0.012731372, 0.01653669, -9.806915E-4, -0.00834217, -0.054442223, -0.0029211016, 0.02441578, -6.489007E-4, -0.014523295, -0.0047583254, 0.022201044, 0.029690877, 5.973074E-4, 0.0046878564, 0.020375565, -0.014254842, -0.008174387, -0.067596406, 0.021905746, -0.014375646, -0.009322022, -0.010704555, 0.002050308, 0.020724554, -0.006134146, 0.003093918, 0.009858928, -0.012100508, 0.018831963, -0.022751372, 0.0023724514, -0.010503215, -0.015905827, -0.0050234227, -0.006043543, -0.0125300335, 0.0045133624, -0.008530087, 0.0049764435, 0.0123152705, 0.0025771465, 0.003560355, 0.019677589, 0.004362358, 0.012852176, -0.017865531, -0.0087180035, 0.02268426, -0.020482946, 0.016308505, 0.0150602, -4.1442396E-4, -0.029610341, -0.01404008, -0.0064160214, 0.016147435, 0.019610476, -0.010570328, -0.008160965, -0.008268345, -0.0013640757, -0.004318734, 0.023422504, -0.0068019223, 0.018550087, 0.02162387, 0.019623898, 0.020509792, 0.019221218, 0.0025989583, -0.02268426, 0.03683172, -0.017301781, 0.054898594, -0.0014446115, -0.009926042, -0.01281862, 0.02481846, -2.0668766E-4, 0.018241366, -0.035059933, -0.0077113057, 0.0034731077, 0.02171783, -0.012140777, -0.001420283, -0.018227944, -0.011858901, -0.006999906, 0.009570342, 0.045422208, 0.035274696, 0.008382438, -0.009295178, 0.0073421835, -0.001999973, 0.028026469, 0.014496449, -0.009268332, -0.02751641, 0.025207715, -0.0025754687, 0.0013556865, -0.016724607, 0.009798526, -0.0053489213, 0.012630703, -0.025274828, 0.0015645763, 0.005916028, -1.2164266E-4, -3.1878768E-5, -0.004617388, -0.01765077, -0.0072549363, -0.0069059473, 0.022925867, -3.080915E-4, 3.2088495E-4, -0.016107166, -0.01342935, -0.020509792, -0.009489805, -0.01739574, -0.019100415, 0.01622797, 0.027596945, 0.021838633, 0.0022902377, -0.018603778, -0.004171085, -0.040267915, 0.0046777898, -0.0025805023, -0.022201044, -0.016925948, 0.04456316, -0.004872418, 0.012858888, 0.025113758, -0.016389042, 0.026576824, -0.006258305, 0.02589227, -0.023556732, 0.010811935, -0.003932833, 0.011993128, -0.0012038429, -0.02706004, -0.0015125636, 0.0065234024, -0.0033187475, 0.007852243, 0.016013209, -0.0023925854, 0.061368305, 0.02528825, 0.0011316962, 0.031113677, -0.012496477, 0.015100469, 0.005026778, 0.011516624, -0.011872324, -0.008462974, 0.010187782, -0.013140763, 0.00763077, 0.0016291727, -0.005657642, -0.0048522837, 0.0074898326, 0.011489779, -0.004533496, -0.018093716, 0.008771694, -0.0031912324, 0.027261378, -0.0010897504, -0.024751345, -0.035865292, 0.030496234, -0.009684434, -0.0055603283, -0.040160533, 3.3493678E-4, -0.021422531, 0.01078509, 0.0033925718, 0.025583548, -0.013368948, -0.010066979, -0.012066952, 0.010738111, 0.005932806, -0.024992954, 0.011644139, -0.024617119, -0.0021459444, 0.016523268, -0.023878874, 0.020993007, -0.02589227, -0.029986175 ], + "id" : "873259ac-8ec8-42d9-bfc3-b0119e2c14a3", + "metadata" : { + "source" : "movies.csv" + } + }, + "08c6a0f8-017d-4354-9f60-8da7181df558" : { + "text" : "4922,The Curious Case of Benjamin Button,Drama-Fantasy-Romance,en,I was born under unusual circumstances. And so begins The Curious Case of Benjamin Button adapted from the 1920s story by F. Scott Fitzgerald about a man who is born in his eighties and ages backwards: a man like any of us who is unable to stop time. We follow his story set in New Orleans from the end of World War I in 1918 into the 21st century following his journey that is as unusual as any man's life can be. Benjamin Button is a grand tale of a not-so-ordinary man and the people and places he discovers along the way the loves he finds the joys of life and the sadness of death and what lasts beyond time.,44.56,Paramount-Warner Bros. Pictures-The Kennedy/Marshall Company,12/25/08,150000000,335802786,166,Released,\"Life isn't measured in minutes, but in moments.\",7.574,11406,Brad Pitt-Cate Blanchett-Taraji P. Henson-Julia Ormond-Jason Flemyng-Mahershala Ali-Jared Harris-Elias Koteas-Phyllis Somerville-Tilda Swinton-Faune Chambers-Donna DuPlantier-Jacob Tolano-Earl Maddox-Ed Metzger-Danny Vinson-David Jensen-Joeanna Sayler-Fiona Hale-Patrick Thomas O'Brien-Marion Zinser-Peter Donald Badalamenti II-Danny Nelson-Paula Gray-Lance E. Nichols-Rampai Mohadi-Troi Bechet-Elle Fanning-Ted Manson-Clay Cullen-Edith Ivey-Robert Towers-Sonya Leslie-Yasmine Abriel-Madisen Beaty-Tom Everett-Don Creech-Christopher DesRoches-Joshua Desroches-Richmond Arquette-Josh Stewart-Ilia Volok-David Ross Paterson-Taren Cunningham-Myrton Running Wolf-Stephen Monroe Taylor-Devyn A. Tyler-Adrian Armas-Wilbur Fitzgerald-Ashley Nolan-Louis Herthum-Katta Hules-Rus Blackwell-Joel Bissonnette-Deneen Tyler-Spencer Daniels-Chandler Canterbury-Charles Henry Wyson-Jessica Cropper-Katherine Crockett-Bianca Chiminello-Emma Degerstedt-Megan Brown-Clay Chamberlin-Leslie Augustine-Blake Balu-Aliane Baquerot-Brett Beoubay-Allen Boudreaux-Eve Brent-David E. Brown-Jake Carpenter-Walter Delmar-Louis Dupuy-Marian Filali-Ron Flagge-Joe Fontana-Garrett Forbes-Tiffany Forest-Debby Gaudet-Simone-Elise Girard-Geraldine Glenn-Zuri Goldman-Malerie Grady-Bob Harter-Rhonda Huete-Grant James-Christopher Karl Johnson-Shiloh Jolie-Pitt-Spencer Kayden-Jonathan Lane-Shane LeCocq-Kevin Lorio-Audrey Lynn-Angelina McCoy-Harlon Miller-Valeska Miller-Jay Oliver-Antonia Putiloff-Sean Ross-Ross Rouillier-Robert W. Savina-Andy Sims-Chaz Smith-Logan Douglas Smith-Terry Lee Smith-Lauren Swinney-Dennis Thomas IV-Michel Th��riault-Yvette Tucker-Gelsey Weiss-Autumn Withers-Brianna Womick-Michael Wozniak,diary-navy-funeral-tea-travel-hospital-based on short story-reverse aging,/9H2awZmNisMVJGp362Stv0bfUTs.jpg,/2fswjyrY3GEzeoVn6mF8pNeNcgf.", + "embedding" : [ -0.011379454, -0.03529029, -0.010200892, -0.030309698, -0.010500526, 0.01665968, -0.0023371493, -0.007763864, -0.03904571, -0.0117789665, 0.017884852, 0.050152164, -0.0024287044, -0.0147819705, 0.008489645, 0.0020291917, 0.019016806, 0.004937311, 0.009668208, -0.020028904, -0.010081038, -0.001007105, -0.004587738, -0.007950303, -0.011366137, 0.021440515, 0.012837675, -0.015794069, 0.003455785, -0.01867056, 0.01176565, -0.0097614275, -0.02261242, -0.037980344, -0.010294111, -0.008116767, -0.0020425087, -0.016193582, 0.016726267, -0.02471652, 0.0117922835, 0.003991798, -0.02522257, -0.002626796, -0.01436914, 0.0021723504, 0.017698413, -0.0282855, -0.009215427, 0.015421191, 0.02321169, -5.5057846E-4, -0.026061546, -0.017511975, 0.016553143, -0.001519813, -0.010214209, 0.0048607383, -0.022732275, -0.006069264, 0.031881116, -0.0108001605, -0.029590575, -0.018244414, -0.034677703, -0.008369791, -0.01130621, -2.838205E-4, 0.0016488223, 0.030735845, 0.025528863, 0.015541045, 0.013942994, 0.003442468, 0.024117252, -0.025728619, -0.043653425, -2.9380832E-4, 0.0052902144, 0.03121526, 0.023131786, -0.01167243, 0.008949085, 0.003539017, 0.0011136417, 0.004980592, -0.008849206, 0.033212826, -0.022945346, -0.014861873, 0.005579861, 0.030309698, 0.0034457971, 0.029404135, 0.011319527, 0.0075507904, 0.0012002029, 0.031774577, -0.008236621, -0.034091752, -0.019882416, 0.0017095815, 7.8071444E-4, -0.011179698, 5.2352814E-4, -0.02009549, 0.009821354, -0.017085828, 0.020668125, -0.007897034, 0.007117985, 0.017498657, 0.02490296, -0.03758083, -0.010367355, -0.011359478, 0.0051703607, -0.015088264, -0.0088025965, -0.033665605, 0.009488427, 0.02503613, 0.01299748, -0.045384645, 0.010041086, 0.01162582, -0.019988952, 0.00933528, 0.007570766, -0.0022322773, 0.033159554, 0.008476328, -0.001423264, 0.013903042, -0.019522855, 0.031561505, -0.029324234, 0.006312301, -0.027566377, -0.023864226, 0.023424763, 0.04530474, -0.00842306, -0.021959882, -0.018923586, -0.0022389358, 0.008522938, 0.010593746, 0.0147952875, -0.003539017, 0.020534953, 0.013237188, 0.01639334, -0.010400648, 0.010047745, 0.02265237, -0.0050604944, -0.0016213558, 0.0070647164, -0.0054999585, 0.0015264715, 0.013490213, 0.003675517, -0.011026551, 0.00837645, 0.010720258, -0.007018107, -0.04325391, 8.481322E-4, -0.017152412, -0.01185221, 0.03963166, -0.009255378, 0.025648717, 0.011252942, 0.013357042, 0.008309864, -0.022079736, -0.030389601, -0.03598278, -0.0056298003, 0.0018976855, 0.044851962, 0.047621917, -0.015660899, 0.0152880205, 0.011845552, -0.024436861, 0.0078104734, 0.008123425, -0.021826712, 0.003908566, -1.2484773E-5, -5.3559674E-4, -0.64987403, -0.012704505, -0.028951354, 9.530043E-4, 0.01323053, 0.0292976, -0.013689969, 0.009881281, -0.010427282, 0.0056464463, -0.027433207, 0.024703203, 0.037980344, 0.017032558, -0.024769789, -0.01272448, 0.013403651, -0.012298333, 0.0075641074, 0.008942426, -0.031881116, 0.022465931, -0.001009602, 0.020388465, 0.01583402, 0.010074379, -0.017392121, -8.0776477E-4, -0.009068939, 0.014422409, 0.008602841, -8.098456E-4, 0.02366447, 0.0019975635, 0.044558987, -0.009681525, -0.0072578145, 0.030842382, 0.02503613, 0.027885988, -0.010340721, 6.2631944E-4, 0.013337066, 0.0014723708, -0.033026386, 0.016579777, 0.007018107, 0.014102799, -0.009235403, -0.001990905, 0.012058626, 0.021014368, 0.0014457366, 0.009901257, 0.004737555, 0.008689402, 0.01652651, -0.015261386, 0.016819486, -0.03225399, -0.01570085, 0.021813395, 2.257663E-4, 0.005716361, 0.0029014612, 0.036701903, -0.011432722, 0.0050837994, 0.0070980093, -0.012571334, -0.0031395042, 0.028525209, -0.01936305, 0.0087759625, 0.007357693, -0.009195451, 0.036835074, 0.025821839, -0.0027932597, 0.025475595, 0.017698413, -0.01977588, 0.0018460817, 0.014515629, 0.04051059, 0.010154282, -0.03281331, 0.0058894833, 0.0061358493, -0.0055698734, 0.00896906, -0.015327971, -0.024583349, 0.004261469, -0.009308646, -3.3417574E-4, -0.006398862, 0.012105236, 0.007890376, -0.04911343, -9.764132E-5, -0.008642792, 0.009628257, 0.017245632, 0.013889725, -0.018430853, -0.011679089, -0.027992524, 0.05153714, -0.026620865, -2.539871E-5, -0.007883717, -0.010513843, 0.0033675593, -0.0011893826, -0.015674215, 0.018057974, -0.012265041, 0.029697113, -0.010900038, -0.010733575, -0.008849206, 0.00329598, -0.01789817, 0.0036222488, 0.032839946, -0.007044741, -0.0029497356, -0.010820136, -0.014182702, 0.013849774, 0.004407957, 0.003991798, -0.01066699, 0.012398211, -0.010993258, 0.037474293, 0.005516605, 0.0063056424, -1.2890527E-4, -0.0356099, -0.00585952, -0.0063056424, 0.0040350785, -0.006458789, -0.018857, -0.012444821, -8.493807E-4, -0.015674215, 0.010906697, -0.02815233, -0.0034258217, -0.020015588, 0.021986516, -0.008116767, 0.007044741, -0.016766217, -0.016446607, 0.00737101, -0.019669343, 0.011745674, 0.018843682, -0.02815233, -0.0044545666, 0.020814613, -0.013676652, -0.006984814, 0.019882416, -0.010720258, -0.018963536, 0.01634007, 0.0012934224, 0.0025568814, 0.013377017, -0.011825576, 0.031055456, -0.017152412, 0.010647014, 0.008762646, -0.015873972, -9.571659E-4, -2.1213709E-4, -0.002660089, -0.030496137, 0.020668125, 0.016499875, 0.005007226, 0.0014024561, -0.020308563, 0.013703287, 0.012271699, 0.0073643513, -0.016832802, 9.929555E-4, -0.0071113263, 0.023264958, -0.0034591143, -0.017658463, -0.0016962644, 0.002375436, 0.039471857, -7.270299E-4, 0.018151194, -0.006668533, -0.0030662601, -0.028045792, 0.014861873, -0.015367922, 0.009321963, -0.013357042, 0.0076107173, 0.011319527, -0.008356474, -0.012538041, 0.021959882, 0.03260024, -0.0028548513, -0.0067817285, -0.0072578145, 0.016007142, -0.0056597637, -0.01341031, -0.0062923254, 0.011086478, -0.016593095, 0.0082699135, 0.019283148, 0.013130652, 0.014995044, -0.016326753, 0.0049772626, -0.0012592974, 0.00608924, -0.0035989438, -0.008875841, 0.009395207, 0.025475595, -0.031987652, 0.030576041, -0.0030762479, -0.013343724, -0.0019559476, 0.032919846, -0.007291107, -0.011113112, -0.004704262, 0.027539743, 0.012850992, -0.019056756, 0.009828012, -0.009574988, 0.018790415, -7.4492476E-4, 0.006448801, -0.004587738, -0.004288103, 0.010533819, 0.0036721877, 0.028045792, 0.025888424, -0.001242651, -0.009295329, 0.0072245216, -0.012045309, 0.02105432, 0.005982703, -0.0117789665, -0.0016055418, -0.014156068, -0.004737555, -0.0072112046, -0.024982862, -0.0035822974, -0.0010495532, 0.0022722285, -0.013876408, 0.02475647, 0.019509537, 0.016859436, 0.021320662, 0.0059061297, -0.02169354, 0.011319527, 0.010826794, -0.007071375, -0.023837592, -0.0109866, -0.012025333, -0.016566461, -0.010347379, -0.024609983, 0.020521637, -0.012637919, 0.0052802265, -0.0032859922, -0.013024115, 0.011739016, -0.014488995, 0.012964188, 0.005713032, 0.0056497757, 0.004937311, 0.02522257, -0.006871619, -0.013523506, 6.8874325E-4, -0.012577992, -0.019123342, 0.016619729, 0.0031062113, -0.0012551358, -0.0065386915, -0.036009412, 0.004910677, -0.003469102, -5.6025416E-5, -0.018803732, 0.0021174175, 0.00654535, -0.006628582, -0.015394556, -0.0048008114, -0.04407957, 0.014382458, 0.0922608, 0.026993742, 0.0063788863, -0.002778278, -0.025701985, 0.0014873525, -0.0030596016, -0.019296464, -0.0026933816, -5.052171E-4, 0.015754119, -0.008975719, 0.022279494, 0.0060226545, -0.009967842, -0.0066452282, 0.0012484773, -0.024143886, 0.010640356, -0.021267394, -0.034677703, -0.013743238, 0.00737101, 0.04759528, -0.0034657728, -0.026287938, 0.013849774, 0.015514411, 0.0015414533, 0.03587624, -0.013663335, 0.022785543, 8.8641886E-4, 0.015128215, -0.008416401, 0.02000227, 0.033026386, 0.039977904, 0.051563773, -0.017511975, 0.010673648, -0.010327403, 0.0021706857, -0.013104017, 0.01496841, -0.0027499793, -0.008829231, 0.019576123, 0.03510385, -0.019882416, 0.03944522, -0.006435484, -0.029217698, -0.02191993, 0.022718957, 0.0146488, 0.0010795167, 0.0017695085, -0.026421107, 0.015154849, 0.01496841, -0.053774413, 0.036781803, -0.005846203, 0.026354522, -0.010380672, -0.01455558, -0.005213641, -0.007510839, -0.0018194475, -0.0040950053, 0.0045377985, -0.006052618, 0.007570766, 0.010453916, -0.009035646, 0.027126914, -0.02494291, -0.019283148, 0.009708159, 0.0071645947, -0.031508237, 0.020748027, 0.0035223705, 0.022266176, 0.024876324, 0.015847338, -0.01382314, -0.023957446, 0.014515629, -0.007930327, 0.0015988832, 0.002247259, -0.02325164, 0.026674133, -0.004271457, 0.008516279, 0.021587003, -0.0051370678, 0.005017214, 0.025195936, 0.010187575, -0.0062090936, -0.037234586, -0.03931205, -0.02815233, -0.0050471774, -0.0027316683, -0.037181318, -0.035929512, -0.0047075916, -0.011605845, 0.01913666, -0.012344943, -0.010613721, 0.012944212, 7.97777E-4, 0.03822005, 0.007337717, -0.0027982537, 0.020015588, -0.0042181886, 0.016726267, 0.009308646, -0.0030679246, 0.020148758, -0.0068982528, -0.010593746, -5.056333E-4, 0.01222509, 0.012584651, -0.0011128094, -0.027699549, -0.019336415, -0.039844736, -0.03254697, 0.010214209, -0.006884936, -0.0062323986, -0.004467884, -0.015434508, -0.0022089723, 0.021067638, 9.588305E-4, 0.013616725, -0.017764999, 0.006372228, -0.036861707, 0.022665689, 0.012245065, -0.02604823, 0.0028182294, -0.024796423, -0.015088264, 0.010407306, -0.027353304, -0.0056963856, -0.011485991, 0.029244332, 0.012864309, 0.016819486, -0.012897602, 0.025155984, 0.023944128, 0.0046410062, 0.020748027, -8.0485165E-4, -0.013916359, -0.03025643, 0.0142759215, 0.0035323582, 0.021373931, 4.94397E-4, -0.009455134, -0.0066086063, 0.025728619, 0.005450019, 0.018311, -0.013323749, -0.013343724, -0.02723345, -9.296994E-4, -0.011146405, 0.0014865203, -0.024863008, -0.009874622, 0.018590659, 0.0074043022, 0.0021024358, 0.0015689197, 0.035929512, -0.016140314, 0.024876324, -0.017365485, 0.007670644, -0.010880063, -0.009634915, -0.02599496, 0.0054633366, 0.008416401, -0.015900606, 0.0069182287, 0.0027632962, -0.020335197, 0.0060359715, 0.019416317, -0.027859354, -0.033985216, 0.028551843, 0.009315304, -0.011592528, -0.02366447, 0.00727779, -0.028711647, -0.0015389563, 0.004397969, -0.008642792, 0.01157921, -0.017112462, -0.018204464, 5.8803277E-4, -0.021187492, 0.022039784, 0.015754119, 0.077185854, 0.017059194, -0.019602757, -0.011239625, -0.0042215176, 9.421842E-4, 0.019802514, 0.02146715, 0.019922368, 0.013130652, -0.012924236, -0.0034324802, -0.0012351602, -0.036675267, -0.038193416, 0.032333896, 0.0030596016, 0.008975719, -0.0102807935, -0.0048540793, -0.009941208, 0.032893214, -0.024037348, 0.005589849, 0.018044658, -0.03433146, -0.019949002, 0.012391553, 3.0587693E-5, 0.0051170923, 0.009961184, -0.037474293, 0.030975552, -0.021187492, -0.0022589115, -0.015341288, -0.011186356, 0.0066984966, -0.024463495, 0.014915141, 0.004740884, 0.0066751917, 0.0046742987, -0.0128043825, -0.026567595, 0.030842382, -0.0052202996, 0.0050505064, -0.009075597, 0.0075374735, 0.0054766536, 0.013370359, -0.03579634, -0.026754035, -0.010081038, -0.01496841, 0.021107588, 0.046529915, 0.0010745227, 0.00810345, 4.5444572E-4, -0.011006575, -0.010127648, -0.009048963, 0.003515712, -0.050178796, -0.014342506, -0.018790415, 0.01744539, -0.003995127, -0.014036214, 0.0130907, 0.0025518874, 0.015021678, -0.009927891, -0.0044379206, -0.004381323, -0.007803815, -0.026341205, -0.019429635, -0.0040450664, -0.003199431, 0.017751683, -0.0030046685, -0.010034428, -5.41423E-4, -0.018910268, -0.009734794, 0.016380021, -0.015114898, -0.021853346, 0.0020042222, -0.021320662, -0.015727485, -0.019256514, -0.004844092, 0.013024115, -4.910677E-4, 0.004960616, -0.0066851797, 0.026887206, -0.012844334, 0.011978723, 7.449248E-5, -0.0267274, 0.0028049122, 0.016326753, 0.017458705, 0.011492649, 0.004700933, -0.028711647, -0.007850425, -0.026021596, 0.035769705, -0.005726349, 0.007850425, -0.0071779117, 0.019336415, 0.025062764, 0.029350867, 0.009222086, -0.0032760042, -0.0282855, -0.010920014, -0.025728619, -0.004467884, -0.0018610634, 0.0063755573, 0.029164428, 0.016952656, -0.04040405, -0.010853429, -0.03070921, -0.013357042, 0.007923669, 0.033425897, 0.030149894, 0.009854647, 0.014342506, 0.0035556632, -0.011379454, 0.009628257, -0.03172131, 0.0031578152, 0.015088264, 0.020614857, 0.02732667, 0.029697113, -0.011832235, 0.0071978876, 0.0029181074, -0.008436377, 0.0026800644, -0.00842306, 6.0467917E-4, -0.0063955327, 0.008869182, -0.008396425, -0.0036555415, -0.024596667, 0.017924804, -0.034997314, -0.008935768, 0.0022189603, 0.013630042, -0.012737798, -0.015447825, 0.003762078, -0.020521637, -0.018044658, -0.0054533486, -0.025395691, -0.0037088098, -0.0127777485, 0.019123342, -0.017378803, 0.02133398, 0.031561505, 0.019749245, -0.007311083, 0.0023737715, 0.0017020906, -1.4773647E-4, -0.025435643, 0.0032876567, 0.012211772, 0.04248152, -0.029803649, 0.0061225323, -0.010593746, 0.011878845, -0.009681525, -0.008895816, 0.0015647581, 0.01693934, 0.021294028, -0.04434591, 0.010340721, -5.959398E-4, -0.021280712, -0.0046310183, -0.005157043, -6.437981E-4, 0.0036555415, -0.020441733, -0.0036588707, -0.0017145755, -0.009741452, 0.022319444, -0.0037587488, 0.012324967, 0.01693934, 0.19102035, -0.008562889, 9.721476E-4, 0.030362967, 0.0064021912, 0.024956228, -8.3564746E-4, 0.02892472, -0.007351034, 0.020854564, -0.019376367, 0.0059893616, 0.004654323, 0.0023771008, -0.006202435, -0.032573603, -0.011419405, -0.01684612, -0.0037321146, -0.031801213, -0.0062923254, -0.00952172, -0.008569548, -0.021760127, 0.004601055, -0.003034632, -0.0055232635, -0.0021340637, 0.033532433, 0.011059844, -0.023877544, -0.0449585, -0.007903693, -0.008216645, -0.0387261, -0.0021773444, 0.015114898, 3.9098147E-4, 0.015274703, -0.0017395449, -0.014928458, 0.01697929, -0.009515061, -0.0024320337, 0.006858302, 0.045251474, -0.0048274454, -1.2838507E-4, -0.017312218, -0.0015464472, -0.040910102, -0.0013874744, 0.004368006, 0.010114331, 0.008389767, 0.004055054, 0.012551358, -0.0058761663, 0.012344943, -0.024117252, 0.009215427, 0.013516847, -0.032094188, 0.010520502, 0.0010820136, 0.028019158, -0.021613639, -0.0064521306, 0.01107982, -0.019762563, -0.025209252, -0.027300036, -0.02210637, 0.015354605, 0.002247259, -0.023944128, 0.007510839, 0.018643927, 0.020042222, 0.0146488, -0.008995695, -0.017298901, -0.005200324, -0.027073646, -0.0041582617, -0.04261469, 0.01245148, -0.015194801, -0.021214126, -0.02554218, -0.0055598854, -0.025715303, -0.01639334, -0.014955093, 4.7941526E-4, -0.019789197, 0.022306127, 0.019549489, -4.9814244E-4, 0.0029896868, -0.018723829, 0.015967192, 0.014089482, -0.009734794, -0.004914006, -0.012158504, -0.018550707, 0.017405437, 0.029457405, -0.005496629, -0.01867056, -0.008682743, 0.0011036539, -0.0037987002, 0.0011286234, 0.013496871, 0.00837645, -0.037607465, 0.03006999, -0.024090618, 0.00910889, -0.004517823, -0.009548354, 0.026580913, 0.013942994, -0.024823057, 0.018284366, 0.0013957976, -0.0039152247, -0.017019242, 6.325618E-4, -0.023424763, -0.009022329, -0.013889725, 0.014422409, 0.0041349567, -4.7983142E-4, -0.014941775, -0.0029480709, 0.018564025, -0.0013641695, -9.3386095E-4, -0.009455134, 0.010054403, -0.009914574, -0.034944046, 0.0335058, -0.002362119, 0.0030562724, -0.03108209, -0.028605111, -0.019576123, 0.0037987002, -0.006182459, 0.012864309, 0.0010612056, -0.040217612, -0.029350867, -0.0060492884, 0.02764628, -0.011865527, 0.016326753, 0.02445018, -0.004344701, -0.0027915952, -0.0029480709, -0.16960646, 0.018071292, 0.01771173, -0.023717739, 0.037048146, -0.008869182, 0.0044279327, 0.0037887122, 0.0071512777, -0.00553991, 0.0050604944, 0.014382458, -0.027486475, -0.0011810595, -0.0060759224, 0.00636224, -0.02700706, 0.045411278, 0.04056386, -0.0058062514, 0.041362885, -0.009854647, 0.0127777485, -0.0055632144, 0.0062923254, -2.1848352E-4, 0.026674133, 0.001425761, 0.0022306128, -0.023584567, -0.0292976, -0.01446236, 0.01176565, 0.0019426306, -0.015487776, 0.012205114, -0.004298091, -0.0032244006, 0.003762078, -0.009934549, 0.027672915, 0.017285584, 0.009561671, 0.018870318, -0.009455134, 0.024863008, 0.04802143, -0.014022896, -0.0142892385, -0.013563457, -0.0024586678, -0.046849526, 0.011685747, -0.0056630927, 0.021840028, 8.5812004E-4, 0.013084042, 0.0011086478, -0.011066502, -0.025369057, -0.0235313, 0.0028348756, 0.019509537, -0.0023904177, -0.007437595, -0.004844092, -0.001368331, -0.001721234, -0.02389086, 0.011019892, -0.02000227, 0.007717254, 0.0073044244, -2.3325716E-4, 0.013996262, -0.015181484, -0.0324937, 0.0039152247, -0.0035456754, 0.016166948, -0.03446463, 0.048074696, -0.0034075105, 0.001025416, -0.0027499793, 0.01564758, 0.011892162, 0.01162582, 0.0112596005, -0.0069448627, -0.0065287035, -0.037261218, -0.009634915, -0.0033209494, 0.007204546, 0.011039868, -0.0267274, -0.016832802, -0.0011577546, -0.002723345, 1.4586376E-4, -0.015794069, -0.008696061, 0.013510188, 0.031188626, 0.01611368, -0.0054300437, 8.5479073E-4, 0.025289156, 0.010114331, 0.007078034, 0.0013808159, 0.015234752, 0.00920211, -0.024210472, 0.018990172, -0.008110108, -0.0065020695, -0.0050138845, 0.022572469, 0.04650328, 0.0014632153, -0.0031461627, -0.012331626, 0.0015947216, -0.022319444, -0.09593632, 0.0032094189, 0.007790498, 0.028951354, 0.0067817285, 0.020841246, -0.03523702, 0.021453833, 0.002338814, 0.022918712, -0.033026386, -0.034304824, 0.0026451072, 0.0024420214, 0.014435726, -0.0030429552, 0.0022489238, -0.0066319113, -0.016926022, 0.028418671, -0.026700767, -0.02169354, -0.010693624, -0.019789197, -3.6684424E-4, -0.024969544, -0.021360613, -0.0011710717, 0.015394556, -0.01189882, -0.016087046, -0.02595501, 0.001940966, -0.01748534, -0.010693624, -0.012604626, -0.0054933, -0.0055698734, 0.014395775, -0.05460007, 0.008616158, 0.017085828, 0.019389683, -0.0324138, 0.01341031, -0.006425496, -0.03369224, 0.03584961, -0.01487519, -0.013889725, 0.001206029, 0.03337263, -0.040856835, -0.008249938, 0.016779535, 0.001295087, 0.008303206, -0.003241047, 0.0025701984, -0.023597885, -0.009914574, -0.008016889, -0.024889642, 0.012977505, 0.012071943, 1.6948079E-4, 0.00672846, 0.0037554195, 0.017152412, -0.009934549, -0.014915141, 0.0162069, -0.004368006, 0.007657327, -0.010507184, 0.0038419806, -0.0030079978, -0.0071978876, -0.006568655, -0.02796589, 9.788062E-4, -0.01876378, 0.0017994719, -0.015714167, -0.028019158, 0.018044658, 0.005969386, 0.003995127, 0.0052236286, -0.038832635, 0.008336498, 0.025688669, 0.003895249, 0.008762646, -0.009002353, 0.020708077, 0.02247925, 0.0103007695, 0.020361831, 0.00480747, -0.021200808, -0.013004139, -0.056411196, 0.021200808, -0.001574746, -0.0044279327, -0.005716361, -0.0012909254, 0.016366705, -0.005167031, -0.0053501413, 0.025022814, -0.029430771, 0.020628173, -0.008356474, -0.018191146, -0.012484772, 0.0016654687, -0.0065353625, -0.0036189193, -0.0147952875, 0.0021690212, -0.017858218, 5.41423E-4, 0.01771173, 0.009861305, -0.01808461, 0.011485991, 0.018510755, 0.013436944, -0.011565893, -0.004308079, 0.014582214, -0.01185221, 0.014768654, -0.009341939, 7.0414116E-4, 0.0046609817, -7.973608E-4, 0.028631745, 0.019096708, 0.008023547, -9.430165E-4, -0.019243196, 0.0040250905, -0.008116767, 0.0011968735, 0.043520253, -0.036089316, 0.015434508, 0.022505883, 0.0032477055, 0.010393989, 0.023557933, -0.0025818509, -0.02847194, 0.02210637, -0.0057429955, 0.037793905, 0.016579777, -0.0021490455, -0.0067118136, 0.033106286, 2.451177E-4, 8.131749E-4, -0.007743888, 0.0047308966, -0.0076773027, 0.0011577546, 0.01295087, 1.2536792E-4, -0.029324234, 0.014528946, -0.009348597, 0.02274559, 0.021547053, 0.019243196, 0.014888507, -0.043973032, -0.009974501, -0.0025968326, 0.0024969545, 0.032067556, -7.7946595E-4, -0.038619563, 0.013197237, 0.010766868, 0.027806085, -0.0038619563, -0.0053568, 0.013510188, 0.00677507, -0.0031711322, -0.0030246442, 0.019576123, 0.002055826, 0.003282663, 0.022439297, -0.0064421427, -0.01052716, -0.0052436045, 0.018737147, -0.01025416, 0.0067717405, -0.005593178, 8.165041E-4, -0.020894514, 0.003021315, -0.014835239, -0.03835322, 0.017605193, 0.019616075, -0.0027932597, 0.007790498, -0.03331936, 0.014475677, -0.020534953, 0.0062457155, -0.013903042, -0.003034632, -3.0046687E-4, 0.023238324, 0.012065284, -0.009961184, 0.03619585, -0.012051967, 0.04101664, -0.0014523952, 0.03070921, -0.0058029224, -0.006159154, 0.015208118, -6.14875E-5, 4.1428636E-4, 0.0048540793, 0.0012285016, 0.013836457, -0.034810875, 0.0076773027, 0.018603975, -0.02646106, 0.062323984, 0.038326588, 0.0018960207, 0.013516847, -0.024570033, 0.0026717414, 0.007670644, 0.008429718, -0.028631745, 0.0048407624, 0.0013533493, 0.0020891186, 0.009341939, -0.023278274, -0.007743888, 0.015887288, 0.014502312, 0.016366705, -0.0070047895, -0.0027349975, 0.0048174574, -0.015754119, 0.021706859, 0.011705723, -7.128805E-4, -0.0053934217, 0.029270966, -0.013956311, -0.02490296, -0.017032558, -3.0525267E-4, -0.014196019, -0.020854564, -0.0025585461, 0.030416235, -0.0017745023, -0.021120906, -0.02531579, 0.011912137, 0.013623384, -0.013996262, 0.010067721, -0.033665605, 0.0072711315, -0.003948517, -0.016047094, 0.0048773843, -0.03510385, -0.016646363 ], + "id" : "08c6a0f8-017d-4354-9f60-8da7181df558", + "metadata" : { + "source" : "movies.csv" + } + }, + "81284843-f65f-441b-9ebc-febcd399783d" : { + "text" : "A certain anger begins to brew in his best friend Harry Osborn as well...,27.938,Marvel Enterprises-Laura Ziskin Productions,6/25/04,200000000,783766341,127,Released,There's a hero in all of us.,7.238,13544,Tobey Maguire-Kirsten Dunst-James Franco-Alfred Molina-Rosemary Harris-J.K. Simmons-Donna Murphy-Daniel Gillies-Dylan Baker-Bill Nunn-Vanessa Ferlito-Aasif Mandvi-Willem Dafoe-Cliff Robertson-Ted Raimi-Elizabeth Banks-Bruce Campbell-Gregg Edelman-Elya Baskin-Mageina Tovah-Daniel Dae Kim-Hal Sparks-Joel McHale-Stan Lee-Kelly Connell-Brent Briscoe-Emily Deschanel-Jason Fiore-Ortiz-Scott Spiegel-Andy Bale-Christine Estabrook-Molly Cheek-John Paxton-Joy Bryant-Joanne Baron-Peter McRobbie-Timothy Jerome-Taylor Gilbert-Peter Vouras-Donnell Rawlings-Zachry Rogers-Ella Rogers-Louis Lombardi-Marc John Jefferies-Roshon Fegan-Brendan Patrick Connor-Reed Diamond-Dan Callahan-Elyse Dinh-John Landis-Tim Storms-Susie Park-Michael Edward Thomas-Anne Betancourt-Venus Lam-Bill E. Rogers-Joe Virzi-Jopaul Van Epp-Weston Epp-Peter Allas-Brianna Brown-Bill Calvert-Tony Campisi-Joey Diaz-Chloe Dykstra-Simone Gordon-Dan Hicks-Julia Max-Savannah Pope-Timothy Patrick Quill-Jill Sayre-Rickey G. Williams-Michael Arthur-Frank Bonsangue-Cindy Cheung-Phil LaMarr-Calvin Dean-Andre M. Johnson-Peter Cincotti-Peyton List-Spencer List-Troy Metcalf-Scott Ross-Bonnie Somerville-Wesley Volcy-Lou Volpe-Garrett Warren-Joseph M. Caracciolo-Tom Carey-Patricia M. Peters,new york city-dual identity-secret identity-love of one's life-pizza boy-sequel-superhero-based on comic-doctor-scientist-tentacle-death-super villain-teenage hero-teenage life,/olxpyq9kJAZ2NU1siLshhhXEPR7.jpg,/6al048Lat3eLVQOuKtc9h6Tu94d.jpg,559-557-1930-102382-36658-36657-36668-1858-9738-10138-2080-607-1979-49538-1724-8373-1726-10195-58-285-1771\r\n293660,Deadpool,Action-Adventure-Comedy,en,The origin story of former Special Forces operative turned mercenary Wade Wilson who after being subjected to a rogue experiment that leaves him with accelerated healing powers adopts the alter ego Deadpool. Armed with his new abilities and a dark twisted sense of humor Deadpool hunts down the man who nearly destroyed his life.,125.388,20th Century Fox-The Donners' Company-Genre Films-Marvel Entertainment,2/9/16,58000000,782837347,108,Released,Witness the beginning of a happy ending.,7.61,29643,Ryan Reynolds-Morena Baccarin-Ed Skrein-T.J. Miller-Gina Carano-Leslie Uggams-Brianna Hildebrand-Karan Soni-Jed Rees-Stefan Kapiۍiۈ-Randal Reeder-Isaac C. Singleton Jr.", + "embedding" : [ -0.0038318965, -0.051074088, -0.012540752, -0.057880394, -3.2197643E-4, 0.028645435, -0.012185698, -0.029583313, -0.027787948, -0.04252601, 0.042258047, 0.016386047, 0.02952972, 0.012346477, 0.0020549549, 0.015622348, 0.013719797, -0.02427761, 0.009928095, -0.03553213, -0.011596176, -0.0076302974, -0.024987716, 0.017390914, -0.012534053, -0.0048903576, 0.02611317, -0.002580836, -0.0039926753, -0.006193336, 0.011730159, -0.0015449845, -0.018020632, -0.008092537, -0.019333659, 0.008052342, -0.0047362777, -0.022187484, 0.03167344, -0.015287391, 0.01530079, 0.0069201905, -0.012601044, -0.0064813984, -0.045339644, -0.0037548565, 0.0038854894, -0.024692954, -0.015541958, 0.023540707, 0.007509713, 0.037917018, -0.0056138625, -0.01765888, 0.0057880394, -0.008923228, -0.007094368, 0.0011128912, 1.1011678E-4, -0.004002724, 3.6112443E-4, -0.01704256, -0.029261755, -0.007864767, -0.01865035, -7.8798394E-4, -0.017243534, -0.021182617, -0.004123308, -0.0021788888, 0.043383498, 0.0107788835, 0.008152829, -0.0094725555, 0.0059253713, -0.012922602, -0.03874771, 0.007884864, -0.016399445, 3.6740483E-4, 0.018811129, -0.018074226, -0.005982314, 0.025818408, 0.019869588, 0.012547451, 0.0082734125, 0.031405475, -0.028833011, 0.01780626, -0.00631727, 0.022589432, 0.0012117033, 0.0039759274, 0.010376937, 0.006431155, -0.012540752, 0.033522394, -0.014697868, -0.044803713, 0.0041032108, -0.008253315, -0.019682014, -0.01621187, -0.006702469, 4.7940575E-4, 0.004970747, -0.011180831, 0.010745388, -0.0036778168, 0.0034667945, -0.009144299, 0.0281631, -0.031298287, 0.0055736676, -0.006585235, 0.004451565, -0.008306908, -0.021329997, -0.0043644765, 0.024934124, 0.029878074, 0.018435977, -0.018744137, 0.033522394, 0.025161894, 0.0018389084, -0.008333705, 0.007442722, -0.0064278054, 0.051181275, -0.001601927, 0.022763608, 2.9957626E-4, -0.023714883, 0.062596574, -0.036791567, 0.013826983, -0.026166761, -0.041212983, 0.016479835, 0.030949933, -0.008434191, -0.012661336, -0.02618016, -5.116453E-4, 0.028270286, -0.0152204, 0.027292214, -1.2937676E-4, 0.022857396, 0.009238086, 0.018811129, 0.006816354, 0.017685676, -0.017163144, -0.0019142735, -0.012728328, -0.004806618, -0.022388458, 0.011622973, 5.237874E-4, 0.0022324817, -0.020968245, -0.017082755, 0.02336653, 0.027761152, -0.019065695, -6.5651373E-4, -0.0033210886, -0.0107386885, 0.028484657, -0.007904962, 0.026059575, -0.0027734356, 0.0019444195, -0.001488042, -0.020539502, -0.022817202, -0.0067761596, 0.007395828, 0.022348264, 0.019306863, 0.033361617, 0.0015458219, 0.012199097, 0.011917734, -0.027292214, 0.017055959, -0.02297798, 0.0012703206, 0.0213166, 0.0036543699, -0.019722208, -0.64568794, -0.015233798, -0.0281631, -0.0063742124, -0.011770354, 0.008407395, 0.009298379, -0.0043946225, -0.051744, -0.0046324413, -0.019655216, 0.017699074, 0.014657674, -0.02426421, -0.015193604, 0.0039223344, -0.0050410875, -0.022495644, 0.0026896966, 0.0030380508, -0.03362958, 0.0091376, 0.0025925594, -0.016439639, 2.0913815E-4, 0.0041735517, 0.0032976416, -0.022897592, -0.0015248872, 0.007911661, -0.013525522, 0.010664999, 0.022120493, 0.021303201, 0.03416551, -0.0037314098, -0.018168014, 0.044240985, 0.023607697, 0.023942653, -0.025228884, -0.004284087, 0.006568487, -0.0036711176, -0.03746148, 0.019012101, 0.020405518, -0.0013674578, 0.008809342, 0.0052621583, -0.0026796479, 0.0020984993, -0.0019393952, -0.01004198, -0.010202759, -0.0013825308, 0.002776785, -0.02221428, 0.0107252905, -0.009633334, -0.01834219, 0.023178954, 0.01879773, 0.003697914, 0.013163771, 0.019038899, -0.0064646504, -0.0027097939, 0.0035639317, 0.004140056, 0.003547184, -7.93427E-4, -0.018355587, -2.6649935E-4, 0.013056585, 0.00890313, 0.02952972, 0.011509088, -0.0021487426, 0.022080299, 0.012205796, -0.008347103, -0.002664575, 0.007965254, 0.028216692, -0.01408155, -0.032262962, 0.011716761, 0.011535884, 0.010135768, 0.01681479, 0.005563619, -8.4492646E-4, 0.0026695991, -0.012714929, 0.0067292657, -0.022937786, 0.01080568, 0.013840381, -0.04598276, -0.017297126, -0.038238574, 0.029208163, -0.014242329, 0.027077843, 0.013974364, -0.01940065, -0.012359876, 0.03478183, -0.017913446, -0.0039625294, -2.675461E-4, -0.016359251, -0.017859854, 0.0013272631, -0.020941447, 0.02754678, 0.0064880974, 0.023554105, -0.018703943, -4.8777965E-4, 0.0061296946, 0.0067359647, -0.014550488, 0.0050176405, 0.03204859, -0.006993881, -0.005161672, -0.0017752667, -0.0013389866, 4.2350998E-4, 0.005640659, 0.00251217, -0.020526104, 0.01689518, 0.0076838904, 0.022241078, -0.0030079049, 0.010557813, -0.0060828007, -0.02557724, -0.011656469, -0.010758786, -0.0018020632, -0.00905721, -0.015140011, -0.01932026, -0.013572416, -0.0026813226, 0.0050477865, -0.009204591, 0.0081930235, 0.0072484477, 0.01004868, -0.005054486, -0.007335536, -0.017337322, -0.015180205, 0.016868383, -0.004468313, -0.014778258, 0.013746594, 0.013907373, -0.024210619, 0.0107721845, -0.0077843773, -1.6140692E-4, 0.006702469, 0.008025546, -0.02800232, 0.0044415165, -0.018060828, -0.011763655, -6.569324E-4, -0.008085838, 0.019534633, -0.011334911, 0.01149569, 0.009954892, -0.017337322, -0.0026896966, -0.008990219, -0.015970701, 0.007342235, 0.029583313, 0.019896386, 0.009177794, -0.005000893, -0.009559643, 9.830958E-4, -0.024920726, -0.0021504175, -0.00517507, 0.011663168, -0.021517573, 0.018958509, 0.008286811, 0.011823947, 0.011710062, 0.018971907, 0.021544369, 0.006980483, 0.020526104, -0.011274618, -0.009727122, -0.017645482, -0.0018858023, -0.024076637, 0.009378768, -0.0050042425, 0.02800232, -0.0043108836, -0.0012200772, -0.0035371352, 0.013579115, 0.032262962, -0.0045487024, 0.001571781, -0.0220669, 5.217986E-5, -0.0064445534, 0.007194855, 0.0038017505, 0.0028404268, -0.02328614, -0.007911661, 0.016024295, -0.008923228, 0.008695457, -0.009974989, -0.0051114284, 7.482079E-4, 5.7738036E-4, -0.012433566, 1.6517517E-4, 0.011046848, 0.028966993, -0.0065885843, 0.036014467, -0.009318476, -0.002518869, 0.012869009, 0.030815952, 0.006354115, -0.024143627, -0.029717294, 0.021329997, 0.006478049, -0.008876334, 0.031593047, -0.019949978, 0.011596176, 0.008487784, 3.1485863E-4, 0.011522486, -0.015488365, -0.005409539, 0.011006653, 0.026367735, 0.013358044, 0.010678397, -0.0433567, 0.021477377, 0.0119445305, 0.018476171, 0.015863515, -0.0213166, 0.015515162, -0.01606449, -0.039899956, -5.685878E-4, -0.0064981463, 0.013438434, -0.0044415165, -0.0075298105, 0.0031217898, -0.014939037, 0.00112294, -9.0689334E-4, 0.032477334, -0.027519984, -0.012882407, 0.0029325397, 0.03523737, -0.008990219, -0.029744092, 0.010068777, 0.0051114284, 0.00509803, 0.0020415566, -0.008641864, 0.03437988, -0.0061832876, 0.010651601, -0.009191193, -0.006042606, 0.01780626, -0.029556517, -0.0060057607, 0.00654504, 0.002070028, 0.011348309, -0.0145236915, -0.0026076324, 0.019333659, 0.0051047294, 0.020003572, -0.013759992, -0.0027968825, -2.3258507E-4, -0.0032222767, -0.006092849, -0.03890849, 0.033200838, -0.02626055, -0.008802643, -0.0034667945, -0.019306863, 0.0132910535, -0.011663168, -0.013478629, -0.018878119, -0.006839801, -6.1296945E-4, 0.07947835, 0.044187393, -2.6377785E-4, -4.867329E-6, -0.0026042827, 0.0032540974, -0.002456902, -0.012842213, 0.010644902, 0.005432986, 0.010537716, -0.009030414, 0.02427761, 0.010202759, 0.0030263274, -0.012112008, -4.1869498E-4, -0.020740476, -0.009841007, -0.021973113, -0.03628243, 0.009224688, 0.032530926, 0.039149657, 0.0145370895, 0.006879996, 0.014014559, 0.013197266, 0.008347103, 0.01606449, -0.01956143, 0.010537716, -0.001380856, 8.2859735E-4, 0.013123576, 9.514843E-5, 0.029851278, 0.0073757307, 0.024090035, 0.017524898, -0.014697868, 0.004806618, 0.00928498, -0.0018606805, 0.00776428, -0.041882895, -0.017457906, 0.0075164125, 0.030253224, -0.025121698, 0.021718547, -0.015930507, -0.02161136, -0.011046848, 0.014590682, 0.006531642, 0.001133826, -0.012045017, -0.010129069, 0.01164307, 0.012835514, -0.03052119, 0.023004778, 0.0033411859, -2.1384846E-4, -0.013110178, 0.01270823, -0.006102898, -0.008735652, 3.477262E-4, -0.005928721, -0.019588226, -0.0053693443, -0.008970121, 0.025456656, -0.0021805635, 0.016118081, 0.01027645, 0.0119780265, -0.00270142, -0.032450534, -0.01954803, 0.0056440085, -0.026649099, -0.0038117992, 0.013559018, 0.0020918, 0.021196015, -0.011629672, 0.00852128, 0.0072350493, 1.1451308E-4, -0.0133111505, -0.005654057, 0.04140056, -0.00220736, 0.014858647, 0.02518869, -0.0017015764, 0.0014093273, -0.009338573, -0.016198471, -0.020204546, -0.008822741, -0.0034500468, -0.013960966, 0.0021939618, 0.007047474, -0.012299584, -0.038024202, -0.013800187, -0.018181412, 0.012842213, -0.010946361, 0.013626009, 3.7473202E-4, 0.0077441824, 0.018007234, -0.0022927737, -0.004917154, -0.008501183, -0.024853734, 0.011756955, 0.02541646, -0.0038486442, 0.02268322, -0.015541958, -0.0251083, -0.0042740386, 0.019105889, 0.0042103967, -0.0014478472, -0.018663747, -0.011368406, 0.006879996, -0.019119287, 0.011475592, -0.01468447, -0.009043812, 0.010296547, -0.023996247, 0.016707605, 0.0024334553, -5.443035E-4, 0.0045788484, -0.03295967, -0.0070206774, 0.009646732, 0.018971907, 0.019065695, -0.005372694, 0.008702156, -0.023259344, 0.0037615558, -0.0043477286, -0.029770888, -0.011013353, -0.020807466, 0.025630832, -0.002123621, 0.044482157, 0.0060124598, 0.028404268, 0.009653431, 0.012245991, 0.023071768, -0.020378722, -0.010758786, -0.029395737, 0.008889732, 0.019815996, 0.03333482, -0.0033813806, -0.0023714884, 0.018101022, 0.010490822, 0.009901299, 0.03301326, 0.0075365095, -0.007281943, -0.017672278, 0.0053927912, -0.034433477, 0.0065584383, -0.028859807, -0.010397034, 0.017176542, 0.0020130854, 0.0035438344, -0.014550488, 0.021879325, 0.0043477286, 0.009378768, -0.0026243802, 0.020539502, -0.023500511, 0.0028856457, -0.011616274, -0.03143227, 7.3480967E-4, -0.01909249, 0.005583716, 0.0056138625, -0.0063574645, 0.008360501, 0.02450538, -0.0051884684, -0.026233753, 0.00213032, 0.001213378, -0.012071813, -0.034594253, 0.00608615, -0.034111917, -0.010021883, -0.0070206774, -0.008038944, -0.0015006028, -0.018985305, -0.051261663, 0.025068106, 0.00194107, 0.052199543, 0.01530079, 0.029315349, 0.030655172, 0.0068665976, -0.007911661, 0.009606537, -6.854037E-4, -0.00224588, 0.033040058, 0.008132732, -0.03829217, -0.008474386, 6.5567635E-4, -0.0031167655, -0.025550442, -0.028377471, 0.023487113, 0.013337947, 0.036871955, -0.019226473, -0.0048970566, -0.011803849, 0.012668035, -0.0074628196, 0.0035739804, -6.4646505E-4, -0.035960875, -0.020338528, -2.3635331E-4, 6.0501427E-4, 0.0049205036, 0.012393371, -0.03052119, 0.002115247, -0.0036108256, 0.011596176, -0.010464025, -0.009934794, 0.03705953, -0.026515115, 0.026729487, 0.007958555, 0.010906167, -0.0010978183, 0.009713723, 0.0048133177, 0.029663702, -0.0043242816, 0.021477377, 0.008360501, -0.0018690544, -0.001157273, 0.016881783, -0.016774597, -0.025992585, -0.036121655, 4.0759955E-4, 0.029234959, 0.0064746994, -0.0053191013, 0.011060246, -0.026662497, -0.016948773, 0.006501496, -0.021932919, -5.099705E-4, -0.026193557, 0.0038553434, -0.0064110574, -8.851212E-4, -4.1911367E-4, 0.0029827831, 0.0045554014, -0.02092805, 0.021705149, -0.011783752, 0.0059421193, -0.012319681, -0.014121745, -0.031619847, -0.017538296, -0.023312937, -0.010403733, 0.013076682, -0.028591843, 0.007194855, 0.0045688, -0.012205796, -0.011957929, 0.0028421015, 0.007389129, 0.00403622, 0.019146085, 0.007201554, -0.010604707, 0.01232638, 0.018998703, 0.0022509042, -0.011254521, 0.009921396, 0.012333079, 0.021517573, 2.2232704E-4, 0.015729534, 0.005744495, -0.015595551, -0.00433768, 0.010685096, 0.027211824, -0.007556607, -0.0015885287, -0.04925193, -0.0057947384, -0.0029710596, 0.03829217, 0.0068130046, -0.004408021, 0.006933589, 0.020968245, 0.025537044, 0.018409181, -0.0050712335, -0.018315393, -0.0037314098, -0.008099236, -0.021383591, -0.0034299493, 0.0020532801, 0.0013925795, 0.014014559, -0.013525522, -0.02086106, 0.0013180518, -0.042043675, -0.018904915, -0.01118753, 0.03432629, 0.039605197, 0.0038687417, -0.005456433, 0.016265463, -0.0025389665, 0.028404268, -0.045339644, -0.0281631, 0.01704256, 0.006133044, 0.016466437, 0.020030368, -0.014202134, -0.016747799, 2.6943022E-4, 0.022777008, 0.010497521, 0.03135188, -0.010571211, -0.0119378315, -0.01544817, 0.0132441595, -0.0050477865, -0.004330981, 0.024049839, -0.024907326, -0.011066946, 0.0016086261, 0.023554105, 0.002070028, 0.0027583626, 0.017980438, -0.014590682, 0.0012016546, -0.0065048453, -0.029502923, -0.008641864, -0.030949933, 0.026139965, 0.012379973, 0.0033127146, 0.030226428, 0.021825733, -0.004354428, -0.0046558883, 0.0063373675, -0.010457326, 5.8742904E-4, -0.0038151487, -0.008313607, 0.023393326, -0.037890222, -0.0061062477, -0.032611314, 0.0032691704, -0.018556561, 0.004558751, -0.0061296946, 0.027841542, 0.01552856, -0.05493278, 0.006253628, -0.011267919, 0.011200928, -0.024867132, -0.025175292, -0.023339733, 0.00547653, -0.028886605, -0.0010082176, -0.023071768, -0.025898797, 0.007087669, -0.0062435796, 0.0037481575, 0.02450538, 0.1932562, 0.0023899109, 0.018355587, 0.041346967, -0.0056875525, 0.0067225667, 0.011683265, 0.009666829, -0.012587646, 0.009392166, 0.013069983, -0.0042807376, -0.010410432, 0.0029593362, -0.0010927939, -0.008869635, -0.024331203, -0.0065952833, -0.010611406, -0.026917063, -0.0047161803, -0.0042706886, -0.016051091, -0.008152829, 0.017444508, -0.008527979, -0.011897637, -0.004763074, 0.031325083, 0.004984145, -0.026984055, -0.0057043005, -0.0042941356, 0.016546825, 1.6983315E-5, -0.013203965, 0.0023731631, 0.007094368, 0.019360457, 0.025738018, -8.909829E-4, 0.021463979, -0.027519984, 0.0014336116, 0.0074293236, 0.02611317, -0.013110178, 0.013813585, -0.006407708, 6.254256E-5, -0.041373763, -0.016546825, 0.030815952, 0.015702737, -0.013599213, 3.106717E-4, 0.01948104, 0.008628466, -0.0046458393, 0.0030782456, 0.007998749, 0.02313876, -0.038694117, 0.01658702, -0.007650395, 0.0067460136, -0.0365236, 0.0031402123, 0.010296547, -0.03676477, -0.017015764, -0.008407395, -0.00951275, -0.0014679446, -0.014898842, -0.0016973894, -9.4541325E-4, -5.907786E-4, 0.020030368, 0.003982627, -0.027198426, 0.0013398239, 0.0047396272, 0.0016714304, -0.036175247, -0.020512704, -9.177794E-4, 0.0025707872, -0.023178954, -0.011576079, -0.01932026, -0.023688087, -0.0076972884, 0.013384841, -0.014724665, 0.011026751, 0.017149746, 0.026139965, -0.011468893, -0.0016479834, -0.03135188, 0.019146085, 0.015367781, -0.0051013795, -0.013987762, -0.016935375, -0.0029174667, 0.030306818, 0.023473715, 7.6935205E-5, -0.008628466, -0.03949801, 0.0011798824, -0.012848912, 0.01796704, 0.026394531, -0.020834262, 0.0032021792, 0.029422535, -0.02564423, -0.0010450627, -0.020298332, 0.013813585, -0.006946987, 0.0041199587, 3.1360253E-4, -0.0182618, 0.016948773, 0.010865972, -0.033495598, 0.008132732, -0.021062033, 0.0048434637, 0.005067884, -0.0014897167, 0.0024066588, 0.0054899286, 0.015180205, 0.004193649, 0.0017434459, 0.0011212651, -0.024103433, 0.01225269, 0.0039256844, -0.0073154387, -0.030628376, 0.022133892, -9.504376E-4, -0.0021470678, -0.028725825, -0.016238667, -0.008956723, 0.024840336, -0.019615022, 0.015059621, -0.012292884, -0.029154569, -0.046545483, -0.019119287, 0.04633111, -0.043865837, 0.028591843, 0.010296547, -0.015930507, -0.03408512, -0.006300522, -0.17139028, 0.016533427, 0.0082667135, -0.02754678, 0.015970701, 0.0024703003, 0.014202134, 6.3892856E-4, 0.013599213, -0.01909249, 0.04239203, -0.008715555, -0.04483051, -0.006461301, 0.0038720912, 0.011911035, 0.0025021213, 0.035022996, 0.018101022, 3.45214E-4, 0.053673346, -0.0026695991, 0.0061832876, 0.004629092, 0.022723414, 0.001365783, 0.02541646, 0.00586173, -6.138068E-4, -0.013987762, -0.03172703, -0.008883033, 0.011529185, 0.013478629, 0.014630877, 0.013009691, -0.011669867, -0.010082175, 0.0024234066, 0.0029945066, 0.042901162, 0.015823321, 0.019440845, 0.01773927, 0.018891517, 0.02533607, 0.03301326, 0.0016412843, -0.005637309, -0.016854985, 0.00867536, -0.035371352, 0.03135188, -0.0047396272, -0.0039323834, -0.005510026, 0.0057813404, -8.2357303E-4, 2.8534062E-4, -0.003774954, -0.016801393, -0.010557813, 0.021437183, -0.0012384998, 3.3872423E-4, -0.018556561, -0.012493858, 0.021142421, -0.049278725, 0.0056641055, -0.021048633, 0.015287391, 0.008065741, 0.0021587913, -0.013498726, 0.0023982849, -0.027734356, 0.015247197, 0.014429904, 0.025858602, -0.0038620424, 0.024371397, -0.020258138, 0.009191193, 0.0017233485, -0.00996829, -0.0019695412, -0.008280112, 0.01232638, -0.01240007, -0.00197959, -0.021263005, -0.022629626, -0.017565092, -0.001232638, 0.016265463, 0.013498726, -5.991525E-4, 0.0048334147, 0.005607163, 0.004528605, -0.014215532, -0.011207627, 0.006062703, 0.029208163, 0.016439639, 0.007596802, 0.009854405, 0.0019846142, -6.80798E-4, -0.020914651, -9.687555E-5, 0.024210619, -0.001472969, -0.017364118, 0.0071881553, -0.0018623553, -0.016854985, -0.0041735517, -0.004629092, 0.04884998, 0.008347103, -0.011562681, -0.018368986, -0.011529185, -0.026850073, -0.09137599, 0.002580836, 0.015582153, 0.030735562, -0.020820864, 0.02853825, -0.011716761, 0.02063329, -0.0035103387, 0.028431064, -0.0046022953, -0.009820909, 0.013987762, -0.011321512, 0.014965833, -0.0016823164, -0.005275557, -0.020713678, -0.02305837, 0.028511453, -0.017699074, -0.005583716, 0.011408601, 0.002106873, -0.014590682, 0.003858693, -0.031941403, 0.030119242, 0.00936537, 0.014349515, 0.020807466, -0.012319681, 0.026501717, -0.02869903, -0.02032513, -0.023379928, -0.011348309, -0.022656422, 0.002945938, -0.0441338, 0.005007592, 0.0063373675, -0.0025523647, -0.021798935, 0.0016010896, -0.004314233, -0.024478583, 0.019347059, -0.009673529, -0.033442006, -0.0033746816, -0.011401902, -0.017377516, -0.010175963, 0.019574828, -0.0010358514, 0.023460317, 0.016493233, -0.011522486, -0.035290964, -0.0019980124, -0.016466437, -0.0062134336, 0.017591888, 0.023245946, 0.001004868, 0.01704256, -0.014925639, 0.018315393, -0.029154569, -0.014577284, 0.02861864, -0.02465276, -0.020981643, -0.014188736, -0.0022475547, -0.022924388, -0.009753918, 0.019038899, -0.02952972, 0.0047429767, -0.019682014, -0.006287124, -0.011100441, 0.02245545, 0.031861015, 0.02092805, 0.027921932, 0.009097405, -0.05069894, -0.02534947, 0.035076592, -0.0027650616, 0.0062067346, 0.001060973, 0.015113214, 0.016988968, -0.01164307, -0.0012351502, 0.030306818, -0.0016488208, -0.010517618, -0.060560044, 0.032530926, -0.016386047, 0.0032005045, -0.013672903, -0.023554105, 0.008608369, -0.0059789643, 0.010993255, 0.01985619, -0.007777678, 0.013445133, -0.019896386, -0.0049874946, -0.0031418873, -0.0025858602, -9.830958E-4, 0.002602608, 0.0034366485, 0.015461569, -0.023889061, 8.817716E-4, 0.028833011, 0.010162565, 3.8729286E-5, 0.021946317, -0.0019209726, 0.007295341, -0.004079764, -0.017672278, 0.026796479, -0.019360457, -7.168058E-4, -9.3955157E-4, 0.002441829, -0.037943814, -0.0048133177, -0.016118081, 0.011073645, 0.0011020052, -0.01666741, -0.026890267, 0.0049406006, -0.02375508, -0.0035270865, 0.0132776555, -0.018623553, 0.0043108836, 0.020338528, 0.022576034, 0.053485774, 0.016774597, -0.0019812647, -0.027653966, 0.015126612, -0.023018176, 0.042418826, -0.00958644, -0.0019226474, -0.028457861, 0.017551694, -0.003165334, -0.0059722653, -0.024585769, -0.008414094, -0.008119334, 0.015273993, -0.014872046, -0.008514581, -0.017645482, -0.0053860922, -0.011475592, 0.024157025, 0.034513865, 0.022535838, 0.017069357, -0.01195123, 0.003073221, -0.016171675, 0.007563306, 0.029020587, -0.0060694027, -0.024612566, 0.015327586, 0.002952637, 0.03006565, -0.0053023533, 0.009017015, 0.010544415, 0.015153409, -0.01240677, 0.0082198195, 0.008454289, 1.3827402E-4, 0.022281272, 0.006689071, 0.0132910535, -0.009666829, -0.010068777, 0.025376266, -0.0018271849, 0.004073065, -0.016600419, -0.03403153, -0.028136304, 0.0048903576, -0.019641818, -0.031646643, 0.008132732, 0.025925593, 0.030387208, 1.2864404E-4, -0.011535884, 0.015461569, -0.045259252, 0.026970657, -0.01727033, -0.0016546826, -0.014563886, 0.055575896, 0.012279486, 0.0064579514, 0.03408512, -0.0107319895, 0.04724219, 3.050193E-4, 0.015193604, -0.021370191, 0.0029945066, -0.01430932, -0.0036610689, -0.008079139, -0.020070562, 0.011200928, -0.0012837189, 0.0037917017, 0.015354383, 0.041990083, -0.008025546, 0.067634314, 0.019119287, -0.009244786, 0.011616274, -0.009452458, -0.008420793, -0.0021520923, 0.014939037, -0.0040529673, -0.0197892, 0.016774597, -0.0039792773, 0.013130275, -0.018757535, -0.014188736, -0.0022793754, 0.012982894, 0.013398239, -0.0019209726, -0.02190612, 0.011227725, -0.0053458977, 0.011683265, 0.008494484, -0.03312045, -0.010979857, 0.041802507, 0.0061296946, -0.013652806, -0.056111827, -0.014429904, -0.017323924, 0.0036811663, -3.293036E-4, 0.035210572, 0.015943905, -0.004913804, -0.0026846721, 0.021356793, 0.017390914, -0.0039089364, 0.01476486, -0.029663702, -0.007864767, 0.0019812647, -0.0120048225, -0.006384261, -0.016828189, -0.026796479 ], + "id" : "81284843-f65f-441b-9ebc-febcd399783d", + "metadata" : { + "source" : "movies.csv" + } + }, + "033ce5a0-257a-4410-bf0a-10ee7f00aa04" : { + "text" : "425,20224,Benedict Cumberbatch-Chiwetel Ejiofor-Rachel McAdams-Benedict Wong-Mads Mikkelsen-Tilda Swinton-Michael Stuhlbarg-Benjamin Bratt-Scott Adkins-Zara Phythian-Alaa Safi-Katrina Durden-Topo Wresniwiro-Umit Ulgen-Linda Louise Duan-Mark Anthony Brighton-Meera Syal-Amy Landecker-Adam Pelta-Pauls-Sarah Malin-Eben Young-Kobna Holdbrook-Smith-Elizabeth Healey-Guillaume Faure-Daniel Dow-Stan Lee-Ezra Khan-Kimberly Van Luin-Pat Kiernan-Raj Awasti-Jill Buchanan-Daniel Eghan-Juani Feliz-Mo Idriss-Tamika Katon-Donegal-Pezhmaan Alinia-Kei Miura-Cameron Moon-Emeson Nwolie-Clem So-Chris Hemsworth-Samantha Russell,magic-time-training-superhero-based on comic-sorcerer-doctor-neurosurgeon-wizard-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/uGBVj3bEbCoZbDjjl9wTxcygko1.jpg,/qUv51IFUvVRAP2379ThmA3eLJx6.jpg,271110-283995-102899-99861-76338-315635-284053-118340-100402-10195-10138-1771-284054-68721-24428-1726-293660-299536-363088-259316-209112\r\n13,Forrest Gump,Comedy-Drama-Romance,en,A man with a low IQ has accomplished great things in his life and been present during significant historic events���in each case far exceeding what anyone imagined he could do. But despite all he has achieved his one true love eludes him.,63.502,Paramount-The Steve Tisch Company-Wendy Finerman Productions,6/23/94,55000000,677387716,142,Released,The world will never be the same once you've seen it through the eyes of Forrest Gump.,8.48,24667,Tom Hanks-Robin Wright-Gary Sinise-Sally Field-Mykelti Williamson-Michael Conner Humphreys-Hanna Hall-Haley Joel Osment-Siobhan Fallon Hogan-Rebecca Williams-Bob Penny-Harold G. Herthum-George Kelly-John Randall-Sam Anderson-Margo Moorer-Ione M. Telech-Christine Seabrook-John Worsham-Peter Dobson-Alexander Zemeckis-Logan Livingston Gomez-Ben Waddel-Elizabeth Hanks-Tyler Long-Christopher Jones-Grady Bowman-Kevin Mangan-Fay Genens-Frank Geyer-Rob Landry-Jason McGuire-Pete Auster-Sonny Shroyer-Brett Rice-Ed Davis-Daniel C. Striepeke-Bruce Lucvia-David Brisbin-Kirk Ward-Angela Lomas-Timothy Record-Deborah McTeer-Mark Matheisen-Al Harrington-Jed Gillin-Bob Harks-Don Fischer-Kenneth Bevington-Michael Flannery-Gary Robinson-Marlena Smalls-Kitty K. Green-Afemo Omilami-Matt Wallace-Dant�� McCarthy-Paulie DiCocco-Mike Jolly-Michael Kemmerling-John Voldstad-Jeffrey Winner-Russ Wilson-Daniel J.", + "embedding" : [ 0.005774827, -0.028799841, -0.010029963, -0.027503038, -0.0149267465, 0.039795652, -0.0046502557, -0.013623189, -0.030231727, -0.024909431, 0.019087324, 0.034338273, 0.009064115, -0.002093797, 0.0064029666, 0.015453573, 0.02095148, 0.0010536527, -0.0016100286, -0.031420466, -0.012103498, -0.0050082277, -0.011455096, 0.010705382, -0.0031829092, 0.009010081, 0.038958132, -0.009719271, -0.013663714, -0.0049305544, 0.012171039, -0.029340176, -0.013859586, -0.040579136, -0.009016836, -0.004143692, -0.008571059, -0.028286522, 0.041929975, -0.013157151, 0.0111241415, 0.019654676, -0.005426987, -0.0025969837, -0.0040558875, 0.01352863, 0.006740676, -0.0054472494, -0.0115361465, 0.01689897, 0.015115864, 0.029502276, -0.02690867, -0.0154400645, -0.018736107, 0.010941778, -0.017479828, -0.0055316766, 8.3371956E-4, 6.5811083E-4, 0.022869667, -0.012583044, -0.033743903, -0.014129753, -0.023666661, -0.018992765, -0.0060078464, -0.026300792, 0.0047515687, 0.022842651, 0.01896575, 0.008557552, 0.01047574, 0.010401444, 0.0229237, -0.021032529, -0.03658066, 0.011529393, -0.011961659, 0.0065920837, 0.016291091, -0.017736487, -0.0048258645, 0.011705001, 0.015453573, 0.011799559, -0.009422087, 0.021559356, -0.026624992, 0.0059673213, 0.008638602, 0.046901055, -4.1580445E-4, -2.034698E-4, 0.011941398, 0.018101213, -0.013940636, 0.033122517, -0.019884318, -0.043064676, -0.010246097, -0.01556164, -0.0024230636, -0.010529773, 0.0039478205, -0.0042889067, 0.014251328, -0.002792855, 0.03909322, 0.0051939674, 0.007483636, -0.011833331, 0.008712897, -0.03533789, -0.0100097, -0.007888887, 0.022450907, -0.02326141, -0.0064738854, -0.022450907, 0.026300792, 0.014548512, 0.011738772, -0.032933403, 0.039525487, 0.040903337, -0.008057741, -0.02268055, 0.015034813, 0.003448011, 0.031852733, -0.003395666, 0.026503418, 6.8766036E-4, -0.02374771, 0.048197858, -0.026408859, 0.013825814, -0.018317347, -0.01912785, 0.038714983, 0.05195318, -0.017155627, -0.022829141, -0.03774238, -3.9300908E-4, 0.017290711, 0.0013651894, 0.02798934, 0.006673134, 0.011759034, 0.01945205, 0.0073890775, 0.019762743, 0.008408959, -0.0025176222, -0.003593226, -0.007193206, -6.120979E-4, -0.025287665, 0.0036945387, -0.01150913, -6.3658186E-4, -0.007301273, -0.0039005412, 0.02285616, 0.013873094, -0.024234012, -0.011894118, 8.130349E-4, 0.0041605774, 0.0385799, -0.018560497, 0.011488867, -0.002146142, 0.0119481515, -0.002801298, 7.180542E-4, -0.029502276, -0.015899349, -5.7368353E-4, 0.0049102916, 0.016993526, 0.035932258, -0.009942159, 0.013954144, 0.014575529, -0.013602926, 0.003068088, -0.0096855, -0.008739914, 0.01830384, 3.4805154E-4, -0.008334663, -0.63889176, -0.019141357, -0.0015593722, -0.010171801, 0.021653915, 0.018938731, 0.0010004635, -0.015872333, -0.025963083, -0.005106163, -0.015764266, 0.031015214, 0.03947145, -0.01531849, -0.023896303, -0.023072293, 0.009476121, -0.035310876, 0.011900872, 0.0037215555, -0.02971841, 0.016682835, 0.01572374, 0.0015661264, 0.012596553, 0.006021355, 1.1100871E-5, -0.017452812, 0.010124522, 0.009401824, -0.012934262, 0.031069247, 0.011792805, 0.015507607, 0.034068104, 0.008719652, -0.028232489, 0.04576635, 0.015575148, 0.023963844, -0.020005893, -0.009482875, 0.004153823, -0.0017695962, -0.015737249, 0.028961942, 0.0049744565, 0.009131657, -0.001957025, -0.007058122, -0.0037722117, 0.0016446438, -7.2734116E-4, -0.009287003, -0.008868244, -0.0053054118, 0.0076254737, -0.047144204, 0.01961415, -0.0064299833, -0.007416094, 0.034986675, -0.010935024, 0.008354926, -0.0011802936, 0.03628348, -0.0076457364, -0.007416094, 0.018384889, -0.038039565, 0.0042078565, 0.01506183, -0.013508368, 0.005089278, 0.014967272, 0.010489248, 0.029745426, 0.0038971642, -0.013704239, 0.03225798, 6.7436304E-5, -7.480259E-4, 0.016723359, 0.011684738, 0.014697105, 0.0058930255, -0.041605774, -0.003005612, 0.007443111, 8.797325E-4, 0.007706524, 0.023207376, 1.4574263E-4, 0.011211946, -0.010826957, -0.0105095105, -0.0016767262, 0.008598076, 0.021748472, -0.0631111, -0.015683215, -0.020181501, 0.025003988, -0.0064299833, 0.022937208, 0.0139001105, -0.012400682, -0.023410002, 0.015588657, -0.00868588, -0.013778536, 0.001357591, -0.011522638, -0.018384889, 0.0051027862, -0.02871879, 0.015602165, 0.010989058, -0.0041572005, 0.007929412, -0.010671611, -1.4247106E-4, 0.0043057925, -0.011191683, 0.012961279, 0.034149155, -0.0025294418, -0.007834854, 0.0155346235, 0.01688546, -0.00523787, -0.012643833, 0.015372523, -0.016993526, 0.0037316866, 0.0054506264, 0.020411145, -0.0024146207, 0.00894254, -0.011049845, -0.011083616, -0.0010882679, -0.014589038, -0.021424271, -0.0052952804, -0.008868244, -0.032420084, -0.012029202, -0.006274637, -0.015683215, -0.0036810304, 6.821726E-4, 0.0068757595, 0.012934262, 0.023220884, 0.0048022247, -0.023207376, -0.015899349, 0.008280629, -0.024369096, 0.017155627, 0.024841888, -0.0067271674, -0.021978116, 0.017641928, -2.2309914E-4, -0.017871572, 0.0073215356, -2.950734E-4, -0.010016455, 0.0067035276, -0.016291091, 0.0021174366, 0.025449766, -0.023220884, 0.024220504, -0.019749233, 0.034635454, 0.008510272, -0.007253994, 0.014764646, 0.0017459566, -0.023950337, -0.014332378, 0.041794892, 0.016939493, 0.009516645, -0.016831426, -0.009644975, 0.006267883, -0.010468985, -0.018574007, -0.0048663896, -1.1819822E-4, 0.009293757, 0.021289188, -6.2476203E-4, -0.0034041088, 0.0051162946, -0.009827338, 0.029015975, 0.0255038, 0.0014859205, -0.016493717, 0.025274156, -0.031852733, 0.0034919132, -0.009699008, 0.012718128, -0.012171039, 0.017425794, -0.00703786, -0.021667423, 5.099409E-4, -9.7091397E-4, 0.030826095, -0.007672753, 0.008186071, -0.012914, 0.008111775, 0.002770904, -0.013190921, 0.016588276, 0.025949575, -0.008631847, 0.012522257, 0.011677984, -0.01879014, -0.005433741, -0.002213684, -0.007834854, 0.005798467, 0.0017147184, -5.6650717E-4, -0.013380039, -0.024058403, 0.040200904, -0.01762842, 0.052574567, -0.01580479, -0.0013533697, 0.0032825335, 0.016844936, -0.0016758819, 0.008030725, -0.015034813, 0.015115864, 0.021951098, 0.0028350689, 0.040200904, -0.015277964, 0.034230206, 0.0068386113, 0.015912857, 0.00868588, -0.009205953, 0.010239343, 0.020195011, 0.027084278, 0.008395451, 0.011833331, -0.039876703, 0.0313124, 0.0012672538, 0.016358634, 0.00502849, -0.018398397, -0.013981161, -0.010853974, -0.044550598, -0.02450418, -0.016777392, -0.015629182, 0.004812356, -0.007274256, -0.009543662, -0.003708047, 0.016736869, 0.010995812, 0.014697105, 0.001889483, -0.036067344, 0.018587515, 0.023950337, -0.014467462, -0.011164666, -0.0053155427, -0.0071324185, -0.037904482, -0.02209969, -0.017020544, 0.04611757, -0.016939493, 0.0076187197, -0.016777392, 0.007983445, 0.023247901, -0.010131276, 0.012434453, 0.017020544, -6.281391E-4, 0.016237058, -0.015359014, -0.004410482, 0.013028821, -0.0151293725, -0.014453954, -0.0069635636, -0.0045050406, 0.004184217, 0.012724883, -0.009361299, -0.043767113, 0.014129753, -0.005879517, 0.01352863, -0.007875378, 0.0021427649, 0.009854355, -0.009259987, -0.027557071, -0.026611485, -0.020573245, 0.0048866523, 0.075268626, 0.030420845, 0.014507988, -0.0022862912, -0.019762743, 0.0065616895, -8.4807223E-4, -0.008625093, -0.011076862, -0.026827618, 0.029340176, -0.015413048, 0.018655056, 7.113E-4, 0.002510868, -0.01688546, -0.020640787, -0.019573625, 0.0023943582, -0.01228586, -0.02342351, -0.0075781946, 0.014480971, 0.03368987, -0.0058288607, -4.326899E-4, 0.023801744, 0.009428841, 0.012015693, 0.01862804, 0.0056904, -0.010671611, 0.015237439, 0.01689897, -0.0077538034, 0.0034750276, 0.021734964, 0.011205192, 0.017709471, -0.002727002, -0.009854355, 0.001311156, 0.010982303, -0.0074701277, 0.0049778335, -0.024234012, -0.014683596, 0.026341317, 0.03690486, -0.031231347, 0.0100097, 0.014008177, -0.013940636, 0.0070513682, 0.019992385, -0.0127721615, 0.002841823, 3.3538745E-4, -0.017520353, 0.004434122, 0.007530915, -0.044658665, 0.007976691, 0.0054033473, -0.0038431308, -0.0027202477, -0.013602926, -0.010712136, -0.0053425594, -7.725098E-4, 6.5431156E-4, -0.018276822, -0.007233731, -0.011792805, 0.025260648, -0.0020059927, 0.021154104, -0.018249806, 0.007557932, 0.003934312, -0.02250494, -0.028367573, 0.022383366, -0.009699008, 0.006416475, 0.012400682, -0.0015467082, 0.018411906, -0.0045320573, 0.008132038, 7.028573E-4, 0.013596172, -0.024963465, -0.0024112437, 0.028205473, 0.020600261, 0.00199755, 0.011988676, 0.011178175, -1.5112487E-4, -7.6491135E-4, -0.026435876, -8.3076465E-4, -0.03304147, -0.024017878, -0.009624712, -0.003179532, -0.0014369526, -0.019222409, -0.029475259, -0.025098547, -0.023234393, 0.015102356, -1.7531856E-5, 0.00844273, 0.0015661264, 0.025422748, 0.024234012, -0.0017425795, 9.768239E-4, 0.0043767113, -0.010381181, 0.0159804, 0.0073958314, -0.012144023, 0.042497326, -0.019681692, -0.028259506, -0.004440876, 0.029448243, -0.0075444235, 0.010232589, -0.010698628, -0.011468604, -0.012941017, -0.022937208, 0.002548016, 0.0061530615, -0.023545085, 0.01664231, -0.02747602, -1.4542602E-4, 0.012907245, 0.007882133, -0.012225073, -0.026044134, 0.017007036, -0.02374771, 0.020573245, 0.03625646, 0.006896022, 0.013001804, -0.025287665, -0.005322297, -0.013082854, -0.03296042, -0.032285, -0.007145927, 0.029853493, 0.012353403, 0.04049809, -0.00976655, 0.030366812, 0.0094896285, 0.0059774527, 0.022234773, -0.02078938, -0.019154865, -0.032555167, 0.0025564586, 0.009530154, 0.020478686, 9.388316E-4, -0.0018624662, 6.321494E-5, 0.018492956, 0.004292284, 0.019006275, -0.0018286953, -0.014778155, -0.031798698, -9.160362E-5, -0.020249045, 0.010779678, -0.008273875, -0.013967653, 0.040444054, 0.0017358253, -7.100336E-4, -0.0051162946, 0.0225995, -0.01063784, 0.010070489, -0.023234393, 0.016034434, -0.032636218, -0.01548059, -0.020519212, -0.022950718, -0.0022119952, -0.011934643, 0.007956428, -0.006423229, -0.012981541, 0.0044611385, 0.032285, -0.027124804, -0.025044514, 0.026841126, -0.021748472, -0.015953382, -0.032149915, -0.01814174, -0.029934544, -0.0011819822, -0.0072067142, -0.006308408, 0.0069838264, -0.020330094, -0.032149915, 0.012839704, 0.008429222, 0.031744666, 0.011907626, 0.05743758, 0.029259125, 0.009671992, -0.021978116, 0.012474977, -0.012096743, 0.0051872134, 0.02077587, 0.019681692, -0.004954194, -2.260541E-4, -0.010259606, 0.0023555218, -0.027611105, -0.024112437, 0.028286522, 0.036526628, 0.011083616, -0.023707185, -0.0031778435, -0.030096645, 0.015791282, -0.009172182, -0.005535054, 0.011272733, -0.03863393, -0.017020544, -0.005072392, -0.001852335, 0.019722218, 0.012029202, -0.02855669, 0.009043853, -0.02193759, -0.0022846027, 7.703991E-4, -0.0040086084, 0.020154485, -0.010901253, 0.012988295, -0.0034226826, 0.004153823, 0.0029465128, -0.017641928, 0.0091789365, 0.03285235, -0.0047380603, 0.019506084, 0.0018861059, -0.00886149, 0.020829903, 0.013332759, -0.023639644, -0.0060078464, -0.020667803, -0.008847981, 0.027435495, -0.004086281, 0.00341424, 0.011759034, -0.007855116, -0.011988676, -0.003220057, -0.0014344199, 0.003998477, -0.035986293, 0.018898208, -0.0059740758, 0.013062592, 0.007902395, 0.0011870478, 0.0022221266, 0.007659245, -0.0026358203, -0.012089989, 0.002971841, -0.013967653, -0.0054101013, -0.031987816, -0.032663234, -0.008739914, -0.0051838364, 0.006801463, -0.021005513, 0.004278776, 0.002201864, -0.017601404, -0.0105095105, 9.472743E-4, -0.038958132, 0.0120494645, 0.011610442, -0.006541427, -0.011421326, -0.008307646, 0.021640405, -0.0034817818, -0.013886603, -0.0036540136, 0.0073080272, 0.020167993, -0.011414571, 0.018155247, 0.008841227, -0.033662852, -6.821726E-4, 0.017574387, 0.017277204, 0.012117006, -0.004079527, -0.031177314, -0.013326005, -0.0058525004, 0.03468949, -0.01055679, 0.018384889, 0.006912907, 0.017871572, 0.023193868, 0.024031386, -0.011988676, -0.02705726, -0.012225073, 0.009935405, -0.021748472, -0.0020093697, -0.0076119653, 0.004022117, 0.007085139, 0.0019654676, -0.04220014, -0.008327909, -0.032987434, -0.035905242, -0.014994289, 0.01762842, 0.037283096, 0.015075339, -0.0015272899, 0.018276822, 0.004039002, 0.0070918933, -0.016615292, -0.011036336, 0.011833331, 0.002737133, 0.017398778, 0.02011396, -0.019749233, -0.0057174168, 0.018182263, 0.013265218, 0.012393927, 0.02119463, -0.026597977, -0.006284768, -0.014264837, -0.0039815917, -0.007530915, -0.020451669, 0.029691393, -0.016912477, -0.0038127368, 0.009280249, 0.005467512, 0.0047583226, -7.0496794E-4, 0.019965367, -0.0049947193, -0.0027742812, -0.019938352, -0.018857682, -2.053694E-4, -0.03128538, 0.028826857, 0.012637078, -0.010779678, 0.026719552, 0.026760077, -0.0074566193, -0.008807456, 3.3686493E-4, 0.0012140645, -0.0070986473, -5.019203E-4, 0.010759415, 0.0073215356, -0.022802126, 0.015372523, -0.023774728, -0.0070243515, -0.009921896, -0.005947059, -0.0023521446, 0.03477054, 0.020222027, -0.056573045, 0.003917427, -0.0069568097, 0.014859205, -0.028583707, 0.0073080272, -0.03966057, 0.0038566391, 1.9956502E-4, 5.285149E-4, -0.020181501, -0.046225637, -0.009428841, -0.004359826, -0.012225073, 0.01100932, 0.17831045, -0.0071121557, 0.011313259, 0.046144586, 0.013913619, 0.01738527, 0.02508504, 0.038769018, 0.0018050557, 0.020140978, -0.002618935, 0.009138411, 0.002146142, 0.0020076812, 0.009246478, -0.018898208, -0.025800982, -0.029097024, -0.018749615, -0.0316366, 0.008348172, 0.0015205357, -0.004707666, -0.027935306, 0.011927889, 0.003775589, -0.003451388, 0.019600643, 0.03558104, 4.1685978E-4, -0.009509891, -0.0076930155, 0.0010899565, -1.6579412E-4, -0.021491814, 0.0063624415, 0.0020245668, 4.5295246E-4, 0.0124614695, -0.006419852, 0.0019924843, 0.01779052, -0.009678746, -0.0025615243, 0.006565067, 0.02235635, -0.02549029, 0.0021765358, -0.020721836, 0.017533861, -0.040119853, 0.0077200322, 0.017439304, 0.01039469, 1.6906566E-4, -0.011448342, -0.0017003658, -0.02316685, -0.002495671, 0.009807075, 0.011157912, 0.025787475, -0.028448623, 0.02027606, -0.007524161, 0.014589038, -0.04849504, 0.0033720264, 0.014643071, -0.023531577, -0.012387173, -0.032014832, -0.021343222, 0.008044234, -0.008672372, -0.013062592, 0.018911716, 0.003667522, 0.018776631, 0.02126217, -0.028826857, -0.014656579, 0.0046435017, -0.020384127, -0.010252851, -0.016101975, 0.008348172, -0.020451669, -9.524455E-5, -0.022396874, 1.6911843E-5, -0.019627659, -0.01415677, 0.0049069147, -0.0053729536, 0.006355687, 0.01612899, 0.004917046, -0.015696723, -0.003209926, -0.041929975, 0.035040706, 0.01415677, -0.0033754034, -0.018979257, -0.026152201, -0.009611204, 0.011205192, 0.031798698, -0.014440445, -0.031150296, -0.03352777, 0.0026138693, -0.0056904, -0.005575579, 0.02334246, 0.0072472394, 0.004427368, 0.037634313, -0.007841608, 0.0049373084, -0.027124804, 0.016844936, 6.2898337E-4, -0.025625374, -0.026557451, -0.023990862, 0.006869005, 0.006119291, -0.02815144, 0.014886222, -0.029664377, 0.0014985845, -0.015223931, 5.871919E-4, -0.0036506364, 0.0256659, -0.008010462, 0.014737629, -0.0012014005, 0.003529061, -0.011482113, 0.013555647, 0.012765408, 0.01696651, -0.016047942, 0.011867101, -0.0024483916, -0.0195331, -0.04500988, -0.020924462, 0.0010924892, 0.014764646, 0.011002566, 0.037607297, -0.004508418, -0.021181121, -0.036121376, -0.01804718, 0.043172743, -0.030555928, 0.0115429, 0.024922939, -0.012630324, -0.025692916, -0.0021360107, -0.17236678, 0.028826857, -9.80201E-4, -0.024450146, 0.011002566, 0.022491433, 0.038958132, 0.0031727778, 0.004852881, -0.022707567, 0.021235155, 0.011245716, -0.053412087, 0.004748191, 0.0050555067, 0.007443111, -0.018898208, 0.033878986, 0.016020924, -0.005136557, 0.033554785, -0.005173705, -0.0128734745, -7.2354195E-4, 0.021478305, 0.008469746, 0.026584469, 0.013319251, -0.0032487626, -0.01498078, -0.045388117, -0.015237439, 0.027908288, -0.0035729634, -0.028961942, 1.4774778E-4, 0.0029887264, -0.02665201, -0.015264456, -0.017182644, 0.04017389, 0.018519973, 0.028043373, 0.006419852, 0.01854699, 0.008699389, 0.022667041, -0.024450146, 0.0011515884, -0.0057782046, -0.004491532, -0.040849306, 0.021559356, -1.919402E-5, 0.008719652, 0.01283295, 0.0012537454, -2.053694E-4, 0.0036844073, -0.01021908, -0.015602165, -0.0031069247, 0.0033686492, -0.012225073, -0.0056971544, -0.019924844, -0.023382984, 0.014197295, -0.022721075, 0.009131657, -0.012961279, 0.01236691, 0.0040592644, 0.0048630126, 0.004434122, -0.02334246, -0.03474352, 0.006696773, -0.017560879, 0.0077605573, -0.01638565, 0.038444817, -0.011840085, 0.0224374, 0.0032605822, -0.018776631, 0.008057741, 0.0061800783, 0.009462612, -0.014832188, -9.759796E-4, -0.015683215, -0.03187975, -0.0029684638, 0.008030725, -1.2991251E-4, -0.011981922, 0.004194348, -0.010401444, -0.013224692, -3.4340806E-4, -0.013258463, -0.017520353, 0.019371, 0.030772062, 0.009010081, 0.010286623, 0.021856539, 0.016817918, 0.01407572, -0.015115864, 0.01109037, 0.013400301, 0.005248001, -0.021140596, 0.017344745, -0.014008177, -0.021302696, -0.0077538034, 0.023977352, 0.05514116, -0.0106175775, -0.0010105948, -0.015696723, 0.0013229758, -7.0496794E-4, -0.093585975, -0.0015348883, 0.015359014, 0.041740857, -0.026287284, 0.025773967, -0.0066866423, 0.016304601, -0.014629562, 0.02524714, 0.005724171, -0.044010263, 0.021964606, 0.007598457, 0.010077243, -0.006031486, -0.0070243515, 0.0022677174, -0.018195773, 0.027435495, -0.0073553063, -0.0065110335, 0.0063624415, -0.027016737, -0.012650587, 0.014859205, -0.018763123, 0.013771781, 0.02161339, 0.014170278, 0.001759465, -0.018736107, 0.019357491, -0.037039947, -0.014697105, -0.027719172, -0.012069726, -0.021734964, 0.0024906055, -0.031663615, 0.003978214, 0.0025497044, 0.0144134285, -0.01903329, -0.0195331, -0.003930935, -0.036877844, 0.026408859, 5.5933086E-4, -0.025530815, -0.002748953, -0.012610061, -0.038120616, -9.489629E-4, 0.018952241, 0.026246758, 0.02400437, 0.013825814, -0.0034648965, -0.015237439, -0.0019705333, -0.005349314, -0.034230206, 0.006359064, 0.007942921, 0.027489528, 0.004548943, -0.005170328, -0.0020279437, -0.014521495, -0.022558974, 0.019884318, -0.0313124, 0.0011473671, -0.017439304, 0.015872333, -0.0054438724, -0.023126327, 0.019681692, -0.023004752, 0.013521876, -0.03558104, 0.018479448, -0.01548059, -0.0068149716, 0.013778536, 0.009800321, 0.021897065, -0.003061334, -0.0379315, -0.005325674, 0.022275299, 0.005136557, 0.0033737149, -0.01013803, 0.028448623, 0.0144134285, 0.008037479, 0.008888506, 0.0028249375, -0.015926367, -6.4460246E-4, -0.069162846, 0.030204711, -0.022288807, -0.0073620607, -0.0094896285, -0.0015855447, -0.0019350738, -3.4214163E-4, -0.006527919, 0.015169897, 0.0028823481, 0.012846458, -0.0021528963, 0.0075106528, -0.009145165, 0.017560879, -0.002715182, -0.004410482, -0.01233314, 0.014170278, -0.020262552, -8.7044545E-4, 0.015845316, 0.0065853293, -0.0019300081, -0.006652871, -0.010597315, 0.014062211, -0.03690486, -0.0046333703, 0.032393068, -0.011650967, -0.0044847783, -0.0020144354, -0.008402205, -0.018276822, 0.0010181932, 0.004920423, 0.02705726, 0.0012799179, -0.0048630126, -0.02127568, 0.004491532, -0.0224374, -0.015115864, 0.009138411, -0.032176934, 0.0118535925, 0.0046772724, 0.020924462, 0.028340556, 0.01814174, 0.010658102, -0.020059926, 0.032798316, -0.01039469, 0.0524665, 0.011765788, -0.0073080272, -0.018276822, 0.021748472, 0.017749995, 0.013346268, -0.011360537, 0.0041673314, -0.002365653, 0.016615292, -0.007902395, -0.012900491, -0.028205473, -0.0011363914, -0.009631466, 0.018060688, 0.042767495, 0.017115103, 0.017560879, -0.0060483715, -0.014048703, 0.001181138, 0.024044896, 0.013731256, -0.013163905, -0.0393904, 0.015993908, -0.010252851, 0.010320393, 0.016871952, 0.006423229, 0.022329332, 0.0060483715, -0.0026324433, 0.0085643055, 0.023612628, 0.0013516811, 0.011137649, 0.021721456, -0.015075339, 0.0014209115, 7.518251E-4, 0.023950337, -0.0024129322, 0.0015272899, -0.010124522, -0.022748092, -0.023950337, 0.005602596, -0.025882034, -0.013197675, 0.0039849686, 0.032933403, 0.02440962, 0.009671992, -0.02565239, 0.0056397435, -0.039849687, 0.021424271, -0.0018286953, -0.0068588736, -0.0075376695, 0.032987434, 0.018668564, 0.0029262502, 0.035932258, -0.014048703, 0.051466882, -0.0057680733, 0.009084377, -0.0313124, 0.009577433, 0.0029650868, -0.019573625, 0.005200722, -0.019154865, 0.004839373, -0.009942159, -0.0031829092, -0.00587614, 0.0379315, -0.019262932, 0.06597487, 0.025058022, 0.006906153, 0.023058785, -0.015088847, 0.0068757595, 0.020735346, 0.011549654, -0.0020110584, 6.243399E-4, -0.007814591, -0.015196914, 0.00614293, -0.042416275, -0.0064097205, 0.009226215, 0.025382223, 0.00616657, -0.016669326, -0.010867482, -0.0012022448, -0.012630324, 0.01945205, 0.019262932, -0.010300131, -0.012434453, 0.014724121, 0.0032183686, -0.016264075, -0.02473382, 0.02201864, -0.023234393, -0.015196914, -0.003253828, 0.030339794, -0.0019063684, 0.008584568, 0.0077740657, 0.026003608, 0.004616485, -0.019762743, -0.0027793467, -0.022072673, -0.0076254737, 0.020397635, -0.0074566193, -0.01664231, -0.032230966, -0.011887364 ], + "id" : "033ce5a0-257a-4410-bf0a-10ee7f00aa04", + "metadata" : { + "source" : "movies.csv" + } + }, + "848b8ace-dc58-4f27-8b45-030f2cb79157" : { + "text" : "49051,The Hobbit: An Unexpected Journey,Adventure-Fantasy-Action,en,Bilbo Baggins a hobbit enjoying his quiet life is swept into an epic quest by Gandalf the Grey and thirteen dwarves who seek to reclaim their mountain home from Smaug the dragon.,81.291,Warner Bros. Pictures-Metro-Goldwyn-Mayer-New Line Cinema-WingNut Films,11/26/12,250000000,1021103568,169,Released,From the smallest beginnings come the greatest legends.,7.323,16761,Martin Freeman-Richard Armitage-Ian McKellen-Graham McTavish-Aidan Turner-Ken Stott-Dean O'Gorman-James Nesbitt-Mark Hadlow-Stephen Hunter-William Kircher-John Callen-Peter Hambleton-Jed Brophy-Adam Brown-Ian Holm-Elijah Wood-Hugo Weaving-Cate Blanchett-Christopher Lee-Andy Serkis-Sylvester McCoy-Barry Humphries-Jeffrey Thomas-Michael Mizrahi-Lee Pace-Manu Bennett-Conan Stevens-John Rawls-Stephen Ure-Timothy Bartlett-Bret McKenzie-Kiran Shah-Benedict Cumberbatch-Glenn Boswell-Thomas Robins-Luke Evans-Dan Hennah-Stephen Gledhill-Tim Gordon-Sonia Forbes Adam-Oscar Strik-Erin Banks-Brian Hotter-Eric Vespe-Mervyn Smith-Ruby Acevedo-Katie Jackson-Isaac Miller-Ella Olssen-Louis Ashbourne Serkis-Sonny Ashbourne Serkis-Ruby Ashbourne Serkis-Terry Notary-Peter Jackson,riddle-elves-dwarf-orcs-based on novel or book-mountain-burglar-sword-horseback riding-legend-travel-creature-thunderstorm-fantasy world-wizard-epic battle-lost ring-journey-goblin-giant-tunnel-underground lake-buried treasure-climbing a tree-invisibility-ancient-quest-high fantasy-trolls-elfen-epic fantasy-good vs evil-fantasy creature,/yHA9Fc37VmpUA5UncTxxo3rTGVA.jpg,/xyXmtuvsoM5J3yNad0nvcetpBdY.jpg,57158-122917-121-120-122-37724-49026-68721-24428-70160-19995-49521-1930-1865-58-12444-22-87827-10195-1726-285\r\n155,The Dark Knight,Drama-Action-Crime-Thriller,en,Batman raises the stakes in his war on crime. With the help of Lt. Jim Gordon and District Attorney Harvey Dent Batman sets out to dismantle the remaining criminal organizations that plague the streets. The partnership proves to be effective but they soon find themselves prey to a reign of chaos unleashed by a rising criminal mastermind known to the terrified citizens of Gotham as the Joker.,126.226,DC Comics-Legendary Pictures-Syncopy-Isobel Griffiths-Warner Bros. Pictures,7/16/08,185000000,1004558444,152,Released,Welcome to a world without rules.,8.513,31145,Christian Bale-Heath Ledger-Michael Caine-Gary Oldman-Aaron Eckhart-Maggie Gyllenhaal-Morgan Freeman-Nestor Carbonell-Monique Gabriela Curnen-Ron Dean-Chin Han-Eric Roberts-Ritchie Coster-Anthony Michael Hall-Keith Szarabajka-Joshua Harto-Melinda McGraw-Nathan Gamble-Michael Jai White-Colin McFarlane-Nydia Rodriguez Terracina-Tommy Lister Jr.", + "embedding" : [ 0.0045819976, -0.042672545, -0.030665923, -0.033926, -0.021786854, 0.03132854, -0.00839536, -0.01289453, -0.015690776, -0.02928768, 0.034827158, 0.024715621, 0.027882932, -0.007706238, 0.013338484, 0.015253447, 0.017731635, -0.01043622, 0.011039202, -0.025192706, -0.014458307, 0.012086137, -0.022343451, 0.015346214, 0.0131198205, 0.0070767514, 0.023059078, -0.007679733, -0.012689119, 0.007991163, 0.004856984, -0.004313638, -0.015332961, -0.013769185, -0.018964104, -0.0033892868, 0.003776918, -0.017294308, 0.024424069, -0.025948089, 0.019878516, 0.00183048, -0.012576474, -6.290722E-4, -0.016154606, 0.007818882, 0.014458307, -0.02142904, -0.0125698475, 0.012815016, 0.003374378, 0.03832578, -0.026703473, -0.017426832, -0.019944778, -0.0020955268, -0.004784096, 0.00732192, 0.024901154, 0.0063081156, -0.013497512, -0.016154606, -0.02618663, -0.010926558, -0.02867807, -0.018752066, -0.0101247905, -0.020686908, -0.007176144, -0.002443401, 0.017506346, 0.020368852, 0.018460514, 0.007129761, 0.011582549, -0.04084372, -0.033952504, 0.004091661, -0.010694642, 0.008832687, 0.013835447, -0.0028144664, -0.008355603, 0.007639976, 0.0042506894, 0.02255549, -0.012742128, 0.0011264492, -0.034297064, 0.0027912748, 0.008521257, 0.016936496, 0.011569296, 0.018394252, 0.002667034, 0.020739919, -0.0150679145, 0.02793594, -0.027326332, -0.028174482, 0.013610157, -0.0044561005, 0.0014867473, -0.006911097, -0.0055262274, -7.99282E-4, 9.426765E-5, -0.007971285, 0.017665373, -0.0027349524, -0.008017668, -0.006589728, 0.01504141, -0.027405847, -0.029446708, -0.005254554, 0.022595245, -0.019626722, 0.0068117045, -0.033289887, 0.0282805, 0.031169511, 0.020686908, -0.025457753, 0.03207067, 0.029897287, -0.0040320256, -0.021415787, 0.00950193, -0.004247376, 0.025656536, 0.004979568, 0.018089449, 0.0016499168, -0.02464936, 0.053221412, -0.023112087, 0.0012101047, -0.03246824, -0.030692428, 0.02798895, 0.031540576, -0.024834892, -0.02380121, -0.02001104, -0.0010071781, 0.0136499135, -0.0018089449, 0.030586408, -0.0073484243, 0.026796238, 0.0126758665, 0.02284704, 0.02793594, 0.009753725, -0.0066858074, 0.017996682, -0.006278298, 0.0011537821, -0.016366644, -7.056873E-4, 0.008329098, -0.0023324124, -0.012384315, 0.0015389284, 0.014829372, 0.023562666, -0.013663166, -0.003334621, 0.0068448354, -0.013093315, 0.017903917, -0.008183322, 0.022966312, 0.00817007, 0.027697397, -0.0039591375, -0.023416892, -0.01973274, -0.022157919, 8.448369E-4, 0.008905575, 0.02968525, 0.035595793, -0.014537821, 0.010528987, 0.014537821, -0.01009166, 0.010297071, -0.0082297055, -0.015054663, 0.027167303, -0.016963, -0.0012722249, -0.6496829, -0.0149088865, 0.0013202648, -0.026451677, 0.005831031, 0.008720042, 0.0011314189, 0.017175037, -0.0234699, -0.027750408, -0.021932628, 0.016644944, 0.034032017, -0.028545547, -0.02437106, 0.0052247364, 0.0067189382, -0.012781885, 0.011350633, -0.0035450018, -0.028810594, 0.030612914, 0.0031755927, -0.021482049, 0.0019348422, 0.012781885, -0.01119823, -0.029897287, 0.010966314, -0.0015521807, -0.0073417984, 0.008176696, 0.028519044, 0.011662062, 0.03172611, 0.00651684, -0.022833789, 0.040631685, 0.0344826, 0.029181661, -0.022038648, -0.013994475, 0.008600771, 0.0038067356, -0.023324125, 0.02618663, 0.019467693, -6.638596E-4, 0.014537821, -0.0032451677, -1.6710378E-4, -3.3027325E-5, -0.008355603, -0.01781115, 0.0040320256, 0.016817223, 0.016989505, -0.039836545, 0.024874648, 1.0353394E-4, -0.02307233, 0.03228271, 0.00450911, 0.015876308, -0.01571728, 0.034005515, -0.0030281604, -0.012039755, 0.0054168953, -0.03397901, 0.010032024, 0.006092765, -0.010138043, 0.0015066258, 0.010157921, 0.009488678, 0.025921583, 0.011416894, 0.002471562, 0.008408612, 0.021747096, -0.013782437, -0.020739919, 3.47874E-4, 0.038935386, -0.0074345646, -0.015902812, -0.005059082, -0.0010825509, 0.015743785, -0.011390389, 0.0048934277, 0.006086139, 0.011211483, -0.010131417, 8.7796774E-4, -0.0021154054, 0.01396797, 0.022475975, -0.048662607, -0.00763335, -0.010919931, 0.012086137, 0.0075405836, 0.009760351, 0.013782437, -0.002562672, -0.019202646, 0.017652122, -0.008136939, 0.0019663165, 2.2052728E-4, -0.014034232, -0.0015306456, 0.0024549966, -0.025431247, 0.017095523, -0.009826613, 0.012616231, -0.010475977, 0.014166756, 0.005907232, 0.010025398, -0.0037504132, -3.3482874E-4, 0.025471004, -0.011688567, -7.4461603E-4, 0.006347873, -0.00950193, 0.003243511, 0.0038729974, 0.009707342, -0.00901822, -0.004890115, 0.011575922, 0.016022084, -0.008614023, 0.004989507, -0.0069508543, -0.020647151, -0.009349529, -0.01343125, -0.022131413, 0.0016697953, -0.019639973, -0.033793475, -0.0015521807, 0.0054135825, 0.001107399, -0.018089449, 0.007381555, -0.001931529, 0.00763335, -0.0032633897, -0.003624516, -0.03132854, -0.013186082, 0.034853663, -0.014630587, 0.0025527326, 0.011761455, 0.0055030356, -0.026425174, 0.010820539, -0.015134176, -0.023310872, 0.0152667, 0.012801764, -0.025696294, 0.01791717, -0.012848147, 0.0039260066, 0.020554384, -0.016141355, 0.015120924, -0.013954718, 0.011867474, 0.011138595, -1.5706097E-4, -0.004979568, 0.001678078, -0.017095523, -0.0010353393, 0.036523458, 0.014511316, 0.0016722801, -0.01888459, -0.004254002, 0.0036311422, -0.006357812, -0.016525673, 0.005128657, -0.0067454427, 0.005324129, 0.028200988, 0.0072954153, 4.169829E-5, -0.0019580338, 0.014657092, 0.04834455, 0.017824402, 0.0028790717, -0.011569296, 0.006414134, -0.040472656, 0.0028244057, -0.0153859705, 0.010555492, -0.026213136, 0.025179453, -0.019772496, -0.016353391, 0.0028939806, 0.004426283, 0.03535725, -0.016843729, 0.00972722, -0.01634014, -0.0047675306, 0.0043368293, -0.014988401, 0.02838652, 0.01843401, -0.026902257, -7.408888E-4, 0.00853451, -0.0075472095, -0.008527883, 6.754554E-4, 0.009528435, 0.0018470454, 0.0061457744, -0.02127001, -0.022568742, 0.002782992, 0.025749303, -0.012788512, 0.048212025, -0.008945332, -0.008289341, 0.012072885, 0.026650462, -0.012602978, -0.0075405836, -0.009992267, 0.0060298163, 0.023655433, 0.005334068, 0.04044615, -0.012775259, 0.013524016, 0.002983434, 0.0049497504, 0.022754274, -0.0059536155, 0.004104913, 0.017837655, 0.025351733, 0.027750408, 0.016300382, -0.017347317, 0.022250684, -0.0018437323, 0.024689116, 0.008176696, -0.008236332, 0.011827717, -6.187188E-4, -0.033051345, -0.00584097, -0.013848699, -0.0047343997, 0.0064903353, -0.007984537, -0.0071165087, -0.013729428, 0.021680834, 0.011516287, 0.031302035, 0.004714521, -0.029102147, 0.008766425, 0.005672003, -0.005860849, -0.024927659, -0.004396465, -0.015306457, -0.033051345, -0.00887907, -0.009899501, 0.022833789, 0.0014039201, -0.009429042, -0.009077855, 0.004429596, 0.0039558248, -0.010528987, 0.009422416, 0.031461064, -0.009621201, 0.005645498, -0.005290998, -0.014392045, 0.024622854, -0.00862065, 0.0054135825, 2.8513247E-4, -0.0114367725, 2.9817773E-5, -0.003185532, 0.020382104, -0.037848692, 0.004598563, -0.011184978, 5.6653767E-4, -0.002657095, 0.0054102694, 0.010820539, 0.0029950296, -0.0114367725, -0.035330746, -0.021177245, 0.0050392034, 0.073524006, 0.028969623, -0.004475979, -0.0056620636, -0.004671451, 0.00938266, -0.01651242, -0.00958807, -0.009872996, 0.0017725009, 0.040393144, -0.01133738, 0.023324125, 0.01916289, 4.1061558E-4, -0.008865817, -0.007103256, -0.011489782, -0.0016731084, -0.031036988, -0.037822187, -0.0131198205, 0.013702923, 0.029393697, -0.007070125, -0.024516836, 0.015412476, -0.0038266142, -0.0060795126, 0.013702923, 0.0036907776, 0.003969077, -0.009713968, -0.0018503584, 0.0101777995, 0.0041479836, 0.009621201, 0.010515735, 0.01628713, 0.0011107121, -0.0010510765, 0.0019232463, 0.017122028, -0.008435117, 0.012735502, -0.027485361, -0.0126228575, 0.013981222, 0.043971278, -0.034641627, 0.026146874, 0.011741577, -0.022025395, 0.0062749847, 0.016485915, -0.006672555, -0.00789177, -0.005473218, -0.020461619, -0.013941466, 0.006480396, -0.033634447, 0.029022632, -0.007918275, -0.020236328, -0.00986637, -0.026822744, -0.015107672, -0.011284371, 0.030268352, -0.010065155, -0.021972386, -0.0072954153, -0.014657092, 0.013146325, -0.017122028, 0.023284368, -0.0018901156, 0.0028890108, 0.015757037, -0.03177912, -0.036046375, 0.0023771392, -0.01639315, -0.005738265, 0.008514631, -0.011277745, 0.009369407, -0.017956926, 0.0019530641, 3.853533E-4, 9.955823E-4, -0.018950852, -0.026756482, 0.026782986, 0.0046548857, 0.008415238, 0.015306457, 0.021853115, -0.007646602, 0.01102595, -0.017625617, -0.005738265, -0.03326338, 0.0041479836, -0.014126998, -8.7879604E-4, 9.674211E-4, -0.0092567615, -0.028492538, -0.029605735, -0.023893975, 0.01414025, 0.0048039746, 0.015293204, 0.0046880166, 0.025007172, -9.086138E-4, 0.0070767514, -6.3445594E-4, -0.0042705676, -0.011118717, 0.0060894517, 0.027127547, -0.014153503, 0.029340688, 0.00972722, -0.014590831, -0.003737161, 0.030241849, 0.004747652, 0.001946438, -0.015757037, 4.000551E-4, -0.028174482, -0.022316946, 0.02070016, -0.010707893, -0.021057975, 0.014776363, -0.021906124, -0.005860849, 0.015863055, 0.006450578, -0.012821643, -0.030612914, 0.01803644, -0.014604082, -0.0018387627, 0.03761015, -0.0061225826, 0.007918275, -0.032335717, 7.280506E-4, -0.008130313, -0.040552173, -0.022475975, -0.018102702, 0.024265042, 0.018911093, 0.041082267, -0.003909441, 0.04100275, 0.010191052, 0.006185531, 0.019944778, -0.0119138565, -0.00695748, -0.047231354, 3.4124785E-4, 0.012424072, 0.028121473, 0.003501932, -0.0034290438, 0.012006624, -6.949198E-4, 0.0067222514, 0.028015455, -0.0034422963, -0.01917614, -0.015240195, -0.008083929, -0.025696294, 0.008766425, -0.035304245, -0.018089449, 0.035701815, 0.0023075643, 0.005632246, -0.012291549, 0.030135829, -1.01100886E-4, 0.017983431, -0.023337377, 0.01611485, -0.02838652, -0.004671451, -0.036152393, -0.0068580876, -0.0031408055, 0.0044097174, 0.017705131, -0.012417446, -0.014511316, 0.011662062, 0.015558251, -0.018897843, -0.026597453, 0.021163993, -0.013113194, -0.012384315, -0.037424617, 0.004280507, -0.020726666, -0.0049630026, 0.0045323013, -0.01673771, 0.011012698, -0.027048033, -0.03432357, 0.024026498, -0.018725561, 0.04463389, 0.012265044, 0.04341468, 0.0046880166, 0.005519601, -0.022489227, 0.010648258, -0.010303698, -0.014339035, 0.030321361, 0.0023406951, -0.00771949, -0.014246269, -0.016976252, -0.004611816, -0.023006069, -0.0265842, 0.031143008, 0.014180007, 0.017148532, -0.013139699, 0.005787961, -0.02968525, 0.015478738, 0.0013194365, 0.015624513, 0.017413579, -0.023774704, -0.014736606, -0.014736606, -0.0040353388, 0.013020428, 0.006622859, -0.019361675, 0.02782992, -0.00839536, -3.389701E-4, -0.029764764, -0.015200438, 0.033342898, -0.025855321, 0.02702153, 0.012662615, 0.016764214, -0.0015911096, -0.002761457, 0.0013368302, 0.031196017, -0.015452232, 0.0069508543, -3.511871E-4, 0.0034555485, 0.0026869127, 0.021680834, -0.019441187, -0.010098286, -0.0503324, -0.005208171, 0.023907227, 9.301489E-4, -0.0018768632, 0.0033909434, -0.015823299, -0.007288789, -0.0033926, 0.0027018215, 0.017122028, -0.03127553, 0.013451128, -0.0065466575, -0.0039525116, 0.008508004, -0.004320264, 0.013371615, 0.0030728872, 0.01815571, -0.004505797, -0.003945885, -0.0025924898, -0.011986745, -0.02464936, -0.027379341, -0.0017244612, -0.02437106, 0.014630587, -0.017400326, 0.0040982873, -0.010528987, -0.01758586, -0.019414684, 4.6093308E-4, -0.021455545, -1.7352287E-4, 0.026398668, -0.009912753, -0.0023937046, 9.251792E-4, 0.026544444, 0.018632796, 0.0028790717, 0.011768081, 0.0048139137, 0.029022632, -0.010906679, 0.02002429, -0.0076664807, -0.025073433, -0.009210379, 0.0058442834, 0.031540576, 0.0035317496, 8.6761436E-5, -0.03583434, 0.0011612365, -3.8866638E-4, 0.029950297, -0.030824952, 0.008872444, 0.028174482, 0.011410268, 0.029605735, 0.023668686, -0.022343451, -0.017214794, 0.001397294, -0.0076664807, -0.023310872, 0.0023688565, 1.7290167E-4, 0.015452232, -0.00932965, -0.0030911092, -0.017466588, 0.0039856425, -0.02556377, -0.028996129, -0.0062352275, 0.021336272, 0.044686902, 0.008090556, -0.006347873, 0.008355603, -0.0060198773, -0.0015173934, -0.02573605, -0.0053406944, 0.009316398, 7.3426263E-4, 0.01820872, 0.024795135, -0.034297064, -0.009992267, 0.008488126, 0.0106217535, -9.488885E-5, 0.029075641, -0.017678626, -0.0271408, 8.614023E-4, -0.0033776911, 0.013471007, -5.21811E-4, 0.03766316, -0.014233017, -0.0026339032, 0.0014900604, 0.020713413, -0.0033395905, -0.008216453, 0.0067752604, -0.011628931, 0.010316949, -0.013676419, -0.025205957, -0.007885144, -0.028466035, 0.024397565, 0.009289892, 0.0046018763, 0.02030259, 0.016578682, -0.003472114, 0.013351737, 0.0041082264, 0.0036841515, -0.016366644, -0.013623409, -0.0070104897, 0.011430146, -0.029764764, 0.008136939, -0.009448921, -3.3027324E-4, -0.004711208, 0.023178348, -0.020156814, 0.037795685, 0.009323023, -0.044077296, 0.0051949187, -0.014100494, 0.002047487, 0.010568744, -0.013663166, -0.029261174, 0.0035317496, -0.003395913, -0.0037205955, -0.023840966, -0.014577578, 0.003627829, -0.018049693, -0.006142461, 0.00865378, 0.1798078, -0.02556377, 0.017864158, 0.039889555, 0.015081167, 0.035754822, 0.010701267, 0.0067189382, -0.014259522, -0.0032534504, -0.016167859, 0.011118717, -0.013510765, 0.0070436206, 0.004124792, -0.016432906, -0.026716724, -0.01718829, -0.011032576, -0.038590826, -0.006172279, -0.010164548, -0.016260626, -0.013192708, 0.009786855, -0.010588623, -0.014736606, -0.009468799, 0.034509104, 0.004701269, -0.009568192, -0.008898948, -0.0114367725, 0.0013716175, -0.01883158, 3.9901977E-4, 0.008329098, 0.0023274429, -2.2404743E-4, 0.0052644936, 0.013808942, 0.010363333, -0.010204305, -0.009395911, 0.010509108, 0.01419326, -0.018301487, -8.0922124E-4, -0.021349525, 0.004164549, -0.020355599, -0.013524016, 0.036364432, 0.024212033, -0.009912753, -0.019971281, -0.0019182768, -0.012086137, -0.004124792, -9.168965E-4, 0.012483708, 0.034270562, -0.020236328, 0.020276086, -0.006556597, 0.027193809, -0.0322297, 0.00566869, 0.015412476, -0.02646493, -0.006106017, -0.008759799, -0.03397901, -0.0034489224, -0.005483157, -0.01142352, 0.012125894, 0.0016548864, 0.008905575, 0.018301487, -0.017002758, -0.03970402, 0.019997787, -0.015902812, -0.015028157, -0.016247373, -4.4229697E-4, -0.019785749, -0.008428491, -0.009389285, -0.0010742681, -0.0030546652, -0.0049298718, 0.003892876, 0.005138596, -0.0056620636, 0.018540028, 0.025881827, -0.009740473, -0.013146325, -0.027167303, 0.036152393, 0.0063511855, -0.008196575, -0.019838758, -0.0096477065, -0.0030828265, 0.014484812, 0.023032574, -0.019030366, 0.008183322, -0.038829368, -0.0070436206, -0.009508557, 0.005565984, 0.010356707, -0.0028823847, 0.0071960227, 0.021336272, -0.027670894, 6.1374914E-4, -0.029738259, 0.019533955, -0.006404195, -0.010065155, -0.023589171, -0.019427937, 0.010045276, 0.003551628, -0.025272219, 0.0018636108, -0.043679725, -0.004204306, -0.005599115, 0.013543895, 0.033395905, 0.0013177799, 0.0014544447, 0.0118741, 0.012337931, 0.001812258, -3.3358633E-4, -8.183322E-4, 0.012543343, -0.008488126, -0.02703478, 0.0149088865, -0.0066659288, -0.0071562654, -0.023456648, -0.02878409, -0.011907231, -2.0427245E-4, 0.0045720586, 0.05197569, 0.014166756, -0.00258752, -0.045057967, 0.00173937, 0.048768625, -0.04004858, 0.029552726, 0.013861951, -0.016194364, -0.02030259, -0.0049265586, -0.1685698, 0.018566534, 0.01803644, -0.035966862, 0.02323136, 0.0044892314, 0.0084815, 7.6697936E-4, 0.0060066245, -0.02052788, 0.02042186, 0.0080706775, -0.049245708, 0.0059999987, 0.0022976252, 0.006877966, 0.001284649, 0.04230148, 0.031408053, -0.0014594144, 0.027856426, 0.005761456, -0.019255655, 1.5799278E-4, 0.024781883, 5.0151837E-4, 0.029738259, 0.018049693, -0.003236885, -0.021813357, -0.04399778, 0.0024616227, 0.0015289892, -0.0018155711, -7.661511E-4, 0.012788512, -0.015478738, -0.005430148, -2.3833511E-4, -0.014988401, 0.030612914, 0.012841521, 0.032945327, 0.016247373, -0.0034290438, 0.016618438, 0.021110984, -0.0060894517, -0.0031192703, -8.887353E-4, -0.0016118162, -0.029897287, 0.0136499135, -0.005681942, -0.0054202084, 0.026160127, -4.2573153E-4, -0.010237436, -0.0070436206, -0.014683597, -0.024225283, 0.0018205408, 0.016485915, -0.0011811152, -0.0099657625, -0.026252892, -0.014975148, 0.014047484, -0.024172274, 0.0049033673, -0.026676968, 0.010277192, 0.012477081, 0.016247373, 0.009833239, -0.014696849, -0.020170067, -6.3611247E-4, -0.014458307, 0.010926558, -0.019971281, 0.050358906, -0.024424069, 0.014060737, 0.02464936, -0.017665373, -0.0043633343, -0.005244615, -0.0038299272, -0.0048337923, 0.013371615, -0.01956046, -0.032335717, -0.003859745, 0.009886248, 0.013928213, 0.0031524012, -0.0056123673, 0.01035008, -0.011078959, -0.020262834, -0.012967418, -0.00771949, 0.020885693, 0.032547757, 0.017970178, 0.022237433, 0.017175037, 0.022157919, 9.806735E-4, -0.0064671435, 4.0171167E-4, 0.02058089, -0.0013542238, -0.015518494, 0.0035681934, -0.017903917, -0.027326332, -0.0037669786, -0.003707343, 0.03795471, -0.004585311, 3.337934E-4, -0.011834343, -0.007036994, -0.013265596, -0.09096409, 0.0065599103, -0.0034555485, 0.032839306, -0.02210491, 0.024781883, -0.018513523, 0.016671449, -0.0069641066, 0.027299827, -0.030029811, -0.016989505, 0.017294308, -0.003819988, 0.035754822, -0.006218662, -0.011927109, -0.010919931, -0.0106217535, 0.030268352, -0.0039922683, -0.014339035, 0.009336276, -0.015796794, -0.03686802, -0.0025643285, -0.028731082, 0.02674323, 0.002801214, 0.0050292644, 0.019639973, -0.027485361, 0.019189393, -0.03132854, -0.020898946, -0.016260626, -0.007070125, -0.022608498, 0.026001098, -0.050411914, 0.016803972, 0.0147498585, 0.0058939797, -0.011032576, 2.7664268E-4, -3.4518214E-4, -0.0327863, 0.027856426, -0.0044461614, -0.023019321, -0.008998341, -0.014113746, -0.028598558, -0.014180007, 0.013835447, 0.023575919, 0.024728874, 0.012980671, 0.00308117, 0.002782992, 0.002715074, -0.0031689666, -0.019745992, 0.015293204, 0.0057780216, 0.0066195456, 0.0100187715, -0.008196575, 0.017665373, -0.013272222, -0.013020428, 0.033554934, -0.028200988, -0.017546102, -0.02521921, 0.011609053, -0.02407951, -0.011450025, 0.022383207, -0.028598558, -0.015544999, -0.034906674, 0.012165652, -0.021071225, 0.004886802, 0.021018216, 0.01571728, 0.0018238538, -0.006357812, -0.04190391, 0.012503586, 0.02702153, 0.0074213124, -0.004585311, -0.014233017, 0.039279945, 0.03318387, 0.022065151, 0.013053559, 0.00633462, -0.0041943667, -0.0037702918, -0.06567861, 0.02878409, -0.0035549412, -0.015372719, -0.0100187715, -0.0033097728, 0.012377689, -0.0071231346, -6.843593E-5, 0.028492538, -0.011840969, 0.024609601, -0.008223079, -0.005715073, -0.018990608, -0.0025543892, -0.014153503, -0.005990059, -0.019268908, 0.010542239, -0.024450574, -0.0043765865, 0.016552176, 0.009581445, -0.015624513, 0.015478738, 0.012636109, 0.015332961, -0.012662615, -0.017373823, 0.035754822, -0.026756482, -0.00486361, -7.450302E-4, -0.023814462, -0.019745992, -0.012145773, -0.004621755, 0.03546327, 0.022913301, -8.1377674E-4, -0.002040861, 0.0050425166, -0.025192706, -0.005049143, 0.018818328, -0.024106013, 0.018248478, 0.020912198, 0.0067222514, 0.024781883, 0.0136499135, 0.013311979, -0.019494198, 0.00839536, -0.017824402, 0.043229144, 0.007646602, 0.003008282, -0.015849803, 0.03008282, -0.0038332404, 0.021190498, -0.031089999, 0.0031109876, 0.010449473, 0.014577578, 0.0029188287, -0.0028144664, -0.026796238, 0.009674211, -0.015743785, 0.01820872, 0.021455545, 0.020315843, 0.022979563, -0.009177248, -0.0024566532, -0.005665377, 0.010774155, 0.028333511, -0.022343451, -0.02182661, 0.010051902, -0.0035218103, 0.028333511, -0.0011347319, 0.0060397554, 0.0053075636, 0.012768633, -0.026027603, 0.0023324124, 0.004210932, 0.018553281, 0.015505242, 0.026054107, -0.011264492, -0.010429595, -0.013464381, 0.025298724, -0.011695193, 6.7379884E-4, -0.019229151, -0.009402538, -0.012735502, -0.013782437, -0.005105465, -0.03623191, 0.018129205, 0.020845937, 0.018142458, 0.0041778013, -0.012735502, 0.011178352, -0.040393144, 0.03535725, -0.0031176137, -0.019374926, -0.011522912, 0.041267797, 0.014325784, 0.01343125, 0.022436218, -0.016578682, 0.06880617, 0.008461622, 0.019467693, -0.0075405836, -0.0018089449, 0.008567641, -0.010840417, 0.011350633, -0.020156814, 0.00910436, 0.011589174, -0.014325784, -0.005327442, 0.043176137, -0.020488122, 0.066579774, 0.021919377, -0.0010933183, 0.02838652, -0.014882382, -9.773603E-4, 0.008932079, 0.01651242, -0.0018602978, -0.008971836, 0.008322472, 0.008276088, -0.005562671, -0.03662948, -0.016154606, 0.004588624, 0.014617335, -0.010389837, 0.0045621195, -0.012053006, 0.0024699054, 0.0021253447, 0.016697953, -0.003139149, -0.014630587, -0.0121987825, 0.044872437, -0.001476808, -0.008826061, -0.031222522, 0.0063114287, -0.025577024, 0.0017493094, 0.012152399, 0.04659524, 0.0029734946, 0.008415238, -0.015611261, 0.015651017, -0.0024334616, -0.010323576, 0.010336828, -0.016843729, -0.009031472, 0.010893427, 0.0011976806, -0.007036994, -0.02336388, -0.020276086 ], + "id" : "848b8ace-dc58-4f27-8b45-030f2cb79157", + "metadata" : { + "source" : "movies.csv" + } + }, + "58018f02-bc71-450a-b9ec-097400d468fb" : { + "text" : "038,9833,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Jada Pinkett Smith-Gloria Foster-Harold Perrineau-Monica Bellucci-Harry Lennix-Lambert Wilson-Randall Duk Kim-Nona Gaye-Anthony Zerbe-Daniel Bernhardt-Helmut Bakaitis-David Kilde-Matt McColm-Collin Chou-Neil Rayment-Adrian Rayment-Don Battee-Valerie Berry-Steve Bastoni-Ian Bliss-Liliana Bogatko-Michael Budd-Stoney Burke-Kelly Butler-Josephine Byrnes-Noris Campos-Paul Cotter-Marlene Cummins-Attila Davidhazy-Essie Davis-Terrell Dixon-Nash Edgerton-David Franklin-Daryl Heath-Roy Jones Jr.-Austin Galuppo-Malcolm Kennard-Christopher Kirby-Peter Lamb-Nathaniel Lees-Tony Lynch-Robert Mammone-Joshua Mbakwe-Chris Mitchell-Steve Morris-Tory Mussett-Rene Naufahu-Robyn Nevin-David William No-Genevieve O'Reilly-Socratis Otto-Monta��o Rain-Rupert Reid-Cornel West-David Roberts-Shane C. Rodrigo-Nick Scoggin-Kevin Scott-Tahei Simpson-Frankie Stevens-Nicandro Thomas-Gina Torres-Andrew Valli-Andy Arness-Steve Vella-John Walton-Clayton Watson-Leigh Whannell-Bernard White-Scott McLean-Anthony Brandon Wong-Christine Anu-Ray Anthony-Rick Shuster-Tiger Hu Chen-Marcus Young-David Leitch,saving the world-artificial intelligence-man vs machine-prophecy-martial arts-kung fu-underground world-dream-hero-fight-computer virus-key-future-plato-precognition-rave-dying and death-virtual reality-dystopia-computer-faith-truth-car crash-mission-cyberpunk-woman director-action hero-gnosticism-oracle,/9TGHDvWrqKBzwDxDodHYXEmOE6J.jpg,/pxK1iK6anS6erGg4QePmMKbB1E7.jpg,605-603-607-296-2048-2501-608-36668-534-280-1271-36658-36657-954-602-218-1893-1858-558-1894-180\r\n14160,Up,Animation-Comedy-Family-Adventure,en,Carl Fredricksen spent his entire life dreaming of exploring the globe and experiencing life to its fullest. But at age 78 life seems to have passed him by until a twist of fate (and a persistent 8-year old Wilderness Explorer named Russell) gives him a new lease on life.,96.804,Pixar,5/28/09,175000000,735099082,96,Released,The greatest adventure is just getting back home.,7.", + "embedding" : [ 0.025038522, -0.023732875, -0.025147326, -0.038217407, -0.0041073514, 0.033702042, -0.010703594, -0.008649918, -0.031961177, -0.035143696, 0.02552814, 0.038489416, 0.036177333, -0.006953256, 0.012342455, 0.008819925, 0.018496681, -0.01467494, 0.007167464, -0.03171637, 0.007439474, -0.017286237, -0.024725711, -3.3554985E-4, 0.0032590202, 0.020971972, 0.037863795, -0.012430858, -0.009091935, -0.019462317, 0.014946951, -0.018347075, -0.0021896807, -0.01411732, -0.021679198, 0.0046105697, 0.01111161, -0.031253953, 0.027513813, 0.0025959956, 0.01519176, 0.02197841, -0.013756907, -0.003995147, 6.557992E-4, 0.0037809394, 0.0020536757, -0.008813125, -0.005759812, 0.034545273, 0.022672035, 0.029866701, -0.020414352, -0.021801604, -0.0037537382, 0.0014561036, -0.030900339, -1.6745616E-4, -0.0053041955, 0.006399036, 0.015341365, -0.011098009, -0.029132273, -0.019285511, -0.020006336, -0.004994784, -6.302982E-4, 4.4414136E-4, 0.018020663, 0.0069906577, 0.018197471, 0.019475918, 0.014538935, 0.006919255, 0.016823819, -0.030764334, -0.02284884, -0.006348034, -0.0141989235, -0.004226356, 0.009091935, -0.0012180948, -0.012995278, -0.0043895617, 0.021311985, 0.0014833047, -0.025541741, 0.022753637, -0.035959724, 0.010343181, -0.0013056481, 0.043984022, 0.0027898028, 0.0031553162, 0.008031096, 0.018564684, -0.01596699, 0.022277622, -0.0217064, -0.036830157, -0.005049186, -0.009377546, 0.0027847027, -0.018143069, 0.002629997, -0.002091077, 0.0019516719, -9.936866E-4, 0.024603307, 0.0074326736, 0.011968441, -0.009044333, 0.022032812, -0.041236717, -0.014552536, -0.032477997, 0.016959826, -0.012838873, -0.001985673, -0.029621892, 0.04254237, 0.02741861, 0.009486349, -0.03908784, 0.041889545, 0.043576006, -0.018374277, -0.024916118, 0.0018955698, -0.0049981843, 0.016075792, 0.0042773574, 0.034898885, 0.014416531, -0.015436568, 0.045208067, -0.024902517, 0.006953256, -0.013090482, -0.018523883, 0.041127916, 0.027337007, -0.038108602, -0.022087215, -0.03065553, 0.004780576, 0.023188854, -0.003859142, 0.026684184, 0.0020655761, 0.027758623, 0.02038715, 0.01603499, 0.02142079, 0.021298384, -0.0039237444, -0.0035667315, 0.004549368, -0.0067152474, -0.017707853, -6.1202253E-4, -0.00896953, -0.0073714717, -0.012145247, 0.0029258078, 0.011057207, 0.03636774, -0.0079698935, -9.443848E-4, 0.010213976, -0.009601953, 0.03446367, -0.021094376, 0.0065010395, 0.0015938088, 0.010404383, 0.0026401973, -0.012832073, -0.033538837, -0.0069974577, 0.020985574, 4.7362682E-5, 0.025310533, 0.03876143, 0.0062698307, -0.0056034066, 0.02280804, -0.024521703, 0.0033508234, -0.0074190735, -0.005076387, 0.022984847, 0.0086159175, -0.018809494, -0.64411974, -0.015871786, -0.0061304257, -0.0022219818, 0.018251872, 0.01736784, 0.0024208892, -7.650282E-4, -0.022590432, -0.0043555605, -0.013620902, 0.025664145, 0.021679198, -0.012832073, -0.013151685, -0.009765159, 0.007854289, -0.02605856, 0.025419336, 0.0010650893, -0.031199548, 0.018632686, 0.014294127, -0.011417621, -0.004372561, 0.010914402, -0.015300564, -0.010064371, 9.069834E-4, 0.0042501567, -0.02253603, 0.024916118, 0.0020451753, 3.2513696E-4, 0.04428323, -9.367345E-4, -0.020822367, 0.037945397, 0.029023468, 0.036612548, -0.03479008, -0.016048592, 0.02144799, -0.001519856, -0.02117598, 0.026969794, -0.0013898012, 9.5373514E-4, -0.002011174, -0.01871429, 0.0018904697, 0.013702504, -0.0033746243, -0.014606938, -0.013444095, -0.0043827617, 0.00786109, -0.02608576, 0.026534578, 5.134189E-4, -0.022767238, 0.018809494, -0.012628065, 0.022903243, -0.014362129, 0.033865247, 0.0011687931, -0.014008516, -0.0060318224, -0.037591785, 0.02934988, 0.014797345, -0.016483808, 0.003393325, -0.003230119, 0.010485986, 0.045044858, 0.0040869503, -0.011519624, 0.020237546, -0.004515366, -0.020264747, 2.169705E-4, 0.016130194, 0.02521533, -0.010710395, -0.046568114, 0.0012928976, 0.020060739, -0.0022083814, 0.004729574, 0.024576105, -0.0068070507, -0.0016694615, -0.0054163993, -0.017014226, -0.021257583, -0.0014493034, 0.018673487, -0.07306189, -0.011601227, -0.032369193, 0.039713465, -0.008989931, 0.023651272, 0.01058119, -0.0026350971, -0.014688541, 0.03829901, -0.011988842, -0.003743538, -4.4711647E-4, -0.013614101, -0.029757896, -0.0118188355, -0.029023468, 0.0047669755, 0.015382167, -0.00244469, -0.014443732, 0.0030822135, 0.011363219, -5.070437E-4, -0.016307, 0.012900075, 0.03228759, -0.0118188355, -0.004821378, 0.005402799, 6.757749E-4, 0.0032624202, -0.0039169444, 0.015028554, -0.0122744525, 0.00869752, -0.0048417784, 0.018102268, -0.009445548, 0.020468755, -0.0042059547, -0.027296206, 0.005249793, -0.010132373, -0.0066404445, -0.015586174, -0.014294127, -0.028805861, 0.0022032813, -0.008010695, -0.026099361, -0.014878948, 0.013818109, 0.0048757796, 0.010451985, 0.008575116, -0.0036585347, -0.027622618, -0.022468029, 0.016130194, -0.015137358, 0.006025022, -0.005100188, -0.01574938, -0.015572574, 0.023202455, 0.0011738932, -0.0074530747, 0.027228203, -0.004637771, -0.010962004, 0.008874327, -0.021665597, -8.585316E-4, 0.025582543, -0.018061465, 0.026194565, -0.0117168315, 0.008262305, 0.016415805, -0.0023477864, -0.0013353992, -0.014266926, -0.0038183406, -0.016864622, 0.032097183, 0.0137433065, 0.017136632, -0.007983495, -0.004416763, 0.0054163993, -0.022060012, -0.0044201626, -0.009357145, -0.012648466, 0.0014578036, 0.029377082, -0.005780213, -0.012682467, 0.0046819723, -0.0039747464, 0.032532398, 0.01384531, 0.0031842173, -0.010982404, 0.019367114, -0.03144436, -0.003206318, -0.025052123, -4.061556E-5, 0.0028034032, 0.016170995, 0.0024548904, -0.0068784533, -0.0037707388, 0.0081399, 0.019163106, -0.0046513714, 0.003723137, -0.023052849, 0.0023273858, 0.0062256292, -0.008112699, 0.011458422, 0.010064371, -0.015001353, 0.017435843, 0.0019669724, -0.00923474, 0.006222229, -0.008595517, -0.007990294, 0.0075074765, 0.01194124, 0.011206813, -0.003668735, -0.013518898, 0.026942592, -0.011703231, 0.038788628, -0.013056481, -0.0058210143, 0.015640575, 0.029485887, -0.0031723168, 0.0045357672, -0.004583369, 0.010118773, 0.020563958, -0.022672035, 0.033783644, -0.009323143, 0.03016591, -0.008785924, 0.014525335, 0.0033525235, -0.016334202, 0.0013753506, 0.015382167, 0.03367484, 0.015259762, 0.020223945, -0.026248967, 0.01871429, 0.01113201, 0.012260851, -0.005021985, -0.01466134, 0.0014603538, -0.0080582965, -0.02004714, -0.015232561, -0.01927191, 0.0066880463, -0.007487076, -7.352771E-4, -0.008711121, -0.013036081, 0.010077971, 0.016919022, 0.030791534, -0.004314759, -0.032233186, 0.025596144, 0.032233186, -0.025596144, -0.022087215, -0.014049318, -7.7437854E-4, -0.02657538, -0.02743221, -0.011784834, 0.03128115, -0.009520351, 0.011682831, -1.261234E-4, -0.0115400255, 0.021747202, -0.012383256, 0.012519261, 2.1633296E-4, -0.022413626, 0.016238999, 0.0023681873, -0.014498134, 0.015382167, -0.017204633, -0.0022389826, 0.0027745022, 0.005654408, -0.007793087, 0.0028612055, -5.49864E-5, -0.035932522, 0.0023477864, -0.016483808, -0.0045187664, -0.01411732, 0.0042569567, 0.0012359455, 9.020957E-5, -0.0031128146, -0.037809394, -0.030329118, -0.004151553, 0.09150417, 0.02741861, 0.0059298184, 0.0061950283, -0.011213613, 0.010873601, -0.016089393, -0.008071898, -0.007092661, -0.023855278, 0.017599048, -0.021679198, 0.024045685, -0.006851252, 0.023052849, -0.009479549, -0.0075550782, -0.0054368004, -0.020060739, -0.017286237, -0.023569668, -0.001250396, 0.02333846, 0.02956749, 0.006307232, -0.021284783, 0.024616906, 0.0055252034, -0.0062698307, 0.017544646, -7.5227773E-4, 0.0021148778, 0.0064262366, 0.0065486412, -0.007568679, -0.004936982, 0.025868153, 0.008357508, 0.03552451, -0.0028425048, -0.008017495, 0.023270458, 0.0051953914, -0.014443732, 0.014239725, -0.01927191, -0.019530319, 0.023175254, 0.03177077, -0.026316969, 0.023420062, 0.005504803, -0.015246161, -0.009799161, 0.026194565, 0.0062120287, -0.00949315, -0.0060726237, -0.0075550782, -1.12416645E-4, 0.002500792, -0.030818736, 0.021298384, -0.013172085, -0.0061304257, -0.013348891, -0.008643119, 0.0026248966, -0.025351334, 0.009955566, -0.0022729838, -0.028751459, -0.013954114, -0.0031128146, 0.013736506, 0.018605486, 0.028969066, -0.003855742, 0.0098059615, 0.012798072, -0.034844484, -0.023488065, -0.0034375265, -0.009710758, 0.004209355, 0.00515119, -0.01111161, 0.019353513, -0.0022457826, -0.002118278, 0.009812761, -0.0032216187, -0.011036807, -0.007956293, 0.03819021, 0.0044201626, 0.0051443893, 0.01140402, 0.005266794, 0.0030754134, 0.0072626676, -0.014348528, -0.008343907, -0.021951208, -0.02222322, -0.010485986, -0.005283795, -0.0012265951, -0.004372561, -0.020278348, -0.02820744, -0.011533225, 0.014919749, -0.01222005, 0.0081467, -0.008799524, 0.026820188, 0.005491202, -0.0037061365, -0.0016669114, 0.008609117, -0.024916118, 0.011784834, 0.02034635, 0.0016788119, 0.027853826, -0.003039712, -0.022019211, 0.013328491, 0.036231734, -0.0068308515, 0.024657708, -0.008779123, -0.0042229556, -0.01277767, -0.03669415, 0.00108634, 0.0024752913, -0.0046683718, 0.014634139, -0.03174357, 2.7859776E-4, 0.023542468, 0.01330809, -3.040987E-4, -0.02847945, 0.007113062, -0.023297658, 0.009819562, 0.026112963, -0.011152411, 0.012043243, -0.016238999, -0.007221866, -0.0097923605, -0.04235196, -0.024739312, 0.0013940514, 0.035334103, 0.002036675, 0.04050229, -0.0032352193, 0.033212423, 0.010615191, 0.008092298, 0.022128016, -0.015314165, -0.006082824, -0.032369193, 0.008099099, 0.0041991547, 0.023651272, 0.008942329, 0.01060159, 0.008935529, 0.022087215, 0.013546099, 0.017803056, -0.008194302, -0.018891096, -0.03228759, 0.016375003, -0.033511635, -1.6958125E-4, -0.013172085, -0.0067798495, 0.043576006, 0.0122744525, -0.016742216, 0.0035361303, 0.04284158, 0.006273231, 0.016891822, -0.02197841, 0.01166923, -0.022617633, 0.0037163368, -0.02359687, -0.0063276333, 8.5693784E-5, -0.013274089, 0.021393588, 0.006086224, -0.005110388, -0.0015606575, 0.019067902, -0.0105403885, -0.022413626, 0.02823464, -0.015354966, -0.014810946, -0.030927539, -3.2641203E-4, -0.030519525, -0.023542468, -0.008656719, -0.016796619, 0.0085139135, -0.017299837, -0.036802955, 0.010098372, 0.006545241, 0.04036629, 0.006769649, 0.047574554, 0.027405009, -0.0020723764, -0.020468755, 0.0076638823, -0.006127026, -0.002956409, 0.026099361, 0.024208892, -0.008547915, 0.0025823952, -0.0025109926, -0.007963093, -0.040067077, -0.04259677, 0.016334202, 0.0353069, 0.027799424, -0.024032086, -0.007650282, -0.02905067, 0.021828804, -0.011342818, -0.007711484, 0.0066642454, -0.034654077, -0.016647013, -0.01276407, -0.024059286, 0.0086023165, 0.003367824, -0.012254052, 0.01846948, -0.022617633, 0.009200739, -0.003930545, -0.019380715, 0.018850295, -0.0141989235, 0.018279074, -0.0017323638, -0.0011152411, 0.00921434, 0.0036789356, 0.01060159, 0.030247515, -0.01929911, 0.016075792, -0.004967583, -0.0020723764, 0.02004714, 0.018088667, -0.022468029, -0.010295579, -0.014593338, 0.0022457826, 0.034817282, 0.0016592612, -0.0017714653, -0.004399762, -0.010030369, -0.014797345, 0.024698509, -0.0020757765, 0.018306274, -0.042487964, 0.017735053, -0.006497639, 0.0069056544, -2.5373435E-4, -0.009418347, 0.0021777803, -0.014321327, 0.013620902, -0.014770144, -0.0039917473, -0.013967714, -0.01139042, -0.032804407, -0.029921101, -0.0108532, -0.006184828, 0.003012511, -0.02038715, -0.0022865841, 0.0046003694, 0.0030278116, -0.011506024, -2.1612046E-4, -0.020835968, -0.0014144521, 0.0112612145, -0.014606938, -0.013967714, 0.006331033, 0.014865347, -0.0018972699, -0.007752286, -0.0026027958, 0.002905407, 0.031825174, -0.02826184, 0.015150958, 0.0041073514, -0.024140889, -0.008303106, 0.0065078395, 0.016375003, 0.0123628555, -0.0072694677, -0.0271738, -0.0125532625, -0.013090482, 0.04289598, -8.5683155E-4, 0.01600779, 0.04994104, 0.025609743, 0.017163832, 0.026262568, -0.014620539, -0.027119398, 0.012009243, -0.0052191922, -0.02008794, 0.008717922, 0.005555805, 0.027772224, 0.0075346776, -5.665459E-4, -0.032097183, -0.011472022, -0.022114415, -0.034545273, -0.004372561, 0.014402931, 0.031389955, 0.0042127552, 0.0084255105, 0.0131856855, 0.003366124, 0.006188228, -0.017585447, -0.0118052345, 0.02743221, 0.009717558, 0.024834516, 0.021053575, -0.028343445, -0.0034358266, 0.011342818, 0.017789455, 0.00434196, 0.011227214, -0.023732875, -0.013192486, -0.019979136, -0.0028884064, -0.007221866, 0.0051137884, 0.022876043, -0.025024923, 0.001575108, 0.0016006089, 0.016184596, 0.005293995, 0.009255141, 0.024236092, -0.0029445086, -0.0056578084, -0.008595517, -0.008479913, 0.002199881, -0.025446538, 0.013471296, 0.009085135, -0.0084255105, 0.032750007, 0.018279074, -0.006497639, 0.002550094, -0.009540752, 0.0023120851, -0.014035717, -0.009112336, 0.0011109909, 0.023134451, -0.021651998, 0.026452975, -0.017245436, 0.0025347935, -0.0039747464, 0.013253688, -0.014946951, 0.031906776, 0.0048723794, -0.04836338, -1.4833047E-4, -0.0145661365, 0.008398309, -0.01277767, -4.5136662E-4, -0.029948303, -0.012770871, -0.015953388, 0.019448716, -0.019598322, -0.014919749, 0.008799524, -0.017558247, -0.0016652114, 0.014960551, 0.17735054, -0.00678665, 0.0011959941, 0.040638298, -0.009357145, 0.0042161555, 0.02577295, 0.011778034, -0.002636797, 0.014226124, 0.005453801, 0.0065486412, 0.0010931402, 0.0010761396, 0.011179612, -0.02826184, -0.034327663, -0.019924734, -0.013450895, -0.046105698, -0.0017765654, -3.5595061E-4, -0.0042467564, -0.02226402, 0.0072422666, -6.5239903E-4, 0.0030907139, 0.006837652, 0.018088667, 0.0068002506, -0.006953256, -0.014090119, -0.015504572, 0.0013209487, -0.023991283, 8.1518E-4, -0.0014790545, 0.008289506, 0.021094376, 0.0072082654, 0.007990294, 0.007364671, 0.0027524014, 6.898004E-4, 0.012634865, 0.036476545, -0.030274715, -0.009180338, -0.023080051, 0.008343907, -0.052769944, 5.0959375E-4, 0.0055286037, 0.027772224, -0.025541741, -0.0021267782, 1.8679438E-4, 0.0030550126, -0.0053143958, 9.6138543E-4, 0.023501666, 0.041590333, -0.039142244, 0.009744759, 0.0065758424, 0.012702868, -0.030301915, 0.0068478524, 0.014457333, -0.038163006, -0.008044696, -0.013063281, -0.015368566, 0.014212524, -0.016606212, -0.017408641, 0.0040835505, -0.0052191922, 0.011750833, 0.00787469, -0.017014226, -0.035742115, 0.014797345, -9.642543E-5, -0.017027827, -0.020468755, 0.011791634, -0.021801604, 0.0061950283, -0.017055029, -0.0050321855, -0.026398573, -0.014294127, -0.00733067, -0.015830982, 0.009975968, 0.019652724, 0.0145661365, -0.014797345, 0.012519261, -0.032205988, 0.029540287, 0.01683742, -0.003583732, -0.03304922, -0.0025670945, 0.0035225297, 0.0060148216, 0.023637671, -0.0097039575, -0.023977684, -0.029676294, 0.002415789, -0.011900438, -0.0043283594, 0.02847945, 0.006708447, -0.016878221, 0.040801503, -0.01739504, -0.0026197964, -0.0073918724, 0.016851021, 0.008452712, -0.013784108, -0.028397847, -0.027758623, 0.007711484, -0.012118046, -0.04180794, 0.016470207, -0.017000627, 0.005365398, -0.0074666752, 0.0024225893, 0.016497407, 0.018564684, -0.012294853, 0.005950219, -0.0052531934, -0.012097646, -0.016238999, 0.011682831, 0.009173538, 0.008357508, -0.0143893305, -0.0046105697, 0.0032658202, -0.021393588, -0.027568216, -0.011356418, -0.0072286665, 0.0053687976, 0.018020663, 0.045398474, 4.288408E-4, -0.017762255, -0.027581817, -0.017979862, 0.046595316, -0.03479008, 0.01603499, 0.010975604, -0.0044371635, -0.027459411, -0.005239593, -0.17473924, 0.012165648, 0.004358961, -0.032614, 0.027105799, 0.010968804, 0.023800876, 0.0065588416, 0.0013404994, -0.01708223, 0.019380715, 0.005045786, -0.029105073, -0.014878948, 0.004175354, 0.0271466, -0.0062018284, 0.041753538, 0.027296206, -0.012390057, 0.042460766, 0.0016235599, -0.018850295, -0.0015300564, 0.022236818, -6.2392297E-4, 0.025052123, -0.002794903, 0.0021947809, -0.012668867, -0.044201627, -0.012845674, 0.028561052, -2.7134593E-5, -0.0033474234, -0.0060080215, -0.00977196, -0.017055029, -0.0031145148, -0.0083371075, 0.03367484, 0.027568216, 0.020210344, 0.0035225297, 0.009887564, 0.010751196, 0.026126562, -0.023243256, 0.013654903, 0.0010013368, -0.010689993, -0.035497308, 0.023161653, 0.0019380715, 0.0010489386, 0.028969066, 0.0049981843, -0.0055524046, 0.008473112, -0.0016745616, -0.019856732, -0.002067276, -5.372198E-4, -0.012702868, -0.0017017627, -0.024032086, -0.023406463, 0.012118046, -0.035116494, 0.016946224, -0.014266926, 8.899828E-4, 0.0046921726, 0.0069158548, 0.0011594427, -0.021502392, -0.0352253, 0.0138317095, -0.017136632, 0.007820288, -0.020740764, 0.046812925, 3.1281152E-4, 0.013464496, 0.0045459676, -0.025732148, 0.0138317095, -0.0069362554, 0.0054334, -0.024562504, 0.0059026172, -0.023406463, -0.03508929, -0.009030732, 0.004936982, 0.0019244709, -0.0076978835, 0.010377183, 0.0055422042, -0.006875053, -0.0019890734, -0.011104809, -0.0049029808, 0.01464774, 0.02331126, -1.2431708E-4, 0.008840325, 0.03579652, 0.019135905, -2.4850135E-5, -0.0016261099, 0.0015096556, 0.031417158, 0.022685636, -0.031553164, -0.0011645429, -0.022468029, -0.029757896, -0.0011339418, 0.026996994, 0.03424606, 0.004226356, -0.0034987289, -0.023488065, -0.004828178, -0.0021913808, -0.08769603, -0.0016201597, 0.0027218002, 0.043793615, -0.027119398, 0.036775753, -0.0059978208, 0.018918296, -0.032750007, 0.030519525, 0.03062833, -0.029213876, 0.0092483405, -0.0027218002, 0.01060159, -0.009343544, -0.011614827, -0.006028422, -0.018279074, 0.040964708, -0.0040801503, -0.010533588, 0.009996369, -0.008207902, -0.021298384, 0.013709305, -0.021774402, 0.022413626, 0.011220413, 0.012002442, 0.0014025517, -0.024739312, 0.022141615, -0.043031987, -0.012165648, -0.02687459, -0.014443732, -0.01603499, 0.0041957544, -0.0461873, 0.0063684345, 0.01410372, 7.2550174E-4, -0.018415079, -0.013770508, 8.670319E-4, -0.038353413, 0.019067902, -0.017163832, -0.02526973, -0.018374277, -0.0110844085, -0.040529493, 0.0018394678, 0.024807313, 0.023474464, 0.021216782, 0.015300564, 1.8955699E-4, -0.018795893, -0.006188228, 0.0017969662, -0.022209618, 0.033239625, 7.012758E-4, 0.0020247747, -0.0023375861, -0.01139722, 0.021774402, -0.011587627, -0.021828804, 0.02118958, -0.019639123, -0.0023681873, -0.013614101, 0.008738322, -0.01195484, -0.0216928, 0.028887464, -0.023528866, -0.0024089888, -0.031879574, -0.00216758, -0.01791186, 0.015939787, 0.01410372, 0.01817027, 0.0054095993, -0.0063174325, -0.030193113, -0.0032879212, 0.016864622, 0.0059026172, 0.0041379523, 0.004012148, 0.008411909, 0.0081535, 0.013770508, -3.587132E-4, 0.009105535, -0.012281252, 0.005049186, -0.07659802, 0.030356318, -0.010071171, 0.0011296916, -0.009663156, -0.013872511, 0.0073510706, -0.009880764, -0.011444822, 0.004746575, -0.007976694, 0.02038715, 0.0010523387, 0.0029972105, -7.114762E-4, 0.0068206512, 0.007759086, -0.007636681, -0.0013864011, 0.0047329743, -0.009078334, 0.024739312, 0.0066744457, -0.009003532, 0.009710758, 0.0093367435, -2.8051034E-4, -7.7055336E-4, -0.011438021, -0.0053619975, 0.028860264, -0.016633412, 0.0018173669, 0.008235103, -0.019679924, -0.027241804, -0.0052803946, 0.009629155, 0.009384345, 0.013498497, -0.013246888, -0.026112963, -0.0053279963, -0.0013404994, -0.0027473012, 0.01385211, -0.022835242, 0.001465454, 0.015518172, 0.013539298, 0.013654903, 0.019095104, -0.006076024, -4.5051659E-4, 0.011370019, -0.014552536, 0.03908784, 0.0076638823, -0.006161027, -0.021679198, 0.027717821, -0.009635955, 0.02687459, -0.032695603, -3.797515E-4, -0.008330307, 0.012974878, 0.012226851, -0.002662298, -0.01765345, -0.021094376, -0.008003895, 0.01712303, 0.020618359, 0.026194565, 0.017952662, 0.0091463365, 0.0040869503, -0.0015020054, 0.014824546, 0.020278348, -0.012036444, -0.034082856, 0.008377909, -0.0028884064, 0.0063038324, 0.0056612086, 0.013702504, 0.013600501, -0.0012826972, -0.0108532, 0.0069362554, 0.008813125, -0.0044949655, 0.011179612, 0.014239725, 0.008031096, -0.019095104, 0.014239725, 0.021026375, -0.007942692, -0.004260357, -0.012995278, -0.028425047, -0.02686099, -0.0019992737, -0.024100088, -0.024317697, 0.009561152, 0.00896953, 0.02060476, 0.011315617, -0.023583269, 0.0025670945, -0.031199548, 0.007935893, -0.008099099, -0.017163832, -0.009663156, 0.050321855, 0.0045119664, 0.008779123, 0.021679198, -0.012111247, 0.057448518, 0.012954477, 0.017299837, -0.028642654, 0.009200739, 0.0015564073, 0.0023970883, -0.009921566, -0.0130088795, 0.012240451, -0.011281615, 0.0023766875, 0.009003532, 0.0217064, -0.027064998, 0.06430317, 0.01056759, 2.307835E-4, 0.015082955, -0.009255141, 0.014511734, 0.03206998, 0.018143069, -0.012165648, -0.007133463, 0.016619813, -0.01925831, 0.019598322, -0.030954741, 0.011138811, -0.012097646, 0.008847126, 0.0025126925, -0.009166738, -0.015178159, 0.004423563, -0.015844584, 0.02011514, 9.0783346E-4, -0.02089037, -0.0083371075, 0.017000627, -0.0244129, 0.0028578052, -0.01955752, 0.0023630871, -0.013532499, 0.0073442706, -0.005093388, 0.024943318, -0.010989205, 0.0060692234, 0.0042127552, 0.013981315, -0.0068206512, -0.010404383, -0.001927871, -0.017979862, -0.0075890794, 0.025936155, -0.005644208, -0.0033729242, -0.023800876, -0.0071198624 ], + "id" : "58018f02-bc71-450a-b9ec-097400d468fb", + "metadata" : { + "source" : "movies.csv" + } + }, + "d78169c1-cab1-4000-9253-bc06ad62a860" : { + "text" : "Delaney-Aaron Fors-Julianna Gamiz-Aaron Hendry-Barbara Harris-JP Karliak-John Kassir-Danny Mann-Regina Taufen-Will Collyer-Hudson D'Andrea-Remy Edgerly-George Griffiths-Isa Hall-Asa Jennings-Caspar Jennings-Louise Jennings-Katherine Kelloway-Igor Khait-Vida Alves McConaughhey-Jason Broad-Levi Nunez-Joy Poirel-Adeline Krupinski Polidoro-Noreen Reardon-Gary P. Rizzo-Liza Seneca-Ayden Soria-Jack Stanton-Thomas Walters-Colette Whitaker-Nora Wyman-Jason Schwartzman,stage-villain-sequel-anthropomorphism-singing-animal-illumination,/aWeKITRFbbwY8txG5uCj4rMCfSP.jpg,/6mJrgL7Mi13XjJeGYJFlD6UEVQw.jpg,585083-568124-524434-335797-634649-425909-482321-476669-624860-508943-335787-566525-774825-644495-580489-512195-646385-315162-502356-438631-508947\r\n399579,Alita: Battle Angel,Action-Science Fiction-Adventure,en,When Alita awakens with no memory of who she is in a future world she does not recognize she is taken in by Ido a compassionate doctor who realizes that somewhere in this abandoned cyborg shell is the heart and soul of a young woman with an extraordinary past.,54.686,Troublemaker Studios-Lightstorm Entertainment-20th Century Fox-TSG Entertainment,1/31/19,170000000,404980543,122,Released,An angel falls. A warrior rises.,7.209,8042,Rosa Salazar-Christoph Waltz-Jennifer Connelly-Mahershala Ali-Ed Skrein-Jackie Earle Haley-Keean Johnson-Lana Condor-Jorge Lendeborg Jr.-Eiza Gonz��lez-Jeff Fahey-Idara Victor-Rick Yune-Derek Mears-Leonard Wu-Racer Rodriguez-Marko Zaror-Hugo Perez-Casper Van Dien-Billy Blair-Jamie Landau-Dimitrius Pulido-Patrick Gathron-Elle LaMont-Alex Livinalli-Neal Kodinsky-Anthony Bandmann-Alan Trong-Sam Medina-Tod Junker-John Wirt-Darcel Danielle-Emma Lindsey-Garrett Warren-Tony LaThanh-Jorge A. Jimenez-Vincent Fuentes-Ibrahima Thiam-Paul de Sousa-Gregg Berger-David Sobolov-Jeff Bottoms-Michelle Rodriguez-Jai Courtney-Edward Norton-Gene Cervenka-Zara Majidpour-Tristan Riggs-Bill Foster-Charlotte Delaney Riggs-Lisa Slaughter,martial arts-bounty hunter-extreme sports-dystopia-superhero-cyberpunk-based on manga-female cyborg-live action remake-floating city-live action anime-gunnm,/xRWht48C2V8XNfzvPehyClOvDni.jpg,/8RKBHHRqOMOLh5qW3sS6TSFTd8h.jpg,287947-299537-163202-456740-297802-159878-424783-447404-458156-166428-324857-299534-450465-320288-207036-86520-126644-120268-429617-428078-479455", + "embedding" : [ 0.0045484155, -0.03449156, -0.021263666, -0.021787124, -0.017514583, 0.03208649, -0.0020478482, -0.004810144, -0.023895098, -0.03995249, 0.028337408, 0.03321829, 0.015335871, 0.008021623, 0.009882017, 0.011841443, 0.026172843, -0.0016808978, 0.008170172, -0.024291229, -0.0148690045, 0.00300634, -0.0061612288, 0.019509379, -0.009500034, 0.010745013, 0.032227967, -0.020584587, -0.0054821493, -0.0062425765, 0.008389457, -0.0055670342, -0.0025094098, -0.021617353, -0.023513116, 0.004944545, 0.005825226, -0.023286756, 0.02771492, 0.0016349185, 0.017443847, 0.010023491, -0.010129598, -0.0028082754, -0.022126663, 0.01295202, 2.8582336E-4, -0.0107520865, -0.007625493, 0.03152059, 0.030219022, 0.036104377, -0.018122924, -0.023626296, -0.013015684, -0.0025978314, -0.014656792, 0.009174642, 0.019367903, 0.018688824, 0.012258794, -0.008446047, -0.02495616, -0.015166101, -0.01860394, -0.013524993, -0.010844045, -0.010801603, 8.258593E-4, -0.014281884, 0.021376846, 0.005814615, 0.015420756, 0.008007475, 0.011247248, -0.033189993, -0.010914783, -0.011049184, -0.006479547, 0.0041310648, 0.020952422, -0.013263265, 0.004212413, -0.0011406408, 0.007823558, -0.0018992996, -0.020188458, 0.013425961, -0.02410731, 0.0049940613, 0.011381649, 0.04479093, 0.013284486, 0.0064088097, 0.00280297, 0.02045726, -0.027672475, 0.030841513, -0.026427498, -0.031831834, -6.3221564E-4, -0.0109430775, 0.0025819156, -0.0114806825, -0.003482049, -0.0066280956, 0.0030275614, 0.00814895, 0.025479617, 0.0025942947, 0.01567541, 0.0036429767, 0.015647115, -0.046432037, -0.008976578, -0.0376606, 0.008559227, -0.008042844, -0.01121188, -0.011530198, 0.03276557, 0.041423827, 4.1447702E-8, -0.040886223, 0.045752957, 0.03197331, 0.0108086765, 0.0021910914, -0.0035527865, -0.014826562, 0.035934605, -0.014458727, 0.022735005, 0.009804205, -0.012654923, 0.032058194, -0.03545359, 0.005821689, -0.0042018024, -0.01809463, 0.025691828, 0.030445382, -0.020018687, -0.0141616305, -0.019622559, 0.007710378, 0.0055210553, -0.0015182018, 0.0053371377, 0.031265937, 0.009535403, 0.014939741, 0.0086653335, -0.0024563568, 0.03647221, -0.009698099, -0.0065538213, 0.0067483494, 0.006918119, -0.005524592, -0.00294975, -0.01259126, 5.6766777E-4, -0.012541743, 0.011926328, 0.024376113, 0.015576378, -0.006935803, -0.023640443, -0.01168582, -0.006309777, 0.028139343, -0.038481154, 0.007155089, -0.011905107, 0.0028630968, 5.345096E-4, -0.011126995, -0.04541342, -0.0107520865, 0.004297298, 0.0049056397, 0.02883257, 0.028889159, -9.50534E-4, 0.01578859, 0.0148690045, -0.016651588, -0.001584518, -0.0041805813, 0.0041947286, 0.020245047, 0.019665001, 4.452036E-4, -0.6378817, -0.022876479, 0.0015173175, -0.0019275945, -0.0022034703, 0.011876811, -0.0032150154, -0.024574177, -0.02461662, 0.0066351695, -0.030954693, 0.02068362, 0.009379781, -0.006681149, -0.017627763, -0.020103572, 0.012860062, -0.012584186, 0.015604673, -0.0050754095, -0.025451321, 0.012074877, 0.018674677, -0.015222691, 0.0019099101, 0.016085688, -0.010490359, -0.010539874, 0.012980315, 0.0049339347, -0.020782651, 0.022239843, 0.0071515525, -0.013524993, 0.03686834, 0.0066846856, -0.014076745, 0.042895168, 0.02371118, 0.02248035, -0.032680687, 0.0037561567, 0.007462797, 0.0030081086, -0.00658919, 0.0325958, -0.0024881884, 0.006695296, -0.0038728733, -0.0057049724, 0.0037349353, -1.5993287E-4, -0.004919787, -0.022551088, -0.010702571, -0.0073920595, 0.020980718, -0.01905666, 0.021518322, -0.011275544, -0.01703357, 0.023739476, -0.008941209, 0.0061576916, 0.0037915253, 0.006949951, 0.006345146, -0.006695296, -0.016312048, -0.016566703, 0.021235371, 0.015052921, -0.012980315, -0.011226027, 0.014656792, 0.019141544, 0.025140077, -0.006536137, 0.0071727736, 0.01618472, 0.005117852, 0.0014306642, 0.0036712717, 0.023088692, 0.027106578, 9.929765E-4, -0.021631502, 0.014189925, 0.011084553, 0.005666067, 0.0114806825, 0.0099669015, 0.0023307977, 0.0015350019, -0.015081217, -0.004456457, -0.021971041, -0.0018939943, 0.012732734, -0.057551958, -0.010653054, -0.023060396, 0.047196, -0.01960841, 0.006667001, 0.0026473477, -0.027304642, -0.015038774, 0.022720857, -0.038566038, -0.03197331, -0.0064371047, -0.02124952, 0.010801603, -0.008446047, -0.027658328, 0.013143011, 0.015632968, -0.0030982988, -0.0018833836, 0.010497432, -0.006104639, 0.0010336505, -0.007929664, 0.020556292, 0.02422049, -0.013029831, -0.004184118, -2.7631802E-4, 0.01871712, -0.001771088, 0.01073794, 0.018519055, -0.020697767, 0.0052664005, -0.0035121127, 0.012301236, -0.013326929, 0.012584186, -0.0061435443, -0.01208195, -0.0057261935, -0.024489293, -0.008927061, -0.023583854, -0.015930066, -0.0342652, 0.005163831, -0.008198466, -0.005765099, -0.012676144, 0.024772242, -0.0027039377, 0.026710447, 0.007006541, 0.0043008346, -0.024376113, -0.013277412, 0.01247808, -0.0075123133, 0.013581583, 0.005807542, -0.0033812483, -0.018533202, 0.027347084, 0.009160495, -0.0028560231, 0.013475477, -0.01062476, -0.014267736, 0.015647115, -0.014310178, 0.0019771107, 0.020782651, -0.010009344, 0.023357494, -0.02102316, 0.03270898, 0.013029831, -0.0030487825, 0.0012847682, -0.01157264, -0.018236104, -0.011240175, 0.015816886, 0.021857861, 0.019537674, -0.0035315654, 0.0066351695, 0.0062425765, -0.012570038, -0.0049622296, 0.0017277614, -0.006957025, -0.010518653, 0.022904774, 0.004647448, -0.0040320326, -0.013482551, -0.0014103272, 0.045837842, 0.012704439, 0.015958361, -0.007710378, 0.009061462, -0.035821427, -0.004438773, -0.031124461, -0.001263547, -0.0066351695, 0.025805008, 7.957959E-4, -0.0053725066, 0.007328396, 0.015406609, 0.010405473, -7.436271E-4, 0.0052133473, -0.026625562, 0.008644111, -0.0035828499, -0.009393929, 0.018957626, 0.027856393, -0.022055926, 0.0011061563, 0.008304573, -0.01079453, -0.0026084422, -0.008651186, -0.0072718062, 0.007901369, -0.0056413086, 0.008170172, -0.015378314, -0.016057393, 0.014727529, -0.001035419, 0.045611486, -0.010136671, 5.296464E-4, 0.0036111448, 0.019000068, 0.010497432, 0.0115372725, -0.003908242, 0.0188303, 0.024079015, -0.01185559, 0.038226496, -0.020075278, 0.017896565, -0.008156024, 0.0030434772, 0.007873074, -0.01658085, 0.0057898574, 0.011119922, 0.029115519, 0.008750218, 0.024234638, -0.0068403077, 0.010610612, 0.009931533, 0.005800468, 5.2920426E-4, -0.026102105, 0.01121188, -0.01624131, -0.02281989, -0.0155197885, -0.014571907, 0.0057544885, 0.012067802, 6.084523E-5, -0.014741677, -0.011112847, 0.004120454, 0.012442711, 0.026837775, -0.0036712717, -0.024998602, 0.016510112, 0.028860865, -0.0110774785, -0.013326929, -0.021518322, 0.006674075, -0.01820781, 0.0061930604, 0.0041593597, 0.023767771, -5.9286796E-4, 0.021065602, -0.006787255, -0.0111552905, 0.0074274284, -0.02703584, 0.01916984, 0.011919254, -0.011056257, 0.01000227, -0.0054361704, -0.00514261, 0.04340448, -0.03282216, -0.0053442116, -0.0058605946, 0.00896243, -0.026257727, 0.0024651987, 0.012817619, -0.033274878, 0.018448317, -0.0028790126, -0.01000227, -0.010928931, 0.006914582, -0.012768103, -0.005121389, -0.02410731, -0.012676144, -0.016594997, 0.007133868, 0.07373668, 0.041055996, 0.014600202, 0.016665734, -0.021277813, 8.342594E-4, -0.009733468, -0.019240577, 0.005004672, 0.001076093, 0.019382052, -0.010355957, 0.013935271, 0.0023873877, 0.013185454, -0.0123649, -0.008658259, 0.0024139143, 8.232066E-4, -0.016213015, -0.027516853, -0.0148690045, 0.012810546, 0.0202309, 0.016623292, -0.011636305, 0.01247808, 0.006730665, -0.008290425, 0.00988909, 0.0020496165, 0.014557759, 0.0045484155, 0.014303105, 0.0010734402, -0.005460928, 0.0320299, 0.024064869, 0.04631886, 0.008785587, 0.015392461, 0.014437506, 0.0041664336, -0.0014731067, 0.0073637646, -0.03406714, -0.020414818, 0.010978446, 0.037179586, -0.042612217, 0.016877947, -0.0029444448, -0.011586788, -0.020372376, 0.017854122, -4.2265604E-4, 0.01051158, -0.018009745, -0.019212281, 0.033246584, 0.010815751, -0.026568972, 0.031633772, -0.010462063, 0.0054538543, -0.0049657663, -0.00947174, 0.007689157, -0.009365633, -0.006207208, 0.0011203038, -0.020641178, 0.007837705, 0.009570772, 0.011204806, 4.7112222E-5, 0.028521325, -0.012230499, 0.025974778, 8.00217E-4, -0.035000872, -0.028026164, 0.017528731, -0.009429297, 1.4335378E-4, 0.006808476, -0.007162163, 0.0066280956, -0.007575977, 0.0051992, -0.004290224, -0.0037137142, -0.021659795, -0.009287822, 0.04490411, 0.013114717, 0.026427498, 0.011303838, -0.0034679016, -0.0017843513, 0.01202536, -0.03927341, -0.019113248, -0.0064901575, -0.028521325, -0.012463932, 0.0052062734, 0.006946414, -0.027389526, -0.014097966, -0.037575714, -0.012980315, 0.010575243, 0.0034714385, 0.0054998337, -0.011020889, 0.005418486, 0.014310178, -0.018292695, 0.017090159, 0.0073496173, -0.022013484, 0.022635972, 0.02736123, -0.0054998337, 0.031548887, 0.0017534036, -0.04198973, -0.003473207, 0.02618699, -3.7888726E-4, 0.0112684695, -0.02781395, -0.009096831, -0.013829164, -0.018137073, 0.0017436772, 0.0131076425, -0.008120655, 0.0030364036, -0.019863065, 0.017189192, 0.021716386, -0.0017604773, -0.009683952, -0.027912984, 0.0020248585, 0.0032963634, 0.014189925, 0.026597267, -0.019452788, 0.018165369, -0.0062248926, -0.0026668005, -0.011544346, -0.019877214, -0.024545882, -0.018122924, 0.041678485, 0.010829898, 0.037066404, -0.00658919, 0.024998602, 0.008721923, 0.00941515, 0.026512383, -0.014472875, -0.0014182852, -0.031209346, 0.0013731901, 0.009712247, 0.037915252, -0.007929664, -0.008785587, 0.0062779454, 0.030926397, -0.009110979, 0.002912613, 0.0027835171, -0.02006113, -0.018802004, 0.0019435104, -0.025663534, -0.008828029, -0.028068606, -0.014586055, 0.03157718, -0.020372376, 2.7034956E-4, -0.0069676354, 0.024079015, 0.012612481, 0.0073425435, 0.0071586263, 0.018985922, -0.006865066, -0.010914783, -0.015915917, -0.0010822824, -0.0032928265, -0.027799804, 0.010094229, 0.0014828331, -0.025606943, -0.009429297, 0.025451321, -0.008134803, -0.026257727, 0.0076679355, -0.012117319, -0.011523125, -0.035736542, -0.02158906, -0.043630835, -0.024121458, -0.014211146, -0.006613948, 0.014168704, -0.026724596, -0.04317812, 0.034152023, -0.007901369, 0.027120724, 0.015095364, 0.038905576, 0.03754742, 0.015831033, -0.012173909, -0.006829697, -0.018476613, -0.0034378383, 0.016368637, 0.029256994, -0.024531735, 0.007972106, 0.010879414, -2.7079167E-4, -0.05585426, -0.042329267, 0.025323994, 0.03236944, 0.031011282, -0.021730533, 0.007851853, -0.026116254, 0.010822824, -0.011395797, -0.0023095766, 0.0077245254, -0.02736123, -0.013029831, -0.02074021, 0.005411412, 0.01005886, -0.00809236, -0.012089024, 0.014465801, 5.1091203E-5, -0.013984786, -0.012888357, -0.009825427, 0.025507912, -0.016453523, 0.019863065, 0.0043432773, 0.019679148, 0.009054389, 8.528279E-4, -0.002352019, 0.027531002, -0.014338474, 0.010433769, 0.015930066, -0.011466535, 0.020726062, 0.025875745, -0.012626628, -0.012640776, -0.033586122, 0.0034555227, 0.020952422, -5.0930935E-4, -0.0016145814, 0.0039223894, -0.021772975, -0.013355223, 0.017726796, -0.009259528, 0.013022758, -0.043461066, 0.0072293635, -6.5741583E-4, -0.006783718, -0.0056908247, -0.0010230398, 0.0025642312, -1.2577996E-4, 0.0043149823, -0.008983651, 0.01073794, -0.019481083, -0.012499301, -0.035255525, -0.02338579, -0.0063027036, -0.019240577, 0.008969504, -0.014939741, 3.1257095E-4, -0.0042513185, -0.0026137475, -0.008226762, 0.0039506843, -0.015802737, -0.008085286, 9.805973E-4, -0.010907709, -0.006957025, -0.0036960298, 0.027983721, 8.8819664E-4, 0.0028878548, 0.004728796, 0.0048313653, 0.030615153, -0.028535472, 0.008021623, 0.0023343347, -0.022975512, -0.0062708715, 0.012315383, 0.03412373, 0.0036571242, 0.0073708384, -0.027502706, -0.0027074744, -0.021433435, 0.02792713, -0.0024705043, 0.002583684, 0.027969573, 0.007915516, 0.029228698, 0.039018758, -0.00542556, -0.030756628, 0.008368236, -0.017882418, -0.0101578925, -0.0058888895, 0.011056257, -0.0034661333, -0.002571305, -0.025239108, -0.021716386, 0.0017215718, -0.0045236577, -0.02495616, -0.010129598, 0.02951165, 0.04040521, 0.007140942, 0.0069534876, 0.009613214, 0.0038728733, 0.007837705, -0.025578648, -0.013998934, 0.033133406, 0.019622559, 0.013567436, 0.0115372725, -0.038962167, -0.024998602, 0.003404238, 0.017599469, -0.0065715057, 0.018533202, -0.011508977, -0.0037596936, -0.02293307, 0.0036217556, -0.016099835, -2.4716646E-5, 0.021447584, -0.031435706, -0.0030982988, -0.0035563235, 0.028125195, 0.005602403, 0.01877371, 0.016213015, -0.009938607, -0.009924459, 0.005595329, -0.013227896, 0.0025200204, -0.022055926, 0.025083486, 0.007950885, -0.00658919, 0.029568238, 0.017500436, -0.0057474147, -0.002070838, -0.014854857, 0.0050966307, -0.022310581, 0.013708911, -0.0027569907, 0.0325958, -0.02478639, 0.027021691, -0.049940612, -0.0012317152, -0.012577112, 0.0070100776, 0.0021645648, 0.035368707, -0.0012255256, -0.044026967, 0.013157159, 8.373541E-4, 0.0018550886, -0.012683218, -0.002868402, -0.015434904, -0.020952422, 0.0010044712, 0.0022901238, -0.029907778, -0.018448317, 0.018009745, -0.013539141, -0.01247808, 0.015279281, 0.1882181, -0.018420022, -0.003213247, 0.035198938, -0.015972508, -0.0027357694, 0.030869808, 0.008976578, -0.011424093, 0.020131867, -0.0035351021, 0.007788189, -0.0011229564, -0.012011213, 0.014472875, -0.0033671008, -0.021306109, -0.0074345022, -0.02051385, -0.022353023, -0.028959896, 0.002721622, -0.0072788796, -0.01871712, 0.014239442, 0.00918879, -0.008120655, 0.0054856865, 0.012166835, 0.009110979, -0.02439026, -0.017854122, 0.0076184194, 0.004177044, -0.0040037376, -0.016566703, -0.016623292, 0.013425961, 0.022961365, -0.004785386, -0.005195663, -0.008941209, -0.022621825, -0.01385746, -0.013411813, 0.017528731, -0.0145436125, -0.011721189, -0.008042844, -0.0017312982, -0.031011282, 0.005623624, 0.026427498, 0.012244646, -0.012485153, 0.006783718, 0.010051786, 0.012046581, -0.0025164834, 0.014840709, 0.02461662, 0.035425298, -0.009556624, 0.023470674, 0.003598766, 0.005552887, -0.015986655, -0.0074345022, 0.021221224, -0.03265239, -0.015732002, -0.037971843, -0.018448317, 0.014204073, -0.030501973, -0.011707042, 0.014727529, 0.02444685, 0.006373441, 0.012124392, -0.01871712, -0.005107241, 0.010009344, 0.0010424926, -0.019438641, -0.0101578925, 0.028875012, -0.01837758, -0.002514715, -0.024404408, -0.017995598, -0.017995598, -0.0015385387, 0.00584291, -0.008325794, -0.0053725066, 0.028309112, 0.015816886, -0.0017808144, -0.011678747, -0.033416353, 0.02410731, 0.015972508, 0.009591993, -0.03788696, -0.01877371, -0.0029426764, 0.003993127, 0.01815122, -0.01062476, -0.01860394, -0.018108778, 0.009033168, -0.008354088, 0.015307576, 0.01803804, 0.011763631, -0.014027229, 0.03231285, -0.023329198, -4.2265604E-4, -0.014883151, 0.007119721, -0.0038375047, -0.014246515, -0.03715129, -0.0266963, -0.0046050055, -0.017953156, -0.030049253, 0.02158906, -0.034633037, 0.0114806825, -0.005383117, 0.0019983319, 0.0024315985, 0.032114785, -0.0066493168, 0.0044210884, -0.0028507179, -0.014741677, 0.01357451, 0.0130652, -0.006698833, 0.021009011, -0.023399936, 0.009478813, -0.0024033035, -0.011487756, -0.038000137, -0.032227967, 0.012527596, 0.0026420425, 0.018448317, 0.034434974, 0.0035085757, -0.022494497, -0.0415936, -0.005383117, 0.030332202, -0.046233974, 0.020867538, 0.01758532, -0.0064618625, -0.028592063, -0.017514583, -0.1838041, 0.008594596, 0.010348883, -0.03686834, 0.007384986, 0.010518653, 0.019636706, -2.778654E-4, 0.0055069076, -0.018533202, 0.038198203, 0.009485887, -0.025210815, -0.017939009, 0.008255056, 0.015335871, -0.025380583, 0.03966954, 0.03522723, -0.005970238, 0.04266881, -0.012683218, -0.022239843, -0.009910312, 9.2666014E-4, 0.014041376, 0.015137807, 0.0128388405, 0.008835103, -0.007858926, -0.040716454, -0.012506375, 0.0073425435, 0.010992594, -0.026795331, -0.0033653325, 7.453955E-4, -0.015378314, -0.020245047, 0.008538006, 0.032850455, 0.022805743, 0.0013139475, 0.016750619, 0.031265937, 0.022041777, 0.035000872, -0.009973975, 0.015010479, -0.02214081, 9.2223904E-4, -0.03726447, 0.023796067, -0.005984385, 0.004513047, 0.033925664, 0.011622157, 0.007901369, 0.0095071085, -0.008177245, -0.010631833, -0.013984786, -0.006373441, -0.0045979316, -6.640475E-4, -0.012541743, -0.030105842, 0.0054715388, -0.035481885, 0.00433974, -0.019693296, 0.013616952, 0.021093898, 0.0015677179, 0.026455792, -0.01837758, -0.033472944, 0.0040391064, 0.00222646, -0.005970238, -0.008056992, 0.030643448, -0.009259528, 0.012506375, 0.009153421, -0.0099669015, 0.023781918, -0.0027552221, 0.006638706, -0.006118786, 0.0085875215, -0.019283019, -0.0342652, 0.0033564903, -0.003619987, 0.001832099, -0.012909578, -0.004760628, 0.004028496, -0.011565567, -0.0015226228, -0.021051453, -0.012428563, 0.021093898, 0.030303909, 0.016113983, 0.0014695697, 0.020259196, 0.010554022, -0.010271072, -0.017656058, -0.011982918, 0.009004872, 0.015222691, -0.02000454, 0.023074545, -0.0060020695, -0.02489957, 0.006129397, 0.016948685, 0.059589196, 0.0071515525, 0.00890584, -0.017571174, -0.0064088097, -0.025196666, -0.08839347, 0.0076184194, 0.010037639, 0.038509447, -0.026795331, 0.02382436, -0.014034303, 0.027120724, -0.03135082, 0.028323261, -0.0023537874, -0.023428231, 2.696864E-4, -0.016538408, 0.019551821, -0.0037137142, -0.028620357, -0.009294896, 0.0017189191, 0.02658312, -0.0072930274, 0.0017648984, 0.0011662832, -0.019311314, -0.014529465, 0.016085688, -0.04125406, 0.025465468, 0.014586055, 0.0026668005, 0.0077245254, -0.020245047, 0.022169106, -0.025253257, -0.024927864, -0.04153701, -0.019594263, -0.027021691, 0.0045519527, -0.039867606, 0.009853722, 0.010631833, 0.011445314, -0.015364166, -0.026597267, 0.010363031, -0.023315052, 0.019580116, -0.017599469, -0.02439026, -0.020160163, -0.027106578, -0.012520522, 0.0052628634, 0.027177313, 0.0066068745, 0.032058194, 0.0091817165, -0.016340343, -0.023951689, -0.0025854525, 0.015958361, -0.027559295, 0.0060020695, 0.01022863, -0.0025483153, -0.015151954, -0.0091322, 0.024871275, -0.024885422, -0.018787857, 0.03389737, -0.028125195, -0.005545813, -0.014812415, 0.0042300974, -0.028860865, -0.0011556725, 0.027177313, -0.020612882, 0.0014244746, -0.027120724, 0.015024627, -0.0115372725, 0.018391727, 0.013899902, 0.01612813, -0.00222646, -0.0024651987, -0.046884757, -0.015477346, 0.016227163, 0.0020248585, 0.0054538543, -0.008523858, 0.014600202, 0.022749152, -0.009747615, -0.016382786, 0.009903238, -0.0051779784, 6.207208E-4, -0.07724526, 0.036274146, -0.03361442, -0.0016216552, -0.019665001, -0.0056130136, -0.0074698706, 0.015732002, -0.0057014357, 0.027332937, -0.004923324, 0.0028542546, -0.014515317, -0.01949523, -0.006886287, -0.00525579, -0.0014271273, -0.0111552905, 0.0069322665, 0.0026473477, -0.0138150165, 0.043461066, 0.024319522, 0.017175043, -0.002567768, 0.03361442, 0.0015641811, -0.007929664, -0.0035280285, -0.015378314, 0.031152757, -0.024036573, -0.018872742, -0.0059101107, -0.009952754, -0.027290493, -0.005330064, 0.011310913, 0.0106176855, 0.008156024, -0.014699235, -0.02607381, 0.0081277285, 0.0011689358, -6.123207E-4, 0.012223425, -0.0124568585, 0.00233964, 0.0042300974, 0.016863799, 0.019084955, 0.006964098, -0.012393195, -0.015236839, 0.0045342683, -0.02501275, 0.059193067, -0.011431166, -0.012888357, -0.006560895, 0.021942746, 0.0045767105, 0.013468403, -0.023343347, -0.0017109612, 0.013326929, 0.010844045, -0.006695296, 0.018702973, -0.030134138, -0.030586857, -0.006231966, 0.0028630968, 0.029200405, -0.005361896, 0.011148216, -0.006560895, 0.018816153, -0.0012246415, 0.014409211, 0.028393997, -0.0024404407, -0.012994463, 0.024871275, 0.0011804305, 0.0022812816, 0.0051249256, 0.0036854192, 7.171005E-4, 0.0027393063, 4.4608783E-4, 0.015081217, 0.020018687, 0.0040072743, 0.0207968, 0.015434904, -0.019962098, -0.00681555, 0.006207208, 0.031096166, 8.961546E-4, -0.01590177, 0.0043892567, -0.015067069, -0.033982255, -0.0033741747, -0.012329531, -0.029822893, 0.017047716, 0.0111340685, 0.024942013, 0.007190458, -0.014571907, 0.009393929, -0.016170572, 0.011332134, -0.010249851, -0.031152757, -0.026102105, 0.032624096, 0.023541411, 0.016793061, 0.025974778, -0.01242149, 0.043291297, 0.01803804, 0.022749152, -0.017274076, -0.0034802807, 1.02845566E-4, 0.0037667672, -0.015647115, -0.019990394, 0.012577112, -0.0115372725, -0.014324326, 0.019367903, 0.02062703, -0.013135938, 0.08437559, 0.019155692, -0.006567969, 0.025762565, -0.021291962, 0.011367503, 0.009294896, 0.02518252, -0.032454327, -3.7468722E-4, -0.0017896566, -0.029143814, -0.0017030032, -0.023767771, -0.0037137142, 0.014112114, 0.01949523, 0.0091251265, -0.0047429437, -0.015208544, -0.008750218, -0.003513881, 0.011218954, -0.0039612954, -0.027615886, -0.0043079085, 0.019622559, -0.010051786, 0.016594997, -0.018957626, -0.0020531535, -0.021419289, -0.0026049053, -0.018688824, 0.028775979, -0.0023343347, 0.005390191, 0.0038127466, 0.010575243, -0.0019629633, 0.0016711714, -0.009110979, -0.0207968, -0.017995598, 0.030417088, -0.0019063733, -0.014699235, -0.021560764, -0.01380087 ], + "id" : "d78169c1-cab1-4000-9253-bc06ad62a860", + "metadata" : { + "source" : "movies.csv" + } + }, + "39237bec-813e-4909-8cb2-bc8c4e178459" : { + "text" : ",414906-752623-526896-453395-338953-696806-634649-62568-406759-763285-675353-361743-639933-616037-505026-524434-580489-507086-476669-512195-628900\r\n20526,TRON: Legacy,Adventure-Action-Science Fiction,en,Sam Flynn the tech-savvy and daring son of Kevin Flynn investigates his father's disappearance and is pulled into The Grid. With the help of a mysterious program named Quorra Sam quests to stop evil dictator Clu from crossing into the real world.,37.607,Walt Disney Pictures-Sean Bailey Productions,12/14/10,170000000,400062763,125,Released,The game has changed.,6.445,6501,Jeff Bridges-Garrett Hedlund-Olivia Wilde-Bruce Boxleitner-James Frain-Beau Garrett-Michael Sheen-Serinda Swan-Yaya DaCosta-Elizabeth Mathis-Kis Yurij-Conrad Coates-Ron Selmour-Dan Joffre-Darren Dolynski-Kofi Yiadom-Steven Lisberger-Donnelly Rhodes-Belinda Montgomery-Owen Best-Matt Ward-Zoe Fryklund-Dean Redman-Mi-Jung Lee-Christopher Logan-Sheldon Yamkovy-Dale Wolfe-Joanne Wilson-Catherine Lough Haggquist-Thomas Bradshaw-Shafin Karim-Rob Daly-Mike Ching-Michael Teigen-Brent Stait-Shaw Madson-Amy Esterle-Cody Laudan-Jeffrey Nordling-Christine Adams-Kate Gajdosik-Jack McGee-Dawn Mander-Michael Logie-John Reardon-Edie Mirman-Allen Jo-Aaron Toney-Kim Do Nguyen-Patrick Sabongui-Will Erichson-Cillian Murphy-Brandon Jay McLaren,artificial intelligence-secret identity-simulation-super computer-utopia-computer program-dystopia-computer simulation-sequel-deception-computer game-80s style-autocracy-light cycle,/vuifSABRpSnxCAOxEnWpNbZSXpp.jpg,/zK7wNuUQ4w0QQp9FF20YTPVgpyN.jpg,8373-38356-97-1858-64635-44912-2080-39254-58574-534-9543-49538-18823-36668-605-36658-41154-1979-604-9738-10528\r\n956,Mission: Impossible III,Adventure-Action-Thriller,en,Retired from active duty and training recruits for the Impossible Mission Force agent Ethan Hunt faces the toughest foe of his career: Owen Davian an international broker of arms and information who is as cunning as he is ruthless. Davian emerges to threaten Hunt and all that he holds dear -- including the woman Hunt loves.,46.283,Paramount-Cruise/Wagner Productions,4/25/06,150000000,398500000,126,Released,The mission begins 05:05:06.,6.726,6311,Tom Cruise-Philip Seymour Hoffman-Ving Rhames-Billy Crudup-Michelle Monaghan-Jonathan Rhys Meyers-Keri Russell-Maggie Q-Simon Pegg-Eddie Marsan-Laurence Fishburne-Bahar Soomekh-Jeff Chase-Michael Berry Jr.", + "embedding" : [ 0.003781335, -0.045267787, -0.026949622, -0.04107382, 4.2045367E-4, 0.0255832, -0.008374405, -0.020875134, -0.029276596, -0.028708382, 0.039233886, 0.03541873, 0.02494734, -0.015057695, 0.02053691, 0.02797782, 0.01436772, -0.027179614, 0.015910018, -0.018981084, -0.0027835765, -9.013647E-4, -0.020361034, 0.012575137, 0.01229103, -0.0013605027, 0.01714115, -0.01727644, -0.0031437844, -0.01727644, 0.018101703, -0.005709207, -0.011567232, -0.013522162, -0.017858183, -0.0033501005, 0.0078061903, -0.02217391, 0.030413026, -0.0042379363, 0.01838581, 0.018466985, -0.021740984, -0.0066088806, -0.0046370397, 0.029006017, 0.0018162584, -0.008117355, 0.006747552, 0.029925985, 0.006892988, 0.044077244, -0.02217391, -0.037989225, -0.004467928, 0.0055130376, 0.0021426438, 0.0067103473, 0.002306682, 0.005983168, 0.0062740394, -0.022688009, -0.02797782, -0.017817596, -0.008726157, 0.0018940497, -0.008056476, -0.011012546, 0.014462423, -0.0042379363, 0.025867308, 0.020320447, 0.02962835, 0.012108389, 0.018669918, -0.026232589, -0.018196406, -0.0029459237, -0.0013647304, 0.014178315, -0.0016725136, -0.008800566, -0.011844575, 0.015612381, 0.01317041, 0.01341393, 1.1679268E-4, 0.038422152, -0.0260973, 0.007332678, 0.007156802, 0.035337556, 0.0066663786, 0.023892084, 0.009781414, 0.0059459633, -0.030710664, 0.014962993, -0.021957448, -0.03452582, 0.010566091, 0.0057700872, -0.008489401, -0.012879538, -0.0082391165, -0.0048129153, 0.008874976, -7.514896E-5, 0.023716208, 0.007840013, 0.0115401745, -0.0014636607, 0.026232589, -0.032334134, -0.006673143, -0.020374563, 0.027923703, -0.012081332, -0.008685571, -0.02747725, 0.03503992, 0.009950525, 0.01612648, -0.03349762, 0.019048728, 0.04637716, -0.0053371615, -0.0031911356, 0.0034836985, -0.011729579, 0.028573092, -0.008685571, 0.019481653, 0.0053676018, -0.026300233, 0.05343926, -0.014056554, 0.018629331, -0.016559405, -0.016167067, 0.024311481, 0.03349762, -0.01367098, -0.01266984, -0.018128762, 0.0013224526, 0.009463484, -0.0076506077, 0.011553703, 0.0146518275, 0.022268612, 0.027463721, 0.005810674, 0.018805208, 0.0153418025, 0.0018872853, -0.002964526, -0.0017105637, 0.0066257915, -0.018954026, -0.012318088, -0.01285248, -0.016194126, -0.019156959, 0.01448948, 0.019752232, 0.023202108, -0.018994613, -0.007907658, -0.01059315, -0.017154679, 0.03311881, -0.0057667047, 0.01195957, -9.0051914E-4, 0.027125498, 0.002524836, -0.012331616, -0.031901207, -0.0114251785, 0.016708223, 0.014178315, 0.03493169, 0.03552696, 0.0046235104, 0.010112872, 0.027287845, -0.018507572, 0.007988831, -0.013359815, -0.005651709, 0.018331695, -0.009098203, -0.0020056632, -0.6368336, -0.02873544, -7.8552327E-4, -0.020509852, -0.003023715, 0.02205215, 0.01838581, -7.170331E-4, -0.012568372, -0.012263971, -0.012818658, 0.029655406, 0.015842373, -0.024473827, -0.021078067, -0.019062256, -9.039014E-4, -0.015152398, 0.019305779, 0.0033957604, -0.045781888, 0.016085893, 0.004024856, 5.8174384E-4, 0.0025890982, 0.012284265, -0.015044166, -0.0032926025, 0.003050773, -0.012338381, -0.008414992, 0.0030981242, 0.019021671, 8.8445353E-4, 0.036095176, 5.7751604E-4, 0.0011922367, 0.047080662, 0.02685492, 0.029763637, -0.027896646, -0.0024741024, 0.022606837, 0.007691195, -0.025650844, 0.029438945, 0.0010172061, 4.7774022E-4, 0.007921186, -0.026246117, -0.0033720848, 0.0032046644, -0.007535612, -0.0043055806, -0.007508554, -0.0038658907, 0.014124199, -0.020482795, 0.021470407, -0.005492744, -0.013136587, 0.025840249, 0.007373265, 0.017032918, -0.01714115, 0.018683447, -0.0044848393, -0.015937075, 0.0076709013, -0.04096559, 0.0038455974, 0.010863728, -0.01538239, 0.0012717191, 0.0036832502, 0.0013300626, 0.040857356, 0.0100046415, -7.673438E-4, 0.02835663, 9.0474694E-4, -0.010112872, -0.008286468, 0.010471389, 0.027071381, -0.009355253, -0.024243835, 0.006940339, 0.024230307, 0.0055739176, 0.018683447, 0.011709286, 0.005462304, -0.009267314, -0.0058884653, 0.008367641, -0.01865639, 0.009720533, 0.024338538, -0.06277422, -0.006876077, -0.02470382, 0.023459159, -0.0021426438, 0.028329572, 0.006104928, -0.001145731, -7.550832E-4, 0.032307077, -0.01889991, -0.016802927, -0.007549141, -0.01304865, -0.015206513, -0.0066832895, -0.025894364, 0.011398121, -0.0025823337, 0.011012546, -0.020509852, 0.007082393, 0.004021473, 0.009192905, -0.013643922, -0.009409368, 0.030142449, 4.7435798E-4, -0.013555984, -0.005732883, 0.0121151535, 0.005753176, 0.0060643414, 0.012987769, -0.016559405, 0.0022576395, 0.014218901, 0.017668778, -9.79156E-4, 0.008753215, 0.008076769, -0.022660952, -0.009828765, -0.012561608, 0.0017756716, -0.0050429073, -0.0024301333, -0.013014827, -0.004160145, -0.011445472, -0.019576356, -0.0086990995, 0.012751013, 0.0035445788, 0.008036182, -0.0027565188, -0.013495104, -0.026868448, -0.025217919, 0.01700586, -0.024027374, -0.0016987259, 0.01303512, 0.005448775, -0.018737564, 0.024717348, -0.010667559, -0.0118851615, 0.011486058, -0.008617926, -0.0116551705, 0.014841232, -0.011289889, -0.006994455, 0.026354348, 0.001298777, 0.028167225, -0.019238133, 0.011925749, 0.013948323, -0.016586464, -0.005252606, 0.012656311, -0.015044166, -0.0024910136, 0.015558265, 0.010606678, 0.01676234, -0.0071906243, -0.0032807647, -0.0035378141, -0.011831046, -0.003299367, -0.0053337794, -0.004633657, -0.0037576593, 0.028464861, 0.0064465334, 0.002352342, -0.0014814175, 0.012636017, 0.060068432, 0.021023951, 0.0050023207, -0.017114092, 0.0034059072, -0.03577048, 0.010281984, -0.005053054, -0.0019786055, -0.0036156056, 0.0255832, -0.001751996, 4.8069967E-4, -0.00781972, 0.015071224, 0.030304795, -0.01600472, 0.007934716, -0.016464703, 0.008516459, 0.002979746, -0.0066054985, 0.0299801, 0.0061928662, -0.026286704, 0.004210878, 0.029006017, -0.01536886, 0.0011601055, -0.023837969, 0.005049672, -0.00397074, -0.0017350848, 0.013657452, 0.012751013, 0.011601054, 0.02973658, 0.0038320683, 0.043914896, -0.014530067, 0.0044476343, 0.021483935, 0.026746687, -0.003723837, -0.00680505, -0.021727456, 0.018994613, 0.009429662, -0.022512134, 0.054169822, -0.023594448, 0.025677903, -0.022918, 0.0054724505, 6.933575E-5, -0.009132026, -0.012460141, 0.010951666, 0.032496482, 0.013319228, 0.011019311, -0.016802927, 0.005184961, 0.009253786, 0.010207575, -0.0020293389, -0.028546035, 0.0035750188, -0.0039842688, -0.021889802, -0.006909899, -0.011506352, 0.0030456996, -0.006967397, 0.010863728, -1.9067331E-4, 0.0011347387, 0.0040417667, 0.0040688245, 0.036203407, -0.019332835, -0.02849192, 0.021619225, 0.024987927, -0.023824438, -0.027788416, -0.015842373, -0.009192905, -0.02747725, -0.016464703, -0.024839109, 0.01612648, -0.01303512, 1.4998083E-4, -0.0029679083, -0.0045321905, 0.011289889, -0.014232431, 0.017479373, 0.014313604, -0.0071770954, 0.023648564, -0.00750179, -0.014800645, 0.034715224, -0.015274158, 0.013150116, 0.0042142607, 0.0048298268, -0.014705943, -6.1387505E-4, -0.009585245, -0.032956466, -0.0047283596, -0.022498604, -0.005049672, -0.014814175, 0.0032097378, 0.0061928662, -0.0076709013, -0.015422976, -0.026760217, -0.024622645, 5.686377E-4, 0.06645408, 0.035878714, -0.002105439, 0.006656232, -0.00774531, -3.1602725E-5, -0.006098164, -0.024663232, -0.0021240416, -0.007028277, 0.01448948, -0.008272938, 0.014719472, 0.0012404334, 0.02305329, 0.0020952926, 0.011188422, -0.005080112, -0.015463563, -0.022390373, -0.028302513, -0.012101625, 0.008841153, 0.025014985, 0.015098282, -0.027179614, 0.03365997, 0.024595588, 0.0030135685, 0.015612381, -0.0044780746, 0.0064871204, 0.008097063, 0.00390986, 0.0012455068, -0.0042717587, 0.03060243, 0.004982027, 0.009747592, 0.019427538, 0.011120778, -0.007758839, -0.0049549695, -0.0031945177, 0.015666496, -0.02014457, -0.02458206, 0.017560547, 0.03942329, -0.048622962, 0.028004877, 0.005130845, -0.02229567, -0.0035175208, 0.00247072, 0.006027137, -0.00522893, -0.0056550913, -0.017722894, 0.008516459, 0.008523224, -0.05920258, 0.014760058, -0.01097196, 0.0010949975, -0.024419712, 5.58491E-4, -0.0035953121, -0.006889606, 0.015910018, 0.0048399735, -0.017208794, -0.018642861, -0.012717191, 0.013244819, -0.0014839541, 0.023012703, -0.0033636293, 0.018602274, 0.008908798, -0.028329572, -0.031197704, 0.016424116, -0.0153418025, -0.00415338, 0.007014748, -0.002377709, 0.019184018, -0.009206435, 9.419515E-4, 0.014557125, -5.174814E-4, -0.0128051285, -0.0053473082, 0.034579936, 0.014827703, 0.01159429, 0.0152471, 0.013948323, 0.003082904, -4.058678E-4, -0.016491761, -0.018155819, -0.020496324, -0.017695835, -0.015517678, -5.22132E-4, 0.0077858972, -0.004998938, -0.017587604, -0.025407324, -0.009903174, 0.0022897709, 0.005901994, 0.021497464, -0.006980926, 0.017749952, -0.011201951, -0.0042582294, -0.0021866127, -0.0046235104, -0.010241398, 0.017993473, 0.017952885, -8.3076063E-4, 0.0026702718, -0.008895269, -0.017438786, -0.00718386, 0.031792976, 0.015598852, 0.027084911, -0.008834389, -0.004755418, -0.009490542, -0.028383687, 0.008462343, -7.681894E-4, 0.0016606757, 0.007948244, -0.021957448, 0.011242538, 0.008996736, -0.0030659928, -0.0029526881, -0.028004877, 0.0010628663, -0.0028850436, 7.250659E-4, 0.043427855, -0.003635899, -0.0026770362, -0.038909193, -0.015869431, -0.0044307234, -0.055468597, -0.037826877, -0.003957211, 0.04713478, 0.015206513, 0.034715224, -0.014354191, 0.030169506, -0.006656232, 0.014462423, 0.020685729, -0.0011846266, -3.2173478E-4, -0.022931531, 0.014124199, 0.0053405436, 0.02014457, 0.009057616, 0.012987769, 0.002802179, 0.02911425, 0.010200811, 0.011533409, 0.009098203, -0.027057853, -0.024906753, 0.010802847, -0.025434382, -0.0059628743, -0.02470382, -0.013501869, 0.032415308, 0.00563818, -0.0063585956, -0.005127463, 0.044050183, -0.007867071, 0.0043698433, -0.007156802, 0.019265192, -0.023797382, -0.012480435, -0.03311881, -0.0068151965, -0.001795965, -0.009152318, 0.013454517, -0.0168841, -0.014854761, 0.0024436624, 0.030791836, -0.0272202, -0.011601054, 0.017087035, -0.003226649, -0.0088140955, -0.043319624, -0.018169347, -0.033957604, -0.007826484, 0.009794943, -0.0023032997, 0.010281984, -0.015071224, -0.047161836, 0.034336414, 0.009564951, 0.03769159, 0.016924687, 0.03996445, 0.02017163, 0.013319228, -0.018588744, -0.008137649, -0.013096001, -0.0127916, 0.04007268, 0.031576514, -0.02747725, 0.0031234908, -4.7139853E-4, -0.017100563, -0.033443507, -0.04120911, 0.023797382, 0.019779291, 0.015260629, -0.02029339, 0.0038286862, -0.029844811, 0.0217951, -0.0033247336, 0.01676234, 0.015044166, -0.025975538, -0.015855901, -0.008624691, -0.008387934, 0.004833209, 0.015152398, -0.026354348, 0.025799662, -0.018575216, 0.022079207, -0.03225296, -0.0081241205, 0.028437803, -0.032929406, 0.013440988, 0.008624691, 0.017114092, -0.009362017, -0.009301137, 0.00750179, 0.026056712, -0.008286468, 0.027517837, -0.013583042, 0.0028106344, 0.009578479, 0.01637, -0.012987769, -0.012548079, -0.012622489, -0.015720613, 0.029384827, 0.007170331, 0.0036291345, -0.010153459, -0.017682306, -0.02596201, 0.0017054903, -0.010221104, 0.02759901, -0.035445787, 0.019630471, 0.0023692532, 0.012365439, 1.6572935E-4, -0.00926055, -0.0017976561, -0.0033027492, 0.011932513, 0.0017274747, 5.9780944E-4, -0.010369922, -0.004762182, -0.04775711, -0.014597711, -0.015233571, -0.023350926, 0.00756267, -0.022512134, 0.013961852, -0.00321312, -0.014300075, -0.013400402, 0.012277501, -0.0035682544, 0.009416133, 0.027436662, -0.020888662, -0.005678767, -5.6388144E-5, 0.03503992, -0.012040745, 0.008042946, 0.0032909114, 0.018453456, 0.031928267, -0.01599119, 0.01285248, 0.010511976, -0.021402761, -0.016518818, 0.019292248, 0.020009283, 1.4585874E-4, -0.0078061903, -0.024906753, 0.009165848, -0.007461203, 0.012453376, -0.012744249, 0.00963936, 0.014475951, -0.006690054, 0.02658434, 0.022688009, -0.017709365, -0.03311881, 0.005810674, -0.01077579, -0.03138711, -0.0018619185, 0.0075964923, 0.018548159, 0.008185, -0.019224605, -0.017357612, -0.013542456, -0.023472687, -0.038855076, -0.0044611637, 0.013008063, 0.050598186, 0.0074070874, 0.004599835, 0.013440988, -0.0072650337, 0.009909939, -0.016031777, -0.007359736, 0.008665278, 0.0077926614, 0.009869352, 0.022228027, -0.030845951, -0.014962993, 0.0053946595, 0.012920124, 0.00856381, 0.031224761, -0.012872773, -0.010342864, -0.022633893, 6.405101E-4, 0.0091590835, -0.008536752, 0.017601132, -0.029195422, -0.0011956189, 0.009334959, 0.010816377, 0.0057903803, -0.0068253432, 0.011384591, -0.013197468, -0.013359815, -0.0185211, -0.027139027, -5.014158E-4, -0.02041515, 0.0074814963, 0.0076438435, 0.007021513, 0.021145713, 0.030304795, -0.011120778, -0.012419554, -0.006649467, 0.0014163095, -0.0021950684, -0.013677744, 0.0043123453, 0.026313761, -0.02709844, 0.020198688, -0.033254102, -0.0030592284, -0.011486058, 0.009497306, -0.007610021, 0.020753372, 0.007373265, -0.055252135, -0.0060541946, -0.010214339, 0.0026398317, 9.5632597E-4, 0.008529988, -0.005675385, -0.0272202, -0.0019211075, 0.0063585956, -0.021632753, -0.020983364, 0.013934794, -0.016545877, 0.002629685, 0.021078067, 0.17685013, -0.006588587, 0.005066583, 0.045376018, 0.007691195, 0.008847917, 0.025948482, 0.00762355, -0.028464861, 0.016870571, 0.0032503246, 0.0062131593, -0.008171472, -1.0537765E-4, 0.008949385, -0.0077182525, -0.024933811, -0.015030637, -0.02153805, -0.02041515, -0.010058757, -0.0047385064, -0.013894208, -0.03365997, 0.012433084, -0.011465766, -0.005979785, 0.008103827, 0.011905455, 0.020266332, -0.02822134, -0.011012546, -0.002012428, 0.008225587, -0.0061962483, -6.337456E-4, -0.0071026864, 0.0066799074, -0.0057024425, -0.009294372, 0.009828765, 0.018236993, 0.0024216778, -0.006642703, 0.014232431, 0.02849192, -0.02155158, 4.2869785E-4, -0.029953044, -0.0074409093, -0.04810886, -0.0015135487, -0.0040045623, 0.02391914, -0.01536886, 8.269556E-4, -0.0011203642, 0.007373265, -0.0052052545, -5.4918986E-4, -0.0049549695, 0.034579936, -0.022958588, -0.0037475126, -0.008915562, 0.017601132, -0.02381091, -0.0024250601, 0.027950762, -0.044185475, -0.008266174, -0.01991458, -0.034688167, 0.012500728, -0.011864868, -0.008056476, 0.01398891, 0.0043292562, 0.014705943, 0.007758839, -0.017303497, -0.03568931, 0.0034059072, -0.017736422, -0.009253786, -0.028681325, 0.0096596535, -0.024595588, -0.013643922, 0.0040620603, -0.01448948, -0.013799505, -0.01039698, -0.015044166, -0.018494042, 0.0066765253, 0.030440085, 0.01045786, -1.08971275E-4, -0.014570653, -0.023337398, 0.03349762, 0.02332387, -0.006581823, -0.017695835, 9.3265035E-4, -0.007204153, 0.003750895, 0.020685729, -0.024730878, -0.0048873248, -0.04310316, -0.00204625, -0.0071635665, 1.12142116E-4, 0.021375705, -0.003241869, -0.018845795, 0.04421253, -0.022038622, 0.014976522, -0.010045228, 0.015896488, -0.0043766075, -0.01089755, -0.026936093, -0.017831124, 0.010491682, -0.010552563, -0.038016282, 0.010092579, -0.015842373, 0.0155717945, 0.001430684, 0.0020022811, 8.9460023E-4, 0.030088332, 0.01623471, -0.008191765, 3.5851655E-4, -6.219078E-4, -0.0130012985, 0.0045457194, 0.011262831, 0.011303418, -0.036988083, 0.01802053, -0.0063653598, -0.015098282, -0.031711802, -0.008245881, -0.012466906, 0.0021680105, 0.010762261, 0.048460614, 0.004143234, -0.019129902, -0.032280017, -0.022606837, 0.035337556, -0.046837144, 0.031711802, 0.006953868, -0.008049712, -0.027896646, -0.012561608, -0.1729538, 0.0146112405, -0.0025637315, -0.026895506, 0.012453376, 2.4669152E-4, 0.028924845, 0.012236914, 0.013515398, -0.02053691, 0.014827703, -0.0037610414, -0.050327606, 0.0021713928, 0.007522083, 0.018182877, -0.012636017, 0.0435902, 0.028302513, -0.007271798, 0.022850357, 0.002233964, -0.020685729, -7.373265E-4, 0.014935935, -0.005364219, 0.014949463, -0.0072176824, 0.012649546, 7.8552327E-4, -0.029682465, -0.016058836, 0.0064871204, 0.008462343, -0.0053236326, -0.001270028, -0.009943761, 0.008624691, -0.0072853267, -0.0029188658, 0.0299801, 0.02596201, 0.02646258, 0.022255084, 0.012920124, 0.016965274, 0.014056554, -0.015395918, 0.0031319465, -0.0135762775, -0.005814056, -0.032577656, 0.0013613482, -0.007156802, 7.6787226E-5, 0.013907736, -0.005316868, -0.00601699, 0.0040519135, -0.0066663786, -0.045538366, -0.013400402, 0.011986629, -0.02053691, -0.011201951, -0.018629331, -0.0039775046, 0.02027986, -0.025150275, 0.015598852, -0.0077926614, -0.0017122547, 0.014340662, 0.010559327, 0.0018957409, -0.005915523, -0.0234321, 0.0074747317, 0.0139212655, 0.0152471, -0.011661935, 0.031955324, -0.009267314, 0.016356472, 0.02408149, -0.031062415, 0.012209856, -0.0065480005, 0.0036528101, -0.019373422, 7.330987E-4, -0.009077909, -0.022931531, -0.010471389, -0.0015515988, 0.008097063, -9.842294E-4, 0.006382271, 0.020198688, -0.008705864, -0.01147253, -0.020482795, -0.0052187834, 0.013522162, 0.030088332, 0.0022677863, -0.014787116, 0.03441759, 0.026300233, -0.017614663, -0.012027215, 0.005370984, 0.014800645, 0.024284422, -0.024839109, 0.0018754475, -0.012663075, -0.028464861, -0.0029154837, 0.018101703, 0.036014, -0.0076573724, -0.0049448228, -0.013373343, -0.011242538, -0.014435365, -0.09367429, -0.008279703, 0.027314903, 0.03236119, -0.027707241, 0.043698434, -0.013522162, 0.020942777, -0.026570812, 0.028654266, 0.00481968, -0.028058993, -0.007867071, -0.011127542, 0.0032469423, -0.0039639752, 0.0024791758, -0.01045786, 0.008056476, 0.03528344, -0.01109372, -0.0033365714, 0.0055772997, -0.014543596, -0.032307077, 0.008996736, -0.035932828, 0.023012703, 0.005377748, 0.008225587, 0.02960129, -0.024636175, 0.021524522, -0.028410746, -0.029006017, -0.017668778, -0.009084674, -0.035986945, 0.013210997, -0.050057027, 0.0022255084, -0.010383451, 0.004332639, -0.02420325, -0.0023303577, 8.734613E-4, -0.017073505, 0.027409606, -0.008293232, -0.03087301, -0.014841232, -0.018575216, -0.008414992, 9.2673145E-4, 0.012263971, 0.023120936, 0.020645142, 0.0023692532, -2.3823594E-4, -0.009091439, -0.012527786, 0.0028782792, -0.03349762, 0.007914422, 0.012554844, -3.7056574E-4, -0.0146112405, -0.010829906, 0.0146518275, -0.007420616, -0.018209934, 0.032225903, -0.032929406, -0.00750179, -0.022782711, -0.013447753, -0.007873835, -0.023594448, 0.025488498, -0.027287845, -0.012433084, -0.03198238, 0.005496126, -0.016545877, 0.008205294, 0.027247258, 0.01007905, -3.1116532E-4, -0.0077926614, -0.024906753, 0.016167067, 0.01563944, 0.009700241, -0.008394699, -0.013346286, 0.015328273, 0.011560468, 0.012493963, -0.011709286, 0.001467043, -0.013109529, -0.01147253, -0.07559964, 0.021727456, -0.021402761, -8.3033787E-4, 0.002159555, -0.0077317813, 0.0027210054, -0.014475951, 0.004718213, 0.0022880796, -0.003196209, 0.013109529, -0.004437488, 0.013197468, -0.008036182, 0.020090455, 0.004292052, -0.0128457155, 0.005868172, 0.0076709013, -0.023012703, 0.007880599, 0.018358754, -0.005374366, -0.0036832502, 0.031928267, 0.0102346325, 0.014286546, -0.0016167067, -0.02167334, 0.01991458, 0.010417273, -0.018737564, 0.0074814963, -0.012500728, -0.022471547, -0.018534629, -0.0018923585, 0.0141512565, 0.012061038, -0.0062537463, -0.020428678, -0.003345027, -0.014394778, -0.008644984, 0.015017108, -0.023526803, 0.0074679675, 0.024243835, 0.017073505, 0.020388093, 0.012866009, -0.010992252, -0.013637158, 0.031360053, -0.028708382, 0.05898612, 0.003023715, 0.0029256304, -0.012020451, 0.031360053, -0.0059425808, 0.022850357, -0.026192002, 0.02585378, -0.009713769, -0.002323593, 0.0036020766, -0.0019735321, -0.017682306, 0.002497778, -0.020996893, 0.02822134, 0.025542613, 0.0146112405, 0.029033076, 0.0017486138, 0.010545798, 0.008732922, 0.009876116, 0.028464861, -0.016031777, -0.015842373, 0.006703583, 0.0020225744, 0.014719472, -0.0020597791, 0.01789877, -0.0023320487, 0.014557125, -0.016140008, 0.007569434, 0.016518818, -0.0031877533, -0.0018822119, 0.023513274, 0.0034042161, -0.0061252215, -0.006037283, 0.022417432, -0.0010510285, 0.0039842688, -0.018832266, -0.021402761, -0.023377985, 0.002320211, -0.018264052, -0.026868448, 0.010606678, 0.016099423, 0.0130757075, 0.030277736, -0.006216542, 0.005678767, -0.042805523, 0.0129607115, -0.01285248, -0.02822134, -0.025921423, 0.052329887, 0.032307077, 0.0071770954, 0.034309357, -0.027328432, 0.06932222, 0.03062949, 0.026706101, -0.02644905, -0.0038929486, -0.011587526, 0.009037322, 0.0056584734, -0.025989067, 0.010559327, -0.012974241, -0.017357612, -0.005732883, 0.0380704, -0.0077723684, 0.07516672, 0.022877414, 0.0022677863, 0.01001817, -0.012744249, -0.00913879, 0.0060508125, 0.014908877, -0.030954184, -0.0055908286, 0.022958588, -0.009936997, 0.017438786, -0.025150275, 5.906222E-4, -0.007136509, -0.0055739176, 0.015598852, -0.014733001, -0.0018247139, -0.0011846266, -0.0056347977, 0.015855901, 0.0067678452, -0.024243835, -0.009585245, 0.045592483, -0.01914343, -0.027111968, -0.019698117, 0.011283125, -0.031089474, 0.0034295828, 0.0017925828, 0.020185158, 0.0012438156, 0.013643922, -0.021659812, 0.03200944, 0.008185, -0.009071145, 0.0023861644, -0.00976112, -0.015788257, 0.0081241205, -0.0110396035, -0.009571715, -0.027639596, -0.0185211 ], + "id" : "39237bec-813e-4909-8cb2-bc8c4e178459", + "metadata" : { + "source" : "movies.csv" + } + }, + "a84791f0-3db0-4056-a529-2a2c74aa605b" : { + "text" : "423,33232,Matthew McConaughey-Anne Hathaway-Jessica Chastain-Michael Caine-Bill Irwin-Ellen Burstyn-Mackenzie Foy-Casey Affleck-John Lithgow-Wes Bentley-David Gyasi-Matt Damon-Topher Grace-Timoth��e Chalamet-David Oyelowo-William Devane-Josh Stewart-Collette Wolfe-Leah Cairns-Russ Fega-Lena Georgas-Jeff Hephner-Elyes Gabel-Brooke Smith-Liam Dickinson-Francis X. McCarthy-Andrew Borba-Flora Nolan-Griffen Fraser-William Patrick Brown-Kristian Van der Heyden-Joseph Oliveira-Ryan Irving-Alexander Michael Helisek-Benjamin Hardy,rescue-future-spacecraft-race against time-artificial intelligence (a.i.)-nasa-time warp-dystopia-expedition-space travel-wormhole-famine-black hole-quantum mechanics-family relationships-space-robot-astronaut-scientist-single father-farmer-space station-space adventure-time paradox-time-manipulation-father daughter relationship-2060s-cornfield-time manipulation,/gEU2QniE6E77NI6lCU6MxlNBvIx.jpg,/xJHokMbljvjADYdit5fK5VQsXEG.jpg,27205-286217-155-550-11324-106646-1124-13-807-680-118340-16869-603-68718-120-77-244786-49047-76341-121-49026\r\n24021,The Twilight Saga: Eclipse,Adventure-Fantasy-Drama-Romance,en,Bella once again finds herself surrounded by danger as Seattle is ravaged by a string of mysterious killings and a malicious vampire continues her quest for revenge. In the midst of it all she is forced to choose between her love for Edward and her friendship with Jacob knowing that her decision has the potential to ignite the ageless struggle between vampire and werewolf. With her graduation quickly approaching Bella is confronted with the most important decision of her life.,77.139,Summit Entertainment-Maverick Films-Imprint Entertainment-Sunswept Entertainment-Temple Hill Entertainment,6/23/10,68000000,698491347,124,Released,It all begins... with a choice.,6.2,7938,Kristen Stewart-Robert Pattinson-Taylor Lautner-Bryce Dallas Howard-Dakota Fanning-Billy Burke-Peter Facinelli-Elizabeth Reaser-Jackson Rathbone-Kellan Lutz-Ashley Greene-Nikki Reed-Anna Kendrick-Michael Welch-Justin Chon-Christian Serratos-Xavier Samuel-Sarah Clarke-Gil Birmingham-Paul Jarrett-Iris Quinn-Kiowa Gordon-Tyson Houseman-Bronson Pelletier-Alex Meraz-Julia Jones-Tinsel Korey-Chaske Spencer-Alex Rice-Booboo Stewart-Peter Murphy-William Belleau-Justin Rain-Monique Ganderton-Byron Chief-Moon-Mariel Belanger-Jodelle Ferland-Dawn Chubai-Jack Huston-Ben Geldreich-Daniel Cudmore-Cameron Bright-Charlie Bewley-Leah Gibson-Kirsten Zien-Cainan Wiebe-Catalina Sandino Moreno,based on novel or book-vampire-graduation-bite-immortality-teen movie-werewolf-based on young adult novel-supernatural power-vampire human love,/3mFM80dPzSqoXXuC2UMvLIRWX32.jpg,/r4OqScx7hVXsG1obaJjJKJNaxHT.", + "embedding" : [ 0.007481185, -0.02562272, -0.016152866, -0.030384703, -0.03073644, 0.040882714, -0.007156504, -0.011458524, -0.023458181, -0.03644541, 0.02471632, 0.035227858, 0.008806964, -0.004518473, 0.010518302, 0.018073892, 0.027597861, -0.021198945, -0.0022896754, -0.033875022, -0.0010103997, 0.0027817697, -0.012364924, 0.016545188, -0.001822947, 0.016734585, 0.024486337, -0.007920857, -0.008759615, 7.6266145E-4, 0.013230739, -0.027976654, -0.008989598, -0.0370136, -0.025000416, 0.012608434, 0.008455227, -0.034307927, 0.02347171, 0.0030624832, 0.008198188, 0.021009548, -0.009510439, -0.0066796294, -0.022781763, 0.0050156405, 0.005069754, -0.009605138, -0.005448548, 0.022700593, 0.023525823, 0.026637347, -0.034930233, -0.013650118, -0.018114477, 0.007704403, -0.026948499, -0.0049885837, 0.0012699751, 0.017640986, 0.013176626, -0.016098753, -0.031007009, -0.016328733, -0.017153963, -0.012337867, -0.015679372, -0.00506299, -0.0013477631, 0.001567599, 0.025758004, 0.005326793, 0.026163854, 0.011817025, 0.023823448, -0.024919245, -0.030195307, -0.005137396, 0.006304217, 0.0067675635, 0.009895997, 9.292294E-4, -0.015801128, 0.0045962613, 0.011127079, 0.004298637, -0.024662206, 0.016978096, -0.03625601, 0.0115938075, 0.00962543, 0.027814314, -0.003059101, 0.011654684, 0.008861078, 0.015246465, -0.0066965395, 0.030465873, -0.017316304, -0.027259652, 0.0075961757, -0.007000928, -3.3546114E-4, -0.01808742, -0.004873593, -0.006300835, 0.0040889475, 0.0075826473, 0.0232282, 0.006885937, 0.008374057, -0.016220508, 0.015922884, -0.03049293, -0.008489048, -0.011715562, 0.014096554, -0.021090718, 0.0066863936, -0.008827257, 0.027205538, 0.029816512, 0.008651388, -0.038285267, 0.027543748, 0.031358745, 0.0033973102, -0.011330004, 0.009212815, -0.008549926, 0.014921784, -0.0076164682, 0.028111938, 0.0059457156, -0.021428928, 0.04529296, -0.02107719, -0.0026667786, -0.017843911, -0.016639886, 0.023485238, 0.03858289, -0.03712183, -0.0155440895, -0.022430025, 0.00723091, 0.018209176, -0.0023167322, 0.016748114, 0.0124190375, 0.018100949, 0.019264389, 0.015016483, 0.01751923, 0.0093278065, -0.0066999216, -0.008766379, 0.0014162505, -0.005898366, -0.020062562, -0.020319602, 0.0021357904, -3.2531485E-4, -0.0154764475, -0.0036323655, 0.019846108, 0.015151766, -0.024986887, 0.0038217625, 0.002641413, -0.010809162, 0.022862934, -0.039800443, 0.013704232, 0.01007863, 0.023525823, 0.009483382, -0.0011896504, -0.032197505, -0.01983258, 0.0051610703, 0.0066187517, 0.03744651, 0.040855657, -0.02380992, 0.013129276, 0.019562013, -0.017735684, 0.020522527, -0.0053673782, -0.0028138994, 0.031953994, 0.007487949, -0.0036661865, -0.64459944, -0.01536822, -0.002090132, 0.0038217625, 0.020441357, 0.017830383, 0.015841713, -0.016883397, -0.009537496, -0.005360614, -0.024553979, 0.026975555, 0.015178823, -0.022132402, -0.02049547, -0.014258895, 0.013399843, -0.0176004, 0.008184659, 0.007677346, -0.02297116, 0.02992474, 0.015422334, -0.012567849, 0.010274792, 0.012703133, 2.7268106E-5, -0.013521599, 5.5064666E-5, -0.0052659153, -0.007298552, 0.022849405, -0.001043375, -3.092499E-4, 0.040693317, -0.0025399502, -0.0143400645, 0.049135014, 0.021144832, 0.024148127, -0.031223461, -0.004812715, 0.0026752339, 0.010301849, -0.032197505, 0.02949183, 6.256868E-4, 0.007832922, -0.012276989, -0.0063515664, 0.0018415484, 0.016883397, -0.0030320443, -0.015178823, -0.0038691119, -0.009821592, 0.020008449, -0.04875622, 0.023606993, 0.0037101535, -0.027638447, 0.016964568, 0.012290518, 0.017370418, -0.013616297, 0.026691461, -0.0016656797, 0.008955777, 0.010775341, -0.033333886, 0.008096726, 0.016585773, -0.014299479, -0.0022457084, 0.017411003, 0.0013502997, 0.03709477, 0.017816855, -0.007413543, 0.016626358, -0.0133795515, -0.016599301, 1.137228E-4, 0.009855413, 0.03355034, -0.0039976314, -0.036418352, -0.002568698, 0.00558045, 0.0038894045, 0.0011355369, 0.021036604, -0.001491502, -0.0075488267, -0.02306586, -0.010775341, -0.014745915, 0.0024706172, 0.022754706, -0.06471969, 0.0020326364, -0.017911553, 0.022917047, -0.01214847, 0.023092916, 0.019413201, -0.003199458, -0.018980293, 0.02164538, -0.016450489, -0.014975898, -0.0040043956, -0.022700593, 9.5205853E-4, -0.015273522, -0.02843662, 0.007109155, 0.011296183, -0.005330175, -0.003875876, 0.0035579596, 0.023836976, -0.0030388085, -0.01148558, 0.015571146, 0.022037704, -0.0019463933, -0.016409904, 0.006754035, 0.017586872, 0.008380821, -0.001417096, 0.029735342, -0.021699494, 0.0041193864, -0.008752851, 0.014908256, -0.008881371, 7.744988E-4, 0.0049547628, -0.021131303, -0.0028138994, -0.016923983, -1.9045398E-4, -0.013251032, -0.012202583, -0.023214672, 0.0075691193, -0.0034903176, -0.005330175, -0.008962541, 0.01876384, -0.0017705245, 0.015760543, 0.01934556, -0.004782276, -0.021104246, -0.017654514, 0.012378452, -0.017884497, 0.0039367536, 0.024729848, -0.007887036, -0.016937511, 0.02329584, -0.003422676, -0.011830553, 0.009003125, -0.002196668, -0.018452687, 0.01800625, -0.012385217, 0.0150976535, 0.013075163, -0.010680643, 0.021753607, -0.01818212, 0.022200044, -0.0046639033, -5.4271986E-5, 0.010646822, 0.004329076, -0.014827086, -0.010443896, 0.017627457, 0.03217045, 0.023539351, -0.020103147, 0.0051509244, -0.014597104, -0.016423432, -0.013825987, -0.008340236, -0.012391981, 0.011620864, 0.01685634, 0.011823789, -0.009706601, -0.002010653, -0.010376254, 0.047971576, 0.016369319, 0.014313008, -0.0014289333, 0.014840614, -0.03382091, -0.005326793, -0.011228541, 0.008881371, -0.014083026, 0.018736783, -0.013907157, -0.018439159, 0.0070618056, 0.019399673, 0.034849063, -0.021253059, 0.011830553, -0.003872494, 0.0037439745, 0.0014762826, -0.0176004, 0.028707186, 0.008110254, -0.01967024, 0.009233108, 0.018655613, -0.011850846, -0.0054248734, 8.3326263E-4, -0.003055719, 0.0029187442, 0.0061587873, 0.009666015, 0.005252387, -0.01777627, 0.010545359, -0.013670411, 0.042424947, -0.012344631, -0.012838417, 0.020725451, 0.017668042, 0.008563453, 0.014759444, -0.0016428506, 0.006338038, 0.022741178, -0.0037541208, 0.027327294, -0.0044102464, 0.020833679, 0.008779908, 0.0146512175, 0.0044068643, -0.01231081, 0.0070888624, 0.005884838, 0.026339723, 0.020833679, 0.0128654735, -0.0150976535, 0.0028561756, 0.0043798075, 0.008651388, -0.004271581, -0.030547043, 0.0035647238, -0.010153037, -0.0259474, -0.016504603, -0.020481942, 0.010809162, 0.016261091, -0.00528959, -0.0134471925, -0.01132324, 0.015314107, 0.013237503, 0.019115577, 0.004958145, -0.04848565, 0.016815756, 0.028734243, -0.017979195, -0.02693497, -0.012331103, -0.01214847, -0.018060364, -0.027976654, -0.012337867, 0.025514493, -0.0176004, -0.0015084124, -0.016166395, 0.0039671925, 0.018452687, -0.014989426, 0.00528959, 0.015395277, -0.014772972, 0.007109155, -0.008651388, 0.0028460294, 0.015855242, -0.019061463, -0.00821848, -0.0068047666, -0.014258895, 0.0052659153, -0.0018314022, 0.006534199, -0.03460555, 1.6075501E-4, -0.013690704, -0.001289422, -0.016694, 0.010755048, 0.0019430112, -0.018290346, -0.014935313, -0.024242826, -0.02827428, -0.006564638, 0.08571571, 0.03909697, 0.003581634, 0.005181363, -0.007237674, 0.009375156, -0.006412444, -0.008313179, -0.010234207, -0.010714464, 0.028598959, -0.009131645, 0.021591267, 0.011012088, 0.015841713, 0.0047924225, -0.007941149, -0.015084125, -0.011431467, -0.0058814557, -0.018533858, -0.035173744, 0.01090386, 0.02900481, 0.0066525727, -0.016288148, 0.029897682, 0.01643696, -4.2508653E-4, 0.015909355, -0.0043459865, 0.0073459013, 0.0068419697, 0.010585944, 0.0022034321, 0.0056514735, 0.01570643, 0.0056108884, 0.030438816, -0.005188127, -0.011654684, 0.01235816, 0.013305145, -0.0052016554, 0.01066035, -0.026907913, -0.0098418845, 0.03008708, 0.033279773, -0.030871725, 0.016937511, 0.021131303, -0.026339723, -0.012060536, 0.009537496, 0.006307599, -0.01235816, 0.0020985873, -0.034307927, 2.5069749E-4, -0.010261264, -0.045428243, 0.01470533, -0.019480843, -4.231841E-4, -0.0088002, -0.011952309, -0.009747186, -0.018168591, -0.0024469427, 0.003092922, -0.02025196, -0.014948841, -0.010213914, 0.0143400645, 0.0029288905, 0.01818212, -0.0214154, 0.008854314, 0.012243168, -0.028571902, -0.0195079, 0.025013942, -0.016261091, -0.01082269, 0.0017705245, -0.010443896, 0.018046835, 0.0042242315, 0.007494713, -0.013988327, 0.0031385801, -0.020387243, -0.014881199, 0.041775584, 0.018303875, 0.011086494, 0.0016157939, 0.0061351126, -2.942419E-4, 0.0098080635, -0.020360187, -0.0025872993, -0.025325095, -0.023985788, -0.0039367536, 0.002565316, 0.004058509, -0.024892189, -0.025933871, -0.03330683, -0.02843662, 0.0022287979, 0.0011296183, 0.007744988, -1.8960846E-4, 0.005766465, 0.009057239, -2.1962452E-4, 0.014150668, -0.0010095541, -0.014570047, 0.015665844, 0.024986887, -0.013190154, 0.042533174, -0.0053707603, -0.019548485, 0.0038961684, 0.039286368, -0.0040957117, 0.0060607065, -0.020360187, -0.008881371, -0.016342262, -0.0213207, 0.0025568607, -0.0014686729, -0.009402213, 0.022497667, -0.006375241, -2.4393329E-4, -0.004646993, -4.9589906E-4, -0.0024114307, -0.031277575, 0.0133795515, -0.010957974, 0.015760543, 0.026204439, 2.900143E-4, -0.0119726015, -0.024648678, -0.012662548, -0.005066372, -0.037771188, -0.017965667, -5.567767E-4, 0.03555254, 0.010741521, 0.027056726, -0.02214593, 0.02992474, -0.0017045737, 0.0020258725, 0.03133169, -0.01214847, -0.006145259, -0.027597861, 0.005485751, 0.014285951, 0.02329584, 0.012723425, 0.014529462, 0.0069535784, 0.03271158, 0.0010653586, 0.010613001, -0.0034362043, -0.021861834, -0.03625601, -0.0027107457, -0.028815413, 9.7319664E-4, -0.022592366, -0.0077720447, 0.031466972, 0.008495812, -0.007481185, -0.0137583455, 0.036039557, 0.003612073, 0.016139338, -0.03065527, 0.0022085053, -0.01305487, -0.0022609276, -0.017708628, -0.017383946, -4.5948873E-5, -0.01413714, 0.030790554, 0.010565652, -0.0287613, -0.0049412344, 0.022849405, -0.00991629, -0.012919587, 0.03571488, -0.024215769, -0.009936582, -0.03346917, -0.015449391, -0.028490733, -0.0080561405, -0.0039604283, -0.020116676, 0.006882555, -0.029843569, -0.017708628, 0.028084882, -0.005506044, 0.034470268, 0.01363659, 0.05495221, 0.024134599, 0.012087592, -0.015300578, 0.0047518373, -0.019981392, -0.0030286622, 0.0156929, 0.026407365, -0.014908256, -6.290689E-4, 0.013075163, -0.0020410917, -0.03073644, -0.03271158, 0.026745575, 0.035606652, 0.016301677, -0.022835877, -0.0059051304, -0.0378253, 0.022348857, -0.0051982733, -1.0183264E-4, 0.0030168248, -0.03468672, -0.016477546, 3.1072958E-4, -0.006781092, 0.009902761, 0.007427071, -0.026867328, 0.018980293, -0.019494371, 0.01045066, -0.012635491, -0.01991375, 0.03885346, -0.023904618, 0.010430368, -0.0024283412, 0.006628898, 0.012615198, -0.0064530293, 9.647414E-4, 0.030438816, -0.023769334, 0.023512295, -0.008171131, 0.0044508316, 0.02224063, 0.015314107, -0.0152329365, -0.009868941, -0.014448292, -0.005252387, 0.03503846, 0.008543162, 0.010910625, 0.007156504, -0.016139338, -0.018939707, 0.004778894, 0.003838673, -0.0049750553, -0.04172147, 0.021009548, -0.0046740496, 0.0093278065, -0.010782105, -0.00297624, -0.0031098325, -0.013541891, 0.0017958902, -0.005827342, -0.013683939, -0.010383018, -0.004559058, -0.039232254, -0.027394935, -0.0019531574, -0.009821592, -0.0056480914, -0.01520588, -0.001640314, 2.9297362E-4, -0.003645894, -0.014691803, -0.0011050982, -0.027570805, -0.008211716, 0.021510096, -0.009178994, -0.0103221405, 0.0029660936, 0.012845181, -0.0038792582, -0.0018584589, 0.0080561405, 0.0078058653, 0.031926937, -0.024418695, 0.018073892, -0.010572416, -0.017613929, -0.0069096116, -0.0010349198, 0.026867328, 0.019480843, -0.0031098325, -0.021023076, -0.010349197, -0.0039739567, 0.02827428, -0.0073256087, 0.019521428, 0.026231496, 0.018060364, 0.01800625, 0.018966764, -0.018141534, -0.027597861, -0.0037811776, -0.017072795, -0.028544845, 6.231502E-4, -0.0055669216, 0.0121755265, 0.0043764254, 0.0035444312, -0.024608092, 0.0028257368, -0.016369319, -0.035417255, 0.0049852016, 0.023458181, 0.031034065, 0.009706601, 0.0052659153, 0.0018381663, 0.009260165, 0.007257967, -0.0155440895, 0.0048262435, 0.024472808, 0.015151766, 0.022687064, 0.026799686, -0.024256354, -0.002007271, 0.006026886, 0.016585773, 0.0092534, 0.010856511, -0.012831653, -0.008407878, 0.0038454372, -0.010240971, -0.013305145, -0.0065849307, 0.03198105, -0.03436204, -0.0045624403, 0.012385217, 0.009882469, -0.00588822, 0.0116276285, 0.02215946, -0.015002955, 0.0042851088, -0.012398745, -0.031115236, 0.0045962613, -0.028869526, 0.01933203, 0.0044575958, 2.3273012E-4, 0.040395692, 0.02437811, -0.018155063, 0.021848306, -3.4137978E-4, 0.010944446, -0.008171131, 0.004166736, 0.004515091, 0.021483041, -0.017018681, 0.0065105245, -0.023079388, 0.0116276285, 0.0032738638, 0.0016462327, 0.0060099754, 0.036878318, 0.021618323, -0.0555204, 0.009077531, -0.016842812, 0.019264389, -0.009679544, 0.00611482, -0.034037363, 0.004515091, -0.007859979, 0.006554492, -0.018236233, -0.01651813, 0.0076976386, -0.0059085125, -0.005512808, 0.008651388, 0.19275212, -0.008698737, 0.0051982733, 0.056494445, 0.009821592, -4.3058244E-4, 0.027164953, 0.013805695, 0.0042276136, 0.01438065, -0.01082269, -0.0017299394, -0.0034429685, -0.0019920515, 0.011370589, -0.017059267, -0.023661107, -0.023160558, -0.013710996, -0.03414559, -0.0061249663, -0.0011516019, -0.0061993725, -0.032441016, -8.717339E-4, -0.005634563, -0.0011820407, 0.006185844, 0.025609192, 0.006720214, 0.0010239279, -0.00904371, -0.0042614345, 0.005005494, -0.025095113, -0.003618837, -0.0039299894, 0.012581377, 0.012371688, -0.002391138, -0.006216283, 0.025068056, -0.0035106102, -0.011566751, -0.0016073387, 0.023945203, -0.024121072, -0.014096554, -0.019724354, 0.020644281, -0.04320959, -2.9931503E-4, -0.0031098325, 0.025717419, -0.0081914235, -0.0047247806, 0.007954678, 0.011945545, -0.008353764, 0.0017400857, 0.019386144, 0.03130463, -0.032684524, 0.019386144, 0.007988499, 0.028003711, -0.021794192, -0.008029084, 4.2254996E-4, -0.019156162, -0.017397474, -0.03685126, -0.007271495, 0.013487778, -0.00685888, -0.01210112, -0.009645723, 0.015665844, -0.014191253, 0.02033313, -0.028247222, -0.024418695, 0.025649777, -0.016166395, -0.01421831, -0.028003711, 0.013656883, -0.020360187, -0.0056819124, -0.012709897, -0.005766465, -0.02198359, -0.006595077, -0.02017079, 0.0026566323, -0.009036946, 0.018926179, 0.0067303604, -0.0022524723, 0.0022879844, -0.024973359, 0.016004054, 0.023579936, -0.011546458, -0.0137245245, -0.027043197, -0.025257453, 0.0037000072, 0.024269883, -0.0125543205, -0.018303875, -0.011059437, -0.0058645452, -0.0068656444, -7.0262933E-4, 0.031061122, -0.0016851267, -0.010998559, 0.035985444, -0.021266587, 0.005583832, -0.018303875, 0.026231496, 0.0014568355, 0.003652658, -0.037148885, -0.040395692, -0.006182462, -0.009814828, -0.034037363, 0.030195307, -0.02512217, 0.012019951, 0.0021915948, 0.0138801, 0.0031960758, 0.02214593, -0.009408977, 0.021090718, 0.015151766, -0.010004224, -0.001418787, -0.002680307, 0.01695104, 0.0011981056, -0.030465873, 0.0062534856, -0.014421235, -0.0142724225, -0.028869526, -0.028382506, -0.0010746593, 0.0103221405, 0.00904371, 0.040801544, 0.0088002, -0.017884497, -0.053437036, -0.013305145, 0.029708285, -0.0313858, 0.0259474, 0.013623062, -0.017492173, -0.017573344, 0.0062602498, -0.17305481, 0.010599473, -0.005546629, -0.039692216, 0.021428928, 0.014407706, 0.014177725, 0.0050122584, -0.0055939783, -0.02264648, 0.023769334, -0.015030012, -0.039719272, 0.009706601, -8.167749E-4, 0.023593465, -0.008522869, 0.034091476, 0.02107719, -0.008901663, 0.05909189, 0.0023742276, -0.009950111, -0.012249933, 0.020725451, 0.0024283412, 0.03141286, 0.018236233, 0.012121413, -6.2272744E-4, -0.043182533, -0.011478816, 0.024905717, -0.0023505532, -0.010173329, -6.548573E-4, -0.0011414556, -0.018993821, -0.0046300823, -0.010633294, 0.04023335, 0.008495812, 0.013778638, 0.018195648, 0.010870039, 0.008543162, 0.030438816, -0.01651813, 0.02123953, -0.0090504745, -0.002233871, -0.026921442, 0.019074991, -0.0121078845, 0.0074000144, 0.02941066, 0.013771874, 0.005999829, -0.009388684, -0.0062331934, -0.025744475, -0.005472223, 0.004968291, -5.533946E-4, -0.011512637, -0.016220508, -0.019413201, 0.007264731, -0.026001513, 6.6119875E-4, -0.020874264, 0.0029863862, 0.006304217, 0.0025872993, 0.008340236, -0.016179923, -0.03382091, 0.020914849, -0.006047178, 0.0011786587, -0.01726219, 0.03842055, -0.0108023975, 0.008549926, -4.9330964E-5, -0.0185068, 0.015002955, 0.0021121157, 0.0057191155, -0.008171131, 0.011783204, -0.031034065, -0.03790647, 0.0019091902, 0.0029373458, 3.1411168E-4, -0.007447364, 6.7261327E-4, 0.028138995, -0.0057191155, -0.0043087834, -0.011850846, -0.005093429, 0.016058167, 0.019494371, 0.0082252445, 0.010186858, 0.027340822, 0.012993992, 1.2281217E-4, -0.01036949, -0.0038149983, 0.024851603, 0.0055567753, -0.027895484, 0.01768157, -0.018966764, -0.023512295, -0.011505873, 0.033279773, 0.03511963, 0.0029356547, 0.01326456, -0.0032197505, -0.0025906814, -0.012831653, -0.10065102, -0.0041126222, 0.005810432, 0.029816512, -0.029708285, 0.041694414, -0.017532758, 0.018804425, -0.027029669, 0.039475765, 0.002277838, -0.017749213, 0.014231838, -5.762237E-4, 0.0028392652, -0.008996361, -0.0099095255, -0.006754035, -0.018195648, 0.031872824, 0.014556519, -0.012182291, 0.0017553051, -0.016707528, -0.02164538, 0.012777539, -0.020671338, 0.028490733, 0.021334229, 0.0074744206, 0.0021425544, -0.032765694, 0.007575883, -0.030763498, -0.029329492, -0.034091476, -0.028680129, -0.025473908, -0.0074338354, -0.052192423, 0.009950111, 0.015219408, 0.0047213985, -0.014664746, -0.016883397, 0.0025128934, -0.042776685, 0.012351396, -0.007447364, -0.02198359, -0.0049310885, -0.0046672854, -0.038285267, -0.006811531, 0.01095121, 0.023282312, 0.03390208, 0.010795633, -0.0053978167, -0.019683769, -0.0045286193, 0.0074676564, -0.025852703, 0.021618323, 0.013156333, 0.0069535784, -0.006818295, -0.004849918, 0.012912823, -0.008164367, -0.023011746, 0.028707186, -0.025595663, -0.0071767964, -0.021794192, 0.0107347565, -0.020062562, -0.014732387, 0.030222364, -0.020536056, -0.0029914593, -0.033523284, 0.022281215, 0.0031910026, 0.0066390443, 0.012824888, 0.015084125, 0.0038623477, -0.013528363, -0.025798589, -6.916376E-4, 0.017546287, 0.016450489, -3.4476188E-4, -0.0065375813, 0.0069265217, 0.017627457, 0.0073188446, 0.005404581, 0.003645894, -0.008691973, 0.0026532502, -0.067317136, 0.034903176, -0.027232595, -0.0073256087, -0.0052354764, -0.009097824, 0.0055263364, -0.004241142, -0.020360187, 0.019967863, -0.009104588, 0.012134941, -0.01570643, -0.0012395362, -0.011255598, 0.020130204, -0.0060640885, 0.004075419, 0.0023623903, 0.0093278065, -0.022944104, 0.01057918, 0.02007609, 0.009151937, 0.0060099754, 0.017992722, 0.014678274, -0.0030523369, -0.029789455, -0.00930075, 0.030628214, -0.014759444, 0.012398745, 5.457849E-4, -0.013738053, -0.032819808, -0.016748114, 0.01438065, 0.014394178, -0.0039401357, -0.004048363, -0.011735855, -0.004214085, -0.016112281, -0.005519572, 0.004964909, -0.021009548, 0.014191253, 0.0075961757, 0.019291446, 0.012385217, 0.012412273, -0.0107009355, -0.009781007, 0.017072795, -0.024229297, 0.036147784, 0.0054688407, 0.003470025, -0.013325438, 0.023864033, 0.0054248734, 0.025933871, -0.031764597, 0.0069603426, -0.007704403, 0.011898195, -0.0039604283, 0.010416839, -0.025933871, -0.01826329, -0.0117290905, 0.010795633, 0.026082683, 0.013007521, 0.01603111, 0.0115599865, 0.019791994, 0.004515091, 0.016815756, 0.014800029, -0.013284853, -0.029194208, 0.026556177, -0.0045015626, 0.0030100609, 0.0039976314, 0.015598202, 0.01413714, 0.0051610703, 0.00723091, 0.011742619, 0.027246123, -0.0119726015, 0.012371688, 0.011066201, -0.02247061, -0.0031774743, -5.9313414E-4, 0.021212474, -0.020143732, -2.077872E-4, -0.012872238, -0.0142724225, -0.014691803, 0.0089828335, -0.016991625, -0.021171888, 0.0033330505, 0.017072795, 0.0360125, 0.022186516, -0.0038589656, 0.009273693, -0.035011403, 0.016044639, -0.006145259, -0.013027813, -0.00904371, 0.034903176, 0.010301849, 0.026150325, 0.037500624, -0.010186858, 0.051434837, 0.0061689336, 0.008069669, -0.017167492, 0.0051238677, 0.010200386, -0.0054316376, 0.003537667, -0.02238944, 0.013372787, -0.01413714, -0.00640568, -0.008306415, 0.020265488, -0.022687064, 0.056061536, 0.00967278, -0.009348099, 0.014610632, -0.014110083, 0.028734243, 0.031088179, 0.016193451, -0.012912823, 0.0015667535, -0.0063853874, -0.0102206785, 0.006635662, -0.04429186, 0.0015735177, 0.0034936997, 0.0033009206, 0.015557618, -0.017478645, -0.013528363, -0.012797832, -0.0031165967, 0.021577738, 0.0021899038, -0.005252387, -5.665002E-4, 0.024405167, -0.009064003, 0.0017206387, -0.01627462, 0.008691973, -0.023363482, -0.00323497, 0.0051644524, 0.02652912, -0.0030455727, -0.01703221, -0.0024266501, 0.01884501, 0.0025500965, -0.018141534, -0.01413714, -0.02329584, -0.010335669, 0.026001513, -0.008171131, -0.005326793, -0.03944871, -0.021117775 ], + "id" : "a84791f0-3db0-4056-a529-2a2c74aa605b", + "metadata" : { + "source" : "movies.csv" + } + }, + "79c646a2-9f07-41c0-bebb-9b089c4be398" : { + "text" : "762,4113,Anthony Hopkins-Julianne Moore-Gary Oldman-Ray Liotta-Giancarlo Giannini-Zeljko Ivanek-Frankie Faison-Francesca Neri-Hazelle Goodman-David Andrews-Francis Guinan-James Opher-Enrico Lo Verso-Ivano Marescotti-Fabrizio Gifuni-Alex Corrado-Marco Greco-Robert Rietti-Terry Serpico-Boyd Kestner-Peter Shaw-Kent Linville-Don McManus-Harold Ginn-Ted Koch-William Powell-Blair-Aaron Craig-Andrea Piedimonte-Ennio Coltorti-Mark Margolis-Ajay Naidu-Kelly Piper-Judie Aronson-Derrick Simmons-Chuck Jeffreys-Gano Grills-Giannina Facio-Renne Gjoni-Roberta Armani,venice italy-fbi-serial killer-cannibal-aftercreditsstinger,/v5wAZwRqpGWmyAaaJ8BBHYuNXnj.jpg,/i2nmKc0xqj4E4g1RiwXaQagNfsa.jpg,9533-1248-274-1041681-48171-832544-11454-646389-6145-20662-9481-4982-217-9705-11322-604-3021-98-187-1573-605\r\n854,The Mask,Romance-Comedy-Crime-Fantasy,en,When timid bank clerk Stanley Ipkiss discovers a magical mask containing the spirit of the Norse god Loki his entire life changes. While wearing the mask Ipkiss becomes a supernatural playboy exuding charm and confidence which allows him to catch the eye of local nightclub singer Tina Carlyle. Unfortunately under the mask's influence Ipkiss also robs a bank which angers junior crime lord Dorian Tyrell whose goons get blamed for the heist.,47.766,Dark Horse Entertainment-New Line Cinema,7/29/94,23000000,351583407,101,Released,From zero to hero.,6.922,8964,Jim Carrey-Cameron Diaz-Peter Riegert-Peter Greene-Amy Yasbeck-Richard Jeni-Orestes Matacena-Tim Bagley-Nancy Fish-Johnny Williams-Reg E. Cathey-Jim Doughan-Denis Forest-Joseph Alfieri-B.J. Barie-Catherine Berge-Philip Boardman-Krista Buonauro-Debra Casey-Blake Clark-Christopher Darga-Suzanne Dunn-Joely Fisher-Kevin Grevioux-Peter Jazwinski-Howard Kay-Robert Keith-Beau Lotterman-Scott McElroy-Richard Montes-Ivory Ocean-Robert O'Reilly-Louis Ortiz-Daniel James Peterson-Jeremy Roberts-Eamonn Roche-Randi Ruimy-Ben Stein-Nils Allen Stewart-Chris Taylor-Bullet Valmont-Wendy L. Walsh-Meadow Williams-Anne Fletcher-Garret Sato,dual identity-bank-mockery-villain-transformation-slapstick comedy-superhero-based on comic-surrealism-balloon-dog-urban setting-jail cell-wisecrack humor-super villain-norse mythology-supernatural power-the mask,/xbbXp9px4o8Oe7IbGd0yIbla8mZ.jpg,/bdhA6nWf5IIyfiGjdegYPu0iK9e.", + "embedding" : [ 0.006176229, -0.035085022, -0.008367361, -0.038800858, -0.019050386, 0.041331932, 0.0026976827, -0.0069402643, -0.01766368, -0.04238206, 0.032230828, 0.020692892, 0.026657077, -0.009370366, 0.0028474606, 0.011901443, 0.021083325, -0.011154236, 0.012715965, -0.028003395, 0.001622312, 0.006230082, -0.03112685, 0.005381902, 0.0024873207, 0.018161817, 0.020194756, -0.0110667255, -0.011033068, -0.017515585, 0.0018107964, -0.01066283, -0.011073457, -0.0115514, -0.017650217, 0.013483365, 0.0022618126, -0.024610676, 0.010326251, 0.0060281344, 0.012480359, 0.010582052, -0.011490815, -0.021177568, -0.006714756, 0.012547675, 0.014445982, -0.0016980424, -0.02203921, 0.029995942, 0.04098189, 0.038531594, -0.011241747, -0.03236546, 0.0045842095, 0.008979934, -0.0053078546, -0.017259784, 0.0030931633, 0.0011224918, 0.013772823, -0.026859025, -0.03435801, -0.011914905, -0.0055872155, -0.011484084, -0.013180444, -0.017959869, -0.008656818, 0.002807071, 0.031099923, 0.009706946, 5.9153803E-4, 0.013059275, 0.029538196, -0.020356312, -0.027182141, -0.012419774, 0.0018730635, -0.010124304, 0.018296449, -0.026010845, -0.014876803, 0.0012200997, 0.02012744, 0.012130316, -0.0017005667, 0.03390026, -0.010534931, 0.0061291084, 0.00424763, 0.030049795, 1.1864419E-4, 0.004123096, 0.008946276, 0.018121427, -0.02509535, 0.030911438, -0.026657077, -0.01703091, -0.0014447664, -0.010433957, 0.008939545, -0.018996533, -0.0048871306, -0.007243186, 0.006893143, -0.010467615, 0.015846152, 0.024785696, 0.012608259, -0.012042806, 0.012715965, -0.043055218, -0.011564863, -0.021419903, 0.020948693, -0.012264948, -0.011416769, -0.03061525, 0.012056269, 0.026993657, 0.008717403, -0.039850984, 0.043755304, 0.03686216, 0.007579765, -0.01936004, -0.013133323, -0.006442127, 0.034331083, 0.0012571235, 0.027545646, 0.008118291, -0.014728708, 0.042112797, -0.024072148, -6.167815E-4, -0.0101714255, -0.015496109, 0.032796282, 0.030884512, -0.02535115, -0.022900853, -0.025930066, 0.007108554, 0.013321807, 0.0011300648, 0.016034635, -0.0020060122, 0.021527609, 0.0067719747, -0.0014893631, 0.012211096, 0.020773672, -0.005489608, -0.0069671907, -0.001736749, -0.009309783, -0.0074451333, -0.007734591, -0.015240309, -0.0033119398, 4.022122E-4, 0.0016593357, 0.021581462, 0.016276972, -0.029969016, 0.0021305466, 0.00713548, -0.007108554, 0.029780533, -0.035219654, 0.021137178, 0.004378896, 0.020719819, 0.02136605, -0.013564144, -0.030184427, -0.012843864, 0.01728671, 0.008266387, 0.03201542, 0.038370036, -4.1967226E-4, 0.009134761, 0.021419903, -0.018633027, 0.015051824, -0.010332983, -0.0051799547, 0.02663015, 0.011457158, -0.0133420015, -0.64537054, -0.018848438, -0.0034600347, -0.006960459, 0.022779685, 0.020329388, -0.002497418, -0.0018377227, -0.033738706, -0.014042087, -0.028676553, 0.019211944, 0.026185866, -0.013140054, -0.022375789, -0.028299583, 0.009875235, -0.004432749, 0.008003855, 0.004853473, -0.028380362, 0.01575191, 0.01303908, 0.0089933975, 0.010979216, 0.0030275304, 0.006277203, -0.031961568, 0.0056343367, -1.20011544E-4, -0.019777397, 0.0047592307, 0.007101822, -4.2577277E-4, 0.0371045, -0.0029400198, -0.01575191, 0.046555642, 0.028972743, 0.026212793, -0.028084174, -0.0056478, 0.00845487, 0.00755957, -0.019777397, 0.033523295, 0.008030781, 1.8985174E-4, 5.2927085E-4, -0.0034936927, 0.007882686, 0.005742042, -0.0028289487, -0.009659825, -0.0020379873, -0.0029804092, 0.013382391, -0.03398104, 0.029592048, -0.0041163643, -0.012406311, 0.016465457, 0.0036081297, 0.012386116, -0.009801188, 0.022645053, 0.009754066, 0.0019033557, 0.014028624, -0.02972668, 0.011335989, 0.008777987, -0.017529048, -0.008448139, 0.0021473756, 0.01031952, 0.027330235, -0.0013968039, 0.002467126, 0.014836414, 0.009424219, 0.008609697, 0.0015356429, 0.025405003, 0.012917912, -0.007916344, -0.03664675, 0.009303051, 0.012944838, 0.009706946, 0.008468334, 0.005758871, 0.0115042785, 0.015428793, -0.023762496, 0.0014220474, -0.006193058, 0.0054088286, 0.01685589, -0.06952381, -0.003843735, -0.030830659, 0.036323633, -0.007606691, 0.03206927, 0.009612704, -7.3963293E-4, -0.0044462117, 0.029645901, -0.012574601, -0.013126591, 0.002450297, -0.0238702, -0.014432519, -0.009929088, -0.023749033, 0.019171555, 0.015172993, -0.004984739, -0.020006271, -0.0038504666, 0.013052544, -2.8903745E-4, -0.010797462, 0.016021173, 0.033954114, -0.0055872155, -0.014203644, 0.007660544, 0.0016887864, -0.002790242, -0.0180945, 0.017044373, -0.017986795, 0.02539154, 0.009390561, 0.012433237, -0.0059204292, 0.015294162, 0.0022668613, -0.016330825, -0.00823946, -0.02615894, -0.021150641, 0.0017190785, -0.024085611, -0.03295784, 2.0576037E-5, 9.836529E-4, -0.006260374, 0.016290436, 0.010588784, 0.0032025515, 0.008690476, 0.008818377, -0.0077143963, -0.022968167, -0.011531205, 0.01740788, -0.008582771, 0.008414482, 0.016828964, 1.4357209E-4, -0.011113847, 0.019992808, 0.001768724, -0.01265538, 0.006034866, 8.2798494E-4, -0.026697466, 0.007384549, -0.019548522, -0.0031722595, 0.009881967, -0.019952418, 0.032903988, -0.0069873855, 0.023129726, 0.009592509, -0.002613538, 0.0037528586, -0.01647892, -0.02298163, -0.006048329, 0.033280957, 0.015199919, 0.03904319, -0.01563074, -0.013173712, 0.019912029, -0.020073587, -0.017986795, -0.012204364, -0.0073912805, 0.005970916, 0.031611525, 0.010945558, 0.0014843146, 0.004722207, 3.3657925E-4, 0.046070967, 0.0065330034, 0.010097378, -1.3673533E-4, 0.010440689, -0.0286227, 0.014876803, -0.017932942, 0.0046750857, -0.0051799547, 0.023856737, -0.002497418, -0.010380104, -0.0019555255, 0.00947134, 0.023197042, -0.019104239, 0.0117735425, -0.017434806, 0.0050217626, 0.013651654, -0.0059036002, 0.008852035, 0.02298163, -0.016802037, 0.0067383167, 0.018498397, -0.0055535575, 0.004526991, -0.017825237, -0.011712958, 0.01278328, 9.2559296E-4, 0.016021173, -0.011275405, -0.018229133, 0.011450427, -0.0037865166, 0.037696876, -0.009410756, -0.010346446, 0.022429641, 0.015092214, 0.006718122, 0.0033153056, -0.0054121944, 0.015603814, 0.008131755, -0.011282137, 0.037993066, -0.007674007, 0.017057836, 0.0037865166, 0.001233563, 0.017125152, -0.002367835, -0.0020632308, 0.013315075, 0.024839548, 0.020396702, 0.027087899, -0.018000258, 0.028030321, 0.005018397, 0.009518461, -0.013766091, -0.03193464, 0.0046919147, -0.011901443, -0.03540814, -0.01766368, -0.0020884743, 0.0023829811, 0.012971764, 0.0014153158, -0.015792299, -0.009303051, 0.020356312, 0.00934344, 0.017448269, -0.018956143, -0.029080447, 0.014930656, 0.010844584, -0.0111003835, -0.016048098, -0.018188743, -0.018040648, -0.037212204, -0.013988234, -0.008636624, 0.024920328, -0.023627864, 0.013092933, -0.026428202, -0.0062704715, 0.012399579, -0.013584339, 0.009370366, 0.005418926, 0.0011721372, 0.0050520548, -0.010514736, -0.011080189, 0.008845303, -0.01371897, -6.0668413E-4, -0.001590337, -0.0051866863, 0.00934344, 0.010380104, 0.021339124, -0.035946663, 0.011995684, 0.0030460423, -0.014230571, -0.019777397, 0.008798182, 0.005597313, -0.0173271, -0.019454282, -0.043512966, -0.020585187, -0.0043418724, 0.06936225, 0.046367157, 0.01188798, 0.0045707463, -0.009202077, -0.0069671907, -0.015900005, 8.9246096E-5, -0.0033960848, -0.013867065, 0.032473166, -0.028057247, 0.025445392, 0.011443695, 0.027303308, -0.010030062, -0.012682307, -0.0070345066, 0.0037831508, -0.011558131, -0.018013721, -0.014338276, 0.011154236, 0.026091624, -0.011517742, -0.015051824, 0.031449966, 0.0095992405, 8.5406983E-4, 0.01736749, -0.0056040445, 0.008656818, -3.7654804E-4, 0.014136328, -0.016357752, -0.010932094, 0.029403564, 0.012709233, 0.034761906, 0.005398731, 0.0057218475, 0.0052506365, 0.0095992405, -0.011309063, 0.02280661, -0.027949542, -0.015199919, 0.027249457, 0.034546494, -0.044374608, 0.020383239, 0.010427225, -0.02063904, -0.020760208, 0.028811185, 0.007074896, -0.003914417, -0.010683025, -0.021473756, 0.009821382, -0.008650087, -0.027316771, 0.005435755, -0.023466306, -0.008199071, -0.011793737, -0.015805762, 0.0057487735, -0.01677511, 0.0050756154, 0.022025747, -0.011692763, 0.009121298, 0.0013404269, 0.012042806, -0.0025209787, 0.028191878, -0.028003395, 0.02343938, -0.001753578, -0.030265206, -0.039393235, 0.0060920846, -0.016707795, 0.002532759, 0.0037259324, -0.005206881, 0.017421342, -0.016640479, 0.0040490483, -0.0029686291, 0.018377228, -0.023964442, -0.014095939, 0.033442516, 0.0061997897, 0.026616687, 0.010514736, 0.009282856, -0.014836414, 0.011484084, -0.006859485, -0.015199919, -0.040443365, -0.014095939, -0.010938826, -0.0034162793, -0.0038841246, -0.012123585, -0.017084762, -0.02298163, -0.019763933, 0.005126102, 0.006176229, 0.0051530283, -0.016761648, 0.014688319, 0.004385628, -0.024435654, 0.0037663218, 0.01210339, -0.012540943, 0.01333527, 0.014445982, -0.014540223, 0.029295858, -0.012965033, -0.012749623, 0.0031756253, 0.037912287, -0.012581333, 0.010393567, -0.0070075803, -0.020948693, -0.004577478, -0.016209656, 0.015590351, -0.011813932, -0.020113977, 0.0067214877, -0.018969607, -0.004493333, 0.010528199, 0.008151949, -0.01431135, -0.024449117, 0.020814061, -0.010205083, 0.019400429, 0.028434215, -0.01066283, -0.001370719, -0.01695013, -2.9261358E-4, -0.022443105, -0.0331194, -0.02288739, -7.320599E-4, 0.028676553, 0.0095319245, 0.0441592, 0.0061997897, 0.035461992, 0.0114235, 0.0013303295, 0.02980746, -0.017192468, -0.008616429, -0.026401278, 0.013106396, 0.006819096, 0.029242005, 0.004644794, 0.012534211, 0.006381543, 0.015361478, 0.015926931, 0.013752628, 0.0011384793, -0.025808897, -0.030453691, 0.0101377675, -0.024449117, 0.011107115, -0.012756354, -0.013429512, 0.0231028, -0.0038672956, -0.0022836903, -0.005516534, 0.020140903, -0.005661263, 0.0051631257, -0.01265538, 0.008710671, -0.01855225, 0.004752499, -0.014621003, -0.0038471008, 0.0045337225, -0.01435174, 0.021056399, 0.001062749, -0.029565122, -0.0056040445, 0.03473498, -0.022133451, -0.00891935, 0.016748184, -0.0101714255, -0.0057790657, -0.024327949, -0.013597802, -0.02395098, -0.020396702, -0.0101041095, -0.0044091884, 0.0021877652, -0.02781491, -0.05541441, 0.028865037, -0.0011906491, 0.034007967, 0.012682307, 0.042139724, 0.031449966, 0.01044742, -0.01695013, 0.0028306316, -0.008246192, -0.008084633, 0.014324813, 0.02972668, -0.0015785567, -0.009121298, -0.0046616225, 0.0044966987, -0.04348604, -0.041224226, 0.023075873, 0.03180001, 0.02509535, -0.03686216, -0.0037124692, -0.030938365, 0.011396574, -0.005644434, 0.0119351, 0.0014338277, -0.038693152, -0.025445392, -0.011403305, -0.0053078546, 5.6082517E-4, 0.003263136, -0.020881377, 0.008394287, -0.023372063, 0.0074249385, -0.007350891, -0.010359909, 0.039904837, -0.019454282, 0.013180444, 0.0051193703, 0.011335989, 0.014540223, 0.006960459, -0.008273118, 0.029484343, -0.0094646085, 0.012520748, -0.007869223, -0.005331415, 0.007209528, 0.0070075803, -0.015388403, -0.01736749, -0.011046531, 5.663998E-5, 0.017488658, 0.0065330034, 0.0026320498, 0.01511914, -0.018417617, -0.009296319, 0.010622441, 0.0019218675, 0.016196193, -0.04488621, 0.0052169785, -0.021944968, 0.010110841, -0.0060315, 0.011208089, -0.008131755, -7.568826E-4, 0.016425068, -0.00717587, 0.0070479694, -0.01787909, -0.019979345, -0.04297444, -0.025956992, -0.009659825, -0.011369647, 0.013934381, -0.016505847, -1.2537577E-4, -0.015684593, -0.0022348862, -0.007613423, 0.0064152004, -0.027761057, -0.0038201746, 0.017609827, -0.010184888, -0.014432519, 0.0037023718, 0.032634724, -0.0059911106, 0.0043418724, -0.018484933, -0.0044462117, 0.041251153, -0.020665966, 0.010750341, 0.006347885, -0.031665377, -0.015563425, 0.005142931, 0.020652503, 0.008219265, -0.012769817, -0.014836414, -0.0056377025, -0.013436244, 0.03274243, 0.0018747464, 0.00963963, 0.028568847, 0.020208219, 0.025176128, 0.03252702, 0.0019336478, -0.029888237, 0.0063344217, -0.016734721, -0.01699052, -0.007202796, 0.008246192, 0.01983125, -0.0064993454, -0.0024334681, -0.030184427, -0.013254491, -0.025068423, -0.030588323, -0.013658386, 0.022348862, 0.036754455, 0.0058800397, -6.765243E-4, 0.011147505, 0.012264948, 0.0021288637, -0.015900005, 0.008966471, 0.015455719, 0.02119103, 0.029484343, 0.015253772, -0.027464867, -5.225393E-4, 0.010413762, 0.01890229, 0.010622441, 0.03333481, -0.02509535, -0.011524473, -0.021137178, -0.006277203, -0.0037663218, -0.010736878, 0.012022611, -0.020733282, 0.015455719, 0.0058531133, 0.023452843, -0.009828114, 0.015913468, -3.7149937E-4, 0.0031015777, -0.006697927, 0.0051833205, -0.014822951, 0.008764524, -0.038208477, 0.018417617, 0.002982092, -0.002677488, 0.027572572, 0.011080189, 0.005876674, 0.0052203443, -0.0039884644, 0.00823946, -0.026549371, 0.007189333, 0.014136328, 0.038666226, -0.028757332, 0.014445982, -0.026764782, 0.0029164592, -0.0110398, 0.003941343, 0.005664629, 0.035435066, 0.012628454, -0.05702999, 0.007674007, -0.010056988, 0.008151949, -0.01643853, -4.6069286E-4, -0.043135997, -0.008845303, -0.004301483, -0.006331056, -0.015065287, -0.03023828, -0.002123815, -0.02773413, -0.016128877, 0.020814061, 0.17631368, -0.015926931, 0.0051967837, 0.038235404, -0.013133323, 0.017434806, 0.027020583, 0.024812622, 0.0055737523, 0.02462414, 0.019561986, 0.0037124692, -0.008273118, -4.581685E-4, 0.031234555, -0.028461142, -0.019992808, -0.022954704, -0.00921554, -0.022470031, -0.014634466, 0.013543949, -0.010972484, -0.013436244, 0.008380824, 0.0043923594, -0.009222272, 0.018027185, 0.004917423, -0.007512449, -0.0070345066, -0.02101601, -0.009417487, -0.004897228, -0.031315334, -0.005371805, -0.0173271, 0.0036552506, 7.665593E-4, 9.794456E-4, -0.012547675, 0.006361348, -0.00883184, -0.014701782, 0.0018124793, 0.023802886, -0.020356312, -0.004752499, -0.026172403, 7.7202864E-4, -0.03936631, 0.0017990161, 0.014257497, 0.025755044, -4.472297E-4, -0.017434806, -0.003473498, 0.00596755, -0.0026707563, -0.006418566, 0.02203921, 0.032715503, -0.036296707, 0.0079634655, 0.003978367, 0.033577148, -0.015536498, -0.012298606, 0.003978367, -0.03371178, -5.6082517E-4, -0.025997382, -0.019992808, 0.007209528, -0.0025091984, -0.014728708, -0.005398731, 0.015724983, -0.0011443695, 0.026657077, -0.028891964, -0.011059994, 0.012426506, 0.002138961, -0.02446258, -0.024233706, 0.006048329, -0.012722696, -0.011349453, -0.0156172775, -0.015819225, -0.028945817, -0.005227076, 0.0034465715, 1.617684E-4, -0.011282137, 0.0170713, 0.012884254, -0.006048329, -0.0057521393, -0.0301575, 0.021056399, 0.020706356, -0.012083195, -0.021689167, -0.017475195, -0.0046818173, 0.009074177, 0.034331083, -0.012722696, -0.009787724, -0.026347425, -0.0036283243, -0.014486372, 0.007835565, 0.022752758, 0.016842427, -0.009404024, 0.032338534, -0.0132410275, 0.0077076647, -0.022968167, 0.0218238, 0.011780274, 0.004984739, -0.024314485, -0.033092473, 0.010541663, 0.0013202322, -0.034169525, 0.03613515, -0.02619933, 0.006526272, -0.0036283243, -0.0051664915, 0.0034936927, 0.025660802, -0.00227191, 0.016425068, -0.008751061, -0.017502122, -0.0115042785, -0.002288739, -0.0011511011, 0.018404154, -0.007902881, 2.9050998E-4, -0.011914905, 0.001379975, -0.020787135, -0.021096788, -0.019104239, 0.018000258, 0.009424219, 0.04009332, -0.0069335327, -0.021083325, -0.014217108, -0.026024308, 0.03702372, -0.04157427, 0.01936004, 0.020840988, -0.010945558, -0.020410165, -0.011322526, -0.17222087, 0.027572572, 0.0029753607, -0.028299583, 0.013907455, 7.05975E-4, 0.016640479, -0.002352689, 0.0060617924, -0.027545646, 0.016977057, 0.017219394, -0.038235404, -0.007546107, 0.012177438, 0.010393567, -0.021958431, 0.046744127, 0.036377486, -0.004298117, 0.04386301, -0.013328538, -0.014876803, -0.010043525, 0.017259784, 0.0054929736, 0.024570286, 0.010427225, -1.4893632E-4, -0.019844713, -0.038827784, -0.010386836, 0.016613552, 0.010555126, -0.0074585965, 0.0016382996, -0.006277203, -0.018161817, -0.010676294, -0.01210339, 0.03942016, 0.008522186, 0.017448269, -0.0042880196, 0.0115514, 0.021137178, 0.049409833, -0.03061525, 0.013604534, 0.0057824315, -0.018148353, -0.035569694, 0.022712369, -0.0034179622, -0.005048689, 0.019575449, 0.004264459, 0.0015348014, 0.00934344, 0.006018037, -0.021433366, -0.014486372, 0.012433237, -0.0022836903, -0.010252204, -0.02781491, -0.020571724, 0.0072701117, -0.016546236, 0.008461602, -0.030453691, 0.022645053, 0.017515585, -1.3831304E-4, 0.019265797, -0.022362325, -0.04038951, -0.0031672108, 1.7807147E-4, 0.01839069, -0.008885692, 0.034977317, 8.7931333E-4, 0.014769098, 6.500187E-4, -0.014486372, 0.006876314, -0.0064320294, -0.004473138, -0.019131165, 0.0030746516, -0.01724632, -0.043297555, 0.010541663, 0.0025411735, 0.009760798, 0.008542381, 0.0071287486, 0.01074361, -0.00963963, 0.012204364, -0.002546222, -0.012635185, 0.018444544, 0.027895689, 0.01571152, 0.01006372, 0.018027185, 0.011914905, 0.009309783, -0.02671093, 0.010353178, 0.015253772, 0.0059204292, -0.025256908, 0.02527037, -0.0062671057, -0.031988494, -2.719981E-4, 0.017448269, 0.049786802, -0.011410037, 0.0077615175, -0.0047255727, -0.018296449, -0.0046919147, -0.08519494, 0.009040519, 0.018269522, 0.034250304, -0.03252702, 0.037993066, -0.008138486, 0.023789423, -0.022671979, 0.036000516, 0.011187894, -0.023331674, 0.019925492, 0.0017224443, 0.009942551, 9.57568E-4, -0.01329488, -0.02136605, -0.009592509, 0.024435654, -0.0037696876, -0.008576039, -0.0074384017, -0.011329258, -0.018377228, 0.0040052934, -0.028057247, 0.027559109, 0.012318801, 0.010656099, 0.0071624066, -0.03031906, 0.007209528, -0.038666226, -0.030265206, -0.023816349, -5.036067E-4, -0.028191878, 0.007364354, -0.038747005, 0.017502122, 0.021177568, 0.01486334, -0.013389123, -0.004836644, -0.005940624, -0.03877393, 0.022052674, -0.012810206, -0.023143189, -0.017717533, -0.015765373, -0.03971635, -0.008670282, 0.008737598, 0.016653942, 0.026737856, 0.0055501917, -0.011093652, -0.020464018, 0.00431158, -0.0075326436, -0.023143189, 0.019992808, -0.004772694, 0.016734721, -0.01210339, -0.026508981, 0.013382391, -0.006004574, -0.026791709, 0.023452843, -0.036189, -0.026091624, -0.020342851, 0.0013547315, -0.022820074, -0.011436963, 0.026145477, -0.031961568, 0.0062502767, -0.033657927, 0.007505717, -0.016748184, 0.0037091034, 0.011093652, 0.021850726, 0.009242467, -0.0024721746, -0.048521265, -0.0050385916, 0.016209656, -0.0010257253, -0.0052338075, -0.0016441897, 0.013402586, 0.00993582, 0.011760079, -0.004419286, 0.0074047437, -0.019077312, 0.013449707, -0.07447826, 0.030184427, -0.023816349, 6.57171E-4, -0.0015406916, -0.0073239645, -0.0015928614, 0.0019235504, 0.0051967837, 0.018458007, 0.0047121095, 0.018107964, -0.01456715, 0.012769817, -0.006068524, 0.0070008487, 0.0054795104, -0.0024099075, 0.009861772, 0.0058160895, -0.0029518001, 0.018956143, 0.0057689683, 0.009558851, 0.002546222, 0.0056545315, -0.0014767415, 0.013348733, -0.014984508, 0.001541533, 0.032715503, -0.020033197, -0.012036074, 0.012904448, -0.01112731, -0.029834386, 0.005792529, 0.0049376176, 0.002919825, 0.004994836, -0.018565712, -0.014674855, 0.003438157, -0.0017754555, -0.015657667, 0.0066710007, -0.016869353, 0.00849526, -4.7499748E-4, -0.004368799, 0.025243444, 0.011901443, -0.021944968, -0.020262072, 0.022470031, -0.008555844, 0.05269485, 0.0024620772, -0.00399183, -0.014324813, 0.016842427, -0.0012520748, 0.022604663, -0.021514146, -0.007943271, 0.008852035, 0.008084633, -0.0019185018, -9.945917E-4, -0.026603224, -0.024853012, -0.017448269, 0.0057487735, 0.024395265, 0.024152927, 0.019575449, 0.0033506465, 0.006667635, 8.835205E-4, 0.006798901, 0.034519568, -0.009619435, -0.020706356, 0.023008557, 0.0020076951, 0.009356903, 0.0062873005, 0.029565122, -0.0024216878, 0.0133420015, -0.004994836, 0.010407031, 0.026266646, -0.0041668513, 0.013045812, 0.01431135, -0.016371215, -0.0041937777, 0.015307625, 0.027195605, 0.0026034405, -0.010770536, -0.012857327, -0.006650806, -0.03134226, 0.006946996, -0.030884512, -0.016398141, 0.0072297226, 0.01690974, 0.033442516, -0.0016913108, -0.021083325, 0.0094982665, -0.045532443, 0.018781122, -0.004089438, -0.01740788, -0.011968758, 0.027761057, 0.009188614, 0.0054256576, 0.023883663, -0.01431135, 0.03155767, 0.014553687, 0.011517742, -0.020746745, 0.003813443, 0.0016921522, -0.0020817427, -0.007956734, -0.019642765, 0.008165413, -0.021231418, 0.015940394, 0.003975001, 0.03872008, -0.015024898, 0.06699274, 0.017596364, -6.3487265E-4, 0.0138132125, -0.022604663, -0.0043250434, 0.0030645542, 0.017003983, -0.019979345, -0.00904725, 0.0017434806, -0.0074384017, 0.010285862, -0.017596364, 0.007674007, 0.0048602046, 0.013180444, 0.019858176, -0.0025512706, -0.017057836, 0.0031722595, -9.25593E-5, 0.021379514, -0.0044226516, -0.007801907, -0.002095206, 0.012163974, -0.0056679947, -0.005206881, -0.03031906, 0.008333703, -0.008475065, 0.011995684, -0.0077951755, 0.023223968, -0.0068830457, 0.0038740272, 0.0056747263, 0.019656228, -0.0010484444, -0.024018295, 0.0073778173, -0.025647338, -0.014876803, 0.029618975, -0.01898307, -0.004981373, -0.03371178, -0.017259784 ], + "id" : "79c646a2-9f07-41c0-bebb-9b089c4be398", + "metadata" : { + "source" : "movies.csv" + } + }, + "c821e4f1-b5bd-439e-b864-27649203587f" : { + "text" : "289,18501,Harrison Ford-Mark Hamill-Carrie Fisher-Adam Driver-Daisy Ridley-John Boyega-Oscar Isaac-Lupita Nyong'o-Andy Serkis-Domhnall Gleeson-Anthony Daniels-Max von Sydow-Peter Mayhew-Gwendoline Christie-Joonas Suotamo-Pip Andersen-Simon Pegg-Kiran Shah-Sasha Frost-Pip Torrens-Andrew Jack-Rocky Marshall-Greg Grunberg-Emun Elliott-Brian Vernel-Yayan Ruhian-Sebastian Armesto-Maisie Richardson-Sellers-Warwick Davis-Cailey Fleming-Mark Stanley-Ken Leung-Iko Uwais-Anna Brewster-Harriet Walter-Tim Rose-Erik Bauersfeld-Mike Quinn-Bill Kipsang Rotich-Michael Giacchino-Nigel Godrich-Judah Friedlander-Victor McGuire-Miltos Yerolemou-Billie Lourd-Leanne Best-Crystal Clarke-Jeffery Kissoon-Claudia Sermbezis-Gerald W. Abrams-Jim McGrath-Philicia Saunders-Morgan Dameron-Jessica Henwick-Tosin Cole-James McArdle-Stefan Grube-Dixie Arnold-Hannah John-Kamen-Kate Fleetwood-Thomas Brodie-Sangster-Brian Herring-Dave Chapman-Jimmy Vee-Cecep Arif Rahman-Ian Whyte-Daniel Craig-Ewan McGregor-Frank Oz-Alec Guinness-Tom Kane-Catherine Taber-Matthew Wood-Samuel Witwer-Meredith Salenger-James Arnold Taylor-Michael Donovan-Devon Libran-Robert Stambler-Verona Blue-Fred Tatasciore-Patrick Correll-Karen Huie-Orly Schuchmacher-Ben Schwartz-Mark Dodson-Yang Liang-David Acord-Jamie B. Chambers-David M. Santana-Francesca Longrigg-D.C. Barns-Tom Edden-Richard Riddell-Jefferson Hall-Jack Laskey-Daniel Adjei-Charlie Akin-Adrian Allan-Samantha Alleyne-Paul Biddiss-Hannah Blamires-Rony Bridges-Stuart Budd-Calvin Chen-Alan Chimes-Jamie Clay-David W.", + "embedding" : [ 0.009965253, -0.015311817, -0.017349863, -0.039861012, -0.032423466, 0.0240066, -0.017561609, -0.0033564905, -0.018368887, -0.024602132, 0.031073593, 0.031073593, 0.012592216, 0.003947061, 0.006028118, 0.020751018, 0.0096145505, -0.008363931, 0.013578154, -0.036843646, 0.012228279, -0.008178654, -0.019242335, 0.0057005747, -0.017151352, 0.016542586, 0.03176176, -0.011990066, -0.013909006, -0.011665831, 0.007847803, -0.014239857, 0.0011025633, -0.032555807, -0.015166242, 0.002835399, 0.015457392, -0.029353164, 0.02429775, 0.006636885, 0.014028112, 0.008330846, -0.009826296, -9.685684E-4, -0.006980971, -0.0010901564, 0.02345077, -0.014239857, -0.012995855, 0.039781608, 0.017349863, 0.035837855, -0.019017356, -0.02550205, -0.002220015, 0.01925557, -0.018620335, -0.0025128187, -0.018329185, 0.007841186, 0.009641019, -0.0076823765, -0.03353513, -0.0031447455, -0.028003288, 1.6294446E-4, 0.0032522723, -0.014742752, 0.0029081865, 0.013816367, 0.009952019, -0.0024516112, 0.020142252, -9.2307624E-4, 0.013048791, -0.027182776, -0.026468135, -0.007212567, -0.013095111, 0.0033035544, -0.002489659, -0.004390402, -0.0078147175, 0.015272114, 0.020327529, 0.013842835, -0.023464004, 0.023503706, -0.032846957, 0.004056242, 0.010752681, 0.05256572, -0.013392877, 6.1372994E-4, 0.008575676, 0.01463688, -0.016846968, 0.03125887, -0.020340763, -0.043698892, -0.0058130645, 0.008125718, 9.958636E-4, -0.008403634, -0.0063556614, 0.011123234, 0.0101637645, -0.001464846, 0.01695284, 0.012215045, 0.023794854, -0.0011224144, -0.0031000804, -0.03877582, -0.023212556, -0.01135483, 0.018580632, -0.023887493, -0.009111656, -0.021822978, 0.03710833, 0.030014867, -0.012261365, -0.030226612, 0.026031412, 0.0420314, -2.816375E-4, -0.0020959456, 0.0077022277, 0.002605457, 0.021121573, -0.010540935, 0.02244498, 0.010699744, -0.0087874215, 0.03803471, -0.036870115, 0.022683192, -0.012142258, -0.01717782, 0.029723717, 0.031470615, -0.035996664, -0.014610412, -0.028850269, -6.993378E-4, 0.024152175, 0.0061538415, 0.018554164, 0.012797344, 0.017270459, 0.028003288, 0.0059685647, 0.01704548, 0.013353175, -0.0074375463, 0.0034441662, -0.013518601, 0.0070537585, -0.012162109, 0.004549211, 0.0058461498, -0.0017353172, -0.007609589, 0.0066104173, 0.01733663, 0.012234896, -0.015854415, -0.009852764, 0.0031066975, -0.0024946218, 0.029353164, -0.029220823, 0.019149696, 0.0058825435, 0.007510334, -0.0018081046, -0.024655068, -0.056959428, -0.017720418, -4.2514445E-4, 0.009396188, 0.036578964, 0.037981775, -0.0036757623, 0.0033564905, 0.021664169, -0.017230757, 0.005330021, -0.013220835, 0.002860213, 0.03790237, 0.013048791, -0.017521907, -0.6424346, -0.03096772, 0.012406939, -0.00876757, 0.025819667, 0.031338274, -0.009733657, -0.0024152175, -0.030650102, -0.014875093, -0.027209245, 0.012995855, 0.022908172, -0.004562445, -0.008284527, -0.0038411883, 0.01847476, -0.016899904, 0.009680721, 0.018038034, -0.021584766, 0.02728865, 0.016158797, -0.014107517, 0.011784938, 0.0094689755, -0.014107517, -0.021425957, 0.007602972, 1.4795274E-4, -0.0074573974, 0.010527701, 0.0010976006, 0.011394532, 0.040813867, 0.009515295, -0.010176999, 0.050368864, 0.020446636, 0.03761122, -0.02550205, -0.0055682342, 0.006263023, -0.002708021, -0.021915616, 0.02286847, -0.0019784933, 0.007596355, -0.0041488805, 0.00392721, -0.013194366, 0.008416868, -0.004612073, -0.010633574, -0.013518601, -0.0050653396, 0.01880561, -0.041316763, 0.02300081, 0.008999166, -0.015205944, 0.02967078, 0.0034342406, 0.01157981, -0.007960292, 0.0353879, 0.016066158, -0.0010918106, 0.00669313, -0.034567386, 0.0069148005, 0.0040926356, -0.012989238, -0.0055682342, 0.006322576, 0.013181132, 0.03377334, 0.00943589, -0.0076889936, 0.03589079, 0.005184446, -0.0011505368, 0.0019801476, 0.009965253, 0.014120751, 0.011301895, -0.038008243, 3.9350675E-4, 0.01296277, -0.010878404, 0.0052241483, 0.020830423, 0.016317606, 0.014054581, -0.0072522694, -0.01189081, -0.014094283, 0.0018726207, 0.018977653, -0.055159595, -0.0093432525, -0.010746064, 0.027606266, -0.010243169, 0.023993365, 0.021545064, -0.016860202, -0.004357317, 0.012367236, -0.007417695, -0.016846968, -0.010137296, -0.014107517, -0.010110828, -0.0021852755, -0.024840346, 0.005234074, 0.013697261, -0.008926379, -0.007192716, 0.0049098395, 0.0042150505, 0.0038411883, -0.014107517, 0.015629435, 0.032582276, -0.01476922, -0.022431746, -5.1406084E-4, 0.016463181, -0.0012191886, -0.014001644, 0.016211733, -0.01525888, 0.010329191, 0.0037286987, -0.005138127, -0.0020893286, 0.008621995, -0.0021207593, -0.020936295, -0.0015665828, -0.0076559084, -0.02010255, -0.013108345, -0.009230763, -0.032291126, 1.3244407E-4, 0.0066898214, -0.019427612, -0.0021786585, 0.011010745, 0.0072655035, 0.011917278, 0.013948708, 0.005267159, -0.023371365, -0.008542591, 0.011884193, -0.013161281, 0.008059547, 7.1960245E-4, 0.002104217, -0.015523562, 0.020552509, -0.009290316, -0.013081877, -0.004466498, -0.0078081004, -0.0037717095, 0.022114128, -0.01938791, 0.0010827122, 0.023146385, -0.0141869215, 0.015457392, -0.013121579, 0.025621155, 0.013829601, -0.0066534276, 0.0019470623, -0.014755986, -0.023146385, -0.011904044, 0.027870947, 0.029459035, 0.010435062, 5.001547E-5, 0.001625309, 0.00888006, -0.028744396, -0.014610412, -8.436719E-5, 0.0070537585, 0.0022299404, 0.022497917, 0.0012150529, -0.017654248, -0.0052903187, -0.009654253, 0.034435045, 0.024906516, 0.01916293, -0.014200155, 0.015814712, -0.029088482, -0.004724562, -0.022405278, 0.00286683, -0.005028946, 0.033349853, -0.014332496, -0.017323395, 0.0024201802, 0.0093366355, 0.027315117, -0.017839523, 0.0019272112, -0.021611234, 0.007933824, 2.9714618E-4, -6.501236E-4, 0.031232402, 0.014689815, -0.029194355, 1.4991718E-4, 0.017561609, -0.008357314, 0.021875914, -0.008185271, -0.007980143, 0.010653425, -0.0112820435, 0.019215867, -0.014689815, -0.015139774, 0.016423479, -0.008198505, 0.039993353, -0.02010255, 0.0063953632, -8.7014E-4, 0.03477913, 0.007735313, 0.004224976, -0.0038478053, 0.017296927, 0.019083526, -0.010481382, 0.028506182, -0.016185265, 0.028638523, 0.0051149675, 3.8337443E-4, 0.0056211706, -0.0016848623, 0.0056608724, 0.011520256, 0.025938774, 0.019520251, 0.016344074, -0.015722074, 0.010765915, 0.0045326683, 0.002828782, 0.013293621, -0.012076087, 0.007880888, -0.0026352338, -0.031047124, -0.02179651, -0.002213398, -0.0048668287, -4.755993E-4, -0.015311817, -0.0032522723, 5.438375E-4, 0.005902394, 0.003685688, 0.008456569, 0.0107262125, -0.029511971, 0.02000991, 0.02536971, -0.026018178, -0.02967078, -0.0060512777, -0.0039569866, -0.048357286, -0.011196022, -0.017733652, 0.050501205, -0.020618679, 6.910665E-4, -0.009138124, 0.0052704676, 0.017667482, -0.017641013, 0.03327045, 0.01603969, -0.014848624, 0.013538452, -0.0029594684, -0.026097583, 0.0074772486, -0.024840346, -0.009952019, -0.0070603755, -0.005184446, -0.010104211, 2.4028105E-4, -0.0038974332, -0.046822134, 0.0024747706, -0.0061406074, -0.002168733, -0.0109908935, 0.014001644, 0.01831595, -0.011500405, -0.012287832, -0.013684027, -0.027156308, 5.474562E-5, 0.08528034, 0.032132316, 6.3192676E-4, 0.006474768, -0.007913973, -0.011672448, -0.0054358933, -0.009409422, -0.021584766, -0.03279402, 0.0108585525, -0.03295283, 0.027791543, -0.0031827935, 0.009283699, -0.004724562, -0.017310161, -0.021134807, -9.636056E-4, -0.0018891633, -0.033164576, -0.023080215, 0.011619512, 0.0203937, 0.022894938, -0.013829601, 0.021095105, 0.0055516916, 0.012982621, 0.014094283, -3.6559114E-4, 0.0030570698, 2.0057884E-4, 0.01175847, 0.011566576, 0.011606278, 0.032397, 0.0031811392, 0.02231264, 0.008033079, -0.016317606, -0.0030355644, 0.011076915, -0.0039305184, 0.014292793, -0.008324229, -0.009005783, 0.02117451, 0.026031412, -0.04571047, 0.010712978, 0.0045227427, -0.027526861, -0.010878404, -2.8122395E-5, -0.012036385, 0.0061670756, -0.005062031, -0.010296105, 0.009038868, -0.006458225, -0.024866814, 0.006193544, -0.002936309, -0.008661698, -0.0029412718, -0.01111, 0.0035268792, -0.012267982, 0.0065409383, 0.01938791, -0.0017038863, -2.2477238E-4, -0.0075765043, 0.024178643, 0.0064648422, 0.027818011, -0.007192716, 0.02010255, 0.0011505368, -0.03353513, -0.014226623, 0.0033614533, -0.014358964, -0.0017766736, 0.0161985, -0.010679893, 0.019639358, -0.01249296, 0.012201811, 0.009131507, -0.0054954467, -0.025753496, -0.015907349, 0.027447456, 0.03636722, 0.011401149, -0.00923738, 0.009177826, 0.016304372, -0.0014176995, -0.03157649, -0.0016079393, -0.029882526, -0.020975998, -0.0051579783, 0.008304378, -0.012572365, -0.0014896598, -0.021637702, -0.0420314, -0.015457392, 0.004254753, -0.009091805, 0.014173687, -0.0059222453, 0.029591376, 0.010077743, -0.014941263, 0.014133985, 0.007166248, -0.029485503, 0.024655068, 0.01916293, -0.009025634, 0.035599645, -0.003071958, -0.016820502, -0.0052241483, 0.033032235, -0.0031530168, 0.024205111, -0.009071954, 3.2092616E-4, -0.0035467304, -0.012671621, 0.015523562, 0.008330846, -0.017971864, 0.030014867, -0.021902382, -0.00504218, 0.025660858, -0.0055450746, -0.012354002, -0.023808088, 1.2303548E-4, -0.0086484635, 0.026004944, 0.032608744, -0.0034210067, 0.017164586, -0.017019011, -0.011480554, -5.802312E-4, -0.035837855, -0.0036757623, -0.0021985096, 0.025449114, 0.021942085, 0.038987566, -0.009528529, 0.028320907, 0.0055384575, 0.008569059, 0.02108187, -0.018726207, -0.010110828, -0.015166242, 0.011811405, 0.012016534, 0.015404455, 0.010640191, 0.008932996, 0.013803133, 0.015788244, 0.003602975, 0.014570709, 0.008172037, -0.013670793, -0.030914783, -0.0075765043, -0.024959452, 0.0014507847, -0.018858546, -0.011129851, 0.020274593, -0.0055649257, 7.204296E-4, -0.012942919, 0.033323385, 0.0025740264, 0.018686505, -0.022669958, 0.016211733, -0.03589079, 0.00888006, -0.020578977, -0.0068817153, 0.0108585525, -3.8296086E-4, 0.03192057, -0.007000822, -0.0053829574, -0.014967731, 0.03110006, -0.024244813, 0.0015368061, 0.021121573, -0.026640179, -0.01111, -0.031152997, -0.022908172, -0.035202622, -0.020605445, -0.009607933, -0.014001644, 0.0083771655, -0.021703871, -0.036446624, 0.013684027, 0.012215045, 0.029326696, 0.009217529, 0.041554973, 0.012843663, 0.020274593, -0.0210157, -0.0026583935, -0.021598, -0.00678246, 0.01925557, 0.021452425, -0.025621155, -0.005803139, -0.002271297, -0.0101637645, -0.0366319, -0.026851924, 0.029776653, 0.021028934, 0.016052924, -0.014808922, 0.00477419, -0.02527707, 9.884195E-4, -0.013961942, 0.004211742, 0.018924717, -0.029432567, -0.019189399, -0.020340763, -0.0045293598, 0.0137634305, 0.008443335, -0.017879225, 0.012969387, -0.014570709, 0.015761776, -0.014795688, -0.019189399, 0.035811387, -0.019626124, 0.013697261, 0.008727868, 0.011334979, 5.4301036E-4, -0.0036062836, 0.019109994, 0.030464824, -0.015232412, 0.016807267, 0.0099057, 0.008416868, 0.019930506, 0.014094283, -0.019017356, -0.016383776, -0.020975998, -0.0056344047, 0.02728865, -0.011434235, -0.008529357, -0.0033829587, -0.011639363, -0.013379643, 0.014782454, -0.0032456552, 0.022325873, -0.027103372, 0.0013664175, 0.014663348, 0.007913973, -0.015642669, -0.0056939577, -0.01688667, -3.2692283E-4, -4.4913118E-4, -0.0090587195, -0.011811405, -0.024337452, -0.006150533, -0.04060212, -0.016476415, -2.750205E-4, 0.0013713803, -8.453261E-4, -0.020076081, -0.0027758458, 0.005740277, -0.002496276, -0.0031397827, 0.0037220817, -0.016370542, 0.004856903, 0.025118262, -0.0036294432, 0.003052107, 0.005631096, 0.021664169, -0.0129363015, -0.009667487, -0.010752681, 0.0123738535, 0.028612055, -0.02683869, 0.02222, -0.00208602, -0.02953844, -0.0014251437, 0.010276254, 0.024284516, 0.010071126, -0.013419345, -0.024403622, -0.006405289, -0.011427618, 0.031497084, -0.009779977, -0.005892469, 0.016436713, 0.020645147, 0.044201788, 0.016913138, -0.0055053723, -0.029697249, 0.0021108338, -0.0014904869, -0.0161985, -9.6525985E-4, 0.00669313, 0.009568231, 0.0027659202, -0.012903216, -0.025647623, -0.007536802, -0.026865158, -0.027156308, -0.007371376, 0.0042580613, 0.0038511138, 0.003596358, 0.0024483027, 0.003103389, 0.0027973512, -0.0051480527, -0.0150074335, -0.008033079, 0.018289482, 0.004330849, 0.02498592, 0.00669313, -0.022259703, -0.013154664, 0.010845318, 0.021200977, 0.011063681, 0.013320089, -0.0091976775, -0.0025376326, -0.014557475, 0.0063755126, -0.018739441, 8.4863463E-4, 0.026269626, -0.008059547, -0.008741102, 0.008436718, 0.025885837, -0.0058196816, 6.923072E-4, 0.025687326, -0.0074772486, -0.0034540917, 0.0013573191, -0.016026456, -0.0077816322, -0.040099226, 0.0089131445, -0.0077816322, -0.012724557, 0.034752663, 0.020989232, 0.0033862672, 0.007900739, -0.008721251, 0.016807267, -0.0054689785, -0.009502061, 0.0034143897, 0.03522909, -0.026190221, 0.008721251, -0.043328337, -5.425968E-4, -0.0137634305, -2.9073594E-4, -0.009065337, 0.044228256, -0.011116617, -0.048542563, 0.013042174, -0.010547552, 0.0043275403, -0.008906527, -0.00609098, -0.019282037, 0.0014425134, 0.008621995, 0.0062431716, -0.022683192, -0.021598, 0.0061240653, -3.370552E-4, -0.007311823, 0.026521072, 0.18421823, -0.005118276, 0.013869303, 0.030861847, 0.0071133114, 0.0026004943, 0.032555807, 0.018726207, -0.025250603, -0.0010322573, 0.0029809738, 0.007761781, 0.014703049, -2.7460692E-4, 0.03141768, -0.03409096, -0.026335796, -0.017085182, -0.016635224, -0.016476415, -0.003966912, 0.0021538446, -0.006488002, -0.020975998, 0.0107195955, -0.015735308, -0.012691472, 0.0161985, 0.012803961, 0.013578154, -0.0024532655, -0.007007439, -0.003091809, -0.0014805613, -0.013187749, -0.015933817, -0.0027113296, 0.0028519416, 0.008072781, 4.677416E-4, -0.001900743, -0.003186102, -0.0079470575, 0.011487171, -0.0020612061, 0.023344897, -0.025674092, 0.0024267973, -0.022074426, 0.0053895744, -0.04046978, -0.011870959, 0.009144741, 0.0152853485, -0.020605445, -0.018977653, 0.010871787, 0.0061538415, -0.0072919717, 0.0027096753, 0.017852757, 0.02634903, -0.035176154, 0.019109994, -0.008079398, 0.01356492, -0.047298558, -0.00934987, 8.3912263E-4, -0.033323385, -0.004145572, -0.031179465, -0.015444158, -0.003493794, -0.0019189399, -0.0144516025, 0.009263848, -0.0010074434, -0.0054425104, 0.025303539, -0.021637702, -0.028109161, 0.007430929, -0.01945408, -0.03176176, -0.02550205, 0.020155486, -0.024310984, -0.016317606, -0.013882537, -0.008582293, -0.027606266, -0.022167064, -0.009429273, -0.009085188, -0.009105039, 0.025779964, 0.012347385, -0.009535146, -0.004830435, -0.03155002, 0.03753182, 0.009442507, -0.0013895772, -0.03618194, -0.013736962, 0.0012373853, 0.00626964, 0.030173676, -0.009310167, -0.026454903, -0.03864348, -0.006133991, -0.01253928, 0.0028172024, 0.035652578, 0.0070934608, -0.010203467, 0.041131485, -0.021505361, 0.0038345712, -0.015947051, 0.039861012, 0.005690649, -0.017058713, -0.025885837, -0.03157649, 0.0061240653, -0.0012572365, -0.041634377, 0.02306698, -0.016608756, 0.014438368, -0.009991721, 0.0031017347, -0.0010967734, 0.029300228, -0.0010223318, -0.0031645966, -0.011440852, -0.012671621, -0.009316784, 0.018858546, 0.008741102, 0.004569062, -0.017574843, 0.013776665, -0.012036385, -0.012976004, -0.04375183, -0.021889148, -0.0016104206, 0.004433413, 0.012281215, 0.03308517, -0.009243997, -0.01242679, -0.039040502, -0.020671615, 0.052009888, -0.023397833, 0.023649279, 0.018858546, -0.005111659, -0.01570884, -0.012598833, -0.16780798, 0.029776653, -2.6736953E-4, -0.029776653, 0.0070206732, 0.009621168, 0.028797332, 0.004569062, 0.019890804, -0.01831595, 0.033455726, -0.005492138, -0.026931329, 0.0019106686, 0.0022282861, 0.018143907, -0.013723728, 0.03250287, 0.024813877, -0.011202639, 0.036023133, -0.00321257, -0.0034971025, -0.0035996665, 0.012473109, -0.011831257, 0.010885021, -0.0048205093, 4.0157125E-4, -0.0011745235, -0.050368864, -0.009138124, 0.02813563, 0.007867654, -0.020049613, 0.004158806, -0.010362275, -0.03178823, -4.7394505E-4, -0.0066038, 0.040813867, 0.016939607, 0.023874259, 0.012221662, 0.020698082, 0.007827952, 0.02251115, -0.01655582, 0.01668816, -0.020473104, -0.012889982, -0.030703038, 0.020142252, -0.003864348, -0.0076956106, 0.030067803, 0.018514462, 0.0045591365, -0.004741105, -0.022590555, -0.034302704, -0.0067659174, 0.011870959, -0.0086484635, -0.0075037167, -0.016449947, -0.017323395, -0.0069081835, -0.020803954, 0.009330018, -0.023887493, 0.0011381299, 0.016542586, 0.013425962, 0.0093366355, -0.028294438, -0.030306017, -0.003999997, -0.014782454, 0.0019602964, -0.019149696, 0.025952008, -0.006699747, 0.014716283, 0.0068486305, -0.014133985, 0.0035632728, -4.2473088E-4, -0.004817201, -0.0064152144, 0.024721239, -0.0064913104, -0.03496441, 0.0034276238, 0.00519768, 0.0018511153, -0.012638535, -3.1968547E-4, 0.014147219, -0.0039735287, -0.0062431716, -0.0058461498, -0.00339123, 0.018818844, 0.017614545, 0.01824978, -0.019017356, 0.018064503, 0.022193532, -0.007179482, -0.012274598, -0.0045525194, 0.02023489, 0.009991721, -0.008727868, 0.0167808, -0.006474768, -0.030888315, 0.0057005747, 0.016224967, 0.06357646, -0.00943589, 0.015086838, -0.007596355, 0.0038544224, 5.037217E-4, -0.0882977, 0.006057895, 0.019334974, 0.03210585, -0.016899904, 0.036129005, 8.883368E-4, 0.023887493, -0.02706367, 0.01597352, 0.007014056, -0.04264017, 0.01597352, -0.005872618, 0.008535974, -0.0037187731, -0.0037783266, -0.0076823765, -0.018435057, 0.021227445, -0.0063358103, 0.0071199285, 0.018885015, -0.014901561, -0.012473109, 0.029009078, -0.029353164, 0.024972687, 0.005727043, 0.01333994, -7.64681E-4, -0.022246469, 0.01762778, -0.033296917, -0.029300228, -0.018660037, 0.004588913, -0.031444147, -0.002617037, -0.047192685, 4.2261137E-5, 0.015602967, -0.013525218, -0.017005777, -0.029803121, 0.0025260528, -0.019559953, 0.027394522, 0.0077088447, -0.02345077, -0.027738607, -0.02527707, -0.033614535, -0.011196022, 0.0075037167, 0.016463181, 0.030279549, -0.0019983442, -0.016449947, -0.028453246, -0.008833741, 0.0060446607, -0.019956974, 0.017058713, 0.003194373, 0.0144516025, -0.0021770042, -0.016132329, 0.011010745, -0.021002466, -0.02677252, 0.018143907, -0.028241502, -0.006057895, -0.006451608, -0.005343255, -0.028241502, -0.012585599, 0.03207938, -0.03308517, -0.0025392869, -0.028876737, 0.022908172, -0.024324218, 0.016569054, 0.024456559, 0.009641019, 0.008158803, 0.0028883354, -0.034911472, -0.011500405, 0.018170375, -0.013882537, -0.0040033055, -0.00408271, 0.010712978, 0.0068949494, 0.014001644, -0.004201817, -0.0050653396, -0.012195194, 0.015695605, -0.06876422, 0.03919931, -0.025290305, 0.0076426743, -0.009674104, -0.0064681508, -0.0072258012, 0.0019189399, 0.0015343247, 0.01876591, 0.0059917243, -0.0022547543, -0.010646808, -0.0053895744, -0.004125721, 0.017508673, 0.0032109157, -0.0026765903, 0.0074706315, 0.006077746, -0.012592216, 0.03178823, 0.004165423, 3.7965234E-4, 0.005439202, -4.5440414E-5, 0.0061902353, -0.0036393688, -0.020631913, -0.008628612, 0.02570056, -0.006808928, -0.0034342406, 0.0040463163, -0.0047212536, -0.02293464, 0.0048668287, 0.0014888326, 0.019467315, 0.002181967, -0.0012076087, -0.0137634305, 0.009224146, -0.017813055, -0.014980965, 0.0033746874, -0.009402805, 0.018977653, -0.008469803, 0.01854093, 0.020777486, 0.018157141, 0.0042216675, -0.0024383771, 0.024747707, -0.01577501, 0.066117406, 0.0025392869, -0.0058395327, -0.03393215, 0.03170883, -0.0052837017, 0.016357308, -0.02654754, 0.0099057, -0.0041290293, 0.019639358, -0.001106699, 0.0016220005, -0.031894103, -0.030279549, -0.018395355, 0.014094283, 0.03170883, 0.024019834, 0.022100894, 0.009330018, -0.0036228262, -0.0055649257, 0.018421823, 0.031311806, -0.005502064, -0.02654754, 0.015311817, 0.00809925, 0.012347385, 0.0029015695, 0.01945408, 0.022881703, 0.0050884993, -0.012777492, 0.012903216, 0.025912305, 0.002643505, 0.010924723, 0.023437535, -0.021650936, -0.01019685, 0.00852274, 0.03665837, -0.013551686, -3.531842E-4, -0.0041885828, -0.023861025, -0.027632734, 0.011387915, -0.016052924, -0.010282871, 0.012698089, 0.015351519, 0.032476403, 0.0210157, -0.020327529, 0.002143919, -0.04401651, 0.010805617, -0.009641019, -0.0108585525, -0.017839523, 0.027712138, 0.014795688, -0.0020810573, 0.019308506, -0.018567398, 0.05965918, 2.0895353E-4, 0.020353997, -0.02527707, 0.0061736926, 0.006382129, 0.0070405244, -0.017799823, -0.0035136451, 0.010190233, -0.013776665, 0.008635229, -0.001170388, 0.030438356, -0.026454903, 0.07310499, 0.020155486, -0.012989238, 0.009832913, -0.02351694, 0.013088494, 0.026018178, 0.009601316, -0.015576499, 6.4019806E-4, -0.0034276238, -5.5045454E-4, 0.011976832, -0.03708186, 0.003685688, -0.011434235, 0.027010733, 9.904873E-5, -0.007219184, -0.013948708, 0.0034276238, -0.013353175, 0.013353175, 0.015232412, -0.007516951, -0.014703049, 0.023583109, -0.0043209232, 0.008158803, -0.020631913, 0.009958636, -0.022524385, -6.1372994E-4, -0.00244334, 0.013736962, 0.0032853575, 0.013154664, 0.0035632728, 0.026507838, 0.007775015, -0.018355653, -0.009455741, -0.025303539, -0.023662513, 0.031497084, -0.012803961, 5.707192E-4, -0.03324398, -9.1645925E-4 ], + "id" : "c821e4f1-b5bd-439e-b864-27649203587f", + "metadata" : { + "source" : "movies.csv" + } + }, + "af79eecf-1f78-444d-885f-4d2927d317c4" : { + "text" : "David Dastmalchian-Hannah John-Kamen-Abby Ryder Fortson-Randall Park-Michelle Pfeiffer-Laurence Fishburne-Michael Douglas-Divian Ladwa-Goran Kostiۈ-Rob Archer-Sean Kleier-Benjamin Byron Davis-Michael Cerveris-Riann Steele-Dax Griffin-Hayley Lovitt-Langston Fishburne-RaeLynn Bratten-Madeleine McGraw-Tim Heidecker-Stan Lee-Charles Justo-Brian Huskey-Suehyla El-Attar-Julia Vera-Jessica Winther-Norwood Cheek-Bryan Lugo-Ana Maria Quintana-Darcy Shean-Blake Vogt-Torrey Vogel-Simon Potter-Jon Wurster-Tom Scharpling-Virginia Hamilton-Jessica Castro-Reggie Aqui-Natasha Zouves-Mike Nicco-Alexis Smith-Mika Kubo-Joshua Mikel-Chris Gann-Sergio Briones-Denney Pierce-Vanessa Ross-Zachary Culbertson-Steven Wiig-Timothy Carr-Sawyer D. Jones-Rick Richardson-Benjamin Weaver-Jamel Chambers-Jennifer Black-Sandra Dee Richardson-Dale Liner-John Ozuna-Marcella Bragio-Sophia Marcs-William W. Barbour-Kevin Carscallen-Seth McCracken-Andy Arness-James Siderits-Christine Marie Evans-Hayley Gagner-Gail Gamble-Linda Joy Henry-Anne Luna-Anne-Marie Olsen-Etienne Vick-Marcus Young,insect-flying-dream-fight-ant-nuclear missile-chase-van-shrinking-giant insect-sequel-superhero-based on comic-house arrest-alternate dimension-flashback-tragic villain-laboratory-fugitive-school-miniaturization-montage-toy car-giant man-female villain-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-giant-action hero-father daughter relationship-mother daughter relationship,/6KFB9nRiC8gSrV5J5Wjf7zRIJYm.jpg,/iYdgEUE2W2aJkgqfSjf1x3gFfuV.jpg,102899-284054-284053-299536-299537-315635-271110-283995-76338-99861-284052-100402-429617-299534-10195-383498-1771-10138-118340-68721-24428\r\n82702,How to Train Your Dragon 2,Fantasy-Action-Adventure-Animation-Comedy-Family,en,Five years have passed since Hiccup and Toothless united the dragons and Vikings of Berk. Now they spend their time charting unmapped territories. During one of their adventures the pair discover a secret cave that houses hundreds of wild dragons -- and a mysterious dragon rider who turns out to be Hiccup's mother Valka. Hiccup and Toothless then find themselves at the center of a battle to protect Berk from a power-hungry warrior named Drago.,80.86,DreamWorks Animation-Mad Hatter Entertainment-Vertigo Entertainment,6/5/14,145000000,621537519,102,Released,The training is over.,7.7,8596,Jay Baruchel-Cate Blanchett-Gerard Butler-Craig Ferguson-America Ferrera-Jonah Hill-Christopher Mintz-Plasse-T.J.", + "embedding" : [ 5.6254404E-4, -0.033009328, -0.020158881, -0.04123469, -0.0034148742, 0.04595416, -0.007018527, -0.022275902, -0.021965764, -0.0248379, 0.017165389, 0.03257783, 0.019080145, -0.008845637, 0.008832152, 0.019214988, 0.0126279555, -0.0165586, 0.011030077, -0.020118428, -0.014131444, -0.007207306, -0.017933989, 0.022343323, -0.0047059865, 0.02384007, 0.028748319, -0.0014908471, -0.00908161, 0.0014419669, 0.013045966, -5.5306296E-5, 0.0021423025, -0.021669112, -0.023435542, -0.0012211631, 0.006003841, -0.023988396, 0.037944544, 0.0015296142, 0.0055824597, -0.0037283818, -0.006435335, -0.016194526, -0.013619044, 4.643622E-4, 0.0021203908, -0.008582694, -0.011097498, 0.018459873, 0.035058923, 0.033225074, -0.014859591, -0.025525594, -0.0019450961, 0.01241895, -0.0096209785, 0.0073556323, 0.017772177, 0.011515508, 0.0113199875, -0.010241251, -0.016477695, -0.012749312, -0.02499971, -0.0021490448, -0.0058521437, -0.013544881, 0.001086321, 0.015709095, 0.03381838, 0.008879347, 0.020873545, -8.773159E-4, 0.01893182, -0.029152844, -0.016437242, -0.015736064, -0.015709095, 0.0032429507, 0.014104475, -0.012317819, -0.011407635, 0.014293254, 0.0041093105, 0.008818668, -0.008070295, 0.009823241, -0.037728798, 0.009735594, 0.0083871735, 0.03009674, -0.015156243, 9.733908E-4, 0.0061589093, 0.022424228, -0.00924342, 0.016234979, -0.02374568, -0.03535558, -0.0014849477, -0.002541772, -0.011441345, -0.012317819, 0.0035227477, -0.014994432, -0.00253503, -0.0066510825, 0.0044969814, 0.012729087, 0.012715602, -0.004405963, 0.019525124, -0.041099846, -0.0020361145, -0.02676614, 0.016599052, -0.020994902, -0.008130974, -0.018014893, 0.050107293, 0.03023158, 0.004416076, -0.025781794, 0.029800085, 0.041720122, 0.0040418897, -0.0093041, 2.6694505E-4, 0.00693088, 0.020873545, -0.004655421, 0.019147567, -3.4848234E-4, -0.030609138, 0.041531343, -0.03290145, -0.013969633, -0.01546638, -0.014805654, 0.019821776, 0.020752186, -0.028748319, -0.012877413, -0.028505603, 0.017893536, 0.02384007, 0.006806151, 0.0012515025, -0.0037789475, 0.022842238, 0.017273262, 0.012351529, -0.0013678038, 0.005565604, -7.049709E-4, -0.0149809485, -0.019201504, 0.0014495517, -0.020860061, 0.0016661417, 0.0049925256, -0.0065330956, -0.030312486, 0.0104704825, 0.021264587, 0.02143988, -0.028316824, -0.006684793, -5.9161935E-4, -0.010794104, 0.041261658, -0.038106356, 0.011481798, -0.017529462, 0.0024271563, 0.005595944, -0.019012725, -0.03314417, -0.012466145, 0.007537669, -0.0035193767, 0.023192827, 0.028262887, 1.4242688E-4, 0.010214283, 0.029179813, -0.017947473, 7.568008E-4, -0.018918335, 0.008016358, 0.014064022, 0.0037553501, -0.009256905, -0.6394748, -0.009600752, 0.0028030286, -0.0060240673, 0.0063139778, 0.012250397, 0.007551153, -0.01951164, -0.017987926, -0.014994432, -0.025255911, 0.020239787, 0.020361144, 0.0037081556, -0.02737293, -8.8911457E-4, 0.0072545004, -0.031984527, 0.0248379, 0.0037452371, -0.03764789, 0.026159352, 0.018527294, -0.00975582, -0.0033289124, -0.008926542, -0.015129275, -0.006661196, 0.018473357, -0.0010281703, -0.025889667, 0.01453597, 0.015291085, 0.015385474, 0.0351668, 0.0061420538, -0.014873074, 0.050619695, 0.009769305, 0.007281469, -0.027588677, 0.01595181, 0.027170667, 0.01790702, -0.008771474, 0.018689103, -0.002201296, -0.0015784944, 0.002063083, 0.0035699424, -0.017785663, -0.006017325, 3.219353E-4, -0.013059449, -0.010403062, -0.012621213, 0.008333237, -0.025498625, 0.032173306, 0.007018527, -0.0010180572, 0.030878823, 0.00673873, 0.03190362, 0.002942927, 0.017853083, 0.004921734, 0.0016307457, -0.0037148977, -0.034870148, 0.016679958, 0.005144223, -0.004834086, 0.0035294897, 0.009047899, 0.009924373, 0.032712676, 5.692862E-4, -0.0025771682, 0.027049309, 0.007288211, -1.0444989E-4, 7.5637945E-4, 0.01338307, 0.029638276, -0.008339979, -0.024379438, 0.028424697, 0.0043082023, 0.0042576366, 0.017044032, 0.036245536, 0.007227532, -0.00709269, -0.0073758583, 2.8801413E-4, -0.008704052, 0.010827814, 0.024312016, -0.065479286, -0.011690803, -0.019808292, 0.033386882, -0.012277366, 0.01893182, 0.0078478055, -0.028262887, -0.015911357, 0.016261948, -0.004186845, -0.016518148, 7.8756164E-4, -0.019754356, -0.0023681629, 0.0058892253, -0.028424697, 0.0036339925, 0.018850915, -0.0041699894, -0.008380432, -0.004025034, 0.0047734072, 0.0045846286, -0.018190188, 0.011596413, 0.022181513, -0.009843468, -0.005221757, 0.005083544, 0.012257139, 0.0048374576, -9.33781E-4, 0.019268924, -0.032011494, 0.03006977, 0.0011309874, 0.023624321, 0.006617372, 0.0063780276, -0.0085422415, -0.019107115, 0.008623147, -0.0074567636, -0.010369351, -0.024986226, -0.006492643, -0.023341153, 0.006543209, 0.0010239566, -0.018635167, -0.009108579, 0.0036542187, 1.3293264E-5, 0.0019467816, 0.0012279052, 0.0012548736, -0.020549923, -0.012142524, 0.013268455, -0.025134552, 0.010969399, 0.009101836, -0.0073691164, -0.022127576, 0.011845872, 0.007719706, -0.015304569, 0.009863693, 0.009614236, -0.0070859483, 0.0066949064, -0.021170197, -0.0021827552, 0.015965296, -0.008724279, 0.010463741, 1.7603204E-4, 0.021332007, -0.029530402, -0.0062027327, -0.0085017895, -0.004234039, -0.017151905, 0.004665534, 0.028856192, 0.015142758, 0.017097969, -0.010935687, -0.005386939, -0.0030272033, -0.01790702, -5.229342E-4, -0.010153604, -0.02397491, -0.005026236, 0.0015119162, 0.012115556, 1.9857594E-4, -0.0022771447, 0.003748608, 0.037405174, 0.017785663, 0.022383776, 0.00117144, 0.004008179, -0.021615176, -0.0019585802, -0.013194292, 0.022855721, -0.020051008, 0.008434368, -0.011562703, -0.008137716, 0.014832622, -0.0018793606, 0.02676614, -0.021857891, -0.006165651, -0.015237148, 0.029152844, 0.0110503035, -0.0160462, 0.029934928, 0.018082315, -0.021709565, -0.007685995, 0.0036542187, -0.021170197, 0.016841767, -0.007409569, -0.0035834266, 0.009128804, -0.010180572, -0.0012220058, -7.913541E-4, 2.45876E-4, 0.01690919, -0.0149809485, 0.042690985, -0.022248933, 0.0037722054, 0.014522485, 0.028829224, 0.004210442, 0.022639975, -0.019336345, 0.0038564818, -0.0011958801, -0.017219326, 0.032362085, -0.008056811, 0.016733894, 0.0011790249, 0.0053734547, 0.003478924, -0.02044205, 0.0048981365, 0.009991794, 0.027858362, 0.01748901, 0.018378967, -0.02130504, 0.033359915, 0.0063510593, 0.016760863, 0.007557895, -0.014509001, 0.004132908, -0.012526823, -0.032793578, -0.012135781, -0.010227767, 0.0055285227, -0.010167088, -0.002782802, -0.0064993855, -0.015075338, 0.0043149446, 0.0037081556, 0.030717012, 0.003398019, -0.04020989, 0.01521018, 0.03314417, -0.0061858776, -0.02955737, 0.002673243, -0.005016123, -0.022774817, -0.016059684, 0.0026782996, 0.029827055, -0.012176234, 8.541399E-4, -0.012843702, 0.004550918, 0.024541248, -0.01283696, 0.008980478, 0.023624321, -0.011528993, 0.0168148, -2.2143588E-4, -0.018783493, 0.009324325, -0.017664304, -0.026590846, -0.022329839, -0.0069173956, -0.015385474, 4.1506058E-4, 0.005474586, -0.034061093, 0.0061251987, -1.1050725E-4, -0.008447853, -0.011542477, 0.004995897, 0.021399429, -3.8156076E-4, -0.023894006, -0.013356102, -0.02557953, -0.006135312, 0.09136895, 0.05369409, -0.007281469, 0.00844111, -0.009175999, 0.012648181, -0.010355867, -0.012493113, 0.0011958801, -0.020172367, 0.02179047, -0.008717537, 0.017866567, 6.556693E-4, 0.0072410163, -0.0059296777, -0.02237029, 0.008110748, -0.008663599, -0.0059735016, -0.019457703, -0.017515978, 0.03058217, 0.03314417, 0.027966235, -0.0117042875, 0.00622633, 0.0037081556, 0.011596413, -0.0012279052, -0.023273733, 0.016464211, 0.016733894, 0.03309023, -1.4211085E-4, -0.007065722, 0.010207541, -0.0036171372, 0.0095063625, 0.009351294, 1.554897E-4, 0.020994902, -4.302303E-4, -0.0071938215, 0.013652754, -0.01848684, -0.021979248, 0.014509001, 0.027885329, -0.037324272, 0.01771824, 0.01620801, -0.015291085, -0.01774521, 0.023570385, -0.021776985, -0.0054577305, -0.013544881, -0.003930645, 0.011468314, -0.023057986, -0.028155014, 0.018217158, -0.016356338, -0.017920503, -0.017772177, -0.01203465, -0.008744505, -0.014576422, 0.003170473, -0.020792639, -0.023084953, -0.0039879526, -0.009175999, 0.011063788, -0.0063813985, 0.03346779, -0.010571614, 0.0019248698, 5.208273E-4, -0.030366423, -0.015493348, 0.008663599, -0.029584339, -0.010672746, -0.0018979014, -0.010349125, 0.021008387, -0.008009616, 0.0126279555, -0.002747406, 7.61436E-4, -0.020455534, -0.014037054, 0.034573495, 0.015587738, 0.015277601, 0.0126279555, 0.009344552, -0.0015582681, 0.004995897, -0.018446388, -0.016261948, -0.01402357, 0.010888493, -0.006876943, -0.0016358022, 0.0016071483, -0.015169727, -0.027494287, -0.017758694, -0.017987926, -0.0072342744, -0.004220555, 0.031795748, -0.011178403, 0.015250633, 0.015398959, -0.025997542, 0.0016433871, 0.028856192, -0.021574723, 0.01883743, 0.033386882, -0.01774521, 0.04069532, 0.002836739, -0.0125537915, -0.0090074465, 0.026590846, 0.013356102, 0.022033187, -0.012156008, 0.0076657687, -0.021399429, -0.018877883, -0.009000705, 0.004925105, -0.009283873, 0.0117042875, -0.022896174, 0.011542477, -0.0023664774, -0.007153369, -0.018958788, -0.030986696, -0.004132908, -0.008589436, 0.015345022, 0.025539078, -0.008784957, 0.0113199875, -0.032550864, -0.013032481, -0.009182742, -0.04004808, -0.00837369, -0.0069915587, 0.022100607, 0.008245589, 0.04104591, -0.001650972, -6.447134E-4, 0.01023451, 0.00946591, 0.021776985, -0.025916636, -0.0067151324, -0.04274492, -0.008157942, 0.009196226, 0.008771474, 0.0125133395, 7.2646135E-4, 0.0048543126, 0.0022451195, 0.004935218, 0.006752214, -9.1186917E-4, -0.01723281, -0.022437712, 0.009142289, -0.02060386, 0.0028957324, -0.0050397203, -0.008259074, 0.04409334, -0.016423758, -1.2651974E-4, -0.019363314, 0.013565107, -0.013039223, 0.01967345, -0.017974442, 0.018877883, -0.011960487, -9.228251E-4, -0.020212818, -0.01723281, 1.4569258E-4, -0.0031401336, 0.033413853, 0.0032463216, -0.0020495986, -0.0063712853, 0.02297708, -0.004759923, -0.021345492, 0.019147567, -0.029314656, -0.032469958, -0.029584339, -0.011960487, -0.027265057, -0.009971567, 0.009856951, -0.01270886, 0.017273262, -0.015196696, -0.039050248, 0.019943135, -0.012823476, 0.048920684, 0.011758224, 0.03497802, 0.03276661, 0.016154073, -0.022168027, 0.008993963, -0.0059667593, -0.0016130477, 0.027966235, 0.025282878, -0.01941725, 0.008832152, 0.008886089, -0.0024945773, -0.03495105, -0.050376978, 0.01386176, 0.02255907, 0.022545585, -0.00844111, -0.0046318234, -0.020266755, 0.0047498103, 0.0024204142, 0.0055689756, -0.0019855488, -0.021911828, -0.021493819, -0.011266051, -0.004490239, 0.006492643, 0.0060948594, -0.0030272033, 0.021642145, -0.015911357, 0.011468314, -0.0036778161, -0.019147567, 0.050215166, -0.014131444, 0.007005043, 0.0032682335, 0.0029125877, 0.0095063625, 0.005734157, -7.104489E-4, 0.030150676, -0.01200094, 0.020913998, -0.0031603598, 0.014077507, 0.011502024, 0.014117959, -0.009991794, -0.01014012, -0.0356792, -0.0017411476, 0.023529932, -0.015749548, -0.011151435, 0.0072545004, -0.015924843, -0.0037283818, 0.0053228885, -0.011731256, 0.018432904, -0.045738414, 0.006522983, 0.009614236, -0.026105415, -0.006823006, -0.0039003054, -0.015736064, -0.010861524, 0.015318054, -0.016181042, 0.0041093105, -0.012209944, -0.010376093, -0.0548807, -0.016181042, -0.014306738, -0.008582694, 0.018810462, -0.017462041, 0.0024406405, -0.0019299265, -0.0054678437, -0.0064521907, -7.850334E-4, -0.016450725, 0.00709269, 0.008090521, 0.00507006, -0.009904146, -0.012021166, 0.03276661, 0.0106997145, -0.012499855, -0.009762562, 0.014225833, 0.026334647, -0.034249872, 0.016383305, -0.011380666, -0.011711029, 0.009108579, 0.0066443407, 0.017920503, 0.012796507, 0.0019872342, -0.03770183, -0.0075309267, -0.018095799, 0.037755765, -0.0178396, 0.005461102, 0.04932521, 0.0089669945, 0.031337284, 0.018850915, -0.009472651, -0.03581404, 0.017084483, -0.009344552, -0.037890606, -0.01495398, 0.006135312, 0.022262417, 0.020131914, -0.002034429, -0.016464211, 0.0036407346, -0.015479864, -0.020455534, -0.011798677, 0.024918806, 0.021857891, 0.0035025214, 0.003600282, 0.008778215, 0.0063207196, 6.244871E-4, -0.008771474, -0.014616875, 0.004982413, 5.793993E-4, 0.024136722, 0.028101077, -0.020549923, -0.01607317, 0.013194292, 0.007079206, 0.0062431856, 0.02053644, -0.019228471, 6.3080783E-4, -0.015695611, -0.0032749756, -0.011899808, -0.015034885, 0.016275432, -0.014320223, 8.381538E-6, 0.0073084375, -0.007402827, -0.009809757, -0.0010205855, 0.012998771, -0.01800141, 0.004321687, -0.0160462, -0.006266783, 0.009856951, -0.029584339, 0.02744035, 0.0047194706, -0.006549951, 0.041342564, 0.026091931, -0.014522485, 0.010571614, -0.011036819, 0.0071601113, -0.014940496, -0.008548984, -0.012877413, 0.026267225, -0.033063263, 0.0019855488, -0.031337284, 0.0083871735, -0.0044834972, 0.011630124, 6.5524795E-4, 0.046223845, -0.0122436555, -0.050376978, 0.00667468, -0.013423523, 0.008104005, -0.010962656, -0.0040756, -0.027804425, -0.0066409693, -0.0053060334, 0.009324325, -0.02644252, -0.045252983, 0.020226303, -0.009115321, -0.016531631, 0.010618809, 0.19223078, -0.017313715, 0.008973736, 0.058898993, 0.009634462, 0.011737998, 0.032038465, 0.0122436555, -8.9669944E-4, 0.0041531343, 0.0049588154, 0.013470718, -0.014050539, -9.0091326E-4, 0.026078446, -0.020104945, -0.022073638, -0.025431205, -0.0243255, -0.017084483, -0.006553322, -0.0059195645, -0.017273262, -0.015843937, 0.0073219216, -0.0165586, -0.009654689, 0.0014318537, 0.0035935398, -3.1498252E-4, -0.010126635, -0.01934983, 0.0042980895, 0.0020327435, -0.020212818, -0.011407635, 0.009155773, 0.010962656, 6.2153745E-4, 0.003600282, 0.010760393, 0.002673243, 0.0014613504, 0.003135077, 0.01055813, 0.010713198, -0.023772648, 0.0049621863, -0.012391982, 0.0076253163, -0.03697368, -0.00644882, 0.013437008, 0.027332477, -0.011077272, -0.004412705, 0.007274727, -0.004099197, -0.020158881, 0.012830218, 0.012041393, 0.038106356, -0.029961897, 0.018702587, -0.00869731, 0.0014967464, -0.03314417, 0.019241957, 0.0047666654, -0.026617814, -0.020940965, -0.035867978, -0.022734364, 0.01017383, -0.018244125, -0.026941435, 0.0034755531, 0.01187284, 0.0061690225, 0.028694382, -0.029880991, -0.019659966, 0.01537199, -0.0053026625, -0.013261712, -0.029179813, 0.013322392, -0.010072699, 0.0030508006, -0.023772648, -0.005339744, -0.018783493, -0.004159876, 0.006297122, 0.0030946243, -0.006152167, 0.020482503, 0.014684296, -0.0068398616, -0.0039576134, -0.029125877, 0.025444688, 0.026685236, -0.008528758, -0.029314656, -0.00760509, -0.009870436, -0.0041834735, 0.028991034, -0.017219326, -0.013794338, -0.02204667, -0.00327329, -0.016679958, 0.01427977, 0.019498156, 0.0069915587, -0.008077037, 0.032793578, -0.01944422, 0.003937387, -0.022329839, 0.029719181, 0.007739932, -0.012661666, -0.031984527, -0.029827055, 0.008495047, -0.0059296777, -0.04290673, 0.008757989, -0.023354638, 0.020522956, -0.010827814, -0.003330598, 0.010119894, 0.017623851, -0.008757989, 0.0056397673, -0.0024878352, -0.006735359, 0.010875009, 0.010537904, 0.015587738, 0.011812161, -0.026280709, 0.0122436555, -0.008899573, -0.018796977, -0.028505603, -0.040155955, 0.010659262, 0.0071061742, 0.009533331, 0.041126817, 0.014158412, -0.015682127, -0.02416369, -0.016356338, 0.040668353, -0.03611069, 0.016127106, 0.018621683, -0.008838895, -0.023610838, -0.011191888, -0.17259778, 0.017044032, 0.008656858, -0.027642613, 0.015641674, 0.011717771, 0.03543648, 2.6209917E-4, 0.01097614, -0.023489479, 0.010841298, 0.006944364, -0.039940204, -0.011293019, 0.001995662, 0.02576831, 0.0069848164, 0.031849686, 0.028667413, -9.0765534E-4, 0.047788013, 0.0050970283, -0.005016123, -0.0017099654, 0.0029159586, -6.6451833E-4, 0.006435335, 0.016828284, -0.009331068, -5.9330487E-4, -0.04714077, -0.010854783, 0.0126279555, 0.0013467347, -0.0051846756, -0.0075107003, 0.009385005, -0.014940496, -0.011751482, -0.002580539, 0.0310676, 0.003930645, 0.025646953, 0.0054375045, 0.021224134, 0.01774521, 0.014900043, -0.019552093, 0.022855721, -0.008650116, 0.014913527, -0.021237617, 0.030690044, -0.013012255, -0.0024136722, 0.022316353, 0.015398959, 0.009749078, 0.015695611, -0.0077871266, -0.019363314, -0.004476755, 0.0030221466, -0.0023563644, -0.0038901921, -0.021561239, -0.019228471, 0.015196696, -0.029880991, 0.011899808, -0.020064492, -0.0032800322, 0.014495517, 0.017003579, 0.010113152, -0.02409627, -0.017947473, 0.012985286, 0.01373366, 2.1490447E-4, -0.019713903, 0.039481744, -0.016261948, 0.008508531, -3.9357014E-4, -0.013760628, 0.0033120571, -0.012135781, -0.0065600644, 0.0026884128, 0.011333472, -0.015520317, -0.030636108, 0.010780619, 0.0034081321, -0.003802545, -0.010928946, 0.0018051976, 0.021857891, -0.0033794781, 0.0040284055, 0.002371534, -0.035948884, 0.022194996, 0.009728852, 0.008872605, 0.017071, 0.026267225, 0.020576892, 0.0023479366, 0.0012759427, 0.0019181278, 0.026307678, 0.01136044, -0.008636631, 0.021844408, -0.012924608, -0.014064022, -0.0056195413, 0.023529932, 0.06914699, -2.686306E-4, 0.0072612427, -0.003671074, -0.013201034, -0.009742335, -0.08802487, 0.005686962, 0.018095799, 0.03969749, -0.041989803, 0.03379141, -0.0010854782, 0.004335171, -0.023300702, 0.02644252, 0.0022215222, -0.016733894, 0.018796977, -0.0037688345, 0.0026833562, 0.015897874, -0.009324325, -0.01941725, 0.0036103951, 0.0351668, 0.004277863, -0.006219588, 0.0019484672, -0.010490709, -0.019363314, 0.008892831, -0.02034766, 0.021561239, 0.017151905, 0.0117447395, 0.01376737, -0.028424697, 0.026118899, -0.02923375, -0.02804714, -0.02695492, -0.0069780746, -0.030015834, 0.02339509, -0.048435252, 0.010969399, 0.009283873, 0.0010610381, -0.015398959, -0.015318054, 0.0051543363, -0.04676321, 0.02153427, 0.009540073, -0.027089762, -0.018028378, -0.03125638, -0.026847046, 0.0023563644, 0.02390749, 0.0065330956, 0.033980187, 0.010322156, 0.0021608435, -0.0320924, -0.012702119, -0.004756552, -0.021143228, 0.0077601583, 0.0065330956, -0.009223194, -0.006071262, -0.015965296, 0.01588439, -0.020266755, -0.0248379, 0.02746732, -0.03635341, -0.012445918, -0.012466145, 0.019794809, -0.0256065, -0.011596413, 0.020644313, -0.039967176, 0.00988392, -0.040155955, 0.015843937, -0.030663075, 0.017502494, 0.00920971, 0.017785663, -0.0018523922, 0.0019366685, -0.034870148, -0.004847571, 0.02137246, -0.004409334, -0.012944833, -0.0081512, 0.02574134, 0.013713433, 0.008218621, -0.010564872, 0.012102071, -0.0085422415, 0.003741866, -0.07588909, 0.030555202, -0.01325497, -0.009142289, 0.0031384479, -0.021332007, 0.0080231, 0.0035227477, 0.008555726, 0.026294194, -0.0030659705, 0.010780619, -0.006253299, 0.004402592, -8.1368734E-4, -0.004534063, -0.005535265, -0.004078971, -2.614671E-4, 0.004847571, -9.7507634E-4, 0.01960603, 0.02143988, 0.0039137895, 0.0017647449, 0.022221964, -5.073431E-4, 0.011920035, -0.008043326, 0.0030828256, 0.03632644, -0.01953861, 0.004591371, 1.4326964E-4, -0.018783493, -0.03109457, -0.023947943, 0.001999033, 0.0023226538, 0.011407635, -0.007005043, -0.030285517, -0.0021153342, -0.016423758, -0.004675647, 0.007659027, -0.020455534, 0.0047498103, 0.010571614, 0.011171661, 0.021170197, 0.0031536177, -9.034415E-4, -0.0168148, 0.018567747, -0.0102007985, 0.049379148, 0.006010583, 0.010463741, -0.017853083, 0.008414142, -0.005461102, 0.027642613, -0.028532572, 0.004935218, 0.004894765, 0.0030609139, -0.005279065, -0.0056937044, -0.02769655, -0.017947473, -0.011286277, 0.014832622, 0.028101077, 0.010349125, 0.040803194, -0.011259309, -0.0028637075, 7.850334E-4, 0.021048838, 0.017704757, -0.0026496458, -0.028775286, 0.016801316, -1.8477571E-4, 0.011266051, 4.1000402E-4, 0.011441345, 0.023017533, 0.008306269, -0.014131444, 0.021129744, 0.009769305, 2.6336333E-4, 0.009385005, 0.02179047, -0.009971567, -0.017880052, 0.004682389, 0.022613006, -0.0043789945, 0.00568022, -0.010598583, -0.011555961, -0.014927012, -0.0031384479, -0.006415109, -0.015345022, 0.008879347, 0.0045542894, 0.030609138, 0.02477048, -0.010767135, 0.013726917, -0.032550864, 0.0043183155, -0.012472887, -0.018176705, -0.013356102, 0.03141819, 0.008144458, 0.011825645, 0.04347307, -0.025309848, 0.064670235, 0.027399898, 0.027049309, -0.03144516, 0.009978309, 0.014225833, -0.014252801, 0.005683591, -0.036218565, 0.0024119867, 5.2962365E-5, -0.0039879526, -0.0049048783, 0.036757935, -0.026064962, 0.074378856, 0.006431964, -0.0037856896, 0.006556693, -0.012088587, 0.012863928, 0.01469778, 0.030851854, -0.022626491, -0.009250162, 0.018190188, -0.019161051, 0.0093041, -0.020927481, 0.007416311, -0.010254735, 0.008960252, 0.010632293, -0.01713842, -0.017421588, -0.01200094, 0.0031333915, 0.017381135, -5.140852E-4, -0.014064022, -0.010477225, 0.009803015, 8.290677E-5, 0.008933283, -0.024689574, 0.00837369, -0.021385944, -0.011508767, 0.0053094043, 0.021089291, 0.0020748815, -0.008056811, 0.007079206, 0.014293254, 0.017286748, -0.019457703, 0.00673873, -0.021898344, -0.014994432, 0.022788301, -0.012506598, 0.0015312997, -0.029368592, -0.0076455423 ], + "id" : "af79eecf-1f78-444d-885f-4d2927d317c4", + "metadata" : { + "source" : "movies.csv" + } + }, + "d3131a2e-e7c6-4b9e-a7f1-93dba4c62682" : { + "text" : "While the world's leaders race to build \"\"arks\"\" to escape the impending cataclysm Curtis struggles to find a way to save his family. Meanwhile volcanic eruptions and earthquakes of unprecedented strength wreak havoc around the world.\",71.35,Columbia Pictures-Centropolis Entertainment-The Mark Gordon Company-Farewell Productions,10/10/09,200000000,791217826,158,Released,We Were Warned.,5.808,10921,John Cusack-Chiwetel Ejiofor-Amanda Peet-Oliver Platt-Thandiwe Newton-Tom McCarthy-George Segal-Danny Glover-Woody Harrelson-Liam James-Morgan Lily-Blu Mankuma-Zlatko Buriۈ-Beatrice Rosen-John Billingsley-Chin Han-Osric Chau-Philippe Haussmann-Alexandre Haussmann-Jimi Mistry-Johann Urb-Ryan McDonald-Stephen McHattie-Lisa Lu-Henry O-Patrick Bauchau-Tseng Chang-Merrilyn Gann-Patrick Gilmore-Dean Marshall-Ron Selmour-Viv Leacock-Chris Boyd-Donna Yamamoto-Doron Bell-David Orth-Lyndall Grant-Jason Diablo-Ty Olsson-Zinaid Memi��eviۈ-Vincent Cheng-Igor Morozov-B. J. Harrison-Dominic Zamprogna-Karin Konoval-Mary Gillis-Rick Tae-Parm Soor-Gerard Plunkett-Paul Tryl-Andrei Kovski-Val Cole-Eve Harlow-Sean Tyson-Leonard Tenisci-Michael Buffer-Daren A. Herbert-Craig Stanghetta-Mateen Devji-Qayam Devji-Jody Thompson-Tanya Champoux-Frank C. Turner-Kinua McWatt-Laara Sadiq-Gillian Barber-Candus Churchill-Beverley Elliott-Agam Darshi-Raj Lal-Pesi Daruwalla-Jacob Blair-Scott E. Miller-Anna Mae Routledge-John Stewart-Ryan Cook-Brandon Haas-Eddie Hassell-Betty Phillips-Georgina Hegedos-Luis Javier-Dean Redman-Gordon Lai-Mark Docherty-Mark Oliver-Andrew Moxham-Alexandra Castillo-Farouk A. Afify-Shaun Wilson-Leo Chiang-Elizabeth Richard-Kyle Riefsnyder-George Trochta-John Mee-Geoff Gustafson-Alex Zahara-Jason Griffith-Jill Morrison-Thomas Parkinson-Leona Naidoo-Chad Riley-Simon Leung-Quentin Guyon-Nicole Rudell-Kevin Haaland-Leigh Burrows-Dan Savoie-Jay Williams,civilization-earthquake-race against time-natural disaster-maya civilization-end of the world-disaster-apocalypse-destruction-volcanic eruption-flood-disaster movie-ark-solar-2010s,/zaqam2RNscH5ooYFWInV6hjx6y5.jpg,/pvxmYJcgrLiYC6G2IQTn1PPNems.jpg,41154-1271-10528-27578-38356-56292-2080-1865-10138-9799-49538-1930-19995-70160-435-6479-76163-13475-1726-14869-72105\r\n673,Harry Potter and the Prisoner of Azkaban,Adventure-Fantasy,en,Year three at Hogwarts means new fun and challenges as Harry learns the delicate art of approaching a Hippogriff transforming shape-shifting Boggarts into hilarity and even turning back time.", + "embedding" : [ 0.013542406, -0.03552558, -0.026671724, -0.04488891, -0.0040723607, 0.026947116, -0.00712577, -0.014485624, -0.01600028, -0.027098581, 0.029439414, 0.0362416, 8.234869E-5, 0.004805592, 0.0038830284, 0.015242952, 0.024193196, -0.030127894, -0.0062066494, -0.01773525, -0.0021308463, -0.0052324496, 0.003029313, -0.0064063086, 0.012674921, 0.02372503, 0.012275603, -0.007931292, 0.017680172, -0.003321917, -2.8550415E-4, 5.744507E-4, 0.01321882, -0.008957128, -0.03213826, -0.0020895374, 0.013487328, -0.016220594, 0.02682319, -0.010044927, 0.008736814, 0.011759242, -0.011958902, 0.0015353109, -0.031119306, 0.008757468, 0.0087161595, -0.014582011, -0.017955564, 0.016509756, 0.028943708, 0.041887138, -0.025322303, -0.021838592, 0.0026523701, -0.013315207, -0.0055766897, -0.0069984016, 0.015036408, -0.0073529687, 0.016909074, -0.016537296, -0.031201923, 5.735901E-4, -0.019401373, 0.0060310867, -0.02263723, -0.019952158, -0.0057281554, -0.003407977, 0.026368793, 0.013335862, 0.012654266, 0.0050844266, 0.022169063, -0.019993465, -0.037095316, -0.0012513128, 0.0033133111, -0.0033064263, 0.017583786, -0.021700896, -0.010836679, 0.004451025, 0.03803165, 0.01813457, -0.014141384, 0.019607916, -0.037535943, 0.007690324, 5.434691E-4, 0.009624953, -0.00940464, 0.010347858, -0.017928025, 0.011807436, -0.010547517, 0.02993512, -0.011463196, -0.04596294, 0.0024131231, -0.014733477, 0.0071120006, -0.012399529, 6.062929E-4, -0.0024664805, 0.0016446072, 0.006282382, 0.029164022, -6.463108E-4, 0.0050500026, -0.003690254, 0.0131362025, -0.048166078, 0.002275427, -0.024620052, 0.026410101, -0.012736884, -0.007025941, -0.012131021, 0.017707711, 0.025129529, 0.0027883449, -0.028806012, 0.02954957, 0.02227922, -0.0040103975, -0.0033442928, 0.0032134815, -0.012771308, 0.002764248, 8.119764E-4, 0.029769884, -0.017528707, -0.024661362, 0.05224188, -0.019057132, -0.0028589142, -0.01675761, -0.026024552, 0.032854278, 0.026589107, -0.016179286, -0.022072677, -0.032523807, 0.0032375783, 0.008385689, 0.0062169763, 0.023945343, -0.0038692588, 0.03690254, 0.014403006, 0.007449356, 0.0106989825, 0.017955564, -0.010141314, -0.016867766, -0.0025112317, -0.002206579, -0.033322442, 0.005277201, -0.0064063086, -0.0029329257, -0.020296397, 0.0018175878, 0.0120208645, 0.02503314, -0.01704677, -0.0014096632, -0.0065267924, -0.023738798, 0.03161501, -0.017294623, 0.02163205, 0.009638723, 0.03932599, 0.012812617, -0.0017814426, -0.027580518, -0.015421957, 6.105959E-4, 0.020089854, 0.042024832, 0.039821696, 0.009204981, 0.021108804, 0.031312082, -0.02853062, 0.014113844, -0.0019948715, 0.004110227, 0.01845127, -0.009115478, -0.0073942775, -0.64375657, -0.017707711, -0.015380648, -0.003184221, 0.0014001967, 0.009755765, 0.0030430825, 0.013948609, -0.020737024, -0.007752287, -0.02683696, 0.01307424, -0.0013313487, -0.009521682, -0.026657954, -0.009253174, -0.004564624, -0.025583925, 0.02053048, 0.0012254948, -0.018354883, 0.03412108, 0.013349632, -0.01604159, 0.012654266, 0.022554612, -0.014072536, -0.027277587, -0.0017625093, 0.006650719, 0.0026024552, 0.0053357217, -0.005807331, 0.005669635, 0.038389657, -0.0049845967, -0.01496756, 0.03973908, 0.032551344, 0.038389657, -0.021508122, -0.0107816, 0.021549432, 0.012034634, -0.020089854, 0.018217187, 0.020241318, -0.023518484, 0.0139073, -0.01529803, 0.003810738, 0.0051876986, -0.0013459788, 0.007697209, -0.004306444, 0.009163672, 0.012310026, -0.02850308, 0.019456452, -0.010375397, -0.02434466, 0.021411736, 0.012165446, 0.0048365737, -0.01740478, 0.027002195, -0.0026489277, 0.0045267576, 0.011552698, -0.023780107, 7.1128615E-4, 0.009253174, -0.011242882, -0.018630276, 0.013149972, 0.01182809, 0.034919716, -0.009432179, 6.5965013E-4, 0.023463406, 0.009638723, -0.021687128, -0.0048021497, 0.017459858, 0.01217233, -0.013948609, -0.041005883, 0.004495776, 0.015366878, 0.003776314, 2.124607E-4, 0.00940464, -0.011208458, 0.0057453676, -0.013783374, -0.004461352, -0.001042187, 0.0047057625, 0.036158983, -0.05367392, -0.0050155786, -0.03340506, -0.010609481, -0.002213464, -0.0028692414, 0.01740478, -0.009838383, 0.0023804205, 0.0404551, -0.011284191, -0.0023064087, 3.6424908E-4, -0.021315347, -0.019043364, 0.009886576, -0.02850308, 0.023587333, 0.013267014, 0.010692098, -0.005191141, 0.0020826526, 0.015463266, -0.006574986, -0.03417616, -0.0018692238, 0.014582011, 0.0036351755, -0.0053667035, -0.018685354, -7.177406E-4, 0.01842373, 8.898607E-4, 0.013893531, -0.010898642, -0.0015860863, 0.0046816655, 0.025280993, -0.017955564, 0.013267014, 0.014650859, -0.032275952, -0.002960465, -0.010678329, -0.009707571, -0.0014294571, -0.021976288, -0.027773293, -5.585296E-4, -0.013735181, -0.0011205015, -0.016234364, -0.0022719847, 0.0038245076, 0.01113961, -0.0067677605, 0.005793561, -0.021150112, -0.023766337, 0.007545743, -0.012000211, 0.017886717, 0.016316982, -0.0045095454, -0.02091603, 0.025267225, -0.0026678608, -0.009301368, 0.011607776, -6.6997734E-4, -0.022485765, 0.0033580624, -0.0045956057, -0.008282417, 0.023064088, -0.0051016384, 0.03208318, -0.024881676, 0.007958831, -0.014513163, -0.0039518764, 0.020379014, -0.0016747281, -0.023945343, -0.014155153, 0.007511319, 0.01462332, 0.015738659, -0.0046885503, -0.007621476, 0.015848815, 5.2324496E-4, 0.004213499, -0.009328907, 0.0011385742, 3.558582E-4, 0.015532114, 9.879691E-4, -0.0046713385, 0.014761016, 0.019910848, 0.045467235, 0.009039746, 0.012330681, -0.0060207597, 0.011456311, -0.026602875, -0.005707501, -0.02506068, 0.0019879867, -0.010354742, 0.031642552, -0.011277306, -0.022155294, 0.007945062, 8.881395E-4, 0.02886109, -0.004347753, 7.5216463E-4, -0.038059186, -0.008172261, 0.003287493, -0.0030602945, 0.0240555, 0.016206825, -0.028076224, 0.025170837, 0.0025301648, 0.014031227, 0.024620052, -0.0042203837, -2.0363955E-4, 0.0016936613, 0.008860741, 0.0052049104, 0.0056834044, 0.0063443454, 0.041391432, 3.9759732E-4, 0.023119166, -0.006874475, -0.01982823, 0.014871173, 0.01918106, -7.2763755E-4, -0.008943358, -0.010396051, 0.027318895, 0.018272266, -0.010568172, 0.050561987, -0.014334158, 0.014582011, -0.0026213885, 0.0026523701, 0.00643729, -0.019993465, 0.0042926744, 0.023050318, 0.045797706, 0.019800691, 0.01147008, -0.01951153, 0.01806572, 0.019277446, 0.018905668, 0.0010654231, -0.016248133, 0.0012323796, -0.007105116, -0.021508122, -0.021480583, -0.017514937, 0.0037005811, -0.015174104, -0.014926251, -0.008227339, -0.0023322268, 0.006213534, 0.013941725, 0.022100216, 0.011773012, -0.033955846, 0.013301438, 0.012034634, -0.006850378, -0.04246546, -0.014038112, -0.007759172, -0.026038323, 0.0014931415, -0.030045277, 0.038857825, -0.022857543, 0.0025766373, -0.008330611, -0.0052221227, 0.027208738, -0.008819432, 0.014292849, 0.0017573457, -0.017638864, 0.0097419955, -2.6764668E-4, -0.0040723607, 0.017501168, -0.010719637, 0.008144721, -0.0046816655, -0.01149762, -0.012736884, 0.009411525, 0.021315347, -0.020819642, 0.017487397, -0.019979697, -6.118868E-4, 0.0052014682, -0.006430405, 0.017501168, -0.005249662, 0.0024303352, -0.035002336, -0.029714806, -0.019249907, 0.08184653, 0.025198376, 0.008365035, 0.009824613, 0.008275532, -0.008853856, -0.006506138, -0.03172517, -0.013969264, 0.0033012626, 0.006117147, -0.011538928, 0.011435657, 0.0073323143, 0.020489171, 5.4475997E-4, 0.00870239, -0.016771378, -0.019332524, -0.004857228, -0.009783304, -0.012674921, 0.021824824, 0.026024552, -0.0041584205, -0.019952158, 0.027346434, -5.886506E-4, -0.0018675026, 0.022169063, -0.013301438, 0.015779966, 0.010767831, 0.009549221, -0.005700616, 2.1041677E-4, 0.03271658, 0.009322022, 0.02679565, -0.009886576, 0.0057797916, 0.012227409, 0.012427068, -0.023573563, 0.0017831638, -0.014540702, -6.1263985E-5, 0.029274179, 0.0118831685, -0.016537296, 0.035387885, 2.8464355E-4, -0.033818148, -0.0078280205, 0.017363472, -0.0037625444, 0.0052668736, -0.0012323796, -0.025928166, 0.0065267924, -0.0014957233, -0.02543246, 0.007724748, -0.008612888, -0.006812512, -8.77382E-4, -0.014871173, 0.010148198, -0.025501307, 0.030678678, 0.013088009, -0.049047332, -2.0288651E-4, 0.00382795, 0.022045137, 0.0021463372, 0.012688691, -0.004626587, 0.012303142, 0.003996628, -0.01776279, -0.028778473, -0.0020619982, -0.02474398, -0.014155153, 0.015807506, -0.024895445, 0.0118831685, -0.008220454, 0.018437501, 0.00295358, -0.014079421, -0.0016979644, 0.0067918575, 0.03938107, 0.0076352456, 0.019525299, 0.027663136, 0.0071808486, -9.99157E-4, 0.008771238, -0.012564764, -0.022017598, -0.0074562407, -0.0066541615, -0.009432179, -0.0023459964, 0.012571649, -0.01845127, -0.026313715, -0.011642201, -0.021852363, 0.00574881, 0.0017263641, 0.0018933206, 0.0031377487, 0.033680454, 0.0087850075, -0.005077542, -0.007724748, -5.580993E-4, -0.01842373, 0.009611184, 0.02954957, -0.0040723607, 0.02333948, 0.010168853, -0.021177651, -0.00382795, 0.012034634, -0.01564227, 0.03340506, 3.7973988E-4, 9.139575E-4, -0.021535661, -0.0025336072, 0.0028210478, -0.0036627147, -0.0011618104, 0.019043364, -0.018079491, 9.948539E-4, 6.721288E-4, 0.00204995, -0.025198376, -0.027676905, 0.007614591, -0.0077109784, 0.008537155, 0.015779966, -0.012413299, -0.011848745, -0.014430545, -0.002659255, -0.011759242, -0.04907487, -0.015931433, 0.004482006, 0.022086445, 0.018051952, 0.042630695, 0.0067161247, 0.026355023, 0.006736779, -8.6662447E-4, 0.01707431, -0.009852152, -0.01131173, -0.042437922, 0.006736779, 0.009163672, 0.01251657, 0.006086165, -0.012144791, 0.018024413, 0.022595922, 0.0037177932, 0.016674992, 0.0030792279, -0.029824963, -0.029687267, 0.019428913, -0.011621546, -0.017597554, -0.034864638, -0.009115478, 0.030816374, -0.009459718, -0.015284261, -0.019043364, 0.027621826, -0.003673042, 0.014017457, -0.031394698, 0.0067608757, -0.013225705, 0.006220419, -0.024578745, -0.0020826526, 0.004557739, -0.0034148619, 0.013666333, -0.014582011, -0.007046595, 0.003285772, 0.030788835, -0.007800481, -0.008991552, 0.032854278, -0.010933066, -0.00712577, -0.024165656, -9.260059E-4, -0.022430686, -0.0022874756, -0.010926181, -0.011387463, 0.013170627, -0.009074169, -0.022885082, 0.038389657, 0.007001844, 0.053894233, 0.013783374, 0.045054145, 0.015545883, 1.9707746E-4, -0.023256863, 0.01532557, -0.0044647944, -0.009425295, 0.029026326, 0.010946835, -0.011297961, -0.02090226, -0.018602736, -0.0022805908, -0.033652913, -0.030238051, 0.03241365, 0.026217327, 0.018230956, -0.017501168, -0.011366809, -0.008592233, 0.00887451, -0.012626727, 0.0046093753, 3.012101E-4, -0.018657815, -0.01168351, -0.013714526, -0.010933066, 0.017101848, 0.016523525, -0.03693008, 0.027800832, -0.022086445, 0.018217187, -0.008667966, -0.00959053, 0.023807647, -0.017267084, 0.002189367, -0.0017452973, 1.8126394E-4, 0.0111327255, -0.0019294658, -0.005142947, 0.03384569, -0.028806012, 0.019690534, 0.0062720547, 0.011208458, 0.0024441048, 0.009886576, -0.023711259, -0.013211936, -0.029164022, 0.0019277446, 0.032964434, 0.014788555, -0.007105116, -0.015270491, -0.009356447, -0.013673217, -0.0049295183, -0.0018072606, -1.2995064E-4, -0.03803165, 0.004619702, 0.0047677257, -0.014802325, -1.7857456E-4, -0.0066025252, 0.0033856016, -0.008241109, 0.024950523, -0.010926181, -0.025983244, -0.012048404, -0.00617911, -0.0354705, -0.014733477, -0.003425189, -0.00635123, 0.011917593, -0.01637206, -0.0066472767, -0.0040551485, -0.018878128, -0.0027539209, 2.5602858E-4, -0.0067057973, 0.004203172, 0.027112352, -0.010747177, -0.0015258443, -0.0017969334, 0.03863751, 0.015504574, 0.004420043, 0.022733618, -0.01273, 0.025528846, -0.010526863, 0.015215413, -0.005852082, -0.024978062, -0.015242952, 0.013487328, 0.025294764, 7.9175225E-4, -0.023050318, -0.03128454, -0.009273829, -0.016275672, 0.039243374, 0.003920895, -2.4548624E-4, 0.025859317, 0.010712752, 0.028392924, 0.014650859, -0.0058899485, -0.02474398, 0.0067746453, -0.0056937314, -0.025349842, -0.010933066, 0.013652563, 0.025804238, 0.0041859597, -0.015890123, -0.034396473, -8.679154E-4, -0.039876774, -0.016165515, -0.0064854836, 0.025280993, 0.062183533, 0.024551205, -5.314207E-4, 0.027222509, -0.002273706, 0.016633682, -0.012069059, 0.012433953, 0.01270246, 0.007160194, 0.028034914, 0.0110638775, -0.026410101, 0.007012171, 0.0028985017, 0.024110578, -0.009094824, 0.02090226, -0.0067298943, -0.017886717, 0.0041480935, 0.0019862654, -0.0030327553, 0.010223932, 0.007160194, -0.031229462, 6.497532E-4, 0.009012206, 0.029081404, -0.004247923, 0.007862444, -0.0047436287, -0.0334326, 0.010340973, -0.008337496, -0.043622106, 0.009893461, -0.01148385, 0.021012416, 0.0061137043, -0.0069674198, 0.030816374, 0.024262043, -0.016647452, 0.01096749, 0.0034837099, 0.0075388583, -0.01166974, -0.0048262463, 0.0019156962, 0.02022755, -0.02160451, 0.008137836, -0.019057132, -0.01181432, -0.010547517, -0.001711734, -0.023311941, 0.04078557, 0.023174245, -0.033818148, -0.012909004, -0.013941725, 0.008833202, -0.0070087286, -0.005108523, -0.022416916, -0.009225635, -0.0033339655, -0.0015671531, -0.014051882, -0.018616505, 0.009397755, -0.0067230095, -0.007862444, 0.016440907, 0.1852838, 0.0044923336, 0.021136343, 0.029439414, 0.0039002404, 0.02853062, 0.014540702, 0.006581871, -0.011779897, 0.017955564, -0.010685213, 0.008853856, 0.008151606, 0.0052358923, -0.013494212, -0.014692168, -0.015146565, -0.014843633, -0.020255089, -0.020626867, -9.501027E-4, 0.0026196672, -0.0025938493, -0.015779966, 0.01915352, -0.016606143, -0.0034337952, -3.657551E-4, 0.028337846, 0.005845197, -0.023160474, -0.027704444, -0.02336702, 0.0014587175, -0.013143088, -0.022141524, 0.0053598187, 0.009755765, 0.010430476, 0.0020275742, 0.006805627, -0.0033959288, -0.007545743, 0.0126129575, 0.006399424, 0.012110367, -0.0053357217, -0.0049054218, -0.010760946, 0.0032048754, -0.033652913, 0.004041379, 0.010251471, 0.019332524, -0.009996733, -0.014182692, 0.005776349, -0.008206684, -0.016578604, -0.0014759295, 0.0062066494, 0.033873226, -0.016950384, 0.014582011, -0.006120589, 0.010809139, -0.046210792, -0.021218961, 0.020792102, -0.025556386, -0.0065095806, -0.043236557, -0.012254948, -0.0015026081, -0.0021256828, -0.011056992, -0.0013597484, 0.007662785, 0.013425364, 0.0062858243, -0.01149762, -0.022664769, 0.012268717, -0.0071877334, -0.021728436, -0.029191561, 0.016895305, -0.0017986546, -0.019607916, -0.0042789048, -0.011993325, -0.029329257, -0.012241178, -0.0035387883, -1.0483187E-4, 0.00713954, 0.012743769, 0.012241178, -0.021163883, -0.0033494562, -0.030017737, 0.0070052864, 0.019346295, -0.016523525, -0.018286034, -0.008654197, -0.006650719, 0.013810913, 0.040950805, -0.032964434, -0.012365105, -0.01915352, -0.0036076363, -0.009583645, 0.0021084708, 0.014747246, -0.0047814953, -0.007889983, 0.035635736, -0.02614848, 0.0017952122, -0.032578886, 0.016206825, -0.017542476, 0.012310026, -0.031835325, -0.036324218, 0.014843633, 0.006430405, -0.049515497, 0.02402796, -0.026864499, 0.0011523438, -0.00643729, 0.008709275, 0.015394418, 0.021852363, -0.023890264, 0.0066713733, 0.003055131, -0.0019707747, -0.0042892317, 0.024551205, 0.0071808486, -0.0066025252, -0.00784179, 0.00400007, 0.0061412435, -0.008495846, -0.03310213, -0.015504574, -0.009019091, -0.0075939368, 0.0053322795, 0.025818009, -0.01253034, -0.022375608, -0.025666542, -0.0018588966, 0.028695855, -0.035305265, 0.032633964, 0.010733407, -0.009253174, -0.022871314, -0.0056834044, -0.17757282, 0.016647452, 0.012048404, -0.030320669, 0.021453043, 0.010919296, 0.027373973, 0.003210039, -0.0054045697, -0.0039449916, 6.618016E-4, 9.759207E-4, -0.052324496, 4.3245163E-5, 0.011201574, 0.0011729982, -0.0048090345, 0.025556386, 0.01913975, 0.0040792455, 0.029632188, -0.015132795, -0.005122293, 0.013686987, 0.026065862, 0.005518169, 0.002901944, 0.004719532, 0.0030361977, -0.018506348, -0.037012696, 0.002874405, 0.011229113, -0.0027883449, -0.020296397, 4.335274E-4, -0.014898712, -0.023917804, -0.016468447, -0.0029828406, 0.031201923, 0.010189507, 0.022857543, 0.014334158, 0.008316841, 0.0320281, 0.02194875, -0.029026326, -0.0076696696, -0.0069398805, 0.0023959111, -0.014540702, 0.00818603, 0.0040723607, 0.005397685, 0.020392785, -0.013335862, 0.0036351755, 0.013239475, -0.019291217, -0.035745893, -0.004550854, 0.008309957, -0.006375327, -0.006640392, -0.027663136, -0.0048124767, 0.012833271, -0.031146845, 0.017101848, -0.0012435674, -0.0018554542, 0.0106989825, 0.0032565114, -0.00504656, -0.03274412, -0.032523807, 0.0229677, -0.013673217, 0.016936613, -0.017597554, 0.041611746, -0.029742345, 0.005972566, 0.02646518, -0.024537435, -0.011552698, 8.1584905E-4, -0.011435657, -0.012647382, -0.0015112141, -0.007731633, -0.03698516, -0.006289267, -0.0052703163, 0.027470361, 0.009342677, 0.016633682, 5.3959637E-4, -0.016124208, 0.0059966627, -0.007056922, -0.018588966, 0.016867766, 0.050038744, 0.023821415, 0.0032599538, 0.024303352, 0.027745754, 0.012674921, -0.0042169415, -0.0047160895, 0.029136483, 0.01427908, -0.01568358, -0.010595711, -0.0032978202, -0.013191281, 2.5172558E-4, 0.017487397, 0.028062453, 0.0011773012, -0.01148385, -0.031642552, -0.00785556, -0.025349842, -0.09660754, 0.0043993886, -0.007105116, 0.043098863, -0.012998506, 0.046045557, -1.4226798E-5, 0.030898992, -0.0069054565, 0.026203558, -0.003955319, -0.036434375, 0.023780107, 0.014802325, 0.0334326, -0.006908899, -0.018561427, -0.015449496, -0.007903753, 0.012585418, -0.0019380718, -0.011235997, 5.1894196E-4, -0.023711259, -0.022540843, 0.0013279063, -0.024633823, 0.010100005, 0.01098126, 0.0059278146, 0.015752427, -0.019428913, 0.012344451, -0.01776279, -0.0020826526, -0.016592374, -0.020351475, -0.024427278, 0.01131173, -0.06444175, 0.024303352, 0.014719707, -0.0025680312, -0.019456452, 0.014692168, -0.007683439, -0.020957338, 0.030348208, -0.0022513303, -0.014843633, -0.021755975, -0.010354742, -0.016523525, 2.5366194E-4, 0.01949776, 0.006815954, 0.01740478, 0.003989743, -0.008984667, -0.005425224, 0.01670253, -0.023862725, -0.027869679, 0.018258495, 0.014044996, 0.0046059326, -0.012688691, -0.0059587965, 0.022113984, -0.021095034, -0.015022638, 0.020461632, -0.01916729, -0.004795265, -0.018010642, 0.016840227, -0.026947116, 0.003621406, 0.017611325, -0.011511389, -0.005704059, -0.03277166, 0.012936544, -0.032936893, 0.013019161, 0.01675761, 0.005208353, 0.010327203, 0.014568241, -0.028420463, 0.011511389, 0.00497427, 0.011490735, -0.0110638775, -0.0055835745, 0.034671865, 0.020007236, -0.0018124242, 0.011208458, 0.010953721, -0.026616646, -0.0032788871, -0.079533234, 0.027938528, -0.0132738985, -0.0103340885, -0.014843633, -0.009556105, -0.005838312, 0.0068710325, 0.0042582504, 0.01947022, -0.01098126, -0.007091346, 0.005087869, -0.003459613, -0.02196252, 0.009239404, 0.0023287844, -0.008426998, 0.0053770305, -0.0075732823, -0.0243722, -0.011800551, 0.01741855, -0.020833412, -0.0025611464, 0.013225705, 0.003724678, 0.008743699, -0.015600962, -0.012475261, 0.033294905, -0.019194828, 0.008137836, 0.010499324, -0.011869399, -0.011353039, -0.011662855, 0.010760946, 0.020406554, 0.028695855, -0.021163883, -0.013026046, 0.0052668736, -0.0123169115, -1.8147909E-4, 0.01564227, -0.02022755, -0.0010051811, 0.020392785, 0.011146495, 0.048882097, 0.024551205, -0.013425364, -0.017294623, -0.007025941, -0.03208318, 0.04673404, 0.01462332, 0.0081998, -0.012254948, 0.027690675, 4.3159103E-4, 0.026960885, -0.024317121, 0.0034544496, 0.0016127649, 0.016151747, -0.018230956, -0.017611325, -0.0097419955, 0.0031515183, -0.016812688, 0.026010783, 0.033019513, 0.0034372376, 0.012964083, -0.007511319, 0.007552628, 0.0032960991, 0.005074099, 0.030210512, -0.010499324, -0.027429052, 0.030926531, -0.005184256, 0.014582011, 4.9226335E-4, 0.0038933556, -0.009680032, 0.01098126, -0.008998437, 0.016895305, 0.018396191, 0.0016816129, -0.016647452, 0.017170697, -0.007056922, -0.019332524, -0.0015086323, 0.03277166, -0.007029383, 0.0023907477, -0.021411736, -0.01460955, -0.028131302, -4.1782143E-4, -5.494933E-4, -0.03029313, -5.322813E-4, 0.012785078, 0.018272266, 0.017514937, 0.008805662, 0.005008694, -0.042437922, 0.010595711, -6.82456E-4, -0.004309886, -0.013129318, 0.049129948, 0.01982823, 0.00504656, 0.029990198, -0.011408118, 0.044283047, 0.0029208774, 0.01286081, -0.018644044, -0.0035663275, -0.01602782, 0.007160194, 0.001836521, -0.022334298, 0.008254878, -0.015766198, -0.006292709, 2.2784392E-4, 0.030513443, -0.021218961, 0.050892457, 0.029687267, 0.008619772, 0.015807506, -0.026644185, 0.022692308, 0.0026231096, 0.01564227, 0.0027539209, -0.036406834, 0.004564624, -6.8288634E-4, 0.018230956, -0.03770118, -0.010375397, -0.0073598535, 0.019277446, 0.015394418, -0.001296064, -0.003320196, 0.015821276, 0.0026644184, 0.017501168, 0.006017317, -0.011036338, -0.02507445, 0.019057132, -0.0049845967, -0.016137976, -0.025322303, -0.0046437993, -0.036021285, 0.018162109, -0.009769535, 0.02748413, -0.0014569963, 0.004592163, -0.011015683, 0.021976288, -0.0067643183, -0.031119306, 0.00994854, -0.014650859, -0.029026326, -0.007766057, -0.0066300645, -0.0026816304, -0.02957711, -0.025143297 ], + "id" : "d3131a2e-e7c6-4b9e-a7f1-93dba4c62682", + "metadata" : { + "source" : "movies.csv" + } + }, + "6609869a-5210-442a-8dc7-6f5254e733d9" : { + "text" : "id,title,genres,original_language,overview,popularity,production_companies,release_date,budget,revenue,runtime,status,tagline,vote_average,vote_count,credits,keywords,poster_path,backdrop_path,recommendations\r\n19995,Avatar,Action-Adventure-Fantasy-Science Fiction,en,In the 22nd century a paraplegic Marine is dispatched to the moon Pandora on a unique mission but becomes torn between following orders and protecting an alien civilization.,296.05,Dune Entertainment-Lightstorm Entertainment-20th Century Fox-Ingenious Media,12/15/09,237000000,2920357254,162,Released,Enter the world of Pandora.,7.569,28943,Sam Worthington-Zoe Salda��a-Stephen Lang-Michelle Rodriguez-Sigourney Weaver-Giovanni Ribisi-Joel David Moore-CCH Pounder-Wes Studi-Laz Alonso-Dileep Rao-Matt Gerald-Sean Anthony Moran-Jason Whyte-Scott Lawrence-Kelly Kilgour-James Patrick Pitt-Sean Patrick Murphy-Peter Dillon-Kevin Dorman-Kelson Henderson-David Van Horn-Jacob Tomuri-Michael Blain-Rozgay-Jon Curry-Julene Renee-Luke Hawker-Woody Schultz-Peter Mensah-Sonia Yee-Jahnel Curfman-Ilram Choi-Kyla Warren-Alicia Vela-Bailey-Kyle Dryberg-Larry Rew-Dina Morrone-Rodney Cook,culture clash-future-space war-space colony-society-space travel-futuristic-romance-space-alien-tribe-alien planet-marine-soldier-battle-love affair-nature-anti war-power relations-mind and soul,/jRXYjXNq0Cs2TcJjLkki24MLp7u.jpg,/vL5LR6WdxWPjLPFRLe133jXWsh5.jpg,183392-111332-874764-613200-100287-1010821-1059673-773867-76600-572261-278698-24428-287003-49051-49026-520946-70160-27205-120-1726-811913\r\n299534,Avengers: Endgame,Adventure-Science Fiction-Action,en,After the devastating events of Avengers: Infinity War the universe is in ruins due to the efforts of the Mad Titan Thanos. With the help of remaining allies the Avengers must assemble once more in order to undo Thanos' actions and restore order to the universe once and for all no matter what consequences may be in store.,201.42,Marvel Studios,4/24/19,356000000,2799439100,181,Released,Avenge the fallen.,8.268,22759,Robert Downey Jr.", + "embedding" : [ 0.019002752, -0.0357046, -0.008709596, -0.04027934, -0.023821115, 0.016715385, -0.0074305637, -0.028612407, -0.020843476, -0.038709313, 0.028937241, 0.022657128, 0.021560816, 0.0020217495, -0.0050992076, 0.0065609575, 0.018366622, -0.018786198, 3.1256754E-4, -0.024944497, -0.009345727, -0.003151899, -0.023753442, 0.0070786607, 0.013257262, 0.012621131, 0.017974114, -0.027746186, -0.006175218, -0.021696163, 0.013771582, -0.011578957, -0.002207852, -0.020058462, -0.019787768, 0.010002161, 0.00392507, -0.024687337, 0.012160949, -0.027773254, -0.0020065228, 0.0066929213, -0.004029964, -0.01423853, -0.008323856, 0.022386434, 0.011741374, -0.008581015, -0.005975581, 0.025512956, 0.019327587, 0.032510407, -0.0340263, -0.02624383, -0.011037568, -0.0035799346, -0.015334843, 0.027340144, 0.010245786, 0.002163864, 0.016674781, -0.0066590845, -0.03232092, -0.0055898414, -0.013338471, 0.0035460978, -0.014603968, -0.017405655, 0.0146581065, 0.0059383605, 0.030128296, 0.0178523, 0.00772156, 0.015889766, 0.014874662, -0.027258934, -0.031156935, -0.003755886, -0.022034531, 0.025743045, 0.023157913, -0.024213621, 0.0026561897, 5.6095087E-5, 0.021750303, 0.025797185, -8.9075405E-4, 0.017040217, -0.024646733, -0.0059146746, 0.004919872, 0.013155752, 0.0046322593, 0.01400844, 0.003850629, 0.017148497, -0.004212683, 0.029532768, -0.0151994955, -0.0447458, -0.0012993335, 0.006039871, -0.0010971586, -0.015578467, -0.012898592, 0.0028169146, 0.0054409592, 0.001687611, 0.03684152, 0.013284332, -0.009041196, 0.0045273653, 0.026379177, -0.042553175, -0.013013638, -0.0035528652, 0.009657026, -0.008872012, -0.009758537, -0.011132311, 0.023455678, 0.030480199, 0.012560224, -0.011633095, 0.027773254, 0.01775756, 0.009494609, -0.028368782, 0.0010328686, -0.006354553, 0.040522967, 0.001974378, 0.030723825, 0.006374855, -0.030236574, 0.03973795, -0.012451947, 0.01323696, -0.023631629, -0.017446259, 0.031184005, 0.035975296, -0.01919224, -0.01339261, -0.033051796, 0.0021469456, 0.0240106, 0.004523982, 0.02311731, 0.009812675, 0.030534338, 0.014279135, 0.008472738, 0.022914289, 0.015835628, -0.010428505, 0.0025496038, 0.008817873, 0.008817873, 0.0016960702, 0.0072207754, 0.0139543, -0.02317145, -0.021357795, -0.005390204, 0.027692046, 0.025025705, -0.028287575, -0.010272856, -0.0048657334, -0.0112338215, 0.020789336, -0.019246379, 0.0121406475, -0.0010903912, 0.03443234, 0.018082391, -0.018759128, -0.020762267, -0.016336413, -0.008290019, 5.1516545E-4, 0.02188565, 0.025715977, 0.0034750404, 0.008614852, 0.021127705, -0.022115739, 0.02896431, -0.014861127, 0.0014270676, 0.022981962, -0.016607108, -0.001315406, -0.6418708, -0.019083962, 0.016918406, -0.009738234, 0.012303065, 0.010841315, 0.0067538274, 0.009433703, -0.02601374, 0.008391529, -0.029695185, 0.020748733, 0.024795614, -0.013297867, -0.029532768, -0.0021198762, 0.011836116, -0.004317577, 0.018163601, 0.0034564303, -0.03732877, 0.025445282, 0.009163008, -0.014049044, -0.003055464, 0.0020606618, 7.0687216E-5, -0.02013967, 0.009088567, 0.0060737077, -0.0115924915, 0.011660165, 0.01701315, -0.002769543, 0.031508837, 9.423552E-4, -0.0047912924, 0.054220106, 0.028260505, 0.04369009, -0.0272454, -0.015429586, 0.01472578, 0.0014270676, -0.016106322, 0.0053529837, 0.016823662, 0.004615341, 0.010807478, -0.008337391, -0.01323696, 0.005464645, 0.028585337, 0.004595039, -0.00882464, -0.017337982, 0.02234583, -0.033349562, 0.03432406, -0.005292077, -0.024213621, 0.026866429, 0.012397807, 0.0013416295, 0.0041788463, 0.02388879, 0.003948756, -0.012912127, -0.006662468, -0.04858966, 0.00797872, -7.198782E-4, -0.005410506, -0.0063173324, 0.00785014, -0.0049604764, 0.03443234, 0.0034428956, -0.01626874, 0.028883101, 0.019246379, -0.009041196, -8.814489E-4, 0.004967244, 0.015307773, -9.3727966E-4, -0.030615546, 0.001421992, 0.022291692, 0.008053161, 0.0047371536, 0.009372797, 0.0019811452, -0.004331112, -0.009616422, 0.015145357, -0.009839744, 0.0012587294, 0.0043040426, -0.024863288, -0.026663408, -0.02383465, 0.020667525, -0.010814245, 0.03194195, 0.008668991, -0.02380758, -0.011003731, 0.019923115, -0.0077080256, -0.014617503, 0.0041111726, -0.010861617, -0.01988251, -2.7830777E-4, -0.02455199, 0.027881533, 0.018745594, 0.007010987, 0.004236369, 0.0080057895, 0.0013204815, 0.004266822, -0.0075929803, 0.012066207, 0.016823662, 0.0040231966, -0.006185369, -0.0016300883, 0.010658596, 0.0062733446, 0.015253634, 0.0053732856, -0.010509714, -0.009968325, 0.01618753, 0.005728572, -0.010069835, 0.008702828, -0.010739804, -0.002706945, 4.0752208E-4, -0.019246379, -0.0045442837, -0.035948228, -0.013798651, -0.04282387, 0.009731467, 0.001845798, -0.0037288165, -0.022941358, 0.017229704, -2.91631E-4, 0.020897614, 0.008127602, -0.0046627126, -0.009291588, -0.023509817, -2.0323234E-4, -0.015943905, 0.005630445, -0.0024244075, -5.811472E-4, -0.01698608, 0.026149087, -0.017798163, -0.010069835, 0.009609655, 0.00428374, -0.028585337, 0.012979801, -0.0024582443, -0.010509714, 0.018610246, -0.0115992585, 0.023604559, -0.021520212, -0.002514075, 0.015916836, -0.0056372127, -0.0038100248, 0.011321797, -0.030182436, 0.0043954016, 0.030236574, 0.036273062, 0.01228953, 0.007024522, 3.618424E-4, 7.8797474E-4, -0.01423853, 0.008452435, -0.0050010807, -1.5046807E-4, 0.004033348, 0.018529037, -0.0120053, 0.009541981, -0.007173404, 0.009900651, 0.03248334, 0.016837196, -0.0017544386, -0.007098963, -0.0062462753, -0.014617503, 0.011680467, -0.01498294, -0.013074543, -0.02106003, 0.03581288, -0.009372797, -0.018745594, -0.008912616, 0.0016300883, 0.034053367, -0.0021249517, 0.0045781205, -0.030750893, 0.01570028, -8.103916E-4, -0.012357203, 0.012350436, 0.013291099, -0.032077298, 0.01793351, 0.008912616, 0.006422227, -9.178235E-4, -0.019300517, -0.0023127461, 0.0025411446, -0.0018627164, -0.008141137, 0.015280704, -0.0014338349, 0.03592116, -0.0031349806, 0.02406474, -0.012844454, -0.009860047, 0.014049044, 0.0388988, -0.01423853, -0.0032601766, -0.0124993175, 0.022873685, 0.031319354, -0.028233435, 0.028720684, -0.026487455, 0.018637316, 0.00823588, 7.693645E-4, 0.01352119, -0.019503538, -0.012945964, 0.016119856, 0.035650466, 0.014834058, 0.015267169, -0.021208914, 0.013291099, 0.01775756, 0.014631037, 0.004980779, -0.008987057, -0.0065508066, -0.0046627126, -0.011274425, -0.0028812045, -0.01867792, 0.016850732, -2.7725036E-4, -0.032672826, -0.0019794535, -0.020329157, -0.0012671886, 0.012952731, 0.023333864, -0.0055898414, -0.024281295, 0.014373877, 0.0040062782, -0.004987546, -0.0357046, -0.022873685, 8.3238556E-4, -0.031156935, 0.0055661555, -0.031508837, 0.028720684, -0.009839744, -0.008053161, -0.021560816, -0.008384761, 0.016079253, 0.0024886974, 0.008452435, 0.019868976, -0.0075388416, 0.009027661, 0.004063801, -0.018529037, 0.03833034, -0.016728919, 0.020505108, -0.009122404, -0.0023618094, -0.013791884, 6.335943E-4, 0.0020505108, -0.027448421, -0.0018288796, 3.92507E-4, -0.02478208, -0.028098088, 0.0067538274, 0.0064899004, -0.009629956, -0.0115924915, -0.02383465, -0.017148497, 0.01375128, 0.06826915, 0.021019427, 0.01423853, 0.012614363, -0.009575818, -0.0028964311, -0.011924092, -0.010963127, -0.019598281, 0.0038878496, 0.00749147, 3.8489373E-4, 0.023969997, 0.00774863, 0.023618095, -0.008946453, -0.010239019, -0.010015696, -0.029668115, -0.01764928, -0.016512364, -0.02798981, 0.01859671, 0.02106003, 0.01644469, -0.022738338, 0.02939742, 0.002004831, -0.008635154, 0.017865837, -0.018326016, 0.018122995, 0.0016698466, 0.0060297195, -0.002356734, 0.0114165405, 0.024321899, 0.0053834366, 0.024200087, 0.017283844, -0.0028389085, 0.004161928, 0.0011073096, -0.0019811452, 0.0032567931, -0.01775756, -0.014712245, 0.029262073, 0.038519826, -0.027651442, 0.009054731, 0.0023618094, -0.028747754, -0.007417029, 0.03286231, 0.004067185, -0.0017358284, -0.0036137714, -0.027800323, -0.012404575, 0.011342099, -0.051404882, 0.02770558, -0.015822092, -0.014603968, -0.023550421, -0.013690374, -0.0141167175, -0.005295461, 0.014441551, -0.00411794, -0.021750303, -0.010279623, 0.0012883366, -4.7498423E-4, -0.013555027, 0.013994905, -0.009393099, 0.018244809, -6.9534645E-4, -0.026825823, -0.024281295, 0.011091706, -0.025242262, -0.01790644, -0.0028795127, -0.015930371, 0.01544312, 0.0042160666, -2.6054346E-4, 0.018542573, -0.011112009, -0.011802279, 0.010915755, 0.044393897, 0.018434295, 0.033755604, 0.010245786, 0.012377505, -0.003755886, 0.0042702057, -0.01796058, -0.009941255, -0.0041416255, -0.018407226, 1.1790014E-4, -0.0060703238, -0.006462831, -0.014360342, -0.020681059, -0.024646733, -0.023821115, 0.009853279, -0.017527469, 0.003711898, -0.013805419, 0.0069094766, 0.006638782, -0.014143787, -0.0072410777, -0.007951651, -0.007044824, 0.016810128, 0.029776394, 0.013873093, 0.0058740703, -0.020681059, -0.026839359, -0.0092645185, 0.022981962, 0.00386078, 0.009122404, -0.028801894, 0.0046525616, -0.01041497, -0.020450968, 0.02016674, -0.01764928, -0.0053732856, -0.014779919, -0.034567688, -2.5443696E-6, 0.011409773, 0.004635643, 0.002982715, -0.021872114, -0.0016224751, -0.012458714, -5.7395693E-4, 0.025337003, -0.009095334, 0.0039081518, -0.03142763, -0.0051533463, -0.012742943, -0.033051796, -0.031806603, -0.017310912, 0.04122677, 0.020031393, 0.030805033, -0.012580526, 0.018975684, 0.016336413, 0.0065169698, 0.025743045, -0.0063477857, -0.013000103, -0.015646141, 0.011139078, 0.014333273, 0.01624167, -0.005813164, -0.004436006, -0.011788745, 0.011301495, 0.0030351619, 0.023103775, 0.0041416255, -0.022291692, -0.007992255, 0.0048792684, -0.0171891, -0.011443609, -0.02704238, -0.025918998, 0.03337663, -0.018745594, -0.0034564303, -0.013514422, 0.039927438, -6.5516523E-4, 0.012973033, -0.021939788, 0.04073952, -0.03137349, 0.0036036205, -0.025594164, -0.012898592, -0.007890744, -0.02801688, 0.010563852, 0.004073952, -0.015267169, 0.0014143788, 0.037139285, -0.01251962, -0.019814836, 0.017771093, -0.00982621, -0.0012976417, -0.029722255, -0.0017265233, -0.026081413, -0.020789336, -0.0016292424, 0.006077091, 0.020681059, -0.020288551, -0.038980007, 0.042634383, -0.005860536, 0.03435113, 0.021750303, 0.051242467, 0.02632504, 0.0074508656, -0.03191488, 0.0010032614, -0.02137133, -0.016146926, 0.036679104, 0.010320228, -0.005207485, -0.014834058, 0.0010362524, -0.018488433, -0.024105344, -0.044448037, 0.026704011, 0.012045905, 0.030561408, -0.013771582, -0.013203124, -0.023956463, 0.021953324, 0.0026900265, 0.0048115947, 0.021290122, -0.032212645, -0.003661143, 0.009832977, 0.007254612, 0.0057590255, -0.0026798754, -0.024998635, 0.021249518, -0.010049533, -0.007938116, -0.0049266396, -0.0042702057, 0.025350539, -0.03445941, 0.007755397, 0.01570028, 0.028828964, 0.007640352, 0.0032229563, 0.00545111, 0.035244424, -0.023306796, 0.013859558, 0.0035833183, 0.0050349175, 0.009054731, 0.028720684, -0.02409181, -0.023536885, -0.03575874, -0.0012341976, 0.022657128, -0.010381133, -0.009196845, -0.009941255, -0.0039521395, -0.018163601, -0.009183311, -0.005860536, 0.009366029, -0.02719126, 0.010584154, 0.0031315968, -0.0061616832, 0.011504516, 0.0017865836, 0.009399866, 0.010956359, 0.008269717, -0.007301984, -0.0014583665, -0.017337982, -0.004659329, -0.037464116, -0.025891928, -0.0144686205, -0.020207344, 0.0051702647, -0.01647176, 0.0042735892, 0.004256671, -0.0063410182, -0.017974114, 0.008486272, -0.015416051, -0.0021977008, 0.0055018654, -0.02475501, -0.021817977, -0.007660654, 0.028585337, -0.0012164334, -0.0011309955, 0.018122995, -1.4930493E-4, 0.02942449, -0.025377609, 0.024592593, -0.005339449, -0.021520212, -0.016525898, 0.015835628, 0.020572782, -0.007511772, -0.00887878, -0.036273062, -0.005017999, -0.011761676, 0.038140852, -0.009866814, -0.0048048273, 0.03383681, 0.026812289, 0.034730103, 0.017040217, -0.012093276, -0.03445941, -0.014915266, -0.005244706, -0.009278053, -0.010854849, 0.011484214, 0.013967835, 0.0019456167, -0.021276588, -0.030344851, 0.003405675, -0.014333273, -0.025918998, -0.0058436175, 0.023685768, 0.044448037, 0.026839359, 0.007579446, 0.030263644, 0.008222345, 0.009142706, -0.024890358, -0.0051634973, -0.007843372, 0.012093276, 0.017798163, 0.0135753285, -0.028098088, -0.005271775, 0.0031315968, 0.022251086, 0.002099574, 0.028720684, -0.01277678, -0.008032859, -0.013697141, 0.012228623, -0.00885171, -0.016092787, 0.02601374, -0.03938605, 0.0017172182, 0.0048183617, 0.0018931696, 0.0027780023, 0.00428374, 0.019841906, -0.013027173, -0.00700422, -0.0117752105, -0.032754034, -0.004307426, -0.03833034, 0.016783059, -4.6441023E-4, 0.0017662816, 0.029695185, 0.0077080256, -0.017419191, 0.006036487, 9.5335214E-4, -0.0011572189, -0.013873093, -0.006418843, 0.022927823, 0.011897023, -0.02549942, 0.03540684, -0.02650099, 0.011504516, -0.012012068, 0.018921545, -0.007471168, 0.02896431, 0.006662468, -0.037003938, -0.008019324, -0.01236397, -0.0031112947, -0.008418598, -0.0017628978, -0.02013967, -0.022562386, -0.015889766, 0.0020944986, -0.014184391, -0.012607596, 0.024971567, -0.00749147, -0.0136227, 0.012269228, 0.1774673, -0.012174484, 0.024159484, 0.041849367, 0.002014982, 0.0092577515, 9.432011E-4, 0.015970975, -0.001294258, 8.8652445E-4, -0.02085701, 0.01549726, 0.008581015, -0.003945372, 0.0049909297, -0.01647176, -0.016363481, -8.712979E-4, -0.0150100095, -0.020992357, -0.012566991, -0.0022772173, -0.020017857, -0.020897614, 0.010624759, 0.00212326, -0.0017764326, 0.0040468825, 0.017446259, 0.026149087, -0.015889766, -0.030723825, -0.010645061, 0.0070515913, -0.021005893, -0.0055661555, -2.2755255E-4, 0.008817873, 0.001284107, 0.005200718, 0.0013407837, 0.0010370982, 0.0040705684, -0.021032961, 0.009393099, 0.019720094, -0.015185961, -3.428092E-4, -0.01241811, 0.0057691764, -0.03984623, 0.014712245, 0.029532768, 0.018529037, -0.02701531, 0.0072952164, 0.008039626, -0.0041348585, -0.011220287, 0.011748141, 0.01644469, 0.036137715, -0.024998635, 0.0070786607, 0.008966755, 0.014631037, -0.026284434, -0.02455199, 0.03529856, -0.022819545, -0.003512261, 1.6315687E-4, -0.018569643, 0.006449296, -0.012201554, -0.011484214, 0.0059146746, 0.006652317, 0.018082391, 0.006121079, -0.02114124, -0.013798651, -0.0026595735, -0.010394668, -0.043446466, -0.02452492, 0.015402516, -0.015605537, -0.007674189, -0.0035731671, -0.014969405, -0.013338471, -0.010130742, 0.009135939, -0.012871522, 0.027286004, 0.0051837997, 0.01469871, -0.018244809, -0.019530607, -0.04360888, 0.039413117, 0.02629797, 0.016038649, -0.016282273, -0.012248926, -0.01475285, 0.02403767, 0.022738338, -0.0142656, -0.006290263, -0.025743045, -1.4023772E-5, -0.0068147336, -0.0070786607, 0.023469212, 0.019611815, -0.005813164, 0.03833034, -0.023969997, -0.006963616, -0.022210483, 0.010096905, -0.02091115, 0.0051804157, -0.011971463, -0.03142763, 0.017392121, 4.1957645E-4, -0.030615546, 0.009948023, -0.019408794, -0.0029894821, -0.005305612, 0.00441232, 0.016999613, 0.016539434, -0.0024041054, 0.002333048, 0.0062462753, 0.005545853, -0.014928801, 0.0049164887, 0.03142763, 0.011490981, -0.024254225, 0.010326995, -0.0017375202, -0.008756966, -0.024700873, -0.022048065, -0.014834058, -0.007640352, 0.0060940096, 0.03283524, -0.0021926253, -0.008269717, -0.040468827, -0.009562283, 0.021912718, -0.04073952, 0.020586316, 0.013886627, -0.01498294, -0.034567688, -0.014103183, -0.17346103, 0.018204205, 0.012424877, -0.016065719, 0.025905462, 0.014414482, 9.76192E-4, 0.013054241, 0.016593572, -0.020924684, 0.013609165, 0.010705967, -0.05064694, 0.002930268, -0.0070515913, 0.01618753, -0.004378483, 0.023388004, 0.02696117, 0.00797872, 0.038005505, 0.010002161, -0.024633199, -0.0072343103, 0.014441551, 0.009968325, 0.006567725, -0.003586702, 0.0051195095, -0.010130742, -0.014928801, -0.013602398, 0.018759128, 0.005657515, -0.007417029, 0.010232252, -0.0074982373, -0.010401436, -0.006351169, -0.0066117127, 0.042065922, 0.01693194, 0.0124993175, 0.008858477, 0.037707742, 0.008560713, 0.033566117, -0.019205773, 0.018068857, -0.01865085, 0.0038100248, -0.033349562, 0.009129171, -7.867059E-4, 0.011132311, 0.03630013, -0.0058774543, -0.0039419886, 0.0060703238, -0.023631629, -0.027123587, -1.01404694E-4, 0.010042765, -0.01721617, 0.0035088772, -0.01921931, -0.020383295, 0.027664976, -0.033511978, 0.008290019, -0.0123233665, 0.014157321, 0.01616046, 0.016512364, 0.0031569744, -0.0012172792, -0.03475717, 0.022237552, -0.014928801, 0.047696367, -0.016255204, 0.027407818, -0.01713496, 0.030588478, 0.018745594, -0.0032195726, 7.1480265E-4, -0.008506575, -0.010110439, -0.004655945, 0.00859455, -0.009772071, -0.032564547, 0.010550317, -6.14984E-4, 0.003705131, 0.0015666443, -0.0014211461, -0.0032940134, 0.0033176993, -0.004236369, -0.0057793274, -0.0067775133, 0.0066793864, 0.035785813, 0.028910171, 0.0011157688, 0.011809047, 0.02234583, -0.012370738, -0.0077418624, 0.009900651, 0.009623189, 0.0049638604, 0.0012714182, 0.019801302, -0.020992357, -0.014834058, -0.007809536, 0.013115148, 0.04230955, -0.014482155, -0.016810128, -0.01274971, -0.012614363, -0.01544312, -0.079963155, 0.005823315, 0.021046497, 0.027664976, -0.020735199, 0.035082005, -0.010685665, 0.025810719, -0.014482155, 0.031184005, 0.002004831, -0.033620257, 0.008709596, -0.0018288796, 0.012770012, -0.007660654, -0.012993336, -0.014224995, -0.0047202352, 0.026230296, -0.0049367906, -0.008188508, 0.0041314745, -0.013771582, -0.0252964, 0.009623189, -0.023563955, 0.022954892, 0.014130252, -0.0020183658, 0.014184391, -0.037139285, 0.008120835, -0.017919974, -0.023184983, -0.02942449, -0.007349355, -0.025770115, 0.01239104, -0.033187144, 0.018434295, 0.0094472375, 0.006303798, -0.036733244, -0.004307426, -0.009704397, -0.025458816, 0.04174109, -0.016620642, -0.03589409, -0.01236397, -0.009102102, -0.031102797, -0.02326619, 0.016864266, 0.01570028, 0.02939742, 8.966755E-4, -3.514799E-4, -0.015822092, -0.025052775, -0.01236397, -0.028666547, 0.02696117, 0.018921545, 0.015321308, 0.0058300826, -0.021439003, 0.010604457, -7.618569E-5, -0.037058074, 0.04325698, -0.021587886, -0.023618095, -0.002473471, -7.7909254E-4, -0.026649872, -0.011924092, 0.020532178, -0.030859172, 0.006760595, -0.016620642, -0.005718421, -0.023685768, 0.019259913, 0.019747162, 0.018095927, 0.005569539, -1.3661613E-4, -0.03719342, -0.008161439, 0.008811106, 0.015510794, 3.140479E-4, -0.016972544, 0.008215577, 0.026419781, 0.0052480893, -0.00898029, 0.009494609, -0.01775756, 0.0043581813, -0.07075954, 0.031102797, -0.0015666443, -0.005762409, -0.008256182, 0.0029641045, 0.0039758254, 0.005400355, 0.0065372717, 0.002080964, -0.013338471, 0.012113579, -0.009041196, -0.012397807, -0.012492551, -8.890622E-4, -0.0020437434, 0.002662957, -0.01713496, -0.00967056, -0.02337447, 0.016363481, 0.037870158, 0.0024633198, -0.0070583588, 0.01701315, 0.010617991, 0.0051702647, -0.00823588, -0.009345727, 0.030777963, -0.009095334, -4.935945E-4, -0.0028253738, -0.010266089, -0.01375128, -0.025377609, -0.006300414, 0.02088408, 0.020450968, -0.016688315, -0.036029436, 0.00823588, -0.008411831, -0.011335332, 0.03491959, -0.01775756, 0.00813437, 0.0034750404, 0.0048217457, 0.044420965, 0.013561794, -0.009772071, -0.022778941, 0.018840337, -0.04068538, 0.056791704, -0.0031738929, 0.0050112316, -0.008756966, 0.040631242, 0.012235391, 0.020410364, -0.05300198, 0.0047709905, 0.014766384, 0.0065846434, 3.3308112E-4, 0.0071395673, -0.008147904, -0.0043581813, -0.004019813, 0.015930371, 0.030534338, 0.031021588, -0.0019676106, -0.008655456, 0.003850629, 0.015131822, 0.008689293, 0.024890358, -0.0057962458, -0.03938605, 0.03194195, 0.007735095, 0.017662816, -0.015267169, 0.009386332, -0.008168207, 0.008892314, -0.033295423, 0.010042765, 0.011477446, 0.008229112, 1.9297557E-4, 0.0053022285, -0.013710676, -0.005424041, 0.0059349765, 0.0144686205, 0.0076877233, -0.014495689, 0.0015886383, -0.027299538, -0.044420965, -7.198782E-4, -0.020667525, -0.03177953, 0.027407818, 0.032212645, 0.017392121, 0.0055424697, -0.009020894, 0.002887972, -0.030263644, 0.018556107, -0.009372797, -0.0063951574, -0.014955871, 0.037464116, 0.021479608, 0.019300517, 0.020599851, -0.017595142, 0.049726576, 0.006408692, 0.010178112, -0.030561408, 0.021100635, 0.008729897, -0.002706945, -0.011531585, -0.017351517, 0.010225484, -0.017026683, -0.014143787, 0.0014236838, 0.019923115, -0.011944395, 0.07238371, 0.027137123, -6.5093563E-4, 0.009920953, -0.016404087, 0.012810617, 0.0059011397, 0.0047608395, -0.018068857, -0.0075726784, 0.0031011438, -0.0110578695, 0.0037795717, -0.017798163, -0.007010987, 0.0013509347, 0.009298355, 0.0016520823, -0.0079990225, -0.01867792, 0.0014583665, -0.006374855, 0.019571211, 0.0060567893, -0.0144686205, 0.005498482, 0.028720684, -0.007417029, -0.003945372, -0.03546098, 0.0039081518, -0.026663408, -0.014955871, -0.0066455496, 0.026284434, -0.012228623, 0.009217148, -5.857998E-4, 0.009325425, 0.006459447, 0.0059721973, 0.015294239, -0.02165556, -0.005403739, 0.0052650077, 0.0035257956, -0.007768932, -0.024822684, -0.016485294 ], + "id" : "6609869a-5210-442a-8dc7-6f5254e733d9", + "metadata" : { + "source" : "movies.csv" + } + }, + "05df9b13-4e79-489d-8468-2b80166ece87" : { + "text" : "6,10484,Mandy Moore-Zachary Levi-Donna Murphy-Ron Perlman-Brad Garrett-Richard Kiel-M.C. Gainey-Jeffrey Tambor-Paul F. Tompkins-Delaney Rose Stein-Nathan Greno-Byron Howard-Tim Mertens-Michael Bell-Bob Bergen-Susanne Blakeslee-Roy Conli-David Cowgill-Terri Douglas-Chad Einbinder-Pat Fraley-Eddie Frierson-Jackie Gonneau-Nicholas Guest-Bridget Hoffman-Daniel Kaz-Anne Lockhart-Mona Marshall-Scott Menville-Laraine Newman-Paul Pape-Lynwood Robinson-Fred Tatasciore-Hynden Walch-Kari Wahlgren-June Christopher,hostage-magic-horse-fairy tale-musical-blonde-princess-tower-selfishness-healing power-adventurer-based on fairy tale-duringcreditsstinger-healing gift-animal sidekick-magic land,/ym7Kst6a4uodryxqbGOxmewF235.jpg,/cWczNud8Y8i8ab0Z4bxos4myWYO.jpg,2062-10020-62177-109445-10198-953-812-425-10144-12-10191-9502-10193-10674-585-14160-20352-808-809-8587-46195\r\n10764,Quantum of Solace,Adventure-Action-Thriller-Crime,en,Quantum of Solace continues the adventures of James Bond after Casino Royale. Betrayed by Vesper the woman he loved 007 fights the urge to make his latest mission personal. Pursuing his determination to uncover the truth Bond and M interrogate Mr. White who reveals that the organization that blackmailed Vesper is far more complex and dangerous than anyone had imagined.,33.075,Eon Productions-Metro-Goldwyn-Mayer-Columbia Pictures-B22,10/29/08,200000000,589580482,106,Released,\"For love, for hate, for justice, for revenge.\",6.307,7018,Daniel Craig-Olga Kurylenko-Mathieu Amalric-Judi Dench-Giancarlo Giannini-Jesper Christensen-Gemma Arterton-Jeffrey Wright-Rory Kinnear-David Harbour-Anatole Taubman-Tim Pigott-Smith-Joaqu�_n Cos�_o-Glenn Foster-Paul Ritter-Stana Katic-Lucrezia Lante della Rovere-Neil Jackson-Oona Chaplin-Rachel McDowall-Sarah Hadland-Alexandra Prusa-Brandon Jovanovich-Fernando Guill��n Cuervo-Jes�_s Ochoa-Simon Kassianides-Guillermo del Toro-Alfonso Cuar�_n-Eva Green-Derek Lea-Tatiana Lavrentieva-Laila Alina Reischer,killing-undercover-secret agent-mi6-british secret service,/e3DXXLJHGqMx9yYpXsql1XNljmM.jpg,/3CqMIX3ZlrD0pU3fpBL6DM0Cneb.jpg,36557-37724-36669-206647-710-714-36643-56292-2501-10528-709-954-27578-45592-1571-700-49040-58574-956-534-2503", + "embedding" : [ 0.0042830836, -0.03912129, -0.009907775, -0.048941858, -0.024417264, 0.05575723, 0.0010900565, -0.005041092, -0.030508166, -0.028307928, 0.03724304, 0.035096467, 0.008338094, -0.007439216, 0.010887149, 0.018138539, 0.0147442715, -0.020513186, 1.772652E-5, -0.03676006, -0.0026077505, -0.005567673, -0.025584465, 0.010035228, 0.010001687, 0.015200418, 0.03104481, -0.0025926575, -0.014489366, -0.007056858, 0.003206443, -0.0061076703, -0.012269005, -0.020204617, -0.019963127, 0.005195377, 0.011128638, -0.02919339, 0.02316957, -0.008203933, 0.0032886167, -0.0013994648, -0.014207629, -0.0015830974, -0.012624531, 0.014838184, 0.0036089255, -0.0023930932, -0.009927899, 0.036116086, 0.028254265, 0.024283104, -0.016488362, -0.0259467, -0.0072111427, -0.004202587, -0.019828966, 0.004729168, -0.0013256763, -0.0070635662, 0.014194213, -0.01642128, -0.03018618, -0.017051838, -2.4568196E-4, -0.013053846, -0.009646161, -0.0109609375, -0.0012988442, 6.142049E-4, 0.016474945, 0.013134342, 0.019453315, 0.018031212, 0.01961431, -0.0411337, -0.037833344, 0.006389408, 0.0033288647, -0.0018094938, 0.024189193, -0.0030806672, -0.01053833, -0.0063022035, 0.01297335, 0.011859815, -0.0037330242, 0.018232452, -0.023290314, 0.0147040235, 0.015428492, 0.050605454, 0.0050846944, 0.0061210864, 0.01242329, 0.02771762, -0.029381216, 0.030481333, -0.015482157, -0.03761869, 0.015602901, -0.0025691793, 0.0022455163, -0.01252391, 0.008344802, -0.013979555, 1.1780995E-4, -0.018165372, 0.021438895, 0.0062954957, -0.0052892896, -1.5910632E-4, 0.0035116589, -0.03453299, -0.013979555, -0.026349181, 0.012624531, -0.016864013, -0.012269005, -0.019989958, 0.015106506, 0.029408047, 0.009585789, -0.032332752, 0.038369987, 0.034613486, 0.010316965, -0.01440887, 5.9198454E-4, 0.014194213, 0.027771285, -0.0036659439, 0.011262799, 0.023531804, -0.009190015, 0.051115263, -0.027046816, 0.011323172, -0.014073468, -0.01385881, 0.03356703, 0.03032034, -0.018044628, -0.020338777, -0.022324357, -0.006942821, 0.010927397, -0.0049907817, 0.014891849, 0.009780322, 0.018567855, 0.01741407, 0.018487358, 0.023786709, 0.009585789, -0.009518709, -0.027663957, -0.0046117776, -0.011135346, -0.018795928, -0.0029666307, 0.0066912696, -0.0032383061, -0.010350506, -0.005859473, 0.025061237, 0.026496757, -0.02032536, -0.0026530297, 0.009156475, -0.012470246, 0.017776305, -0.025893034, 0.01385881, -0.0035586152, 0.023115905, 0.014958929, -0.02522223, -0.027476132, -0.013899059, -7.0979446E-4, 9.558957E-4, 0.024524594, 0.035391618, -0.011121931, 0.018286116, 0.017481152, -0.017789721, 0.0016384388, -0.010558455, -0.0064195944, 0.008888152, 0.0034445785, -0.008438714, -0.63581485, -0.013637445, -0.007881947, 1.1319817E-4, 0.010484667, 0.008002692, -0.007868531, -0.00433004, -0.045775663, -0.006845555, -0.019802134, 0.013778314, 0.016864013, -0.019735053, -0.011370128, -0.015187003, -0.0028156997, -0.010236469, 0.0134898685, -0.0027603584, -0.029917859, 0.024564842, 0.021090077, 0.0042495434, 0.024336768, -0.0022606095, -0.012684903, -0.019386236, 0.012074471, 0.0036525277, -0.017132334, 0.021546224, 0.004336748, -0.002696632, 0.036196582, 0.0019704867, -0.018460525, 0.040972706, 0.018500773, 0.029488543, -0.034237836, -0.008821072, 0.010135848, -0.0012284098, -0.022042619, 0.022874417, 0.008968649, 0.013684401, -0.01478452, 0.0059433235, 1.1194042E-4, -0.0017809846, -0.016756684, -0.0043535177, -0.01577731, 0.0024685587, 0.008083188, -0.043924246, 0.024806332, -0.0073721358, -0.01875568, 0.020392442, 0.010585287, 0.0041153827, -0.015589485, 0.0010556778, 0.006869033, -7.5004273E-4, -0.001526079, -0.025571048, 0.0073184716, 0.017266495, -0.0152809145, -0.008525919, -4.7543232E-4, 0.0073184716, 0.031527787, -0.0038302909, -0.012664779, 0.02422944, 0.005886305, -0.0027402344, -0.0051450664, 0.009699826, 0.033486534, 0.0020694302, -0.029381216, 0.015254083, 0.026671167, 0.006721456, 0.017923882, -0.0014707377, 0.01919841, 0.01245683, -0.0079154875, -0.015240666, -0.012778816, 0.00776791, 0.032708403, -0.059943043, -0.009760198, -0.02608086, 0.04373642, -0.004762708, 0.014690608, 0.009552249, -0.01628712, -0.006557109, 0.040194575, -0.016032215, -0.016877428, 0.002347814, -0.011551245, -0.001851419, -0.0037766264, -0.035820935, 0.022807335, 0.015965136, 0.0032886167, -0.012000684, 0.010625536, 6.246862E-4, -7.739401E-4, -0.008888152, 0.012819064, 0.03284256, 0.010109016, -0.00508134, 0.015602901, 0.012557451, 0.009907775, 0.002688247, 0.0201912, -0.024256272, 0.013764898, -0.0068120146, 0.022404853, -0.009512001, 0.015911471, -0.0042629596, -0.017695809, -0.008049648, -0.011108514, -0.009699826, -0.005893013, -0.010182804, -0.037162542, 0.0041086744, -0.015522405, -0.023370812, -0.008639955, 0.014717439, 0.004008054, 0.012926393, 0.008364926, 0.0020828464, -0.027006568, -0.018058043, 0.018782511, -0.00975349, -0.0045547592, 0.019708222, -0.0042897915, -0.026429677, 0.02881774, 0.0011848075, -0.013456328, 0.00398793, 0.0019822258, -0.012725152, 0.0062485393, -0.0059500313, 0.0041388604, 0.014113716, -0.014905265, 0.027610293, -0.002545701, 0.034023177, -0.011826274, 9.6679624E-4, 0.0068153683, 0.0056783557, -0.025638128, -0.0030135869, 0.029676368, 0.023437891, 0.027610293, -0.008378342, -0.0010699324, 0.0049807196, -0.0018732201, -0.0055005928, 0.0073520117, 0.0016543703, 3.3645014E-5, 0.018031212, 0.0014170734, -0.013087386, -0.0014682222, 0.002520546, 0.04336077, 0.015052842, 0.011242675, -0.010867025, 0.0109609375, -0.036867388, 0.011242675, -0.017092086, 0.012812356, -0.009082686, 0.026000362, -0.013322167, -0.010337089, 0.003883955, -9.626037E-4, 0.026376013, -0.015321163, 0.012161677, -0.023531804, 0.009277219, 0.0063659297, -0.0034680567, 0.024927076, 0.018581271, -0.014717439, 3.754406E-4, 0.007969151, -0.02275367, -0.015683398, 9.29902E-4, 0.0033053868, 0.0047694165, -0.002000673, 0.008572875, -0.002206945, -0.010417586, 0.021962123, -0.014771104, 0.045051195, -0.011886647, -0.019909462, 0.02771762, 0.018232452, 0.004232773, -0.0061546266, -0.010001687, 0.008847904, 0.025933282, 3.6391115E-4, 0.034372, -0.014529615, 0.029273886, 0.0038034585, 0.005534133, 0.0054536364, -0.0011848075, -9.4499515E-4, -0.0010171066, 0.02310249, 0.018983753, 0.018715432, -0.007204435, 0.02217678, 0.001687072, 0.013603905, 0.0030840214, -0.011973851, 2.8980829E-5, -0.0066644377, -0.019896047, -0.014717439, -0.008324677, -0.0042394814, 0.019520396, -0.010954229, -0.018487358, -6.2007445E-4, 0.010296841, 9.1229344E-4, 0.026630918, -0.00739226, -0.011551245, 0.026094275, 0.028012775, -0.019574061, -0.016716436, -0.01516017, 0.0036491738, -0.035069633, -0.015696814, -0.00203589, 0.04387058, -0.016890844, 0.0052926433, -0.012108012, -0.014878432, -0.0027603584, -0.018849593, 0.018500773, 0.012805648, -0.011457332, 0.012691611, -0.01310751, -0.009404672, 0.011913479, -0.023504972, -0.0057856846, -0.008203933, -0.0074526323, -0.0018665121, 0.00797586, 0.0062954957, -0.048512544, 0.017333575, -0.011101806, 0.0103437975, -0.016703019, 0.0061613345, 0.010565163, -0.011484165, -0.01981555, -0.01981555, -0.027328555, 0.006882449, 0.06970995, 0.056454863, 0.0021432186, 0.00468892, -0.006245185, 0.0058058086, -0.009974855, -0.024430681, -0.00814356, -0.009451629, 0.02142548, -0.0071172304, 0.018863007, -1.5847744E-4, 0.022378022, -0.016555442, -0.012336086, 0.0038806011, -0.00807648, -0.019627724, -0.014529615, -0.019117914, 0.007244683, 0.04124103, 0.0052825813, -0.012074471, 0.020727843, 0.0148247685, -0.0041958787, 0.010048644, -3.5908975E-4, 0.013899059, 0.019278906, 0.016045632, 0.0074258, -0.011544537, 0.022243861, 0.0030706052, 0.030776488, 0.0062954957, -0.01369111, -0.008619831, 0.0038269367, -0.002032536, 0.0134093715, -0.028254265, -0.018567855, 0.024766084, 0.035713606, -0.023330564, 0.0134093715, 0.013248378, -0.00776791, -0.027932279, 0.013395956, -0.007204435, -0.018876424, -0.018970337, -0.025825953, 0.006198229, -0.004846559, -0.027046816, 0.0147442715, -0.017065253, -0.0075935014, -0.0060976082, -0.018541023, 0.008183809, -0.018863007, 0.0022907956, 0.009760198, -0.014529615, -0.017226247, -0.014194213, 0.019761886, 0.0058997213, 0.019936295, -0.011202427, 0.023048826, 0.008284429, -0.03018618, -0.029998355, 0.008465546, -0.019319154, -0.0019134684, -0.0044273064, -0.01187323, 0.007586793, -0.0054771146, 0.01108839, -0.013221547, 0.008183809, -0.011893354, -0.010196221, 0.0571525, 0.026563838, 0.012544035, 0.011625033, 0.018769095, 0.006339098, 0.016957926, -0.008975358, -0.004169047, -0.019708222, -0.013013598, -0.01697134, 0.0068086605, 6.389408E-4, -0.012208632, -0.016126128, -0.03477448, -0.023343978, -0.013275211, 0.004061718, 0.015146754, -0.018433694, 0.00971995, 0.0077746185, -0.017561648, 0.0049136393, 0.01807146, -0.017950715, 0.012933101, 0.01286602, 2.716756E-4, 0.029488543, -0.010652367, -0.034103677, 0.002864333, 0.034184173, 0.0063424516, 0.016716436, -0.026872408, -0.01762873, -0.020405857, -0.023343978, 0.0135099925, 0.0072983475, -0.002872718, 0.024524594, -0.017856803, 0.018541023, 0.01344962, -0.0013634091, -0.009364423, -0.023867207, 0.0058058086, -0.011987267, 0.0035217209, 0.03268157, -0.012517203, 0.017789721, -0.028227432, -0.006835493, -0.014462534, -0.046553798, -0.022713423, -0.0044541387, 0.029488543, 0.004222711, 0.04623181, -0.0016879105, 0.014247877, 0.024631923, 0.019761886, 0.01964114, -0.015616317, -0.008264305, -0.018084876, 0.011678698, 0.014717439, 0.021532807, 0.0037129, 0.002005704, -0.005195377, 0.015924886, 0.0071708946, 0.020768091, 0.001859804, -0.009733366, -0.013268503, 0.013570365, -0.034452494, -0.007908779, -0.02173405, -0.021197407, 0.025262479, -0.0066577294, -0.0042965, -0.013288627, 0.030374005, 0.0033724671, -1.5334159E-4, -0.012604407, 0.019694805, -0.018151956, -0.012369625, -0.022378022, -0.010618827, -0.011832982, -0.022297524, 0.023021992, 0.008948525, -0.018259285, -0.0049270554, 0.024511177, -0.025705209, -0.01919841, 0.038852967, -0.014663775, -0.015187003, -0.031983934, -0.019574061, -0.017011588, -0.011839691, -0.0056548775, -0.014113716, 0.0029280593, -0.021452311, -0.02186821, 0.036706395, 3.78585E-4, 0.052403208, 0.009948024, 0.038691975, 0.023826959, 0.012597699, -0.01882276, 0.009357716, -0.008016108, 0.002317628, 0.025128318, 0.035230625, -0.013087386, 0.0141003, 0.0024685587, -0.007197727, -0.030991144, -0.03590143, 0.014113716, 0.020955916, 0.027476132, -0.0365454, 3.7711763E-4, -0.03155462, -0.0058024544, -0.0076605817, 0.010149265, 0.009552249, -0.0365454, -0.014355205, 0.0010984415, -0.005577735, 0.010685908, -2.7859327E-4, -0.02371963, 0.016018799, -0.013087386, -0.0024031552, -0.0020761383, -0.019037418, 0.045882992, -0.017306743, 0.007184311, 0.014395454, 0.026550421, 0.0039711595, -0.00465538, -2.5721142E-4, 0.024779499, -0.006540339, 0.026362596, 0.001272012, -0.006697978, 0.010578579, 0.035740435, -0.022431685, -0.01838003, -0.015254083, -0.004370288, 0.03552578, -0.008284429, 0.0013181298, 0.012134844, -0.02206945, -0.009243679, 0.005564319, -0.014797936, 0.0067985984, -0.039818924, 0.009760198, -0.012161677, 0.0030655742, 0.0015386567, -0.0066074193, 0.002705017, -2.5742102E-4, 0.009579081, 0.008847904, -0.006510153, -0.02515515, -0.027985942, -0.04397791, -0.027180977, -0.010659075, -0.009210139, 7.693283E-4, -0.014489366, -0.007875239, -0.009431504, 0.007727662, -0.005259103, 0.006875741, -0.023934286, -0.004222711, 0.02248535, -0.0070099016, 0.0042461893, -0.0013063907, 0.04357543, -0.001434682, -0.004216003, -9.969824E-4, 0.0044407225, 0.021532807, -0.010706032, -0.005249041, 0.014583278, -0.025503967, -0.009075978, 0.02129132, 0.024377016, 0.0121952165, -0.013436204, -0.032252256, -0.01782997, -0.0012904592, 0.0388798, 4.942987E-4, 4.2302578E-4, 0.016649354, 0.022324357, 0.04435356, 0.029139725, -0.012248881, -0.027502963, -0.00410532, -0.010397462, -0.02107666, -0.0018430339, 0.005705188, -5.555095E-4, -0.0062720175, -0.017615313, -0.031983934, -9.0139284E-4, -0.026335765, -0.026000362, -0.019104498, 0.021881627, 0.031715613, 0.013872227, 0.007573377, 0.008324677, 0.011014601, 0.008217349, -0.01741407, -0.01344962, 0.037082046, 0.018715432, 0.036974717, 0.018393446, -0.020459522, -0.0016485008, -0.0068187225, 0.013456328, -3.5846088E-4, 0.029998355, -0.017051838, -0.01403322, -0.009397964, 0.007405676, 0.0017139042, -0.0046419636, 0.023129322, -0.028683579, -0.007868531, 0.0065034446, 0.019989958, 0.0014950543, 0.006510153, 0.018876424, -0.027690789, -0.0097065335, -0.010752988, -0.016179793, 0.0069159893, -0.036062423, 0.028254265, -0.005705188, 2.100455E-4, 0.03294989, 0.019144746, -0.011168886, 0.005866181, -0.014985761, -2.450531E-4, -0.02573204, 0.016796932, 0.011148762, 0.021210821, -0.025812538, 0.009679701, -0.022243861, 0.011886647, -0.0033120946, 0.0020828464, 0.005218855, 0.022123115, 0.010229761, -0.06954896, -0.0018011087, -0.012067764, -0.0014153965, -0.0028442089, 0.0073117637, -0.03482814, -0.004900223, -0.008941817, -0.007566669, -0.02871041, -0.02155964, 0.0044273064, -0.009176599, -0.008519211, 0.015576068, 0.19544545, -0.01906425, -0.0074258, 0.04411207, -0.0033171258, 0.0037967507, 0.009431504, 0.0182727, -0.0054435744, 0.017306743, -0.0029850777, 0.0027419112, 0.0011982237, -0.002158312, 0.019104498, -0.020593682, -0.017360408, -0.024350185, -0.016032215, -0.017507983, -0.020016791, -8.477285E-4, -0.0015244021, -0.018500773, -0.002874395, 0.0035921554, -0.013053846, 0.011443916, 0.018326364, 0.013436204, -0.00931076, -0.012604407, -0.0018430339, 0.010545039, -0.013751482, -0.011242675, -0.0134093715, 0.010424294, 0.013650862, -0.004011408, 0.01204764, 0.008505794, -0.0140868835, 0.003518367, -0.003333896, 0.02782495, -0.027744453, -0.011859815, -0.023679381, 8.921693E-4, -0.043333936, 0.005205439, 0.013624029, 0.017642144, -0.005044446, -0.017816555, 0.0034848268, -0.0020878774, -0.010263301, 0.0019184994, 0.005758852, 0.023800125, -0.030159347, 0.021358399, 0.0010556778, 0.020097287, -0.011289631, -0.0035519071, 0.013087386, -0.034184173, -0.012684903, -0.014314957, -0.0075935014, 0.024068447, -0.009800446, -0.011215842, 0.0066007115, 0.0035854473, 0.009297343, 0.023182986, -0.02416236, -0.017333575, 0.013724649, -0.01108839, -0.022646343, -0.015415075, 0.018125124, -0.01491868, 0.004423952, -0.002196883, -0.009042438, -0.03104481, -0.014623527, 0.0034244545, -0.02590645, 0.0013935952, 0.012564159, 0.014435702, -0.016595691, -0.014449118, -0.030588662, 0.02857625, 0.018326364, -0.008539335, -0.018151956, -0.023947703, -0.009867527, 0.0141003, 0.034747645, -0.020459522, -0.0259467, -0.027878614, 0.010591995, -0.0059533855, 3.169549E-4, 0.024819748, 0.011370128, -0.01683718, 0.041080035, -0.022512183, 4.3979587E-4, -0.022606095, 0.011014601, 0.0046520256, 0.003343958, -0.03107164, -0.03018618, 0.008002692, -0.0054335124, -0.045695167, 0.0115579525, -0.0064598424, 0.017749473, -0.014650359, 0.0035586152, 0.0061546266, 0.028227432, -6.188167E-4, 0.0043032076, -0.0037464402, 0.0011219197, -0.008022816, 0.015334579, 0.0059299073, 0.0066812076, -0.029461712, 0.006198229, -0.0022824106, -0.0011319817, -0.040784884, -0.024752667, -8.589435E-5, 0.014314957, 0.002708371, 0.04472921, -0.0066812076, -0.021022998, -0.05454978, -0.012269005, 0.043682754, -0.044809707, 0.02029853, 0.014006387, 0.0039510354, -0.018286116, 0.011631741, -0.17086719, 0.021438895, 0.006902573, -0.031017976, 0.014556447, 0.0097065335, 0.035874598, 0.0017440903, -0.005037738, -0.018997168, 0.025383223, 0.0058225784, -0.030105684, -0.001516017, 0.01245683, 0.021385232, -0.011490872, 0.029488543, 0.029542208, 7.391421E-4, 0.03531112, -0.0068287845, -0.010142556, -0.0028173767, 0.011269507, -0.00135167, 0.01040417, -0.0018530961, 0.006047298, -0.011229259, -0.03625025, -0.0011286277, 0.01622004, 0.01385881, -0.007868531, 0.010337089, -0.008338094, -0.012691611, -0.0038705391, -0.012228757, 0.020204617, 0.005671648, 0.0182727, 0.022793919, 0.015227251, 0.008975358, 0.03987259, -0.028012775, 0.0033137717, -0.010296841, -0.001016268, -0.045426846, 0.03305722, -0.0046117776, 0.0036458196, 0.023276899, 0.013120926, -0.002195206, -0.0036659439, -0.0013701172, -0.029971521, -0.01553582, -0.004876745, -0.0059835715, -0.009679701, -0.02241827, -0.018916672, -0.0023830312, -0.040060416, 0.010672491, -0.012879437, -0.0028156997, 0.01782997, -0.005544195, 0.014006387, -0.0069696535, -0.029649537, 0.0047660624, 0.006526923, 0.011048142, -0.014261293, 0.038208995, 0.0038068127, 0.013047137, 0.009216847, -0.018500773, 0.004645318, -0.008975358, 0.0029934628, 0.0052523953, -0.0028894881, -0.022082867, -0.021854794, -0.010752988, -0.0097065335, -4.297338E-4, -0.0073184716, -0.0014598372, 0.0024735897, -0.008988773, 0.0051383586, -0.00954554, -0.0141003, 0.023531804, 0.02590645, 0.0017725995, 0.003873893, 0.017025005, 0.015522405, 0.0015319486, 9.873396E-5, 0.0037799806, 0.025114901, 0.013979555, -0.022606095, 0.020674178, -0.009646161, -0.033513367, 3.5028547E-4, 0.03179611, 0.05178607, -0.012926393, 1.5711488E-4, -0.019225242, -0.016877428, 0.0038537688, -0.08859979, -0.0039409734, 0.0042730216, 0.04011408, -0.029273886, 0.04065072, -8.498248E-4, 0.029300718, -0.009257095, 0.019922879, 0.0063022035, -0.020835172, 0.015307747, -0.01235621, 0.009988272, -0.0047761244, -0.031715613, -0.013845394, -0.007251391, 0.0259467, -0.009297343, -0.009793738, -0.005524071, -0.015589485, -0.0012544035, 0.020365609, -0.023317147, 0.03217176, 0.009552249, -0.0037565024, 0.016568858, -0.02440385, 0.010665784, -0.040945876, -0.044809707, -0.019909462, -0.0015353026, -0.027985942, 0.0017692455, -0.03490864, 0.0046922737, 0.004326686, 0.0066946237, -0.019708222, -0.008163685, 6.9344364E-4, -0.043011952, 0.027985942, -0.016568858, -0.018192204, -0.016515194, -0.009156475, -0.03702838, -0.00407178, 0.011517704, 0.027113898, 0.02720781, 0.007251391, -0.015750477, -0.013342291, -7.731016E-4, -1.4579506E-4, -0.021090077, 0.009397964, 0.004390412, 0.022498766, -0.00643301, -0.0148516, 0.012671487, -0.012805648, -0.021358399, 0.036706395, -0.036438074, -0.017360408, -0.029354382, 0.008894861, -0.025745457, -0.021760881, 0.03193027, -0.03378169, 0.014878432, -0.023370812, 0.013382539, 0.002206945, 0.024309937, 0.022646343, 0.019520396, 0.015898054, -0.0013860487, -0.047144104, -0.01173907, 0.030722823, -0.013805146, -0.0017910467, -0.0067549963, 0.0038302909, 0.004410536, -0.0035653233, 6.921859E-4, 0.006188167, -0.014757688, 0.008666787, -0.07657898, 0.026872408, -0.023437891, 0.001275366, -0.016823765, -0.004340102, -0.0027653894, 0.015495572, -0.0030974373, 0.025007572, -0.013342291, 0.011423792, 0.0014833154, -0.0042361272, -0.008633248, 0.021277903, 0.013899059, -0.005430158, 0.012597699, 0.011215842, -0.021210821, 0.025114901, 0.023907455, 0.0070836903, 0.0056783557, 0.024028199, -0.0020945854, -0.004444076, -0.016796932, -0.0070635662, 0.021264486, -0.013161174, -0.016260289, 0.010752988, -0.015012593, -0.03337921, 0.009169891, -7.458502E-4, 0.0041422145, -0.005379848, -0.010410878, -0.014261293, -0.0052658115, 0.015589485, -0.015562653, -0.0071507706, -0.029112894, 0.00436358, 0.0020392442, 0.0071239383, 0.020996165, 0.007962443, -0.009626037, -0.008941817, 0.018326364, -0.0064900285, 0.04456822, 0.00405501, 0.003196381, -0.020781508, 0.0057756226, 0.0016501779, 0.026201604, -0.036330745, 0.0046084234, 0.01577731, 0.010270009, 0.0011068266, 0.009512001, -0.011584785, -0.009505292, -0.00804294, 0.0035753853, 0.03576727, 0.0027184333, 0.008646663, -0.0020979394, 0.010209637, -0.008901569, 0.014395454, 0.02884457, -0.0069159893, -0.015924886, 0.019024001, -0.018098291, 0.005685064, -0.0011973851, 5.8988825E-4, 0.013302043, 6.6493446E-4, -0.004665442, 0.012128136, 0.02758346, 0.0024065094, 0.01478452, 0.010249885, -0.02672483, -0.015629733, 0.0019151454, 0.03206443, -0.007881947, -0.0051450664, -0.004041594, -0.010088892, -0.014972345, 0.0037665644, -0.02330373, -0.017427487, 0.005584443, 0.016059047, 0.02590645, 0.016568858, -0.015267499, 0.0010506468, -0.041885, 0.013704525, -0.0091095185, -0.022847584, -0.014516198, 0.02652359, 0.009491877, 0.009190015, 0.02932755, -0.017306743, 0.063055575, 0.012946517, 0.014677191, -0.02162672, 0.0066007115, -0.0027670665, 0.0072849314, -0.0011864846, -0.013442912, 0.010169389, -0.013496576, 0.01639445, 0.0015336256, 0.034854975, -0.008499087, 0.07191019, 0.019278906, -0.005728666, 0.025463719, -5.0268375E-4, 0.017642144, 0.012544035, 0.018138539, -0.014771104, -0.014878432, 0.006181459, -0.010947521, 0.010659075, -0.02881774, 0.0026530297, -0.016676188, 0.016689604, 0.022257276, -0.00573202, -0.016139545, 0.003204766, 0.0014112039, 0.008841197, -0.004866683, 0.0013994648, -0.012544035, 0.025611296, -0.010102308, -0.0038168747, -0.021157159, 0.008747284, -0.02542347, 0.01177261, -0.011007894, 0.03292306, -0.0045882994, -0.010752988, -0.009927899, 0.012933101, 0.002206945, -0.032359585, -0.009344299, -0.024994157, -0.014905265, 0.022015788, -0.016957926, 5.508978E-4, -0.03676006, -0.023947703 ], + "id" : "05df9b13-4e79-489d-8468-2b80166ece87", + "metadata" : { + "source" : "movies.csv" + } + }, + "0173db91-6edd-4c8b-b295-5c7859b63fc3" : { + "text" : "Dan White-Ernest Whitman-Guy Wilkerson-Zack Williams-John Wray-Arthur Tovey,civil war-loss of loved one-based on novel or book-atlanta-slavery-plantation-typhus-widow-marriage crisis-romance-casualty of war-second marriage-american civil war-technicolor-reconstruction era-businesswoman-1860s-1870s-antebellum south,/lNz2Ow0wGCAvzckW7EOjE03KcYv.jpg,/ft8WRF2xqEwwGWa59naDUybKTAx.jpg,886-882-289-947-282925-1585-14292-630-872-15121-3078-15-826-907-595-164-665-14168-885-11016-239\r\n524434,Eternals,Science Fiction-Action-Adventure,en,The Eternals are a team of ancient aliens who have been living on Earth in secret for thousands of years. When an unexpected tragedy forces them out of the shadows they are forced to reunite against mankind��s most ancient enemy the Deviants.,113.697,Marvel Studios,11/3/21,200000000,402064899,156,Released,In the beginning...,6.914,7615,Gemma Chan-Richard Madden-Angelina Jolie-Kumail Nanjiani-Barry Keoghan-Lauren Ridloff-Lia McHugh-Brian Tyree Henry-Ma Dong-seok-Salma Hayek Pinault-Kit Harington-Harish Patel-David Kaye-Bill Skarsg��rd-Haaz Sleiman-Esai Daniel Cross-Alan Scott-Hannah Dodd-Adri�� Escudero-Sebasti��n Viveros-Nikkita Chadha-Grahame Fox-Zain Al Rafeea-Alberto Rodr�_guez-Lucia Efstathiou-Derek Horsham-Jeff Mirza-Ascension Martinez Rubio-Ozer Ercan-Ariadna Vadillo Soto-Orson Rosenberg-Harry Styles-Patton Oswalt-Brenda Lorena Garcia-Sebastian Senior-Chloe Stannage-Mahershala Ali,superhero-supernatural-based on comic-alien-super power-aftercreditsstinger-marvel cinematic universe (mcu)-sign languages-ancient-god-like,/lFByFSLV5WDJEv3KabbdAF959F2.jpg,/c6H7Z4u73ir3cIoCteuhJh7UCAR.jpg,566525-634649-453395-580489-497698-512195-425909-624860-438631-414906-335787-436969-550988-526896-616037-568124-696806-299536-429617-370172-476669\r\n438631,Dune,Science Fiction-Adventure,en,Paul Atreides a brilliant and gifted young man born into a great destiny beyond his understanding must travel to the most dangerous planet in the universe to ensure the future of his family and his people. As malevolent forces explode into conflict over the planet's exclusive supply of the most precious resource in existence-a commodity capable of unlocking humanity's greatest potential-only those who can conquer their fear will survive.,145.583,Legendary Pictures,9/15/21,165000000,402000000,155,Released,It begins.,7.", + "embedding" : [ 0.005407294, -0.038044177, -0.020994646, -0.035092235, -0.016663294, 0.030374646, -0.012842323, -0.013249249, -0.020084234, -0.02342241, 0.02670541, 0.033381764, 0.008986867, 0.01842894, 0.013125103, 0.026650235, 0.02476044, -0.019477293, -0.009986941, -0.02459491, -0.009807617, -0.019753177, -0.031478174, 0.001988077, -0.004896912, 0.019960087, 0.02653988, -0.022318881, 0.005790081, -0.006924647, 0.0065246173, -0.022139559, 3.623111E-4, -0.033409353, -0.016194293, 0.0034899116, 0.012387117, -0.024056941, 0.02609847, -0.020815322, 0.006507375, 0.0073591615, -0.013249249, -0.0011811213, -0.018566882, 0.0087868525, 0.0020604962, -0.0075729704, 0.008911, 0.030016, 0.023615528, 0.041354764, -6.491856E-4, -0.040085703, -0.0044141174, -0.018939324, -0.0018225478, 0.017670264, 0.0012526782, 0.007076382, 0.014939029, -0.0078005735, -0.030402234, -0.012249176, -0.015656322, -0.017973734, -0.013180279, -0.011138749, -0.0011975018, 0.00879375, 0.031202294, 0.008497176, 0.011559471, 0.0051038233, 0.025450146, -0.039478764, -0.039147705, -0.018166853, -0.016621912, 0.008504073, 0.012166412, -0.0049038087, -0.009759338, 0.0011862941, 0.01983594, 0.0118008675, -0.014470029, 0.018553087, -0.02764341, -0.0019725587, -6.1858E-4, 0.013076823, 0.0043485956, 0.0058211177, 0.00968347, 0.022029204, -0.0066556614, 0.020263558, -0.01538044, -0.055424765, 0.005500404, -0.008069559, -0.008386823, -0.008552353, -0.016842617, 0.002443283, -0.0040968526, -0.017808205, 0.019656617, 0.0013440643, 0.008076455, -0.0055866176, 0.025284616, -0.043975644, -0.0017742683, -0.024263851, 0.012387117, -0.039920174, -0.013152691, -0.008241985, 0.020691175, 0.033519704, 0.013042338, -0.021104999, 0.027257176, 0.036112998, 0.0034830146, -0.005317632, -0.0048313895, 0.00386925, 0.03702341, -0.0028622793, 0.019256588, -0.0042037573, -0.027960675, 0.04187894, -0.034430116, 0.009083427, -0.0076005585, -0.019077264, 0.023932794, 0.03202994, -0.00926275, -0.038044177, -0.029960822, 0.016125323, 0.0026364007, 0.0030002205, 0.023974176, 0.005231419, 0.013594102, 0.025436353, 0.027933087, 0.0065108235, 0.022153351, -0.013959646, 0.002488114, -0.017159881, -0.001719954, -0.0058280146, -4.853805E-4, -0.0111249555, -0.0040037427, -0.025795, 0.0060038897, 0.02499494, 0.018456528, -0.018966911, -0.008559249, 0.010780103, -0.030209117, 0.023615528, -0.031809233, 0.019560058, -0.011566367, 0.008662705, 0.0101386765, -0.006176316, -0.04609994, 0.0036450955, -0.0109525295, 0.019256588, 0.027726175, 0.023325853, -0.013166484, 0.005372809, 0.02656747, -0.01765647, 0.009593808, -0.01695297, -0.013069926, 0.016401205, 0.0017759926, -0.012697485, -0.6312188, -0.018442735, -0.0054555736, -0.005555581, 0.011538779, -0.004027882, 0.0039037352, 0.0012259522, -0.029740117, -0.0100352205, -0.031423, 0.005162448, -5.2509247E-5, -0.012056058, -0.017173676, -0.008228191, 0.001752715, -0.011145647, 0.02596053, -0.011097367, -0.026843352, 0.018897941, 0.007945412, 0.0023225844, -0.002027735, 0.01137325, -0.015601147, 0.0060694115, -0.015297676, -0.012952676, -0.026733, 0.027684793, 0.013607897, 0.008538558, 0.036168177, 0.0047451765, -0.017311618, 0.050872706, 0.028360706, 0.028277941, -0.019008294, -0.0031829926, 0.0025088051, 0.008848926, 0.0031381617, 0.026236411, -0.016277058, 6.849641E-4, -0.0037416543, -0.009414485, -0.004945191, 0.0050589927, -0.006065963, 0.001075079, -0.0041003013, -0.009311029, 0.010262823, -0.029657353, 0.0204015, -0.004403772, -0.013580308, 0.029740117, 0.006614279, 0.0038278676, 0.009297235, 0.036168177, -0.0025846728, 0.008814441, 0.012780249, -0.017711647, 0.01015247, 0.0063418453, -0.0065901396, 0.0064659924, 0.007028103, -9.974871E-4, 0.043396294, 0.0020829118, 0.0075729704, 0.014263117, 0.006138382, -0.007159147, 0.0020104926, 0.014497617, 0.03230582, 0.0024794925, -0.025726028, -0.006403919, 0.0023484484, 0.0028398638, 0.007186735, 0.0076212496, 0.0048175952, 0.0062245955, 0.006083206, 0.0052865953, -0.014635558, 0.006083206, 0.023256881, -0.06047341, -0.008221294, -0.024981147, 0.022567175, -0.015021794, 0.019918704, 0.0025053564, -0.004945191, -0.017780617, 0.050348528, -0.020622205, -0.007262603, 0.015256294, -0.017353, -0.007421235, 0.0010612849, -0.023091352, 0.0072005293, 0.01882897, 0.013725147, -0.026360558, -0.005583169, 0.018235823, -0.0031623014, -0.006317706, 0.03528535, 0.026236411, -0.016290853, -0.00384511, 0.0045761983, 0.010352485, -0.0037692424, -0.010455941, 0.037409645, -0.008214396, -0.0026691617, 0.0051107206, 0.012766455, -0.01882897, 0.023794852, -0.0018639301, -0.023201706, 0.007648838, -2.4053492E-4, -0.0054555736, -0.008062662, -0.014332088, -0.023946587, -0.016456382, -0.014042411, -0.006210801, -0.011359455, 0.017077116, -0.006131485, 0.008379926, -0.0019053124, 0.0041934117, -0.013994132, -0.014125176, 0.012042264, -0.025008734, 0.009586912, 0.01624947, 0.009676573, -0.024263851, 0.014939029, -0.008883411, -0.021187764, 0.010483529, -9.871415E-4, -0.019104851, 0.026001912, -0.0071453527, -0.013718249, 0.022705117, -0.021091206, 0.025146676, -0.017090911, 0.025257029, -0.0041140956, 0.01343547, -0.008338544, -0.0032174778, -0.011635338, -0.00996625, 0.0246225, 0.03109194, 0.0124285, -0.008304059, 0.002150158, 0.016980559, -0.018070294, -0.016208088, -0.016759852, -0.018884147, 0.011449117, 0.03128506, -6.845331E-4, 0.004000294, -0.005583169, 0.0021742978, 0.026733, 0.024401793, 0.020346323, -0.0138355, 0.0020760146, -0.025574293, -4.9012224E-4, -0.027064057, 0.008131632, -0.007310882, 0.017146088, -0.0051038233, -0.02663644, -0.012780249, 0.0016311543, 0.022774087, -0.008055764, 0.0047210366, -0.024208676, 0.013049235, 0.004793456, -0.026346764, 0.008069559, 0.00644875, -0.054017764, 0.0036209559, 0.019780764, -0.021987822, -0.007814367, -0.02060841, -0.0013130276, 0.005459022, -0.005238316, 0.006117691, -0.019408323, 0.0025829484, 0.01578047, -0.01538044, 0.047562115, -0.0093593085, 0.0049348455, 0.020139411, 0.01507697, 0.0024139704, -0.008221294, -0.0068108453, 0.019725587, 0.016263263, -0.010228338, 0.032526527, -0.018801382, 0.047451764, -0.0014828676, -0.006528066, 0.018801382, -0.028126204, 0.005427985, 0.0012604374, 0.038154528, 0.017628882, 0.0175875, -0.02750547, 0.023960382, -0.008097147, 0.025808793, -0.004896912, -0.02349138, 0.0013587206, -0.005928022, -0.01772544, -0.014497617, -0.016801234, 0.009338617, 0.0063625365, -0.012525058, -0.002326033, 0.0022898235, -0.0025863969, 0.003972706, 0.021587793, -0.008662705, -0.024912175, 0.0017673713, 0.02968494, -0.018994499, -0.0185255, -0.011587058, 0.013883779, -0.016277058, 0.0071315584, -0.001199226, 0.030567763, -0.01953247, 0.010973221, -0.014125176, 0.0010440423, 0.021532618, -0.019877322, 0.032526527, 0.013607897, 0.008779956, 0.010455941, 8.724779E-4, -0.0051900367, 0.031836823, 0.0016087389, -0.021215353, 0.0029209044, -0.0018966912, -0.016842617, -0.0010526635, 0.007938514, -0.03125747, 0.024346616, -7.8324723E-4, -0.016139118, -0.0040485733, -0.011014602, 0.008931691, -0.025257029, -0.014911441, -0.015297676, -0.033768, -0.018732412, 0.08265435, 0.04905188, 0.0078074704, 0.0049038087, -0.009242059, 0.0027019228, -0.022194734, -0.014221734, -0.010290411, -0.009186882, 0.019449705, 7.7117735E-4, 0.03283, -0.0077247056, 0.013869985, -0.007924721, 0.0016285679, -0.013125103, -0.0070143086, -0.014870059, -0.013683764, -0.02469147, 0.027381323, 0.0144148525, 8.4187224E-4, -0.018070294, 0.007531588, 0.0030071177, 7.53827E-5, 0.024677675, -0.015421823, 0.007766088, 2.235078E-4, 0.009883485, 0.007297088, 0.00644875, 0.010649058, 0.02874694, 0.032912765, -0.0027346837, 0.0017725441, -0.00862822, -0.0033071395, -0.030236704, 0.01043525, -0.03887182, -0.00785575, 0.023132734, 0.026126059, -0.033547293, 0.015683912, 0.0072557055, -0.028277941, -0.038071763, 0.018387558, 0.0054314337, 0.019849734, -0.0013768253, -0.012594029, 0.016070146, -5.7159376E-4, -0.033740412, 0.013442367, -0.010545603, -0.010773205, -0.005921125, -0.011111162, -0.021339498, -0.0110904705, 0.004734831, 0.008600632, -0.022249911, 0.013821705, 0.0088213375, 0.014263117, -0.015973588, 0.031974763, -0.017090911, 0.0067142867, 0.008807544, -0.026346764, -0.0076143527, 0.012235382, -0.030402234, 6.698768E-4, 0.007159147, -0.007028103, 0.023174116, -2.566999E-4, 0.014401059, -0.013049235, -0.016125323, -0.024815617, -0.012987161, 0.044168763, 0.0052865953, 0.008448897, 0.0152287055, 0.011656029, 0.003920978, 0.022829264, -0.02757444, -0.016263263, -0.019146234, -0.008076455, -0.009828309, -0.0062039043, 0.014649352, -0.03531294, -0.0040761614, -0.040803, -0.007904029, 0.011228411, 2.5088052E-4, -0.004879669, -0.005193485, 0.014966617, 0.011007706, -0.012835426, -0.012414706, 0.009386897, -0.01622188, 0.013621691, 0.029629763, -0.0026036396, 0.031478174, -0.014897646, -0.026677823, -5.4098804E-5, 0.03111953, 0.0063556395, 0.00769022, -0.01960144, -0.00811094, -0.016428793, -0.01876, 0.0030053933, -0.007531588, -0.021449853, 0.013704455, -0.0018484117, -3.7976928E-4, 9.819687E-4, -0.0076971175, -0.005448676, -0.03139541, 0.009835206, 0.0032054079, 0.0017130569, 0.017201263, -0.012656103, 0.0050072647, -0.015366646, -0.004734831, -0.015904617, -0.028388293, -0.028333116, -0.015945999, 0.04077541, 0.01578047, 0.034733586, -0.012469882, 0.04518953, 0.013587206, 0.006610831, 0.026374351, -0.008552353, -0.008538558, -0.031312644, -0.0030243602, 0.029050412, 0.035230175, 0.016828824, -0.010400765, 0.02271891, 0.03936841, -0.0033985255, 3.7826056E-4, 0.0076971175, -0.028664175, -0.024332823, 0.015849441, -0.018622058, -0.0045382646, -0.015463205, -0.01849791, 0.040692646, 0.008400617, -0.00933172, -0.007552279, 0.030981587, 0.007655735, 0.018291, -0.015739087, 0.018580675, -0.035975058, 0.006769463, -0.020484265, -0.017408175, 0.009345515, -0.0059349188, 0.0024950108, 0.008076455, 5.948713E-5, -0.024677675, 0.02138088, -0.010718029, -0.02647091, 0.02546394, -0.021449853, 0.0017501286, -0.026760587, -0.0021018786, -0.024043147, -0.014773499, -0.010249029, -0.015270088, 0.011421529, -0.0129250875, -0.04030641, 0.019353146, -0.002208783, 0.022801675, 0.012387117, 0.05076235, 0.033188645, 0.011297382, -0.016746059, 0.0034105955, -0.021836087, -0.0110214995, 0.030071175, 0.0051521026, -0.021587793, -0.0068832645, 0.010393867, -0.018884147, -0.044389468, -0.044251528, 0.011359455, 0.013166484, 0.029105587, -0.016511558, -0.0072557055, -0.029078, 0.016759852, 0.0017613363, -0.0010017977, 0.017435765, -0.02539497, -0.020249764, -0.011476706, 8.1299077E-4, 0.01765647, -8.3281985E-4, -0.026953705, 0.016194293, -0.012656103, -0.0053072865, -0.0063832277, -0.0030329814, 0.032388587, -0.033078294, 0.018373763, 0.0087868525, 0.02140847, 0.0035657792, -0.0030071177, -7.629871E-4, 0.035119824, -0.015863234, 0.014235529, 0.02037391, -0.0015018345, 0.0134975435, 0.016663294, -0.031836823, -0.021629175, -0.035230175, -0.013476852, 0.021367088, 8.3669944E-4, 8.055549E-5, -0.0029760809, -0.0056521394, 0.0034192167, 0.006741875, 0.0024260404, 0.013518235, -0.02689853, 0.0038933896, 0.009000662, -0.0024570771, 0.017863382, -0.004117544, 0.010538706, -0.0026001912, 0.01772544, -0.00811094, -0.0018328934, -0.026388146, -0.015201117, -0.030733293, -0.015394235, -0.015877029, -0.033768, 0.012228485, -0.010662853, -0.010642162, -0.00832475, -0.01221469, -0.025657058, -0.01601497, -0.012704382, -0.002058772, 0.024387999, -0.007655735, -0.003648544, -0.019546265, 0.021215353, 0.007862647, -0.015601147, 0.018994499, 0.006338397, 0.027684793, -0.008814441, 0.01191122, -0.002970908, -0.0021863675, -0.0045968895, 0.01249747, 0.018842764, 0.015752882, -0.007448823, -0.030650528, -0.0068315365, -0.012856117, 0.00956622, -0.0010078327, -0.007931617, 0.028857293, 2.2824953E-4, 0.025174264, 0.03128506, -0.013207867, -0.028802117, -0.0040934044, -0.019008294, -0.013794118, -0.005414191, 0.015752882, 0.020567028, 0.002169125, 0.0043416983, -0.036030233, 0.010518014, -0.030595353, -0.025257029, 0.0039968453, 0.018801382, 0.04720347, 0.0053314264, -0.0030191874, 0.023670705, -0.008710985, -0.0136354845, -8.1687036E-4, -0.01742197, 0.00811094, 0.011214618, 0.020636, 0.020484265, -0.03219547, 0.0038658013, 5.819393E-4, 0.009842102, -0.0013311323, 0.01648397, -0.0039658085, -0.0055348896, -0.013697558, 0.018139264, -0.014511411, -0.024263851, 0.01929797, -0.03076088, -0.0027674448, 0.017366793, 0.00989728, -0.010607677, 0.0072074262, 0.025422558, -0.015187323, -0.005179691, 0.007786779, -0.030733293, -0.008179911, -0.02985047, 0.018249618, 0.0032088566, -0.013732044, 0.038485587, 0.022705117, -0.0109525295, -0.0028174485, -0.013980337, 0.019573852, -0.012759559, -7.8669575E-4, 0.013194073, 0.036030233, -0.036112998, 0.022636147, -0.029381469, 0.00621425, -0.0093248235, 0.025132881, -0.019615235, 0.022153351, 0.020484265, -0.04902429, 0.0050210585, -0.009593808, 0.0061418307, -0.029243529, -0.012994058, -0.011352559, -0.0037347572, -0.004020985, 0.004610684, -0.0118698375, -0.028112411, 0.0059107793, -0.0017121948, -0.012697485, 0.023905205, 0.180096, 0.0034054227, 0.016001176, 0.053493585, -0.013387191, 0.016828824, 0.033961117, 0.012269868, -0.0063832277, 0.009179985, -0.0018811728, 0.0050900294, -0.0021105, 0.0022329227, 0.005034853, -0.003752, -0.019339353, -0.023560353, -0.010442147, -0.002053599, -0.008317852, 0.0185255, -0.004658963, -0.01913244, -6.009062E-4, -0.007048794, 0.0022001618, -0.009876588, 0.015683912, 0.008897206, -0.022167146, -0.016856411, 0.0012095716, 0.011449117, -0.024484558, -0.010945632, 0.001088011, 0.011862941, 0.010821485, -0.004110647, -0.003498533, -0.03139541, -0.014552793, -0.012028471, 0.00689361, 0.0204015, -0.015559765, -0.009276544, -0.006521169, 0.010787, -0.03363006, 0.006872919, 0.022856852, 0.031312644, -0.0011423253, -0.0010250753, 0.014676941, 0.00862822, 0.0031898897, 0.0050934777, 0.0045693014, 0.02030494, -0.01979456, 0.022774087, 0.010028323, 0.024305234, -0.050541647, -0.0035864704, 0.021353293, -0.02670541, -0.02288444, -0.023781057, -0.010683544, 0.019642822, 0.0010724926, -0.001876, 0.014166558, 0.013973441, -0.013780323, 0.007821265, -0.024346616, -0.010897352, 0.006738426, -0.003355419, -0.0071384558, -0.016056353, 0.019035881, -0.013925161, -0.027491676, -0.013869985, -0.020263558, -0.009862794, -0.0028295184, -0.001889794, 0.008579941, -0.008538558, 0.04309282, 0.0063590882, -0.010814588, -0.0011811213, -0.016801234, 0.027491676, 0.0218085, 0.018994499, -0.02921594, -0.014456235, -0.009000662, -0.004007191, 0.01775303, -0.015559765, -0.013311323, -0.010724926, 0.007297088, -0.0015656323, -0.010607677, 0.021656765, 0.0051486543, -0.018277206, 0.035423294, -0.015863234, -0.00457275, -0.040996116, 0.0043796324, 0.007897132, -0.011704308, -0.02874694, -0.02429144, 0.011690514, -0.003831316, -0.030567763, 0.008669603, -0.03244376, 0.001732886, -0.008297161, -0.0030398786, 0.013959646, 0.015656322, -0.018511705, 7.66759E-5, -0.0019553162, -0.0082075, -0.018318588, 0.007324676, -0.0060038897, 0.005231419, -0.013518235, 0.023339646, 0.0038658013, -0.007504, -0.043534234, -0.03076088, 0.0042520366, 0.009304132, 0.015656322, 0.050127823, -0.0119595, -0.013166484, -0.027753763, -0.013228558, 0.032912765, -0.028636588, 0.01507697, 0.010538706, -0.017215058, -0.03233341, -0.0032467903, -0.17733717, 0.026498498, 0.02037391, -0.02820897, 0.025174264, 0.014732117, 0.018222028, 0.018028911, 0.0022174043, -0.00433825, 0.015904617, 0.0032485146, -0.033740412, -0.0033261066, -0.013421676, 0.022925822, -0.025684645, 0.027767558, 0.014090691, 5.3317497E-5, 0.050127823, -0.0058142203, -0.010180059, -0.0021467095, 0.027671, -0.006507375, 0.01960144, 0.0043796324, 0.006321154, -0.008828235, -0.035919882, -0.004579647, 0.017339205, 0.003003669, -0.014304499, 0.0020708418, -0.012173308, -0.024539735, 0.002410522, -0.002841588, 0.049493294, -0.002872625, 0.011469808, 0.012780249, -0.006059066, 0.015918411, 0.020442883, -0.004976228, 0.0119043235, -0.037713118, -0.007993691, -0.03547847, 0.00513486, 0.010193853, 0.008566147, 0.016332235, 0.012587132, 6.108208E-4, 0.018732412, -0.01631844, -0.034761176, -0.0016328787, 0.02164297, -0.008876515, -0.004869323, -0.007952308, -0.02891247, 4.2847978E-4, -0.042872116, 0.023739675, -0.018939324, 0.0010474907, 0.01564253, 2.351466E-4, 0.01214572, -0.015614941, -0.027077852, -0.018470323, 0.0054038456, 0.020511853, -0.023932794, 0.036140587, 9.0006617E-4, 0.0026243308, 0.010393867, 0.005262456, 0.0054693674, -0.0015354577, 0.003979603, -0.014925235, -0.009945558, -0.011104264, -0.041134056, -0.016511558, -0.0066729044, 0.011062882, -0.0039658085, -0.0064142644, 0.012945779, -0.02030494, 0.013538926, -0.016235676, -0.023794852, -0.00431411, 0.040030528, 0.023146529, 0.009021353, 0.026070882, 0.011421529, 0.001185432, -0.0045830957, 0.0049555367, 0.018870352, 0.003655441, -0.0018656544, 0.017463353, -0.010297309, -0.016456382, 0.015918411, 0.024056941, 0.04918982, 0.0062901173, -0.0046693087, -0.0046624118, 0.0073384703, -0.016456382, -0.089109994, 0.020691175, 0.0071039703, 0.04918982, -0.0069625806, 0.025408763, -0.017118499, 0.011814661, -0.017159881, 0.03092641, -0.0062383893, -0.025270823, 0.02000147, -0.0015518382, 0.025270823, 0.007662632, -0.027008882, -0.006645316, -0.020760147, 0.022153351, -0.005793529, -0.020029059, -0.00677636, -0.011773279, -0.008897206, 0.014732117, -0.031174704, 0.030374646, 0.018028911, 0.0019380734, -0.012566441, -0.017284028, 0.021670558, -0.036002647, -0.015932206, -0.02539497, -0.010614573, -0.04107888, 0.0012216415, -0.046155117, 0.013966544, 0.028236559, 0.012021573, -0.018801382, -0.009152397, 0.004500331, -0.011297382, 0.044941235, -0.004396875, -0.032002352, -0.0071246615, -0.023767265, -0.02891247, -0.0052796984, 0.0058624996, 0.011635338, 0.027077852, -0.009007558, -0.017766822, -0.036168177, -9.328272E-4, -0.003641647, -0.019891117, 0.009166191, 0.01906347, 0.007648838, 0.0102076465, -0.010759411, 0.01789097, -0.008717882, -0.023781057, 0.014966617, -0.03498188, -0.004469294, -0.03683029, 4.470156E-4, -0.014035515, 0.005693522, 0.018346176, -0.030898822, 0.0060107866, -0.025712235, 0.0034743932, -0.014290705, 0.024070734, 0.024401793, 0.009221368, 0.0166495, -0.007428132, -0.044886056, -0.006972926, 0.027891705, 0.00457275, -0.018911734, 0.0023156875, 0.024732852, 0.019091059, -0.0056176544, -0.014511411, 0.0019070368, -0.0119388085, -0.0060763084, -0.080723174, 0.036030233, -0.02499494, -0.004865875, -0.008028177, -0.013166484, 0.011897426, -0.0026691617, -0.0051486543, 0.035368115, 0.0050210585, 0.027353734, -0.005217625, -0.015104558, -0.015904617, -0.0063108085, -0.0026139852, -0.004369287, 0.011249103, 0.0025088051, -0.012331941, 0.012187103, 0.025905352, 0.0034554263, -0.008228191, 0.013042338, 0.006717735, -0.012207794, -0.019698, -0.010518014, 0.027726175, -0.01789097, -0.0035795735, 0.0017725441, 0.010669749, -0.023960382, -0.005993544, -0.0031364374, 0.017559912, -0.0012457812, -0.0013914816, -0.016828824, 0.006600485, 0.006159073, -0.004321007, 0.032526527, -0.013814809, 0.029822882, 0.018911734, 0.033740412, 0.031616118, 0.007283294, -0.009242059, -0.016442588, 0.015104558, -0.013794118, 0.049796764, 0.004369287, 0.0062521836, -0.0077178087, 0.03158853, 0.02241544, 0.0067453235, -0.02492597, -0.00956622, -0.0054348824, 0.014980411, 0.0050727865, -0.0066280733, -0.01906347, 0.0121112345, 0.0015544245, 0.009345515, 0.02442938, 0.017008146, 0.008911, 0.003531294, 0.01069044, -9.604154E-4, 0.01615291, 0.018870352, -0.006579794, -0.0204015, 0.024815617, -0.011497397, 0.018704822, -0.013249249, 0.0048900144, 0.004921051, 0.0236845, 0.006117691, 0.002253614, 0.017573705, 0.0020949815, 0.0010974945, -0.006021132, -0.008779956, 0.004169272, 0.009483456, 0.027560646, -0.010980117, -0.008076455, 0.01191122, -0.005790081, -0.032112706, -6.034926E-4, -0.018911734, -0.012580235, 0.004586544, 0.012780249, 0.020318735, 6.698768E-4, -0.022139559, 0.0050003673, -0.03244376, 0.013980337, 0.0016397757, -0.0059452644, -0.012856117, 0.025146676, -0.0031312646, 0.013490647, 0.031367823, -0.01866344, 0.033878352, -0.004210654, 0.009504147, -0.022387853, 0.007904029, 0.015490794, 0.021049824, -0.016028764, -0.02858141, 0.016028764, -0.010407661, 0.00996625, 0.014718323, 0.023077559, -0.034595646, 0.07752294, 0.043203175, -0.004845184, 0.02640194, -0.028305529, 0.01578047, 0.0126147205, 0.0157115, -0.023339646, -0.009442073, -0.0036657867, -0.021725735, 0.003355419, -0.020760147, -0.006762566, 0.0066729044, 0.02281547, 0.023270676, -0.0025501875, -0.030484999, -0.014056206, -0.012400911, 0.022125764, -0.004424463, -0.008428206, -0.020580823, 0.039175294, -0.0037830367, 0.0022294743, -0.03125747, -0.013263044, -0.011669823, -0.0043072132, -4.672757E-4, 0.013642382, -0.007759191, 5.836636E-4, -0.015021794, 0.019394528, 0.0043830806, -0.010083499, 0.0072350143, -0.00973175, -0.023146529, 0.013614793, -0.0040037427, 0.003993397, -0.01695297, -0.018732412 ], + "id" : "0173db91-6edd-4c8b-b295-5c7859b63fc3", + "metadata" : { + "source" : "movies.csv" + } + }, + "4225a02c-6891-4dc1-a791-cb7a9624d053" : { + "text" : "Kerekes-Kyle Kesterson-Marat Khairoullin-Kaveh Khatiri-Slim Khezri-Elle van Knoll-Steven Krasner-Vivian Yoon Lee-Kamil Lemieszewski-Matthew Leonhart-David Ae Levy-Raul Limon-Frank Lui Geo-Kevin Lye-Rob Marchitti-Maria Marra-Garry Marriott-Alex Martin-Jason Matthewson-Stephanie McIntyre-Amelie McKendry-Addyson Medley-Anthony Molinari-Robb Moon-Sean Moon-Ashley Nicole Murray-Celina Nessa-Brodi Nicholas-Jason Novak-Emeson Nwolie-Lisa Nygard-Pugh-Angelo Olivier-Sarah Ospina-Mac Pietowski-Dean Preston-Damon Proctor-Jon Prophet-Abigail Rich-Lovell Richards-Brian Robak-Belen Rosenberg-Andre Rutherford-Nunzio Santoro-Shane Santos-Lani Sarem-Kaleigh Saunders-Nicolas Savidis-Macris-Mark Sawtelle-Earl Vincent Sherwood II-Adonis Simmons-Neil Alexander Smith-Eric Sparks-Richard Stanley-Elicia Stokes Navarro-Alyx Stone-Aaron Strong-Paul Terry-Tony Toste-Michael Tushaus-Luke Van Bergen-Tony Vivio-Zhaleh Vossough-Marla Aaron Wapner-Don Whatley-LaFonda Whitehead-Chris Wolfe-Andie Ximenes-Alexander Yassin-Brad Hamerly-Brandon Chapmond,casino-cia-assassin-greece-amnesia-chase-flashback-hacking-las vegas-black ops-rogue agent-armored vehicle-reykjav�_k iceland-hdd,/xA7N41glw17MBQtcWSm2eBlBRuG.jpg,/7mHeyU0a538bgguOeF57I8ZroSk.jpg,2502-2503-2501-49040-188927-278924-343611-47933-297761-333484-291805-207932-258489-267860-302946-177677-68735-206647-302699-363676-246655\r\n76170,The Wolverine,Action-Science Fiction-Adventure-Fantasy,en,Wolverine faces his ultimate nemesis - and tests of his physical emotional and mortal limits - in a life-changing voyage to modern-day Japan.,9.372,The Donners' Company-20th Century Fox,7/23/13,120000000,415440673,126,Released,\"When he's most vulnerable, he's most dangerous.\",6.", + "embedding" : [ 0.010921584, -0.028239997, -0.0058683655, -0.040011268, -0.022478707, 0.043106064, -2.959656E-4, -0.0126554975, -0.009864656, -0.036529627, 0.031086104, 0.028543951, 0.027936045, -1.70218E-4, 0.004317514, 0.0077369856, 0.020420115, -0.026250487, 0.020945126, -0.034595378, -0.00244544, -0.0038408607, -0.014769353, 0.006072152, 0.0017839969, 0.009546888, 0.027645908, -0.0063864673, -0.012413717, -0.021746457, 0.012938727, -0.007239608, 5.431433E-4, -0.008862994, -0.020143794, 0.013588081, 0.026526809, -0.029953187, 0.012524245, -0.018209549, 0.0055747745, 0.0042795204, -0.008255088, -0.00719816, -0.016261486, 0.0023124607, -0.001066426, -0.019839842, -0.011930156, 0.036115143, 0.029207122, 0.033103246, -0.023114245, -0.01586082, -0.007882054, -0.006949471, -0.009650508, -0.008552132, 0.001212358, -0.004535117, 0.014147631, -0.014893698, -0.02232673, -0.023321485, -0.01778125, -0.013491369, -0.016758863, -0.0062379446, -0.011481134, -0.004203532, 0.032771662, 0.010610723, 0.015998982, 0.0058718193, 0.0100788055, -0.019978002, -0.020019451, -3.0179427E-4, -0.009381095, 0.0053778957, 0.015170018, -0.005619677, -0.007578101, 9.990728E-4, 0.016786495, -0.006921839, 0.0058994517, 0.016289119, -0.022354363, 0.015681213, 0.003060254, 0.03130716, 0.008261995, 0.009581428, -0.0034799166, 0.018914167, -0.020834597, 0.010362035, -0.02285174, -0.041420504, -0.0019083413, 0.0019687866, 0.0021812082, -0.015708843, -0.013822954, -0.003055073, -0.013636437, -0.01139133, 0.019480625, 0.013981839, -0.0036923382, -0.003001536, 0.031417686, -0.03161111, -0.002110401, -0.030036084, 0.03741385, -0.023984656, -0.004863248, -0.012904187, 0.04130998, 0.028626846, 0.006072152, -0.030478196, 0.044183716, 0.042221837, -0.01257951, -0.014044011, -0.0113084335, -0.0043382384, 0.034236163, -0.009968277, 0.024827434, 0.0075642853, -0.017463481, 0.050925944, -0.028709743, 0.015473971, -0.015819373, -0.024343872, 0.028516319, 0.028433422, -0.020668805, -0.0047458117, -0.023998471, 3.9677956E-4, 0.0122341085, 0.0064279153, 0.02799131, -0.0032433167, 0.022078041, 0.018596398, 0.031997964, 0.016316751, 0.013028531, -0.009139314, 0.008717925, -0.011757455, -0.01125317, -0.019383913, -0.011260077, -0.021511583, -0.008856085, -0.014230527, -6.225856E-4, 0.023183325, 0.024924146, -0.010624539, -3.874969E-5, 0.011474226, -0.008572857, 0.027797883, -0.031666376, 0.021083286, -0.0038684928, 0.002162211, 0.006248307, -0.011342973, -0.039790213, -0.017532563, 0.0125035215, 0.0012633047, 0.0371099, 0.03092031, -0.005170655, 0.01505949, 0.01652399, -0.03528618, 0.0192872, -0.015570683, 0.0049875923, 0.01652399, 0.0031172454, 0.0028910076, -0.6472541, -0.019135224, -0.010382758, -0.007053091, 0.0075642853, 0.010030449, 0.0067145983, 0.0026302298, -0.027936045, -0.005457338, -0.022520155, 0.0115433065, 0.018043756, -0.030975575, -0.029897923, -0.021331975, 0.006300117, -0.021097101, 0.020572092, 0.004144814, -0.012448257, -0.0015698482, 0.008545225, -0.0052673677, 8.6868386E-4, -0.0027701173, -0.008724833, -0.015321995, -0.0015784833, 0.0031258804, -0.02326622, 0.023003716, 0.00235909, 0.014030195, 0.044183716, -8.0392114E-4, -0.0121166725, 0.046808764, 0.03517565, 0.04161393, -0.036695417, -0.008372524, -0.0019066143, 0.016510176, -0.016330566, 0.013118336, 0.013152876, -0.0020309587, -0.010935401, 7.5858727E-4, 1.1398238E-4, 0.010997573, 6.4870655E-5, -0.01775362, -0.011888707, -6.700782E-4, 0.005996164, -0.029538706, 0.016993737, 0.009526163, -0.03304798, 0.02906896, 0.002713126, 0.0071567115, 0.0025231554, 0.021000389, -0.009325831, -0.003637074, 0.008227455, -0.033517726, 0.020378668, 0.018610213, -0.009726496, 0.0025076123, 0.0059167217, 0.016413463, 0.021539215, -0.0038063207, 8.1644196E-4, 0.0035541777, -0.003550724, -0.015888453, -0.009850841, 0.010106438, 0.014893698, -1.3805252E-4, -0.02696892, 0.0033797503, 0.0222162, 0.0035472699, 0.0130768875, 0.013829862, 0.004517847, -0.008538316, -0.006296663, 0.006838943, -0.0034954597, 0.008572857, 0.03727569, -0.06780915, -0.007028913, -0.009242935, 0.04097839, -0.024647826, 0.010693619, 0.013284128, -0.011294617, -0.02292082, 0.024744539, -0.022202386, -0.006873483, 0.0020344127, -0.01526673, -0.011101193, -0.015639763, -0.034733538, 0.009160038, 0.011204814, -0.009533072, -0.025269547, 0.00726724, 0.008711017, 0.019508258, -0.0058027394, 0.021953696, 0.022050409, -0.010120254, -0.006894207, 0.0052466434, -6.4158265E-4, 0.010175518, -0.008773189, 0.024053736, -0.025601134, -0.0011700464, -0.0061654104, 0.008427788, -2.1965354E-4, 0.01862403, -0.0035040947, -0.022050409, -0.010210058, -0.0067595006, -0.011874892, -0.009705773, -0.0073017804, -0.028599216, -0.009360371, -7.439077E-4, -0.0041344515, -0.01016861, 0.0091185905, -0.0028426514, 0.008593581, 0.014023286, -0.005070489, -0.013560449, -0.01967405, 0.012047592, -0.0151976505, 0.0037234244, 0.012752211, -0.008020215, -0.008752465, 0.021359608, -0.01551542, 0.0065073576, 5.725024E-4, -0.0030688893, -0.007875146, 0.010182425, -0.018140469, -0.011785087, 0.00475272, -0.015543052, 0.022437258, 2.7135576E-4, 0.0222162, -8.393248E-4, -0.004552387, 8.270738E-6, -0.012669314, -0.016399646, -0.007902778, 0.015639763, 0.029676866, 0.016399646, -0.0018530771, -0.0058200094, -0.0043589626, -0.026291935, -0.01757401, -0.0083448915, -0.0015171745, 0.0044107726, 0.030201877, 0.004224256, 0.01645491, -0.0022779205, 0.0018358071, 0.036363833, 0.00609633, 0.0022330184, -0.014852249, 0.014133815, -0.027424851, 0.0032450438, -0.030975575, 0.0076540895, 7.715398E-4, 0.02984266, -0.012572601, -0.026526809, -0.002412627, 0.0023815408, 0.018706925, -0.004455675, 0.005143023, -0.021705007, -0.0030585271, 0.0044418587, -0.018914167, 0.023224773, 0.011950879, -0.018195732, 0.003321032, 0.008641937, 0.0029341828, 0.0028599214, -0.022091858, -0.016800312, 0.007619549, 0.0076126414, 0.0039859293, 0.005357172, -0.021870801, 0.024205713, -0.008255088, 0.04490215, -0.015473971, 0.011260077, 0.022174753, 0.014575928, 0.003027441, 0.010859412, -0.02806039, 0.01383677, 0.011170273, -0.0034781895, 0.029234752, -0.01590227, 0.030008452, -0.006047974, 0.005060127, 0.014879881, -0.027576828, 0.011550214, 0.016289119, 0.02998082, 0.0133463, 0.011488042, -0.043852128, 0.008448512, -0.006856213, 0.02463401, 9.766218E-4, -0.018154284, 0.008462328, 1.8511342E-5, -0.03249534, -0.017877962, -0.022865556, 0.009463991, 0.016289119, -0.010755791, -0.0043486003, -9.10132E-4, 0.013574265, 0.005619677, 0.037552014, -0.005792377, -0.035728294, 0.0033555722, 0.019770762, -0.013118336, -0.02540771, -0.007882054, -0.0058856355, -0.032053225, -0.005315724, 0.009477807, 0.027563011, -0.0070703616, -0.0032277738, -0.011059744, 0.008503776, 0.022451075, -0.024661642, 0.014189079, 0.010216966, 5.0903496E-4, 0.010189334, -0.0064659095, -0.0039859293, 0.0355625, -0.007958042, 0.0090011535, 0.004818346, 0.013111427, -0.0064279153, 0.011439686, 0.00336248, -0.052114125, 0.008869901, -0.018499685, -0.019204304, -0.0047112717, 0.0031362425, 0.012171936, -0.013394657, -0.014244343, -0.02721761, -0.040342852, -0.010279138, 0.07410927, 0.035866454, 0.005799285, 0.011266985, -0.0049357824, 3.4885516E-4, -0.0040826416, -0.018237181, -0.0014437768, -0.014907514, 0.024109, -0.009837025, 7.4779347E-4, 0.0067042364, 0.032965086, -0.011833443, -0.006956379, -0.009995909, -0.018209549, -0.034844067, -0.01219266, -0.014037102, 0.031638745, 0.027563011, -0.0042967903, -0.007626457, 0.017491113, 0.011950879, -0.0046767313, 0.008552132, -0.011550214, 0.01020315, 0.005723297, 0.00719816, -0.007260332, -0.003972113, 0.034954596, 0.007633365, 0.02159448, -0.0044763987, -0.005374442, 0.020005634, 0.0064762714, -6.925293E-4, 0.012703855, -0.03393221, -0.020558275, 0.02214712, 0.02732814, -0.02906896, 0.015847005, 0.012710762, -0.035230916, -0.009615968, 0.0041655377, 0.0090011535, -0.004217348, -3.7324912E-4, -0.021566847, 0.0056818486, 0.015819373, -0.02721761, -0.0014550023, -0.015418707, -0.0072119758, -0.01855495, -0.013898942, -0.006431369, -0.024440585, 0.003046438, 0.001787451, -0.012890371, -0.0034039284, 0.0028202003, 0.014907514, 0.012821291, 0.022934636, -0.015667396, 0.014714089, 0.009077142, -0.041973148, -0.009705773, 0.021152366, -0.026057063, 0.00536408, 0.0045592953, -0.0067318683, 0.020820782, 4.818346E-4, -4.471326E-5, -7.110946E-4, -6.8864356E-5, -0.026844578, -0.008904441, 0.029566338, 0.0017071451, 0.0064279153, 0.014230527, 0.008372524, -0.0031880527, 0.0035299996, -0.010507103, -0.009850841, -0.016565438, -0.019618785, -0.022865556, 0.0025317904, -6.1567756E-4, -0.0137331495, -0.0036647061, -0.020972757, -0.018472053, 0.002412627, -5.086032E-4, 0.0037096082, 0.014935145, 0.023459645, 0.01590227, -0.014935145, 0.013056164, 0.001490406, -0.012006144, 0.016068062, 0.03420853, -0.003612896, 0.038077023, -0.005709481, -0.0178227, 0.006151594, 0.02641628, -0.009560703, 0.023984656, -0.029151857, -3.190643E-4, 0.0013030259, -0.023210958, 0.012821291, 0.0063035707, 0.0040377392, 0.022312913, -0.014382504, 0.01590227, 0.009933737, 0.014520664, -0.004224256, -0.031003207, -0.0134637365, -0.0022692855, 0.005478062, 0.013822954, -0.023611622, -0.0026457729, -0.027922228, -0.022050409, -0.017325321, -0.04940618, -0.029041328, 0.0016199314, 0.025504421, 0.011052837, 0.03766254, -0.0042795204, 0.0222162, 0.002728669, 0.0018478961, 0.019756945, -0.022437258, 2.648795E-4, -0.027590644, 0.006293209, 0.025532052, 0.014645008, 0.0085245, 0.009899197, 0.0046180133, 0.014658825, 0.016606888, 0.024551114, 0.0074744807, -0.026361015, -0.015473971, 0.007502113, -0.024592562, -0.013035439, -0.018458238, -0.012959451, 0.020889862, -0.008496868, -0.013284128, -0.010161702, 0.023293853, -0.0013928302, 0.005146477, -0.02141487, 0.028046573, -0.028378159, 0.008137651, -0.014976594, -0.010417298, -1.5327176E-4, -0.023957023, 0.016468726, 0.004725088, -0.022091858, -0.0070703616, 0.018250996, -0.021235263, -0.03133479, 0.026015615, -0.008704109, -0.00887681, -0.017836515, 0.002726942, -0.022050409, -0.026734049, -0.0021553033, -0.029290017, 0.002433351, -0.016372014, -0.045869272, 0.030422933, 0.0015551687, 0.054711543, 0.003913395, 0.04492978, 0.02305898, 0.014783169, -0.013028531, 0.022423442, 0.0046076514, -0.009028786, 0.014769353, 0.024067553, -0.024412952, -0.0033642072, 5.5436883E-4, -0.012330821, -0.04056391, -0.04059154, 0.03155585, 0.018347709, 0.038242813, -0.02540771, -0.003571448, -0.029815027, 0.01764309, -0.013691701, 0.0068596667, 0.00915313, -0.036446728, -0.01254497, 0.0016199314, -0.007543561, 0.003899579, 0.014216711, -0.020489195, 0.019770762, -0.019301016, 0.008856085, -3.3611848E-4, -0.0046663694, 0.03064399, -0.02239581, 0.0077853417, 0.005768199, 0.019729313, 0.0055713207, -0.0112738935, 1.7410377E-4, 0.027341954, -3.3568675E-4, 0.025974166, 0.0055989525, -0.012185752, 0.0047630817, 0.030091347, -0.008172191, -0.018651662, -0.016800312, -9.196306E-4, 0.0252281, 0.001796086, 0.008697201, 0.010562367, -0.023680702, -0.01764309, 0.007225792, -0.0064106453, 0.0080754785, -0.03539671, 0.0049737766, -0.016137142, 0.006693874, -0.012669314, -0.0040584635, -0.009353463, -0.0046387375, 0.001500768, -0.0070599993, -0.014113091, -0.007571193, -0.020599725, -0.042387627, -0.021539215, -0.012510429, -0.013608805, 0.012185752, -0.013988746, -0.005785469, -0.017339138, -0.005996164, -0.016081877, -6.212903E-4, -0.009097866, -0.004293336, 0.01697992, -0.0066869664, -0.012980175, 0.0030913402, 0.019273384, -0.0013919666, -0.0015309906, 0.0049461443, 0.0037130623, 0.029676866, -0.02061354, 0.01146041, 0.005149931, -0.0134982765, -8.829317E-4, 0.020641172, 0.025020858, 0.024523482, -0.0022019322, -0.032937452, -0.010624539, -0.017587826, 0.023335302, 0.009995909, -0.004921966, 0.04371397, 0.01684176, 0.02113855, 0.022893189, -0.02079315, -0.034512483, 0.011840351, -0.009968277, -0.026291935, -0.0035679939, -0.0021846623, 0.023501094, 0.013201232, 4.46431E-4, -0.034540113, -0.0074330326, -0.018789822, -0.0278117, -4.2095766E-4, 0.026844578, 0.038408607, 0.017283874, -3.7044272E-4, 0.0108870445, 0.0015335811, 0.011184089, -0.014216711, 3.2748346E-4, 0.019535888, -0.002112128, 0.03500986, 0.024219528, -0.038463872, -0.01394039, 0.014686457, 0.021235263, 0.014907514, 0.026070878, -0.017187161, -0.011156457, -0.0015871183, 0.0044038645, -0.0059581697, 0.0035058216, 0.02036485, -0.04625612, 0.0077438937, 0.0070392755, 0.013912758, 0.0045834733, 0.020171426, 0.008116927, 4.285133E-4, 0.007322504, 0.010216966, -0.010569275, 6.4503663E-4, -0.036833577, 0.020820782, 0.0049046963, 0.019052327, 0.04661534, 0.026361015, -0.003623258, 0.010569275, -0.015335811, 0.002115582, -0.0029013697, -0.009498532, 0.0031466044, 0.026747866, -0.025241915, 0.014189079, -0.026816946, -2.1652335E-4, -0.002134579, 0.013539725, 0.0134982765, 0.028488686, -9.800758E-4, -0.055595767, 0.0031483315, -0.012690038, 0.008013306, -0.0075642853, -0.008241272, -0.026568256, -0.0032692219, -0.014175263, 0.0061999504, -0.018527318, -0.019135224, 0.008918257, -0.02774262, -0.006911477, 0.005118845, 0.17739803, -0.0128074745, 0.004797622, 0.045095574, 0.014451584, 0.008110018, 0.03539671, 0.024924146, -0.0043727783, 0.023528727, 0.021221446, -0.005063581, -0.0060583362, -0.0034384683, 0.021014206, -0.015308179, -0.030395301, -0.01027223, -0.0122686485, -0.014548296, -0.0047216336, 0.008206732, 0.0014731359, -0.034457218, 0.0042898823, -0.005719843, 0.0059167217, 0.0026405917, 0.020171426, -9.08405E-4, 0.007626457, -0.012620958, 0.0062448527, -0.009843932, -0.024482032, -0.004531663, -0.006348473, 0.0016665605, 0.018126652, 0.0064244615, -0.0036647061, -0.02166356, -0.0096436, 0.0019031604, 0.0088491775, 0.021373423, -0.020889862, 0.008717925, -0.022865556, 0.005747475, -0.037220426, -2.199234E-6, 0.023901759, 0.018002307, -0.014879881, -0.0010284319, 0.010914676, -0.001500768, -0.0015974803, -0.0024437131, 0.0064659095, 0.026982738, -0.03354536, 0.011121917, 0.019452993, 0.022064226, -0.01684176, 2.8776232E-4, 0.021649744, -0.02984266, -0.025670214, -0.016883207, -0.0025576954, 0.020848414, -0.0012641682, -0.020737885, 0.01264859, -0.0016423825, 0.0070323674, 0.016731232, -0.03329667, -0.015432524, 0.017560193, -0.008096203, -0.027272874, -0.01750493, 0.009664324, -0.012358453, -0.013802229, -0.005087759, -0.015114754, -0.01645491, -0.0048701563, 0.0032312276, -0.01107356, 0.001662243, 0.03147295, 0.015087122, -0.0040481016, -0.01090086, -0.041033655, 0.020060899, 0.013125244, -0.001189907, -0.032744028, -0.010016633, -0.0029756308, 0.0046145595, 0.021235263, -0.0011398238, -0.003055073, -0.022409627, -0.002371179, -0.0037855965, 0.0018392612, 0.024730721, 0.004013561, -0.01809902, 0.023141876, -0.012227201, 0.0074330326, -0.01775362, 0.016413463, -0.007142896, 0.014727904, -0.024205713, -0.024191895, -0.016385831, -0.005350264, -0.027549196, 0.009401819, -0.012261741, 0.014113091, -0.0010241144, -0.0016881481, -0.0051982873, 0.022824109, -0.008241272, 0.01079724, -0.0041655377, -0.0047803516, -0.026637336, -0.0043831407, 0.00538135, 0.017242426, -0.028322894, 0.002101766, 0.013007808, -0.01666215, -0.0333243, -0.034125634, -0.0011303253, 0.0012874828, 0.01086632, 0.03553487, -0.006272485, -0.014078551, -0.033379566, -0.017933227, 0.048798274, -0.036253303, 0.030395301, 0.011785087, -0.023556357, -0.026996553, -0.007944226, -0.17872436, 0.014824617, 0.0085245, -0.044321876, 0.005315724, 0.024288608, 0.022837924, -0.012330821, 0.002695856, -0.014037102, 0.022202386, 0.005004863, -0.033490095, -0.010479471, -0.007363952, 0.010016633, -0.0028512864, 0.03161111, 0.017118081, 0.012551878, 0.047803517, -0.0040411935, -0.017339138, 0.00662134, 0.0026561348, -0.004897788, 0.024330057, 0.0017287327, 0.0032001417, -0.015570683, -0.031251896, -0.020903677, 0.01837534, 0.017228609, -0.017366769, 0.003972113, -0.018651662, 0.003017079, -0.014879881, -0.014879881, 0.032384813, 0.02022669, 0.008206732, 0.013118336, 0.021041838, 0.014050919, 0.029538706, -0.01320814, 0.0041759, -0.016441094, -0.013166692, -0.025449157, 0.029759763, -0.009691956, 0.018016124, 0.01400947, 0.019701682, -0.0011545033, 0.012945635, -2.249425E-4, -0.028737376, -0.005775107, 0.0029998089, -0.006414099, -0.008780097, -0.010983757, -0.010997573, 0.020806964, -0.030201877, 0.004921966, -0.034401953, 0.031997964, 0.0029963548, 0.0038892168, 9.679867E-4, -0.0070945397, -0.02879264, 0.0036923382, -0.0047216336, 0.012759118, -0.024468217, 0.03092031, -0.0042864284, 0.013097611, 0.007854422, -0.002091404, 0.019038511, -0.006928747, 0.010514011, -0.02029577, -0.006431369, -0.025628764, -0.031058472, -0.0076402733, -0.0011700464, -0.004144814, -0.011177181, 0.01492133, 0.007453757, -0.0023055526, 0.0013056163, -0.022603052, -0.0093051065, 0.0011553669, 0.008317259, 4.55066E-4, 0.005143023, 0.04175209, 0.01268313, 0.002695856, -0.016952287, 0.0032623138, 0.03078215, 0.012731486, -0.017076632, -7.611778E-4, -0.019052327, -0.023556357, -0.0010914676, 0.02239581, 0.04846669, 5.919312E-4, 0.007522837, -0.014948961, -0.00489088, -0.013525909, -0.076706685, 0.0056231306, 7.758573E-4, 0.034678277, -0.026388647, 0.05551287, -0.004282974, 0.016869392, -0.01146041, 0.027438667, 0.009664324, -0.01830626, 0.0068665748, -0.006973649, -0.005823463, 0.0058994517, -0.009878472, -0.013760782, -0.010949216, 0.033904575, -0.0032674947, -0.017739803, -0.0017909049, 5.375305E-4, -0.019895107, 0.02113855, -0.023708334, 0.01652399, 0.016993737, 0.0047285417, 0.0092705665, -0.022630682, 0.01139133, -0.042194203, -0.021635927, -0.029151857, -0.016482543, -0.039044145, 0.0057889232, -0.04901933, 0.01499041, 0.020903677, 0.013090704, -0.030450566, -0.009166947, 0.016758863, -0.039071776, 0.0341809, -0.00943636, -0.01691084, -0.013429197, -0.019397728, -0.029704498, -0.006863121, 0.032854557, 0.015031857, 0.014037102, -0.003913395, -0.026139958, -0.027576828, -0.004504031, -0.014037102, -0.014562112, 0.020917494, 0.018264813, 0.0020482289, 5.642991E-4, -0.0070392755, 0.01617859, -0.0034626464, -0.019231936, 0.032467708, -0.02589127, -0.019038511, -0.017670723, 0.0029600877, -0.031224264, -0.014907514, 0.03144532, -0.034595378, 0.012137396, -0.034623012, -6.9900556E-4, -0.029151857, 0.0074192164, 0.020309588, 0.001351382, 0.0134637365, -0.008476144, -0.031251896, 0.002697583, 0.02767354, -0.007460665, -0.009498532, 0.0028063843, 0.021939881, 0.020199059, -0.002141487, -0.0132288635, 0.02536626, -0.005191379, -0.0010923311, -0.07123553, 0.02794986, -0.018168101, -0.005757837, -0.021331975, 0.0028322893, 0.010790332, 0.0034609195, -0.0059339916, 0.02882027, 0.0030827052, 0.018665478, -0.00848996, 0.0037165163, -0.0018927982, 0.015100938, 0.0064451853, -0.009318923, 0.00918767, 0.006980557, -0.010645263, 0.006320841, 0.020019451, -0.004866702, 0.013166692, 0.027383402, -0.005143023, 0.00555405, -0.009961369, -0.012095948, 0.036115143, -0.018085204, 0.0041724457, 0.011363697, -0.0028461055, -0.034733538, -0.006908023, 0.006659334, 0.011115009, 0.012296281, -0.016330566, -0.019273384, 4.1534487E-4, 0.002441986, -0.015321995, 0.019066144, -0.005626585, 0.009215303, 0.011605479, 0.013912758, 0.018002307, -0.0010336129, -0.014161447, -0.022050409, 0.018140469, -0.019066144, 0.049046963, 0.0014558658, 0.0027994763, -0.011135733, 0.01659307, -0.0014731359, 0.011384422, -0.037966494, -1.360017E-4, 6.73964E-4, 0.0043555084, -0.009084051, -0.0015068125, -0.03053346, -0.0229899, 0.013291036, 0.006358835, 0.040066533, 0.007578101, 0.012835107, 0.007488297, 0.0035023675, -0.0027614823, 0.005719843, 0.015957532, -0.010997573, -0.017422033, 0.018499685, -0.0074813887, 0.0192872, -0.0074330326, 0.0040377392, 0.0087317405, 0.02906896, 0.0032450438, 0.017159529, 0.0067698625, -0.004773444, 0.019577337, 0.0035645398, -0.013670977, -0.025214283, 0.0063761054, 0.018237181, 1.0016633E-4, -0.0071221716, -0.011094285, -0.020558275, -0.023832679, 0.0063933753, -0.017933227, -0.02438532, 0.013021623, 0.01505949, 0.03619804, 0.0077024456, -0.014769353, 0.0011493223, -0.027065633, 0.009519256, -0.0055229645, -0.024661642, -0.012220292, 0.055457607, 0.01310452, 0.010893952, 0.03224665, -0.0041759, 0.04490215, 0.0018979793, 0.011591663, -0.032467708, 0.008503776, 0.0015085395, 0.0070945397, 0.006973649, -0.008413972, 0.015570683, -0.021926064, 0.00609633, 0.0144654, 0.030422933, -0.024689274, 0.0734461, 0.023335302, -0.011377513, 0.012337729, -0.010659079, 0.018582582, 0.022243833, 0.0145068485, -0.0011355063, -0.012524245, -0.0022347453, -0.012731486, -0.0079235025, -0.028295262, 0.0013418834, -0.004611105, 0.014202896, 0.011881799, -0.002669951, -0.022230018, -0.008552132, 0.0047630817, 0.022658315, 0.017587826, -0.0072050677, -0.008572857, 0.023874126, -0.0122341085, 0.0053364476, -0.02602943, -0.010776516, -0.011702191, -0.006576438, -0.0020223237, 0.013588081, -0.0055954987, -0.0058752736, -0.00793041, 0.02477217, 0.016993737, -0.015460155, -0.002956634, -0.0070945397, -0.028737376, 0.015432524, -0.0039617512, -0.008393248, -0.01771217, -0.025753109 ], + "id" : "4225a02c-6891-4dc1-a791-cb7a9624d053", + "metadata" : { + "source" : "movies.csv" + } + }, + "6c893779-198d-4e18-895d-74ef3cb87340" : { + "text" : "391,8655,Hugh Jackman-Tao Okamoto-Rila Fukushima-Hiroyuki Sanada-Famke Janssen-Svetlana Khodchenkova-Brian Tee-Hal Yamanouchi-Will Yun Lee-Ken Yamamura-Nobutaka Aoyagi-Seiji Funamoto-Shinji Ikefuji-Qyoko Kudo-Nobuaki Kakuda-Chiharu Mizuno-Takao Kinoshita-Conrad Coleby-Taris Tyler-Sarah Naylor-Liddell-Joshua Remilton-Andy Owens-Allan Poppleton-Geoff Burke-Yasuyo Shiba-Mai Ishikawa-Yaeko Kimura-Ryuta Kimura-Briden Starr-Maria Lukasheva-Tess Haubrich-Taki Abe-William Takayanagi-Temm-Kuni Hashimoto-Erich Chikashi Linzbichler-Shingo Usami-Naoya Ogawa-Atsushi Sawada-Takashi Matsuyama-Masa Yamaguchi-Eric Laciste-Hideki Sugiguchi-Garret Sato-Kosuke Masano-Yoji Tatsuta-Yoshinori Fukushige-Hiroshi Kasuga-Yumiko Nakamura-Kimi-Keiko Matsumoto-Louis Toshio Okada-Ian McKellen-Patrick Stewart-Jon Valera-Yasushi Asaya-Jeremy Marinas-Ola Endress,japan-samurai-mutant-world war i-superhero-based on comic-superhuman-duringcreditsstinger,/xNi8daRmN4XY8rXHd4rwLbJf1cU.jpg,/7D2PgX369YYePs4m44IQvROWM42.jpg,2080-36668-49538-36658-36657-127585-49521-246655-76338-68721-102382-68726-54138-75612-68724-72559-1930-100402-10195-9738-82992\r\n4564,Sex and the City,Comedy-Drama-Romance,en,A New York writer on sex and love is finally getting married to her Mr. Big. But her three best girlfriends must console her after one of them inadvertently leads Mr. Big to jilt her.,53.376,Darren Star Productions-New Line Cinema-HBO,5/12/08,65000000,415252786,145,Released,Get Carried away.,6.6,1907,Sarah Jessica Parker-Kim Cattrall-Kristin Davis-Cynthia Nixon-Chris Noth-Candice Bergen-Jennifer Hudson-David Eigenberg-Evan Handler-Jason Lewis-Mario Cantone-Lynn Cohen-Willie Garson-Joanna Gleason-Joseph Pupo-Alexandra Fong-Parker Fong-Kerry Bish��-Polina Frantsena-Kate Rockwell-Amy Flanagan-Lena Hall-Amanda Setton-Ching Valdes-Aran-Malcolm Gets-Lorna Kelly-Daphne Rubin-Vega-Patrick DeMarchelier-Andr�� Leon Talley-Plum Sykes-Lawren Howell-Gucci Westman-Serge Normant-Mary Howard-Dave Bradford-Gilles Marini-Monica Mayhem-Gilbert Cruz-Damian Young-Rick Aiello-Rogelio T. Ramos-Rene L. Moreno-Veanne Cox-Ricardo Molina-Annaleigh Ashford-Bridget Everett-Peter Y. Kim-Suzanne Cryer-Joshua Henry-Henriette Mantel-Nancy Shayne-Kim Shaw-Michelle M. Kim-Erica K. Evans-Roxy DeVille-Van Hughes-Sara Gettelfinger-Bridget Regan-Dreama Walker-Ruby E.", + "embedding" : [ 0.007971515, -0.02445056, -0.00612982, -0.013613423, -0.017592309, 0.026470926, -0.011489976, -3.0859554E-4, -0.01239708, -0.050083105, 0.017179988, 0.011483104, 0.037795976, -0.007469859, -0.0025288942, 0.0023897365, 0.018966708, -0.01953021, 0.010012497, -0.053216733, -0.0038070856, 0.0013615141, -0.022182802, 0.018829267, -0.010747801, 0.01157244, 0.032160938, -0.006274132, -0.024409328, -0.019090403, -5.2012416E-4, 0.0035081536, -0.013730247, -0.024024496, -0.0033054298, -0.0053464123, 0.008019619, -0.021550577, 0.007291187, 0.003106142, -0.0049684527, 0.008947338, 0.0017257299, 0.0063600317, -0.014609862, 4.664367E-4, 0.017070036, -0.018843012, -0.009579562, 0.024203168, 0.027474238, 0.017729748, -0.020492291, -0.015228342, -0.023337297, -0.0025065604, -0.028505037, -0.0065627554, 0.0021457805, 0.013737119, 0.01728994, -0.006047356, -0.02623728, -0.009771978, -0.014376215, -0.013043047, -0.015283318, -0.0038345736, -0.024464304, 0.013173616, 0.024876624, 4.7631518E-4, 8.942184E-4, 0.0048653726, 0.01763354, -0.025948655, -0.021152003, -0.006064536, -0.006397828, 0.014025743, 0.011201353, -0.013317927, 0.0054666726, -0.009325298, 0.00898857, 0.008005874, -0.017798468, 0.03023678, -0.021069538, 0.016479045, 0.012252768, 0.036421575, -0.016973829, 0.001499813, 0.0053567206, 0.018155811, -0.0109677045, 0.025357664, -0.014142566, -0.032353353, -0.003037422, -0.00837009, 0.0021320365, -0.012857503, 0.0018485668, 0.002980728, 0.004325921, -0.017179988, 0.008191419, 0.015448246, -0.0037349295, -0.0026611802, 0.013462239, -0.037163753, -0.01525583, -0.020987075, 0.026305998, -0.037631046, -0.0053670285, -0.0073392913, 0.025165247, 0.02847755, 0.005741552, -0.015888054, 0.040379845, 0.04018743, -0.024189424, -0.018210787, 0.004222841, 0.0011184172, 0.027213102, -0.013847071, 0.023570944, 0.018169556, -0.02255389, 0.051155135, -0.033150505, 0.013063664, -0.0185269, -0.02317237, 0.023818336, 0.031693645, -0.028230157, -0.0049615805, -0.013015559, -0.0016312399, 0.023667153, -0.010156809, 0.016245397, 0.018774292, 0.010734057, 0.031418763, 0.010837137, 0.016836388, 0.011325048, -0.011015809, -0.006157308, 0.01019117, 0.0057793483, -0.019502724, -0.0027642602, -0.006098896, 8.0745944E-5, -0.015805589, -0.00609546, 0.023034928, 0.03037422, -0.022842513, -0.01756482, -0.008177674, -0.007923411, 0.032188427, -0.035184618, 0.011840448, -0.011043297, 0.006394392, -0.0031954779, -0.02227901, -0.04400826, -0.01925533, 0.013139255, -0.0027350541, 0.028889868, 0.03639409, -0.009256578, 0.014005126, 0.014101335, -0.024010751, 0.0037486735, -0.021358162, 0.007043795, 0.03680641, 0.019928787, -0.007538579, -0.62540656, -0.017716004, -2.5941784E-4, -0.0043980773, 0.0313363, 0.011771728, 0.009771978, -0.003044294, -0.021028306, 0.0011158403, -0.03463486, 0.022498913, 0.022059105, -0.01859562, -0.023089904, -0.014458679, 0.0059305322, -0.024065727, 0.011723625, 0.011441872, -0.010775289, 0.0066383476, 0.019585187, 4.660072E-4, 0.010637849, -0.014389958, -0.021289442, -0.024203168, 0.023131136, 0.018087093, -0.025948655, 0.04563005, 0.0024876622, -0.0018502848, 0.042798787, -0.012802527, -0.011599928, 0.04766416, 0.03199601, 0.028587501, -0.029247213, 0.007208723, 0.004638597, 0.0019310308, -0.010046857, 0.02817518, 0.004367153, 0.00303914, -0.0047588567, -0.0048962967, 0.007717251, 0.0016707539, -0.019351538, -0.013098023, -0.017949652, 6.6142954E-4, 0.0034463056, -0.032765675, 0.021701762, 0.0042606373, -0.01804586, 0.031171372, -0.0037692895, 0.016245397, -0.0012953711, 0.035239592, -1.3722516E-4, 0.0010024523, 9.448994E-4, -0.030484172, 8.568519E-4, 0.017413637, -0.015544454, -4.6944318E-4, 0.015077158, 0.03348036, 0.015544454, 0.008184547, -6.7259656E-4, 0.025275199, -0.012218408, -0.0069269715, 0.019104147, 0.005892736, 0.012348976, -0.0053154887, -0.055525724, 0.0069991276, 0.013668399, -0.009586434, 0.015022182, 0.003143938, 0.008315114, 0.014692326, -0.0083769625, -0.007676019, -0.0035940537, 0.011421257, 0.023570944, -0.063222356, -0.014431191, -0.013111767, 0.027254334, -0.016602742, 0.0040682214, -0.001470607, -0.018073348, -0.007703507, 0.014953462, -0.0024155064, 3.4424404E-4, 0.013489727, -0.012610111, -0.014053231, -0.014884742, -0.030594124, 0.013757735, 0.02186669, 0.0033964838, 0.0031319119, 0.005961456, 0.012094712, 0.014802278, -0.0066520916, 0.018636853, 0.039005447, -0.0028484422, -0.009476482, 0.015434502, 0.004604237, -0.0040372973, -0.014060102, 0.016561508, -0.01477479, 0.011599928, -0.0069544595, 0.010218658, 5.3000264E-4, 0.007944027, -0.010060601, -0.011428128, -0.02159181, -0.013469111, -0.001554789, 8.830514E-4, -0.0123902075, -0.020451058, 0.009284066, -0.0020049047, -0.016726436, 0.010919601, 0.006150436, -0.007950899, 0.027075661, 0.0054529286, -0.004600801, -0.031446252, -0.015269574, 0.015571942, -0.0038620615, 0.0018829268, 0.022760049, -0.00607828, -0.009771978, 0.02875243, -0.0038311374, -0.013304183, -0.0033174558, -0.0051746126, -0.015558198, 0.011242584, -0.031446252, -0.0113319205, 0.008163931, -0.014156311, 0.013668399, 0.017825956, 0.028917357, 0.0069372794, -0.0065936795, -0.010500409, -0.031418763, -0.03078654, -0.0049409647, 0.033947658, 0.010534769, 0.023543457, -0.004291561, -8.2592794E-4, -0.0054598004, -0.033837706, -0.018884243, 0.002956676, 4.595647E-4, 0.0033655597, 0.004861937, 0.015104646, 0.013489727, 0.0021354726, -0.023007441, 0.030429196, 0.004666085, 0.008356347, -0.019324051, 0.014829766, -0.027955277, 0.0052570766, -0.021976642, 0.01797714, -0.011971016, 0.025852447, -0.011977888, -0.020602243, 0.011661776, 0.006366904, 0.013427879, -0.008480042, 0.008267011, -0.004257201, 0.008273883, 0.010500409, -0.00327966, 0.016850132, -0.0036730815, -0.017716004, 0.01559943, 0.007868435, -0.015352038, -0.0039891936, -0.009187858, -0.027982766, -0.012884991, -1.20582044E-4, 0.0225264, 0.0038723694, -0.020657219, 0.017743492, -0.0053257965, 0.03922535, -0.004130069, -8.348401E-5, 0.0037899055, 0.018774292, 0.0050784047, 0.004738241, -0.0067929677, 0.021289442, 0.013503471, 0.0016776259, 0.042194054, -0.021399394, 0.027941534, -0.0068341997, 0.0021767046, 0.021770481, -0.006256952, 0.0031800158, 0.024354352, 0.033150505, 0.024161937, 0.019543955, -0.0069372794, 0.010307993, 0.0018726188, 0.01880178, 0.007428627, -0.010596617, -4.8146918E-4, -0.015407014, -0.030401709, -0.025852447, -0.0049134768, 0.0024258143, 0.0036043616, -0.014431191, -0.0016939469, -0.001529878, -0.0023570945, 0.005813708, 0.017674772, -0.006067972, -0.03581684, 0.022924976, 0.026525902, -0.017963396, -0.022993697, 0.0018142068, -0.019131636, -0.024615487, -0.004130069, -0.0037555455, 0.026017375, -0.01925533, 0.00929781, -0.0094352495, 0.012520776, 0.03279316, -0.011517464, 0.001381271, 0.010094961, 0.015035926, 0.008088338, -0.009758233, 0.001460299, 0.012177176, -0.017138757, -1.0114718E-4, -0.007662275, -0.0015522119, -0.010685953, 0.02138565, -0.013407263, -0.05186982, 0.004872245, -0.0024275323, -0.008596866, -0.013056791, 0.0164653, -0.003137066, -0.029164748, -0.009662026, -0.025632543, -0.046014883, 0.010445433, 0.08130945, 0.038730565, 0.008720562, -0.0037108776, -0.014554886, 0.0012524212, -0.011283817, -0.004521773, 0.0013082562, -0.023722129, 0.03051166, -0.01239708, 0.014252518, 0.011895424, 0.027694141, -0.008328859, -0.011496848, -0.010713441, -0.0035167437, -0.002932624, -0.021852946, -0.021206979, 0.0072705713, 0.03966516, 0.014170054, -2.1313924E-4, 0.027075661, 0.018430691, 0.02689699, 0.008899234, 0.012665087, 0.021633042, -1.6278039E-4, 0.012245896, -0.0013795531, -0.0035390777, 0.02875243, 0.015022182, 0.015200854, 1.9456337E-4, -0.0052467687, 0.022979952, 0.020670962, -0.004617981, 0.018375715, -0.024615487, -0.021481859, 0.022512658, 0.033177994, -0.021426883, 0.029659532, 0.007676019, -0.032518283, -0.02511027, 0.01102268, 0.00595802, -0.011435, -0.017028805, -0.013689015, 0.009517713, -0.0011871372, -0.03856564, -0.0011725342, -0.0225264, -0.014376215, -0.020808402, -0.009235962, -0.007511091, -0.017234964, -0.0039582695, 0.0036730815, -0.017647285, 0.0048138327, -0.0022832204, 0.022828769, -0.0044255652, 0.032463305, 0.0069785113, 0.011902296, 0.012452056, -0.038593125, -0.021028306, 6.3737755E-4, -0.0299619, -0.0020976765, 0.007614171, -0.0047451127, 0.0021148566, -0.015915541, 0.013579063, 0.011187608, -0.0024533023, -0.030401709, 0.0057930923, 0.03501969, 0.01731743, 0.013036176, 0.020918354, 0.012294, 0.010514153, -0.00592366, -0.02014869, -0.004782909, -0.016863877, -0.020231154, -0.021083282, 0.014953462, -0.003169708, -0.021880433, -0.02845006, -0.017056292, -0.016987573, 7.962925E-4, -4.681547E-4, 0.011489976, 0.01832074, 0.021962898, 0.020959586, -0.019337796, 0.012919351, 0.009105394, -0.013173616, 0.01928282, 0.03746612, -0.008363218, 0.03284814, -0.0023296066, -0.015173366, 0.009132882, 0.023378529, -0.004463361, 0.011441872, -0.018444436, -0.008981698, -0.011723625, -0.0052261525, -0.010225529, -0.002915444, -0.004569877, 0.019612676, -0.01898045, 0.0057381163, 0.023570944, 0.0026130762, -0.019200355, -0.029082285, -0.0022557324, -0.018568132, 0.014293751, 0.028065229, 0.0032401457, 0.0048962967, -0.026402207, -0.012211536, -0.019956274, -0.023268577, -0.024642976, -0.013503471, 0.022182802, 0.016025493, 0.041369412, 0.0017188579, 0.0132560795, 0.018788036, 0.014128823, 0.028078973, -0.019598931, -0.008136443, -0.037768487, -0.004628289, 0.006274132, 0.023997009, -0.014994694, 0.005878992, -0.01649279, 0.015956774, -0.014541143, 0.010232401, 0.0038998574, -0.031556204, -0.015709382, 0.008102083, -0.034002632, -0.0020255207, -0.013558447, 0.008486914, 0.01880178, -0.0054529286, 0.0069853836, -0.0031387839, 0.019763859, -0.004130069, -4.0244122E-4, -0.022237778, 0.016877621, -0.025357664, -0.007992131, -0.01484351, -0.011201353, 0.0057930923, -0.00819829, 0.0067792237, 0.019337796, -0.023790848, 0.005885864, 0.03227089, -0.01928282, -0.025426384, 0.02383208, -0.012438312, -0.0128093995, -0.024849135, -0.005081841, -0.035596937, -0.027419262, -3.6593375E-4, -0.011998504, 0.00302196, -0.001530737, -0.036971334, 0.024821648, 8.4568496E-4, 0.04123197, 0.006074844, 0.043760866, 0.024478048, 0.009531458, -8.4482593E-4, -0.0054391846, -0.007655403, -0.0025288942, 0.013737119, 0.04574, -0.02511027, 0.007785971, 0.0070918994, -0.0052089724, -0.049340926, -0.032518283, 0.022251522, 0.029989388, 0.012713192, -0.026677087, 0.011029553, -0.032078475, 0.006531832, -0.005604112, 0.00604392, 0.008720562, -0.02287, -0.011943528, 0.0056247283, -7.1382854E-4, 0.0058618123, 0.02675955, -0.027350541, 0.011380024, -0.023392273, 0.0032453, -0.005896172, -0.020176178, 0.045492608, -0.019915042, 0.009627665, -0.0021062666, 0.021646786, 0.014706071, -0.0069819475, 0.001566815, 0.03199601, -0.00974449, 0.029989388, -0.0021062666, -0.01649279, 0.009923161, 0.021674274, -0.0011038142, -0.0048962967, -0.025165247, 0.004614545, 0.01866434, 0.008974826, 0.016259141, -0.0023588124, -0.024230655, -0.018430691, 0.011510592, -0.010019369, 0.00850753, -0.03323297, 0.011325048, -0.007696635, -0.0038345736, -0.014472422, 0.006325672, -0.008535018, 0.0010058883, -0.0064699836, -0.019392772, -0.007222467, -0.027006943, -0.01735866, -0.042551395, -0.027790349, -0.0113594085, -0.016643973, 0.007071283, -8.0015796E-4, -0.013874559, -0.018334484, 3.9256274E-4, 7.4786636E-5, 0.0032126578, 2.8776482E-4, 5.768181E-4, 0.0035218976, -0.0057071922, -0.023639664, 0.007999003, 0.02255389, -0.005796528, 0.0026371283, -0.0034377158, 0.003094116, 0.037740998, -0.014678583, 0.013173616, -0.0032332737, -0.010988321, -0.007689763, 0.02541264, 0.016973829, 0.030126829, 0.002817518, -0.026470926, -0.008315114, -0.018293252, 0.020849634, -1.0415368E-4, 0.010266761, 0.023557201, 0.028092718, 0.02186669, 0.033315435, -0.008184547, -0.009875057, 7.1254E-4, -0.001557366, -0.020189922, -0.0028759302, 0.011435, 0.0054563642, -0.006394392, -0.014967206, -0.042194054, -0.014211287, -0.026402207, -0.038208295, -0.0059030442, 0.005909916, 0.018444436, 0.006253516, -0.0041919174, 0.0070266156, 0.0017514998, 0.0025443563, -0.019049171, -0.0054151323, 0.028120205, 0.002877648, 0.047746625, 0.02344725, -0.03405761, -0.013908919, 0.007332419, 0.02451928, 0.0037555455, 0.027749117, -0.009875057, -0.009483354, -7.730995E-4, -0.004971889, -0.022155313, 0.0022282444, 0.031583693, -0.032875627, -0.0012446902, 0.013737119, 0.013689015, 9.921443E-4, 0.0057071922, 0.014115078, 0.0035562576, 0.010630977, 0.0034067917, -0.016685205, -0.006298184, -0.020519778, 0.020409826, 0.0017626669, 5.9786363E-4, 0.05200726, 0.022677585, -0.0026062042, 0.0020822147, -0.016698949, 0.011730496, -0.010871497, 0.007462987, 0.0068341997, 0.012926224, -0.037383657, 0.008026491, -0.024423072, 0.00861061, 0.00583776, -0.01639658, -0.0033037118, 0.040627237, 0.014527398, -0.061133273, 0.013434751, -0.013297311, 0.0083769625, -0.011173865, -0.0038483175, -0.01948898, -0.010466049, 0.0023124265, 0.004394641, -0.015970517, -0.016451556, -0.002845006, 0.0013408981, -0.014582374, 0.0073255473, 0.19230592, -0.0037005695, 0.005824016, 0.033810217, -0.0011416102, -0.0035133078, 0.021825457, 0.031418763, -0.008555634, 0.01694634, -0.004779473, 0.006188232, 0.008892362, -0.00289311, 0.013043047, -0.027391775, -0.042249028, -0.018018372, -0.012555135, -0.02035485, 0.0119504, 0.004380897, -8.06171E-4, -0.021069538, 0.01553071, 0.01546199, -0.0028690582, 0.012637599, 0.02792779, 0.0068341997, -0.01667146, -0.015063414, 0.007724123, 0.001516134, -0.012589496, -1.0597905E-4, 7.9886947E-4, 0.01704255, 0.027116895, -0.0035218976, -0.011888552, -0.0013134101, -0.017798468, -8.0144644E-4, 0.007978387, 0.009077906, -0.026086094, -0.008301371, -0.017592309, 0.007222467, -0.039720133, -0.0017463459, 0.029164748, 0.017619796, -0.010088089, -0.014953462, 0.014857254, 0.0011003782, -0.010397329, 0.0065971157, 0.024876624, 0.036696456, -0.031638667, 0.021536835, -0.010115577, 1.9477813E-4, -0.020437315, -0.01181296, 0.020602243, -0.022952465, -0.014884742, -0.01900794, -0.0034617677, -0.0028346982, -0.0062088477, -0.0129812, 0.012252768, 5.4074015E-4, 0.012582623, 0.02954958, -0.035926793, -0.007359907, 0.02280128, -0.010039985, -0.01102268, -0.013668399, 0.00936653, -0.018018372, 0.0027024122, -0.022017874, -0.019420259, -0.030484172, -0.0062363357, -0.0052811285, -0.013585935, -0.01181296, 0.018265763, 0.0046901368, -0.005920224, 0.010149937, -0.026127327, 0.03268321, 0.005858376, -0.018279508, -0.026663342, -0.013833327, -0.013166743, 0.005552572, 0.024271889, -0.01948898, -0.012520776, -0.025495103, -0.009490225, -0.012273384, 7.44323E-4, 0.035239592, -0.0023450684, -0.018430691, 0.03419505, -0.01019117, -0.013201104, -0.039802596, 0.015956774, 0.004181609, -0.006140128, -0.035871815, -0.017853444, -0.009730745, -0.014266263, -0.031446252, 0.03455239, -0.004542389, 0.0037211855, -0.0056693964, 0.0011175582, -0.011641161, 0.025701262, -0.009765105, 0.0066142958, 0.009029802, -0.012658216, -0.012314616, 0.012651344, 0.016245397, 0.001496377, -0.0384282, -0.0019035428, -0.0069269715, -0.011476233, -0.01573687, -0.03510215, 0.0034016378, 0.0063050557, 0.017001316, 0.039527718, 0.006085152, -0.011393769, -0.034305003, -0.0033741498, 0.050193056, -0.032463305, 0.012211536, 0.039417766, -0.015090902, -0.029934412, -0.011173865, -0.17592308, 0.027735373, 5.3558615E-4, -0.031941034, 0.016410325, 0.024368096, 0.01925533, -0.010541641, 0.0067414274, -0.014307494, 0.04425565, 0.0022093465, -0.027680397, -0.0055353926, -0.0044118213, 0.009902545, -0.018829267, 0.027707886, 0.04318362, 0.0013237181, 0.039582692, -0.016094213, -0.0034634857, -0.0010643003, 0.006188232, 0.019818835, 0.024299376, -0.007909667, 0.0094627375, 0.0027419261, -0.044585507, -0.017935907, 0.029604556, 0.002808928, -0.011050168, 0.0036112336, -0.023460992, 0.005789656, -0.013400391, -0.0052158446, 0.026154814, 0.012699448, 0.02403824, 7.56349E-4, 0.009572689, 0.008143314, 0.018609364, -0.01553071, 0.009991881, -0.01639658, -0.016712693, -0.031171372, 0.032353353, 6.2706956E-4, 0.001461158, 0.025027808, 0.008809898, 0.019062916, 0.010596617, 0.015379526, -0.022086594, -0.0049066045, 0.0079852585, -0.018691828, -0.013537831, -0.008411323, -0.026814526, 0.0031868878, -0.033590313, 0.020203667, -0.015640661, 0.026787039, 0.016877621, -2.9549582E-4, -9.5263036E-4, -0.029796973, -0.02902731, 0.0017016779, 0.001411336, -4.0845422E-4, -0.018238276, 0.030181805, -0.0054288763, 0.00151957, -0.006085152, -0.010163682, 0.013709631, -0.0049478365, -0.0083769625, -0.007511091, 0.013654655, -0.022251522, -0.03337041, -0.0023863004, -0.009868185, -0.002934342, -0.012548264, 0.011874808, 0.011565568, -0.015159622, -0.01619042, -0.020615986, -0.013414135, 0.025247712, 0.008754922, -0.013558447, 0.008019619, 0.027955277, 0.016547766, 0.010115577, -0.024120703, -0.0010531333, 0.027130637, 0.012994943, -0.014142566, 0.010239273, -0.021756738, -0.021275697, -0.0017661029, 0.015283318, 0.058219545, 0.006260388, 0.010445433, -0.014939718, -0.009861314, -0.0065833717, -0.08823642, 4.926362E-4, -0.0012996661, 0.04409072, -0.024876624, 0.052364606, 0.0083219865, 0.022375217, -0.010232401, 0.027872814, 0.00318517, -0.040269893, 0.008115826, -0.009277194, -0.0019894426, 0.006109204, -0.021578066, -0.01005373, -0.0010866342, 0.032078475, -0.009235962, -0.021399394, -0.01408759, -0.022375217, -0.021935409, 0.022828769, -0.026113583, 0.019434003, 0.008363218, 3.057501E-5, -0.0010419663, -0.024354352, 0.018678084, -0.04332106, -0.014967206, -0.009593306, -0.008239523, -0.022705073, 0.004672957, -0.052089725, 1.7663176E-4, 0.01225964, -0.0012481262, -0.015888054, -0.008809898, 0.004872245, -0.041506853, 0.022265265, -0.004071657, -0.0138127105, -0.020822147, -0.02035485, -0.036559016, -0.006081716, 0.022663841, 0.013008688, 0.022691328, 0.004903169, -0.017661028, -0.026677087, 0.006174488, 0.0021698326, -0.025646286, 0.020547267, 0.009359658, 0.011050168, 0.0024137883, -0.018004628, 0.02730931, -0.0103286095, -0.024079472, 0.022017874, -0.039692644, -0.005937404, -0.011112017, -0.006356596, -0.024642976, -0.028230157, 0.026649598, -0.04362343, 0.011703008, -0.03554196, 0.014293751, -0.011057041, 0.013957023, 0.010706569, 0.014541143, 0.0018227968, -0.006463112, -0.05068784, -0.0028484422, 0.02307616, 0.004418693, 0.008445682, 0.0064562396, 0.016822645, -9.5263036E-4, 0.0025409204, -0.013132383, 0.019379027, -0.009703257, -0.011318176, -0.07383272, 0.043760866, -0.007923411, -0.00295324, -2.4803609E-5, -0.009758233, -0.008940466, 0.009689514, -0.0070369234, 0.023337297, 0.0024945342, 0.029604556, -0.008871746, -0.008693074, -0.0055491365, 0.013070535, 0.0018657468, -0.0067586075, 0.013544703, 0.0065112156, -0.019873811, 0.01756482, 0.035047177, 0.00837009, 0.016822645, 0.020725938, -0.011867936, 0.0034480237, -0.0292747, -0.005676268, 0.02899982, -0.013455367, 0.0027986201, 0.00285016, -0.0037967775, -0.022608865, -0.011194481, 0.004899733, 0.008624354, 0.0062088477, -9.904264E-4, -0.016657718, -0.005690012, 0.0123352315, -0.015929285, 0.016080469, -0.018348228, 0.0128368875, 0.020464802, 0.009998754, 0.008445682, 0.0036730815, -0.00991629, -0.0065902434, 0.007181235, -0.019791346, 0.0464272, -0.001429375, -0.010816521, -0.017963396, 0.018499412, 0.011084529, 0.019791346, -0.02954958, 6.610001E-4, -0.012252768, 0.011270072, -9.569254E-4, 0.0011639443, -0.03675143, -0.028917357, 5.7510013E-4, -0.0026646163, 0.034882247, 0.010864625, 0.02207285, 0.007524835, -0.009290938, -0.013565319, 0.020822147, 0.00916037, -0.0020134947, -0.029467117, 0.020506034, -0.024478048, 0.0021045485, 0.006174488, 0.010445433, 0.0071606194, 0.012562008, 5.905621E-4, 0.011112017, 0.033205483, -0.0052673845, 0.018636853, 0.0066898875, -0.0038998574, -0.025165247, 0.0027367722, 0.016602742, -3.0923978E-4, -0.0022746306, -0.0050852764, -0.026319742, -0.022663841, 0.0039891936, -0.029714508, -0.014706071, 0.010012497, 0.012541392, 0.028065229, 0.013881431, -0.0039720135, 0.009483354, -0.03051166, 0.004466797, -0.018334484, -0.016616484, -0.015516966, 0.045382656, 0.01225964, 0.0013795531, 0.034524906, -0.006088588, 0.056625243, 0.009016058, 0.030841516, -0.03240833, -9.466174E-4, -6.1332557E-4, 0.016052982, -0.0010892113, -0.019241586, 0.017262453, -0.015901798, 0.013345415, 0.012025992, 0.04222154, -0.015626919, 0.072953105, 0.016135445, -0.0036902616, 0.004611109, 0.0036181055, 0.017138757, 0.017331172, 9.363094E-4, -0.01395015, -0.0113044325, -0.017674772, -0.014128823, 0.008603739, -0.034524906, 0.0064287516, -0.0039239093, 0.015145878, 0.0038586254, -0.015297062, -0.029714508, -0.019653907, 0.008638098, 0.028285133, 0.018197045, 0.0024687643, -0.005899608, 0.015819333, -0.0025958964, 2.4374109E-4, -0.023406016, 0.003164554, -0.026567135, 0.00296183, -0.014211287, 0.030869003, -0.0013520651, -0.01222528, 0.029769484, 0.029192237, 0.010067473, -0.010307993, -0.017179988, -0.022375217, -0.025371408, 0.020547267, -0.007304931, -0.004738241, -0.023612177, -0.016506532 ], + "id" : "6c893779-198d-4e18-895d-74ef3cb87340", + "metadata" : { + "source" : "movies.csv" + } + }, + "925c2d77-e422-40f9-9159-a7ae48cf7bfa" : { + "text" : "9,4840,Jamie Bell-Daniel Craig-Andy Serkis-Nick Frost-Simon Pegg-Cary Elwes-Tony Curran-Toby Jones-Daniel Mays-Sebastian Roch��-Phillip Rhys-Mark Ivanir-Gad Elmaleh-Jacquie Barnbrook-Joe Starr-Enn Reitel-Mackenzie Crook-Sonje Fortag-Ron Bottitta-Nathan Meister-Kim Stengel,riddle-captain-treasure-morocco-liquor-treasure hunt-based on comic-sunken treasure-plot-reporter-1950s,/mKYkNro2btaWMsnYSuyqrBdHQo3.jpg,/5parN40mSwZMCP4Ig11lE6keeFi.jpg,46195-44826-44896-217-49444-58574-953-89-80321-13053-15512-38055-87-10191-10527-9502-57800-20526-10140-10528-81188\r\n72559,G.I. Joe: Retaliation,Science Fiction-Adventure-Action-Thriller,en,Framed for crimes against the country the G.I. Joe team is terminated by Presidential order. This forces the G.I. Joes into not only fighting their mortal enemy Cobra; they are forced to contend with threats from within the government that jeopardize their very existence.,27.013,Paramount-Metro-Goldwyn-Mayer-Di Bonaventura Pictures-Hasbro-Saints LA-Skydance Media,3/27/13,130000000,371876278,110,Released,,5.6,5049,Dwayne Johnson-Bruce Willis-Jonathan Pryce-Adrianne Palicki-Ray Park-Ray Stevenson-�lodie Yung-Lee Byung-hun-D.J. Cotrona-Luke Bracey-Channing Tatum-Joseph Mazzello-RZA-Arnold Vosloo-Walton Goggins-Matt Gerald-Joe Chrest-DeRay Davis-Ravi Naidu-Terry Dale Parks-Grant Goodman-Naim Alherimi-Douglas M. Griffin-James Carville-Ryan Hansen-Joanna Leeds-Ilia Volok-Dikran Tulaine-Robert Catrini-Marcelo Tubert-James Lew-Ajay Mehta-Augustus Cho-Raja Deka-Tiffany Lonsdale-Chip Carriere-Jim Palmer-Arnold Chon-Dennis Keiffer-Amin Joseph-Edgar Leza-Aaron V. Williamson-Ricardo Vargas-Mikal Vega,assassin-technology-missile-warhead-president-rescue-conspiracy-explosion-battle-surveillance-cobra,/3rWIZMzTKcCtV0eHJ70Z4Ru659f.jpg,/pEhXq18GVe1dg2ltplcxtGWfSje.jpg,14869-82992-47964-117263-76163-75612-81005-68721-60304-76170-64635-39514-68726-49521-37724-24428-56292-49051-119283-59967-44833\r\n534,Terminator Salvation,Action-Science Fiction-Thriller,en,All grown up in post-apocalyptic 2018 John Connor must lead the resistance of humans against the increasingly dominating militaristic robots. But when Marcus Wright appears his existence confuses the mission as Connor tries to determine whether Wright has come from the future or the past -- and whether he's friend or foe.,56.554,Columbia Pictures-The Halcyon Company-Wonderland Sound and Vision-Warner Bros.", + "embedding" : [ 7.0685206E-4, -0.044018067, -0.02880295, -0.034823906, -0.023893973, 0.04046516, -0.011560506, -7.6533266E-4, -0.028667344, -0.020964859, 0.030457357, 0.036776647, 0.009207723, -0.0020086803, 0.013967533, 0.01238771, 0.0105163315, -0.016571188, 0.007844872, -0.032193128, -7.691466E-4, -0.0033461056, -0.018347641, 0.005037804, 0.011262171, 0.0071397144, 0.027596047, -0.013275936, -0.014564204, 0.0045462283, 0.015567697, -0.019229088, -0.0061260513, -0.018225595, -0.019554546, 0.0087873405, 3.1571032E-4, -0.020734327, 0.032708436, -0.004352988, 0.0022934552, 0.0068752808, -0.010807887, -0.0051768017, -0.014862539, 0.0022409074, 0.008672074, -0.022198884, -0.008651733, 0.03335935, 0.026267098, 0.035990126, -0.02670104, -0.031189635, -0.013181011, 0.012163958, -0.023514273, 0.0067667947, 0.0061802943, -0.0020052902, 0.013058965, -0.016164368, -0.031786308, -0.02020546, -0.0076550213, -0.013886169, -0.0054988684, -0.017249225, 0.0031901572, 0.0167746, 0.0072753215, 0.028070671, 0.02554838, 0.020463113, 0.012984381, -0.038458176, -0.020829253, 0.0031901572, -0.0048513445, 0.012089374, 0.016937329, -0.003851242, -0.011343535, -0.0069634253, 0.021819184, 0.008753439, -0.016706796, 0.010190874, -0.019364696, 0.0055225994, 0.012875895, 0.044696104, -0.010923153, 0.007797409, -0.013411543, 0.026172172, -0.018361203, 0.02346003, -0.022592144, -0.048845682, -0.00456996, -0.005393773, -0.009438255, -0.011350315, 0.002595181, 6.9413893E-4, -0.003851242, -0.0076482412, 0.019568106, 0.009655226, 0.0014289599, 0.004315696, 0.018022185, -0.026362022, -0.0070786914, -0.013574271, 0.026660359, -0.017398393, -0.007187177, -0.023039648, 0.03146085, 0.02308033, 0.014848978, -0.033305105, 0.037536047, 0.034661178, -0.0040478725, -0.011763917, 0.0076889233, -0.0015976212, 0.024002459, -0.0051801917, 0.027880821, 0.010963835, -0.025616184, 0.05755166, -0.02651119, 0.011723235, -0.01543209, -0.011499483, 0.029426742, 0.039109092, -0.018415445, -0.023351545, -0.01737127, -0.007153275, 0.008468664, 0.0064311675, 0.017791653, -6.9498643E-4, 0.020937737, 0.021941232, 0.023378666, 0.019391816, 0.02078857, -0.0026341681, -0.0010780765, -0.0068515493, -0.0029426743, -0.02289048, -0.004824223, -0.0032867773, 0.0070786914, -0.020164777, 0.0069091823, 0.018930752, 0.029508108, -0.019717274, -0.006597286, 0.008299155, -0.007885554, 0.022524342, -0.016177928, 0.016150806, -0.0052174837, 0.02042243, -0.0013891254, -0.020286825, -0.03319662, -0.02613149, 0.008373739, 0.0120080095, 0.029019922, 0.033440713, -0.0021663236, 0.005041194, 0.024938148, -0.013133549, 0.023378666, -0.008305935, 0.004105505, 0.017262785, -0.0105163315, -0.008705976, -0.637028, -0.018049307, -0.0031901572, -0.011689333, 0.017059375, 0.024883905, 0.0030562454, -0.0031986327, -0.031325243, -0.010231556, -0.018713782, 0.008604271, 0.02477542, -0.010394285, -0.017100057, -0.010821448, -0.0038919242, -0.011994449, 0.015377847, 0.006732893, -0.037644535, 0.028857194, 0.019296892, -0.007905895, 0.0070244484, 0.0015603293, -0.01830696, -0.018930752, -0.0021019103, -0.0068413788, -0.0066108466, 0.0048140525, 0.012035131, 0.011960547, 0.037020743, 0.0058616176, -0.019351134, 0.04426216, 0.02383973, 0.040546525, -0.022673508, -0.013533589, 0.013967533, -3.31178E-4, -0.020652963, 0.028450372, -0.0014832028, 0.011092662, -0.0065905056, -0.0028189328, -0.0027748605, -0.006363364, -0.010923153, -0.011519824, -0.009309428, -9.3653664E-4, 0.012889456, -0.051340852, 0.018808706, -0.004712347, -0.01297082, 0.030294629, -0.002422282, 0.0066650896, -0.014360793, 0.031732064, 0.0059463717, -0.017086497, 0.00705157, -0.031026907, 0.008312716, 0.0018815487, -0.022402294, -0.0031494752, -0.010211215, 0.010143412, 0.032735556, -0.003222364, -0.0087669995, 0.021249635, 0.005780253, -0.007756727, -0.004997122, 0.019161284, 0.025873836, -0.0051225587, -0.030755693, 0.0104620885, 0.022659948, 0.0015789754, 0.004800492, 0.023229498, 0.013777683, 0.016299974, -0.0048954166, -0.012611462, -0.005000512, -0.0014450633, 0.0381056, -0.058419544, -0.011282512, -0.008373739, 0.03398314, -0.014184504, 0.022836238, 0.008746658, -0.0011696114, -0.004905587, 0.025073756, -0.017683167, -0.013221693, 0.002518902, -0.010882471, 4.623355E-4, -2.5002562E-4, -0.033033893, 0.028748708, 0.017439075, -0.0036919035, -0.007288882, 0.007512634, 0.0052310443, 0.015472772, -0.017059375, 0.012896236, 0.024856783, -0.010123071, -0.005956542, 0.0156355, 0.0021408973, 0.0017272956, -0.0020527525, 0.014550643, -0.019134164, 0.0025646696, 0.007173616, 0.016815282, -0.004671665, 0.02211752, -0.00496322, -0.01868666, -0.010753644, -0.014442157, -0.010848569, -0.008421201, -0.019500302, -0.042878967, -0.0046411534, -0.011770697, -0.018917192, -0.009106018, 0.02116827, 0.011194367, 0.004742859, 0.01582535, 4.5216497E-4, -0.032735556, -0.018971436, 0.004749639, -0.023731245, 0.007797409, 0.015011707, -0.009648446, -0.019880002, 0.02042243, 0.0059090797, -0.0023002357, 0.013438664, -0.00533275, -0.0121164955, 0.023622759, -0.0031698162, 0.0018578174, 0.010373944, -0.019310452, 0.02994205, -0.01810355, 0.021670016, 0.015920274, -0.0054649664, -0.0015916885, -0.0023188817, -0.025806034, -0.0042614536, 0.029589472, 0.016096564, 0.020246143, 0.0035223947, -0.012401271, 0.0045224973, -0.014509961, -0.013221693, -0.010638378, 0.0068040867, 0.0026036566, 0.028287644, -0.0030003074, -0.011160465, 0.004742859, 0.011011298, 0.04005834, 0.024721177, 0.011675772, -0.017411953, 0.0040512625, -0.029969173, 0.00820423, -0.029508108, 0.015730426, -0.014320111, 0.025277166, -0.006234537, -0.013018283, 0.007166836, 0.004634373, 0.02459913, -0.0088212425, 0.002230737, -0.019744396, 0.0018578174, -0.008122866, -0.011011298, 0.019771516, 0.006583725, -0.03105403, 0.0060277362, 0.030403115, -0.024802541, -0.014943903, -0.018320521, 0.004847954, -0.005570062, -0.0023358325, 0.009411134, -0.007322784, -0.00781775, 0.02896568, -0.01966303, 0.043394275, -0.012889456, -0.00972303, 0.01600164, 0.020069852, -0.0030257336, 0.007871993, -0.012882676, 0.020124095, 0.008427982, -0.017452635, 0.043557003, -0.0190528, 0.015730426, -0.010034926, 0.016720356, -0.001467947, -0.0074651716, 0.004807272, 0.005020853, 0.024843223, 0.013072525, 0.03376617, -0.02556194, 0.027568925, 0.007261761, 0.028260522, 0.015798228, -0.019296892, -6.0853694E-4, -8.115238E-4, -0.029969173, -0.023297302, -0.0049530496, -2.6295066E-4, 0.017344149, -0.012001229, -0.0056005735, 0.0061226613, 0.013004722, 0.007871993, 0.014550643, 8.9076924E-4, -0.037102107, 0.020544477, 0.025236484, -0.008617832, -0.026280658, -0.0067057717, -0.020286825, -0.040139705, 8.2932226E-4, -0.019378256, 0.041143198, -0.016367778, 0.011465581, -0.019310452, -4.4199443E-4, 0.008482225, -0.020964859, 0.026063686, 0.01544565, -0.005858227, 0.014577764, 0.0025511088, -0.007302443, 0.020951299, -0.01661187, 1.1876217E-4, 0.0030325141, 0.0045258873, -0.006637968, 0.002346003, 0.011024858, -0.037834384, 0.006424387, -0.0064311675, -1.7713678E-4, -0.012482635, -0.011980888, 0.004671665, -0.002839274, -0.020571599, -0.025222924, -0.019161284, 0.0010958749, 0.08011668, 0.047272637, 0.01297082, -4.3902802E-4, -0.00572601, 0.004820833, -0.005207313, -0.008990752, -0.0073092235, -0.01811711, 0.01886295, -0.0071193734, 0.025087316, 0.011268951, 2.6612895E-4, -5.7548267E-4, -0.014116701, -0.009499278, -0.008902607, -0.017045815, -0.020273263, -0.0052649463, 0.016666114, 0.029670836, 0.016638992, -0.018808706, 0.021629333, 0.011736795, -0.0015204947, 0.0088890465, -0.0072482, 0.002801982, 0.0014060762, 0.0050242436, 0.0076211197, -0.0051598507, 0.024517765, 0.010028146, 0.018401885, -0.0012187689, -0.012821652, -2.1019102E-4, 0.0016628822, -0.017818775, 0.017967943, -0.029616592, -0.011485922, 0.026606115, 0.03205752, -0.034634057, 0.0152286785, 0.0060650283, -0.008692415, -0.0068651102, 0.0059802737, -0.0052378247, -0.01848325, 2.7735892E-4, -0.017628925, 0.008746658, -0.004020751, -0.0308913, 0.015201557, -0.0032003277, -0.004366549, -0.009302648, -0.005895519, -0.0066244076, -0.012157178, 0.010611257, 0.00781097, -0.022659948, -0.009594203, -0.005678548, 0.017642485, -0.0030528551, 0.02230737, -0.019120602, 0.014076018, -0.0023358325, -0.027745215, -0.027799457, 0.012882676, -0.024043141, -0.0017018693, 0.010916373, -0.012597901, 0.017750971, -0.0025968761, 0.008990752, 0.0044004507, 3.2397386E-4, -0.013953972, -0.009763712, 0.03257283, 0.017588243, 0.014577764, 0.008061843, 0.0087873405, 0.019107042, 2.9685243E-4, -0.025900958, -9.416219E-4, -0.021453045, -0.014469279, -0.008312716, -0.004668275, 0.006305731, -0.015933836, -0.010584135, -0.02477542, -0.010211215, 0.011648651, -0.004610642, 2.3413416E-4, -0.011750356, 0.022659948, 0.016693236, -0.0038241206, 0.016828842, 0.0013679367, -0.0156355, 0.02328374, 0.017818775, -0.0070583504, 0.035529062, -0.007153275, -0.030267507, -0.0045055463, 0.02956235, -0.0156355, 0.007146495, -0.029236894, 0.0055158194, -0.014455718, -0.020869935, 0.014170943, 0.00877378, -0.0044207918, 0.011750356, -0.024477083, 0.006634578, 0.004803882, 8.755134E-4, -0.014903221, -0.025290726, 0.009614544, -0.011980888, 0.0028545298, 0.029074164, -0.007865213, 0.013981094, -0.01944606, -0.006468459, 5.449711E-4, -0.04594369, -0.0267146, 0.009851857, 0.041685626, 0.017127179, 0.03905485, -0.004424182, 0.021832746, 0.0068922313, 0.017737411, 0.011574067, -0.020191899, -0.0021815794, -0.0369665, -0.0040682135, 0.010929933, 0.006390485, 0.007478732, 0.009546741, 0.013940411, 0.02386685, 0.012991161, 0.0070583504, 0.0015552441, -0.013486127, -0.02440928, 0.010367163, -0.029318258, 0.001289115, -0.027704533, -0.025765352, 0.036478315, 0.004041092, -0.0061091003, -0.011885963, 0.036098614, 0.0017713679, 0.02114115, -0.029236894, 0.019527424, -0.031433728, 0.005583623, -0.022673508, -0.002649424, 6.0514675E-4, -0.0046174224, 0.021208953, -0.0056921085, -0.00895685, 0.0040343115, 0.029779322, -0.027229909, -0.015364286, 0.019622348, -0.011513044, -0.0072346395, -0.027067179, -0.0055429405, -0.01564906, -0.011668992, -3.263046E-4, -0.004939489, 0.005397163, -0.02594164, -0.043909583, 0.021493727, -0.0027341784, 0.042634875, 0.023419349, 0.04993054, 0.02896568, 0.020680085, -0.021303877, 0.0071397144, -0.00820423, -8.7805605E-4, 0.022863358, 0.037129227, -0.021954792, -0.0050479746, -0.0029104676, -0.011465581, -0.034579813, -0.035963006, 0.028531736, 0.01429299, 0.014957464, -0.031786308, 4.5979285E-4, -0.035773154, 3.1613407E-4, -0.014591325, 0.004163138, 0.013004722, -0.04214669, -0.019215528, -0.0056582065, -0.00859071, 0.028260522, 0.004495376, -0.025914518, 0.022551462, -0.019676592, 0.003946167, -0.010807887, -0.0041122856, 0.025806034, -0.022158202, 0.012618242, 0.004614032, 0.0039359964, 0.007994039, -1.4111615E-4, 0.010828228, 0.02820628, -0.015757546, 0.024870344, 0.012462294, 0.010936714, 0.0061430023, 0.016083004, -0.024748297, -0.012943699, -0.018334081, -0.0059429817, 0.028179158, 0.0042987457, -0.007933016, -0.0042411126, -0.019676592, -0.012841993, 0.006390485, 0.0052276542, 0.006793916, -0.02630778, 0.013798024, 0.004532668, 0.009906099, -0.01029936, 0.0029104676, 0.008217791, -0.008149987, 0.008577149, -0.008285594, -0.014116701, -0.025331408, -0.014157383, -0.035963006, -0.023880413, -0.010706182, -0.009065336, 0.012604681, -0.029019922, 9.119578E-4, -0.012611462, -0.00913992, -0.0055937935, 0.002956235, -0.022781994, 0.008617832, 0.025277166, -0.013106427, 0.018917192, -0.002822323, 0.03238298, 0.015499893, 7.954205E-4, 0.0010518027, 0.005936201, 0.03200328, -0.02402958, 0.010957055, 0.0068888413, -0.02651119, -0.018225595, 0.027663851, 0.03295253, 0.013004722, -0.007851652, -0.021575091, -0.0104824295, -0.012462294, 0.03905485, -0.009512839, -0.00819745, 0.018944314, 0.013004722, 0.04369261, 0.023297302, -0.0046038614, -0.035176486, 0.014198065, -0.012252103, -0.028884314, -0.0011196062, 0.003166426, 0.011479142, 0.0038987044, -0.014143822, -0.02614505, -0.006539653, -0.025127998, -0.032545708, -0.006383705, 0.026619677, 0.04095335, 0.018049307, 0.0037258053, 0.018374763, 0.0060480773, 0.0014984586, -0.013940411, -0.012509756, 0.012238542, 0.0033494956, 0.0136827575, 0.010685841, -0.025507698, -0.0062209764, 0.0048920265, 0.022551462, -0.0032003277, 0.02152085, -0.012862335, -0.008685635, -0.013791244, 8.098287E-4, -0.002422282, 0.0019663032, 0.0289928, -0.020883495, -0.0017289907, 0.009051775, 0.023636319, -0.0043834997, 0.004634373, 0.014021776, -0.01030614, -0.018212035, -0.009594203, -0.034308597, -0.0035901982, -0.028124915, 0.02651119, 0.0088890465, -0.00992644, 0.02458557, 0.0267146, -0.010923153, 0.0022358221, -0.015160875, 0.0064752395, -0.017466197, -6.234749E-5, 0.006810867, 0.030023415, -0.031379487, 0.017764531, -0.038431056, 4.286456E-4, -0.007878773, 0.013201352, -0.0120283505, 0.031135393, 0.01582535, -0.061836842, 0.003698684, -7.977512E-5, -0.003963118, -7.8821636E-4, 0.005641256, -0.027257029, -9.289087E-4, -0.0046174224, -4.33519E-4, -0.021100467, -0.018510371, 0.008129646, -0.009628105, -0.020354627, 0.005017463, 0.18258141, -0.014333672, 0.012882676, 0.048140526, 0.017411953, 0.0045801303, 0.020354627, 0.015879592, -0.017886577, 2.6930726E-4, -0.0063396324, 0.010095949, 0.003756317, 0.004705567, 0.017886577, -0.027677411, -0.020924177, -0.026239976, -0.023026088, -0.026456948, -0.009953562, 0.00686172, -0.0136420755, -0.01945962, 0.0013069136, -0.012726728, -0.011397778, 0.00934333, 0.02114115, 0.013438664, -0.015757546, -0.017642485, 0.0022053106, 0.012313126, -0.017764531, -0.0051768017, -0.013825145, 0.0072956625, 0.0023544785, -0.0022239566, -0.0013043709, -0.0054378454, -0.008536467, -0.009411134, 0.003759707, 0.020937737, -0.021303877, -0.011411338, -0.021941232, 0.010272238, -0.047164153, -0.006387095, 0.0156355, 0.02328374, -2.7354498E-4, -0.006326072, 0.010156972, -0.004532668, 0.001734076, 0.004458084, 0.0034545911, 0.038051356, -0.025711108, 0.016652552, -0.008990752, 0.024856783, -0.038810756, -0.0062379274, 0.016245732, -0.038078476, -0.010719742, -0.021561531, -0.022198884, 0.009180602, 0.0013594613, -0.018388323, 0.006732893, 0.008692415, 0.010055267, 0.008699196, -0.013601393, -0.030023415, 0.01963591, -0.014848978, -0.0052852873, -0.02080213, 0.00515307, -0.020327507, -0.004864905, -0.019947806, -0.0069702053, -0.033250865, -0.016679674, -0.008224571, -0.009824735, 0.0037495366, 0.026470508, 0.027243469, -0.0075465357, -0.01564906, -0.027338393, 0.035583306, 0.009695908, -0.0028494445, -0.032355856, -0.016828842, -1.4228153E-4, 0.0038444616, 0.027772337, -0.009872198, -0.012672485, -0.03148797, 0.010353603, -0.0028324935, 0.0023816, 0.019310452, 0.0030613306, 0.0011009602, 0.04409943, -0.027501123, 0.006597286, -0.017344149, 0.01754756, 0.006427777, -0.010889251, -0.033467837, -0.03645119, 0.004671665, -0.013208132, -0.03623422, 0.011553726, -0.017723849, 0.01277419, -0.0020747888, 0.008163548, -0.0011560506, 0.0190528, 0.005854837, -0.0019561325, 0.0052174837, 0.0036546118, -0.004481815, 0.005566672, 0.015567697, 0.0013959057, -0.023500713, 0.010021365, -0.0057734726, -0.010319701, -0.032084644, -0.007851652, -0.010204435, -0.0059667127, 0.011390997, 0.043557003, -0.009987464, -0.016055882, -0.039732885, -0.016083004, 0.043529883, -0.05299526, 0.018808706, 0.012828433, -0.01696445, -0.025900958, -0.0034359451, -0.17390256, 0.017140739, 0.0021917499, -0.030647207, 0.01964947, 0.011865622, 0.0308913, 0.02476186, 0.0039326064, -0.014943903, 0.020191899, 0.013404763, -0.034444205, -0.0011577457, -0.0015060864, 0.016177928, -0.009451816, 0.033847533, 0.020558039, 0.008997532, 0.040763497, -0.004647934, -0.016625432, -0.002937589, 0.014008215, -0.001373022, 0.018144231, -4.6699698E-4, 0.013709879, -0.004725908, -0.02670104, 0.0021493728, 0.018334081, 0.0037427563, -0.009451816, 0.0044038408, -0.014387915, -0.015920274, -0.004844564, -0.007593998, 0.04087198, 0.009384012, 0.019093482, 0.018144231, 0.009004313, 0.0106655, 0.02270063, -0.018768024, 0.018645978, -0.026253536, -0.004271624, -0.047923554, 0.029670836, -0.006312511, -0.0010958749, 0.022632826, 0.00895007, -0.015798228, 0.006543043, -0.0027172274, -0.023893973, -0.01316745, 0.01183172, -0.013404763, -0.0014018385, -0.02308033, -0.02191411, 0.0010670584, -0.037454683, 0.009567082, -0.025046634, -2.4494034E-4, 0.0136624165, 0.005112388, -4.33519E-4, -0.017045815, -0.03295253, 0.005414114, -0.0059836637, 0.01697801, -0.0047394685, 0.0358274, 0.0015704999, 0.015472772, 0.021507287, -0.024490645, -3.095656E-4, -0.0063769245, -0.0032545708, -0.0035901982, 0.012719947, -0.011546945, -0.04022107, 0.008461883, 0.006159953, 0.006444728, -0.009370452, 0.004634373, 0.0083873, -0.009017873, 0.004058043, -0.0039800685, -0.023392227, 0.025060194, 0.027690971, 0.007532975, 0.008068623, 0.02386685, 0.023310862, 0.0054208944, -0.005397163, 0.0046750554, 0.004312306, 0.016476264, -0.018239157, 0.0060345163, -0.010272238, -0.035610426, 0.010184094, 0.018171353, 0.04499444, -0.0022409074, -0.008692415, -0.0039800685, -0.011262171, -0.010902812, -0.082991555, 0.009478937, 0.012536878, 0.048140526, -0.022605706, 0.03604437, -0.005820935, 0.021249635, -0.025507698, 0.029969173, 0.0064921905, -0.029697957, 0.018754464, -0.009316209, 0.0040546525, -0.004898807, -0.02059872, -0.0049700006, -0.017574681, 0.0305116, 0.002327357, -0.0026968864, 0.013926851, -0.011160465, -0.027772337, 0.018320521, -0.020354627, 0.023541395, 0.013757342, 0.0022832847, 0.0179137, -0.018727342, -0.0022748094, -0.03373905, -0.033901777, -0.014401475, -0.012625022, -0.025968762, 0.005041194, -0.04654036, 0.0055598915, 0.010041706, -0.002937589, -0.0152558, -0.023582077, 3.64656E-4, -0.026294218, 0.019229088, -0.010340042, -0.018225595, -0.017249225, -0.019391816, -0.024924587, -0.0044546938, 0.0010450223, 0.03433572, 0.028884314, 0.018618856, -0.0064006555, -0.018551053, 0.0050479746, -0.006997327, -0.01808999, 0.008448323, 0.013011502, 0.023134572, -0.0056310855, -0.0088415835, 0.024924587, -0.011926645, -0.015676182, 0.027758775, -0.04024819, -0.0037156348, -0.027596047, 0.0064786295, -0.014184504, -0.01125539, 0.03376617, -0.036505435, 0.0020713985, -0.028260522, 0.008543248, -0.019093482, 0.011682552, 0.022239566, 0.020124095, 0.00800082, 0.001590841, -0.026036566, -0.0049666106, 0.021846306, -6.0938444E-4, 0.0052378247, -0.010773985, 0.021195391, 0.018049307, 0.020734327, -0.0012263968, -0.0027138374, -0.0071939575, -0.008055062, -0.081526995, 0.038458176, -0.023771927, -0.016137246, -0.0020561428, -0.011885963, 0.006234537, -0.008238132, 0.010712962, 0.012333467, -0.010150192, 0.009207723, -0.003888534, 0.0013391202, -1.7724273E-4, 0.008509346, 0.009207723, -0.0031308292, 0.002117166, 0.0051089977, -0.02325662, 0.019690152, 0.019337574, 0.007973698, 5.4581865E-4, 0.0148761, -3.4669865E-5, 0.011377437, -0.023717685, -0.025304288, 0.02765029, -0.018849388, -0.008095745, 0.0034444206, -0.017723849, -0.013764122, -0.0069261333, -0.0020663133, 0.018944314, 0.0049530496, -0.011980888, -0.023432909, -0.005454796, -0.008990752, -0.004315696, 0.00743805, -0.0167746, 0.012123276, 0.005136119, 0.009085677, 0.021181831, 0.019229088, -0.0135946125, -0.017832335, 0.00839408, -0.020585159, 0.06471171, 0.005475137, 0.006197245, -0.033088136, 0.02496527, 0.0031681212, 0.02249722, -0.038186964, 0.0104349675, 0.0052208737, 0.004885246, -0.006997327, 0.0020442773, -0.025683986, -0.005312409, -0.012909797, 0.017032253, 0.022429416, 0.017805213, 0.013981094, -0.004180089, 0.008685635, 0.0055361604, 0.01621861, 0.018578174, -0.021859866, -0.023134572, 0.0063159014, -0.0046648844, 0.022673508, 0.007288882, 0.0013950581, -4.1847507E-4, 0.0031935475, -0.005115778, 0.014225186, 0.00895685, 0.0034003484, -5.7760155E-4, 0.022388734, -0.031433728, -0.0073295645, -5.0428894E-4, 0.030186143, -0.009058555, -0.003925826, -0.010936714, -0.007933016, -0.021873428, 0.0061294413, -0.009973903, -0.024246551, 0.023419349, 0.020110535, 0.021032663, 0.015947396, -0.020083413, 0.007343125, -0.047354, 0.02691801, -0.008238132, -0.016042322, -0.013743781, 0.031840548, 0.023324423, -0.010373944, 0.031569336, -0.024870344, 0.053863145, 0.003281692, 0.022442978, -0.02251078, 0.001077229, 0.004993732, -0.0105095515, 8.1830414E-4, -0.0087669995, -0.0023137964, -0.007960137, -0.00895007, 0.010380724, 0.0331695, -0.018320521, 0.07382451, 0.01219786, -0.013147109, 0.012611462, -0.019093482, 0.018713782, 0.015310043, 0.031433728, -0.016923767, -0.022198884, 2.9028397E-5, -0.002762995, 0.006197245, -0.04157714, 0.0014959159, -0.009065336, 0.02210396, 0.011933425, -0.007146495, -0.019378256, 4.2292467E-4, -0.010265458, 0.011607969, 0.002081569, -0.010285799, -0.011906304, 0.028748708, -0.017764531, -0.0077431663, -0.035067998, 0.014537082, -0.026809527, -0.002176494, 0.0060040047, 0.02172426, -0.00801438, -0.0021866646, -0.001296743, 0.014089579, 0.0046174224, -0.016503386, -0.0026612896, -0.029589472, -0.022781994, 0.016055882, 9.865417E-4, -0.0031732065, -0.033494957, -0.010346822 ], + "id" : "925c2d77-e422-40f9-9159-a7ae48cf7bfa", + "metadata" : { + "source" : "movies.csv" + } + }, + "60d8f9bc-30ec-4008-81dc-ee3ed313a740" : { + "text" : "898,12470,Jason Momoa-Amber Heard-Willem Dafoe-Patrick Wilson-Nicole Kidman-Dolph Lundgren-Yahya Abdul-Mateen II-Temuera Morrison-Ludi Lin-Michael Beach-Randall Park-Graham McTavish-Leigh Whannell-Tainui Kirkwood-Tamor Kirkwood-Denzel Quirke-Kaan Guldur-Otis Dhanji-Kekoa Kekumano-Julie Andrews-John Rhys-Davies-Djimon Hounsou-Andrew Crawford-Sophia Forrest-Natalia Safran-Micah Ohlman-Jack Andrew-Frankie Creagh-Leslie-Sophia Emberson-Bain-Ilya Melnikoff-Hank Amos-Kyryl Koltsov-Patrick Cox-Luke Owen-Robert Longstreet-Devika Parikh-Sonny Le-Jon Fabian-Mabel Tamone-Rita Dinardo-Anthony Standish-Nicolette Bianca-Victor Leto-Vincent B. Gorce-Gabriella Petkova-Oriana Lacono-Pearl Grantham-Noa Tsuchiya-Alice Lanesbury-Nicolas Bosc-Joshua Levinson-Garreth Hadfield,hero-atlantis-half-brother-superhero-based on comic-royalty-shark-duringcreditsstinger-dc extended universe (dceu),/zdw7Wf97vsQ0YnGomxDqfcEdUjX.jpg,/9QusGjxcYvfPD1THg6oW3RLeNn7.jpg,424783-335983-287947-324857-363088-299537-338952-284054-383498-428078-404368-141052-299536-405774-297762-399579-299534-260513-375588-424694-450465\r\n429617,Spider-Man: Far From Home,Action-Adventure-Science Fiction,en,Peter Parker and his friends go on a summer trip to Europe. However they will hardly be able to rest - Peter will have to agree to help Nick Fury uncover the mystery of creatures that cause natural disasters and destruction throughout the continent.,99.709,Marvel Studios-Pascal Pictures,6/28/19,160000000,1131927996,129,Released,It��s time to step up.,7.5,13812,Tom Holland-Samuel L. Jackson-Jake Gyllenhaal-Marisa Tomei-Jon Favreau-Zendaya-Jacob Batalon-Tony Revolori-Angourie Rice-Remy Hii-Martin Starr-J.B. Smoove-Jorge Lendeborg Jr.-Cobie Smulders-Numan Acar-Zach Barack-Zoha Rahman-Yasmin Mwanza-Joshua Sinclair-Evans-Tyler Luke Cunningham-Sebasti��n Viveros-Toni Garrn-Peter Billingsley-Clare Dunne-Nicholas Gleaves-Claire Rushbrook-J.K. Simmons-Dawn Michelle King-Jeroen van Koningsbrugge-Michael de Roos-Jan-Paul Buijs-Sergio Pierattini-Anjana Vasan-Brian Law-Evelyn Mok-Tatiana Lunardon-Giada Benedetti-Luk��� Bech-Alessandro Giuggioli-Petr Opava-Giuseppe Andriolo-Pat Kiernan-Shari Abdul-Mari Alexandrova-Kristen Alminta-Vincent Angel-Peter Arpesella-Lasco Atkins-Sitara Attaie-Peter Bankol��-Blair Barnette-Tuwaine Barrett-Anna Benamati-Avondre E.D.", + "embedding" : [ 0.018575784, -0.03653771, -0.0068791783, -0.04361039, -0.035977237, 0.044838097, -0.01813541, -0.004150193, -0.01505279, -0.03824583, 0.04184889, 0.017561588, 0.035256624, -0.011543142, 0.010982665, 0.022752667, 0.017201282, -0.02344659, 0.008533917, -0.032027215, 0.0036297508, -0.0010033526, -0.015840126, 0.032747824, 0.0022936156, 0.0280505, 0.02973193, -0.009881729, -0.018122064, -0.017254662, 0.014946033, -0.023673449, 0.007466344, -0.031973835, -0.014345523, 0.022512462, 0.011930137, -0.024914503, 0.032214038, 0.0023269772, 0.004303657, 0.0070726764, 0.006328711, -0.01770838, -0.013471447, -0.006445477, 0.017641656, -0.004740695, -0.01693439, 0.031573493, 0.028103879, 0.025501668, -0.013458102, -0.021805195, -0.0074329823, -2.5855302E-4, -0.018001962, -0.001151812, 0.008086871, -0.002203539, 0.011449729, -0.011609864, -0.026062144, -0.012764179, -0.018815987, -0.016921043, -0.008794139, -0.0061885915, -0.006952574, 0.0029708575, 0.040060706, 0.0118033625, 0.007726565, -0.004053444, 0.015519854, -0.04315667, -0.026609275, -0.005671486, -0.0140119055, -0.0053879116, 0.0044204225, -0.004343691, -0.01996363, 0.011349644, 0.018122064, 0.015413096, -0.010629032, 0.014478969, -0.026729379, 0.008353765, 0.009067705, 0.03947354, -4.6247628E-4, -0.012817558, 0.006472166, 0.023112971, -0.02301956, 0.02933159, -0.03573703, -0.033655263, -0.0051944135, -0.010288742, -0.018762609, -0.014839276, -2.986913E-5, -0.0017948584, -4.8207628E-4, 0.0051777326, 0.02296618, 0.010161968, 5.658975E-4, -0.0060151108, 0.029091386, -0.03872624, -0.020043697, -0.0076464973, 0.002303624, -0.03053261, -0.012183686, -0.020297246, 0.020377314, 0.042996533, -0.0026639302, -0.026142213, 0.028424151, 0.035763722, -0.002085105, -0.024087133, 0.0033812062, 0.0027923726, 0.020777654, -0.017134558, 0.034509324, 0.0034362532, -0.017134558, 0.05006921, -0.024807746, -0.003077615, -0.017775103, -0.015573232, 0.032027215, 0.032480933, -0.02767685, -0.008260352, -0.031253222, 0.0043837246, 0.023726827, -0.005064303, 0.016894355, 0.008533917, 0.012617388, 0.018068686, 0.0048341076, 0.019603323, 0.012136979, -0.0075797737, 0.001030876, -0.0021534965, 0.0151195135, -0.026035456, -0.0100418655, -0.004587231, -0.0013644927, -0.025034605, -0.0054779877, 0.026248971, 0.030799503, -0.013644927, -0.011436384, 0.0070726764, -0.011122785, 0.029198142, -0.02011042, 0.019243017, -0.023660103, 0.013691634, 0.012523975, -0.013891804, -0.032721136, -0.021044549, 0.008613986, -0.008774122, 0.025034605, 0.037258323, 8.1527606E-4, 0.012397201, 0.013811735, -0.027516713, 0.010141951, -0.023259763, 0.009407993, 0.026889514, -0.005364558, -2.1080412E-4, -0.6294415, -0.0066022766, 0.010942631, -0.0030425852, 0.01693439, 0.010388827, 0.011656571, -0.0072394847, -0.027970433, -0.018028652, -0.030052202, 0.01813541, 0.014585727, -0.025888665, -0.011923465, -0.0015554883, 1.3052758E-4, -0.03208059, 0.016614117, 0.008807484, -0.031733632, 0.014599071, 0.022699287, -0.0066389744, -0.012537319, -0.008587296, -0.015386407, -0.020857723, 0.009267875, 0.006648983, -0.025661804, 0.021645058, 0.016760908, 0.008166939, 0.03704481, -0.0023519984, -0.004767384, 0.04894826, 0.020484071, 0.029518414, -0.036030617, 0.0047740564, 0.011529797, -0.0056614773, -0.012550664, 0.023486624, 0.010188657, -0.006809119, 0.0031843723, 0.01019533, 0.005454635, 0.002186858, -0.006325375, -0.011469746, -0.009774973, 0.0053245244, 0.0044170865, -0.034402564, 0.00905436, 0.009848368, -0.029838687, 0.019376464, -0.0067390595, 0.0059650685, 0.0035196573, 0.02236567, 0.0011584844, 0.017775103, -0.0044571203, -0.019643357, 0.013111141, 0.011256231, -0.016373912, 0.008960947, 0.014959377, 0.014478969, 0.035283312, 0.005434618, -0.004250278, 0.01750821, 0.0014420586, 7.1977824E-4, 0.0129176425, 0.0064388043, 0.025354877, -0.017147904, -0.038219143, 0.015493165, 0.021311441, -0.008734087, 0.02113796, 0.02179185, 0.017014457, 0.02319304, -3.553019E-4, -0.010161968, -0.011856741, 0.006632302, 0.018629162, -0.06026454, -0.009501407, -0.036884673, 0.044918165, -0.036430955, 0.026289005, 0.009221168, -0.016840976, -0.00519775, 0.02181854, -0.014398901, -0.0034295807, -0.004590567, -0.01648067, -0.009741611, -0.0038165762, -0.029224832, 3.0692745E-4, 0.008747432, -0.0067991107, -0.0011201184, 0.0045805587, 0.013051089, 0.013297966, -0.017014457, 0.021084582, 0.03784549, -0.012036894, -0.008507228, 0.008106888, 0.007726565, -0.0042369333, -2.1580837E-4, 0.008553935, -0.019016158, 0.014585727, 0.0113629885, 8.974292E-4, -0.0034462616, 0.022112122, -0.0026539217, -0.009935108, -0.011756656, -0.014705828, -0.027409956, -0.00956813, -0.014719173, -0.03216066, 0.0052077584, -0.002165173, -0.013544843, 1.0707014E-4, 0.019256363, 0.0049508736, 0.02496788, 0.008300386, 0.0017931904, -0.018202133, 2.2102114E-4, 0.012657422, -0.022699287, 0.008567279, 0.01693439, -0.010462223, -0.024941193, 0.01710787, 0.0017264669, -0.020617519, 9.816674E-4, 0.0069592465, -0.0065188725, 0.0025705174, -0.018442336, -0.0047907373, 0.011436384, -0.027409956, 0.006115196, -0.0021668412, 0.02219219, 0.0034229085, 1.21353114E-4, 0.0032994703, -0.020444037, -0.0067557404, -0.011749984, 0.017841827, 0.018068686, 0.014118663, 0.0031927128, -0.0047206776, 0.0148926545, -0.008634003, -0.01999032, -0.0075597567, -0.009941781, 0.0023503304, 0.008834173, 0.015533199, 0.0052778176, -0.0014353862, 0.005978413, 0.028717734, 0.016787598, 0.02447413, 1.120744E-4, 0.009448028, -0.02011042, -0.008126905, -0.01705449, 0.019816838, 0.0012802545, 0.03133329, -0.022285603, -0.018348925, 0.012577353, 0.003296134, 0.012290443, -0.0028540918, 0.0013970204, -3.9596146E-4, 0.012297115, 0.023299798, -0.013004383, 0.0036831296, 0.007386276, -0.028824491, 0.009441355, 0.013531498, -0.005978413, 0.0031476745, -0.010488912, -0.01662746, -0.0025671814, -0.0011334631, 0.03015896, -0.008020148, -0.0042335973, 0.017775103, -0.018041996, 0.033842087, -0.015626611, -0.0040200823, 0.020871067, 0.028691046, 0.0109292865, 0.017601622, -0.020897757, 0.021671748, 0.014078629, 0.006395434, 0.03373533, -0.016440636, 0.017721724, -0.0015638288, 0.0037965593, 0.009895074, -0.012550664, -0.005604762, 0.023633415, 0.02264591, 0.022045398, 0.021671748, -0.03098633, 0.0189094, 0.004707333, 0.023032904, -0.012724145, -0.028744424, -0.00488415, -0.0033695297, -0.036617782, -0.028157258, -0.0135715315, 0.0034495979, 0.0047907373, -0.013598221, -0.013931838, -0.0070993653, 0.003973376, -0.004784065, 0.017975273, -0.0025171388, -0.031600185, 0.009861712, 0.0385661, -0.017588278, -0.029224832, -0.008960947, -0.001329463, -0.022005364, -0.013378033, -0.007519723, 0.040380977, -0.024954537, -0.0073996205, -0.022819389, 0.016947733, 0.032240726, -0.0060151108, 0.0038566103, 0.014719173, -0.00528449, 0.018308891, -0.0030025512, -0.0017731733, 0.016494015, -0.002598875, -0.0048708054, -0.013771702, 0.0022252242, -0.003237751, 0.007846667, -0.007506378, -0.03421574, 0.013591548, -0.008593969, -0.018549094, -0.007606463, 0.0080601815, -0.011890103, -0.027570093, -0.013851769, -0.03936678, -0.017988618, 0.005778243, 0.08166939, 0.037605286, 0.023633415, 0.012217048, -0.015239616, 0.009641525, -0.010015177, 0.014532348, -0.0016639138, -0.028344084, 0.012984366, -0.019122915, 0.009014326, 0.011443056, 0.016867666, -0.017401453, -0.019830182, -0.0033445084, -0.00444044, -0.0049542096, -0.02336652, -0.020030353, 0.03093295, 0.037551906, 0.013771702, 0.007266174, 0.018842677, 0.004667299, 0.0067857658, 0.017975273, -8.590633E-4, 0.0014979395, 0.01487931, 0.007873356, 0.007873356, 0.0032994703, 0.024434095, -0.004590567, 0.017428141, 0.0062453067, -0.0133513445, 0.01665415, 0.00742631, -0.009201151, -7.9317397E-4, -0.020257212, -0.014398901, 0.022419048, 0.03093295, -0.021738471, 0.019243017, 0.0026038792, -0.014212076, -0.024500819, 0.023473278, -0.008427161, -0.015613266, -0.008840845, -0.012537319, 0.010548963, 0.011089423, -0.026622621, 3.3174022E-4, -0.020003663, -0.009468045, -0.027383268, -0.0053879116, -3.9596146E-4, -0.023780206, 7.331229E-4, 0.003673121, -0.016734218, 0.006532217, -0.016187087, 0.011923465, 0.0059016813, 0.02527481, 0.0012852587, 0.013771702, 0.0029475044, -0.0153463725, -0.013257932, -0.0038499378, -0.022832735, 0.0022168837, 0.0068725063, -0.0052911625, 0.018015308, -0.0016422287, 0.023553347, 0.002640577, 0.0055914177, -0.021204684, 0.004964218, 0.015813436, 0.012463924, 0.01708118, 0.008600641, -0.0062052724, 0.006852489, 0.008760777, -0.035496827, -0.015679989, -0.020097077, -0.026862824, -0.0189094, -0.0030742788, -0.0016013606, -0.018682541, -0.03386878, -0.030852882, -0.01930974, -0.0063487277, -0.006945902, 0.02382024, -0.01402525, 0.018095376, 0.011136129, -0.01913626, 0.0038566103, 0.01056898, -0.02567515, 0.030479232, 0.03547014, 0.0067824298, 0.026942894, -0.009915091, -0.014172042, 0.0063053574, 0.022352327, -0.0026722706, -0.0023753517, -0.016147053, -0.0033645255, -0.0015363054, -0.020644208, -0.0044704652, -0.005164388, -0.01936312, 0.02301956, -0.020657552, 0.0038999803, 0.00722614, -0.003553019, -0.0030475894, -0.032000523, 0.014705828, -0.025261464, 0.018669195, 0.027890366, -0.0072995354, 0.015399751, -0.032534312, -0.0038065678, -0.02196533, -0.01968339, -0.018922744, -0.009141101, 0.038165763, 0.012177013, 0.032107282, -0.0113696605, 0.01999032, 0.012377183, 0.008100216, 0.019616667, -0.025955386, -0.014799241, -0.030265717, -0.004303657, 0.013524825, 0.025515012, -0.01059567, 0.00282073, 0.012177013, 0.028183948, 0.006592268, 0.015199581, 4.7582097E-4, -0.0015029437, -0.028610976, 0.008647348, -0.02527481, -0.0034796232, -0.010729116, -0.0039166613, 0.03349513, 0.015026101, -0.011262903, -0.024233924, 0.018282201, -0.006865834, 0.018068686, -0.03208059, 0.025288153, -0.020564139, 0.010268725, -0.014732518, -0.023713483, -0.0041635376, -0.010869236, 0.014732518, 0.0027306536, -0.013771702, -0.007506378, 0.02890456, -0.0034796232, -0.018068686, 0.023713483, -0.027543403, -0.0024687643, -0.021551646, -0.0053712307, -0.03787218, -0.023006214, -0.0044537843, -0.013064434, 0.0043536993, -0.0043970696, -0.03712488, 0.033334993, 0.018001962, 0.038459346, 0.013304638, 0.036404267, 0.029518414, 0.021845229, -0.015706679, 0.0076798587, -0.022152156, -0.014919343, 0.02304625, 0.01971008, -0.01622712, -0.007619808, 0.004340355, -0.00134948, -0.03098633, -0.03509649, 0.025902009, 0.026595932, 0.028157258, -0.019469876, 0.0053278604, -0.030399162, 0.0058516385, -0.010515601, 0.009981815, 0.009067705, -0.030479232, -0.020350626, 0.0011818375, -0.0017414797, 0.0076331524, 0.014438936, -0.027516713, 0.010548963, -0.017161248, 0.012457252, -0.0170278, -0.011616537, 0.036297508, -0.0135782035, 0.017468175, 3.8470188E-4, 0.0127041275, 0.015012756, 0.0050209328, 0.0046939882, 0.031787008, -0.02687617, 0.022432394, 0.015666645, 0.005234448, 0.0051310263, 0.0032694447, -0.013878459, -0.0098216785, -0.021671748, 0.0037832146, 0.027263165, -0.014946033, 0.0071393996, 0.015106169, -0.017841827, -0.027463336, 0.01958998, -4.5288482E-4, -0.0015905182, -0.0338154, 0.0055914177, 0.004900831, 9.741611E-4, 0.008593969, -0.008093543, -0.0068591614, -0.0065689147, -0.0042969845, -0.0046205926, 0.001569667, -0.014225421, -0.009301237, -0.044891477, -0.029171454, -0.0016747564, -0.022072088, 0.010542291, -0.016600773, -0.012490613, 4.6998268E-4, -0.010175313, -0.0013169523, -0.013157846, -0.021618368, -0.003973376, 0.018055342, -0.011256231, -0.014425591, -0.006952574, 0.03301472, -0.0014770884, 0.0042369333, -0.0040968144, 0.010148623, 0.027756918, -0.0066222935, 0.0102553805, 0.0033211552, -0.017468175, -0.0039600316, 0.0113696605, 0.028610976, 0.010048538, 7.260336E-4, -0.028424151, -0.0016830968, -0.0020917773, 0.022952836, 0.0010992674, 0.0063387193, 0.038059004, 0.017868515, 0.03213397, 0.014345523, -0.009414666, -0.020270556, -0.007986786, 0.008153595, -0.023633415, -0.00274233, -4.9792306E-4, 0.0028257344, 0.005044286, -0.0065388894, -0.019750115, 0.012997711, -0.020911101, -0.03984719, -0.017801793, 0.006375417, 0.027409956, 0.0097683, -0.0032594362, 0.016293844, 0.020097077, -0.007819978, -0.019029502, -0.009928436, 0.012270426, 0.0067056976, 0.039580297, 0.0100285215, -0.03010558, -0.0052244393, 0.020310592, 0.009741611, 0.0054746517, 0.02233898, -0.026889514, -0.008220318, -0.019189639, -0.0025972067, -0.01813541, -0.013391378, 0.022138812, -0.027516713, -9.257866E-4, -0.0010984333, 0.026462484, -3.5988912E-4, 0.0077465824, 0.023967031, -0.009041015, -0.0021384838, -0.008920914, -0.023940342, -0.005421273, -0.038059004, 0.020697586, 0.019109571, -0.011496435, 0.03461608, 0.023646759, -0.0026756069, -0.0037465168, -0.016587427, 0.01736142, -0.008914241, 0.004810754, 0.01265075, 0.03784549, -0.03747184, 0.011216197, -0.031520117, -0.002660594, -0.0015513181, 0.008193629, -0.0022535815, 0.037178256, 0.0013177864, -0.054339506, 0.002720645, -0.01505279, 0.01958998, -0.026902858, -1.88702E-4, -0.02687617, 0.0011559823, -0.011056061, 0.008186956, -0.019950286, -0.02562177, 0.0025037942, -0.014412246, -0.011102768, 0.004523844, 0.1873592, -0.012877609, -2.8336578E-4, 0.042836398, 0.00965487, 0.013197881, 0.028664356, 0.023233075, -0.00794008, 0.0068024467, 2.2581687E-4, -0.006952574, -0.0019933605, 4.168125E-4, 0.02233898, -0.023059594, -0.032747824, -0.01191012, -0.0144656245, -0.02524812, -0.0021918623, 0.010522274, -0.018308891, -0.012397201, 0.0135648595, -0.00544129, 3.9971463E-4, 0.010822529, 0.007419638, 0.0019233009, -0.0035963892, -0.013998561, 0.013217898, -1.171829E-4, -0.02159168, -0.00985504, -0.008026821, 0.0058149407, 0.016373912, 0.0058316216, -0.009881729, 0.009534768, -0.010355465, -5.704847E-4, 0.010789167, 0.014132008, -0.030879572, -0.0053879116, -0.023006214, 0.028397461, -0.048147578, 0.009414666, 0.014919343, 0.019416498, -0.0054079285, -0.017147904, -0.010315431, 0.009548113, -0.011543142, 0.01662746, 0.015132858, 0.04227592, -0.028264016, 0.027209787, -0.0151195135, 0.00848054, -0.025288153, -0.009121084, 0.010181985, -0.027022962, -0.01736142, -0.024674298, -0.012397201, 0.0035296658, -0.015933538, -0.013151174, 0.00888088, 0.0024437432, 0.01150978, 0.017574932, -0.016413948, -0.01016864, 0.011736639, -0.013011055, -0.014625761, -0.014545693, 0.00405678, -0.014238765, -0.0034262445, -0.0048908223, -0.0111494735, -0.018228821, -0.014172042, 8.649016E-4, -0.008146922, -0.009027671, 0.020150455, 0.0035263295, -0.022872768, -0.010822529, -0.034509324, 0.025474979, 0.027543403, -0.010181985, -0.034375876, -0.014145353, -0.010001832, 0.014772552, 0.028504219, -0.014519003, -0.012177013, -0.017534899, 0.00544129, -0.01362491, -8.7908027E-4, 0.030666057, 0.0055947537, -0.0015671649, 0.033895466, -0.0047740564, -0.0060651535, -0.032053903, 0.02224557, -7.34374E-4, -0.009668215, -0.021484923, -0.030746125, 0.0028490876, 0.01485262, -0.03429581, 0.014772552, -0.018789299, 0.021031203, -0.008894224, 0.0010775822, 0.0050709755, 0.019403154, -0.009741611, 0.017241316, -0.016026951, -0.0016230458, -0.008013476, 0.01382508, 0.013091124, 0.0038866356, -0.02487447, 0.0016814286, -0.004590567, -0.0129109705, -0.03338837, -0.028157258, 0.009915091, 0.009581475, 0.020670896, 0.04561209, 0.0037031465, -0.018989468, -0.026222281, -0.017788447, 0.030612677, -0.035283312, 0.015212926, 0.015439786, -0.021645058, -0.029038006, 0.0052244393, -0.16899693, 0.017855171, -1.141595E-4, -0.037978936, 0.010775823, 0.020857723, 0.019803494, -0.01016864, 0.017121214, -0.018722575, 0.031733632, -0.0044337674, -0.041395172, -0.002382024, 0.008473867, 0.005801596, 0.0028891214, 0.032827895, 0.027810296, -0.00405678, 0.040808007, -0.0017798457, 6.668166E-4, -0.0044504483, 0.021324785, 0.0041835546, 0.021177994, 0.009074377, 0.009121084, -8.173612E-4, -0.04142186, -0.009761628, 0.018455682, 0.008080199, -0.00996847, 0.017254662, -0.013918493, -0.0014278799, -0.0062052724, -0.00722614, 0.032267418, 0.019856872, 0.020203834, 0.01668084, 0.017161248, 0.0047907373, 0.025408255, -0.03418905, 0.01745483, -0.014345523, -0.0027156407, -0.04120835, 0.025701838, -0.012190358, -0.006729051, 0.031359978, 0.0061252047, -0.0020584157, 0.011036044, -0.0042169164, -0.030212337, 2.1497432E-4, -0.0046372735, -0.007526395, -0.0011835056, -0.010815857, -0.019416498, 0.008874207, -0.054366194, 0.011729967, -0.026168901, 0.014038595, 0.00773991, -0.0029725258, 0.006035128, -0.027756918, -0.021805195, 0.0022752667, 0.0056614773, 0.028157258, -0.016840976, 0.03349513, -0.006211945, 0.041288417, 0.0023136325, -0.0016263819, 6.5055274E-4, -0.0014237097, -0.012944332, -0.0022102112, 0.017614968, -0.014612416, -0.0318137, 0.011529797, -0.00381324, 0.007993459, -0.00559809, 0.014412246, 0.0070059528, -4.5622097E-4, -0.0011376333, 8.0902077E-4, -0.031146465, 0.026569242, 0.018028652, 0.004033427, 0.0062052724, 0.026235625, 0.017067835, 0.0033228234, -0.0102620525, 0.0046539544, 0.022846079, -0.001946654, -0.012103617, 0.011262903, -0.019082882, -0.027022962, -0.008760777, 0.018629162, 0.051510435, -0.005337869, 0.006415451, -0.018522404, -0.0041468567, -0.01973677, -0.095334336, 0.013231242, 0.018775953, 0.04918846, -0.027917054, 0.027409956, 6.109358E-4, 0.015920194, -0.020457383, 0.032427553, 0.0062486427, -0.024527507, 0.009948453, -0.0051110093, 0.007266174, -0.00622529, -0.024727678, -0.0068791783, -0.012317132, 0.02970524, 0.0019916922, -0.012597371, -0.0053278604, -0.0036597764, -0.031253222, 0.015239616, -0.017534899, 0.026809447, 0.004033427, 0.020924445, -0.008447178, -0.016774252, 0.031119775, -0.03659109, -0.022432394, -0.030025512, -0.01545313, -0.010108589, 0.009948453, -0.046145875, 0.010362138, 0.015359717, -0.0067390595, -0.022472428, -0.015519854, -0.0056147706, -0.025074638, 0.027463336, 0.0067390595, -0.021444889, -0.011890103, -0.020430693, -0.048681363, -0.002283607, -2.0559135E-4, 0.019523256, 0.03213397, 0.010382155, -0.009474717, -0.02727651, -0.010075227, 0.011976844, -0.012584026, 0.018202133, 0.014505658, 0.031626873, -0.0020934455, -0.017628312, 0.019830182, -0.012517302, -0.020844378, 0.02336652, -0.03015896, -0.012904298, -0.017614968, 0.01382508, -0.035710342, -0.0011334631, 0.021978674, -0.037631974, 0.0039233337, -0.02224557, -0.0029475044, -0.01768169, 0.02119134, 0.015773403, 0.023540001, -0.004073461, -0.0057815793, -0.052124288, -0.025821941, 0.024407405, 0.0043003205, 0.011903447, 0.002540492, 0.014785897, 0.013664944, 0.0017264669, -0.0087207435, 0.01342474, -0.008900897, -0.004203572, -0.07232812, 0.027596783, -0.016840976, -0.0029091386, -0.003432917, -0.028450841, -9.232845E-4, -7.360421E-4, -3.273615E-4, 0.023326486, -0.0013136162, 0.023219729, 0.0019966965, -0.015399751, -0.009014326, 0.016921043, 0.006158566, 9.3996536E-4, 0.006749068, 0.0065222085, -0.014172042, 0.032774515, 0.02199202, -0.0017998626, 7.3043834E-6, 0.0170278, -0.01248394, -0.009448028, -0.015533199, 9.6165045E-4, 0.035176557, -0.0144656245, -0.001866586, 0.011723295, -0.010268725, -0.03904651, -0.013678289, -0.0040400997, 0.018041996, 0.0010383823, -0.0012076928, -0.015800092, -0.0010567312, -0.0120168775, -0.011516452, 0.023166351, -0.015026101, 0.015573232, 0.0020767646, 9.049356E-4, 0.019603323, 0.0098150065, -0.0013561524, -0.0129176425, 0.024394061, -0.016760908, 0.05289828, 0.008300386, -0.004270295, -0.027756918, 0.021431543, 0.0013936842, 0.021618368, -0.04721345, -4.5371885E-4, 0.0010875908, 0.007246157, -0.009828351, 0.002143488, -0.03378871, -0.021871917, -0.013177863, 0.008974292, 0.04067456, 0.017001113, 0.021418199, 0.009201151, -0.014425591, -0.0072728465, 0.016147053, 0.020897757, 0.0020951135, -0.036511023, 0.029278211, -0.00908105, 0.016427292, 0.0034996402, 0.014252109, -0.0051743966, 0.004643946, -0.01402525, 0.020577485, 0.026462484, 0.0049108393, 0.011696605, 0.008560607, -1.6701691E-4, -0.01999032, 0.0020100411, 0.025875319, -0.015960228, -0.0028324067, -0.0107090995, -0.012577353, -0.024100479, -0.004106823, -0.026555898, -0.014425591, 0.018335579, 0.015733369, 0.029945444, 0.0032944658, -0.019976974, 0.0053478773, -0.03461608, 0.021618368, -0.008180284, 0.0010859227, -0.017147904, 0.023299798, 0.02039066, 0.010068555, 0.035763722, -0.016173743, 0.05481991, 0.00996847, 0.025701838, -0.014612416, -0.010989337, 0.0076665143, -2.402041E-4, -0.011463073, -0.028584288, 0.0074596717, -0.012844247, 0.009781645, 0.013291294, 0.032374173, -0.016040295, 0.0726484, 0.013771702, -0.008800811, 0.022258913, -0.0014946032, 0.016053641, 0.0016172074, 0.019763459, -0.012657422, -0.021858573, -8.7657815E-4, -0.019202983, 0.002340322, -0.044624582, 0.0038899719, -0.010575653, 0.020257212, 0.014212076, -0.017494865, -0.020977825, -7.8452074E-5, -0.0036964742, 0.016240466, 0.011342972, -0.009414666, -0.012457252, 0.022472428, -0.0056848302, -0.0057648984, -0.040968142, -0.003676457, -0.031013018, 1.8369775E-4, 0.0035563551, 0.023032904, -0.004984235, -0.0031276576, -8.8408455E-4, 0.017935239, 0.02382024, -0.014986067, 0.008827501, -0.021645058, -0.0131311575, 0.028183948, -1.2729566E-4, -0.013811735, -0.029571794, -0.0060651535 ], + "id" : "60d8f9bc-30ec-4008-81dc-ee3ed313a740", + "metadata" : { + "source" : "movies.csv" + } + }, + "59f6e329-3ec7-4659-bdff-af5dc1058278" : { + "text" : "783,9942,Timoth��e Chalamet-Rebecca Ferguson-Oscar Isaac-Josh Brolin-Stellan Skarsg��rd-Dave Bautista-Sharon Duncan-Brewster-Stephen McKinley Henderson-Zendaya-Chang Chen-Charlotte Rampling-Jason Momoa-Javier Bardem-David Dastmalchian-Babs Olusanmokun-Golda Rosheuvel-Roger Yuan-Benjamin Cl��mentine-Souad Faress-Seun Shote-Neil Bell-Oliver Ryan-Stephen Collins-Charlie Rawes-Richard Carter-Benjamin Dilloway-Elmi Rashid Elmi-Tachia Newall-Gloria Obianyo-Fehinti Balogun-Dora K��polnai-Schvab-Joelle-Jimmy Walker-Paul Bullion-Milena Sidorova-J��nos Timk�_-Jean Gilpin-Marianne Faithfull-Ellen Dubin,empire-future-epic-army-based on novel or book-prophecy-dystopia-emperor-sand-spice-hallucinogen-treason-baron-revenge-premonition-betrayal-space-water shortage-creature-desert-knife fight-destiny-giant worm-space opera-sand dune-messiah-mother son relationship-giant creature,/d5NXSklXo0qyIYkgV94XAgMIckC.jpg,/jYEW5xZkZk2WTrdbMGAPFuBqbDc.jpg,688177-370172-566525-550988-524434-414906-580489-646380-571679-512195-634649-624860-497698-436969-1032819-864507-617653-841-542178-425909-101362\r\n335787,Uncharted,Action-Adventure,en,A young street-smart Nathan Drake and his wisecracking partner Victor ���Sully�� Sullivan embark on a dangerous pursuit of ���the greatest treasure never found�� while also tracking clues that may lead to Nathan��s long-lost brother.,147.231,Columbia Pictures-Atlas Entertainment-PlayStation Productions-Arad Productions-Studio Babelsberg-Deutscher Filmf�_rderfonds-Medienboard Berlin-Brandenburg,2/10/22,120000000,401748820,116,Released,Fortune favors the bold.,7.043,4461,Tom Holland-Mark Wahlberg-Sophia Ali-Tati Gabrielle-Antonio Banderas-Steven Waddington-Rudy Pankow-Tiernan Jones-Pingi Moli-Jes�_s Evita-Georgia Goodman-Diarmaid Murtagh-Joseph Balderrama-Serena Posadino-Alana Boden-Jonathan Failla-Anthony Thomas-Peter Seaton-Clark-Robert Maaser-Eskindir Tesfay-Manuel de Blas-Carme Capdet-Julia Schunevitsch-Alois Knapps-Patricia Meeden-Nolan North-Matt Barkley-Jimmy Hart-Brett Praed-Carlo Kitzlinger-Pilou Asb�_k-Rub��n Doblas Gundersen,treasure hunt-lighter-treasure map-based on video game-lost treasure-duringcreditsstinger-missing relative,/rJHC1RUORuUhtfNb4Npclx0xnOf.jpg,/aEGiJJP91HsKVTEPy1HhmN0wRLm.", + "embedding" : [ 0.006438998, -0.034079656, -0.008526682, -0.055193346, -0.022399457, 0.03927687, -0.02164153, -0.011111755, -0.02207463, -0.030885536, 0.038329463, 0.02777262, 0.010800463, 0.00630027, -1.6643101E-4, 0.022250578, 0.022643076, -0.012268947, 0.012803556, -0.030533642, -0.008844741, -0.009771848, -0.0053934646, 0.012756187, -0.002997873, 0.00933198, 0.03981825, -0.0062968866, -0.012140371, -0.004791183, 0.011869682, -0.009338747, 8.1248785E-4, -0.028774166, -0.01921887, 0.004848704, 0.013412606, -0.044825982, 0.02179041, 0.009494392, -0.009555297, 0.014982598, -0.0083778035, -0.0020859917, -0.007721384, 0.011057617, 0.019963263, -0.005122776, -0.013446442, 0.03860015, 0.027569603, 0.03518948, -0.027718483, -0.025444701, -0.020382829, 0.008276295, -0.024781514, 0.004344547, -0.008844741, 0.006601411, 0.018420339, -0.02256187, -0.030506572, 0.0054712873, -0.01313515, -0.010895205, -0.008546983, -0.011280935, 0.008262761, 0.029992264, 0.031616393, 0.020112142, 0.026405644, 0.011287702, 0.019300075, -0.029559163, -0.029586231, -0.0025224767, -0.0020690737, -0.002451421, 0.012715583, -0.017391725, -0.0021232115, 0.0061953785, 0.015266821, 0.017757153, -0.0039655836, 0.0221017, -0.02093774, -0.0014067333, 0.009068058, 0.031156223, 0.0018846673, 0.0065912604, 0.0071935416, 0.021546789, -0.017878963, 0.029207269, -0.019191802, -0.033998452, -0.012857694, -3.150981E-4, -0.009555297, -0.010780162, -0.0068957848, -0.0037896363, 0.005907772, -0.004730278, 0.019178266, 0.009636504, 1.8482936E-4, -0.003826856, 0.0065032863, -0.029613301, -0.009880123, -0.012471964, 0.013899844, -0.021438513, 0.006892401, -0.023157384, 0.019124128, 0.035297755, 0.0051295436, -0.026919952, 0.033998452, 0.032915697, 0.0031788957, -0.013744199, -1.5532857E-4, 0.0040197214, 0.017093966, 0.0026527455, 0.014156998, 0.0024886406, -0.027542535, 0.05183681, -0.026757538, 0.014671306, -0.027718483, -0.010644818, 0.035920337, 0.03705723, -0.021925753, -0.017540602, -0.031075018, 0.004909609, 0.004618619, 0.0019811, 0.023549883, 0.015835267, 0.030912604, 0.031616393, 0.0038031708, 0.02341454, 0.007227378, -0.0125057995, 0.0053562447, -0.0051261596, 0.010171114, -0.031156223, -0.008533449, -0.005654002, -0.002681506, -0.022521267, 0.008425173, 0.02936968, 0.024010053, -0.020396363, -0.0143194115, 0.010272621, -0.0138051035, 0.026053749, -0.014373549, 0.008824439, -0.006804427, 0.015172079, 0.017121036, -0.004364849, -0.032482598, -0.016606728, 5.236127E-4, 0.011308004, 0.039547563, 0.046639595, -0.007931167, 0.016336039, 0.022237044, -0.02093774, 0.021343773, -0.016525522, 0.003117991, 0.025322892, -1.07217944E-4, 0.0046423045, -0.6314617, -0.01046887, -0.010732791, -0.010407966, 0.027907964, 0.023712296, -0.0014126546, -0.0026578207, -0.027610207, -0.016268367, -0.023103246, 0.025837198, 0.010908739, -0.013757733, -0.008743232, -0.016011214, -0.0031146074, -0.028178653, 0.011930587, 0.009995165, -0.03102088, 0.022440061, 0.029613301, 0.0031636695, 0.010238785, 0.0055727954, -0.026310904, -0.023834106, -0.0023702146, 0.0044798916, -0.015456302, 0.014738978, 0.009575599, 0.00500435, 0.04103635, -0.007694315, -0.011984725, 0.05511214, 0.034539826, 0.0312645, -0.021276101, -0.0018626739, 0.010265854, -0.005268271, -0.019421887, 0.023373935, 0.012864462, 0.0049400614, -0.006449149, -0.012837393, -2.6659098E-5, -0.0019489558, -0.007992072, -0.01701276, 2.203572E-4, -0.004462973, 0.010218483, -0.044636503, 0.025133409, 0.011017014, -0.027325984, 0.016823279, -9.930878E-4, 0.012715583, -0.019882057, 0.02151972, 0.0021976507, -0.002228103, 0.0062528998, -0.031399842, -9.753238E-4, 0.009609435, -0.008736465, -0.0041753673, 0.006804427, 0.005806264, 0.04623356, 0.004371616, -0.01611949, 0.012492266, 0.0076672463, -0.006723221, 0.013392304, 0.017296983, 0.020085072, 0.003985885, -0.037354987, 0.0029911057, 0.009419953, -0.006053267, 0.0024311193, 0.02823279, 0.011910286, 0.008763534, -0.009000386, -5.198061E-4, -0.018271461, -0.0032093483, 0.029721577, -0.053515077, -0.014427687, -0.018081978, 0.023928845, -0.00962297, 0.019340679, 0.010915506, -0.009386117, -0.008323666, 0.027393656, -0.018284995, -0.011944122, -0.0058773197, -0.025431165, -0.010820765, -0.009162799, -0.02777262, 0.009907192, 0.013141917, -0.0041889017, -6.7440774E-6, 0.001784851, 0.011917053, 0.0025360112, -0.020545242, 0.015537509, 0.041821342, 0.0018203788, -0.013635923, 0.0020453886, 0.014170533, -9.744779E-4, -0.009433487, 0.025864268, -0.03029002, 0.0012544711, 0.0051430776, 0.012573472, -0.0045407964, 0.0041652163, -0.009230471, -0.014617168, -0.002843919, -0.0041110786, -0.01980085, -0.0067638243, -0.012891531, -0.024592033, -0.004270108, -0.01505027, -0.030344158, -0.0062325983, 0.01350058, -0.0031975056, 0.009068058, 0.018731631, -0.006137857, -0.030696053, -0.020694122, 0.012803556, -0.022507733, 0.003082463, 0.011849381, 0.0023955915, -0.015172079, 0.026202628, 0.0020132442, -0.020112142, 0.006875483, -0.007328886, -0.0083372, 0.0055660284, -0.01155839, 0.0011563466, 0.015564578, -0.009372583, 0.029559163, -0.026568057, 0.01839327, 0.0051802974, 3.005063E-4, -0.0063510244, -0.0054374514, -0.024537895, -0.017878963, 0.03194122, 0.02491686, 0.011010247, -0.0012079466, 7.60042E-4, 0.01538863, -0.010841067, -0.024280742, -0.0044020684, -0.004347931, 0.0053731627, 0.027380122, 0.009507927, 0.0045509473, -4.931603E-4, -0.0030080238, 0.03757154, 0.01999033, 0.01155839, -0.014035189, 0.0046152356, -0.03914153, 0.006019431, -0.015266821, 0.0036001545, -0.005261504, 0.027826758, -0.019340679, -0.023549883, 0.01434648, 0.009433487, 0.022385923, -0.0061412407, 0.0035967708, -0.0042328886, 0.0019404967, 0.0061615426, -0.025796596, 0.007200309, 0.006476218, -0.024077725, 0.0050517204, 0.026635729, -0.011578692, -0.008323666, -0.014035189, -0.0016148249, 0.0053359433, -0.007910865, 0.016945088, 0.0049502123, 0.0066555487, 0.023631088, -0.005508507, 0.02746133, -0.015645783, -0.0036576758, 0.024280742, 0.025607113, 0.0020606148, 0.008662025, -0.006523588, 0.01529389, 0.026189094, -0.006053267, 0.04441995, -0.015862335, 0.03172467, 4.3606194E-4, -0.0044866586, 0.013520881, -0.019733177, 0.005386697, 0.016390176, 0.028368134, 0.028828304, 0.01924594, -0.019340679, 0.012106534, 0.0042937933, 0.017513534, -0.0054780548, -0.020531708, -0.004500193, -0.008025908, -0.03640758, -0.01565932, -0.0077349185, 0.0094131855, 0.01400812, -0.008980084, -0.0162819, 0.0016012905, -2.3420882E-5, 0.008905645, 0.017987238, 0.011192962, -0.032726217, 0.020978343, 0.031832945, -0.016051816, -0.035081204, -0.014725444, -0.012532868, -0.038329463, -0.0179331, -0.0104485685, 0.034756377, -0.023982983, -0.0017222543, -0.023522813, 0.004909609, 0.030262953, -0.026216162, 0.0112132635, 0.019624902, -0.005200599, 0.015578112, 6.251208E-4, -0.0011123598, 0.023495745, -0.016065352, -0.0032144235, -0.0016224381, -0.008364269, -0.0019540312, 0.0027271847, -0.0041922852, -0.035081204, 0.0037524167, -0.019205336, 2.0851458E-4, -0.01725638, 0.007572505, 0.0021249033, -0.025525907, -0.015212683, -0.029992264, -0.02442962, 9.998549E-4, 0.07487238, 0.03911446, 0.010232018, 0.009534996, -0.0018068445, 0.012093, -0.0055660284, -0.015036736, -0.016823279, -0.020924207, 0.020897137, -0.021005413, 0.020409899, 0.0075319023, 0.008817672, -0.0078634955, -0.011450116, -0.011037315, -0.0024581882, -0.0076401774, -0.028990718, -0.0158488, 0.018136116, 0.03841067, 0.011950889, -0.017635344, 0.021817477, 0.020342227, -0.0012028712, 0.015984144, -0.009054524, 0.0026459782, 0.006191995, 0.011774941, 0.012221577, -0.011856148, 0.03194122, 0.013175753, 0.024091259, 0.016349575, -0.011497485, 0.0019844836, 0.010279388, -0.00887181, -4.5213406E-4, -0.025728924, -0.020220416, 0.030425366, 0.023279194, -0.037219644, 0.021127222, 0.018961716, -0.0153480265, -0.02697409, 0.011720804, -0.011104988, -0.019232403, -0.0040028035, -0.02074826, -0.003860692, 0.00596191, -0.044798914, 0.017946634, -0.014075791, 0.003040168, -0.013378769, -0.011612528, -0.010259087, -0.023901777, 0.01013051, -0.0015040119, -0.01155839, -0.0043411637, -0.005014501, 0.0055998643, -0.007694315, 0.026013145, -0.004347931, 0.008310131, 0.013378769, -0.022264114, -0.029098993, 0.014644237, -0.013872775, 0.006550657, 0.0019320378, -0.0059382245, 0.01597061, -0.009697408, 0.017757153, -0.006533739, -5.2403565E-4, -0.011206496, 0.006029582, 0.0367324, 0.016566124, 0.017459396, 0.0021553556, 0.003099381, 0.0054780548, -0.010326759, -0.02847641, -0.020680586, -0.0077349185, -0.021249032, -0.018569218, -0.008425173, 4.6397667E-4, -0.0056167822, -0.016742071, -0.039195668, -0.018000772, -0.0058874707, -0.0046862913, 0.0016190545, -0.01022525, 0.014901391, 0.028449342, -0.019949729, 0.013561484, -0.011030548, -0.004493426, 0.013162219, 0.017513534, -0.003074004, 0.02510634, -0.005474671, -0.032482598, 0.010367362, 0.038708426, 0.0011977957, 0.0030367845, -0.034918793, -0.0026848896, -0.0062698177, -0.024375482, 0.015767593, -0.009650038, -0.02059938, 0.022142304, -0.013629156, 0.0030164828, 0.0039622, 0.0017442477, -0.015320958, -0.027880896, 0.01105085, -0.016972156, 0.029613301, 0.02488979, -0.0025241685, 0.015117941, -0.03516241, -0.0107192565, -0.012478731, -0.02612142, -0.024659704, -0.008107115, 0.03478345, 0.0063916277, 0.026189094, -0.004435905, 0.038139984, 0.0125125665, 0.012979505, 0.03627223, -0.017053364, -0.01643078, -0.02985692, 0.005082173, 0.01611949, 0.014806651, 0.0099342605, 0.0042937933, 0.0024057424, 0.030452434, 0.016620262, 0.032374322, 0.0025952242, -0.026662799, -0.034675173, -0.002153664, -0.031670533, -8.746616E-4, -0.022399457, -0.009095127, 0.0346481, 0.0068619484, -0.0014642546, 0.002989414, 0.03448569, -0.0013678218, 0.021424979, -0.018704562, 0.020085072, -0.02982985, 0.005843484, -0.024443153, -0.021289635, 0.0022500965, -0.018447408, 0.022967903, -0.010550077, -0.014617168, -0.0112200305, 0.02804331, -0.0148337195, -0.0028912895, 0.019922659, -0.020071538, -0.010786929, -0.026094353, -0.0019878673, -0.027122969, -0.0083913375, 0.007572505, -0.011896751, -0.0013999661, -0.027799688, -0.029288474, 0.02746133, 0.00937935, 0.02510634, 0.011125289, 0.04160479, 0.01897525, 0.029802782, -0.024253672, 0.011186195, -0.018988784, -0.0072206105, 0.029071923, 0.026662799, -0.018244391, -0.0027694798, 0.011132057, -0.0067773582, -0.032455526, -0.030452434, 0.023996519, 0.020423433, 0.020233952, -0.03372776, -0.0027390274, -0.027231244, 0.015808197, -0.009047757, 0.0044968096, 0.006604795, -0.031047948, -0.015997678, -0.0017916182, -0.0067841257, 0.013859241, 0.008086813, -0.030371228, 0.019584298, -0.009575599, 0.0038336231, -0.018271461, -0.0047708815, 0.030262953, -0.02612142, 0.017148104, 0.011605761, 0.014116395, -7.8964856E-4, -0.004764114, 0.011348607, 0.028801236, -0.022155838, 0.018027842, 0.00575551, 0.0057690446, 0.0101846475, 0.01790603, -0.017391725, -0.013723897, -0.027501931, -0.012627609, 0.027055297, -0.010414733, 0.0052141333, 0.002245021, -0.0127697205, -0.017039828, 0.015226217, -0.0153480265, 0.009562064, -0.036624126, 0.003375145, 0.0071461713, 0.014535962, 0.019164732, -0.006320572, -1.17368756E-4, 0.0024446538, 0.005498356, -0.004618619, -0.006594644, -0.021424979, -0.013723897, -0.037111368, -0.028286928, -0.008039443, -0.004936678, 0.0016444315, -0.030723123, 9.7024837E-4, 3.33285E-4, 0.0028811386, -0.009467323, -4.707439E-4, -0.022426527, -0.009304911, 0.02222351, -0.016796209, -0.009521461, -0.009595901, 0.029505026, 0.0101846475, -0.0091560315, 0.0034952627, 0.011768174, 0.042741682, -0.022277648, 0.019665506, 0.008479311, -0.025607113, -0.009656806, 0.017689481, 0.028449342, 0.013778035, 0.0019641821, -0.019476024, -0.010326759, -9.897041E-5, 0.027880896, -0.00896655, 0.0023211522, 0.028259858, 0.01621423, 0.042227376, 0.006601411, -0.009013921, -0.025593579, 0.0011605761, -0.0064626834, -0.027962102, 0.010171114, -0.0010319991, 0.011456883, 0.006401778, -0.017459396, -0.028774166, 1.678056E-4, -0.024145396, -0.03627223, -0.015280355, 0.025241684, 0.031156223, 0.01967904, -0.005329176, 0.02869296, -0.004226121, 0.0035933873, -0.016931554, -0.010137277, 0.007267981, -0.004517111, 0.0109764105, 0.018000772, -0.029992264, 0.0043851505, 0.013744199, 0.020761793, 0.0127697205, 0.028259858, -0.021208428, -0.0064965193, -0.003996036, 0.010638051, -0.007646945, -0.006056651, 0.026351506, -0.03448569, 0.002151972, 0.0076334104, 0.023049109, -0.003782869, 0.0035900036, 0.0069634565, -0.015239752, -0.008059745, -0.0104553355, -0.019719644, -5.9255364E-4, -0.017960168, 0.024321344, 0.013750966, -0.01051624, 0.04561098, 0.031616393, -0.009812451, 0.011977958, 8.738157E-4, -0.0019878673, -0.0012790023, -4.5974716E-4, 0.0031738204, 0.022697214, -0.02939675, 0.01735112, -0.019191802, 0.0050990907, -0.008736465, 0.0022010342, -0.0037118134, 0.029586231, 0.019651972, -0.05386697, -0.0013348317, -0.017662412, 0.0022297949, -0.007965003, 0.0039994195, -0.017310517, -0.0075522037, -0.004040023, -0.0068111946, -0.014617168, -0.02595901, 0.0036576758, -0.019476024, -0.01630897, 0.011862915, 0.17995359, -0.015794663, -0.0016960314, 0.0421191, 0.011165893, 0.0064897523, 0.033971384, 0.024348414, -0.008946248, 0.0101914145, 4.978127E-4, 0.004953596, 0.002322844, 0.0026459782, 0.0064863684, -0.022629542, -0.017730083, -0.028151583, -0.014211136, -0.021871615, -7.1859284E-4, 0.0033176236, -0.019963263, -0.02338747, 0.003143368, -0.016078886, 5.1726843E-4, 0.0112132635, 0.022778422, 0.008188321, -0.011788475, -0.016146557, 0.005055104, 0.0013813563, -0.02311678, -9.068058E-4, -6.153929E-5, 0.0148337195, 0.014211136, 0.006533739, 0.002980955, 0.01255317, -0.00850638, -0.0068179616, 0.00567092, 0.010915506, -0.03240139, -0.0016266676, -0.01909706, 0.01245843, -0.045800462, 8.5774355E-4, 0.00954853, 0.02406419, -0.011017014, -0.015375095, 0.005654002, 0.008303364, -9.0934354E-4, -0.0017121035, 0.013236658, 0.034079656, -0.02820572, 0.016755607, -0.0039622, 0.023901777, -0.04312065, -0.009751546, 0.009223704, -0.03102088, -0.010069605, -0.029098993, -0.0065980274, 0.00908836, 0.012546403, -0.008648491, 0.0064796014, -0.020423433, -0.0017577822, 0.018149652, -0.01350058, -0.023807036, 0.01725638, -0.01538863, -0.013899844, -0.025025133, 0.011111755, -0.018447408, -0.012289249, -0.016295437, -0.008763534, -0.028882442, -0.019083526, -0.004638921, -0.009034222, -0.002194267, 0.03210363, 0.015699921, -0.0050009666, 0.0037964035, -0.03280742, 0.02777262, 0.009819218, -0.0072950497, -0.032130703, -0.027298916, -0.0020893754, 0.0044494392, 0.032672077, -0.0039655836, -0.017229311, -0.024686774, -0.0064694504, -0.00962297, -0.0041449144, 0.034458622, 2.749178E-4, -0.004500193, 0.045638047, -0.01505027, 0.005014501, -0.029911058, 0.016133023, 0.006604795, -0.010685421, -0.036894817, -0.024862722, 0.0046862913, -0.007904098, -0.031453982, 0.018109048, -0.014535962, 0.0070852665, 0.0041110786, 0.007071732, 0.0060498836, 0.026662799, -0.0030807713, 0.0014168841, -0.003194122, 0.0074845315, -0.023428073, 4.2760294E-4, 0.016065352, 0.006286736, -0.026324438, 5.544881E-4, -0.011531322, -0.0072138435, -0.040359627, -0.015131476, -0.009365816, 0.014305877, 0.016945088, 0.03686775, -0.011727571, -0.022791956, -0.05029389, -0.02406419, 0.040657382, -0.025769526, 0.017581206, 0.017527068, -0.0020775327, -0.014156998, 0.006219064, -0.17280741, 0.021357307, 0.005434068, -0.02387471, 0.020409899, 0.008289829, 0.022846093, -7.790748E-4, 0.00887181, -0.017283449, 0.023779968, 0.0051464615, -0.04187548, 0.0019827918, -0.004730278, 0.017107502, -0.0074439286, 0.030668985, 0.0262703, -0.0071935416, 0.04699149, -0.0052919565, 0.0037761019, 0.004462973, 0.007498066, -0.0046862913, 0.021695668, 0.0027424109, 0.020112142, -0.0028236173, -0.046368908, -0.013385537, 0.023996519, 0.0036475249, -0.026067283, 0.011646364, -0.007836427, -0.022399457, -0.0051802974, -0.0016275134, 0.035676718, 0.0075522037, 0.01924594, 0.008425173, 0.021560324, 0.01296597, 0.028638823, -0.029207269, 0.012228345, -0.023807036, -0.013141917, -0.035297755, 0.020518174, -0.010834299, -0.0025004833, 0.023360401, 0.012532868, -0.007721384, 0.011538089, -0.011517787, -0.03402552, -0.0037727184, 0.008269528, -0.021722736, -0.007132637, -0.017919566, -0.015686387, -7.7526824E-4, -0.035730857, 0.016322505, -0.02595901, 0.009602668, 0.0014058874, 0.0063814768, 0.0037794854, -0.0225348, -0.03610982, 0.0088988785, -0.0030520107, 0.017838359, -0.01514501, 0.030235883, -0.01117266, 0.016999226, 0.022155838, 2.689965E-4, 0.0048216353, 0.0050957073, -0.0051701465, -0.0022585555, 0.009359048, -0.0076807807, -0.03697602, 0.012201276, 0.010001933, 0.00705143, 0.0019709491, -0.0025461619, 4.2295048E-4, -0.014914925, 0.0012485498, -0.0101778805, -0.0023126933, 0.032320183, 0.029477956, 0.016660865, 0.0023888242, 0.019516626, 0.02491686, 1.950859E-4, -0.010854601, -0.010746325, 0.019638436, -3.965161E-4, -0.030398296, 0.013662992, -0.01582173, -0.027826758, 0.006729988, 0.023333332, 0.036921885, -0.012979505, -0.008702629, -0.0019929425, -0.0014997824, -0.017581206, -0.084779575, 0.012986272, 0.011179427, 0.036488783, -0.018677494, 0.04122583, -0.01051624, 0.0041719833, -0.010577146, 0.02547177, 0.0025901487, -0.026256766, 0.010847834, -0.0073153516, 0.015117941, -0.0029098992, -0.012539635, -0.008939481, -0.0077958233, 0.024348414, -0.008709396, -0.01029969, 0.014278808, -0.021046016, -0.013047176, 0.022169372, -0.02964037, 0.013940448, 0.008560518, 0.015361561, 0.005660769, -0.027150037, 0.0104418015, -0.031562258, -0.03223898, -0.02133024, -0.0130268745, -0.032022428, 0.008168019, -0.05256767, 0.006124323, 0.0019946345, 3.8298167E-4, -0.016065352, -0.016728537, -0.012702049, -0.029423818, 0.016227763, -0.0047167437, -0.023346866, -0.0011394286, -0.024781514, -0.041983757, -0.009589133, 0.0011944121, 0.0325638, 0.015875868, 0.01514501, -0.0024581882, -0.025160478, -0.004432521, -0.0073153516, -0.022412991, 0.0162819, 0.012343387, 0.014292343, 0.0043851505, -0.0075454367, 0.011659899, -0.01621423, -0.026013145, 0.023225056, -0.033944312, -0.010949342, -0.030181747, 0.015483371, -0.024402551, -0.0132704945, 0.03451276, -0.046720803, 0.0041313805, -0.027664345, 0.0066623157, -8.2010095E-4, 0.018921113, 0.018704562, 0.00962297, 0.014522428, -0.01839327, -0.056140754, -0.010766627, 0.012370456, -0.0068551814, 0.0030756958, -0.0014058874, 0.028774166, 0.017175173, 0.0027018075, -0.0013365236, 5.21075E-4, -0.010827532, -0.0058468673, -0.074222736, 0.02755607, -0.016809743, -0.0046524554, -0.011456883, -0.010076372, -0.008939481, -0.002341454, 0.00350203, 0.014657772, -0.0030181746, 0.02013921, 0.004073859, -2.656129E-4, -0.0064254636, 0.012783255, 0.0023719063, -0.006702919, 0.006686001, 0.009846287, -0.026040215, 0.006225831, 0.018420339, 0.0035121809, 0.006686001, 0.02338747, 0.007599574, 0.007728151, -0.021276101, -0.0145765655, 0.02568832, -0.016579658, 0.002903132, 0.009115429, -0.001298458, -0.03797757, -0.0068281125, -0.011815544, 0.01851508, 0.00462877, 0.007234145, -0.017432326, 0.002843919, -0.0059145396, -0.015036736, 0.0038471576, -0.021073084, 0.021289635, 0.009311678, 0.013818638, 0.02556651, 0.01551044, 0.009162799, -0.016999226, 0.031751737, -0.02847641, 0.052188706, 0.025918406, -0.0050720223, -0.030939674, 0.035784993, 0.008980084, 0.025363494, -0.037652742, 0.0069566895, 7.4862235E-4, 1.5416545E-4, -0.0022534803, 0.012302783, -0.020504639, -0.0061886115, -0.0017882346, 0.01255317, 0.03056071, 0.014711909, 0.018460942, 0.011680201, -0.009758313, -0.0032634859, 0.025715388, 0.01621423, -0.01151102, -0.017730083, 0.0187587, -0.0066149454, 0.008005607, -0.001366976, 0.015618715, 1.306917E-4, -0.006943155, -0.0058705527, 0.021289635, 0.018718095, -0.006100638, 0.0025596963, 0.0047607305, -0.020667052, -0.014170533, 0.006198762, 0.03056071, -0.023915311, -0.0062901196, -0.009995165, -0.01425174, -0.027880896, 0.002048772, -0.01670147, -0.01359532, 0.012918599, 0.01597061, 0.025769526, 0.019381283, -0.020193348, -0.0012071007, -0.033484142, 0.019056456, -0.015402164, -0.011111755, -0.01597061, 0.032076564, 0.015253286, 0.012647911, 0.024145396, -0.01609242, 0.056627993, -0.0045813997, 0.017405258, -0.028368134, 0.004601701, -1.2720235E-4, -0.0033125482, 0.0112132635, -0.016173625, 0.005031419, -0.015618715, 0.013730665, 0.017621808, 0.017960168, -0.02488979, 0.066264495, 0.01790603, 6.0651096E-4, 0.016647331, -0.0032837875, 0.024740912, 0.021722736, 0.024361948, -0.02697409, -0.0067942766, 0.007917633, -0.009210169, 0.011822312, -0.036028612, -0.0079244, 0.0020741492, 0.022426527, 0.019069992, -0.021655064, -0.0042125867, -0.010380897, -0.0046524554, 0.0229273, 0.012038862, -0.008154485, -0.011071152, 0.026189094, -0.0029183582, -0.008925946, -0.028801236, 0.012884763, -0.038112912, -0.0039249803, 0.0026036832, 0.011490718, 4.69898E-4, -0.0025850732, 0.0018812837, 0.015930006, 0.021831011, -0.016105954, -0.01226218, -0.025999611, -0.009873356, 0.016187161, -0.004811485, -0.006229215, -0.035297755, -0.0158488 ], + "id" : "59f6e329-3ec7-4659-bdff-af5dc1058278", + "metadata" : { + "source" : "movies.csv" + } + }, + "2776d298-06f0-4083-b8ac-c2ab49616005" : { + "text" : "Hecker-Robin Atkin Downes-Brandon Bautista-Carmen Gangale-Mark Edward Taylor-Michael Shannon-Matahi Drollet-Mormon Maitui-Taraina Sanford-Jean Ho-Julia Glander-Cleve McTier-Bevin Kowal-Carmen Ayala-Josh Carrizales-James Quesada-Aida Munoz-David Dailey Green-Madison Autumn Mies-Thomas M. Taylor-Thom Kikot-John Seibert-Liam Matthews-Zachary Schafer-Monrico Ward-Ryan D'Silva-Tom Whalen-Jeffrey Dean Morgan-Richard Cetrone-Marcus Goddard-Joe Fishel-Jalene Mack-Patrick O'Connor Cronin,vigilante-superhero-based on comic-revenge-leading man-super power-dc extended universe (dceu)-man vs man-leading men-hero vs hero,/5UsK3grJvtQrtzEgqNlDljJW96w.jpg,/5fX1oSGuYdKgwWmUTAN5MNSQGzr.jpg,271110-49521-297761-246655-293660-141052-297762-99861-272-102899-284052-118340-263115-127585-140607-76338-49026-100402-283995-10195-155\r\n120,The Lord of the Rings: The Fellowship of the Ring,Adventure-Fantasy-Action,en,Young hobbit Frodo Baggins after inheriting a mysterious ring from his uncle Bilbo must leave his home in order to keep it from falling into the hands of its evil creator. Along the way a fellowship is formed to protect the ringbearer and make sure that the ring arrives at its final destination: Mt. Doom the only place where it can be destroyed.,114.069,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/18/01,93000000,871368364,179,Released,One ring to rule them all,8.", + "embedding" : [ 0.0040157386, -0.027571557, -0.03422582, -0.033489488, -0.026780682, 0.040880084, -0.0025839813, -0.0075814966, -0.023399007, -0.029398752, 0.023767173, 0.016199313, 0.027135212, -0.0025021664, 0.0020419587, 0.018162865, 0.024108067, -0.006067924, 3.1319694E-4, -0.026603416, -0.005113419, 0.008631452, -0.016376577, 0.008133746, 0.011767683, 0.0049804705, 0.029753283, -0.013233529, -0.008351918, -0.0036475726, 0.008576909, -0.0028191986, -0.0032981555, -0.018299224, -0.022826305, 0.013806232, 0.0077178543, -0.018721933, 0.017617434, -0.011985855, 0.03408946, 0.0042952723, -0.0017982192, -0.0034481492, -0.020112783, -0.0038316555, 0.013097172, -0.015858417, -0.010260928, 0.027803365, 0.03438945, 0.039871037, -0.021271825, -0.0077723972, -0.013008539, 5.313695E-4, 9.604706E-4, 0.011106347, 0.009633682, 0.010479101, 0.011379062, -0.019853704, -0.026521603, -0.010690455, 2.2861245E-4, -0.0123403855, -0.0069508413, -0.019008284, -0.017099274, -0.008276922, 0.023794444, 0.021340003, 0.02290812, -7.478376E-4, 0.007888301, -0.051270552, -0.04128916, -0.0040873266, -0.0067088064, 2.3585647E-4, 0.016049318, -0.01077227, -0.011985855, 0.011576781, 0.0013925545, 0.0060713333, -0.018367402, 0.0147948265, -0.022853576, 0.0053554545, 0.010806359, 0.024012618, 0.0037600677, 0.0017428237, -0.0053315917, 0.022280872, -0.024694407, 0.021626355, -0.021067288, -0.02274449, 0.014099401, -0.0076496755, 0.0044691283, -0.015490252, -0.0097427685, -0.009463235, 0.0010908628, -0.014644833, 0.019840067, 0.004254365, -0.0056963493, -0.0089928005, 0.011283612, -0.027912451, -0.022212693, -0.007363324, 0.024898943, -0.02703976, -0.008133746, -0.021599084, 0.036025744, 0.028935136, 0.0059417933, -0.03160775, 0.036380276, 0.0333804, -0.0036987066, -0.024626227, 0.01562661, -9.070993E-5, 0.027953358, 0.011092711, 0.009449599, 0.011931312, -0.009865491, 0.036571175, -0.020044604, 0.0021033199, -0.03392583, -0.014822098, 0.034853067, 0.021121832, -0.020058239, -0.019458266, -0.015640246, 0.0056111254, 0.013922136, 0.012442654, 0.022976298, -0.0030833918, 0.021108195, 0.021040017, 0.029316938, 0.010397286, 0.01229266, -0.015012999, 0.0021697942, -3.99912E-4, -0.010629094, -0.021162739, 0.0017240746, -0.017412897, -7.0479966E-4, -0.007676947, 0.006903116, 0.006419046, 0.02031732, -0.016103862, 0.0019277591, 0.016553843, -0.0022055882, 0.023030842, -0.028389703, 0.0110995285, -0.0061224676, -0.004312317, 0.0018629892, -0.010213203, -0.026889767, -0.027517013, 0.018326495, -0.004104371, 0.024203518, 0.033762205, -0.0065656304, 0.01164496, 0.01996279, -0.017849242, 0.003937333, -0.007561043, -0.006712215, 0.013022175, 0.002986237, -0.0027152258, -0.64535445, -0.007738308, 0.0013695442, -0.0048509305, 0.010499555, 0.0018152639, 0.01704473, 0.0041555054, -0.029480567, -0.020290049, -0.019621894, 0.022376323, 0.012988085, -0.026112529, -0.024203518, -0.0117063215, -0.0050145597, -0.019321907, 0.0065008607, -0.009613228, -0.03965286, 0.01772652, 0.020399135, -0.025335288, -0.0026760227, 0.0027442018, 8.709858E-4, -0.011413152, 0.017767427, 0.0056690774, -0.03215318, 0.009715497, 0.014644833, 0.024994394, 0.035862114, 0.008201925, -0.033244044, 0.038289282, 0.015531159, 0.023153562, -0.027748823, -0.0042952723, 0.016676566, -0.00954505, -0.013915319, 0.026194343, 0.012388111, -0.0022464956, 0.0044657197, -0.009572321, -0.006974704, -0.0042714095, -0.014903913, -0.025771633, 6.830676E-4, -0.0108404495, 0.0053690905, -0.027094305, 0.01876284, 0.014153945, -0.031225948, 0.027148848, -0.007656493, 0.014672104, 0.003950969, 0.031198677, -0.013369887, -0.0020334364, 0.0015451049, -0.037062064, 0.009947306, 0.0130630825, -0.009299605, -0.0021016153, 0.009006436, 0.010042756, 0.028526062, 6.8647653E-4, 0.005962247, 0.021149103, 0.011604053, -0.010485918, -0.0030015772, 0.011106347, 0.013410795, -0.013219894, -0.03248044, -0.006845164, 0.008406461, 0.0059213396, -0.008365554, 0.008351918, -9.5130905E-5, 0.011467695, 0.0050861477, 0.0018442399, -2.2669493E-4, 0.009183701, 0.027953358, -0.059833825, -0.0073974133, -0.02093093, 0.030816874, -0.0036952978, 0.01015866, 0.012913088, -0.01711291, -0.018381039, 0.033407673, -0.015326622, -0.0044861734, 0.010090481, -0.010465465, 0.0047418443, -0.0043225437, -0.03354403, 0.01843558, 0.02720339, -0.006214509, -0.018121958, 0.0015135722, 0.01145406, 0.010997261, -0.00989958, 0.020112783, 0.026998855, -0.011140436, -0.010390468, 0.016785651, 0.0026521601, -0.006398592, -0.0055429465, 0.029507838, -0.0222536, 0.02361718, 0.002532847, 0.011583599, -0.0065008607, 0.005525902, -0.0155175235, -0.014003951, -1.0140284E-5, -0.011863133, -0.024435326, -0.02050822, -0.023249013, -0.045570794, 2.5119673E-4, -0.0048747933, -2.5055755E-4, -0.0015783422, 0.021367274, -0.009585957, 0.007090608, 0.003115777, -5.1901204E-4, -0.031744108, -0.025089845, 0.004997515, -0.024394419, 0.016349306, 0.018885562, -0.008720084, -0.031198677, 0.026426151, -0.0056247613, -0.012865363, 0.01316535, 0.022594497, -0.015612974, 0.012313114, -0.016390214, 0.0071792407, 0.020712757, -0.025662547, 0.020617306, -0.010356379, 0.027107941, 0.002193657, 1.5105894E-4, -0.006476998, -0.0015399915, -0.019076463, -0.0027782912, 0.027953358, 0.009606411, 0.00902689, -0.023630815, 0.005409998, 0.0066269916, -0.025839813, -0.012565376, -6.221327E-4, -0.0017215179, 0.02102638, 0.027489742, 0.015762968, -0.007097426, -0.0071519692, 0.006650854, 0.01996279, 0.010199567, 0.010315471, -0.008222379, 0.008392826, -0.029507838, 0.0045338986, -0.018381039, 0.020985473, -0.021626355, 0.021176374, -0.010574551, -0.012299478, 0.014617561, -2.7676384E-4, 0.035371225, -0.008781445, 0.009729133, -0.021435454, 0.01290627, 8.7055966E-4, -0.0066713076, 0.02720339, 0.016703837, -0.029726012, 0.0022021793, 0.014399389, -0.008406461, -0.0057440745, -0.005808844, -0.0059554293, 0.015762968, 0.007486046, -8.530888E-4, -0.012347204, -0.0063781384, 0.013124443, -2.0528249E-4, 0.042789094, -0.012790366, -0.004656621, 0.021994522, 0.028580606, -0.0026760227, 0.009633682, -0.02423079, 0.0111268, 0.01876284, 0.011665414, 0.060597427, -0.016622022, 0.024612593, -0.015394801, -0.009456417, 0.018040143, -0.016103862, -0.0029078312, 0.0125449225, 0.024680771, 0.015258444, 0.009838219, -0.019717345, 0.010274564, -0.009940487, 0.013233529, 0.011222251, -0.0024220564, 0.0056861225, -0.026903404, -0.036353003, -0.003368039, -0.0015331736, -0.0043907226, 0.006136103, -0.0019976425, 0.0030390755, -0.009429146, 0.017290175, 0.010963171, 0.02083548, 8.6331565E-4, -0.032944057, 0.019553715, 0.011842679, -0.018135594, -0.025989806, -0.0044179945, -0.004833886, -0.025021665, -0.013506245, 0.01197222, 0.021230917, -0.0059997453, 0.015353894, -0.0041520963, 0.018803747, 0.017944694, -0.0119654015, 0.004891838, 0.01358806, -0.014481204, 0.014113038, -0.006303142, -4.6207202E-5, 0.027148848, -0.0019857113, 0.003797566, 0.008576909, -0.0037532498, -0.010990443, 0.0016064659, 0.007997388, -0.03542577, 0.009606411, 0.0048952466, -0.0140448585, -0.007976934, -0.006712215, 0.003180547, -1.6179178E-5, -0.02015369, -0.023903532, -0.020617306, 0.001534878, 0.0850873, 0.03992558, -0.0046498026, 0.007540589, -0.0072610555, 0.014276667, -0.00824965, -0.0131789865, -0.009401874, -0.010751816, 0.02814426, -0.0039066523, 0.015994776, 0.008181471, 0.0039816494, -0.012476743, 1.4743692E-4, -0.003328836, -0.011515421, -0.020440042, -0.029698739, -0.014058494, 0.012265389, 0.021530904, 0.011535874, -0.028062446, 0.015899325, 0.005580445, -0.0076019503, 0.010588187, 0.013390341, -0.004002103, 0.0068792533, 0.012224481, 0.008931439, -0.0026811361, 0.025826177, 0.016581114, 0.028716963, -0.0014905618, -0.0013559083, 0.010479101, 0.010070027, 7.4996817E-4, 0.011010896, -0.02727157, -0.00837919, 0.021162739, 0.031035047, -0.037962027, 0.017685613, 0.0060986048, -0.020576399, -0.018776476, 0.017658342, -0.014003951, -0.009504142, 0.0057372567, -0.022717217, 0.010615459, -0.002601026, -0.03141685, 0.028280618, -0.0070087933, -0.011351791, -0.014413024, -0.020685486, -0.0022141107, -0.014317574, -0.0064872247, 0.00533841, -0.024080796, -0.014494839, -0.0023010387, 0.021994522, 0.008788263, 0.022335416, 0.004325953, 0.018831018, 2.7910748E-5, -0.02099911, -0.02474895, 0.0066985795, -0.034662165, -0.017931057, 0.02255359, 0.0044282214, 0.008290557, -0.0062588253, 0.013533517, -0.0026606827, 0.0035691666, -0.01902192, -0.020549128, 0.035207596, 0.0132948905, 0.008924621, 0.016785651, 0.009838219, -0.0039066523, 0.009313242, -0.029344209, -0.008263285, -0.02238996, -0.0075746784, -8.207038E-4, -8.846216E-4, 0.008031477, -0.016717473, -0.027926087, -0.015749332, -0.028444247, -0.0025822767, 0.0038282466, 0.012285843, 0.010990443, 0.02866242, 0.012633555, -0.013526699, -0.006913343, -0.0019430993, -0.003397015, 0.017358353, 0.015094814, -0.019062828, 0.034689438, -7.073563E-4, -0.023317192, 0.0025890947, 0.030953232, -0.021108195, 0.018858291, -0.021612719, -0.00869963, -0.020740028, -0.020085512, 0.007963299, -4.6745175E-4, -0.0059179305, 0.02319447, -0.021067288, -0.0014573245, 0.004942972, 0.0077792155, -0.007431503, -0.028989678, 0.011229069, -0.008808717, -0.0054611317, 0.019253729, -0.022008156, 0.010165478, -0.024830764, 0.0064156367, -0.012204028, -0.030189628, -0.025076209, -0.017140182, 0.017072003, -0.0020624124, 0.044316303, -0.013403976, 0.021639992, -0.006528132, 0.0062520076, 0.023508092, -0.018012872, -0.013076718, -0.026221614, -0.0040055118, 0.0026197752, 0.03147139, 0.0051577357, -0.002633411, 0.011372245, 0.013642603, 4.4827643E-4, 0.017385626, 0.0038657452, -0.02918058, -0.038834717, 0.006787212, -0.031689566, -0.024994394, -0.022458138, -0.018912833, 0.036353003, 0.0076837647, -0.0047111637, -0.020058239, 0.016185677, -0.007901938, 0.011672232, -0.033489488, 0.026207978, -0.025130752, 0.00588725, -0.017944694, -0.007833758, -0.0049054734, 1.3529256E-4, 0.02086275, 0.0038964255, -0.021653626, 0.002510689, 0.019240092, -0.010445011, -0.029071493, 0.03479852, -0.019812796, 0.003555531, -0.030053271, 0.0033782658, -0.01930827, -0.004291863, -0.021571811, -0.004128234, -0.005522493, -0.020617306, -0.031825922, 0.022185422, -0.010969989, 0.05249777, 0.018190138, 0.028444247, 0.018585576, -0.002352173, -0.017494712, 0.013697146, -0.0016558956, -0.012783549, 0.029726012, 0.011372245, -0.016990189, -0.011426788, -0.0012561966, -0.014099401, -0.040416468, -0.039734676, 0.024176247, 0.028198803, 0.015462981, -0.018517395, 0.0052906848, -0.021312732, -3.2555437E-4, -0.0037668855, -0.001412156, -0.0030032815, -0.03959832, -0.01963553, -0.008038295, -0.011781318, 0.006149739, 0.0106086405, -0.034307636, 0.0074724103, -0.039680135, 0.0075746784, -0.014672104, -0.010260928, 0.03823474, -0.008392826, 0.018708296, 0.007281509, 0.010465465, -0.01197222, 0.005260004, -0.0061770105, 0.027148848, -0.021435454, 0.025144387, -0.004772525, -0.00860418, 0.0015834555, 0.020494584, -0.004421403, -0.006207691, -0.030489616, -6.4301246E-4, 0.023139928, -0.014644833, -0.020944566, 0.0044248123, -0.020099146, -0.003458376, 0.0061326944, -4.3144476E-4, 0.017958328, -0.036434818, 0.011249523, -0.007629222, -0.0077178543, 0.013874412, 0.0022891073, 0.0030544158, -0.008713267, -0.0010934195, -0.010035938, -0.0011044986, -0.0058838413, -0.028498791, -0.039189246, -0.020412771, 0.002892491, -0.011583599, 0.009374602, -0.016049318, 0.0063304133, 0.0015093109, 9.4001694E-4, -0.02135364, 0.0016414076, -0.022539953, 0.004441857, 0.0028311298, -0.007622404, -0.003206114, -3.306678E-4, 0.025158023, 0.004772525, -0.0075814966, -1.1441276E-4, 0.011140436, 0.012865363, -0.010479101, 0.021394547, -0.0034123552, -0.024776222, 0.010226838, 0.017712886, 0.016608385, 0.00430209, -0.0024152384, -0.038452912, 9.357557E-4, -0.0036305278, 0.03632573, -0.006524723, 0.011392699, 0.038752902, 0.027639735, 0.03512578, 0.032207724, -0.020030968, -0.026944311, 0.012504015, -0.004233911, -0.028526062, -0.010976807, 0.0046020774, 0.02102638, -0.0046838922, -0.007676947, -0.012429018, -6.370468E-5, -0.01675838, -0.028935136, -0.013138079, 0.021789985, 0.031089589, 0.0026112527, 5.313695E-4, 0.008679177, 0.011685868, -0.0028123807, -0.008685995, 0.0054781768, 0.01640385, 0.020426406, 0.02309902, 0.02378081, -0.043334525, -0.010874539, 0.010704091, 0.016553843, 9.996735E-4, 0.01685383, -0.005631579, -0.021667263, -0.021367274, -0.0023658087, -0.007942845, -0.010124571, 0.026617052, -0.024598956, -0.003022031, -0.003732796, 0.026930675, -0.0062588253, 0.0064020013, 0.013663056, -0.0032129318, 0.00585657, -0.0033765612, -0.021421818, 0.013363069, -0.025471646, 0.037880212, 0.01316535, 0.0033203138, 0.025158023, 0.031525936, -4.9088825E-4, 0.019717345, -0.008331465, 0.002849879, -0.015558431, -0.004738435, -0.0016081703, 0.013881229, -0.027312478, 0.009845037, -0.021476362, 0.009095069, -0.0019754844, -9.357557E-4, -0.0047452534, 0.03681662, 0.016444758, -0.050479677, 1.893563E-5, -0.0029248758, 0.0048986557, 0.0040839175, -0.010179114, -0.036571175, -0.0037771123, -0.00462594, 0.0042986814, -0.023085384, -0.02517166, -0.0068826624, -0.022526316, 0.0020368453, 0.025117116, 0.18882835, -0.013560788, 0.002940216, 0.04685256, 0.0012195505, 0.03141685, 0.021203646, 0.007690583, -0.011269976, 0.002500462, -0.0012664235, 0.0061940555, -3.014787E-4, 0.003011804, 0.011849497, -0.02258086, -0.019976426, -0.022335416, -0.013574424, -0.03648936, -0.007813305, 7.043735E-4, 0.0032265675, -0.0218718, 0.0027902224, -0.0035964383, -0.01805378, 0.0075269532, 0.018544668, 7.324973E-4, -0.01666293, -0.013383523, 0.0053111385, -0.009095069, -0.022144515, -0.0069678864, 8.905872E-4, 0.008542819, 0.008426915, -0.0022362687, 0.019376451, -0.004421403, -4.661734E-4, -0.0034413312, 0.015872054, 0.013690328, -0.030789603, -0.01342443, -0.017385626, 0.0028362432, -0.034662165, 0.0037839303, 0.03730751, 0.027476106, -5.360568E-4, -0.0022601313, 0.0028686284, 0.003461785, -0.020917295, 0.009354148, 0.008351918, 0.03804384, -0.02413534, 0.0025158024, 0.0063167773, 0.018258316, -0.035153054, 0.009176883, 0.0069474326, -0.028826049, -0.0030493024, -0.02684886, -0.0044248123, -1.676509E-5, -0.018612847, -0.010765452, -0.0038759718, 0.0037839303, 0.011897222, 0.035316683, -0.016458392, -0.006231554, 0.01789015, -0.0045884415, -0.015081178, -0.004953199, 0.009333695, -0.0121972095, -0.0056111254, 5.326478E-4, -0.0028089718, -0.015394801, 0.0025089844, 0.007465592, -0.008924621, -2.978567E-4, 0.02703976, 0.0132062575, -0.02394444, -0.0051440997, -0.020208234, 0.018421946, 0.020262776, -0.0065622213, -0.03248044, -0.0103495605, 0.00559749, 0.016049318, 0.038562, -0.021299096, -0.0077655795, -0.012435836, -0.0019277591, -0.012265389, 0.014167581, 0.0089928005, 0.004881611, 0.015244808, 0.017576527, -0.021244554, 0.0017411193, -0.017085638, 0.013949408, -0.0064838156, -0.0059281574, -0.026712503, -0.025498917, 4.4582626E-5, 0.008965529, -0.030625973, 0.0136698745, -0.034825794, 0.020412771, -0.0063713207, 0.020780936, 0.018108323, 0.015340258, -0.01666293, 0.0072746915, 0.0015093109, -0.0047213905, 0.003458376, 0.014317574, 0.004349815, -1.9835806E-4, -0.03419855, -0.008133746, -0.008161018, -0.01433121, -0.025417103, -0.012210845, 0.0026504558, -0.0045236717, 0.0061804196, 0.039843764, 0.008597363, -0.009763222, -0.042134576, -0.0045100357, 0.042107303, -0.04565261, 0.020971837, 0.024667135, -0.013860775, -0.027312478, -0.0040941443, -0.17530166, 0.023085384, 0.02772155, -0.04360724, 0.024108067, 0.0055634, 0.0357803, 0.015258444, -0.0024936441, -0.013274437, 0.035698485, 0.0055088573, -0.026003443, 0.001693394, 0.0047895694, -0.004656621, -0.004175959, 0.03479852, 0.030325986, 0.0023862624, 0.043716326, -0.008167835, -0.018135594, -0.0025584141, 0.019430993, -9.2638115E-4, 0.037607495, 0.028362432, 4.7810472E-4, 0.0020470722, -0.04319817, -0.010029119, 0.01685383, 0.008229196, -0.012040398, -9.7240193E-4, -0.008631452, -0.008890532, -0.0041589146, -4.6958236E-4, 0.037498407, 0.004008921, 0.020044604, 0.01368351, 0.025867084, 0.03820747, 0.02050822, -0.0121972095, 0.014835734, -0.014440296, -0.003461785, -0.034989424, 0.022717217, -0.004632758, -0.001963553, 0.02552619, 2.727157E-4, -0.0022959253, 0.0024765995, -0.0068724356, -0.01572206, 0.0028089718, 0.009960941, -0.007690583, -0.005017969, -0.01581751, -0.018544668, 0.009626864, -0.023630815, 0.008835989, -0.022280872, 0.015094814, 0.010260928, 0.01180859, 0.015094814, -0.010410922, -0.027448835, 0.008658724, -0.00237774, 0.010997261, 0.0011044986, 0.037825666, -0.00666449, 0.007233784, 0.007615586, -0.003458376, -0.0024885307, -0.0019499173, 9.792198E-4, -0.005205461, 0.0014309052, -0.024394419, -0.034280363, 0.0067667584, 0.0027032944, 0.01015866, 0.0077519435, 0.0066747167, 0.0054202247, -0.010942717, -0.006337231, -0.018258316, -0.016990189, 0.021844527, 0.015203901, 0.0068792533, 0.022567224, 0.02442169, 0.019580986, -0.002947034, -0.008079203, -0.005580445, 0.014808463, 0.014576654, -0.013485791, 0.014494839, -0.030844146, -0.027612465, -0.009620046, 0.016322035, 0.07041519, 0.011249523, 0.0034941698, -0.0061429213, -7.857621E-4, -0.020849116, -0.09223245, 0.020071875, 0.0061292853, 0.03264407, -0.03861654, 0.03496215, -0.008774628, 0.021776348, -0.019008284, 0.03698025, -0.0032419078, -0.039134704, 0.0076837647, 0.0061701927, 0.0072746915, -0.009565503, -0.019649167, -0.01876284, -0.0033339495, 0.030325986, -0.0037293872, -0.010185932, -0.0042986814, -0.025730725, -0.026412515, -0.0067088064, -0.032753155, 0.011883587, 0.0077655795, 0.007663311, 0.0014624379, -0.021585448, 0.020140054, -0.027517013, -0.021844527, -0.0248444, -0.022567224, -0.021476362, 0.0035930295, -0.043552697, 0.0067531224, 0.01675838, -8.7695144E-4, -0.010076845, -0.011174526, 0.0030186218, -0.044970818, 0.017590163, -0.014249396, -0.009040525, -0.0014632902, -0.024980757, -0.033407673, -0.013785779, 0.014003951, 0.015353894, 0.028444247, 0.003749841, -0.014058494, -0.01562661, 0.0070837904, -0.0014513589, -0.021735441, 0.014167581, 0.011140436, 0.007056519, -0.0018749204, -0.01572206, 0.015422073, -0.030053271, -0.020208234, 0.024517141, -0.03965286, -0.011726775, -0.018121958, 0.011910859, -0.037771124, -0.031989552, 0.03250771, -0.029453296, -3.8499787E-4, -0.032780427, 0.021435454, -0.025185294, 0.019526444, 0.013935773, 0.006787212, 0.0026197752, -0.002219224, -0.04221639, -0.00824965, 0.028335162, 0.011556327, -1.840831E-4, -0.0044111763, 0.024353512, 0.010731363, 0.003739614, -0.007724672, 0.0031652066, -0.0016397032, 0.005017969, -0.07570588, 0.03700752, -0.015612974, -0.010083663, -0.02086275, -0.01164496, 9.0592745E-4, -0.011276795, -0.009851854, 0.041370973, 0.0016737926, 0.023030842, -0.0068962984, 0.0020300276, -0.024789857, -0.0089928005, -0.0030680515, -0.008849625, 0.00391347, 0.009033708, -0.008665541, 0.012054034, 0.0025021664, 0.01808105, -0.0077723972, 0.023180835, 8.547933E-4, -0.007036065, -0.020385498, -0.019908246, 0.040661912, -0.011413152, -9.624947E-5, 0.0036918889, -0.009224609, -0.028007902, 0.003674844, 0.014822098, 0.007417867, 0.010929082, 0.0023675133, -0.024189882, -0.0027782912, -0.013615332, -0.022349052, 0.003950969, -0.021912707, 0.011208615, 0.004349815, 0.007042883, 0.014685741, 0.008079203, -0.007036065, -0.01614477, 0.021067288, -0.010138206, 0.045188993, 0.0065554036, -0.008140564, -0.026644323, 0.025308017, 0.006350867, 0.023439914, -0.02630343, 0.01850376, 0.0013218189, 0.010663183, 0.006350867, -0.010049573, -0.03629846, -0.02703976, -0.0063815475, 0.004619122, 0.03687116, 0.0041589146, 0.014958456, 0.011535874, -4.0012508E-4, -0.019185549, 0.0086450875, 0.008774628, -0.007949662, -0.021639992, 0.015367529, -0.006020199, 0.0072746915, 0.0065076784, 0.01999006, 0.005075921, 0.011658596, -0.020630943, 0.020603672, 0.01145406, -0.007840577, 0.01180859, 0.023344465, -0.018940106, -4.1567837E-4, 0.0075064995, 0.02309902, 0.0013226712, -0.009013254, -0.011065439, -0.012654008, -0.030216899, 0.0016056137, -0.010894992, -0.022021793, 0.0013848845, 0.01944463, 0.027339749, 0.022526316, -0.006937206, 0.006091787, -0.031689566, 0.01739926, -0.0012229595, -0.011631325, -0.0071315155, 0.03561667, 0.006971295, 0.014822098, 0.02500803, -0.013110807, 0.06446999, 0.019417359, 0.011726775, -0.022799032, 0.011269976, 0.007186059, 0.00647018, -0.004765707, -0.014494839, 0.0042884545, -0.0037532498, 0.0073155984, 0.007206512, 0.026671596, -0.018367402, 0.075105906, 0.015872054, -0.009347331, 0.02918058, -0.016894737, 0.0083860075, -0.004080509, 0.017508348, -0.0041930038, -0.014085766, 0.003613483, -0.005962247, 0.009592774, -0.01850376, -0.007288327, -4.7682636E-4, 0.023071747, 0.016935645, 0.008154199, -0.022199057, -0.01617204, -0.0065213144, 0.01598114, -0.0057986174, -0.0025635276, -0.0019771887, 0.03567121, -0.00947687, -0.0021817256, -0.031907737, 0.0015255035, -0.027817002, 8.0280687E-4, 0.005819071, 0.03995285, -0.01154951, -8.2411274E-4, 0.0047861603, 0.016253855, -0.0038827898, -0.025048938, 0.004925927, -0.021080924, -0.014631197, 0.03305314, -0.0012953996, -0.00608156, -0.02387626, -0.020262776 ], + "id" : "2776d298-06f0-4083-b8ac-c2ab49616005", + "metadata" : { + "source" : "movies.csv" + } + }, + "39c158a8-6907-4dca-86cf-d2f652aa8dcc" : { + "text" : ",49444-9502-278154-10527-8355-80321-950-953-57800-15854-810-159824-38055-153518-270946-82702-50508-10192-425-49013\r\n280,Terminator 2: Judgment Day,Action-Thriller-Science Fiction,en,Nearly 10 years have passed since Sarah Connor was targeted for termination by a cyborg from the future. Now her son John the future leader of the resistance is the target for a newer more deadly terminator. Once again the resistance has managed to send a protector back to attempt to save John and his mother Sarah.,72.923,TriStar Pictures-StudioCanal-Lightstorm Entertainment-Carolco Pictures-Valhalla Motion Pictures,7/3/91,102000000,520000000,137,Released,It's nothing personal.,8.095,11197,Arnold Schwarzenegger-Linda Hamilton-Edward Furlong-Robert Patrick-Joe Morton-Earl Boen-S. Epatha Merkerson-Castulo Guerra-Danny Cooksey-Jenette Goldstein-Xander Berkeley-Leslie Hamilton Gearren-Ken Gibbel-Robert Winley-Pete Schrum-Shane Wilder-Michael Edwards-Jared Lounsbery-Casey Chavez-Ennalls Berl-Don Lake-Richard Vidan-Tom McDonald-Jim Palmer-Gus Williams-Gwenda Deacon-Don Stanton-Dan Stanton-Colin Patrick Lynch-Noel Evangelisti-Nikki Cox-Lisa Brinegar-DeVaughn Nixon-Tony Simotes-Diane Rodriguez-Dalton Abbott-Ron Young-Charles Robert Brown-Abdul Salaam El Razzac-Mike Muscat-Dean Norris-Charles A. Tamburro-J. Rob Jordan-Terrence Evans-Denney Pierce-Mark Christopher Lawrence-Pat Kouri-Van Ling-Martin DeLuca-Joel Kramer-Richard Ruskin-Scott Shaw-Sven-Ole Thorsen-Randy Walker-William Wisher-Dalton Hamilton-Nancy Fish-Mic Rodgers-Gus Williams-Michael Albanese-Ed Arneson-Debra Casey-Anne Merrem-Gavin Kelly,cyborg-shotgun-villain-time travel-post-apocalyptic future-dystopia-moral ambiguity-mental institution-juvenile delinquent-fictional war-urban setting-troubled teen-morphing-nuclear weapons-shape shifter-savior-catch phrase-action hero-good versus evil-terminator,/5M0j0B18abtBI5gi2RhfjjurTqb.jpg,/xKb6mtdfI5Qsggc44Hr9CCUDvaj.jpg,218-296-534-562-679-348-85-603-89-1891-105-857-329-11-87101-106-18-98-607-165-121\r\n102899,Ant-Man,Science Fiction-Action-Adventure,en,Armed with the astonishing ability to shrink in scale but increase in strength master thief Scott Lang must embrace his inner-hero and help his mentor Doctor Hank Pym protect the secret behind his spectacular Ant-Man suit from a new generation of towering threats. Against seemingly insurmountable obstacles Pym and Lang must plan and pull off a heist that will save the world.,120.506,Marvel Studios,7/14/15,130000000,519311965,117,Released,Heroes don't get any bigger.,7.083,18261,Paul Rudd-Michael Douglas-Evangeline Lilly-Bobby Cannavale-Corey Stoll-Anthony Mackie-Judy Greer-Abby Ryder Fortson-Michael Pe��a-David Dastmalchian-T.I.", + "embedding" : [ -0.006235678, -0.044074595, -0.019803418, -0.035824314, -0.005286622, 0.022859585, -0.004926871, -0.009250731, -0.032014385, -0.031301733, 0.028807463, 0.034316786, -0.006705067, -0.007092227, 0.014554484, 0.0057731415, 0.015171199, -0.026176143, 0.015376772, -0.012519323, 0.00707167, -0.007174456, -0.01703505, 0.009127389, 0.0060677947, 0.022092117, 0.014499665, -0.031438783, -0.011882051, -0.019433388, 0.018940017, -0.018912606, 0.0014252979, -0.013793868, -0.024435636, 0.0055675698, 0.016555384, -0.01963896, 0.035084255, -0.006609134, 0.025326448, 0.016898002, -0.007983038, -0.0042793197, 5.321312E-5, 0.0020488657, 0.020063808, -0.019364864, -0.013307349, 0.025353856, 0.008681983, 0.03097282, -0.016692432, -0.033165585, -0.0063624475, 0.0011083747, -0.01837812, 0.012957877, 0.0058896323, -0.005564144, 0.008353068, -0.016596498, -0.0354954, -0.0068318364, -0.006324759, -0.0031281176, -0.025696477, -0.0027084085, -0.006609134, 0.0106897345, -6.693932E-4, 0.016596498, 0.019995285, 0.01173815, 0.0097783655, -0.031986974, -0.02410672, -0.0022304542, 0.0023709282, 0.011772412, 0.013184005, -0.008866997, 0.003410779, -0.00269813, 0.015061561, 0.015404181, -0.0032617394, -5.584701E-4, -0.024654912, -0.008627163, 0.02187284, 0.028231861, 0.010388229, 0.027382165, 0.0069723106, 0.019803418, -0.016569087, 0.016157944, -0.0072361277, -0.034316786, 6.7067804E-4, -0.009264437, 0.0049440023, -0.012327456, -0.0043546963, 0.0020403003, 0.0029105542, -0.0039195693, 0.018460348, -1.08728214E-4, 0.0014227282, 0.008551788, 0.021489106, -0.043471586, 0.00835992, -0.014773761, 0.0146504175, -0.020050105, -0.0018518594, -0.013108629, 0.025600543, 0.04111436, 0.013375873, -0.023572234, 0.03354932, 0.0340701, 0.008908112, -0.010682882, -0.019844532, 0.0036420473, 0.030068303, 0.004947428, 0.023174796, 0.022325099, -0.022393623, 0.04958392, -0.03661919, -0.0019717764, -0.011381825, -0.010847339, 0.03171288, 0.029136378, -0.010299148, -0.0051632784, -0.020337904, -0.008586049, 0.022585489, 0.003950405, 0.020844981, 0.02024197, 0.022695128, 0.019214112, 0.009394632, -5.584701E-4, 0.025902048, -0.007380028, -1.0530202E-4, -0.010306, 0.0020403003, -0.029986074, 0.007777467, -0.0087093925, 0.012416537, -0.020913506, 0.0062528094, 0.023805216, 0.031438783, -0.022434738, 9.1479457E-4, -0.0011537718, -0.011272187, 0.020735344, -0.007989891, 0.0020985457, -0.004700742, 0.02679286, -5.122164E-4, -0.014376322, -0.023065157, -0.011991689, -0.0028146207, 0.008126939, 0.029081559, 0.03815413, -0.0031246915, 0.02218805, 0.02453157, -0.01898113, 0.016651317, -0.017226918, 0.0040086503, 0.012190408, -0.002107111, -0.013608854, -0.64511174, -0.013718492, -0.01013469, -0.0022338803, -7.1950135E-4, 0.0075513376, 0.0111351395, 0.0042793197, -0.023997083, -0.022379918, -0.018611101, 0.016349811, 0.011121435, -0.009086274, -0.041415866, -0.018021796, -0.0017199508, -0.0037277022, 0.014006292, 0.019899352, -0.03223366, 0.020666819, 0.0053722765, 0.0037551117, 0.013005843, 0.0022989782, -0.007064818, -0.0028317517, -2.9743672E-4, -0.0012719756, -0.009401484, -0.0058725015, 0.018707035, -0.004491744, 0.03672883, 0.0065132002, -0.0026964168, 0.038236357, 0.019268932, 0.037112564, -0.028204452, -0.00417996, 0.018172547, 0.019049654, -0.014074816, 0.01076511, 7.1778824E-4, -0.012409685, 6.7153457E-4, -0.001951219, 0.0031983547, 0.01608942, 0.0060986304, 0.008298249, -0.012320604, 0.00483779, 0.020310495, -0.018419234, 0.021023143, -0.018624807, -0.007503371, 0.021461697, 0.01027859, 0.009894856, -0.003604359, 0.01906336, -7.721791E-4, -0.013985735, -0.008592902, -0.02276365, 0.016034601, 0.019885646, -0.0032137726, -0.0054750624, -0.0040977313, 0.016226469, 0.033357453, -0.009538532, 1.7644913E-4, 0.03343968, 0.004419794, -0.0055230292, -0.013917211, 0.015993487, 0.02184543, -0.005046788, -0.027532918, 0.010168952, 0.012375423, 0.01388295, 0.011957427, -0.002489132, 0.008791621, -0.012361718, -0.016363516, -0.006739329, -0.019652665, -0.0016111691, 0.015500114, -0.049885426, -0.019762304, -0.006006123, 0.041717373, -0.0011811814, 0.03716738, -8.9455854E-5, 0.0031109867, -0.0061740065, 0.023599643, -0.018446643, -0.021105373, 0.008133791, -0.01190946, 0.0015897553, 0.012731748, -0.022749947, 0.019734893, 0.015637163, 0.0072977995, -0.008949226, 0.00901775, 9.2614384E-5, -0.0013430691, -0.01961155, 0.011272187, 0.022722537, 0.0048617735, -0.011505169, 0.0035032863, -0.0019580715, -0.016678726, 0.012272637, 0.0073731756, -0.017117279, 0.0052009667, 0.0072840946, 0.024490455, -5.023661E-4, 0.027697375, 0.006180859, -0.028368909, 0.0010509859, -0.014814875, -0.0096002035, -0.013608854, -0.039579425, -0.01932375, -0.011470907, 0.006386431, -0.0033748038, -0.02355853, 0.03028758, 0.0053928336, 0.010943273, -0.005050214, -0.007893957, -0.021420583, -0.02773849, 0.014705237, -0.023860035, -0.009983937, 0.013464954, -0.005721749, -0.013081219, 0.023051452, -0.005759437, -0.0034673112, 0.019159293, -0.014129636, -0.02421636, 0.018364415, -0.010182657, -0.008681983, -0.0013002417, -0.017953271, 0.025737591, -0.026162438, 0.02510717, 0.006804427, -0.005958156, -0.0062253997, 0.007044261, -0.014431141, 0.003535835, 0.022845881, 0.031164687, 0.0283415, -0.01708987, -0.0174599, 0.015034151, -0.012964729, -0.012752305, -0.020050105, 0.006663953, 0.00804471, 0.025723886, 0.008956078, 0.0016865454, -0.0026193275, 0.01826848, 0.042594478, 0.027930357, -0.004817233, -0.0115120215, -0.00685582, -0.019337455, -0.0020848408, -0.028862283, 0.0045362846, -0.017048756, 0.013211415, -0.0053585717, -0.010614358, -0.0064994954, 0.009127389, 0.01388295, -0.01617165, 0.010395081, -0.025888342, 0.002456583, 0.008298249, -0.00605409, 0.005516177, -0.009723547, -0.017254326, 0.012820829, 0.025929458, -0.011717593, -0.011080321, -0.01419816, 0.013060662, -1.3040962E-4, 0.004138846, -0.0074828137, 0.0053996863, 0.0123137515, 0.031411372, -0.0122246705, 0.03667401, -0.007030556, -0.012156147, 0.0066571003, 0.030013485, -0.0055435863, -0.015623458, -0.012676928, 0.03683847, 0.015171199, -0.017514719, 0.037797805, -0.0226129, 0.01961155, -0.010902158, 0.008914964, 0.0036283424, -0.014006292, -0.0050228047, 0.0013156596, 0.0443761, 0.027642556, 0.020050105, -0.030726133, 0.011196812, -0.0072703897, 0.018857786, 0.007640419, -0.020749047, -0.020310495, -0.003984667, -0.018624807, -0.0056909127, -0.00588278, 0.0041148625, 0.006081499, -0.007784319, -0.0061020567, 0.005632668, 0.010902158, 0.00784599, 0.01543159, -0.014677827, -0.03420715, 0.016555384, 0.018720739, -0.006526905, -0.02313368, -0.014348912, -0.0132045625, -0.031438783, -0.0021105371, -0.01577421, 0.03228848, -0.009072569, -0.005036509, -0.020077514, 0.0015306534, 0.012039656, -0.004385532, 0.013629411, 0.015157495, 0.0022664291, 0.016596498, 0.002677573, -0.009010898, 0.028862283, -0.010374524, 0.019830827, -0.011347564, 0.010895306, -0.011950575, -0.007654124, 0.019734893, -0.037989672, 0.0068455413, -0.013019548, -0.006996294, 1.0664038E-4, -0.0033730909, 0.0010664038, -0.007715795, -0.018775558, -0.012635814, -0.02126983, -0.0051632784, 0.065892614, 0.03354932, 0.026409125, 0.006896934, -8.227155E-4, -0.0028334649, -0.012306899, -0.009284994, 0.0029465293, -0.012916762, 0.017062461, 0.004615087, 0.013910359, -0.001523801, 0.0226129, -0.0043444177, -9.57622E-4, -0.0022064708, -0.0075102234, -0.018049205, -0.009470008, -0.012690633, 0.0133827245, 0.0349198, 0.017706586, -0.017624356, 0.023997083, -0.0025114024, 0.005618963, -0.0013096638, -0.015582344, 0.0017182378, 4.5482762E-4, 0.008442149, -0.0028985625, 0.013033253, 0.026340602, 0.012793419, 0.023914853, 0.012800272, 0.0011477759, 0.0037071449, 0.005170131, -0.01606201, -5.160709E-4, -0.01081993, -0.0019066785, 0.014239274, 0.033110768, -0.046102904, 0.013896654, -0.010607505, -0.021516517, 0.0027426705, 0.0011340711, 0.0073320614, -0.017309146, -0.0038236356, -0.04958392, 0.01176556, 0.005865649, -0.051310726, 0.023599643, -0.017775109, 0.0013276513, -0.0028009159, -0.004851495, -0.0036831617, -0.0028111944, 0.0040120766, 0.004995395, -0.020433838, -0.0064789383, 0.015459, 0.016445745, -0.007880253, 0.022708833, -0.007784319, 0.0014372895, 0.015650867, -0.03801708, -0.029355654, 0.019118179, -0.028204452, 0.010031904, 0.022407327, -0.013184005, 0.024188949, -0.012985286, 0.012348013, 0.0048480686, -0.00921647, -0.018926311, -0.017624356, 0.028889691, 0.0012925328, 0.022434738, 0.009004045, 0.011100878, 0.008174906, -0.014993037, -0.03289149, -0.003988093, -0.010182657, -0.023421481, -0.02126983, 0.008668278, 0.01617165, -0.0231885, -0.023462595, -0.021763202, -0.010998092, 0.0101552475, 0.0022715684, 0.004248484, -0.0013259382, 0.029547522, -0.0010698299, 0.0025679346, 0.003186363, -0.0024600094, -0.0065885764, 0.018186253, 0.027505508, 0.006581724, 0.008634016, -0.0017362252, -0.027327346, -0.004248484, 0.027012136, -0.0063898573, 0.0015597761, -0.01305381, -0.0049028876, -0.025545724, -0.03620805, 0.001295959, 0.008113234, 0.0066228383, -0.012258932, -0.021516517, 0.0103334095, -0.010648619, 0.0036249163, -0.0026398846, -0.022695128, 0.00867513, 0.019077064, 0.024325997, 0.029410474, -0.0054202434, 0.01837812, -0.025381265, -8.180045E-4, -0.010203214, -0.04201888, -0.018816672, -0.0072840946, 0.047226697, 0.035139076, 0.04103213, -0.024175245, 0.021036848, 0.009408336, 0.01514379, 0.02121501, -0.007688386, 0.002872866, -0.020091219, 0.014787465, 0.019748598, -0.003393648, 0.027299937, 0.013451248, 0.0067153457, 0.027299937, 0.004875478, 0.019789713, 0.017980682, -0.021722088, -0.011601103, -0.0024976975, -0.024723437, -0.014910809, -0.026642106, -0.022421032, 0.0392231, -0.001932375, -0.003237756, 0.0074074375, 0.02507976, -0.0031606667, -0.0043752533, -0.008476411, 0.015760506, -0.027272526, 0.0017268033, -0.027491804, 0.0131154815, 0.008366773, -0.00629735, 0.005759437, -0.026340602, -0.017322851, -0.006615986, 0.017583242, -0.02581982, -0.032425527, 0.0112242205, -0.0078734, -0.008791621, -0.039798703, -0.0035289826, -0.038291175, -0.011416088, 0.011697036, -0.0018604249, 0.01125163, -0.030753544, -0.04563694, 0.04053876, -0.015650867, 0.025669066, 0.019529322, 0.050077293, 0.031822518, 0.022338804, -0.014732647, -0.014074816, -0.010175805, 0.007654124, 0.025943162, 0.025586838, -0.0155412285, -0.01806291, 0.007976186, -0.008640869, -0.031877335, -0.05029657, 0.01382813, 0.019515617, 0.02255808, -0.02126983, -0.016610201, -0.038839366, 0.0033456811, 0.014869695, 0.010456753, 0.004940576, -0.018364415, -0.018021796, 0.0058759274, -0.011361268, 0.0069586057, 0.01737767, -0.03741407, 0.01735026, -0.030890591, 0.008133791, -0.025203103, -0.0016505703, 0.026272077, -0.022845881, 0.010998092, 6.188568E-5, 0.009538532, -0.0021722089, 0.0069517535, 3.094284E-5, 0.032644805, -0.014184454, 0.019268932, 0.0012488487, 0.0010218632, 0.014499665, 0.021352058, -0.018926311, -0.016445745, -0.03409751, -0.011751855, 0.021146487, 0.020406429, -0.005605258, -0.017418785, -0.016843183, -0.031301733, 0.00208998, -0.0042930245, 0.009230174, -0.03483757, 0.0026381717, 0.0018090319, -0.0038373405, 0.0014021711, -0.0018021795, 0.01013469, -0.0026998431, 0.036920696, -0.017268032, 0.00867513, -0.010518424, -0.0026364585, -0.038866777, -0.02132465, -0.007201866, -0.018967425, 0.009833185, -0.018104024, 0.017130984, -0.01176556, 0.0040497645, 0.001966637, 0.005742306, -0.014869695, 0.0040497645, 0.028505957, -0.010785667, -0.007660976, -0.008969783, 0.03557763, 4.929441E-4, 1.0888882E-4, -0.004995395, 0.0037585378, 0.031795107, -0.029383063, 0.002401764, 0.002643311, -0.019392274, -0.005046788, 0.026148735, 0.033987872, 0.0102443285, -0.00707167, -0.032014385, -4.3105838E-4, -0.00872995, 0.025052352, -0.016610201, -0.0021790613, 0.010292295, 0.004782971, 0.026971022, 0.026984727, -0.01013469, -0.028560776, 0.009278141, -0.022078412, -0.021626154, -0.0053517194, 0.0021516515, 0.009010898, 0.008586049, -0.008291396, -0.026929908, -0.015390476, -0.01365682, -0.029492702, 0.0034690243, 0.020104922, 0.0366466, 0.020680524, -0.0043272865, 0.009284994, -0.00581083, 0.007914514, -0.028177043, 5.7474454E-4, 0.021790612, 0.019817123, 0.016281288, 0.013924064, -0.043416765, -0.011580545, 0.0011349277, 0.013259382, -0.002490845, 0.03157583, -0.03152101, 0.005464784, -0.0037311283, -0.017281737, -5.850231E-4, -0.0020248822, 0.009764661, -0.016815774, -0.0028180468, 0.0074142898, 0.015212314, -0.026971022, -0.0013165161, 0.018076614, -0.008723097, -0.018460348, 0.0060506635, -0.035659857, 0.0048651993, -0.035550218, 0.022996632, 0.008346216, -0.008449001, 0.010395081, 0.026217258, -0.009086274, 0.019104473, -0.0066022812, -6.1971333E-4, -0.0053517194, -0.006842115, 0.02636801, 0.034124922, -0.02968457, 0.03735925, -0.03223366, 0.0059821396, -0.0024514438, -1.4015286E-4, -0.015897553, 0.021776907, 0.012320604, -0.04519839, -0.00707167, 2.691706E-4, 0.016569087, 0.0049028876, -0.0014150193, -0.022914404, -0.015047857, -0.003796226, 0.008257135, -0.016294992, -0.013266234, -0.0025679346, -0.019830827, -0.012848238, 0.013019548, 0.18572728, -0.01869333, 0.007708943, 0.049830608, 0.008147496, 0.022201756, 0.01514379, 0.007626714, -0.015335657, -6.445533E-4, -0.0027066956, 0.013697935, 0.0012017385, -0.001791901, 0.020392723, -0.018474054, -0.012217818, -0.01614424, -0.033384863, -0.013704787, 0.006352169, 0.010991239, -0.01448596, -0.029492702, 0.031301733, -0.011025501, -0.012649518, 0.009613908, 0.017446194, 0.0031555272, -0.03346709, -0.016596498, 0.0075581903, 0.00967558, -0.01179297, -0.010353967, -0.0061397445, 0.009428893, 0.0073663234, -0.011861494, -0.0062870714, -0.008339363, -0.01543159, -0.017363966, 0.012656371, 0.019419683, -0.016569087, -0.020543477, -0.03546799, -0.0019392275, -0.044677608, -0.007811729, 0.012766009, 0.03352191, -0.017775109, 0.001444142, 0.002470288, 0.0020659966, -0.0027272527, 0.014664123, 0.0132045625, 0.030342398, -0.03417974, 0.012348013, -0.0017970402, 0.021105373, -0.03286408, 0.009874299, 0.031192096, -0.035029437, 0.0014818301, -0.002595344, -0.016322402, 0.0051735574, -0.010271738, -0.007640419, -0.010785667, 0.025257923, 0.002103685, 0.006896934, -0.019680075, -0.011854641, 0.01987194, -0.02957493, -0.02035161, -0.01972119, 0.018994836, -0.013807573, -5.361998E-4, -0.005519603, -0.014390026, -0.030726133, -0.014252978, 0.0038065047, -0.010031904, -0.0029842174, 0.01339643, 0.019584142, -0.0060026967, 4.2913115E-4, -0.03620805, 0.026957316, 0.014348912, -0.0021722089, -0.030232761, -0.015760506, 0.008250282, 0.020913506, 0.010456753, -0.019501911, -0.009387779, -0.03481016, 0.009716694, -0.0010509859, 0.004269041, 0.023394072, 0.001898113, -0.02476455, 0.04832308, -0.017569538, 0.018131433, -0.0042553362, 0.0074691093, 0.012820829, 0.0045362846, -0.027752195, -0.029931255, 0.0020265954, -0.0074691093, -0.017884748, 0.019830827, -0.032425527, 0.01179297, 0.00435127, 0.0040292074, -0.003116126, 0.025806114, 0.013458101, -0.010045609, -0.006081499, -0.003638621, -0.010100428, 0.0019700632, 0.001453564, 0.013615706, -0.01998158, 0.018775558, 0.003830488, -0.0045499895, -0.034563474, -0.009483713, -0.022804767, -0.008860145, 0.014897103, 0.027409574, 0.007140194, -0.028067404, -0.019090768, -0.012985286, 0.027615147, -0.04010021, 0.010292295, 0.012368571, -0.008284544, -0.039798703, -0.007119637, -0.17684658, 0.0068147057, 0.009004045, -0.032699622, 0.038236357, 0.019378569, 0.0037619642, 0.015212314, -2.9293983E-4, -0.0075307805, 0.025888342, 0.0107788155, -0.036509555, -0.018569987, 0.017514719, 0.009271288, -0.020173447, 0.038236357, 0.029931255, -7.9487765E-4, 0.038263768, -0.012944171, -0.0067427554, 0.0021345206, 0.011354417, 0.021173896, 0.0036180639, 0.007311504, 0.015417886, -0.010703439, -0.036153227, -0.007311504, 0.0020214561, -0.0025131153, -0.012279489, 0.0056497985, 0.002975652, -0.002677573, -9.6190476E-4, -1.6948968E-4, 0.03026017, 0.009744104, 0.009661875, -9.696137E-4, 0.0035461136, 0.017007641, 0.016939117, -0.021132782, 0.008078972, -0.031109868, 0.005965009, -0.036564372, 0.011395531, 0.0023931984, 0.003359386, 0.0052318024, -0.015034151, -0.0012300047, -0.006249383, -0.0052078194, -0.029328246, 0.005660077, 0.009579646, -0.0064823646, -0.015376772, -0.019241521, -0.016281288, -0.0011297883, -0.042786345, 0.0047795447, -0.012115032, -0.010196362, 0.030479448, -0.006047237, 0.009442599, -0.014609303, -0.021776907, 0.018254777, 0.0041148625, 0.01769288, -0.012738599, 0.036290277, -0.001043277, 0.005591553, 0.01895372, -0.004920019, 0.021598745, 0.0050399355, 0.013992588, -0.018940017, 0.016555384, -0.013375873, -0.0354954, -0.0074142898, 0.018885197, 0.001035568, 0.0067427554, -0.016363516, 0.01205336, -0.0060301065, 0.0029670864, -0.0068489676, 0.0020283086, 0.017158393, 0.022599194, 0.02224287, -0.009127389, 0.03097282, 0.028149633, -0.0032857228, -0.009141093, 3.764534E-4, 0.009250731, 0.017898452, -0.004241632, 0.018309595, -0.007962481, -0.02571018, -0.0041148625, -0.0013310774, 0.021804316, -0.006931196, -0.0052009667, -0.01548641, -0.009401484, -0.02218805, -0.08535341, 0.014773761, 0.030068303, 0.032699622, -0.008140644, 0.029246015, -0.012348013, 0.021598745, -0.02513458, 0.033110768, 0.0021139635, -0.031822518, 0.009661875, -0.007208718, 0.0021430862, -0.002069423, -0.016075715, -0.009812628, 0.003655752, 0.025381265, -0.0054373746, -0.004275894, -0.014403732, -0.0056018317, -0.020543477, 0.0015503541, -0.03094541, 0.025408676, 0.028670415, 0.0078734, 0.015349362, -0.020844981, 0.021338353, -0.031356554, -0.030534266, -0.031795107, -0.031329144, -0.038620092, 4.8609168E-4, -0.053064935, 0.009572794, 0.0013370733, 0.0038510452, -0.03174029, -1.738795E-4, -0.016911708, -0.023078863, 0.02571018, -0.0010064453, -0.03557763, -0.020406429, -0.02132465, -0.019186702, -0.0023435187, 0.022599194, 0.013999441, 0.032398116, 0.0080652675, -0.031822518, -0.003967536, 7.057965E-4, 0.009298698, -0.029657159, 0.009086274, 0.015184904, 0.007380028, -0.0018432939, -0.008174906, 0.021763202, -0.0050330833, -0.010628062, 0.036345094, -0.034371607, -0.013403282, -0.012012246, -0.0074759615, -0.019172998, 0.0038339142, 0.026532467, -0.024120426, -0.010210066, -0.025326448, -0.0053722765, -0.0102443285, 0.010025052, 0.013266234, 0.0044951704, -4.0193571E-4, 0.002889997, -0.027491804, 0.013149743, 0.028067404, 0.002369215, 6.2185474E-4, -0.015938668, 0.026518764, 0.0109569775, 0.02058459, 0.0044643343, 0.008921817, -0.02221546, -0.01548641, -0.08173535, 0.014390026, -0.022914404, -0.014074816, -0.008284544, -0.0065851505, 0.0062082685, -0.004851495, 5.2115665E-5, 0.01417075, -0.007256685, 0.004669906, -0.01205336, 0.0030424627, -0.01368423, 0.009833185, -0.0066194125, -0.007983038, 0.011039206, -0.007503371, -0.01614424, -0.00996338, 0.019474503, 0.01239598, -0.0095111225, 0.021420583, 0.0028454564, -0.0020077513, -0.006372726, -0.008613459, 0.02731364, -0.00981948, -0.010717143, -0.006948327, -0.020255676, -0.020447543, -0.010189509, -0.0015375058, 0.016898002, 0.0026912775, -0.011347564, -0.03086318, -0.0028831447, -0.0036660307, 2.3105415E-4, 0.029903846, -0.011580545, -3.709929E-5, 0.016267583, 0.0074691093, 0.022133231, 0.01208077, -0.02163986, -0.028533367, 0.027039545, -0.03160324, 0.042978212, -0.0073046517, 0.0015572065, -0.0073183565, 0.03985352, 0.013403282, 0.020776458, -0.031795107, 0.016802069, -0.0050399355, 0.0052831955, -0.0012222957, 0.0068352628, -0.019597845, 0.010737701, -0.012032803, 0.019118179, 0.0034056397, 0.015226019, 0.0043444177, -0.01714469, 0.014568189, 0.0115120215, 0.006893508, 0.03289149, -0.017528422, -0.026546173, 0.0098674465, 0.0042519104, 0.037002925, 0.01342384, 0.0012702625, 8.4455754E-4, 0.015006742, -0.01900854, 0.012176704, 0.016185354, -0.003429623, -0.0014141627, 0.022845881, -0.009250731, -0.0067975745, -0.0027872112, 0.015335657, 0.0034758768, 0.007222423, -0.0061020567, -0.0032634526, -0.030095713, 0.006331612, -0.013862392, -0.025765, 0.02647765, 0.018940017, 0.01448596, 0.0016283001, 6.569732E-4, 0.02035161, -0.040237255, 0.026354305, -0.013067515, -0.018789263, -0.02739587, 0.03672883, 0.024065606, 0.0046459227, 0.04103213, -0.017651767, 0.03927792, 0.012512471, 0.022941815, -0.02539497, 0.004635644, 0.008524378, -0.009223321, -0.016651317, -0.019378569, 0.0013747615, -0.0026655812, -0.0025833524, 7.811729E-4, 0.034536064, -0.015226019, 0.07400585, 0.021036848, -0.014047407, 0.019625256, -0.024024492, 0.007311504, 0.007887105, 0.018926311, -0.03160324, -0.016473154, 0.0046870373, -0.025902048, 0.006629691, -0.026587287, 0.0025559429, 0.0078734, -0.0043958104, 0.0027084085, -0.009442599, -0.009093126, -0.008140644, -0.011875198, 0.008284544, -0.005272917, -0.019118179, -0.0036626044, 0.017829929, 0.0012000254, -0.005896485, -0.034618292, 0.001157198, -0.03470052, -0.015376772, -8.6468644E-4, 0.013910359, 0.0042930245, -0.017871043, 0.0046219397, 0.028053699, 0.008695687, -6.7110633E-4, 0.026121324, -0.033083357, -0.025066055, 0.0096892845, -0.0018467201, 0.0037893737, -0.031274326, -0.007811729 ], + "id" : "39c158a8-6907-4dca-86cf-d2f652aa8dcc", + "metadata" : { + "source" : "movies.csv" + } + }, + "028914a0-7269-4c36-861a-0ccc8f9eeba0" : { + "text" : "Stewart-Benjamin Davies-Matthew Stirling-David Ajala-Thure Lindhardt-Shea Whigham-Andrei Zayats-John Ortiz-Jason Thorpe-Alexander Vegh-Stephen Marcus-Magda Rodriguez-Andy Pointon-Victor Gardener-Sol de la Barreda-Elvira Tric��s-Carolina Pozo-Revil Beat-Sarah Li Yan-Eddie Bagayawa-Dean Barlage-Gintare Beinoraviciute-Catherine Delaloye-Rowena Diamond-Mark Haldor-Andrew Koji-Alex Martin-Rita Ora-Gemita Samarra-Jason Statham-Jason Harris,car race-sequel-street race-car theft,/thSmnRdrzPBBospIOJjLZBReqzo.jpg,/mRfI3y2oAd7ejur2di09xC9niqp.jpg,51497-13804-9799-9615-168259-584-72559-337339-47964-68721-76163-117263-24428-81005-37724-49521-60304-75612-119283-76170-70160\r\n217,Indiana Jones and the Kingdom of the Crystal Skull,Adventure-Action,en,Set during the Cold War the Soviets���led by sword-wielding Irina Spalko���are in search of a crystal skull which has supernatural powers related to a mystical Lost City of Gold. Indy is coerced to head to Peru at the behest of a young man whose friend���and Indy's colleague���Professor Oxley has been captured for his knowledge of the skull's whereabouts.,39.209,Paramount-Lucasfilm,5/21/08,185000000,786636033,122,Released,The adventure continues . . .,6,7136,Harrison Ford-Cate Blanchett-Karen Allen-Shia LaBeouf-Ray Winstone-John Hurt-Jim Broadbent-Igor Jijikine-Dimitri Diatchenko-Ilia Volok-Emmanuel Todorov-Pasha D. Lychnikoff-Andrew Divoff-Venya Manzyuk-Alan Dale-Joel Stoffer-Neil Flynn-V.J. Foster-Chet Hanks-Brian Knutson-Dean Grimes-Sasha Spielberg-Nicole Luther-Sophia Stewart-Chris Todd-Dennis Nusbaum-T. Ryan Mooney-Audi Resendez-Helena Barrett-Carlos Linares-Gustavo Hernandez-Maria Luisa Minelli-Nito Larioza-Ernie Reyes Jr.-Jon Valera-Kevin Collins-Robert Baker-Denholm Elliott-Martin Dew-Bogdan Szumilas-Michael J. Jacyna-Andre Alexsen-Gregory Kudanovych-Alexander Kaminer-Joe Jagatic-Derek Mears-Ian Novotny-Jason Roehm-Ilya Rockwell-Ilya Jonathan Zaydenberg-Errol Sack-Jon Braver-Jonathan Lomma-Josh Mills-Noelle Bruno-Michael Maddigan-Bryan Thompson-Sean Marrinan-Adam Kirley-Chris Bryant-Adam Prakop-Erin Frederick-Andrew Goldfarb-Fileena Bahris-Dianne Zaremba-Jared Christopherson-Brendon John Kelly-Sam Rocco-Steven A. Miller-Paul Thornton-John H.", + "embedding" : [ 0.0059347907, -0.020794446, -0.019008078, -0.03140101, -0.021534113, 0.045273274, 0.0028452803, -0.014144409, -0.018715002, -0.02489751, 0.017863685, 0.037457913, 0.030117055, 0.008045636, 0.0014008338, 0.0056591593, 0.014193255, -7.152452E-4, 0.009350522, -0.021659717, -0.015602812, 0.0022661062, -0.0052474574, 0.011674197, -0.0053556166, 0.0056591593, 0.02447883, -0.0056591593, -0.011953318, -0.010348377, 0.011506725, -0.0069570676, 0.0026446627, -0.026348935, -0.020724665, -0.0054463306, 0.003883258, -0.015812153, 0.025358059, 0.004284493, -5.351255E-4, 0.011143869, -0.011367165, -0.011429967, -9.786647E-4, 0.005055562, 0.013900179, -0.023627514, -0.021994662, 0.029251784, 0.046808437, 0.043431085, -0.017193796, -0.025748827, 6.2420404E-5, 0.007180364, -0.0065348987, 0.0064127836, -0.0051323203, 0.0028016677, 0.019049944, -0.014144409, -0.029558815, 2.2504057E-4, -0.017696213, -0.008164262, -0.0017270554, -0.013369852, -0.0023864766, 0.022469167, 0.022399386, 0.011255517, 0.0059661916, 0.004019329, 0.009566841, -0.031931337, -0.018380057, -0.01379551, -0.0052230344, 0.0057638297, 0.0045636133, -0.0047206185, -0.022078399, 0.012420843, 0.011367165, -7.3432566E-5, -0.014821276, 0.021282906, -0.021841146, 0.0023637982, 7.4184884E-4, 0.0467247, -0.0126022715, -4.8584337E-4, 0.0025661602, 0.025930256, -0.0180172, 0.02043159, -0.019133681, -0.027563108, 0.0014313626, -0.015477208, 0.0061755315, -0.011799801, -0.009448214, 0.0026062836, -0.006367427, 0.0028295796, 0.011332275, 0.015826108, 8.5829425E-4, -0.00183347, 0.016537864, -0.042537898, -0.001596218, -0.012420843, 0.025832564, -0.041365594, -0.01613314, -0.023222791, 0.02136664, 0.023139054, -0.0034750449, -0.042928666, 0.03516913, 0.031652216, -0.007131518, 0.005177677, 6.053417E-4, 0.0069082216, 0.022078399, -0.0044345204, 0.011039199, 0.0012010885, -0.02378103, 0.040556148, -0.027744535, 5.067774E-4, -0.035113305, -0.02364147, 0.042509988, 0.029223872, -0.023543779, -0.019482581, -0.030982329, 0.0044728993, 0.0010693788, -0.005177677, -0.008882997, -0.004804354, 0.01330705, 0.024088062, 0.018742913, 0.009231896, 0.004657816, 0.001045828, -0.016328525, -0.0088969525, -0.009085358, -0.016119184, 0.0025853496, -0.016635556, -0.0059696804, -0.01854753, 0.01015997, 0.027744535, 0.0043438063, -0.019315109, -0.018380057, 0.0022190046, 0.0018735935, 0.016314568, -0.037904505, 0.003436666, 0.0052858363, 0.012420843, -0.0053905062, -0.003569248, -0.040946916, -0.01990126, 0.008394537, -0.0031505679, 0.032182544, 0.035252865, -0.0056312475, 0.0068593756, 0.027646843, -0.00782234, 0.001906739, -0.011409033, 0.00897371, 0.015002704, 6.7991903E-4, 0.0031558014, -0.63684034, -0.02531619, -0.0031156777, -0.018100936, 0.025706958, 0.0136908395, -0.004975315, -0.0063290475, -0.028777279, -0.006677948, -0.04655723, 0.020724665, 0.019538404, -0.014639848, -0.015770284, -0.010997331, 0.009608708, -0.023320483, 0.028972663, 0.001300525, -0.021673674, 0.015477208, 0.015519076, 6.389233E-4, 0.0038658131, 0.0097064, -0.0068279747, -0.02514872, 0.008010746, 0.006904733, -0.021729497, 0.012176613, 0.0060324827, 0.012190569, 0.041198123, 0.007452506, -0.003834412, 0.05744291, 0.018812694, 0.025790695, -0.011255517, -0.012218481, 0.010334421, -0.004298449, -0.0015848787, 0.031066064, 0.0059103677, 0.014270014, -0.0013842611, -0.01829632, 0.0053137485, 0.0011757934, -0.010620519, -0.015881931, 0.005268391, 0.011646285, 0.0123091955, -0.03935593, 0.021785323, 0.007850252, -0.01585402, 0.03335485, -0.0067372606, 3.109572E-4, -0.0013502433, 0.024660258, -0.0098878285, 2.44012E-4, 0.009162117, -0.020766534, -0.0025120806, 0.002304485, -0.010264641, -0.0036460059, 0.0050939415, 0.009085358, 0.0362577, 0.0014243847, -0.003625072, 0.020975873, -0.0026621078, 0.0017366502, 0.010774035, 0.013139578, 0.030340351, 0.0050834743, -0.044547565, -0.0053207264, 0.0063464926, 0.019915218, 0.0044589434, 0.01966401, 0.0054986654, 0.01885456, -0.013013974, -0.0010754846, -0.0065523437, 0.006049928, 0.032489575, -0.05660555, -0.0019468626, -0.016523909, 0.016119184, -0.012665073, 0.004926469, 0.022678506, -0.008359646, -0.01634248, 0.020110602, -0.030814856, -0.020250162, 0.0056103133, -0.017445005, 0.0029813512, 0.0021439912, -0.028581895, 0.010425135, 0.012113811, -0.008931843, -0.00722921, 0.00736877, 0.0056626485, 0.0058824555, -0.023111142, 0.018268408, 0.028219039, 0.0029743733, -0.0040507303, -0.0051602325, 0.014988748, 0.008562008, -0.0056242696, 0.03112189, -0.021213125, 0.020068733, 0.0024004327, 0.0012891858, -0.004078642, 0.0019712856, -0.0052544354, -0.01445842, -0.00991574, -0.020110602, -0.02196675, 0.0079060765, -0.010508871, -0.03366188, -8.8446174E-4, 0.00267083, -0.023390261, -0.010236729, 0.01508644, -0.0056905607, -1.12193185E-4, 0.011541615, 0.011953318, -0.01885456, -0.021534113, -0.0017104828, -0.0166216, 0.012630183, 0.0060708616, 8.8184496E-4, -0.015714461, 0.02308323, 0.0052335015, -0.015212044, 0.01745896, -0.00946217, -0.019468626, 0.009859917, -0.0054253964, 0.0053207264, 0.019580273, -0.029168047, 0.029921671, -0.008582942, 0.035671547, -0.004755508, -1.4795545E-4, 0.00190325, -0.007417616, -0.02064093, -0.01536556, 0.025413882, 0.026823439, -8.229681E-4, -0.0062278667, 0.00967151, 0.0100343665, -0.0068454198, -0.022552902, 0.0072431657, -0.01180678, -0.0052335015, 0.013355896, -0.0069745127, -0.0110252425, -0.0043612514, -4.6316488E-4, 0.03784868, 0.025023114, 0.019384889, 2.8631615E-4, 0.03168013, -0.028609807, 0.010906617, -0.018491704, 0.020947961, -0.004179823, 0.022497078, -0.01599358, -0.018338189, 0.00677564, 0.003461089, 0.0166216, -0.011688153, 0.015128308, -0.010690299, 0.018254453, -0.0027179318, -0.0055614673, 0.031791776, 0.011876559, -0.026795527, 0.0060952846, 0.024088062, -0.011876559, 0.017654344, -0.009057446, -5.032884E-4, 0.0026743193, -0.010515849, 0.007850252, -0.0045147673, 8.0813986E-4, 0.026181463, -0.012337107, 0.0488181, -0.012141723, 0.003687874, 0.011339253, 0.013530346, 0.004357762, 0.013788532, -0.011199693, 0.027758492, 0.0026516407, -4.280568E-4, 0.05632643, -0.022748286, 0.027730579, -0.0034418993, -0.004061197, 0.0061266855, -0.015393472, 0.006643058, 0.00921794, 0.016942589, 0.017165884, 0.009517995, -0.00764789, 0.03821154, -0.0016712315, 0.007086161, 0.0050171833, -0.026949042, 0.012581337, -0.012867436, -0.032573313, -0.02685135, -0.018394012, -0.008757392, 0.015686547, 0.00391117, -0.007738604, 0.0035186575, 0.008282888, 0.0063883606, 0.0059417686, 0.011004309, -0.023390261, 0.0010737401, 0.018715002, -0.023236746, -0.024981247, -0.0060464386, -0.012434799, -0.04814821, -0.018938297, -0.007759538, 0.031903423, -0.018687088, 0.014193255, -0.021268949, -4.7275962E-4, 0.011527659, -0.017403137, 0.026195418, 0.010006455, 0.0056242696, -9.20224E-4, -0.0050904523, -0.016579732, 0.037764948, -0.021492247, 0.010676343, -0.0029063378, 0.0061790207, -0.015253912, 0.009406347, -0.0026237287, -0.049376342, 0.012274305, -0.0025661602, -0.0067965738, -0.00806657, 0.004500811, 0.016956545, -0.029810024, -0.024869598, -0.030368265, -0.031038152, -0.0022748285, 0.0892626, 0.03793242, -0.007640912, 0.013732708, 0.0031627794, 0.015798196, -0.009476126, -0.02057115, -0.004772953, -0.027423548, 0.0138304, -0.018045112, 0.0020026865, 0.013467544, 0.007117562, 0.0062976466, -0.016816985, -0.003897214, -0.003680896, -0.013097709, -0.0311498, -0.014172322, 0.01910577, 0.029865848, 0.006098774, -0.018645221, 0.011318319, 0.010418157, 7.449017E-4, 0.013858312, 0.0041728453, 0.004005373, 0.020040821, 0.0028958707, 0.0039774613, -0.003869302, 0.037150882, 0.0052788584, 0.03154057, 0.0014322349, -0.00715943, 0.0117090875, 0.0133000715, -0.0027249097, 0.009664533, -0.024688171, -0.003984439, 0.010536782, 0.028219039, -0.03589484, 0.014158365, 0.007173386, -0.009441237, -0.011750955, 0.0049404255, -0.0029063378, -0.008422448, 0.00799679, -0.011736999, 0.010822881, -0.009134204, -0.025288278, 0.016872808, -0.007082672, -7.059775E-5, -0.014821276, -0.0147794075, -0.0019259285, -0.010313487, 0.0026481517, 0.0010118103, -0.002213771, -0.02057115, 0.009301676, 0.004064686, 1.4261292E-4, 0.029698376, -0.0069500897, 0.007117562, 0.0040263073, -0.031624306, -0.02433927, 0.0026359402, -0.026642011, -0.0043193833, 0.0053486386, -0.016077315, 0.017291488, -0.009022556, 0.0100343665, -0.01899412, 0.00701987, -0.02594421, -0.011067111, 0.035839017, 0.028121347, 0.012141723, 0.012009141, -0.0042949603, 0.010906617, -0.0024266, -0.024018282, -0.0056207804, -0.0142909475, -0.012134745, -0.0043507842, -0.0049474034, -0.004207735, -0.011890515, -0.010578651, -0.023418175, -0.025246412, 0.019301154, -0.004256581, 0.02038972, 0.0067128376, 0.02273433, 0.012790677, -0.004902046, 0.011925405, 0.010048322, -0.0048322664, 0.014709628, 0.025469707, -0.010899639, 0.03073112, 0.0049683372, -0.025916299, -0.0068105296, 0.022441253, -0.013167489, 0.013844356, -0.0136419935, 0.0133000715, -0.014863144, -0.002304485, 0.0125045795, 0.016454129, 0.0065000085, 0.017417092, -0.02385081, 0.010801947, 0.016719293, 0.01396996, -0.022985538, -0.025106851, 0.01257436, -0.020585105, -0.0043752072, 0.021659717, -0.014918968, 0.01843588, -0.014863144, -0.017668301, 0.0019538405, -0.039272193, -0.017975332, -0.0142909475, 0.028721455, 0.0362577, 0.027214207, -0.007065227, 0.021771366, 0.003921637, 0.017165884, 0.017263576, -0.019217417, -0.01757061, -0.035783194, 0.0031854578, 0.018728957, 0.012637162, 0.0015691782, 0.0020968895, 0.004479877, 0.024743995, 0.0055230884, 0.013362873, 0.012769744, -0.033326935, -0.03352232, 0.002133524, -0.018742913, -0.0052963034, -0.025539488, -0.016886765, 0.036676377, -0.01648204, -0.0053695724, -0.011499747, 0.013662928, -0.012288261, 0.015058528, -0.014081608, 0.016719293, -0.026865307, -0.007131518, -0.022901801, -0.003834412, 0.012755787, -7.793556E-4, 0.026027948, 0.0024318337, -0.020417633, 0.01704028, 0.029419256, -0.013983916, -0.0063290475, 0.020347854, -0.012755787, -0.012979084, -0.022552902, -0.008359646, -0.026139595, -0.027814316, -0.006855887, 0.009804092, -0.0010292552, -0.027325856, -0.0360344, 0.017249621, -0.010355354, 0.041923836, 0.015728416, 0.04781327, 0.032405842, 0.003907681, -0.028065523, 0.007215254, -0.008966733, -0.004403119, 0.018575441, 0.03687176, -0.0056521813, -0.0023672872, 8.0421474E-4, -0.0117090875, -0.050855678, -0.030675296, 0.019691922, 0.029530903, 0.022636637, -0.031428922, 0.0020689776, -0.023055319, 0.008666678, 0.0018491705, 0.003691363, -6.7948294E-4, -0.026963, -0.0125045795, -0.003869302, -0.016914677, 0.021743454, 0.010118103, -0.030200792, 0.0023620536, -0.020208294, 0.00946217, 8.9928997E-4, -1.4054132E-4, 0.033996824, -0.018463792, 0.017556652, 0.011388099, 0.020138513, 8.1642624E-4, -5.813548E-4, 0.008652722, 0.029447168, -0.011520681, 0.014374684, -6.964918E-4, 0.007599044, 0.010055301, 0.004804354, -0.009769202, -0.0043682293, -0.016202921, 0.0048497114, 0.014932924, -0.016844897, -6.2932854E-4, 0.0027807336, -0.019566318, -0.0016537864, 0.018952252, -0.009825027, 0.007571132, -0.037457913, 0.0014400851, -0.0056626485, -0.0020305985, -0.0056766043, -0.0025574376, 0.003998395, 0.017403137, 0.0042461143, -0.007564154, 0.0043438063, -0.021799278, -0.0022120266, -0.04167263, -0.005048584, -0.0056905607, -0.008143328, 0.020375766, -0.016872808, -0.0027406102, -0.0058056978, -0.004671772, -0.0051916335, 8.373602E-5, -0.013893202, 0.0062034437, -0.0010824625, 1.558057E-4, 0.010201839, -0.012930238, 0.027353767, -0.010146014, 0.0021422466, -0.018742913, 9.90004E-4, 0.027297944, -0.017863685, 0.008157284, 0.0065000085, -0.030675296, -0.0052614133, 0.016579732, 0.032238368, 0.014556112, 9.86515E-4, -0.016565775, -0.018533573, -0.0055649565, 0.029949583, -0.012211503, 0.00768278, 0.033941, 0.0072920118, 0.04926469, 0.021757409, -0.012337107, -0.023222791, 0.028107392, -0.006918689, -0.02112939, 0.004256581, 0.014332816, 0.012176613, -0.002130035, -0.018310277, -0.011555571, -0.004528723, -0.025134763, -0.014235124, -0.006311603, 0.01543534, 0.047450412, 0.022120265, 0.0045043, 0.018728957, 0.004291471, -3.9556547E-4, -0.0013249482, -0.0073408578, 0.024227623, 0.0024824243, 0.012204525, 0.019998953, -0.027046734, -0.0016633812, 0.005079985, -0.006172043, 0.008352668, 0.020124556, -0.017277533, -0.017961377, -4.025435E-4, 0.0080037685, -0.015798196, -0.0104042, 0.019022033, -0.031875513, -0.017291488, 0.014067652, 0.012616227, 5.8048253E-4, 0.0031209113, -0.0034035204, -0.013774576, -0.0067058597, -0.009441237, -0.024841687, 0.0067547057, -0.03377353, 0.029782113, 0.012204525, 0.0069500897, 0.04756206, 0.024925422, 0.003659962, 0.008603876, -0.015114352, 0.00715943, -0.007808384, 6.858067E-5, 0.011967273, 0.020361809, -0.016775116, 0.008666678, -0.023934547, -0.0086597, 4.4746438E-4, -0.001335415, -0.0019573295, 0.044854596, 0.0035727369, -0.04267746, 0.008666678, -0.010313487, 0.0024928912, -0.01515622, 0.0054498194, -0.03809989, -0.0031662683, -0.009531951, -0.007431572, -0.031038152, -0.021464333, -0.0020253651, -0.013488478, -0.014793364, 0.007257122, 0.1950491, -0.0053835283, -2.0301624E-4, 0.046138547, 0.015491164, -7.855704E-5, 0.0383511, 0.010774035, -0.011527659, 0.016858852, 0.0071280287, 0.01606336, -0.0041484223, -1.5359781E-5, 0.023208834, -0.027325856, -0.025902342, -0.019008078, -0.020654885, -0.021282906, -0.011485791, -0.0016738481, 0.0034104984, -0.014186278, 0.003844879, 0.008736459, -0.017765993, 0.017417092, 0.019273242, -0.00688031, -0.0098389825, -0.008631788, -0.0014584024, 0.0046787504, -0.028833104, -0.013976938, -0.006472097, 0.011367165, 0.016370391, 0.007640912, -0.012413865, -0.009448214, -0.009538929, -0.0101809045, -0.00708965, 0.020375766, -0.026823439, -0.008289866, -0.02050137, 0.005927813, -0.04544075, -0.013676884, 0.018603353, 0.024171798, -0.001770668, -0.007878164, 0.017207753, 0.0055719344, -0.0057777856, -0.0011548593, 0.008115416, 0.028163215, -0.011883537, 0.0155749, 0.0023271637, 0.017696213, -0.03447133, -0.003485512, 0.0020724665, -0.019803569, -0.009999476, -0.03851857, -0.009078381, 0.013041886, -4.9587426E-4, -0.017891597, 0.014374684, 0.0029359942, 0.008129372, 0.026153551, -0.0297542, -0.015895888, 0.013230291, -0.0021910926, -0.019817526, -0.011457879, 0.017486872, -0.012141723, -0.012581337, -0.006629102, -0.006751217, -0.035392426, -0.01715193, -0.00764789, -0.010585628, -0.023222791, 0.043012403, 0.023097185, -0.011883537, 3.9055003E-4, -0.033159465, 0.026488494, 0.0110252425, 0.004444987, -0.025232455, -0.0042461143, -0.010306508, 0.0097064, 0.041644715, -0.008582942, -0.0063744048, -0.010236729, -0.0061197076, -0.017333357, -0.0081014605, 0.015686547, 0.011771889, -0.014625892, 0.04002582, -0.010320465, -0.0025085916, -0.020194337, 0.023906635, -0.001927673, -0.0021719032, -0.03514122, -0.046780523, 0.0053242156, -0.022399386, -0.035699457, 0.014088586, -0.020654885, 0.009511016, -0.008157284, -0.0014889311, -0.002646407, 0.008234042, -0.008499206, 0.010264641, -0.019482581, -0.006360449, -0.010467003, 0.0072431657, 0.0059313015, 0.0018073025, -0.024227623, -0.004389163, -0.008471294, -0.024032239, -0.04063988, -0.0146817155, 0.004982293, 0.006978002, 0.0098878285, 0.04075153, -0.00848525, -0.010871727, -0.04197966, -0.013097709, 0.036815938, -0.024325315, 0.03430386, 0.025469707, -0.01641226, -0.0169705, -0.0072920118, -0.18031156, 0.034806274, 0.019008078, -0.032712873, 0.014709628, 0.01536556, 0.03391309, 0.010187883, 0.0023725207, -0.007661846, 0.029586729, 0.013962981, -0.036815938, 0.0059138564, -0.00408562, 0.010341398, -0.019552361, 0.024688171, 0.0266141, 9.568585E-4, 0.03966296, -0.003338974, -0.009504039, -0.003803011, 0.016691381, 0.0020445546, 0.02361356, 0.007271078, -0.0057812748, -0.0112206265, -0.019384889, -0.0055754236, 0.004057708, 0.009866894, -0.018170716, 0.001955585, -0.00789212, -0.01896621, -0.011436945, -0.004518256, 0.032712873, 0.004113532, 0.025051028, -2.387785E-4, 0.01794742, 0.016816985, 0.013676884, -0.031428922, 0.021645762, -0.00701987, -0.009832005, -0.024785863, 0.020040821, -0.010718211, 0.007215254, 0.02301345, 3.279661E-4, -0.006667481, 0.010787991, -0.0014095564, -0.023418175, -0.0033267625, 0.013921114, -0.020208294, 0.0029272719, -0.024841687, -0.01351639, 0.0052509466, -0.03296408, 0.018045112, -0.024074106, 0.01896621, 0.007619978, 0.0062802015, 0.01945467, -0.024046194, -0.039969996, -0.003918148, -0.021757409, -8.6396385E-4, -0.023878722, 0.045273274, 0.011004309, 0.00733388, 0.0079619, 0.0011487536, 0.0053939954, -0.0022434276, -0.0024457898, -5.7786575E-4, 0.001735778, -0.029251784, -0.041198123, 0.010334421, -0.0033790974, 0.013886224, -0.0047938875, 0.01445842, 0.00754322, -0.020613017, 0.008652722, -0.010166949, -0.024520699, 0.017124016, 0.020068733, 0.016928632, 0.018728957, 0.035950664, 0.022371475, 0.01812885, -0.00939239, -0.0027650332, 0.0064930306, 0.012476668, -0.0126022715, 0.022441253, -0.018631265, -0.024157843, 0.004151911, 0.008338712, 0.061797183, -0.011534637, 0.003904192, -0.010857771, -0.0054777316, -0.007564154, -0.09540324, 5.0416065E-4, 0.025762783, 0.04865063, -0.006423251, 0.029251784, -0.0056870715, 0.0050834743, -0.034108475, 0.03544825, 0.0017035047, -0.0432357, 0.021017741, -0.009210963, 0.007009403, -0.006506987, -0.011918427, -0.0055056433, -0.023418175, 0.023655426, -0.0078572305, 0.0045077894, -0.004315894, -0.012804633, -0.006245312, 0.021994662, -0.029391345, 0.0145840235, 0.0033808418, 0.00457408, 5.9640108E-5, -0.007878164, 0.0028976153, -0.038574394, -0.019538404, -0.022762243, -0.0057080057, -0.020961918, 0.011213649, -0.036983408, 0.0136419935, 0.021799278, 0.00855503, -0.008261954, -0.010390244, 0.0054498194, -0.040835265, 0.019650053, 0.007619978, -0.012811611, -0.009036512, -0.027060691, -0.03352232, -0.011904472, -0.0055370443, 0.022511033, 0.035085395, 0.0142909475, -0.012330129, -0.016398305, -0.0063255588, 0.003119167, -0.0014182789, 0.010648431, 0.014193255, 7.113201E-4, -0.01253947, -0.010899639, 0.016398305, -0.030479912, -0.025595311, 0.029977497, -0.03363397, -0.003816967, -0.011192715, 0.0056521813, -0.023599602, -0.020054778, 0.03003332, -0.04077944, 0.0018142805, -0.027981788, 0.011248539, -0.02601399, 0.012441778, 0.023460042, 0.00852014, 0.012183591, -0.006929156, -0.03807198, -0.014011827, 0.03212672, -0.0048392443, -0.016007537, -0.004315894, 0.030284528, 0.015546988, 0.008582942, -0.01205101, 0.0014470632, 0.004762486, -0.014444464, -0.07614396, 0.03561572, -0.02140851, -0.017612476, -0.013006995, -0.003848368, -0.0033982869, 0.0051183645, -0.00869459, 0.028861016, -0.016454129, 0.012986061, 0.0022887846, -0.0056138025, 0.0011225861, 0.0031261449, 0.012790677, -0.003733231, -0.0031348674, 0.0053800396, -0.016803028, 0.019538404, 0.014639848, 0.006220889, 0.0034035204, 0.014905012, 0.00778745, 0.019915218, -0.024534654, -0.00384139, 0.02947508, -0.013921114, -0.0050346283, -0.0060883067, -0.008143328, -0.017347313, -6.219144E-4, -0.00876437, 0.016356437, 0.0044345204, -0.014611936, -0.017682256, -0.00729899, -0.0081503065, -0.007515308, 0.0021108456, -0.010704255, 0.007606022, 0.0035727369, 0.02392059, 0.009636621, 0.001021405, 0.011450901, -0.015253912, 0.011862603, -0.00740366, 0.055684455, 0.01847775, 0.01445842, -0.019482581, 0.022148177, 0.0060324827, 0.0117090875, -0.029140135, 0.011827713, -0.014242101, 0.011904472, -0.015770284, -0.015184132, -0.016286656, -0.023934547, 3.6830766E-4, -0.004193779, 0.03918846, 0.012183591, 0.016021492, 0.0035762258, -0.0058510546, -0.009434259, 0.013188424, 0.01428397, -0.0123091955, -0.028260907, 0.02636289, 0.0020968895, 0.0027842228, -0.0050450955, 0.015030616, 0.003618094, 0.006343004, 0.0027179318, 0.0133489175, 0.024883555, -0.005177677, 0.007564154, 0.0031749909, -0.038462747, -0.01606336, -2.6494602E-4, 0.038574394, -0.012937215, 0.0014496798, -0.017417092, -0.019440712, -0.024450919, 0.022985538, -0.016705336, -0.02038972, 0.008785305, 0.0045461683, 0.033047818, 0.015253912, -0.026990911, 0.007766516, -0.04181219, 0.007564154, -0.010201839, -0.00733388, 0.0027685221, 0.024088062, 0.008213108, 5.817909E-4, 0.022259826, -0.0045077894, 0.056521814, -0.00817124, 0.021087522, -0.01564468, -0.00991574, -0.006660503, -0.0029987963, 0.004043752, -0.0145840235, 0.0050660293, -0.006848909, -0.00387628, 0.003893725, 0.029921671, -0.040556148, 0.06536992, 0.012337107, 1.8780638E-5, 0.017305445, -0.016468083, 0.009162117, 0.01764039, 0.020096645, -0.002262617, -0.013537324, -0.003792544, 3.0267084E-4, 0.013746664, -0.033885177, 0.006196466, -0.0058301208, 0.016509952, 0.017821817, -0.032489575, -0.028972663, -0.0061825095, 0.0031331228, 0.021157302, 0.010369311, 0.0043193833, -0.0067861066, 0.020585105, -0.0058545438, 0.0057114945, -0.03611814, 0.002063744, -0.029447168, -0.012825567, -0.0071943197, 0.022064442, -0.010432113, -0.0019294175, 0.001969541, 0.021813234, 0.016956545, -0.026251243, -0.009015579, -0.028609807, -0.032182544, 0.020515325, -0.013418698, -0.013362873, -0.04239834, -0.016928632 ], + "id" : "028914a0-7269-4c36-861a-0ccc8f9eeba0", + "metadata" : { + "source" : "movies.csv" + } + }, + "7a7fb578-08d5-4c33-88a3-36b6d4290e3c" : { + "text" : "275,15633,Fran�_ois Cluzet-Omar Sy-Dominique Henry-Anne Le Ny-Clotilde Mollet-Alba Ga��a Bellugi-Audrey Fleurot-Cyril Mendy-Christian Ameri-Marie-Laure Descoureaux-Salimata Kamate-Absa Diatou Toure-Dominique Daguier-Fran�_ois Caron-Thomas Soliv��r��s-Gr��goire Oestermann-Doroth��e Bri��re-Jos��phine de Meaux-�milie Caen-Caroline Bourg-Sylvain Lazard-Jean-Fran�_ois Cayrey-Ian Fenelon-Renaud Barse-Fran�_ois Bureloup-Nicky Marbot-Benjamin Baroche-J��r��me Pauwels-Antoine Laurent-Fabrice Mantegna-Hedi Bouchenafa-Michel Winogradoff-Elliot Latil-Yun-Ping He-K��vin Wamo-Pierre-Laurent Barneron-Philippe Pozzo di Borgo,male friendship-masseuse-friendship-based on true story-aristocrat-paragliding-interracial friendship-unlikely friendship-duringcreditsstinger-quadriplegic-quadriplegia,/323BP0itpxTsO0skTwdnVmf7YC9.jpg,/bGksau9GGu0uJ8DJQ8DYc9JW5LM.jpg,13-637-37165-497-18785-14160-11324-106646-98-597-207-2062-6479-101-16869-424-8587-12405-5915-72105-807\r\n38700,Bad Boys for Life,Thriller-Action-Crime,en,Marcus and Mike are forced to confront new threats career changes and midlife crises as they join the newly created elite team AMMO of the Miami police department to take down the ruthless Armando Armas the vicious leader of a Miami drug cartel.,79.213,Columbia Pictures-2.0 Entertainment-Don Simpson/Jerry Bruckheimer Films-Overbrook Entertainment,1/15/20,90000000,426505244,124,Released,Ride together. Die together.,7.2,7347,Will Smith-Martin Lawrence-Paola Nu��ez-Vanessa Hudgens-Alexander Ludwig-Charles Melton-Kate del Castillo-Nicky Jam-Joe Pantoliano-Theresa Randle-Jacob Scipio-Michael Bay-DJ Khaled-Jay Dubb-Happy Anderson-Bianca Bethune-Dennis Greene-Lisa Ann Hadley-Gissette E. Valentin-Rose Bianco-Edelia Merida-Jasmin Lawrence-Shacai O'Neal-Carlos Guerrero-Massi Furlan-Chick Bernhard-Jennifer Badger-Jeff J.J. Authors-Keith Wheeler-Brandi Cohen-Jay Amor-Yessenia Hernandez-Anthony Molinari-Ivo Nandi-David Shae-Eduardo Rosario-Rory Markham-Brad Sanders-Damien Butler-Bilall Fallah-Norma Alvarez-Adil El Arbi-Christina Christensen-Nahima Bicelis-Erroll Castrillo-Kial Butler-Sharon Pfeiffer-Porshia C. Joseph-Ellison Kendrick-Davis Aguila-Athena Akers-Adrian De Armas-Laura Ault-Misty Autery-James William Ballard-Austin Bollinger-Mario 'Vocol' Booker-Thomas Brag-Troy Brenna-Sergio Briones-Landon Brooks-Ruben E.A.", + "embedding" : [ 0.0059702126, -0.020416904, -0.02079726, -0.0394754, -0.02252244, 0.03550884, 0.014236138, 0.0063641514, -0.026040722, -0.040616464, 0.026135812, 0.025076251, 0.026516166, 0.001201344, 0.0031226454, 0.010113363, 0.025538111, -0.028526613, 0.0062181223, -0.037247606, -0.004958197, -0.017931014, -0.02070217, 0.017360482, 0.012259652, 0.022196421, 0.025252845, -0.018460793, -0.00990281, -0.008985884, 0.014725166, -0.00980093, -0.0013898234, -0.01669486, -0.024818154, 0.007056941, 0.022603946, -0.0148745915, 0.028689623, 0.0056815506, 0.008687033, 0.006696962, -0.003969954, -0.012184939, -0.0028781316, 0.007824442, 0.017944599, -0.013937288, -0.0053249677, 0.022182837, 0.03613371, 0.041485846, -0.024994746, -0.018909069, -0.0094137825, 0.008286302, -0.023391822, 0.014616493, -0.009026635, 0.014399148, 0.010480135, -0.018909069, -0.026203731, -0.005508353, -0.029667677, -0.0034197976, -0.009862058, -0.012246068, -0.012178147, 0.0020053529, 0.010249205, 0.009080972, 0.0073014544, -0.0061977464, 0.023527663, -0.021123277, -0.017509907, -0.005369116, -0.013400716, 0.001984977, 0.026502581, -0.008401766, -0.027195372, 0.004961593, 0.010126947, -0.004846128, -0.006815823, 0.02500833, -0.022794122, 0.0018474378, 0.018909069, 0.04550674, -0.005192523, -0.010806153, 7.509461E-4, 0.020511994, -0.01805327, 0.02235943, -0.01473875, -0.020511994, -0.01526853, -0.0075935125, -0.0047374554, -0.009773761, -0.005212899, 0.0024009899, 0.0036473311, -0.02328315, 0.017632164, 7.093448E-4, 0.0076546413, -0.003752608, 0.02192474, -0.0383615, -0.008381391, -0.019289425, 0.0067614866, -0.027195372, -0.010989538, -0.02411178, 0.009542831, 0.03885053, 0.008374599, -0.03705743, 0.032302994, 0.022101333, 0.0025911673, -0.021435712, -0.024138948, 0.0030360466, 0.026054306, 0.0019085662, 0.013468636, 0.021802483, -0.010337501, 0.047109663, -0.02026748, 0.0077089774, -0.023079388, -0.018691724, 0.025714705, 0.046131607, -0.028010417, -0.013448261, -0.022712618, 0.014630077, 0.0084561035, -0.015743973, 0.019561106, -0.0024315543, 0.018324953, 0.011777416, 0.013040737, 0.0141546335, 0.021503633, -0.008306678, -0.011478566, 0.0059430446, -0.0027270084, -0.0062384987, -0.011166131, -0.013210539, 0.004173715, -0.00910814, 0.0038375086, 0.029042808, 0.016463932, -0.009128517, -0.023609169, -0.0059566284, 0.002677766, 0.03616088, -0.00612643, 0.024478551, -0.0070501487, 0.022196421, 0.0054676007, -0.0066392296, -0.03192264, -0.013142618, 0.0049717813, 0.007919531, 0.04200204, 0.046050105, 5.730793E-4, 0.028363604, 0.012110227, -0.02705953, -0.008055372, -0.006961852, 0.0027728546, 0.012510957, 0.015282114, -0.021150446, -0.6407349, -0.0048936727, -0.016572604, -0.007967075, 0.007967075, 0.023935188, -0.004319744, 0.010493718, -0.03281919, 8.085459E-6, -0.043333285, 0.023052221, 0.012150979, -0.015662469, -0.012993193, -0.020511994, 0.0052570472, -0.04170319, 0.007260702, 0.023201646, -0.017115967, -8.4900635E-4, 0.017496323, 0.0031583037, 0.0029019036, -0.0017523491, -0.018297784, -0.028336436, 0.007498424, -0.0072946623, -0.016002072, 0.018243449, -0.005504957, -0.009114932, 0.037301943, 4.5888792E-4, 0.009474911, 0.054635257, 0.04311594, 0.018365705, -0.019330176, -0.007111277, 0.0035386584, -0.0037933604, -0.01334638, 0.013882952, 0.010276373, -1.3838803E-4, -0.0071520293, -0.0060720933, 0.012857352, -0.002677766, -0.007736146, -0.016300922, -0.015472292, -0.005189127, 0.012470205, -0.03463946, 0.02593205, 0.013468636, -0.022780538, 0.008320262, 8.400918E-4, 0.01258567, -0.00133294, 0.016545435, -0.0057936194, -0.008958715, 0.0052672355, 0.001209834, -0.004662743, 0.008687033, -0.018406458, -0.0043638926, 0.0041940915, 0.031053256, 0.021055358, 2.1384348E-4, -0.01149215, 0.016871454, -0.0051449784, -0.0035182822, 0.015580964, 0.012565294, 0.010670312, 0.003739024, -0.033226714, 0.023554832, 0.0073897513, -0.0027066323, 0.0051857308, 0.01950677, 0.015743973, 0.0043944567, -0.0060585095, -0.0027405925, -0.028852632, -0.0055694818, 0.019656194, -0.06476899, -0.010086196, -0.031813964, 0.024138948, -0.004788396, 0.016423179, -0.0036711034, -0.008517232, -0.004003914, 0.036948755, -0.006700358, -0.0075935125, -5.870879E-4, -0.019493185, -0.019099247, 0.0021887384, -0.030863078, 0.008917962, -0.0025826774, 0.0134143, -0.0012998288, -0.0048019798, -0.008449311, 0.005487977, -0.027276875, 0.015024017, 0.042165052, -0.0058309757, -0.00536572, 0.003868073, 0.0150647685, 0.001618206, 0.00320415, 0.009977522, -0.018392874, 0.009176061, -0.006272459, 0.01702088, 0.0017727253, 0.019588275, -0.006917704, -0.010317125, -0.016817117, -3.4533333E-4, -0.008231966, -0.008136877, -0.019370928, -0.027738735, -0.0046253866, -0.011213676, -0.019520354, -0.002806815, 0.014467068, -0.01669486, 0.021422127, 0.004170319, 2.7019627E-4, -0.033471227, -0.01602924, 0.0010451268, -0.017550658, 0.006007569, 0.0030105766, 1.6205409E-4, -0.004163527, 0.025443021, -0.0032805605, -0.0046219905, 0.0054438286, -0.010405422, -0.015893398, 0.036215216, -0.0086938245, -0.015458708, 0.022495272, -0.007097693, 0.042137884, -0.024356294, 0.03762796, 0.0241797, 9.3135994E-4, -0.0011232354, -0.026706344, -0.028879799, -0.0013906724, 0.019710531, 0.021014605, 0.022644697, 0.0017829133, -0.017768005, 0.012456621, -0.012538126, -0.020457657, -0.016939374, -0.004948009, -0.003891845, 0.029368827, 0.0070297727, 0.018189112, -0.0072810785, 0.0070433565, 0.03917655, 0.012877728, 0.021639474, 0.0046321787, -0.0029851063, -0.031650957, 0.007328623, -0.023242397, 0.023133725, -0.004312952, 0.020444073, -0.019764869, -0.014222554, -0.0059430446, 0.012137394, 0.004149943, -0.0031379275, 0.0040854183, -0.004014102, 0.012103435, 0.02132704, 0.0038409047, 0.017944599, 0.005868332, -0.018311368, 0.004425021, 0.020946685, -0.010296749, 0.003192264, -0.012083058, -0.016966542, -0.0020732735, 0.014915343, 0.0054676007, 3.752608E-4, -0.025877714, 0.032438833, -0.009189645, 0.03083591, -0.013577309, -0.008911171, 0.024614392, 0.031678125, 0.009277942, 0.011016706, -0.018107608, -0.0015188723, 0.021231951, 0.0035250743, 0.04192054, -0.019370928, 0.028934136, 0.011811377, 0.006394716, 0.0031718877, -0.0038986371, -0.006584893, 0.009284734, 0.033063702, 0.01881398, 0.017061632, -0.019846372, 0.013903328, 0.014276891, 0.0070297727, -0.0025826774, -0.020742923, -0.007702186, -0.010867281, -0.03825283, -0.028119091, -0.007328623, -0.017238224, 0.015119105, 1.2735096E-4, -7.4118254E-4, -0.004937821, 0.006000777, 0.016042823, 0.009135309, -0.0142497225, -0.018949822, 0.012626423, 0.038633186, -0.014562157, -0.02079726, -0.0054404326, -0.0011351214, -0.026774265, -0.014371979, 0.0014823651, 0.030564228, -0.017971767, 0.007892363, -0.012347948, -0.008299886, 0.013726735, -0.01242266, 0.024736648, 0.021354208, 0.0013813333, 0.011695911, 0.0043299324, -0.011498942, 0.034231935, -0.0025130587, 0.007987452, -0.018718893, 0.0022396788, -0.005657778, 0.0019272444, 0.0055796695, -0.04852241, 0.012218899, -0.003086987, -0.009026635, -0.0053045917, 0.0030122746, 0.015200609, -0.023486912, -0.0067512984, -0.022318678, -0.024397047, -0.009929978, 0.063682266, 0.042681247, 0.005518541, 0.01202193, -0.018691724, 1.1620775E-5, -9.763573E-4, -0.014100297, -0.012076266, -0.0021055357, 0.013475428, -0.0149696795, 0.02494041, -0.001728577, 0.024098197, -0.01808044, 0.0026149396, -0.015513044, -0.004723871, -0.0045982185, -0.02917865, -0.011335933, 0.020294648, 0.026638422, 0.013298836, -0.009590375, 0.029097145, 0.016952958, 0.006099262, 0.011431022, -2.69984E-4, 0.007240326, 0.0013983134, 0.002263451, 0.0056985305, -0.011383477, 0.028906967, 0.0050159297, 0.029749183, -3.6464824E-4, 0.0017863093, 0.005617026, 3.99033E-4, -0.0047680195, 0.023975939, -0.021286286, -0.02523926, 0.016817117, 0.045588244, -0.02775232, 0.018474378, 0.0011622896, -0.0062215184, -0.02646183, 0.0256332, 0.006883743, -0.009203229, -0.012184939, -0.02245452, -0.0042484277, 7.628322E-4, -0.027548557, 0.0268286, -0.021571552, -0.0020223332, -0.020810844, -0.012633215, -0.008394974, -0.023174478, 0.007892363, 0.016287338, -0.027358381, -0.006734318, 0.007905947, 0.009481703, 0.0034248915, 0.03265618, 0.0015477386, 0.004903861, 0.0027541765, -0.03735628, -0.014820254, 0.008591944, -0.025361517, -0.016192248, 0.014847423, -0.010908034, 0.025388686, -0.027901744, 0.0052910075, -0.006802239, -0.016613357, -0.0150376, -0.018243449, 0.028472276, 0.010174492, 0.018460793, 0.010412213, 0.0012667174, 0.0021259119, 3.2156115E-4, -0.019629026, -0.019452434, -0.021965493, -0.022033412, -0.016382426, -8.439123E-4, 0.0032482983, -0.01549946, -0.028146258, -0.02192474, -0.018528715, -0.005358928, -0.005834372, 0.017903846, -7.1358983E-4, 0.01285056, 0.023826513, -0.0035080942, -0.005243463, -0.004265408, -0.021028189, 0.017958183, 0.029885024, -0.013923704, 0.02159872, -0.009977522, -0.03434061, 0.012150979, 0.030727237, 0.011763832, 0.020973852, -0.016463932, -0.019370928, -0.023704257, -0.016069992, 0.018501546, -0.0071859895, -0.010792568, 0.011926841, -0.009019843, 0.01699371, 0.005780035, 0.008958715, -0.015743973, -0.028716791, 0.013767486, -0.015024017, 0.013733527, 0.027956082, -0.0044997334, 0.007491632, -0.025429439, -0.0037933604, -0.01957469, -0.025117004, -0.026747096, 0.002553811, 0.042165052, 0.014168218, 0.028580949, -0.0013770883, 0.04235523, 0.022291511, 0.0067411102, 0.025646783, -0.034856804, -0.014290474, -0.027018778, 0.01867814, 0.025918465, 0.031976976, 0.007491632, -0.00778369, 0.0024485344, 0.023364654, 0.0062215184, 0.013638438, 0.015282114, -0.010310333, -0.025741871, 5.8963493E-4, -0.018542299, -0.008557984, -0.027005194, -0.010568431, 0.022101333, 0.0014925532, -0.012436245, -0.0064558443, 0.028363604, -0.007892363, 0.013101866, -0.0148745915, 0.012843768, -0.048631083, -1.4878836E-4, -0.006540745, -0.0043027643, 0.0022294906, -0.01914, 0.020878764, -0.003881657, -0.024478551, 0.0031905659, 0.029694846, -0.009311901, -0.020281063, 0.009726217, -0.012517749, -0.0071520293, -0.023541247, -0.015811894, -0.041159827, -0.009916394, -0.0039325976, -0.018963406, 0.0066392296, -0.015214194, -0.049038608, 0.026597671, 0.007905947, 0.034231935, 0.005229879, 0.03580769, 0.027507806, 0.004003914, -0.02602714, 0.0055491053, -3.945757E-4, -0.0095088715, 0.026271652, 0.018311368, -0.025252845, -0.0025317369, 0.00940699, 0.004048062, -0.03099892, -0.031515114, 0.026448246, 0.027032362, 0.020185975, -0.043632135, 0.020484826, -0.018786812, 0.024071028, -0.018257033, 0.010452966, 0.018243449, -0.027711567, -0.0268286, 0.01235474, -0.0074440874, 0.006795447, 0.012402285, -0.032764852, 0.02282129, -0.027073115, -0.0032330162, -0.014684414, -0.00510083, 0.03281919, -0.021449296, 0.0035658267, 0.0036575194, 0.022712618, 0.008299886, -0.0038476968, 0.009685464, 0.029640509, -0.0017251809, 0.019072078, 0.0024298562, -0.002146288, 0.0054336404, 0.012212107, -0.028064754, -0.028363604, -0.013862575, -0.011397061, 0.021734562, 0.014765918, 0.0051483745, 0.01778159, -0.019846372, -0.029205818, 0.01126122, -0.00669017, 0.010194868, -0.028906967, 0.011397061, -0.0031854718, 0.014534988, 0.007097693, -0.005341948, 0.0017073518, 0.009345862, 0.01301357, -0.0087413695, -5.8241835E-4, -0.01884115, -0.019887125, -0.039339557, -0.013237707, -0.0047951876, 5.488826E-4, 5.4166606E-4, -0.016885038, -0.004017498, -0.0031209474, 0.004442001, -0.011023498, 0.0054370365, -0.02745347, 8.643946E-5, 0.006968644, -0.0043537044, -0.010622768, -9.687162E-4, 0.028988473, -0.0075459685, -0.014752334, 0.0041295667, -9.101348E-4, 0.03311804, 0.006917704, 0.018555883, 0.029966528, -0.02676068, 0.0048529203, 0.0071588214, 0.023527663, 0.011824961, 0.00957, -0.024627976, -0.011845336, -0.010534471, 0.036405392, -0.0059905886, 0.004951405, 0.036025036, 0.012001554, 0.02547019, 0.018528715, -2.8123334E-4, -0.013088282, 2.8781316E-4, -0.0034028175, -0.014534988, 0.0030309528, 0.0027966269, 0.0060890736, -4.563409E-4, -0.017102383, -0.023636337, 0.0025589052, -0.020620666, -0.023826513, -0.009957147, 0.007702186, 0.033226714, 0.03113476, -0.006792051, 0.017740836, 0.013020361, 0.008754954, -0.02484532, -0.00857836, 0.010425798, 0.014331227, 0.026556918, 0.00506687, -0.036921587, -0.0035658267, 0.005780035, 0.013210539, 0.014290474, 0.027562141, -0.028852632, -0.0037661921, -0.004676327, 0.002521549, -0.011743456, -0.002013843, 0.0262309, -0.034096096, -0.003353575, -0.001465385, 0.03567185, 0.006557725, -0.0063166074, -0.004672931, -0.019927876, -0.0063132113, 0.0029154879, -0.0072878706, 2.8632738E-4, -0.024261205, 0.0030275567, 0.007953491, -0.0016275451, 0.034585122, 0.019112831, 0.0013813333, -7.7302026E-4, -0.0050193253, -5.3169024E-5, -0.014100297, -0.010344293, 7.2802295E-4, 0.039529737, -0.046158776, 0.021883987, -0.0131969545, 0.010072611, -0.012707927, -0.006975436, 0.013448261, 0.024790986, 0.015608133, -0.06455165, 0.005759659, 0.0023313714, -4.3108297E-4, -0.009196437, 0.008680241, -0.03374291, -0.008367807, -0.0023500496, -0.0101812845, -0.023595585, -0.009766969, 0.0019153584, -0.030808743, -0.012633215, 0.0147795025, 0.17800607, -0.009481703, 0.005107622, 0.04719117, -0.012741887, 0.010059027, 0.021082526, 0.027195372, -0.0031786798, 0.0147795025, -7.683507E-4, 0.004676327, -0.0015918869, 0.0018491358, 0.010425798, -0.0019459225, -0.032085646, -0.019221503, 0.0010434288, 0.0060788854, -0.01232078, 0.012911689, -0.0050227214, -0.023975939, 0.0055830656, 0.011050667, -0.007478048, 0.009997899, 0.014589325, -0.0027405925, -0.005189127, -0.0031481155, 0.006805635, -0.009597167, -0.026787847, -0.0075663445, -0.0182842, -0.004581238, 0.01950677, 0.009155684, 0.017876677, 0.0034945102, -0.0031464174, -0.013074698, 0.003338293, 0.02282129, -0.01778159, -0.0018355517, -0.03192264, -0.0022311886, -0.030564228, 0.0076614334, 0.004462377, 0.020647835, -7.343905E-4, -0.013040737, 0.003749212, 0.007321831, -0.0050193253, -0.0033858372, 0.01573039, 0.022318678, -0.03746495, 0.03749212, -0.012028722, 0.029368827, -0.032112814, -0.030020865, 0.0067580906, -0.030863078, -0.012667174, -0.025035499, -0.0011453095, 0.002672672, -0.004961593, -0.0055219373, -0.0057936194, 0.008136877, -0.005311384, 0.017550658, -0.022943547, -0.008836458, 3.4087605E-4, -0.0033739512, -0.021829652, -0.019425265, -2.1925589E-4, -0.03146078, -0.016341673, -0.012470205, -0.013978041, -0.036595568, -0.014399148, 0.011920049, -0.0049717813, -0.013061114, 0.016355257, 0.010758609, -0.028825464, 6.125581E-4, -0.029667677, 0.034394946, 0.028743958, -0.0011860619, -0.036215216, -0.021490049, -0.0070705246, 0.015906982, 0.04341479, -0.007756522, -0.026896521, -0.021748146, -0.010541263, -0.012660382, -0.0024383462, 0.019153584, 0.0059770048, -0.014534988, 0.021938324, -0.0014314248, 0.0014076525, -0.022291511, 0.0077972743, 0.008034996, 0.0014169916, -0.014670829, -0.045533907, 0.011301973, 0.004492942, -0.030156706, 0.020688586, -0.019547522, 0.005460809, -0.009909602, 4.444548E-4, 0.014643662, 0.016069992, 0.0032737684, -0.0021972284, 0.0015129293, -0.013950872, -0.019262256, 4.1176807E-4, -0.003367159, 0.0188819, -0.03765513, 0.005885312, -0.00616039, -0.019370928, -0.033770077, -0.009651504, -0.007675017, 0.013176578, 0.013828616, 0.05083171, -0.0051279985, -0.027005194, -0.033607066, -0.022699034, 0.032248657, -0.034748133, 0.008551192, 0.013978041, -0.0052944035, -0.010235621, -0.012409077, -0.17398517, 0.039230887, -0.011091419, -0.019289425, 0.011532902, 0.0017082008, 0.023296734, 0.01285056, -8.231116E-4, -0.019398097, 0.028227763, 0.016368842, -0.029314492, 0.0034945102, -8.324507E-4, 0.019724116, -0.0077225617, 0.033851583, 0.047299843, 0.0016657504, 0.023106556, -0.016776366, 0.0029868043, -0.006282647, 0.01549946, -0.003367159, 0.030645734, 0.0030071805, -0.0044725654, -0.0013991625, -0.031053256, -0.009420575, 0.011308764, 0.011824961, -0.016110744, 0.015472292, -0.015322867, -0.0021989264, -0.010921618, -0.009488495, 0.033226714, 0.019887125, 0.001473026, 0.0188819, 0.011132171, 0.03265618, 0.041458678, -0.020783676, 0.010018275, -0.0015766048, -0.005980401, -0.031976976, 0.023351071, -0.0051212064, -0.004900465, 0.015771141, -0.0012930366, 0.0072539104, 0.014643662, -0.0042484277, -0.038116988, 0.003969954, 0.016898623, -0.009631128, -0.010439382, -0.008904379, -0.019262256, 0.0094137825, -0.040725138, 0.0065203686, -0.023228813, 0.029939359, 0.0063777356, 8.269322E-4, 0.0059973807, -0.015309283, -0.035943534, -1.7224216E-4, 0.0050295135, 0.010452966, -0.024424214, 0.028662454, 0.0051517705, 0.02053916, -0.009237189, -0.010459758, 8.570719E-4, -0.013509389, -0.016626941, -0.013020361, -0.0063777356, -0.018270617, -0.02116403, -0.0037560042, -0.012673967, -0.0058241836, -0.0027558745, 0.0048936727, 0.006173974, -0.0074576717, -8.294792E-4, -0.025592446, -0.02662484, 0.014453484, 0.028064754, 8.124991E-4, 0.0111933, 0.0073014544, 0.020050135, 0.0045948224, -0.0056849467, 0.0077429377, 0.0182842, 0.0056985305, -0.022413768, 9.2541694E-4, -4.0900882E-4, -0.02662484, 0.014901759, 0.011621199, 0.058085617, 0.0046491586, 8.299037E-4, -0.009420575, -0.008822874, -0.013577309, -0.09231755, 0.008979091, 0.0105140945, 0.04944613, -0.024152532, 0.035318665, -0.012769056, 0.049065776, -0.0063505676, 0.033145208, 0.004408041, -0.032466, 0.011369893, 0.009536039, 0.007960283, 0.016124329, -0.012891312, -0.015703222, -0.016586188, 0.018012518, -0.006000777, -0.014861007, -0.0010086196, -0.010826529, -0.008625904, 0.015254946, -0.022468103, 0.020145223, -6.4566935E-4, 0.012803015, 0.004683119, -0.028445108, 0.027032362, -0.047164, -0.023799347, -0.03493831, 0.003997122, -0.017768005, 0.009284734, -0.052271623, 0.004523506, 0.0059056883, 0.0017472551, -0.027956082, -0.005487977, -0.0028492652, -0.023568416, 0.013135826, -0.010602391, -0.025252845, -0.011729872, -0.018365705, -0.031053256, -0.008524024, 0.012762263, 0.028173426, 0.013224123, 0.0059362524, -0.017469155, -0.01914, 0.0056883427, -0.0010621069, -0.016572604, 0.019167168, 0.018569468, -3.7908132E-4, -0.0035929948, -0.0048902766, 0.028282098, -0.010595599, -0.023867266, 0.024532888, -0.032737684, -0.014996848, -0.026421078, -0.0040786266, -0.020308232, -0.012510957, 0.027874576, -0.044338506, 0.005311384, -0.028988473, 6.558574E-4, -0.005199315, 0.0042280518, 0.027181787, 0.013699566, 0.023201646, -0.021082526, -0.0412685, -0.0053181755, 0.010948786, 0.0051823347, -0.009298317, 5.4039253E-4, 0.01851513, 0.01960186, -0.0054098684, -0.0033196148, 0.018406458, -0.014100297, -7.2802295E-4, -0.07498424, 0.024899658, -0.014630077, 0.011390269, -0.008272718, -0.0078787785, -0.010011483, -4.3723825E-4, 0.012606046, 0.029667677, 0.0064864084, 0.024573639, -0.0048732962, -0.0058139954, -0.01156007, 0.019955045, 0.009950355, 0.009631128, 0.014086713, 0.014534988, -0.01702088, 0.011084626, 0.02606789, 6.185011E-4, 0.0015536816, 0.036405392, -0.0017022577, 0.0018932841, -0.009624336, 0.0061977464, 0.0063539636, -0.023160893, -0.012259652, 0.0068939314, -0.016219417, -0.023962354, -0.0010468249, 3.2198566E-4, 0.008130085, 0.008381391, -0.015540212, -0.027630063, -0.0064015076, -0.0038612809, 0.0027354984, 0.024560055, -0.019357344, 0.0150647685, 0.013264875, 0.00425522, 0.014276891, 0.010846905, -0.009712633, -0.029559005, 0.018990574, -0.015159857, 0.04993516, 0.02026748, -0.009841681, -0.021218367, 0.024682313, 0.008530816, 0.02314731, -0.029749183, 0.0036846874, -1.6741344E-5, 0.0022040205, -0.008972299, 0.015988488, -0.033335384, -0.011824961, -0.007097693, -0.0045914263, 0.031705294, 0.009916394, 0.009563208, -0.009522455, 0.007790482, 0.0061128456, 0.021191198, 0.009033428, -0.011757039, -0.012042306, 0.022603946, -9.500381E-4, 0.016586188, -0.008062164, 0.016871454, -0.010337501, 0.005773243, -0.018460793, 0.013020361, 0.021707395, -8.829666E-4, 0.0011121983, 0.0132444985, 0.0031633975, -0.025796209, -0.014317643, 0.022658281, -0.016151497, -0.003049631, -0.004584634, -0.004115983, -0.01579831, 0.014888175, -0.031026088, -0.02282129, 0.007233534, 0.010378254, 0.02404386, 0.021979077, -0.012415869, 0.0122868195, -0.03944823, 0.00997073, -0.018596634, -0.021109695, -0.024519304, 0.02404386, 0.018922653, -0.0013753903, 0.029939359, -0.0012522844, 0.054526582, 0.004109191, 0.015920566, -0.023215229, 0.001735369, -0.013991624, 0.01208985, -0.009155684, -0.0047068913, 0.0074508796, -0.011661951, 0.0075459685, 0.017007295, 0.02752139, -0.00481896, 0.08052655, 0.00670715, -0.0021242138, 0.014956096, -0.010425798, 0.0058173914, 0.0114717735, 0.028906967, -0.016246585, -0.00967188, 0.005776639, -8.4561034E-4, 0.011627991, -0.03463946, -0.00781765, 0.008483271, 0.0070093963, 0.011152548, -0.0035386584, -0.01904491, -0.012259652, -0.01062956, -0.004020894, 0.02040332, -0.0034113075, -0.005202711, 0.010412213, -0.008143669, -0.008496855, -0.019927876, 8.054948E-5, -0.026937272, -0.005494769, -0.013767486, 0.026095059, -0.013787863, -0.0069822283, 0.0081165, 0.01202193, 0.017102383, -0.011037082, -0.0075459685, -0.008062164, -0.01073144, 0.017577827, -0.010602391, -0.00957, -0.022970716, -0.016314507 ], + "id" : "7a7fb578-08d5-4c33-88a3-36b6d4290e3c", + "metadata" : { + "source" : "movies.csv" + } + }, + "6e20f8c5-6741-4683-9918-55e979deb763" : { + "text" : ",310-8467-1624-3049-1593-10214-9273-771-772-607-10201-808-8844-2123-809-608-8871-1597-18360-810-118\r\n381719,Peter Rabbit,Animation-Adventure-Family,en,Peter Rabbit's feud with Mr. McGregor escalates to greater heights than ever before as they rival for the affections of the warm-hearted animal lover who lives next door.,20.197,Columbia Pictures-Animal Logic-2.0 Entertainment-Olive Bridge Entertainment-Screen Australia-Screen NSW-Sony Pictures Animation,2/7/18,50000000,351266433,93,Released,Who said the countryside was peaceful?,6.7,1545,James Corden-Rose Byrne-Margot Robbie-Sam Neill-Domhnall Gleeson-Daisy Ridley-Elizabeth Debicki-Sia-Felix Williamson-Fayssal Bazzi-Ewen Leslie-Rachel Ward-Bryan Brown-David Wenham-Fletcher Sheridan-Marianne Jean-Baptiste-Terenia Edwards-Colin Moody-Christian Gazal-Alexandra Gluck-Taryn Gluck-Will Reichelt-Jessica Freedman-Shana Halligan-Katharine Hoye-Chris Mann-Chad Reisser-Vauxhall Jermaine,human animal relationship-based on children's book-rabbit-duringcreditsstinger-live action and animation-peter rabbit-food allergies,/cBWtdp8mgce4QQkH697LpaL0Iik.jpg,/1wj8H9gdtkb98Tl3zu0hrHfW0qw.jpg,77859-957997-77900-116776-522478-729700-855397-312966-364689-165864-346648-370567-400155-284019-387592-378236-72197-268531-445571-136799-374853\r\n64682,The Great Gatsby,Drama-Romance,en,An adaptation of F. Scott Fitzgerald's Long Island-set novel where Midwesterner Nick Carraway is lured into the lavish world of his neighbor Jay Gatsby. Soon enough however Carraway will see through the cracks of Gatsby's nouveau riche existence where obsession madness and tragedy await.,40.489,Village Roadshow Pictures-Warner Bros. Pictures-Bazmark Films-Red Wagon Entertainment-Spectrum Films-A+E Studios,5/10/13,105000000,351040419,143,Released,Reserving judgments is a matter of infinite hope... I come to the admission that it has a limit.,7.381,11084,Leonardo DiCaprio-Tobey Maguire-Carey Mulligan-Joel Edgerton-Elizabeth Debicki-Isla Fisher-Jason Clarke-Amitabh Bachchan-Callan McAuliffe-Adelaide Clemens-Steve Bisley-Richard Carter-Jack Thompson-Vince Colosimo-Max Cullen-Mal Day-Charlize Skinner-Brendan Maclean-Kate Mulvany-Kahlia Greksa-Garrett William Fountain-David Furlong-Daniel Gill-Iota-Barry Otto-John O'Connell-Ben McIvor-Brian Rooney-Gemma Ward-Goran D. Kleut-Denning Isles-Ryan Cooper-Kate Rutherford-Heather Mitchell-Nick Tate,based on novel or book-infidelity-obsession-hope-long island new york-1920s,/nimh1rrDDLhgpG8XAYoUZXHYwb6.jpg,/tb440cwQMRoVHnhYJlzlxfv1ikm.", + "embedding" : [ -6.2675163E-4, -0.03810514, -0.011479004, -0.026321026, -0.01757447, 0.027324505, 0.002768047, -0.012753696, -0.02915518, -0.031921532, 0.025615877, 0.03211138, 0.010638251, -0.013302898, 0.0054886322, 0.03604394, 0.014713195, -0.0093839, 0.02149347, -0.025751483, -0.0071396288, 0.0076481495, -0.03259956, -0.008719433, 0.006112417, 0.0019188176, 0.015418344, -0.015730236, -9.084508E-5, -0.023595355, 0.0075193243, -0.019120375, -0.020774761, -0.012401122, -0.024761561, -0.008868599, 0.011194233, -0.024571715, 0.029589117, -0.007241333, 0.016123492, 0.006753153, -0.013309679, -0.0033545408, 0.0015204765, 0.023649598, -0.003215545, 3.2269867E-4, -0.0073498175, 0.037698325, 0.020056052, 0.025642999, -0.013926684, -0.025344666, -0.006800615, -0.0012890997, -0.029182302, 0.003039258, 0.0017747368, -0.0068073957, 0.022063013, -0.0035020118, -0.03463364, -0.031514715, -0.009783936, -0.009221173, 0.0017357502, -0.014862361, -0.0054716812, 0.011485785, 0.020625595, 0.008448222, 0.01829318, -0.0071125077, 0.02222574, -0.023812324, -0.029860329, 0.0035765946, -0.0044173487, 0.022700358, 0.0061259777, -0.020842563, -0.0016467591, 0.016448945, 0.015391223, 0.024314065, 0.0034884512, 0.03761696, -0.031704564, 0.021412106, -0.0074583017, 0.05690006, -0.0030562086, 0.013262217, 0.02424626, 0.004742802, -0.010753515, 0.028016094, -0.014550469, -0.032436833, 0.0036782988, 2.5468407E-4, 0.009499164, -0.0056005064, -0.0063666776, 0.010685712, 0.0071531893, -0.019717038, 0.020218778, -7.9752976E-4, 0.001308593, 0.0013789383, 0.021968089, -0.032463953, -0.006322606, -0.007098947, 0.020639155, -0.021439228, -0.016855761, -0.012150251, 0.010916241, 0.039759528, 0.0103806, -0.028395789, 0.033982735, 0.021303622, -0.01037382, -0.0011585794, -0.006963342, -0.009777156, 0.025507392, -0.007865118, 0.0051496183, 0.0031206212, -0.03631515, 0.06335489, -0.023907248, 0.006458211, -0.013614791, -0.03335895, 0.016489627, 0.03531167, -0.018686436, -0.017398184, -0.0074922033, 0.005610677, 0.009973784, -0.025615877, 0.030972293, -6.640431E-4, 0.023337705, 0.009424581, 0.003485061, 0.026063375, -0.0011145076, 0.005953081, -0.007824437, -0.009722914, -0.016543869, -0.016855761, 0.003430819, 0.007587127, 5.0004524E-5, 0.0012043462, 0.0011636646, 0.03113502, 0.02053067, 0.005580166, -0.011234915, -0.0071667503, -0.0064412607, 0.016448945, 0.0047292416, 0.016137052, -0.0026256612, 0.007315916, -0.014225015, -0.0040715546, -0.021208698, -0.014713195, -0.0074311807, 3.3710676E-4, 0.020964608, 0.042037703, -0.02173756, 0.004864847, 0.016598111, -0.027799126, 5.814085E-4, -0.01186548, 0.0023561453, 0.015133573, 0.021710439, -0.021547712, -0.64396334, -0.022320664, -0.0051699593, -0.015675994, 0.03208426, 0.023310583, -0.0015874318, -0.003432514, -0.04000362, -0.0016145528, -0.021466348, 0.022320664, 0.02126294, -0.016747277, -0.025358226, -0.009743255, -0.0033748816, 9.2974515E-4, 0.011194233, 0.015228496, -0.020489989, 0.020449307, -0.004963161, 0.011180673, 0.0039088284, -0.004966551, 0.008821137, -0.017520228, 0.021696879, 0.0036003257, -0.016408265, -0.005875108, 0.025683679, -0.02073408, 0.032192744, 0.006698911, -0.0116688525, 0.049821455, 0.02645663, 0.041576643, -0.026402388, 0.010238214, 0.004376667, 0.010177192, -0.018672876, 0.004746192, 0.013662253, 0.005017403, -0.01061791, -0.024083534, -0.024842925, 0.02002893, -0.0028900919, -0.0057259416, 0.001495898, 0.013445284, -0.0075939074, -0.03238259, 0.029724723, -0.0011094224, -0.0011272206, -0.0050343536, 0.0068107857, 0.017384624, -0.015282739, 0.029589117, 0.0028477153, -0.013506306, 0.02343263, -0.014021607, 0.011472224, 0.022171497, -0.018645754, -0.006617548, 0.0128554, 0.010645031, 0.020300142, 0.0063904086, -0.0014102971, 0.011289157, -0.013438504, 0.009539846, 0.0010517901, 0.021656197, 0.024056414, -0.008563487, -0.027012613, -6.5980543E-4, 0.034986217, -0.0018069431, 0.008570267, 0.0027595717, 0.015757358, -3.6952496E-4, -0.0122790765, -0.005207251, -0.010821318, 0.011207794, 0.024110656, -0.0677485, -0.016584551, -0.023242781, 0.00913303, -0.0033494555, 0.018049091, 0.01137052, -0.009227954, -0.0074040596, 0.017981287, 0.004380057, -0.014157213, -3.6316845E-4, -0.006773494, -0.022429148, 0.006698911, -0.030511234, 0.0326538, 0.008848258, 0.013757177, -0.005281834, -0.00913303, 0.011682413, 0.0018374544, -0.011750216, 0.009444922, 0.02766352, -0.013730056, 0.0054581207, 0.0066311085, 0.00863807, -0.0018103332, -0.0028578856, 0.023513991, -0.014008047, 0.007743073, -0.009038106, 0.033250466, 0.0045868554, 0.01184514, -0.0064819423, -0.03688469, -0.008346518, -0.017954167, -0.01879492, 0.005281834, -0.02373096, -0.015391223, 0.011926503, 0.0028714463, 0.0075396653, -0.023025813, 0.0051563988, 0.01186548, 0.006346337, -0.008373639, 0.01036704, -0.015675994, -0.018916966, 0.021561272, -0.014753877, 0.012740135, 0.025046334, -0.009811057, -0.014130092, 0.0045800754, -0.0034172584, -0.005254713, 0.0048106047, 0.01088912, -0.025805725, 0.0058649373, -0.011404421, -0.011818019, 0.015404783, -0.022022331, 0.034986217, -0.022890206, 0.017981287, -0.0071396288, -0.01631334, 0.0044885417, -0.0018832212, -0.004424129, -0.018889844, 0.031785928, 0.015092891, 0.018415226, -6.348032E-4, -0.01382498, 0.013201194, -0.0030765496, -0.003973241, -0.02915518, 0.018360984, -0.0048173848, 0.017140534, 0.009458483, 0.008780455, 0.011953624, 0.01978484, 0.045807533, 0.015892964, -0.0016111627, -0.009716134, 0.0077295126, -0.025290424, 0.0017171045, -0.03360304, 0.012041767, -0.01783212, 0.014604711, 0.011038287, -0.014780998, -0.005214031, 0.0021832483, 0.011323058, -0.024327625, 0.0116688525, -0.0083329575, -0.005973422, -0.006597207, 0.0014975931, 0.017696517, 0.010061927, -0.022700358, -5.674242E-4, 0.007180311, -0.013858881, -0.015418344, 0.002590065, -0.01948651, 0.0017077816, 0.010197532, 0.0136351315, 0.0020306923, -0.011411202, 0.016259098, -0.011553587, 0.037833933, 0.0051563988, 2.9197556E-4, 0.019011889, 0.022876646, -0.0070108036, -0.01657099, -0.009600868, 4.6529633E-4, 0.03143335, -0.010285676, 0.051340237, -0.016191294, 0.023161417, -0.019689918, 0.016693035, 0.008766895, 0.006888759, 0.0011857005, 0.010577228, 0.038864534, 0.021181578, -0.004057994, -0.01634046, 0.008075307, 5.869175E-4, 0.007315916, -0.0043902276, -0.018184695, -6.640431E-4, -0.0075735664, -0.027283825, -0.02004249, -0.010414502, -0.00789902, -0.0063700676, -0.013940244, -0.012387562, -0.006542965, 0.008054966, 0.01136374, 0.036640603, -0.01235366, -0.02322922, 0.022537632, 0.017384624, -0.015987886, -0.01136374, -0.00989242, -0.021398546, -0.043285273, -0.017004928, 0.013716495, 0.021086654, -0.020354385, 0.006888759, -0.0074989833, -0.026537994, 0.02345975, -0.018116893, -0.012204494, 0.038891654, 0.003139267, 9.382205E-4, -0.00765493, -0.00592257, 0.030592598, -0.013479185, 0.006275144, -0.016625233, 0.0021832483, 0.019920446, -0.007207432, 0.019364463, -0.043095425, 0.019879764, -0.018374544, 0.0046343175, 0.0053462465, 0.005851377, 0.010258555, -0.017099852, -0.026917689, -0.023486871, -0.020883245, -0.006298875, 0.07371514, 0.01948651, 0.01803553, 0.0058615473, 0.0011806153, 0.002473105, -0.021900287, -0.03561, -0.0042614024, -0.007444741, 0.019635675, -0.009010985, 0.021818923, 0.012129911, 0.017723637, 0.0012407902, -0.01457759, -0.007234553, -0.0016323511, -0.009492384, -0.0109637035, -0.0047597527, 0.0024358137, 0.03146047, -0.0061361482, -0.014618272, 0.014360622, 0.015838722, 0.011987525, -0.0029765405, 0.0019493289, 0.010400941, -0.006132758, -5.8606995E-4, 0.021913847, 0.0061463187, 0.024178458, 0.0103331385, 0.026144737, 0.01211635, 0.006726032, 0.0096686715, 0.0089838635, -0.00865841, 0.022890206, -0.026904128, -0.0059157894, 0.012387562, 0.04146816, -0.029697603, 0.028829727, -6.229377E-4, 1.3422825E-4, -0.0024171679, 0.010719614, 0.005739502, -0.017737199, -0.0059971525, -0.03040275, -0.018103333, -6.127673E-4, -0.025073456, 0.0055733854, -0.01631334, 0.0056683095, -0.028992454, -0.028233062, 0.001508611, -0.01210279, 0.01359445, 0.0123333195, -0.029507754, -0.011811238, -0.011729875, 0.016896443, 0.0036172764, 0.02891109, 0.008583827, -0.009546626, 0.018876284, -0.02790761, -0.046512682, 0.015675994, -0.005973422, -0.012719795, 0.0136419125, -0.0045834654, 0.021940967, -0.0167744, 0.01382498, 0.00989242, 5.5174483E-4, -0.011024727, -0.01606925, 0.029317906, -0.009770376, -0.0089567425, 0.031053657, 0.004298694, 0.0128554, 0.0142792575, -0.0028544955, -0.0051055467, -0.018903404, 0.0057700137, -0.015960766, 0.011234915, 0.008726213, -0.037237268, -0.021195138, -0.02100529, -0.02149347, 0.017411744, 0.023486871, 0.008827917, 0.007444741, 0.011546807, 0.008773675, -0.003922389, -0.0026239662, 0.0032731774, 0.0069260504, 0.004349546, 0.026863446, -0.021710439, 0.038701806, -0.022510512, -0.021574832, -0.0038511958, 0.009173711, 0.016191294, 0.019378025, -0.010028026, -0.010990825, -0.033250466, -0.022347784, 0.013967365, -6.0585458E-6, -0.015038649, 0.009905981, -0.0227546, -6.708234E-4, 0.011207794, -0.011492565, -0.009689013, -0.028205942, 0.017913485, -0.005559825, 0.019920446, 0.04079013, -0.0026019304, 0.0010390771, -0.006254803, -0.010407722, -0.01161461, -0.03341319, -0.028043214, 0.009797497, 0.032192744, 0.007932921, 0.042227548, 0.0019323782, 0.016977808, 0.008570267, 0.012536728, 0.02573792, -0.018822042, 0.014536908, -0.025290424, 0.008129549, 0.008563487, 0.018157575, 0.01783212, 0.018415226, -0.0064717717, 0.009112689, 0.011695974, 0.010163631, -0.0023171587, -0.018876284, -0.0065260143, 0.0026883788, -0.015011528, 0.0066819605, -0.011723095, -0.016543869, 0.034199703, -0.010848439, 0.0010839964, -0.01137052, 0.024666639, -0.01259097, 0.004125797, -0.010007685, -0.005261493, -0.022022331, -0.011994305, -0.024829365, -0.013553768, 0.002400217, -0.004891968, 0.010048367, -0.0055225333, -0.018659316, 2.5298898E-4, 0.0066582295, -0.013953805, -0.03951544, 0.018144015, -0.012001086, -0.02545315, -0.02790761, 1.9895867E-4, -0.014658953, 5.220811E-4, 5.6678855E-5, -0.016191294, 0.0033223345, -0.025765043, -0.03978665, -0.001446741, -0.02222574, 0.048085704, 0.01556751, 0.038159385, 0.020110294, 0.001186548, -0.025914209, 0.015933644, -0.015716676, -0.012726575, 0.0113773, 0.038566202, -0.014265697, -0.018618634, -0.0051292777, 2.9345875E-4, -0.023052933, -0.041929215, 0.02695837, 0.034281068, 0.02051711, -0.025832845, 0.0012924898, -0.0375356, 0.029616239, -0.015336981, -0.007993943, -0.006132758, -0.025005652, -0.025263302, 0.008014284, -0.0023374995, 0.02642951, 0.004400398, -0.013560548, 0.00939068, -0.015987886, 0.020191656, -0.01234688, -0.0096686715, 0.024259822, -0.025927769, 0.005715771, 0.008509245, -5.3733675E-4, -0.0037698327, -0.008088867, 0.0078040957, 0.033792887, -0.013289338, -0.00518352, -0.008041405, 0.010021245, -0.0017332076, 0.016381143, -0.020096734, -0.017140534, -0.020110294, -0.002147652, 0.037481356, 0.018577952, 0.008502464, 0.0051123267, -0.014767437, -0.0015416649, 0.0022205398, -0.015703116, 0.017235458, -0.029914571, -0.006841297, -0.0043902276, -0.0023290243, -0.006010713, -0.009322877, 0.014184334, -9.126885E-5, 0.011201013, -0.021791803, -0.003983411, -0.00838042, -0.0096076485, -0.02891109, -0.025629437, -0.025059894, -0.0109433625, 0.0013882612, -0.011899382, -1.14099304E-4, -0.003508792, 0.0012662163, -0.010794197, 0.0032918232, -0.019418705, 0.018184695, 0.027338067, -0.0025358226, -0.004522443, 0.010407722, 0.031216383, 0.008326177, -0.0014408083, 0.014414864, 0.0048309453, 0.03211138, -0.031813048, 0.00296298, 0.014672514, -0.013452064, -0.020544231, 0.0042342814, 0.028694121, 0.007444741, -0.006943001, -0.029968813, 0.0023798763, -0.012136691, 0.023785202, -0.020313703, -7.157427E-4, 0.024734441, 0.02051711, 0.039461195, 0.018171135, -0.0012670638, -0.02845003, -0.020951048, -0.004271573, -0.028856847, -0.003432514, -0.0021459567, -0.0042546224, -0.0122722965, 0.004217331, -0.02469376, -0.0058954484, -0.026321026, -0.0316232, -0.0025985402, 0.019893326, 0.041603763, 0.006349727, 0.015120012, 0.006498893, -0.0072752344, 0.008949962, -0.018605072, 2.762962E-4, 0.00469534, 0.011336619, 0.014225015, 0.036016818, -0.03357592, -0.010685712, 0.014903043, 0.023866566, 0.012184153, 0.033684403, -0.0321385, -0.0024612397, -0.011831579, -0.02097817, -0.017899925, -0.0041800393, 0.015228496, -0.0222393, -0.012916422, 0.016272658, 0.008177011, -0.0149437245, 0.0046309275, 0.02150703, -0.012821499, 0.011465444, -0.019961128, -0.014645393, 1.503314E-4, -0.029778965, 0.021113774, -0.0064412607, -0.006346337, 0.020571353, -6.750611E-4, -0.0036003257, 0.022252861, -0.008238033, 0.008794016, -9.560187E-4, 0.003113841, 0.0030477333, 0.03235547, -0.036749087, 0.02004249, -0.022157937, -0.0013060503, -0.017655835, 0.0034952315, -0.014631832, 0.040871494, 0.013940244, -0.054296438, -0.019581433, -0.009594088, 0.00890928, 0.004959771, 0.0045088823, -0.026971933, -1.6420978E-4, -0.007343037, 0.00691927, -0.025317544, -0.011994305, -0.0010551802, -0.0040681646, -0.00766171, 0.015553949, 0.18583377, -0.011343399, 0.026524434, 0.031514715, 0.0012518081, 0.0017984678, 0.016394703, 0.015269178, -0.014184334, 0.019459387, -0.016584551, 0.026822766, -0.009038106, 0.0048343358, 0.008421101, -0.004617367, -0.026537994, -0.027636398, -0.015350541, -0.02545315, -0.0156217525, -0.004719071, -0.012496046, -0.0036138862, 0.0050241835, 0.009010985, -0.025019212, -0.0023290243, 0.027609278, 8.386352E-4, -0.02222574, 0.0057700137, -0.0129842255, 0.019350903, -0.005658139, -0.01259775, 0.007783755, 0.018455908, 0.018008409, -4.5512593E-4, 0.008021065, -7.7676517E-4, 0.004915699, -0.01235366, 0.020245899, 0.021100214, -0.021032412, -0.00840076, -0.0142928185, 0.019120375, -0.043854814, 7.7973155E-4, 0.015553949, 0.015906524, 7.822742E-4, -0.0061259777, 0.009912761, -0.008122769, -0.010217873, 0.0049529904, 0.024273382, 0.02967048, -0.013024908, 0.009349998, -0.020652715, 0.01906613, -0.038023777, 9.339828E-4, 0.012536728, -0.031785928, 0.003259617, -0.011465444, -0.016693035, 0.0032358859, -0.021968089, -0.022917328, 0.0014891177, 0.023107175, 0.020340823, 0.013723276, -0.050282516, -0.0068277363, 0.0016247232, -0.017750759, -0.026483752, -0.021113774, 0.02912806, -0.013235096, -0.012285857, -0.0123401, -0.007309136, -0.018333862, -0.014536908, 0.001261131, 0.0023917418, -0.0014662343, 0.022551192, 0.019405145, -0.004668219, -0.0073769386, -0.032463953, 0.032192744, 0.012231615, -0.02053067, -0.029182302, -0.006105637, 0.008807576, 0.015974326, 0.016001448, 7.242181E-4, -0.020883245, -0.028667001, -9.043191E-4, -0.0013407993, 0.008753334, 0.013580889, 0.024286943, -0.0271889, 0.026117617, -0.00863807, -0.008082087, -0.020910366, 0.013967365, 8.488056E-4, -0.016164174, -0.035528637, -0.015187815, -0.014699635, 0.002891787, -0.037128784, 0.004542784, -0.01781856, 0.010760295, -0.0047292416, -0.013330019, 0.016218416, 0.034959096, 0.0044342997, 0.012841839, 0.008821137, 0.0068480773, -0.013913123, 0.01307915, -0.0039427294, 0.011750216, -0.026999053, 0.022578314, -0.004217331, -0.004424129, -0.046594046, -0.0065531353, -0.02176468, 0.007688831, 0.006620938, 0.029453512, 7.691374E-4, -0.021968089, -0.046132986, -7.492203E-4, 0.04325815, -0.038430594, 0.0033409803, 0.019147495, -0.007987163, -0.018428786, -0.012014646, -0.17400897, 0.0077227326, 0.0068141758, -0.030836688, 0.017262578, 0.01308593, 0.01136374, 0.0013713104, 0.011987525, -0.008868599, 0.02863988, 0.0010551802, -0.02671428, -0.0043563265, 0.014658953, 0.027758444, -0.015662434, 0.03037563, 0.008488904, 0.002791778, 0.044668447, -0.005583556, -0.0089025, 0.005390318, 0.018360984, 0.012462145, 0.007960042, -0.011438323, 0.0031816438, -0.009512725, -0.04914343, 0.0069565615, 0.010000905, 0.006861638, -0.010746735, -9.848349E-4, -0.017452426, -0.014631832, 0.007207432, -0.0017594812, 0.038701806, 0.031080779, 0.008448222, 0.0050546946, -0.0043393755, 0.020435747, 0.048601005, -0.0055937264, 0.010231434, -0.021832483, -0.014903043, -0.026049815, 0.015730236, -0.017113412, 0.0015891268, 0.027338067, -0.003983411, 0.010936582, -0.0013365616, -0.010055147, -0.03238259, -0.009268635, 0.005139448, -0.0010170412, -0.0062615834, -0.01974416, -0.006031054, 0.009336438, -0.030863808, 0.0017332076, -0.018103333, -5.339466E-4, 0.024625957, 0.011160332, 0.0013162207, -0.018306741, -0.03566424, -0.0047122906, -0.004380057, 0.008814356, -0.013418163, 0.029480632, 0.0036782988, -0.006448041, 0.005729332, -0.020557793, 0.008949962, -0.0033426753, 0.013716495, -1.7988916E-4, 0.013180854, -0.016923565, -0.009594088, -0.034525156, 0.009207613, 0.010597569, -0.006380238, 0.0034647202, 0.021534152, -0.017601592, -0.005610677, -0.031107899, 0.011431542, 0.021181578, 0.035691366, 0.0089974245, -0.012746916, 0.019459387, 0.015716676, 0.012401122, -0.013228315, 0.0067599337, 0.02912806, 0.01360123, -0.030863808, 0.0029290786, -0.011980745, -0.014401303, 0.016733717, -0.007966822, 0.03235547, 0.013289338, 0.021344304, 0.0011026422, 2.6718518E-4, 0.01631334, -0.0924287, -0.0042885235, 0.004725851, 0.039162867, -0.041169826, 0.031948652, -0.020639155, 0.014116531, -0.0072209924, 0.026917689, 0.010190752, -0.016530309, 0.005532704, -0.011702754, 0.012563849, -0.006990463, -0.006197171, -0.017140534, 0.010468744, 0.031189263, 0.005420829, -0.011153552, -9.3567785E-4, -0.0070853867, -0.033304706, 0.0045021023, -0.021384986, 0.013411383, 0.005285224, 0.0028256793, 0.010414502, -0.01731682, 0.021805363, -0.055706736, -0.027772004, -0.01657099, -0.018184695, -0.025792165, 0.023907248, -0.041142706, 0.015526828, 0.014970846, 0.0069836825, -0.033087738, 0.008597388, -0.012529947, -0.024151338, 0.041712247, -0.024083534, -0.035176065, -0.013153733, -0.0017230372, -0.018713558, -0.0046885596, 0.029860329, 0.015391223, 0.010794197, 0.011180673, -0.009953443, -0.016638793, 0.0034426844, -0.009912761, -0.033711523, -0.0028765313, -4.9877394E-4, 0.010916241, 0.0013789383, 0.0033816618, 0.02668716, -0.0025646389, -0.02248339, 0.021208698, -0.035962574, -0.0030240023, -0.011417982, -0.0071396288, -0.020205218, -8.822832E-4, 0.010699273, -0.0123061985, 0.010095828, -0.042932697, 0.0062887045, -0.016855761, 0.006742983, 0.019432267, 0.02221218, 0.02297157, 6.9201173E-4, -0.033711523, -0.009058447, 0.022632556, 0.0041224067, -0.016910003, -0.014469106, 0.024015732, 0.010122949, 0.0046105864, 0.005044524, 0.0042308914, -0.02670072, -0.0034918413, -0.07962754, 0.023093615, -0.015079331, -0.0023341095, 0.012719795, -0.008488904, 0.027310945, -0.019798402, 0.0011924808, 0.0076006874, -0.011499345, 0.010502645, -0.008929621, 0.009682232, -0.0038376353, -4.8097572E-4, 0.009051667, -0.0027138048, 0.0028002532, 0.0066073774, -0.007614248, 0.014008047, 0.024897167, 0.011601049, 0.0074040596, 0.012577409, 0.004420739, 0.016584551, -0.018225377, 0.0035393033, 0.018645754, -0.018876284, -0.003481671, 0.018984769, -0.005661529, -0.019554311, -0.009288976, 0.01757447, 0.022334224, 0.011784117, -0.029507754, -0.009980564, -0.005308955, -0.008197351, 0.007682051, 0.021045972, -0.017262578, 0.009587308, 0.012584189, 0.0012797768, 0.021995211, 0.0048173848, -0.014604711, -0.0074718622, 0.019825522, -0.034498036, 0.051041905, 0.0055971164, -0.0038172945, -0.009438142, 0.026049815, -0.0028578856, 0.013662253, -0.024151338, -0.0066650095, 0.0034443794, 0.011804458, -0.010177192, 0.012828279, -0.034525156, -0.00989242, -0.013655473, 0.008136329, 0.034281068, 0.022890206, -0.0029511144, -0.012563849, 0.0051462282, 0.001086539, 0.01259775, 0.020422187, -0.015892964, -0.015404783, 0.012096009, -0.006129368, 0.023581794, -0.0036986396, -0.008346518, 0.0057734037, 0.015459025, -0.012821499, -0.0029951863, 0.0077227326, 0.0073837186, -0.01383176, 0.0071125077, -0.010428062, -0.009695793, 0.0019425487, 0.0207612, 0.0026985493, -2.1506182E-4, -0.025588756, -0.03289789, -0.002445984, 0.005064865, -0.0122790765, -0.04545496, 0.016923565, 0.022551192, 0.011045067, 0.0034698055, 0.0030545136, 0.0050072325, -0.03211138, 0.028531395, 0.0076956116, -0.007363378, -0.01703205, 0.04350224, -5.3352286E-4, 0.021452788, 0.03208426, -0.0063870186, 0.042824212, 0.008122769, 0.01853727, -0.027297385, 1.1907857E-4, -0.011594269, -0.0060446146, -0.01012973, -0.02641595, 0.005261493, -0.0051903, -0.004112236, 0.009207613, 0.033657283, -0.01802197, 0.059395205, 0.030484114, 0.02249695, 0.010760295, -0.014889482, 0.004003752, 0.021073094, 0.024531033, -0.014225015, -0.01556751, 0.007465082, -0.0023917418, 9.221173E-4, -0.033494554, -0.008122769, -0.0096415505, 3.6210904E-4, -4.2143645E-4, -0.012496046, -0.01906613, 0.0039359494, -0.0056479685, 0.022076573, -0.0033325048, -0.024436109, -0.008834697, 0.02248339, -0.013743617, -0.01088234, -0.039108623, 0.0028341548, -0.020842563, -0.008536366, 0.0027239753, 0.03238259, -0.00296637, -0.020395065, 0.004224111, 0.031026535, 0.0033172492, -0.029263664, -0.0103060175, -0.02522262, -0.009187272, 0.020964608, 0.012394342, -0.019540751, -0.023256341, -0.024314065 ], + "id" : "6e20f8c5-6741-4683-9918-55e979deb763", + "metadata" : { + "source" : "movies.csv" + } + }, + "02e40d77-0081-43dc-95b6-fae6621dde7c" : { + "text" : ",18848-10955-24679-29748-6520-619-9804-581-20662-879-8005-85435-8009-1844-9802-2024-9342-9476-10478-941-9772\r\n85,Raiders of the Lost Ark,Adventure-Action,en,When Dr. Indiana Jones ��� the tweed-suited professor who just happens to be a celebrated archaeologist ��� is hired by the government to locate the legendary Ark of the Covenant he finds himself up against the entire Nazi regime.,64.831,Paramount-Lucasfilm,6/12/81,18000000,389925971,115,Released,Indiana Jones - the new hero from the creators of JAWS and STAR WARS.,7.922,10772,Harrison Ford-Karen Allen-Paul Freeman-John Rhys-Davies-Ronald Lacey-Wolf Kahler-Anthony Higgins-Denholm Elliott-Alfred Molina-Vic Tablian-Don Fellows-William Hootkins-George Harris-Fred Sorenson-Anthony Chinn-Eddie Tagoe-Bill Reimbold-Patrick Durkin-Matthew Scurfield-Malcolm Weaver-Sonny Caldinez-Pat Roach-Christopher Frederick-Tutte Lemkow-Ishaq Bux-Kiran Shah-Souad Messaoudi-Terry Richards-Steve Hanson-Frank Marshall-Martin Kreidt-John Rees-Tony Vogel-Ted Grossman-Vic Armstrong-Peter Diamond-Nick Gillard-Romo Gorrara-Rick Lester-Rocky Taylor-Reg Harding-Harry Fielder-Billy Horrigan-Terry Leonard-Sergio Mione-Dennis Muren-Glenn Randall Jr.-Michael Sheard-Frank Welker,saving the world-riddle-nepal-himalaya mountain range-cairo-moses-egypt-whip-treasure-medallion-leather jacket-nazi-hat-mediterranean-ark of the covenant-ten commandments-treasure hunt-excavation-swastika-archaeologist-adventurer-archeology-religious history-1930s,/ceG9VzoRAVGwivFU403Wc3AHRys.jpg,/c7Mjuip0jfHLY7x8ZSEriRj45cu.jpg,89-87-217-496477-1891-1892-218-280-105-329-11-562-165-679-348-857-1893-607-1894-196-601\r\n47933,Independence Day: Resurgence,Action-Adventure-Science Fiction,en,We always knew they were coming back. Using recovered alien technology the nations of Earth have collaborated on an immense defense program to protect the planet. But nothing can prepare us for the aliens�� advanced and unprecedented force. Only the ingenuity of a few brave men and women can bring our world back from the brink of extinction.,74.074,20th Century Fox-TSG Entertainment-Centropolis Entertainment-Stereo D,6/22/16,165000000,389681935,120,Released,We had twenty years to prepare. So did they.,5.29,5764,Liam Hemsworth-Jeff Goldblum-Jessie T. Usher-Bill Pullman-Maika Monroe-Sela Ward-Judd Hirsch-William Fichtner-Brent Spiner-Patrick St. Esprit-Vivica A. Fox-AngelaBaby-Charlotte Gainsbourg-Deobia Oparei-Nicolas Wright-Travis Tope-Chin Han-Gbenga Akinnagbe-Robert Loggia-John Storey-Joey King-Jenna Purdy-Garrett Wareing-Hays Wellford-Mckenna Grace-James A.", + "embedding" : [ 1.8828908E-4, -0.035140995, -0.012023005, -0.036130883, -0.025874551, 0.012552319, -0.007685374, -0.028734224, -0.013645319, -0.013473464, 0.043142583, 0.030301547, 0.027249394, 0.004990681, 0.0034164856, 0.020925116, 0.019385291, -0.010778772, 0.021887505, -0.016511869, -0.010242582, -0.0016025517, -0.003718951, 0.008723381, -0.0036570833, 0.015233263, 0.028816715, -0.010331947, -0.0054787504, -0.0123392185, 0.0013688284, -2.7926505E-4, -0.0048188255, -0.014257125, -0.029779106, 0.0038873693, 0.0028510813, -0.021695027, 0.0359659, -0.001857757, 0.008310928, 0.00991262, -0.014600836, 0.019069076, 0.002165378, 0.021708775, 0.0024214427, -0.019316548, -0.014202131, 0.030274048, 0.016443126, 0.025407104, -0.031263936, -0.028679231, -0.007437902, -0.0054546907, -0.015425742, 0.020251442, -0.0113355825, -0.019261554, 0.010111973, -0.024829669, -0.030631509, 0.005392823, -0.01702056, 6.766807E-4, -0.010421312, -0.016910572, -0.0010955782, 0.025352111, 0.023276096, 0.024980903, 0.006991078, 0.020512661, 0.006599248, -0.030466527, -0.01762549, -0.009018972, 0.002292551, 0.010056979, -0.0021722524, -0.01429837, -0.0056059235, 0.0070804427, 0.019660259, 0.01886285, -0.008833368, 0.018959088, -0.030631509, -0.0015011571, 0.011569306, 0.04457242, -0.0018611941, 0.0138309235, -0.0010294139, 0.028239282, -0.016401881, 0.03360117, -0.0130885085, -0.042537652, -0.0070666946, -0.0043960614, 0.011638048, -0.009658274, -7.1105176E-5, -0.0048016403, 0.0031707324, -0.01180303, 0.02702942, -0.0018199488, -0.0055406187, 0.007829732, 0.026204513, -0.03340869, -0.0062658484, -0.02220372, 0.006441141, -0.022437442, -0.010510677, -0.0315939, 0.01175491, 0.02350982, 0.009397054, -0.033986125, 0.029806603, 0.02991659, 0.004949436, -9.031002E-4, 0.0034680422, -0.0054409425, 0.01956402, -0.0014255407, 0.026149519, 0.015673213, -0.031291433, 0.05730347, -0.018340409, 0.0032704084, -0.023619808, -0.016828083, 0.048394483, 0.037588216, -0.014779565, -0.030604012, -0.027400626, -0.002821866, 0.00325666, -1.2287662E-4, 0.007046072, 0.005819024, 0.026891936, 0.015219515, 0.011321834, 0.002100073, 0.019893982, -0.00807033, 0.0025417416, -0.011713665, 0.00991262, -0.01614066, 0.0058602695, -0.006980767, -0.015741955, -0.015535729, 0.0039939196, 0.037395738, 0.011541809, -0.0193028, -0.008139072, -0.0055853007, -0.004701964, 0.01571446, -0.0069326474, 0.0152470125, 0.013707188, 0.036818303, 0.0012382183, -6.324279E-4, -0.03984296, -0.015521981, -0.011521187, 0.019179065, 0.039540492, 0.045039866, -0.0070735686, 0.0041348413, 0.03236381, -0.020031467, 6.732436E-4, -0.0051006684, 2.5155337E-4, 0.017199289, -0.015755704, -0.0070048263, -0.6388072, -0.014779565, 0.005210656, -0.02306987, 0.012401086, 0.02685069, 0.008008462, 0.01193364, -0.031098954, -0.016649352, -0.025943292, 0.021516297, 0.022148725, -0.012511074, -0.016498119, -0.01346659, 0.008063456, -0.010297576, 0.014408357, 2.663759E-4, -0.038550604, 0.018986586, 0.022478689, 0.0046469704, -0.006503009, 0.010517552, -0.010008859, -0.02386728, 0.0031243314, -0.019976472, -0.0023131738, 0.005839647, 9.5036044E-4, -0.0043891873, 0.040117927, -0.006186795, 4.6320406E-6, 0.0508692, 0.035938405, 0.042757627, -0.02192875, -0.01982524, 0.021447556, -0.0054684393, -0.01131496, 0.018051693, 0.011253092, 0.0049631842, 0.012229231, -0.015040786, -0.0031054274, 0.0066920496, -0.005537181, -0.018794108, -0.0017907334, 0.010015734, 0.015288257, -0.041382782, 0.033848643, -0.0056677912, -0.016814334, 0.029889094, 0.00868901, 0.015700711, -0.037863184, 0.027881822, -0.002289114, -0.012297973, 0.015590723, -0.01658061, 0.014044024, 0.004158901, -0.01648437, -3.1471023E-4, 0.0030624634, 0.004031728, 0.017872963, 0.0010543329, -0.021392561, 0.022272462, -0.001333598, -0.019344045, -0.021750022, 0.032941245, 0.017171793, -0.0036708317, -0.027428124, 3.7335587E-4, 0.01728178, 0.0021052288, 0.01175491, 0.01571446, 0.018794108, 0.013109131, -0.007334789, 0.008572148, -0.011906143, 0.0018457271, 0.025022147, -0.04185023, 0.003237756, -0.010462558, 0.0042413916, -0.008675261, 0.019893982, 0.0059771314, 0.008675261, 0.0028734226, 0.022396198, -0.018106686, -0.021158839, 8.253356E-4, -0.0041451524, -0.0036880171, -0.006870779, -0.030604012, 0.0237023, 0.006582062, -0.005623109, 0.0062383516, 0.020746386, 0.002562364, 0.0054718764, -0.029971583, -6.5820623E-4, 0.021502549, 4.081566E-4, -0.013913414, 0.0066817384, -0.0039767344, -4.1653455E-4, -0.0035006946, 0.00868901, -0.0139202885, -0.0010500365, -0.0035058504, 0.013439093, -0.004313571, -0.0016094259, -0.0073210406, -0.026616966, 0.0063345903, -0.012861659, -0.018134182, 0.008489657, -0.02658947, -0.038963057, 0.0012304847, -0.009067091, -0.014367112, -0.018202925, 2.3350854E-4, 0.004729461, 0.0066783014, 0.0013679691, -0.0023887902, -0.016250648, -0.014380861, 0.027043168, -0.011122482, -0.012531697, -1.4258629E-5, 0.01214674, -0.014504597, 0.023056122, -0.0034817907, -0.0016798866, 0.016745592, -0.0040832846, -0.015040786, 0.014793314, 0.002759998, -0.005533744, 0.016814334, -0.0063930214, 0.013177873, -0.02394977, -6.470356E-4, 0.015865691, -0.0070357607, -0.0027909318, 0.0015939589, -0.0141608855, -0.004990681, 0.016828083, 0.02220372, -0.0029662244, -9.202857E-4, 0.0019454033, 0.019619014, 0.0039836084, -0.022932386, -0.021997493, 0.013542206, 0.0034766349, 0.028679231, -0.0087646255, 0.007877852, 0.013741558, 0.018450396, 0.038990557, 0.0155769745, -0.0027514051, -0.0024729993, 0.008475909, -0.037258253, 5.5938936E-4, -0.016773088, 0.0127173, -0.012304847, 0.024760928, -0.0066851755, -0.016745592, -0.0050628604, 0.020636398, 0.026369493, -0.023963518, 0.009025847, -0.011748036, -0.0032326004, -0.007843481, 0.0024644067, 0.024939658, 0.012359841, -0.041960217, -5.804417E-4, 0.020842625, -0.00513504, -9.46064E-4, -0.017350523, 0.019811492, -0.018821605, -0.011974885, 0.013700313, 0.003511006, -0.002235839, 0.025805809, -0.014325867, 0.04317008, -0.008194066, -5.0482526E-4, 0.0052965838, 0.029944086, 0.011143105, -0.019261554, -0.007657877, 0.005303458, 0.03123644, -0.022959882, 0.051721606, -0.029971583, 0.028679231, -0.0033202465, 0.0043376307, 0.0036124007, -0.013686565, 0.00635865, 0.015755704, 0.03263878, 0.019715253, 0.009562035, -0.028101796, 0.03035654, 0.014463351, 0.017831717, 0.007657877, -0.028294275, 0.0036089637, 0.002570957, -0.009658274, -0.018725365, -0.021543795, 0.0046813414, -0.0035952153, -0.0027651535, -0.006472075, 0.011947388, 0.022657417, 0.011473067, 0.009507041, -0.0066267448, -0.015150773, 0.021805014, 0.019577768, 0.0046194736, -0.020718887, -0.008908984, -0.011686168, -0.041795235, -0.011184351, -0.011452445, 0.03728575, -0.0073485374, -0.009018972, -0.0056677912, -0.00991262, 0.010799394, -0.015027037, 0.016731843, 0.021750022, -0.002447221, 0.0077472418, 0.0060836817, -0.016154408, 0.035745926, -0.01850539, 0.03203385, 0.003780819, -1.3522872E-4, -0.005781216, 0.006898276, 0.011734287, -0.031868868, 0.007719745, -0.022959882, -0.004987244, -0.0151645215, -0.005430631, 2.8866338E-5, -0.009754513, -0.013377225, -0.031208944, -0.024059758, 0.006224603, 0.0692921, 0.012236105, -0.0028115546, 0.007554764, 0.0022667728, 0.003414767, -0.01131496, -0.020512661, -0.008482783, -0.009087714, 0.01211237, -0.008297179, 0.020072712, 0.011012495, 0.016525617, -0.0031947922, -0.010524426, -0.0043754387, 3.5853335E-4, -0.010799394, -0.027290639, 0.0014728009, 0.01263481, 0.022946134, 0.0037223883, -0.034783535, 0.025544588, 0.01297852, -0.0091770785, 0.01868412, 0.013274112, 0.0023716048, 0.020952612, 0.002909512, 0.0025847054, -0.0020536722, 0.014270874, 0.0026895371, 0.027098162, 0.008943356, 0.0112599665, 0.019962724, 0.006702361, -0.0053378292, 0.012566067, -0.018354157, -0.015769452, 0.008524029, 0.023413582, -0.032226328, 0.024444714, -0.0024403469, -0.026383244, -0.015398245, 0.010916255, -0.0055681155, 0.010318199, -0.0051934705, -0.017914208, 0.0019179063, 7.394079E-4, -0.048229504, 0.025352111, -0.011899268, 6.91718E-4, -0.017433014, -0.0069704554, -0.0012657151, -0.01027008, 0.021708775, 0.01816168, -0.016016925, -3.8479502E-5, -0.0077884872, 0.013397848, -0.004165775, 0.025118386, -0.002562364, 0.009252695, 7.4327464E-4, -0.023619808, -0.035195988, 0.0014031994, -0.017694233, -0.0068192226, 0.015631968, -0.014862056, 0.009988236, -0.0067745405, -0.00228224, 0.017611742, -0.009617029, -0.019440284, -0.007293544, 0.03701078, 0.015040786, 0.008606519, 0.009335186, 0.0043891873, -0.006032125, 0.005647169, -0.022423694, -0.001073237, -0.017350523, -0.016305642, 0.0029799729, -0.009727016, 0.0058362097, -0.0062830336, -0.012270477, -0.04072286, -0.02553084, 0.013294735, -0.005011304, 0.018106686, -0.0017529252, 0.023001129, -0.0057021626, -0.0011522905, 4.3694238E-4, -0.0132534895, -0.015425742, 0.015260761, 0.014229628, -0.0022186534, 0.021956248, -0.0068329712, -0.032336313, 0.0022994254, 0.029779106, -0.001811356, 0.007912223, -0.016291892, -0.0033993, -0.0052965838, -0.0130816335, 0.025077142, -0.0017529252, -0.0024197241, 0.010723778, -0.024444714, -0.016360635, 0.019371541, 4.8763974E-4, -0.026451984, -0.024444714, 0.0017855777, -0.010730652, 2.1900825E-4, 0.018395403, -0.020210197, 0.00908084, -0.021461304, -0.0039939196, -5.666932E-4, -0.023551065, -0.02658947, -0.010964375, 0.04957685, 0.009946991, 0.029091684, -0.0065545654, 0.028239282, -0.0031483911, 0.023908526, 0.030659005, -0.009376431, -0.009534538, -0.033216216, -0.00912896, 0.01589319, 0.018656623, 0.02026519, 0.015604472, 0.0051694107, 0.028321771, 0.015755704, 0.01219486, 0.0040764106, -0.031538904, -0.014339616, 0.0043582534, -0.023289844, -0.011246218, -0.034701046, -0.015631968, 0.042647637, -0.021846259, -0.0091839535, -0.0066233077, 0.045864772, -0.004468241, 0.004093596, -0.016525617, -0.0015518543, -0.030054074, 0.012579816, -0.026108274, -0.006035562, 0.012779169, 0.006217729, 0.016443126, -0.016126912, -0.019206561, 0.0010998746, 0.022258712, -0.0184229, -0.014284622, 0.01403715, -0.010187589, -0.009575783, -0.03500351, -0.026520727, -0.027428124, -0.0071973046, 0.0062967823, 0.0032824383, 0.0066954866, -0.01482081, -0.03800067, 0.03167639, 0.0073622856, 0.041052822, 0.002369886, 0.046469703, 0.022464938, 0.015645716, -0.030136565, 0.0010474587, 5.4735946E-4, -0.012531697, 0.021090096, 0.024664689, -0.0069085876, -0.0053447033, -0.0036570833, -0.01746051, -0.032611284, -0.040915336, 0.043197576, 0.0026482919, 0.026355745, -0.023908526, -3.8194866E-4, -0.029284162, 0.013143502, 0.009795759, -0.00467103, 0.012909778, -0.021035103, -0.011390577, -0.010833765, -0.0069292104, 0.026190765, 0.015604472, -0.02939415, 0.010641287, -0.021846259, 0.006984204, -0.028624237, 0.005623109, 0.030714, -0.022959882, 0.019316548, 0.0044888635, 0.016718095, -0.0162369, 0.0058293357, 0.0014057773, 0.02779933, -0.030906478, 0.011253092, -0.013885917, 0.020155203, 0.0028631112, 0.013280986, -0.02036143, -0.0062486627, -0.022739908, 3.5165914E-4, 0.015150773, -0.0050937943, -0.0102563305, -0.0154944835, -0.014752069, -0.0047741435, -0.0017907334, 2.3608637E-4, 0.017364271, -0.040420394, -0.0025383043, -0.0045919768, -0.0069326474, -0.0077403677, -0.008482783, 0.020031467, 6.728139E-4, 0.00833155, -0.018546635, 0.008324676, -0.007987839, 0.0024609694, -0.019687755, -0.0038667468, -6.5476913E-4, -0.0030744933, 0.010132595, -0.02499465, -0.00284077, -0.008744003, -0.0019900857, -0.008359048, 2.564942E-4, -0.013143502, 0.013885917, 0.030466527, -0.014463351, 0.011246218, -0.0057949643, 0.030604012, 0.014958295, -0.002428317, 0.00837967, -0.002223809, 0.027098162, -0.03560844, 0.023234852, 0.008386544, -0.01868412, -0.01878036, 0.015508233, 0.021640033, -0.013652194, -0.006853594, -0.026713206, -0.0099263685, -0.007946595, 0.021860009, -0.012256728, -0.004952873, 0.027785582, 0.023798537, 0.03904555, 0.02183251, -0.0036433346, -0.027716842, 0.00498037, -0.010290702, -0.01746051, 0.014422107, 0.020031467, 0.0078916, 0.0034061742, -0.010373193, -0.014972043, -0.005210656, -0.024087254, -0.029284162, -0.014573338, 0.016828083, 0.041960217, 0.0333262, 0.01491705, 0.023633556, -0.0094383, 0.015082031, -0.024609694, -0.0038323756, 0.008489657, 0.0070391977, 0.015535729, 0.027689343, -0.026974425, 0.007458525, 0.0031587025, 0.015590723, 0.0012674336, 0.0351135, -0.019082826, -0.018697869, -0.005392823, 6.186795E-5, -7.1998016E-7, -0.004028291, 0.0214888, -0.021200083, -0.013631571, 0.0155769745, 0.036350857, 0.004069536, -0.009486419, -0.0028459255, -0.01982524, 7.9483126E-4, -0.004732898, -0.024169745, 0.0013593764, -0.028266778, 0.02606703, 0.00881962, -0.014683327, 0.03131893, 0.007114814, -0.016773088, 0.012029879, -0.002906075, 0.0039526746, 0.0030573078, 2.4682735E-4, 0.012524823, 0.021777518, -0.027166903, 0.010077601, -0.021681279, -0.003622712, -0.005021615, 0.019797744, -0.019550271, 0.033051234, 0.0068398453, -0.052601505, -0.007822858, -0.0047569578, -7.2522985E-4, -0.006595811, -0.004894442, -0.029889094, -0.004605725, -0.008400292, 0.002431754, -0.009665148, -0.021186335, -0.0066473675, -0.014504597, -0.010063853, 0.01693807, 0.18323912, -0.0031483911, 0.03368366, 0.029256666, 0.005516559, 0.0068089115, 0.025310865, 0.025764564, -0.023564814, 0.021323819, -0.012531697, 0.014380861, 0.007149185, -0.004437307, 0.011411199, -0.021915002, -0.016154408, -0.00969952, -0.032858755, -0.013762182, -0.0050525493, -0.0043410677, -0.0019179063, -0.0034096113, 0.0053103324, -0.00978201, 0.0043651275, 0.009410802, 0.021860009, -0.0033907073, -0.024582198, -0.023784788, -0.010579419, 0.023578562, -0.032501295, -0.0042104577, -0.004457929, 0.009740764, 0.009287067, -0.008929607, 0.011156853, -0.025599582, -0.020127706, -0.021736272, -0.008585896, 0.0019746188, -0.02773059, -0.012806665, -0.024540953, -0.011809904, -0.033188716, -0.006602685, 0.01232547, -0.0014530375, -0.0138309235, -0.016333139, 0.011473067, -0.0017005093, 0.0034628864, 0.006795163, 0.022038737, 0.028981697, -0.030933974, 0.011782407, -0.0132534895, 0.025379607, -0.026960677, -0.012758546, 0.0050284895, -0.040255412, 0.0030280924, -0.013061011, -0.027661847, 0.0019385291, -0.0028338956, -0.010448809, 0.009245821, 0.017433014, 0.0013679691, 0.01268293, -0.020141454, -0.023674801, 0.007176682, -0.0010981561, -0.019069076, -0.017969202, 0.008338424, -0.022657417, -0.014380861, 0.0021103844, -0.013569703, -0.017474258, -0.015274509, -0.001526076, -0.01509578, 0.002902638, 0.03808316, 0.013906539, -0.015233263, -0.0059565087, -0.02044392, 0.037973173, 0.009087714, -0.0067986, -0.038303133, -0.010050104, 0.0015252167, 0.025063394, 0.03780819, -0.017762976, 0.00942455, -0.028129295, -0.009328311, -0.014092144, 0.0024661252, 0.012538571, 0.005963383, -0.01702056, 0.02702942, -0.022616172, -0.014044024, -0.026891936, 0.021213831, 6.5992476E-4, 0.002540023, -0.031731382, -0.027153155, 0.020952612, -0.0077059967, -0.03833063, 0.01105374, -0.043939993, 0.007877852, 0.00736916, 0.010806268, 0.017762976, 0.0037945674, 0.004004231, 0.010655035, -0.0070941914, 0.0043960614, -0.021035103, 0.016718095, 0.019014083, 0.008159695, -0.017872963, 0.0026689146, -0.004031728, -6.659397E-4, -0.027565608, -0.0012330626, -0.017116798, -0.0016936351, 0.02280865, 0.026039531, -0.004327319, -0.021516297, -0.05037426, -0.0053275176, 0.03148391, -0.030768992, 0.028679231, 0.022066236, -0.01648437, -0.029229168, -0.0127516715, -0.17696983, 0.024527205, 4.3844612E-4, -0.0491369, 0.029421646, 0.023881027, 0.0162369, 0.011954263, 0.013535332, -0.010751274, 0.026905684, 0.0036158378, -0.043637525, 0.0118374005, 0.012318596, 6.8742165E-4, -0.008290305, 0.028033055, 0.022327455, -0.0049013165, 0.037313245, -0.0023062995, -0.014683327, -0.004997555, 0.0038701838, 0.0023286408, 0.004767269, -0.005932449, 0.025558338, -0.0057330965, -0.02386728, 0.009280193, 0.0025348673, -7.634677E-4, -0.0029765358, -0.010393815, -0.014325867, -0.011940514, -0.0016111445, -0.008565274, 0.020210197, 0.010029482, 0.027991809, 0.016828083, 0.004997555, 0.013535332, 0.014188383, -0.019852737, 0.013610949, -0.008035959, -0.019880233, -0.043500043, 0.026341997, -0.0043960614, 4.5627612E-4, 0.038578104, -9.881686E-4, -0.010723778, -0.0026843816, -0.004760395, -0.023028625, -0.0063998955, 0.021296322, -0.012428584, -0.0017185541, -0.022176223, -0.019055327, 0.007919097, -0.027703092, 0.019495279, -0.031401422, 3.1019902E-4, 0.0206089, 0.0149995405, -0.013432219, -0.011713665, -0.03665332, 0.0039939196, -0.009142708, 0.012208608, -0.033848643, 0.039540492, -0.008365922, 0.02509089, 0.023124864, -0.019344045, 0.0046263477, -0.0067917258, -0.0017941705, -0.005963383, 0.006640493, -0.01658061, -0.04113531, -9.409084E-4, 0.0085996445, 0.016704345, 0.013390973, 0.008276557, -0.0057296595, -0.021048851, -0.013817175, -0.020718887, -0.0108406395, 0.034948517, 0.022258712, 0.01860163, -0.01455959, 0.020870121, 0.028541747, 0.011528061, -0.012600439, 0.0010156655, 0.01219486, 0.007121688, -0.020870121, 0.01816168, -0.021681279, -0.027868073, 0.008262808, 0.007046072, 0.0351135, -0.017597994, -0.019316548, -0.0073279147, 0.0038117531, -0.013782804, -0.08925483, 0.0065305056, 0.030274048, 0.03291375, -0.0130885085, 0.033243712, -0.004420121, 0.015150773, -0.028624237, 0.02570957, 0.009431425, -0.014545842, 0.016209403, -0.013459716, 0.014504597, 0.004763832, -0.0105931675, -0.009067091, -0.020595152, 0.025200877, 1.15894996E-4, -0.005678103, 0.0100913495, -0.013734684, -0.031401422, 0.001776985, -0.036790807, 0.022038737, 0.008235311, 0.007967217, 0.0060836817, -0.012071124, 0.006069933, -0.03604839, -0.038110655, -0.018642874, -0.020925116, -0.026726954, 0.013837798, -0.044242457, 0.0070598205, 0.009135834, 5.632561E-4, -0.016126912, 0.0015406838, 0.0073897825, -0.021351317, 0.028184287, -0.008634016, -0.027139407, -0.017488007, -0.012352967, -0.03283126, -0.0015853662, 0.015700711, 0.035773423, 0.015425742, 0.0091770785, 0.007843481, -0.007300418, 0.011438696, -0.016855579, -0.025063394, 0.014600836, 0.018409152, 0.010641287, -0.0022495873, -0.005619672, 0.019454032, -0.009823255, -0.011541809, 0.024142249, -0.042950105, 6.0192356E-4, -0.02499465, 0.013590326, -0.025750814, -0.012614187, 0.014490848, -0.034261096, -0.0019454033, -0.020993857, -0.010833765, -0.022767404, 0.0088471165, 0.032858755, 0.0060011907, 0.0050044297, -0.0022684913, -0.031731382, 9.477826E-4, 0.025819557, -0.009115211, -0.0014676452, -0.0013275831, 0.046469703, 0.012091747, 0.010435061, -0.005245027, -0.003846124, -0.004127967, -2.7797613E-4, -0.07814609, 0.025572086, -0.012469829, -0.011741161, 0.0028115546, -0.011541809, -0.010682533, -0.0055131214, 0.009809507, 0.008654638, -0.014807062, 2.096636E-4, 0.0010087913, 0.0028390514, -0.012023005, 0.015975678, -0.0021310071, 0.0037292624, 0.0031982292, -0.013693439, -0.01219486, 0.009706394, 0.0032497859, -0.013638445, -0.0055681155, 0.020072712, 0.015521981, 0.020058963, -0.016374383, -0.005784653, 0.03217133, -0.015631968, -0.0029198234, 0.0066267448, -0.021502549, -0.034618553, -5.061142E-4, 0.009775136, 0.028706728, 0.019357793, -0.012332344, -0.020938864, 9.4520475E-4, -0.009727016, -0.0074722734, 0.008228437, -0.027428124, 0.00785723, 8.713069E-4, 0.00526565, 0.024843419, 0.012572942, -9.1083365E-4, -0.017089302, 0.0076716254, -0.035690933, 0.061428, 0.014270874, -0.0029438832, -0.014573338, 0.036130883, -2.554201E-4, 0.016360635, -0.02315236, 0.0051625366, -0.006826097, 0.005846521, -0.0121742375, 0.0040523508, -0.0066714273, -0.007403531, -0.007980965, 0.005660917, 0.02955913, 0.014119641, 0.02377104, -0.008214689, 0.005303458, 0.010861262, 0.008372796, 0.018986586, -0.029201671, -0.03527848, -2.7953356E-5, 0.011287464, 0.038633097, -0.006351776, 0.0069532697, -0.008310928, 0.0044304323, -0.01035257, 0.003495539, 0.016745592, -0.0042035836, -0.0050594234, 0.012167363, -0.027263142, -0.002100073, -0.0024059757, 0.04262014, 0.0066233077, -0.0077609904, -0.011246218, -0.007121688, -0.025915796, 0.0036158378, -0.011473067, -0.042042706, 0.020320185, 0.0067848517, 0.027785582, 0.031291433, -0.024279732, 0.0018319787, -0.043115087, 0.008001588, -0.017364271, -0.009328311, -0.018917844, 0.033381194, 0.019770246, 0.022052485, 0.015920686, -0.013700313, 0.05331642, 3.8173384E-4, 0.027991809, -0.020842625, -0.008654638, 0.007046072, -0.023441078, 0.008957104, -0.017254284, 0.006289908, -0.003253223, 0.0058258986, 0.015315754, 0.031098954, -0.022217467, 0.06324279, 0.0045576054, -0.008262808, 0.02947664, -0.021268826, 0.0015209204, 0.01079252, 0.011108734, -0.0036020894, -0.017213037, -8.5798814E-4, 0.0038908066, 0.0064102067, -0.02280865, -0.0126691805, -0.0072591724, 0.016951818, 0.014545842, -0.01912407, -0.00999511, 0.009720142, -9.2973775E-4, 0.017405516, 0.0023406707, -0.012490451, -0.013445968, 0.040942833, -0.016388131, -0.005049112, -0.04666218, -0.002046798, -0.024595946, 0.0038358127, 2.4102721E-4, 0.031511407, 0.0049047535, -0.012827287, -6.947255E-4, 0.011555558, -0.0025468972, -0.020155203, 0.013136628, -0.02202499, -0.015123276, 0.014889553, 0.015851943, -0.0109231295, -0.016374383, -0.014889553 ], + "id" : "02e40d77-0081-43dc-95b6-fae6621dde7c", + "metadata" : { + "source" : "movies.csv" + } + }, + "6270d39e-3467-4d8a-ae56-58cdca16daa4" : { + "text" : "The boys must put aside music super stardom to return to school and are tasked with saving the school's music program by winning the $25000 prize in a battle of the bands. But the Chipmunks unexpectedly meet their match in three singing chipmunks known as The Chipettes - Brittany Eleanor and Jeanette. Romantic and musical sparks are ignited when the Chipmunks and Chipettes square off.,37.126,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/21/09,75000000,443140005,88,Released,The Boys are back in town... and they have competition.,5.644,2541,Zachary Levi-David Cross-Jason Lee-Justin Long-Matthew Gray Gubler-Jesse McCartney-Amy Poehler-Anna Faris-Christina Applegate-Wendie Malick-Anjelah Johnson-Reyes-Kathryn Joosten-Kevin G. Schmidt-Chris Warren-Bridgit Mendler-Aimee Carrero-Alexandra Shipp-Gregg Binkley-Jake Zyrus-Bernard White-Adele Jacques-Joy Osmanski-Archie Hahn-Lanny Joon-Brando Eaton-Michael Bruno-Andrew Lee Schmidt-Alexander Noyes-Jason Rosen-Ali Mikles-Eric Bauza-Sean Astin-Marty Dew-Richy Jackson-Mihran Kirakosian-Janelle Ginestra-Thomasina Gross-Rachele Brooke Smith-Ryan Conferido-Hokuto 'Hok' Konishi-Ryan Feng-Dominic Sandoval-Brian Hirano-Steve Terada-Victor Kim-Brittany Anne Pirtle-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Courtney Galiano-Gee Alexander-Mark Alkofer-Tallie Brinson-Ericka Clevenger-Sean Decker-Sarah Fontenot-Paul Gonzales-David Lautman-Casper Smart-Andrew Thompson,chipmunk-aftercreditsstinger-duringcreditsstinger-woman director-live action and animation,/8mdPqOga5fty15nXmaNcK1fsNMa.jpg,/3lf6YCItKcF3Wrrs7tp1PL0eyOT.jpg,6477-55301-12133-258509-41513-8920-5559-9982-7484-9513-77931-9836-13053-42949-10527-26505-46195-22794-7518-984430-9992\r\n2503,The Bourne Ultimatum,Action-Drama-Mystery-Thriller,en,Bourne is brought out of hiding once again by reporter Simon Ross who is trying to unveil Operation Blackbriar an upgrade to Project Treadstone in a series of newspaper columns. Information from the reporter stirs a new set of memories and Bourne must finally uncover his dark past while dodging The Company's best efforts to eradicate him.,22.843,Universal Pictures-The Kennedy/Marshall Company-Ludlum Entertainment-Motion Picture BETA Produktionsgesellschaft-Bourne Again-KanZaman Services-Peninsula Films-Studio Babelsberg,8/3/07,70000000,442824138,115,Released,Remember everything. Forgive nothing.,7.", + "embedding" : [ -0.011945822, -0.022520924, -0.015708448, -0.044932194, -0.016215615, 0.05110043, 0.015530255, -0.026811277, -0.03248606, -0.021013133, 0.0132891275, 0.031965185, 0.005469172, -0.008861703, 0.024494762, -0.009533356, 0.009917157, -0.008354536, 0.0023113762, -0.013152055, -0.024069838, 0.00680905, 0.0014503928, -0.0047255564, 0.009704696, -0.0012644889, 0.028291656, -0.0023644916, -0.011226195, -0.0049071764, 9.089585E-4, -0.0075389585, -0.013803148, -0.01799755, -0.017188825, -0.0068604522, -4.3852324E-5, -0.028977014, 0.0323764, -0.009745817, 0.016599415, 0.020039922, -0.009718403, 0.015667327, -0.023548964, 0.014680408, 0.0036838092, -0.017421847, 0.0072374, 0.010259837, 0.0065965885, 0.027112836, -0.02807234, -0.021876687, -0.011822457, -0.008450487, -0.004876335, -0.0124598425, -0.00929348, -0.013796294, 0.0039716605, -0.02205488, -0.022644289, -0.0359951, -0.013282274, -0.0108561, -0.005325246, -0.021479178, -0.020807525, 0.0018144902, 0.0024929964, 0.015393183, 0.03292469, -0.011609996, 0.017010631, -0.0039922213, -0.026071088, 0.00180935, 0.013501589, 0.014159535, 0.030978266, -0.0058461195, -0.021438057, 0.006486931, 0.022123417, 0.0050408216, 0.0015780411, 0.025509093, -0.014625579, 6.592305E-4, 0.015681034, 0.027277322, 0.0070592067, 0.0075937873, -6.280681E-5, 0.020533381, -0.007648616, 0.0061031296, -0.005345807, -0.0031852098, 0.001309894, -0.017449262, -0.011452363, -0.013391932, -0.0097663775, 0.0060208864, -0.011328998, -0.014707822, 0.01716141, -0.0013818569, 1.7337463E-4, -0.0032229046, 0.008052979, -0.044548392, 0.017723406, -0.012315917, 0.007902199, 0.011219341, -0.0032914407, -0.012144577, 0.045096677, 0.019011883, 0.009814353, -0.04328733, 0.034405064, 0.018257987, -0.012370746, -0.016023714, 0.009910303, 0.0027962683, 0.013556418, -0.025317194, 0.016585708, 0.026180746, -0.021465471, 0.029744618, -0.0114592165, 0.03223933, -0.027674831, -0.024823735, 0.035391983, 0.029251158, -0.025372023, -0.009238651, -0.015365768, 0.02093089, 0.0075046904, 0.0035570178, 0.042464897, -0.01491343, 0.025029343, 0.005520574, 0.015365768, 0.009978839, 0.019053005, 4.7418335E-4, -0.014173242, -0.007888492, -0.0072305463, -0.025097879, -0.0018556118, 0.0056165243, 0.02435769, -0.002726019, 0.01775082, 0.016530879, 0.02371345, -0.014337728, -0.0145159215, 0.006932415, 0.0046673007, 0.007216839, -0.041505393, 0.014886016, 4.848921E-4, 0.021013133, -0.013529004, 0.0077925418, -0.0067542214, -0.021849273, -0.002576953, 0.002280535, 0.035391983, 0.04649481, -0.008738338, 0.014968259, -0.0032520324, 0.002200005, 0.00775142, -0.013810001, 0.005681633, 0.0041327197, 0.0020509395, -0.009423698, -0.6368912, 0.005400636, -0.0054246234, -9.517935E-4, 0.0058289855, 0.023727158, 0.009773231, -6.5451866E-4, -0.020505967, 0.004979139, -0.008806874, -0.0010203295, 0.03204743, -0.007072914, -0.03300693, -0.012973862, -1.377145E-4, -0.03325366, 0.008279147, 0.0027037447, -0.029717203, 0.022219367, -0.010054229, 0.014351435, 0.013200031, 0.025454266, -6.836465E-4, -0.004962005, -0.002211999, -0.01215143, -0.010671053, 0.02274024, 0.014625579, -0.0029282, 0.036159586, 0.012192552, -0.012850497, 0.037091676, 0.02426174, 0.008025564, -0.026167039, -0.022082295, 0.007950175, 0.006181946, -0.0040744646, 0.012487257, 0.018477302, 0.0132205915, -0.010602517, -0.010794418, -0.0027534333, -0.0010323232, 0.016407516, -0.0020029643, -3.2104825E-4, -0.02489227, 0.0017802222, -0.009821206, 0.0075937873, 0.008416219, -0.013337103, 0.0076760305, 0.007915907, 0.0038208812, -5.722755E-4, 0.02797639, 0.007251107, -0.012110309, 0.03125241, -0.029415645, -1.9971814E-4, 0.0025118438, -0.02167108, -0.010890368, 0.027647417, -0.0019858303, 0.033089172, -0.021739615, -0.008265439, 0.0155850835, -0.0111645125, -0.017531505, -0.010499713, -0.008135222, 0.03476145, -0.012418721, -0.014228071, 5.238719E-4, 0.007963882, -7.4361544E-4, -0.006812477, 0.044192005, 0.0032177644, -0.01633898, -0.014886016, 0.016750194, -0.016709073, 7.057065E-5, 0.033801947, -0.044795122, -0.0072785215, 0.008525876, 0.0018076366, 0.0028887917, 0.01858696, 0.0030686988, -0.004944871, -0.015489133, 0.029470474, -0.025605043, -0.021575129, 0.0043931566, -0.007511544, -0.00904675, -0.016777609, -0.03243123, 0.03859947, -0.0029230597, 0.0015489133, -0.0180935, -0.013604393, -0.017202532, 0.005661072, -0.024810027, -0.009834914, 0.010917783, 0.0063738464, 0.0021006279, -0.011568874, 0.005870107, -0.006010606, 0.013021837, 0.02034148, -0.010540835, 0.009656721, 0.018230572, 0.023507843, -0.02626299, 0.010424323, -0.037009433, -0.011322144, -0.00655204, 0.0017236801, -0.012219966, -0.0065417597, -0.0043931566, -0.007963882, -0.028922185, 0.012370746, -0.0069564027, 0.0011394108, 0.024439933, -0.0040401965, -8.3142717E-4, 0.03879137, 0.004232097, -0.021849273, -0.024741491, -0.00430406, -0.0071003283, 0.010629931, 0.034953352, -0.010328373, -0.03382936, 0.0023867658, 8.425643E-4, -0.009485381, -0.0019053004, -0.0036735288, -0.018381352, 0.027770782, 0.0020286653, -0.0031320946, -0.009547063, -0.019642413, 0.026633084, -0.019299734, 0.020081043, -0.0119937975, -0.015489133, 0.0061887996, -0.0128573505, -0.034295406, -0.015283525, 0.042026266, 0.010157033, 0.029744618, -0.02528978, -0.009081018, 0.005397209, -0.0014332588, 0.0012362178, -0.009725257, 0.0012387879, 0.0039545265, -0.0018333376, 0.024097253, -0.011363266, -0.0015780411, 0.013439907, 0.041039348, 0.012034919, 0.027894147, -0.016900973, 0.004084745, -0.03722875, -0.0054211966, -0.020985719, -0.002748293, -0.01344676, 0.004523375, -0.0069975243, 2.9850635E-5, -0.019107834, 0.0025958004, 0.0069289883, 0.0061887996, 0.013926513, -0.017051753, -0.0036324072, -0.004643313, -0.0048729084, 0.0081763435, 0.010390055, -0.022068588, 0.0022274195, 0.0102666905, -0.01946422, -0.013782587, 0.0027620003, 0.0040401965, 0.012781961, -0.0025975138, -0.007867931, 0.023877937, -0.021739615, 0.025139, -0.0066342833, 0.047947776, 0.0041669877, 0.0073470576, 0.025221244, 0.013097227, -0.009574478, 0.014776358, -0.025481679, 0.011013733, 0.0291415, -0.013734612, 0.026427476, -0.018395059, 0.011041148, -0.004355462, 0.012507818, 0.03451472, 7.975875E-4, 0.003999075, -0.017805649, 0.025248658, 0.024618126, -0.01163741, -0.016201908, 0.0062264944, 9.183822E-4, 0.0066102957, 0.02401501, -0.0132548595, -4.277074E-4, -0.019395685, -0.041395735, -0.022630582, 4.557643E-4, -0.011287876, 0.00438973, 0.029963933, -0.013810001, -0.019710949, 0.015379475, 0.012781961, 0.02504305, -0.0035330302, -0.025413144, 0.025330901, 0.032458644, -0.025755823, 0.0016534306, 0.011609996, -0.010520274, -0.0180935, 0.0050065536, -8.061545E-4, 0.021314692, 2.2060021E-4, 0.010842393, -0.022082295, -0.034651794, 0.0064937845, -0.01352215, 0.014378849, 0.0217122, 0.012350185, 0.022712825, -0.015763277, -0.009917157, 0.0053355265, -0.0017536646, -0.011938969, -0.009492234, 0.0011762489, -0.010061082, -0.008690363, 0.0033582633, -0.033281073, 0.011335852, -0.010109058, -0.015036795, -0.012288502, 0.014310313, 0.020643039, -0.0027842745, -0.009060457, -0.0076623233, -0.0434244, 0.002465582, 0.10439401, 0.030101005, -0.0021760175, 0.018216865, -0.0034542137, 0.0022616875, -0.010814979, -0.024755199, 0.0065417597, 0.0037831864, 0.026783863, 0.009718403, 0.008642388, 0.013563272, 0.015818106, -0.011472924, -0.0026694767, -0.012658597, -0.006384127, -0.017887892, -0.0358032, 0.015036795, 0.011123391, 0.028373899, -0.0022171391, -0.021534007, 0.0047187028, 0.027715953, 4.4591224E-4, -0.014666701, -0.016832437, -0.029991347, -5.7527394E-4, 0.012418721, 0.0015249257, 0.007984443, 0.02245239, 0.01716141, 0.018545838, -0.012905326, 0.012384453, -0.0013518723, -3.1783563E-4, 5.7870074E-4, 0.020999426, -0.022767654, -0.00430406, 0.013878537, 0.025838066, -0.030265491, 0.02049226, 0.009266065, -0.011719653, -0.0057947175, 0.0045336555, 9.826347E-4, -0.001843618, 3.4867684E-4, -0.022657996, 0.010938344, -1.9717481E-5, -0.048989523, 0.018449888, -0.010972612, 0.0051264917, -0.0064766505, 0.0031201008, -0.012699719, -0.010671053, -0.002534118, -0.0060208864, -0.016407516, -0.01765487, -0.01609225, 0.026660498, 0.006236775, 0.027839318, -0.0089713605, -0.0073127896, 0.0057638763, -0.02376828, -0.018943347, 0.010890368, -0.014858602, 0.011897847, 0.022986969, 0.016147079, 0.0068947203, -0.009033043, 0.022000052, -7.1791443E-4, 0.011514045, -0.008217465, -0.028593212, 0.01403617, -0.0025529654, 0.024988221, 0.026413769, 0.009163261, 0.010945197, 0.01760004, -0.0029179195, 0.0057433154, -0.011185073, -0.00672338, 0.0045130947, 0.0033411293, 0.002996736, -0.029333401, -0.016133372, -0.0119595295, -0.030429978, 0.0020029643, 0.008991921, 0.014406264, -0.009588185, 0.0017802222, 0.0084367795, -0.0021554567, 0.017353311, 0.01908042, -0.022767654, 0.021657372, 0.035172667, -0.037585136, 0.03550164, -0.007847371, -0.049811956, -0.010061082, 0.024371397, 0.0046707275, 0.024672955, -0.014118413, -0.021588836, -0.0022017185, -0.02245239, 0.00663771, 0.007395033, -0.013933366, 0.00954021, -0.0014752371, 0.022466097, 0.014529629, 0.012747693, -0.0027585735, -0.030402564, -0.0064560897, -0.0155850835, 0.015448011, 0.024439933, -0.021643665, 0.010540835, -0.028593212, -0.007388179, -0.015434304, -0.04068296, -0.020889768, -0.0067507946, 0.028031219, 0.020505967, 0.047755875, 0.0029162061, 0.00481808, -0.0052018813, 0.014365142, 0.0058975215, 0.0015506267, -0.011747068, -0.0046056183, -0.005568549, -0.014104706, 0.0024296008, -0.014968259, 0.0039339657, -0.0042766454, 0.05227925, 0.0064595165, 0.014419971, 0.01834023, -0.0037077968, -0.004348608, -0.007395033, -0.030046176, -0.01403617, -0.01755892, -0.013330249, 0.011335852, 0.011685385, -0.010081643, -1.3268138E-4, 0.03350039, -0.018628081, 0.021684786, -0.02601626, 0.014940845, -0.017435554, -0.0053355265, -0.025180122, -0.006572601, -0.008498462, -0.008806874, 0.0029556144, 0.005294405, -0.011253608, 0.016681658, 0.0318007, -0.02504305, -0.024508469, -0.004338328, 0.007984443, -0.038188253, -0.030978266, -0.013604393, -0.027907854, -0.0047940924, -0.0058975215, -0.025509093, -0.0026129344, -0.04147798, -0.016805023, 6.5880216E-4, -0.02136952, 0.026194453, 0.0038380153, 0.04279387, 0.024412518, 0.019450514, -0.019724656, 0.016640536, -0.009793792, -1.9911577E-7, 0.034405064, 0.017175118, -0.030155834, 0.016558293, -0.0076074945, 0.010643639, -0.038023766, -0.036269244, 0.0029127793, 0.0013056105, -0.0034559271, -0.013556418, -0.0036632484, -0.018257987, 0.012720279, -0.018984469, -0.014803773, 0.002988169, -0.033034343, -0.009725257, 0.008347683, -0.0072990824, 0.017668577, 0.005606244, -0.010486006, 0.012864204, -0.027565174, -0.010924636, 0.0018915932, -1.7281242E-5, 0.034651794, -0.02919633, 0.020972012, 0.011555167, -0.0023353638, -0.0033411293, -0.008649241, 0.013810001, 0.031773284, 0.002306236, 0.010205008, -0.0046912883, -0.01386483, 0.03325366, 0.026756449, -0.029305987, -0.018957054, -0.021849273, -0.002049226, 0.031828113, 0.023494136, -0.009690989, -0.013803148, -0.008614973, -0.0018024964, -0.01877886, -0.017956428, 0.020821232, -0.024371397, 0.03629666, -0.0141869495, 0.012199406, -0.01755892, -0.010527127, 0.0030498514, -0.011143952, 0.014310313, -0.013714051, 0.0019909705, -0.0072099855, -0.0018230572, -0.04235524, -0.0028887917, 0.0054383306, -0.015955178, 0.0013347383, -0.017421847, 0.011692239, 0.015639912, 0.0032263314, 0.0010117625, -0.008669802, -0.020574503, 0.014639286, 0.029059257, -0.0088685565, -0.012939594, -0.013056105, 0.020848647, -0.0040436233, -0.014282899, 0.013926513, 0.011945822, 0.007018085, -0.019190077, 0.02738698, -0.004369169, -0.028373899, -0.008087247, 0.012802522, 0.029031843, 0.006202507, -0.018038671, -0.02034148, -0.013186323, -0.0063155913, 0.0401895, -0.013515296, 0.0066137225, 0.010643639, 0.015105331, 0.015146453, 0.024385104, -0.011719653, -0.017188825, 0.015338354, -0.01076015, -0.01834023, 0.0029264865, 0.013241152, 0.027661124, 0.0062573357, -1.5442014E-4, -0.031526554, -0.0076212017, -0.027578881, -0.024001302, -0.010307812, 0.029963933, 0.016229322, 0.003176643, 0.0022239927, -7.4618554E-4, 0.0014435392, 0.0217122, -0.026496012, 0.003519323, 0.025632458, 0.030292906, 0.0013544424, 0.025646165, -0.04298577, -0.013583832, -7.49184E-4, 0.018518424, 0.034158334, 0.038763955, -0.0063807, -6.1254035E-4, -0.02268541, -0.016763901, 0.008594412, 0.0065451865, 0.022603167, -0.013309688, 0.00740874, -0.0025221242, -0.0031201008, 2.6129343E-4, -0.029744618, 0.008806874, -0.003995648, 0.026290404, -0.027400687, -0.0215203, -0.006671978, -0.020286651, 0.023754572, 0.008450487, 0.012843643, -0.012877911, 0.032760203, -0.028031219, -0.006397834, 0.01491343, -0.0010545974, -0.01912154, -0.026742741, 0.0030327174, 0.027894147, -0.012905326, 0.011548313, -0.035282325, 0.0028836515, -0.012720279, 0.010527127, -0.0089370925, 0.011239902, 0.021259863, -0.036515974, 0.011767629, 5.6585023E-4, -2.8956454E-4, -0.013727758, -1.2390022E-4, -0.018312816, -0.039586384, 0.012199406, -0.008724631, -0.027455516, -0.02538573, 0.014447385, -0.013206884, -0.018477302, 0.01180875, 0.20505966, -0.016503464, -0.0035981392, 0.036954604, 0.020259237, -0.0033976715, 0.012946447, 0.031663626, -0.01624303, 0.011095976, -0.013145202, 0.021328399, -0.007915907, 0.0029504742, 0.017367018, -0.025467973, -0.005650792, -0.023836816, -0.024385104, -0.008738338, -0.018107207, -0.0038688565, 0.014228071, -0.036022514, 0.017271068, -0.006829611, -0.010294105, 0.0047529708, 0.017133996, 0.017572626, -0.011644264, -0.019601291, -0.0019310014, 0.0035433106, -0.015722156, -0.001258492, -0.0074909832, 0.015626205, 0.007000951, 0.0035039023, 0.014872309, 0.0011796757, 0.004338328, -0.006435529, 0.014762651, 0.030265491, -0.022657996, 0.0019429952, -0.018024964, 0.0146529935, -0.021725908, -0.0028648041, 0.0398057, 0.014557043, -0.007038646, 1.4339013E-4, 0.021410642, 0.0022222793, -0.0034919085, -6.540903E-4, 0.0019344282, 0.03854464, -0.02788044, 0.02778449, 0.0060894224, 0.019614998, -0.022438683, 0.0055616954, 0.018847397, -0.019628705, -6.0782855E-4, -0.023151455, -0.02337077, 0.008566998, 0.011479777, -0.014310313, 0.015639912, 0.004982566, 0.0013535857, 0.018696617, -0.04029916, -0.03780445, 0.0055616954, -0.0033085747, -0.012624329, -0.023686036, 0.038955856, -0.034350235, 7.157727E-4, -0.0161882, 0.010958904, -0.009375723, -0.00836139, 5.945497E-4, 0.009780085, -0.011705946, 0.010348934, 0.016572, -0.0115277525, 0.03673529, -0.033856776, 0.0048112264, 0.024988221, -0.0020595065, -2.1859232E-5, -0.030018762, -0.0060894224, 0.013844269, 0.011507192, 0.0029898824, -0.025152707, -0.035035595, -0.0089028245, -0.005787864, 0.020286651, 0.045315992, 0.016873559, -0.01721624, 0.021150205, -0.013905952, -0.0026129344, -0.0043623154, 0.005277271, 0.016147079, -0.0010426036, -0.020615624, -0.010540835, -0.004029916, -0.010479152, -0.026687913, 0.0010683046, -0.03193777, 0.01731219, -0.002080067, -0.016846145, -0.013282274, 0.014707822, 0.016078543, -0.015461719, 0.018792568, 0.010136472, -0.0022154257, 0.010602517, 0.01643493, 0.016064836, -0.04698827, 0.014132121, -0.0027808477, 0.004711849, -0.026578255, -0.011986944, -0.0075595193, 0.012747693, -0.01009535, 0.03007359, -0.004115586, -0.020889768, -0.043369573, -0.0318007, 0.012480403, -0.050113514, 0.0077788346, 0.011418095, 0.0012576353, -0.02576953, -0.009677282, -0.17600042, 0.012021212, 0.010671053, 0.00319035, 0.023384478, 0.001318461, 0.023000676, 0.011815604, -0.0034370797, -0.02386423, 0.02293214, 0.018806275, -0.037694793, -0.038462397, 0.006356713, -0.0048420676, -0.028839942, 0.037831865, 0.025838066, 0.0028579505, 0.020793818, -0.02479632, 0.0016354399, 0.004163561, 0.0117128, 0.00679877, 0.023302235, -0.0151190385, -0.0016345832, -0.014241777, -0.029580131, -0.018669203, 0.0023439308, 0.012733987, 0.0016988358, 0.005205308, -0.010533981, 0.008772606, -0.0016525739, 0.0030875462, 0.026290404, 0.030155834, -0.007963882, 0.0062093604, 0.022068588, 0.0050613824, 0.013028691, -0.013912805, -0.01034208, -0.006353286, -0.011328998, -0.03456955, 0.009992546, -0.0030686988, 0.013028691, 0.005054529, -0.004879762, 0.023219991, -0.01681873, 0.003553591, -0.030676708, -0.011952676, 0.028593212, -0.012295356, -0.023398185, -0.037530307, -0.008978214, -0.014378849, -0.03711909, 0.0020440859, 0.003995648, 0.0151190385, 0.040573303, 0.0066342833, 0.009601892, -0.010616224, -0.01716141, 0.013165763, 0.0028956453, 0.022891019, -0.008306561, 0.04147798, -0.022000052, -9.535069E-4, 0.0027294457, 0.022068588, 0.02851097, -0.011274169, 0.015036795, 0.00975267, -0.01584552, -0.026057381, -0.008155783, 0.0057947175, 0.0076965913, 7.975875E-4, -0.007785688, 0.0031629358, 0.01516016, 0.007813103, 0.0037009432, -0.01946422, -0.004067611, 0.021684786, 0.03081378, 0.0045473627, -0.0029247731, 0.027853025, 0.016489757, -0.0041532805, 1.19081276E-4, 0.011719653, 0.025550215, 0.030950852, -0.0155165475, 0.0043109134, 0.0049757124, -0.016928388, 0.011349559, 0.00438973, 0.0512375, 0.023576379, -0.012076041, -0.0055993902, 0.010328373, -0.01574957, -0.09874665, -1.4210508E-4, -2.1406787E-4, 0.030402564, -0.004016209, 0.024618126, -0.02963496, 0.019327149, 0.015708448, 0.034459893, -4.0993086E-4, -0.043068014, 0.0132548595, -0.020218115, 0.008368243, 0.0036289804, -0.013158909, -4.7675346E-4, -0.009176969, 0.019381978, -0.0013835703, -0.013439907, 0.005157333, -0.010876661, -0.0023010958, 0.009882889, -0.035145253, 0.01721624, 0.021040548, 0.008546437, 0.017915307, -0.011589435, 0.02655084, -0.030868609, -0.025426852, -0.024864856, -0.016640536, -0.02851097, 0.009930864, -0.045507893, -0.010862954, 0.012411867, -0.005325246, -0.031224996, 1.2796954E-4, -9.355162E-4, -0.016709073, 0.01706546, -0.010369495, -0.0217122, -0.02352155, -0.0066274297, -0.02112279, -0.016201908, 0.027962683, 0.005530854, 0.0056370846, -0.003670102, -0.033418145, -0.011479777, 0.011904701, -4.1357183E-4, -0.011705946, 0.008683509, -0.01205548, -0.016873559, -0.006774782, -0.02201376, 0.033993848, -0.028867356, -0.0120280655, 0.042519726, -0.013069812, -0.011048001, -0.016270444, -0.005938643, -0.020163286, -0.01472153, 0.023987595, -0.018134622, 0.005462318, -0.01917637, 0.03574837, 0.0036392608, -0.007305936, -7.050639E-4, 0.027153958, 0.022466097, 0.005088797, -0.03300693, -0.0026437757, 0.017188825, 0.007634909, 0.001367293, -0.006092849, 0.011418095, 0.014968259, -0.004787239, -0.030704122, 0.0054074894, 0.010904076, -0.017942721, -0.069906704, 0.017367018, -0.009807499, -0.015379475, 0.002457015, -0.00344222, 0.012535232, -0.011760775, -0.004506241, 0.008601266, -0.0068912935, 0.02176703, -0.0011299871, 0.011143952, -0.015818106, -0.0029658948, 0.0023696318, -0.016119665, 0.008861703, 0.005924936, -0.016051129, 0.016256737, 0.031142753, 0.003927112, -0.010348934, 0.016613122, 8.8668434E-4, 0.020876061, -0.0050271144, -0.031416897, 0.028757699, -0.014611872, -0.0045130947, -0.003755772, 0.004595338, -0.020917183, -0.008594412, 0.0015780411, 0.03188294, 0.0049585784, -0.009917157, -0.02601626, -0.0073676184, -0.02376828, 0.0065451865, 0.012590061, -0.011801897, -0.0033377025, 0.018696617, 0.011692239, 0.0127614, -3.1055367E-4, -0.0064115413, -0.038983267, -0.005606244, -0.011699093, 0.022657996, 0.0049997, 0.0026472025, -0.0034302261, 0.008491608, 0.035775784, 0.02268541, -0.032897275, 0.012405014, -0.007950175, 0.007909053, -0.012411867, -0.012864204, -0.060421325, 6.163955E-4, -0.004348608, 0.012343331, 0.0127545465, 0.005500013, 0.0022017185, -0.0029230597, 0.009930864, -0.002434741, 0.009793792, -0.0013981342, -0.0026574829, -0.019546462, 0.015818106, 0.007004378, 0.0127545465, -0.016873559, -3.8444405E-4, -0.012994423, 0.009670428, -0.006915281, -0.0013201744, 0.009889742, -0.0026934643, -5.487162E-4, 0.033308487, -0.003476488, -0.003056705, -0.004896896, 0.017133996, -0.010109058, 0.007840517, -0.007340204, -0.010472299, 0.0054211966, 0.018408766, -0.018038671, -0.02308292, -0.0031475152, 0.024275446, 0.015776984, 0.040353987, -0.011822457, 0.015571376, -0.02679757, 0.004029916, -0.031581383, -0.011651117, -0.005534281, 0.019094126, 0.023891645, 0.0017956428, 0.03810601, -0.01927232, 0.02797639, -0.010773857, 0.017271068, 0.0014846608, -0.006983817, 0.002186298, 4.711849E-4, 0.018751446, -0.0035775783, 0.012548939, 0.01662683, -0.00189502, 0.0057570226, 0.01834023, -0.018902225, 0.07325126, 0.028538384, -0.001869319, 0.011897847, -0.02332965, 0.0034799147, 0.017243654, -9.209523E-4, -0.012829936, 0.008272293, 0.006253909, -0.042327825, 0.0036461144, -0.013083519, 0.004214963, -5.6756363E-4, -0.0081763435, 0.028675456, -0.0088685565, -0.017915307, -0.0032897273, -0.020766404, 0.037749622, 0.0032434654, -0.017038045, 0.009944571, 0.017284775, -0.014351435, -0.011068562, -6.4166816E-4, -0.0018401912, -0.0111302445, -0.034213163, -0.0015634772, 0.0033753973, -0.018737739, -0.0039202585, 0.009204383, 0.035419397, 0.016613122, -0.003370257, -0.01818945, -0.016270444, -0.013734612, 0.026400061, 0.0065246257, -0.004996273, -0.029799446, -0.025111586 ], + "id" : "6270d39e-3467-4d8a-ae56-58cdca16daa4", + "metadata" : { + "source" : "movies.csv" + } + }, + "8f574020-95a1-4442-a06d-1e42b0dfd8b8" : { + "text" : "915,6364,Nicolas Cage-Emma Stone-Ryan Reynolds-Catherine Keener-Cloris Leachman-Clark Duke-Chris Sanders-Randy Thom,parent child relationship-stone age-daughter-father-prehistoric-ancient world-family-cavemen-aftercreditsstinger-duringcreditsstinger-pets,/p7lJkqHlK01nr0zNacunUFI5Qxy.jpg,/bNgqt819qpHcszjCzLCG5y16ldF.jpg,57800-46195-76492-80321-82690-62211-93456-81188-953-8355-62177-77950-10527-10191-13053-172385-22794-109451-9502-20352-73723\r\n45243,The Hangover Part II,Comedy,en,The Hangover crew heads to Thailand for Stu's wedding. After the disaster of a bachelor party in Las Vegas last year Stu is playing it safe with a mellow pre-wedding brunch. However nothing goes as planned and Bangkok is the perfect setting for another adventure with the rowdy group.,66.849,Warner Bros. Pictures-Legendary Pictures-Green Hat Films,5/25/11,80000000,586764305,102,Released,The Wolfpack Is Back,6.456,9370,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Ken Jeong-Paul Giamatti-Mike Tyson-Jeffrey Tambor-Mason Lee-Jamie Chung-Sasha Barrese-Gillian Vigman-Aroon Seeboonruang-Nirut Sirijanya-Yasmin Lee-Nick Cassavetes-Sondra Currie-Bryan Callen-Brody Stevens-Michael Berry Jr.-Andrew Howard-Penpak Sirikul-Manel Soler-Todd Phillips-Crystal the Monkey-Jessica Lee-Aedin Mincks,stag night-undercover cop-memory loss-drugs,/jrP9zmdSUpOzzUXpEqPqg3dryUr.jpg,/zzcBf3kVmhJTANaFCJXiltsy64o.jpg,109439-18785-72105-310-41154-71552-1593-41733-64688-953-14161-10528-1858-51876-58574-1865-38356-27578-38365-6479-425\r\n6479,I Am Legend,Drama-Science Fiction-Thriller,en,Robert Neville is a scientist who was unable to stop the spread of the terrible virus that was incurable and man-made. Immune Neville is now the last human survivor in what is left of New York City and perhaps the world. For three years Neville has faithfully sent out daily radio messages desperate to find any other survivors who might be out there. But he is not alone.,76.978,Village Roadshow Pictures-Warner Bros. Pictures-Original Film-Weed Road Pictures-Heyday Films-Overbrook Entertainment,12/12/07,150000000,585410052,101,Released,The last man on Earth is not alone,7.194,14059,Will Smith-Alice Braga-Charlie Tahan-Dash Mihok-Salli Richardson-Whitfield-Willow Smith-Emma Thompson-Darrell Foster-Joanna Numata-Samuel Glen-Pedro Mojica-Marin Ireland-Alexander DiPersia-Raul Torres-April Grace-James McCauley-Anthony C.", + "embedding" : [ 0.0129323825, -0.022005364, -0.011612061, -0.02643352, -0.008260475, 0.025756432, 0.023982462, 0.0057213944, -0.024754342, -0.01859284, 0.0065135877, 0.031498138, 0.023034537, 0.009634964, 0.016033446, 0.018376172, 0.026027268, -0.026325185, 0.0030807508, -0.017455332, -0.0026575709, -0.0067167142, -0.018010544, 0.0045906575, 0.0111313285, 0.008734437, 0.027598111, -0.017279288, -0.011957376, -0.0019635556, 0.001894154, -0.018267836, -0.0069266115, -0.03772735, -0.0284377, 1.7509075E-4, 0.004756544, -0.022465784, 0.041762795, 0.0076104705, 0.0021446766, -0.0021159004, -0.020244934, -0.0023393393, -0.012559985, 0.018782424, -0.005112015, -0.01982514, -0.025553305, 0.015573027, 0.021734528, 0.022181407, -0.02651477, -0.007461511, -0.015207399, 0.004709148, -0.021842862, 0.011991231, 0.014394893, 5.2770553E-4, 0.008822458, -0.013839681, -0.026419979, -0.02559393, -0.028546035, -0.0065203584, 0.007109425, -0.014977189, 0.005149255, 0.028139781, 0.029791877, 0.004607585, 0.018145962, 0.0018670704, 0.00722453, -0.026447061, -0.029927295, 0.0023461103, 8.946027E-4, 0.0109959105, 0.022398075, -0.0085109975, -0.013575616, 0.010786014, 0.022763703, 0.013325094, -0.008524539, 0.010962057, -0.028031448, 0.0029131717, 0.0058500413, 0.038783606, -0.024781425, 0.012350087, 0.007535991, 0.020881398, -0.023806417, 0.016859494, -0.013744889, -0.019622013, -0.0075969286, 3.630885E-4, -0.0035919524, -0.014828229, 0.008165683, 0.0015683053, -0.010738618, -0.013162592, 0.011232892, 0.008883396, -4.157744E-4, 0.0026118674, 0.024700174, -0.04617741, -0.0017621218, -0.015464692, 0.019148052, -0.008524539, -0.02511997, -0.008978188, 0.03889194, 0.017198037, 0.01229592, -0.043062802, 0.033935655, 0.043306556, -0.009817777, -0.023115788, 0.0019381647, -0.0047430024, 0.020177227, -0.026799148, 0.031796057, 0.02627102, -0.029385624, 0.04195238, -0.018525131, -0.0076984917, -0.020610562, -0.008714124, 0.032933567, 0.030496048, -0.035479415, -0.008409434, -0.02005535, 0.013325094, 0.019324094, -0.014543853, 0.02705644, -7.892308E-4, 0.017103245, 0.022154324, 0.02535018, 0.021111608, 0.018457422, 0.0019533993, -0.005501341, 0.008659957, 0.011483414, -0.031633556, -0.021341817, -0.003703672, -0.024442881, -0.0021903801, 0.0063984827, 0.017956376, 0.008016723, -0.01568136, -0.012025085, -0.012776652, -0.013778743, 0.02906062, -0.007982869, 0.011368309, -0.013108426, 0.019391803, -9.2676433E-4, 9.953196E-4, -0.034639828, -0.031443972, -0.001494672, 0.0027083524, 0.041248206, 0.040381536, -0.0066016093, -4.2148735E-4, 0.016954286, -0.014570937, -5.0823926E-4, 0.00499691, -0.015315733, 0.022804327, 0.0013871843, 0.0018602996, -0.6296378, 0.0027997594, -0.009343816, 0.015329275, 0.02605435, 0.022452243, 0.0024916842, 0.0058737393, -0.028952288, -0.00332281, -0.035154413, 0.01898555, 0.013440199, -9.216862E-4, -0.015559485, -0.014652187, -0.012587068, -0.020786606, 0.005883896, -0.0036867447, -0.022804327, 0.014638645, 0.009722985, -0.005772176, 0.015573027, 0.0026101747, -0.005095088, -0.025296012, 0.0069266115, -0.00464821, -0.011950606, 0.040002365, 0.007678179, 0.012025085, 0.0373211, -0.008883396, -4.62959E-4, 0.047287833, 0.008470372, 0.030468965, -0.028221032, -0.009242252, 0.006469577, -0.004157321, -0.024307463, 0.014286559, -0.0066422345, 0.0049461285, 0.0022293127, -0.015627194, -0.004079456, 0.011666228, -0.0077188043, -0.013501137, -0.014977189, -0.015058439, 0.010738618, -0.040760703, 0.02728665, -0.008084432, -0.018064711, -0.004827638, 0.010278198, 0.014124058, -0.01775325, 0.027232483, -0.02113869, -0.010549033, 0.00960111, -0.038241938, 0.019080343, 0.011977688, -0.015735528, 0.009052668, 0.012851132, 0.017170954, 0.027760612, 0.0074276566, -0.008341726, 0.020624103, -0.016981369, -0.011733937, 0.0024916842, 0.017076163, 0.013629784, -0.010291739, -0.042683635, 5.602904E-4, 0.006347701, 2.4925306E-4, 0.011212579, 0.012878216, -0.009235482, 0.008348497, -0.015153232, -0.0048310235, -0.0152344825, 0.007624012, 0.04371281, -0.07485886, 0.0028606972, -0.023698084, 0.01390739, -0.02020431, 0.010061529, 0.00657114, -0.0054607154, -0.015180316, 0.026541853, -0.003376977, -0.0061276476, 0.0037476828, -0.01859284, 0.004424771, -0.030062713, -0.024226213, 0.024524132, 0.018633464, 0.01283082, -0.008849542, 0.0013533299, 0.0068453606, 0.009716215, -0.040029448, 0.025214761, 0.023698084, -0.011320913, -0.00637817, 0.007867764, -0.006662547, 0.0028827027, -0.004495865, 0.014083433, -0.020353269, 0.013020405, 0.008280788, 0.008402663, -0.018322004, 0.0068859863, 0.006026084, -0.026677271, -0.004363833, -0.0074953656, -0.016019905, -0.013094884, -0.024348088, -0.014801146, 3.7409118E-4, -0.015071982, -0.02121994, 0.0012610767, 0.014462602, -0.015261566, 0.015803237, 0.010115696, 0.009411525, -0.019486595, -0.014056349, 0.004103154, -0.030685633, 0.009932882, 0.02889812, -0.0017468873, -0.019405345, 0.0129323825, 0.001071492, -0.026907481, 0.030685633, 0.010880806, -0.016006364, 4.976598E-4, -0.0110636195, 4.67085E-5, 0.0103120515, -0.021490777, 0.018173045, -0.01091466, 0.0069807786, -0.008571936, 0.005501341, -0.0014752058, -0.010941744, -0.025539763, -0.015126148, 0.031552307, 0.015938655, 0.029683543, -0.01083341, -0.003896642, 0.005511497, -0.018999092, -0.0010300203, -0.0027912958, -0.006056553, 0.014665728, 0.0043943017, 0.010325594, 0.0011713625, -0.0012458421, 0.012695402, 0.028464785, 0.012201128, 0.0038357042, -0.0038560168, -0.001600467, -0.020150142, -0.004143779, -0.0052982145, 0.01421885, -0.0069807786, 0.018850133, -0.003872944, -0.01583032, -0.0067945793, 6.918994E-4, 0.019310553, -0.012925612, 0.015004273, -0.009560484, 0.008307871, -0.0056198314, -0.004441698, 0.014963647, 0.006621922, -0.023278289, 0.016737618, 0.011557894, -0.016263656, 0.006825048, -0.004231801, 0.006855517, 0.015261566, 0.0013795671, 0.017509498, 0.002324105, -0.010846952, 0.02428038, -0.023305373, 0.03152522, -0.006087022, -0.0055148825, 0.028762704, 0.03626484, 0.013230301, 0.017726166, -0.015315733, 0.023901211, 0.016263656, -0.0052677453, 0.045527406, -0.012113106, 0.0401107, -0.006324003, 0.023156414, -0.0063747847, 1.5668242E-4, -0.009817777, 0.016358448, 0.040219035, 0.022073073, 0.016696993, -0.031552307, 0.018484505, 0.007793284, 0.017739708, 0.0060904077, -0.02289912, -0.0071568214, -0.011232892, -0.017306373, -0.018064711, -0.01836263, -0.0012246831, 1.2906991E-4, -0.010230801, -0.017374082, 0.019703263, -3.4870039E-4, 0.02197828, 0.01490948, 0.0069740075, -0.025444971, 0.024307463, 0.03450441, -0.014191767, -0.014232392, -0.010962057, -0.00999382, -0.027489778, -0.018633464, 0.0033143463, 0.040354453, -0.038919024, -0.0033803624, -0.0101292385, 0.010325594, 0.03103772, -0.02222203, 0.014124058, 0.0050070668, 0.01344697, 0.017536582, 0.0035140873, 0.0015412219, 0.0028674682, -0.017631374, 0.0027845248, -0.022398075, -0.004763315, 0.016087614, -0.01352145, 0.0037375265, -0.034721076, 0.013081342, -0.009966737, -0.008314642, -0.006547442, -0.004296124, -0.0011375081, -0.020299101, -0.02743561, -0.035912752, -0.036291923, -0.016832411, 0.08785895, 0.04119404, 0.0108130975, 0.012945925, 0.0072854683, -0.016019905, -0.017116787, 0.0076104705, -0.0031586161, -0.0010452548, 0.018457422, -0.0034616129, 0.019405345, 0.009689131, 0.0065372856, 0.004448469, 0.011693312, -0.018173045, -0.0122485235, -0.008531311, -0.028843954, -0.024673091, 0.016656367, 0.030902302, 0.021490777, -0.016304282, 0.025065802, 0.018850133, -0.0018145961, 0.00699432, -0.011869354, 0.01291207, -0.011266747, 0.008450059, 0.0053388397, 0.002928406, 0.027137691, -0.0021632966, 0.02566164, -0.005585977, 0.010034446, 0.004851336, 0.0026761908, -0.007928702, 3.05536E-4, -0.02059702, 7.955785E-4, 0.013020405, 0.029900212, -0.034910664, 0.03125439, 0.009418296, -0.008754749, -0.00968236, 0.012539672, 0.0039948197, 0.011185495, -0.019337637, -0.025079343, 0.013771973, -0.005101859, -0.038594022, 0.011043307, -0.016250115, -0.0131151965, -0.03450441, -0.009316732, 0.0034870037, -0.008389122, -0.026392894, 0.01383291, -0.02043452, 0.0035174727, -0.012796965, 0.009235482, 0.011347997, 0.023738708, 0.0038492458, -0.0011112709, 0.0018213671, -0.03157939, -0.026988732, 0.0025373877, -0.0189043, -0.0076849503, 0.0012263758, 0.0011358153, 0.014042808, -0.014083433, 0.013880306, 0.0051661823, -0.0026998888, -0.027408527, -0.009242252, 0.024199128, 0.008003182, -0.003419295, 0.014814688, -0.013399574, -0.0035445562, -9.225326E-4, -0.015112607, -0.0050443066, -0.005440403, -0.025214761, -0.014570937, -0.005254204, 0.01759075, -0.03542525, -0.015207399, -0.0017384237, -0.017861584, -0.0025069187, 0.0031179907, 0.0041539357, 0.013277698, 0.0011180417, 0.015559485, -0.0063510863, -0.0066354633, 0.0023681156, -0.0072177593, 0.01798346, 0.0378086, -0.022343908, 0.008680269, -0.01652095, -0.024862675, 0.013589159, 0.036698177, 0.0044213855, 0.017861584, -0.004539876, -0.022574117, -0.024835592, -0.030848134, -0.0015530708, 6.770881E-4, 0.006733641, 0.021233482, -0.014273018, -6.825894E-4, 0.004780242, 0.0032940337, -0.009580797, -0.032771066, 0.018254295, -0.018403254, 0.021395985, 0.027232483, -0.008815687, -0.011022994, -0.02174807, 0.0061987415, -0.018403254, -0.029033538, -0.009919341, 0.010779243, 0.020380352, 0.0038323188, 0.027950197, 0.0026965034, 0.041221123, 0.014110516, 0.012201128, 0.026988732, -0.010352678, -0.0023833502, -0.029033538, 0.0031450742, -4.2529596E-4, 0.007163592, 0.013379261, 0.0058737393, -0.0069875494, 0.0379711, 0.0049359724, 0.008687041, -0.010061529, -0.03618359, -0.029927295, 0.0023511886, -0.029466875, 0.0055825915, -0.015721986, -0.0012306076, 0.01798346, -0.0035344, -0.011821958, -0.019324094, 0.03228356, -0.0010054759, 0.015545943, -0.028221032, 0.020502228, -0.020326186, 0.0043672184, -0.0074411985, -0.02005535, -0.017198037, -0.0073125516, 0.03111897, 0.005365923, -0.011056849, -0.0035174727, 0.023887668, -0.012817278, -0.006787808, 0.032716896, -0.010799555, -0.008246933, -0.018755341, 0.007522449, -0.02973771, -0.01352145, -0.0010486402, -0.023427248, 0.006063324, -0.006825048, -0.025688723, 0.019012634, -0.004126852, 0.04365864, -0.0026846544, 0.046746165, 0.028681451, 0.013541762, -0.02222203, 0.013562075, 0.009479234, -0.0031416889, 0.021084525, 0.04387531, 0.01568136, -0.0067945793, -0.0013169363, -0.0055656643, -0.037077345, -0.032175228, 0.021815779, 0.026243934, 0.0027320506, -0.022127239, -0.015058439, -0.013514679, -0.005731551, -0.005860198, -0.0022411617, 0.001304241, -0.025946015, -0.014083433, 0.0039135693, -0.009865174, 0.0019398575, -0.0050070668, -0.018227212, 0.028681451, -0.023792876, 0.030143963, -0.0020752752, -0.0025932475, 0.04165446, -0.02789603, -0.005792489, 0.013453741, 0.004617741, 0.00791516, -0.0045229485, -0.009689131, 0.027151233, -0.01951368, 0.006699787, 0.002693118, -0.008416206, 0.014164683, 0.014083433, -0.017875126, -0.020068891, -0.027422069, -0.010576116, 0.040381536, 0.011530811, 0.004025289, 0.010576116, -0.024483506, 0.004211488, -0.009174544, -0.01329801, -4.3672184E-4, -0.033556487, 0.025918933, -0.0091271475, 0.016263656, -0.007292239, 0.0030790581, 0.006462806, -0.007549532, 0.015329275, -0.013209989, -0.0027743685, -0.009161002, -0.009885486, -0.03512733, -0.021856405, 1.1372964E-4, -0.013656867, -0.0012796965, -0.02620331, 0.0025119968, 0.007265155, -0.0059143645, -0.0144355185, 0.00676411, -0.023738708, 0.0025458513, 0.024903301, -0.010569345, -0.02781478, -0.00284377, 0.02682623, 0.010230801, 0.005088317, 0.0093776705, 0.014381352, 0.02766582, -0.02097619, 0.020123059, -0.0063273883, -0.009276107, 2.4523286E-4, 0.0013127045, 0.04880451, 0.024524132, -0.0048310235, -0.025756432, 3.0638237E-4, -0.0072719264, 0.05386913, -0.009282878, 3.3621656E-4, 0.04617741, 0.01913451, 0.03997528, 0.027625196, 1.4366963E-4, -0.018091794, -1.1965416E-4, -0.008876625, -0.0379711, -0.014408435, 0.005802645, 0.005291444, 0.01398864, 0.009384441, -0.031958558, -0.005680769, -0.02312933, -0.025702264, -0.016304282, 0.004218259, 0.0402732, 5.729858E-4, -0.013771973, 0.0057383217, 0.010163093, 0.018037627, -0.033096068, 0.010386531, 0.028302282, 0.014245934, 0.013453741, 0.0379711, -0.02128765, 0.010549033, 0.013209989, 0.025715806, 0.0017688926, 0.010359448, -0.014069891, 0.0014134215, 3.6372326E-4, -0.004373989, -0.0037409118, 0.004739617, 0.013738118, -0.014489685, -0.01221467, 0.012194357, 0.023048079, -0.008890167, -0.008741207, 0.018240754, -0.01990639, 0.010393303, -0.0124313375, -0.011402164, -8.2520116E-4, -0.024754342, 0.023860585, 0.028952288, -0.011199038, 0.03374607, 0.013819369, -0.0041911756, 0.014083433, -0.0063206176, -0.0047667003, -0.004827638, -0.013731346, 0.021531401, 0.011232892, -0.02674498, 0.016696993, -0.02927729, 0.00906621, 0.011625603, -0.00660838, 0.003588567, 0.035154413, 0.009905799, -0.050835777, 0.01291207, -0.017563665, -0.004478938, -0.024077253, -0.016480325, -0.033339817, -0.014381352, -0.011801646, 5.873739E-4, -0.035235666, -0.017333455, 0.023142872, 7.2279153E-4, -0.007637554, 0.013609471, 0.18535964, 0.0033718988, 1.2272222E-4, 0.03713151, 0.012614151, -0.009018813, 0.026419979, 0.025160594, -0.001107039, 0.009208398, -0.013379261, 0.006929997, 0.003703672, 0.0029571822, 0.017076163, -0.026338728, -0.031010635, -0.011828729, -0.016669909, -0.04303572, 0.0062393667, -0.0056570712, -6.072634E-4, -0.030387715, 0.021707445, -0.006940153, -0.026609562, -0.006324003, 0.022966828, 0.008064119, -0.007894848, -0.029412707, 0.004854722, 6.711636E-4, -0.02689394, -0.011923522, -0.012607381, 0.010968828, -0.002310563, 0.0044857087, 0.0033211173, -0.009282878, -0.004979983, 0.010386531, 0.009574026, 0.01943243, -0.0030164276, 0.008294329, -0.033448152, 0.0032093977, -0.040760703, 0.0055148825, -0.005938063, 0.033502318, -0.007353177, -0.0048614927, -0.0059279064, 0.005795874, -0.019297011, 0.009513088, 0.013859994, 0.03588567, -0.01820013, 0.0018179816, 0.0019923318, 0.01836263, -0.034396075, -0.009695902, 0.018457422, -0.021165775, -0.0053354544, -0.0259731, -0.00545733, 0.004516178, -0.009106835, -0.013663638, -0.004336749, 0.012336546, 0.009871945, -0.002535695, -0.030116878, -0.010501636, 0.0014455831, -0.0042791967, -0.024117878, -0.018240754, 0.0056841546, -0.00952663, -0.013223531, -0.011740708, 7.553764E-4, -0.008043807, -0.01251936, 0.008734437, -0.0027015815, 0.0015099065, 0.005179724, 0.0056604566, -0.0013744888, -9.149153E-4, -0.035344, 0.0258106, 0.026690813, -0.005484414, -0.023901211, -0.004556803, -7.765354E-4, 0.012553213, 0.0226012, -0.005626602, -0.01583032, -0.013189676, -0.0036224213, 0.005470872, -0.008199537, 0.02520122, -0.009025585, -0.01928347, 0.024077253, -0.024402255, -0.0016300896, -0.0402732, 0.0035614835, 0.011862583, 0.011402164, -0.020393893, -0.031010635, -3.7916933E-4, 0.025106426, -0.025851224, 0.009249023, -0.025986642, 0.0113141425, 0.008497456, -0.0015412219, -0.003923726, 0.020095974, 0.010664138, 0.01352145, -0.006103949, -0.0026355656, -0.008199537, 0.013440199, 0.002686347, 0.011415705, -0.033664823, 0.003038433, 0.00372737, -0.022790786, -0.014828229, -0.030279381, -0.0013017019, 0.029087706, 0.0099464245, 0.028762704, 0.0029080934, -0.029710626, -0.04680033, -0.0047531584, 0.023752252, -0.038539857, 0.015153232, 0.0047903983, -0.0059583755, -0.021558486, -0.010393303, -0.17268455, 0.0117474785, -0.0042013316, -0.040137783, 0.016818868, 0.017360538, 0.020163683, 0.0014599712, 0.0072990097, -0.025160594, 0.015478234, -0.010894348, -0.048831593, 7.0544117E-4, 0.008612561, 0.03932528, 0.0153699005, 0.0284377, 0.029927295, -0.0056130607, 0.033096068, -0.007251614, -0.010799555, 4.2529596E-4, 0.009431837, 0.008348497, 0.024090795, -6.9570803E-4, 0.0020905095, 0.0077797426, -0.063212946, -0.0037205992, -0.007177134, 0.01160529, -0.016534492, 0.011828729, 1.9455704E-4, -0.015410526, -0.0021632966, -0.002850541, 0.023779335, 0.021233482, 0.021585569, 0.014408435, -0.0062258253, 0.030279381, 0.028789787, -0.002808223, 0.027002273, -0.020759521, -0.016845953, -0.022127239, 0.02881687, -0.0043976875, -0.0063206176, 0.016642826, -0.0019889462, 0.0037646098, 0.008653186, -0.012871445, -0.015261566, -3.5779874E-4, -0.0024053555, -0.008754749, -3.250023E-4, -0.03312315, -0.010921431, 0.024375172, -0.035560668, 0.020569937, -0.023874126, -0.015749069, 1.3626399E-4, -0.005288058, 0.01221467, -0.022154324, -0.025079343, 0.013711034, -0.0011036536, 0.0143678095, -0.0069672368, 0.042819053, -0.015925113, 0.013379261, 0.001125659, -0.009472462, 0.018335545, 0.004245342, 0.008219849, -0.0073260935, 0.018768882, -0.020989731, -0.014354268, -0.015925113, 0.017766792, -0.0024849134, 0.0036562758, 0.010650596, 0.01583032, -0.0025323096, -0.005139099, -0.0067674955, -0.016209489, 0.008565164, 0.036454424, -0.0076104705, -0.004028674, 0.014787604, 0.033204403, -6.79204E-4, 0.0061208764, -0.007407344, 0.034152325, 0.021991821, -0.014408435, 0.021531401, -0.022154324, -0.018863674, 0.0043164366, 0.014069891, 0.038783606, 0.002136213, 0.0011078854, -0.011402164, -0.0051966514, -0.024943925, -0.09793402, -0.014652187, -0.006879215, 0.039244026, -0.04149196, 0.03136272, -0.007793284, 0.028329367, -0.020475144, 0.02735436, -0.026135601, -0.028925205, 0.0060667093, 0.0022851725, 0.006669318, -0.0020041808, -0.02697519, -0.011056849, -0.037916936, 0.032933567, 0.006865673, -0.034071073, 0.0133657195, -0.024117878, -0.01828138, 0.016683452, -0.0270429, 0.007278697, 0.012221441, 0.018552214, -0.0026829615, -0.019730348, 0.0073125516, -0.033691905, -0.033068985, -0.016385533, -0.015532401, -0.008788603, 0.0101292385, -0.04988785, 0.012329775, 0.015248024, -0.0075292196, -0.0123636285, -0.0038153916, -0.010007362, -0.024564756, 0.02097619, -0.015898028, -0.014923022, -0.016696993, -0.020935565, -0.02482205, -0.0040760706, 0.01744179, 0.009722985, 0.040625285, 0.0018061325, -0.0028166866, -0.028627286, 0.009086522, -0.0070891124, -0.033610653, 0.019093884, 0.012207898, 5.560586E-4, -0.0030689018, -0.009689131, 0.012559985, -0.00542009, -0.017401164, 0.0068216627, -0.022113698, -0.006723485, -0.021531401, 0.0058500413, -0.019148052, -0.017550124, 0.016453242, -0.014801146, 0.008700582, -0.03171481, 7.634169E-4, 0.0014210386, 0.0065372856, 0.014841772, 0.016074073, 0.009282878, -0.010928202, -0.04149196, -0.005084932, 0.016602201, 0.02074598, -0.0031264543, -0.004018518, -0.00960788, -0.01928347, 0.0017451947, 0.0030333546, -0.0037679954, -0.022547035, -0.0073260935, -0.0708505, 0.03103772, -0.04119404, -0.006753954, 0.008680269, -0.0062969197, 0.009899029, -0.007800055, -4.8284847E-4, 0.010420386, 5.480182E-4, 0.021924114, -0.0025830911, 0.014286559, -0.007921931, 0.013358949, 0.010061529, 3.1992412E-4, 0.010237572, 0.0021565256, -0.029710626, 0.0053286836, 0.023169955, 0.0044620107, 0.013338636, 0.02526893, 0.0058906665, 0.0010232494, 7.4818236E-4, 0.0021040514, 0.018145962, -0.031443972, 0.014178225, -1.465261E-4, 0.0016918739, -0.025309553, -0.013541762, 0.004817482, 0.027232483, 0.0032398666, -0.00111381, -0.021720987, 0.010745388, 9.1830076E-4, -0.015898028, 0.019351179, -0.030793967, 0.017807417, 0.018037627, 0.013731346, 0.043685723, 0.0023985847, 0.012058939, -0.030008545, 0.025336636, -0.01828138, 0.053110793, 0.008734437, -0.014665728, -0.0030536675, 0.024835592, 0.0060362406, 0.031552307, -0.020786606, 0.0037442972, -0.021192858, 0.0042250296, 0.014665728, -0.016331365, -0.034721076, -0.0011408934, -0.009458921, 0.010901119, 0.042521134, 0.008084432, 0.016548034, -1.2346279E-4, -0.001464203, -0.0049292017, 0.004465396, 0.022655368, 0.0060904077, -0.017319914, 0.024551215, -0.0027675976, 0.014882397, -0.0069807786, 0.028031448, 0.009702672, 0.023562666, -0.023440791, 0.015166773, 0.028925205, 0.0027066597, -0.0057349363, 0.008734437, -0.020542853, -0.01813242, 1.3182059E-4, 0.012424567, -0.0053083706, -0.003128147, -0.017956376, -0.018349089, -0.0066794744, -0.0067742667, -0.020041808, -0.0119980015, 0.0029724168, 0.019012634, 0.037564848, 0.0040625287, 1.9646135E-4, 0.01352822, -0.029764794, 0.00461097, 9.056053E-4, -0.0092625655, -0.015708445, 0.03902736, 0.024794966, 0.003238174, 0.043739893, -0.009323503, 0.0568754, 0.022181407, 0.01782096, -0.024172045, 0.008334954, -0.0199741, -0.004035445, -0.013257385, -0.02981896, 0.007881305, -0.010887577, 0.0016224724, -0.006814892, 0.017644916, -0.019418888, 0.079246394, -9.3099615E-4, -0.0124990465, 0.017793875, -0.016615743, 0.012397483, 0.005112015, 0.013237072, -0.010339135, -0.0067742667, 0.001412575, -0.030008545, 0.024334546, -0.03588567, -0.004323208, -0.00545733, 3.332543E-4, 0.020610562, -0.0035682544, -0.028952288, -0.007278697, -0.015383442, 0.016764702, -0.0067133284, -0.014354268, -0.003933882, 0.02582414, -0.012844361, -0.002645722, -0.033068985, 0.01221467, -0.02321058, 0.005772176, 0.021003272, 0.027868947, -0.00898496, -0.003316039, 0.014056349, 0.014584478, 0.017658457, -0.012356858, -0.0018569141, -0.03182314, -0.014557394, 0.022723077, -0.0075563034, -0.008158912, -0.035858586, -0.023102246 ], + "id" : "8f574020-95a1-4442-a06d-1e42b0dfd8b8", + "metadata" : { + "source" : "movies.csv" + } + }, + "220dcebd-c8b2-4c68-b0b7-607a411267e8" : { + "text" : "Lee Ermey-Jodi Benson-Jonathan Harris-Joe Ranft-Andrew Stanton-Jeff Pidgeon-Jack Angel-Bob Bergen-Mary Kay Bergman-Sheryl Bernstein-Rodger Bumpass-Corey Burton-Rachel Davey-Debi Derryberry-Jessica Evans-Bill Farmer-Pat Fraley-Jess Harnell-John Lasseter-Nicolette Little-Sherry Lynn-Mickie McGowan-Phil Proctor-Jan Rabson-Carly Schroeder-Madylin Sweeten-Hannah Unkrich-Lee Unkrich-Andi Peters-Dave Foley-Frank Welker,friendship-airplane-museum-prosecution-identity crisis-flea market-collector-sequel-buddy-rescue team-garage sale-duringcreditsstinger-toy comes to life-personification-inanimate objects come to life,/2MFIhZAW0CVlEQrFyqwa4U6zqJP.jpg,/91qfG6VaxRsCh1SbIi1w2vxknsL.jpg,862-10193-585-808-9806-12-2062-920-14160-9487-62211-49013-10681-809-425-953-950-810-62177-38757-8587\r\n10191,How to Train Your Dragon,Fantasy-Adventure-Animation-Family,en,As the son of a Viking leader on the cusp of manhood shy Hiccup Horrendous Haddock III faces a rite of passage: he must kill a dragon to prove his warrior mettle. But after downing a feared dragon he realizes that he no longer wants to destroy it and instead befriends the beast ��� which he names Toothless ��� much to the chagrin of his warrior father.,72.156,DreamWorks Animation,3/18/10,165000000,494879471,98,Released,One adventure will change two worlds,7.8,11603,Jay Baruchel-Gerard Butler-Craig Ferguson-America Ferrera-Jonah Hill-Christopher Mintz-Plasse-T.J. Miller-Kristen Wiig-David Tennant-Ashley Jensen-Robin Atkin Downes-Philip McGrade-Kieron Elliott,flying-based on novel or book-blacksmith-arena-island-ship-training-village-forest-viking-friendship-ignorance-flight-nest-dragon-battle-combat-well-warrior-pets,/ygGmAO60t8GyqUo9xYeYxSZAR3b.jpg,/aH9KWmXFMamXkHMgLjnQmSYjScL.jpg,82702-9502-38757-20352-10193-585-10681-82690-953-12-62177-920-425-9806-14160-8587-2062-166428-8355-48649-812\r\n664,Twister,Action-Adventure-Drama,en,An unprecedented series of violent tornadoes is sweeping across Oklahoma. Tornado chasers headed by Dr. Jo Harding attempt to release a groundbreaking device that will allow them to track them and create a more advanced warning system. They are joined by Jo's soon to be ex-husband Bill a former tornado chaser himself and his girlfriend Melissa.,24.07,Universal Pictures-Amblin Entertainment-Warner Bros. Pictures-Constant c Productions-Twister Productions,5/10/96,92000000,494471524,113,Released,Don't breathe. Don't look back.,6.", + "embedding" : [ -0.0040631513, -0.04257801, -0.020431457, -0.029973397, -0.009276507, 0.034002516, 0.0033927653, -0.019750861, -0.017899644, -0.030545095, 0.02324912, 0.021901542, 0.009657641, -0.0032991834, 0.006050488, 0.015612845, 0.021915153, -0.011188979, 0.009814178, -0.028829997, -0.0037194507, -0.0106785325, -0.025168397, 0.016279828, 0.024705593, 0.012468497, 0.036561552, -0.0016989348, -0.013482584, 0.0035424961, 0.020690084, 0.010174893, 0.008139914, -0.0163615, -0.03302246, -0.011604141, 0.008425764, -0.035445377, 0.03846722, -0.008636748, 0.018389672, 0.005267804, -0.01593953, -0.010930353, -0.019641967, -0.0013263092, 0.016484007, -0.004505538, -0.002630499, 0.014945863, 0.02541341, 0.021915153, -0.015735352, -0.03631654, 0.0028891251, 0.018484956, -0.012638646, 0.00990946, 0.010746593, 0.00925609, 0.0031239302, -0.0069386642, -0.028149402, -0.005519624, -0.0077315574, -0.0036616002, -0.011393158, -0.029483369, 0.008221585, 0.012693093, 0.03250521, 0.007615856, 0.017681854, -0.014033865, 0.012910884, -0.036207646, -0.002882319, -0.014796131, -0.018117433, 0.005257595, 0.020254502, -0.004097181, -0.027986059, 0.013196734, 0.003370646, 0.004461299, -0.015190876, 0.011005218, -0.03245076, 0.015517562, 0.0033298102, 0.05066348, -0.015109206, 0.0075477967, 0.016320664, 0.01148844, -0.013782045, 0.020826202, -0.007901706, -0.041516285, -0.0045599854, -0.001320354, -0.009065523, -0.0057476233, 3.1264826E-5, -0.0030643782, 0.008997464, -0.01679708, 0.027223794, -7.08244E-4, 0.003692227, -0.010453937, 5.6574447E-4, -0.037133254, -0.010372265, -0.020907873, 0.028339969, -0.0106785325, -0.008493823, -0.012679482, 0.034792006, 0.032069627, 0.007969765, -0.03509147, 0.03416586, 0.034193084, -2.9903636E-4, 0.0011587127, -0.009269701, 3.6220407E-4, 0.029646711, 0.002169396, 0.030327305, -0.01054922, -0.031606823, 0.051861327, -0.02863943, -0.0022970075, -0.014945863, -0.01316951, 0.023371626, 0.019056655, -0.019029431, -0.035772063, -0.024215564, 0.008738837, 0.012767959, -0.0061117415, -0.0074729314, -0.003814734, 0.014197208, 0.011651783, -0.002497783, 0.011896797, 0.0074457075, -0.0026117826, -0.015122817, -0.01263184, -0.019995876, -0.018934147, -0.0017644421, -0.018457731, 0.016252605, -0.012141812, 0.014265267, 0.01966919, 0.016769856, -0.02146596, 0.009936685, 0.00886815, -0.0074661253, 0.039420053, -0.035200365, 0.018267166, -0.011325098, 0.01058325, -0.004747149, -0.01263184, -0.03114402, -0.023004105, 0.0042469115, -0.008133108, 0.020063935, 0.037841074, -0.0073300065, 4.3685682E-4, 0.0044374783, -0.023929713, -0.002431425, -0.03179739, 0.0021710976, 0.016007591, 0.01076701, -0.00619001, -0.6359478, -0.025467858, 0.017028483, -0.011059666, 0.018920537, 0.007772393, -0.011937633, -0.0101544745, -0.031688496, -0.014551117, -0.021697363, 0.013918164, 0.019723639, -0.009024687, -0.018253554, 0.009773342, 0.004879865, -0.027101286, 0.021670138, 8.839225E-4, -0.03596263, 0.019002208, 0.02318106, -0.0041073896, 0.015953142, -0.011679008, -0.011039248, -0.0133873, 0.01592592, 0.0073300065, -0.01852579, 0.025603978, 0.01263184, 7.907661E-4, 0.034410875, 0.0047539547, -0.0063737705, 0.04078124, 0.019083878, 0.011713037, -0.016429558, -0.006976097, 0.023671089, 0.016565679, -0.009678058, 0.018784417, -0.0012786675, 0.0025182008, -3.2783535E-6, -8.4010925E-4, -0.008092272, -0.006989709, 4.0346512E-4, 0.0011000114, -0.0074661253, -0.0053460724, 0.0038998083, -0.03582651, 0.02806773, 0.007595438, -0.008282839, 0.045490958, -0.0044238665, 0.028367192, -0.005676161, 0.027713822, -0.01073298, -0.012788377, 0.023113001, -0.039801184, 0.0056115044, 0.013026585, -0.012992555, 4.7556564E-4, -0.010508385, 0.020281726, 0.029265577, -0.001048116, 0.0044408813, 0.014455834, -0.0047539547, 0.0015815322, 0.0052065505, 0.014333327, 0.0256312, 0.0074457075, -0.015531174, 0.014129149, 0.012271125, -0.008745643, -0.0049002827, 0.024365295, 0.0012761153, -1.7557219E-4, -0.011978469, -0.01851218, -0.010467549, -0.0035697198, 0.032831896, -0.062342487, -0.01180832, -0.022269063, 0.025508694, -0.017246272, -0.0067072622, 0.010467549, -0.016729021, -0.025753709, 0.026216513, 0.0069284556, -0.016021201, -0.0037568836, -0.01981892, -0.014047477, -7.707736E-4, -0.030735662, 0.015694518, 0.025603978, -0.0053971168, -0.02044507, -0.0066153817, -0.008636748, 0.02217378, -0.009671252, 0.012992555, 0.02756409, -0.0044442844, 0.0074525136, 0.002155784, 0.022282675, 0.013115062, -0.0042264936, 0.010746593, -0.016606513, 0.0016759648, 0.012216677, 0.020730918, -0.011073278, 0.03087178, -0.0133873, -0.0029963187, 0.0069965147, 0.0032021988, 0.0038623756, -0.012107782, -0.009487492, -0.01866191, 0.011243426, -0.009133583, -0.024746427, -0.012693093, 0.005152103, -0.00394745, 0.025154784, 0.013829687, 0.00445109, -0.04579042, -0.01515004, 0.0012539959, -0.01966919, 0.016116485, 0.017423227, -0.016266216, -0.017423227, 0.015204488, -0.010106833, -0.019764474, -0.003685421, 7.363185E-4, -0.019696414, 0.002504589, -0.0071530514, -0.0037943162, 0.017246272, -0.026529586, 0.02225545, -0.005050014, 0.024773652, -0.007336812, -0.005172521, -0.0038895993, 0.0068229632, -0.020798977, 0.0017593376, 0.027142122, 0.004352404, 0.018416896, -0.016769856, -0.0064078, 0.02168375, -0.029537816, 0.007003321, -0.005145297, -0.015817024, 0.001011534, -7.34298E-5, 0.0044136574, 0.011046054, -0.0048458353, 0.012277931, 0.045518182, 0.014823356, 0.017749913, -0.0078268405, -0.008704808, -0.0236847, -0.0021676945, -0.026720153, 0.0033791533, 0.0052065505, 0.01108689, -0.0030167366, -0.0023735745, 0.0042945533, 0.0024654549, 0.025304515, -0.014006642, 0.00764308, -0.025848992, 0.01515004, -0.005121476, -0.010971189, 0.03416586, 0.026502363, -0.015680905, -0.0028550953, 0.023916103, -0.027509643, -0.012454885, -0.0051861326, -9.732506E-4, 0.005645534, 0.0026883495, 0.00382154, 0.0057476233, 0.0043932395, 0.026216513, -0.009671252, 0.04491926, -0.0149866985, -0.0057510263, 0.019886982, 0.02605317, -6.300819E-5, 0.013577866, -0.008922598, 0.010998412, -0.011447605, -0.005798668, 0.03710603, -0.027291853, 0.020472292, 0.002375276, 0.008071855, -0.0029878113, -0.015640069, 0.011012024, -0.0034114816, 0.027359912, 0.020349786, 0.024773652, -0.024623921, 0.043748636, 0.003978077, 0.022786316, 0.016130097, -0.019288057, -0.003108617, -0.010807846, -0.024419742, -0.025427023, 4.8322233E-4, -0.018321613, 0.004883268, 0.007078186, -0.008895375, -0.0125978105, 0.014660013, 0.007874482, 0.032205746, 0.0057544294, -0.032723, 0.023480522, 0.028584983, -0.017763525, -0.0045225527, -0.006057294, -0.010882711, -0.010208922, -0.005655743, -0.0025777528, 0.037977193, -0.008861344, 0.02181987, -0.007098604, -0.009494298, 0.008160332, -0.027223794, 0.0127135115, 0.037296597, -0.0010276982, 0.029102234, -0.0177363, -0.010535608, 0.010345042, -0.018321613, -0.029673934, -0.033621386, -0.007261947, -0.0013075928, -0.011835544, 1.431376E-4, -0.045327615, -0.006309114, -0.016279828, -0.0077043334, -0.014251656, -0.005819086, 0.0045191497, -0.007377648, -0.023807207, -0.019315282, -0.029918948, 0.0077043334, 0.09446656, 0.046416566, 0.0052031474, 0.0022000228, -0.004859447, 0.009378597, -0.014033865, -0.021139275, -0.007459319, -0.016919587, 0.02692433, 9.877132E-4, 0.044102546, -0.015463115, 0.0023973952, -0.01115495, -0.01629344, 0.0077043334, 0.012577392, -0.021901542, -0.03566317, -0.0128156, 0.021588467, 0.021343453, 0.008704808, -0.015844248, 0.017572958, 0.007010127, 0.0085823005, 0.0028806175, -0.013727598, 0.017926868, -0.0018903521, 0.017464064, -0.0035084663, -0.003906614, 0.01252975, 0.017300721, 0.02052674, -0.0015015623, -0.0010242952, 0.019710027, -0.0043217773, -0.002637305, 0.0020656053, -0.02181987, -0.0030320499, 0.01743684, 0.022241838, -0.025930664, 0.016116485, 0.019437788, -5.355431E-4, -0.021084828, 0.012250707, 0.0057203993, -0.0017133974, -0.005543445, 0.0054753856, 0.00540052, -0.013448554, -0.038793907, 0.009154, -0.0037568836, -0.021792646, -0.013979418, -0.014591953, -0.006176398, -0.0042298967, 0.0016393828, -0.022269063, -0.020131996, -0.012475303, -0.0067549036, 0.024283623, -0.011515665, 0.03264133, 0.0022374555, 0.011536082, 0.01345536, -0.023929713, -0.014728072, 0.016620126, -0.025508694, -0.00814672, 0.011889991, 0.016062038, 0.03446532, -3.2030494E-4, 0.009943491, 0.012032917, 3.9708454E-4, -0.007649886, -0.03495535, 0.044238664, 0.005836101, 0.015422279, 0.0152725475, 0.0042775385, -0.0030065277, -0.0041550314, -0.017872421, 2.9797293E-4, -0.023807207, 4.8322233E-4, -0.0023412462, -0.002690051, 0.0146327885, -0.009902655, -0.019465012, -0.020281726, -0.020703694, 0.010065998, 0.0019720234, 0.024528638, 0.0050534164, -0.005073834, 0.008255615, -0.005410729, -0.0064656506, 0.011631366, -0.02828552, 0.019070268, 0.022228228, -0.01649762, 0.023875266, -0.0047777756, -0.028203849, -0.0015279354, 0.029973397, -0.0040189126, 0.02598511, -0.019070268, -0.009943491, -0.027155733, -0.02418834, -0.0016759648, 0.008997464, -0.002945274, 0.0015355921, -0.019437788, -8.8477327E-4, 0.004600821, -0.0068740076, -0.006976097, -0.02899334, -0.010419907, -0.005267804, 0.009344567, 0.022990493, -0.0092220595, 0.017777137, -0.017899644, -0.0033042878, -1.0123848E-4, -0.054175347, -0.016987646, -0.0026287974, 0.013448554, 0.01592592, 0.045490958, -0.0046382537, 0.0067549036, 0.00445109, 0.012373214, 0.023208283, -0.03811331, -0.003974674, -0.0433675, -0.010018356, 0.011665395, 0.0045599854, 0.009807372, 0.011229815, 0.0060845176, 0.010658115, 0.0038827935, 0.00925609, 0.00561831, -0.02697878, -0.019914204, 0.0019822323, -0.030517872, 0.00536649, -0.019410564, -0.008269227, 0.03830388, -0.018770805, -0.006067503, -0.010753398, 0.027713822, -2.9031624E-4, 0.025073113, -0.023575805, 0.011243426, -0.01614371, -0.01313548, -0.02096232, -0.012448079, -0.0063907853, 0.006962485, 0.013128675, -0.009460269, 0.007193887, 0.010338236, 0.02627096, -4.5770002E-4, -0.022568524, 0.015531174, -0.011100502, -0.027210182, -0.030082291, 5.8063248E-5, -0.020948708, -0.0039882855, 6.525203E-4, -7.3855175E-5, 0.009351373, -0.022405181, -0.02203766, 0.005482191, -0.025467858, 0.044238664, 0.017409615, 0.02282715, 0.032559656, 0.02339885, -0.026434302, 0.009181224, -0.0021523812, -7.865124E-4, 0.024446966, 0.012904078, -0.015599233, 0.008670778, 0.010875905, 9.094448E-4, -0.033757504, -0.045899317, 0.005478788, 0.023262732, 0.0072755585, -0.017396003, -0.016960423, -0.018362448, 0.015626457, 0.002179605, 0.012563781, 0.005689773, -0.022269063, -0.01392497, 8.4776594E-4, -0.017001258, 0.021710975, 0.008228391, -0.0059415926, 0.013278405, -0.008514241, -0.008752449, -0.0028687073, -5.774422E-5, 0.04069957, -0.031198466, 0.019778086, 0.0037773014, 0.01313548, -0.0045429706, -0.009133583, -0.0073095886, 0.027958836, -0.010147668, 0.01795409, -0.012672676, 0.0012012499, 0.021779034, 0.0024926786, -0.015204488, -0.010671726, -0.024310848, -0.00990946, 0.03716048, 0.008228391, 0.0011459516, -0.003559511, -0.015885083, -0.0027683196, 0.009126777, -0.0033876607, -0.0070849922, -0.030599544, 0.021057604, 0.02397055, -0.007459319, -0.0132375695, 4.750871E-5, -0.0069216494, 0.0022919031, 0.016089262, 0.0017797555, -0.0028550953, -0.02160208, -0.011753873, -0.045545407, -0.021724587, -0.004907089, -0.010528802, 0.021438736, -0.014156372, -0.01736878, 0.0064724567, 0.007629468, 0.0057203993, -0.0081194965, -0.01159053, 0.009684864, 0.010814652, 0.0044408813, -0.006183204, -0.008650361, 0.039365605, -0.0063907853, -0.0074252896, 0.003074587, 0.010971189, 0.02181987, -0.011672202, -0.0014556221, -0.012488915, -0.024814487, -0.001423294, 0.0042332998, 0.021207334, 0.007813228, -0.005118073, -0.03982841, -0.020377008, -0.006690247, 0.046906594, -0.00502279, 0.014945863, 0.03174294, 0.012182647, 0.010031967, 0.030218411, -0.0137003735, -0.041788522, 0.028693877, -0.016007591, -0.041951865, -0.0071530514, 0.007411678, 0.017981315, 0.014945863, -0.007908512, -0.028040508, 0.005128282, -0.026937943, -0.024610309, -0.020785365, 0.017246272, 0.033893622, -0.007983377, 3.071184E-4, 0.014510281, 0.0039984947, 0.012938107, -0.021397902, -0.028013283, 0.013965806, 0.004750552, 0.024814487, 0.033512488, -0.03710603, -0.011440799, 2.475132E-5, 0.03087178, 0.006976097, 0.019274445, -0.03149793, -0.007738363, -0.013380494, 0.0065303072, -0.013870522, -0.0010030266, 0.028231073, -0.022650195, -0.0038045251, 0.011352322, -2.698984E-4, -0.011080083, -0.0026356035, 0.021479573, -0.0188797, -0.00464506, -0.015258936, -0.012618228, -0.004760761, -0.027645761, 0.016484007, 9.783551E-4, -0.006741292, 0.027523255, 0.028339969, -0.007745169, -0.010562832, -3.7773012E-4, 0.01686514, 3.6220407E-4, -0.013223957, -0.009848207, 0.024310848, -0.02684266, 0.017314332, -0.03710603, 0.00897024, -0.013312435, 0.021561245, -0.0041414197, 0.03179739, 0.006714068, -0.042087983, 0.010624086, -0.012039723, -0.001154459, -0.0072959764, -0.017899644, -0.018906925, -0.02318106, -0.0028176627, 0.011515665, -0.026488751, -0.033403594, 0.00435921, -0.0031069154, -0.011971663, 0.026230125, 0.19045766, -0.018348837, 0.014442222, 0.046253223, 0.008629942, 0.021289006, 0.01701487, 0.018621074, -0.0035935408, -0.0072959764, -0.0018818447, 0.019424176, -0.0035697198, 0.0041550314, 0.028584983, -0.029537816, -0.031906284, -0.016415948, -0.013829687, -0.01809021, -0.008657166, 0.0033076908, -0.0019958443, -0.012761153, 0.001980531, -0.008439376, -0.018416896, 0.012876854, 0.02289521, -0.0025028875, -0.027264629, -0.011114114, -0.0067855306, -0.0045123436, -0.01973725, -0.016266216, 0.0031511541, 0.02009116, 0.01152247, 8.124601E-4, 0.0217382, 0.0053188484, 0.0120737525, -0.012264319, 0.018498568, 0.023289954, -0.03258688, 0.0015177265, -0.011801514, -0.006006249, -0.032559656, -0.004240106, 0.023126611, 0.02784994, 0.004287747, -0.009957102, -0.0024433355, -0.010542414, -0.009405821, 0.0021881124, 0.016688185, 0.039283935, -0.03185184, 0.021193722, -0.0146327885, 0.004903686, -0.034247532, 0.014796131, -7.9501985E-4, -0.01987337, -0.016062038, -0.010896323, -0.0060198614, 0.01528616, -0.023643864, -0.026243737, -0.005005775, 0.014047477, 0.005312043, 0.029102234, -0.027019614, -0.018784417, 0.0067957393, 0.003095005, -0.015422279, -0.022432406, 0.01995504, -0.016633738, -0.0073163942, -0.022745479, -0.004066554, -0.028258298, -0.00644183, 0.0012710108, 0.0053052367, 0.01442861, 0.02195599, 0.012672676, -0.01058325, 0.0021047394, -0.025454247, 0.010419907, 0.012264319, -0.01557201, -0.028966116, -0.008269227, -0.009480686, 0.0028414833, 0.028258298, -0.009664446, -0.021370677, -0.0137003735, 0.013067421, -0.016620126, -3.2328255E-5, 0.023194673, -0.0026526183, -0.005427744, 0.032668553, -0.020880649, 0.0018597253, -0.008575494, 0.022568524, 0.010052386, -0.012230289, -0.032614104, -0.022078495, 0.012237095, -3.740613E-5, -0.037704952, 0.015054758, -0.019328892, 0.024365295, -0.0121894535, -0.011658589, 0.012985749, 0.0079425415, -0.005390311, 0.008276033, -0.0043898365, -0.0010064295, -5.49793E-5, -5.1469984E-4, 0.0087592555, 0.016170934, -0.021057604, 0.010256564, -0.022201004, -0.011311486, -0.029864501, -0.024229176, 0.019070268, 0.009031493, 0.013339658, 0.048403904, 0.004886671, -0.018049374, -0.042441893, -0.026529586, 0.025699262, -0.04657991, 0.013890941, 0.00710541, -0.0038385547, -0.020853426, -0.016456783, -0.17455897, 0.018539403, 0.003028647, -0.014864191, 0.01822633, 0.0033689444, 0.027291853, 0.00656774, 0.0014666818, -0.028122177, 0.015381443, 0.018866088, -0.04113515, -0.013965806, 0.011263845, 0.022132944, 0.0037398685, 0.024174727, 0.024215564, -0.0012242199, 0.039311156, -0.0019396952, -0.005009178, 0.005774847, 0.010072803, 0.012448079, 0.02138429, 0.007956154, 6.1253534E-4, -0.013829687, -0.0434764, -0.005621713, 0.012774765, 0.008446182, 0.011039248, -0.0070373504, 0.010413101, -2.5586112E-4, -0.002753006, 0.0050806403, 0.038712233, 0.013271599, 0.032913566, 0.011542888, 0.011229815, 0.017341556, 0.014278879, -0.014047477, 0.026121229, -0.008439376, 0.0076839156, -0.030027844, 0.0095147155, 0.011855962, -0.015980367, 0.0034574217, -0.0011068174, 0.0038419578, 0.01184235, -0.002975901, -0.011270651, -0.020145606, 0.0033417207, -0.0012710108, -0.01048116, -0.023630252, -0.019710027, 0.003224318, -0.03811331, 0.0010898025, -0.014646401, -0.0011136233, 0.017559346, 0.009596387, 0.008881763, -0.030327305, -0.026039558, 0.01909749, 0.017042095, -3.166893E-4, -0.0081739435, 0.042387445, -0.013890941, 0.011318292, 0.0041482253, -0.011998887, -0.004212882, -0.016878752, -0.006931858, -0.010215729, 0.011658589, -0.016552066, -0.009644029, 0.0146327885, 0.002819364, 0.004787985, -0.0038521667, -5.648937E-4, 0.01701487, 0.0068059484, 0.020567575, -0.014088313, -0.01320354, 0.031470705, 0.018648298, 0.010603667, 0.020513128, 0.038521666, 0.019791698, 0.0058599217, -0.0018801432, 0.02044507, 0.024406131, 0.02625735, -0.003091602, 0.0036105555, -0.007010127, -0.029347248, 0.010603667, 0.03473756, 0.06294141, 0.007820034, 0.0046552685, -0.010113639, -0.0030899006, -0.012652257, -0.09381319, -0.011971663, 0.01004558, 0.048213337, -0.042387445, 0.030082291, 0.0019924412, 0.0273463, -0.02806773, 0.03179739, 0.003287273, -0.023589417, 0.0087592555, -0.010977995, -0.0041073896, 4.0452855E-4, -0.02282715, -0.00843257, -0.0061355624, 0.031416256, 0.0070645744, -0.013142286, 0.0030524677, -0.014605565, -0.025848992, -0.0018682329, -0.016170934, 0.02978283, 0.010521996, -0.0062036216, 0.015653681, -0.022146557, 0.0067651127, -0.03487368, -0.03511869, -0.01872997, -0.0038895993, -0.01191041, 0.019274445, -0.04952008, 0.013462165, -0.0021881124, 0.012672676, -0.018430509, -0.019043043, -0.0037636894, -0.04355807, 0.026965167, -0.012931301, -0.014700849, -0.005386908, -0.016837915, -0.02418834, 0.011039248, 0.020268114, 0.02526368, 0.030408977, 0.005499206, -0.017069317, -0.030762887, -0.009671252, -0.009092747, -0.019505847, 0.010188504, 0.007820034, 0.004692701, 0.0013084436, -0.015803412, 0.017191825, -0.025535919, -0.024283623, 0.034764785, -0.034356426, -0.008806897, -0.031606823, 0.016592901, -0.010031967, -0.008303257, 0.028530534, -0.039066143, 0.004195867, -0.035799287, 5.4447586E-4, -0.02776827, 0.023589417, 0.027863553, 0.01822633, 5.466027E-4, -0.0035050635, -0.02684266, 0.0034029742, 0.013782045, 0.006329532, 0.0059824283, -0.005696579, 0.013230763, 9.766535E-4, 0.0136459265, 0.0036037497, 0.020268114, -0.0052303714, -0.0029078415, -0.0766622, 0.020730918, -0.028258298, -0.01478252, 0.017042095, -0.010222535, 0.0038725846, -0.004621239, 0.017858809, 0.03511869, -0.0014241447, 0.014101924, -0.007241529, -0.010753398, -0.0032855715, 0.011570112, 0.013115062, -0.017831584, -0.001893755, 0.011440799, 7.741766E-4, 0.008895375, 0.0154495025, 0.01872997, 2.2991344E-4, 0.015163653, -0.0027291852, 0.016170934, -0.010351847, -0.008473406, 0.019886982, -0.019492235, 0.0013594881, 0.0027955433, -0.016960423, -0.010413101, -0.023276344, 0.0068501867, 0.0037126448, -0.001900561, -0.02009116, -0.024215564, -0.0064078, -0.019288057, -4.9598346E-4, -0.012128199, -0.017246272, 0.01506837, 0.027305465, 0.010147668, 0.009984327, 0.007738363, -0.0062240395, -0.009793759, 0.011039248, -0.016021201, 0.052786935, -0.0046110298, 0.0018784418, -0.018934147, 0.0029265578, -0.006581352, 0.02282715, -0.025454247, 0.0011068174, 0.001436055, 0.0071870815, -0.011930827, -0.0018137852, -0.01288366, -0.01915194, -0.009058717, -0.0017865614, 0.029728383, 0.0060096523, 0.02590344, -0.014864191, 0.019219998, -0.009963908, 0.017600182, 0.024161117, -0.02454225, -0.034846455, 0.0091063585, 8.907285E-4, 0.0059756227, 0.0072551407, -8.813703E-4, 0.0042979564, 0.013482584, -0.014074701, 0.011495247, 0.00353569, 0.004886671, 0.008405346, 0.027087674, -0.016674573, -0.007976571, 0.009079135, 0.020186443, -0.0045463736, 0.0034148844, -8.7307555E-5, -0.009841401, -0.008316869, 0.005260998, -0.02561759, -0.0077996165, 0.004760761, 0.003465929, 0.014768908, 0.025195621, -0.016170934, 0.01851218, -0.029646711, 9.783551E-4, 0.006145771, -0.021193722, -0.00947388, 0.023834432, 0.0068910224, -0.003573123, 0.041461837, -0.020213665, 0.06027348, 0.019533072, 0.023521358, -0.024133893, -0.003549302, 0.0022782912, 7.2472714E-5, -0.0086980015, -0.037568834, -0.007554603, 0.0027938418, 0.0015440995, -0.005523027, 0.029619487, -0.034138635, 0.0699107, 0.001187638, -0.001339921, 0.020308949, -0.017763525, 0.024065834, 0.018607462, 0.029047787, -0.004318374, -0.002040083, 0.0135302255, -0.011781096, 0.014006642, -0.010705757, 0.014319715, -0.026216513, 0.011944439, 0.005380102, -0.010930353, -0.015190876, -0.0012165633, -0.019505847, 0.029320026, -0.0021813065, -0.024419742, -0.011992081, 0.0028874236, -0.009678058, -0.0058292947, -0.025917051, 0.002679842, -0.012876854, -0.01743684, 0.0080582425, 0.019192774, -0.0046314476, -0.00710541, 0.0040291212, 0.010916741, 0.0075682146, -0.0012420856, -0.006788933, -0.028122177, -0.021220947, 0.0177363, -0.0028499907, 0.0063261287, -0.020254502, -0.028258298 ], + "id" : "220dcebd-c8b2-4c68-b0b7-607a411267e8", + "metadata" : { + "source" : "movies.csv" + } + }, + "d62b8ef6-913e-4b4b-9e7f-3e27df7922b3" : { + "text" : "543,Paramount-Di Bonaventura Pictures-Bay Films-Tom DeSanto/Don Murphy Production-Allspark Pictures,12/15/18,135000000,467989645,113,Released,Every hero has a beginning.,6.7,5312,Hailee Steinfeld-John Cena-Jorge Lendeborg Jr.-John Ortiz-Jason Ian Drucker-Pamela Adlon-Stephen Schneider-Len Cariou-Glynn Turman-Gracie Dzienny-Ricardo Hoyos-Lenny Jacobson-Megyn Price-Kollin Holtz-Fred Dryer-Isabelle Ellingson-Mika Kubo-Felicia Stiles-George Anagnostou-Brandon Wardle-Krystin Goodwin-Nick Pilla-Sachin Bhatt-Tim Martin Gleason-David Waters-Antonio D. Charity-Courtney Coker-Edwin Hodge-Jake Huang-Holland Diaz-Dave Cutler-Lars Slind-Dylan O'Brien-Peter Cullen-Angela Bassett-Justin Theroux-David Sobolov-Grey DeLisle-Jon Bailey-Steve Blum-Andrew Morgado-Kirk Baily-Dennis Singletary-Vanessa Ross-Tony Toste-Nico Abiera-Jiana Alvarez-Jace Areff-Manny Avina-William W. Barbour-Jesse Stoudt-DeMark Thompson-Boston Rush Freeman,technology-based on toy-robot-spin off-1980s,/fw02ONlDhrYjTSZV8XO6hhU3ds3.jpg,/17nDJQsGVim6oows2TlN98UacbO.jpg,297802-407204-338490-56841-428078-324857-335988-287947-335983-299537-399579-363088-404368-375588-450465-480530-91314-166428-320288-338952-8373\r\n54138,Star Trek Into Darkness,Action-Adventure-Science Fiction,en,When the crew of the Enterprise is called back home they find an unstoppable force of terror from within their own organization has detonated the fleet and everything it stands for leaving our world in a state of crisis. With a personal score to settle Captain Kirk leads a manhunt to a war-zone world to capture a one man weapon of mass destruction. As our heroes are propelled into an epic chess game of life and death love will be challenged friendships will be torn apart and sacrifices must be made for the only family Kirk has left: his crew.,40.468,Bad Robot-Paramount-Kurtzman/Orci-Skydance Media,5/5/13,190000000,467365246,132,Released,Earth Will Fall,7.331,8335,Chris Pine-Zachary Quinto-Zoe Salda��a-Karl Urban-Simon Pegg-John Cho-Benedict Cumberbatch-Anton Yelchin-Bruce Greenwood-Peter Weller-Alice Eve-Leonard Nimoy-Noel Clarke-Nazneen Contractor-Amanda Foreman-Jay Scully-Jonathan Dixon-Aisha Hinds-Joseph Gatt-Jeremy Raymond-Tony Guma-Kimberly Arland-Sean Blakemore-Nick E. Tarabay-Beau Billingslea-Deep Roy-Anjini Taneja Azhar-Jack Laufer-Katie Cockrell-Kellie Cockrell-Jason Matthew Smith-Seth Ayott-Marco Sanchez-Lee Reherman-Scott Lawrence-Usman Ally-Nolan North-James Hiroyuki Liao-Rob Moran-Berit Francis-Akiva Goldsman-Benjamin P.", + "embedding" : [ 0.01458727, -0.039172556, -0.024776505, -0.054142263, -0.015201902, 0.024353093, -0.003633159, -0.011575572, -0.012149229, -0.032835014, 0.032288674, 0.037178416, 0.014819464, -0.0018643842, -0.001249752, 0.021676026, 0.0042102304, -0.01955896, 0.0057024206, -0.01087216, 0.007887779, 0.0075189997, -0.009895578, 0.020064326, 0.0146965375, 0.011097525, 0.031332582, -0.009478994, -0.001249752, -0.015871167, 0.023219436, -0.017168725, -0.0146282455, -0.016554093, -0.010619477, 0.0017892625, 0.0071092453, -0.013924832, 0.024680896, -0.007546317, 0.0026599914, 0.0035375494, -0.0015382877, -0.021785295, -0.026579427, 0.008700459, 0.017605796, -0.018138478, -0.0066516856, 0.017783357, 0.016198972, 0.03141453, -0.03507501, -0.01957262, -0.0053507145, -0.01105655, -0.0095950905, -0.008618508, 0.0033258428, 6.6969293E-4, 0.017701406, -0.019955058, -0.021730661, -0.012879958, -0.016595067, -0.0063307113, -0.011575572, -0.017400919, -0.004524376, 0.011425328, 0.020323837, 0.020501398, 0.009547286, 0.0020214568, 0.014286783, -0.03614037, -0.023806753, 0.0027043815, -0.009308263, 0.015666291, 0.011718987, -0.0095267985, -0.021279931, 0.0034829155, 0.010305332, -0.0014324344, -0.00860485, 0.009752164, -0.049962763, 0.013173616, 0.015461413, 0.032479893, 0.003365111, 0.013112153, 0.0036229151, 0.022618463, -0.02735796, 0.027863324, -0.0147648305, -0.042013522, 0.005227788, -0.007860462, 6.8975386E-4, -0.011568743, -0.0035273056, 0.01059899, 0.007464366, -0.008666313, 0.028027225, 0.0099024065, 0.008372656, -0.015352145, 0.005289251, -0.043980345, 0.0011293866, 0.0034607204, 0.0134467855, 0.0032473064, -0.00443901, -0.010120943, 0.022932608, 0.0264565, 0.009246799, -0.032916967, 0.04501839, 0.027030157, -0.0024073094, -0.010134601, 0.00914436, -0.009342409, 0.026552109, -0.018520916, 0.02735796, 0.0074507077, -0.013385322, 0.060151998, -0.029311124, 0.011022403, -0.03070429, -0.0107765505, 0.029830147, 0.035921834, -0.017127749, -0.009253629, -0.027917959, -0.0061804675, 0.004647302, -0.0024090165, 0.014915073, 0.007573634, 0.013439956, 0.016007753, 0.01051021, 0.019599937, 0.015024342, -0.008994117, 0.0021785295, -8.0617116E-5, 0.011896547, -0.010797038, -0.01313264, -0.0020009691, -0.008741435, -0.018042868, 0.0063887597, 0.017701406, 0.012907275, -0.026210647, -0.02745357, -0.028874053, -0.0025934062, 0.027644789, -0.020979444, 0.010790209, -0.017878966, 0.016157996, -0.0024516995, -0.015324828, -0.036823295, -0.021798953, 0.018220428, -0.001698775, 0.016663361, 0.034856472, -0.0040019383, 0.01802921, 0.024407726, -0.014682879, 0.010790209, -0.014177515, 0.003957548, 0.038817436, -0.0069897333, 0.006060956, -0.6376877, -0.025582356, 9.031678E-4, -0.01847994, 0.012087766, 0.0074233906, -8.9633855E-4, -0.004357059, -0.02499504, -0.01901262, -0.0313599, 0.016267264, 0.022714073, -0.012395082, -0.018124819, -0.013877028, 8.694484E-4, -0.035839885, 0.013474102, 0.013726785, -0.02644284, 0.0034863302, -0.0011515816, -0.009403872, 0.0052926657, -0.0049341302, 0.004104377, -0.014109222, 0.011746303, -0.014218491, -0.01078338, 0.018548232, 0.0062829065, -0.0022758462, 0.039035972, 9.876797E-4, -0.013658492, 0.047886673, 0.031496484, 0.020255543, -0.035211593, -0.008823386, 0.0035477933, -0.0024568213, -0.029666245, 0.02156676, 0.014573611, -0.0066960757, -0.006648271, -0.006504857, -0.0043502296, -0.007983388, 0.004176084, -0.005944859, -0.0076692435, 0.0024704798, 0.018671159, -0.024161873, 0.025514064, -0.017633114, -0.016157996, 0.019449692, -0.002794869, 0.0020573104, -0.011179476, 0.012961909, 0.0026395037, -0.010455576, -0.0048214477, -0.031086728, 0.012716056, -0.0012634106, -0.003786817, -0.02110237, 0.015871167, 0.010079967, 0.04313352, 0.013282884, -0.0020248715, 0.029912097, 0.010728746, -0.0049443743, 0.008611679, 0.0069521726, 0.029912097, 0.006303394, -0.028436981, 0.01150728, 0.008440948, -0.0046882774, 0.015352145, 0.03231599, -0.0018063356, 0.007798999, -0.0060199806, -0.01775604, -0.018889695, 0.011261427, 0.027781373, -0.06211882, -0.01965457, -0.005514616, 0.028764784, -0.00502974, 0.0120263025, 0.0081404615, -0.0011635328, -0.013638005, 0.021594075, -0.031824287, -0.014874098, 7.328635E-4, -0.030868193, 0.0021221882, -0.0053199828, -0.023752118, 0.022673097, 0.0011362159, -0.0025097479, 9.37314E-4, -0.0031773068, 0.0041897423, 0.008181437, -0.026565768, 0.0028460883, 0.027931616, -0.011766791, -0.0043365713, -0.007894608, 0.004012182, -0.0024585286, 0.00869363, 0.0048385207, -0.00656632, 0.013945321, 0.025049675, 0.021266272, -0.011309232, 0.0071433913, -0.0042990106, -0.021867245, -0.008003877, -0.008775582, 0.003694622, -0.011602889, -0.01285947, -0.038817436, -0.01901262, 0.012490691, -0.004367303, -0.014874098, 0.019408718, -0.0013410932, 0.018452624, 0.0037799878, -0.0013931663, -0.013009714, -0.02102042, 0.012893616, -0.028928686, 0.013323859, 0.026033087, -9.555609E-5, -0.033217452, 0.013877028, 0.002916088, 0.001378654, 0.0014665806, 0.0024926749, -0.013979467, 0.018261405, -0.0076555847, -0.0019634082, 0.009315092, -0.0112887435, 0.020132618, -0.02111603, 0.008113144, 0.0201053, 0.0012395082, -0.0028426738, -8.178022E-4, -0.03215209, -0.002953649, 0.028764784, 0.019176522, 0.01802921, -0.0027607228, -0.006982904, 0.0034931593, -0.024202848, -0.017810674, 0.004230718, 0.0023936508, 0.004510717, 0.023984313, 0.010243869, 0.008270217, -0.0034931593, 0.012784349, 0.030267218, 0.034637935, 0.008338509, -0.005316568, -0.005289251, -0.046193022, 0.0038004755, -0.02047408, 0.0097658215, -0.008918995, 0.025008699, -0.0053029098, -0.01068777, 0.0032029164, 0.0032302334, 0.022959925, -0.014095564, 0.01213557, -0.005197056, 0.01123411, 0.00488974, 0.0030646243, 0.014450685, 0.0076692435, -0.019763838, 0.010489722, 0.02518626, -0.011111183, 0.0038038902, -0.011316061, -0.0038721825, 0.005835591, 0.0012608495, 0.00127963, -0.0075941216, 0.016581409, 0.015051658, 0.0020009691, 0.040155966, -0.0012847519, -0.009021434, 0.018548232, 0.019709203, -0.0046404726, -0.00869363, 0.004145352, 0.020883834, 0.028436981, -0.014805806, 0.02917454, -0.010592161, 0.010680941, 0.0033804767, 0.0193814, 0.022946266, -0.014163856, -0.012108253, 0.014641903, 0.029147223, 0.008598021, 0.008044852, -0.007628268, 0.021416515, 0.012989226, 0.02545943, -7.21766E-4, -0.0208292, 0.020214569, -0.0043365713, -0.020952128, -0.009554115, -0.0026343816, -0.002055603, 0.010346307, -0.010366796, -0.003474379, -0.008912167, 0.017414577, 0.0053848606, 0.035102326, 0.0021085297, -0.0416584, 0.017045798, 0.022413585, -0.0119921565, -0.025418455, -0.009007775, -0.004411693, -0.033681843, -0.006313638, -0.025555039, 0.024885774, -0.015966777, 0.016595067, -0.010762892, -1.8727074E-4, 0.004449254, -0.03433745, -0.0049614473, 0.012613618, -0.014478002, 0.013658492, -0.0032524285, -0.023519924, 0.021266272, 2.725296E-4, 0.0039199875, -0.015188243, -0.013644834, -0.01774238, 0.021402858, -7.670097E-4, -0.03231599, 0.016185313, -0.0019002378, -0.0020521884, -0.018083844, 0.010018504, 0.001304386, 1.7660004E-4, -0.02065164, -0.029857464, -0.011759962, 0.02436675, 0.080858275, 0.03805256, 0.0132760545, 0.0076146093, -0.018425306, 0.009704359, -0.01114533, -0.014191173, -0.0021204809, -0.01222435, 0.017769698, -0.020637982, 0.020433104, 0.015502389, 0.007648756, -0.018589208, 0.011247768, -0.0017098725, 6.948758E-4, -0.010032163, -0.036987197, -0.007177538, 0.016868237, 0.018425306, 0.009321921, -0.02193554, 0.032479893, 0.010469235, 0.0075941216, 0.030485755, -8.190827E-4, 0.011165817, 0.017455554, 0.0052482756, -0.013296542, -2.8661493E-4, 0.02917454, 0.016089704, 0.019586278, 0.0036160857, -0.0030560875, 0.0046233996, 0.0073824152, 0.0018421891, 0.0066960757, -0.027248692, -0.019599937, 0.020310178, 0.0387628, -0.03359989, 0.02835503, -0.009533628, -0.014860439, -0.015406779, 0.027398935, -0.011623377, -0.005999493, -0.013597029, -0.023123827, 0.0053063245, 0.0046233996, -0.04302425, 0.020542372, -0.0028307226, 0.0038346217, -0.016581409, -0.010066309, -0.01005948, -0.008058511, 0.009410701, -0.0073619275, -0.007327781, -0.024161873, -0.019135548, 0.013569712, 0.00120024, 0.008618508, -0.0099024065, 0.019531643, 0.011514109, -0.031141363, -0.029475026, 0.028983321, -0.022591146, 0.005821932, 0.014532636, -0.037642803, 0.021635052, -0.0049580326, 0.020228228, 0.0054155923, -4.240535E-4, -0.009219483, -8.1470775E-5, 0.034364767, -0.0022758462, 0.008857532, 0.008236071, 0.02047408, 0.0036980368, -0.013084835, -0.018124819, 3.7283415E-4, -0.018165795, -0.007860462, -0.023465289, -0.011650694, 0.0077580237, -0.0077648526, -0.02264578, -0.027289668, -0.012449715, -5.7322986E-4, 5.924371E-4, 0.011240939, 0.0069726603, 0.013419469, -0.009267287, 0.0012395082, 0.010578502, 8.0841203E-4, -0.010517039, 0.01984579, 0.021717003, 0.014013613, 0.023055535, -0.012326789, -0.038489632, -0.0037287683, 0.030676974, -0.021717003, 0.0062726624, -0.002986088, 0.0021682857, -0.031332582, -0.018507257, -0.0047770576, -2.0082251E-4, -9.694328E-5, 0.012893616, -0.02039213, 0.009096555, 0.0060711997, -0.0029946244, 0.0019138962, -0.021853587, -0.0036024274, -0.00942436, 0.0076760724, 0.02618333, -0.0044253515, 0.018589208, -0.024339434, -0.0077170483, -0.0038653533, -0.026046745, -0.013672151, -0.008283876, 0.030103317, 0.010011675, 0.037096463, -0.019162865, 0.01857555, 0.006603881, 0.008768752, 0.03141453, -0.0082770465, -0.011575572, -0.036358908, -0.0011917035, 0.0053199828, 0.0344194, 0.002405602, 0.0016449947, 0.00199414, 0.020446762, 0.013747272, 0.016280923, -0.0013547516, -0.021361882, -0.01613068, 0.0015357267, -0.02554138, -0.006921441, -0.022796024, -0.014259466, 0.02672967, -0.0089668, -0.007819487, -0.009758993, 0.0374789, -0.006918026, 0.017728724, -0.009137532, 0.023123827, -0.0046268143, -0.014983366, -0.025964793, -0.012627276, 0.0028836492, -0.010380454, 0.018370671, -0.0057672984, -0.015365804, 0.0035204764, 0.026524791, -0.017537504, -0.02917454, 0.019709203, -7.7853404E-4, -0.0052516903, -0.030075999, -0.0067233928, -0.038462315, -0.020542372, -0.014710196, -0.010025334, 0.0052038855, -0.019531643, -0.024844797, 0.032643795, 0.006494613, 0.021525783, 0.012798008, 0.044499367, 0.023315046, 0.019463351, -0.019695546, 0.018343356, -0.017523846, -0.0012087766, 0.020979444, 0.023000902, -0.025568698, 0.0017499943, 0.0013632883, -0.012832154, -0.032753065, -0.024940407, 0.025418455, 0.018097503, 0.033326723, -0.021170663, -0.0023663337, -0.013883857, -0.004111206, 0.0075053414, 0.017045798, 0.01078338, -0.031223314, -0.0029843806, -0.012920934, 0.006764368, 0.020801883, 0.0193814, -0.024516994, 0.012142399, -0.01376776, 0.0027607228, -0.015966777, -0.021580419, 0.040074017, -0.024230165, 0.021894563, -2.452126E-4, 0.024243824, -0.004302425, -0.0073414394, 0.0041692546, 0.029365757, -0.016581409, 0.012886788, -0.0028614542, -0.013392151, 0.016198972, 0.011438987, -0.027576495, -0.026196988, -0.033545256, -0.0015877998, 0.03160575, 7.9176575E-4, -0.0035990127, -0.012640934, -0.019258475, -0.025104309, 0.0084819235, 0.0012668251, 0.010865331, -0.029666245, 0.025978452, -0.0035648665, 0.0074711954, -0.010114114, -0.0034112085, 0.0036092566, -0.006911197, 0.001825116, -0.0033224283, -0.010120943, -0.015720924, -0.013508249, -0.050427154, -0.034310132, -0.007833146, 0.0057024206, 0.016881896, -0.015529705, 0.010612649, 0.0056580305, -0.015843851, -0.001646702, -0.0027299912, -0.008720947, -0.008085827, 0.013303371, -0.018507257, -0.010161919, -0.0040634014, 0.033326723, 0.007737536, 0.0035273056, 0.0043263272, -0.003260965, 0.038899384, -0.03750622, 0.012101424, 0.0020470666, -0.013999955, -0.019681888, 0.006959002, 0.02418919, -0.007191196, -0.01240874, -0.035812568, 0.0015980436, -0.012121912, 0.040319867, 0.008638997, -3.2951112E-4, 0.018220428, 0.016171655, 0.034255497, 0.012572642, 0.0041624256, -0.030267218, 3.7880975E-4, -0.0059277858, -0.01123411, -0.007239001, 0.01240874, 0.020228228, -0.010633136, -0.023519924, -0.012716056, -0.011971668, -0.009711188, -0.0257326, -0.0035068179, 0.00548047, 0.03433745, 0.0069521726, 7.119489E-4, 0.017851649, -0.0046882774, 0.020077983, -0.010243869, -0.0027334057, 0.012087766, 0.02074725, 0.011370695, -0.0022058466, -0.036987197, -0.011561913, 0.018944329, 0.025063334, -7.2219275E-4, 0.03633159, -0.022809682, 0.0016108485, -0.00452779, 0.005337056, 0.013760931, -0.0025695038, 0.03452867, -0.040483773, -0.017400919, -0.0018353598, 0.023396997, -6.5731496E-4, -0.012579472, 0.015256536, -0.011268256, -0.0025302358, -0.022427244, -0.031633068, -0.016007753, -0.030294536, 0.021949196, -0.0013445078, 0.006060956, 0.033135504, 0.03633159, -0.009349238, -0.0027556007, -0.017223358, 0.004056572, -0.011561913, -0.0073687565, 0.0013188982, 0.009274116, -0.020883834, 0.007908267, -0.024694555, 0.013467274, -0.0025660892, 0.02065164, -0.006197541, 0.039718896, 0.007928755, -0.0630476, -7.917657E-5, -0.008748264, 0.018329697, -0.0013419469, 0.001907067, -0.023560898, -0.008236071, 6.154858E-4, -0.00624876, -0.024708213, -0.030321853, 0.014327758, -3.1265142E-4, -0.022126757, 0.01458727, 0.18378867, -0.012340448, 0.012388253, 0.04548278, 0.0073141227, -0.0028460883, 0.016117021, 0.009533628, -0.020310178, -9.723139E-4, -0.0046848627, -0.0014810928, 0.0033514525, -0.0019241401, 0.015215561, -0.004872667, -0.032452576, -8.404241E-4, -0.022236025, -0.018329697, -0.0021853587, -0.0014836537, -0.018247746, -0.020733591, 0.0011669474, 0.009574603, -0.013166786, 0.0057194936, 0.034228183, 0.011862401, -0.021880904, -0.0110838665, -8.87802E-4, 0.0047053504, -0.0094926525, -0.0086526545, -0.008577533, 0.014218491, 9.091434E-5, 0.0064672963, 0.013842882, 0.007723877, -0.008898508, -0.0066619297, 9.6975296E-4, 0.018452624, -0.03215209, 0.0048658377, -0.0146965375, 0.008823386, -0.045592047, -0.0067985146, 0.031004777, 0.024394067, -0.008850703, -0.0028631615, -0.006614125, 0.0022656024, 0.0019019451, 2.878954E-4, 0.019955058, 0.033654526, -0.023164803, 0.021348223, -0.011985327, 0.007860462, -0.016991165, -0.010264357, 0.02726235, -0.041986205, -0.0111180125, -0.012456545, -0.022632122, 0.0049238866, -0.016922873, -0.011609718, 0.015748242, 0.008611679, 0.013808736, 0.015611657, -0.02102042, -0.016690677, -0.0036673052, -0.016185313, -0.017510187, -0.02827308, 0.010435088, -0.009888749, 0.0010670697, -0.010537527, -0.008167778, -0.017250676, -0.017168725, -0.003534135, -0.01902628, 2.5631013E-4, 0.014915073, 0.009465335, -0.014163856, -0.010168747, -0.02735796, 0.034310132, 0.0264565, 0.009048752, -0.02563699, -0.00629315, 0.0038209632, 0.01975018, 0.022413585, -0.01846628, -0.005272178, -0.023396997, 0.003243892, -0.007389244, -0.0054019336, 0.014109222, -0.0075668045, -2.5929793E-4, 0.039582312, -0.019640911, 0.017960917, -0.008434119, 0.016062386, 0.0016356044, -0.0016740189, -0.023287728, -0.015734583, 0.01294825, 0.021798953, -0.02219505, 0.005057057, -0.018438965, 0.0066653444, 0.0023885288, 0.0011421915, 0.012893616, 0.026825279, 0.0029502343, 0.0011396304, 0.008092657, -0.00203853, -0.0026497475, 0.016567752, 0.005026325, 0.005818518, -0.031878922, 0.015352145, -0.009813626, 0.0067814416, -0.0385989, -0.0077170483, 0.009642895, 0.007498512, 0.0058833957, 0.036987197, 0.0046712044, -0.036195006, -0.029365757, -0.0137541015, 0.026838938, -0.04430815, 0.022495536, 0.018807745, -0.01259313, -0.045865215, -0.025882842, -0.17537504, 0.020159934, 0.008618508, -0.02690723, 0.020091642, 0.024557969, 0.010161919, 0.013610687, 0.010858501, -0.005695591, 0.021075053, 0.0015835315, -0.03930914, -0.010564844, 0.005289251, 0.0038721825, 0.006446808, 0.0503452, 0.03868085, -0.0076146093, 0.042805716, -0.008557046, -0.0056853476, 3.6536466E-4, 0.0047907163, 0.013460444, 0.026647719, 0.020692615, 0.008420461, -0.016881896, -0.034446716, -0.024407726, 0.015434097, 0.017537504, -0.007020465, -0.008461436, -0.007839975, -7.1152207E-4, -0.005808274, 0.0019292621, 0.031578433, 0.0067746122, 0.029502343, 0.004435595, 0.015871167, 0.015215561, 0.021279931, -0.009021434, 0.0073209517, -0.017605796, -0.010769721, -0.039554995, 0.0033890135, 0.0016577995, -0.0040531578, 0.017523846, -0.0067916852, 0.0018575549, -3.551208E-4, -0.008509241, -0.02518626, 8.732898E-4, -0.00675071, -0.01313947, -0.014081906, -0.026797961, -0.012879958, 0.01458727, -0.040729623, 0.013808736, -0.012449715, 0.024653578, 0.0059926636, -3.0326121E-4, -0.0013931663, -0.011008745, -0.021785295, 0.0136175165, -0.009205824, 0.027508203, -0.008358997, 0.034200866, -0.0065151006, 0.013023373, 0.007628268, -0.02663406, -0.0040019383, -0.010004845, -0.0043502296, -0.012920934, 0.008160949, -0.01884872, -0.022987243, 0.007409732, -0.017291652, 0.017032139, 0.003419745, -0.0075326585, 0.0085160695, -0.015434097, -0.018780427, -0.002308285, -0.011452646, 0.03488379, 0.025787232, 0.016963847, 0.0036741344, 0.015557023, 0.011172647, -0.0043160836, -0.022768706, -0.003156819, 0.008003877, 0.01920384, 0.0040258407, 0.00905558, -0.018343356, -0.016649703, 0.0039097434, 0.013924832, 0.049853496, -0.0011199964, -0.009362896, -0.005617055, -0.016417507, -0.017728724, -0.08260656, 0.005695591, 0.003382184, 0.041057426, -0.030840876, 0.035648666, -0.0044970587, 0.036003787, -0.011678011, 0.029830147, -0.0021392615, -0.039527677, 0.005255105, -0.0041351086, 0.02663406, -0.011104355, -0.016021412, -0.009991187, 0.0032421846, 0.0358672, -0.0072799763, -0.002834137, 0.005712664, -0.017250676, -0.027972592, 0.011213622, -0.037342317, 0.021908222, 0.012941421, 0.0079697305, 0.018548232, -0.022891633, 0.009738505, -0.03676866, -0.034310132, -0.021771636, -0.029338442, -0.018957987, -1.468288E-4, -0.06195492, 0.004719009, 0.0045619365, -0.0049341302, -0.009253629, -0.011029232, 4.9810816E-4, -0.02164871, 0.036850613, -0.011876059, -0.026033087, -0.004701936, -0.02663406, -0.022550171, -0.019217499, 0.012791178, 0.0016876775, 0.023997972, 0.00452779, -1.7425248E-4, -0.024079923, -0.018493598, -0.0059482735, -0.02274139, 0.013078006, 0.0018712134, 0.0010610941, -0.01204679, -0.010107284, 0.022823341, -0.024612604, -0.02735796, 0.028928686, -0.039445724, -0.0053404705, -0.028874053, -0.0066790027, -0.024708213, -0.013808736, 0.026142355, -0.029611612, 0.008625338, -0.031141363, 0.022058465, -0.016048728, 0.002318529, 0.01603507, 0.00887802, 0.0025490161, 0.015748242, -0.029994048, -4.8231552E-4, 0.015174584, 6.863392E-4, 0.025158944, -0.013781419, 0.0042614494, 0.017291652, 0.003184136, -0.022686755, 0.012989226, -0.0030151121, -8.284729E-4, -0.07626902, 0.029912097, -0.018097503, -0.002839259, -0.013398981, -0.012108253, -0.0010448747, -8.545094E-4, 0.0025507235, 0.01846628, -0.013569712, 0.01774238, -0.012722885, -0.0046268143, -0.0071707084, 0.007491683, 0.0022980412, -0.01957262, -0.0010354845, -0.0023953582, -0.022782365, 0.010264357, 0.018862378, 0.012121912, -0.005299495, 0.018056527, -0.006358028, 0.005190227, -0.0015195073, -0.02735796, 0.032452576, -0.016458483, 0.0027453569, 0.0031807213, -0.010578502, -0.018534575, -0.011917034, 0.0063272966, 0.013938491, 8.627259E-5, -0.011998986, -0.033108186, -0.0012010937, -0.018234087, -0.001428166, 0.00996387, -0.022796024, 0.0061497362, -3.3313915E-4, 0.010721916, 0.031387214, 0.011384353, -0.012791178, -0.014983366, 0.022440903, -0.0208292, 0.047422286, -0.006095102, 0.0132419085, -0.018316038, 0.032042824, -0.0019002378, 0.018998962, -0.027057473, 0.0021819442, 0.014150198, 0.008768752, -1.3701175E-4, -0.0073414394, -0.018247746, -0.007983388, -0.0062180287, 0.01955896, 0.02782235, 0.016103363, 0.012388253, -0.0134467855, 0.012039961, -0.008461436, 0.020064326, 0.03712378, -0.008488753, -0.028874053, 0.027112108, 0.0033873061, 0.027672105, -0.0061668092, 0.01105655, 0.0072868057, 0.0058287615, -0.019804813, 0.013801906, 0.02119798, 0.0041077915, -5.324678E-5, 0.037287682, -0.0146965375, -0.012777519, -0.007075099, 0.036468174, -0.005210715, 0.0012838983, -0.007587292, -0.024476018, -0.026060402, 0.0125863, -0.012606788, -0.017797016, 0.0056272987, 0.029584294, 0.030649656, 0.011309232, 0.0017312139, 0.013610687, -0.031305265, 0.010633136, -0.007491683, -0.015775558, -0.02626528, 0.052230075, 0.020132618, -0.0047599846, 0.04168572, -0.016881896, 0.06343004, 0.00797656, 0.025773576, -0.02881942, 0.010503381, 0.023383338, -0.0034897448, -0.008768752, -0.022236025, 0.008297534, -0.015010683, 0.011220451, -3.0987704E-4, 0.030294536, -0.017018482, 0.074684635, 0.02944771, -0.0082770465, 0.023028217, -0.009936553, 0.0016586531, 0.012722885, 0.02000969, -0.011650694, -0.018343356, -0.009123873, 0.009294604, 0.010189235, -0.034856472, 0.004937545, -0.013037031, 0.015311169, 0.01595312, -0.009574603, -0.011077037, -0.0049853497, -0.008645826, 0.011937522, 0.01957262, -0.025650648, -0.0070887576, 0.021279931, 0.0039234017, -0.012968739, -0.03250721, 0.0048043747, -0.018807745, -0.016157996, -0.00443901, 0.038434997, 0.020979444, -0.010175576, 0.0017551163, 0.028382346, 8.9804584E-4, 0.0013274347, -0.0030134048, -0.026948204, -0.008618508, 0.013426298, -0.0056853476, -0.008222412, -0.03780671, -0.018698476 ], + "id" : "d62b8ef6-913e-4b4b-9e7f-3e27df7922b3", + "metadata" : { + "source" : "movies.csv" + } + }, + "edac86fe-c329-4ced-8831-32508a556a6a" : { + "text" : "Ellis-Gene Barge-Thomas Charles Simmons-Joe Guzaldo-Dick Cusack-Nicholas Kusenko-Joan Kohn-Joe Guastaferro-Andy Romano-Richard Riehle-Thom Vernon-Ken Moreno-Eddie Bo Smith Jr.-Frank Ray Perilli-Otis Wilson-Pancho Demmings-Jim Wilkey-Danny Goldring-Nick Searcy-Kevin Crowley-Michael James-Michael Skewes-Ila Cathleen Stallings-Linda Casaletto-Cody Glenn-Cynthia Baker-Johnny Lee Davenport-Mike Bacarella-Bill Cusack-David U. Hodges-Lillie Richardson-Peter J. Caria IV-Tighe Barry-Monika Chabrowski-Lonnie Sima-Oksana Fedunyszyn-Orlando Garc�_a-Afram Bill Williams-Bruce L. Gewertz-Jane Lynch-Joseph Rotkvich-Steven Lilovich-Noelle Bou-Sliman-Roxanne Roberts-Alex P. Hernandez-Theron Touch�� Lykes-Joel Robinson-Greg Hollimon-Cheryl Lynn Bruce-Marie Ware-Bernard McGee-Ann Whitney-Lily Monkus-Willie Lucas-Turk Muller-Ana Mar�_a Alvarez-Eugene F. Crededio-Maurice Person-Terry Hard-Pam Zekman-David Pasquesi-Brent Shaphren-Stephen A. Landsman-B.J. Jones-Dru Anne Carlson-Margaret Moore-Manny Lopez-John M. Watson Sr.-Kirsten Nelson-Juan Ram�_rez-Neil Flynn-Allen Hamilton-Eric Fudala-Lester Holt-Jay Levine-Sal Richards-Darren W. Conrad-Kevin Mukherji-John-Clay Scott-Suzy Brack-Gene Kelly,chicago illinois-escape-chase-doomed man-surgeon-death sentence-u.s. marshal-flashback-remake-betrayal-fugitive-on the run-conspiracy-police corruption-doctor-home invasion-disguise-one armed man-framed for murder-action hero-manhunt,/b3rEtLKyOnF89mcK75GXDXdmOEf.jpg,/hxtjTfIZdNGBLjuqPoUKDYzxg83.jpg,9772-11808-9802-9869-1669-881-1637-9331-9798-941-1701-87-89-754-9386-861-36955-85-943-1572-664\r\n228161,Home,Fantasy-Comedy-Animation-Science Fiction-Family,en,When Earth is taken over by the overly-confident Boov an alien race in search of a new place to call home all humans are promptly relocated while all Boov get busy reorganizing the planet. But when one resourceful girl Tip manages to avoid capture she finds herself the accidental accomplice of a banished Boov named Oh. The two fugitives realize there��s a lot more at stake than intergalactic relations as they embark on the road trip of a lifetime.,39.146,DreamWorks Animation,3/18/15,135000000,368871007,94,Released,Worlds Collide,6.781,3531,Jim Parsons-Rihanna-Steve Martin-Jennifer Lopez-Matt Jones-Brian Stepanek-April Lawrence-Lisa Stewart-Stephen Kearin-April Winchell,spacecraft-space-alien-alien invasion-alien friendship-awful leader-taking resposibility,/ln7DqfqyKosTw1xoa92Q7FRT3Jh.jpg,/jqVFrhFLqrOn72TImJuIzYWKByv.", + "embedding" : [ 0.012720748, -0.027213264, -0.015129247, -0.043103818, -0.021371964, 0.04113826, 2.580225E-4, -0.0040245457, -0.022797685, -0.033414457, 0.015336876, 0.023019155, 0.017053276, 0.005564462, -0.0055402387, 0.004990021, 0.0118556265, -0.010741349, 0.010049253, -0.021884115, -0.001578847, 0.011751812, -0.01436794, 0.0054537267, 0.0059139715, 0.003564301, 0.03158732, -0.0078553045, -0.012097861, -0.012630776, 0.0070040245, -0.0021299294, -0.013502818, -0.020015454, -0.024887819, -0.009287945, 0.0031213588, -0.025247708, 0.025815228, 2.6862026E-4, 0.0024915503, -3.365323E-4, -0.009592468, -0.019309513, 0.0043740547, 0.017164012, 0.0071632066, -0.018534364, -0.012236279, 0.026618062, 0.031753425, 0.037456304, -0.020029295, -0.023503624, 0.005377596, -0.005038468, -0.011073557, -0.0077653313, -0.010900532, 0.0032684293, 0.009820861, -0.016167393, -0.024486402, -0.019890876, -0.012277805, -0.012741511, -0.019461775, -0.025012396, 0.0024950106, -0.0021749157, 0.012208596, 0.008900371, 0.009045712, 0.017177854, 0.032030262, -0.02625817, -0.022119429, -0.009758571, -0.009876228, -0.0031196284, 0.0031421217, -0.013793498, -0.005145743, 0.0055886856, 0.024887819, 0.024846293, -0.003173266, 0.02404346, -0.044045072, 0.016167393, 0.009343313, 0.03576759, 0.011675681, 0.005294544, 0.018036054, 0.015959764, -0.028334463, 0.024168037, -0.031061325, -0.055395465, -0.0027234028, -0.0013565107, -0.002297763, -0.019046517, -0.0025797926, -0.0017683086, 0.0041941097, 0.013108322, 0.01137808, 1.2425309E-4, 0.018119106, -0.01195252, 0.013627395, -0.045429267, -0.008921134, -0.016610336, 0.016568808, -0.013530502, -0.019932402, -0.022396268, 0.030258493, 0.017966846, -0.0047650896, -0.035047807, 0.021759538, 0.027628522, -0.009717045, -0.017316274, 0.0032909226, -0.0070455503, 0.02397425, 0.0059070503, 0.015530663, 0.0059070503, -0.025358444, 0.023711253, -0.018811204, 0.012990666, -0.010665219, -0.019724773, 0.036404315, 0.026618062, -0.022520846, -0.014990827, -0.013924997, 0.019267987, 0.012104781, 0.002903348, 0.012478514, 0.022894578, 0.021787222, 0.030203125, 0.0066787386, 0.014381781, 0.024292614, -0.0064434255, -0.012436988, 0.016610336, -0.009793176, -0.02596749, -0.0033272577, 7.1199506E-4, 2.3552935E-4, -0.00668912, 0.008595848, 0.017911477, 0.015682925, -0.01594592, -0.0059381947, -0.016264286, -0.01751006, 0.040307745, -0.032417838, 0.020084662, -3.8260003E-4, 0.019254146, 0.0045713023, 0.005758249, -0.03258394, -0.018478997, 0.0049554165, 0.016942542, 0.013260583, 0.038093034, -0.0016627637, 0.007405441, 0.02873588, -0.023517465, -0.0014127436, -0.023240626, -0.002597095, 0.011232738, 0.013952681, -0.0046508936, -0.62410563, -0.009689362, -0.012533882, -0.020527605, 0.016167393, 0.01024996, 0.00298813, -0.008568164, -0.022437794, 0.0068552233, -0.030673752, 0.030341545, 0.034106553, -0.01067214, -0.025053922, -0.024431033, 0.014852407, -0.009108, 0.03399582, -0.0013366129, -0.021427331, 0.016956383, 0.014741672, 0.001906728, 0.019267987, 0.007391599, -0.0059105107, -0.007952197, 0.011447289, -0.008215195, -0.015060036, 0.018963465, 0.008222115, -0.010879769, 0.04745019, 0.0049069696, -0.01948946, 0.048972804, 0.025206182, 0.03576759, -0.03286078, -0.017745374, 0.028154517, -0.0056544347, -0.022576213, 0.023060681, 0.007336231, 0.010969742, -0.008062934, -0.025842912, -0.00519419, 0.020513764, -0.013142928, -0.013039113, -0.0027631985, -0.0105475625, 0.012111702, -0.029317241, 0.016361179, 0.0048550623, 1.3701363E-4, 0.01728859, -0.009308709, 0.015973605, -0.007841462, 0.026410433, -0.0082498, -0.018299052, 0.01615355, -0.016527282, 0.016485756, 0.014201836, -0.02681185, 0.0072185746, 9.369267E-4, 0.0066787386, 0.024873976, 0.007592307, -8.837217E-4, 0.012769194, -5.6925E-4, -0.0023790845, 0.013634317, 0.015876712, 0.025510706, -0.0036127479, -0.046619672, 0.0140357325, 0.009045712, -0.009287945, 0.010734429, 0.029040402, 2.547783E-4, 0.0024431034, -0.007848383, -0.010229197, -0.010422985, 0.0071908906, 0.02539997, -0.06439273, -0.012180912, -0.020707551, 0.025787545, -0.008665058, 0.00412836, 0.0058620637, -0.009101079, -0.017413167, 0.02569065, -0.0091841305, -0.018769678, 0.0072808634, -0.01529535, -0.015198456, -0.01281072, -0.029843235, 0.0059866416, 0.010762112, -0.0037615488, -0.012616933, 0.001899807, -5.4026843E-4, -0.003401658, -0.027324, 0.022285532, 0.024472559, -5.471894E-5, -0.008914213, -0.0069901827, 0.017205538, -0.0011333093, 0.0026801466, 0.00782762, -0.020666026, 0.0057444074, 0.007675359, 0.030369228, -0.015765976, 0.012852247, -0.018049898, -0.020264609, 0.002604016, -0.01067214, -0.016610336, -0.006965959, -0.0010710205, -0.02112281, -0.010665219, -0.011398843, -0.023351362, -0.0016307542, 0.0041595045, 0.004076453, 0.0026438115, 0.008941897, -0.0028220266, -0.02632738, -0.03150427, 0.004782392, -0.013758894, 0.010042331, 0.013620474, -0.006993643, -0.025206182, 0.017593112, -0.0031421217, -0.0034189606, -0.010803638, -0.013890392, -0.012533882, 0.02539997, -0.029511027, 0.010602931, 0.012658459, -0.0051630456, 0.033359088, -0.0031819171, 0.021884115, 0.0077791736, -0.011945599, -0.004633591, -0.011530341, -0.019558668, -0.008242878, 0.028375989, 0.012900693, 0.04340834, -0.006481491, -0.014976985, 0.018395945, -0.01024304, 0.0013201756, -0.013295189, -0.007038629, 0.0072531793, 0.02490166, 0.002590174, 0.007273942, 0.013876551, -8.1451196E-4, 0.038729765, 0.02297763, 0.0077376477, -0.012762274, 0.015004669, -0.03513086, -0.0020797523, -0.028791247, 0.0052253343, -0.0015321303, 0.020582972, -0.0059312736, -0.0025486483, 0.0037823117, 0.031005958, 0.009772413, -0.01216707, -0.0032338246, -0.011924836, 0.010118462, 0.004069532, 0.008014486, 0.03150427, 0.01337824, -0.029151138, 0.01081056, 0.007876067, -0.0033289879, 0.0018911558, 0.004754708, -0.0021870274, 0.009343313, -1.8848837E-4, 0.015682925, 0.0077653313, -0.020389186, 0.018935781, 0.010305328, 0.034549497, -0.025150815, -0.01081056, 0.008706584, 0.03502012, 0.007848383, -0.0014127436, -0.003848061, 0.0040902947, 0.021108966, -0.016125867, 0.03443876, -0.02020924, 0.034826335, -0.019046517, 0.008561243, 0.014617095, -0.013502818, 0.0062150336, 0.010865928, 0.030286176, 0.016181234, 0.02575986, -0.026645744, 0.021399647, 0.0028652828, 0.0071424437, -0.004156044, -0.023116048, 0.008132143, -0.011253501, -0.012125544, -0.025372285, -0.014464833, 0.010000805, 0.007862225, 0.0030763724, -0.009966201, -0.0077584106, 0.004014164, 0.013039113, 0.010381459, -0.0043498315, -0.03693031, 0.010990505, 0.022742316, -0.01857589, 0.0037788511, -0.0022008694, -0.0062219547, -0.020693708, -0.01287993, -0.008934976, 0.036099795, -0.003955336, 0.015752135, 0.0018219461, -0.007405441, 0.00960631, -0.016347338, 0.011793338, 0.022327058, 0.0011583978, 0.020887496, 0.00533607, -0.002725133, 0.031919528, -0.021953326, -9.6190706E-5, -0.016817965, -0.0032355548, -0.0048862067, 0.008990344, -0.008969581, -0.038120717, 0.012658459, -0.019032676, -0.016347338, -0.017994529, -0.008734267, 0.0017172664, -0.018105265, -0.009682441, -0.029594079, -0.031919528, 0.009149526, 0.07646291, 0.029123453, 0.015876712, 0.01991856, -0.006637213, 0.010076936, -0.01971093, -0.0120632555, -0.0034777888, -0.009066475, 0.020873655, -0.009232578, 0.037511673, -0.002818566, 0.013322872, -0.00974473, -0.0054537267, -0.008208274, 0.004239096, -0.021081284, -0.02917882, -0.006945196, 0.009682441, 0.031421218, 0.0088796085, -0.026216645, 0.02440335, 0.01017383, 0.010042331, 0.002148962, -0.005734026, 0.0043705944, 0.014098021, 0.013468213, 0.0037823117, 0.002306414, 0.028279094, 0.008215195, 0.02787768, -0.0064226626, -9.793177E-4, 0.0044882507, 0.010021568, -0.012969903, 0.035407696, -0.0152676655, -0.006668357, 0.039587963, 0.029843235, -0.02354515, 0.016651861, -0.0034466444, -0.01266538, -0.012160149, 0.02739321, 9.905642E-4, 0.003500282, -0.011786416, -0.018216, -0.005526397, 5.463243E-4, -0.028306779, 0.004446725, -0.01024304, 0.0034085792, -0.013426688, -0.011765653, -0.0014326414, -0.018506682, 8.7031233E-4, 0.011440368, -0.025344603, -0.005086915, -0.010568325, 0.019184936, 0.0030227348, 0.026936427, 0.0026974492, 0.01394576, 0.007689201, -0.030147757, -0.035684537, 0.009668599, -0.015627557, 4.5375628E-4, 0.009502496, -0.010845165, 0.024943186, -0.007021327, 0.01202865, 0.0030469582, -0.0026126672, -0.02382199, -0.023503624, 0.04648125, 0.0022683488, 0.02767005, 0.018257527, 0.013841946, 5.9347344E-4, 0.002761468, -0.02596749, -0.006253099, -0.009973122, -0.020250766, -0.00896266, -0.016347338, 0.0049311933, -0.020527605, -0.022022536, -0.032556254, -0.018382104, 0.0027216726, -0.021967167, -8.8674965E-4, -0.008914213, 0.0073777568, -0.0047893133, -0.01914341, 0.010775954, 0.011821021, -0.015336876, 0.010727508, 0.018728152, -0.017482378, 0.030701436, -0.009232578, -0.031781107, 0.0051319012, 0.032833096, -3.6962322E-4, 0.020140031, -0.018658943, -0.0043013846, -0.018299052, -0.027739258, 0.0023081445, 0.0043429104, -0.010277645, 0.014257204, -0.022327058, 0.015779817, 0.024084985, 9.65692E-5, 0.0014637858, -0.027130213, 0.011391921, -0.01615355, 0.01629197, 0.026991794, -0.015890554, 0.010727508, -0.009045712, -0.008263641, -0.0136550795, -0.03363593, -0.038231455, 0.006844842, 0.031559635, 0.01380042, 0.036542736, -0.0023150654, 0.027407052, 0.008789635, 0.0016333496, 0.020666026, -0.02490166, -0.009253341, -0.025136974, 0.0057720914, 0.009620152, 0.026092067, 0.0067237252, 0.0038446004, 0.0032459362, 0.01978014, 0.011156608, 0.01337824, -0.002867013, -0.019309513, -0.009813939, 0.0014784929, -0.021316595, 0.0022648883, -0.029926287, -0.026285855, 0.042439405, 0.0011973283, -0.0030434977, -3.938466E-4, 0.034604862, -9.3606155E-4, 0.020015454, -0.008872687, 0.0053395303, -0.01429873, -0.018658943, -0.027656207, -0.012582328, -0.012471593, -0.008145985, 0.024652505, -0.008049091, -0.0038376795, 0.0044847904, 0.025289234, -0.024846293, -0.024804767, 0.027725417, -0.013115243, -0.012886851, -0.035463065, -0.0065853056, -0.033885084, -0.01600129, 0.0024361825, 0.0032338246, 0.0016999639, -0.021468857, -0.04374055, 0.017385483, -0.0014317762, 0.022368584, 0.018105265, 0.049055856, 0.0219118, 0.006623371, -0.015406085, 0.014174152, 3.101461E-4, 3.421556E-4, 0.025081605, -0.006810237, -0.012056335, 7.496279E-4, 0.0069901827, 1.2868684E-4, -0.036902625, -0.05129825, 0.02945566, 0.031255115, 0.013288268, -0.028002257, -0.020859811, -0.012430067, 0.019032676, 0.008422824, -0.004149123, 0.01579366, -0.013122165, -0.015323034, -0.0011229279, -0.001002676, 0.010326091, -0.0025676808, -0.019392565, 0.015143088, -0.023032997, 0.011841784, -0.016278127, -0.013994207, 0.030784488, -0.01123966, 0.0152676655, -0.0039380337, 0.027213264, -0.0014646508, 0.0065576215, 0.003230364, 0.03734557, -0.012347016, 0.0022181717, -0.0038549819, -0.010692903, 0.01579366, 0.013136006, -0.016070498, -0.02454177, -0.026701113, -0.0020209241, 0.021925641, 0.0023444796, 0.01188331, -0.001700829, -0.012658459, -0.014312572, 0.0020745615, -0.005754789, 0.01231241, -0.053845167, 0.014935459, -0.0073085474, 0.017399326, 5.3680793E-4, 0.002590174, 0.010464511, -0.0064711096, 0.012776116, -0.001323636, -0.0016290239, -0.030479964, -0.00995928, -0.047145665, -0.028846614, 0.0061423634, -0.012097861, -0.0012795149, -0.024569454, -0.007675359, -0.013668921, -0.008914213, 0.0022683488, -0.005107678, -0.016748754, 0.0085197175, 0.023295995, 2.3898984E-4, -0.016901016, -0.0010433367, 0.046287466, -0.004951956, -0.0030434977, -0.0057928544, 0.012942219, 0.036321264, -0.030839855, 0.010630614, -0.005827459, -0.030009339, -0.011080477, 0.014354098, 0.03081217, 0.024237247, -0.008845003, -0.02754547, -0.005962418, -0.021925641, 0.030673752, -0.0030037023, 0.006765251, 0.0260367, 0.022853052, 0.038120717, 0.03200258, -0.0010701554, -0.0347156, 0.001650652, -0.010076936, -0.027766943, -0.0010364157, 0.011689523, 0.019447934, -4.5418885E-4, -0.012132465, -0.03258394, -6.112084E-4, -0.015060036, -0.03208563, 4.8057505E-4, 0.022922263, 0.039366495, 0.0051422827, -0.0031525032, 0.013315951, 0.008035249, 0.009440207, -0.021676486, -0.004668196, 0.028486723, 0.015198456, 0.015807502, 0.023282152, -0.013592791, -0.008312088, 0.0048204577, 0.031698056, 0.01622276, 0.024652505, -0.012783037, -0.0044778693, -0.0037442462, 0.001359106, -0.01024996, -0.0010294947, 0.021884115, -0.027503945, 0.0030504188, 0.016347338, 0.012173991, -0.0072670216, 0.0037511673, 0.010042331, -0.0035175844, 0.0091841305, 0.0016108564, -0.010665219, 0.009896991, -0.011689523, 0.016901016, 0.01871431, -0.011731049, 0.014243362, 0.017869951, -0.012644617, 0.00554716, -0.0074538877, -2.6667374E-4, -0.0044917115, -0.0071701277, 0.0069105914, 0.031753425, -0.02141349, 0.018949624, -0.030479964, 0.0064503467, -0.017994529, 0.009066475, -0.0097516505, 0.030479964, 0.014658621, -0.060350884, 0.005644053, -0.010208434, -0.007689201, -0.01828521, 0.008242878, -0.02845904, -0.013558186, 0.0038688239, 0.014547884, -0.01885273, -0.02462482, 0.008782715, -0.0054952526, -0.020140031, 0.02653501, 0.18725383, -0.019821666, 0.010755192, 0.04183036, -0.013786578, -0.0011990585, 0.015419927, 0.02454177, -0.00440866, 0.015253824, 0.0038169164, 0.014561727, 4.6284005E-4, 4.4553762E-4, 0.010665219, -0.018229842, -0.030701436, -0.019877033, -0.013966523, -0.022880737, -0.010589088, -0.0063050063, -0.0063499925, -0.030756803, 0.023005314, 2.9673672E-4, -0.011488815, 0.017897636, 0.014478675, 0.014547884, -0.018548207, -0.02000161, 0.004460567, -0.0042944634, -0.01586287, 0.0032545875, -0.015849028, 0.0048273783, 0.0138834715, 0.005969339, -0.0014776277, -0.014741672, -0.0073085474, -0.0023392888, -0.0076545957, 0.014042654, -0.027116371, 0.0034068488, -0.015502979, 0.0025382668, -0.03194721, 0.0031075168, 0.008886529, 0.030701436, -0.01117045, -0.0043152263, 0.009163368, -1.0900532E-4, -0.0063984394, 0.014547884, 0.023531307, 0.04601063, -0.023448255, 0.011385, -0.00540528, 0.018049898, -0.01109432, -0.0028497106, 0.014769356, -0.0323071, 7.236742E-4, -0.029261872, 6.9252984E-4, -0.002597095, -0.013495897, -0.019835507, -0.0043878965, 0.011232738, 0.0066579757, 0.015613714, -0.025483022, -0.008554323, -0.0030694513, -0.013675842, -0.012582328, -0.020610657, 0.031615004, -0.020070821, -0.004190649, -0.016568808, -0.01706712, -0.023420572, -0.009398681, 0.0013210407, -0.010070016, 0.013454371, 0.011558024, 0.021233544, -0.015281508, 0.004972719, -0.016416548, 0.025884438, 0.029068086, -0.02220248, -0.033857398, -0.018617418, -0.0046543544, 0.0032961133, 0.03770546, -0.01543377, -0.030341545, -0.0144509915, 0.0045920652, -0.009765493, 0.00882424, 0.022562372, 0.027490104, -0.007384678, 0.047477875, -0.017316274, 0.0027631985, -0.019641722, 0.014547884, -0.0044155805, -0.006218494, -0.04019701, -0.026784165, 0.024375666, 2.625644E-4, -0.032916147, 0.019960085, -0.01202865, 0.0071701277, -0.0036542737, -0.0072254958, 0.0019430631, 0.02091518, 0.0057651703, -0.01942025, -0.0010623693, -0.012997587, -0.009578627, 0.007121681, -0.0014819533, 0.009191052, -0.033912767, 0.025884438, -0.009980042, -0.016139708, -0.04282698, -0.032916147, 0.009758571, 0.004945035, 0.017897636, 0.041581206, 6.0601765E-4, -0.02184259, -0.04097216, -0.012706906, 0.033331405, -0.052045714, 0.02802994, 0.036681157, -0.011246581, -0.038397558, -0.028348304, -0.17817353, 0.015502979, 0.006104298, -0.024583295, 0.022520846, 0.0100354105, 0.036182847, 0.0015572188, -0.010056173, -0.02653501, 0.015323034, 0.01763464, -0.042577825, -0.00583438, 4.3623758E-4, 0.017164012, -0.027130213, 0.02055529, 0.032833096, 6.998834E-4, 0.030563015, -0.012976824, -0.017136328, -0.0021801065, 0.00989007, 0.003237285, 0.020942863, 0.0013833294, -0.0016817964, -0.0090318695, -0.04374055, -0.007647675, 7.427069E-4, 0.0037477068, -0.01522614, 0.0072116535, -0.019807825, -0.019032676, -0.0037961535, 0.0053741354, 0.03288846, 0.0147555135, 0.024444876, 0.010076936, 0.015281508, 0.0059381947, 0.04631515, -0.022036377, 0.026438115, -0.026645744, -0.027836153, -0.05024626, 0.010083857, -0.007696122, -0.008713504, 0.014001128, 0.0050557707, 0.011488815, 7.89856E-4, -0.0035089331, -0.029427975, -0.013260583, 0.0027199422, -0.012886851, -0.021441173, -0.020942863, -0.014492517, -6.7349715E-4, -0.028182201, 0.011530341, -0.0186451, 0.007696122, 0.015309191, -0.009260261, 0.008651216, -0.020264609, -0.046508938, 5.2253343E-4, -0.008934976, -0.0011540722, -0.008485112, 0.046758093, -0.016125867, -0.003017544, 0.006640673, -0.01230549, 0.011025109, -0.0022164416, 0.012208596, -0.020195398, -0.0014361019, -0.024389507, -0.028791247, 0.003052149, 0.0053948984, 0.008775793, -0.0038688239, -0.0010130574, 0.0049761795, 0.0042944634, 0.010305328, -0.028251411, -0.0051422827, 0.022991471, 0.028071465, 0.00433945, 0.0041802675, 0.014354098, 0.025206182, -0.0015338606, -0.0091841305, -0.005612909, 0.021192018, 0.015849028, -0.009654757, -0.0024517546, -0.015378402, -0.028334463, 0.025427654, 0.015904395, 0.04703493, 0.005401819, -0.006509175, -0.010692903, 0.006367295, -0.0084435865, -0.085820064, 0.0011618583, 0.0020797523, 0.042660877, -0.02624433, 0.046204414, -0.0092394985, 0.023683568, -0.028375989, 0.0362659, 0.0016523822, -0.036459684, 0.014284887, -0.01814679, 0.014070338, 0.01892194, -0.013385162, -0.0152676655, -0.006176968, 0.019198779, -0.005208032, -0.01373121, 0.007668438, -0.006104298, -0.02127507, 0.013066797, -0.03358056, 0.034854017, 0.014893933, 0.0083674565, 0.005785933, -0.020361502, 0.01159955, -0.040086273, -0.018617418, -0.028818931, -0.0013383431, -0.025870597, 0.011426526, -0.041858044, 0.0027718495, 0.015544505, -0.016305812, -0.012160149, -0.010713666, -0.0013366129, -0.023918882, 0.037594724, -0.013350557, -0.029760184, -0.015752135, -0.023226785, -0.02433414, -0.010443748, 0.009640915, 0.027213264, 0.018755836, 0.005201111, -0.010429906, -0.01757927, -0.004062611, -0.004668196, -0.017427009, 0.016942542, 0.0028860457, -0.0059035895, -0.008187511, -0.012769194, 0.012243201, -0.018271368, -0.036127478, 0.035822954, -0.028818931, -0.00797296, -0.021219702, 0.004723564, -0.027061004, -0.021801064, 0.029095769, -0.03502012, 6.7825534E-4, -0.03513086, 0.0059035895, -0.0090872375, 0.02426493, 0.01878352, 0.00860969, 0.019226462, 0.006744488, -0.04019701, -0.003692339, 0.013433608, -0.006318848, -0.0047858525, 0.0012968173, 0.01515693, 0.010208434, 2.7900172E-4, -0.014215678, -0.0032424757, -0.0012501007, 4.9917516E-4, -0.07546629, 0.029511027, -0.018492838, -0.006225415, -0.014520201, -0.024098827, -0.0014551345, -0.0027874217, 0.0016497868, 0.010229197, 0.011122003, 0.01871431, -0.010146146, 0.0040591503, -0.01038838, 0.007689201, 0.0044501857, -0.011488815, 0.008402061, 0.0030971353, -0.013994207, 0.030646067, 0.015461453, -0.0013954411, 0.01081056, 0.012471593, 8.582006E-4, 0.019600194, -0.030646067, -0.009772413, 0.02754547, -0.015502979, 3.6956913E-5, 0.002818566, -0.0049346536, -0.016305812, -0.01394576, -0.0038895868, 0.018935781, 0.009225656, -0.011281186, -0.025344603, 0.004945035, -0.009128763, -0.007910672, 0.019461775, -0.018617418, 0.0045851446, 0.010596009, 0.01408418, 0.030424597, 0.020942863, -0.0046439725, -0.014630936, 0.020998232, -0.017953003, 0.04631515, 0.007107839, -0.009197973, -0.0016402706, 0.026147434, 0.017454693, 0.03778851, -0.022160955, -4.7365407E-4, 0.0064018997, 0.008388219, -0.003920731, 0.0032251733, -0.036459684, -0.01984935, -0.0049000485, 0.004782392, 0.035518434, 0.0068690656, 0.010692903, 0.0053014653, 0.008838083, -0.0027908823, 0.020610657, 0.021039758, -0.0018409787, -0.030396912, 0.027656207, 0.010284565, 0.017039435, -0.005578304, 0.026770324, 0.01024996, 0.005661356, -0.012367778, 0.016098183, 0.0014291808, -0.008616611, -0.0016246984, 0.038259137, -0.013876551, -0.0019586354, 0.0035193146, 0.024458718, -0.0061873496, -0.0010485274, -0.013253663, -0.03200258, -0.021012073, 0.0046751173, -0.030341545, -0.028279094, 0.016125867, 0.0013850597, 0.029012717, 0.015558347, -0.01757927, 0.011682602, -0.037373252, 0.0062877038, 0.007121681, -0.021939484, -0.009682441, 0.050495416, 0.016264286, 0.016887173, 0.010769034, 0.009370998, 0.055173993, -6.3067366E-4, 0.014326413, -0.029068086, -0.0057305656, -7.513581E-4, 0.0057720914, -0.014976985, -0.02348978, 0.001487144, -0.0055125547, 0.009218736, 0.017399326, 0.017717691, -0.036182847, 0.08227652, 0.032916147, 0.0019257606, 0.021759538, -0.015544505, 0.020084662, 0.032417838, 0.015765976, -0.015489137, -0.0022112508, 0.0011410954, -0.014949301, 0.011108161, -0.018880414, 0.004958877, -0.0041837282, 0.020707551, 0.010734429, -0.013848866, -0.019392565, -0.014139547, -0.022285532, 0.03286078, 0.0042356355, -0.017690007, -0.014381781, 0.0067687114, -0.0122916475, -0.007384678, -0.035933692, 6.3197134E-4, -0.013980365, -0.005450266, 0.014630936, 0.0069901827, -0.016831806, -0.0026524628, 0.013461292, 0.030479964, -0.0037269439, -0.008270563, 0.001231068, -0.027683891, -0.009350235, 0.033746663, -0.010658298, -0.005457187, -0.02156575, -0.022714633 ], + "id" : "edac86fe-c329-4ced-8831-32508a556a6a", + "metadata" : { + "source" : "movies.csv" + } + }, + "bc63fd02-a342-45cd-aa60-75f6d47b5afc" : { + "text" : "Bernstein-Steve Blum-Bern Colla�_o-Brendan Cook-Sabine Crossen-Matthew Dale-Zarene Dallas-Dave Prince-Gareth Edwards-Daniel Eghan-Marc Esse-Jake Francis-Scott Frazer-Steven James Griffiths-Sam Hanover-Philip Harvey-James Henri-Thomas-Dolly Jagdeo-Gary Kiely-Kamil Lemieszewski-Tyrone Love-Obie Matthew-Sandeep Mohan-Robert Strange-David Norfolk-Axel Nu-Jem Kai Olsen-Mike Prior-Louis Samms-Scott Tanner-Arti Shah-Kiran Shah-Tim Stafford-Scott Stevenson-Matthew Stirling-John Swartz-Albert Tang-Vince Taylor-Michael Thyx-Tony Toste-Sezer Unver-Pablo Verdejo-Jay Waddell-Paul Weston-John Whitby-Boriana Williams-Dion Williams-Ivy Wong-Hiu Woong-Sin-Sam Wilkinson-Hugh O'Brien,rebel-spacecraft-space battle-space travel-prequel-rebellion-female protagonist-space western-suicide mission-robot-spin off-space opera-alien language-against the odds-blind man,/i0yw1mFbB7sNGHCs7EXZPzFkdA1.jpg,/6t8ES1d12OzWyCGxBeDYLHoaDrT.jpg,140607-1895-1894-1893-181808-11-1891-348350-1892-181812-284052-271110-12180-263115-259316-283995-246655-209112-329865-118340-188927\r\n420817,Aladdin,Adventure-Fantasy-Romance-Family,en,A kindhearted street urchin named Aladdin embarks on a magical adventure after finding a lamp that releases a wisecracking genie while a power-hungry Grand Vizier vies for the same lamp that has the power to make their deepest wishes come true.,49.295,Walt Disney Pictures-Rideback,5/22/19,183000000,1054304000,127,Released,Choose Wisely.,7.1,9068,Will Smith-Mena Massoud-Naomi Scott-Marwan Kenzari-Navid Negahban-Nasim Pedrad-Billy Magnussen-Numan Acar-Jordan A. Nash-Taliyah Blair-Aubrey Lin-Amir Boutrous-Omari Bernard-Nathaniel Ellul-Sebastien Torkia-Buckso Dhillon-Woolley-Ceara Batson-Vinani Mwazanzale-Demii Lee Walker-Elena Zacharia-Nazerene Williams-Bessy Naidu-Marisha Wallace-Maya Saroya-Amer Chadha-Patel-Omar Abidi-Stefan Kalipha-Firas Waleed Al-Taybeh-Nina Wadia-Elif Knight-Saikat Ahamed-Amed Hashimi-Stefan Capper-Jamal Sims-Alan Tudyk-Frank Welker-Robby Haynes-Bern Colla�_o-Michael Herne-Hiten Patel-Joey Ansah-Luke Johnson,hero-hustler-palace-musical-sultan-flying carpet-rags to riches-romance-monkey-family-first love-based on myths legends or folklore-genie-arabian nights-aladdin-live action and animation-live action remake,/ykUEbfpkf8d0w49pHh0AD2KrT52.jpg,/rVqY0Bo4Npf6EIONUROxjYAJfmD.", + "embedding" : [ 0.01255404, -0.030408373, -0.008244139, -0.04581747, -0.027116181, 0.04393231, -0.0075064693, -0.0034629481, -0.02006734, -0.03710204, 0.018878873, 0.038249526, 0.025599862, 0.01053911, -0.0054095755, 0.006977123, 0.02912428, -0.008408065, 0.0078070015, -0.014958296, -0.011857353, -0.0076020933, -0.007007859, 0.014767049, 0.0058159768, 0.0067312336, 0.030763546, -0.0071649556, -0.0073288823, -0.013469297, 0.010614243, -0.004948532, 0.0025972112, -0.011549991, -0.022854092, -0.0035005147, 0.0036917622, -0.024370411, 0.017758708, -0.008578822, -0.010224918, 0.012424265, -0.022253027, -0.002272773, 0.0050475714, 0.016078461, 0.02786751, 0.0022420369, 2.9156724E-4, 0.026788328, 0.031992994, 0.05122704, -0.02486219, -0.01277944, -0.0048290025, -0.003071915, -0.014179645, 0.0022386217, 0.0016435343, 0.021228487, 0.019206725, -0.020654744, -0.015204187, -0.014343572, -0.031965673, -0.012144224, -0.011427046, -0.026706364, 0.003958143, 0.0027850436, 0.030708903, 0.015750607, 0.0072127674, 0.0053310273, 0.023373192, -0.023905953, -0.02109188, -5.7075464E-4, -0.011741238, 0.0066356095, 0.007397185, -0.008599313, -0.020641083, 0.002901158, 0.011898334, 0.021747587, -0.013155105, 0.015654985, -0.04693763, 0.003760065, 0.0035824778, 0.039233085, -0.008490029, 7.3382736E-4, 0.0015094902, 0.016857112, -0.019780468, 0.023427835, -0.010477638, -0.035735983, 0.007888964, -0.0023666893, 0.0018766173, -0.01427527, -0.0026603912, 0.011106023, 0.0036063837, -0.01427527, 0.018373432, 0.0033229275, 0.014889994, -0.010204427, 0.017881652, -0.047566015, -0.023496136, -0.03182907, 0.008845203, -0.019520918, -0.0073083914, -0.031911034, 0.031911034, 0.028495897, 0.0054539726, -0.03141925, 0.029752666, 0.040981635, -0.012704306, -0.012506229, 7.2016683E-4, -0.009364303, 0.024233807, 0.00525931, 0.020026358, 0.005187592, -0.027935814, 0.040435214, -0.024971476, 0.0033826923, -0.030982114, -0.026433153, 0.025272008, 0.03789435, -0.017731387, -0.015176865, -0.027826529, 0.0049177962, 0.013380503, -0.004361129, 0.0038966704, 0.0031658313, 0.011078701, 0.0063999654, 4.213424E-4, 0.007820662, 0.01629703, 0.009220867, -0.00827829, 0.00489389, -0.008360254, -0.01529981, -0.0017536724, -0.008517349, 7.380963E-4, -0.007226428, 0.01255404, 0.02934285, 0.0037088378, -0.020149304, -0.02057278, 0.004798266, -0.0074381665, 0.033085838, -0.03688347, 0.016542919, -7.0394494E-4, 0.01077134, -0.003095821, -0.006867839, -0.031228006, -0.0057408437, -0.008148515, 0.002083233, 0.029397491, 0.03737525, -0.010662055, 0.0055769174, 0.028222686, 0.002585258, 0.012711137, -0.027976796, 0.012581361, 0.017949956, -0.005542766, -0.016092122, -0.63384926, -0.032676022, -0.013838132, -0.018988157, 0.019261368, 0.016488278, -0.0046480005, -0.006468268, -0.029534098, -0.01102406, -0.032566737, 0.024370411, 0.02934285, -0.013025329, -0.011563651, -0.0049314564, 0.008264629, -0.021529019, 0.037265968, 0.005894525, -0.014862672, 0.018523699, 0.017253269, 0.0040503517, 0.010395674, 0.0042996565, -0.019479936, -0.0118436925, -0.0018646644, -7.9145783E-4, -0.024247468, 0.0345885, 0.012349132, 0.010306881, 0.041610017, 0.010873794, -0.024971476, 0.048959393, 0.022034459, 0.02710252, -0.026474135, -0.02005368, 0.007069332, 0.0012081044, -0.0089066755, 0.019029139, 0.014329911, 0.004419186, -0.014329911, -0.011638784, -0.0113997245, -0.001418989, 0.0012909215, -0.004559207, -0.006693667, -0.0049929293, 0.024725586, -0.026528778, 0.03404208, 0.0022266689, -0.023960596, 0.023059, 0.0109557565, 0.008756409, -0.0045284703, 0.01779969, -0.0016930538, -1.2369196E-4, 0.0034373344, -0.026173603, -3.2635895E-4, 0.01254038, -0.011618293, 0.008408065, 0.008893015, -0.005109044, 0.03008052, 0.00828512, -0.0025681823, 0.007984588, 0.0038283677, 7.876158E-4, 0.008858863, 0.0013259266, 0.0396429, 0.012130564, -0.020258587, 6.830272E-4, 0.01631069, 0.0028294404, 0.006471683, 0.018373432, 0.0032887761, -0.015217847, 0.0023376606, 0.00639655, -0.018359773, 0.006772215, 0.023605421, -0.06873986, -0.012581361, -0.0235781, 0.028960355, -0.014084022, 0.003613214, 0.0039205765, -6.4503384E-4, 0.0057749953, 0.030271767, -0.023728367, -0.015859893, -0.0068917447, -0.025736466, -0.013769829, 0.0055393507, -0.031228006, 0.013633223, 0.0114202155, -0.010375184, -0.0012755534, 0.0061643207, 8.308386E-5, 0.0065570613, -0.014398214, -0.0040947483, 0.034397252, -4.3244162E-4, -0.009739968, 7.7000645E-5, 0.020272247, 0.002656976, -0.0073152217, 0.016693186, -0.011256289, 0.0035995536, 0.0039683883, 0.014111343, -0.005044156, 0.005515445, -0.008619804, -0.016433636, -0.0065434007, -0.014070361, -0.007902625, -0.022280348, -0.0017775784, -0.020968936, 0.0013276342, -0.009651175, -0.017471837, -0.030763546, 0.005546181, 0.0054266513, 0.015381773, 0.021583661, 0.0026279474, -0.032266207, -0.020627422, 9.887887E-5, -0.017007379, 0.02359176, 0.017922634, -0.010163445, -0.020408854, 0.028304648, -0.0037190833, -0.0018288054, 0.007192277, -0.008893015, -0.014958296, 0.008373914, -0.008879354, 0.0019329671, 0.027566979, -0.030818189, 0.031992994, -0.02486219, 0.0060584517, -2.2628612E-6, -0.0035654022, 0.013735678, 0.0012157884, -0.02606432, -0.0063316626, 0.049806345, 0.033522975, 0.013243898, -0.012998008, -0.0026330699, 2.1547374E-4, -0.027881172, -0.0047572847, 0.005945752, -0.006570722, -0.009336982, 0.027061539, -0.0030223955, -1.9925185E-4, 0.007622584, -1.290281E-4, 0.036692224, 0.037347928, 0.0065638917, -0.011085532, 0.02207544, -0.04237501, 0.0043030716, -0.028987676, 0.01655658, -0.0061028483, 0.016460957, -0.009821932, -0.017362552, 0.009985859, 0.023496136, -0.0017622103, -0.008633465, 0.0062087174, 6.352153E-4, 0.016201407, 0.0058364677, -0.010006349, 0.016338011, 0.026542438, -0.032730665, -0.0015282735, 0.025531558, -0.015354452, -0.0017929465, -0.017881652, 0.008380744, 0.008339763, -0.0044806586, -0.0024025482, -0.012342302, 8.9220435E-4, 0.029178923, -0.012608683, 0.040708423, -0.015108562, -0.010402504, 0.011679766, 0.02308632, 0.014425535, -0.0040264456, -0.009091092, 0.01329171, 0.02229401, -0.013496618, 0.050680622, -0.017854331, 0.016611222, -0.0012063968, -0.0028909128, -0.0021788569, -0.0139132645, 0.00640338, 0.008052891, 0.022635523, 0.022157403, 0.010737188, -0.018250488, 0.008148515, 0.0051056286, 0.011748068, -0.008701767, -0.015955517, -3.831356E-4, -0.007827492, -0.023892293, -0.022703825, -0.018701285, -0.0038693494, 0.009480418, -0.0018219751, -0.03035373, -0.008852033, 0.0038761795, 0.012595022, 0.030381052, -0.0023376606, -0.034424573, 0.019862432, 0.022936054, -0.018755928, -0.021433394, -0.008954487, 0.0064819283, -0.03283995, -0.011577312, -0.018701285, 0.030954795, 0.001063815, 0.009296001, -0.012629174, -0.0121373935, 0.014193306, -0.026883952, 0.022485256, 0.023482475, 1.18142365E-4, 0.0062326235, -0.003964973, -0.015176865, 0.026419492, -0.021720266, 0.003032641, -0.015163205, 3.61791E-4, -0.014288929, 0.0034544102, -0.003561987, -0.0386047, 0.018974496, -0.01505392, -0.015668646, -0.010354693, 0.009692157, 0.0015453491, -0.01230132, -0.01380398, -0.028222686, -0.02180223, 0.028277328, 0.080597214, 0.032676022, -0.0012029817, 0.011618293, -0.017376212, 0.020285908, -0.010416165, -0.02855054, -0.0041015786, -0.005348103, 0.01729425, -0.016419975, 0.027389392, 0.0047197184, 0.015873553, -0.014411875, -0.0061267545, -0.0061643207, 0.012847742, -0.014370893, -0.02154268, -0.0030138576, 0.02658342, 0.03639169, 0.0033263427, -0.0235781, 0.01907012, 0.018783249, -0.0031931524, 0.011222137, -0.011447537, 0.0023513213, 0.012595022, 0.031009436, 5.9935637E-4, -0.002534031, 0.028905712, 0.012403774, 0.022621863, -0.010183936, 0.011263119, 0.0047914363, 0.003111189, -0.0022369141, 6.847348E-4, -0.02081867, -0.012683815, 0.021925174, 0.023304889, -0.034014758, 0.0064511923, 0.0019329671, -0.017676745, -0.01681613, 0.025722805, 0.005016835, -0.0012832374, -8.9754045E-5, -0.011092362, -0.0070829922, 0.008920335, -0.028168043, 0.021624641, -0.01154316, 0.0018492963, -0.007841153, -0.02057278, -0.009350643, -0.017212287, 0.022253027, -7.666981E-4, -0.008421726, -0.01932967, -0.0028277328, -0.0014343571, -0.0025289084, 0.028222686, -0.015709626, 0.003736159, 0.01803192, -0.027976796, -0.027525997, 0.011597803, -0.024302108, -0.010948926, 0.008913506, -0.017977277, 0.028905712, -0.02535397, 0.008360254, -0.0020337135, 0.005693032, -0.019411635, -0.016365333, 0.041446093, 0.013346352, 0.0140567, 0.011871013, 0.004658246, -0.008155345, 0.008681276, -0.012875063, -0.002218131, -0.008005079, -0.0022847261, -0.014220627, -0.018195845, -0.005788656, -0.0029797063, -0.03789435, -0.02882375, -0.01983511, -4.593358E-4, -0.009193546, 0.012656495, -0.009036451, 0.01732157, 0.009036451, 0.002976291, 0.005276385, 0.00977412, -0.011836862, 0.007042011, 0.024261128, -0.013120953, 0.034916352, -0.013373673, -0.020422515, -0.007725038, 0.03833149, 0.019999037, 0.010211257, -0.019862432, 0.0012832374, -0.01355126, -0.016228726, 0.01980779, -0.008449047, -0.012697476, 0.0071103135, -0.021187505, 0.011331421, 0.023140963, 0.0018441735, -2.8238908E-4, -0.027908493, 0.012444756, -0.017389873, 0.012362793, 0.02282677, -0.0045489613, 0.012642834, -0.014671425, -0.0066834213, -0.0021054314, -0.025217365, -0.026269227, -0.007123974, 0.031064078, 0.013441976, 0.03281263, 0.008141684, 0.03516224, 0.009794611, 0.014152324, 0.01732157, -0.009070601, -0.007718208, -0.027717246, 0.00614383, 0.010921606, 0.025968695, 0.016256047, 0.01957556, -0.0010971125, 0.011147005, 0.006099433, 0.009261849, -0.0037498195, -0.022744806, -0.03554474, -0.004070842, -0.01830513, -0.00425526, -0.023154624, -0.01680247, 0.03467046, -0.010354693, -0.0107235275, -0.0036473654, 0.035025638, -0.010218088, 0.027239125, -0.0075132996, 0.03330441, -0.025381291, -0.014944636, -0.021132862, -0.018387092, -0.009336982, -0.020531798, 0.0096033625, -0.0100678215, -0.019001817, 0.001423258, 0.020600101, -0.019015478, -0.017608441, 0.027280107, -9.306246E-4, -0.01681613, -0.038987193, -0.002545984, -0.03133729, -0.03010784, -0.0016409729, -0.002976291, 0.014999278, -0.026487796, -0.03483439, 0.021173844, -0.006078942, 0.034697782, 0.026378512, 0.046719063, 0.027758226, 0.0059081856, -0.021515358, 0.010183936, -0.016501937, -0.011871013, 0.02882375, 0.023523457, -0.026542438, -0.010368354, 0.022908734, -0.005641805, -0.03691079, -0.02882375, 0.022457935, 0.025162723, 0.028058758, -0.02458898, 0.0034424572, -0.02912428, 0.014644104, -0.0066321944, -0.0029284793, 0.0093916245, -0.023386853, -0.013182426, -0.0052558947, -0.0077113775, 0.008524179, 0.004385035, -0.02005368, 0.01778603, -0.011830032, -0.007923116, -0.011816371, -0.00777968, 0.028386611, -0.026364852, 0.012478908, 0.013469297, 0.019097442, -0.008988638, -0.013667375, 0.010866963, 0.02808608, -0.008852033, 0.009418946, -0.0031402176, -0.0072947307, 0.0063316626, 0.02155634, -0.031255327, -0.011351912, -0.019944396, -0.0025152478, 0.025476916, -9.546373E-5, 0.008005079, -0.0017519648, -0.01728059, -0.0091593955, 0.02229401, -0.008933996, 0.0059286766, -0.058357846, 0.01453482, -0.010252239, 0.0123081505, -0.0067278184, -0.011509009, 0.0053310273, 0.0036473654, 0.009289171, -0.012636004, -8.6616393E-4, -0.02580477, -0.011351912, -0.032074958, -0.014753388, -0.0044055255, -0.013243898, 0.0076089236, -0.027498676, 0.0082714595, 0.00829195, -6.48449E-4, -0.00953506, -0.0059320917, -0.010928435, -0.009473587, 0.021488037, -0.0030275183, -0.0060243, -0.0043542986, 0.018250488, -0.0012473785, -0.0071103135, 0.0014215504, 0.005846713, 0.026993236, -0.03382351, 0.0045523765, -0.009821932, -0.03658294, -0.0048324177, 0.010450317, 0.026419492, 0.031364612, 0.0071444646, -0.02710252, -0.008073382, -0.007356203, 0.03661026, -0.007888964, 0.0017724556, 0.038577378, 0.022963375, 0.040435214, 0.041719303, -0.008961317, -0.025121741, -0.004712888, -0.0042484296, -0.023455156, 0.0072947307, 0.015081242, 0.007376694, -4.1835418E-4, -0.010272729, -0.020367872, 0.0037088378, -0.012465247, -0.027512336, -0.004869984, 0.027006896, 0.031747106, 0.007950437, 0.008872524, 0.022512577, 0.0035005147, 0.002534031, -0.010866963, -0.00244353, 0.026747346, 0.008879354, 0.012854572, 0.020395193, -0.030025877, -0.019288689, 0.015176865, 0.021132862, 0.016351672, 0.030162483, -0.025941374, -0.0055393507, -0.005471048, 0.011488518, -3.487708E-4, -0.014917315, 0.023673724, -0.044669982, -0.008408065, 3.596565E-5, 0.024520678, -0.0072605796, 0.0027508922, 0.0057818256, -0.015122223, -0.0018168525, -0.0037020077, -0.016338011, 0.002392303, -0.024233807, 0.014753388, 5.955144E-4, 0.0040810877, 0.023059, 0.017608441, -0.0064102104, 0.011713917, -0.005894525, 0.007424506, -0.0190428, -0.005187592, -0.0014138664, 0.023127303, -0.022676503, 0.007888964, -0.016761487, 0.010320541, -0.014767049, 0.009651175, -0.0075474507, 0.041090917, 0.009951707, -0.033741545, 0.007465488, -0.022785788, 0.005293461, -0.012335472, -3.6115065E-4, -0.018141203, -0.016447296, -0.008107534, -0.0035312509, -0.03535349, -0.028031437, 0.015627664, -0.011666105, -0.0105322795, 0.0069873687, 0.19550972, -0.014206966, 0.010668885, 0.040243965, -0.011345082, -0.0036951774, 0.03259406, 0.02882375, -0.008107534, 0.018277809, -0.015832571, 0.012574531, -8.179251E-4, -5.284923E-4, 0.0145484805, -0.007369864, -0.02408354, -0.027116181, -0.02135143, -0.021255808, -0.010054161, -0.00952823, -0.005416406, -0.028386611, -0.0075132996, 0.00877007, -0.0148216905, 0.0095214, 0.02479389, 0.0058808643, -0.011181156, -0.012021279, -0.007322052, 0.0043167323, -0.016925415, -0.010907945, -6.1685895E-4, 0.019097442, 0.009678496, -5.4172595E-4, 0.003941067, -0.0034919768, -0.01680247, -0.013612732, 6.8644236E-4, 0.016010158, -0.029042318, -0.0047367937, -0.010839642, 0.011092362, -0.034315288, 0.004856324, 0.02682931, 0.028495897, -0.0065297405, -4.3308196E-4, 0.007943607, 0.0035278357, -1.3009534E-4, 0.013455637, 0.015327131, 0.03589991, -0.021447055, 0.01002684, 0.012178375, 0.02934285, -0.033413693, -0.015928196, 0.015982836, -0.028933033, -0.012403774, -0.041036274, -0.013824471, 0.0067039123, -0.003514175, -0.014944636, 0.0082714595, -3.831356E-4, -0.0029779987, 0.024985136, -0.026023338, -0.017403534, -0.0067824605, -0.012014449, -0.011768559, -0.021979816, 0.027785547, -0.017225947, -0.008653955, -0.021488037, -0.018919853, -0.019903414, -0.012922876, -2.894328E-4, -0.002510125, -0.0068097813, 0.030544978, 0.013687866, -0.013981568, -0.021119202, -0.038713984, 0.0136605445, 0.02532665, 0.007854813, -0.036774185, -0.019288689, -0.015422755, -0.0028789598, 0.03234817, 0.0018834476, -0.021447055, -0.006369229, 4.826548E-5, -0.028577859, 0.0019244292, 0.027635282, 0.013482957, -0.010334202, 0.043440532, -0.018455395, -0.012028109, -0.014862672, 0.030189803, 0.005460803, -0.012253509, -0.031911034, -0.021897852, 0.009309662, -0.010921606, -0.034424573, 0.018018259, -0.016488278, 0.012950196, -0.0069258963, -0.002518663, 0.004466998, 0.028741786, 0.0038181222, 0.0015897459, -0.0051227044, 0.00702152, -0.008066552, -0.0019261368, 0.004265505, -0.001624751, -0.019889753, 0.008394404, -0.010054161, -0.0056110686, -0.044287484, -0.019616542, -0.0058501284, 0.005696447, -4.490904E-4, 0.03814024, -0.0018868627, -0.019507257, -0.039069157, -0.0130048385, 0.033905473, -0.029151602, 0.027744567, 0.020449836, -0.0066151186, -0.008428556, -0.0040196152, -0.17551067, 0.024028897, 0.00978095, -0.032894593, 0.017963616, 0.009821932, 0.021447055, 0.004788021, 0.011358743, -0.018100223, 0.020490818, 0.01881057, -0.048959393, -0.00902962, 8.981808E-4, 0.01732157, -0.004214278, 0.014917315, 0.03010784, -0.003937652, 0.037511855, -0.001237133, -0.019643864, 5.763042E-4, 0.0042040325, -0.0013711771, 0.013380503, 0.0076430747, -0.005290046, -0.004559207, -0.018701285, -0.01228766, 0.005716938, 0.0034902692, -0.0113997245, -0.00926868, -0.026132623, -0.020477157, -0.0066526853, -0.0011602925, 0.04032593, 0.020982597, 0.021365091, 0.014384554, 0.016447296, 0.021897852, 0.03945165, -0.014575801, 0.023263907, -0.020244928, -0.02077769, -0.027525997, 0.032156922, -0.0021651962, 7.7480904E-4, 0.016351672, 0.0010663762, 0.008653955, 0.004111824, 0.004166466, -0.025777448, -0.018236827, 0.0072332583, -0.012506229, -0.008011909, -0.0074040154, -0.017471837, 0.013844962, -0.029616062, 0.008660785, -0.02708886, 0.02983463, 0.015532039, 7.871889E-4, 0.0134488065, -0.02536763, -0.043167323, -0.0028618842, -0.011427046, 0.0063999654, -0.021938834, 0.045516934, -0.0038010466, 0.007397185, 0.012355963, 0.005471048, 0.013967907, -0.009569212, -0.0011841984, -0.0064580226, 9.0928003E-4, -0.018141203, -0.03141925, 0.0027969966, -0.0051192893, -2.4226122E-4, 0.0036576109, 0.012601852, 0.017649423, -0.005163686, 0.0053617638, -0.0040469365, -0.0037908012, 0.03185639, 0.029288208, 0.020968936, -0.006871254, 0.015422755, 0.01280676, -0.001953458, -0.010129293, 0.006188227, 0.0096033625, 0.018619323, -0.014452856, 0.0141250035, -0.019999037, -0.029561419, 0.009118414, 0.02633753, 0.04682835, -0.00425526, 0.006119924, -0.0033980606, -0.0019790714, -0.019356992, -0.07770118, -0.01052545, 0.0032170583, 0.036473654, -0.01706202, 0.030572299, -0.019889753, 0.0060686967, -0.024315769, 0.037238646, 0.0035517416, -0.025026118, 0.004859739, -0.007499639, 0.024903173, -6.650978E-4, -0.011754898, -0.0012021279, -0.011748068, 0.024274787, -9.878281E-4, -0.0033382955, 0.013640054, -0.022867752, -0.013530769, 0.028714465, -0.040462535, 0.02658342, 0.013079971, 0.0018083146, 0.010020009, -0.022744806, 0.0029114035, -0.043303926, -0.033550296, -0.037730426, -0.024930494, -0.027444035, -0.0014078899, -0.05212864, 0.008401235, 0.02178857, 0.010320541, -0.027539657, -0.015955517, 0.006874669, -0.0255862, 0.029534098, -0.016338011, -0.030626941, 0.003842028, -0.014206966, -0.022375973, -0.017990937, 0.01529981, 0.023018017, 0.009726307, 0.0095828725, -0.0074381665, -0.023701046, -0.027976796, -0.005952582, -0.024998797, 0.011392894, 0.0023188775, 0.008449047, -0.009425776, -0.011249458, 0.011228967, -0.026159942, -0.026720025, 0.03936969, -0.037020076, -0.010580092, -0.012014449, -0.0074040154, -0.022949714, -0.013523939, 0.037511855, -0.039588258, 0.0100405, -0.027280107, 0.019206725, -0.01228766, 0.013462467, 0.021515358, 0.0026638063, 0.01255404, 0.007103483, -0.04510712, -0.007356203, 0.009671666, -7.2016683E-4, -0.009336982, 1.1269949E-4, 0.016734168, 0.01853736, 0.008114363, 4.1024323E-4, 9.2208677E-4, -0.017198626, -0.0030428863, -0.073275164, 0.030463014, -0.012396945, -0.00879739, -0.016529258, -0.0087769, 0.003633705, 0.0044772434, -0.011372403, 0.013482957, -0.004856324, 0.015955517, -4.892183E-4, -0.002692835, -0.0053207823, 0.0029626307, 0.0015666938, -0.0033007292, -0.0073288823, 2.9668996E-5, -0.022717485, 0.02555888, 0.021187505, 0.0031521707, 0.008722258, 0.031665143, 0.015094901, 0.020709386, -0.0102795595, -0.018619323, 0.038030956, -0.01504026, -0.008517349, -0.0022130082, -0.018072901, -0.032785308, -0.0031709538, -0.0018527113, 0.022772128, 0.01555936, 6.424725E-5, -0.016269708, -0.0058876947, -0.0021805645, -6.7705073E-4, 0.016775148, -0.015258828, 0.013243898, 0.006369229, 0.01579159, 0.02710252, 0.0016153594, 0.0018800325, -0.012717967, 0.011454367, -0.024425054, 0.049560457, 0.0010142954, 0.007322052, -0.0030104425, 0.034424573, 0.0012089582, 0.02606432, -0.03158318, -0.012581361, -2.0117286E-5, 0.007465488, -0.0037908012, 0.0013660544, -0.022007138, -0.008367084, -0.013496618, 0.017867992, 0.040817708, 0.007192277, 0.013476127, -0.005973073, 0.011816371, -6.6082884E-4, 0.019193064, 0.01830513, -0.013667375, -0.026679045, 0.014439195, 9.195254E-4, 0.0072537493, -0.013722017, 0.0098151015, 0.0040264456, 0.009698987, 0.0062121325, 0.0056144837, 0.020244928, 0.0011970053, 0.007472318, 0.01605114, -0.017758708, -0.0058125616, 0.002146413, 0.016105782, -0.009944877, -0.006666346, -0.006423871, -0.028331969, -0.025394952, 0.005918431, -0.017458176, -0.015955517, 0.021474376, 0.021023579, 0.029096961, 0.016447296, -0.024520678, 9.357473E-4, -0.028960355, 0.011474857, -0.020395193, -0.015176865, -0.005498369, 0.02785385, 0.009357473, 0.010894285, 0.03508028, -0.009719478, 0.03636437, 0.0073288823, 0.023099981, -0.024520678, 0.0014446026, 0.0024845116, -0.006041376, -0.0031846145, -0.019261368, 0.007704547, -0.00702152, 0.0011389479, 0.016201407, 0.008080212, -0.018264148, 0.07212768, 0.024629962, 0.001292629, 0.026556099, -0.004589943, 0.010129293, 0.02128313, 0.016747829, -0.014507499, -7.7865104E-4, 0.011106023, -0.0015812081, -9.33186E-4, -0.022089101, 0.0060891877, 0.0015487643, 0.010648395, 0.021870531, -0.028523218, -0.016501937, 0.0035210054, -0.01028639, 0.038249526, 0.008408065, -0.012492568, -0.02058644, 0.02034055, 0.0038488584, 0.008660785, -0.028304648, 0.0029318945, -0.021638302, -0.015081242, -0.0031282648, 0.021460716, -0.01752648, -0.002708203, 7.1376347E-4, 0.020996258, 0.0028550539, -0.008435386, -0.009261849, -0.012574531, -0.014698746, 0.01655658, -0.016392654, -0.005290046, -0.019698506, -0.0057101077 ], + "id" : "bc63fd02-a342-45cd-aa60-75f6d47b5afc", + "metadata" : { + "source" : "movies.csv" + } + }, + "1f68749b-1442-4da5-9ab6-128f3ac4adec" : { + "text" : "7,5367,Ben Stiller-Robert De Niro-Teri Polo-Blythe Danner-Nicole DeHuff-Jon Abrahams-Owen Wilson-James Rebhorn-Tom McCarthy-Phyllis George-Kali Rocha-Bernie Sheredy-Judah Friedlander-Peter Bartlett-John Elsen-Mark Hammer-Amy Hohn-William Severs-John Fiore-Marilyn Dobrin-Marci Reid-Frank Santorelli-Russell Hornsby-Patricia Cook-Cody Arens-Cole Hawkins-Spencer Breslin-Ina Rosenthal-Kim Rideout-Kresh Novakovic-John Joseph Gallagher-G. A. Aguilar-Lynn Ann Castle,nurse-cia-airport-cat-orderly-airplane-father-in-law-epistaxis-daughter-lost baggage-urn-pavilion-volleyball-hospital-wedding,/5tXJ9ctuyEOMUFLaeqRisbXowWs.jpg,/qcVrlyPFlPgCsmzorvELvpJN9Be.jpg,693-39451-544-1593-9472-9522-1824-854-310-18360-1624-8488-788-9398-8467-9339-3981-2698-3049-2105-9506\r\n856,Who Framed Roger Rabbit,Fantasy-Animation-Comedy-Crime,en,'Toon star Roger is worried that his wife Jessica is playing pattycake with someone else so the studio hires detective Eddie Valiant to snoop on her. But the stakes are quickly raised when Marvin Acme is found dead and Roger is the prime suspect.,27.276,Amblin Entertainment-Silver Screen Partners III-Touchstone Pictures,6/21/88,70000000,329803958,104,Released,\"It's the story of a man, a woman, and a rabbit in a triangle of trouble.\",7.514,5015,Bob Hoskins-Christopher Lloyd-Joanna Cassidy-Charles Fleischer-Stubby Kaye-Alan Tilvern-Richard LeParmentier-Lou Hirsch-Betsy Brantley-Joel Silver-Paul Springer-Richard Ridings-Edwin Craig-Lindsay Holiday-Mike Edmonds-Morgan Deare-Danny Capri-Christopher Hollosy-Jean-Paul Sipla-Laura Frances-Joel Cutrara-Billy J. Mitchell-Eric B. Sindon-Ed Herlihy-James O'Connell-Eugene Gutierrez-April Winchell-Mae Questel-Mel Blanc-Tony Anselmo-Mary T. Radford-Joe Alaskey-David L. Lander-Fred Newman-June Foray-Russi Taylor-Les Perkins-Richard Williams-Wayne Allwine-Pat Buttram-Jim Cummings-Jim Gallant-Frank Sinatra-Tony Pope-Peter Westy-Cherry Davis-Jack Angel-Jeff Arbaugh-Corey Burton-Nancy Cartwright-Amy Irving-Mickie McGowan-Kathleen Turner-Frank Welker,falsely accused-based on novel or book-movie business-suspicion of murder-mental breakdown-innocence-cartoon-whodunit-los angeles california-love sickness-private detective-movie star-cartoon rabbit-neo-noir-1940s-live action and animation,/lYfRc57Kx9VgLZ48iulu0HKnM15.jpg,/tym6NH7ybFeldBuYYp0RSLpjZFq.", + "embedding" : [ 0.007166902, -0.030628935, -0.014011394, -0.0349546, -0.023871763, 0.034874, 0.014750251, -0.009665579, -0.026598813, -0.03506207, 0.01668471, 0.015368203, 0.0047186026, -0.0125739835, 0.002596071, 0.005185425, 0.014521876, -0.0072004865, 0.022085074, -0.036700986, -0.0037782404, 0.0027152954, -0.030010983, 0.010881333, 0.011170158, 0.0022148886, 0.026074896, -0.014199467, -0.0113783805, -0.015905552, 0.011351514, -2.70564E-4, -0.02250152, -0.03003785, -0.021144712, -7.338182E-4, 0.009054343, -0.0048327893, 0.0138770575, 0.014615913, 0.012788923, 0.008113981, -0.011472417, -0.0071736192, -5.738727E-4, 0.0076773847, 0.010391001, -0.0098603675, -0.002119173, 0.0131717855, 0.024892727, 0.021467121, -0.022864232, -0.019452062, -0.0012048389, 0.0014164203, -0.02321351, -0.0025221854, -0.0015616727, -1.8450407E-4, 0.017840011, -0.014320371, -0.033288818, -0.009417054, -0.0027740682, -0.015636878, 0.0053734975, -0.022703027, -0.0068075494, 0.006911661, 0.019949108, 0.015206997, 0.01618766, 0.01069326, 0.018054951, -0.02271646, -0.02767351, 0.012224707, -0.003366832, -0.0012896394, 0.015112962, -0.0037547313, -0.012123954, 0.0054507414, 0.016751878, 0.013581514, -0.013984527, 0.032885805, -0.030602068, 0.033315685, 0.0012468193, 0.06356847, 6.6077226E-4, 0.0076303664, 0.020352121, 0.02426134, -0.019908808, 0.02662568, -0.025040498, -0.033288818, -0.001957968, 0.0018504981, 0.0018605735, -0.01211052, 0.010384284, 0.0055985125, 6.2215026E-4, -0.0037177885, 0.023925498, 0.004554039, 0.010068591, -0.009746181, 0.025712185, -0.03796376, -0.010122326, -0.014736816, 0.028076524, -0.021897001, -0.009423771, -0.01826989, 0.022205979, 0.028425802, 0.0048865243, -0.046534486, 0.034605324, 0.024180738, -0.012627719, -0.023844894, 0.0018874409, -0.0022350391, 0.036083035, 0.0027253707, 0.02217911, 0.0068915104, -0.0047555454, 0.04981232, -0.025000196, 0.0032173817, -0.01646977, -0.030870743, 0.03194544, 0.02770038, -0.014898022, -0.022488087, -0.017571336, -0.0029100848, 0.012043351, -0.008926722, 0.038124964, 0.008624463, 0.012728472, 0.0070392815, 0.0020402498, 0.016953385, 0.017302662, 0.012271725, -0.0054507414, 0.004923467, -0.009410338, -0.011096273, -0.0052660275, 0.010706694, -0.0023307544, -0.0010394359, 0.0020788717, 0.019868506, 0.019143084, -0.014723383, -0.007227354, 0.007072866, -0.0025020347, 0.012144105, -0.018901277, 0.030091586, -0.0013106297, 0.0013408555, -0.014441274, -0.0078520235, -0.024100136, -0.010236513, -0.0059914496, -0.0017917255, 0.024986763, 0.044116415, -0.007005697, 0.011626905, 0.020687966, -0.037480146, -0.008879704, -0.0073012398, -0.00399318, 0.011512718, 0.015462239, -0.016268263, -0.6405209, -0.007126601, -4.941099E-4, -0.006589251, 0.02877508, 0.011432116, -0.012305309, 0.0055582114, -0.036378577, -0.0072542215, -0.028721344, 0.022232845, 0.04298798, -0.009316301, -0.026786884, -0.017745975, 0.024838991, -0.008234885, 0.006209748, 0.014199467, -0.011613471, 0.0122112725, -0.0037614482, 0.0019378175, 0.020298386, 0.013460611, -0.012144105, -0.027539175, 0.021588026, 0.0040704245, -0.017181758, 0.014857721, 0.015569709, -0.011828411, 0.036083035, 0.0099879885, -0.013386725, 0.03772195, 0.03304701, 0.028909417, -0.016026456, 0.0043189484, 0.011647056, 0.0061828806, -0.02117158, 0.014078563, 0.005726133, 0.016765311, -0.012063501, -0.013601665, -0.005255952, 0.014857721, -0.011002236, -8.4506645E-4, -0.0072139204, 0.009726031, 0.0044264183, -0.027807849, 0.021883568, 0.007395276, -0.005746284, 0.009826783, -0.0059780157, 0.004631283, -0.015112962, 0.032697733, -0.009564825, -0.008060246, 0.0129366955, -0.024180738, 0.011714225, 0.023750858, -0.028506404, -0.0050376537, 0.008866271, 0.015650311, 0.027377969, 0.0052358015, -0.0023559427, 0.009544675, -0.014186033, -0.0059142057, 0.0076438, 0.022192545, 0.017719109, 0.0054742503, -0.040140025, 0.0040704245, 0.015730914, -0.001391232, 0.006710155, 0.026128631, 0.0055279853, 0.012318742, -0.024959896, -0.009524524, -0.009511091, 0.003798391, 0.022447785, -0.06609402, -0.010061874, -0.020284953, 0.017289229, -0.00644148, 0.014186033, 0.0053499886, 1.7663273E-4, 5.8604707E-4, 0.015368203, -0.0040267645, -0.006253408, -0.012856092, -0.019935675, -0.014615913, -0.011116423, -0.02576592, 0.018202722, 0.023455316, 0.0041711773, -0.0017245568, 0.006357519, 0.009081211, 0.01125076, -0.013984527, 0.007899041, 0.036109902, 0.002896651, -0.004775696, 0.0076438, -5.201378E-4, 0.0027858226, 0.008597596, 0.021883568, -0.0074557276, 0.006199673, -0.005245877, 0.02383146, -0.0068277, 0.014024829, -0.001032719, -0.02788845, -0.013138201, -0.02192387, -0.013675551, -0.0060216757, -0.018471397, -0.01844453, -0.0029218392, -0.0025641657, -6.5279595E-4, -0.013682268, 0.0060821273, -0.009799916, 0.019599833, 0.0040267645, 0.006216465, -0.041322194, -0.028479537, 0.015677178, -0.011150007, 0.01812212, 0.01168064, 2.4600542E-4, -0.022555256, 0.019358024, -0.010726844, -0.010236513, -0.00562538, -0.017235493, -0.011512718, 0.023294112, -0.00852371, 0.009611843, 0.012903111, -0.01264787, 0.03218725, -0.016214529, 0.036512915, 0.012674737, -0.009638711, 0.0014542027, -0.009067777, -0.024167305, -0.020647664, 0.027216764, 0.018054951, 0.02336128, 0.003334927, -0.019855073, 0.0033181347, -0.008362506, 0.003915936, -0.008335638, 7.812561E-4, 9.269283E-4, 0.021668628, 0.017920613, -0.0044197016, 0.011331363, 0.0031384584, 0.030091586, 0.021413388, -0.0048059216, -0.008570729, 0.0099678375, -0.026061462, 0.0071601854, -0.020902906, 0.008691632, -0.013997961, 0.020553628, -0.0020771925, -1.2940474E-4, -0.0010377567, -0.0025154685, 0.022743328, -0.029876646, 0.01779971, -0.017598204, -0.0029906873, 0.0069318116, 0.01069326, 0.023979232, 0.017571336, -0.019223686, -0.0022216053, -0.001290479, -0.020231217, -0.0066094017, -0.012607568, -0.015798083, 0.0035498668, 0.014306937, 0.00882597, 0.0027068993, -0.030763272, 0.011203743, -0.019331157, 0.04102665, -0.012802358, -0.008322204, 0.019707302, 0.013272539, 0.016899649, 0.0049738437, -0.007260938, 0.01266802, 0.031811103, -0.0043726834, 0.05798004, -0.009685729, 0.029903512, -0.008335638, 0.027015258, 0.004261855, 0.009450639, 0.004060349, 0.011190308, 0.03997882, 0.020258086, 0.032590263, -0.02282393, 0.021426821, -2.4558563E-4, 0.011116423, -0.0035935263, -0.026558511, 0.0010856144, 0.014736816, -0.022017905, -0.0240061, -0.010108892, -0.0047353944, 0.021185014, -0.0017396698, -0.01406513, -0.027727246, 0.024879294, 0.018592302, 0.023092605, -0.013796454, -0.02389863, 0.026182367, 0.019720735, -0.025846522, -0.008261752, 0.0057664346, -0.022232845, -0.04435822, -0.024382245, 0.0030393845, 0.03377243, -0.018887844, 0.017020553, -0.0017480659, -0.016644409, 0.01657724, -0.0116336215, 0.0016280018, 0.019062482, 0.003227457, 0.007281089, -0.005823528, -0.008100548, 0.021870134, -0.017168324, 0.0015986154, -0.006078769, 0.003805108, 0.002527223, 3.559942E-4, 0.012392628, -0.03616364, 0.019720735, -0.017235493, -0.005994808, -0.008886421, 0.002804294, -3.075068E-4, -0.0207014, -0.022810496, -0.03686219, -0.023495618, 0.0031905142, 0.0600757, 0.02982291, 0.010075307, 0.019169953, -0.0059074885, 0.008154282, -0.0048327893, -0.007704252, -0.0020083447, -0.02770038, 0.032885805, -0.0143472385, 0.043256655, 0.0032711166, 0.014777118, -0.016160794, -0.015206997, -0.013675551, 0.007892325, -0.010397717, -0.01578465, -0.016321998, 0.01352778, 0.042289425, 7.9217105E-4, -0.020043146, 0.035115805, 0.025873391, 0.017383264, 0.0038017493, -0.005376856, 0.008893138, -0.008221451, 0.017289229, 0.009121512, -0.0050342954, 0.031461827, 0.0063373684, 0.03175737, 0.0035498668, 0.0040536323, 0.012251575, 0.002480205, -5.5729044E-5, 0.023656823, -0.029581103, -0.012856092, 0.01223814, 0.038474243, -0.03678159, 0.0077311196, 0.011411965, -0.00594779, -0.011170158, 0.018256458, -0.0062231817, -0.010364133, -0.0010360775, -0.019492362, -0.010961935, 0.0020049862, -0.017557902, 0.011707507, -0.010787296, 0.0036203938, -0.015086094, -0.022891099, 0.004191328, -0.005077955, 0.008490126, 0.020661097, -0.014548744, -0.0034793396, 0.001533126, 0.008100548, 0.0013996281, 0.042101353, -4.0028358E-4, 0.0019277422, 0.005168633, -0.034497853, -0.041644607, 0.019478928, -0.012903111, -0.010055157, 0.022058208, 0.006364236, 0.015556275, -0.03197231, 0.011371664, -0.0038554843, -0.002010024, -0.015112962, -0.03025279, 0.041832678, 0.0056690397, 0.0036237524, 0.035115805, 0.014011394, 5.0628424E-4, 0.008859554, -0.004638, -0.0017245568, -0.019223686, -0.024301643, -0.022689592, 0.0046984516, 0.0032341739, -0.026289836, -0.017987782, -0.015986156, -0.020499893, 0.0109283505, 0.0066362694, 0.012788923, -0.0040032556, 2.4978368E-4, 0.01700712, -0.01264787, 0.0010260021, 0.012150821, -0.012768773, -6.1963144E-4, 0.027619777, -0.017490733, 0.03860858, -0.013433743, -0.02005658, -9.4372046E-4, 0.02256869, 0.0033701905, 0.02239405, -0.01822959, -0.024274774, -0.022850798, -0.032751467, 0.00949094, 9.2273025E-4, -0.025712185, 0.00906106, -0.016550371, 0.013433743, 0.01833706, 0.0021225314, -0.010579073, -0.025309173, 0.018202722, 0.004050274, 0.013332991, 0.017638505, -0.0045406055, 0.02027152, -0.012909828, -0.008745367, -0.0019630059, -0.026155498, -0.00221153, 0.0056959074, 0.02379116, 0.010605941, 0.045406055, 0.0078520235, 0.03390677, 0.012251575, 0.015368203, 0.04212822, -0.02422104, -0.010794013, -0.030306526, 4.7332956E-5, 0.0019210253, 0.021614894, 0.004547322, 0.0071064504, 0.0084498245, 0.007637083, 0.007496029, 0.020607363, -0.007972927, -0.022649292, -0.031300623, 0.006293709, -0.024234474, 0.0072072037, -0.01786688, -0.007959493, 0.030010983, -8.2449603E-4, -0.00161037, -0.022326881, 0.029446766, -0.025040498, 0.0022283222, -0.018740073, 0.012479948, -0.03205291, -0.009786482, -0.01223814, -0.01661754, -0.008893138, -0.008080397, 0.014011394, 0.001247659, -0.018216155, 3.072969E-4, 0.021292483, -0.012822508, -0.042477496, 0.025027065, 2.3865885E-4, -0.008335638, -0.032348454, -0.012056785, -0.028372066, -0.014374105, -0.0011972823, -0.011418682, 0.007805005, -0.019546097, -0.04951678, 5.117417E-4, -0.019828206, 0.0360293, 0.013944225, 0.035841227, 0.027754115, 0.004352533, -0.008013228, 0.0023106039, -0.013447178, -0.0029419898, 0.014763684, 0.031300623, -0.009087928, -0.024986763, 0.0044029094, 0.013265822, -0.030763272, -0.04973172, 0.028237728, 0.033611227, 0.01679218, -0.024422545, -0.00914838, -0.022528388, 0.01822959, -0.016926518, -0.005783227, 0.014414407, -0.037936892, -0.019855073, 0.0104581695, -0.019693868, 0.006925095, 0.0019361383, -0.028452668, 0.012305309, -0.020123748, -0.002011703, -0.008980458, -0.0137695875, 0.03291267, -0.017463867, 0.01342031, -0.0020268161, 0.015771216, -0.0021846625, -0.0011191987, 5.8436784E-4, 0.032240983, -0.007865457, 0.008241601, -0.0013954301, 0.0030947987, -0.002381131, 0.02389863, -0.02576592, -0.020002844, -0.015341335, 0.002196417, 0.034685925, 0.006370953, 0.0053835725, 0.021158146, -0.014642781, -0.013917359, 0.006001525, -0.016268263, 0.017329529, -0.03659352, 0.0030393845, -0.0027623135, 0.01385019, -0.015663745, -0.012513532, 0.0016766991, -0.0072004865, 0.0077915713, -0.02256869, -0.009000608, -0.031246888, -0.017181758, -0.035250142, -0.041537136, -0.014884588, -0.0089200055, 0.008872988, -0.016980251, -0.011667206, -0.008698349, -8.207178E-4, -0.0077109686, 0.013467328, -0.02131935, 0.0064045372, 0.015139829, -0.003643903, -0.011734375, -0.00210406, 0.035680022, -0.0031468545, 0.00126697, -0.0014911456, 0.002842916, 0.020822303, -0.014253202, 0.003019234, -2.9701166E-4, -0.026128631, -0.0049839187, 0.013386725, 0.036727853, 0.020446157, -0.0047253193, -0.031381223, 0.005746284, -0.005094747, 0.025228571, -0.01700712, 0.004517096, 0.017275793, 0.014871154, 0.033181347, 0.026652547, -5.877263E-4, -0.040059425, 0.010115609, -0.011049254, -0.03122002, -0.011055971, -0.007334824, 0.016066758, -0.0010268418, -0.0021124561, -0.026880922, -0.012419496, -0.022756761, -0.027646644, -0.002327396, 0.008241601, 0.03699653, -0.0034793396, 0.0054574586, 0.0069452454, -0.0018034801, -0.00425178, -0.015704047, -0.0076773847, 0.018095253, 0.014226334, 0.02213881, 0.029527368, -0.035008337, -0.010471603, 0.01354793, 0.017719109, 0.016563807, 0.034900866, -0.028667608, -0.0067605316, -0.007637083, -0.0067067966, -0.0048428643, 0.00697883, 0.008402807, -0.02475839, -0.002303887, 0.012493381, 0.013890491, 0.0059142057, 0.009094644, 0.010088742, 5.43227E-4, -0.0031703634, -0.012963562, -0.0073751253, 0.008422957, -0.0305752, 0.013010581, 0.0063810283, -0.0026229385, 0.015381636, 0.010874615, -0.0047286777, 0.011089555, -0.010075307, 0.011727658, -0.014360672, 0.002025137, -0.0025188269, 0.03207978, -0.02899002, 0.010901483, -0.021373086, 0.005323121, -0.007637083, -1.11563044E-4, -0.005900772, 0.035653155, 0.0046111327, -0.048254006, 0.0016674635, -0.007220637, 0.010955218, -0.006001525, 0.004554039, -0.02346875, -0.004386117, 0.0039629545, 0.0055347024, -0.030279659, -0.02149399, -0.0068310588, -0.012929978, -0.015663745, 0.005326479, 0.19226374, -0.021655194, 0.012446363, 0.037050266, -0.0041208006, 0.0036606952, 0.019438626, 0.015851818, -0.008530427, 0.009457355, -0.001629681, 0.025242005, 0.0041409517, 0.0038353337, 0.029957248, -0.015059226, -0.028909417, -0.030091586, -0.025658451, -0.026827186, 0.0014038262, 0.005155199, -0.0063440856, -0.020123748, 9.55475E-4, 0.013722569, -0.022071641, 0.0029419898, 0.034685925, 0.008658048, -0.011190308, -0.017101156, -0.014508443, 8.4842485E-4, 0.0035868096, -0.008389373, -0.008490126, 0.019277422, 0.014830853, -0.0030175548, -8.5388235E-4, 0.0041107256, -0.004785771, -0.021762665, 0.004570831, 0.02321351, -0.020473026, -0.0042047617, -0.026491342, 0.01342031, -0.039145928, 0.013232238, 0.01758477, 0.022649292, -0.002271982, -0.0022350391, 0.016939951, -0.009840217, -0.0070258477, 0.014669648, 0.020607363, 0.027230198, -0.024100136, 0.011982899, -0.0037547313, 0.018350493, -0.034874, 0.010323832, 0.01037085, -0.01891471, 2.8336802E-4, -0.011217176, -0.010699977, 0.010310398, -0.011257477, -0.018041518, 0.0027388046, 0.0240061, 0.010605941, 0.02020435, -0.039334003, 1.5207418E-4, 0.0055985125, -0.021010375, -0.019035615, -0.011203743, 0.019908808, -0.016348867, 0.010538772, -0.019438626, -0.011647056, -0.036942795, -0.004275289, 0.0056287386, -0.007905758, -0.0062869918, 0.016227962, 0.022958267, -0.01908935, -0.003969671, -0.036835324, 0.02899002, 0.019761037, -0.015905552, -0.02486586, -0.011841845, 0.008053529, 0.019290855, 0.030521465, -0.0054205153, -0.013480762, -0.033557493, -0.0020318537, -0.0017153211, 0.0063440856, 0.019586397, 0.0030897611, -0.020298386, 0.025859956, -0.006737022, -0.0074691614, -0.025631582, 0.027942186, 0.008066963, -0.005554853, -0.029285561, -0.019693868, -0.0030847234, -0.0032946256, -0.026155498, 0.00906106, -0.017840011, -0.0024012816, 0.008248319, -0.0010788975, -0.0023055663, 0.017611638, -0.002025137, 0.008147566, -0.013541213, 0.0015658707, -0.011586604, 0.010612657, 0.0029251976, 0.008590879, -0.02465092, 0.011029104, -0.010149193, -0.0049671265, -0.017531035, -0.02454345, -0.01232546, 0.010377567, 0.0036203938, 0.037587613, -0.017920613, -0.026907789, -0.047179308, -0.016066758, 0.04417015, -0.043471593, 0.012298592, 0.02960797, -0.003690921, -0.016510071, -0.012862809, -0.17141457, 0.018390795, 0.009605126, -0.030978212, 0.003721147, -0.003751373, 0.02497333, -0.012278441, 0.008322204, -0.017678807, 0.014830853, 0.007543047, -0.03882352, -0.010270097, 0.012943412, 0.01977447, -0.02250152, 0.02677345, 0.029312428, 0.007059432, 0.04322979, -0.01374272, 0.0014634384, -0.013903924, 0.009228982, -1.4871574E-4, 0.02856014, -0.0013517705, 0.0012887998, -0.010384284, -0.044250753, -0.0065959683, 0.012379195, -0.0023828102, -0.012170971, -3.5431498E-4, -0.033261947, -0.017732542, 0.0022249639, -0.016939951, 0.028506404, 0.018189289, 0.02342845, 0.0037883157, 0.0046413583, 0.029204959, 0.042101353, -0.016966818, 0.016348867, -0.01026338, -0.011096273, -0.04374027, 0.013823322, -0.012694888, -0.010787296, 0.020983508, 0.006562384, 0.013836755, -0.010619374, -4.2232333E-4, -0.02469122, -0.027122729, 0.007939342, -0.0054944013, -0.016980251, -0.022300014, -0.021225315, 0.010652958, -0.03151556, -0.012661303, -0.026424173, 0.01571748, 0.008893138, 0.011351514, 0.0018135554, -0.015730914, -0.039414603, -0.00839609, -0.006411254, 0.0049268254, -0.0041342345, 0.044143282, 0.008671481, 0.012634436, -0.007939342, -0.015314467, 0.0027236915, 0.0041711773, 0.014683082, -0.015086094, 0.015556275, -0.027566042, -0.030870743, -0.011197025, -0.0074019926, 0.004020048, -0.004554039, 0.0031989103, 0.014777118, -0.03261713, -0.0019277422, -0.01561001, 6.679089E-4, 0.01941176, 0.033423156, 0.008590879, 0.0028244446, 0.023750858, 0.009450639, 0.005941073, -0.0042853644, 0.009396903, 0.0151801305, 0.010075307, -0.02443598, 0.005363422, -0.021265617, -0.03003785, 0.022904532, 0.0061123534, 0.043982077, 0.010082024, 0.004137593, -0.014817419, -0.009746181, 0.010061874, -0.09032849, -0.0026951449, 0.011492568, 0.043364123, -0.0349546, 0.037372675, -0.005407082, 0.028237728, -0.010088742, 0.03796376, 0.006737022, -0.022044772, 0.015112962, -0.0044264183, 0.0063373684, 0.016805613, -0.027512306, -0.012164255, -0.010337266, 0.021870134, -0.007999795, -0.009087928, 0.014696515, -0.020244652, -0.0016548693, 9.991347E-4, -0.022676159, 0.0147099495, -0.0067067966, 0.0045036627, 0.009134945, -0.023723992, 0.001683416, -0.057872567, -0.013823322, -0.020714832, -0.016348867, -0.027163029, 0.011364947, -0.044734366, 0.009443922, 0.020123748, 0.0019478928, -0.01539507, 0.0018001216, -0.017611638, -0.03739954, 0.033933636, -0.030333392, -0.009618561, -0.006428046, 0.002549053, -0.020284953, -5.8730645E-4, 0.019331157, 0.028828815, 0.03205291, 0.009887235, -0.010814164, -0.02314634, 0.0082147345, -0.0038017493, -0.026813753, 0.013601665, 0.004537247, 0.0032778333, -0.001956289, -0.004597699, 0.014212901, -0.017087722, -0.024637485, 0.013729286, -0.03592183, 0.0020486459, -0.00916853, -0.0028462745, -0.034712795, -0.017974349, 0.03882352, -0.027377969, 0.010115609, -0.035787493, 0.012835942, -0.025174836, 0.010202928, 0.028157126, 0.018404229, 0.017531035, -0.014615913, -0.03194544, -0.0037412976, 0.019640133, -0.007899041, -0.00775127, -0.0029806118, 0.018780373, 0.008389373, 0.0030091587, 0.008483409, -0.002271982, -0.022098508, -0.0015809837, -0.07248848, 0.02982291, -0.033423156, -8.4800506E-4, 0.00156755, -2.2690432E-4, 0.013930792, -0.0072676553, -0.007227354, 0.012614286, -0.0038185415, 0.023200076, -0.009618561, 0.008013228, 0.001101567, 0.0041711773, 0.0037480146, -0.005675757, -0.0025406568, -0.0052190092, -0.0021628328, 0.03377243, 0.02608833, 0.021440255, 0.0058537535, 0.0146024795, -0.008691632, 0.017504169, -0.026921222, 0.00425178, 0.011008953, -0.020043146, 0.004302156, 0.0039260117, -0.0029890079, -0.023200076, -0.013581514, -0.0016128889, 0.020244652, 0.0048260726, -0.01170079, -0.036647253, -0.0068512093, -0.009329735, -0.01395766, -0.006025034, -0.019452062, 0.018887844, 0.005618663, -0.002265265, 0.016590673, 0.009316301, -0.011620188, -0.01930429, 0.0049973526, -0.012486665, 0.04556726, -0.0010772183, -0.006078769, -0.011089555, 0.01941176, 0.0061224285, 0.004910033, -0.02321351, -0.009806633, 5.23916E-4, 0.016563807, -0.011069405, 0.012762057, -0.015462239, -0.020499893, -0.0010302002, 0.0029302354, 0.029204959, 0.015596576, 0.017826578, -0.0043491744, 0.01275534, -0.012721756, 0.011586604, 0.018243024, -0.019022182, -0.010941784, 0.017101156, 3.240366E-5, 0.017490733, -0.0018320268, -0.0017984424, 0.013131484, 0.0032442492, -0.020580495, 0.004678301, 0.010283531, 0.006579176, 0.004899958, 0.0110358205, -0.014656214, -0.0042047617, 0.013245671, 0.015650311, -0.00354315, -0.021950737, -0.021198448, -0.026558511, -0.011237326, 9.2021143E-4, -0.029742308, -0.02407327, 0.02088947, 0.012903111, 0.021332785, 0.007892325, -0.014830853, 0.011150007, -0.035894964, 0.007529613, -0.015475673, -0.0196267, -0.0051048226, 0.028425802, 0.011882146, 0.009410338, 0.039737012, 0.0076438, 0.035653155, 0.0033063802, 0.01561001, -0.030333392, -0.012506816, -0.015650311, 5.436468E-4, -0.01406513, -0.021453688, 0.0130979, -0.007032565, -3.4801793E-4, 0.01449501, 0.036217373, -0.02357622, 0.07340197, 0.015408504, 0.0064884983, 0.012526966, -0.012896393, 0.0063541606, 0.024677787, 0.019169953, -0.007059432, 0.0023005286, 0.019747604, -0.0047723376, 0.01243293, -0.020647664, 0.012822508, -0.008913289, 0.009954404, 0.0064213295, -0.0063440856, -0.016456336, -0.013326273, -0.0070258477, 0.017396698, -0.007220637, 0.0025070724, -0.0025994293, 0.021198448, -0.014951756, -0.0025977502, -0.031811103, -0.0038622012, -0.012553833, -0.0014525235, 0.0010663033, 0.03248279, -0.01406513, -0.0054003648, 0.012762057, 0.02346875, 0.0028445951, -0.017181758, 0.008349071, -0.023280678, 5.8310846E-4, 0.034820262, -0.011116423, -0.007019131, -0.03100508, -0.017893746 ], + "id" : "1f68749b-1442-4da5-9ab6-128f3ac4adec", + "metadata" : { + "source" : "movies.csv" + } + }, + "995282b7-4bb1-4ef4-8b94-0610caedeb06" : { + "text" : "210577,Gone Girl,Mystery-Thriller-Drama,en,With his wife's disappearance having become the focus of an intense media circus a man sees the spotlight turned on him when it's suspected that he may not be innocent.,62.884,Regency Enterprises-New Regency Pictures-Pacific Standard-TSG Entertainment-Artemple - Hollywood-20th Century Fox,10/1/14,61000000,369330363,149,Released,You don't know what you've got 'til it's...,7.892,17106,Ben Affleck-Rosamund Pike-Neil Patrick Harris-Tyler Perry-Carrie Coon-Kim Dickens-Patrick Fugit-Lisa Banes-David Clennon-Boyd Holbrook-Lola Kirke-Casey Wilson-Missi Pyle-Emily Ratajkowski-Scoot McNairy-Sela Ward-Lee Norris-Jamie McShane-Leonard Kelly-Young-Kathleen Rose Perkins-Pete Housman-Lynn Adrianna-Cyd Strittmatter-Ricky Wood-Donna Rusch-Mark Atteberry-Darin Cooper-Kate Campbell-Brett Leigh-Antonio St. James-Lauren Glazier-Julia Prud'homme-Cooper Thornton-Casey Ruggieri-Ashley Didion-Lexis Nutt-L.A. Williams-Blake Sheldon-Sean Guse-Fred Cross-Scott Takeda-Mark T Anderson-Kathy Sweeney-Meadows-Marc Abbink-Christina Alex-Samuel Baca-Bill Blair-Thomas R. Baker-Gregoer Boru-Will C.-Caroline Clements-Nancy DeMars-Davina Joy-Michael James Kelly-Elester Latham-Aaron Massey-Orion McCabe-Roz McHenry-Bryan McKinley-Teebone Mitchell-Justin Nesbitt-Mark Parrish-Jaclyn Rose-Sahlima-Joel Shock-Robert Tarpinian-Tracy Weisert-Michelle Winters-Tracy Brotherton-Matilde Matteucci-Dale Shane-Jamie Eddy-Joey Courteau,based on novel or book-infidelity-wife-investigation-marriage crisis-disappearance-psychological thriller-whodunit-missing person-search party-criminal lawyer-murder suspect-missing wife,/qymaJhucquUwjpb8oiqynMeXnID.jpg,/h2JaQWLKhapm7AuSViJwGiv8ngC.jpg,11324-242582-807-146233-205596-106646-157336-194662-244786-550-1124-152601-49047-27205-77-16869-286217-37799-120467-44214-419430\r\n5503,The Fugitive,Action-Thriller-Drama,en,Wrongfully convicted of murdering his wife and sentenced to death Richard Kimble escapes from the law in an attempt to find the real killer and clear his name.,35.63,Warner Bros. Pictures,8/6/93,44000000,368875760,131,Released,A murdered wife. A one-armed man. An obsessed detective. The chase begins.,7.462,3911,Harrison Ford-Tommy Lee Jones-Joe Pantoliano-Jeroen Krabb��-Daniel Roebuck-L. Scott Caldwell-Tom Wood-Ron Dean-Joseph F. Kosala-Andreas Katsulas-Sela Ward-Julianne Moore-Miguel Nino-John Drummond-Tony Fosco-Joseph F. Fisher-James Liautaud-David Darlow-Tom Galouzis-James F. McKinsey-Mark D. Espinoza-John E.", + "embedding" : [ 0.008429766, -0.01927758, -0.006141973, -0.028134845, -0.015470157, 0.024260627, 0.0033932815, 0.0034767776, -0.028802814, -0.034707658, 0.016872892, 0.032302972, -7.3852297E-4, 0.014868985, 0.0038775587, 0.024728205, 0.020413127, -0.027079456, -0.007855313, -0.040051408, -0.0053237113, 0.010760977, -0.0116760945, 0.004582266, -0.0035836524, 0.005697774, 0.017848127, -0.013112227, -0.0053404104, 0.0035602737, 0.0065794927, -0.014294532, -0.010293399, -0.019424532, -0.020934142, -1.5746842E-5, 0.004789336, -0.022283439, 0.024167111, -0.0069001177, 0.013439532, 0.0123641025, -0.018716486, -0.010887891, -0.0034500589, 0.0078018755, 0.018075235, -0.007234102, -4.1768924E-4, 0.022283439, 0.0059148637, 0.031635, -0.015096094, -0.023418985, -0.013626563, 0.005440606, -0.0025115625, 0.011936602, -0.008950782, 4.7671052E-5, 0.020159299, -0.030512813, -0.02805469, 0.0052502346, -0.012116954, -0.020386407, -0.026024064, -0.00792879, -0.012998672, 0.011221875, 0.023018204, 0.023485783, 0.018168751, 0.010794376, 0.02268422, -0.048040316, -0.035910003, -0.0017617677, 0.0054840236, 0.004151426, 0.017634377, -0.025422892, 0.010841133, 0.0047459183, 0.010072969, 0.024848439, -0.01820883, 0.042028595, -0.011849767, 0.001988877, 0.01327254, 0.030405939, 0.0053771487, 0.009258048, 0.008596758, 0.010774337, -0.03935672, 0.013680001, -0.018516095, -0.025810314, 7.6983403E-4, -0.01090793, -0.005734512, -0.004605645, 0.0016006202, -0.011889844, 0.010293399, -0.031341095, 0.014147579, 0.0087236725, 0.007808555, -0.020105861, 0.033024378, -0.03510844, -0.013426173, -0.011081602, 0.02439422, -0.0014444825, -0.013733438, -0.03171516, 0.016659142, 0.014307891, 0.006031758, -0.038875785, 0.019638283, 0.025863752, 0.0015730665, -0.017367188, 0.011702813, -0.011669415, 0.027413439, -0.008883985, 0.03660469, 0.018876798, -0.012183751, 0.032783907, -0.03318469, 0.008142539, -0.020947501, -0.027092814, 0.028776096, 0.04983047, -0.030138751, -0.013012032, -0.020172657, -0.0029407325, -0.0015947755, 0.0020957522, 0.031260937, 0.0027036036, 0.02973797, 0.008924063, 0.013646603, 0.032623596, 0.02057344, 0.0064525786, 0.008837227, -7.189014E-4, 1.8911867E-4, 1.8974488E-4, -0.006806602, 0.010126407, -0.007888711, 4.8385988E-4, 0.005116641, 0.013920469, 1.2357422E-4, -0.024461018, -0.0052101566, -0.022163205, -0.004151426, 0.024033517, -0.031073907, 0.010440352, 0.003810762, 0.02698594, 0.022002893, 0.010453711, -0.020707032, -0.014695314, -0.001069585, 0.021588752, 0.026398126, 0.039009377, 5.3312257E-4, 0.010179845, 0.0043685157, -0.02504883, -0.004348477, 4.3793704E-4, -0.0064058206, 0.025342736, 0.011789649, -0.0021909375, -0.63654757, 0.0038475003, 0.0058747856, -0.016044611, 0.018235547, 0.011889844, -0.001604795, 0.013786876, -0.022523908, -8.0198003E-4, -0.019611564, 0.019811954, 0.017447345, -0.019010391, -0.039116252, -0.012030118, 0.0058514066, -0.018997032, -0.010099689, 0.01198336, -0.02826844, 0.023512501, 0.019411173, 0.0010361866, 0.03147469, -7.384186E-5, -0.015603751, -0.015884297, 0.0017383888, 0.012491017, -0.015002579, 0.032089222, 0.003533555, 0.011876485, 0.03615047, -0.023071641, -3.734363E-4, 0.031928908, 0.034814533, 0.03358547, -0.0175275, 8.170093E-4, 0.0036304104, 0.0015029297, -0.013299258, 0.03807422, 0.0010570606, -0.007935469, 0.020707032, 0.0029691213, 0.0013292579, 0.011916563, -0.0073075783, -0.037352815, -0.015470157, 0.021655548, 0.022083048, -0.03444047, 0.0043351175, -0.016832814, -8.758741E-4, 6.4792973E-4, 0.0144414855, 0.0038141017, -0.01090793, 0.045127973, -0.003570293, -0.011903204, 0.017701173, -0.0078018755, 0.0030893555, 0.025810314, -0.015202969, -0.0018369142, 0.018903516, 0.016338516, 0.05562844, 0.032703754, 0.0038875784, 0.007861992, -0.0034567385, -0.020025704, 0.004963008, 0.024447657, 0.01413422, -0.012003399, -0.024541173, 0.018128673, 0.008957461, 7.2850345E-4, -0.0020623535, 0.011729532, -0.010734258, 0.015283125, -0.020787189, 0.012664688, -0.013138946, -0.0011597608, 0.031127345, -0.06332344, -0.009324844, -0.023178518, 0.028909689, 0.017941643, 0.009652149, 0.007427813, 0.0096454695, -0.024861798, 0.019771876, -0.0040078126, 0.0025616603, -0.01798172, -0.02373961, -0.009044297, -0.023712892, -0.022363596, 0.0070470707, 0.012470977, 0.022136485, -0.004515469, 0.0059783207, 0.0022594044, 0.0052134963, -0.03385266, 0.021067735, 0.032196097, -0.005971641, 0.0042883595, 0.008162579, -6.09939E-4, -0.0030993752, 0.0037306056, 0.017621016, -0.024875158, -0.0026284573, 0.010467071, 0.007581446, -0.019477969, 0.012150352, -0.009892617, -0.025436252, 0.0031377834, -0.002591719, -0.0058347075, 6.892603E-4, -0.017701173, -0.030699845, -0.0048026955, -0.01946461, -0.0046958206, -0.0026885744, 0.008663556, -0.00556084, 0.018516095, -0.005527442, -0.010841133, -0.034119844, -0.029444065, -0.0025332717, -0.021228049, 0.012397501, 0.023151798, -0.018142032, -0.025008751, 0.021014297, -0.019290939, -0.020239454, 0.015790783, 0.004582266, -0.017514141, 0.029898282, -0.0058447267, -0.011195157, 0.02035969, -0.009932696, 0.013366056, -0.011001446, 0.029631095, 0.012110274, -0.009759024, 0.0024263966, -0.0039510354, -0.022991486, 0.007514649, 0.018943595, 0.040372033, -4.684131E-4, 0.0077751568, -0.017059922, -1.90058E-4, -0.009946056, -0.0032079201, -0.0031427932, 0.0032162697, 0.014842266, 0.027466876, 0.008523282, -0.0015981153, -0.007841954, 0.0108945705, 0.049296096, 0.032917503, 0.008710313, -0.002097422, 0.01946461, -0.003954375, 8.883985E-4, -0.021027658, 0.00192542, 0.0023896582, 0.023632735, -0.007127227, -0.026879065, 1.7847291E-4, -7.372706E-4, 0.020399766, -0.021802502, 0.03794063, -0.016859531, 0.011896525, 0.0045021097, -0.0068800785, 0.025075547, 0.009258048, -0.021508595, 0.0018536134, 0.016512189, -0.0014286182, 0.018569533, -0.009892617, -0.012684727, 0.019945549, -0.012951915, 0.0075213285, -0.0016356886, -0.017153438, 0.019731797, -0.008616798, 0.033318285, -0.031768594, -0.010153126, 0.006141973, 0.03211594, -0.022737658, -0.006572813, -0.0076348833, 0.0029190236, 0.023245314, -0.013078829, 0.03914297, -0.018195469, 0.035028283, 0.011115001, 0.025850393, 0.017634377, -0.00985254, -0.0070136725, -0.0050030863, 0.03184875, 0.02076047, 0.004973028, -0.027333282, 0.014521642, -0.0064859767, 0.014307891, 0.0061252736, -0.010293399, -0.002716963, -0.016164845, 0.002523252, 8.270289E-4, -0.024928596, 0.009705586, 0.015002579, 0.0028856252, -0.014147579, 0.012858399, 0.012250547, 0.013573126, 0.018476017, -0.02633133, -0.031928908, 0.012778243, 0.018997032, -0.016846173, -0.027921095, -8.103296E-4, -0.0067297854, -0.023352189, -0.018302346, -0.016338516, 0.020052424, -0.04307063, 0.010420313, -0.008823868, -0.010366876, 0.021936094, -0.009879258, 0.012063516, 0.017273674, 0.0064726174, 0.0067431447, -0.009545274, 0.006141973, 2.127063E-4, 0.011595938, 0.011515782, -0.005654356, 0.0048227347, -0.005109961, 0.009725626, 0.021308204, -0.022911329, 0.01027336, -0.024581252, -0.0068366607, -0.009819142, -0.019384455, -0.004812715, -0.019477969, -0.0017450685, -0.030619688, -0.012825001, -0.00962543, 0.0910575, 0.045421876, 0.008262774, -0.0015037648, -0.0036103714, 0.003059297, -0.00835629, 0.008282813, 0.0053003323, -0.009718946, 0.013098868, 0.00406459, 0.011809688, -0.0029874905, 0.027306564, -0.0038007423, 0.008636837, -0.02181586, -0.015737345, -0.00235459, -0.019424532, -0.0042315824, -0.0061653517, 0.017687814, -4.2019412E-4, -0.023592658, 0.023953361, 0.0071539455, 0.00385418, 0.016098049, -0.029577658, 0.022363596, 0.0028071387, -0.011809688, -0.003490137, 0.0077217193, 0.031260937, -0.02313844, 0.034600783, -0.00963879, 0.016111407, -0.018916877, 0.01004625, 0.0015997853, 0.0114890635, -0.008643516, -0.0059816604, 0.026064143, 0.034761097, -0.022751017, 0.018288985, 0.0065427544, -0.028188283, 8.0991216E-4, 0.024541173, -9.259717E-4, -0.002588379, -0.009091055, -0.03273047, 0.00706043, 0.009885938, -0.036471095, 0.0047993558, -0.012070196, -2.3692018E-4, -0.024367502, 0.014187657, -0.004582266, -0.01091461, -0.0038675393, 0.01712672, -0.02269758, -0.003101045, -0.008696954, 0.0128316805, 0.0022594044, 0.01796836, -0.014521642, -0.0023913283, 0.006803262, -0.0423225, -0.034707658, 0.007594805, -0.019985626, -0.0044653714, 0.006018399, -0.008930743, 0.0032463283, -0.002635137, -6.566968E-4, 0.009384962, 0.014882345, 0.0016089699, -0.019411173, 0.028508907, -7.059595E-4, 0.0049463087, 0.023378907, 0.021134533, 0.009571993, 0.019411173, -0.013339337, -0.018970314, -0.023686172, -0.03935672, -0.006933516, 0.0027620508, -0.0013768506, -0.017661095, -0.01907719, -0.025636641, -0.015015938, 0.014922422, 0.0063657425, 0.006786563, -2.878528E-4, 0.01028004, -0.0040311916, 0.014535001, 0.0046123243, -0.0026201075, -0.011529141, 0.024795001, 0.019437892, -0.0031711818, 0.0033248146, -0.0028288478, -0.034119844, -0.0018987013, 0.023592658, -0.011088282, 0.0012766554, -0.014615157, -0.006756504, 0.001413589, -0.05154047, -0.008409727, -7.301734E-4, -0.021334924, 0.007948829, -0.027573751, -0.0059783207, 0.005417227, 0.020840626, -0.0059015043, -0.027520314, -9.7439945E-4, -0.0070470707, -0.009465118, 0.03876891, -0.012531094, 0.0018536134, -0.03762, -0.0032546779, -0.009779063, -0.039009377, -0.016565626, 0.0012499366, 0.02719969, -0.005433926, 0.027894376, 2.5508058E-4, 0.032356407, 0.009144492, -0.002463135, 0.024501095, -0.012157032, -0.01390711, -0.050685473, 0.01561711, 0.021749064, 0.011529141, 0.01518961, 0.013419493, -0.019130627, 0.029577658, 0.0048962114, 0.018743204, 0.004796016, -0.015243048, -0.02053336, -0.005270274, -0.02653172, 0.016779376, -0.024127033, -0.016578985, 0.023579298, -0.0057011135, 0.013933829, -0.017260313, 0.044860784, -0.018369142, 0.0018469337, -0.028615782, 0.005517422, -0.036658127, -0.015202969, -0.011014805, -0.0036972072, 0.017634377, -8.6585456E-4, 0.033077814, -0.0042315824, -0.024461018, -0.017821407, 0.014868985, -0.02182922, -0.017861485, 0.033131253, -0.020373048, -0.002247715, -0.03428016, -0.025382813, -0.0346275, -0.023178518, 0.0028973147, -0.010533867, -0.004652403, -0.009665509, -0.048521254, 0.012891797, -0.005433926, 0.026237814, 0.00428502, 0.053838283, 0.023151798, -0.021922735, -0.015523595, 0.0153632825, -0.0114423055, 0.010874532, 0.017180158, 0.00792879, 0.005674395, 0.006295606, -0.006168692, -0.0041848244, -0.035910003, -0.025997344, 0.026999298, 0.019344376, 0.025115626, -0.02826844, 0.010239962, -0.029631095, 0.029711252, 0.0013417823, 0.012544454, 0.01818211, -0.040959846, -0.015723985, 0.00513668, 0.006913477, 0.007294219, -0.0016933009, -0.02116125, 0.012257228, -0.006185391, 0.013546407, -0.004986387, -0.0095519535, 0.028562345, -0.030138751, 0.020787189, 0.0033047756, 0.011903204, -0.0017467383, 0.0063457033, -3.6028566E-4, 0.03401297, -0.02118797, 0.014294532, -0.0039009377, -0.006592852, 0.009164532, 0.00513334, -0.024728205, -0.028108127, -0.0016724268, -0.012637969, 0.026611876, 0.0114423055, -0.0041447463, -0.0037840432, -0.01305879, -0.03855516, -0.0027954495, -0.019998986, 0.02717297, -0.017741252, -0.004886192, -0.0069669145, 0.0049129105, 0.008509923, 2.57168E-4, -0.0106607815, 0.009531914, 0.023646096, -0.0138937505, -0.029070001, -0.012671368, -0.028562345, -0.027894376, -0.014802189, 0.007147266, -0.020733751, 0.0077951956, -0.03297094, 0.003613711, -0.018930236, -0.0011797999, -0.013733438, 0.026625236, -0.026705392, -0.007554727, 0.022978127, -0.020266173, -0.019745158, 0.0021875978, 0.030673128, -0.0039677345, 0.013786876, 0.0076282034, 0.02997844, 0.019718438, -0.017821407, 0.015122813, -0.0016448732, -0.008803829, -0.0055975784, 0.017153438, 0.0070136725, 0.007861992, 0.0106607815, -0.016124766, -0.02035969, -0.0012031788, 0.02074711, -0.007935469, 0.0056276373, 0.026611876, 0.0027303225, -2.83678E-4, 0.020880705, -0.0022276759, -0.0028371974, -0.015162892, -0.030459376, -0.026945861, -0.006973594, 0.0022209962, 0.007728399, 0.0027937794, -0.014067423, -0.027921095, -0.0069869533, -0.038581878, -0.03227625, -0.009885938, 0.014521642, 0.039036095, 0.017180158, -0.02057344, 0.0061653517, -0.002030625, 0.029176876, -0.04606313, 0.0021742384, 0.011181798, 0.017674454, 0.012698087, 0.027346643, -0.031394534, -0.008222695, 0.0023696192, -0.0058781253, -0.020306252, 0.009391641, -0.028642502, -0.0019872072, -0.011682774, -0.0025816993, -0.008002266, 0.0047125197, 0.015443439, -0.014454844, 0.023672814, -6.441724E-4, 0.03615047, -0.0049797073, 0.026932502, 0.015029298, -0.01349297, -0.013426173, -0.025983986, -0.0175275, -0.009164532, -0.02248383, 0.00792211, 0.024741564, -0.0018936915, 0.040185, 0.024447657, 4.5296634E-4, 0.007962188, -0.0061553326, -0.017420625, -0.01304543, -0.0030258987, 0.011756251, 0.017380549, -0.033532035, 0.017687814, -0.008229376, -0.007594805, -0.0035769728, 8.5583504E-4, -0.019758517, 0.030860158, 0.008142539, -0.040532347, 0.011048203, 0.0016223292, -0.0024915235, 0.01839586, -0.0022610743, -6.31648E-4, -0.017741252, -0.007107188, -0.010627383, 0.008730352, 0.0020256154, 0.00899086, 0.0025282619, -0.020920783, 0.0137067195, 0.18329063, 0.007855313, 0.021388361, 0.06278907, -6.057642E-4, 0.009304806, 0.013619884, 0.014949141, 1.7377625E-4, 0.017327111, -0.0032630276, -0.010079649, 0.0012115284, 0.00748793, 0.0138937505, -0.025690079, -0.028722659, -0.024086954, -0.017607657, -0.021268126, 0.018943595, 0.01176293, -0.013152305, -0.028963126, 0.02331211, -0.0021057716, -0.007821915, -0.002543291, 0.021775782, 0.0026685353, -0.016993126, -0.018769924, -0.013078829, 7.4979494E-4, -0.019998986, 0.0056409966, -0.020306252, 0.0016406983, 0.00427834, 0.017888203, 0.012878438, 0.009752344, -0.0020807227, -0.0041614454, 0.011041524, 0.021041017, -0.020827267, 0.027132893, -0.007554727, 0.005180098, -0.048040316, 0.002247715, -0.0072675003, 0.013446212, -0.0116293365, -0.0098325005, 0.011462345, -0.0040779496, -0.02269758, -0.0045254887, 2.266919E-4, 0.018997032, -0.025102267, 0.01025332, -0.017474063, 0.026171017, -0.033077814, -0.011148399, 0.0021892677, -0.017955001, -0.009779063, -0.0036671488, -0.017594298, 0.0021909375, -0.0056576957, -0.0138937505, 0.013279219, 0.009725626, 0.0015304835, 0.016017891, -0.013720079, -0.0030709866, 0.017647736, -0.018315705, -0.018970314, -0.020239454, 0.0073543363, -0.012998672, -0.0077751568, -0.03037922, -7.389405E-4, -0.0052034766, -0.02355258, 0.0060050394, 0.0059549417, 0.011702813, 0.013960548, 0.01326586, -0.014401407, -0.008797149, -0.03363891, 0.016779376, 0.03767344, -0.002311172, -0.018783282, -0.015683908, -0.0024931936, 0.02973797, 0.026558438, -0.015296485, -0.0036571291, -0.03379922, -0.0039109574, -0.001883672, -0.0073342975, 0.026384767, 0.014708673, -0.013219102, 0.014013985, -0.012337384, 0.0061085746, -0.026398126, 0.024688127, 3.329407E-5, -0.0021675588, -0.018489376, -0.014601798, -0.003597012, 0.015951095, -0.03679172, 0.0034400392, -0.032249533, 0.0018302344, 0.0014519972, 0.018489376, 6.2204595E-4, 0.030860158, 0.003146133, 0.0042449418, -0.009304806, 0.009331524, -0.015483516, -0.004178145, 0.005717813, 0.016832814, -0.015483516, 0.0030759962, 0.0034200002, -0.026905783, -0.019143986, -0.025596565, -0.026785549, 0.0014094141, 0.018529454, 0.036257345, -0.0010445362, -0.019584846, -0.038475003, -0.008289493, 0.028081408, -0.039249845, 0.011696134, 0.030486096, -0.0031494729, -0.030005159, 0.0029824807, -0.1697175, 0.03484125, -0.0028288478, -0.029016564, 0.018115314, 0.016124766, 0.025062189, -0.011208517, -0.008469844, -0.01779469, 8.34126E-4, -0.004725879, -0.022123126, -0.0014018995, 8.942432E-4, 0.01090793, -0.015911017, 0.0320625, 0.02502211, -0.0052535743, 0.03593672, 0.004665762, -0.008195977, -0.0036638088, 0.005480684, 0.008049024, 0.021468516, 0.012003399, -0.008476524, -0.00921129, -0.028108127, -0.023926642, 0.005487364, 0.010032891, -0.006549434, 0.019424532, -0.031314377, -0.01863633, -0.006385782, -0.015750704, 0.030405939, 0.0018435939, 0.014868985, 0.02311172, 0.0064225197, 0.009111094, 0.019437892, 0.0013685011, -0.0105205085, -0.015096094, -0.010547227, -0.03697875, -7.673291E-4, -0.01755422, 0.0023629395, 0.03104719, 0.0041447463, -0.007340977, 0.009157852, -0.014013985, -0.02931047, -0.004772637, 0.008456484, 0.008703633, -0.014882345, -0.01605797, -0.013626563, 0.016725939, -0.036070313, 0.013733438, -0.013105548, 0.0045522074, 0.0035435744, -0.0055708596, 0.0042549614, -0.029925002, -0.023686172, 0.022230001, 0.010079649, 0.029043283, -0.023712892, 0.035429064, -0.012491017, -0.008095781, 0.020800548, -0.015283125, 0.011241915, 0.007868673, 0.008262774, -0.017233595, 0.009979454, -0.01711336, -0.011028165, -0.008362969, 0.012056837, 0.012350743, -0.001157256, -0.0057712505, 0.011295352, -0.011803009, 3.9952883E-4, -0.026945861, -0.013499649, 0.019063829, 0.038849063, 0.009184571, 0.020399766, 0.012804962, 0.013432852, -0.0057211528, -0.02718633, -0.0020272853, 0.022149844, 0.0013284229, -0.022296797, 0.019304298, -0.0012591211, -0.024434298, -1.8671816E-4, 0.008022306, 0.050231252, 0.0061018947, -0.005156719, -0.021067735, -0.006105235, -0.018088594, -0.08881313, 0.0055474807, -0.0032413185, 0.042215627, -0.033906095, 0.02848219, -0.024033517, 0.048547972, -0.005440606, 0.024728205, 0.0042950395, -0.01714008, 5.8823003E-4, 0.00257001, 0.02098758, -0.01540336, -0.010373555, -0.007875352, -0.016578985, 0.026705392, -0.0064125005, 0.018930236, -0.020787189, -0.018288985, -0.02202961, -0.004986387, -0.027840938, 0.023846487, -0.007962188, 0.004261641, -0.015563672, -0.022230001, 0.01648547, -0.027787501, -0.0155503135, -0.01927758, -0.019090548, -0.02611758, 9.902638E-4, -0.055895627, -0.008503242, 0.011782969, 0.015670547, -0.015764063, -0.0068533598, -0.0071539455, -0.03914297, 0.04536844, 0.016017891, -0.013639922, -3.8512575E-4, -0.018582892, -0.016004533, -0.021708986, 0.022911329, 0.026251173, 0.028589064, -0.00877711, -0.020105861, -0.011355469, -0.018783282, -0.0052335355, -0.01648547, 0.029844845, 0.013339337, 0.013459571, -0.0074745705, -0.016231641, 0.009264727, 0.0013952198, -0.022630783, 0.025743518, -0.02011922, -0.003964395, -0.02674547, 0.01219711, -0.0081225, 5.5149174E-4, 0.02630461, -0.02567672, 7.15979E-4, -0.034146566, 0.0023562599, -0.008008946, 0.004588946, 0.011669415, 0.02227008, 0.0049930667, -0.017741252, -0.025997344, -1.4225648E-4, 0.021909377, 0.009391641, -0.011883165, -0.004692481, 0.020934142, -0.005200137, -0.0028856252, -0.002615098, 0.013693361, -1.2837525E-5, -0.010340157, -0.06759844, 0.0265718, -0.014040704, -0.004839434, -0.015443439, -0.0013467921, -3.24852E-5, 0.008236055, -0.0132525, 0.027132893, -0.007741758, 0.02524922, -0.011141719, -0.010901251, -0.02289797, -0.004669102, -0.015510235, -9.2179695E-4, -0.007988906, 0.008423086, -0.031341095, 0.0013158985, 0.018262267, 0.004765957, 4.8678226E-4, 0.019090548, -0.0071806647, 0.018529454, 0.010827774, -0.012283946, 0.031982347, -0.019157344, 6.0200685E-4, -0.0106875, -0.011502422, -0.012698087, -0.0033682326, 0.0012666358, 0.028295157, -0.0031194142, 0.0014386377, -0.006018399, 0.015229688, -0.0036003517, -0.0036571291, 0.037780315, -0.028909689, -0.00514336, 0.014962501, 0.021321563, 0.040398754, 0.0077951956, -0.005550821, -0.014655235, 0.023846487, -0.021214688, 0.035429064, -0.0016198243, 2.7449342E-4, -0.004879512, 0.043097347, 0.009485157, 0.01326586, -0.020279532, 0.0028856252, 0.0040144925, -0.012651329, 0.006973594, 0.012938555, -0.026037423, 0.0035769728, -0.009612071, 0.009712266, 0.040799532, 0.024153752, 0.0034734376, 2.8827027E-4, -0.004341797, 0.005881465, 0.00963879, 0.020199377, -0.0018703126, -0.02503547, 0.0115825785, -0.008857266, 0.003446719, -0.009672188, 0.002716963, 0.026518362, 0.008683594, -0.014468204, 0.0014912403, 0.020279532, 0.008249414, 0.016138125, 0.0072407816, -0.013693361, -0.0071539455, -3.283484E-4, 0.019771876, 0.0059549417, -5.519092E-4, -0.018529454, -0.0059482623, -0.012731485, -2.2048189E-6, -0.0175275, -0.012537774, 0.008783789, 0.014094141, 0.03401297, -0.011428946, -0.022857891, 0.013219102, -0.04133391, 0.009311485, -0.0040579103, -0.027974533, -0.016084688, 0.03489469, 0.0065193754, 0.008703633, 0.02909672, -0.008282813, 0.053571098, 2.682312E-4, 0.028134845, -0.013085509, 0.0017433985, -0.017393908, 0.0015446778, 0.0018352442, -0.031100627, 0.01881, -0.012704766, 0.012310665, 0.0106140245, 0.04213547, -0.018088594, 0.06877407, 0.012324024, -0.009959415, 0.010807735, -0.01561711, -0.0014035694, 0.0119098835, 0.018716486, -0.030940315, -0.005480684, -0.0036938675, -0.014294532, 0.017300392, -0.030512813, -9.727295E-4, 0.010600665, -0.013172344, 0.02524922, 0.0029674512, -0.008496563, -0.013239142, 0.008843907, 0.003124424, -0.012771564, -0.012945235, -0.008663556, 0.023833126, -0.005737852, -0.006716426, -0.033318285, 0.0022978126, -0.015697267, 0.025770236, -0.002651836, 0.054773442, -0.019825313, -0.01113504, -0.0048060357, 0.02076047, 0.012965274, -0.00941836, -0.0077217193, -0.0038808987, 0.007107188, 0.0042449418, -0.0010002833, -4.8845215E-4, -0.034387033, -0.033906095 ], + "id" : "995282b7-4bb1-4ef4-8b94-0610caedeb06", + "metadata" : { + "source" : "movies.csv" + } + }, + "6ada1021-83ad-4759-ae4c-8665bf9a4359" : { + "text" : "9,14819,Mark Hamill-Harrison Ford-Carrie Fisher-Billy Dee Williams-Anthony Daniels-Peter Mayhew-Sebastian Shaw-Ian McDiarmid-Frank Oz-James Earl Jones-David Prowse-Alec Guinness-Kenny Baker-Michael Pennington-Kenneth Colley-Michael Carter-Denis Lawson-Tim Rose-Dermot Crowley-Caroline Blakiston-Warwick Davis-Jeremy Bulloch-Femi Taylor-Annie Arbogast-Claire Davenport-Jack Purvis-Mike Edmonds-Jane Busby-Malcolm Dixon-Mike Cottrell-Nicki Reade-Adam Bareham-Jonathan Oliver-Pip Miller-Tom Mannion-Margo Apostolos-Ray Armstrong-Eileen Baker-Michael Henbury Ballan-Bobby Bell-Patty Bell-Alan Bennett-Sarah Bennett-Pamela Betts-Danny Blackner-Linda Bowley-Peter Burroughs-Debbie Lee Carrington-Maureen Charlton-Willie Coppen-Sadie Corre-Tony Cox-John Cumming-Jean D'Agostino-Luis De Jesus-Debbie Dixon-Margarita Fern��ndez-Phil Fondacaro-Sal Fondacaro-Tony Friel-Daniel Frishman-John Ghavan-Michael Gilden-Paul Grant-Lydia Green-Lars Green-Pam Grizz-Andrew Herd-J.J. Jackson-Richard Jones-Trevor Jones-Glynn Jones-Karen Lay-John Lummiss-Nancy MacLean-Peter Mandell-Carole Morris-Stacie Nichols-Chris Nunn-Barbara O'Laughlin-Brian Orenstein-Harrell Parker Jr.-John Pedrick-April Perkins-Ronnie Phillips-Katie Purvis-Carol Read-Nicholas Read-Diana Reynolds-Danielle Rodgers-Chris Romano-Dean Shackelford-Kiran Shah-Felix Silla-Linda Spriggs-Gerald Staddon-Josephine Staddon-Kevin Thompson-Kendra Wall-Brian Wheeler-Butch Wilhelm-Mark Dodson-Simon J. Williamson-Richard Bonehill-David Gonzales-Peter Roy-Erik Bauersfeld-Mike Quinn-Bill Kipsang Rotich-Deep Roy-Alisa Berk-Hugh Spight-Swee Lim-Richard Robinson-Gerald Home-Phil Herbert-Tim Dry-Sean Crawford-Phil Tippett-Toby Philpott-David Alan Barclay-Jasper Jacob-Peter Allen-John Altman-Glyn Baker-Dickey Beer-Ailsa Berk-Don Bies-Paul Brooke-Ben Burtt-Maurice Bush-Trevor Butterfield-Vivienne Chandler-Tony Clarkin-Kenneth Coombs-Andy Cunningham-Peter Diamond-Richard Driscoll-Douglas Farrell-Alan Flyng-Ernie Fosselius-Stuart Fox-Isaac Grand-Gordon Hann-Alan Harris-Walter Henry-Philip Herbert-Larry Holt-William Hoyland-Colin Hunt-Monty Jordan-Michael Josephs-Eiji Kusuhara-Anthony Lang-Arnold Lee-Julius LeFlore-John Maloney-Paul Markham-Richard Marquand-Hilton McRae-Billy J. Mitchell-Amanda Noar-Terry Sach-Errol Shaker-Guy Standeven-Jules Walters-Robert Watts-Paul Weston-Corey Dee Williams-Michael Stevens-Michael McCormick-David Stone-Lynne Hazelden-Paul Springer-Ronny Cush-Larry Ward-John Cannon-Dalyn Chew-Celia Fushille-Burke-Mercedes Ngoh-Jennifer Jaffe-Tina Simmons,spacecraft-sibling relationship-rebel-emperor-space battle-matter of life and death-forest-desert-space opera,/jQYlydvHm3kUix1f8prMucrplhm.", + "embedding" : [ 0.016043318, -0.021084363, -0.020590926, -0.034887217, -0.033660296, 0.023604883, 2.077513E-4, -0.0043008896, -0.01751029, -0.026258765, 0.0101020895, 0.030299602, 0.015869949, 0.0116024, -4.7343128E-4, 0.022311281, 0.009055207, -0.014349636, 0.009835368, -0.029632797, 0.0021821181, -0.006948104, -0.02504518, 0.014563013, -0.0077749416, 0.018710537, 0.037927847, -0.014496332, -0.017123543, -0.016990181, 0.009195236, -0.019537374, 0.0062579615, -0.02033754, -0.018857235, -0.0022838057, 0.0068480833, -0.015589892, 0.021137707, 0.0063013034, 0.015616564, 0.014656365, -0.009808696, 0.011782438, -0.015109792, -0.0028289186, 0.03013957, -0.022057896, -0.0035907428, 0.03040629, 0.032486722, 0.045449402, -0.018777218, -0.027925776, -0.0031906602, 0.016363386, -0.013696167, 0.0055211424, -0.017790347, 0.013022694, 0.009715343, -0.01409625, -0.030379618, -0.004614288, -0.022644684, -0.0020504242, 0.004610954, -0.008995194, -0.0031606539, 0.0127293, 0.0052777585, -0.001371117, 0.015069785, 0.007241498, 0.018817225, -0.026485479, -0.015523211, -9.135223E-4, -0.009088547, -0.0018487158, 0.004190867, 0.0035307305, -0.0105221765, 0.008901842, 0.016363386, 0.0025138534, -0.01867053, 0.024458393, -0.030833045, 0.0038574648, 0.008961854, 0.043022234, -0.01655009, 0.006097928, 0.008421742, 0.024365041, -0.013842864, 0.043048907, -0.009648663, -0.046436273, -0.0043275617, 0.0049743624, -0.004524269, -0.013596146, -0.009561978, 0.01037548, 0.0020637603, 0.0011419029, 0.010782231, 0.009742015, 0.024818467, 0.006658044, 0.0074815475, -0.028619254, -0.024831804, -0.011168977, 0.015003104, -0.0367276, -0.013696167, -0.023871604, 0.043875743, 0.028912649, -0.0029222711, -0.03640753, 0.025618633, 0.051930744, -0.007768274, -0.0074548754, 0.009782024, 0.0060279137, 0.019817432, -0.0034073715, 0.029339403, 0.011115633, -0.012929342, 0.04270217, -0.027365662, 0.008855165, -0.010882251, -0.018857235, 0.03507392, 0.033847, -0.034967232, -0.023231473, -0.03003288, 0.0022271273, 0.015829941, 0.004437585, 0.0133894365, 0.0035173944, 0.023751581, 0.017937044, -3.5465672E-4, 0.0023721573, 0.024765123, 5.8345404E-4, -0.010022073, -0.013149387, 0.00549447, -0.014909751, -0.005347773, 0.0026672184, 0.0014327964, 0.0016320043, 0.013142719, 0.025405256, 0.0108489115, -0.018283783, -0.016976845, 0.00907521, -0.009902049, 0.0249785, -0.03774114, 0.014309627, 0.0051644016, 0.024898484, -0.0055344785, -0.02655216, -0.05777195, -0.018390471, -0.012956014, 0.024218343, 0.033366904, 0.039981604, -0.004754317, 0.008848498, 0.010995608, -0.018537167, 0.015349843, -0.013289416, 0.02167115, 0.028059138, -0.0019303993, -0.017216895, -0.63799864, -0.03723437, 0.007908302, -0.007214826, 0.015536548, 0.026765537, 0.0021037685, 0.0063913222, -0.029232714, -0.005981237, -0.029766157, 0.019857442, 0.014829734, -0.00438424, -0.014829734, -0.0037941183, 0.014843071, -0.010208779, 0.0277124, 0.015296497, -0.01635005, 0.03235336, 0.032086637, -0.017763674, 0.011829114, 0.0048410017, -0.004324228, -0.01398956, 0.0031123105, -0.009068543, -0.018083742, 0.01351613, 0.011108965, 0.0029456094, 0.041928675, 0.009121887, -0.021391092, 0.049076818, 0.024151662, 0.031393163, -0.023551539, -0.015443195, 0.0041108504, -0.0062746312, -0.024725115, 0.025338575, 0.0020437562, 0.010915591, -7.501552E-4, -0.0031006415, -0.0058545447, 0.0054577957, -8.5684395E-4, -0.0059378953, -0.012615943, -0.005497804, 0.03310018, -0.040008277, 0.015536548, 0.010788899, -0.008055, 0.029472765, 0.009641995, 0.009575314, -0.0053010965, 0.025885355, 0.006801407, 0.003914143, 0.0080283275, -0.03651422, 0.0067313924, 0.010728886, -0.014336299, -0.0071814856, -0.0017045193, 0.0084484145, 0.03806121, -0.0071414774, -0.00788163, 0.022244602, 0.006184613, -0.005057713, -0.009055207, 0.0048876777, 0.028245844, 0.0077416017, -0.026285438, -0.0029672806, 0.01641673, -0.0021204387, 0.009055207, 0.008135016, 0.017910372, 0.0026188751, -0.006244625, -0.011289002, -0.021284403, -0.003750776, 0.026538823, -0.048303325, 0.00349739, -0.0077215973, 0.03467384, -0.014416316, 0.012869329, 0.0125492625, -0.0047009727, 0.003884137, 0.018483823, -0.01893725, -0.012509255, 0.0034240417, -0.016043318, -0.0036940975, -0.0037974522, -0.027739072, 0.010995608, 0.011015613, -0.011208986, -0.012962681, 0.010868915, 0.008081672, -0.003162321, -0.008455083, 0.011955807, 0.028432548, -0.00887517, -0.014803062, 0.0023921616, 0.020697616, 0.0018320456, -0.012209193, 0.02477846, -0.010635533, 0.0107555585, -0.004397576, 0.0013936217, -0.008348394, 0.013462785, -0.0014019567, -0.009635326, 0.0051644016, -0.0068814238, -0.018417144, -0.010288795, -0.017696995, -0.028085811, 0.00546113, 0.003910809, -0.016990181, -0.004647628, 0.011135637, 0.0054077855, 0.0104755005, 0.0040008277, 0.0049776966, -0.031099766, -0.0055344785, 0.009695339, -0.00723483, 0.00788163, 0.007368191, -0.0061446046, -0.017150214, 0.021457773, -0.0052744243, -0.010795566, -0.0088685015, -0.006401324, -0.0031906602, 0.02477846, -0.011969143, 0.00288393, 0.022191258, -0.017830355, 0.017003518, -0.01242257, 0.017977051, 0.015549883, -0.0060512517, -2.0056232E-4, -0.013009358, -0.018843899, 0.0027772412, 0.034140397, 0.02252466, 0.018430479, -0.0029622796, 0.0013911211, 0.0063446457, -0.015856614, -0.009581982, 0.0042942218, 0.0038607987, -0.0036507552, 0.023351498, -0.011629072, -0.022351291, 7.173359E-5, 0.0010752224, 0.03136649, 0.010628865, 0.025751995, -0.014389643, 0.012982686, -0.025138535, -0.0032173323, -0.028272515, 0.019884113, -0.005451128, 0.020857649, 2.4025804E-4, -0.023978293, -0.0033173528, 0.014976432, 0.018283783, -0.02399163, -0.0075815683, -0.014843071, 0.0056711733, -0.005954565, 0.0079349745, 0.020364214, 0.013909544, -0.03200662, 0.004660964, 0.021204386, -0.011742429, 0.008535099, -0.014829734, 1.5055198E-4, 0.0011310673, -0.0035807407, 0.020617599, -0.015749926, -0.0017703662, 0.023964958, -0.008275045, 0.04905015, -0.00581787, -0.0015386516, 0.00788163, 0.028459221, 0.0138562, -0.0036740934, -0.0014944759, 0.021884527, 0.019564047, -0.012835989, 0.023938285, -0.005491136, 0.020497574, 0.0023504863, -0.0034573819, 0.010322135, -0.0066947183, -2.3775751E-4, 0.0041608606, 0.028992664, 0.019457359, 0.02068428, -0.015456531, 0.014442988, 9.272752E-5, 0.0067247245, 0.009848705, -0.017990388, 0.010248787, -0.0029672806, -0.025325239, -0.026632177, -5.4511277E-4, -0.012329217, -0.0060245795, -0.01392288, -0.012362557, 0.010495504, 0.001651175, 0.008775149, 0.020390885, 0.005637833, -0.029366076, 0.02057759, 0.028752616, -0.026978914, -0.023058103, -0.0132094, 0.0043008896, -0.03760778, -0.018083742, -0.008368398, 0.04566278, -0.010462164, -0.0041541927, -0.014656365, 0.0034140395, 0.015429859, -0.013669495, 0.037901174, 0.022791382, -0.013682831, 0.011555724, -0.011522383, -0.022551332, 0.01709687, -0.021271067, -0.0044142464, -0.020110827, 0.0045476076, -0.0025171875, -0.0050977212, -0.0031956611, -0.04539606, 0.006387988, -0.0044409186, -0.004664298, -0.0036440871, 0.010822238, 0.026165413, -0.016083328, -0.006921432, -0.01508312, -0.014442988, 0.0090085305, 0.08204364, 0.03016624, 0.01538985, 0.0110356165, -0.011609068, -0.015923293, -0.012602607, -0.012809317, -0.014816399, -0.033766985, 0.004360902, -0.033633623, 0.017056862, -0.005337771, 0.012815985, -0.010642202, -0.015989974, -0.013609482, 0.007654917, -0.01378952, -0.0393148, -0.025845347, 0.011922467, 0.02173783, 0.011028948, -0.020350877, 0.024885148, 0.015309834, 0.0055544823, 0.011802441, -0.0026722194, 0.005651169, -0.0021254397, 0.01893725, -7.930807E-4, 0.00723483, 0.03491389, 0.014736382, 0.01696351, -4.1883666E-4, -0.009942057, 6.6472084E-4, 0.01508312, -0.011375687, 0.01775034, -0.023604883, -0.009815364, 0.027312316, 0.024271687, -0.047956586, 0.012989353, 0.0045509413, -0.014029569, -0.020257523, 0.004197535, 9.2019036E-4, 0.014869743, -0.0064279963, -0.0054311235, 0.008335058, -0.0038107883, -0.021751167, 0.015363178, -0.006224621, -0.003610747, 0.0064546685, -0.024164999, -0.0028722608, -0.0140429055, 0.008235037, 0.01713688, -0.0020954334, 0.014109585, -0.0039241454, 0.011915798, 0.002775574, 0.026512152, -0.010622198, 0.019670736, -0.0033056838, -0.027739072, -0.015883286, 0.011515716, -0.021817846, -0.008648456, 0.027925776, -0.011008944, 0.03112644, -0.002162114, 0.009695339, 0.0032156652, -0.0057145157, -0.030646339, -0.017003518, 0.03152652, 0.029606124, 0.011088961, 6.339853E-5, 0.012249201, 0.011495711, -0.0056845094, -0.028112482, 0.0033907015, -0.024765123, -0.016750133, -0.0019437354, 0.00518774, -0.004040836, -0.0020687613, -0.020364214, -0.042675495, -0.021684486, 0.0064313305, -0.008695132, 0.014643029, -0.0014219609, 0.020737624, 0.010182107, -0.016736796, 0.02064427, -0.007794946, -0.02300476, 0.009581982, 0.014256283, -0.020537581, 0.038007863, -0.014482996, -0.021031018, -0.0037307718, 0.026632177, 0.0015686578, 0.028059138, -0.019937458, 0.0013819525, -0.007121473, -0.013749511, 0.010855579, 0.010502173, -0.013289416, 0.023311488, -0.026912235, 0.009381941, 0.018977258, -0.009341933, -0.00907521, -0.026125405, 7.405699E-4, -0.0015169805, 0.02784576, 0.0214311, -0.007188154, 0.019137293, -0.014509669, -0.010588857, -0.0017953714, -0.02832586, -0.0063179736, 0.0030522982, 0.030859718, 0.014683038, 0.038434617, -7.947477E-4, 0.030806374, -0.001596997, 0.012749304, 0.012515923, -0.0044675907, -0.009855372, -0.007801614, 0.0027989123, 0.024151662, 0.01713688, 0.014683038, 0.017016854, 0.024805132, 0.0232048, 0.0033673632, 0.015723253, 0.008055, -0.018923914, -0.025231887, -0.0100554135, -0.031206455, 0.009922053, -0.020430893, -0.014349636, 0.019884113, -3.9409195E-5, -0.008915178, -0.0021104366, 0.026832217, -4.1987852E-4, 0.028512565, -0.019257316, 0.020470902, -0.02405831, 0.0014102918, -0.021964544, -0.0076349126, -3.0798037E-4, -0.011662412, 0.02351153, 1.5899123E-4, -0.010402152, -0.013336092, 0.027392333, -0.032326687, -0.0025405255, 0.016603434, -0.027525695, -0.017430272, -0.03664758, -0.01989745, -0.03590076, -0.028032467, -8.61845E-4, -0.0027855763, 0.0049810302, -0.034700513, -0.021551125, 0.015243153, 0.010562185, 0.035340644, 0.012869329, 0.04102182, 0.01696351, 0.006908096, -0.01775034, -0.014389643, -0.011835782, -0.012462578, 0.022057896, 0.03197995, -0.023124784, -0.0011344013, -6.8430824E-4, -0.017817019, -0.034993906, -0.0362475, 0.023391506, 0.02289807, 0.013962888, -0.030352946, 0.01637672, -0.04043503, -0.002458842, -0.013242739, -0.004894346, 0.009608654, -0.033553608, -0.020177508, -0.012242532, -0.01180911, 0.009408613, 0.007274838, -0.030299602, 0.0070547927, -0.013149387, 0.01248925, -0.014736382, -0.011702421, 0.03283346, -0.028085811, 0.011775769, 4.396743E-4, 0.010768894, 4.5884494E-4, -0.0013569474, 0.00907521, 0.029206041, -0.0047009727, 0.01576326, 0.019910786, 0.006794739, 0.019604055, 0.01819043, -0.017483616, -0.020937664, -0.023658227, 0.0013952886, 0.024591753, -0.0061912807, -0.0032856797, -0.0015036444, -0.02184452, -0.002757237, 0.018843899, -0.010915591, 0.018710537, -0.02644547, -0.008428411, 0.008608447, 0.005634499, -0.014723046, -2.379659E-4, -0.011135637, -0.011869122, 0.013816192, -0.007801614, -0.0035107264, -0.029739486, -0.0108489115, -0.03638086, -0.02757904, -0.0063146395, -0.013382768, -0.005157734, -0.02259134, -0.009702007, -0.0013852866, 0.008455083, 0.0032340023, -0.0011352348, -0.014883079, 3.1298143E-4, 0.031819917, -1.6201269E-4, 0.006818077, -0.004921018, 0.021964544, -0.01351613, -0.010515509, -0.0067647328, -3.5132267E-4, 0.029019337, -0.02539192, 0.013429445, -0.0039974935, -0.02149778, -1.3117297E-4, 0.0020804303, 0.023018096, 0.014389643, -0.007848291, -0.025191879, -0.019430686, -0.016776804, 0.041395232, -0.0069014276, -7.918305E-4, 0.022671357, 0.02429836, 0.044409186, 0.02007082, 1.1221071E-4, -0.02283139, 0.008248373, -0.004770987, -0.016763467, -6.1387697E-4, 0.0035240625, 0.01150238, 4.6134545E-4, -0.005357775, -0.04160861, -0.00754156, -0.017550297, -0.021457773, -0.0028005794, 0.014909751, 0.014589685, 0.0014811398, 0.004337564, 0.012415902, 0.008955186, -0.010322135, -0.019083949, -0.016763467, 0.024338368, 0.008755145, 0.02283139, 0.005207744, -0.019750753, -0.006591364, 0.0050377087, 0.019630728, 0.022311281, 0.018723873, -0.013316088, 0.007641581, -0.01034214, 0.009508634, -0.016230024, 0.007928307, 0.025431927, -0.02795245, -0.0033990366, 0.005491136, 0.025525281, -0.009368605, 0.0015703249, 0.010368812, -0.008408406, -0.010048745, 0.010908923, -0.027138948, 0.010455497, -0.04064841, 0.022964751, -0.004360902, -0.018310454, 0.03310018, 0.02044423, -0.0011427364, 0.005814536, -0.008508427, 0.023751581, -0.008321721, -0.016390057, 0.01156906, 0.018683866, -0.019804098, 7.4682117E-4, -0.042195395, 0.01068221, -0.00836173, 0.0010143765, -0.007821618, 0.03920811, -0.0047343126, -0.03299349, 6.067922E-4, -0.005967901, -0.002305477, -0.01508312, -0.010155434, -0.023898277, 0.008034996, 0.003167322, 0.008008324, -0.024685107, -0.022057896, 0.010608861, -0.010828907, -0.0030056217, 0.02580534, 0.18979926, -0.0065213493, 0.0174036, 0.031393163, -0.001882056, -0.009688671, 0.033420246, 0.019924121, -0.01672346, 0.009421949, -0.008608447, 0.00907521, 0.01156906, 0.0010752224, 0.028779287, -0.026165413, -0.020550918, -0.033473592, -0.012629279, -0.017670322, -0.0136228185, -0.006047918, 0.0016278367, -0.014869743, 0.0021337748, -0.014523004, -0.009688671, 0.0122692045, 0.017176887, 0.017323583, 1.4377975E-4, -0.010782231, -0.018137086, -0.0049910326, -0.011735762, -0.02147111, 0.0066213696, -0.0013152721, 0.020030811, -0.0013852866, -0.0042542135, -0.020924328, -0.00488101, 0.008128348, -0.015723253, 0.028379204, -0.020324204, 7.9099694E-4, -0.016563427, -0.0029222711, -0.0428622, -0.0055778204, 0.019924121, 0.03688763, -0.024805132, -0.0155098755, 0.010835575, 0.00836173, -0.0012169185, 0.0057145157, 0.015123129, 0.025525281, -0.037501093, 0.014349636, -0.010148766, 0.014322963, -0.03944816, -0.010855579, 0.001001874, -0.03992826, -0.0036474213, -0.034993906, -0.0174036, -0.004490929, -0.0037341057, -0.012122508, 0.0023971626, -0.009535306, -0.015149801, 0.024218343, -0.026392126, -0.01771033, -0.006081258, -0.023191465, -0.029392747, -0.029819502, 0.015723253, -0.024591753, -0.00407751, -0.0063946564, -0.009328596, -0.025431927, -0.020164171, -0.0080750035, -0.0032173323, -0.011162309, 0.022191258, 0.012022487, -0.017763674, 0.003037295, -0.03149985, 0.026125405, 0.0067480626, -0.0043042237, -0.029152697, -0.015696581, 0.00754156, 0.00551114, 0.026632177, -0.008421742, -0.021524454, -0.04043503, -0.010355475, -0.016936837, -0.0057378537, 0.027112275, 0.0061779446, 0.0018220436, 0.046622977, -0.018697202, -0.0020604262, -0.0033440252, 0.03920811, 0.0051243934, -0.011462371, -0.03176657, -0.0523575, 9.4936305E-4, -0.016296705, -0.035927434, 0.024445057, -0.017790347, 0.011255662, -0.002162114, -0.0050877193, 0.005764526, 0.021644477, 0.0021137707, -0.004464257, -0.016630108, -0.006184613, -0.00696144, 5.371945E-4, 0.0026555494, 0.010182107, -0.010635533, 0.0027955784, -0.0056078266, -0.0055344785, -0.040941805, -0.028885975, 4.2691125E-5, 0.0049743624, 0.011815778, 0.042222068, -0.0046843025, -0.0013644489, -0.04136856, -0.021631142, 0.04091513, -0.040461704, 0.02173783, 0.01190913, -0.0031056425, -0.01184245, -0.009441953, -0.16952841, 0.0362475, -0.0012919339, -0.025191879, 0.016883492, 0.0013469453, 0.026152076, 0.009768687, 0.024565082, -0.015029776, 0.018203765, -0.007901635, -0.02600538, 0.0051043895, 0.010862247, 0.019537374, -0.004637626, 0.0277124, 0.023498194, -0.0041541927, 0.045742795, -0.0033373572, -0.0149497595, -0.010248787, 0.022164585, -0.0103821475, 0.011795773, -0.006651376, -0.0044142464, 0.00639799, -0.04747649, 2.0910575E-4, 0.01716355, 3.767446E-4, -0.012675956, 7.063961E-4, -0.019030605, -0.027632384, -0.008781817, -0.0027739073, 0.031953275, 0.01593663, 0.022578005, 0.014256283, 0.014056241, 0.00788163, 0.015523211, -0.01300269, 0.021991216, -0.017083535, -0.018377135, -0.031046422, 0.030566324, 0.004217539, -0.014923087, 0.017470282, 0.018590512, -7.4598764E-4, 0.0021521118, -0.009875377, -0.031579867, -0.012649284, -0.001016877, -0.010728886, 0.0019437354, -0.01508312, -0.018817225, 7.289008E-4, -0.016456738, 0.006768067, -0.022004552, 1.4075829E-4, 0.026338782, 0.018617185, 0.011555724, -0.02460509, -0.032406703, -1.7086868E-4, -0.012395898, 0.0026322112, -0.026045388, 0.028965993, -3.5153105E-4, 0.006791405, 0.012562599, -0.0072815064, 0.0036507552, -0.0021271068, -0.001023545, -0.0084017385, 0.013682831, -0.016230024, -0.033633623, -0.0019504034, 0.009702007, 0.009461957, -0.0056745075, 1.9858275E-4, 0.01948403, 0.0035107264, 0.0040141637, -0.0031039754, -0.009021866, 0.020324204, 0.022497987, 0.016776804, -0.020430893, 0.012275873, 0.023018096, -0.007968315, -0.009121887, -5.855378E-4, 0.017963717, 0.006541353, -0.016910166, 0.018457152, -6.097095E-4, -0.027765743, 0.010588857, 0.011162309, 0.06652043, -0.013936216, 0.007488216, -0.010468832, 0.0077282656, -0.007808282, -0.085777745, 0.005077717, 0.011402359, 0.036594238, -0.010015406, 0.023458187, -0.0038041202, 0.01351613, -0.025845347, 0.018483823, 0.0045842817, -0.04152859, 0.0034273758, -0.012255869, 0.0064346646, -0.0067313924, -0.00815502, -0.0067513967, -0.02184452, 0.026472144, -0.004490929, 0.0037174358, 0.006651376, -0.022137914, -0.008375066, 0.022271274, -0.030913062, 0.025338575, 0.0122692045, 0.013236072, 0.0045276033, -0.018043732, 0.0022971418, -0.02992619, -0.03771447, -0.025311902, 0.009401945, -0.017696995, -0.0043042237, -0.051130578, 0.006808075, 0.016270032, -0.0038741347, -0.015589892, -0.00958865, 0.002293808, -0.03392702, 0.03944816, -0.010822238, -0.018950587, -0.025645304, -0.020790968, -0.03712768, -0.007188154, 0.00856844, 0.014763054, 0.028299188, -0.0018370467, -0.011902463, -0.028139155, -0.013976225, 0.01716355, -0.022497987, 0.022884734, -0.0034123727, 0.021724494, -0.0034573819, -0.017656986, 0.013442781, -0.017923707, -0.026485479, 0.024044974, -0.028272515, -0.008228369, -0.0046943044, -0.0091485595, -0.027525695, -0.021524454, 0.03526063, -0.026725529, 0.007768274, -0.023724908, 0.026365455, -0.014643029, 0.024618426, 0.033660296, 0.0035373985, 0.010355475, 0.00610793, -0.029766157, -0.010535513, 0.019243982, -0.0024088316, -0.0023454851, -0.004921018, 0.014616357, 0.0010835575, 0.020057483, -0.00846175, -0.019243982, -0.01952404, 0.021991216, -0.07286841, 0.040995147, -0.025311902, 0.0033606952, -0.022031225, -0.013909544, -0.00846175, -0.0047043064, 0.0042475453, 0.017056862, -0.002008749, 0.010768894, -0.012989353, -0.004737647, -0.009868708, 0.022444643, 0.001585328, 0.0025038514, -1.5284412E-4, 0.00546113, -0.016950173, 0.03235336, 0.010875584, -0.0018870571, 0.0030706353, 0.0066847163, 0.0016245027, 1.4659282E-4, -0.024578419, -0.006954772, 0.033126853, -0.006804741, -0.01576326, 0.01538985, -0.013562806, -0.017110206, 0.008408406, 0.0031423168, 0.019257316, 0.0042808857, -0.007034789, -0.011855786, -0.010515509, -9.935389E-4, -0.0106622055, 0.003329022, -7.4546675E-5, 0.02071095, -0.006054586, 0.015683245, 0.01972408, 0.010062082, 0.007048125, -0.010815571, 0.017043525, -0.0113156745, 0.058892183, 0.001733692, 0.004524269, -0.023604883, 0.023658227, 0.005781196, 0.025551952, -0.0196574, -0.0016203352, -0.007854958, 0.022764709, -0.005644501, -0.0017436941, -0.038167898, -0.020390885, -0.010222115, 0.008835161, 0.028485892, 0.016470075, 0.018963924, 0.012235865, 0.009541974, -0.0010393817, 0.015656572, 0.04446253, -0.011655744, -0.03566071, 0.0087284725, 0.009481962, 0.018657193, 0.0067347265, 0.014376308, 0.018590512, 0.0017286909, -0.017390264, 0.017870363, 0.024365041, 8.1433513E-4, 0.013896208, 0.022604676, -0.022751374, -0.004654296, 0.0105688535, 0.026458807, -0.013589478, -0.0022621346, -0.0031356488, -0.016750133, -0.033873674, 0.0076149087, -0.02364489, -0.017123543, 0.01887057, 0.01074889, 0.021137707, 0.02440505, -0.019243982, 0.0018920581, -0.050010346, 0.015283162, -0.01631004, -0.02009749, -0.01593663, 0.0272323, 0.011435699, 0.0037141016, 0.017243568, -0.020017475, 0.05718516, 0.012169184, 0.012375894, -0.027058931, 8.0683356E-4, 0.0071148053, 0.004480927, -0.016083328, -0.0077282656, 0.013069371, -0.009975397, 0.01013543, -0.008128348, 0.020910993, -0.028859304, 0.06812076, 0.0132094, -0.018657193, 0.008708469, -0.027445678, 0.006227955, 0.034407116, 0.006214619, -0.020737624, -0.0076149087, -0.007914971, -0.0016328378, 0.014202938, -0.029126026, 0.008915178, -0.013056034, 0.019577384, 0.0046876366, -0.0011719092, -0.022778045, -0.0035173944, -0.013216067, 0.020297533, 0.0058978866, -0.006387988, -0.010728886, 0.01867053, 2.2629682E-4, 0.007354855, -0.024871811, 0.0075615644, -0.016523419, -0.0027822421, -0.0022788048, 0.017937044, 0.0038174563, 0.009501966, -0.004634292, 0.034007035, 0.0068247453, -0.010542181, -0.0034107056, -0.02324481, -0.014176266, 0.029739486, -0.011195649, 0.0025205214, -0.03539399, -0.006781403 ], + "id" : "6ada1021-83ad-4759-ae4c-8665bf9a4359", + "metadata" : { + "source" : "movies.csv" + } + }, + "2d5a2a77-a7bd-4483-a157-ad891f19f03c" : { + "text" : "Mahoney-Todd Manes-Jorge Mardel-Michael McMillan-Sean Meehan-Holly Neelie-Caleb Daniel Noal-Jeremy Orr-Nate Paige-Martin Palmer-Maria Perossa-Caleb Pieplow-Alexander Daniel Pimentel-Frank Powers-Jaime Powers-Brent Reichert-Kelly Ruble-Gina Sarno-Robert B. Schneider IV-Jeff Seich-Christina Shaffer-Douglas Slygh-Colin Strause-Robert P. Thitoff-George Thomas-Shane Thompson-Jerry Lee Tucker-Tai Urban-Chris Vaina-Sandra Weston-Seth Zielicke-Alex DeCourville-Andrea-Nichole Olivas-Tina Grimm-Evan Kole-Hank Amos-Joti Nagra,new york city-shield-superhero-based on comic-alien invasion-superhero team-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/RYMX2wcKCBAr24UyPD7xwmjaTn.jpg,/9BBTo63ANSmhC4e6r62OJFuK2GL.jpg,68721-10195-99861-10138-1771-1726-76338-100402-271110-1930-118340-102899-49026-1724-299536-155-284053-284052-315635-283995-19995\r\n168259,Furious 7,Action-Thriller-Crime,en,Deckard Shaw seeks revenge against Dominic Toretto and his family for his comatose brother.,83.236,Original Film-One Race-Universal Pictures,4/1/15,190000000,1515400000,137,Released,Vengeance hits home,7.236,10157,Vin Diesel-Paul Walker-Jason Statham-Michelle Rodriguez-Jordana Brewster-Tyrese Gibson-Ludacris-Dwayne Johnson-Lucas Black-Kurt Russell-Nathalie Emmanuel-Elsa Pataky-Gal Gadot-John Brotherton-Luke Evans-Tony Jaa-Djimon Hounsou-Noel Gugliemi-Ali Fazal-Sung Kang-Ronda Rousey-Miller Kimsey-Charlie Kimsey-Eden Estrella-Gentry White-Iggy Azalea-Jon Lee Brody-Levy Tran-Anna Colwell-Viktor Hernandez-Steve Coulter-Robert Pralgo-Antwan Mills-J.J. Phillips-Jorge Ferragut-Sara Sohn-Benjamin Blankenship-D.J. Hapa-T-Pain-Brian Mahoney-Brittney Alger-Romeo Santos-Jocelin Donahue-Stephanie Langston-Jorge-Luis Pallo-Tego Calderon-Shad Moss-Don Omar-Klement Tinaj-Caleb Walker-Cody Walker-Lateef Crowder-Dennis Keiffer-Tara Macken-John Koyama-Aaron J. Brooks-Caitlin Dechelle,car race-speed-street race-revenge-race-muscle car,/ktofZ9Htrjiy0P6LEowsDaxd3Ri.jpg,/cHkhb5A4gQRK6zs6Pv7zorHs8Nk.jpg,51497-82992-337339-13804-584-9615-9799-99861-254128-135397-384018-91314-262500-207703-98566-378944-260346-177677-385128-102899-198184", + "embedding" : [ -0.005266785, -0.022250533, -0.012570106, -0.04791364, -0.03005267, 0.031676393, 0.012095374, 0.0033523724, -0.033988137, -0.034263346, 0.020200238, 0.03338268, 0.030355398, 0.013003559, 0.025484223, 0.007320522, 0.0232, -0.025897034, 2.5542703E-4, -0.03635492, 4.317319E-4, 0.003846026, -0.028208777, 0.010994543, 0.0036086596, 0.015507948, 0.035721947, -0.0137879, -0.014544721, -0.01633357, 0.02211293, -0.00690083, 0.0054628705, -0.027672123, -0.020103915, 0.0076026097, 0.020351602, -0.025608066, 0.026268564, 0.0049846973, 0.009948755, -0.0036396205, -0.022374377, -0.015673073, -0.016443653, -0.0022016608, 0.01230866, -0.018425148, -0.017943535, 0.02610344, 0.041941635, 0.031428706, -0.010340925, -0.026681377, -0.0024115066, -0.0030255634, -0.015205219, 0.012466904, 0.006095848, -0.005617675, 0.022415658, -0.014572242, -0.033410203, -0.01594828, -0.007788375, -0.016085884, -0.0012229538, -0.008669039, -0.0034693356, 0.005548873, 0.028566549, 0.001376038, 0.0025783512, -0.003446975, -6.420077E-4, -0.044363465, -0.024699882, -0.008558956, 0.003808185, -0.0010105278, 0.015370344, -0.005266785, -0.012411863, 0.021989087, 0.012301779, 0.0017647687, -0.010581732, 0.014324555, -0.008944247, 0.015053855, 0.017544484, 0.04097841, -1.3857133E-4, 5.736358E-4, 9.314057E-4, 0.02031032, -0.027878528, 0.009873073, -0.02103962, -0.024920048, 0.0048367735, -0.0049881376, -0.003849466, -0.010905101, -0.013725978, -0.011868327, -0.01053357, -0.010210202, 0.01669134, 0.010217082, -0.0011713523, -0.005621115, 0.0132994065, -0.038996916, -0.014462159, -0.007465006, 0.029860023, -0.0074856463, -0.018397627, -0.015604271, 0.022800948, 0.038253855, 8.058422E-4, -0.023791697, 0.042629655, 0.03197912, 9.004448E-4, -0.0034383747, 6.265273E-4, -0.0071553974, 0.033547804, -0.0110495845, -4.8677344E-4, 0.006780427, -0.011180309, 0.047748517, -0.027878528, 6.854389E-4, -0.02721803, -0.020915776, 0.031841516, 0.026268564, -0.031373665, -0.020048873, -0.03228185, 0.009460261, 0.017489443, -0.0032852907, 0.019512217, -0.0023134637, 0.01812242, 0.021617556, 0.015975801, 0.012962278, 0.02179644, -2.5908215E-4, -0.0032010083, -0.011524318, -0.0059272833, -0.024066905, 0.0059995255, -0.009590984, 0.004864294, -0.008799762, -3.8271057E-4, 0.01848019, 0.015329063, -0.026970344, -0.01634733, 0.004248517, -0.012948517, 0.024383392, -0.03775848, 0.011854567, -0.025153974, -3.4572952E-4, -0.0058584814, 8.892645E-4, -0.044886358, -0.017503202, 0.0052083037, -0.0011730724, 0.04463867, 0.03775848, 0.010451009, 0.011888968, 0.028057413, -0.026048398, -0.014310795, -0.008806643, -0.0046647685, 0.008861684, 0.011833927, -0.006708185, -0.6327573, -0.015562989, -0.004527165, -0.012143535, 0.0012160735, 0.025071412, 0.0043689203, -0.0044480427, -0.024259549, -0.02358529, -0.027341874, 0.025071412, 0.015673073, -0.023791697, -0.017131673, -0.021135943, 0.001339917, -0.014338315, -0.0020537367, 0.0015007413, -0.035281613, 0.0029309609, 0.02463108, 0.0030685647, 0.0024115066, -0.0056830365, -0.010671174, -0.011187188, 0.0049502966, 0.007925979, -0.019842468, 0.0042553972, 0.004172835, -0.0077470937, 0.038831793, 0.008462633, -0.003340332, 0.058178883, 0.017461922, 0.012893476, -0.02321376, 0.0023117438, -0.002789917, -0.0013201364, -0.017296797, 0.03916204, 0.0046578883, -0.009646026, -0.011758245, -0.003914828, 0.009749229, -0.0028569987, -0.0018352906, -0.010079478, -0.011909609, 0.012618268, 0.022732146, -0.02390178, 0.012728351, 0.0010896501, -0.01776465, 0.035006404, -6.530805E-5, 1.9114027E-4, 0.014379596, 0.01777841, -9.127002E-5, -0.004492764, -0.009446501, -0.02142491, -0.0075613284, 0.0025886714, -0.010292764, -0.0044514826, 0.015205219, 0.01341637, 0.028346382, 0.0041521946, 0.0042209965, 0.0054525505, -0.0074374853, 0.0068767495, -9.683867E-4, 0.017572004, 0.022924792, -0.0090680905, -0.04031791, 0.014352076, 0.01993879, 0.01050605, 0.00979051, 0.007286121, 0.018163702, 0.013705338, -0.0027073547, -0.0026849941, -0.0051739025, 0.009921234, 0.026543772, -0.06285741, -0.0046991697, -0.026763938, 0.038584106, -0.020723132, 0.015342823, -0.001595344, -0.0062162513, -0.0071966783, 0.026695136, -0.016773902, -0.011944009, 0.006718505, -0.014544721, 0.010684934, -0.009288256, -0.031263582, -0.0032440096, 0.003588019, -0.011090866, -0.0025817913, 0.0026695137, 6.054567E-4, 0.011813286, -0.011214709, 0.015521708, 0.017172953, 0.004097153, -0.0012341341, 0.022030368, 0.00979051, 0.009143773, -3.769054E-4, 0.021947805, -0.025897034, 0.022635825, -0.0016529656, 0.011538078, -0.008276869, 0.005005338, 4.227554E-5, -0.010017556, -0.008565837, -0.01707663, -0.009584105, 0.0018903321, -0.019415896, -0.037896086, 3.6379002E-4, -0.0057139974, -0.008173665, -0.001523962, 0.016182207, -0.005758719, 0.015618031, 0.012742111, -3.0251333E-4, -0.029749941, -0.021163464, -0.00833191, -0.021328589, 6.084668E-4, 0.013251246, -0.0010999703, -0.03401566, 0.025140213, 0.002937841, -0.019140689, -0.006484579, 0.008896085, -0.014737367, 0.015040095, -0.022911033, 0.00833879, 0.0059685647, -0.030960854, 0.029447213, -0.008462633, 0.022690866, -0.0013657176, -4.3581703E-4, 0.0013949585, 0.006567141, -0.013980546, 0.0028724791, 0.016760143, 0.020021353, 0.020048873, -0.018700356, -0.0065052193, 0.014448399, -0.0049812575, -0.015507948, -0.0023427047, -0.00362242, 0.010705575, 0.02430083, 0.009109371, -6.0502667E-4, -0.013388849, 0.0021483393, 0.01848019, 0.024548518, 0.0065327403, 0.0028105576, 0.016099645, -0.032364413, -0.004059312, -0.03583203, 0.017957296, -0.012501305, 0.022223013, -0.026378648, -0.016553737, -0.0030221234, 0.0036052195, 0.012122895, -0.007031554, 0.013148042, -0.016952788, 0.014682325, 0.0055970345, -0.015783155, 0.027341874, 0.0053011863, -0.016498694, 0.00835943, 0.007795255, -0.00652242, -0.0036327401, -0.015604271, -0.0022412217, 0.020736892, 0.00579312, 0.0054559903, 3.450845E-5, -0.007919098, 0.022415658, -3.0154582E-5, 0.029557295, -0.014379596, 0.009941874, 0.023241282, 0.028057413, 0.0051945434, 0.0072723604, -0.010739977, 0.021177225, 3.8808572E-5, -0.009157533, 0.047693476, -0.019525979, 0.030217793, -0.013540214, -0.0022326217, 0.0010371886, -0.02575943, -0.0012298339, 0.0020726572, 0.026777698, 0.008166785, 0.0045340452, -0.020489205, 0.025470462, -5.302046E-4, 0.010038197, 0.006625623, -0.0239293, 0.0066875443, -0.001377758, -0.034951363, -0.014448399, -0.0039251484, -0.004895255, 0.010189561, -0.003660261, -0.017200474, 0.011372954, -0.0033386122, 0.007753974, 0.028951839, -0.007939739, -0.033107474, 0.010905101, 0.033547804, -0.020489205, -0.023750415, -0.0057105576, -0.0052427044, -0.037593357, -0.0050707, 0.004210676, 0.041501306, -0.013313167, 0.015673073, -0.027080428, 0.0024132265, 0.005844721, -0.010994543, 0.031236062, 0.012859074, -0.006305694, 0.02211293, -7.671412E-4, -0.0044858838, 0.021135943, 0.0013287367, 0.0039389087, 0.0017940095, -0.0028071175, -0.008648398, 0.005947924, -0.006051127, -0.047720995, 0.037125506, -0.007864057, -0.020860735, -0.0031717676, -0.007141637, 0.012191696, -0.026530012, -0.01343701, -0.017241756, -0.021493712, 0.0011790926, 0.08905718, 0.051573902, 0.0048470935, 0.008641519, -0.014930012, 0.014269514, -0.009556583, -0.024053143, -0.0114142345, -0.024328351, 0.009185053, -0.011730724, 0.010464769, 0.0060373666, 0.027795967, -0.004165955, -0.0024820284, 0.0031029657, -0.012879715, -0.0058791223, -0.036327403, -0.0180949, 0.029447213, 0.0311535, 0.0029911625, -0.0049743773, 0.016058363, 0.0057415185, -1.4039887E-4, 0.016705101, -0.0069799526, 0.010781257, 0.0068285884, 0.019498458, 0.0046991697, -0.010272123, 0.028029893, 0.011118387, 0.032364413, -6.093268E-4, -9.43876E-5, 0.007471886, 9.3097566E-5, -0.010402847, 0.0034658955, -0.023310082, -0.0071553974, 0.019539738, 0.024204507, -0.05118861, 0.0089717675, -0.00398363, -0.01124223, -0.016402373, 0.011902728, 0.0033970936, -0.009666666, -0.004527165, -0.024548518, 0.016223488, 0.0021534993, -0.027740926, 0.019388374, -0.012054092, 0.001195433, -0.007533808, -0.0070418743, -0.004200356, -0.022291815, 0.013175563, 0.004902135, -0.008235587, -0.015645552, 0.011806406, 0.021617556, 0.008400712, 0.03335516, -0.006054567, 0.017269276, -0.0019591341, -0.04169395, -0.019869989, 0.012026572, -0.020860735, 0.004430842, -9.322657E-4, -0.0076026097, 0.013870463, -0.004492764, 0.012239858, 0.0027641163, -0.012508185, -0.01448968, -3.590599E-4, 0.038198814, 0.015026335, 0.01234306, 0.016883986, 0.0021879002, 0.002647153, -0.0013270166, -0.029804982, -0.014269514, -0.013547094, -0.018411389, -0.014943772, 0.0021965005, 0.006862989, -0.021920284, -0.031373665, -0.033217557, -0.012480664, 0.0051016607, -0.0026763938, 0.010120759, 0.0041453145, 0.01848019, 0.024603559, -0.018865481, 0.0066531436, 0.004496204, -0.005775919, 0.022209253, 0.0290344, -0.012721471, 0.03082325, -0.008380071, -0.019402135, -9.554864E-4, 0.035501778, 0.0035467378, 0.021879004, -0.026557533, -0.005652076, -0.008400712, -0.03445599, 0.010712455, 0.00942586, -0.005111981, 0.008827283, -0.016251009, 0.01916821, 0.013815421, 0.015700594, 0.004970937, -0.02687402, 0.010320284, 0.012879715, 0.006264413, 0.031070936, -0.009013048, 0.013216845, -0.024053143, -9.2882564E-4, -0.01268019, -0.014874971, -0.02099834, -0.01232242, 0.04125362, 0.0078021353, 0.040455516, -0.010354686, 0.010127639, 3.9389086E-4, 0.016801424, 0.01594828, -0.025676869, -0.0015265421, -0.026860261, 0.012480664, 0.0253879, 0.032887306, -0.00470605, -0.0019900948, 0.0031666073, 0.019773666, 0.0022223012, 0.020874497, 0.01993879, -0.02099834, -0.012267378, 0.011833927, -0.031841516, -0.010292764, -0.034180783, -0.025401661, 0.028869277, 0.0123568205, -0.00399051, -0.0072035585, 0.0055316724, -0.0045168446, 0.006343535, -0.03269466, 0.021686358, -0.016787663, 3.3562427E-4, -0.021548754, -0.0072998814, -0.004977817, -0.00724484, 0.009295137, 2.1661847E-4, -0.019278292, -0.008923606, 0.030658126, -0.01849395, -0.023832977, 0.01630605, -0.011847687, -0.0023392646, -0.02318624, -0.0039251484, -0.035721947, -0.014365836, -0.0041934755, -0.012246738, 0.0051567024, -0.023021115, -0.029227046, 0.030548042, 0.0014998814, 0.043620404, 0.0033489324, 0.032529537, 0.028456464, 0.010561091, -0.020902017, 0.0038976276, -0.0024854685, -8.6475385E-4, 0.0311535, 0.021617556, -0.02354401, -0.0098180305, 0.0071966783, -0.007884697, -0.037125506, -0.036547568, 0.032061685, 0.030162752, 0.025883274, -0.027617082, 0.008235587, -0.030603085, 0.0047163703, -0.0033162516, 0.0030960855, -3.222939E-4, -0.033410203, -0.024232028, 0.016085884, -0.0065293, 0.004382681, 0.019071886, -0.03833642, 0.016237248, -0.017296797, -0.0050638197, -0.018535232, -0.01958102, 0.04097841, -0.0116825625, 0.009019929, 0.007361803, 0.013244365, -0.006742586, -0.0038253856, 6.3512754E-4, 0.027025385, -0.011407355, 0.030713167, -2.5822214E-4, -0.01053357, -6.90169E-5, 0.02142491, -0.009446501, -0.028456464, -0.021232266, -0.0038701068, 0.024053143, 0.001924733, -0.011778885, 0.014723606, -0.014764887, -0.013388849, 0.0106642945, -0.01707663, 0.012535706, -0.03808873, -0.0031390865, -0.013987426, 1.739398E-4, -0.014324555, 2.511269E-4, 0.0027228352, 4.2141162E-4, -0.0019144128, 0.0017630486, 0.0019470938, -0.030520521, -0.024837485, -0.05542681, -0.021658838, -0.008751601, -0.01596204, -0.00579312, -0.010478529, 0.010120759, 0.006381376, 0.0025250297, -0.006450178, -0.010409727, -0.0050569396, 0.0022979833, 0.02351649, -0.003804745, -0.003078885, 0.0054284697, 0.02497509, -0.014420878, -0.008565837, -0.0074374853, 0.017283037, 0.015205219, -0.008847924, 0.0074443654, 0.012501305, -0.024121946, 0.009948755, 0.022044128, 0.03296987, 0.021218505, -0.0067288256, -0.035088968, -0.007850297, 3.4207443E-4, 0.038006168, -0.009405219, -0.0038391459, 0.032887306, 0.014778648, 0.016402373, 0.012824674, -0.010327165, -0.020103915, 0.010285884, -0.009570344, -0.024520997, -0.014544721, 0.0029137603, 0.005555753, 0.009315777, -0.014544721, -0.027135469, -0.0045512454, -0.026282325, -0.026901541, -0.0076714116, 0.017695848, 0.04562942, -0.0012066133, 0.0028208778, 0.0061852904, 0.007822776, -0.0031562871, -0.018865481, -0.0022618624, 0.015370344, 0.009157533, 0.023681613, 0.025497984, -0.023626572, 7.05757E-5, 0.008366311, 0.016595017, 0.01779217, 0.019787425, -0.012446263, -0.0031322064, -5.2375445E-4, 0.0037909846, -0.003407414, -0.011180309, 0.018273784, -0.031015895, -0.020117674, 4.5108245E-4, 0.012054092, -0.0073824436, 0.003811625, 0.0072654802, -0.015728114, -0.0044755633, -0.0032010083, -0.022002846, -0.0024545076, -0.044143297, 0.029749941, 0.015920758, -0.009962515, 0.030300356, 0.03338268, -0.0011980131, 0.006126809, -0.012941637, 0.013897983, -0.012611388, -0.009529063, -0.0020399762, 0.017475681, -0.032584578, 0.005844721, -0.023144959, 0.005466311, -0.0031803676, -0.005951364, 0.007279241, 0.021466192, 0.009921234, -0.051601425, -0.002316904, -0.0021999406, 0.006931791, -0.003952669, 0.004382681, -0.021080902, -0.0052702255, -0.010712455, -0.005363108, -0.015755635, -0.016209727, 0.010045077, -0.022002846, -0.005882562, 0.015673073, 0.18185717, -0.0063504153, 0.0025319098, 0.041143537, -0.0017802491, 0.010808778, 0.026736418, 0.015838197, -0.0031115657, 0.014042467, 0.010423487, -0.0070934757, -0.0033884936, -7.9853204E-4, 0.022236774, -0.016195966, -0.023406405, -0.014586003, -0.014475919, -0.026997864, -0.020406643, 0.005476631, -0.009123132, -0.025621826, -2.4854686E-4, 6.303974E-4, -0.007905338, 0.017131673, 0.0140493475, 0.0021913406, -0.016223488, -0.012927877, 0.002354745, 8.594862E-5, -0.015893238, -0.007279241, -0.009969395, 0.007692052, 0.010815659, 0.010182681, -7.2715007E-4, -0.0035673785, -1.3341117E-4, -0.005469751, 0.0012857355, 0.022429418, -0.019622302, 0.003152847, -0.0139530245, -0.008930487, -0.039602373, -0.0013880783, 0.017640807, 0.021865243, -0.0076714116, -0.015824437, 0.0114142345, 0.010829419, -0.0038150651, 0.00979051, 0.008455753, 0.02245694, -0.030190272, 0.023709133, 0.0014456998, 0.02139739, -0.012177936, -0.005394069, 0.002573191, -0.028924318, -0.0119715305, -0.038529065, 0.014998814, 0.0065843416, -0.0014964413, -0.0092607355, 0.013574614, 0.012982918, 0.0033798933, 0.02864911, -0.020324081, -0.009666666, 0.011806406, -0.010526691, -0.014544721, -0.025855754, 0.014159431, -0.012281138, -0.019333333, -0.0065774615, -0.005517912, -0.027245551, -0.024369633, 0.0029584817, -0.021562515, -0.0052014235, 0.03629988, 0.010726216, -0.001740688, -0.0069489917, -0.038969394, 0.022333097, 0.01740688, -0.0021500592, -0.032061685, -0.017695848, 0.014613523, 0.014751127, 0.027341874, -0.0015695433, -0.0071622776, -0.0137603795, -0.0016202847, -0.009150652, 0.00362586, 0.030713167, 0.011538078, -0.01810866, 0.04359288, -0.020021353, 0.019773666, -0.022415658, 0.008249347, -0.006484579, -0.004681969, -0.03228185, -0.024699882, -0.005177343, 0.008469514, -0.02351649, 0.0061164885, -0.024204507, 0.02431459, -0.010946382, 0.0019109728, 0.0020812573, 0.019140689, -0.0066187424, 0.013980546, -0.0064364173, -0.004382681, 0.0058516013, 0.012735231, 0.011366073, 0.007141637, -0.027025385, 0.006814828, 0.0014276394, -0.021301068, -0.037070464, -0.016608778, -0.006488019, 0.0047335704, 0.0112215895, 0.040510558, 0.0014783808, -0.0046922895, -0.039657414, -0.01666382, 0.044115778, -0.035859548, 0.019333333, 0.01777841, 0.01304484, -0.024713641, -0.0069352314, -0.17657319, 0.026530012, 0.021369869, -0.029915065, 0.0145309605, 0.008620878, 0.04755587, 0.010251483, 0.0039285882, -0.023681613, 0.04306999, -0.008111744, -0.026915303, -0.004489324, 0.008249347, 0.0076301303, -0.018906761, 0.040813286, 0.029860023, 0.008999288, 0.04097841, -0.0070246737, -0.012019692, -0.0066497033, -0.012790273, -0.0039251484, 0.02534662, 0.01843891, 0.007334282, -0.0052461447, -0.041473784, -0.0107606165, 0.016760143, 0.030382918, -0.015384104, 0.0059548044, -0.018191222, -0.010609252, -0.011159668, -0.0023667852, 0.032887306, 0.0021448992, 0.00977675, 0.019525979, 0.012253618, 0.0036533808, 0.025993356, -0.018920522, 0.014228232, -0.0020502966, -0.017365599, -0.0428223, 0.024094425, -0.019154448, 0.004238197, 0.012859074, 0.0013717378, -0.005122301, 0.0072310795, -0.0012444543, -0.037923604, -0.0010483689, 0.0025456701, -5.1601423E-4, 0.0042691575, -0.026502492, -0.020502966, -0.0052839858, -0.043014947, 0.019787425, -0.024796205, 0.02141115, 0.016140925, 0.013877342, 0.018631553, -0.020736892, -0.03547426, 0.0139530245, -0.0063882563, 0.00508446, -0.021080902, 0.040400475, -0.008435112, 0.0059307236, 0.01633357, 0.009990036, 0.016471174, -0.003553618, -0.0033454923, 3.5690984E-5, -0.0037978648, -0.015714353, -0.035088968, -0.0048470935, 0.0019023725, 7.060795E-4, -0.0012650948, 0.004506524, 0.011923369, -0.016443653, 4.0098606E-4, -0.0202828, -0.024149466, 0.016746381, 0.013485172, 0.0070934757, 4.3366695E-4, 0.018232502, 0.012054092, -0.0053906287, -0.018136181, -0.0065705813, 0.017888494, 0.008228707, -0.008256228, 0.011778885, -0.005941044, -0.02864911, 0.0045787664, 0.02500261, 0.070728354, 0.002979122, 0.0046475683, 0.00761637, -0.0034400949, -0.015728114, -0.093955874, 0.011840806, 0.019085646, 0.032749705, -0.03839146, 0.032859787, -0.0060752076, 0.024080664, -0.023943061, 0.038529065, -0.0013098161, -0.020255279, 0.014434638, 0.0022653025, 0.02285599, 0.006955872, -0.014751127, -0.0069283512, -0.009474021, 0.026337367, -0.017874733, -0.003013523, -0.012466904, -0.017929774, -0.0069765123, 0.026557533, -0.021177225, 0.023695374, 0.007870937, 0.001523102, -1.921078E-4, -0.011400474, 0.020035112, -0.019071886, -0.018769158, -0.03005267, -0.01594828, -0.020902017, -0.0020743771, -0.036162276, 0.0071691577, -0.0078365365, -0.010691815, -0.018273784, -0.0053837486, 0.0082218265, -0.035776988, 0.027644603, 0.008565837, -0.025456702, -0.006560261, -0.01777841, -0.023392646, -0.013065481, 0.010361566, 0.018191222, 0.029942585, -0.01087758, -0.03740071, -0.027176749, -0.0056383153, 0.008441993, -0.0202828, 0.014448399, 0.010822538, 0.013719099, -0.0064329775, -0.020062633, 0.017860973, -0.029749941, -0.028483985, 0.036107235, -0.04821637, -0.0068664295, -0.01631981, 0.007506287, -0.04139122, -0.022374377, 0.020090153, -0.031125978, 0.004093713, -0.022415658, 0.0033798933, -0.017090391, 0.013705338, 0.011441756, 0.010162041, 0.017310558, -0.0087791225, -0.043207593, -0.008036061, 0.027961092, -0.0053768684, -0.009673547, -0.012460024, 0.016980309, 0.013732859, 0.012872835, -0.021273546, 0.011661922, 0.0059685647, -0.0058206404, -0.07540688, 0.03847402, -0.038308896, 0.001955694, -0.019402135, -0.018714117, 0.009955634, -0.0075613284, 0.0010853499, 0.029282087, -0.005469751, 0.015535468, -0.0025319098, -0.0016753263, -0.010801898, 0.025952077, -0.0034194542, 0.0056073545, 0.0060236063, 0.004668209, -0.02357153, 0.016099645, 0.019869989, 0.014696085, 0.0023839858, 0.0340707, 0.0052771056, 0.009659787, -0.008958007, -0.0052083037, 0.02099834, -0.012920996, 0.008572716, 0.0018920522, -0.01630605, -0.03448351, -0.0014422598, 0.0010414887, 5.7062577E-4, 0.0025525505, -0.012274259, -0.021163464, -0.0012857355, -0.008208066, 4.2141162E-4, 0.0058928826, -0.01627853, 0.009109371, 0.007045314, 0.018989325, 0.028896797, 0.015053855, -0.006126809, -0.018218743, 0.034621116, -0.013017319, 0.050528113, 0.0074581257, 0.0039939503, -0.029447213, 0.030713167, 0.006264413, 0.026929062, -0.033520285, 0.009728588, -0.00435172, 0.010079478, -0.006450178, 0.00760949, -0.028167497, -0.019732384, -0.016402373, 0.0035295375, 0.03153879, 0.00470949, 0.002648873, 0.006780427, 0.013099881, -0.008077343, 0.022429418, 0.022181733, -0.0039182683, -0.02859407, 0.018893002, -0.004757651, 0.008263108, -8.8582444E-4, 0.015384104, 0.010210202, 0.005373428, -0.008669039, 0.017255517, 0.021135943, -0.0102790035, 0.001014828, 0.009377698, -0.023998102, -0.009363938, -7.034994E-4, 0.048684224, -0.0018782918, -0.0028208778, -0.0037944247, -0.008902965, -0.021259787, 0.014255753, -0.01992503, -0.004207236, 0.004750771, 0.019264532, 0.027782205, 0.010409727, -0.023832977, 0.003080605, -0.032474495, 0.008613997, -0.012095374, -0.012748992, -0.010045077, 0.041859075, 0.00978363, 0.003846026, 0.034923844, 0.0022377816, 0.05140878, 0.014338315, 0.016980309, -0.027451957, 0.013485172, -4.065762E-4, 0.0087791225, -0.011937129, -0.021259787, -0.010347805, -0.022580782, 0.014352076, 0.0023100236, 0.030520521, -0.01450344, 0.07551696, 0.014682325, -0.008744721, 0.013388849, 0.003118446, 0.011159668, 0.008641519, 0.026158482, -0.020241518, -0.013870463, -0.0047542113, -0.011930249, 0.0029619217, -0.04100593, -0.0018404508, 9.7612693E-4, 0.008799762, 0.020351602, -5.5149023E-5, -0.013815421, -8.0971234E-4, 0.0046544485, 0.013959905, -0.0070177936, -0.0034228945, -0.012246738, 0.02249822, -0.01776465, 0.006673784, -0.03151127, -8.1960263E-4, -0.019814946, 1.1728574E-4, 0.008772242, 0.020213997, -0.021920284, 9.864472E-4, 0.007286121, 0.028731672, 0.017984817, -0.019883748, -0.0086827995, -0.020502966, -0.027328113, 0.035226572, -0.0062919334, -0.014255753, -0.031291105, -0.009604745 ], + "id" : "2d5a2a77-a7bd-4483-a157-ad891f19f03c", + "metadata" : { + "source" : "movies.csv" + } + }, + "90b44cf6-53a6-4365-be9a-d37e1e5e8f84" : { + "text" : "418,3659,Jim Caviezel-Maia Morgenstern-Christo Jivkov-Francesco De Vito-Monica Bellucci-Mattia Sbragia-Toni Bertorelli-Luca Lionello-Hristo Shopov-Claudia Gerini-Fabio Sartor-Giacinto Ferro-Aleksander Mincer-Sheila Mokhtari-Lucio Allocca-Paco Reconti-Adel Bakri-Luciano Dragone-Adel Ben Ayed-Franco Costanzo-Lino Salemme-Emanuele Gullotto-Francesco De Rosa-Maurizio Di Carmine-Francesco Gabriele-Angelo Di Loreta-Federico Pacifici-Roberto Santi-Giovanni Vettorazzo-Ted Rusoff-Tom Shaker-Andrea Coppola-Romuald Klos-Giuseppe Lo Console-Dario D'Ambrosi-Luciano Federico-Domenico Capalbo-Valerio Esposito-Antonello Iacovone-Nicola Tagarelli-Ivan Gaudiano-Chokri Ben Zagden-Roberto Bestazzoni-Luca De Dominicis-Pietro Sarubbi-Abel Jafri-Lello Giulivo-Emilio De Marchi-Roberto Visconti-Sergio Rubini-Francesco Cabras-Andrea Refuto-Giovanni Capalbo-Matt Patresi-Sabrina Impacciatore-Daniela Poti-Jarreth J. Merz-Noemi Marotta-Rossella Longo-Davide Marotta-Rosalinda Celentano-Danilo Di Ruzza-Vincenzo Monti-Danilo Maria Valli-Nuot Arquint-Abraam Fontana-Valerio Isidori-Paulo dos Santos-Arianna Vitolo-Gabriella Barbuti-Ornella Giusto-Michelle Bonev-Lucia Stara-Evelina Meghnagi-Francis Dokyi,christianity-jewry-roman empire-suffering-apostle-last supper-roman-bible-crucifixion-satan-mission-torture-brutality-jesus christ-christian film-aramaic-ancient language film,/2C9vyK6leWDb2ds65R7uIwSmh8V.jpg,/4840rkbpsiuow5ew155oVKcqJwj.jpg,1579-2024-2675-652-3981-197-616-933554-591-254-944-1885-1966-8358-482408-8839-1495-676-74-1933-9342\r\n11631,Mamma Mia!,Comedy-Romance,en,An independent single mother who owns a small hotel on a Greek island is about to marry off the spirited young daughter she's raised alone. But the daughter has secretly invited three of her mother's ex-lovers in the hopes of finding her biological father.,33.102,Internationale Filmproduktion Richter-Playtone-Littlestar,7/3/08,52000000,609841637,108,Released,Take a trip down the aisle you'll never forget,6.958,5740,Meryl Streep-Amanda Seyfried-Pierce Brosnan-Stellan Skarsg��rd-Colin Firth-Julie Walters-Christine Baranski-Rachel McDowall-Nancy Baldwin-Heather Emmanuel-Colin Davis-Ashley Lilley-Ricardo Montez-Mia Soteriou-Enzo Squillino Jr.", + "embedding" : [ 0.0061981604, -0.027861698, -0.0038062974, -0.04758372, -0.026353857, 0.042299606, -0.0011267108, -0.002335152, -0.02317805, -0.045128476, 0.027995134, 0.035440933, 0.017693778, -0.008653405, 0.008913608, 0.009500732, 0.022670988, -5.554325E-4, 0.007706001, -0.031037504, 0.0041465624, -1.6679656E-4, -0.026193732, 0.014090973, 4.6119248E-4, 0.008853561, 0.024725921, -0.015278565, -0.009440686, -0.017653748, 0.004033141, -0.004850444, 0.0026837566, -0.017707122, -0.0049138265, -0.0028438813, 0.018214185, -0.022630958, 0.014811534, 0.011408885, 0.004179922, 0.015171815, -0.01777384, -0.006852003, -0.016159251, 0.008966983, 0.007659298, -0.0036261573, 0.005130662, 0.02203049, 0.027034387, 0.027995134, -0.017933967, -0.016266001, -0.013230303, 0.010508183, -0.016412782, 0.0032675446, -0.008286453, 0.010454808, 0.016346063, -0.008573343, -0.028128572, -0.009834325, -0.015505408, -0.008473265, -0.01643947, -0.01214279, -0.0057511455, 0.004406765, 0.024112111, 0.011862571, 0.009080404, 0.0029239438, 0.018481059, -0.024365641, -0.025459826, -6.642673E-4, -0.0024535775, 0.0011859236, 0.012749929, -0.0072389706, 7.5975835E-4, 0.0046836473, 0.017093312, 0.0073924237, -0.020295806, 0.029276133, -0.01633272, 0.011935961, 0.020015588, 0.019575244, -0.0020632735, 0.004269992, 0.011502291, 0.011709118, -0.023404893, 0.029569695, -0.005824536, -0.02651398, -0.008233078, -0.0010608261, -0.00562438, -0.00650173, 0.006578456, -0.008940295, 0.006538425, -0.024805984, 0.02500614, 0.009774279, -0.006341605, -0.0026720809, 0.02489939, -0.030690568, -0.0064750426, -0.0024385657, 0.030583818, -0.022657644, -0.0060880743, -0.0077260165, 0.014010911, 0.03621487, 0.0020983007, -0.052681025, 0.041392233, 0.03045038, 0.004226625, -0.023805205, -9.20717E-4, 0.0101012, 0.027861698, -0.002767155, 0.019681994, 0.02156346, -0.014197723, 0.045128476, -0.016519532, 0.014264442, -0.022951206, -0.015585471, 0.03223844, 0.040004488, -0.025032828, -0.018107435, -0.025966888, 0.011382197, 0.010868464, -0.003676196, 0.02475261, 0.0036094775, 0.024258891, 0.019081526, -5.270771E-4, 0.015812313, 0.032185063, 0.0072523146, -0.010775058, 6.3382694E-4, -0.010594917, -0.027781636, -0.011415556, 0.010541542, -0.0017713795, -0.0051206546, -0.006354949, 0.019495182, 0.004903819, -0.020696117, -0.0030473731, -0.003936399, -0.011809196, 0.027995134, -0.021830333, 0.020616055, -0.008846889, 0.022257334, 0.0026637411, -0.009447357, -0.02600692, -0.023738487, -0.006795292, 0.008319813, 0.034133248, 0.028689008, -0.0036595166, 0.015145128, 0.0038396567, -0.011709118, 0.014998347, -0.018267559, -0.021189835, 0.017253436, 0.009700888, -0.012256212, -0.6451958, -0.010454808, -0.015371971, -0.005334154, 0.015785627, 0.019868806, 0.012196165, -0.00523074, -0.014771503, -0.008313141, -0.030103443, 0.027247885, 0.026687449, -6.667692E-4, -0.029516319, -0.010995229, -9.632501E-4, -0.029249445, -0.00476371, 0.009307248, -0.021910395, 0.011028589, 0.023565019, 0.01096187, 0.008133001, -0.0116424, -0.0059312857, -0.031758066, 0.00899367, -0.0028255337, -0.015879033, 0.025740044, 0.013530537, -0.0050572716, 0.038856927, -0.014758159, -0.01522519, 0.056577392, 0.022630958, 0.027781636, -0.025846794, -0.0019131566, 0.0148915965, 0.00485378, -0.023671769, 0.015398659, -0.0038963677, -0.004666968, 0.007218955, -0.008860233, -0.0024819328, 0.012136118, -0.007966204, -0.007972876, -0.0029889944, -0.0015412002, 0.01830759, -0.038776863, 0.01124876, 0.0046836473, -0.004540202, 0.020215742, 0.011762493, 0.0164795, 0.0012301246, 0.022577582, 0.0035494308, -0.017386874, 0.022684332, -0.019468494, 0.008846889, 0.013176928, -0.018454371, 6.838659E-4, 0.01575894, 0.015532096, 0.018080747, 0.014624722, -0.01824087, 0.012976772, -0.0050205765, -0.0054108803, 0.008600031, 0.0074925013, 0.009767607, 0.0070187994, -0.04667635, 0.015318596, 0.008193047, 0.0039997813, 0.011582353, 0.019948868, 0.009327264, 0.010761714, -9.6825405E-4, 0.0026370536, -0.021950427, 0.007472486, 0.02826201, -0.065117374, -0.0074591422, -0.024832672, 0.023458268, -0.013663975, 0.006204832, 0.010454808, -0.015145128, -0.0021516755, 0.020375868, -0.02092296, 0.0020732812, -0.0068720183, -0.023658425, -0.00827311, -0.008640062, -0.033813, 0.010001122, 0.018881371, -0.010501511, -0.015505408, -0.0053541698, 0.009120435, 0.0029189398, -0.011629056, 0.0015361963, 0.034907185, -0.0013310366, -0.0052874507, 0.008119657, 0.006128106, 0.0067319092, 0.0076459544, 0.02034918, -0.023658425, 0.008546656, 0.009267217, 0.009734247, -0.0021066405, 0.015785627, -0.002950631, -0.017173374, -0.013663975, -0.01443791, -0.0059312857, 6.9053774E-4, -0.01622597, -0.018827995, 0.009547435, -0.0038930317, -0.010041153, -0.007038815, 0.010821761, -0.001064996, 0.00970756, 0.0015820654, 0.0026604051, -0.032718815, -0.025152922, 0.012863351, -0.020322492, 0.0044301166, 0.018814651, -0.013383756, -0.008286453, 0.023164706, -0.008026251, -0.018374309, 0.004166578, -0.005897926, -0.015879033, 0.020829555, -0.0064183315, 0.0024919405, 0.014558003, -0.020108994, 0.026060294, -0.013797412, 0.024485735, 0.0059679807, -0.014477941, 0.0036595166, -0.03477375, -0.022577582, -0.010501511, 0.030236881, 0.024832672, 0.021016367, -0.005127326, -0.008012907, 0.010401433, -0.01679975, -0.00881353, -0.010721683, -0.006074731, 0.0066184876, 0.021016367, 0.0012217849, 0.008513296, -0.007619267, -0.0069120494, 0.050919652, 0.021229867, 0.02049596, -9.607482E-4, 0.003344271, -0.03159794, 0.0036895399, -0.017440248, 0.018120779, -0.012549773, 0.023444925, -0.022017146, -0.015318596, -0.0024602492, 0.0042366325, 0.031037504, -0.009474045, -0.009267217, -0.010601589, 0.0021900388, 0.0076059233, 0.004366734, 0.012463039, 0.0022667653, -0.034159936, -6.400818E-4, 0.011789181, -0.023992017, -0.0030290256, -0.0035093997, -0.005270771, -0.002853889, 0.016893156, 0.016719688, 0.013323709, -0.03266544, 0.027127793, -0.0077860635, 0.032798875, -0.013283678, 0.0052907867, 0.020482618, 0.018400997, 0.0014978331, -0.0038496647, -0.027007699, 0.0053708493, 0.022897832, -0.0029422913, 0.04753035, -0.011996008, 0.024792641, -0.0028905843, 0.0116424, 0.012749929, 5.533476E-4, -0.0058312076, 0.018801307, 0.034239996, 0.03287894, 0.019254996, -0.02866232, 0.020295806, 0.013784068, 0.00485378, 0.0091804825, -0.019601932, -0.0028689008, -0.010501511, -0.04929172, -0.025633296, -0.019535214, 0.0027271237, 0.009280561, -0.014157692, -0.018921401, -0.01124876, 0.018360965, 0.02464586, 0.008126329, -0.017173374, -0.04291342, 0.024258891, 0.0071855956, -0.014451254, -0.01873459, -0.012876694, -0.008773499, -0.040244672, -0.022270676, -0.0058011846, 0.034800433, -0.028502196, 0.0017880591, -0.013877474, 0.0078394385, 0.025633296, -0.013623943, 0.021389991, 0.011522306, -0.0011433904, 0.014477941, -0.0071989396, -0.010394761, 0.027301261, -0.015638845, 0.0013910834, -0.0025920186, -0.003340935, 0.0017346842, -0.009434014, 0.014117661, -0.04027136, -9.824317E-4, -0.017173374, -0.010801746, -0.015131784, 0.0010741699, 0.003340935, -0.023871923, -0.018454371, -0.0399778, -0.019081526, -0.0020566017, 0.06917387, 0.037762742, 0.018427683, 0.02217727, 0.0018714574, -0.0019014808, -0.015345284, -0.004316695, -0.010374746, -0.010334715, 0.016492844, -0.028742382, 0.02192374, -0.0047737174, 0.0059312857, -0.0018614496, 0.0033509429, -0.0018164145, 0.0077260165, -0.0068720183, -0.016252657, -0.016986562, 0.0135238655, 0.026113668, 0.0077393604, -0.017760498, 0.03789618, 0.007912829, 0.0040031173, 0.013904161, -4.0072872E-4, 0.011188713, -0.009554107, 0.0041565704, -0.004073172, -0.016879812, 0.039630864, 0.006451691, 0.022884488, 0.007465814, 0.005851223, 0.0037662664, 6.4675364E-4, 0.0018631176, 0.015718907, -0.023578363, -0.029836569, 0.031624626, 0.050786216, -0.036108118, 0.03181144, 0.017506966, -0.0074991733, -0.014744815, 0.030076755, -6.525915E-4, -0.004313359, -0.0061981604, -0.018494403, 7.0513244E-4, -0.0016604598, -0.032798875, 0.0019798751, -0.018921401, -0.0061514573, -0.029009258, -0.028689008, -0.0025453155, -0.028929194, -0.0024368977, -0.0038930317, -0.01694653, -0.0060246917, -0.0014819874, 0.025659982, 0.0066184876, 0.020015588, -0.0012017692, 0.017186718, 0.020335836, -0.033652876, -0.027127793, 0.019068183, -0.019134901, -0.012563117, 0.018427683, -0.00698544, -0.006635167, -0.01171579, 0.019908838, -0.0053074667, 0.014131005, -0.012016024, -0.014384535, 0.03151788, 0.010167918, 0.012569789, 0.005777833, -0.0051006386, 6.9262274E-4, 0.0036661883, -0.0169065, -0.008860233, -0.018027373, -0.03306575, 0.005083959, 0.0045602177, -0.0034760402, -0.01171579, -0.020736149, -0.023631737, -0.013023475, 0.010308027, -0.005267435, 0.008092969, 0.01124876, 0.018227529, 0.02070946, -0.0050272485, -0.0013468822, 0.0038229772, -0.0105749015, 0.022831112, 0.019655306, -0.0050739516, 0.015839001, -0.0015303585, -0.016959874, 0.019681994, 0.03234519, 0.0072322986, 0.024112111, -0.0092138415, -0.023565019, -0.013477162, -0.031758066, 0.024552453, 0.010421449, -0.01830759, 0.022791082, -0.009881028, 0.014531316, 0.0030373654, 0.004710335, -0.0106816515, -0.029756507, 0.016666312, -0.028795758, 0.014104317, 0.029649757, -0.015158472, 0.010955198, -0.02317805, -0.011962649, -0.005581013, -0.027434697, -0.008359844, -0.0071922676, 0.020789523, 0.0135171935, 0.032985687, 0.009060389, 0.036161494, 0.002770491, 0.008012907, 0.032318503, -0.023364862, -0.009047045, -0.021416679, 0.01106862, 0.020722805, 0.030850692, 0.015171815, -0.014878253, -0.0012818315, 0.015652189, -0.0019181605, -0.005137334, -0.0020115664, -0.009954419, -0.023138018, 0.0149716595, -0.035734493, 0.007932845, -0.010301355, 0.0011233748, 0.033492748, -0.011115323, -0.008173032, 0.0057378015, 0.03263875, -0.014584691, 0.018814651, -0.02772826, 0.006451691, -0.026540669, -0.004306687, -0.012456367, -0.017200062, -0.009053717, -0.019214964, 0.03378631, 0.0076993294, -0.028608946, -0.014718128, 0.021043055, -0.0063716285, -0.024445703, 0.02732795, -0.009820982, 0.0106216045, -0.029222757, -0.015065066, -0.035200745, -0.0025052843, -6.1881525E-4, -0.014197723, -0.0021450038, -0.0134638185, -0.037922867, 0.01622597, -0.0017880591, 0.037949555, 0.006261543, 0.048838034, 0.01966865, 0.008153016, -0.03098413, 0.0035194075, -0.014784847, 0.0063215895, 0.023271456, 0.03434675, -0.0032725486, -0.0057511455, 0.004269992, -0.008052938, -0.038750175, -0.031678002, 0.03242525, 0.041712485, 0.021430021, -0.035867933, 0.0074791578, -0.015638845, 0.020362524, -0.011222073, 0.025740044, 0.013263662, -0.021056397, -0.0027738267, 0.007412439, -0.015278565, 0.0053041307, 0.005137334, -0.0393373, 0.027101105, -0.042326294, 0.010948526, -0.014237754, -0.016746374, 0.03309244, -0.007912829, 0.015652189, 0.010835105, 0.01824087, 0.01160904, -0.012336274, 0.009267217, 0.029116007, -0.012990116, 0.006892034, 0.005574341, 0.007992892, 0.0046069208, 0.014144348, -0.01748028, -0.006201496, -0.014611378, -0.0092205135, 0.025726702, -0.0017663756, 0.0031657987, 0.007972876, -0.011028589, -0.019748712, -4.6160948E-4, 0.005711114, 0.007659298, -0.020335836, 0.0092939045, -0.011015245, 0.018881371, 8.573343E-4, -0.01232293, -8.915276E-4, -0.012523086, 0.0018431019, -0.0065084016, -2.7187838E-4, -0.016052501, -0.030210193, -0.020842899, -0.012696554, -0.015638845, 0.004700327, 0.008413219, -0.0020048947, 0.017226748, 0.011422228, 0.008379859, 0.008086298, 0.008179704, -0.029116007, -0.008293125, 0.020335836, -0.0076392824, -0.013176928, 0.015879033, 0.028422134, 0.0011792517, -0.004536866, -0.013303693, 0.01433116, 0.028528884, -0.012189493, 6.1881525E-4, 0.01271657, -0.01730681, -0.0012960093, 0.012202837, 0.015385315, 0.016452814, 0.0026487294, -0.022043834, -0.005234076, -0.004400093, 0.0457156, -0.0034760402, -0.0010099532, 0.021043055, 0.01607919, 0.041685797, 0.03464031, -0.0059913322, -0.020642743, 0.0020065627, -0.007959532, -0.015852345, -0.010908495, -0.008746811, 0.0052941227, 0.0017980669, 0.004940514, -0.019295026, -0.0020799532, -0.03618818, -0.037629303, -0.007085518, 0.017173374, 0.032291815, 0.016973218, -7.7226805E-4, -0.0037495866, 0.014037599, -7.476656E-4, -0.020482618, 0.006004676, 0.014558003, 0.01028134, 0.035120685, 0.0015904052, -0.036268245, -0.017426904, 0.009133779, 0.02887582, 0.016572906, 0.017867247, -0.02364508, -0.01916159, -0.0024919405, -0.01694653, 0.0034193294, 0.008733468, 0.037602615, -0.040538236, -0.0076059233, 0.0048371004, 0.009007014, -5.099805E-4, 0.007919501, -6.546765E-5, -0.0060313637, -0.0039497423, 0.008446578, -0.014864909, 0.0016504519, -0.025152922, 0.007932845, 0.014411223, -0.005627716, 0.034506872, 0.01658625, -0.011395541, 0.011655743, -0.0011192049, 0.010207949, -0.012603148, -7.8227586E-4, -0.0010041153, 0.014771503, -0.037175618, 0.0017496959, -0.018080747, 0.007972876, -0.014184379, -0.0053641773, 0.0076793134, 0.018374309, 0.016346063, -0.062075008, 0.005631052, 0.0010783398, 0.011308807, -0.035174057, 0.0053041307, -0.019588588, -0.008319813, -0.0022834449, 0.00934728, -0.028849132, -0.02275105, 0.0047303503, -0.016212625, -0.009694216, 0.015612158, 0.16599594, 0.0012568121, -0.0135038495, 0.038002927, 0.006074731, -0.0020515977, 0.030930754, 0.030850692, 0.004259984, 0.01643947, 3.9509934E-4, -0.00899367, 0.013297021, 0.001702159, 0.018320935, -0.016866468, -0.02496611, -0.02102971, -0.016306031, -0.03549431, -0.006004676, -0.002853889, 8.1730314E-4, -0.015371971, -0.006451691, 0.0027021042, -0.013050163, 0.012850007, 0.020949649, 0.0023635072, 0.0029106, -0.020576024, -0.016666312, 0.009867685, -0.0228578, 5.033086E-4, -0.01579897, 0.009687544, 0.021389991, -0.007926173, -0.0077927355, 0.0016145906, -0.0022183943, -0.0041532344, -0.0016112548, 0.02102971, -0.024258891, 0.011615712, -0.01590572, -0.0046869833, -0.04496835, 0.011348838, 0.006388308, 0.020882929, -0.009727575, -0.017600372, -0.0018898051, 0.0041132034, -0.019601932, -0.0049138265, 0.013904161, 0.030236881, -0.023965329, 0.013236975, -0.020749493, 0.00639498, -0.032505315, -0.024338953, 0.0023084644, -0.037709367, 0.0014953312, -0.027434697, -0.0083465, -0.0026420576, -0.0025253, 0.0012701558, 0.0014252766, 0.007399095, 0.0074591422, 0.001938176, -0.039924424, -0.022884488, 0.0032325173, -0.00514067, -0.024365641, -0.018921401, -8.793306E-5, -0.021243209, -0.006992112, -0.036321618, -0.016065845, -0.024312267, -0.011555666, -0.0018697894, -0.010735027, -0.002617038, 0.008700108, 0.016239313, -0.0107083395, 0.0025369758, -0.025353078, 0.037015494, 0.015105097, -0.007225627, -0.03077063, -0.025379764, 0.0019782071, 0.022257334, 0.034159936, -0.013343724, -0.01824087, -0.01633272, -0.013810755, -0.019254996, -0.004229961, 0.017173374, 0.0023668432, -0.031117566, 0.038563363, -0.009867685, 0.0092939045, -0.022457488, 0.019842118, 0.016185937, 0.0022517536, -0.03477375, -0.02557992, 0.0024118782, 0.0033309273, -0.031411126, 0.011135338, -0.029249445, 0.003939735, 0.015558783, 1.0080767E-4, 0.007519189, 0.03650843, -0.002723788, 0.013917505, -0.012583133, -0.016973218, -0.017093312, 0.0017246765, 0.020869585, 0.0013518861, -0.015692221, 0.01028134, -0.0053508338, -0.02188371, -0.03456025, -0.018574465, -0.017280124, 0.018227529, 0.02249752, 0.049024846, -0.0071522365, -0.02167021, -0.024232205, -0.014317817, 0.034079872, -0.033546124, 0.016346063, 0.016853124, -0.0034793762, -0.02579342, -0.019241652, -0.16994567, 0.02092296, -0.004033141, -0.029436257, 0.023258112, 0.008906936, 0.011548994, -6.209002E-4, 0.007465814, -0.027781636, 0.029889943, 0.0074925013, -0.037816115, 0.006344941, 0.001554544, 0.008219735, -0.014344504, 0.024699235, 0.038483303, -0.0032708806, 0.025780076, -0.0054575833, -0.016492844, -0.025046172, 0.019828776, 0.00242689, 0.015558783, 7.2973495E-4, 0.0068319873, 7.660132E-4, -0.037762742, -0.004166578, 0.027541447, 0.015385315, -0.0064316755, 0.006068059, -0.022564238, -0.014010911, -0.0019315041, -0.02188371, 0.040111236, 0.0057811686, 0.011662415, 0.013330381, 0.005907934, 0.020162368, 0.035921305, -0.02485936, 0.012496398, -0.014424566, -0.00827311, -0.036108118, 0.031251002, -0.013123553, -0.0031791425, 0.040324736, 0.008439906, 0.008019579, 0.014691441, -0.001360226, -0.043073542, -0.009694216, 0.011975993, 2.7271238E-4, 2.0515977E-4, -0.011562337, 0.008473265, 0.018467715, -0.029222757, 0.01271657, -0.025273014, 0.022190614, 0.010468152, -0.003194154, -0.0039997813, -0.01575894, -0.032612063, 0.0074457983, -2.0578525E-4, 0.019014807, -0.024138799, 0.044834916, 0.005430896, 0.018547777, 9.557443E-4, -0.012182821, 0.010127887, -0.011121995, -0.0074991733, -0.0074858298, 0.015705563, -0.019588588, -0.030263567, -0.010374746, 0.00678862, -0.014264442, -0.010127887, 0.0052140607, 0.0014853234, -0.006945409, -0.00727233, -0.021416679, -0.01200268, 0.017119998, 0.026594043, 0.017747154, 0.007759376, 0.021536771, 0.025499858, -0.0035727823, -0.017386874, 0.0012684879, 0.022377426, 0.009907716, -0.022804426, 0.008966983, -0.016279344, -0.027167823, -0.008072954, 0.022684332, 0.031144254, -0.013303693, 0.01386413, -0.010748371, -0.0026203739, -7.843608E-4, -0.090790704, 0.0046069208, -0.0014144349, 0.03578787, -0.03309244, 0.041792545, -0.013036819, 0.023364862, -0.029222757, 0.014464597, 0.012129446, -0.0331725, 0.007959532, 0.005477599, 0.0032592048, 0.0024485735, -0.03223844, -0.0012501403, -0.020362524, 0.011388869, -0.0014110989, -0.015732251, -0.007859454, -0.013690662, -0.008666749, 0.008052938, -0.016052501, 0.007999563, 0.013163584, 0.01028134, -0.007078846, -0.032478627, 0.012222852, -0.049451843, -0.026607387, -0.032078315, -0.016773062, -0.029462945, -0.004540202, -0.045448728, 0.009507404, 0.012129446, -0.01973537, -0.026113668, -0.0049305065, -0.008726796, -0.031384442, 0.024245547, -0.010981886, -0.022163928, -0.006171473, -0.013837443, -0.027127793, -0.018894713, 0.014744815, 0.009794294, 0.031891502, 0.01160904, -0.0060346997, -0.018961433, -0.00465696, -0.00949406, -0.018027373, 0.022070521, 0.018054059, 0.006248199, -2.5916015E-4, -0.014718128, 0.011528978, -1.1498538E-4, -0.026527325, 0.018280903, -0.031010816, -0.012242868, -0.01479819, 0.010294683, -0.03191819, -0.019348402, 0.026647419, -0.03314581, -7.909805E-6, -0.035601057, 0.010501511, -0.003294232, 0.008373187, 0.025873482, 0.012916725, 0.009013686, -0.009760935, -0.038216427, -0.0034993917, 0.024459047, 0.010147903, -0.0018647856, -0.0060246917, 0.011709118, 0.0120427115, -0.008760155, -0.0037095554, 0.0014644738, -0.0136106, 8.139672E-4, -0.06847999, 0.028795758, -0.018481059, -0.0031240995, -0.01085512, -0.018614495, 0.0013468822, -0.0034993917, -0.0031190957, 0.021897051, -0.0070187994, 0.017546998, 8.0395944E-4, 0.010014465, -0.00795286, 0.025059516, 0.018894713, -0.008446578, -0.0023118004, -0.001552876, -0.021736927, 0.015198503, 0.021510085, -0.0043867496, 0.003589462, 0.022937862, -0.006294902, 0.016132563, -0.0105749015, -0.013770724, 0.034453496, -0.019655306, -0.015185159, 0.016612938, -0.0074991733, -0.02460583, -0.0092472015, 0.005003897, 0.021590147, 0.01762706, 0.003247529, -0.020375868, -0.0034827122, 2.514458E-4, -0.011749149, 0.032772187, -0.013770724, 2.6103662E-4, 0.007759376, 0.0021733593, 0.027141137, 0.0092538735, 0.008026251, -0.028929194, 0.024846015, -0.017426904, 0.046809785, 0.010154574, -0.013643959, -0.015745595, 0.029009258, 0.008399875, 0.005530974, -0.026860919, 0.0056443955, 0.0014811534, 0.005861231, 0.0045201867, 0.0016296024, -0.02600692, -0.017133342, 0.0052140607, 0.0010324707, 0.03474706, 0.024819328, 0.016452814, -0.0051973807, 0.0025820108, 0.007799407, 0.026033606, 0.01930837, -0.0063215895, -0.02271102, 0.027181167, -0.0036862039, 0.017667092, 0.0044801557, 0.011395541, 0.016532876, 0.005447576, 0.0022600933, 0.011422228, 0.028929194, -0.011268776, 0.020829555, -0.0020115664, -0.008513296, -0.023057956, 0.005957973, 0.029382883, -0.012296243, 0.004910491, -0.013704006, -0.01762706, -0.0106349485, 0.011448916, -0.026807543, -0.025379764, 0.011035261, 0.018908057, 0.024352297, 0.014517972, -0.002955635, 0.0067419168, -0.03434675, 0.007512517, 4.028137E-4, -0.01053487, -0.009640841, 0.044861604, 0.006548433, 0.008506625, 0.03357281, -0.011975993, 0.046115912, 0.011682431, 0.02081621, -0.038670115, 0.0027538112, -0.005384193, 0.015839001, -7.281712E-5, -0.008860233, 0.009714232, -0.0092872325, -0.0016537879, 0.01347049, 0.02343158, -0.020736149, 0.07066837, 0.005133998, 0.0021583475, 0.007579236, -0.008399875, 0.018881371, 0.012396321, 0.01730681, -0.013930849, -0.0029372873, -0.0033792984, -9.565783E-4, 0.01182254, -0.028208634, 0.0068720183, 0.0011625721, 0.010254652, 0.007118877, -1.910863E-4, -0.028315384, -0.010748371, 0.001748028, 0.013176928, -3.0909487E-5, 0.0023551674, -0.01088848, 0.007706001, -4.37007E-4, -0.004950522, -0.031037504, 0.005777833, -0.023364862, -7.405767E-4, -0.003933063, 0.03098413, -0.017680435, -0.00805961, 0.010995229, 0.01683978, 0.0061914884, -0.018160809, 0.004953858, -0.0397643, -0.004987217, 0.020108994, -0.015678877, -0.0030874044, -0.023671769, -0.02804851 ], + "id" : "90b44cf6-53a6-4365-be9a-d37e1e5e8f84", + "metadata" : { + "source" : "movies.csv" + } + }, + "aa4d1627-0086-4160-ac43-b43c354f83be" : { + "text" : "The military jumps into action and captures Susan secreting her away to a covert government compound. She is renamed Ginormica and placed in confinement with a ragtag group of Monsters...,30.914,DreamWorks Animation-Paramount,3/19/09,175000000,381509870,94,Released,\"When aliens attack, monsters fight back.\",6.202,4160,Reese Witherspoon-Seth Rogen-Hugh Laurie-Will Arnett-Kiefer Sutherland-Rainn Wilson-Paul Rudd-Stephen Colbert-Julie White-Jeffrey Tambor-Amy Poehler-Ed Helms-Ren��e Zellweger-Sean Bishop-Rich Dietl-Rob Letterman-Tom McGrath-Chris Miller-Mike Mitchell-Kent Osborne-Latifa Ouaou-Geoffrey Pomeroy-David P. Smith-Lisa Stewart-Conrad Vernon-John Krasinski-Stephen Kearin,alien-giant robot-duringcreditsstinger-3d,/iDKQEevFHSzopWLMpySp9IpP5xW.jpg,/na71ASQOjgIkLc3xkqXghyHc2UK.jpg,13053-38055-22794-9928-10527-5559-7518-46195-10192-810-12222-9836-953-10555-80321-950-49444-8355-9982-11619-9408\r\n105,Back to the Future,Adventure-Comedy-Science Fiction,en,Eighties teenager Marty McFly is accidentally sent back in time to 1955 inadvertently disrupting his parents' first meeting and attracting his mother's romantic interest. Marty must repair the damage to history by rekindling his parents' romance and - with the help of his eccentric inventor friend Doc Brown - return to 1985.,67.613,Universal Pictures-Amblin Entertainment,7/3/85,19000000,381109762,116,Released,He's the only kid ever to get into trouble before he was born.,8.315,18805,Michael J. Fox-Christopher Lloyd-Lea Thompson-Crispin Glover-Thomas F. Wilson-Claudia Wells-Marc McClure-Wendie Jo Sperber-George DiCenzo-Frances Lee McCain-James Tolkan-J.J. Cohen-Casey Siemaszko-Billy Zane-Harry Waters Jr.-Donald Fullilove-Lisa Freeman-Cristen Kauffman-Elsa Raven-Will Hare-Ivy Bethune-Jason Marin-Katherine Britton-Jason Hervey-Maia Brewton-Courtney Gains-Richard L. Duran-Jeff O'Haco-Johnny Green-Jamie Abbott-Norman Alden-Read Morgan-Sachi Parker-Robert Krantz-Gary Riley-Karen Petrasek-George Buck Flower-Tommy Thomas-Granville 'Danny' Young-David Harold Brown-Lloyd L. Tolbert-Paul Hanson-Lee Brownfield-Robert DeLapp-Tony Pope-Charles L. Campbell-Huey Lewis-Kiki Ebsen-Randy Feelgood-Hal Gausman-Deborah Harmon-Arthur Tovey-Ethel Sway-Janine King-Richard Patrick-Tom Tangen-Tom Willett,flying car-race against time-clock tower-car race-lightning-guitar-plutonium-inventor-journey in the past-invention-time travel-bullying-mad scientist-fish out of water-terrorism-teenage love-destiny-hidden identity-love and romance-teenage life-changing the past or future-1950s,/fNOH9f1aA7XRTzl1sAOx9iF553Q.", + "embedding" : [ -0.004621985, -0.041808426, -0.018874543, -0.03965449, 0.011183891, 0.02141508, -0.013910828, -0.024273187, -0.017645696, -0.033662133, 0.041256133, 0.029133348, 0.019785823, -0.015560797, 0.0020969796, -0.0029513047, 0.015105157, -0.010659215, 0.009161126, -0.012971934, 0.016982947, 0.0027925211, -0.0050120405, -0.012150401, 0.009237066, 0.003329279, 0.01433195, -0.017714731, -9.803164E-4, -0.007911568, 0.0068553113, -0.02902289, -0.0060234233, -0.008684775, -0.03090068, -0.012537004, 0.019537292, -0.023223834, 0.029381879, -0.020172426, 0.013876311, 0.019261146, -0.007338566, 0.007241915, 6.0018495E-4, 0.015008506, 0.014373372, 0.008595028, 0.0017794124, 0.0076699406, 0.021442696, 0.032833695, -0.015339881, -0.022906268, -0.019205919, -1.2739368E-4, -0.0022177934, 0.0027493734, 0.0051224986, -0.0028753649, 0.011487652, 0.0045149787, -0.022754388, 0.003938525, -0.0027804398, -6.828128E-5, -0.025101624, -0.031673886, -0.011356482, 0.009609862, 0.03090068, 0.032391865, 0.04031724, -0.016278775, 0.010120732, -0.033855435, -0.030679762, -0.013296405, -0.0019709882, 0.0052156975, 0.010175961, -0.009533922, 0.0011296076, -0.0055470723, 0.026827533, 0.018626012, -0.019979125, 0.012026136, -0.021718841, 0.0032291762, -0.008387919, 0.03523616, 0.008650257, 0.009430368, 0.0044390387, 0.016347812, -0.034821946, 0.008926403, -0.014677132, -0.03338599, -0.0077389767, 0.009368235, -0.008926403, -0.008726197, 0.01776996, 0.011722376, 0.015533183, -0.020117197, 0.02249205, -0.01975821, 0.008905692, -0.010811095, 0.01174999, -0.052826628, 0.011315061, -0.020379536, 0.037252024, 0.005536717, 0.007352373, -0.02572295, 0.023486173, 0.015257037, 0.003534662, -0.011770701, 0.04401759, 0.029685639, 0.008298172, -0.010742059, -0.011922581, -0.025225889, 0.00880904, -0.010652312, 0.028581057, 0.0136415865, -0.014842819, 0.029823711, -0.039074585, 0.01355184, -0.028111609, -0.016789645, 0.039433572, 0.04680666, -0.028014958, -0.0065377443, -0.021346046, -0.0010692008, 0.0035588248, 0.002606123, 0.0058888025, 0.013172139, 0.042250257, -0.003938525, -0.0039972058, 0.025957674, 0.038660366, 0.012833861, -0.014898049, -0.008546703, -0.0033189235, -0.0039626877, -0.0019243888, -0.0040282723, 0.018267022, -0.0140419975, 0.002112513, 0.028636286, 0.011998521, -0.028498214, -0.016982947, -0.009561537, 9.5701666E-4, 0.026579002, -0.022423012, 0.013047874, -0.009685802, 0.03984779, 0.024452683, -0.011701665, -0.012599138, -0.003551921, 0.012385124, -0.0023696735, 0.002982371, 0.0212632, -0.0042422847, 0.013579453, 0.017493816, -0.012385124, 0.006744853, -0.006599877, -6.5325666E-4, 0.0068380525, -0.013627779, -0.0050810766, -0.6406575, -0.016251162, 0.001596466, -0.011667146, 0.009237066, 0.01991009, 0.003080748, -0.022864845, -0.022851039, 0.002642367, -0.017148634, 0.011729279, 0.019357799, -0.031591043, -0.036202673, -0.016430655, -0.010127636, -0.029906554, 0.021194166, 0.008187713, -0.037141565, 0.018764084, 0.026509965, 0.010500432, 0.034462955, 0.0046426957, -0.002076269, -0.017742347, 0.012253955, 0.0036865422, -0.0048946785, -0.0025802343, -0.0018346414, 7.9995894E-4, 0.044846024, 0.002055558, -0.011625725, 0.03222618, 0.010162153, 0.014304335, -0.038577523, -0.006637847, 0.023886584, 0.0022281487, -0.016347812, 0.012799343, 4.6470106E-4, -0.007600904, -0.009161126, -0.008429341, 0.00535377, 0.015671255, 0.006920896, -0.008125581, -0.0048601604, 5.7257037E-4, -0.0016249436, -0.014677132, 0.008981631, -0.016044052, -0.0015697144, 0.029906554, 0.0039109103, 0.008056545, -0.015629834, 0.0313149, 0.00527783, 0.005284734, 0.010189768, -0.02750409, 0.01266127, 0.008070352, -0.026344279, 0.0052571194, 0.0012840765, 0.033109844, 0.016775837, -0.0034708034, -0.0036382165, 0.027725006, 0.009934333, -0.010562564, -0.0045529488, 0.01636162, 0.032888927, -0.0153951105, -0.031977646, 0.018197987, -0.010569468, -0.009644381, 2.5214455E-5, 0.03048646, -0.0032084652, -0.0105418535, -0.0048981304, -0.01731432, -0.018115142, 0.012833861, 0.017231477, -0.037003495, -0.021180358, -0.0018864188, 0.026068132, -0.0032188208, 0.013330922, 0.0054849396, -0.013441381, -0.006668913, 0.03029316, -0.010997494, -0.012226341, 0.010576372, -0.013462092, -0.008974728, 0.0028046025, -0.020821368, 0.024839286, 0.0053882888, -0.009416561, 0.0012236696, -0.0039592357, -0.0055919457, 0.011556688, -0.0037521266, 0.0067172386, -6.049312E-4, 0.025557263, -0.011584302, -0.01848794, 0.013848696, 0.0059026093, 0.0042422847, 0.016692994, -0.009375139, 0.013586357, 0.014400987, 0.018377481, -0.012060653, 0.029823711, 0.005060366, -0.015629834, 0.006920896, -0.005685145, -0.010562564, 0.008519088, -0.006523937, -0.00772517, -0.0147599755, -0.004218122, -0.010279516, 0.0038280666, 0.002052106, 0.015588412, 0.010100021, -0.0020641873, -0.022616314, -0.02222971, -0.026164783, 0.021387467, -0.015436532, 0.015740292, 0.009423465, 0.0035588248, -0.019274954, 0.020489994, 0.0056989524, -0.010928458, 0.021387467, -0.014732361, -0.023113376, 0.009209451, -0.027738813, -0.007276433, 0.022630122, 5.850832E-4, 0.026247628, -0.012108979, 0.039433572, -0.012060653, 0.001045901, -0.0014031642, -0.016706802, 0.002718307, 0.014842819, 0.029961783, 0.0026130266, 0.022961495, -0.011611917, -0.017328128, 0.023417136, 0.006772468, 0.0020693652, 0.0061269775, -0.003173947, -0.003477707, -0.009333717, -8.310253E-4, 0.0046081776, 0.010203576, 0.029409492, 0.03954403, 0.020103391, -0.018004686, -0.014649518, 0.024328416, -0.027586933, 0.001464434, -0.05332369, 0.013241176, -0.017756155, 0.027559318, 0.015726484, -0.013793467, -0.0017578385, 0.016596343, 0.0050500105, -0.006482515, 0.004256092, -0.01600263, 0.008001315, 0.010148346, 0.0012219438, 0.03090068, 0.0046426957, -0.018819313, 0.01061089, 0.016347812, -0.010748963, 0.008422437, -0.0055539757, -0.015602219, 0.0045356895, -0.0031825765, -0.006044134, 0.006862215, 0.005132854, 0.03540185, -0.015505568, 0.027738813, 0.0038453257, -0.0087331, 0.01045901, 0.030431231, -0.010921554, -0.012681981, 0.007490446, 0.009727225, 0.0013720979, -0.020614259, 0.016775837, -0.017259093, 0.02177407, -0.021083707, 0.0112598315, 0.002526731, -0.011439326, 0.002150483, 0.0037590303, 0.03084545, 0.035926525, 0.002188453, -0.009955045, 0.012958126, 0.0010355455, 0.017397165, -0.0014739265, 0.0050051366, 6.0784365E-5, 0.006955414, -0.0046116295, -0.011004398, -0.018474132, 0.0053019933, 0.0055091023, 0.0041180192, -0.014539059, 0.007241915, 0.011232217, 0.009706513, 0.01818418, -0.001920937, -0.05586423, 0.018971194, 0.018764084, -0.01273721, -0.009119704, 0.0016404768, -0.008291268, -0.025212081, -0.015381303, -0.006958866, 0.016251162, 0.0062477915, 0.014663325, -0.02927142, -0.011632628, 0.010804192, -0.02071091, 0.013876311, 0.014925663, 0.0040593385, 0.024300802, -0.008477666, -6.726731E-4, 0.022823423, -0.01833606, -0.0056575304, -0.0064721596, 0.0010027533, -0.008291268, 0.013703719, 0.0022281487, -0.020945635, 0.021691227, -0.02568153, 0.012716499, -0.025363961, -0.01919211, 0.010962975, -0.006551551, -0.002262667, -0.034103967, -0.024576947, -0.0012590508, 0.08140769, 0.03399351, 0.007566386, 7.2703924E-4, -0.011301254, 0.007890857, -0.02131843, -0.016665379, 0.008387919, -0.014552866, -0.006120074, 0.006558455, 0.024494104, 0.009989562, 0.0035087734, -0.0020779946, -0.012067557, 0.0059578386, 0.00110113, -0.008622643, -0.009340621, -8.025478E-4, 0.0117361825, 0.012882186, -0.006375509, -0.038356606, 0.008719293, -0.004466653, -0.003707253, 0.0048636124, -0.018819313, -0.02927142, 0.0061718514, 0.016527306, -0.01797707, -0.007145264, 0.01828083, 0.0012322991, 0.016485885, -0.008691679, 0.0149946995, 0.018377481, -0.0018846928, -0.025198275, 0.024494104, -0.01182593, -0.0099067185, 0.0107765775, 0.036285516, -0.015505568, 0.047635093, -0.0011149374, -0.011915677, -0.007096939, 0.016748223, 0.021235587, -0.0048187384, 0.0011563592, -0.029409492, 0.029437108, -0.001483419, -0.027807849, 0.0051086913, -0.024825478, 0.0011227039, -0.02465979, 0.0027718102, -0.010603987, -0.012046847, 0.004124923, 0.003441463, -0.03697588, -0.003765934, 8.802137E-5, 0.0040213685, 0.008270557, 0.017908035, -0.013758948, 0.014856626, 0.018722663, -0.027559318, -0.039985865, 0.0033379085, -0.031066366, 0.0014756523, 0.0067552086, 0.006258147, 0.02471502, 0.0019105815, 0.01873647, 0.01463571, 0.0218293, -0.00894021, -0.017562851, 0.029961783, -0.0077803987, 0.012474872, 0.009485597, 0.014035094, -0.0034863367, 0.010486624, -0.027324595, -0.0051155947, -0.014829012, -0.016941525, -0.022602508, -0.007897761, -0.0027390178, -0.02192595, -0.030044628, -0.016499693, -0.022920074, 0.0020072325, -0.0015248408, 0.012709595, -0.0015653997, 0.027214136, -0.013379248, -0.009644381, -0.01190187, 0.007890857, -0.009133511, 0.006962318, 0.03399351, -0.012592234, 0.032888927, -0.0039419765, -0.035125703, -0.034545798, 0.0014670228, -0.029685639, 0.030762605, 0.001483419, -0.010728252, -0.008022026, -0.019537292, -0.009609862, 0.011777605, -0.020987056, 0.0035967948, -0.02465979, 0.007055517, 0.016982947, -0.0025250053, 7.762277E-4, -0.020517608, -0.014069612, 0.0027286625, 0.0022851038, 0.014138648, -0.009285391, 0.011439326, -0.022671543, -0.0027769879, 0.007055517, -0.033247914, -0.02602671, 0.011349579, 0.038660366, 0.017990878, 0.04592299, 0.0016844874, 0.029464722, 0.01691391, 0.011052723, 0.0286639, -0.0012314363, -0.014000576, -0.05009279, -0.015588412, 0.018708857, 0.015629834, 0.021884529, 6.2521064E-4, 0.0060544894, 0.022064023, 0.006672365, 0.015643641, 9.432094E-4, -0.014290528, -0.0068380525, 0.024949744, -0.021401275, -0.0019847956, -0.026054326, -0.04291301, 0.050783154, -0.008891884, 0.006161496, -0.0143595645, 0.038273763, -0.013972961, 0.0031049107, -0.025350155, 0.013731333, -0.009671995, -0.009886008, -0.018308446, -0.016969139, -0.0051570167, -0.010472817, 0.0013997124, 0.0046737622, -0.009278488, 0.0124472575, 0.023582824, -0.003783193, -0.0271451, 0.0069312514, -0.008222232, -0.024853094, -0.028801974, -0.003800452, -0.04001348, 0.005761085, -0.008574317, -0.0036209575, 0.0118949665, -0.02532254, -0.027794043, 0.006882926, -0.010493528, 0.04147705, 0.009140415, 0.033220302, 0.020186234, 0.027131293, -0.019923896, 0.021180358, 0.012385124, -0.0015619479, 0.027904501, 0.005819766, 0.0027148551, 0.0022195193, -0.0072902404, 0.006706883, -0.019385412, -0.050148018, 0.014649518, 0.018197987, 0.012599138, -0.029354263, -0.022906268, -0.008201521, 0.013103102, 6.303883E-4, 0.0027666325, 0.015036121, -0.0263857, -0.019965317, -0.0058646393, 0.015063736, 0.024148922, 0.009961948, -0.027172714, 0.022519663, -0.01493947, 0.002128046, -0.0041007604, -0.01757666, 0.025225889, -0.012619848, 0.0014230121, -0.012267763, 0.0019571811, 0.008553606, 0.0032947606, -0.008491473, 0.0301827, -0.022298748, 0.025046395, -0.0054504215, -2.7485105E-4, 0.012640559, 0.007566386, -0.01235751, -0.013441381, -0.0042043147, -0.0058025066, 0.02213306, 0.011549785, -0.013558743, -0.008263653, -0.014400987, -0.013676105, 0.0105418535, -0.004732443, 0.0010010273, -0.03211572, 0.019965317, 0.0050327512, -0.0015861106, -0.0050085885, -0.0059233205, 0.0022143414, -8.629546E-4, 0.033303145, -0.027614547, -0.004256092, -0.023320485, -0.030155085, -0.025502035, -0.012247052, 0.010017177, -0.023320485, 0.023444751, -0.039985865, 0.0051777274, 0.014221492, -0.012985741, 0.004104212, -0.005895706, -0.021194166, 0.022726772, 0.034545798, -0.0056333677, -0.010217383, -0.011128663, 0.03308223, 0.015215616, -9.2163554E-4, 0.0026130266, -0.0087331, 0.021594577, -0.029492337, 0.003156688, -2.791658E-4, -0.02805638, -0.009892912, 0.009216355, 0.015574605, 0.008670968, 0.004445942, -0.030762605, -0.017134827, -0.013379248, 0.041035216, -0.0066792686, 3.572632E-4, 0.009554634, 0.010403781, 0.01985486, 0.013897021, -0.010666119, -0.019675365, 0.009382042, -0.0014955003, -0.019357799, -4.9145264E-4, 0.010693734, 0.027545512, -0.0011149374, -0.012143497, -0.037804317, 0.0071176495, -0.0010234641, -0.037252024, -0.018253217, 0.016085474, 0.040510543, -0.003631313, 0.008560509, 0.017687118, -0.0036347648, 0.029133348, -0.033109844, 0.0036175058, 0.023569016, 0.020807562, 0.02704845, 0.00969961, -0.027034642, -0.0024594206, -0.003061763, 0.008891884, 0.0013971236, 0.026192399, -0.022215903, 3.5812616E-4, -0.031977646, -0.014235299, 9.371687E-4, -0.0123713175, 0.017535238, -0.026717074, -0.0083948225, -0.0022316007, 0.016016437, -0.016085474, -0.0118949665, 0.024756443, -0.024217958, 0.019468255, -0.0028650092, -0.0076354225, -0.0051846313, -0.027366016, 0.027932115, 0.007842531, 0.01843271, 0.002965112, 0.029078119, -0.028470598, -0.029409492, 0.0018536265, -0.008360304, -0.02891243, 0.0017345388, 0.0021953564, 0.020724718, -0.0154779535, 0.025847217, -0.027227944, 0.01212969, 0.0018846928, 0.018349867, -0.026910376, 0.023140991, 0.0077389767, -0.050479393, 0.005464229, 0.005605753, 0.0010096569, -0.0031998358, 0.0020624616, -0.016651573, -0.009789357, 0.0072004935, 0.013952251, -0.013972961, -0.026579002, -0.007676844, -0.0032067394, -0.032529935, 0.021801686, 0.18877305, -0.012751018, 0.024148922, 0.04528786, -0.009078283, 0.010327841, 0.015339881, 0.0064272857, 0.001254736, 0.010486624, -0.0055643315, 0.02927142, 0.018915964, 0.0037900966, 0.0062236288, -0.01975821, -0.022712965, -0.010928458, -0.009796261, -0.024908321, -0.005098336, 0.012136593, -0.022782002, -0.01792184, 0.0114945555, -0.019841053, -0.010521143, 0.010817999, 0.0060303267, 0.012771728, -0.020600453, -0.018142758, 2.1509144E-4, 6.536881E-4, -0.0043216767, 4.18533E-4, -0.0036244094, 0.002129772, -0.014442408, 0.0012003699, 0.005837025, -0.0014583933, 0.016320197, 7.0201355E-4, -0.011239121, 0.0026302857, -0.022616314, -0.006558455, -0.022064023, 0.004470105, -0.041394208, -0.011156277, -0.0010890487, 0.029823711, -0.011425519, -0.010403781, 0.0059198686, -0.01909546, -0.010445203, 0.019937703, 6.1614957E-4, 0.038964126, -0.022312554, 0.021304624, -0.011784508, 0.0069416068, -0.028829588, 0.013144525, 0.012992645, -0.04056577, -0.025847217, -0.007531868, -0.032695625, -0.0018467229, -0.006192562, -0.0020279433, 0.013676105, 0.018860737, 0.021801686, 0.014829012, -0.029188577, -0.018957388, 0.006089008, -0.011936388, -0.0114186155, -0.009009246, 0.024176536, -0.0024956646, -0.0020106842, -0.014732361, -0.009230163, -0.039682105, -0.017797576, 0.009761742, -0.008650257, 0.018474132, 0.014980892, 0.013185946, 0.012571523, -0.013275694, -0.045149785, 0.008353401, 0.04274732, -0.0019433738, -0.011301254, -0.015836943, 0.007966797, 0.009119704, 0.0077734953, -0.023845162, -0.008249846, -0.031093981, 0.0033189235, -0.011660242, -0.012882186, 0.010472817, 0.014207684, 0.009071379, 0.04280255, -0.017894227, -0.011391001, 0.0017207315, 0.0041352785, 0.018363673, -0.015491761, -0.027766427, -0.021152744, 0.022933882, 0.013524225, -0.022851039, -0.0067621125, -0.037334867, 0.010134539, -0.017894227, -0.018833121, -0.006665461, 0.0050672693, 0.020034354, 0.0061338814, 0.0062236288, 0.005988905, -0.003515677, 0.024356032, 0.0042664474, 0.012316088, -0.013123814, 0.0010234641, 0.014621903, -0.0043182247, -0.030210314, -0.009154223, -0.022119252, 0.0028132321, 0.018860737, 0.025087817, -0.020545224, -0.050479393, -0.033441216, -0.0043561948, 0.035015248, -0.04967857, 0.0017017465, 0.02456314, -0.007752784, -0.026482351, -0.01615451, -0.17805861, 0.02279581, 0.02000674, -0.023210026, 0.016803453, 0.022602508, 0.030320773, -0.007248819, -2.9167865E-4, -0.02921619, 0.020476187, 0.015201808, -0.04335484, -0.031563427, 0.025667721, 0.01357255, -0.017300515, 0.033441216, 0.023582824, -0.006962318, 0.03490479, -0.014898049, -0.022878652, -0.0019813438, 0.003727964, 0.019564906, 0.015367496, 0.011743086, 0.0032067394, -0.013282597, -0.031259667, -0.029906554, -0.0015904254, -0.014690939, 0.0057127597, 0.00220226, -0.01565745, -0.012550812, -0.012543908, 3.0807478E-4, 0.016610151, 0.011508362, 0.022064023, 2.9340456E-4, 0.0013634682, 0.007017547, 0.0174662, -0.0068346006, 0.0064307377, -0.030127471, -0.006996836, -0.048491146, 0.009596055, -7.585371E-4, 0.0047255396, 0.006334087, -0.0038073556, -0.0019847956, 0.004949908, -0.006668913, -0.014773783, -0.013683008, 0.014870434, -0.0055401684, 0.0011779331, -0.031121595, -0.009409657, 0.007031354, -0.034242038, 0.008843559, -0.026730882, 0.0040006577, 0.0068346006, -0.0076906513, 0.0042733513, -0.017742347, -0.018418903, 0.013634683, -0.005015492, 0.012026136, -0.017121019, 0.017286707, -0.011798316, -0.0053675775, 0.005681693, -0.01463571, 0.010238093, -0.0024956646, -0.0069450587, -0.0058439285, 0.005167372, -0.011052723, -0.025101624, 0.0019796179, 0.019426834, 0.015132772, -0.019054038, 0.0041318266, 0.0038556813, -0.01076277, -0.007352373, 0.006672365, -0.0055608796, 0.035981756, 0.013027163, 0.027283173, 0.02456314, 0.013731333, 0.014152455, -0.010244997, 6.010479E-4, 0.0016387508, 0.02111132, 0.009913622, -0.016982947, 3.2533388E-4, 0.0037900966, -0.034103967, 0.00894021, 0.027117485, 0.057162113, -0.01068683, -0.014746169, -0.013199754, -0.006748305, -0.0045667556, -0.09272965, 0.015491761, -0.009368235, 0.024853094, -0.0389089, 0.0187917, -0.014898049, 0.014884241, -0.020904213, 0.019716786, 0.0036589275, -0.0140419975, 0.006082104, 0.0044942675, 0.008595028, -0.0023092665, -0.020144813, -0.016485885, -0.0065757143, 0.03788716, -0.015864557, -0.009326814, -0.004880871, -0.012771728, -0.023430943, 0.012067557, -0.023720896, 0.035125703, 0.013151429, 0.0052640233, 0.017908035, -0.016416848, 0.022768194, -0.03382782, -0.010935361, -0.021787878, -0.017024368, -0.007676844, 0.007856339, -0.04294062, -0.0065446477, 0.018294638, 0.0154779535, -0.016458271, 0.0027217588, -0.0027838915, -0.0212632, 0.027421245, -0.01463571, -0.03192242, -0.026717074, -0.019205919, -0.017811384, -0.010272612, 0.012557715, 0.017452395, 0.02228494, 0.0124541605, -0.018860737, -0.004694473, 4.9533596E-4, 0.011183891, -0.023845162, 0.010562564, -0.008670968, 0.0018001234, -0.008705487, -0.018405097, 0.019523485, -0.032336634, -0.023679474, 0.02526731, -0.018170372, 0.0013358537, -0.018874543, 0.0067414013, 0.0048567085, -0.015767906, 0.021580769, -0.026717074, 0.008008218, -0.021870721, 0.0018156565, -0.018267022, 0.011798316, 0.022547279, 0.018777892, -0.0154779535, -0.0036347648, -0.01605786, 0.013248079, 0.011556688, -0.012074461, -0.007038258, -0.006810438, 0.03570561, -0.00878833, 0.0022557634, 0.001330676, 0.009533922, -0.014967085, -0.0027079515, -0.07317855, 0.026344279, -0.010017177, 0.0054814876, -0.020213848, -0.029050505, -0.004152538, 0.008422437, -8.316725E-5, 0.022616314, -0.017121019, 0.0035035957, 0.004069694, 0.01636162, -0.027807849, -0.003841874, 0.013634683, -0.0054435176, 0.0020400246, -0.005419355, -0.024604563, 0.018142758, 0.0034708034, 0.021511732, 0.016430655, 0.027821656, 0.011038915, 0.017714731, -0.023748511, -0.014621903, 0.005719663, -0.019799631, -0.008919499, -0.012288474, -0.0023783029, -0.030210314, -0.014221492, -6.2391616E-4, 0.025653915, 0.014035094, -0.0059992606, -0.016554922, 0.0064618043, -0.007511157, 0.0180323, 0.021277009, -0.019564906, -0.0064618043, 0.015201808, 0.0070762276, 0.016223546, 0.016969139, -0.030320773, -0.015616027, -0.0016128622, -0.015947402, 0.03490479, 0.008381016, -0.008194617, 0.030376002, 0.0078080134, 0.011149374, 0.027366016, -0.018322252, -0.0066792686, 0.011439326, -0.008311979, -0.0084707625, 0.012240148, -0.029602796, 0.0056713377, -0.013110006, 0.025156852, 0.010714444, 0.004104212, 0.041090447, -0.008256749, 0.0069657695, 0.0068760226, 0.017010562, 0.022257326, -0.0039972058, -0.04183604, 0.019012615, 0.0058266697, 0.023831354, 0.017286707, 0.014525252, -0.007580193, 0.003251613, -0.004994781, 0.007172879, 0.007428313, -0.008484569, 0.003134251, 0.050451778, 0.0010950894, -0.0029047052, 0.01524323, 0.024452683, 0.01930257, 0.012895994, 0.011950196, -0.018101336, -0.020448573, 0.011915677, -0.01894358, -0.03023793, 0.034821946, 0.012916705, 0.023223834, 0.0071935896, -0.011280542, 0.017811384, -0.03813569, 0.01068683, -0.016692994, -0.027904501, -0.017645696, 0.036837805, 0.016223546, 0.022782002, 0.035015248, -0.0301827, 0.03661689, 0.0102242865, 0.034877174, -0.030928293, 0.001521389, 0.00878833, -0.009250874, 0.015132772, -0.029685639, -0.011943292, -0.0074628317, -0.006199466, 0.004370002, 0.02830491, -0.031121595, 0.06809747, 0.008277461, -0.009250874, 0.017010562, -0.039323114, -0.006078652, 0.02116655, 0.016223546, -0.025391577, 0.008546703, 0.00888498, 0.002034847, 0.012115883, -0.008726197, -0.0019554552, -0.0011244299, 2.5090406E-4, 0.008532895, -0.015878364, -0.0021366756, 0.015740292, -0.011439326, 0.031729113, 0.002564701, -0.012191823, 0.0024438875, 0.022671543, -0.006447997, -0.0174662, -0.016692994, 0.00888498, -0.021663612, -0.010210479, -0.011591206, 0.017259093, 0.009913622, -0.016458271, -0.0064376416, 0.032088105, -0.006365153, 0.0022712965, -0.007393795, -0.023638053, 0.0058128624, 0.005778344, 0.013689912, -0.0034380113, -0.026565194, -0.027573125 ], + "id" : "aa4d1627-0086-4160-ac43-b43c354f83be", + "metadata" : { + "source" : "movies.csv" + } + }, + "1f115213-2518-4450-aa16-c6823471d9ee" : { + "text" : ",131631-131634-70160-157350-262500-198663-109445-127585-12444-12445-57158-675-673-767-102651-674-294254-672-262504-76338-75656\r\n283995,Guardians of the Galaxy Vol. 2,Adventure-Action-Science Fiction,en,The Guardians must fight to keep their newfound family together as they unravel the mysteries of Peter Quill's true parentage.,459.47,Marvel Studios,4/19/17,200000000,863756051,137,Released,Obviously.,7.623,19621,Chris Pratt-Zoe Salda��a-Dave Bautista-Vin Diesel-Bradley Cooper-Michael Rooker-Karen Gillan-Pom Klementieff-Sylvester Stallone-Kurt Russell-Elizabeth Debicki-Chris Sullivan-Sean Gunn-Tommy Flanagan-Laura Haddock-Aaron Schwartz-Hannah Gottesman-Hilty Bowen-Ben Browder-Alexander Klein-Luke Cook-Evan Jones-Joe Fria-Terence Rosemore-Jimmy Urine-Stephen Blackehart-Steve Agee-Blondy Baruti-Richard Christy-Rob Zombie-Sierra Love-Kendra Carelli-Milynn Sarley-Seth Green-Molly C. Quinn-Michael Rosenbaum-Rhoda Griffis-Stan Lee-David Hasselhoff-Mac Wells-Jim Gunn Sr.-Leota Gunn-Elizabeth Faith Ludlow-Wyatt Oleff-Gregg Henry-Damita Jane Howard-Ving Rhames-Michelle Yeoh-Mike Escamilla-Miley Cyrus-Jeff Goldblum-Donny Carrington-Nea Dune-Fred Galle-Alphonso A'Qen-Aten Jackson-Kelly Richardson-Guillermo Rodriguez-Josh Tipis-Jason Williams,sequel-superhero-based on comic-misfit-space-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/y4MBh0EjBlMuOzv9axM4qJlmhzz.jpg,/aJn9XeesqsrSLKcHfHP4u5985hn.jpg,118340-315635-271110-284053-284052-102899-99861-76338-100402-10195-284054-1726-1771-10138-297762-68721-24428-363088-299536-263115-293660\r\n505642,Black Panther: Wakanda Forever,Action-Adventure-Science Fiction,en,Queen Ramonda Shuri M��Baku Okoye and the Dora Milaje fight to protect their nation from intervening world powers in the wake of King T��Challa��s death. As the Wakandans strive to embrace their next chapter the heroes must band together with the help of War Dog Nakia and Everett Ross and forge a new path for the kingdom of Wakanda.,135.993,Marvel Studios,11/9/22,250000000,859102154,162,Released,Show them who we are.,7.162,5731,Letitia Wright-Lupita Nyong'o-Danai Gurira-Winston Duke-Dominique Thorne-Tenoch Huerta Mej�_a-Angela Bassett-Florence Kasumba-Michaela Coel-Mabel Cadena-Lake Bell-Alex Livinalli-Robert John Burke-Danny Sapani-Isaach De Bankol��-Connie Chiume-Martin Freeman-Julia Louis-Dreyfus-Richard Schiff-Michael B.", + "embedding" : [ 0.0068147364, -0.04023876, -0.017520737, -0.046266537, -0.020668577, 0.037586536, -0.009825276, -0.009088548, -0.035389747, -0.027942093, 0.039167155, 0.032951847, 0.016261602, 0.0012817398, 0.01567222, 0.008994782, 0.015431109, -0.023655675, 0.014547034, -0.021780366, 0.0072869123, -0.005066681, -0.02890654, 0.017909195, 0.004246234, 0.005525462, 0.026227526, -0.014908701, -0.0034760179, 0.0037807554, 0.0077155544, -0.009115338, -0.010957158, -0.022356354, -0.0189808, -0.0018769827, 0.013482127, -0.01675722, 0.02361549, 0.0030557478, 0.007842807, 0.013274504, -0.0038242894, -0.013328084, -0.009396634, 0.010119967, 0.012383732, -0.0043768357, -0.01312046, 0.007635184, 0.0121158315, 0.03788123, -0.012249782, -0.027245551, -0.01062898, -0.019288886, -0.018806664, 0.021057034, -0.0010540237, -0.0022972526, 0.0058804313, -0.015256973, -0.030487156, -0.009316264, -0.028611846, -0.012082344, -0.007876295, -0.008365215, -0.010026202, 0.004276373, 0.027674193, 0.015256973, 0.014051417, -0.0074141654, 0.0091220355, -0.03670246, -0.027232155, -0.0053915116, -0.008325029, 0.0056895516, 0.0071931467, -6.137658E-5, -0.007795925, 0.010669165, 0.014038023, 0.024874626, -0.0060746595, 0.014426479, -0.04026555, 0.006352607, 0.014962281, 0.015002467, 0.0022503699, 0.024553144, 7.5389066E-4, 0.018284256, -0.0063425605, 0.020481046, -0.029951353, -0.041524686, -0.007139567, -0.0015027582, -0.02263765, -0.007005616, -0.003305231, 0.0040486567, 0.007829412, -0.0012281595, 0.017306417, 0.010749536, 0.009470307, 0.0070591965, 0.021659812, -0.033139378, 0.008505863, -0.007052499, 8.2002877E-4, -0.016422343, -0.0116938865, -0.019154934, 0.030701477, 0.027942093, 0.027942093, -0.013683054, 0.029870983, 0.02019975, 0.010595492, -0.019181725, 0.005907221, 0.002421157, 0.039327893, 2.469714E-4, 0.018324442, 0.0050197984, -0.023789626, 0.046105795, -0.022918947, 0.011111202, -0.019958638, -0.011955091, 0.027312526, 0.03380913, -0.01797617, -0.023736045, -0.017735058, 0.0017463808, 0.016958145, 7.5807667E-4, 0.01293293, 0.0019288886, 0.030513946, 0.025196107, 0.021740181, 0.008793857, 0.01797617, -2.1494884E-4, 0.0042026998, -0.012564566, 0.008679998, -0.02624092, 0.0018234025, -0.0125913555, -0.008499165, -0.012658332, -0.005086774, 0.034800366, 0.025517588, -0.026575798, -0.009631048, 0.006312422, -0.019945243, 0.03134444, -0.0067008785, 0.023240428, -0.0017698222, 0.024740675, -0.0039783325, -0.011613516, -0.024928205, -5.584065E-4, 0.0025400382, 0.007702159, 0.02941555, 0.025410429, -0.00848577, 0.0073940726, 0.039702956, -0.028209995, 0.02038728, -0.019422837, 0.007956665, 0.01580617, -7.128683E-4, -0.007849505, -0.63439, -0.008016943, 0.011124597, -0.007032406, 0.010635677, 0.0070859864, 0.02472728, -0.014279134, -0.045918263, -0.00943682, -0.0132544115, 0.017386787, 0.010588795, -0.012732004, -0.02478086, -0.011486263, 0.0068448754, -0.02263765, 0.017882405, -0.0018702851, -0.037854437, 0.017935984, 0.014359504, 0.009282776, -0.010689258, 0.018378021, -0.010434751, -0.010863394, 0.0063559557, -0.0017036841, -0.026401661, 0.0122966645, 0.01900759, 0.017078701, 0.029790612, -0.011908208, -0.013133856, 0.0469095, 0.028370736, 0.02046765, -0.034371722, 0.0050231474, 0.010119967, 0.014064812, -0.016328577, 0.009383239, 0.019838084, 0.0098989485, 0.0018736339, 0.004571064, 0.0016994982, 0.006299027, 0.02062839, 0.007467746, -0.017453762, 0.004571064, 0.0142121585, -0.037988387, 0.018578947, 0.0041256784, -0.013796912, 0.027017836, 0.012229689, -0.0026689656, -0.006737715, 0.027861724, -0.012189504, -0.002570177, -0.00267064, -0.017869009, 0.009811881, 0.0023307404, -0.015243578, 0.009684628, 0.02372265, 0.0045945053, 0.027727773, 0.007702159, 6.1700994E-4, 0.037399005, -3.3989962E-4, -0.0012809025, -0.017627899, 0.012979813, 0.008358517, -0.009758301, -0.03557728, 0.0046380395, 0.009175615, 0.010374473, 0.014895306, 0.008452282, 0.011466171, 0.0060914033, -0.004912638, 0.0063860947, -0.0085862335, 0.0030423529, 0.023320798, -0.05813456, -0.016408948, -0.018820059, 0.03383592, -0.004286419, 0.03169271, 0.013354874, -0.028799377, -0.023066292, 0.022704626, -0.018364627, -0.017962774, 0.021405306, -0.011258547, -0.0036802925, 0.0015555013, -0.02946913, 0.012999905, 0.023106478, -4.7468743E-4, -0.0025015273, 0.005170493, 0.024111107, 0.0026605937, -0.013616078, 0.023843206, 0.024365613, -0.0040185177, -0.0077624368, -0.0023876694, 0.00482557, 0.0022788346, 0.0055924375, 0.015417714, -0.0075682085, 0.0012942976, 0.0032533251, 0.015136417, -0.002513248, 0.016542898, -0.011720677, -0.027379502, -0.0076083937, -0.008083918, -0.012397127, -0.014881911, -0.014466664, -0.032630365, -0.003703734, -0.001015513, -0.009644443, -0.015297158, 0.016958145, 0.0032365813, 0.0047452, 0.00555895, 0.010374473, -0.017748455, -0.009168918, 0.015565059, -0.020829318, 0.0071060793, 0.006422931, 0.014466664, -0.03166592, 0.01821728, -0.007702159, -0.021673206, -1.7465901E-4, 1.9025171E-4, -0.013401757, 0.016422343, -0.020052403, -0.012678424, 0.01794938, 0.004517484, 0.015002467, -0.018726293, 0.028156415, -3.922241E-4, -0.005853641, 0.0057431315, 0.0013210877, -0.01702512, -0.0028045906, 0.020548021, 0.03630061, 0.012162714, -0.002600316, 0.0068850606, -0.0015781055, -0.023146663, -0.011265245, -0.023441354, -0.0026605937, -0.015431109, 0.012805677, -0.0028481246, -0.0034274608, -0.0037506167, 0.002556782, 0.0338895, 0.032228515, 0.0044069747, -0.019958638, 0.0054082554, -0.029683452, -9.276079E-4, -0.013810306, 0.0063593043, -0.015082837, 0.029549502, -0.015297158, -0.014158578, -0.0066138105, 0.0077155544, 0.023414563, -0.016743824, 0.00227716, -0.016690245, 0.009811881, 0.0035664346, -0.0064865574, 0.009309567, 0.01472117, -0.037506167, 0.011914905, 0.015270368, -0.0024479472, 0.0034324839, -0.006781249, 0.0010473263, 0.007956665, -0.0013939234, -0.00422949, 9.4937487E-4, 0.002600316, 0.025557773, -2.6057576E-4, 0.024660304, -0.01802975, -0.00561253, 0.012665029, 0.018498577, 0.016234811, 0.0026605937, -0.023789626, 0.021673206, 0.0018451695, -0.012089041, 0.038041968, -0.021592835, 0.024847835, 0.0022955784, -0.0048289187, 0.017480552, -0.017319812, -0.0042663263, 0.007360585, 0.033219747, 0.016274998, 0.03380913, -0.027888514, 0.004380184, 0.0027577078, 0.024231663, 0.0063593043, -0.00943682, -0.007795925, 0.008452282, -0.03166592, -0.021324934, -0.03557728, 0.0064430237, -0.010407961, -0.014493454, -0.012879349, 0.0033454162, 0.0013897375, 7.342167E-4, 0.019101355, -0.008358517, -0.022316169, 0.0031947216, 0.0423016, -0.011888116, -0.023481539, -0.014895306, -0.0011260222, -0.020159565, -0.002802916, -0.016208023, 0.03153197, -0.01699833, -0.014252343, -0.026656168, 0.005230771, 0.00845898, -0.013368269, 0.025102342, 0.023119872, -0.01078972, 0.014225553, -0.005237468, 0.0015086186, 0.011546541, 0.00726682, 0.01940944, -0.003126072, 0.0076954616, -0.006918548, 0.014185368, 1.7256604E-4, -0.039354686, 0.010883486, -0.01466759, -0.015310553, -0.0074275606, 5.939872E-4, -0.0041524684, -0.007380678, -0.012839165, -0.018364627, -0.011948393, -0.016007096, 0.066010855, 0.028183205, 0.019838084, 0.012243085, -0.011941696, 0.0149890715, 0.0023525073, -0.0059674988, -0.010803116, -0.009751603, 0.005046589, -0.010776325, 0.0081642885, 0.010689258, 0.027781352, 0.0011201618, -7.388212E-4, -0.02025333, -0.00835182, -0.004959521, -0.018043146, -0.021110613, 0.03134444, 0.035389747, 0.019449627, -0.009443517, 0.023628885, 0.00683148, 0.010294103, 0.006918548, -0.007648579, 0.003410717, 0.0050064037, 7.83611E-4, 0.020079194, 0.0061181933, 0.025745304, -0.0024479472, 0.023816416, 0.021405306, -0.0117541645, 0.006376048, -0.0014424805, -0.009631048, 0.016087467, -0.02599981, -0.0075012334, 0.022932341, 0.02139191, -0.041203205, 0.017681478, 0.0073404927, -0.017145677, -0.01290614, 0.024767464, -0.0049662185, -0.0071060793, -0.0014684334, -0.017708268, -0.013468732, -0.0022604163, -0.039810117, 0.008988085, -0.003174629, -0.0019171679, -0.015578454, -0.009825276, -0.005327885, -0.011352313, 0.007990153, -0.010943764, -0.027593823, 0.0011394173, -0.0066171596, 0.008981387, -0.0012398802, 0.027433082, 0.0043266043, 0.011968486, 0.011961788, -0.022155428, -0.022356354, 0.014024627, -0.026160551, 0.0072534247, 0.011044227, 8.1416845E-5, 0.02583907, -0.010528517, 0.009222498, -0.0033738806, -0.015538269, -0.015846355, -0.002754359, 0.04238197, 0.012249782, 0.014332714, 0.007360585, 0.0108433, 0.017735058, -0.008847437, -0.021592835, -0.005669459, -0.022825181, -0.007534721, -0.0021097218, -0.01011327, 0.005113564, -0.011258547, -0.022383144, -0.041658636, -0.019878268, -0.0064463723, -0.0042194435, 0.0046648295, -0.015538269, 0.033085797, -0.0019322373, -0.0024931554, -0.004226141, -5.7975494E-4, -0.01594012, 0.016194627, 0.023628885, 0.010186942, 0.013113763, -0.034666415, -0.019489812, -0.0041625146, 0.03380913, 0.019476416, 0.0012624844, -0.00954398, 0.0051001688, -0.017212652, -0.014198763, 0.0056929, -0.0034224377, -0.00254841, 0.0046916194, -0.018712899, 0.0138504915, 0.0040754466, -0.010367776, -0.011057622, -0.028102834, 0.012926232, -0.010608887, 0.0128324665, 0.039033204, -0.0035496908, 0.018699503, -0.037693698, -0.023240428, -0.024070922, -0.033032216, -0.029737031, -0.011412591, 0.048731226, 0.0067008785, 0.034800366, 0.0068281316, 0.036943574, 0.0062287026, 0.014185368, 0.017681478, -0.02247691, -0.0098989485, -0.009684628, 0.010957158, 0.0026321292, 0.013368269, 0.0033989963, -0.0029268204, -0.0047887336, 0.0032734177, -6.8231084E-4, 0.017105492, 0.0058636875, -0.015256973, -0.02914765, 0.013147251, -0.024044132, -0.009992714, -0.01808333, -0.0192487, 0.022061663, -4.0729353E-4, 4.677806E-5, -0.014573825, 0.030299624, 5.4082554E-4, 0.013321387, -0.028504686, 0.02597302, -0.034827154, 0.006292329, -0.01805654, -0.013703146, -0.00197912, -0.019061169, 0.022892157, -4.3874054E-5, -0.01675722, -0.009744906, 0.017534133, -0.032389253, -0.032978635, 0.032040983, -0.024579935, -0.005126959, -0.031719502, 0.004343348, -0.03809555, -0.019998824, -0.0021683252, -0.0041826074, 0.012624844, -0.012001974, -0.04023876, 0.039435055, 0.010508424, 0.038122337, 0.020079194, 0.043132093, 0.023762835, 0.026749933, -0.022557281, 0.0057464805, -0.016234811, -0.0028431013, 0.02462012, 0.021244565, -0.03367518, -0.011271942, 0.00729361, -0.0077691344, -0.032817896, -0.03860456, 0.014145182, 0.020655181, 0.03809555, -0.019422837, -0.0062554926, -0.025330057, 0.0061717737, 2.928076E-4, 0.012993207, 0.019221911, -0.021057034, -0.020159565, -0.00395824, -0.0015789426, 0.009249289, 0.004333302, -0.019824687, 0.017333208, 0.0034324839, 0.019154934, -0.022918947, -0.018150305, 0.03881888, -0.031156909, 0.02274481, 0.009276079, 0.010327591, 0.008807251, 0.0029217973, 0.026093576, 0.028585058, -0.031130118, 0.0037774069, 0.0040687495, 0.008988085, -1.2338106E-4, 0.020186355, -0.029870983, -0.0203337, -0.028799377, -0.003126072, 0.023936972, 0.0048891967, -0.008130801, -0.014520245, -0.011432683, -0.028719008, -0.003226535, -0.0024764116, 0.017601108, -0.022275984, 0.0042629777, 0.009148826, -0.009497097, -0.0012624844, -0.006503301, 0.0026739887, -0.0048758015, 0.0040486567, -0.0045476225, 0.0056929, -0.016663454, -0.025289873, -0.037988387, -0.020347096, -0.012577961, -0.017962774, 0.002307299, -0.027754564, -0.0077222516, -0.015323948, -0.019020984, -0.017118886, -0.01781543, -0.017359996, 0.00669753, 0.030835427, -0.004142422, -0.006664042, 0.0020410721, 0.036889993, -0.0061784713, 1.2997394E-4, 0.010186942, 0.006098101, 0.03359481, -0.009242591, 0.021351725, 0.013997837, -0.004045308, 0.0018217281, 0.013683054, 0.018619133, -5.1361683E-4, -0.012738702, -0.039301105, 0.0034324839, -0.0066037644, 0.020293515, -0.010937066, -0.008358517, 0.04061382, 0.018766478, 0.04996357, 0.023896785, -0.0017229395, -0.02721876, -0.0020829318, -0.0060043354, -0.008438887, -0.0031796522, 0.012202899, 0.009751603, 0.0041256784, -0.012825769, -0.026227526, -0.009852067, -0.01295972, -0.02890654, -0.012149319, 0.016127652, 0.025624748, 0.008941202, -0.0062956777, 0.019878268, 5.718016E-4, 4.905941E-4, -0.030192465, -0.022034872, 0.0030574223, 0.0023675768, 0.021780366, 0.019503206, -0.030781846, -0.0065468354, 0.014225553, 0.02491481, 0.011271942, 0.037640117, -0.018431602, 0.013133856, -0.006463116, 0.010066387, 0.0012758794, -0.008271449, 0.034987897, -0.032925054, -0.0138504915, 0.00851256, 0.015618639, 0.009115338, 0.0064765112, 0.020320306, -0.016690245, -0.0048590577, -0.01583296, -0.032362465, 0.0050499374, -0.025035366, 0.01715907, 0.014332714, -1.5393854E-4, 0.039274313, 0.027942093, -0.0077624368, 0.012510985, 0.010334289, 0.011600122, 3.3822525E-4, 0.0011653702, 0.013622776, 0.021766972, -0.034371722, 0.012544473, -0.026401661, -0.0037673605, -0.016127652, 0.0067477613, -0.007775832, 0.027700983, 1.10404595E-4, -0.04760604, 0.0010632329, -0.010340986, 0.00729361, -0.018645924, -0.0041357246, -0.026428452, -0.0018686107, 0.0040285643, 0.0125913555, -0.015471294, -0.018994194, 0.014279134, 0.0012507637, -0.002982075, 0.024325429, 0.19042416, -0.006811388, 0.020052403, 0.056955792, -0.0013662961, 0.011680492, 0.023119872, 0.008412098, -0.0103811715, 0.011064319, -0.009276079, 0.0056594126, -0.0046246443, -0.002811288, 0.009791789, 0.005907221, -0.021606231, -0.020347096, -0.0063559557, -0.0076150913, -0.004869104, 0.0097248135, -0.013783516, -0.014895306, 0.016141046, -0.0015605245, 1.6398483E-4, 0.003733873, 0.01293293, 0.007119474, -0.016904565, -0.01239043, 0.004601203, 0.016382158, -0.022704626, -0.006523394, 9.0249215E-4, 0.0043768357, 0.003844382, 0.0112786405, -0.0051671444, 0.006550184, -0.012042158, 1.8146119E-4, 0.0030105396, 0.025464008, -0.026227526, 0.0029435642, -0.023468144, 0.010809813, -0.05009752, 0.0049796132, 0.006838178, 0.030406784, -0.009892251, -0.01244401, 0.0027677543, -0.009309567, -0.023977157, 0.0103208935, 0.014372899, 0.032576784, -0.037640117, 0.008077221, -5.8770826E-4, 0.0014098301, -0.035470117, -0.006108147, 0.018712899, -0.03174629, -0.011265245, -0.013174041, -0.01686438, 0.0039046598, -0.008613023, -0.008961295, -4.1545613E-4, -0.003069143, 0.005036542, 0.0112786405, -0.029094068, -0.015256973, -2.7857537E-4, -0.023950366, -0.019288886, -0.025745304, 0.0039247526, -0.008130801, -0.01686438, -0.0057364344, -0.01689117, -0.027379502, -0.020708762, -0.0013729936, -0.02353512, -0.005210678, 0.013019998, 0.013863887, -0.021954503, -0.022088453, -0.031987403, 0.025624748, 0.022490304, -0.008793857, -0.02475407, -0.01070935, -0.0017982867, 0.016127652, 0.016288392, -0.0056393202, -0.012001974, -0.032174934, 0.0021817202, -0.008592931, 0.007976758, 0.017654689, 0.0039381473, -0.012169411, 0.06799332, -0.028772587, 2.76901E-4, -0.03137123, 0.012752096, 0.001773171, -0.009644443, -0.032978635, -0.021499071, 0.020976663, 0.0021214425, -0.021137403, 5.420813E-4, -0.02922802, 0.011057622, -0.0072601223, 0.0073471903, 0.02028012, 0.018458392, -0.0038041968, 0.0031679315, -0.017078701, 0.006007684, -0.02022654, 0.008773764, 0.004386882, 0.015792776, -0.02236975, 0.021164194, -0.009503795, -0.004902592, -0.039461844, -0.020079194, -0.0023809718, 0.0010799767, 0.0106222825, 0.037479375, 0.0074811406, -0.020025615, -0.03413061, -0.012149319, 0.038041968, -0.02597302, 0.032201722, 0.009450214, -0.025651539, -0.041712213, -0.014935492, -0.17049232, 0.019663947, 0.0035295982, -0.021699997, 0.019543393, 0.02261086, 0.012243085, 0.011372405, 0.018753083, -0.013455337, 0.022034872, -0.0043500457, -0.039033204, 0.0032231861, -0.0029017047, 0.017654689, -0.017226046, 0.030701477, 0.024981786, -0.0053580236, 0.045998633, 5.738946E-4, -2.9908656E-4, 3.618759E-4, 0.01596691, -0.0099592265, 0.014238948, 0.0020728854, 0.006737715, 3.5214354E-5, -0.028665427, -0.005940709, 0.014319318, 0.0053479774, -0.008003548, 0.012665029, -0.021231169, -0.007514628, -0.007434258, -0.005984243, 0.037532955, 0.017681478, 0.012765491, 0.008599628, 0.021070428, 0.01821728, 0.013622776, -0.009758301, 0.012973115, -0.026415057, 0.0077624368, -0.0425695, 0.01778864, -0.0096645355, 6.7059015E-4, 0.027700983, -0.014547034, -0.005893826, 0.0015965237, -0.00889432, -0.03155876, -0.0099592265, 0.007802622, -0.02329401, -7.534721E-4, -0.010749536, -0.025584564, 0.017319812, -0.039059993, 0.004544274, -0.02038728, 0.010608887, 0.022677835, 0.008840739, 0.0063593043, -0.012946325, -0.043801844, 1.5435713E-4, -0.0028163113, 0.018297652, -0.015511479, 0.028397527, -0.021458885, 0.014935492, 0.012752096, -0.0052943975, 0.011137992, -6.484046E-4, 0.004246234, -7.00729E-4, 0.0010816511, -7.1872864E-4, -0.035470117, -0.017520737, 0.0059005236, 0.0051738415, -0.0015437806, 0.013642868, 0.009229196, 0.001401458, -0.009349751, -0.017440367, -0.020641787, 6.8063644E-4, 0.036943574, 0.007708857, 0.01298651, 0.026535613, 0.02719197, -0.0021030244, -0.005669459, -2.0741412E-4, 0.0055053695, -0.0038510796, -0.0037539655, 0.013783516, -0.02261086, -0.014774751, 0.0039314497, 0.0011703933, 0.048811596, -0.0133146895, -0.006650647, -0.024660304, 0.0023106479, -0.02028012, -0.08808591, 0.0046648295, 0.028504686, 0.04698987, -0.021633022, 0.01567222, -0.013696448, 0.02591944, -0.011184875, 0.037372217, -0.002802916, -0.027111601, 0.020039009, 0.0041826074, 0.018793268, 0.003012214, -0.015457898, -0.012564566, -0.009698023, 0.025544379, -0.002828032, -0.0044371136, 0.0036568511, -0.012946325, -0.031719502, 0.01778864, -0.03153197, 0.030487156, 0.009939134, 0.0075883013, 0.010287406, -0.02133833, 0.020400675, -0.040694192, -0.039033204, -0.04045308, -0.013287899, -0.037345424, 0.0031629084, -0.04540925, 0.0062755854, 0.02941555, 0.0033119284, -0.026415057, -0.004805478, -0.005950755, -0.012604751, 0.03163913, 0.0038510796, -0.039676167, -0.017065305, -0.028852958, -0.0384974, 0.0029921215, 0.012557868, 0.0041658636, 0.034478884, 0.015082837, 0.0016660105, -0.019503206, -0.003405694, 0.004440462, -0.022784997, 0.014895306, 0.011787652, 0.0115197515, -0.005766573, -0.018069936, 0.019262096, -0.0031662572, -0.012510985, 0.022289379, -0.03166592, -0.02239654, -0.023468144, 4.889197E-4, -0.024338823, -0.006891758, 0.0227716, -0.044150114, -3.31737E-4, -0.029763822, -0.0031110025, -0.020882897, 0.021673206, 0.011941696, 0.015176603, 0.013421849, -0.0040352615, -0.052562214, -0.02274481, 0.023414563, -0.0018954009, -0.021097219, -0.0024764116, 0.02713839, 0.019449627, -0.0023625535, -0.0032466275, -1.804147E-4, -0.014038023, -0.009041665, -0.07217258, 0.026455242, -0.012129227, -0.018686108, -0.012745399, -0.008304937, -6.848224E-4, -0.0035362956, 0.0049159867, 0.024954995, 0.0012407174, 0.021847341, -0.014332714, -0.014547034, -0.009477004, 0.015578454, -0.002402739, -0.013562498, 0.002828032, 0.0012666703, -0.018954009, 0.010916973, 0.034746785, -0.0032332325, -0.0014642475, 0.018940615, 0.0029134254, -0.0017262882, -0.010468239, -0.011077714, 0.031076537, -0.007273517, -0.012209597, 0.0046514343, -0.009195709, -0.04503419, -0.003164583, -0.0018635876, 0.019824687, 8.753881E-5, -0.0057297368, -0.025852464, 2.2750671E-4, -0.00401182, -0.015189998, 0.022932341, -0.019235305, 0.008197776, -0.0018016355, 0.021164194, 0.039167155, 0.009014875, 0.010749536, -0.032362465, 0.035202216, -0.022423329, 0.043828633, 0.014922096, -0.0041089347, -0.012289967, 0.036675673, 0.013756726, 0.03386271, -0.030487156, 0.0055723446, -0.0030490505, 0.018311046, -0.004169212, 0.005867036, -0.027392896, 0.005538857, -0.015511479, 0.016984936, 0.023052897, 0.021659812, 0.0027744516, 4.6715268E-4, -0.0027141739, 0.0055522523, 0.021833947, 0.03209456, -0.0064497213, -0.01835123, 0.018444996, 3.892939E-4, 0.028852958, -0.012638238, 0.0076686717, 0.014600615, 0.0034425303, -0.030058512, 0.013562498, 0.019288886, 0.0076686717, 0.016542898, 0.011955091, -0.0062889806, -0.0041524684, 0.0070123137, 0.01360938, -0.019905059, -0.009135431, -0.011553239, -7.59751E-4, -0.020186355, 0.005622576, -0.020186355, -0.025410429, 0.008659906, 0.019972034, 0.020601602, 0.011774257, -0.022959132, 0.008934504, -0.034773573, 0.018096725, 9.036433E-5, -0.015243578, -0.0068180854, 0.043775056, 0.020052403, 0.01304009, 0.036488142, -0.016810799, 0.050579745, 0.010595492, 0.016636664, -0.02361549, -8.087267E-4, 0.0036367585, -7.434258E-4, 0.0060143815, -0.03431814, 0.006938641, -0.005555601, 0.010441449, 0.013328084, 0.030594315, -0.014118393, 0.071047395, 0.02342796, -0.011137992, 0.020775737, -0.0126516335, 0.0023441354, 0.007514628, 0.02594623, -0.022624256, -0.023387773, -3.794569E-4, -0.0060545667, 0.001729637, -0.017172467, -0.0035295982, -3.5392257E-4, 0.0203337, 3.2624295E-5, -0.007307005, -0.016676849, 0.008967992, -0.007896388, 0.022718022, 0.0064999526, -0.011807745, -0.025437217, 0.0311837, 1.8229839E-4, -3.1624897E-4, -0.041176412, 0.0037271753, -0.028585058, -0.010026202, -0.0024060875, 0.014024627, -5.1068666E-4, 4.956172E-4, -0.012109133, 0.007802622, 0.003800848, -0.0077557396, 0.002451296, -0.028049255, -0.0068281316, 0.0028213344, -0.018605737, 0.005073379, -0.034907524, -0.011633609 ], + "id" : "1f115213-2518-4450-aa16-c6823471d9ee", + "metadata" : { + "source" : "movies.csv" + } + }, + "be0ba933-8fc4-43f6-b700-417abd5a5fd6" : { + "text" : ",106646-640-597-11324-454-1422-4922-68718-118-82693-1907-281957-4148-266856-350-2567-27205-1372-120467-162-37799\r\n1637,Speed,Action-Adventure-Crime,en,Los Angeles SWAT cop Jack Traven is up against bomb expert Howard Payne who's after major ransom money. First it's a rigged elevator in a very tall building. Then it's a rigged bus--if it slows it will blow bad enough any day but a nightmare in LA traffic. And that's still not the end.,36.404,20th Century Fox-The Mark Gordon Company,6/9/94,30000000,350448145,116,Released,Get ready for rush hour.,7.1,5301,Keanu Reeves-Sandra Bullock-Dennis Hopper-Jeff Daniels-Joe Morton-Alan Ruck-Glenn Plummer-Richard Lineback-Beth Grant-Hawthorne James-Carlos Carrasco-David Kriegel-Natsuko Ohama-Daniel Villarreal-Simone Gad-Loretta Jean-Sherri Villanueva-Margaret Medina-Jordan Lund-Robert Mailhouse-Patrick Fischler-Patrick John Hurley-Susan Barnes-Rick Dano-Michael Sottile-Jane Crawley-Anne O'Sullivan-Beau Starr-John Capodice-Thomas Rosales Jr.-James DuMont-Antonio Mora-Patty Toy-Todd Gordon-Bruce Wright-Mark Kriski-Dagny Hultgreen-Richard Schiff-Joseph Carberry-Sandy Martin-Neisha Folkes-LeMelle-Jim Mapp-Milton Quon-Sonia Jackson-Carmen Williams-Paula Montes-Loyda Ramos-Julia Vera-Marylou Lim-Brian K. Grant-Barry Kramer-Robin McKee-Paige Goodman-Christina Fitzgerald-Tara Thomas-Cece Tsou-Michael N. Fujimoto-Richard Gelb-Veronica Cartwright-Scott Wilder,bomb-airport-bus-bus ride-highway-bomb planting,/xKxYPmN4ZVHbNbmgm1ya2ivBn2P.jpg,/bWjvYgY2kfhnfzvEDk96yiCz2oJ.jpg,1639-754-861-1701-36955-9802-602-563-5503-664-942-876572-8467-5548-1089-941-1493-4108-1572-854-544\r\n153518,The Angry Birds Movie,Animation-Adventure-Comedy,en,An island populated entirely by happy flightless birds or almost entirely. In this paradise Red a bird with a temper problem speedy Chuck and the volatile Bomb have always been outsiders. But when the island is visited by mysterious green piggies it��s up to these unlikely outcasts to figure out what the pigs are up to.,42.821,Columbia Pictures-Rovio Entertainment-Rovio Animation,5/11/16,73000000,349779543,97,Released,Why so angry?,6.", + "embedding" : [ -0.0156077985, -0.04115516, -0.009328413, -0.03715247, -0.017528553, 0.022028219, 0.0064170617, -0.029979868, -0.02044326, -0.04217598, 0.027938228, 0.022780402, 0.01098053, 7.639359E-4, -0.0019761596, 0.016870392, 0.020228352, -0.017233051, -6.9299905E-4, -0.023626607, -0.0060073906, 0.015930163, -0.031430505, 2.4555082E-4, 0.022565491, 0.0070584323, 0.01532573, -0.010235063, -0.013861659, -0.0109603815, 0.007837479, -2.6863682E-4, -0.009650777, 7.475659E-4, -0.02627268, -0.004701144, -2.405139E-4, -0.02576227, 0.031430505, -0.010308937, 0.019489601, 0.0056111515, -0.013546011, -0.010040301, -0.0023337824, 0.011323041, 0.00842848, -0.0071726027, -0.004966423, 0.018065825, 0.0037777051, 0.015419753, -0.026769659, -0.035916742, -0.002023171, -0.0052518495, -0.0133243855, 0.012505043, -0.0074210917, -0.010214915, 0.021141717, -0.02408329, -0.030033596, 0.0024630637, -0.007246478, -0.0039892565, -0.0014959712, -0.017555416, -0.0038012108, 0.004536604, 0.014976502, 0.010141039, 0.013451988, 0.0014472809, 0.019167237, -0.016736073, -0.029066503, 0.013008738, 0.012189395, 0.017474825, 0.019059781, -0.0051544686, 3.351664E-4, 0.008589662, 0.010241779, 0.020886512, -0.0045164563, 0.029066503, -0.02992614, 0.026595045, 0.014331774, 0.0380927, 0.008723981, 0.0064539993, 0.0020617875, 0.014573547, -0.0321021, 0.014694434, -0.029899277, -0.040993977, 0.022216264, -0.010295506, -0.009677641, -7.6734636E-7, -0.01010746, -0.005725322, 0.00864339, 0.0038381484, 0.0156077985, -0.0028542662, 0.0025554076, -0.013035601, 0.00864339, -0.029093366, 0.0044291494, -0.021074558, 0.02869041, -0.014022841, -0.018777713, -0.037850928, 0.025372747, 0.024942927, 0.01715246, -0.024728019, 0.02890532, -0.001850236, 0.0055473503, -0.02196106, -0.0021222308, -0.012867703, 0.018280735, 0.006178647, 0.023841517, 0.0010737077, -0.03503024, 0.03983884, -0.018925464, 0.0026779731, -0.032773692, -0.027212908, 0.033552736, 0.0434923, -0.023035606, -0.029308276, -0.030490277, 0.0054365373, 0.017689735, -0.0038079268, 0.026662203, -0.0022330435, 0.028636685, 0.022525197, 0.0024294842, 0.010335801, 0.0048421784, 0.0013776032, -0.012874419, 0.0041873762, -0.0048354627, -0.018159848, 0.012290134, 0.0018065826, 0.0061685727, -0.005460043, 0.018361326, 0.026984567, 0.0062861014, -0.016668914, -6.610984E-4, -0.0045298883, 5.872233E-4, 0.02334454, 0.0045802575, 0.011390201, 0.024942927, 0.032934874, -0.005241776, -0.012968442, -0.013391545, 6.275188E-4, 0.013438556, 1.7125596E-4, 0.030839507, 0.04472803, -0.0095836185, 0.022162536, 0.02283413, -0.03400942, 0.008784424, -0.019905988, 0.0036534606, 0.009852255, 0.006067834, -0.013210215, -0.64687747, -0.007904639, -0.010000005, -0.0038247167, 0.014842183, 0.022995312, 0.004650775, -2.358967E-4, -0.029496321, -0.0014573546, -0.022525197, 0.007165887, 0.02342513, -0.015500344, -0.015258571, -0.0019106793, 0.011558099, -0.0025470126, 0.013391545, -0.0047414396, -0.031860325, 0.016749505, 0.011477508, 0.009254538, 0.020685034, 0.011470792, -0.01087979, -0.017985234, 0.0021809952, 0.006803227, -0.009462732, 0.0061182035, 0.022243127, -0.0021457365, 0.03000673, 0.0035661536, -0.013223647, 0.042498343, 0.03680324, 0.032639373, -0.009952994, -0.017716598, 0.019489601, 0.002276697, -0.020456692, 0.0020886513, 0.017770326, -0.0034989945, -9.864008E-4, -0.021853605, -0.008985901, 0.021007398, 0.0023186714, -0.0124983275, -0.012249839, 0.014842183, 0.0036736084, -0.031108143, 0.006316323, -0.010812632, -0.020913376, 0.022713242, -0.0023891886, 0.0099126985, -0.011356621, 0.025453338, -0.0033730709, -0.0062491638, 0.013015454, -0.014291478, 0.009603766, 0.008522503, -0.024244472, 4.046342E-4, 0.002934857, 0.013579591, 0.031242462, 5.9435895E-4, -0.006648761, 0.020188056, -0.005114173, -1.5404641E-4, -0.017985234, 0.020053739, 0.020228352, -0.014600411, -0.02553393, 0.008589662, 0.01853594, -0.013687045, 0.018307598, 0.020120896, -1.5656489E-4, -0.0033109486, -0.0133243855, -0.010826063, 0.0014414043, -0.007911354, 0.025869725, -0.05173945, -0.018697122, -0.02000001, 0.010268642, -0.0053626625, 0.03137678, 0.0013818006, 7.186035E-4, -0.008321025, 0.011148428, 0.015124252, -0.0013356287, -1.0818928E-4, -0.0056111515, -0.024110153, -0.0016546348, -0.026971135, 0.04123575, 0.01751512, 0.0029063146, 0.0053425147, -0.011598394, -0.013700477, -1.0378195E-4, -0.022538628, -0.0024546687, 0.025950316, 0.005409674, 0.003797853, 0.007897922, -0.011914043, 0.0048724003, 0.0041504386, 0.0027182687, -0.010208199, 0.004973139, 0.0023875097, 0.018898599, -0.007179319, 0.019946283, -0.023438562, -0.03677638, -0.0042578937, -0.017313642, -0.016843528, -0.016171936, -0.01897919, -0.032773692, 0.006655477, -0.016024185, -0.0034754886, -5.5910036E-4, 0.0046877125, -0.012397589, -0.010993961, 0.010295506, 0.005402958, -0.021289468, -0.027024863, 0.019006055, -0.002196106, 0.014922774, 0.009536607, 0.012766965, -0.021396922, 0.020564148, -0.011074552, -0.016977847, 0.00875756, -0.009173947, -0.033176646, 8.6299574E-4, -0.011826736, -0.008139695, 0.023693766, -0.01912694, 0.013149772, -0.024432518, 0.015930163, 0.0053828103, -0.018710554, 0.016816664, 0.015728686, -0.023774358, -0.009241106, 0.026514454, 0.012766965, 0.024996655, -0.0033059118, -0.03336469, -0.0037306936, -0.0038280746, -0.0013389866, -0.011329757, 0.019570192, -0.006131635, 0.029281413, 0.0024126943, 0.013747489, 0.007830763, 0.023841517, 0.04854267, 0.020859648, 0.002192748, 0.005889862, 0.002113836, -0.029012775, 0.00897247, -0.021558104, 0.0124446, -0.01766287, 0.018065825, 8.8818045E-4, -0.0073539326, 0.0028912036, -0.001552217, 0.0021339837, -0.018227007, 0.019529896, -0.020685034, 0.006014107, -0.009543323, 0.0048253885, 0.027306931, 0.0065480224, -0.025278725, 0.021034263, 0.01904635, -0.0041840184, 0.0032488264, -0.011826736, 0.0020836142, 0.009852255, 0.010060448, -0.010470119, 0.021638695, -0.011974486, 0.038361337, 0.0031430507, 0.03680324, -0.0033143067, -0.013109476, 0.019247828, 0.027723318, -0.012854272, -5.241566E-5, -0.014895911, 0.017918075, 0.021799877, 0.002355609, 0.042444617, -0.022028219, 0.017139029, -0.008361321, 0.008770992, 9.1504416E-4, -0.0025016803, 0.019032918, 0.0133781135, 0.034278058, 0.018723985, 0.01445266, -0.024110153, 0.030839507, 0.020671602, 0.00791807, 0.0076964446, -0.015500344, 0.0010191409, 0.0047783772, -0.010725325, -0.021477513, -0.016225664, 0.005063804, -0.009382141, 0.008005377, -0.005214912, -0.014264614, 0.019610487, 0.01451982, 0.023854949, 1.6776683E-5, -0.02314306, 0.016077913, 0.023962403, -0.029066503, -0.008985901, -0.0034687729, -0.0045097405, -0.030812642, 0.0030893234, -0.0130490335, 0.042955026, -0.028556094, 0.015097389, -0.0071390234, -0.021074558, -0.0026628624, -0.0022061798, -0.0074546714, 0.011155143, 0.0046944283, 0.011383485, -0.013525863, -0.012860987, 0.027118886, -0.010295506, 0.017783757, -0.012565487, 0.003794495, 0.008912026, -0.0065010106, -0.009180663, -0.049644083, 0.010564143, -0.022887856, 0.0056749526, -0.0063398285, -0.018186713, 0.018146416, 0.002526865, -0.011820019, -0.020564148, -0.02102083, 0.008179991, 0.06887848, 0.0213029, 0.014788456, -0.0042310297, 3.754619E-4, -0.0070248526, -0.014412365, -0.014681001, 0.0042780414, -0.030705187, 0.015272003, -0.0025369388, 0.035863016, -0.01028879, 0.00725991, -0.008092684, 0.0066924146, -0.006739426, 0.015070525, -0.020322375, -0.029979868, 0.0041336487, 0.022928152, 0.023707198, -0.0031363347, -0.026662203, 0.022135673, 0.010906654, 0.009704505, 0.011134996, -0.020308943, 0.016548028, 0.01846878, 0.0011610147, -0.0043351264, 0.0018905315, 0.036991287, 0.006578244, 0.017179323, 0.009899266, 0.00821357, 0.0026578254, -0.0052552074, 0.0023925465, 0.02036267, -0.029764958, -0.005389526, 0.01576898, 0.03468101, -0.027387522, 0.022068514, -0.01098053, -0.021464081, -0.013445272, 0.021276034, 0.0036803242, -0.017246483, -0.007656149, -0.023626607, -0.0034687729, 0.003532574, -0.029711232, 0.0137945, -0.01025521, -0.012431168, -0.025359314, -0.024419086, -0.011161859, 0.0062659536, 0.010174619, 0.0037508414, -0.041880477, -0.010604438, 0.013183352, 0.026809953, 0.0031396928, 0.024983224, 0.010940234, 0.0023371403, 0.022713242, -0.027938228, -0.04392212, 0.009207526, -0.028072547, -0.014022841, 0.012565487, 0.0030674965, 0.011490939, 0.0053995997, 0.014775025, 0.011853599, -0.0113431895, -0.0028945617, -0.022538628, 0.035674967, 0.0071390234, 0.018522508, 0.02283413, 0.016668914, 0.0044190753, 0.0081531275, -0.019879123, -0.0025738764, -0.0059603793, -0.0127736805, -0.012639362, 0.01598389, 0.01700471, -0.016480869, -0.006487579, -0.030087322, -0.011390201, 0.011202155, 0.012612498, 7.282576E-4, 0.0054634013, 0.0076225693, 0.00864339, -0.007004705, 0.012055077, -0.0029936214, -0.016924119, -0.011410348, 0.014036274, -0.011820019, 0.022216264, -0.015151116, -0.037125606, 5.241566E-5, 0.02903964, -0.0029147093, 0.014681001, -0.010282074, -0.0073875124, -0.017273346, -0.017958371, 0.0066017495, -0.004811957, -0.015701821, -0.008005377, -0.023814654, 0.008441912, 0.014855616, -3.1501864E-4, -0.014278047, -0.020604443, -0.010517132, 0.0045903316, 0.01532573, 0.02321022, -0.018146416, 0.004976497, -0.015272003, -0.002612493, -0.025171269, -0.042578936, -0.03371392, 0.0013776032, 0.04314307, 0.010624586, 0.047172625, 0.0066823405, 0.029738095, 0.027266636, 0.015003365, 0.020026874, -0.022390878, -0.004059774, -0.026863681, 0.012981874, 0.015728686, 0.0053458726, 0.00956347, 0.011497656, -0.010530563, 0.017421097, 0.012585634, 0.023237085, 0.01280726, -0.019274691, -0.012827408, 0.0042008082, -0.028368047, -0.015258571, -0.03599733, -0.007071864, 0.023774358, -0.011705849, -0.0060980557, 0.0011542988, 0.02174615, -0.011027541, -6.493455E-4, -0.012901283, 0.0021155148, -0.03774347, -0.011302894, -0.01415716, 0.0031279398, -0.005836135, 0.0016940909, 0.0015463406, -0.012081941, -0.0038415063, 0.009805243, 0.024902632, -0.020026874, -0.028206864, 0.021947628, -0.0034822046, -0.01940901, -0.032397598, -0.007132307, -0.021947628, 0.002273339, -2.1952664E-4, 0.008844867, 0.007642717, -0.020040305, -0.02065817, 0.0053290827, -0.004996645, 0.035943605, 0.008582946, 0.047924805, 0.02044326, 0.013371397, -0.020376101, 0.0047078603, -0.011255883, 0.007347217, 0.030624596, 0.027494978, -0.02233715, 0.0027317007, -0.010933518, 0.0071994667, -0.030705187, -0.031833462, 0.037770335, 0.01554064, 0.020779056, -0.023465425, -0.0014153802, -0.026581611, 0.009214243, 0.006030896, 0.0013557764, 0.0049429173, -0.020147761, -0.017783757, 0.00890531, 0.002442916, 0.02116858, 0.016843528, -0.03285428, 0.026903976, -0.012652794, -8.638352E-4, -0.019503033, 9.335129E-4, 0.023734063, -0.020940239, 0.005668237, 0.012095372, 0.018079257, -0.0025016803, -0.007971797, 0.015379458, 0.03320351, -0.016306255, 0.010201483, -0.020886512, -0.013512432, 0.008381468, 0.03073205, -0.033955693, -0.01032237, -0.019771669, -0.00875756, 0.033176646, 0.011846883, -0.007481535, 0.0071726027, -0.019086646, -0.015742118, -0.0034335142, -0.010235063, 0.0083478885, -0.027642727, 0.007145739, 0.001051881, -0.01664205, -0.0051074573, 0.018200144, 0.01634655, 2.4261262E-4, 0.02584286, 0.0053626625, -0.0050369403, -0.01656146, 0.006457357, -0.043438572, -0.0019409009, -0.0073606484, -0.011907327, 0.012780396, -0.018562803, 0.010591006, -0.009241106, 0.0019157162, -0.009785096, 0.015876435, -0.014184023, 0.01621223, 0.03363333, -0.009133652, -0.008415048, -0.006212226, 0.027803909, -0.01265951, 0.004355274, 0.018938895, 0.011652121, 0.030033596, -0.03640029, 0.015580935, -0.0011492618, -0.0038582962, -0.031403642, 0.016977847, 0.026729362, -0.0031934201, -0.0061081294, -0.031779736, 0.0044257916, -0.016333118, 0.031269323, -0.018186713, 0.01167227, 0.04341171, 0.025869725, 0.0139288185, 0.021867037, -0.0033361334, -0.036722653, 0.009288117, -0.009032913, -0.01641371, -0.013008738, 0.009570186, 0.004882474, 0.013237079, -0.008220286, -0.034654148, -0.012760248, -0.041262615, -0.028180001, -0.005836135, 0.027615864, 0.043384846, 0.015204843, -0.0010468441, 0.015580935, -0.0038582962, 0.0075419783, -0.014761592, 0.0021759581, 0.019449305, -9.953204E-5, 0.0109872455, 0.041799888, -0.024257904, -0.013297522, -0.0026628624, 0.015245139, 0.014613843, 0.025157837, -0.033821374, -0.0060342546, -0.0023321032, -0.00795165, 0.0044090017, 0.0035594378, 0.01721962, -0.020120896, -0.010026869, 0.013713909, 0.021517808, 0.0012189395, 0.006047686, 0.01700471, -0.022565491, -0.020402966, -0.02233715, -0.022323718, -5.6077936E-4, -0.020483557, 0.027615864, 0.0014162196, -0.005802555, 0.007743456, 0.019314986, -0.0025638025, 8.7642757E-4, -0.01167227, -0.011155143, 9.477842E-4, -0.0039019496, 6.459876E-4, 0.0046541328, -0.043331116, 0.034278058, -0.030893233, -0.0025839503, -0.017904643, 0.0023539301, -0.031994645, 0.03108128, 0.010564143, -0.050987266, -0.006971125, 0.0011878784, -0.0014858973, -3.2803073E-4, -0.005631299, -0.027911365, -0.010302221, 0.0061752885, 0.008475492, -0.005144395, -0.03457356, 0.0025822714, -4.4492973E-4, -0.0251847, 0.021289468, 0.18224321, -0.02650102, 0.020416398, 0.035809286, 0.003878444, 0.010570859, 0.007562126, 0.023263948, -0.01715246, 0.015030229, 4.2960903E-4, 0.021208877, -0.0024445949, 0.0041504386, 0.008777708, 0.0047884514, -0.015728686, -0.037125606, -0.015258571, -0.021490945, -0.015661526, 0.009053061, -0.013982546, -0.0113163255, -4.6465773E-4, 0.008206855, -0.0025755554, 0.006621897, 0.026998, -0.001178644, -0.02933514, -0.0051074573, -0.0014657496, 0.008388184, -0.012451316, -0.0053290827, 0.004120217, 0.00824715, 0.016749505, -0.002097046, 6.7536975E-4, -0.0016672272, 0.0031850252, -0.02217597, 0.0062558795, 0.011437212, -0.022028219, 0.0050000027, -0.019677646, 0.011584963, -0.042525206, 4.474482E-4, 0.020698465, 0.008522503, -0.012605783, -0.016897256, 0.0031380136, -0.026312975, -0.005141037, 0.022860993, 0.01394225, 0.039113518, -0.031323053, 0.001600068, -0.004711218, 0.012639362, -0.039865702, 0.012337145, 0.015728686, -0.017394233, -0.0062793856, -0.0037844211, -0.019556759, 0.009509743, -0.02044326, -0.018656826, -0.0015614515, 0.008274014, 0.01728678, 0.015661526, -0.029576913, -0.0129953055, 0.0028962407, -0.014358638, -0.0074546714, -0.005970453, 0.01736737, -0.011531235, -0.007246478, -0.009368708, -0.015782412, -0.030087322, 3.208426E-5, 0.0040060463, -0.0045601097, 0.00831431, 0.027333796, 0.033552736, -0.023922108, -0.0024026204, -0.03650774, 0.024029562, 0.040456705, -0.022323718, -0.003942245, -0.020523852, 0.007333785, 0.02627268, 0.024096722, -0.02182674, -0.031860325, -0.047575578, 0.006242448, -0.018334461, -0.0076158536, 0.011820019, 0.014586979, -0.02678309, 0.028475503, -0.020282079, 0.013203499, -0.0127199525, 0.012545339, 0.0010476835, 0.009932846, -0.023989268, -0.036749516, 0.0046407008, -0.0062625958, -0.029308276, 0.022968447, -0.01193419, 0.012840839, 0.004472803, -0.011255883, 0.016843528, 0.026944272, 0.0021423786, 0.00623909, -0.01127603, 0.013230363, -0.028394911, 0.0095567545, 0.019288123, 0.022740105, -0.029872414, 0.012766965, -0.0038448644, -0.019462736, -0.03218269, -0.009321697, -0.024432518, 0.0063666925, -0.0014086643, 0.040698476, -0.013982546, -0.020349238, -0.03014105, -0.0052014804, 0.041047703, -0.033660192, 2.5355223E-5, 0.011994634, 0.0027233057, -0.02196106, -0.01466757, -0.17235738, 0.018777713, 0.0073673646, -0.013888523, 0.007998661, 0.010779052, 0.031833462, 0.01693755, -0.0016714246, -0.0025789135, 0.017018141, 0.008267297, -0.034627285, 0.0069241137, 0.010416392, 0.00956347, -0.01576898, 0.043169934, 0.0059200837, -0.008670253, 0.015218276, -0.015876435, -0.006752858, 0.017461393, -0.010154472, 0.008173275, 0.0081262635, 0.0027065158, 0.0028441923, -0.027159182, -0.04263266, 0.0015715254, -3.8301732E-4, 0.012787112, -0.009543323, 0.0043519163, -0.017891211, -0.0025990612, 0.0051779747, -0.005812629, 0.046662215, 0.026312975, 0.02474145, 0.0061383513, 0.019220963, 0.025010087, 0.03094696, -0.019879123, 0.001767966, -0.01781062, -0.0013356287, -0.045050394, 0.0071927505, 0.012236407, 0.009355277, 0.01627939, -0.02597718, 0.001384319, 0.012337145, -0.007662865, -0.034197465, -0.010745472, 0.015151116, -0.019623918, -0.019677646, -0.030463414, -0.01364675, 0.0245937, -0.0446743, -0.0020836142, -0.005110815, 0.0037777051, 0.026863681, 0.006997989, 4.1932528E-4, -0.011336474, -0.012182679, 0.017797189, -0.0011887179, 0.023760926, -0.009194095, 0.04021493, -0.008119548, 0.0062995334, 0.015392889, -0.0035829435, 0.0030792495, 8.512429E-4, 0.013552727, -0.03108128, 0.010591006, -0.0035560797, -0.019570192, -0.025963748, 0.0038314324, 0.007978513, 0.0018368042, -0.0016269317, 0.0032723323, -0.020174624, -0.007085296, -0.027830774, -0.013653466, 0.017703166, 0.026608476, 0.01167227, 0.0042343875, 0.019973148, 0.021074558, 0.008549366, -0.013660182, 0.005503697, 0.023975836, 0.011732712, -0.030570868, -0.0013834796, -0.007562126, -0.02480861, 0.019180669, 0.008885163, 0.028932184, 0.0033932186, -0.0067092045, 9.125257E-4, 0.009059777, -0.009610482, -0.07811958, -0.007642717, 0.015500344, 0.018065825, -0.024513109, 0.033821374, -0.009637346, 0.034116875, -0.010631301, 0.030409686, 0.008005377, -0.03218269, -0.0050100763, -0.0025369388, 0.02869041, 0.0029734736, -0.012155816, -5.5668683E-5, 1.3557763E-4, 0.017622575, 0.0028072547, -0.01481532, -0.004288115, -0.014197456, -0.041047703, 0.0018183354, -0.040053748, 0.012787112, 0.018925464, -8.8230404E-4, 0.031108143, -0.024580268, 0.012303566, -0.033096056, -0.023263948, -0.0069778413, -0.022968447, -0.03392883, 0.0028072547, -0.053243816, 0.006151783, 0.009341845, 0.008582946, -0.017407665, 4.2876953E-4, -0.02619209, -0.018307598, 0.032746825, -0.014103432, -0.024486246, -0.008791139, -0.0067830794, -0.016292822, -0.014828752, 0.022001354, 0.010094028, 0.02108799, 0.011061121, -0.016386846, -0.0046541328, 0.00505373, -0.00740766, -0.030194778, 0.020322375, 0.01721962, 0.002029887, 0.0012995306, 6.2961754E-4, 0.014989934, -0.014425796, -0.024862336, 0.012209543, -0.021853605, -0.018831441, -0.029442593, -0.010154472, -0.017783757, -0.0062021525, 0.017622575, -0.013727341, -0.009341845, -0.030409686, 0.0016966093, -0.013263943, -0.0034335142, 0.023666903, 0.010026869, 0.0056111515, 0.009543323, -0.03086637, 9.7632693E-4, 0.014372069, -0.0016630298, -0.008475492, -0.01292143, 0.025681678, 0.0164943, 0.0014900948, 0.010577574, 0.0025453337, -0.02650102, 0.0038415063, -0.07806586, 0.015392889, -0.0032169258, -0.0058260607, 0.010423108, -0.009133652, 0.012572203, -0.012249839, 0.012706521, 0.017340505, 0.010557427, 0.025601087, -0.010490268, -0.0034855625, -0.0095298905, 0.01825387, -0.0069106817, -0.018509077, 0.0042813993, -0.009147083, -0.007897922, -0.0075151147, 0.019758238, -0.0018787787, 3.9644918E-4, 0.012740101, 6.212226E-4, 0.0240027, -0.017958371, -0.0055775717, 0.024687722, -0.020188056, -0.008475492, -0.0032437895, -0.012652794, -0.025963748, -0.014358638, -0.0055171284, 0.0051981225, 0.0075218305, -0.008045672, -0.026514454, -0.010597723, -0.023895245, 0.0062021525, 0.00740766, -0.0015908336, 0.0024681007, 0.020698465, -2.0646208E-5, 0.029523185, 0.008253866, -0.010100744, -0.032155827, 0.016991278, -0.02445938, 0.04803226, 0.00893889, 0.0017066832, -0.004721292, 0.03562124, 0.0020668244, 0.03787779, -0.029281413, 0.008321025, 0.010355949, 0.0018636679, -0.0043116207, 0.002118873, -0.027186045, 0.01774346, -0.015889868, 0.012793828, 0.028475503, 0.013082612, 0.014734729, -0.008334457, 0.009798528, -0.003613165, -0.0018922106, 0.023841517, -0.015164548, -0.021786446, 0.0024362002, 0.02065817, 0.026998, -0.009227674, 0.006457357, -0.006655477, 0.014466092, -0.037125606, -0.0064338516, 2.5551977E-5, -0.006396914, -3.8994313E-4, 0.005977169, -0.012343861, -0.014801888, 0.005322367, 0.021249171, 0.0032471474, -0.0039355294, -0.030329095, -0.027723318, -0.018307598, 0.011081268, -0.0034721307, -0.033660192, 0.014143728, 0.011047689, 0.012854272, 0.01517798, -0.006326397, 0.016319687, -0.043223664, 0.019019486, -0.007669581, -0.00923439, -0.009180663, 0.050852947, 0.009314981, 0.006830091, 0.022377446, -0.016803233, 0.0326931, 0.0033310964, 0.014627274, -0.03194092, -0.01802553, -0.024177313, -0.003975825, 0.005889862, -0.02196106, 0.014090001, -0.013364681, -0.01430491, 0.009113504, 0.0395702, -0.011524519, 0.065923475, 0.03086637, 0.005537276, 0.009456016, -0.020819353, 0.012887851, 0.014197456, 0.010073881, -0.0060208226, -0.010080596, -0.0036769663, -0.0101611875, 0.0077770357, -0.03599733, 0.007179319, -0.018576235, 0.005886504, -0.0070248526, -0.0048724003, -0.019220963, 0.01298859, -0.013499, 0.015433185, 0.015621231, -0.03473474, -0.0072666258, 0.0045903316, -0.014022841, -0.023841517, -0.030597733, -0.0040967115, -0.017098732, 3.2845046E-4, -0.0030658175, 0.03255878, 0.0069106817, -0.0047918092, 0.010335801, 0.037528563, 0.01167227, -0.008394901, 0.0054365373, -0.019758238, -0.011517803, 0.021047695, -0.001051881, -0.014049705, -0.021974491, -0.019677646 ], + "id" : "be0ba933-8fc4-43f6-b700-417abd5a5fd6", + "metadata" : { + "source" : "movies.csv" + } + }, + "d3dd2d35-faa1-46a0-bd8d-abdf693e9c7c" : { + "text" : "222,Walt Disney Pictures-Walt Disney Feature Animation,6/21/96,100000000,325338851,91,Released,Join the party!,7.1,4421,Tom Hulce-Demi Moore-Heidi Mollenhauer-Tony Jay-Kevin Kline-Charles Kimbrough-Mary Wickes-Jane Withers-Jason Alexander-Paul Kandel-Mary Kay Bergman-David Ogden Stiers-Gary Trousdale-Corey Burton-Bill Fagerbakke-Jim Cummings-Patrick Pinney-Frank Welker-Jack Angel-Joan Barber-Scott Barnes-Bob Bergen-Susan Blu-Maureen Brennan-Rodger Bumpass-Victoria Clark-Philip L. Clarke-Jennifer Darling-Debi Derryberry-Jonathan Dokuchitz-Bill Farmer-Laurie Faso-Merwin Foard-Dana Hill-Judy Kaye-Eddie Korbich-Alix Korey-Michael Lindsay-Sherry Lynn-Mona Marshall-Howard McGillin-Mickie McGowan-Anna McNeely-Bruce Moore-Denise Pickering-Phil Proctor-Jan Rabson-Peter Samuel-Kath Soucie-Gordon Stanley-Mary Stout-Marcelo Tubert-Frank Stancati,paris france-based on novel or book-judge-obsession-dance-sword-mockery-ugliness-cathedral-musical-fool-bell-religion-orphan-army captain-festival-angry mob-notre dame cathedral-witch hunt-15th century,/r7V92gY3AMO6li17MmGTixAnFcv.jpg,/oslaee3VX9kJAjVezbjZKlEJDzn.jpg,10530-10340-10882-10693-10895-11360-37135-10112-12230-3170-9325-12092-11970-10144-11224-11886-11544-408-10674-12448-10948\r\n17979,A Christmas Carol,Animation-Family-Fantasy,en,Miser Ebenezer Scrooge is awakened on Christmas Eve by spirits who reveal to him his own miserable existence what opportunities he wasted in his youth his current cruelties and the dire fate that awaits him if he does not change his ways. Scrooge is faced with his own story of growing bitterness and meanness and must decide what his own future will hold: death or redemption.,76.594,Walt Disney Pictures-ImageMovers Digital,11/4/09,200000000,325300000,94,Released,Season's Greedings,6.9,4220,Jim Carrey-Gary Oldman-Colin Firth-Robin Wright-Cary Elwes-Bob Hoskins-Daryl Sabara-Steve Valentine-Sage Ryan-Amber Gainey Meade-Ryan Ochoa-Bobbi Page-Ron Bottitta-Fionnula Flanagan-Samantha Hanratty-Julian Holloway-Jacquie Barnbrook-Lesley Manville-Molly C. Quinn-Fay Masterson-Leslie Zemeckis-Paul Blackthorne-Michael Hyland-Kerry Hoyt-Julene Renee-Raymond Ochoa-Callum Blue-Matthew Henerson-Aaron Rapke-Sonje Fortag,london england-based on novel or book-holiday-greed-victorian england-money-ghost-lesson-christmas music-moneylender-christmas-19th century-scrooge-christmas eve,/t41VHjYItCYHBh2hijsTID44cNv.jpg,/bFntIQxWBwtzYAFc68xF1GKAfiv.", + "embedding" : [ -0.0029298826, -0.037807524, -0.0032693609, -0.03638941, -0.010308103, 0.030636672, 0.0031456102, -3.1418476E-4, -0.016816722, -0.04749353, 0.028629903, 0.04133944, 0.007920048, -0.013398527, -0.008481943, 0.013612582, 0.018127812, -0.01450225, 0.013010551, -0.03341939, -0.014141032, 0.004003504, -0.028496118, 0.003003464, 0.017164564, 0.002431535, 0.03379399, -0.0074785585, -0.0036054947, -3.252638E-4, 0.016468883, -0.018341867, -0.016254827, -0.0038095163, -0.0061775036, -0.018716464, 0.0076391003, -0.0340348, 0.027559625, -7.730241E-4, -0.0062711528, 0.022355406, -0.011712841, -0.011251284, -3.411507E-4, 0.030208562, 0.014060761, -0.0070370696, 0.0014799921, 0.027104758, 0.011940274, 0.036496438, -0.011819868, -0.031198567, -0.0039031655, -0.00460219, -0.020629585, -0.005267768, -0.004802867, -0.010863309, 0.02492407, -0.020067688, -0.0237869, -0.029031256, -0.014716305, -0.017472267, -0.02066972, -0.021392155, 0.007164165, -0.007077205, 0.017860243, 0.026368942, 0.009431814, 0.019679714, 0.023760144, -0.026355565, -0.026034482, 0.004873104, 0.0033329087, 0.005026956, 0.0133182565, -0.014475493, 0.012268047, 0.015612662, 0.0061173006, 0.03882429, -0.011157635, 0.03360669, -0.0475738, 0.017258212, 0.021820268, 0.035827514, 0.0023094565, -0.0034031456, 0.018368624, 0.011946964, -0.012689468, 0.031921003, -0.010930201, -0.028549632, 0.007070516, -9.432859E-6, -0.0020117857, -0.008535457, 0.002801115, 0.017151184, -0.0026355565, -0.007973562, 0.018569302, -7.692614E-4, -0.0022910612, -0.003655664, 0.031198567, -0.030930998, -0.0091976905, -0.028094765, 0.01058905, 0.011144256, -0.0035285687, -0.021137966, 0.017994028, 0.030636672, 0.004535298, -0.04010862, 0.02396082, 0.01475644, -0.0014866813, -0.011518854, -0.01163926, -0.015050767, 0.03473048, 0.0024432412, 0.0079133585, 0.0043379655, -0.02109783, 0.047734343, -0.0220477, 0.017592674, -0.019947283, -0.022074457, 0.0049533746, 0.026328808, -0.006180848, -0.023144735, -0.031198567, 0.004130599, 0.006679196, -0.0061440575, 0.021004181, 0.004679116, 0.018609436, 0.013833327, 0.010482023, 0.03047613, 0.033740476, 5.1130797E-4, 0.015746446, -0.007953494, 0.0020803504, -0.024883933, -0.0115723675, 0.011418515, -3.459586E-4, -0.007043759, -0.006026996, 0.012107505, 0.013572447, -0.022582838, 6.5136375E-4, 0.011304798, -0.008849851, 0.027131515, -0.017512403, 0.012515549, 0.0073247063, 0.011077364, 0.003302807, -0.011084054, -0.04495162, 1.6190026E-4, -0.0012868405, 0.00412391, 0.014529007, 0.025860561, -0.007993629, -0.004662393, 0.018221462, -0.02579367, 0.013646028, -0.01554577, -0.0084217405, 0.011057297, 0.006348079, -0.014636034, -0.64687526, -0.012569062, -0.014649413, -0.023305276, 0.017552538, 0.019666335, -6.521999E-4, -0.008562214, -0.03636265, -0.0075788973, -0.02630205, 0.023572845, 0.03542616, -0.017057536, -0.016335098, -0.010374995, 0.0045185746, -0.026703404, 0.019479036, -0.0014641051, -0.027305435, 0.021954052, 0.0061674695, 0.005608919, 0.003095441, 0.0016296635, -0.0050570574, -0.017980648, 0.011659327, -0.003943301, -0.023064464, 0.014395222, 0.011873382, 0.0011246267, 0.039145373, 0.02038877, -0.025766913, 0.036951303, 0.036710493, 0.03438264, -0.03708509, -0.0076792357, 0.001000876, 0.0031640057, -0.013472108, 0.0028563011, 0.018382004, 0.03159992, -0.009766275, -4.7268815E-5, -0.018703086, -0.007438423, 0.0012834959, -0.0040770853, -0.014274816, -0.0062377066, 0.020964045, -0.018274976, 0.013819949, 0.008114035, -0.012308182, 0.014983874, 0.007023691, 0.018515788, -0.0161478, 0.018341867, -0.005936691, -0.018729843, 0.019559307, -0.012803186, 0.016896995, -2.6506072E-4, -0.021044316, 0.008716066, 0.008053833, 0.0025870595, 0.029245311, -0.008053833, -0.0041774237, 0.010354928, -0.004869759, -0.0071842326, 0.0011028867, 0.014435357, 0.023720007, 0.0029365718, -0.027853953, 0.006799602, 0.0012099145, 0.005000199, 0.0022927334, 0.0127362935, -0.0039700577, -0.003051961, -0.0075253835, 7.947641E-4, -0.021833645, 0.0058999006, -7.818037E-4, -0.06453769, -0.023051085, -0.031813975, 0.007351463, -0.001093689, 0.025833804, 0.012341629, -0.0065320325, -0.002757635, 0.03663022, -0.007498626, 0.011351623, -0.014100896, -0.018769978, -0.017940514, -0.010194385, -0.025860561, 0.019586064, 0.002095401, 1.9466703E-5, 0.016442126, -0.0058831773, 0.0041372883, -4.640653E-4, -0.009231137, -0.0062109497, 0.032161817, -0.00612399, -0.006990245, -0.0059166234, 0.0056390204, 0.029646665, -4.7117262E-4, 0.010662632, -0.016549153, 0.016094286, -4.9374875E-4, 0.018248219, -0.0017174596, 0.027987737, -0.016401991, -0.03593454, -0.011538921, -0.012843321, -0.011057297, -0.00790667, -0.0071240296, -0.017151184, 0.004839658, 2.6297034E-4, -0.0041172206, -0.025285289, 0.009599044, -0.005909934, 0.009110731, 0.0010477005, 0.013565757, -0.025646506, -8.871591E-4, 0.022556081, -0.011418515, 0.01657591, 0.021806888, -0.013231296, -0.015733069, 0.016816722, 0.0026572964, -0.008669241, 0.0061942264, -0.008374915, -0.0153049575, 0.0031489548, 0.0013069082, -0.0064383834, 0.02247581, -0.0047560423, 0.045352977, -0.014569142, 0.0085421465, 0.0059868605, -0.019599443, 0.0133918375, 0.0025034442, -0.0355867, -0.009364922, 0.044764325, 0.003551981, 0.01015425, -0.014983874, -0.017766593, 0.0018311766, -0.021472426, -0.006823014, 0.0015268166, 0.0119603425, -0.004351344, 0.03288425, -0.0060203066, -0.007819709, 0.0032793947, 0.01085662, 0.027693411, 0.020576071, -0.005113916, -0.011438583, -0.0035486363, -0.05046355, 0.005970137, -0.026823811, 0.0067761894, 0.0032442764, 0.020816883, -0.001256739, 0.007351463, -0.01622807, 0.012441967, 0.01989377, -0.008889986, -0.002513478, -0.009144177, 0.006615648, 4.7242685E-4, -0.010314792, 0.018114435, 0.016040772, -0.018448895, -0.006277842, 0.008990324, -0.001267609, -0.0033914393, 0.0023245073, -0.01744551, -0.005662433, 0.0057627712, -0.0011279713, -8.26956E-4, 0.016121043, 0.023104599, -0.004063707, 0.05027625, -0.013378459, -0.007103962, 0.024362175, 0.028121522, 0.012060681, -0.017418753, -0.0058062514, 0.013679475, 0.015171173, -0.017646188, 0.039279155, 0.005304559, 0.015773203, -0.0013846705, 0.019077683, -0.0044516823, -0.0079133585, 0.010535536, 0.009893371, 0.033553176, 0.02994099, 0.008782959, -0.03360669, 0.01450225, 0.0035386025, 0.01120446, -0.004358033, -0.012468724, 0.0014156082, -6.317141E-4, -0.025312046, -0.018355247, -0.0016396974, -0.008274577, 0.009170934, 0.00772606, -0.01771308, -0.007224368, -3.2003783E-4, 0.01709767, 0.040322676, -8.392893E-5, -0.032937765, 0.013151025, 0.023720007, -0.01415441, -0.013378459, -0.015626041, -5.1005376E-5, -0.028843958, -0.0048329686, -0.014569142, 0.019358631, -0.0070303804, 0.011405136, -0.013993869, -0.009946885, 0.017726459, -0.021566076, 1.729793E-4, 0.029138284, -0.010214454, 0.02076337, -0.0020268366, 0.0020201474, 0.025231775, -0.01867633, -0.0010518814, -0.008040454, -0.02414812, 0.009344853, 7.7386026E-4, -0.014314951, -0.036255624, 0.023773521, -0.014381844, 0.0022592873, -0.011619192, 0.0059567587, 0.016522396, -0.011712841, -0.00451523, -0.025218396, -0.013492176, 0.015331714, 0.06598256, 0.028576389, 0.024990961, 0.0057694605, -0.025164882, 0.0049868207, -0.013204539, -0.015866853, -0.004766076, 0.009532152, 0.020790126, -0.008167549, 0.047038663, 0.0013972129, 0.013559069, -0.021472426, 0.0041473224, -0.0142881945, 0.0058229743, -0.009471949, -0.026074616, -0.013177782, 0.008475254, 0.025659885, -0.016348477, -0.018810114, 0.023318654, 0.011612503, -0.009471949, -0.003856341, -2.822019E-4, -0.0073915985, 0.004046984, 0.018261597, 0.009846546, -0.006130679, 0.030556401, 0.031706948, 0.026944216, 0.006521999, 0.010916823, 0.0020117857, 0.0017442167, -0.006823014, 0.013726299, -0.016977265, -0.023840414, 0.031706948, 0.023559466, -0.042730797, 0.02256946, -0.00460219, -0.006441728, -0.015064145, 0.03133235, 5.7151105E-4, -0.016696317, 0.0015627713, -0.013425284, -0.00963918, 0.00972614, -0.037834283, 0.015866853, -0.018622816, 0.0075588296, -0.009451881, -0.028576389, -0.008481943, -0.018796735, 0.019131197, 0.0051105716, -0.0142881945, -0.010294724, -0.015224687, 0.009384989, 0.0038429624, 0.022689866, -0.014301573, 0.016121043, 0.010120804, -0.014769819, -0.026422456, 0.006702608, -0.019907147, -0.023559466, 0.013913598, -0.010896755, 0.029726936, -0.015385228, -0.0031974518, 0.0021907226, -0.0017509059, -0.019050926, -0.029486123, 0.035212103, -0.0073849093, 0.0041506668, 0.02457623, 0.012482102, -0.0101676285, 0.016910372, 0.0044215806, -0.012047303, -0.014916982, -0.0028228548, -0.021298507, -0.011826558, -2.3036034E-4, -0.002061955, -0.03039586, -0.02612813, -0.018087678, -0.005016922, 0.006685885, 7.9392793E-4, 0.00876958, -8.031256E-4, 0.0069099744, -0.0054149316, 0.011512164, 0.006528688, -0.012007167, 0.005592196, 0.028014494, -0.021311885, 0.026863946, -0.015492256, -0.020040931, -0.0011338245, 0.01703078, 0.0142881945, 0.0054985466, -0.0196262, -0.02169986, -0.011585746, -0.021499183, 0.015612662, 0.005016922, -0.016187936, 0.001914792, -0.005973482, 0.010930201, 0.014368465, -0.007772885, 0.013084133, -0.029379096, 0.01649564, -0.01989377, 0.025071232, 0.025111368, 0.0052410113, 0.0059801713, -0.018462274, -0.00512395, 9.6157676E-4, -0.034703724, -0.029619908, 0.0018495719, 0.022890544, 0.016415369, 0.049714353, 0.014636034, 0.03109154, 0.008481943, 0.0036021501, 0.031680193, -0.00929134, -0.0031924348, -0.034543183, 0.0061942264, 0.004899861, 0.026261915, 0.012997173, 0.009766275, 0.006097233, 0.013485487, 0.014261438, 0.0036656978, -3.5264782E-4, -0.025646506, -0.017499024, 0.0026288673, -0.019144574, 0.0018579335, -0.022007566, -0.016294964, 0.039011586, 0.0054383436, -0.004903205, 0.0011472029, 0.039707266, -5.117261E-4, 0.02830882, -0.0030435994, 0.0060805096, -0.021994187, -2.9390803E-4, -0.03836942, -0.007960184, -0.010053912, -0.0140206255, 0.015010631, 0.009498706, -0.0029566395, 0.008287955, 0.026409078, -0.017820107, -0.022422297, 0.022368783, -0.0015201274, -0.00937161, -0.048483536, -0.0054082423, -0.03481075, -0.0010560622, 0.0068698386, -0.020214852, 0.0018261597, -0.017177941, -0.03847645, 0.01458252, 0.0051874975, 0.032349113, 0.023987576, 0.048670836, 0.02335879, -0.0037392792, -0.019586064, 0.014729683, -0.018020784, -0.008468565, 0.033285607, 0.006468485, -0.021927295, -0.0040503284, 0.006468485, 0.0069032847, -0.036576707, -0.042061877, 0.018823491, 0.021164723, 0.021405535, -0.021806888, -0.01163257, -0.012294804, 0.015358471, 1.5238901E-4, 3.704161E-4, 0.014649413, -0.02614151, -0.022127971, -0.0030268764, -0.0061139558, 0.014421979, 0.020081067, -0.0355867, 0.022328649, -0.01293697, -0.0050135776, 0.004478439, -0.003846307, 0.014475493, -0.025392316, 0.02040215, 0.008609039, 0.0100940475, -0.010120804, -2.8795042E-5, 0.0031405932, 0.030262075, -0.015171173, -0.0013403543, -0.007083894, -0.0024766873, 0.013271431, 0.0055319928, -0.034569938, -0.02951288, -0.043640535, -0.002752618, 0.034971293, 7.174199E-4, 0.0010025483, -0.0015376867, -0.01146534, -0.011003783, 0.018649573, -0.010528848, 0.0013445352, -0.030155048, 0.02491069, -0.022515947, 0.012977106, -0.0059534144, -0.0050135776, 0.0112579735, 6.8313756E-4, 0.018489031, -0.013278121, 0.0027760302, -0.022194864, -0.01840876, -0.041553494, -0.036871035, -0.015866853, -0.0116459485, 0.008796337, -0.014435357, -0.010836552, -0.0029114871, -0.0028864027, -0.0048898268, -0.0028930919, -0.007719371, -0.003525224, 0.015278201, -0.012053992, -0.009431814, 0.010649254, 0.03406156, 3.8755723E-4, -0.0036422855, 0.0109904045, 0.01736524, 0.030663429, -0.017271591, 0.0067527774, -0.012214533, -0.017177941, -0.0039031655, -4.7660762E-4, 0.024803663, 0.015947124, 0.0127362935, -0.041312683, -0.011405136, -2.119127E-5, 0.04366729, -0.0170174, -0.020776747, 0.02083026, 0.006823014, 0.026181644, 0.022181485, -0.0068096356, -0.019853633, -0.009338165, -0.0029282102, -0.021592833, -5.347203E-4, -0.0052309777, 0.017753216, 6.898268E-4, -0.012803186, -0.028522875, 0.013331635, -0.035292376, -0.036576707, -0.0047593866, 0.024536094, 0.03465021, -0.015238065, -0.0016656182, 0.014702926, 0.006371491, 0.008823094, -0.027934223, -9.824806E-4, 0.010388373, 0.01927836, 0.021847025, 0.022622975, -0.007893291, -0.018274976, 0.005287836, 0.039814293, 0.005010233, 0.02699773, -0.022382163, -0.014100896, -0.010709456, 0.0054952023, -0.0049433406, -0.015532391, 0.023077842, -0.03419534, -0.020081067, 0.004799522, 0.011706152, -0.01597388, 1.4384456E-5, -0.0010744575, -0.014876846, -0.0035820825, -0.017779972, -0.003107147, -0.0033094964, -0.0153049575, 0.0070036235, 0.020094445, 0.008722755, 0.016254827, 0.024937447, 0.005722636, 0.007023691, 0.009298029, -0.006461796, -0.0059601036, -0.0010410113, 0.005478479, 0.029325582, -0.024442445, 0.011231217, -0.020509178, 0.008588971, -0.02283703, 0.024455823, -0.012020546, 0.028790444, 0.010528848, -0.04714569, 0.009752897, -0.010214454, -4.477603E-4, -0.016549153, 0.0036523193, -0.03419534, -0.016789965, -0.012635955, 0.006652439, -0.030690186, -0.012201155, -0.0069032847, -0.00885654, -0.016723074, 0.022248378, 0.16739129, -0.010134183, 0.008709377, 0.03307155, -0.0032727055, 0.004772765, 0.02274338, 0.024201633, -0.009886681, 0.018301733, -0.011251284, 0.013351702, 7.550468E-4, 0.0026071272, 4.187301E-6, -0.004505196, -0.024000956, -0.021338642, -0.020067688, -0.030663429, -0.006963488, -0.017418753, 0.0038797532, -0.025378937, 1.1403046E-4, -0.007692614, -0.020067688, 0.018074298, 0.022529325, 0.009150866, -0.012903524, -0.012910213, -0.024750149, 0.0053413496, -0.025753533, -0.009752897, -0.01589361, 0.0081073465, 0.0061005773, 0.0073247063, 0.0034951225, -0.0114519615, -0.012769739, -0.017057536, 0.016121043, 0.029352339, -0.032188572, 0.0059333467, -0.021432292, 0.004010193, -0.029700179, -3.7501493E-4, 0.0324829, 0.029539637, -0.008321402, -1.7235219E-4, 0.005625642, -0.00386303, -0.0088832965, -0.005608919, 0.0075320727, 0.031974517, -0.019572686, 0.014569142, 0.0046724267, 0.02788071, -0.043720804, -0.015786583, 0.012729604, -0.040055107, -4.517843E-5, -0.00929134, -0.015117659, 0.005237667, -0.0031757117, -0.017378619, 0.017472267, 0.019171331, 0.016963886, 0.014662791, -0.03264344, -0.015010631, -0.010977026, -0.0093783, 7.299622E-4, -0.02491069, 0.03341939, -0.005632331, 0.009211069, -0.043372966, -0.019465659, -0.010040534, -0.017913757, -0.006060442, -0.009157555, 0.0064985864, 0.0137798125, 0.010007087, -0.022622975, -0.008609039, -0.019559307, 0.030877484, 0.014448736, 0.0027559625, -0.027385706, -0.018903762, -0.0046590483, 0.009739518, 0.035372645, -0.015679555, -0.011786423, -0.0390651, -6.0997414E-4, -0.012134262, -0.0054651005, 0.007070516, 0.006067131, -0.019826876, 0.03176046, -0.009037149, -0.020549314, -0.016040772, 0.029566394, -2.132192E-5, -0.0045018513, -0.024067849, -0.008281266, 0.0030369102, -4.086701E-4, -0.03933267, 0.021686483, -0.0307437, 0.009766275, 0.014542385, -0.015251444, 0.00464567, 0.02951288, 0.0131042, -0.009017082, -0.0066022696, -0.016870238, -0.010301414, -0.0046958392, -8.0270757E-4, 0.0076524788, -0.023639737, 0.017378619, -0.005451722, 0.0024298627, -0.043747563, -0.015679555, -0.0031439378, 0.018462274, -3.3843322E-4, 0.056296557, 0.0071574757, -0.023492575, -0.026609756, -0.014662791, 0.04184782, -0.03387426, 0.0029231934, 0.029379096, -0.0024382242, -0.027506111, -0.016629424, -0.17060211, 0.010468644, -1.2479594E-4, -0.02301095, 0.011130878, 0.00447175, 0.018020784, 3.8693013E-4, 0.00603703, -0.02543245, 0.0187566, 0.020964045, -0.036335897, 0.0056557436, 0.0062310174, 0.030449374, -0.03245614, 0.028442604, 0.014649413, -0.005077125, 0.043132152, 0.009786343, 1.5970536E-4, -0.0045118853, 0.01657591, 0.0070103128, 0.022275135, 0.0082277525, 0.0016121044, -0.020616205, -0.043158907, -0.0038931316, 0.004133944, 0.014060761, -0.014716305, 0.008615728, -0.015532391, -0.0075855865, 0.005113916, -0.004434959, 0.03272371, 0.015385228, 0.026342185, 0.0040871194, 0.011799801, 0.013659406, 0.032402627, -0.0047627315, 0.0022910612, -0.0025151502, -0.004488473, -0.0392524, 0.023479195, 0.0025235119, -0.013793191, 0.017846864, -0.0064818636, 0.011592435, 0.00490655, -0.015920367, -0.031813975, -0.0144086005, 0.004535298, -0.014863468, -0.0034315747, -0.020254986, 0.001469122, 0.019586064, -0.024790285, -0.0032576548, -0.014421979, 0.00893681, -0.0016907027, 0.006174159, 0.009645869, -0.017672945, -0.034944534, 0.0059500695, -0.018341867, 0.015131038, -0.010622497, 0.057955485, -0.013171093, 0.001675652, 0.008147482, -0.014448736, 5.6691223E-4, -0.0045286086, -0.005572128, -0.00438479, -0.007625722, -0.013157714, -0.026756918, -0.0026756919, -0.0064651403, 0.006956799, -0.014542385, -0.0031255425, 0.0061607803, -0.015050767, -0.005970137, -0.012234601, -0.009264583, 0.021900538, 0.029031256, 0.018823491, 0.002252598, 0.02092391, 0.01779335, 0.007605654, 5.4809876E-4, 0.0033579932, 0.019652957, -3.8212223E-4, -0.014876846, 0.01832849, -3.927832E-4, -0.013298188, 0.0013788175, 0.017632809, 0.030422617, 5.326299E-4, -0.0031924348, -0.0038195502, -0.019372009, -0.0030252042, -0.09033135, -9.5655984E-4, -0.007050448, 0.049527057, -0.026703404, 0.03804834, -0.012896835, 0.01902417, -0.0071240296, 0.023398925, 0.006147402, -0.012943659, 0.0055253035, -0.01657591, 0.029218554, 0.010970336, -0.015559148, -0.009298029, -0.009926816, 0.02335879, -0.016375234, -0.018502409, -0.0011087398, -0.02908477, -0.03245614, 0.030930998, -0.024455823, 0.027934223, 0.0073581524, 0.025914075, 0.0073849093, -0.012769739, 0.019920526, -0.04393486, -0.026797054, -0.019211467, -0.017940514, -0.019398766, 0.007411666, -0.04679785, 0.016977265, 0.014997252, -0.0024766873, -0.01622807, -0.004130599, -6.049572E-4, -0.028415848, 0.033660203, -0.026101373, -0.028576389, -0.0065955804, -0.0064283498, -0.0081073465, -0.013672785, 0.013278121, 0.01997404, 0.016468883, 0.0046490147, -0.019599443, -0.016214693, 0.0011739598, -0.009110731, -0.022154728, 0.020629585, 0.006304599, -0.007813021, 0.013612582, -0.007498626, 0.017391996, -0.020776747, -0.035533186, 0.028950986, -0.03299128, 0.0023980888, -0.0153049575, 0.002998447, -0.034516424, -0.012388453, 0.028094765, -0.023760144, 0.006067131, -0.03395453, -0.009017082, -0.008803026, 0.030636672, 0.02109783, 0.009752897, 0.012910213, -0.005060402, -0.0375132, -0.0035151902, 0.013873463, 0.016294964, 0.0065086205, 0.002001752, 0.019987417, 0.02074999, -0.0047593866, -0.009953573, 0.0058664544, -0.016054152, -0.0021188136, -0.0684442, 0.020335257, -0.0041740793, 0.010495401, -0.01102385, -0.006712642, 0.0036389409, -0.022221621, 0.018382004, -5.8279914E-4, 4.5235915E-4, 0.020027554, -0.0058229743, 0.011926896, -0.009525463, -0.0011354968, -0.0062544295, 0.0024081226, -0.010007087, 0.011973721, -0.011150946, 0.0063614575, 0.033847503, 0.016629424, 0.015987258, 0.029700179, 0.005826319, 0.015064145, -0.0038764086, -0.0027843919, 0.026502728, -0.01709767, -0.0052410113, 0.018248219, -0.0016330081, -0.01207406, -0.012963727, -0.007926737, 0.024014333, -1.371292E-4, -0.013860084, -0.023773521, 0.0041807685, -0.018087678, -0.003568704, 0.020736612, -0.019679714, 0.016107665, 0.0048262794, 0.01606753, 0.043292694, 0.01137838, 0.0075521404, -0.020776747, 0.023091221, -0.0066992636, 0.043025125, -0.005625642, -0.0012734621, -0.01537185, 0.025071232, -0.0062209833, 0.037192117, -0.026368942, -0.022154728, 0.0026154888, 0.00685646, -0.014595899, 0.004622258, -0.02457623, -0.003980092, 0.0056189527, 0.015131038, 0.039172128, 0.01658929, 0.015947124, -0.017940514, 0.008027076, -0.0065587894, 0.020803504, 0.030342346, -0.010281346, -0.03636265, 0.01622807, 0.009398367, 0.019318495, -0.012696158, 0.0047694207, -0.0032559824, 0.011873382, -0.016789965, 0.006876528, 0.013398527, -0.005592196, 0.0045453315, 0.031225324, 0.008876608, -0.011659327, -0.004541987, 0.017552538, 8.1817637E-4, -0.008348159, -0.014047382, -0.028201792, -0.02032188, 0.0022275134, -0.02083026, -0.029298825, 0.009719451, 0.015211308, 0.029111527, 0.0018947243, -0.032188572, 0.008796337, -0.03438264, 0.0029917578, -2.9119052E-4, -0.010395063, -0.018007405, 0.033847503, 0.002192395, 0.00903046, 0.027827196, -0.004766076, 0.03090424, 0.009311408, 0.013144336, -0.03275047, 0.006685885, -0.0075855865, -0.008869918, -0.0043011745, -0.016442126, -0.0012834959, -0.0014348398, -0.0031038024, 0.033820745, 0.027452597, -0.026248537, 0.063788496, 0.038851045, -0.0032175195, 0.015345093, -0.017151184, 0.011699462, 0.037272386, 0.029566394, -0.02179351, 0.012508859, 0.0019231535, -0.013819949, -0.006251085, -0.032509655, 0.017164564, -0.01268278, 0.011973721, 0.01076297, -0.0043714116, -0.007438423, -0.006746088, -0.012789807, 0.02414812, 0.01137838, -0.021218237, -0.030422617, 0.022877166, 0.0028964365, 0.0015025683, -0.031573165, 0.0032191917, -0.020348636, 0.010435198, 0.003595461, 0.014970495, -0.001545212, -0.0041372883, -0.0055319928, 0.01927836, 9.381644E-4, -0.015465499, 0.022890544, -0.026529485, 0.008154171, 0.011585746, -0.0015585904, -0.009752897, -0.018074298, -0.018355247 ], + "id" : "d3dd2d35-faa1-46a0-bd8d-abdf693e9c7c", + "metadata" : { + "source" : "movies.csv" + } + }, + "65f08d6f-56d6-40b8-8a4e-61b23c42a924" : { + "text" : "Shore-Allan Smith-Greg Tozer-Piripi Waretini-Tim Wong-John Wraight-Kelley Kerr Young-Robert Young-Sean Bean-Timothy Lee-John Noble-Phillip Spencer-Harris,elves-dwarf-orcs-based on novel or book-explosive-cave-funeral-siege-fort-army-addiction-mission-attack-dragon-guide-death-split personality-wizard-ring-live action and animation-sword and sorcery,/5VTN0pR8gcqV3EPUHHfMGnJYN9L.jpg,/nS4picOwj15APKzJeBCk6EBcMG5.jpg,120-122-49051-57158-1891-603-122917-11-22-155-272-98-12445-58-27205-673-49026-1726-675-12444-672\r\n1893,Star Wars: Episode I - The Phantom Menace,Adventure-Action-Science Fiction,en,Anakin Skywalker a young slave strong with the Force is discovered on Tatooine. Meanwhile the evil Sith have returned enacting their plot for revenge against the Jedi.,36.902,Lucasfilm,5/19/99,115000000,924317558,136,Released,Every generation has a legend. Every journey has a first step. Every saga has a beginning.,6.523,12982,Liam Neeson-Ewan McGregor-Natalie Portman-Jake Lloyd-Ian McDiarmid-Pernilla August-Oliver Ford Davies-Hugh Quarshie-Ahmed Best-Anthony Daniels-Kenny Baker-Frank Oz-Terence Stamp-Brian Blessed-Andy Secombe-Ray Park-Lewis Macleod-Warwick Davis-Steve Speirs-Silas Carson-Jerome St. John Blake-Alan Ruscoe-Ralph Brown-Celia Imrie-Benedict Taylor-Clarence Smith-Samuel L. Jackson-Dominic West-Karol Cristina da Silva-Liz Wilson-Candice Orwell-Sofia Coppola-Keira Knightley-Bronagh Gallagher-John Fensom-Greg Proops-Scott Capurro-Margaret Towner-Dhruv Chanchani-Oliver Walpole-Megan Udall-Hassani Shapi-Gin Clarke-Khan Bonfils-Michelle Taylor-Michaela Cottrell-Dipika O'Neill Joti-Phil Eason-Mark Coulier-Lindsay Duncan-Peter Serafinowicz-James Taylor-Chris Sanders-Toby Longworth-Marc Silk-Danny Wagner-Amanda Lucas-Katie Lucas-Richard Armitage-Sacha Alexander-Simon Allen-Paul Bannon-Don Bies-Trisha Biggar-Michonne Bourriague-Douglas Bunn-Ben Burtt-Doug Chiang-Rob Coleman-Roman Coppola-Sean Cronin-Zsuzsanna Cseh-Matt Daniel-Baker-Russell Darling-Philip Delancy-Sebastian Dewing-Andrew Doucette-C. Michael Easton-Andrew Elias-Catherine Ernster-Salo Gardner-Andrew Gersh-Patrice Girod-Ned Gorman-Joss Gower-Raymond Griffiths-Nathan Hamill-Tim Harrington-Sally Hawkins-Jack Hayes-Nifa Hindes-Nishan Hindes-Frank Huseyin-Alexi Kaye Campbell-David Knight-John Knoll-Kamay Lau-Andrew Lawden-John M.", + "embedding" : [ -3.148796E-4, -0.034680057, -0.01690104, -0.03270461, -0.022278644, 0.03742373, -0.0029048664, -0.015323427, -0.01766927, -0.036875, 0.021675035, 0.025488744, 0.032677174, 0.009561708, 0.010432825, 0.013965308, 0.013430291, -0.009109003, 0.014610072, -0.033253346, -0.009369651, -0.0035530597, -0.013882997, 0.007407923, 0.011674339, 0.008663155, 0.027189823, -0.010741489, -0.0103985295, -0.008011532, 0.008183012, -0.01867071, 0.0049797706, -0.015199961, -0.019507531, -0.0064956513, 0.0021880812, -0.030893784, 0.021263484, 0.0010468836, 0.0017782446, 0.004739699, -0.002256673, 0.0019291467, -0.012463145, 0.0071061193, 0.015954472, -0.015680104, -0.015776133, 0.027491627, 0.025241813, 0.033664897, -0.02002883, -0.023033155, -0.01386242, 0.0018914212, -0.008169293, 0.0021417816, 0.0055079283, 0.007064964, 0.010419107, -0.004605945, -0.027052639, -0.009294201, -0.014129928, -0.0037279688, -0.016297432, -0.01588588, 0.0012415131, -0.0065470953, 0.012922711, 0.014815846, 0.010693475, 0.017559523, 0.003431309, -0.042115416, -0.018643275, -0.0051066657, -0.020824496, -4.7542749E-4, 0.0035702076, -0.0025224665, -0.01258661, 0.0142808305, 0.009321637, 4.0233426E-4, -0.016420897, 0.009938964, -0.022923408, 0.008628859, 0.015323427, 0.04916666, -0.0027951193, 0.014486606, 0.0060463743, 0.025475025, -0.01960356, 0.023033155, -0.019233163, -0.041539244, 0.0054290476, -0.0031483674, 0.0021966551, -0.010803222, -0.0046779662, 0.012600329, 5.843171E-4, -0.004575079, 0.020893088, 0.004455043, 0.0072158664, 0.0053878925, 0.013155923, -0.03059198, -0.010467121, -0.016407179, 0.015131369, -0.03775297, -0.009767484, -0.020426663, 0.039179683, 0.023088029, -0.005164969, -0.0331436, 0.042362347, 0.039069936, -0.010014415, -0.011544014, 0.0028705704, -0.012627766, 0.021757346, -0.0066396943, 0.013814406, 0.012538596, -0.022210052, 0.041429497, -0.030235302, 0.004952334, -0.0199328, -0.01749093, 0.03558547, 0.02392485, -0.022155179, -0.027176104, -0.024116905, 0.021140018, 0.007133556, -0.001533886, 0.01783389, 0.009390228, 0.015995627, 0.041978233, 9.286698E-5, 0.0072158664, 0.018739302, -0.009746906, 6.636265E-4, 3.4167332E-4, -0.016887322, -0.023266368, 0.005432477, -0.0077714603, -0.013636067, -0.008779761, 0.010007556, 0.021167455, 0.01942522, -0.005645112, -0.010878673, 0.018725583, -0.008505394, 0.018506091, -0.027313288, 0.0160505, -0.0032152445, 0.0051924055, 6.7734485E-4, -0.009163876, -0.030537106, -0.013951589, -0.0034415978, 5.491638E-4, 0.016215121, 0.045791943, -0.0087111695, 0.012566033, 0.025529899, -0.012710076, 0.0106866155, -0.016681546, -0.005298723, 0.026846863, -0.004369303, -0.0067905965, -0.6422395, -0.028836029, -0.0059366277, -0.014651227, 0.009733188, 0.016805012, -0.0029048664, 0.009849794, -0.0085671265, -0.017600678, -0.039399177, 0.03237537, 0.03355515, -0.019109698, -0.018327752, -0.005470203, 0.0053124414, -0.012120185, 0.033500277, -0.0025996324, -0.028534224, 0.024446147, 0.020179732, -0.019068543, 0.009986978, 7.107834E-4, -0.016722701, -0.027258415, 0.0037211096, 0.011008997, -0.010034992, 0.01943894, 0.018025948, 0.012737513, 0.043158013, 0.01817685, -0.019411502, 0.05130673, 0.014829565, 0.03160714, -0.036161643, -0.007318754, 0.010604305, -0.014966749, -0.018039666, 0.022607885, 0.00397147, 0.003998907, -0.005758289, -0.009294201, 0.001766241, -0.009006115, -0.0055593722, -0.007469656, 0.0030780607, 0.001766241, 0.019411502, -0.04549014, 0.026860582, 0.015419455, -0.024569612, 0.031003531, -0.0016590662, 0.0028671408, -0.0076068398, 0.033006415, 3.796132E-4, 0.0020851933, 0.0017199415, -0.03742373, 0.00879348, 0.015405737, -0.017573241, -0.004321289, 8.6168555E-4, 0.01614653, 0.024720514, -0.0011917839, -0.004455043, 0.0112627875, 0.0030952087, -0.00524042, -0.0050072074, 0.0059057614, 0.034186196, -0.008340773, -0.018876486, -0.0025276109, 0.010034992, -0.0067803077, 0.013149064, 0.0152136795, 0.014225957, 0.010062429, -0.0014927309, -0.021263484, -0.009335355, 0.0018382624, 0.023650482, -0.05418759, -0.008903227, -0.013231374, 0.0223198, -0.015474329, 0.016297432, 0.0060841, -0.001783389, -0.008608282, 0.028081518, -0.019630997, -0.002222377, 2.4800253E-4, -0.011084449, 0.0019497243, -0.0023715643, -0.028589098, 0.02027576, 0.016160248, -0.0036730953, -0.0048528756, -0.001112046, 0.0073873457, 0.0058543175, -0.011173618, 0.0062075653, 0.027368162, -0.014171083, -0.0065265177, 0.014472888, 0.0094656795, 2.5700522E-4, -0.020687312, 0.024953727, -0.015433174, 0.016805012, -5.1765437E-5, 0.019630997, 4.5227775E-4, 0.010323078, -0.020426663, -0.0012706646, -0.0072913175, -0.0030557683, -0.020659875, 0.0035221933, -0.019795617, -0.020138577, -0.006193847, -0.01022705, -0.023485862, -0.003937174, 0.012408271, 0.008011532, 0.011818382, -0.0029957506, 0.011969284, -0.03970098, -0.01817685, 0.0036422291, -0.015145088, 0.0065196585, 0.0074559376, -0.005418759, -0.021482978, 0.02087937, -0.00164792, -0.022415828, 0.0042492673, 1.5100931E-4, -0.021537852, 0.021277202, -0.012092749, 0.011962425, 0.01917829, -0.033006415, 0.017532086, -0.004952334, 0.024981163, 0.009541131, 0.008038969, -0.0030266168, -0.0062384317, -0.009650878, 0.0035736372, 0.026819427, 0.020742185, 0.015117651, -0.012099608, -6.516229E-4, 0.017147971, -0.0074490784, -0.032183312, -0.0015055918, 0.003228963, 0.006152692, 0.017998511, -0.0012277947, -0.0059915013, 0.0012595184, 0.0066465535, 0.026476467, 0.004173816, 0.016805012, -0.011941847, 0.011269647, -0.048206374, 7.660856E-4, -0.016791293, 0.010576868, -0.002669939, 0.017600678, -0.006440778, -0.01707938, 8.36821E-4, 0.015666386, 0.023869976, -0.006022367, -0.010062429, -0.01546061, 0.01454148, 0.011797804, -0.017792735, 0.028534224, 0.016777575, -0.040414337, 0.016832449, 0.001622198, -0.0077097276, -0.0077371644, -0.010247627, -0.01192127, -0.013786969, -1.392201E-4, 0.003235822, -0.020989116, 0.009307919, 0.030098118, -0.014733536, 0.059428006, -0.0033455691, -0.014047618, 0.014774691, 0.024638204, 0.0029940358, 0.0013718377, -0.0015716115, 0.0057274224, 0.008615141, 0.0036799544, 0.035064172, -1.0615666E-4, 0.02256673, -0.0026990906, 0.0058954726, 0.021222329, -0.009705751, 0.0023372683, 0.00803211, 0.029439636, 0.011516578, 0.015515484, -0.024185497, 0.015488047, -0.007881207, 0.008944382, 7.587977E-5, -0.006303594, 0.015666386, -0.001884562, -0.02653134, -0.018025948, -0.001985735, -0.002822556, 0.016105374, -0.007277599, -0.0047877133, 0.010631742, 0.014418014, 0.0035119045, 0.014472888, 0.012175059, -0.034378253, 0.010878673, 0.01883533, -0.022717632, -0.026545059, -0.019288037, -0.008670014, -0.04055152, -0.0058131623, -0.0126620615, 0.027052639, -3.778984E-4, 0.006327601, -0.015515484, 0.0033524283, 0.013937871, -0.02104399, 0.030125555, 0.022772506, -0.009856653, 0.010672897, -0.018451218, -0.016023064, 0.031113278, -0.021579007, -0.02240211, -0.0047945725, -1.3161068E-4, -0.0013658359, 0.00945882, -0.012936429, -0.04030459, 0.001116333, 0.008827776, -5.26014E-4, -0.011914411, 0.0102201905, 0.018643275, -0.025392715, -0.0024212934, -0.036710378, -0.019356629, 0.014527761, 0.083956465, 0.037067056, 0.013965308, 0.012614047, -0.016023064, 0.003126075, -0.011537155, -0.005597098, -0.013478305, -0.022292363, 0.01707938, -0.012511159, 0.020632438, -0.0034501718, 5.551656E-4, -0.017202845, -0.010213331, -0.005206124, -0.015474329, -0.020015111, -0.039152246, -0.017463494, 0.023883695, 0.023129184, -0.001458435, -0.017271437, 0.020207169, -0.0069792243, -0.013512601, 0.021263484, -5.7488575E-4, 0.0050586513, -6.293305E-4, 0.009568567, 0.007654854, 0.014898157, 0.024967445, 0.018451218, 0.016626673, -0.0030180428, -0.009623441, 0.004705403, 0.012524878, -0.0142808305, 0.0045099165, -0.021784782, -0.011557733, 0.032402806, 0.016256277, -0.034295943, 0.017216563, -0.002678513, -0.0144591695, -0.019795617, -0.0044241766, -0.0056828377, -0.017271437, 0.005130673, -0.010316219, 0.020605002, -0.0018434068, -0.0256808, 0.008045828, 5.9932156E-4, -0.009403947, -0.0039920476, -0.010700334, -0.0044824798, -0.011701776, 0.0027934045, 0.007716587, -3.9997642E-4, 0.0034193054, -0.0018536956, 0.011105026, 3.8775848E-4, 0.032841794, 0.0022669618, 0.02526925, 0.005627964, -0.01596819, -0.016791293, -0.0056073866, -0.034762368, 0.0012397983, 0.010714052, -0.015405737, 0.0331436, -0.0068146037, 0.0043418664, 2.8208413E-4, 0.00283113, -0.019150853, -0.007833193, 0.024308963, 0.02839704, 0.009259905, 0.01487072, 0.01909598, 7.052103E-4, -0.016489489, -0.016791293, -5.483064E-4, -0.0350093, -0.010419107, -0.0047019734, -3.562491E-4, 0.0019154283, -0.00971261, -0.034103885, -0.027327007, -0.02900065, 0.0068008853, -0.0048117205, 0.00727074, 0.007058105, 0.029439636, 0.0077508828, -0.014157365, 0.0043144296, 0.00490089, -0.008779761, 0.022607885, 0.009952682, -0.02307431, 0.040880762, 0.0016873603, -0.012044734, 0.014184802, 0.014898157, -0.019809335, 0.0055319355, -0.0058543175, 0.0106523195, -0.021181174, -0.011036434, 0.01284726, -0.0059812125, -0.008937523, 0.018862767, -0.024624486, -0.004698544, 0.018876486, 0.0023972862, -0.005164969, -0.02908296, 0.013471446, -0.01318336, 0.025077192, 0.02155157, -0.022415828, 0.011715494, -0.008491675, -0.0048871716, -2.072493E-5, -0.043130577, -0.0331436, -0.010576868, 0.024432428, 0.012833541, 0.028589098, -0.015282271, 0.02729957, 0.01487072, 0.0139927445, 0.025584772, -0.016667828, -0.01750465, -0.030098118, -0.005967494, 0.021345794, 0.02120861, 0.0087111695, 0.0051924055, 0.027025202, 0.01665411, 0.006142403, 0.018862767, 0.0040709283, -0.026860582, -0.025392715, -0.0015647523, -0.020563846, -0.0028499928, -0.025241813, -0.016132811, 0.046011437, -0.001402704, -0.0035187637, -0.008183012, 0.01758696, -0.002347557, 0.02644903, -0.026229536, 0.029055523, -0.024350118, -0.0022498139, -0.025420152, -0.017230282, -0.006396193, 0.0034433126, 0.01529599, -0.0035633484, 0.0079566585, -0.007764601, 0.019576123, -0.019315474, -0.006914062, 0.014760973, -0.016503207, -0.015831007, -0.0211263, 0.008258463, -0.021057708, -0.02222377, -0.008889508, -0.0027230978, 0.011063871, -0.023623046, -0.028973212, 0.023060592, -0.012401412, 0.042307474, 0.028643971, 0.033363093, 0.022841098, 0.019480094, -0.02104399, 7.523672E-4, 0.0063653267, -0.010933546, 0.020591283, 0.0204541, -0.023938568, 0.01622884, 0.00354963, -0.011537155, -0.039069936, -0.033692334, 0.020426663, 0.011496, 0.010775785, -0.02325265, 0.0077783195, -0.030043244, -0.0039337445, 0.004132661, -0.0033318507, 0.0012432279, -0.033363093, -0.014075055, -0.012428849, -0.012668921, 0.0125043, 0.0020080274, -0.01749093, 0.009870372, -0.021743627, -0.0021280632, -0.0025207517, -0.013718377, 0.035311103, -0.017943637, 0.024281526, 0.0071472744, 0.020234605, 0.0030780607, -0.0021092005, 0.007970377, 0.03303385, -0.020234605, 0.026490185, 0.0012646628, -0.01267578, 0.011331379, 0.015515484, -0.013814406, -0.01048084, -0.012257369, 4.625665E-4, 0.025529899, -0.011928129, 0.0022669618, 0.00291687, -0.021373231, -0.009534271, 0.027793432, 2.3599894E-4, 0.0076411357, -0.035997022, -1.4511471E-4, 0.00506894, 0.0038994486, 0.0011592029, -0.004379592, -0.0025499032, -0.0011737786, 0.0063516083, -0.005741141, 0.0024453006, -0.01716169, -0.02399344, -0.042225163, -0.024048313, -0.0024195786, -0.01875302, 0.016407179, -0.01698335, -0.008080124, -0.009239327, 0.012908992, -0.008471098, -0.0053124414, -0.013155923, 0.008443661, 0.023376115, -0.0041017947, 0.0075245295, -0.004098365, 0.024226652, 0.001626485, -0.012984443, -0.018821612, -0.013663503, 0.033445403, -0.018629557, 0.011317661, -0.007243303, -0.030125555, 0.0056245346, 0.018218005, 0.020989116, 0.020344352, -0.0064785033, -0.041539244, -0.007277599, -0.0039680405, 0.029714003, -0.005586809, 0.008587704, 0.019534968, 0.0153920185, 0.027423035, 0.0132725295, -0.0015493191, -0.015542921, 0.013567475, 0.003525623, -0.02441871, 0.0069586467, 0.011228492, 0.011845819, 0.0022463843, -0.017545804, -0.028808592, 0.004472191, -0.038054775, -0.027189823, 0.0010091581, 0.023869976, 0.034762368, 0.021428104, 0.0015373155, 0.009438243, 0.0034776086, -0.018903922, -0.02974144, -0.017422339, 0.01681873, 0.01141369, 0.0331436, 0.022031713, -0.036326263, 0.0012397983, 0.020399226, 0.0153783, 0.0037142504, 0.020097421, -0.014363141, -0.019466376, -0.020303197, 0.009033551, -0.0042149713, -0.019068543, 0.01673642, -0.03550316, 0.0037142504, -8.115277E-4, 0.008498535, -0.01495303, 0.008320196, 0.016612954, -0.009184454, 0.0041052243, 0.0060463743, -0.026339283, -0.0051066657, -0.022937126, 0.045407828, 0.0035530597, -0.012792386, 0.030454796, 0.012360257, -0.008910086, 0.0034844677, -0.014390578, 0.015570357, -0.007366768, -0.01166748, 0.0044241766, 0.027834587, -0.016256277, 0.01801223, -0.031085841, 0.007922363, -0.0024367266, 0.015529202, -6.1775564E-4, 0.049742833, 0.016009346, -0.04505115, 0.009678314, -0.013361699, 0.003414161, -0.008971819, -0.0071815704, -0.030729163, 0.0039337445, 0.00802525, -0.0047945725, -0.027862024, -0.027587656, -0.0047499877, -0.022539293, -0.010254486, 0.011029575, 0.1913988, -0.015186243, 0.015282271, 0.03660063, 0.010323078, 0.008134997, 0.029192707, 0.014733536, -0.016763857, 0.004688255, -0.009945823, 0.0022275215, 0.0055902386, 0.0033918687, 0.017312592, -0.030976094, -0.025612209, -0.016283713, -0.005737711, -0.022443265, -0.002206944, -0.012545455, 0.0034964713, -0.018300315, 0.012915852, -8.7025954E-4, -0.010528854, 0.0077028684, 0.012689498, 0.016201403, -0.0055250763, -0.0049900594, -0.0053295894, -0.009033551, -0.0211263, -0.0010743204, 0.019534968, 0.0038205679, 0.0032804068, -0.003228963, -0.009637159, -0.005943487, -0.01192127, -0.004581938, -0.001398417, 0.024569612, -0.0363537, -0.010926687, -0.026682243, 0.0062590092, -0.032183312, -0.0063653267, 0.02424037, 0.019192008, 0.007997814, -0.006142403, -5.6373957E-4, 0.0053707445, -0.009280482, 0.009506835, 0.0128404, 0.03627139, -0.033198472, 0.0138487015, -0.0061046774, 0.016160248, -0.0390425, -0.005257568, 0.0015939039, -0.03168945, -0.0064922217, -0.03728655, -0.014184802, 0.017984793, -0.010069288, -0.017614396, 0.007654854, -0.0074833743, -7.9695194E-4, 0.023540735, -0.019027388, -0.023266368, 0.01318336, -0.008189871, -0.018492373, -0.02384254, 0.025063474, -0.021441823, -0.010515136, -0.0055593722, -0.012723794, -0.014267112, -0.009692033, -0.011303943, 0.0022446695, -0.011983003, 0.036408573, 0.014404296, -0.018903922, -0.011811523, -0.026353002, 0.025420152, 0.008265322, -0.011132463, -0.027916897, -0.0066979975, 4.677109E-4, 0.01192127, 0.026805708, -0.007174711, -0.012161341, -0.022251207, -0.007949799, -0.017998511, -0.0064922217, 0.03465262, 0.0031123566, 0.002390427, 0.0398656, -0.0275465, -0.0021709332, -0.015076496, 0.027189823, 0.002669939, -0.015529202, -0.036875, -0.02788946, 0.008882649, -0.0066705607, -0.02916527, 0.017655551, -0.027683685, 0.0035221933, -0.004259556, 0.007826334, 0.0066534127, 0.011763508, -0.0031243602, 0.007929222, 0.0014807273, -0.0071061193, 0.002129778, -0.0018897064, 8.4582367E-4, 0.012737513, -0.011646902, 0.0077714603, -0.00819673, -0.008258463, -0.039069936, -0.02551618, 0.0051512504, 0.0126620615, 0.0052267015, 0.042115416, 2.9773163E-4, -0.017271437, -0.03253999, -0.01606422, 0.052760877, -0.03160714, 0.028177546, 0.018382626, -0.009122721, -0.017929919, -0.0078126155, -0.1762537, 0.026380438, 0.014404296, -0.0454627, 0.02695661, 0.009897809, 0.027999207, 0.0033935835, 0.007133556, -0.008237885, 0.02315662, 0.019288037, -0.02908296, 3.6573405E-5, 0.016832449, 0.009266764, -0.0041978233, 0.019960238, 0.04156668, -0.0025996324, 0.03432338, 0.007133556, -0.0040503507, 0.005758289, 0.017120535, -0.011303943, 0.026586214, 0.019192008, 0.0068248925, -0.0037108208, -0.038932752, -0.0138487015, 0.013217656, -0.0012835256, -0.021963121, -0.0031380786, -0.014157365, -0.017573241, -0.003160371, 0.0026219247, 0.035695218, 0.001994309, 0.027162386, 0.013313685, 0.0139927445, 0.0027625381, 0.024651922, -0.027683685, 0.026421594, -0.01942522, -0.01699707, -0.035804965, 0.013293107, 0.0023938566, -0.0032581144, 0.0103985295, 0.015323427, -0.0033267064, -9.902953E-4, -0.0026888018, -0.023540735, -0.006464785, -0.005593668, -0.004160098, 8.072407E-4, -0.012895274, -0.020495255, -0.0028414188, -0.018739302, 0.008464239, -0.028342167, 0.012648343, 0.026188381, 0.015323427, 0.020550128, -0.026092352, -0.02611979, -0.0065196585, -0.0096303, 0.016516926, -0.0063927635, 0.02823242, 4.0147686E-4, 0.022950845, 0.0026939462, -0.01132452, -0.0048700236, -8.235313E-4, -0.003734828, -0.009616582, 0.004952334, -0.012387694, -0.048617925, 0.007977236, 0.0027865453, 0.009925245, 0.0010288783, 0.0048185796, 0.01048084, -0.001437, 0.010131021, -0.013958449, -0.004907749, 0.020920524, 0.018958796, 9.7571954E-4, -0.0027230978, 0.014472888, 0.01655808, 0.014308267, -0.009678314, 0.005597098, 0.013972167, 0.0074559376, -0.023458425, 0.01952125, -0.011214773, -0.035475723, 0.013224515, 0.0088209165, 0.06167782, -0.0011214773, 0.0020148866, 9.945823E-4, -0.004890601, -0.0125043, -0.09388857, 0.0059469165, 0.016805012, 0.047822263, -0.016914759, 0.036134206, -0.005885184, 0.004149809, -0.024062032, 0.015268553, 0.0036730953, -0.043075703, 0.0064613554, -0.0056759785, 0.011173618, 0.001893136, -0.016119093, -0.014843283, -0.016681546, 0.028534224, 0.010007556, 0.0018485512, 0.0015853299, -0.015748696, -0.021935685, 0.011379394, -0.02974144, 0.023472143, 0.015625231, 0.013320544, -0.004849446, -0.020591283, 0.011063871, -0.030427359, -0.027354443, -0.010343656, -0.011804664, -0.015488047, -0.0013238234, -0.04063383, 0.008670014, 0.009980119, 6.1389734E-4, -0.010172176, -0.020262042, 0.009705751, -0.03144252, 0.030893784, 0.004705403, -0.010576868, -0.0058474583, -0.024885135, -0.026833145, -0.008910086, 0.012737513, 0.028781155, 0.031799197, 0.0024041454, 0.0045510717, -0.009733188, -0.010213331, 0.007030668, -0.013032458, 0.01258661, 0.004942045, 0.017929919, 0.0116949165, -0.013876138, 0.004907749, -0.022182615, -0.03550316, 0.033664897, -0.028534224, -0.012003579, -0.014527761, 0.0036971024, -0.023005718, -0.015940754, 0.021606443, -0.035612907, 0.0036902432, -0.024459865, 0.0149255935, -0.030646853, 0.027327007, 0.036051895, 0.01090611, 0.008381928, -0.0049832, -0.0363537, -0.016942196, 0.017875046, -0.0027351014, 0.009520553, -0.008573986, 0.030015808, 0.008354492, 0.021524133, 0.0020440381, -0.013951589, 0.0056313938, 6.8763364E-4, -0.07254278, 0.027779713, -0.027505346, -0.0011343383, -0.0199328, -0.022292363, -7.017807E-4, -0.0012243651, -0.0040777875, 0.0403869, -0.018108258, 0.021743627, -0.017271437, -0.009541131, -0.013286248, -0.00107775, -0.004201253, 3.260258E-4, 0.0010803222, -0.0027934045, -0.011249069, 0.018492373, 0.009692033, 1.5325999E-4, -0.011365675, 0.0054221884, 0.006770019, 8.432515E-4, -0.028643971, -0.011880115, 0.025735674, -0.023773948, -0.00456479, 0.008183012, -0.022443265, -0.028808592, -0.0033935835, 0.004149809, 0.011763508, 0.011303943, -0.009980119, -0.010425966, -0.0010005841, -0.0066465535, -0.008333914, 0.008155575, 3.7361143E-4, 0.02653134, 0.011900692, 0.0068351813, 0.023938568, 0.0184375, 0.004856305, -0.00633789, 0.014966749, -9.971545E-4, 0.051498786, 0.008903227, 0.009863513, -0.038246833, 0.025475025, -0.0051238136, 0.026984047, -0.042828772, 0.0077783195, -0.008580845, 0.022168897, -0.0022858246, -0.0024435858, -0.03810965, -0.012319102, -0.0137046585, 0.019809335, 0.03920712, 0.02240211, 0.0082859, 0.007366768, -0.008299618, -0.014253394, 0.019452658, 0.018931359, -0.0047877133, -0.04326776, 0.015776133, 0.0013967023, 0.0070100906, 0.01039167, 0.020495255, 0.004873453, 0.013766391, -0.0073873457, 0.015954472, 0.009554849, -0.0072501623, 0.01098842, 0.022264926, -0.023952287, 0.0026682243, 0.004005766, 0.018121976, -0.015090214, -0.0027419606, -2.6193526E-4, -0.02273135, -0.02974144, 0.0056588305, -0.02908296, -0.01665411, 0.01030936, 0.0010631742, 0.02086565, 0.020467818, -0.008573986, 0.0049626227, -0.036243953, 0.017847609, -0.012888415, -0.020797059, -0.016695265, 0.022264926, 0.016544363, 0.0012569462, 0.017147971, -0.02104399, 0.0518829, -0.0051341024, 0.026490185, -0.030537106, 0.0057925847, 0.011646902, -0.0017516653, -0.019589841, -0.021359513, 0.0042664153, -0.0048220092, 0.0031809486, 0.015652668, 0.036243953, -0.020001393, 0.06848214, 0.0130941905, -0.027354443, 0.018547246, -0.023787666, 0.020001393, 0.016695265, 0.019617278, -0.01454148, -0.0069003436, -0.008553408, -0.01326567, 0.012319102, -0.03380208, 0.001968587, -0.0049317563, 0.014994185, 0.013245093, -0.0064922217, -0.023677919, 0.0015801855, -0.014212239, 0.026229536, 0.010624883, -0.007723446, -0.02189453, 0.03083891, 0.0013349695, 0.009589145, -0.029192707, 0.003379865, -0.026243255, -0.0074147824, -8.06812E-4, 0.01750465, -0.0069517875, 0.003700532, 0.0043144296, 0.018945077, 0.018053384, -0.0065196585, -0.008745465, -0.026462749, -0.018725583, 0.011111885, -0.0021537852, -0.0011000424, -0.016448334, -0.009650878 ], + "id" : "65f08d6f-56d6-40b8-8a4e-61b23c42a924", + "metadata" : { + "source" : "movies.csv" + } + }, + "32de46e8-716f-417d-8c8c-49979cd5b68d" : { + "text" : "Cameron MacConomy-Desmond Phillips-Elle Graham-Lacy Dmitriew-Kate Rachesky-Phillip Troy Linger-Bear Lawrence-Theodore Lawrence-Brandon Cyrus-Toby Jones-Gary Sievers-Emma Elle Roberts-Alexander Yassin-Jasmine Ahnie-Sue-Lynn Ansari-Scott Hunter-Sam Hargrave-R. A. Rondell-Jean Christophe Loustau,strong woman-based on novel or book-revolution-dystopia-death match-based on young adult novel,/lImKHDfExAulp16grYm8zD5eONE.jpg,/nKDvDVSaFFBrQr0NoPiyasEN8Mk.jpg,131631-101299-327749-70160-262500-157350-294254-262504-198663-12444-12445-675-767-674-673-672-18239-50620-24021-360606-102651\r\n1894,Star Wars: Episode II - Attack of the Clones,Adventure-Action-Science Fiction,en,Following an assassination attempt on Senator Padm�� Amidala Jedi Knights Anakin Skywalker and Obi-Wan Kenobi investigate a mysterious plot that could change the galaxy forever.,39.386,Lucasfilm Ltd.,5/15/02,120000000,649398328,142,Released,A Jedi Shall Not Know Anger. Nor Hatred. Nor Love.,6.548,11931,Hayden Christensen-Ewan McGregor-Natalie Portman-Christopher Lee-Samuel L. Jackson-Frank Oz-Ian McDiarmid-Pernilla August-Temuera Morrison-Jimmy Smits-Jack Thompson-Leeanna Walsman-Ahmed Best-Rose Byrne-Oliver Ford Davies-Ron Falk-Jay Laga'aia-Andy Secombe-Anthony Daniels-Silas Carson-Ayesha Dharker-Daniel Logan-Joel Edgerton-Bonnie Piesse-Anthony Phelan-Rena Owen-Alethea McGrath-Susie Porter-Matt Doran-Alan Ruscoe-Veronica Segura-David Bowers-Steve John Shepherd-Bodie Taylor-Matt Rowan-Steven Boyle-Zachariah Jensen-Alex Knoll-Phoebe Yiamkiati-Kenny Baker-Jerome St. John Blake-Hassani Shapi-Gin Clarke-Khan Bonfils-Michaela Cottrell-Dipika O'Neill Joti-Marton Csokas-Tux Akindoyeni-Sacha Alexander-Giulio Alimenti-Amy Allen-Nicolas Anastassiou-Jason Baird-Don Bies-Jamel Boukabou-Kristen Bronson-Douglas Bunn-Caine-David John Clark-Natalie Danks-Smith-Russell Darling-Justin Dix-Eliana Dona-C. Michael Easton-Nicole Fantl-Sandi Finlay-Stephen George-Zuraya Hamilton-Hilton Howson-Fiona Johnson-Sara Elizabeth Joyce-Luke Kearney-Nalini Krishan-Gillian Libbert-Amanda Lucas-Jett Lucas-Katie Lucas-Liam Neeson-Daniel Perrott-Ian Roberts-Kyle Rowling-Joseph Jett Sally-Juan Luis Sanchez-Mike Savva-Kevin Scott-Zeynep Selcuk-Orli Shoshan-Richard Stride-Leonard L. Thomas-Trevor Tighe-Christopher Truswell-Ian Watkin-R. Christopher White-Matthew Wood-Matt Sloan-Emma Howard-Jesse Jensen,laser gun-senate-investigation-army-cult figure-wedding-kendo-space opera-spaceport-teenage rebellion-good becoming evil-alien race-mechanical hand,/oZNPzxqM2s5DyVWab09NTQScDQt.", + "embedding" : [ -0.004757043, -0.030661905, -0.03327498, -0.040697217, -0.025185572, 0.038139742, 0.0041732714, -0.006171299, -0.018694589, -0.03649962, 0.03205184, 0.01578963, 0.025616452, 0.007234597, -0.0038014646, 0.022197219, 0.026936887, -0.023058975, 0.011376595, -0.035526667, 0.0044999057, -0.005389462, -0.0142329065, 0.008603681, 0.0014099125, 0.0034331325, 0.03016153, -0.017527046, -0.0042809914, -0.007748872, -9.964077E-4, -0.014830577, -0.0015072078, -0.020390306, -0.038334332, -5.898525E-4, 0.0025314142, -0.017471448, 0.027423363, 0.0046458486, 0.0111403065, 0.0054520094, -0.017346354, -0.0057543195, -0.0164151, 0.008714875, 0.014212057, -0.017123966, -0.019236661, 0.014059165, 0.023253566, 0.03727798, -0.015191959, -0.01067468, -0.011682381, 0.014872275, -0.0065014083, 0.0036659462, 0.007672426, 0.014622088, 0.019250562, 0.0013577901, -0.026325317, -0.02399023, -0.0056882976, 0.0053859875, -0.017749434, -0.004798741, 0.008019909, -0.0031829448, 0.02278099, 0.016859878, 0.026311418, 0.005681348, 0.011286249, -0.03385875, -0.023003379, -0.0018833582, -0.012905521, 0.0046458486, 0.0107928235, -0.0010858845, -0.0107928235, 7.5316953E-4, 0.009965814, -0.0062477454, -0.0034574564, 0.024699096, -0.02725657, -0.003794515, 0.013489292, 0.04061382, -0.0112793, 0.014844476, -0.005500657, 0.023920733, -0.021015776, 0.027868142, -0.009590533, -0.03775056, 0.01025075, -0.005212246, -0.0027034183, -0.012780427, -0.007554282, -1.2954602E-4, -0.0013308601, 0.0016574942, 0.025616452, 0.0075612315, 0.005111476, 0.004486006, 0.01476108, -0.03711119, -0.0037076443, -0.034108937, 0.002355935, -0.04675732, -0.002355935, -0.013676933, 0.023837337, 0.02729827, 9.008498E-4, -0.022600299, 0.03302479, 0.04047483, -0.014260705, 0.0016470697, -0.00839519, -0.00492036, 0.020612694, -0.013023665, 0.016303904, 0.014177308, -0.01373253, 0.05106611, -0.030689703, 3.913528E-4, -0.022211118, -0.009117955, 0.023017278, 0.033691958, -0.023823438, -0.009694777, -0.020140119, 0.008068557, 0.011995115, 0.005514556, 0.011661531, 0.025366263, 0.015859127, 0.028285122, 0.011418293, 0.018402703, 0.014997369, -0.011001314, 1.03864855E-4, 0.003075225, -0.014344101, -0.027228773, -0.0060566296, -0.0025192522, -0.023517653, 0.0051983465, 0.024448909, 0.020987976, 0.025185572, -0.0038084143, -0.015052966, 0.003877911, -0.013287752, 0.015622838, -0.04497821, 0.027854241, -0.010827572, 0.024685197, 0.008965063, -0.017610442, -0.036610816, -0.016498495, 5.577103E-4, 0.016804282, 0.04144778, 0.043949656, -0.021988729, 0.01373253, 0.023559352, -0.01884748, 0.016137114, -0.007220698, 0.00179475, 0.027756946, -0.005681348, -0.008548084, -0.6324748, -0.029939141, 0.0049516335, -8.3233055E-5, -0.0010563486, 0.026214123, 0.0034869926, -0.002192618, -0.01047314, -0.005782118, -0.026561605, 0.025157774, 0.02009842, -0.012606685, -0.015358752, -0.016776482, 0.017318556, -0.009757324, 0.020223513, -0.012954169, -0.02315627, 0.022447405, 0.0205015, -0.011453042, 0.0028458862, -2.1239903E-4, -0.014330202, -0.023420358, 0.009111006, 0.014316302, -0.017888429, 0.019667542, 0.0020015023, 0.0010598233, 0.042754315, 0.009785123, -0.017415851, 0.052984215, 0.02319797, 0.017012771, -0.029077383, -0.015150261, -0.013579638, 0.005358189, -0.005556254, 0.028410215, 0.005684823, 0.0104592405, -0.004520755, -0.013739481, -0.009694777, -0.0047848416, -2.6777913E-4, -0.027673552, -0.0043261643, -0.0021283338, 0.015219758, -0.025421862, 0.024435008, 0.0066820993, -0.024782492, 0.02315627, 0.019042071, 0.008853869, 0.006584804, 0.02543576, -0.0062790187, 0.0037701912, -0.010348045, -0.02829902, 0.0077975197, 0.010202102, -0.0056083766, -0.013141809, -0.008853869, 0.011223703, 0.031106684, -0.007199849, -0.0037632415, 0.017165663, -0.002962293, -0.005827291, -4.816984E-4, 0.007839218, 0.025866639, -0.0047848416, -0.02932757, -0.005479808, 0.006619552, -0.0027503285, 0.014316302, 0.013405897, -2.3672283E-4, 0.0038848605, -0.00667515, -0.022503003, -0.025143875, -0.0039022348, 0.026575504, -0.05501352, 0.0054902323, -0.0037875653, 0.025227271, -0.019778736, 0.016845979, 0.006953136, -0.005233095, 0.0086384285, 0.022933882, -0.02070999, -0.017137865, -0.01808302, -0.0032663408, -0.008833019, -0.013558789, -0.030689703, 0.03116228, 0.017193463, 0.008054657, -0.0152892545, 0.0051809726, 0.017930126, -0.0046249996, -0.019139366, 0.017554844, 0.028438013, -0.0089998115, -0.028062733, 0.0041732714, 0.025699846, 0.002644346, -0.002677357, 0.026645001, -0.017262958, 0.009771224, 0.004364387, 0.014086964, -0.002216942, 0.0029397067, -0.007825319, -0.0071303523, -0.012829075, 0.001907682, -0.011376595, -0.0074291877, -0.02175244, -0.011550337, -0.008951164, -0.023211868, -0.027353866, -0.0077071744, 0.020751689, 0.011314048, 0.023670547, 0.004736194, -0.0076168287, -0.033886548, -0.007679376, -0.0010007512, -0.006643876, 0.011870021, 0.009750375, -0.0014741969, -0.015456047, 0.0246435, 0.003414021, -0.016067617, 0.00801296, -0.003811889, -0.011946468, 0.009673929, -0.011022163, -0.0035043666, 0.011049962, -0.021960929, 0.02483809, -0.01477498, 0.024129223, 0.010897069, 9.434165E-4, 0.003188157, -0.008353493, -0.020876782, 9.6600293E-4, 0.020848984, 0.020362508, 0.013225205, -0.005625751, 0.0035200035, 0.0028215623, -0.02175244, -0.016748684, 0.0027086304, -0.0034088087, 0.0029466564, 0.013037564, 0.011182005, -0.0018625092, -0.0046076253, -0.012571937, 0.03466491, 0.005372088, 0.023712244, -0.013037564, 0.014038316, -0.04650713, 0.0126136355, -0.029410966, 0.0057508447, 1.9784817E-4, 0.024365513, -0.013711682, -0.013690833, 0.0059419605, 0.008311795, 0.024949284, 0.01168933, 0.015511644, -0.017110066, 0.008582831, 0.0069705104, -0.01210631, 0.027548457, 0.016887676, -0.03588805, 0.011348797, 0.014274604, -0.021571748, -0.0076168287, -0.019014273, -0.0027850766, 0.0052643684, -0.007463936, 0.015150261, -0.015734034, 0.0039091846, 0.028354617, -0.006650826, 0.05028775, -0.010424492, -0.011216753, 0.028632604, 0.0266728, -0.0021682943, 0.006317242, -0.020890681, 0.0125997355, 0.017679939, -0.0108067235, 0.031634856, -0.007512584, 0.036416225, 0.0074500367, 0.0059454353, 0.013100111, -0.024518404, 0.014538691, 0.011626783, 0.03258001, 0.020015024, -0.0064666597, -0.022725392, 0.005146224, 0.009375093, -7.35361E-4, -4.7865792E-4, 0.008110255, 0.0026704073, -0.013433695, -0.03266341, -0.013419796, -0.0052157207, 0.009284748, 0.0062025725, -0.0095349355, -0.007401389, 0.016554093, -1.0636239E-4, 0.021363258, 0.017485349, 2.6104666E-4, -0.028465813, 0.009111006, 0.025991732, -0.0068697403, -0.022461304, -0.021682942, -0.009263898, -0.03711119, 0.0019962902, -0.009069308, 0.02481029, -0.019472951, 0.014524792, -0.027631853, -0.003070013, 0.018388804, -0.023253566, 0.021919232, 0.015261456, 0.0019163691, 0.009062358, -0.00881912, -0.003936983, 0.017860629, -0.029994737, -0.005837715, -0.01679038, 0.0082006, -0.017290758, 0.014663785, -0.013197406, -0.031690456, -0.0019841283, -0.007088654, -0.0074152886, -0.018402703, 0.008019909, 0.0086245295, -0.028368518, -0.005903737, -0.00779057, -0.024712995, 0.019181065, 0.092180304, 0.046090152, 0.010917918, 0.011571186, -0.0028233, -0.003985631, -0.001518501, -0.010973515, -0.0031429844, -0.0054659084, 0.007957362, -0.007846167, 0.0066543007, 0.0074500367, 0.009062358, -0.012419045, -0.0035530142, -0.0074569867, 0.0031742577, -0.005702197, -0.014114762, -0.0098963175, 0.016109314, 0.0072901947, 0.0054902323, -0.011744928, 0.020126218, 0.0056083766, -0.013107061, 0.019667542, -0.013475393, 0.0027051556, -0.00984767, 0.021252064, -0.010035311, 0.011307099, 0.05212246, 0.008374342, 0.022683695, -0.0013464969, 0.004635424, 0.014510892, 0.015164161, -0.015136362, 0.00235941, -0.022892185, -0.021043574, 0.028688202, 0.027173175, -0.04205935, 0.020654393, -0.0045624524, -0.018208113, 0.0019233187, 0.008798271, -0.004430409, -0.012384296, -0.0017721636, -0.023934633, 0.017805032, -0.0058655143, -0.03177385, 0.007158151, -0.012009014, 0.0050558783, -0.01662359, -0.017930126, -0.002142233, -0.023003379, -0.009965814, 0.005358189, -0.006397163, 0.009368143, 0.0071928995, 0.009395942, -2.399805E-4, 0.036444023, -0.007144252, 0.019403454, 0.008846919, -0.038111944, -0.025866639, 0.006504883, -0.035443272, 0.0013499717, 0.008506386, -0.0049168854, 0.0088260695, -0.016901577, 0.011605934, -0.0024323815, -0.009006761, -0.028451912, 4.300103E-4, 0.031245677, 0.019973326, 0.0051740226, 0.008332644, 0.008297895, -0.0055284556, -2.9992132E-4, -0.03305259, 1.8145131E-4, -0.008687076, -0.014872275, -0.005782118, 0.00369027, 0.004885612, -0.01477498, -0.0120507125, -0.029216375, -0.023559352, -8.730512E-4, 5.212246E-4, 0.006497933, 0.0149417715, 0.021835836, 0.0051809726, -0.0027711773, 0.008798271, 0.002903221, -0.024296016, 0.024379412, 0.028799396, -0.008853869, 0.0430879, 0.0016227459, -0.011946468, 0.0071859495, 0.018180314, -0.016164912, 0.011807474, -0.022808788, -0.010174304, -0.010139556, -0.017749434, 0.0044790567, 0.005580578, -0.009319495, 0.02297558, -0.027409464, 0.0129611185, 0.007776671, -0.004673647, 0.0056466, -0.02483809, 0.009034559, -0.0089998115, 0.015511644, 0.019750938, -0.017582644, 0.006588279, -0.01577573, -0.014024416, 5.1498075E-5, -0.02954996, -0.024184821, 8.61758E-4, 0.01827761, 0.007776671, 0.03302479, -0.0091874525, 0.04219834, -7.009385E-5, 0.018416602, 0.012641434, -0.008019909, -0.01823591, -0.02728437, 0.005743895, 0.025088277, 0.02540796, 0.018374905, -0.004590251, 0.01578963, 0.025060479, -0.0035286904, 0.01884748, 0.011564236, -0.03263561, -0.040363632, 0.0027937638, -0.019848233, -0.0041697966, -0.02483809, -0.016456798, 0.03469271, 0.014198158, -0.0063241916, -0.014003567, 0.022919983, 0.003815364, 0.010584334, -0.019556347, 0.03469271, -0.03135687, 0.0018016996, -0.017346354, -0.0032837149, 0.0063658897, -0.012009014, 0.02710368, 0.018903079, -0.008026859, -0.005375563, 0.0065813293, -0.010758076, -0.003188157, 0.020626595, -0.019598044, -0.017304657, -0.012015964, -6.0896407E-4, -0.037806157, -0.023892935, -0.0059454353, -4.7822355E-4, 0.004253193, -0.02932757, -0.025282867, 0.02214162, -0.0082145, 0.036416225, 0.013412846, 0.033719756, 0.021766338, 0.0073388424, -0.025171673, 4.2219192E-4, 3.518266E-4, -0.0049759573, 0.01722126, 0.03547107, -0.0246157, 0.0017217785, 0.0051601236, -0.010751126, -0.038612317, -0.029077383, 0.03055071, 0.012898571, 0.009069308, -0.03319158, 0.0012578886, -0.027437262, -0.012113259, -0.015831329, 0.009514086, 0.0045485534, -0.031523664, -0.018305408, -0.004576352, -0.006383264, 0.0074778353, -0.0066994736, -0.013107061, 0.015664537, -0.025380163, 0.0039717313, -0.007040007, -0.022099923, 0.027409464, -0.021265963, 4.0981284E-4, 0.00220478, 0.0086245295, 0.0025765868, -0.010542636, 0.0054832827, 0.03216303, -0.004472107, 0.015608939, -0.0038014646, -0.016776482, 0.009861569, 0.017679939, -0.0051149507, -0.0059662843, -0.0047917916, 0.0038223136, 0.018791884, -0.0040586023, -0.005594477, 0.006442336, -0.018708488, -0.027159275, 0.016984971, -0.0068627903, 0.013016716, -0.030800898, -0.0014133874, 0.0044443086, 0.007401389, -0.0014446608, -4.0286317E-4, -0.014788879, 0.0048300144, -3.537812E-4, -0.0013725581, 3.6637744E-4, -0.029494362, -0.027381666, -0.025560854, -0.018138615, -0.0070017837, -0.014969571, 0.011856122, -0.019987226, -0.0045068553, -0.015261456, 0.0024688672, -0.019514648, -0.0026200223, -0.014010517, 0.003007466, 0.02133546, -0.004739669, -0.0033618987, -0.009729526, 0.021960929, 0.01538655, -0.007978211, 0.001978916, -0.0049620583, 0.02133546, -0.014608188, 0.00943764, 0.005493707, -0.028396316, 0.0045589777, 0.024365513, 0.026158525, 0.023045076, 0.004141998, -0.024421109, -0.0071512014, -0.005844665, 0.038528923, 0.0025001406, 0.0017964874, 0.022878285, 1.6396857E-4, 0.021571748, 0.021849735, -0.003631198, -0.023851238, -0.0051149507, -6.824784E-5, -0.031607058, 5.642256E-4, 0.0032732903, 0.0097225765, 0.008958113, -0.017137865, -0.032329824, 1.1792706E-4, -0.029939141, -0.02910518, -0.0010181253, 0.017290758, 0.02935537, 0.020140119, 0.0019250561, 5.533668E-4, 0.010438391, -0.01476108, -0.03733358, -0.019723138, 0.025866639, 0.009319495, 0.038028546, 0.021877533, -0.024935385, 0.011870021, 0.01251634, 0.014260705, -0.0013769016, 0.016442899, 0.0013039302, -0.005886363, 7.666345E-4, 6.497933E-4, -0.008860818, -0.0082006, 0.022322312, -0.02952216, -0.002472342, 0.012043763, 0.01950075, -0.0012075036, 0.012808226, 0.015636738, -0.018611193, 8.634954E-4, 0.0038188389, -0.013788128, 0.010222952, -0.013009766, 0.03586025, 0.003655522, -0.012544138, 0.042337336, 0.022058224, -0.003857062, 0.008944214, -0.002409795, 0.004274042, 0.0034869926, -0.004868238, 0.0022899134, 0.026631102, -0.0266728, 0.010396693, -0.043226894, 0.0028493612, -0.004343538, -1.1249764E-4, 0.002058837, 0.03266341, 0.010077009, -0.043643873, 0.004600676, -0.027117578, 0.0037806157, -0.0029553433, 0.007099079, -0.0016974547, -0.014510892, -0.0049134106, -0.0015836541, -0.028493611, -0.02524117, -0.0027868142, -0.023906834, 1.192437E-5, 0.018361004, 0.19325618, -0.011112508, 0.012808226, 0.052817427, 3.2793713E-4, -0.0015315316, 0.03916829, 0.01948685, -0.007554282, 0.024170922, -0.003631198, 0.005156649, 0.0035425897, 0.0019163691, 0.0060253562, -0.0077280235, -0.030661905, -0.026228022, -0.014802778, -0.008033808, -0.004267092, -0.0046458486, 0.004701446, -0.020668292, 0.00902761, 0.0046284744, -0.017916227, 0.010368895, 0.004979432, 0.0017721636, -0.013426745, -0.011731029, 0.0060253562, -3.2467948E-4, -0.019320058, -0.0022708017, 0.005132325, 0.0044165095, -4.2458085E-4, -0.0069913594, -0.005250469, -0.020751689, -0.010320247, 0.0030509012, -0.011105559, 0.018903079, -0.032885797, -0.024782492, -0.031662658, 0.006338091, -0.038806908, 0.0024584427, 0.014455295, 0.03777836, -0.01167543, -0.008026859, 0.0056674485, 0.010931817, -0.009764274, 0.0042566676, 0.0048717125, 0.034803905, -0.019069871, 0.012363447, 0.012801276, 0.01804132, -0.04016904, -0.02214162, 0.0044130348, -0.032107435, -0.016734784, -0.038445525, -0.014205107, 0.016734784, -0.0027051556, -0.009117955, 0.002585274, 0.010959616, -0.008881667, 0.023086775, -0.015358752, -0.01988993, -1.0592804E-4, -0.020612694, -0.0149417715, -0.016957173, 0.023114573, -0.01704057, -0.018625092, -0.01046619, -0.02154395, -0.029800147, -0.0061191767, -0.011439143, 0.0041558975, -0.009604432, 0.034776106, 0.010542636, -0.010855371, -0.003773666, -0.033775352, 0.023336962, 0.0036485721, -0.020404205, -0.034164533, -0.019472951, 0.0022690643, 0.011835273, 0.032357622, -0.0049168854, -0.02109917, -0.017110066, -0.0046910215, -0.010834522, -0.0027920264, 0.024893686, 0.019862132, 0.001928531, 0.04267092, -0.013934071, -0.003916134, -0.009625281, 0.020001125, -0.0061990977, -0.0068593156, -0.03157926, -0.026367014, 0.0013621337, -0.008770472, -0.028257323, 0.024462808, -0.0135101415, 0.015303154, -0.0015384812, 0.008367392, -0.00553888, 0.026936887, -0.013037564, 0.006133076, -7.640284E-4, -0.01149474, -0.007839218, 0.009972764, 0.0064562354, 0.021432756, -0.011633733, -0.010292448, 0.011612884, -0.02275319, -0.028396316, -0.038945902, -0.0021578697, 0.008874717, 0.015191959, 0.021252064, -0.0029588183, -0.018374905, -0.04556198, -0.005108001, 0.044811416, -0.033552963, 0.023837337, 0.023753943, -0.008874717, 0.0015063391, -0.021015776, -0.17935686, 0.026603304, 0.004305315, -0.046840716, 0.007144252, 0.019347858, 0.031634856, 0.02112697, -0.0044999057, -0.0127873765, 0.034998495, 3.4096776E-4, -0.028465813, 0.014622088, 0.008721825, 0.00799906, -0.010090908, 0.021196466, 0.040752813, 0.004287941, 0.044060852, -0.0067411712, -0.01047314, 0.01969534, 0.008249247, 0.0019598044, 0.025421862, -0.00317947, 0.008283996, -0.0040898756, -0.03838993, -0.008972012, 0.019973326, 0.007693275, -0.019778736, 0.020140119, -0.0035582266, 3.4574565E-4, -0.022169419, -0.014691584, 0.034998495, -9.521036E-4, 0.022252815, 0.016248308, 0.02710368, 0.01659579, 0.038890306, -0.016137114, 0.017137865, -0.023031177, -0.016679186, -0.036861002, 0.030939892, -0.0058516148, 0.006160875, 0.03035612, 0.024129223, 0.013065363, -0.0023750467, -0.012940269, -0.018110817, -0.008221449, -0.0036624714, -0.009805972, -0.0031534089, -0.017513147, -0.009013711, 0.0062651196, -0.021794138, 0.00922915, -0.027590156, 0.01232175, 0.011772726, 0.008228399, 0.017888429, -0.025421862, -0.024143122, -0.0030561136, -0.0038049396, 0.008402141, -0.015122463, 0.02193313, -0.0022499529, 0.02069609, 0.012592786, -0.011522538, 0.0056535495, -0.0037180688, -0.013565739, -0.012280052, 0.011376595, -0.01784673, -0.038111944, 0.0024271691, 9.911954E-4, 0.007846167, 8.2635815E-5, 0.0054971823, 5.1601237E-4, -0.011585086, 0.0035304278, -0.021599548, -0.012134109, 0.026283618, 0.02974455, 0.0041732714, -0.013287752, 0.012627535, 0.026339216, 0.008006009, -0.018833581, -0.004218444, 0.026269719, 0.016887676, -0.017957924, 0.025227271, -0.018263709, -0.02315627, 0.01167543, 0.02008452, 0.06516002, -0.0018173364, 0.014496993, -0.006320717, 0.009500187, -0.015011269, -0.08862208, -0.0064492854, 0.018583395, 0.0369166, -0.019792635, 0.04595116, -0.01598422, 0.007609879, -0.0348595, 0.02504658, 0.0072971443, -0.037389178, 0.0029084333, 0.008110255, 0.008680127, 0.0024063203, -0.011724078, -0.0127734775, -0.023003379, 0.03258001, 0.008756573, -0.0035425897, -0.0023698346, -0.01679038, -0.022377908, 0.021085272, -0.032885797, 0.011592035, 0.02974455, 0.0038987598, 0.00615045, -0.020612694, 0.011626783, -0.03177385, -0.028827194, -0.013579638, -0.011550337, -0.021377157, 0.005354714, -0.05148309, -0.0021179093, 0.014872275, 9.6600293E-4, -0.020167917, -0.020848984, -0.001010307, -0.031940643, 0.028243423, -0.005768219, -0.026589403, -0.005771694, -0.013141809, -0.029855745, -0.010626032, 0.009097107, 0.010236851, 0.015525543, -0.0048056906, -0.013385047, -0.026394812, -0.022600299, 0.012043763, -0.014622088, -0.0012240091, -4.9168855E-4, 0.011105559, 0.004065552, -0.010639931, 0.011612884, -0.029605556, -0.021168668, 0.024921484, -0.035387676, -0.012141058, -0.009159653, 0.008888617, -0.03858452, -0.015066866, 0.03444252, -0.029855745, 0.006852366, -0.032329824, 0.027367765, -0.020167917, 0.0022152045, 0.03296919, 1.0978293E-4, 0.013767279, -0.0045416034, -0.03505409, -0.017652139, 0.013058414, 0.0032263803, 0.005392937, -0.016067617, 0.019556347, -0.00151242, 0.015442147, 3.188157E-4, -0.008673177, 0.0017573956, -0.008026859, -0.073054835, 0.043560475, -0.016429, -0.018958677, -0.016957173, -0.019236661, -0.010313298, -0.0034001218, -0.006897539, 0.023003379, -0.005000281, 0.030467315, -0.008673177, -0.007012208, -0.016137114, 0.0068245674, 0.009792073, 0.008853869, 0.011133357, 0.010361945, -0.017485349, 0.016067617, 0.019014273, 0.008325694, -0.00758903, 0.018764086, 0.0029223326, 0.0050524035, -0.025755445, -0.0030144155, 0.018027421, -0.014649886, -0.007950412, 0.009430691, -0.00924305, -0.019347858, -0.003655522, 0.007095604, 0.023323063, 0.014128662, -0.005785593, -0.023295265, -0.008256198, -0.0011701492, 2.7646622E-4, 0.008367392, -0.0059767086, 0.020584896, 0.009124905, 0.008520285, 0.023906834, 0.0043365886, 0.0036138238, -0.022058224, 0.015873026, -0.012168856, 0.062491354, -0.0031342972, 0.0022273664, -0.036583018, 0.020418104, -0.0123009, 0.025296766, -0.032524414, 0.0102715995, -0.015928624, 0.019973326, 0.0022238917, 0.011383545, -0.048453037, -0.014469194, -0.008151952, 0.014802778, 0.047285493, 0.004228869, 0.01189782, 0.012975018, 0.0073735905, 0.011793575, 0.0037458674, 0.006129601, 0.00656048, -0.034831703, 0.01662359, -0.0039474075, 7.6142227E-4, 0.0021526576, -0.0063658897, 0.0020154018, 0.022864385, 7.6967495E-4, 0.022933882, 0.016540194, 0.0017930126, 0.011578135, 0.0021891433, -0.037055593, -0.005500657, 0.004576352, 0.021766338, -0.012975018, 0.0010485301, -0.005782118, -0.035721257, -0.026005633, 0.0013934071, -0.025922237, -0.022836586, 0.007776671, 0.022836586, 0.02728437, 0.017721636, -0.024921484, -0.0036972198, -0.0266728, 0.015066866, -0.014135611, -0.028396316, -0.014594289, 0.03755597, 0.019584145, -0.012002065, 0.030467315, -0.008805221, 0.044366635, 0.010236851, 0.027381666, -0.023336962, -0.0023906834, 0.0028389366, -0.0066543007, -0.013781178, -0.017193463, 0.004062077, -0.006518782, -0.0069253375, 0.0035756007, 0.026978584, -0.018583395, 0.060879033, 0.014816678, -0.020473702, 0.028743798, -0.013419796, 0.03469271, 0.017693838, 0.012648383, -0.016095415, 4.7040518E-4, -0.016345603, -0.007818369, 0.00984072, -0.028076632, 0.0070712804, 0.0030595884, 0.014538691, 0.018388804, -0.013941021, -0.026492108, -0.002020614, -0.008033808, 0.031440265, 0.00758903, -0.005625751, -0.006007982, 0.033914346, -0.0071928995, 0.0062338463, -0.02544966, 3.0600227E-4, -0.034525916, -0.0064458107, -0.011508639, 0.017165663, -0.009958864, 0.0041906456, 0.0113418475, 0.020626595, 0.003354949, -0.014225956, -0.028007135, -0.016748684, -0.023058975, 0.015539442, 0.00697746, -0.0076863253, -0.017262958, 0.0010276812 ], + "id" : "32de46e8-716f-417d-8c8c-49979cd5b68d", + "metadata" : { + "source" : "movies.csv" + } + }, + "10588e5b-0d51-443e-8a5a-d17c24861f09" : { + "text" : "Bravo-Oscar Isaac-Greta Lee-Stan Lee-Jorma Taccone-Joaqu�_n Cos�_o-Marvin 'Krondon' Jones III-Kim Yarbrough-Lake Bell-Jessica Mikayla Adams-Gredel Berrios Calladine-Sarah D. Cole-Kelby Joseph-Mimi Davila-Claudia Choi-Melanie Haynes-Joseph Izzo-Nick Jaine-Muneeb Rehman-Carlos Zaragoza-Post Malone-David Applebee-Juan Carlos Arvelo-Adam Brown-Jon Bruno-Darcy Rose Byrnes-Oscar Camacho-June Christopher-Alycia Cooper-Michelle Jubilee Gonzalez-Terrence Hardy Jr.-Bridget Hoffman-Rif Hutton-Miguel Jiron-Harrison Knight-Lex Lang-Donna Lynn Leavy-Andrew Leviton-Caitlin McKenna-Scott Menville-Christopher Miller-Arthur Ortiz-Juan Pacheco-Devika Parikh-Shakira Ja'nai Paye-Courtney Peldon-Chrystee Pharris-Jacqueline Pinol-Juan Pope-Al Rodrigo-Joseph Sanfelippo-Justin Shenkarow-Dennis Singletary-Warren Sroka-Melissa Sturm-Holly Walker-Jason Linere-White-Ruby Zalduondo-Ruth Zalduondo-Cliff Robertson,superhero-based on comic-aftercreditsstinger-alternate universe,/iiZZdoQBEYBv6id8su7ImL0oCbD.jpg,/x2IqsMlpbOhS8zIUJfyl1yO4gHF.jpg,429617-16355-299534-299536-299537-315635-297802-404368-363088-335983-559-260513-284053-284054-287947-557-424783-102382-383498-82879-558\r\n466272,Once Upon a Time��_ in Hollywood,Comedy-Drama-Thriller,en,Los Angeles 1969. TV star Rick Dalton a struggling actor specializing in westerns and stuntman Cliff Booth his best friend try to survive in a constantly changing movie industry. Dalton is the neighbor of the young and promising actress and model Sharon Tate who has just married the prestigious Polish director Roman Polanski��_,36.842,Heyday Films-Columbia Pictures-Bona Film Group,7/24/19,95000000,374251247,162,Released,\"In this town, it can all change��_ like that\",7.435,11783,Leonardo DiCaprio-Brad Pitt-Margot Robbie-Emile Hirsch-Margaret Qualley-Timothy Olyphant-Julia Butters-Austin Butler-Dakota Fanning-Bruce Dern-Mike Moh-Luke Perry-Damian Lewis-Al Pacino-Nicholas Hammond-Samantha Robinson-Rafa�� Zawierucha-Lorenza Izzo-Costa Ronin-Damon Herriman-Lena Dunham-Madisen Beaty-Mikey Madison-James Landry H��bert-Maya Hawke-Victoria Pedretti-Sydney Sweeney-Harley Quinn Smith-Dallas Jay Hunter-Kansas Bowling-Parker Love Bowling-Cassidy Vick Hice-Ruby Rose Skotchdopole-Danielle Harris-Josephine Valentina Clark-Scoot McNairy-Clifton Collins Jr.", + "embedding" : [ -3.1599087E-5, -0.028820526, 0.0044073574, -0.054656763, -0.015073439, 0.048190795, -0.008165356, -1.0578004E-4, -0.005253598, -0.024855286, 0.02887579, 0.016040571, 0.02542175, 0.0030879136, 0.0065074153, 0.0136503745, 0.017187312, -0.012241125, 0.010431207, -0.034650948, 0.0029428438, -0.0056369966, -0.016344527, 0.017242577, 7.2405353E-4, -0.004946188, 0.040398475, -0.0056369966, 0.0026475233, -0.02069662, 0.008047918, -0.009505523, -0.0033331506, -0.028737629, -0.007564352, -0.009180844, 0.0069460785, -0.042498533, 4.6715917E-4, 0.009077222, -0.00872491, -0.004089586, -2.0519168E-4, -0.015985306, -0.0071913153, 0.0073709255, 0.013912882, -0.0075159953, -0.009823295, 0.0369997, 0.023667095, 0.028709996, -0.01917684, -0.017781409, 0.00445226, 0.010417391, 0.0048736534, -0.009187751, 0.005436662, 6.9469423E-4, 0.017062968, -3.815637E-5, -0.033766717, -0.01070753, -0.0040412294, 0.0030602813, -0.0012918117, -0.010693714, -0.010617726, 0.01031377, 0.031031113, 0.0053952136, 0.0062345457, 0.012020066, 0.015584637, -0.030588996, -0.034982536, -0.008814715, 0.007806135, -0.0020741522, 0.012959566, -0.0061274706, -0.007868308, 0.012883577, 0.008517668, 0.009602237, -0.016054388, 0.017726144, -0.03749708, -0.004096494, -0.0020206147, 0.03807736, -2.323383E-5, -6.7785574E-4, 0.0048183887, 0.016855726, -0.02560136, 0.037220757, -0.02289339, -0.02970476, 0.0012874942, -0.006148195, -0.003371145, -0.010507196, -0.010265413, 0.004524795, 0.012199677, 0.008338057, 0.027024426, 0.011425971, -0.0048011183, -0.005201787, 0.01283522, -0.05286066, -0.008793991, -0.0074607306, 0.0067491983, -0.0170906, -0.01204079, -0.019853834, 0.029013952, 0.043935414, -0.001270224, -0.030036349, 0.027286932, 0.032937746, -0.019301187, -0.01590241, 0.012807588, 0.007889032, 0.044073578, -0.008420954, 0.009906192, 0.012227309, -0.012897393, 0.046339426, -0.028281696, 0.009243016, -0.010396667, -0.007405466, 0.017118232, 0.021953892, -0.032246936, -0.016455056, -0.021304531, -2.7049467E-4, 0.0240125, 0.005861509, 0.012144412, 0.013532937, 0.018679459, 0.0046387785, 0.006179281, 7.853628E-4, 0.01892815, -7.616163E-4, 0.0016078566, -0.008103183, 2.2256983E-4, -0.023073, -0.0078614, -0.012096055, 0.0015897228, -0.010044354, 0.0033106992, 0.025117794, 0.022741413, -0.027881028, -0.0067733764, 0.022299295, 0.0065143234, 0.02643033, -0.024330271, 0.022534171, -0.011971709, 0.0038443487, -0.001644124, -4.2312016E-4, -0.029621864, 0.006631761, -0.0013505304, 0.0055437377, 0.023957236, 0.042470902, -0.009028866, 0.011204912, 0.025090162, -1.2693605E-4, 0.0011933715, -0.013360235, -0.0073778336, 0.029317908, 0.0012451821, -0.0030689163, -0.6282488, -0.0147832995, -0.01644124, -0.009595329, 0.015819512, 0.023404589, 0.0134155, -0.0025542642, -0.039818197, -0.013090819, -0.030257408, 0.018375503, 0.027687602, -0.006493599, -0.016689932, -0.016814277, 0.005747526, -0.01229639, 0.0050705336, 8.522849E-4, -0.026927711, 0.010244689, 0.0157228, 0.006331259, 0.0094848, 0.013892157, 0.005519559, -0.026057294, -0.004852929, 0.008538391, -0.022907207, 0.021732833, 0.01005817, 0.009187751, 0.046007838, -0.005851147, -0.021622304, 0.05368963, 0.012441459, 0.033739083, -0.017021518, -0.0030153787, 0.014437895, -0.011108199, -0.009685134, 0.015570821, 0.0070600617, 0.0062103677, -0.028212614, -0.008206804, 0.0063657993, -0.0046491404, -0.010147976, 0.001606993, 0.004441898, -0.014631322, 0.006065298, -0.018085364, 0.027162587, 0.0018789988, -0.024896735, 0.015211601, 0.008172263, 0.004538611, 0.016316894, 0.02152559, -0.009892376, 0.007260396, 0.010514104, -0.020544643, -0.002310754, 0.008538391, -0.010065079, -7.78023E-4, 0.01233093, 0.017753776, 0.034650948, 0.008952877, 0.0028219523, 0.031528495, 0.0017408372, -0.009685134, 0.009305189, 0.009243016, 0.02423356, 0.009747307, -0.044653855, 0.012268757, 0.030229775, -0.0054573864, 0.0076817893, 0.020530825, 0.0036716466, 0.012952657, -0.004179391, -0.0058753253, 0.0011018394, 0.018762356, 0.026264535, -0.074607305, -0.014603689, -0.019632775, 0.032689054, -0.008966693, 0.01928737, 0.010831876, -0.0031828997, -0.016634667, 0.026457962, -0.033379864, -0.0064763287, 0.00578552, -0.027065873, -0.0016855726, -0.005840785, -0.027425094, 0.019950546, 0.016275447, 2.6812E-4, -0.012786863, 0.007253488, 0.0044039036, 0.0048805615, -0.019466981, 0.0073709255, 0.016413609, -0.006472875, 3.348262E-4, 0.002870309, 0.015943859, -0.004704405, -0.0147004025, 0.007481455, -0.02314208, 0.012697059, 0.0085038515, 2.5430386E-4, -0.005412484, 0.015778065, -0.0147832995, -0.017546533, -0.019273555, -0.0048840153, -0.005149977, -0.018334055, -0.009657501, -0.017657062, 0.006269086, -0.00875945, -0.021649936, -0.019964363, 0.013463856, -0.0024126484, 0.007343293, 0.01078352, 0.0061171083, -0.049047396, -0.023197345, 6.377025E-4, -0.022589434, -0.0027753229, 0.0253803, -0.0041690287, -0.0180301, 0.018720908, -0.0037718138, -0.013498397, -0.008973601, 0.0013833438, -0.012662518, 0.01644124, -0.030588996, 0.011343074, 0.0031552673, -0.017132048, 0.02004726, -0.009774939, 0.023846706, -0.0034298638, 0.00477694, 0.0012235944, -0.013560569, -0.018057732, -0.0054850187, 0.02567044, 0.031915348, 0.024606595, -0.017297842, -0.0043935413, -9.230927E-4, -0.029621864, -0.0072258557, -0.008496943, -0.0060342113, -8.812125E-4, 0.016759012, 0.010666082, 0.006649031, -0.007087694, -0.009671317, 0.020710437, 0.020558458, 0.030091614, -0.010320677, 0.00115365, -0.028295511, 0.006980619, -0.02898632, -0.00428992, -0.005702623, 0.03169429, -0.012317114, -0.005339949, 0.003944516, 0.01377472, 0.030423202, -0.007412374, 0.015805697, -0.009712766, 0.009277557, 0.0043313685, -0.003550755, 0.013712547, -0.0019480797, -0.025186874, 0.0019998904, 0.03310354, -0.012807588, -0.0027321472, -0.008628197, -0.009394994, 0.0044902544, -0.003792538, 0.0029877464, -0.017712327, -0.01330497, -0.010693714, -0.01294575, 0.042028785, -0.032827217, -0.0016708928, 0.008006469, 0.031721924, -0.0013073549, 0.00640034, -0.014866197, 0.01359511, -0.0011881904, -0.015335946, 0.03158376, -0.031307437, 0.035894405, -0.01088714, 0.009616053, 0.020503193, -0.016275447, 8.125634E-4, 0.01651032, 0.023777625, 0.037248388, 0.016607035, -0.00969895, 0.0035300308, 0.017007703, 0.0043451847, 0.0010025357, -0.028295511, 0.00771633, 0.0016398064, -0.044294637, -0.029621864, -0.014230653, 0.00321744, 7.62048E-4, -0.008476219, -0.010009814, -0.0068631815, 0.004348639, -0.00557137, 0.019466981, -0.004017051, -0.029732393, 0.026071109, 0.025186874, -0.021898627, -0.007737054, -0.009477891, -0.0050463555, -0.01968804, -0.0074330983, 0.008517668, 0.031860083, -0.009084131, 0.011349982, -0.0062759942, -0.009899285, 0.0072120395, -0.033407494, 0.0042933743, 0.005181063, 0.0035714793, 0.007336385, -0.012489816, -1.9199617E-5, 0.0016208092, -0.022188766, 4.5981933E-4, -0.008241344, -0.009809479, -1.1506277E-4, 0.015170152, 5.371035E-4, -0.04139324, 0.009298281, 0.009989089, -0.0026941528, -0.0059651304, -0.0046767727, -0.010458839, -0.023404589, -0.018140629, -0.025587544, -0.03313117, -0.012745415, 0.0747731, 0.0397353, 0.0015949039, 0.013975054, -0.013070095, 0.007958113, 0.0039065215, -0.008483127, -0.009132487, -0.021373613, 0.037276022, -0.018403135, 0.017822856, 0.006324351, 0.010382851, -0.011198005, -0.01139143, -0.011087475, 0.0038961594, -0.0065143234, -0.027701417, -0.006389978, 0.013615834, 0.03321407, 0.0061309244, -0.016109653, 0.020171605, -0.0069668028, 0.0109354975, 0.015004358, 0.0048080264, -0.004186299, -7.2664407E-4, 0.004448806, 0.018416952, -0.004030867, 0.04396305, -0.0037959921, 0.029842922, 0.020613723, 0.006655939, 0.012393103, 0.0012045972, -0.0011527865, 0.017394556, -0.018734723, -0.02714877, 0.032246936, 0.013277338, -0.029953452, 0.01787812, 0.011232545, -0.023266427, -0.020890046, 0.024109213, -0.013470764, -0.015474108, -0.010638449, 0.0028219523, 0.013526029, 0.010465748, -0.034650948, -0.0019377175, -0.015253049, 0.0033486937, -0.02293484, -0.017366923, -0.008061734, -0.020378849, 0.0035783874, -0.006721566, -0.012448368, -0.0041621206, -0.018444585, 0.02696916, -0.0066421228, 0.026057294, -0.00524669, 0.02177428, 2.1630939E-4, -0.03335223, -0.02163612, 0.0055471915, -0.021912443, 0.0125174485, 0.0057958825, 0.0051845172, 0.022230215, -0.023169713, 0.023321692, 0.010824968, 0.0038167164, -0.019784752, -0.015004358, 0.04365909, 0.019066311, 0.012697059, 0.015156336, 0.016289262, 0.004210477, -0.0065350477, -0.017477453, -0.014949094, -0.013560569, -0.019024864, -0.01139143, -0.0161511, 0.013298062, -0.013602017, -0.024786206, -0.0240125, -0.026084926, 0.0037200032, -0.01543266, 0.008434771, -0.0019152663, 0.014078676, 0.02934554, -0.020365031, -0.005495381, 0.0049496423, -0.020365031, 0.016883358, 0.036723375, -8.617835E-4, 0.02934554, -0.010251597, -0.02585005, -0.0074676387, 0.022769045, -0.007564352, 0.012697059, -0.019466981, 0.0073571093, 0.006804463, -0.014230653, 0.0031828997, -0.0036129279, -0.019991996, 0.018831437, -0.0127177825, 0.013678007, 0.02455133, 0.0030153787, -0.011059843, -0.027176403, 0.011412155, -0.016413609, 0.0124345515, 0.018444585, -0.004013597, 0.0064452426, -0.029124482, -0.015805697, -0.014810932, -0.03263379, -0.018472217, -0.0073640174, 0.02289339, 0.008172263, 0.034485154, 0.015087255, 0.027328381, 0.0059754928, 0.001356575, 0.026416514, -0.015805697, -0.0125519885, -0.020738069, 0.015515557, 0.0012227308, 0.029621864, -0.005495381, -0.011080567, -0.0016648483, -0.0035956576, 0.0036094738, 0.022188766, 5.673264E-4, -0.0057164393, -0.026886264, 0.005844239, -0.02772905, -0.0011821459, -0.016040571, 0.009830204, 0.03666811, -0.008096275, -0.009457167, -0.02116637, 0.042885385, -0.015584637, 0.01630308, -0.0024869102, 0.026692837, -0.023128266, -0.007405466, -0.010728255, -0.0078199515, -0.0076334327, -0.0114190625, 0.013643466, -0.0042553796, -0.030727157, -0.012061515, 0.031528495, -0.008635105, -0.016772829, 0.019743305, -0.012938841, 0.0039203377, -0.02181573, -0.0013470764, -0.028792894, -0.02672047, 0.002148414, -0.012268757, 0.004500617, -0.0028944872, -0.029787658, 0.024426986, 0.0028513116, 0.041697197, 0.0069529866, 0.028143534, 0.009001234, 0.020738069, -0.00724658, 0.012178952, -0.012275665, -0.0085038515, 0.02714877, 0.039569505, -0.023376957, -0.0016916171, -0.0045869676, -0.002792593, -0.051257983, -0.023404589, 0.011716111, 0.023017736, 0.018900517, -0.036143094, -0.010382851, -0.034872007, -0.0014101126, -0.001074207, -0.0058027906, 0.012938841, -0.018085364, -0.02585005, 0.00477694, -0.008821623, 0.016427424, 0.02790866, -0.017587982, 0.0071153264, -0.0253803, 0.009781847, 0.0017175224, -0.016054388, 0.041089285, -0.01117728, 0.016924806, 0.02278286, -0.006320897, 0.008994325, -0.0068251872, 0.022382192, 0.030616628, -0.00836569, 0.012213493, 0.008179172, -0.016178733, 0.018403135, 0.01838932, -0.017643247, -0.0036612845, -0.022865757, -0.0057164393, 0.023045368, -0.008420954, -0.0035783874, 0.009422626, -0.012358562, -0.028115902, -5.617136E-4, -0.008096275, 0.007343293, -0.02790866, -0.0028340414, -0.001024987, 0.009104854, -0.016800461, -0.009429535, 7.534129E-5, -0.0020845144, 0.0016674388, -0.010762795, 0.0065281396, -0.02271378, -0.023169713, -0.025794785, -0.018651826, -8.104046E-4, -0.015708983, 0.008821623, -0.016855726, -0.0055299215, -0.011273993, -0.014880013, -0.008407138, -0.00352485, -0.010907865, 0.0035645713, 0.02318353, -4.499699E-6, -0.010845692, 5.8200606E-4, 0.017712327, -0.012614162, -0.00872491, -1.5964151E-4, 0.018527482, 0.022382192, -0.010742071, 0.010576277, 0.0012374106, -0.026637573, 0.014603689, 0.021180186, 0.018334055, 0.016413609, -0.011515776, -0.01910776, -0.0140994, -0.008876888, 0.031141642, -0.010016722, 0.007474547, 0.018472217, 0.027950108, 0.03807736, 0.028115902, 0.0024800021, -0.025090162, -0.0031656295, -0.0047527617, -0.033656187, -0.0042933743, -0.0011035664, 0.0059340443, 0.016054388, -0.017035335, -0.031058745, -0.0066179447, -0.027770499, -0.025090162, -0.014866197, 0.011702294, 0.021442693, -0.010645358, 0.0020085254, 0.017007703, 1.215391E-4, 0.011011486, -0.030036349, -0.008317334, 0.022672331, 0.010389758, 0.03501017, 0.01968804, -0.029262643, -0.008262069, 0.0109354975, 0.027715234, 0.017339291, 0.015930042, -0.014534608, -0.008047918, -0.0018461854, 0.013975054, -0.014810932, -0.0015759066, 0.026665205, -0.036004934, 3.9980537E-4, 0.01034831, 0.016634667, -0.004521341, 0.0094848, 0.016137285, -0.0051396145, 0.002790866, -0.0067941006, -0.019066311, -0.0062863566, -0.01673138, 0.022962471, 0.008690369, -0.006013487, 0.040066887, 0.029207379, -0.005098166, 0.01096313, -0.0028875791, 0.0013375778, -0.009546972, -0.009118671, 0.004027413, 0.030257408, -0.021180186, 0.010700623, -0.02199534, 0.014755667, -0.012793772, 0.0018271882, -6.8001455E-4, 0.032827217, 0.009892376, -0.04034321, 0.008614381, -0.02141506, 0.013622742, -0.020282134, -0.005412484, -0.024758574, -0.015708983, -0.004189753, 8.7991724E-4, -0.026623756, -0.029124482, 0.0025749884, -0.0076265247, -0.0031759916, 0.021221634, 0.19431059, -8.8509824E-4, -0.0038857972, 0.045842044, 9.4295345E-4, 0.017256394, 0.03398777, 0.015225417, -0.015073439, 0.005844239, -3.4518834E-4, 0.0046422323, 0.01496291, -0.0010275776, 0.022230215, -0.023459854, -0.0313627, -0.011059843, -0.0074330983, -0.033048276, -0.006573042, 0.0093535455, -0.012683243, -0.022478906, 0.014424079, 0.005685353, 0.0036543764, 0.0043002823, 0.015101071, 0.01218586, -0.0016613943, -0.011992434, 0.012324022, 0.0061896434, -0.011163464, -0.010458839, -1.4420625E-4, -0.007419282, 0.0166623, 0.0010223965, -0.004096494, 0.0050498093, -0.011198005, -0.012793772, 0.006631761, 0.011605581, -0.023556566, -0.0015137339, -0.015335946, 4.6759093E-4, -0.04672628, 0.004369363, 0.023473669, 0.02192626, 0.009001234, -0.0064383345, 0.0046698647, 0.008310425, -0.020323584, 0.0010008087, 0.019204473, 0.040011622, -0.022810493, 0.023473669, 0.0017140683, -0.005018723, -0.026223088, -0.017822856, 0.0061136545, -0.038878698, -5.8200606E-4, -0.023584198, -0.009208476, -7.050563E-4, 0.0026457962, -0.010666082, -0.00710151, -0.00951934, 0.0013945695, 0.029400805, -0.02455133, -0.0048218425, 0.01157104, -0.011964802, -0.035175964, -0.014520792, 0.0123516545, -0.0062898104, -0.014424079, -0.018900517, -0.015557005, -0.022340745, -0.011246361, 0.0023470216, -0.01698007, -0.004521341, 0.0067941006, 0.018789988, -0.0022140408, 0.001271951, -0.04128271, 0.018983414, 0.022340745, -0.0020292497, -0.04103402, -0.012400011, -0.005557554, -0.0011320623, 0.029732393, -0.0063588913, -0.0117851915, -0.018638011, -0.008137723, -0.008863072, 0.0070151594, 0.022630883, 0.0066283066, -0.015073439, 0.034015406, -0.015253049, 0.011702294, -0.02667902, 0.0146175055, 0.01449316, -0.004611146, -0.02423356, -0.018209709, 0.0047182213, -0.007184407, -0.038961593, 0.008980509, -0.013843801, 0.0161511, -0.006790647, -0.0012253214, -0.001190781, 0.02625072, -0.02040648, -0.011260177, -0.001892815, -0.0012443187, 0.0018807258, 0.016109653, 1.90512E-4, 0.0011916445, -0.02970476, 0.007882124, -0.025076345, -0.023501301, -0.027204035, -0.019978179, 7.2621234E-4, 0.0180301, 0.014341182, 0.034623317, 0.0034005044, -0.0015724526, -0.0489645, -0.010990762, 0.0397353, -0.024109213, 0.025255956, 0.017739959, -0.013021738, -0.03039557, -0.01968804, -0.17762066, 0.040481374, 0.005429754, -0.03774577, 0.004283012, 0.010762795, 0.03398777, 5.0299487E-4, 0.008959785, -0.01756035, 0.03854711, -0.0021466871, -0.030975848, -0.00222613, 6.277721E-4, 0.008994325, -0.017035335, 0.027604705, 0.034568053, -0.0019342635, 0.04374199, -0.021042025, -0.0031708106, 8.9373335E-4, 0.0047078594, -0.0031051838, 0.02660994, 0.005073988, 0.009781847, -8.9459686E-4, -0.044985443, -0.014354998, 0.011253269, 0.009823295, -0.014921461, 0.010990762, -0.023432221, -0.017905753, -0.011280901, 0.0027407825, 0.042415638, 0.011384523, 0.021857178, 0.008213712, 0.016137285, 0.023874339, 0.027950108, -0.01651032, 0.021622304, -0.014354998, -0.011108199, -0.042636696, 0.026292168, -0.015363579, -0.013829985, 0.039762933, 0.008476219, -2.695772E-5, 0.0018306422, -0.003289975, -0.014479344, 0.0071913153, 0.0137678115, -0.02134598, -0.001150196, -0.010714439, -0.015045807, -0.0013816168, -0.042415638, 0.01630308, -0.020461746, 0.02022687, -0.007723238, 0.0062103677, 0.016012939, -0.019909099, -0.03752471, 0.0012892212, 0.0024040132, 0.015736615, -0.0063934317, 0.045261767, -0.008241344, 0.014589873, 0.0035714793, -0.009657501, 0.013581294, 0.001601812, 0.014921461, -0.0012296389, 0.009595329, -0.0060514817, -0.025546094, -3.9117027E-4, -0.0022503084, -0.004500617, -0.0018012829, -0.0014791935, 0.018803805, -0.012987198, 0.0057924283, -0.011080567, -0.010182516, 0.032910112, 0.018334055, 0.0071222344, -0.017836673, 0.023846706, 0.008510759, 0.0019290824, -0.014299734, 0.0098025715, 0.019273555, 0.014976726, -0.02560136, -0.0016147647, -0.023998683, -0.022990104, -0.0043313685, 0.006649031, 0.06222802, 0.0041552125, -0.010071986, -0.015736615, 0.00984402, -0.023238795, -0.09433679, 8.7085034E-4, 0.01715968, 0.01590241, -0.010603909, 0.039569505, 0.0051465225, 0.014189204, -0.021318348, 0.026734285, 0.008607472, -0.028488938, 0.020365031, 7.1800896E-4, 0.0067491983, 0.02192626, -0.013187532, -0.018900517, -0.014810932, 0.027342197, -0.010679898, -0.019881466, 5.940952E-4, -0.011225637, -0.016468873, 0.020834781, -0.024882918, 0.023335507, -5.3278595E-4, 0.012662518, 0.005333041, -0.013049371, 0.030367937, -0.027121138, -0.020295952, -0.014244469, -0.024053948, -0.023528934, -0.0011294717, -0.04846712, 0.0029342086, 0.017698511, -0.0033745992, -0.02772905, -0.0180301, 0.005937498, -0.015930042, 0.018955782, -0.005250144, -0.02578097, -0.001026714, -0.019066311, -0.030810054, -0.012455275, 0.014506976, 0.011239453, 0.028544202, -0.0043935413, -0.0055610077, -0.03122454, 0.0073018447, 3.17556E-4, -0.012130596, 0.005847693, 0.013981963, -0.005156885, 0.0033210614, -0.01756035, 0.014714219, -0.0170906, -0.014465528, 0.021511775, -0.045980208, -0.012545081, -0.015916226, 0.0034626771, -0.040702432, -0.014728035, 0.0146175055, -0.039127387, 0.01420302, -0.03227457, 0.017795224, -0.011488143, 0.01651032, 0.014272101, 0.016634667, 0.0104519315, -0.0076817893, -0.05487782, -0.022437457, 0.022188766, -0.009581513, -0.013394775, 0.009788755, -6.5454096E-4, 0.0137678115, 0.01088714, -0.005861509, 0.010438115, -0.016759012, -0.015308314, -0.078254774, 0.028599467, -0.024523698, 0.004037775, -0.013090819, -0.01964659, 0.002880671, 0.0024817293, -0.018886702, 0.01333951, 0.0022865757, 0.009581513, -0.00883544, -0.003630198, 0.0025145425, -0.0029514788, 0.01720113, -0.007412374, 0.019618958, 0.009622961, -0.016828094, 0.022202583, 0.008987417, -0.014741851, 0.015750432, 0.018707091, 0.004103402, -0.0022036787, -0.014341182, -0.026416514, 0.03017451, -0.02502108, -3.7584294E-4, 0.010645358, -0.004538611, -0.03948661, -0.0042933743, 0.010396667, 0.017850488, 0.0064452426, 0.0046456866, -0.025242139, 0.0075229034, -0.014686586, -0.014120123, 0.0075159953, -0.019080129, -0.0026665204, 0.006818279, 0.013353326, 0.030616628, 0.012593437, 0.001557773, -0.018679459, 0.034872007, -0.028433673, 0.06675973, 0.0032917021, -0.020765701, -0.029621864, 0.037165493, 6.035938E-4, 0.01720113, -0.034457523, 0.011916445, -0.0038305325, 0.017366923, -0.010928589, 0.012883577, -0.03575624, -0.03440226, -0.0125519885, 0.016358344, 0.028184982, 0.029013952, 0.02087623, 3.8814798E-4, -0.011805915, -0.007909756, 0.023556566, 0.013691823, -0.0014930096, -0.021870995, 0.026388882, 0.002227857, 0.010714439, -0.008379506, 0.0131599, 0.014797116, 0.0052881385, 0.0031811728, 0.019922914, 0.015405027, 1.4593327E-4, 0.028281696, 0.0024955454, -0.020503193, -0.017739959, 0.0078614, 0.038104992, -0.015957674, -0.003519669, -0.015059623, -0.006956441, -0.011605581, 0.0115365, -0.018140629, -0.016800461, 0.0016648483, 0.021138737, 0.030257408, 0.0071222344, -0.0034954906, 0.013864525, -0.03429173, 0.018693276, -0.009781847, -0.014576057, -0.011232545, 0.042995915, 0.022699963, -0.0010310316, 0.042470902, -0.0086696455, 0.051506676, 0.010355218, 0.024261191, -0.022990104, 0.0021035117, -3.0676211E-4, 0.018997231, -0.013691823, -0.027010608, -0.002545629, -7.7122284E-5, 0.0047389455, 0.010762795, 0.019826202, -0.022727596, 0.07499416, 0.036474682, 0.0016510321, 0.015045807, -0.0049669123, 0.031749554, 0.022851942, 0.024924368, -0.023929603, -0.0073847417, -0.006807917, -0.006638669, 0.01619255, -0.031500865, -0.004997999, -0.008469311, 0.013885249, 0.011660846, -0.01651032, -0.011273993, -0.01099767, -0.004524795, 0.024537515, 0.010099619, -0.0043900874, -0.010071986, 0.012697059, 0.0034195017, 0.0035956576, -0.030312672, 0.017353106, -0.027867211, -0.003367691, -0.005502289, 0.010182516, 0.004849475, -0.012814496, 0.008248253, 0.019618958, 0.015805697, -0.017781409, -0.02797774, -0.035562817, -0.03180482, 0.027480358, -0.013408591, -0.008275885, -0.028378408, -0.013222073 ], + "id" : "10588e5b-0d51-443e-8a5a-d17c24861f09", + "metadata" : { + "source" : "movies.csv" + } + }, + "1e650602-6bc9-4537-9bbb-12259e136280" : { + "text" : "Liufau-Brad Martin-Deron McBee-Mario Mugavero-Joey Nelson-Jim Palmer-Robert Powell-Peewee Piemonte-Peter Radon-Fran�_ois Rodrigue-Joe Sabatino-Mike Sabatino-Ofer Samra-Matt Sigloch-Mike Smith-Kimberly Auslander-Ed Begley Jr.-George Cheung-Erik Cord-Scott Cranford-Michael Dane-Gunnel Eriksson-Holiday Freeman-Nancy Gassner-Clayton-Mitch Gaylord-Timothy Guest-Jenny Inge Devaney-Bob Kane-Joe Kent-Patrick Leahy-Susan Lewis-Marshall Dancing Elk Lucas-Gorja Max-Bob McGovern-Ve Neill-Velvet Rhodes-Dana Walsh-Harry Williams Jr.-Ilona Wilson,riddle-superhero-villain-rose-based on comic-partner-robin-broken neck-psychologist-criminal-district attorney-millionaire-super power-falling down stairs-tied up-tommy gun-beretta-knocked out-disfigurement-father figure-good versus evil,/mzzNBVwTiiY94xAXDMWJpNPW2US.jpg,/98kbLdg6rDqhYySxROTluRbLy5t.jpg,415-364-268-2661-1452-272-8536-125249-1924-9531-9480-1927-9738-9273-3049-11411-14919-618353-36586-142061-40662\r\n9543,Prince of Persia: The Sands of Time,Adventure-Fantasy-Action,en,A rogue prince reluctantly joins forces with a mysterious princess and together they race against dark forces to safeguard an ancient dagger capable of releasing the Sands of Time ��� gift from the gods that can reverse time and allow its possessor to rule the world.,55.368,Walt Disney Pictures-Jerry Bruckheimer Films,5/19/10,200000000,336365676,116,Released,Defy the Future,6.256,6145,Jake Gyllenhaal-Gemma Arterton-Ben Kingsley-Alfred Molina-Steve Toussaint-Toby Kebbell-Richard Coyle-Ronald Pickup-Reece Ritchie-G�_sli �_rn Gar��arsson-Claudio Pacifico-Thomas DuPont-Dave Pope-Domonkos Pardanyi-Massimiliano Ubaldi-Vladimir Furdik-Christopher Greet-William Foster-Elliot James Neale-Selva Rasalingam-Darwin Shaw-Daisy Dodge Hill-Charlie Banks-Jesse Matthews-Rohan Siva-Dimitri Andreas-Stephen A. Pope-Trampas Thompson-Joseph Beddelem-Farzana Dua Elahe-Rachid Abbad-Aziz El Kibachi-Simon De Selva-Felix Augusto Quadros-Amin Mohammad Fouladi-Masoud Abbasi-Mehrdad Azmiri-Zartosht Safari-Ali Nourbakhsh-Parham Bahadoran-Ehsan Parvidan-Shohreh Shojaeifard-Babak Babakinejad,persia-sandstorm-brother against brother-armageddon-based on video game,/lkp1GFmWyf7k2WKvKIQuuGyichI.jpg,/dnOrJdHW697UvKvtX4lYVasomBu.jpg,18823-20526-1979-57165-49529-44912-8373-1996-58574-32657-34544-9738-39254-1735-27022-14869-27576-1858-20662-8960-2080", + "embedding" : [ 0.0029414354, -0.035498764, -0.016192663, -0.030133642, -0.02747888, 0.041058477, -0.0051670577, -0.013746389, -0.013621296, -0.034081038, 0.03077301, 0.033914246, 0.010466159, 0.0076724035, 0.006501389, 0.0039821444, 0.017540893, -0.007950389, 0.01180049, -0.02303111, 0.0061886553, -0.012988878, -0.02225275, 0.0057612523, -9.946673E-4, 0.016498446, 0.03246872, -0.008207526, -0.0064562163, -0.011828288, 0.022169353, 0.007846145, -0.0034591837, -0.013266864, -0.019570189, -0.009291669, 0.0032037843, -0.022336146, 0.019014217, -1.8003913E-4, -0.0046180366, 0.003219421, -0.010215972, -0.005333849, -0.022808721, 0.0019181009, 0.01759649, -0.012453756, -0.0040863887, 0.033969846, 0.029299686, 0.026617125, -0.0212798, -0.025366189, -0.0030005074, -0.0030561045, -0.004569389, 0.0017348041, -0.006053137, 0.0030700038, 0.00464931, 0.0029240614, -0.02750668, -0.009117928, -0.01895862, -0.0052747773, 0.0012544101, -0.022933815, 0.0073805186, -0.00813803, 0.023948463, 0.02282262, 0.01025072, 0.005570137, 0.024504434, -0.039140377, -0.034081038, 0.0036242376, -0.010097828, 0.0021422268, 0.008756547, -0.0074639143, -0.018096864, 0.002901475, 0.017638188, 0.0024740722, 0.0018625037, 0.024059657, -0.027048003, 0.0121757705, 0.0031238636, 0.057209443, -0.0028910507, -0.0048855976, 0.009138778, 0.030022448, -0.025060404, 0.017374102, -0.0023489785, -0.040947285, 0.00686972, -0.0060149143, -0.00405859, -0.0113487635, 0.0048473743, -9.025846E-4, 0.0023229173, -0.016915426, 0.021529987, -0.001876403, -0.0088538425, 0.002854565, 0.015400404, -0.034331225, -0.023281297, -0.021766275, 0.020473642, -0.030272635, -9.0692815E-4, -0.013996577, 0.021988664, 0.038723398, 0.009069282, -0.026561527, 0.03191275, 0.030689614, -0.00483695, -0.021029614, 0.01199508, -0.002816342, 0.045978826, 0.0024497483, 0.014274563, 0.0021144282, -0.027242592, 0.04428311, -0.028396232, -0.012328663, -0.02924409, -0.00948626, 0.035443168, 0.025074305, -0.011821339, -0.027325988, -0.028229441, 0.005629209, 0.014774936, -0.005900245, 0.019667484, 0.0020327698, 0.012092375, 0.021210304, 0.0011962069, 0.021057412, 0.011890835, -0.0066855545, -0.013614346, -0.007943439, -0.006324173, -0.0290217, 0.007561209, -0.005646583, -0.011703195, -0.017888375, -0.00657436, 0.024546131, 0.018152462, -0.008409065, -0.0041697845, 0.009632202, -0.0020362448, 0.024504434, -0.028882707, 0.01801347, -0.0027746442, 0.013113972, -0.005333849, -0.009222173, -0.032718908, -0.01045226, -0.004489468, -0.00521918, 0.024309844, 0.03624933, -0.008005986, 0.004218432, 0.021571685, -0.033580665, -0.0039717196, -0.013628245, 0.0044442955, 0.023712175, 0.011070778, -0.018055167, -0.62624604, -0.01975088, -0.01508072, -0.009889339, 0.011911685, 0.015136317, -0.0011692771, -0.012217469, -0.036054738, -0.015567196, -0.035554364, 0.02340639, 0.030105844, -0.012731742, -0.012356461, -0.014170318, 0.0148444325, -0.018305354, 0.016428951, -0.005438094, -0.028966103, 0.021641182, 0.02941088, 6.180837E-4, 0.004235806, 0.014719339, -0.019264404, -0.017888375, 0.019458994, 0.0060288133, -0.0212937, 0.018458245, 0.018652836, -0.0037389067, 0.038945787, -0.0051948563, -0.02846573, 0.065048635, 0.027173096, 0.02456003, -0.015747886, -0.01180744, 0.001876403, -0.01451085, -0.012446807, 0.014580347, 0.002986608, 0.011751843, -0.011689296, -0.017151713, 0.004430396, -0.0061052595, -0.014774936, -0.012238317, -0.0077905473, -0.002456698, 0.0042288564, -0.04280979, 0.021933066, 1.8568571E-4, -0.023767771, 0.027631773, 0.0015402142, 0.017763281, 0.0013508365, 0.02186357, 0.0020067089, -0.013558749, 0.0073596695, -0.016748635, -7.397024E-4, 0.0193478, -0.008395166, -0.0034313852, 0.014580347, 0.013642145, 0.02361488, 0.0058376985, -0.020668231, 0.013558749, -0.011195871, 0.0021422268, 0.012558001, 0.017040519, 0.022878218, 0.012822087, -0.039056983, 0.010000533, 0.018791828, -0.0017652088, 0.02554688, 0.016137065, 0.011897785, 0.019834274, -0.0059871157, -0.01257885, -0.020779425, 0.005170533, 0.02765957, -0.07700202, -0.009944936, -0.016540146, 0.020598736, -0.015845181, 0.020223456, 0.0046145613, -0.0052921516, -0.005535389, 0.026964607, -0.013954879, -0.011140274, -0.0125719, -0.0044825184, -0.013496202, -5.077581E-4, -0.035109587, 0.01470544, 0.0068940436, 0.011056879, 8.539371E-4, 0.0020327698, 0.0055840365, 0.0037771298, -0.015608894, 0.013002778, 0.03444242, -0.013280763, -0.0032089967, 0.012585799, 0.0193478, -0.0016140541, -0.0031811981, 0.026214045, -0.015608894, -3.7137142E-4, -0.0069739646, 0.0136838425, 0.0023055433, 0.018916922, 0.0060809357, -0.015928578, -0.016567944, -0.0062685763, -0.008756547, -0.0039161225, -0.019597987, -0.020932319, 6.5587235E-5, -0.012141023, -0.011446059, -0.016150964, -0.001611448, 0.005983641, 0.01585908, 0.0054241945, 0.011911685, -0.02535229, -0.017179511, 0.0047952523, -0.01141131, 0.016971024, 0.009583555, -0.019111512, -0.037166677, 0.026255744, -0.0017895325, -0.0072067776, 0.0034331225, 0.0057821013, -0.01797177, 0.00832567, -0.01180744, 0.0010354965, 0.025046505, -0.032857902, 0.026227944, -0.012516303, 0.027854161, 0.006112209, -0.018360952, 0.0042983526, -0.0057369284, -0.015497699, -0.008409065, 0.013433656, 0.016873728, 0.011633699, 0.0070538856, -0.011536404, 0.016109267, -0.016567944, -0.0066403816, -0.0025956908, 5.399002E-4, 0.004048166, 0.034192234, 0.010139526, 0.0116198, 0.012558001, -0.012599699, 0.027590074, 0.008575857, 0.0077418997, -0.0032506946, 0.009333367, -0.047146365, -0.0024549607, -0.033580665, 0.0125719, -0.0033532018, 0.027214793, -0.0069148927, -0.008450763, -0.0028615147, 0.004722281, 0.02554688, -0.008624504, -1.2509353E-4, -0.011932533, 0.004465144, 0.006925317, -0.0073944177, 0.020807225, 0.015108519, -0.015984174, 0.002871939, 0.020557038, -0.017137814, -0.011244519, -0.012627497, -0.0067793746, -0.0037006838, 0.0063519715, 9.7186385E-5, -0.0090136845, -0.013287713, 0.028715916, -0.020445844, 0.041586652, -0.025671974, -0.015803482, 0.03310809, 0.010890087, 0.013197368, 0.005862022, -0.017179511, 0.011168073, 0.011939483, -0.00715813, 0.052094508, -0.024990909, 0.025838764, -0.0047257557, 0.009632202, 0.003519993, -0.016929325, 0.0035165183, 0.012446807, 0.026589327, 0.009548807, 0.014719339, -0.018027369, 0.019208807, -2.3541908E-4, 0.016317757, -0.011869987, -0.019625785, -0.0048473743, 0.002760745, -0.03447022, -0.023045009, -0.015025124, -0.0023680902, 0.0152058145, -0.0018069067, -0.020765526, -1.8449125E-4, -0.0020553563, 0.009917137, 0.010619051, -0.009812892, -0.030133642, 0.019125411, 0.027742967, -0.018096864, -0.015511598, -0.012057627, -0.012509353, -0.04103068, -0.016025871, 0.0013325936, 0.027909758, -0.004103763, 0.020056663, -0.0041941083, 0.0016166602, 0.008214476, -0.016567944, 0.007964289, 0.028966103, -0.005921094, 0.015497699, -0.009131828, -0.015539397, 0.036527313, -0.014288462, 4.951619E-4, -0.00218045, 0.005650058, 0.008395166, 0.005764727, -6.4110436E-4, -0.04139206, 0.015886879, -0.0122035695, -0.006556986, -0.011793541, -0.008805195, 0.011876936, -0.021057412, -0.02650593, -0.039696347, -0.029299686, 0.007039986, 0.087565474, 0.0386956, 0.013829785, 0.0051427344, -0.008846893, 0.0027850685, 0.0012205307, -0.013037526, -0.017096117, -0.0071511804, 0.02283652, -0.0024758095, 0.012106274, 0.006518763, 0.013788087, -0.011244519, -0.0012101062, -0.018611139, 0.004433871, -0.0067098783, -0.030328233, -0.0031325505, 0.027423283, 0.036694102, -0.008186677, 0.0018103814, 0.021029614, 0.0040551154, 0.004638885, 0.019820375, -0.0062963744, 0.014260663, 0.008353468, 0.02842403, -0.0018868275, -0.0064179935, 0.03697209, 0.019486792, 0.03321928, 0.0041558854, -0.0038084032, 0.021557786, 0.00830482, -0.017638188, 0.016373353, -0.016804231, -0.031634767, 0.0076932525, 0.026200145, -0.043226767, 0.023350794, 3.0600137E-4, -0.014100822, -0.02342029, 0.01877793, -0.0065708854, -0.011063828, -0.0060253385, -0.0064318925, 0.0017495721, 0.0026877737, -0.029132895, 0.023906764, -0.012954131, -0.003756281, -0.0076585044, -0.022183254, -0.007700202, -0.012884635, -0.0035894895, 0.012141023, -3.1729453E-4, -0.011049929, -0.0070677847, 0.01587298, -7.9595105E-5, 0.025866563, 0.0019302628, 0.01723511, 0.0016592267, -0.017151713, -0.033247083, 0.017360203, -0.021404894, 0.0025175074, 0.021919167, 0.0017738958, 0.012231368, -0.020237355, -0.004569389, 0.0062616263, -0.0021231154, -0.0145247495, -0.00793649, 0.038056232, 0.010181224, 0.014927829, 0.0136838425, 0.0077766483, -0.0033010794, 0.007818346, -0.029494276, -0.02165508, -0.011703195, -0.023461988, -0.008374318, 0.0048647486, -0.008228375, -0.016150964, -0.0348594, -0.031440176, -0.02147439, 0.009840691, -0.008735699, 0.02050144, -0.007001763, 0.011578102, 0.005994065, -0.006560461, 0.0010641637, 6.810648E-4, -0.0069635403, 0.008429915, 0.020265153, -0.018458245, 0.034303427, -0.0086801015, -0.03580455, -0.0019302628, 0.024059657, -0.0023281297, 0.02671442, -0.0067411517, -0.0022534211, -0.0152058145, -0.023364693, 0.0013178256, 0.010424461, -0.012210519, 0.018527742, -0.0148722315, 0.0013968778, 0.024212549, 0.008457713, -0.0055492884, -0.027061902, 0.008374318, -0.008450763, 0.018263657, 0.01585908, -0.029383082, 0.0030178814, -0.00987544, -5.49456E-4, -0.015622793, -0.03371966, -0.02456003, -0.0033896873, 0.03077301, 0.0067098783, 0.03794504, -0.0011788328, 0.020028865, 0.008582806, 0.014003526, 0.031495772, -0.018847426, -0.012745641, -0.035304174, 0.0024705974, 0.01627606, 0.036749702, 0.002545306, -0.007797497, 0.0050628134, 0.009812892, 0.008784346, 0.018875225, -0.0029952952, -0.023378592, -0.029049499, 0.013246016, -0.023045009, -0.0010059605, -0.012794289, -0.015789583, 0.04586763, -0.0045937127, -0.016776433, -0.008311771, 0.009117928, -0.019250505, 0.014100822, -0.010118677, 0.021946967, -0.026088951, -0.003490457, -0.021029614, -0.016915426, -0.015497699, -0.020793326, 0.012995828, -0.011911685, -0.02282262, -0.009145727, 0.02456003, -0.02419865, -0.026422534, 0.016915426, -0.0029935578, -0.004896022, -0.029105095, -0.0050940868, -0.03018924, -0.00503154, -0.0030943276, -0.00328718, 0.009110979, -0.0026269641, -0.0522891, 0.017791081, -0.0017104803, 0.048063718, 0.026200145, 0.04878648, 0.018096864, 0.0020466691, -0.020529239, 0.017526994, 0.005299101, -0.0013039263, 0.020987915, 0.02476852, -0.020056663, -0.001965011, 0.012849886, -0.00445472, -0.044978075, -0.03246872, 0.034914996, 0.024323743, 0.015414303, -0.019055916, 0.001770421, -0.029077297, 0.012168821, -0.016720835, 0.0026860363, -0.007582058, -0.024017958, -0.018305354, 0.007950389, -0.010626001, 0.011543353, 0.0081727775, -0.024712922, 0.022391742, -0.013322461, -0.0059454176, -0.010327166, -0.013454504, 0.035081785, -0.002121378, 0.0071859285, -0.011494706, 0.017999569, -0.007804447, -0.0019424246, 0.015942477, 0.030745212, -0.016526246, 0.026005557, -0.0027937556, 1.4724552E-4, 0.006112209, 0.03321928, -0.023434188, -0.0063762954, -0.021252003, -0.0024271621, 0.033413872, -0.003189885, -0.012509353, 0.002117903, -0.025435686, -0.012849886, 0.013294663, -0.009326418, 0.0060114395, -0.04850849, 0.011376562, -0.0032367953, 0.012015929, -0.0013421493, 1.3269471E-4, 0.008805195, -0.012210519, -9.025846E-4, -0.00697049, 0.018263657, -0.019653585, -0.024212549, -0.039168175, -0.03310809, -0.008283972, -0.014225915, 0.0062824753, -0.020279052, 0.012509353, 0.006810648, -0.00415241, 0.0064527416, 0.005914144, -0.004395648, 0.015219714, 0.010709397, -0.0024097878, -0.001084144, -0.0015280523, 0.01913931, -0.004201058, -0.0051531587, -0.0063345977, 0.011195871, 0.031495772, -0.019375598, 0.015942477, 0.008235324, -0.04278199, -0.0041002883, 0.02576927, 0.024726823, 0.021905268, -0.015275311, -0.026853412, 9.903238E-4, -0.00986849, 0.020598736, -0.0073110224, 0.0058550723, 0.03597134, 0.025449585, 0.015567196, 0.016150964, -0.007456965, -0.03850101, 0.0056187846, -0.014635944, -0.02765957, 9.095342E-4, -0.0019684858, 0.014218966, 0.006984389, -0.006907943, -0.027061902, -0.01433016, -0.030300435, -0.018235857, 5.8985077E-4, 0.023712175, 0.025616376, -0.007491713, 0.00773495, 0.007755799, -0.0045381156, -0.004232331, -0.007957338, -0.0053130006, 0.006459691, 0.0010719821, 0.024796318, 0.01976478, -0.014663742, -0.00850636, 0.012370361, 0.02360098, 0.003519993, 0.021682879, -0.02750668, -0.029466476, -0.008687051, 0.012460706, -0.008283972, -0.004121137, 0.011140274, -0.03847321, -0.01161285, 0.0074778134, 0.0231979, -0.006946166, 0.0043087774, 0.020056663, -0.0065118135, -0.0022551585, 0.0024636476, -0.005789051, 0.0040968135, -0.024421038, 0.02399016, 0.0023142304, -0.0035356297, 0.029522074, 0.022919916, 0.003540842, -3.8136155E-4, -0.012516303, 0.006529188, -0.015984174, -0.0013308562, -5.246979E-4, 0.035860147, -0.031662565, 0.022224952, -0.028493527, 0.0050628134, -0.024865815, 0.00493077, 0.0076724035, 0.035276376, 0.01433016, -0.052900665, -6.906206E-5, -0.009965785, 0.006598684, -0.013850634, 0.00483695, -0.02303111, -0.0040412163, 0.010403613, 0.0072901733, -0.022099858, -0.022780923, -0.0021960866, -0.007026087, -0.009965785, 0.012898534, 0.19147651, -0.012141023, 0.015275311, 0.033330478, -0.012488505, 0.014788835, 0.026978506, 0.0367775, -4.7735346E-4, 0.010758044, -0.0037875543, 0.007873943, 0.008186677, 8.843418E-4, 0.013982678, -0.008416015, -0.028743714, -0.025838764, -0.02147439, -0.01644285, -0.011946432, -0.006553511, -0.012558001, -0.024351541, -4.3261514E-4, 0.0019389498, -0.0062025543, -9.477573E-4, 0.025116002, 0.005285202, -0.006556986, -0.017290706, -0.0017348041, 0.0072206766, -0.020056663, -0.004760504, -0.0031586117, 0.02030685, 0.016164865, -0.005611835, -0.00948626, -0.012147972, -0.007721051, -0.013586548, 0.0042253817, 0.02980006, -0.023767771, -0.004315727, -0.011216721, 0.0017964821, -0.04141986, 0.013107022, 0.00405859, 0.01780498, -0.005455468, -0.002430637, 0.007686303, 0.006247727, -0.007971238, -0.0019128886, 0.01392013, 0.03691649, -0.010813641, 0.010771943, -0.008888591, 0.010306317, -0.037778247, -0.007992087, 0.017874476, -0.036888693, -0.004141986, -0.03563776, -0.008930288, 0.016567944, -0.009694749, -0.028938305, 0.0017070055, 0.012731742, 0.012842936, 0.024282046, -0.03171816, -0.017916175, -0.0028997376, -0.010716346, -0.014594246, -0.023642678, 0.020473642, -0.024490533, -0.011446059, -0.02340639, -0.019292204, -0.026589327, -0.01491393, 0.0045381156, -0.008916389, -0.0034817702, 0.03018924, 0.0027259965, -0.010299368, -0.008353468, -0.029661067, 0.03057842, 0.032385327, -0.014983426, -0.034220032, -0.024017958, 0.0087079, 0.0039022234, 0.043087773, -0.0043087774, -0.011307065, -0.017110016, 0.0037979786, -0.016748635, 0.014691541, 0.017068317, -3.8527072E-4, -0.017179511, 0.03691649, -0.010299368, 0.005080187, -0.031245586, 0.016957123, 0.0018816153, -0.016665239, -0.025699772, -0.033163685, -5.5857736E-4, -0.0029084247, -0.010278519, 0.00966695, -0.016748635, 0.016373353, -0.012870735, -0.005010691, 0.0044025974, 0.02166898, -0.015678389, 0.019320002, -0.009632202, -0.009069282, 0.0019007268, 0.014031325, 0.006390195, -4.777878E-4, -0.021641182, 0.00531995, -0.015831282, 0.007797497, -0.034776002, -0.022892118, 0.0036311874, 0.011168073, 0.0065326625, 0.03349727, 0.0090275835, -0.019306103, -0.03321928, -0.018708434, 0.045506246, -0.03383085, 0.015219714, 0.028215542, -0.011842188, -0.020279052, -0.013252965, -0.17924513, 0.026241845, 0.014246764, -0.029522074, 0.013246016, 0.0037250074, 0.03499839, 0.004798727, 0.011383512, -0.013586548, 0.036638506, 0.017791081, -0.0348872, 0.0011188922, 0.0060114395, 0.022433441, -0.02614455, 0.030022448, 0.02553298, 0.0018121188, 0.03719448, -0.0023020685, -0.009062332, 9.885865E-4, 0.01335026, 0.0074013676, 0.026978506, 0.0020779427, 0.006404094, -0.007248475, -0.030967599, -0.0075542596, 0.014288462, 0.0011145486, -0.022266649, 0.0021873994, -0.022572434, -0.013628245, -0.0031412377, -3.507397E-4, 0.031801555, 0.021599485, 0.011001281, 0.01180744, 0.025658075, 0.025824865, 0.03775045, -0.023253499, 0.013412807, -0.019014217, -0.010549555, -0.034914996, 0.026061153, -0.0058759213, 0.0069739646, 0.019945469, 0.00415241, -0.0025140326, 0.01685983, 0.008916389, -0.023322994, -0.011140274, 0.0074778134, -0.017304605, -8.6392724E-4, -0.015483799, -0.017457498, 0.006424943, -0.021543887, 0.0036624607, -0.015594994, 0.0105078565, 0.020028865, -0.0053894464, 0.013982678, -0.01916711, -0.04217042, 0.0012483292, -0.005921094, 0.002760745, -0.018041268, 0.04089169, 0.008068533, 0.00927777, 0.011494706, -0.008638403, 0.006730727, -0.0032055217, 0.004583288, -0.011487756, 0.013836735, -0.012933281, -0.028743714, -0.0058272737, 0.0064075687, 0.0071129575, 7.297123E-4, 8.448157E-5, 0.009951886, -0.00686972, 0.0018190684, -0.03447022, -0.021432692, 0.02689511, 0.015511598, -4.5433277E-4, -0.0024288995, 0.025004808, 0.021974765, 8.613211E-4, -0.0046458347, 0.005531914, 0.015678389, 0.010931785, -0.014274563, -0.010049181, -0.0069565903, -0.025713671, 0.0056987056, 0.0066508064, 0.059266537, -0.009632202, 0.016762534, -0.0091874255, -1.857943E-4, -0.0046805833, -0.08678711, 8.8738225E-4, 0.020557038, 0.044032924, -0.027131397, 0.041058477, -0.0061643315, 0.020418044, -0.019472893, 0.03891799, 0.012822087, -0.03266331, 0.008819094, 0.0040064678, 0.012745641, 0.0023733024, -0.00947931, -0.009117928, -0.014093871, 0.037416868, -0.009646102, -0.009618303, 0.010702447, -0.025254995, -0.012815137, 0.0067689503, -0.025421787, 0.019458994, 0.013704692, 0.010688548, 0.014455253, -0.020265153, 0.009840691, -0.037806045, -0.025477383, -0.033358276, -0.019778678, -0.024156952, 0.010799742, -0.042003628, 0.021905268, 0.0044269213, 0.0045763385, -0.019639686, -0.0029483852, 0.010528706, -0.031273384, 0.0348316, -9.286458E-4, -0.026005557, -3.6094696E-4, -0.009263871, -0.030995399, -0.0030248312, 0.01915321, 0.022016462, 0.024699023, 0.008846893, -0.009340317, -0.03383085, 0.003752806, -0.0056014103, -0.027631773, 0.0053894464, 0.01781888, 0.013954879, -2.9449104E-4, -0.008179727, 0.015136317, -0.0046006623, -0.027367685, 0.02050144, -0.042837586, -0.013635196, -0.020251254, -3.8592223E-4, -0.029105095, -0.018444346, 0.029299686, -0.038528807, 0.0071511804, -0.024323743, 0.009375066, -0.02576927, 0.02980006, 0.027159197, 0.018249758, 0.019125411, -0.0021995613, -0.03950176, -0.0062824753, 0.02301721, -0.010862289, -0.0103341155, -1.2440129E-5, 0.026325239, 0.015622793, 1.4529093E-4, 6.9366104E-4, 0.0060948352, -0.002845878, -0.008263123, -0.07983747, 0.031467974, -0.023712175, 0.010049181, -0.002833716, -0.011529454, 0.010570404, -0.004628461, -0.00987544, 0.0019580612, -0.00425318, 0.016498446, -5.6074915E-4, 0.007561209, -0.013808937, 0.016679138, 0.015219714, 0.0015515073, 0.008652302, 0.0035234678, -0.005243504, 0.028854908, 0.012342562, -4.365243E-4, 0.0037458565, 0.014788835, 0.0046527847, 0.01392013, -0.03232973, -0.010354965, 0.020543138, -0.007832245, -0.0025974282, 0.0018920397, -0.010375814, -0.037222277, -0.009687799, -9.364641E-4, 0.008777397, 0.00715813, -0.014274563, -0.024532232, -0.00637977, -0.022336146, -0.0052469787, 0.02147439, -0.014761037, 0.011202821, 0.009138778, -0.006056612, 0.018458245, 0.0068488712, -0.00396477, -0.018805727, 0.020529239, -0.014635944, 0.05359563, 0.01645675, -0.009493209, -0.025254995, 0.021849671, 0.0062234034, 0.01431626, -0.041892435, 0.012307814, 0.0027989678, 0.01431626, -5.4266922E-5, -0.005924569, -0.012606649, -0.023920665, 0.002604378, -6.5717543E-4, 0.04164225, 0.025227197, 0.013558749, 5.442437E-4, 0.0076029073, -0.011126375, 0.013586548, 0.014288462, -0.012328663, -0.02957767, 0.023170102, -3.068701E-4, 0.013600447, -0.004406072, 0.015831282, 0.0037076334, 0.009639151, 0.0017156926, 0.01722121, 0.010883138, -0.008916389, 0.0011475595, 0.008687051, -0.007561209, -0.0010372339, 0.013746389, 0.018055167, -0.002215198, -0.013385008, -0.0072276266, -0.016373353, -0.028715916, 0.006484015, -0.03560996, -0.008874691, 0.011849138, 0.02882711, 0.018903023, 0.019361699, -0.02999465, 0.00590372, -0.024838015, 0.006852346, -0.018527742, -0.02029295, -0.0064179935, 0.04175344, 0.013378059, 0.004704907, 0.038389817, -0.0049203457, 0.033413872, 0.01701272, 0.023739973, -0.026033355, 0.0020362448, -9.6252526E-4, 0.01954239, -0.023253499, -0.028854908, 0.0013430181, -0.0024636476, -0.0019806477, 0.023670476, 0.020626534, -0.025046505, 0.06944081, 0.02535229, -0.0068592955, 0.016053671, -0.005069763, 0.024726823, 0.003473083, 0.013864533, -0.018833527, -0.011786591, -0.011571152, -0.016595742, 6.2937685E-4, -0.040196724, 5.3512235E-4, -0.008395166, 0.011084677, 0.030272635, -0.021057412, -0.021432692, -0.001190126, 0.0063762954, 0.024462735, 0.019500691, -0.007429166, -0.01102908, 0.017943973, -0.012516303, -0.01277344, -0.025602477, -0.0029153742, -0.025324492, -8.0528966E-4, -0.0039369715, 0.04119747, -0.0010806691, 0.015039023, -0.005229605, 0.020014966, 0.022224952, -0.008659253, -0.00687667, -0.027951455, -0.02301721, 0.022600232, -0.012981929, -0.020459743, -0.023170102, -0.010076979 ], + "id" : "1e650602-6bc9-4537-9bbb-12259e136280", + "metadata" : { + "source" : "movies.csv" + } + }, + "1f729e81-13c5-41a0-8237-7a1cb54f8790" : { + "text" : "After Snow escapes the castle the Queen sends the Huntsman to find her in the Dark Forest.,39.683,Universal Pictures-Roth Films,5/30/12,170000000,396600000,127,Released,The Fairytale is Over,5.985,7620,Kristen Stewart-Chris Hemsworth-Charlize Theron-Sam Claflin-Ian McShane-Ray Winstone-Nick Frost-Noah Huntley-Toby Jones-Eddie Marsan-Lily Cole-Rachael Stirling-Hattie Gotobed-Bob Hoskins-Sam Spruell-Johnny Harris-Brian Gleeson-Vincent Regan-Liberty Ross-Chris Obi-Raffey Cassidy-Xavier Atkins-Izzy Meikle-Small-Anastasia Hille-Elliot Reeve-Mark Wingett-Jamie Blackley-Dave Legeno-Greg Hicks-Peter Ferdinando-Andrew Hawley-Joey Ansah-Gregor Truter-Tom Mullion-Matt Berry-Darren Kent-Craig Garner-Duncan Casey-Ryan Stuart,magic-immortality-fairy tale-queen-imprisonment-forest-deception-eternal youth-evil queen-evil stepmother-based on fairy tale-sorceress-live action remake,/8yKdQHaqOo1lkaErmqMuYFespYI.jpg,/KBe9fHU5rVg4daoKnFwl1Cbc28.jpg,290595-12445-408-50620-62764-24428-72105-70160-10528-165-62177-70981-8966-10195-85-44833-62213-10681-50619-1894-102651\r\n458423,Mamma Mia! Here We Go Again,Comedy-Romance,en,Five years after meeting her three fathers Sophie Sheridan prepares to open her mother��s hotel. In 1979 young Donna Sheridan meets the men who each could be Sophie��s biological father.,17.894,Playtone-Littlestar,7/9/18,75000000,395044706,113,Released,Discover how it all began.,7.", + "embedding" : [ -0.0019628457, -0.034897998, -0.019741762, -0.032925155, -0.01816882, 0.031272233, -0.006598361, -0.014209803, -0.023314208, -0.03076569, 0.034551416, 0.022980958, -0.004205622, -0.01752898, 0.016369266, 0.009410995, 0.007898038, -0.02443393, 0.0043022647, -0.021994535, 0.008684509, 0.00887113, -0.021474665, 0.028419606, 0.009617611, 0.0040689893, 0.0351646, -0.005135391, -0.009850886, -0.0070182565, 0.0055186287, -0.026100183, -0.009964191, -0.020754844, -0.023220899, -0.009590951, 0.0049621006, -0.027513165, 0.016635867, -0.014809654, 0.0012763495, 0.009570955, -0.021567974, -4.897872E-6, -0.012870136, 0.019208562, 0.012623531, -0.009131065, 0.0048154704, 0.03652426, -7.2148745E-4, 0.03505796, -0.01860871, -0.019821743, -0.02475385, 0.0062651103, 0.00895111, -0.010697342, -4.198957E-4, 0.015969366, 0.010757327, -0.018968621, -0.021128085, -0.019368522, -0.0150629245, -0.023220899, -0.018995281, -0.011110573, -0.008624524, -0.0018162155, 0.011177223, 0.025407022, 0.012296945, 0.013569962, 0.012556881, -0.031272233, -0.022834327, 0.021554645, 0.013203386, 0.005112063, 0.014862974, -0.013823233, -0.011617114, 0.02391406, 0.011670434, 0.027379865, -0.02436728, 0.03063239, -0.015542805, 0.021234725, 0.021301374, 0.014929624, -0.0061817975, 4.8904517E-4, 0.009617611, -7.9147005E-4, -0.008557874, 0.040283326, -0.0114038335, -0.027433185, 0.0110505875, 0.0063284277, -0.020154992, -0.010337432, -0.007864713, -0.011703759, -0.0019228556, 0.0022794337, -0.0053620012, 0.0068782913, -0.016529227, -0.010917287, 0.016502567, -0.032978475, -0.01898195, -0.026593393, 0.016249297, -0.0047921427, -0.015969366, -0.016982447, 0.035884418, 0.046468455, 0.013589957, -0.04902782, 0.033191755, 0.016849147, 0.010404082, -0.0037290736, 0.0047854776, -0.007251532, 0.013676602, -0.013676602, 0.032631893, 0.009770906, -0.040976487, 0.029006127, -0.03089899, -0.0040556593, -0.022341115, -0.022487747, 0.032525253, 0.03020583, -0.021994535, -0.011690429, -0.021674614, -0.0038123862, 0.009384335, -0.007851383, 0.011317189, -0.018075509, 0.038683724, 0.001002251, 0.005948522, 0.03780394, 0.03591108, -0.0028259645, 0.01205034, -0.0137565825, -0.0036690885, -0.016595878, -0.0014079835, 0.01932853, -0.023034278, -0.0058452147, 1.4288117E-4, 0.019648451, 0.014089833, -0.020794833, 0.0041323067, 0.008671179, -0.010843973, 0.01847541, -0.023087598, 0.015662776, 9.997516E-4, 0.029885909, -1.2465654E-4, -8.527048E-4, -0.014636364, -0.0056685917, -0.008944444, 0.013343352, 0.032258652, 0.025806922, -0.019501822, 0.0070515815, 0.00229443, -0.020208312, 0.014276453, -0.019341862, -0.0013071753, 0.014929624, 2.2661037E-4, 0.010464067, -0.64069414, 0.0028176333, 0.0019078593, -0.011523804, 0.0034008217, 0.026220152, 0.03108561, 0.005728577, -0.026820004, -0.005781897, -0.025420351, 0.020248303, 0.015449495, -0.0077447426, -0.040523265, -0.014902964, -0.008257949, -0.028099686, 0.009990851, -5.6194374E-4, -0.025140421, 0.023580808, 0.005182046, 0.0019378519, 0.007824723, 0.0041456367, 0.0010480729, -0.027259894, -0.0042222845, -0.005908532, -0.01890197, 0.010630692, 0.025460342, 0.013636612, 0.032978475, 8.7394955E-4, 0.0016887471, 0.03591108, 0.03100563, 0.032152012, -0.040336646, -0.0028342959, 0.017542308, 0.0069849314, 8.031338E-4, 0.012616865, 0.007271527, 0.012203635, 0.009470981, -0.013509977, -0.005981847, 0.008317933, -0.004318927, -0.01763562, -0.013583292, 0.016169317, 0.027993046, -0.01776892, 0.021461334, -9.239371E-4, -0.022954298, 0.015916046, -0.001654589, 0.010444072, -0.011550464, 0.013243376, -0.0039023638, -5.531959E-4, 0.029246068, -0.01195703, 0.020674864, 0.01766228, -0.0055819466, 0.0015937707, 0.0022511075, -0.014916294, 0.04340255, 0.0039390214, -0.0033325055, 0.006375083, -7.0440833E-4, -0.022661038, 9.131065E-4, 9.547628E-4, 0.01842209, -0.0015437831, -0.025380362, 0.040976487, 0.013196722, 0.010557377, -0.008231289, 0.03135221, -0.0040190015, 0.0056286016, -0.010897293, -0.008191299, -0.0037890587, 0.021048104, 0.023634128, -0.06819639, -0.013863223, -0.028952807, 0.0034424781, -0.009410995, 0.027993046, 0.012523555, -0.022061186, 0.0038490437, 0.0368975, -0.016982447, -4.647283E-5, 0.003699081, -0.020994784, -0.011350513, -0.0023110926, -0.020234972, 0.03065905, 0.0018495405, 0.011777074, -0.010650687, 0.010137482, 0.022407766, 0.008784484, -0.012136985, 0.008431239, 0.046148535, -0.019155242, -0.013210052, -0.0023577476, 0.0054053236, 0.01903527, 0.0039990065, 0.023327539, -0.026193492, 0.0070582465, -0.005075406, 0.032365292, -0.0020511572, 0.018915301, -0.0068149734, -0.01924855, -0.016889138, -0.023794089, -0.02447392, -0.00593186, -0.009371005, -0.023074267, -0.015009604, -0.008864464, -0.011517139, -0.03172545, 0.0012605202, -0.0035691133, -0.004385577, -0.0015596126, -0.0023827413, -0.0069449414, -0.018102169, 0.0063650855, -0.015502815, 0.016089337, 0.029006127, -0.016875807, -0.0056819217, 0.017488988, -0.0019961707, -0.024847161, 0.02447392, 0.005052078, -0.026899984, -0.0062151225, -0.023247559, -0.006455063, 0.029272728, 0.0013954866, 0.02467387, -0.0011363843, 0.021954546, -0.019648451, -0.009790901, 0.0048887855, -0.0062784404, -0.03177877, -0.003659091, 0.034924656, 0.012190305, -0.012776826, -0.009064415, -0.0031925403, -0.010564042, -0.025886903, 0.010090826, -0.0011838726, -0.005915197, -0.013356682, -0.00909774, 9.572622E-4, -0.0012746833, 0.012616865, 0.009557625, 0.03145885, 0.02427397, 0.0035524508, -0.007364837, 0.008797814, -0.032018714, 0.0076914225, -0.019235222, 0.020648204, -0.020021692, 0.02378076, -0.022421096, -0.0047688154, -0.013136736, 0.0051987083, 0.022061186, -0.014209803, 0.008611194, -0.0049954257, 0.008311269, -0.0012221964, -0.01916857, 0.01835544, 0.007271527, -0.008104653, -0.013903213, 0.022354446, -0.022301126, 0.0035991059, -0.0034191506, -0.0026426767, -0.020461584, 0.0014588042, 0.0038290487, -0.00904442, -0.013223382, 0.027726445, -0.019475162, 0.036044378, -0.01876867, -0.002341085, 0.015902717, 0.017342359, -0.015462825, -0.0061984602, -0.021687945, 0.008011343, 0.023220899, -0.0025960216, 0.044868853, -0.013330022, 0.010977273, 0.015982697, 0.017435668, 0.010310772, -0.005995177, 0.001101393, 0.009470981, 0.033964895, 0.027779765, 0.0062617776, -0.020248303, 0.010597367, 0.007918033, 0.010224126, -0.0019478494, -0.003942354, 0.01213032, 0.0016187645, -0.039616823, -0.015902717, -0.012770161, 0.00441557, 0.032471932, -0.005182046, 0.012230295, -0.0029092773, -0.0021111423, 0.022980958, 0.019381851, -0.019635122, -0.03785726, 0.033138435, 0.028819507, -0.014703014, -0.017315699, 0.016529227, -0.01922189, -0.026286803, -0.010803983, -0.004972098, 0.014329773, -0.032258652, 0.002564363, -0.0034191506, -0.011857054, 0.01856872, -0.018022189, 0.007298187, 0.011070583, -0.020448253, 0.003355833, -0.02356748, -0.008151309, 0.021541314, -0.020701524, 0.008211293, -0.0054819714, -0.0083712535, 0.0062317853, 6.3859136E-4, 0.0069049513, -0.041429706, 0.0052386983, -0.020261632, -4.4552735E-6, -0.0031625477, 0.005558619, 0.029725948, -0.004009004, -0.016755838, -0.021434674, -0.013416667, -0.016142657, 0.07416824, 0.040469944, 8.0063444E-4, 0.011357179, -0.0134033365, 0.010930617, -0.014129823, -0.016849147, 0.0019561807, -0.0012363595, 0.030099189, 0.0019195231, 0.019021941, 0.015329525, 0.0035891084, -0.008018008, 0.006568368, 0.010817313, -0.013170062, 0.0034658057, -0.021701274, -0.009917536, 0.0057252445, 0.036231, -0.012530221, -0.017329028, 0.009524301, 0.003415818, 0.0045588673, -0.005921862, -0.01774226, 0.005761902, 0.010017511, 0.020328283, 0.012756831, 6.456729E-4, 0.022021195, -0.014703014, 0.023714108, 0.0070049264, -0.011397169, -0.0042889346, 0.0077247475, 0.0026859993, 0.008244619, -0.021914555, -0.010244122, 0.010237456, 0.040523265, -0.03039245, 0.029459348, 0.0019961707, -0.027019953, 0.011270533, 0.00884447, 0.020261632, 0.002999255, 0.011363843, -0.0053953263, -0.0019695107, -0.0030675712, -0.022621047, 0.015582795, 0.001239692, -0.00462885, -0.016275957, -0.0065383757, 0.003389158, -0.0022061185, 0.022554396, -0.0130767515, -0.021288045, -0.014902964, -0.019875063, 0.029565988, -0.0061218124, 0.0094043305, -0.014809654, 0.0052786884, 0.015356185, -0.03668422, -0.04500215, 0.0040889843, -0.02419399, -0.034204837, -0.0049421056, 0.007431487, 0.01816882, -0.022820998, 0.010330766, 0.0065317107, 0.014103163, -0.01774226, -0.012296945, 0.022434426, -0.0010930618, 0.01201035, 0.042656068, 0.02504711, 0.008631189, 0.0182488, -0.011737084, -0.014276453, -0.02423398, 0.0055152965, -0.019181902, 0.002815967, -0.00935101, -0.0070915716, -0.028472926, -0.005901867, -0.014996274, 0.012123655, -0.009497641, 0.00610515, -0.010110822, 0.010224126, 0.01209033, 0.008697839, 0.0041389717, 0.005868542, -0.00895111, 0.012663521, 0.006111815, -0.019515151, 0.024980461, -0.008971104, -0.020648204, -0.012296945, 0.014289783, -0.004292267, 0.0028776184, -0.0030475762, -0.0054119886, -0.01867536, -0.027513165, 0.0036757535, -0.0015629451, -0.0080713285, 0.022394435, -0.020901473, 0.012543551, -0.0013180058, -0.019675111, 0.0026193492, -0.029965889, 0.004238947, -0.0064250706, 0.013496647, 0.0354312, -8.747827E-4, 0.003699081, -0.026993293, -3.5095448E-4, 0.008691174, -0.04841464, -0.0238874, 0.0058652097, 0.028126346, -0.003012585, 0.045375396, 0.010750663, 0.00904442, -0.0012255289, 0.0041356394, 0.026899984, -0.017222388, -0.0057319095, -0.033325054, 0.014249793, 0.010697342, 0.022167826, 0.013616617, 0.010977273, -0.0017512316, 0.04494883, 0.0037357386, 0.009990851, -0.005848547, -0.030072529, -0.016795827, 3.5949404E-4, -0.029912569, 0.014916294, -0.027219905, 0.0019745096, 0.032658555, -0.0024493914, 0.0038890338, -0.020741513, 0.03801722, -0.019368522, 0.006638351, -0.028073026, -0.005848547, -0.013823233, -0.0064850557, -0.021168074, -5.9985096E-4, 0.013243376, -0.012776826, 0.0063284277, 0.013083416, -0.019488491, -0.005282021, 0.027073273, -0.01830212, -0.013476652, 0.015969366, -0.034044877, -0.0026343456, -0.026500084, 0.0012546882, -0.016995778, -0.004365582, -0.0040523265, -0.00903109, 0.0015129575, -0.02494047, -0.040763207, 0.017502319, -0.0070449165, 0.044815533, 0.0118104, 0.04209621, 0.04214953, -0.014303113, -0.016009357, 0.01818215, -0.0024543903, -0.0039056963, 0.03724408, 0.015796077, -0.008211293, -0.0037890587, -0.020941464, 0.01231694, -0.034498096, -0.03681752, 0.016849147, 0.02423398, 0.01844875, -0.010277446, -0.008104653, -0.0144230835, 0.009497641, -0.014809654, 0.005242031, -6.956605E-4, -0.014383093, -0.02356748, 0.00932435, 0.019555142, 0.012463571, 0.013176726, -0.016449247, 0.006541708, -0.026620053, 0.010597367, -0.010550712, -0.029432688, 0.047428217, -0.040363304, 0.012256955, 0.016315946, 0.0011722088, 0.0048954505, -0.0093910005, 6.5983605E-4, 0.03039245, -0.015489485, 0.022154495, 0.012790156, 0.007438152, -0.01790222, -6.8149733E-4, -0.023954049, -0.012176975, -0.028899487, -0.0040356643, 0.026566733, 0.013310026, -0.018835321, -0.0018878643, -0.01835544, -0.017648948, 0.0019411844, -0.014369763, -0.009697591, -0.039616823, 0.0077647376, -0.023954049, 0.012463571, 0.014529724, 0.0035091282, -0.0063017677, -0.014249793, 0.017862229, -0.022101175, -0.0048054727, -0.0038290487, -0.015462825, -0.040150024, -0.01882199, -0.016355937, -0.019648451, 0.011897044, -0.0042689396, 0.010990603, -0.012910126, 0.0010455736, -0.008391249, 0.003752401, -0.017062427, 0.01201035, 0.026913313, -0.0127368355, -0.0055252938, -0.0047754804, 0.029619308, 0.0043089297, -2.1109339E-4, 0.0150895845, 0.0056752567, 0.0359644, -0.021368025, 0.008577869, 0.0013471653, -0.022327786, -0.021474665, 0.013276702, 0.01916857, 0.012390255, -0.010937283, -0.020141663, -0.0087511595, 5.5944436E-4, 0.020808164, -0.025273722, -0.005915197, 0.031485513, 0.028526247, 0.028872827, 0.033191755, -0.023327539, -0.012463571, -0.012983441, -0.019928383, -0.018888641, -0.003282518, 0.020194983, 0.019461831, 0.009464315, -0.019541811, -0.039483525, 0.015916046, -0.02451391, -0.03097897, -0.003612436, 0.015449495, 0.042869348, 0.020048352, -0.0041622994, 0.019461831, -0.0077380775, 0.0070982366, -0.01876867, -0.009970856, 0.00594519, -0.0010830642, 0.0054453136, 0.028926147, -0.023554148, -0.019848403, 0.0047788126, 0.012336935, 0.0013429996, 0.028792847, -0.036097698, -0.022154495, -0.019555142, -0.0021128084, -0.0012288614, 0.0010714005, 0.019648451, -0.023874069, 0.0020478247, 0.01787556, 0.01828879, -0.010290776, -0.014289783, 0.020101672, -0.008957774, 0.0053953263, -0.031538833, -0.01850207, -0.0075847823, -0.015716096, 0.026260143, 0.012596871, -5.623603E-4, 0.01870202, 0.021514654, -0.019755092, 6.3400913E-4, -0.0054453136, 0.007818058, -0.019661782, -0.009757576, 0.0015587794, 0.03097897, -0.029379368, -0.0040623243, -0.009524301, -0.001298844, 0.0024943803, 0.0031942064, -0.021034773, 0.023580808, -0.004488885, -0.04374913, 3.3325053E-4, -0.01922189, 0.0021861235, 0.007971353, 0.010597367, -0.031752113, 0.004408905, -0.01935519, -0.011383839, -0.023487499, -0.02471386, -0.0010597367, -0.0030492425, -0.021288045, 0.014916294, 0.19355191, -0.015702765, -5.252862E-4, 0.06126478, 0.015249545, 0.01882199, 0.033858255, 0.011817064, -0.015262875, 0.004492217, -0.005088736, 0.013350016, 0.001279682, 0.004498882, 0.02523373, -0.009224375, -0.013663272, -0.01210366, -0.0023244226, -0.028126346, -0.0026460092, 0.008064663, -0.012930121, -0.020354943, 0.015129575, -0.010857303, -0.0090244245, 4.773814E-4, 0.013889883, 0.010390752, -0.014223133, -0.0038590413, -0.009544295, 0.02418066, -0.023314208, 0.0057519046, 0.003929024, 0.019755092, -0.0035257908, 0.0077980626, 0.020914804, 0.0034491431, -0.008311269, 9.0227585E-4, 0.0017512316, 0.016875807, -0.015942706, 0.01209033, -0.034071535, 0.022007866, -0.04284269, -0.009650935, 0.014743004, 0.019395182, -5.2778557E-4, -0.0014063172, 0.012983441, 0.013163396, -0.007478142, -0.00607849, -0.0017812242, 0.03647094, -0.013136736, 0.012963446, -0.017302368, 0.026540073, -0.03839046, -0.009590951, 0.019981703, -0.012856806, -0.010564042, -0.014276453, -0.0238874, 5.252862E-4, -0.0077980626, -0.029086107, 0.008244619, 9.95586E-4, 0.0041656317, 6.556704E-4, -0.03121891, -0.014356433, -0.011310523, -0.0043689148, -0.012770161, -0.03617768, 0.019635122, -0.003929024, -0.022514407, -0.012903461, 0.0013130071, -0.0041489694, -0.0041856267, 6.5733667E-4, -0.0013205053, 0.0150762545, 0.024007369, 0.008038003, -0.020874813, -0.01892863, -0.01930187, -0.009304355, 0.020168323, 0.005075406, -0.020781504, -0.022407766, -0.0023960713, 0.0015671107, 0.027099933, -0.03167213, 0.008131313, -0.03601772, -5.493427E-5, -0.019635122, -0.014649694, 0.016422587, -0.0039456864, -0.021314705, 0.026326792, -0.012550215, 0.004252277, 0.0076181074, 0.015609455, 0.013210052, 0.0025277054, -0.032791853, -0.003652426, 3.6996018E-5, 0.0060385, -0.026073523, 0.004448895, -0.021941215, 0.0041356394, 0.0137699125, 0.009530965, 0.0062051252, 0.040150024, 0.0070649115, 0.0056552617, 0.008537879, -0.0014088167, -0.0053819963, 0.017342359, 0.014049843, -0.0037923912, -0.033698294, 0.0015771082, -0.020248303, -0.020888144, -0.022314455, -0.0185154, -0.010130816, 0.0055952766, -7.1148993E-4, 0.037990563, 0.0096909255, -0.033325054, -0.04385577, -0.00594519, 0.040976487, -0.03679086, 0.030072529, 0.0035491183, -0.004385577, -0.016289286, 0.0027776433, -0.16998443, 0.0070382515, -3.0617393E-4, -0.03585776, 0.03193873, 0.011470484, 0.03119225, 0.0021711274, -0.0023094262, -0.010704007, 0.011697094, 0.012703511, -0.047028318, -0.007498137, -0.0020611547, 0.01859538, -0.009924201, 0.0493744, 0.03073903, -0.0064450656, 0.03033913, 0.0069316113, -0.016369266, -0.008437904, 0.021101424, -0.0018212142, 0.026833333, 0.0048254677, -0.0016512565, -0.013956533, -0.03023249, -0.01178374, -0.019928383, -0.0118104, -0.0018678693, 4.251027E-4, -0.02471386, -0.017342359, 0.0063550877, -0.0011097243, 0.04348253, 0.014103163, 0.017129079, 0.0076181074, 0.006665011, 0.027153254, 0.016169317, -2.3889898E-4, 0.00927103, -0.020194983, -0.007331512, -0.019488491, 0.024900481, -0.016302617, -0.0033774942, 0.028312966, 0.011117238, 9.730916E-4, 0.0093910005, 0.0028442934, -0.029512668, -0.0075314622, 0.013123406, -0.010810647, 0.0040756543, -0.013036761, 0.0107373325, 0.032978475, -0.034844678, 0.0022394436, -0.013383342, -0.001285514, 0.010344096, 0.021208065, -6.006841E-4, -0.017035767, -0.013096746, -0.0030409112, 2.0942713E-4, 0.010284112, -0.007891373, 0.03807054, -0.021714605, -0.0063717505, 0.032205332, -0.017835569, -0.0033608316, -0.0040789866, 0.0058318847, 0.0032225328, 0.0027909733, -0.011657104, -0.02523373, -0.006435068, 0.026473423, -8.856133E-4, 0.009430991, 1.5818987E-4, 0.02536703, -0.0040956493, -0.013250042, -0.033431694, -0.028046366, 0.021168074, 0.0064983857, 0.009777571, 0.007351507, 0.009697591, 0.013283366, -0.007978018, -0.0014887968, 0.015009604, 0.026700033, -0.006125145, -0.029699288, 0.0033141766, -0.004498882, -0.025407022, 0.001443808, -6.469226E-4, 0.03071237, -0.0022444425, 0.0070382515, 0.0047888104, 0.006571701, -0.010484062, -0.07496804, -0.010077496, 0.0011655438, 0.020554893, -0.028792847, 0.03521792, -0.0034591407, 0.022074515, -0.013310026, 0.015182895, -0.011263868, -0.034977976, 0.011457154, -0.0033391705, 0.03135221, 0.0026543406, -0.014489734, -0.015422835, 0.011077248, 0.041403048, -0.006408408, -0.004015669, -0.0052120383, -0.034444775, -0.017382348, 0.002472719, -0.020488244, 0.0013305028, 0.026460093, 0.03052575, 0.010244122, -0.016942458, 0.0017978867, -0.038097203, -0.041403048, -0.01876867, -0.033485014, -0.0071848817, 0.011337183, -0.052200366, 0.011190553, 8.697839E-4, 0.0049887607, -0.0181155, 0.005222036, 0.00892445, -0.027299885, 0.020528233, -0.007338177, -0.033245075, -0.023500828, -0.0064517306, -0.028579567, -0.014356433, 0.018888641, 0.0019045268, 0.033778276, -6.2817725E-4, 0.0018961956, -0.016675858, 0.011503809, -0.010430742, -0.010797317, 0.027139924, -0.0036824185, 0.006151805, -0.0043489197, -0.0016170982, 0.023300879, 0.0137565825, -0.016702518, 0.019608462, -0.021981206, 0.0031458852, -0.022034526, -0.0013646609, -0.025740271, -0.0150762545, 0.016315946, -0.0484413, 0.007918033, -0.04396241, 0.01844875, -0.013223382, 0.011537134, 0.008344593, 0.016355937, 0.0035924409, -0.0068016434, -0.011430494, -0.0030675712, 0.011150563, -0.0058185547, -0.03025915, -0.0020444922, 0.031752113, -0.0016912465, 0.03055241, 0.008271279, -0.0037823936, -0.026753353, -0.0075381272, -0.06835635, 0.022167826, -0.007878043, -0.0077180825, -0.013663272, -0.010697342, 0.007818058, -8.168804E-4, 0.0041389717, -2.0442838E-4, -0.0088578, 0.0063184304, -0.011043923, 0.026113512, 0.0069849314, 0.020221643, -0.008038003, -0.01226362, -0.005625269, 0.024087349, -0.0175823, 0.00305924, 0.010757327, 0.0010922287, 0.015636116, 0.008217959, 0.016689187, 0.016395926, 0.0010972274, -0.014609704, 0.029965889, -0.022474416, 0.001647924, 0.010544047, -0.0033441691, -0.04412237, -0.021021444, -0.020608213, 0.033405036, 0.0039990065, -0.023354199, -0.01922189, -0.013096746, -0.0093776705, 2.6097684E-4, 0.033245075, -0.02447392, 0.014982944, 0.019581802, 0.019501822, 0.058438815, 0.02539369, 0.005302016, -0.015529475, 0.0016595877, -0.016195977, 0.046815038, 0.016969118, -0.016675858, -0.019368522, 0.0103840865, 0.00887113, 0.022980958, -0.0090244245, 0.010417412, -0.012630195, 0.007951358, -0.0015671107, -0.010530717, -0.02359414, 0.003619101, 0.00923104, 0.019795083, 0.022434426, 0.0120703345, 0.023140918, -0.01787556, 0.0031758777, -0.009697591, 0.02434062, 0.01924855, -0.0110505875, -0.019808412, 0.017035767, 0.015422835, 0.007978018, 0.007451482, 0.0010689012, -0.007311517, 0.01190371, -0.0020811497, 0.015329525, 0.026246812, 0.0080579985, -0.009630941, 0.026540073, -3.234613E-4, -0.00895111, -0.020075012, 0.0021611298, -0.015182895, 0.009684261, -0.007431487, -0.016622538, -0.01187705, -0.006635018, -0.007971353, -0.013616617, 0.014249793, 0.028979467, 0.019648451, 0.004438897, -0.0035591158, 0.016515898, -0.041003145, 0.016329277, -0.016822487, -0.02460722, -0.016489238, 0.038310483, -0.002880951, -0.0027159918, 0.022487747, -0.0062417826, 0.034844678, 0.012123655, 0.017195728, -0.012523555, 0.0064583956, -0.011517139, -0.005295351, 0.0014513062, -0.017395679, 0.003949019, -0.007391497, -0.0033724955, 0.0048088054, 0.021714605, -0.014036513, 0.065690346, 0.033991557, 7.410659E-4, 0.0124369105, -0.01835544, 0.0057052495, 0.021887895, 0.006698336, -0.022181155, -0.014716344, 0.0032491928, -0.005182046, 0.0070982366, -0.03681752, 3.9198596E-4, -0.0042356146, 0.0017445666, 0.01831545, -0.02496713, 0.0014029847, 0.0054219863, 0.0061151474, 0.011550464, 0.015756086, -0.011323853, -0.0013663272, 0.033938237, -0.009824226, -0.009870881, -0.022114506, -0.0010788987, -0.025780262, 0.016329277, 0.0010255786, 0.03807054, -0.0012371927, 0.0077780676, 0.008184633, 0.02419399, 0.008277943, -0.012190305, 0.017702268, -0.0093776705, -0.0089911, -0.010690677, -0.0038557088, 0.007878043, -0.0087511595, -0.016369266 ], + "id" : "1f729e81-13c5-41a0-8237-7a1cb54f8790", + "metadata" : { + "source" : "movies.csv" + } + }, + "b9d229fc-1327-47c2-9e9f-fcaad751ea12" : { + "text" : ",/9X7YweCJw3q8Mcf6GadxReFEksM.jpg,283995-246655-297762-293660-127585-284052-271110-118340-315635-209112-293167-284053-330459-99861-102899-141052-324552-297761-76338-259316-76341\r\n330,The Lost World: Jurassic Park,Adventure-Action-Science Fiction,en,Four years after Jurassic Park's genetically bred dinosaurs ran amok multimillionaire John Hammond shocks chaos theorist Ian Malcolm by revealing that he has been breeding more beasties at a secret location. Malcolm his paleontologist ladylove and a wildlife videographer join an expedition to document the lethal lizards' natural behavior in this action-packed thriller.,2.116,Universal Pictures-Amblin Entertainment-Digital Image Associates,5/23/97,73000000,618638999,129,Released,Something has survived.,6.524,7378,Jeff Goldblum-Julianne Moore-Pete Postlethwaite-Arliss Howard-Richard Attenborough-Vince Vaughn-Vanessa Lee Chester-Peter Stormare-Harvey Jason-Richard Schiff-Thomas F. Duffy-Joseph Mazzello-Ariana Richards-Thomas Rosales Jr.-Camilla Belle-Cyd Strittmatter-Robin Sachs-Ross Partridge-Ian Abercrombie-David Sawyer-Geno Silva-Alex Miranda Cruz-Robert 'Bobby Z' Zajonc-Bob Boehm-Bradley Jensen-Alan D. Purwin-Ben Skorstad-Rick Wheeler-Kenyon Williams-Gordon Michaels-J. Scott Shonka-Harry Hutchinson-Billy Brown-Brian Turk-Jim Harley-Colton James-Carey Eidel-Katy Boyer-David Koepp-Eugene Bass Jr.-Bari Buckner-Patricia Bethune-David St. James-Mark Brady-Marjean Holden-Jacqueline Schultz-Domini Hofmann-Thomas Stuart-C. Ransom Walrod-David Gene Gibbs-Michael N. Fujimoto-Paul Fujimoto-Darryl A. Imai-Darryl Oumi-Vincent Dee Miles-Bernard Shaw-Sean Michael Allen-Christopher Caso-Michael Chinyamurindi-Tory Christopher-Michael Fallavollita-Elliot Goldwag-Larry Guardino-Henry Kingi-Brian Lally-David Lea-J. Patrick McCormack-Johnny Meyer-Michael Milhoan-Kenneth Moskow-Mark Pellegrino-Bob Quinn-Chad Randall-Eli Roth-James Ryan-Theodore Carl Soderberg-Steven Spielberg,exotic island-dna-paleontology-tyrannosaurus rex-velociraptor-san diego california-island-dinosaur-creature-scientist-amusement park-theme park-costa rica-animal horror-father daughter relationship,/jElpCJkSaRPYwIMwZY28gOKV7BK.jpg,/w9eBtIHHpGgGfjqnEAJM3s7mCOa.jpg,331-329-135397-774823-87-217-8373-1858-564-36668-607-38356-1734-36658-89-351286-85-36657-1894-1893-558\r\n615,The Passion of the Christ,Drama,en,A graphic portrayal of the last twelve hours of Jesus of Nazareth's life.,55.241,,2/25/04,30000000,611899420,127,Released,\"By his wounds, we were healed.\",7.", + "embedding" : [ 0.012120339, -0.038672835, -0.0101025095, -0.03340777, -0.01255464, 0.013409879, 0.0038151674, -0.024922196, -0.01083748, -0.015781831, 0.017037963, 0.04642344, 0.020779632, -0.014766234, 0.014926592, 0.024107046, 0.034102652, -0.01685088, 0.01087757, -0.012761768, -2.2362325E-4, -0.0050712996, -0.01603573, 7.0156314E-4, 0.017278498, 0.029826457, 8.247543E-4, -0.0098953815, -0.0011634256, 2.5765743E-4, 0.006023421, 0.0021999017, -0.0044833226, -0.013937722, -0.02687321, -0.0036548101, 0.004510049, -0.012541276, 0.04097129, -0.0111381505, 0.006818526, 0.025977882, -0.009648164, -0.00898669, -0.008224993, 0.0073096203, 0.025897704, -0.0061236443, -0.011512318, 0.021233978, 0.011846395, 0.018481178, -0.018294094, -0.020833086, -0.012274015, -0.008786243, 0.006942135, 9.2205446E-4, 0.020953353, -0.022289664, 0.014071353, -0.01775957, -0.022850914, -0.010490039, -0.015554658, -0.0096414825, -0.009815203, -0.0013312997, 0.002338544, 0.0056860023, 0.020151567, 0.007115855, 0.0068285484, 0.0011559088, 0.01001565, -0.032819793, -0.0028597051, -0.00576284, -0.004403144, 0.014726145, 0.014712782, -0.0058630635, -0.0015150424, -3.474408E-4, 0.021140438, 0.0028730682, -0.02652577, 0.00842544, -0.008365306, 0.008619205, 0.002605806, 0.035198428, -0.021100348, 0.023719518, -0.0067951404, 0.019483412, -0.016356444, 0.029131575, -7.136735E-4, -0.047011413, -7.4791646E-4, -0.0096882535, 0.0024454487, -0.015474479, -0.011812988, -0.020525733, 0.008545708, -0.01659698, 0.02712711, -0.01246778, -0.0022800802, 0.00550226, 0.016476711, -0.0439379, 0.0032472352, -0.029425563, 0.013122572, -0.004302921, -0.0034977936, -0.016677158, 0.02425404, 0.012975578, 0.015634837, -0.036427833, 0.024908833, 0.029719552, 0.011031246, -0.0025440017, 4.8963262E-5, 0.0017488968, 0.020819722, -0.0016236176, 0.034236282, 0.0029048056, -0.029479016, 0.045782007, -0.01225397, -0.011726127, -0.02321172, -0.01212702, 0.046075996, 0.040490218, -0.023666065, -0.022904366, -0.023960052, 0.00169795, 0.0147795975, 0.012721679, 0.0073096203, -0.014552425, 0.03581313, 0.006504493, 0.0056960247, 0.016877605, 0.022730647, -0.0059031527, 0.018561358, -3.188354E-4, -0.003684877, -0.0035479052, -0.015140401, 0.006738347, -0.01182635, -0.01624954, 0.0060735326, 0.02824961, 0.02179523, -0.020298561, 0.0029916659, -0.026084786, -0.020499008, 0.03461045, -0.0063474765, 0.014498972, -0.022022402, 0.04909606, -0.003958821, -0.012441054, -0.027528003, -0.01685088, -0.006307387, 0.010730576, 0.022075854, 0.033354316, -0.0029215096, -3.8627733E-4, 0.029986814, -0.048214093, 0.01655689, 4.8315988E-4, -0.0014858106, -0.0016653773, -6.973872E-4, -0.0016695533, -0.6486987, -0.010129236, -0.0023986779, -0.015848646, 0.014672693, 0.032258544, 0.0075635193, -0.0031119338, -0.018868709, -0.01311589, -0.017251773, -0.003302358, 0.013483376, -0.019617043, -0.009394265, -0.024962286, 0.0036715139, -0.026458954, 9.359395E-5, 0.01096443, -0.037630513, 0.019376507, 0.010997838, 0.003972184, -0.006474426, 0.005919857, -0.008806288, -0.006257275, 0.037389975, -0.005398696, -0.027634908, -0.008919874, -0.005612505, -0.005522304, 0.032659438, -0.002442108, 0.0063708615, 0.03864611, 0.030948957, 0.045675103, -0.010302956, -0.0032539167, 0.0062105046, 0.009761751, -0.02200904, 0.019977847, 0.011812988, -0.0064777667, 0.027955621, 0.0016478383, -0.005438785, 0.009654845, 0.008091362, -0.008706065, 0.0015150424, 0.024187226, 0.024975648, -0.033461224, 0.031483483, -0.011879803, -0.012494506, 0.0125680035, 0.01591546, 0.017746208, -0.0057160696, 0.03375521, 0.008913193, -0.003190442, 0.0058229743, -0.042708494, 0.0138575435, 0.018000107, -0.005816293, -0.0055523715, -0.009454399, 3.808486E-4, 0.020539097, 0.005782885, 0.0036514692, 0.018882072, 0.012768449, -0.012220562, -0.005378651, 0.032739613, 0.023919964, -0.015274032, -0.027394371, 0.012367557, 0.025483446, 0.0034276373, 0.02429413, 0.024454487, -0.012100294, 0.016022367, -0.019229513, -0.0015217239, 0.0043964623, -0.0032605983, 0.027447823, -0.052223027, -0.009420991, -0.0015835284, 0.02047228, -0.014886502, 0.017265135, 0.005555712, -0.011078017, 0.011612541, 0.026499042, -0.011779579, -0.014913228, -0.0022984545, -0.009567985, 0.011331916, 0.0046470207, -0.022369843, 0.024788566, 0.01483305, 0.0024755157, -0.003581313, 0.013269566, 0.008017865, 0.0021564716, -0.016369807, 0.00872611, 0.02902467, -0.013964448, -0.01246778, 0.01930969, -0.0067216433, -0.0036648323, 0.010777347, 0.01930969, -0.015340848, -0.016222812, 0.003461045, 0.029773004, 0.0057594995, 0.0070223133, -0.008699384, -0.029398838, -1.45115E-4, -0.005241679, -0.0020428852, -8.059625E-5, -0.012975578, -0.017104778, -0.0017906565, -0.014178257, -0.024735114, -0.011933255, -0.0125212325, -0.007657061, 0.0012118669, -0.018801892, 0.0042361054, -0.026138239, -0.018307459, 0.010650397, -0.020392103, 0.016115908, 0.021394337, -0.014285162, -0.027033567, 0.017104778, -0.012153747, -0.0186549, 0.0214077, -0.00550226, -0.022597015, 0.008418758, -0.0055657346, -0.025470084, 0.022075854, -0.0058664046, 0.015942188, -0.0018908798, -0.0035011342, 0.016329719, -0.002158142, -0.0058329967, -0.0016653773, 0.0025807503, 0.002188209, 0.015942188, 0.0105769, 0.018868709, 3.5934232E-4, -0.01479296, 0.028597051, 0.009294041, -7.4791646E-4, -0.025202822, 0.0020929968, 0.01031632, 0.018133737, 0.0012836936, 0.023879874, 0.0038920052, 0.020044662, 0.03370176, 0.016236177, 0.0042928983, -0.0033424473, 0.0149399545, -0.026886573, 0.01117824, -0.0450604, 0.015233943, 0.007142581, 0.023719518, -0.008104725, -0.013389834, -0.013196069, 0.007951049, 0.024160499, -0.013209432, 0.0038018043, -0.028997945, 1.7236322E-4, 0.005241679, 0.0068285484, 0.035412237, -0.015073586, -0.020017935, 0.021781866, 0.004690451, -0.007683787, -0.010510084, -0.009441036, -0.017786296, 3.3031934E-4, -0.006010058, -0.0025122643, 3.1716502E-4, 0.0027327556, 0.026659401, -0.017505672, 0.0373098, -0.0013789057, -0.004316284, 0.021527966, 0.029799731, -0.008291809, -0.0048441268, 0.010155962, 0.009347494, 0.0016929387, -0.031109316, 0.034102652, -0.0043463507, 0.012882036, 0.004045681, 0.02007139, -5.2659E-4, -0.016316354, 0.014605877, 0.011331916, 0.04500695, -0.005659276, 0.0016419919, -0.01956359, 0.05184886, 0.021207253, 0.028623777, -0.0145256985, -0.034075927, 0.0059165163, 0.011158195, -0.015514568, -0.024828654, -0.0280358, 0.005990013, -0.009013416, -0.03001354, -4.075748E-4, 0.011164877, 0.007443251, -0.006203823, 0.009213863, 0.010343046, -0.03645456, 0.008338579, 0.023505706, -0.003942117, -0.028971218, -0.0036046985, -0.011211648, -0.019817488, 8.1535836E-5, -0.006604716, 0.028115978, -0.017986743, -0.0072828936, -0.014204984, -0.011218329, 0.023238445, -0.013503421, 0.015982278, 0.009267315, -0.008218312, 0.029719552, 0.004930987, -0.010202733, 0.01849454, -0.016516801, 0.012634818, 0.002338544, 0.0051615005, -0.0089466, 0.0034977936, 0.0091804555, -0.023612611, 0.0011517329, -0.020485645, -0.01689097, -0.0014256766, 0.013356427, -7.0657436E-4, -0.02489547, -0.011131469, -0.02493556, -0.026191691, -0.015928825, 0.065586135, 0.03624075, 0.009601393, 0.012995622, 0.010242823, 0.0076771057, -0.017652666, -0.0042026974, -0.020953353, -0.009153729, 0.009260634, 0.011966663, 0.013623688, 0.027581455, 0.0087661985, -0.012688271, -0.008218312, -0.0064644036, -0.016262902, -0.010924341, -0.023158265, -0.022262938, 0.01934978, 0.04663725, 0.013135935, -0.031964555, 0.022222849, 0.0066581685, -0.01934978, 0.012527914, -0.0044298703, 0.012634818, -0.0016845868, -0.002291773, -0.005351925, -0.0070423577, 0.01849454, 0.0055456897, 0.027340919, 0.018801892, 0.0028396605, 0.023425529, 0.009527896, -0.010062421, -9.429343E-4, -0.017946655, -0.028222885, 0.020605912, 0.01758585, -0.021594783, 0.025857614, -0.007790692, -0.0061169625, -0.0092272265, 0.010523448, 0.004075748, 0.0014215006, 0.008645931, -0.021955587, 0.019069156, 0.004199357, -0.048775345, 0.0016837516, -0.011986708, -0.009340812, -0.010710531, -0.022784099, 0.0014223359, -0.018401, 0.0010890933, -0.0020478964, -0.022637105, 0.003952139, -0.017719481, 0.009207182, -0.01599564, 0.015060223, 0.0067884587, 0.022877641, 0.017438855, -0.018454453, -0.014004537, -0.0074833403, -0.023799695, -0.0072895754, 0.005913175, -0.020365376, 0.008318535, -0.0040490218, 0.011706082, 0.0025506832, -5.5832736E-4, -0.013329701, -0.011819669, 0.021848682, -0.00803791, 0.0075902455, 0.027207287, 0.012280696, -0.0051347744, 0.013049075, -0.027060295, -0.013924358, -0.014699419, -0.02200904, -0.0037049218, -0.00700895, -0.0019142652, -0.009541259, -0.022022402, -0.018601445, -0.019443322, 0.0058630635, 0.019242875, -1.8656152E-4, -0.008104725, 0.02317163, -0.005345243, 0.022329753, 0.0059432425, 0.0067918, -0.025977882, 0.023278534, 0.023412164, 0.0038986867, 0.011712764, -0.006113622, -0.039180633, -0.0012076909, 0.02549681, -0.009654845, 0.009193818, -0.014712782, 0.0214077, -0.026793031, -0.018173827, 0.018721715, 0.0087194275, -0.007670424, -0.0033374361, -0.025697257, -0.0064243143, 0.008271764, -0.0036614917, -0.018307459, -0.030414434, 0.0041893343, -0.016757337, 0.020980079, 0.034717355, -0.029532468, -0.008184903, -0.02648568, 0.0015066904, 1.6787404E-4, -0.030334255, -0.02055246, -0.0048908973, 0.030200625, 0.019630406, 0.042628314, -0.016610343, 0.026338685, 0.024641572, 0.014859776, 0.017519034, -0.0057427958, -0.003701581, -0.045808733, -0.009648164, 0.030548064, 0.008365306, 0.027421098, 0.010396498, -0.00279456, 0.017919928, 0.013697186, -7.6086196E-4, 0.0065679676, -0.024868743, -0.025817525, 0.01723841, -0.027875444, -0.0046369983, -0.02549681, -0.005405377, 0.041692898, -0.007623653, -0.019496774, 0.00395548, 0.027367646, -0.013102528, 0.009046824, -0.029612647, 0.0027745152, -0.029372111, -0.001655355, -0.025229547, -0.008104725, 0.004570183, -0.0037483517, 0.029051397, 0.0061503705, -0.014926592, -0.009080232, 0.011926574, 4.5601607E-4, -0.0075768824, 0.016289629, 0.0028580348, -0.020325288, -0.021314157, -0.0035545868, -0.030601518, -3.6999106E-4, 0.008398714, -0.005014506, 0.00494435, -0.009995605, -0.037336525, 0.03736325, 0.0058664046, 0.051234156, -0.009167092, 0.038886644, 0.017813023, -8.869763E-4, -0.039447896, 0.022971183, -0.01251455, -1.9846304E-4, 0.03327414, 0.021260705, 0.0013505091, -0.020311924, -0.004713836, -0.009648164, -0.024080321, -0.035572592, 0.013369789, 0.016490076, 0.021434424, -0.013316337, -0.0015893746, -0.021862045, 0.014712782, -0.01607582, 0.0027912192, 0.02489547, -0.02609815, -0.008398714, -0.013062438, -0.02518946, 0.024775201, 0.0038118265, -0.03207146, 0.017813023, -0.0071358997, 0.0178932, -0.007884234, -0.0014699419, 0.011064653, -0.007249486, -2.3677757E-4, 7.032336E-4, 1.9741904E-4, 0.006701599, 0.0072294413, -0.013429924, 0.03233872, -0.024521302, 0.009955515, -0.02136761, 0.016356444, -0.026899936, 0.0021965608, -0.02175514, -0.017305225, -0.029692827, -0.004884216, 0.027982349, 0.008993371, -0.020017935, -0.0075702006, -0.01122501, 0.0070490395, 0.0012661545, -0.00889983, -0.0046537025, -0.04102474, 0.0038318713, -0.013503421, 0.0013956096, -0.014031263, 0.003865279, 0.0029615988, -0.016997874, 0.034503546, 0.0075902455, 0.007129218, -0.011539044, -0.007904278, -0.042414505, -0.015621473, -0.012988941, -0.017225046, 0.0096882535, -0.023612611, -0.012527914, 0.003327414, -0.014218347, -0.0020061366, -0.004824082, -0.035064794, 0.009781795, 0.03503807, -0.010897615, 0.0025774094, -0.014138169, 0.035064794, 0.024641572, -0.0015442742, 0.005645913, 0.013750638, 0.032392174, -0.021848682, 0.0068385703, -0.005094685, -0.012180473, -0.0067049395, 5.1573245E-4, 0.0319111, 0.025202822, 0.005559053, -0.034770805, -0.007476659, -0.023024635, 0.028570324, -0.0023151585, -0.0067350063, 0.027528003, 0.013229477, 0.026044698, 0.031029137, -0.009213863, -0.03658819, -8.4688695E-4, -0.021086985, -0.01070385, -0.021287432, 0.01255464, 0.018841982, 7.399821E-4, -0.005061277, -0.03658819, -0.0035679499, -0.028516872, -0.028917765, 0.011726127, 0.004302921, 0.053372253, 0.03100241, 1.8520432E-4, 0.013737275, -0.01083748, 0.027848717, -0.010249504, 7.558508E-4, 0.012187155, 0.011458865, 0.028917765, 0.050726358, -0.026004609, -0.014098079, 0.020285198, 0.0114855915, 0.0077840104, 0.024000142, -0.025256274, -7.274542E-4, -0.0031653862, -0.0073163016, 0.0041325414, 0.0045300936, 0.030548064, -0.023799695, -0.015073586, 0.0067750956, 0.021835318, 0.0094811255, 0.0036781954, -0.0016578606, -0.009908744, 0.008392032, -0.006270638, -0.017719481, 0.0056826617, -0.022209486, 0.024200588, -0.002420393, 0.0033090396, 0.019470049, 0.0141114425, -0.0023619293, 0.011619222, -0.017118141, 0.0052249753, -0.0010306297, -0.0022166055, 0.001044828, 0.020485645, -0.01801347, 0.02235648, -0.032739613, 0.007637016, 0.009661527, 0.010109191, -0.02790217, 0.044445697, 0.014432156, -0.044365518, -0.006006717, -0.013530147, 0.0034376595, 0.008632568, -0.01036309, -0.027207287, -0.0025774094, -0.0064944704, 0.012053523, -0.02958592, -0.015848646, 0.016409896, -0.0186549, -0.033461224, 0.006367521, 0.17350659, -0.013723912, 0.019630406, 0.04746576, 0.027180562, 0.03551914, 0.009000054, 0.010095828, -0.021020168, 0.019496774, -0.004910942, 0.012841946, 0.0066915764, 3.3261612E-4, 0.016009003, -0.0042928983, -0.016396534, -0.017305225, -0.02889104, -0.038111582, 0.0076303347, -0.008639249, -0.0030801964, -0.006741688, 0.010650397, -0.01775957, -0.006474426, -0.0012912103, 0.020205019, -0.0037583741, -0.02902467, -0.011405413, -0.017545762, 0.009828566, -0.02760818, -0.013563555, -0.011311871, 0.007931004, 0.0075167483, 0.012347512, 0.005425422, -0.009882018, 0.0039187316, -0.0073296647, -0.009922108, -0.0044766413, -0.018882072, -0.0028396605, -0.02080636, 0.006942135, -0.055697434, 0.0013538499, 0.008759517, 0.024775201, -0.009040142, -0.013630371, -0.001074895, -0.009006735, -0.009821884, -0.0032472352, 0.0019343098, 0.036534738, -0.025349816, 0.002305136, -0.005990013, 0.011625904, -0.045594923, 0.005348584, 0.016182724, -0.035412237, -0.01801347, -0.019296328, -0.025576988, 0.0023719517, -0.005528986, -0.012153747, -4.5559846E-4, 0.0167707, 0.024681661, -7.128383E-4, -0.008652613, -0.011980026, 0.012708316, -0.009942153, -0.0115991775, -0.03757706, 0.017091416, -0.02016493, -0.0032255203, -0.022877641, -0.0072828936, -0.012287377, -0.025576988, 3.4535283E-4, 7.7714823E-4, -6.7817775E-4, 0.02506919, 0.012106976, -0.015086949, 3.4305605E-4, -0.02588434, 0.0077706473, 0.017813023, -0.01100452, -0.012474461, -0.018093647, -0.00868602, 0.032739613, 0.025443358, -0.016663795, -0.0091804555, -0.016824152, 0.008672657, -0.014980044, -0.004510049, 0.004794015, -0.0010815766, -0.019443322, 0.03998242, -0.01762594, -0.020792997, -0.024053594, 0.011378687, -0.015942188, 0.0024070297, -0.032392174, -0.010396498, 0.013991174, 0.01999121, -0.046209626, 0.021902135, -0.020833086, 0.0011400401, 0.018240642, -0.0076169716, -9.3374716E-4, 0.013449968, 0.0041459044, 0.013510102, -0.007175989, -0.0018791871, -0.0025222867, -0.0019610361, 0.0085122995, 0.013737275, -0.025416631, 0.0048174006, 0.0063474765, -0.010984475, -0.016797427, -0.014218347, -0.0149399545, -0.0078909155, 0.013951085, 0.027955621, 0.005839678, -0.03249908, -0.038031407, -0.019576954, 0.011699401, -0.028516872, 0.00881297, 0.016543528, -0.008398714, -0.02047228, -0.006557945, -0.17029946, 0.009995605, 0.0151938535, -0.022597015, 0.023719518, 0.014592514, 0.027140472, -0.0025122643, 0.0085122995, -0.009861974, 0.008245038, 0.0073029385, -0.049416773, 0.002455471, -0.00902678, 0.016797427, -0.006968861, 0.024628209, 0.023933327, -0.0040790886, 0.026432227, 0.003718285, -0.0055256453, -0.013637052, -0.003160375, 0.027260741, 0.008218312, 0.006604716, 0.018200554, -0.017732844, -0.037095986, -0.0038552566, 0.0037550332, -0.021955587, -0.0067750956, -0.007476659, 4.1759713E-4, -0.022303028, -0.010583581, -0.0118530765, 0.0063909064, 0.0058062705, 0.021581419, -0.0077706473, 0.011706082, -8.8948186E-4, 5.9841666E-4, -0.028409967, 0.00395548, -0.004660384, -0.0129822595, -0.04153254, 0.0130290305, -0.0063708615, -0.0071091736, 0.017746208, -0.016155997, 0.008178222, 0.010216096, 0.0033942293, -0.03177747, -0.0048006964, 0.016917694, -2.8208687E-4, -0.016784064, -0.03100241, -0.011579133, 0.018841982, -0.032018006, 0.007142581, -0.022303028, -0.009728342, 0.022343116, 0.019416597, -0.0021046896, -0.020953353, -0.019296328, 0.013363108, -0.013830816, 0.0053251986, -0.03164384, 0.04351028, -0.018427726, 0.019470049, 0.028917765, -0.01749231, 0.006962179, -0.00288142, 0.0049209646, -0.008198267, 0.008612523, -0.028436694, -0.027113747, 0.0032689504, 0.015113675, 0.014632603, -0.007857507, 0.02274401, -0.001354685, -6.2138453E-4, -0.0054588295, 0.009147047, -0.02188877, 0.025897704, 0.029692827, 0.03439664, 0.019523501, 0.02790217, 0.027153835, 0.011986708, -0.0043797586, 0.024160499, 0.008171541, 0.0236527, -0.017305225, 0.015233943, -0.016009003, -0.021594783, 0.023265172, 0.021621509, 0.033140507, -0.008518982, -0.009541259, -0.01620945, -0.0031470119, -0.023639338, -0.098566286, 0.007189352, 0.013216114, 0.04626308, -0.03445009, 0.035332058, -0.005061277, 0.019697221, -0.026646037, 0.026980115, -0.004259491, -0.005422081, 0.007931004, -0.003701581, 0.024240678, -0.001449062, -0.009347494, -6.096918E-5, -0.015073586, 0.02132752, 0.010416543, 2.2090889E-4, -0.0036815363, -0.010917659, -0.022089217, 3.342865E-4, -0.035305332, 0.025550263, 0.014846413, 0.013490058, 0.012928807, -0.017064689, 0.0041759713, -0.033594854, -0.0395548, -0.0020863153, -0.03100241, -0.03327414, 0.022663832, -0.039528072, -0.007296257, 0.0060133985, 0.016730612, -0.01685088, -0.0021013487, 0.0017739526, -0.032926697, 0.031697292, -0.0070757656, -0.03827194, -0.020004572, -0.0035412237, -0.021688323, 0.01737204, 0.020298561, 0.005315176, 0.027006842, 0.0012502858, 0.0019409914, -2.91274E-4, -0.006995587, -0.0074699773, -0.02760818, 0.013496739, -0.0016202768, 0.015594747, -0.008806288, -0.0010782358, 0.0142717995, -0.027300829, -0.007703832, 0.020819722, -0.011291826, -0.01620945, -0.029185029, 9.1954885E-4, -0.033514675, 0.008398714, 0.012781813, -0.035706226, 8.8196516E-4, -0.01822728, 0.0018424385, -0.014806324, 0.013302974, 0.013343063, 0.01066376, -0.0093875835, 0.0061203036, -0.011986708, -0.01822728, 0.02824961, 0.004500027, -0.007449933, -0.019189423, 0.022690557, 0.008057954, -0.0027277444, -0.009915426, -5.6166813E-4, -0.010142599, 0.009487807, -0.073550545, 0.013764001, -0.011819669, -0.03220509, 0.00932745, -0.001272836, 0.0072294413, 0.0047839927, 0.009394265, 0.011365323, -0.021060258, 0.016396534, 0.0044265296, -0.0042294236, -0.009494488, 0.009922108, 0.0027594818, 0.0043363287, -0.009701616, 0.0025473426, -0.006848593, -0.01603573, 0.015421026, 0.005612505, -0.006003376, 0.0096414825, -9.4794546E-4, 0.023973417, -0.004135882, -0.011011201, 0.033461224, -0.012828584, -0.002458812, 0.00563255, -0.0024838678, -0.016677158, -0.009527896, 0.0024070297, 0.016302992, 0.019657131, -0.021020168, -0.02609815, -0.0027695042, -0.006400929, -0.00739648, 0.019510137, -0.032552533, 0.0045868866, 0.0146860555, 0.014619241, 0.026218418, 0.014712782, 0.0020712817, -0.015086949, 0.005261724, -0.014031263, 0.03589331, 0.016316354, 0.01663707, 0.0035011342, 0.020231746, -0.010042376, 0.022089217, -0.023398802, -0.013516784, -0.018093647, 3.1779142E-4, -0.010343046, 0.0034159445, -0.004135882, -0.008665975, 0.003116945, 0.00997556, 0.03447682, 0.013777364, 0.008271764, -0.026539132, 0.015113675, 0.01388427, 0.0043463507, 0.036187295, -0.007944368, -0.032311995, 0.025550263, 0.0131426165, 0.014539061, -0.011625904, 0.0074098436, -0.0043663955, 0.025443358, -0.021915497, 0.015260669, 0.016864242, 0.009968879, -0.018521268, 0.01023614, -0.012694953, -0.022329753, -0.02261038, 0.028757408, 1.3498827E-4, 0.0038418935, -0.009694935, -0.0062606162, -0.025657168, -0.013062438, -0.007142581, -0.042761944, 0.016610343, 0.011873121, 0.02433422, 0.013176025, -0.016009003, 0.0063574985, -0.045648377, -0.0023619293, 0.015100312, -0.0040222956, -0.011612541, 0.03693563, 0.0066715316, 0.005211612, 0.033140507, 1.6609926E-4, 0.0384323, 0.0186549, 0.016784064, -0.019643769, -0.0115524065, 0.0039220722, -0.016971147, 0.02274401, -0.030200625, -0.004095793, 0.012347512, 0.0028713979, 0.0027244037, 0.032659438, -0.021568056, 0.05783553, -0.007643698, 0.008358624, 0.021821955, -0.03212491, 0.014218347, 0.0053886734, 0.017906565, -0.01487314, -0.00421272, 0.01384418, -0.0078441445, 0.01152568, -0.030628243, -0.0034410004, 0.011973345, 0.011338597, 0.0049677356, -0.01595555, -0.019483412, 0.0017622599, -0.0052851094, 0.011031246, -0.0018591424, -0.013764001, -0.013817454, 0.0025005715, -0.009795158, -0.0051481375, -0.013109209, 0.01122501, -0.016009003, -0.007643698, 0.002226628, 0.024882108, 0.010429906, -9.963867E-4, 0.0066314423, 0.030548064, -0.003608039, -0.008672657, 0.013750638, -0.013617007, 0.0075902455, -0.0066882353, 0.012086932, 0.0050579365, -0.013129254, -0.028356515 ], + "id" : "b9d229fc-1327-47c2-9e9f-fcaad751ea12", + "metadata" : { + "source" : "movies.csv" + } + }, + "53473737-f6ff-4dba-bb9c-c5520ea98d53" : { + "text" : ",/sRvXNDItGlWCqtO3j6wks52FmbD.jpg,809-810-10192-425-863-2062-862-585-12-953-9806-10193-9502-950-8587-920-14160-38757-812-8355-10020\r\n787,Mr. & Mrs. Smith,Action-Comedy-Drama-Thriller,en,After five (or six) years of vanilla-wedded bliss ordinary suburbanites John and Jane Smith are stuck in a huge rut. Unbeknownst to each other they are both coolly lethal highly-paid assassins working for rival organisations. When they discover they're each other's next target their secret lives collide in a spicy explosive mix of wicked comedy pent-up passion nonstop action and high-tech weaponry.,33.463,Epsilon Motion Pictures-Weed Road Pictures-Regency Enterprises-New Regency Pictures-Summit Entertainment,6/7/05,110000000,487287646,120,Released,Smart and sexy,6.672,9179,Brad Pitt-Angelina Jolie-Vince Vaughn-Adam Brody-Kerry Washington-Keith David-Chris Weitz-Rachael Huntley-Michelle Monaghan-Stephanie March-Jennifer Morrison-Theresa Barrera-Perrey Reeves-Melanie Tolbert-Jerry T. Adams-Elijah Alexander-Hans F. Alexander-Lauryn Alvarez-Burke Armstrong-Ron Bottitta-Earl H. Bullock-Miguel Angel Caballero-Victor A. Chapa-Maree Cheatham-Laine Collins-Noah Dahl-Merrilee Dale-Chris Daniels-Patrika Darbo-Jennifer DeMille-Tyce Diorio-Patricia Donaldson-Sabi Dorr-Greg Ellis-David Escobedo-Kaela Freeman-Megan Gallagher-Amy Hathaway-Jessica Hedden-Kathrine Herzer-Nigel Hudson-Ravil Isyanov-Stephanie Ittleson-Mark Ivanir-Benton Jennings-Simon Kinberg-Peter Lavin-Deren Tadlock-Sean Mahon-Kevin Makely-Mike McCaul-Derek Medina-Will Moore-Joel Munoz-Mark Newsom-Richie Ornelas-Jordan Osher-Edward Padilla-Eugene C. Palmer-Luis Racer-Liz Ramos-Leonard Robinson-Felix A. Ruiz-Sam Sabbah-Kim Schioldan-Ty Sharp-Jimmy Shubert-Abigail Rose Solomon-Hannah Von Kanel-Ali Marsh-Kim H. Winther-Michael Winther-Michael-John Wolfe-Jeff Yagher-Bryan Anthony-Douglas Caldwell-R.J. Durell-Melissa Hurley-Jacqui Landrum-Carol Mack-Michael Morris-Gloria Rodriguez-Linda Kathleen Taylor-Anne Vardanian-Ara Vardanian-Luis Vasquez-John W. Woodruff-Angela Bassett-William Fichtner-David Block-John Branch-Julius Callahan-Shilo Frontierro-Lisa Gabriel-Tony Longo-Janelle Marra-Heather Petrone-Bill Viney-Hawk Younkins-Matt McColm-Mo Gallini,bomb-assassin-secret identity-assault rifle-gun-married couple-hitman-decoy-secret agent-marriage crisis-marriage-dysfunctional marriage-gunfight-bullet wound,/wzIO3ytxeSNt1wRpXLIdkNbGoDm.jpg,/iFaWUETEE2umP1WY0LUAmjSpzm7.", + "embedding" : [ -0.001170414, -0.012790586, -0.028514918, -0.030242264, -0.012996223, 0.039646704, -0.004390338, -0.014668732, -0.011433385, -0.038385466, 0.019741097, 0.02076928, 0.008972603, 0.019645134, 0.018013751, 0.017698443, 0.0296939, -0.023579644, 0.024388481, -0.043457832, 0.008321421, 2.0488672E-4, -0.018726625, 0.0075948387, 0.0025601736, 0.014134077, 0.018096006, -0.0125026945, -0.021852298, -0.008808094, 3.4572624E-4, -0.018425025, -0.013695386, -0.022304699, -0.025361827, -0.008437948, -0.0059154746, -0.023250626, 0.014970332, -6.717457E-4, 0.009239931, -0.0045754104, -0.002873769, -0.013983278, -0.011563622, 0.0012732323, 0.0063370294, -0.014819532, -0.017437968, 0.025992446, 0.028268155, 0.027706081, -0.041346632, -0.023867534, 0.0062856204, -1.300222E-4, -0.027075464, 0.004568556, 0.0053636837, 0.0034632601, -4.45974E-4, -0.01971368, -0.03520496, -0.01046004, -0.024169136, -0.009397585, -0.02455299, -0.008588748, -0.009822567, 0.005843502, 0.02045397, 0.010425767, 0.007361784, 0.005843502, 0.005017529, -0.0275827, -0.022071643, -0.0033912875, -0.009699185, -0.0017821824, 0.031284157, 0.011070094, -0.0025978736, 0.023140954, 0.016327532, 0.004503438, -0.01986448, 0.021180551, -0.0027966555, 5.8777747E-4, 0.022318408, 0.03728874, -0.004030474, 0.009000021, -0.008883494, 0.028405245, -0.011899495, 0.018260514, -0.025498917, -0.019370953, 0.007334366, -0.010377785, 0.013599423, -0.009603221, -0.012358749, 0.004746774, -0.00863673, -0.021235388, 0.042690124, -0.01303735, 0.0066900384, -0.012804295, 0.025718262, -0.037508085, -0.0088903485, -0.022345826, 0.030214846, -0.022016807, -0.013064768, -0.022304699, 0.020659607, 0.037919357, 0.020481389, -0.051930055, 0.0366307, 0.02033059, 0.0017821824, -0.008431094, 0.010658822, -0.019508043, 0.042717542, 0.008047239, 0.019384662, 0.014326004, -0.034711428, 0.034135647, -0.027966555, 0.014230041, -0.024731208, -0.04211434, 0.0312019, 0.034574337, -0.029776156, -0.022688553, -0.024045752, -0.0029834418, 0.0121051315, -0.007375493, 0.031448666, -0.009363312, 0.020481389, 0.011097513, 0.004558274, 0.008958894, 0.02257888, 0.014956623, -0.0070670387, -0.0065495204, 0.009959658, -0.010268113, -0.002760669, 9.836276E-4, -0.0037151647, -0.013016786, 0.010110457, 0.019261278, 0.0020186643, -0.015134841, -0.0064158565, -0.019000806, 6.8031385E-4, 0.010556003, -0.016300114, 0.009294767, 0.001783896, 0.004153856, 0.010007639, -0.0100213485, -0.013839331, -0.005408238, 0.012159968, 0.013990132, 0.032024447, 0.04044183, -6.541809E-4, 0.00954153, 0.017849242, -0.035835575, 0.0061793746, -0.0014617323, 9.133685E-4, 0.021482153, 0.0062033655, -0.0251699, -0.6422437, -0.018822588, -0.006710602, -0.012022876, 0.012530114, 0.02271597, 5.0900373E-5, 0.016094478, -0.020577352, -0.0014051823, -0.033258267, 0.026773863, 0.017945206, -0.016190441, -0.03016001, -0.01998786, 0.006645484, -0.0036089194, 0.0018284506, 0.010933003, -0.01046004, 0.015025169, 0.010679386, 0.012187386, 0.017314587, 0.00560702, -0.0035952101, -0.02105717, 0.014202623, 0.0023665326, -0.011803531, 0.016396077, 0.00647412, 0.0036500467, 0.035862993, 0.009356458, -0.015820296, 0.037179068, 0.037672594, 0.034958195, -0.024333645, -0.0093016215, 0.008437948, -0.01546386, -0.0139558595, 0.017204914, 0.0017599051, -0.010919294, 0.003992774, -0.0076016933, 0.01196804, 0.013229277, 0.002760669, -0.018000042, -0.019535461, 0.017204914, 0.0074508935, -0.025115063, 0.02015237, 0.0034084239, -0.0127220405, 0.023826407, -0.008718984, -0.010364076, -0.015710624, 0.0296939, 4.678229E-4, -0.0052505834, 0.0060011563, -0.017342005, 0.0012295345, 0.01287284, -0.010302385, -0.008006112, 0.0025601736, 0.011405967, 0.015244514, 0.006881966, 0.0030759783, 0.010007639, -0.012139404, -0.01424375, -0.010055621, -0.007821039, 0.023963498, -0.0061793746, -0.044033613, 0.010179004, 0.026170664, -0.003449551, 0.010494312, 0.014134077, 0.002421369, 0.0049147108, -0.0041024466, -0.0033861466, -0.01068624, 4.4725923E-4, 0.033834048, -0.043677177, -0.012783731, -0.021715207, 0.03139383, 0.010610839, 0.006971075, 0.015038878, -0.0055042016, -0.0038008466, 0.02138619, 0.007999257, 0.0019501188, -0.007121875, -0.008506494, -0.004822174, -0.01697186, -0.021797461, 0.018397605, 0.01879517, 0.007800475, 0.0030502737, 0.0020220915, -0.012351895, -4.8838655E-4, -0.031092228, 0.0055864565, 0.028652009, -0.0031428102, 5.8210106E-5, 0.008588748, -0.0027829465, 1.6965005E-4, 7.291525E-4, 0.011316858, -0.01166644, -0.0043423558, -0.030434191, 0.014874369, -0.0133389495, 0.020577352, -0.007409766, -0.012646641, -0.013057914, -0.01226964, -0.0074508935, 0.0052163107, -0.012077713, -0.03155834, 0.007869021, -0.009109694, -0.013688532, -0.004798183, 0.015340478, -0.002421369, 0.006648911, -0.0055247652, 2.8424952E-4, -0.036411356, -0.01998786, -0.004993538, -0.0032250646, -0.0040990193, 0.011721277, -0.01621786, -0.010891876, 0.041703068, -0.010528585, -0.0021317643, 0.0098294215, 0.005158047, -0.019905606, 0.028377827, -0.018137133, -0.004181274, 0.018863715, -0.014435678, 0.029721318, -0.018109715, 0.03970154, 0.024073172, -0.004616538, 0.0048290286, -0.0064261383, -0.028981028, -2.917467E-4, 0.03394372, 0.020220915, 0.012612368, 0.003118819, -0.012249077, -0.008664148, -0.011824095, -0.014421969, -0.0077387844, -0.004119583, 0.0056275837, 0.01878146, 0.0077045118, 7.3000934E-4, -0.010679386, 0.011618459, 0.042443357, 0.016738806, -0.0012278209, 0.0048495927, 0.018096006, -0.03731616, 0.003979065, -0.028377827, 0.013990132, -0.0074166204, 0.012701477, -0.012043441, -0.005857211, -0.0076908027, 0.008287149, 0.011844658, -0.01560095, 0.016656552, -0.012228513, 0.008958894, -4.8624448E-4, -0.013777641, 0.03169543, -0.0028172191, -0.011488222, 0.0067071747, 0.0064432747, -0.020988625, -0.014312295, -0.008266585, -0.0051203473, -9.313617E-4, 0.01816455, 0.008849221, -0.011460803, -0.016094478, 0.024018334, -0.0075400025, 0.049160816, -0.012530114, -0.016766224, 0.020179788, 0.013332095, -0.007869021, -0.016779933, -0.008629875, 0.015450151, 0.025937608, 0.0014908641, 0.044335213, -0.022524044, 0.018877424, 0.00946613, 0.029501973, 0.019110478, -0.011625313, 0.003190792, 0.010508021, 0.04027732, 0.024827171, 0.00492842, -0.020344298, 0.009575803, -0.0023065554, 0.015381605, -0.004482874, -0.013318386, 0.004907856, 0.011858367, -0.016958151, -0.006559802, -0.027610118, 0.01311275, 0.022071643, -0.012077713, -0.010329803, -0.004071601, 0.012776877, -0.003223351, -0.0037220195, -0.020481389, -0.036740374, 0.017355714, 0.017067824, -0.019425789, -0.015587241, -0.0052780015, -0.01577917, -0.0281859, -0.0017230619, 0.0028480645, 0.03578074, -0.02272968, 0.003271333, -0.012029731, 5.834934E-4, 0.02286677, -0.012886549, 0.03139383, 0.0133389495, 0.009500403, -0.0075262934, 0.008814949, -0.01653317, 0.034272738, -0.017986333, 0.013914731, -0.0032610511, 0.007971839, -0.0026304326, -0.009061712, 0.011549912, -0.055384744, 0.0118857855, -0.015738042, -0.0015594095, -0.013311531, 0.004554847, 0.013023641, -0.021509571, -0.006196511, -0.04120954, -0.032326046, 6.3747296E-4, 0.07529035, 0.017712152, -0.0017076392, 0.0022157326, -0.021098297, -0.017026696, -0.004585692, -0.009068566, 0.0040099104, -0.0076428205, 0.023977207, 0.0051854653, 0.010041912, 0.010617694, 0.018863715, -0.01059713, 0.0049764016, 0.0015611232, -0.022016807, -0.027692372, -0.00925364, -0.020248333, 0.009945949, 0.034766264, -0.002345969, -0.01668397, 0.016574297, 0.005068938, 0.0034238466, 0.015724333, -0.0017324869, 0.0151896775, 0.0021489006, -0.006422711, -0.0017736142, 0.00825973, 0.027706081, -0.0037014557, 0.0277335, 0.0015688346, 0.00440062, 5.753536E-4, 0.016574297, -0.00788273, -0.0024762054, -0.018274223, -0.01326355, 0.013421204, 0.041922413, -0.02166037, 0.010254404, -0.0060868384, -0.0089931665, -0.010466894, 0.00295431, -0.007396057, -0.0023425417, -0.004469165, -0.033121176, 0.008444803, 0.006995066, -0.036575865, 0.022167606, -0.0021917417, 0.00624792, -0.012612368, -0.012859131, -0.018233096, 0.020577352, 0.007587984, 0.013530877, -0.019261278, -0.0015242801, -0.004534283, 0.024018334, 3.330882E-4, 0.02756899, 0.010226985, 0.0030022918, 0.0044863014, -0.04603514, -0.03410823, 0.006395293, -0.03366954, -0.020549934, 0.003951647, -0.013606277, 0.0061416747, -0.0063644475, 0.016108187, -2.4933417E-4, 0.002297987, -0.021235388, -0.011728131, 0.026705317, 0.005603593, 0.0073823477, 0.020371716, 0.020481389, 0.0035609375, 0.012543823, -0.021482153, -0.008088366, -0.034025975, -0.0059805927, -0.02363448, 0.0050997837, 0.00954153, -0.032764737, -0.009754022, -0.01956288, -0.023744153, 0.008204893, 0.0055179107, 0.011344276, 1.5165687E-4, 0.02244179, 0.002142046, -0.004465738, 0.026019864, 0.0018592961, 0.0044383197, 0.0023476826, 0.027212555, -0.0017539074, 0.019823352, -0.01529935, -0.03410823, 0.007663384, 0.03320343, -0.010329803, 0.010672531, -0.0023288326, -0.019590298, -0.012941386, -0.025416663, 0.01650575, 0.008705275, -0.0018541551, 0.0030022918, -0.01667026, 0.010254404, 0.010103603, 0.009157675, 0.011556767, -0.025361827, 0.01514855, -0.003581501, 0.0033998557, 0.02060477, -0.01454535, -0.011035821, -0.017451677, 0.0046233926, -0.01242044, -0.042991724, -0.030900301, -8.405389E-4, 0.0277335, 0.008780676, 0.025622299, -0.012831713, 0.029666482, -0.0061622383, 0.013208713, 0.013551441, -0.005802375, -0.010336658, -0.036109757, 0.020303171, 0.037179068, 0.006830557, 0.0017770415, 0.013839331, 0.002251719, 0.026321463, -0.0043389285, 0.018754043, 0.012351895, -0.019274987, -0.0015636937, -0.01409295, -0.022236153, 0.007176711, -0.025361827, -0.021564407, 0.044033613, -0.003752865, 0.0022071644, -0.0032079283, 0.04485616, -0.0051340563, -0.0053225565, -0.028076228, 0.009452421, -0.028871356, -0.0059908745, -0.020248333, 0.004414329, 0.004270383, -0.009884258, 0.01742426, 0.0022825643, -0.018726625, -1.5497704E-4, 0.029556809, -0.019782225, -0.015367896, 0.024155427, -0.0057783835, -0.0061896564, -0.025060227, -0.008979457, -0.03465659, -0.00970604, -0.005031238, 4.5368538E-4, 0.011433385, -0.027404482, -0.037069395, 0.016889606, -0.0138530405, 0.036383938, 0.0031787965, 0.05017529, 0.032024447, 0.011803531, -0.019590298, 0.0031633738, -0.0071835658, 0.002722969, 0.019055642, 0.036685538, -0.0064569837, -0.005805802, -0.0011215754, -0.015546114, -0.031338993, -0.027747208, 0.019837061, 0.008232311, 0.024032043, -0.021550698, 0.004469165, -0.04077085, 0.022249863, 4.8410243E-4, 0.006683184, 0.008760112, -0.026499681, -0.028652009, 0.0029200374, -0.011193477, 0.01576546, 0.0023048418, -0.041703068, -0.0037700012, -0.024511863, 0.00274696, -0.008266585, 0.002411087, 0.043402996, -0.022222444, 0.0075537115, 0.005459647, 0.019179024, -0.018616952, 0.0085818935, 0.004558274, 0.02925521, -0.009438712, 0.019960443, -0.0051340563, -0.012324477, 0.012687768, 0.03468401, -0.027856883, -0.027390772, -0.012009167, -0.005774956, 0.023511099, 0.025704553, 0.0011729845, -0.0059634564, -0.024361063, -0.019837061, 0.0133389495, -0.0013743368, 0.004380056, -0.04773507, -0.001826737, -0.011124931, 0.005672138, 0.006648911, 0.0015371323, 0.01038464, 0.00507922, 0.009308476, -0.015436442, -0.0016588005, -0.01939837, -0.00993224, -0.043869104, -0.0058640656, -0.012742604, -0.016478332, 0.0030931146, -0.01030924, 0.0022500053, -0.02952939, 0.0044109016, -0.013599423, 0.002657851, -0.02045397, 0.011097513, 0.019837061, -0.006319893, -0.011118077, 0.004482874, 0.023374008, -0.02076928, -0.006381584, -0.002421369, 0.005281429, 0.017095242, -0.0262255, 0.02333288, 0.009438712, -0.00803353, -0.011097513, 0.010980985, 0.026458554, 0.01650575, 0.0058640656, -0.034025975, -0.014147786, -0.012530114, 0.040030558, -0.0067071747, -0.010329803, 0.04441747, 0.025512626, 0.015285641, 0.015203387, -0.010864458, -0.02364819, -0.014271168, -0.01386675, -0.022496626, -0.0018884279, 0.011906349, -0.0046199653, 0.012393022, -0.013249841, -0.045651287, -0.010782204, -0.046748016, -0.031229319, -0.018013751, 0.008945185, 0.034135647, 0.030132592, -0.007903294, 0.00267156, 0.008294003, 0.009534676, -0.02045397, -0.011789822, 0.025540045, 0.0115910405, 0.028268155, 0.022057934, -0.03589041, -0.0011387117, -0.009520967, -3.467973E-4, 0.011748695, 0.021468444, -0.01106324, -0.01501146, 0.006504966, -0.005308847, 0.0023956643, -0.009027439, 0.015395314, -0.022099061, 9.253639E-4, 0.013181295, 0.0342179, -0.0061485292, 0.019137897, 0.012591804, -0.016258987, -0.0095072575, -0.016231569, -0.015929969, -0.007910148, -0.014517932, 0.021441026, -0.013140168, -0.012571241, 0.038741905, 0.015271932, -0.0016339528, 0.023182081, -0.006347311, 0.0014557346, -0.005247156, -0.015504987, 0.018671788, 0.024128009, -0.025992446, 0.022469208, -0.0057852385, 0.013414349, 3.8878137E-5, 0.008609312, 0.017780697, 0.030351937, 0.012358749, -0.033696957, 0.011961185, -0.011207186, -0.0024196554, -0.0052677197, -0.0059257564, -0.01440826, 7.004491E-4, -0.005709838, -2.573133E-5, -0.0060251476, -0.024786044, -0.006741448, -0.012084568, -0.013147023, 0.018082296, 0.18732108, 0.010364076, 0.025060227, 0.059991002, -2.8574895E-4, 0.0063541657, 0.017095242, 0.016779933, 0.0034529783, 0.03229863, -0.00833513, 0.019672552, 0.010336658, -0.001807887, 0.020056406, -0.005459647, -0.0056138746, -0.01941208, 9.2193665E-4, -0.03002292, -0.0066146385, 0.014312295, -0.009699185, -0.032655064, -0.006042284, 0.011920058, -0.021125715, 0.0076291114, 0.027939137, -0.016258987, -0.01514855, -0.009754022, 0.0098294215, -0.0034084239, -7.981264E-4, -0.0072109844, -0.01591626, 0.00276581, 0.013051059, 0.012221659, -0.009335894, -0.0058263657, 0.0025516055, -0.011070094, 0.006145102, 0.015477569, -0.031037392, 0.0023442553, -0.01908306, 0.008211748, -0.044143286, -9.1165485E-4, 0.005744111, 0.027198846, -0.013023641, -0.0014925777, -0.0053773928, -0.0033861466, -0.0055624656, -6.109116E-4, 0.010076185, 0.025773099, -0.037617758, 0.008897203, -0.0035609375, 0.024457026, -0.029721318, -0.03106481, 0.02271597, -0.033559866, 0.0011061527, -0.03545172, -0.00670032, -0.0017479097, -0.007855312, -0.01621786, -0.0029337464, -0.0011669868, 0.003992774, 0.0127220405, -0.023236917, -0.0037562922, -0.0010084753, -6.687468E-4, -0.022524044, 0.0015585527, 0.028103646, -0.015080005, -0.0032764738, -0.018726625, -0.009281058, -0.013517168, -0.014230041, -0.014065532, 0.006580366, 0.007348075, 0.014504223, 0.015834006, -0.020988625, -0.009472985, -0.04924307, 0.02061848, 0.020207206, -0.020865243, -0.012283349, -0.01340064, -0.0011284299, 0.02410059, 0.026280336, -0.015957387, -7.424332E-4, -0.030735793, -0.009322185, -0.014463096, -0.014298586, 0.0156146595, 0.015642079, -0.03199703, 0.025786808, -0.006333602, 0.011111222, -0.0038214102, 2.4654952E-4, 0.008211748, 0.013894168, -0.023168372, -0.02789801, 0.0052128835, 0.0042086923, -0.019672552, 0.0250191, -0.008115784, 0.002836069, 0.0050038197, 6.0191494E-4, 0.008554475, 0.030708374, 0.007697657, 0.006282193, -0.004969547, 0.014134077, -0.008910912, 0.008705275, 9.939094E-4, 0.024621535, -0.01802746, 0.0026132963, 0.003185651, -0.0067037474, -0.021153133, -0.026348881, -0.011296295, -2.0049552E-4, 0.0037631467, 0.036438774, -0.004095592, -0.01924757, -0.039070923, -0.0041367197, 0.04529485, -0.016450914, 0.024786044, 0.017684733, -3.6114897E-4, -0.04066118, -0.018589534, -0.1763538, 0.038741905, 0.009534676, -0.032216374, 0.016437205, 0.014901787, 0.022263572, 0.014929205, 0.0014831527, -0.0031359557, 0.021166842, -0.0082734395, -0.020056406, -0.00492842, 0.0057681017, 0.010425767, -0.009733458, 0.02862459, 0.018068587, 0.0011721277, 0.03953703, -0.0031839374, -0.0049866834, -8.6110254E-4, 0.008609312, -0.0033158874, 0.0265271, 0.014984041, -0.015642079, 2.51262E-4, -0.04307398, -0.0037357286, 0.009692331, 0.0036500467, -0.02348368, 0.0012329618, -0.014339713, -0.008012966, -0.0031496647, 0.0017350573, 0.0305987, 0.0019381234, 0.023524808, 0.006169093, 0.012804295, 0.005219738, 0.02364819, -0.014641314, 0.006744875, -0.0145727685, -0.014230041, -0.04422554, 0.027802045, 0.00617252, 0.025869062, 0.02303128, -0.013585714, 0.007910148, 0.009514112, 0.005829793, -0.030489028, -7.3579286E-5, 0.006768866, 1.3269976E-4, -0.004044183, -0.01850728, -0.013215568, 0.011789822, -0.031092228, 0.009863694, -0.024210263, 0.0059017655, 0.0251699, 0.0020700735, 0.007841603, -0.01742426, -0.02153699, 0.006871684, 7.925571E-4, 0.027623827, -0.013674823, 0.030489028, 0.0059805927, 0.007759348, 0.017383132, -0.013654259, 0.01356515, -0.0026081554, 0.022935316, -0.0109604215, 0.004493156, -0.01956288, -0.0272811, -0.009514112, 0.013743368, -0.010830185, 0.010494312, 0.007121875, 0.003077692, 0.004517147, -0.0072109844, -0.021482153, -0.021879716, 0.020495098, 0.015422733, 0.0033398783, 0.018822588, 0.019014515, 0.014901787, 4.502581E-4, -0.024155427, 0.0010504595, 0.02272968, -7.231548E-4, -0.0100213485, 0.010302385, -0.007718221, -0.0242651, 0.010096748, -0.008088366, 0.052917108, -0.006487829, 0.0015834005, -0.0037014557, 0.0065906476, -0.014504223, -0.0996377, -0.0025824509, 0.019508043, 0.033422776, -0.0271303, 0.03652103, -0.006857975, 0.035506558, -0.01636866, 0.02545779, -2.977444E-4, -0.026719026, 0.0016442346, -0.022030516, 0.013119604, -0.004215547, -0.013914731, -0.020824116, -0.012221659, 0.030242264, -0.011207186, -0.009877403, 0.0043423558, -0.020015279, -0.019384662, 0.018630661, -0.03410823, 0.01787666, 0.008979457, 0.010514876, 0.003992774, -0.022524044, 0.016875897, -0.036685538, -0.01590255, -0.011337422, -0.010206422, -0.029282628, 0.006121111, -0.050723653, 0.009000021, 0.011433385, 0.005298565, -0.01802746, -0.0014248891, 0.008609312, -0.024018334, 0.02288048, -8.970889E-4, -0.017396841, -0.022249863, -0.023607062, -0.027390772, -0.008972603, 0.009041148, 0.030872883, 0.03846772, -0.0026390008, -0.021495862, -0.0049489834, 5.856354E-4, -0.010789058, -0.02835041, 0.025402954, 0.0027572417, 1.2166822E-4, 0.0023168372, -0.008266585, 0.028761681, -0.005497347, -0.035369467, 0.026938373, -0.032079283, -0.008732694, -0.021893425, 0.0021454734, -0.015504987, -0.008691566, 0.015806587, -0.03819354, 0.008616166, -0.029995501, 0.004613111, -0.026156954, 0.0013160731, 0.0073275114, 0.0062273564, 0.024744917, -0.0052265925, -0.050284963, 0.0022157326, 0.02286677, -0.007217839, -0.013407495, -0.0034649738, 0.012379313, 0.002373387, 0.011042676, 0.012324477, -0.0094044395, -0.020508807, -0.011556767, -0.071177624, 0.014120368, -0.01758877, 0.0043971925, -0.015998514, -0.004842738, 0.0023956643, -0.005421947, -6.5064654E-5, 0.018712915, -0.010617694, 0.010734222, -0.007135584, 0.010919294, -0.021262808, 0.013201859, 0.004894147, 0.0021814597, 0.0039859195, 0.0050106742, -0.026760153, -0.0071013113, 0.024210263, -0.005843502, 0.007718221, 0.036959723, 0.0045411377, 0.0056858473, -0.0321067, -0.011076949, 0.023058698, -0.019521752, -0.0075674206, 0.00795813, -0.017081533, -0.016629133, -0.014188914, 0.008540766, 0.02756899, -0.0027383917, -0.0134280585, -0.022181317, -0.008931476, 3.8899557E-4, 0.0070259115, 0.021482153, -0.01562837, 0.003398142, 0.023511099, 0.015436442, 0.035150122, 0.010137876, -0.021578116, -0.014723568, 0.006182802, -0.010220131, 0.05179296, -0.0038454013, -0.00880124, -0.023044989, 0.036822632, 0.0052231653, 0.022633716, -0.025663426, 0.008088366, -0.010494312, 0.007019057, -0.008883494, -0.0042224014, -0.022345826, -0.008547621, -0.01668397, 0.0049352744, 0.041154705, 0.012680913, 0.017067824, 0.004153856, 0.009582657, -0.0067722932, 0.0025841645, 0.019357244, -0.004417756, -0.02530699, 0.010720513, -0.0043629194, 0.017437968, -0.015724333, -3.3587284E-4, 0.0051374836, 0.02015237, 0.0016810778, 0.006491257, 0.004493156, -0.017506516, 0.007060184, 0.019343533, -0.0059428927, -0.0141614955, -0.004054465, 0.012701477, 0.006042284, 0.0032593375, -0.028158482, -0.015834006, -0.017712152, -0.0043834834, -0.018397605, -0.014764695, 8.0198207E-4, 0.02440219, 0.030900301, 0.0013649118, -0.0019501188, 0.014079241, -0.033148594, 0.020070115, -0.007334366, -0.03575332, -0.009486694, 0.04559645, 0.018630661, 0.0034769692, 0.03589041, 3.0524159E-4, 0.050065618, 0.010569712, 0.019425789, -0.026677899, -0.001783896, -0.0074988753, -0.0010161867, 0.006912811, -0.02379899, 0.024045752, -0.022620007, 0.010528585, 0.017314587, 0.03213412, -0.0057304017, 0.0696422, 0.015381605, -7.0687523E-4, -4.120761E-5, -0.011460803, 0.004092165, 0.013757077, 0.016080769, -0.013126459, -0.016176732, -0.0053225565, -0.0020409415, 0.017547643, -0.042059503, 0.011193477, 0.017287169, -0.017616188, 0.016999278, -0.009411294, -0.020056406, -0.016656552, -0.0055864565, 0.004667947, -0.004119583, -0.010741076, -0.014134077, 0.018383896, -0.007944421, 0.006491257, -0.0133389495, 0.012989368, -0.019645134, 0.011241458, -0.015436442, 0.034766264, 0.0024145143, -0.00970604, 0.0032747602, 0.02741819, 0.01424375, -0.004109301, -0.0074029113, -0.026705317, -0.017095242, 0.0013169299, -0.003989347, -0.011385404, -0.017081533, -0.015066296 ], + "id" : "53473737-f6ff-4dba-bb9c-c5520ea98d53", + "metadata" : { + "source" : "movies.csv" + } + }, + "aa1d02a5-7a8b-4d75-82e0-efbf18c956f8" : { + "text" : ",58574-1865-56292-10138-18785-58-49538-22-41154-13475-1726-2080-285-1271-607-10764-27578-8681-272-23483-1858\r\n10681,WALL��E,Animation-Family-Science Fiction,en,WALL��E is the last robot left on an Earth that has been overrun with garbage and all humans have fled to outer space. For 700 years he has continued to try and clean upthe mess but has developed some rather interesting human-like qualities. When a ship arrives witha sleek new type ofrobot WALL��E thinks he's finally found a friend and stows away on the ship when it leaves.,60.241,Pixar-Walt Disney Pictures,6/22/08,180000000,521311860,98,Released,\"After 700 years of doing what he was built for, he'll discover what he was meant for.\",8.075,17199,Ben Burtt-Elissa Knight-Jeff Garlin-Fred Willard-John Ratzenberger-Kathy Najimy-Sigourney Weaver-Teddy Newton-Bob Bergen-John Cygan-Pete Docter-Paul Eiding-Donald Fullilove-Teresa Ganzel-Mickie McGowan-Laraine Newman-Lori Alan-Jeff Pidgeon-Jan Rabson-Lori Richardson-Andrew Stanton-Jim Ward-Colette Whitaker-Kim Kopf-Angus MacLane-Niki McElroy-Garrett Palmer-Sherry Lynn-Jess Harnell,garbage-space travel-dystopia-loneliness-distant future-robot-aftercreditsstinger-duringcreditsstinger,/2Wjn5vxvJmomJQkLuUwyX2hBaif.jpg,/fK5ssgvtI43z19FoWigdlqgpLRE.jpg,14160-585-10193-12-2062-9806-862-863-920-8587-10191-62177-62211-808-20352-9502-49013-150540-953-38757-425\r\n140300,Kung Fu Panda 3,Action-Adventure-Animation-Comedy-Family,en,While Po and his father are visiting a secret panda village an evil spirit threatens all of China forcing Po to form a ragtag army to fight back.,64.681,DreamWorks Animation-China Film Group Corporation-Oriental DreamWorks-Zhong Ming You Ying Film,1/23/16,145000000,521170825,95,Released,Grab destiny by the dumplings.,6.885,5510,Jack Black-Bryan Cranston-Dustin Hoffman-Angelina Jolie-J.K. Simmons-Jackie Chan-Seth Rogen-Lucy Liu-David Cross-Kate Hudson-James Hong-Randall Duk Kim-Steele Gagnon-Liam Knight-Wayne Knight-Barbara Dirickson-Al Roker-Willie Geist-Fred Tatasciore-Pax Jolie-Pitt-Kelly Cooney Cilella-Stephen Kearin-Mick Wingert-Ming Tsai-April Hong-Knox Jolie-Pitt-Zahara Jolie-Pitt-Shiloh Jolie-Pitt-Jean-Claude Van Damme-Radzi Chinyanganya-Lindsey Russell-Joseph Izzo-Lena Golia-Gus Culligan-Mike Mitchell,martial arts-kung fu-china-fighter-village-sequel-panda-anthropomorphism-dragon-wuxia-woman director,/oajNi4Su39WAByHI6EONu8G8HYn.jpg,/uT5G4fA7jKxlJNfwYPMm353f5AI.", + "embedding" : [ 0.004638575, -0.044492178, -0.014821644, -0.02585614, -0.015979584, 0.0055819564, 4.932956E-5, -0.01168158, -0.027327405, -0.03383912, 0.023254178, 0.027613485, 0.019616881, 0.011817808, -0.003306943, 0.02330867, 0.018608792, -0.009454247, 0.015938716, -0.0126215555, 0.010223937, 0.012349099, -0.023008967, -0.008841219, 0.0072269137, 0.0055751447, 0.030106464, -0.02057048, 0.0028352523, -0.019262688, 0.011109421, -0.031114554, -0.020325268, -0.009617721, -0.013466172, -0.009440624, 0.012471705, -0.02849897, 0.027232045, -0.019303557, 0.01076885, 0.01965775, -0.010019595, 2.6756097E-4, -0.010121766, 0.02013455, -0.0034295486, -0.011361443, -0.006579829, 0.0190311, 0.01908559, 0.029234603, -0.020747576, -0.031032816, 6.785874E-4, -0.010176257, -0.029725024, 0.0038586678, -0.0011332495, -0.005265225, 0.023145195, 0.0037701193, -0.031169044, -0.020815691, -0.018962985, -0.011504483, -0.005363991, -0.008493837, 0.015938716, 0.009311208, 0.037789743, 0.00927715, 0.012505761, 0.0043218443, 0.033185225, -0.003971056, -0.023417652, 2.609624E-4, 0.013302698, 0.019889338, -0.0051494315, -0.012934881, 0.004127719, -0.0058476017, 0.01638827, 0.0132618295, -0.013861233, 0.019344425, -0.045582004, 0.011845054, 0.011572598, 0.025992367, 0.0011792266, 3.3950657E-4, 0.020693084, 0.0168242, -0.016701594, 0.0064572236, -0.006532149, -0.058741663, -0.0040970673, 0.0029135838, 0.0020638595, -0.0045500267, -0.0042911926, 0.020720331, 0.006109841, -0.015407425, 0.02403068, 0.004744152, -0.0069272113, 0.01076885, 0.020175418, -0.04157689, 0.0106939245, -0.028172022, 0.023621995, -0.0057045617, -0.010687114, -0.025174998, 0.018186484, 0.04127719, 0.005513842, -0.03874334, 0.03754453, 0.024425741, -0.009835687, -0.009474681, -0.0018680311, -0.018050255, 0.024888918, -0.0011792266, 0.022395939, 0.01341168, -0.02783145, 0.049096696, -0.030051973, 0.015243951, -0.016320156, -0.020829314, 0.030733114, 0.020461498, -0.013588777, -0.027136685, -0.027082194, -0.0068693142, 0.017273754, -0.004532998, 0.017614326, 0.019358048, 0.01672884, 0.019739486, -0.0026087728, 0.024602838, 0.030651378, 6.83696E-4, 0.004989363, -0.009876555, 0.006075784, -0.028907655, -0.010101331, -0.016088568, -0.009665401, -0.018131992, 0.0011306952, 0.028063038, 0.018867625, 0.0015862087, -0.0075538615, -0.00598383, -0.018949362, 0.022777379, -0.01475353, 0.010871022, 0.0106939245, 0.019398917, 0.012839521, -9.791412E-4, -0.030651378, -0.0015802488, 0.0015623688, -0.003647514, 0.022341449, 0.01322096, -0.0055581164, -3.422737E-4, 0.021428717, -0.032449592, 0.012744161, -0.019494276, 0.0035010683, 0.023063459, -0.016987674, -0.011449992, -0.64386964, -0.02994299, -0.00670584, -0.0053231223, 0.012383156, 0.02134698, -3.550451E-4, -0.019793978, -0.025924254, -0.0057556476, -0.032367855, 0.022791002, 0.028063038, -0.01475353, -0.012934881, -0.008487025, 0.012451271, -0.020393383, 0.028471723, 0.00658664, -0.022859115, 0.018186484, -0.0050200145, 0.0027262697, -0.0020706707, -0.009283962, -0.0052277627, -0.010319297, 0.0066888114, -0.0010438496, -0.0140723875, 0.010584942, 0.012056208, 0.002395916, 0.034983438, 5.11282E-4, -0.023799092, 0.04724399, 0.038906813, 0.022872739, -0.035610087, 0.0058339788, 0.011606655, 0.0046692262, -0.010734794, 0.0042264843, 0.009311208, 0.004359307, 0.002280122, -0.022968099, -0.009937857, 0.0044035814, 0.010080897, -3.141766E-4, 0.002232442, 0.007805884, 0.017246509, -0.033403188, 0.022845494, -0.003552154, 0.0047850204, 0.021510456, 0.006508309, 0.0190311, 3.9633934E-4, 0.02950706, -0.019358048, -0.018567923, 0.0026445326, -0.030106464, 0.023404028, 0.008343986, -0.010802908, -1.4027262E-4, 0.0074380673, 0.013438926, 0.023063459, -0.009433812, -0.004114096, 0.029425321, 0.0044478555, 0.001028524, 0.0044206097, 0.009822063, 0.011313763, 0.0025457672, -0.02431676, 0.0054389164, 0.0049008145, -0.0011213295, 0.014835266, 0.012798653, 0.010448714, -0.0131664695, -0.027531749, -0.010326108, -0.015584522, -8.599414E-5, 0.012805464, -0.057597343, -0.016497253, -0.010891456, 0.02610135, 6.4069894E-4, 0.012887201, 0.004706689, 0.012076642, -0.01322096, 0.025801647, -5.249048E-4, -0.008868465, 0.012900824, -0.0054286993, 0.006229041, -0.018445317, -0.02663264, 0.016851446, 0.014862512, 0.0062869377, 6.321847E-4, -0.002276716, -0.004590895, -0.0017343571, -0.013404869, 0.012396779, 0.020243531, -0.0035146913, -0.0032269089, -0.004485318, 0.0015155403, 0.0010472554, -0.0061064353, 0.009100053, -0.0039676502, 0.009215848, 0.011511295, 0.018636037, -0.0067943884, 0.017559834, 0.011940414, -0.03969694, 0.001999151, -0.011490861, -0.0070021367, -0.0035487483, -0.022409562, -0.02066584, 0.0011179239, -0.0067126513, 0.006041727, -0.020080058, 0.0043729297, 0.012308231, 0.020870183, -0.0014278434, 0.012948504, -0.026210332, -0.009195413, 0.024616461, -0.022777379, 0.005329934, 0.011136667, 0.0037088166, -0.015271197, 0.021401472, -4.22095E-4, -0.012805464, 0.008500649, -0.007921678, -0.03811669, 0.016429137, -0.015925093, -0.00661048, 0.02283187, -0.019398917, 0.039233763, -0.034247804, 0.006743303, 0.0056841276, -0.021020032, 0.0061268695, 0.01302343, -0.011191159, -0.0042230785, 0.015421049, 0.027436389, 0.014167747, -0.008691369, -0.020148171, 0.0028437667, -0.024235021, -0.011341009, 0.0028284409, -0.009113676, -0.0058578188, 0.034738228, -0.013895291, 0.008943391, 0.018377203, 0.008670934, 0.033675645, 0.018949362, -0.013432114, -0.019262688, 0.004611329, -0.043184385, -0.0067126513, -0.034547508, 0.0087662935, 0.0021098366, 0.017232886, -0.002945938, -0.019793978, -0.01716477, 0.009570041, 0.021660306, -0.011817808, 0.008745859, -0.01716477, 0.008834408, -0.007819507, -0.0063482407, 0.012246928, 0.01845894, -0.01826822, 0.011933602, 0.0037224395, 0.008051095, -0.016851446, -0.030923834, -0.005830573, -0.008916145, -0.00516646, 0.0073563303, -0.006494686, 0.007819507, 0.025079638, -0.0042435126, 0.040596046, 0.006075784, -0.006494686, 0.01091189, 0.03133252, 0.005902093, -0.018091124, 2.4531744E-5, 0.0151894605, 0.0131664695, -0.016224796, 0.04244875, -0.019317178, 0.017900404, -0.019971075, 0.020461498, -0.009910611, -0.012308231, 0.006133681, 0.0011298438, 0.034601998, 0.010012783, 0.020216286, -0.012696481, 0.0020161795, 0.012941692, 0.02163306, -0.01644276, -0.022423185, 0.007329085, -0.0031996632, -0.028035793, -0.011518106, -0.010830153, 0.003971056, 0.003051515, 0.011014061, -0.022654774, -0.008255438, 0.0037530907, 0.017328246, 0.022777379, -0.013295886, -0.025992367, 0.0063005607, 0.024670953, -0.018050255, -0.0070361937, -0.03288552, -0.008521083, -0.03724483, -0.014358467, -0.016170304, 0.023513012, -0.00415837, 0.014031519, -0.012968938, 0.0010293754, 0.009971915, -0.02610135, 0.021115392, 0.016361024, -0.003933593, 0.013609211, -0.0035487483, -0.00932483, 0.019902961, -0.013759063, 0.023662863, -0.002651344, 0.006205201, -0.009903801, -0.0102171255, -0.007812696, -0.022028122, 0.011402312, -0.02104728, -0.006613886, -0.004590895, -0.002314179, 0.0272048, -0.0030821662, -0.006590046, -0.030896587, -0.023921696, 0.010108143, 0.04945089, 0.026278447, 0.026877852, 0.001810134, 0.0038654793, -0.009740327, -0.024916165, -0.02336316, -0.009168168, -0.008282683, 0.009379322, -0.004103879, 0.037026864, 0.0057181846, 0.018145615, -0.017777799, -0.00166454, -0.013077921, -0.014453827, -0.014031519, -0.016170304, -0.01009452, 0.011756506, 0.03127803, -0.00336484, -0.019589635, 0.031850185, 0.033484925, -0.008841219, 0.0047271233, 0.0050745057, 0.006123464, -0.0047713974, 0.017505342, -0.009127299, 0.0135479085, 0.025610927, 0.04051431, 0.035800807, 0.011804186, 0.0076151644, 0.026605396, -4.048536E-4, -0.005435511, 0.005980424, -0.022327825, -0.0033835715, 0.032068152, 0.021714797, -0.05326528, 0.024207776, -0.016074944, -0.015271197, -0.0025610928, 0.026782492, 0.008943391, -0.0034874456, -0.00807153, -0.016592612, -0.014590056, 0.017328246, -0.01984847, -0.0010438496, -0.0020723736, -0.007948924, -0.0139770275, -0.009318018, -0.012846333, 0.0024350816, 0.02013455, 0.00797617, -0.023404028, -0.013656891, -0.0039676502, 0.0025066014, 3.752665E-4, 0.038770586, -0.011865488, -0.0017828884, 0.0044240155, -0.023444898, -0.032258872, -0.006450412, -0.017532587, 8.378043E-4, 0.023771845, -0.01172926, 0.028662443, -0.0012643693, 0.0052516027, 0.026755245, -0.004686255, 0.005609202, 0.011865488, 0.041440662, 0.0056841276, 0.01956239, 0.028199267, -0.0013801634, 0.003225206, -0.0013180092, -0.0028182238, -0.0073903874, -0.012151568, -0.014303976, -0.013745439, 0.00607919, 0.01355472, -0.022232465, -0.008255438, -0.029588796, -0.014358467, -7.4201875E-4, -0.008548329, 0.006137087, 0.0074516903, 0.010884644, 0.011531729, 0.0034857427, 0.0023414246, -0.008643689, -0.01893574, 0.001034484, 0.022055369, 0.002780761, 0.018240975, -0.027518125, -0.01644276, -0.0015232031, 0.019780355, -0.0015044718, 0.014971495, -0.0032865088, -0.0049961745, -0.016115813, -0.024357628, 0.002057048, 0.0030310806, -0.0037599022, 0.008664123, -0.023322292, 0.004475101, 0.01817286, -0.0106939245, 0.0026922126, -0.030351674, 0.011845054, -0.0069238055, 0.022055369, 0.027272914, 0.0021353792, 0.00807834, -0.019712241, -0.0036066454, -0.0103806, -0.037135847, -0.03716309, 0.004011925, 0.0474892, 0.01912646, 0.03302175, 0.004076633, 0.025842516, 0.0052073286, 0.016074944, 0.0089570135, -0.022981722, -0.0044376384, -0.032476835, 0.013391246, 0.017178394, 0.02210986, 0.0038007707, 0.011722449, -0.016129436, 0.011552163, 0.008541517, 0.024534725, -0.008677745, -0.024725445, -0.01893574, 0.0076969014, -0.019712241, 0.007342708, -0.015025986, -0.018091124, 0.03190468, -0.0049519003, -0.014113256, 0.0058816588, 0.0320954, 0.005408265, 0.009638155, -0.025270358, 0.009631344, -0.024711821, -0.0120017165, -0.025256734, -0.007908056, -0.0031060062, -0.0085278945, 0.011654335, -0.0088616535, -0.02849897, 0.0056841276, 0.013207338, -0.011184347, -0.038906813, 0.004008519, -0.011702014, -0.025025146, -0.03228612, 0.0038552622, -0.0371086, -0.018704152, -0.009965103, -0.016074944, 0.014440204, -0.014263107, -0.040160116, 0.02754537, 0.007921678, 0.0443287, 0.014453827, 0.051221855, 0.020393383, 0.017682439, -0.01331632, -0.0017207343, -0.012982561, -0.007186045, 0.023036212, 0.02115626, -0.020447874, -0.002336316, 0.005806733, -0.0051698657, -0.04007838, -0.044492178, 0.021878272, 0.028798671, 0.017968519, -0.012682859, -0.004556838, -0.026673509, 0.013077921, 0.010019595, -0.006675189, 0.004767992, -0.026659887, -0.029180111, -0.008936579, -0.01341168, 0.012996184, -7.274381E-5, -0.017941272, 0.022177974, -0.008487025, 0.0011017467, -0.011804186, -0.008275872, 0.008636877, -0.021660306, 0.011429558, -0.008602819, 0.017845912, 0.0028914465, -0.011770128, 0.0062188236, 0.03228612, -0.024139661, 0.0068693142, -0.006600263, 0.0011724152, 0.012894013, 0.025692666, -0.024616461, -0.015039609, -0.03212264, -0.005353774, 0.01994383, 0.0060928124, 0.016361024, -0.012396779, -0.015530031, -0.019576013, 0.016701594, -0.010945947, 0.012178814, -0.035010684, 0.020080058, 6.560246E-4, 0.0034057086, 0.0054150764, 0.0028131153, 0.0060349153, -0.008670934, 0.023295047, -0.01172926, 0.0050166086, -0.017818667, -0.009842497, -0.04176761, -0.038579866, -0.011954037, -0.023240555, -0.0074244444, -0.026836984, -0.002303962, -8.5908995E-4, -0.0057181846, 0.0062699094, -0.007165611, -0.004788426, -0.0024010246, 0.014876135, -0.016279288, -0.020352514, 1.8752682E-4, 0.02614222, 0.0031060062, -0.0016313344, 0.011252461, 8.361014E-4, 0.032803785, -0.0320954, 0.009767572, -5.14262E-4, -0.020829314, -0.0202844, -0.0032558574, 0.007914866, 0.01706941, -0.004056199, -0.05258414, 0.001279695, -0.015352934, 0.014767152, -0.0088616535, -5.7471334E-4, 0.04176761, 0.010319297, 0.02653728, 0.01081653, 0.0035555598, -0.030869342, -0.002756921, -0.0012643693, -0.0168242, -4.689501E-6, 0.0017224371, 0.008582385, 0.012764595, -0.009617721, -0.025978744, -0.010271617, -0.011742883, -0.029180111, 0.0032235032, 0.015611768, 0.0371086, -0.012962127, -0.002312476, 0.020706708, 0.0016892315, 0.023322292, -0.014848889, -0.007417633, 0.015747996, 0.002256282, 0.001000427, 0.023690108, -0.023049835, -0.010680302, 0.0150941005, 0.027776958, -0.0017709684, 0.03176845, -0.0117156375, 0.008636877, -0.008466591, 0.008262249, -1.1387838E-4, 4.584935E-4, 0.02604686, -0.044301458, -0.018254599, 0.0038552622, 0.014521942, -0.016320156, -0.014576432, 0.0149987405, -0.028008547, -0.015162215, 0.0036883825, -0.014194993, -0.0019378482, -0.023376783, 0.011313763, -0.0017156256, -0.001150278, 0.023090703, 0.0056023905, -0.0060689724, 0.0026479384, -0.021469587, -0.0010097926, -0.0054184822, -1.3186478E-4, 0.011954037, 0.033730138, -0.033484925, 0.029670533, -0.031114554, 0.0062017953, -0.023404028, 0.01691956, -0.014835266, 0.030215446, 1.66454E-4, -0.038007706, -0.005084723, -0.0064095436, 0.0028454694, -0.023635617, -0.0065014977, -0.028962145, -0.013915725, -0.0044819126, 0.0077854497, -0.02125162, -0.03081485, 0.0017147743, -0.0049416833, -0.002361859, 0.018499808, 0.1881041, -0.026414676, 0.028526215, 0.03212264, 0.0016917858, -0.0018799511, 0.02566542, 0.01437209, -0.017110279, 0.011511295, -0.0033801657, 0.01667435, 9.88507E-4, 0.0044342326, 0.012410402, -0.0057454305, -0.029697778, -0.0068386625, -0.028526215, -0.015611768, 0.0028097096, -0.015707128, -0.01918095, -0.026741624, 0.013704571, 2.3967674E-4, -0.013472983, -1.06215535E-4, 0.020543234, 0.008582385, -0.025597306, -0.007022571, 0.0027552182, 0.014957872, -0.017777799, -0.0075402386, 9.161356E-4, 0.014086011, 0.024248645, 4.870163E-4, -0.0120493965, -0.016619857, -0.0055547105, -0.0052277627, 0.0055206534, 0.02465733, -0.026605396, -0.0013954891, -0.020434251, 0.020352514, -0.02619671, 0.0070361937, 0.020393383, 0.030269938, -0.012417213, 0.006487875, -0.0058476017, 0.006695623, -9.003842E-5, 0.023186063, 0.022709265, 0.0405688, -0.026074104, 0.0103124855, -0.0062426636, 0.014031519, -0.035419367, -0.012662425, 0.030896587, -0.039642446, -0.0021064307, -0.013472983, -0.0202844, -0.009100053, -0.017409982, -0.011783752, 7.288216E-4, 0.031032816, 0.010823342, 0.01427673, -0.019644126, -0.030378921, -0.008487025, -0.019984698, -0.011695203, -0.016756086, 0.010809719, -0.010053651, 0.0076219756, -0.00521414, -0.020924672, -0.018922117, -0.007724147, 0.004764586, -0.009815252, 0.0037530907, 0.027381897, -0.0021319736, -0.011722449, -0.009685835, -0.04263947, 0.013731817, 0.030024726, -8.063015E-4, -0.027463634, 0.004556838, -0.00415837, 0.008589197, 0.018636037, -0.012635179, -0.0125738755, -0.034874454, 9.323127E-4, -0.022477677, -0.0025253328, 0.009556418, 0.0076424098, -0.017914027, 0.040868502, -0.014767152, -0.0056194193, -0.019003853, 0.0030072406, -0.0032660745, 0.003027675, -0.028144775, -0.028199267, 0.012873578, 0.0043490897, -0.01937167, 0.0121447565, -0.03749004, -0.00418221, 0.0036781651, 9.995755E-4, 0.015298443, 0.03051515, 0.015216705, 0.016687972, -0.0021098366, -0.00798298, -0.008391666, 0.010659868, -0.006739897, 0.017859535, -0.013561531, 0.018540677, -0.0032865088, 0.0069203996, -0.03051515, -0.017178394, -0.006368675, 0.025120506, 0.007996604, 0.038416393, -7.777787E-4, -0.03220438, -0.017941272, -0.014726284, 0.034765474, -0.039587956, 0.014508318, 0.020257154, -0.012676047, -0.036645424, -0.014031519, -0.17513515, -0.007267782, 0.006790983, -0.03648195, 0.017886782, 0.029643288, 0.016810577, 0.019739486, 0.019480653, -0.017995764, 0.034547508, 0.021619437, -0.043293368, 0.0011945523, 0.0034687142, 0.038143937, -0.021837404, 0.039860412, 0.011627089, -6.015333E-4, 0.030978326, 0.0073903874, -0.019793978, 0.007342708, 0.0017862942, 0.016946806, 0.014848889, 0.0069748913, 0.018581545, -0.019385293, -0.040296342, -0.004836106, 0.018567923, 0.012219682, -0.020080058, -0.004069822, -0.0043116272, -0.030406166, -0.0022154134, -0.008309929, 0.028771427, 0.027899565, 0.0044069868, 0.011845054, 0.019358048, 0.015530031, 0.017559834, -0.021878272, 0.010257994, -0.036073264, -0.022981722, -0.02682336, 0.0075742956, 0.0038109878, 0.0069476455, 0.031986415, -0.0135479085, 0.0067603313, 0.010162634, 9.995755E-4, -0.025120506, -0.011068553, 0.0038041763, -0.021755666, -0.0027024297, -0.027504502, -0.022845494, 0.009808441, -0.024112416, -3.344512E-5, -0.014521942, -0.0028063038, 0.028281003, -0.006763737, 0.006147304, -0.0042128614, -0.033185225, 0.0019548768, -0.015938716, 0.008228192, -0.022518545, 0.029915744, -0.007410822, 0.0038212049, 0.016647104, -0.011463615, 0.014249485, -0.007369953, 0.0068284455, -0.019957451, 0.012219682, -7.769273E-4, -0.035582844, -0.010925513, 0.003977868, 0.0031945547, -0.016115813, 6.794389E-4, 0.015216705, -0.005466162, -0.0017326542, -0.019984698, -0.002220522, 0.018949362, 0.02811753, 0.016034076, -0.0033937886, 0.032858275, 0.03294001, -0.004730529, -0.011484049, 0.007233725, 0.02114264, 0.02235507, -0.01595234, 8.5738715E-4, -0.012505761, -0.0058373846, 0.020025566, 0.0044921297, 0.015870601, -0.0038143937, 0.004076633, -0.008275872, -0.0075470502, -0.013541097, -0.08816698, -0.0021932763, 0.0048905974, 0.032231625, -0.046399374, 0.024766313, -0.0045159697, 0.030733114, -0.020202663, 0.023621995, 0.016183928, -0.019712241, 0.0028710123, -0.0046215467, 0.02317244, -0.0046794433, -0.0036543254, -0.010993627, -0.018758643, 0.03119629, -0.0010276726, -0.019358048, 0.021782912, -0.017464474, -0.0185543, 0.008670934, -0.0512491, 0.033539418, 0.007826318, 0.007138365, 0.014399336, -0.015352934, 0.01764157, -0.045118827, -0.016756086, -0.032667555, -0.020407006, -0.030460658, 0.005363991, -0.05528146, 0.028335495, 0.021306112, 0.015366557, -0.021932762, -0.004631764, -0.0067262743, -0.0068931542, 0.040051132, -0.03817118, -0.047952376, -0.01657899, -0.020175418, -0.017532587, -0.0024504072, 0.02403068, 0.014481072, 0.023240555, 0.013152846, 0.004594301, -0.017192017, -8.6206995E-4, 9.484898E-4, -0.046317637, 0.008282683, 0.009318018, 0.0021438936, 0.0024316758, 1.0573661E-4, 0.0168242, -0.011088987, -0.017382737, 0.03013371, -0.03672716, -0.004335467, -0.0210609, -0.014862512, -9.40827E-4, 0.0045261867, 0.029806761, -0.010060463, 0.0020928078, -0.029588796, 0.0024044302, -0.012982561, 0.008936579, 0.010564508, 0.010755228, 0.010339731, -0.0037939593, -0.033185225, -0.0050574774, 0.027667977, 0.008916145, -0.010857399, 0.005503625, 0.01792765, 0.002746704, 0.014317599, 0.0036270795, -0.004604518, -0.0132618295, 0.008582385, -0.067460276, 0.0237446, -0.015080477, -0.008786728, 0.0039438107, -0.012628367, 0.028035793, -0.012873578, 0.0146173015, 0.0068522855, -0.01475353, 0.013398058, -0.00792849, 0.0062120124, -0.009045562, 0.006205201, 0.009890177, 0.0036543254, -0.008085152, -0.007206479, -0.003647514, 0.012335476, 0.033757385, 0.0015104318, -0.0054491335, 0.015162215, 3.5334227E-4, 0.0056773163, -0.019044721, -0.0131664695, 0.030051973, -0.015121346, -0.0012081751, 0.0016849743, -0.0019293339, -0.022750134, -0.014453827, 0.0056262305, 0.017886782, 0.017900404, -0.009154544, -0.0349017, -0.0026462355, -0.016374646, 0.001857814, 0.02764073, -0.016551744, 0.013275452, 0.00788081, 0.013861233, 0.03294001, 0.008044284, -0.0106462445, -0.0062971553, 0.037844233, -0.022068992, 0.043238875, -0.007969358, -0.012349099, 0.0018612198, 0.035746317, 0.0076083527, 0.036890633, -0.023417652, -0.008677745, 0.010564508, 0.002957858, -0.019725865, 0.0058033275, -0.028144775, -0.0032439374, -0.0055547105, 0.021387849, 0.027872318, 0.028444478, 0.011375067, -0.017123902, 0.009168168, -0.0075538615, 0.015897848, 0.025542814, -0.012662425, -0.031141799, 0.0152848195, 0.015434671, 0.026087727, -0.0037564966, -5.7173334E-4, 0.008664123, 0.010162634, -0.030051973, 0.006440195, 0.013990651, 0.004781615, -0.013902103, 0.018854003, -0.015938716, -0.002768841, 0.010087709, 0.010993627, -4.96382E-4, -0.0068454742, -0.015230329, -0.01595234, -0.021782912, -0.0046794433, -0.01653812, -0.018949362, 0.019630505, 0.03032443, 0.020829314, 0.0058373846, -0.0049246545, 0.009072808, -0.021374227, 0.014903381, -0.004509158, -0.023526635, -0.023676487, 0.04634488, 0.01798214, 0.013868045, 0.02144234, -0.011804186, 0.025174998, 0.012199248, 0.019507898, -0.029261848, 0.019603258, -0.0032218003, 0.0056466646, -0.0026836984, -0.026360184, 0.0051085628, -0.0051903, 0.002184762, 0.008807163, 0.029398076, -0.010414657, 0.06500816, 0.013752251, 0.006464035, 0.029098373, -0.014494696, 0.015734373, 0.011272895, 0.017396359, -0.010482771, -0.0034499827, -0.002244362, -0.025188621, 0.0032200974, -0.024248645, 0.008943391, 0.007274593, -0.0068080113, 0.0010174555, -2.9757377E-4, -0.0066888114, 0.009788007, -0.024602838, 0.027981302, 0.0014295462, -0.040732276, -0.0035623712, 0.025897007, -0.0014457232, -0.0034142227, -0.024289513, 0.0074857473, -0.009638155, -0.007512993, 0.0037599022, 0.02254579, -5.089938E-5, -0.007369953, -0.0060008583, 0.025597306, 0.001833974, 6.4751034E-4, -0.0028420638, -0.017246509, -0.0048905974, 0.009890177, -0.013425303, 0.009597287, -0.011988094, -0.013677325 ], + "id" : "aa1d02a5-7a8b-4d75-82e0-efbf18c956f8", + "metadata" : { + "source" : "movies.csv" + } + }, + "b895d2a8-3b65-4427-95d5-54d0ad3b9e4a" : { + "text" : "66,2613,Whitney Houston-Kevin Costner-Gary Kemp-Bill Cobbs-Ralph Waite-Tomas Arana-Michele Lamar Richards-Mike Starr-Christopher Birt-DeVaughn Nixon-Gerry Bamman-Joe Urla-Tony Pierce-Charles Keating-Robert Wuhl-Debbie Reynolds-Danny Kamin-Richard Schiff-Nathaniel Parker-Bert Remsen-Stephen Shellen-Chris Connelly-Patricia Healy-Blumen Young-Linda Thompson-Towanna King-David Foster-Ethel Ayler-Sean Cheesman-Donald Hotton-Nita Whitaker-Rob Sullivan-Jennifer Lyon-Buchanan-Victoria Bass-David Joseph Martinez-Michael George-Joe Hess-Phil Redrow-Marta Velasco-Joe Unger-Gwen Seliger-Susan Traylor-Pat Poole-Shelley A. Hill-Ken Myles-Robert L. Feist-Charles Bazaldua-Ellin La Var-Rollin Jarrett-Tony Burrer-Jorga Caye-Shaun Earl-Bruce Holman-Dan Koko-Jim Rhine-L.A. Rothman-Damon Stout-John Tesh-Mark Thomason,sibling relationship-anonymous letter-diva-bodyguard-stalker-los angeles california,/2VgZW2ZD3pNoV2j8U2GXNRwOsk9.jpg,/6LS4YtklwlHSHhNTCAiZGEXRvJZ.jpg,8367-21311-10478-251-10083-9922-9804-88-1844-73290-6520-795-3981-9772-581-7520-114-9481-820-1788-9559\r\n68726,Pacific Rim,Action-Science Fiction-Adventure,en,Using massive piloted robots to combat the alien threat earth's survivors take the fight to the invading alien force lurking in the depths of the Pacific Ocean. Nearly defenseless in the face of the relentless enemy the forces of mankind have no choice but to turn to two unlikely heroes who now stand as earth's final hope against the mounting apocalypse.,96.347,Double Dare You Productions-Legendary Pictures,7/11/13,180000000,411002906,131,Released,\"To fight monsters, we created monsters.\",6.863,11179,Charlie Hunnam-Rinko Kikuchi-Idris Elba-Max Martini-Clifton Collins Jr.-Ron Perlman-Charlie Day-Burn Gorman-Robert Kazinsky-Robert Maillet-Heather Doerksen-Larry Joe Campbell-Brad William Henke-Diego Klattenhoff-Santiago Segura-Jane Watson-Jung-Yul Kim-Joshua Peace-Mana Ashida-Joe Pingue-Milton Barnes-Brian Frank-Ellen McLain-David Fox-Jake Goodman-Robin Thomas-Julian Barnes-David Richmond-Peck-Sebastian Pigott-J.C. Kenny-Robert Morse-Mike Chute-Duncan McLeod-Louis Paquette-Matthew G. Taylor-Frank Nakashima-Terry Belleville-Farzad Sadrian-Mishu Vellani-Clive Walton-Peter Kosaka-Yiren Stark-Mark Luu-Charles Luu-Lance Luu-Willie Wong-Simu Liu-Victoria Sawal,monster-dystopia-pacific-alaska-giant robot-giant monster-apocalypse-hong kong-robot-alien invasion-kaiju-duringcreditsstinger-monster movie-2020s,/8wo4eN8dWKaKlxhSvBz19uvj8gA.jpg,/ig7qUy7drkEFZNCK7gi0hMn1WMN.", + "embedding" : [ 0.0034766973, -0.039306227, -0.018728262, -0.019707518, -0.02151642, 0.032533046, -0.0018106027, 0.00440325, -0.020237947, -0.030737743, 0.015042453, 0.021502819, 0.025107024, -0.009432135, -0.0023325323, 0.016606541, 0.022019649, -0.012995537, 0.0058653327, -0.032016214, 0.002009514, -0.006065944, -0.01268952, 0.010819414, 0.002099619, 0.01498805, 0.03334909, -0.009051314, -0.0045392574, -0.014580027, 0.015980907, -0.02483501, -0.009384532, -0.019163487, -0.02132601, 0.0023070308, 0.018660259, -0.03476357, 0.018592255, -6.8513886E-4, -0.0017043466, 0.013648374, 0.004141435, -0.0034477955, -0.008439278, 0.009058113, 0.0045290566, -0.023542935, 0.0076436335, 0.027541561, 0.022686087, 0.03144498, -0.029296061, -0.02962248, -9.852059E-4, -0.0012470207, -0.013893188, 0.0024532392, 0.008758897, -6.766384E-4, 0.012084285, -0.019789122, -0.019938732, -0.0058211302, -0.012465107, -0.020346753, -0.015368871, -0.0063923625, 0.002310431, 0.01675615, 0.022862896, 0.018741863, 0.01676975, 0.013355957, 0.022495676, -0.027935984, -0.024454188, -0.0034477955, -0.011091429, -0.0017578996, 0.0097585535, -0.0031264774, -0.014226407, 0.0034817974, 0.008044857, 0.0069397935, -0.013342356, 0.0075212265, -0.026031876, 0.0014416818, 0.0072560115, 0.038000554, 0.0028187598, 0.0040326286, 0.0064297644, 0.026127081, -0.0072900136, 0.021557223, -0.025487846, -0.051220503, 0.0013668775, -0.0012130188, -0.006154349, -0.012886731, -0.001042159, 0.011893874, 0.0019857127, -0.010254982, 0.016035309, 0.0130091375, 0.013512366, -0.012091085, 0.026399096, -0.02943207, -0.005538914, -0.007997254, 0.018238634, -0.033757113, -0.008786098, -0.020754777, 0.030112108, 0.029676883, 0.0025161428, -0.03372991, 0.038571786, 0.04251601, -0.01251271, -0.014049597, 0.01640253, 0.0034953982, 0.022305265, -0.012798326, 0.0125195095, 0.010207379, -0.018184232, 0.034355547, -0.039115816, -0.0010549098, -0.015844898, -0.016456934, 0.020713974, 0.028316805, -0.026671112, -0.018129827, -0.032913867, 0.008140062, 0.018510649, 0.0050730878, 0.015096856, 0.015532081, 0.006368561, 0.018823467, 0.012927533, 0.02222366, 0.022441272, -0.012233893, -0.0062699555, 3.6552074E-4, 0.011581057, -0.020197146, -0.006589574, -0.007827244, 0.009894561, -0.006579373, 0.0031604792, 0.018116226, 0.015831297, -0.012533111, -0.008718095, 0.001798702, -0.002344433, 0.021108396, -0.03946944, 0.011064228, -0.0057395254, 0.009670149, 0.007385219, 7.8714464E-4, -0.03789175, -0.014103999, 0.006650777, -0.0070996024, 0.020197146, 0.047847513, -0.0020010134, 0.014920046, 0.027609566, -0.02680712, 0.022645283, -0.012329099, 0.012227094, 0.02063237, 0.0027932583, -0.01569529, -0.6349928, -0.016511336, 0.0025178427, -0.008527684, 0.028316805, 0.010560999, 0.009547741, -0.013274353, -0.01659294, -0.005603518, -0.0133831585, 0.03367551, 0.019680316, -0.017885014, -0.03318588, -0.02362454, 0.012417505, -0.020251548, 0.023774149, 0.004814673, -0.020741176, 0.012832328, 0.021462018, 0.0092553245, -0.0038014157, -0.010948621, -0.021394012, -0.010669805, 0.006609975, -0.0015198862, -0.028534418, 0.026208686, 0.0017629999, -0.0029122652, 0.03721171, -0.0085072825, -0.02060517, 0.05059487, 0.029486472, 0.016307324, -0.028616022, -0.0043250453, 0.014240008, 0.007793242, -0.010799012, 0.022305265, -0.0141176, 0.001781701, -0.00387962, -0.0038116162, -0.008078858, 0.009316528, -0.004814673, -0.010193778, -0.009030912, -0.007534827, 0.0037300114, -0.03982306, 0.017259378, 0.004195838, -0.01992513, 0.012240694, 0.007303614, 0.0066337762, -0.018075425, 0.022155656, -0.004831674, -0.018061824, -0.0022968303, -0.028616022, 0.020754777, 3.7253363E-4, -0.008561686, 0.00123342, 0.0018752064, 0.020509964, 0.040122274, 0.0011305641, 0.005535514, 0.013763981, -0.005875533, 7.433671E-4, -0.006793585, 0.0015011851, 0.029840091, -0.018129827, -0.038925406, -0.008888104, 0.01252631, 0.0045188563, 0.016307324, 0.019938732, 0.005919736, 0.0022526276, -0.013430761, -0.005062887, -0.016878556, 0.0021285207, 0.014797639, -0.05875533, -0.01904108, -0.018633056, 0.050567668, -0.005491311, 0.019149886, -0.0068207867, -0.0049676816, -0.013097542, 0.022604482, -0.011064228, -0.01710977, 0.008160463, -0.013063541, 0.0036076047, -0.0049370797, -0.0299761, 0.01428081, 0.01659294, -0.0046412633, -0.00422984, -5.9715885E-4, 0.002327432, 0.01516486, -0.022971703, 5.788828E-4, 0.031771403, 0.0063039577, 0.0034001928, 0.0060421424, 0.005484511, -0.0017953018, -0.012227094, 0.031580992, -0.01041139, 0.018075425, 0.00687859, 0.012240694, -0.012465107, 0.014756837, 0.001711147, -0.019884327, 0.0019500105, -0.007813643, -0.014199205, -0.007793242, -0.021774834, -0.029187255, -0.0039306227, -0.002449839, -0.008194464, -0.0028833635, 0.0066915792, 0.0062597548, 0.011907475, 0.016878556, -9.622546E-4, -0.02555585, -0.008439278, 0.015056054, -0.018510649, 0.0028119595, -0.0023053307, -0.015654488, -0.02521583, 0.028480016, 0.005147892, -0.007868046, -0.0031791802, -0.00229173, -0.016660945, 0.018741863, -0.01181227, -0.0033083877, 0.00264365, 4.1227337E-5, 0.029785689, -0.019109083, 0.024277376, 0.0031876808, -0.013893188, -0.0041720364, 1.10825036E-4, -0.0264535, -0.008514083, 0.032533046, 0.01641613, 0.018755464, -0.017055368, -0.008480081, 0.001956811, -0.02010194, -0.008901705, -0.002276429, -0.008099259, 0.021135598, 0.029867293, -0.006613375, 0.005215896, 0.0025688456, -0.011567456, 0.0458346, 0.022835694, -0.004090432, -0.023896554, 0.009030912, -0.0264535, 4.0759813E-4, -0.032886665, 0.018796265, -0.006011541, 0.020673173, -0.0040224283, -0.0031944811, -0.0077864416, 0.010690207, 0.0115130525, -0.01656574, 0.009078515, -0.01572249, 0.0040632305, 0.0019619113, -0.009275726, 0.016728949, 0.017558595, -0.01871466, 0.003845618, 0.015382472, -0.008452879, -0.003917022, -0.0017315482, -0.008534484, 0.0018820068, 0.007242411, 0.020700375, 0.0033253885, -0.029377665, 0.01303634, -0.0061951512, 0.034246743, -0.0063821618, -0.007677635, 0.01324035, 0.015994508, 0.0056307195, 0.004454253, -0.0036008041, 0.007922449, 0.026004674, -0.009112516, 0.03473637, -0.018728262, 0.024358982, -0.021992447, 0.003296487, -0.0038762197, -0.015423275, 0.0034715969, 0.008051656, 0.038027756, 0.018551452, 0.016116913, -0.029377665, 0.020319553, 0.0061951512, 0.024794206, -0.004304644, -0.019884327, 0.006011541, -0.0088949045, -0.021067595, -0.023026105, -0.0074192206, 0.012723521, 0.008901705, -1.1794419E-4, -0.00811966, -0.0049676816, 0.016946562, 0.0049880827, 0.028643224, 0.009030912, -0.021285206, 0.013723178, 0.03753813, -0.019299494, -0.015899302, -0.014784038, 0.0014569826, -0.042271197, -0.00935053, -0.0031264774, 0.038163763, -0.015627285, 0.010472594, -0.012839128, -0.015246465, 0.029051248, -0.016837755, 0.01428081, 0.017749006, -0.009982966, 0.02363814, 1.2325699E-4, -0.0097721545, 0.029785689, -0.015015251, 0.0074872244, 0.002222026, -6.770634E-4, -1.9189838E-4, 0.017558595, 0.0034664965, -0.026657512, 0.020509964, -0.009058113, -0.01870106, -0.0014510322, -0.0068003857, -0.002664051, -0.009778954, -9.69905E-4, -0.029758487, -0.0193947, -0.008656891, 0.084052764, 0.04161836, 0.028207999, 0.019245092, -0.013519167, -0.0064943684, -0.013634773, -0.011839472, -0.006671178, -0.010329786, 0.014716035, -0.021761235, 0.021040393, -0.0044372515, 0.015083255, -0.013940791, -0.020319553, -0.011220636, -0.0042230394, -0.020836381, -0.033893123, -0.018796265, 0.02910565, 0.029323263, 1.6150916E-4, -0.016796952, 0.027827177, 0.0074804244, 0.011601458, 0.0065113693, -0.009391333, 0.006140748, 0.00405643, 0.007738839, -0.0063889623, -0.0023852352, 0.030302519, 0.015804097, 0.04072071, 0.003049973, -0.012424304, 0.0037334117, 0.008044857, -0.0035668022, 0.020251548, -0.025610251, -0.0077728406, 0.03122737, 0.028316805, -0.03900701, 0.016728949, -9.5715426E-4, -0.023597337, -0.019177087, 0.01093502, -0.005603518, -0.014389616, -0.009595344, -0.016443333, 0.008316872, 0.016266523, -0.019326696, 0.014607228, -0.012560313, -1.7425988E-4, -0.008514083, -0.01728658, -0.008072058, -0.022441272, 0.0013711278, 0.0012096186, -0.028942442, -0.0042434405, -0.003262485, 0.00652157, -0.004814673, 0.03139058, -0.013498765, 0.0055287136, 0.0012895231, -0.024535792, -0.028860837, 0.007942851, -0.02837121, -0.0032896865, 0.012383502, -0.015328069, 0.026167884, -0.004090432, 0.023678944, -0.004376048, 0.0029972699, -0.007840845, -0.002400536, 0.041917577, -0.0064093634, 0.026711915, 0.004097232, -0.009098916, 0.0067051803, 0.012206692, -0.028289605, -0.008235267, -0.014226407, -0.027840778, -0.0096429465, 0.0038388176, 0.013423962, -0.030057704, -0.0102617815, -0.023434129, -0.028071992, 0.015083255, -0.009615745, 0.011043826, -3.6764584E-4, 0.0053553036, 0.003808216, -0.015083255, 0.0046650646, 0.011173033, -0.0085072825, 0.0031468784, 0.023012506, -7.2509114E-4, 0.022373268, -0.014321612, -0.0317442, -0.011880274, 0.025515046, -0.003508999, -7.9054484E-4, -0.009908162, 0.0059945397, -0.0031655794, -0.012607915, 0.014321612, 0.012614715, -0.009778954, 0.004498455, -0.016783351, 2.9177906E-4, 0.014498422, 0.0024940413, -0.005606918, -0.027623167, 0.0044474523, -0.006912592, 0.02133961, 0.012607915, -0.0041176337, 0.019000277, -0.028534418, -0.005868733, -0.01429441, -0.032070618, -0.027065534, 0.007861245, 0.03808216, 0.013491965, 0.037510928, 0.0065725725, 0.03827257, 0.02188364, 0.013797983, 0.018102627, -0.012070685, -0.007283213, -0.036395665, -0.011961878, -0.0023767347, 0.022971703, -0.010254982, 0.010030569, -0.0027847579, 0.027908783, 0.0046242625, 0.009221323, 9.554542E-4, -0.022373268, -0.019149886, 0.0058143297, -0.032206625, -0.005362104, -0.018211432, -0.019462703, 0.039578244, -0.0022254263, -0.006541971, -0.0012640217, 0.041319143, 0.0028952642, 0.0044678533, -0.027908783, 0.013614372, -0.023474932, -0.009860559, -0.02203325, -0.004073431, -0.013342356, 1.6235921E-4, 0.010214179, 0.008527684, -0.018918673, 5.7165744E-4, 0.024413384, -0.031308975, -0.021720432, 0.010057771, -0.008860903, -0.01676975, -0.031526588, 0.0016388929, -0.0299761, -0.022890098, -0.0030023702, -0.012682719, -0.0045630587, -0.0075620287, -0.0458346, 0.050078038, -0.0014926846, 0.033267487, 0.013723178, 0.054049466, 0.033702713, 0.023610938, -0.016715348, -0.009112516, -0.022359667, -0.005593317, 0.026970329, 0.038843803, -0.01623932, 0.011016625, 0.016973762, -0.01710977, -0.036395665, -0.0476027, 0.021611625, 0.026222287, 0.018306637, -0.026766317, -0.0042604418, -0.03261465, 0.019517107, -0.013546368, 0.0060455427, 0.018510649, -0.025487846, -0.03122737, 8.2964706E-4, -0.007963251, 0.010458993, 0.0066745784, -0.030982558, 0.00405983, -0.010438592, -0.008235267, -0.01569529, -0.019544309, 0.032533046, -0.015640887, 0.017585797, 0.0021200203, 0.006065944, 0.0071132034, 0.0028459614, 3.7954652E-4, 0.03310428, -0.008072058, 0.013247151, 0.0073784185, -0.0023852352, 0.0016431431, 0.02060517, -0.022998905, -0.008235267, -0.028833635, 0.004637863, 0.02132601, -0.0026827522, 0.010860216, 0.007548428, -0.0128935315, -0.02396456, 0.0051512923, 0.0014501823, 0.0023903355, -0.03495398, 0.013661975, -0.0035157993, 0.011145832, -0.0038048157, 0.007426021, 0.0053859055, -0.003845618, 0.0125195095, -0.0066235755, -0.003859219, -0.024413384, -0.023610938, -0.040856715, -0.036722083, -0.007820443, -0.009778954, 0.010003367, -0.019979533, -0.001500335, 0.0042570415, -0.012417505, -0.0037334117, -0.009459336, -0.0138999885, -0.00635496, 0.021462018, -0.01868746, -0.015192062, 0.011186634, 0.034899577, 0.0052975, 0.003245484, 0.005127491, 7.3486665E-4, 0.027296748, -0.036232453, 0.007636833, -0.0020945189, -0.013831984, -0.0073988196, 0.024794206, 0.027364751, 0.020713974, 0.0029479673, -0.02008834, -0.0048588756, -0.021965245, 0.014566426, 0.0030533732, 0.005610318, 0.031853005, 0.011479051, 0.032696255, 0.023420528, -0.007793242, -0.023311721, -9.1380184E-4, 0.014661632, -0.01303634, 0.002028215, 0.005855132, 0.021720432, -0.007677635, -0.015736092, -0.030819347, -0.010288984, -0.008588887, -0.031172968, -0.008799699, 0.011914276, 0.025827864, 0.0103909895, 0.0070247985, 0.017259378, 0.009636146, 0.005168293, -0.012220293, -0.0062189526, 0.023882953, 0.012308698, 0.0076436335, 0.0091397185, -0.028942442, -0.0046650646, 0.021217203, 0.020863583, 0.024236575, 0.03737492, -0.022794893, -0.0117714675, -0.0036586074, -7.267912E-4, -0.019666715, 0.015532081, 0.011955078, -0.040448695, 0.0035225998, 0.015776895, 0.021938045, 0.0074804244, 0.016905759, 0.026548706, -0.004678665, -0.0050288853, 0.0029224658, -0.017749006, 0.0141176, -0.026167884, 0.028996844, 0.008527684, -0.0024039363, 0.02132601, 0.026385495, -0.0062597548, 0.0013252251, -0.008833701, 0.008582086, -0.023570137, -0.0071880077, 0.008568486, 0.024059765, -0.02541984, 0.019857125, -0.024086965, 0.0030414725, -0.004525657, 0.027228745, 0.0033610906, 0.024494989, 0.00546411, -0.05891854, -0.013423962, -0.017259378, 0.017177774, -0.023257319, 3.351315E-4, -0.021067595, -0.0055797165, -0.013015938, 0.02166603, -0.020441959, -0.03927903, 0.0018633057, -0.01321995, -0.020904385, 0.0063039577, 0.18932274, -0.025596652, 0.006895591, 0.036014844, -0.006912592, -8.8149996E-4, 0.013423962, 0.010860216, -0.001003907, 0.008174064, 0.0066779787, 0.013491965, 0.0015088356, 0.001497785, 0.01216589, -0.0028544618, -0.026004674, -0.019857125, -0.019557908, -0.022862896, -0.0021812236, 0.0035294, -0.008242067, -0.024073364, 0.00722881, -0.004070031, -0.0058857338, 0.019775521, 0.017749006, 0.020346753, -0.015504879, -0.01429441, 0.0054539093, -0.008609288, -0.01551848, -0.0057905284, -0.013729978, -0.0054573095, 0.021353211, 0.003491998, -0.0025858467, 0.002097919, 0.006589574, -0.011941477, -0.0032114822, 0.01871466, -0.026589507, -0.0051070894, -0.025651054, 0.014743236, -0.036531672, 8.9170056E-4, 0.020210747, 0.0282352, -0.0029156653, -0.013512366, -0.0038218168, 0.0036552073, -0.010669805, 0.023583738, 0.030275317, 0.032968268, -0.03737492, 0.0056987233, -0.0046140617, 0.017259378, -0.023978159, 0.0070928023, 0.014416818, -0.03936063, -0.008745296, -0.024644598, -0.02539264, -0.002732055, -0.014566426, -0.018116226, -0.003473297, 0.015736092, 0.015137658, 0.018973077, -0.036722083, -0.018755464, -8.537672E-5, -0.020441959, -0.011519853, -0.01146545, 0.015232864, -0.012941134, 0.0072968137, -0.010547398, -0.013328756, -0.0282352, -0.007086002, -0.01604891, -0.006477367, -0.0073172147, 0.021570824, 0.0019177088, -0.014158403, -0.0025178427, -0.03770134, 0.02275409, 0.02541984, -0.0063889623, -0.025487846, -0.022713289, 0.0017919017, 0.008745296, 0.02119, -0.0088813035, -0.014308011, -0.011778268, 3.687084E-4, -0.00687859, 0.005623919, 0.01885067, 0.0045936606, -0.0024430386, 0.041237537, -0.010465793, 0.0013379758, -0.023842152, 0.02045556, -0.002594347, 0.0046990663, -0.028996844, -0.031200169, 0.0056987233, -0.0059129354, -0.033267487, 0.007283213, -0.02521583, 0.009955765, -0.003736812, 3.625987E-6, -0.0024481388, 0.041727167, -0.011186634, 5.244797E-4, -0.0040122275, -0.0039612246, -0.011247838, 2.1644353E-4, 0.005134291, 0.015967306, -0.026222287, 0.00670178, 0.00581773, -0.00441005, -0.030193713, -0.016987363, -0.0012300197, 0.014103999, 0.027106337, 0.054620698, 9.928563E-4, -0.0176538, -0.02520223, -0.018660259, 0.03936063, -0.05083968, 0.01040459, 0.014022395, -0.007691236, -0.030792147, -0.0030278717, -0.17408988, 0.007738839, 2.5458942E-4, -0.029921697, 0.028262403, 0.020360354, 0.019612312, 0.008228467, 0.010785412, -0.018877871, 0.02082278, 0.006660978, -0.03139058, -0.012410704, 0.0021812236, 0.008180864, -0.019163487, 0.040149476, 0.018265836, -0.013634773, 0.02962248, 0.0026589509, -0.0049880827, -0.021312408, 0.012261095, 0.0025093423, 0.010268582, 0.013920389, -0.0016057411, 0.0011161133, -0.054076668, -0.0051036896, 2.888039E-4, -0.0034511958, -0.023066908, 0.002924166, -0.008418878, -0.023692543, -0.01921789, 2.9273535E-5, 0.029024046, 0.01991153, 0.023243718, 0.017354583, 0.020754777, 0.013498765, 0.029867293, -0.026167884, 0.021312408, -0.016035309, -0.014212806, -0.0282352, 0.013519167, -0.002750756, -0.005552515, 0.013811584, 0.0030448728, -0.0070315986, 0.009289327, 0.0010149576, -0.028507216, -0.009615745, 0.0011101629, -0.01747699, -0.0051954947, -0.011132231, -0.021584423, 0.0071132034, -0.045453776, 0.0019874128, -0.015953705, 0.010118973, 0.020428358, 0.0055253133, 9.996567E-4, -0.015980907, -0.029078448, 0.009398133, -0.0016601442, 0.0078884475, -0.0035872033, 0.036014844, -0.007725238, 0.007514426, 0.0062869564, -0.0042978437, 0.013124744, 0.0040632305, 0.008269269, -0.017354583, 0.018374642, -0.009574943, -0.04496415, 0.01324035, -0.00916692, -0.0026504502, -0.021611625, 0.014103999, 0.011485851, -0.010860216, -0.0048962776, -0.005076488, -0.0015972406, 0.01287313, 0.034301147, 0.018986676, 0.006331159, 0.025827864, 0.024971016, -0.005555915, -0.012811926, 0.0028289603, 0.013260752, 0.029948898, -0.010656204, 0.01269632, -0.006732382, -0.021938045, 0.0016023408, 0.021978846, 0.047140274, -0.0018361041, -9.4270345E-4, -0.014852042, -0.0017732006, -0.021121997, -0.08579367, 0.007840845, 0.01568169, 0.026575906, -0.040503096, 0.04368568, -0.009296128, 0.021815637, -0.027487159, 0.036422864, 0.0019075081, -0.022495676, 0.012254295, -2.2271262E-4, 0.0141448025, -0.0021914244, -0.018197833, -0.010166576, -0.003049973, 0.0176538, -8.8064995E-4, -0.009853759, 0.008452879, -0.028969644, -0.010288984, 0.016361728, -0.0299761, 0.028806433, 0.0036280057, 0.0019432101, 0.010254982, -0.02363814, 0.019530708, -0.03419234, -0.018048223, -0.042543214, -0.0369941, -0.028207999, -0.0082488675, -0.046759453, 0.007915649, 0.02238687, 0.009391333, -0.02027875, -0.019381098, -0.0032930868, -0.024494989, 0.028833635, -0.015532081, -0.02416857, 8.432478E-4, -0.018592255, -0.039034214, -0.012063884, 0.014403217, 0.01429441, 0.032533046, 0.028289605, -0.013430761, -0.02132601, -0.007140405, 2.467265E-4, -0.02450859, 0.030737743, 0.0074872244, 0.010975823, -0.0036790087, -0.016851356, 0.011968679, -0.020428358, -0.030248115, 0.022019649, -0.040530298, -0.010152976, -0.022740489, -0.0045052553, -0.025324635, -0.015205663, 0.03313148, -0.01958511, 0.011649061, -0.02735115, 7.8586955E-4, -0.016144115, 0.011084628, 0.017245779, 0.008425678, 0.0076232324, -0.010472594, -0.032342635, 9.2485244E-4, 0.02608628, -0.004168636, 0.0013371258, 0.0080040535, 0.010785412, 2.3695095E-5, 0.014498422, -0.015382472, 0.011356644, -0.006575973, 0.01145185, -0.07420581, 0.037075702, -0.021530021, -0.004960881, -0.021407614, -0.005450509, 0.006997597, 4.4074998E-4, -0.0037470125, 0.01743619, -0.001482484, 0.024209373, 0.0027286548, -0.0052464977, -0.021244405, 0.013083942, -0.00599794, -0.0033066876, 0.0056511206, -0.007915649, -0.022862896, 0.017844211, 0.022414071, 0.01094182, 0.007800042, 0.020577967, 0.0051240907, 0.0069431937, -0.017898615, -0.015885701, 0.0334851, -0.018469848, -0.006456966, 0.010744609, -0.0013328756, -0.022713289, -0.0065453714, 0.004199238, 0.013349157, 0.0013337256, -0.013213149, -0.03071054, -6.8938907E-4, 7.811943E-4, -0.011404247, 0.022509277, -0.01817063, 0.022019649, -0.0067085805, 0.008065257, 0.017871413, 0.009908162, -0.02945927, -0.027772775, 0.017490592, -0.011574256, 0.054022264, 4.2374904E-4, -1.0599039E-4, 9.546041E-4, 0.011567456, 0.011567456, 0.03372991, -0.029268859, 0.008935707, 0.013614372, 0.0067459824, -0.012233893, -4.3819984E-4, -0.0352532, -0.0117578665, -0.0090105105, 0.0095273405, 0.032859463, 0.011173033, 0.012057084, 0.004138035, 0.015627285, 0.006650777, 0.013967992, 0.032397036, 0.0013796282, -0.03139058, 0.013811584, -0.0049642813, 0.02717434, 0.0018667058, 0.021679629, 0.011907475, 0.0049676816, -0.017082568, 0.012247494, 0.016715348, -0.0030618736, 0.006997597, 0.015953705, -0.03332189, -0.012635116, 0.008140062, 0.031635392, 0.0019262092, -0.01146545, -0.011016625, -0.011791869, -0.02151642, -0.010731009, -0.016443333, -0.008316872, 0.011343043, 0.012288297, 0.026929528, 6.859889E-4, -0.014580027, 0.0075756297, -0.021761235, 0.016252922, -0.008072058, -0.020428358, -0.015790496, 0.04091112, 0.020428358, 0.017762607, 0.033593904, -0.012757523, 0.051900543, 0.024943814, 0.02079558, -0.032560248, 0.0092553245, 0.0028102593, 0.019340297, -0.0072356104, -0.030030502, 0.010839814, -0.011363444, 0.013648374, 0.01693296, 0.022278063, -0.02452219, 0.07023438, 0.0096429465, -0.0037640135, 0.02661671, -0.01923149, 0.01199588, 0.013206349, 0.01640253, -0.021271607, 0.0013532768, 0.010989423, -0.020265149, -8.3134713E-4, -0.031118564, 0.011934677, 0.007650434, 0.02027875, 0.008384875, 0.0048928773, -0.027079135, -0.011744266, -0.008078858, 0.016837755, 0.004433851, -0.015776895, -0.008473281, 0.008548085, -0.010731009, -0.0022475275, -0.034491558, -0.002767757, -0.021312408, -0.019639514, 0.0067629833, 0.028344007, -0.009078515, -0.0015929904, 0.0048656757, 0.026358295, -0.007942851, -0.008602488, -0.0088269, -0.009207722, -0.010860216, 0.028425612, 0.003631406, -0.007473624, -0.030737743, 8.2412176E-4 ], + "id" : "b895d2a8-3b65-4427-95d5-54d0ad3b9e4a", + "metadata" : { + "source" : "movies.csv" + } + }, + "5cf395ea-32aa-4afe-93b1-0c07a9a429c7" : { + "text" : "Verel-Brian Waller-Steve Wharton-Wil Wheaton-Brianna Womick-Rob Wood-Lynnanne Zager,san francisco california-spacecraft-teleportation-space mission-parachute-time travel-black hole-supernova-prequel-warp speed-futuristic-warp engine-space-romulans-alternate reality-space opera-reboot-unlikely friendship-child driving car-23rd century-based on tv series-24th century,/lV5OpzAss1z06YNagOVap1I35mH.jpg,/q7M0JpPixbEYT8EhnI7wTEMONxz.jpg,54138-188927-49538-10528-56292-11-2080-36657-59967-1726-1891-10138-70981-193-201-36668-272-37724-199-10764-1771\r\n9836,Happy Feet,Animation-Comedy-Family,en,Into the world of the Emperor Penguins who find their soul mates through song a penguin is born who cannot sing. But he can tap dance something fierce!,53.385,Kennedy Miller Productions-Animal Logic,11/16/06,100000000,384335608,108,Released,WARNING: May Cause Toe-Tapping.,6.16,4539,Elijah Wood-Robin Williams-Brittany Murphy-Hugh Jackman-Nicole Kidman-Hugo Weaving-Anthony LaPaglia-Elizabeth Daily-Magda Szubanski-Miriam Margolyes-Carlos Alazraqui-Lombardo Boyar-Jeffrey Garcia-Johnny A. Sanchez-Fat Joe-Alyssa Shafer-Cesar Flores-Danny Mann-Mark Klastorin-Michael Cornacchia-Seishirou Katou-Arif S. Kinchen-Steve Irwin-Nicholas McKay-Tiriel Mora-Lee Perry-Alan Shearman-Larry Moss-Peter Carroll-Giselle Loren-Michelle Arthur-Denise Blasor-Dee Bradley Baker-Roger Rose-Chrissie Hynde-Richard Carter-J. Grant Albrecht-Logan Arens-Charles Bartlett-Shane Baumel-T.J. Beacom-Kwesi Boakye-A.J. Buckley-Erin Chambers-Rickey D'Shon Collins-Scotty Cox-Django Craig-Nicholas DeLaurentis-Olivia DeLaurentis-Chris Edgerly-Efrain Figueroa-Jeff Fischer-Sonje Fortag-Spencer Ganus-Khamani Griffin-Khadijah Haqq McCray-Aldis Hodge-Fisher Keene-Michael Krepack-Libby Lynch-Diane Michelle-Ryan Munck-Christian Pikes-Steve Pinto-Zo� Raye-Noreen Reardon-Eliana Reyes-Nicole Richmond-Aimee Roldan-Kyndell Rose-Alyssa Smith-Mari Weiss-Billy 'Sly' Williams-Rachel York-Charlotte Gillman-Warren Coleman-Felix Williamson-Carly Andrews-Cassandra Swaby-Winston Cooper-Henry Nixon-Kelly Tracey-Yann Le Berre-Belinda Bromilow-Alan Zitner-Dasi Ruz-Helmut Bakaitis-Simon Westaway-Craig Ricci Shaynak,ocean-fish-zoo-penguin-tap dancing-love-crush-snow-anthropomorphism-singing-antarctica-family-duringcreditsstinger,/zP4CK9O70P8GDilfTkPm4lrmaks.jpg,/9DUAR7p4SGqt2ISH2lmSzNx3uni.", + "embedding" : [ 0.016916014, -0.037275843, -0.013671942, -0.03796461, -0.005482552, 0.032977965, -0.0038088583, -0.017618554, -0.016544083, -0.03603607, 0.008375356, 0.015869096, 0.015869096, -0.00296168, 0.004910879, -0.001871713, 0.021475624, -0.004149796, 0.009387838, -0.017205296, -0.0061782026, -0.0024003384, -0.004056813, 0.0028084305, 0.0026810092, 0.007004718, 0.032123897, -0.005296586, -0.01327246, -0.008926366, 0.016103275, -0.009394725, -0.018624147, -0.017026218, -0.0145879965, -0.014519121, 0.01265946, -0.031545337, 0.017108869, -0.013396437, -4.928959E-4, 0.020304728, -0.017604778, 0.0037744204, -0.01478085, 0.013520414, 0.0065845726, -0.006959948, -0.004335762, 0.020428706, 0.036008522, 0.02947905, -0.020001672, -0.014615547, -0.0014412362, -0.0063366177, -0.020456256, -0.0031011547, 0.0028669753, 0.006746432, 0.0074593015, -0.005630636, -0.019767493, -0.0059026973, -0.024382204, -0.0071975715, 1.05413E-4, -0.006870409, 0.00859576, 0.0020955608, 0.015648691, -4.653454E-4, 0.0125285955, 0.0018062805, 0.017287947, -0.028735185, -0.002205763, 0.003977605, -0.023941396, 0.008816164, 0.014918603, -0.004876441, -0.0070529315, 0.012246203, 0.017632328, 0.006749876, -0.003073604, 0.021792457, -0.034575894, 0.008464895, 0.016819589, 0.037854403, -0.008141177, 0.007838121, 0.015290535, 0.030939227, -0.002851478, 0.027288783, -0.012886752, -0.050748046, -0.0019922464, -0.008272042, 0.0059405793, -0.012466607, 0.003977605, -0.004669812, 0.0042186724, -0.006849746, 0.032564707, 0.0011734797, 0.011633204, -0.0067429882, 0.010434757, -0.030443316, -0.005072738, -0.022701623, 0.026792875, -0.0117916195, -0.01170208, -0.022949576, 0.037386045, 0.030829024, 0.0024141136, -0.029038241, 0.038405415, 0.033997335, -0.0040464816, -0.01260436, 8.4104395E-5, -0.006002568, 0.023101104, -0.0026878968, 0.013052056, 0.0069909426, -0.028115299, 0.031049429, -0.02180623, 0.0035075247, -0.0054515577, -0.032812662, 0.030470867, 0.025539326, -0.025070967, -0.014188514, -0.0295617, 0.013423988, 0.0071493583, -0.0021937096, 0.020773087, 0.0033714941, 0.014877277, 0.03060862, 0.011805395, 0.014353817, 0.008878153, 0.006188534, -0.01983637, 0.0114265755, -0.007245785, -0.020910839, -0.0126732355, -0.007707256, -0.004056813, -0.009684006, 0.0038708472, 0.034713645, 0.00926386, -0.017632328, -0.010786026, 0.0016435602, -0.020635335, 0.020249628, -0.05308984, 0.016365005, 0.004790345, 0.0154696135, -0.009429163, -0.016130826, -0.028377028, -0.0146568725, 0.0077554695, -0.0032285757, 0.016488982, 0.04463183, -0.0075144023, -0.0060783317, 0.020786863, -0.036394227, 0.021503175, -0.01986392, 0.006536359, 0.020993492, 0.010393431, -0.004628486, -0.65239614, -0.01797671, 0.0045286156, -0.012191102, 0.022577645, 0.010999543, -0.0052380413, -0.0030770479, -0.027798468, 0.0015677963, -0.016709385, 0.022233265, 0.018748123, -0.022343466, -0.017894058, -0.018996079, 0.010710262, -0.015386961, 0.03273001, 0.009918185, -0.025181169, 0.027426535, 0.009511814, -0.0030873793, 0.020318503, 0.0010124814, -0.0056754057, -0.017522126, 0.0048833285, 0.0061644274, -0.017880283, 0.034079984, 0.016447656, -0.004352981, 0.0429237, 0.012466607, -0.02445108, 0.04027885, 0.027398985, 0.028652534, -0.03427284, 7.4515527E-4, 0.0122324275, 0.003386991, -0.0018613816, 0.00978732, 0.0117985075, 0.0070426, -0.006247079, -0.016599184, -0.0037124315, 0.017301721, 0.0011528168, 0.008251378, -4.5070917E-4, -0.0054550017, 0.020566458, -0.032702457, 0.0174808, 0.006822196, -0.014408918, 0.02343171, 0.008850602, 3.435743E-5, -0.01504258, 0.023748541, -0.008154952, -0.011888047, -0.0014911715, -0.046422616, 0.012129113, 0.017935384, -0.013479088, 0.008099851, -0.0024313328, 0.0060921074, 0.03058107, -0.006319399, -0.009938847, 0.01666806, -0.003939723, -0.0015256096, -0.008616423, 0.01060006, 0.040416602, -6.9694186E-4, -0.03055352, 0.00847867, 0.019987898, -0.015262984, 0.009132995, 0.022839375, 8.290982E-4, -0.0081205135, -0.02227459, -0.01591042, -0.008347806, -0.0071424707, 0.01690224, -0.05165721, -6.1213796E-4, -0.023142431, 0.022260815, -0.014353817, 0.006133433, 0.0023314622, 0.004470071, -0.0055307653, 0.021530725, -0.0069392854, -0.01724662, -0.018940978, -0.02122767, 0.0021696028, -0.02308733, -0.022136837, 0.012149776, 0.01858282, -0.00292552, -0.0054584453, -0.0013241465, -0.0017072709, -0.0059061414, 0.002093839, 0.0077348067, 0.011715855, -0.0014266, -0.0144364685, -0.0070494874, 0.0058613718, 2.5075272E-4, -0.00325957, 0.022178164, -0.0017348214, 0.0042290036, 0.016516533, 0.020277178, -0.008017199, 0.0068531903, 0.015690017, -0.026007684, 0.0048488905, -0.007762357, -0.017039992, -0.0013620285, -0.028790286, -0.023293959, 1.3753732E-4, -0.01196381, -0.0201532, -0.016461432, 0.012728337, -0.0031993033, 0.010414094, 0.014711974, 0.0062918486, -0.019009855, -0.027702041, 0.014505345, -0.025305146, 0.012755888, 0.005575535, -0.00604045, -0.03118718, 0.025387798, 0.0022677516, -0.007652155, 0.0071424707, -0.0061540958, -0.010613835, 0.009801095, -0.01344465, -0.0025725293, 0.021420524, -0.02047003, 0.03121473, -0.015841546, 0.008437345, -0.0056788493, -0.005448114, -0.003595342, -0.0077348067, -0.026407167, -0.013196696, 0.034741197, 0.016392555, 0.036228925, -0.003276789, -0.021365423, 0.0030116155, -0.011667642, -0.010145476, 0.006205753, -0.007831234, 0.0067051062, 0.008134289, -0.006023231, 0.0046732556, -6.2548276E-4, -8.7989453E-4, 0.030773923, 0.0070873694, 0.01004905, -0.015428287, 0.013265572, -0.029947408, -0.005761501, -0.04664302, 0.013403324, -0.023831194, 0.022646522, 8.7386783E-4, -0.01716397, -0.0018596597, 0.011350811, 0.008871265, -0.015552265, 0.010737812, -0.016805813, 0.014477795, -0.002872141, -0.005317249, 0.01989147, 0.01907873, -0.026104111, 0.010820464, -0.002777436, -0.0059543545, -0.0063744998, -0.0065707974, 0.00255531, 0.0032475167, 0.0043667564, 0.005764945, -0.004277217, -0.008086076, 0.02901069, -0.009277635, 0.029451499, 0.0039603864, -0.004091251, 0.014505345, 0.022536319, 0.003221688, -0.004311655, 0.0015230268, 0.012590584, 0.018899651, -0.020373605, 0.032812662, -0.018665472, 0.015414512, -0.02140675, 0.008809277, 0.008154952, -0.0134859765, 0.0014687867, -0.008299592, 0.027922444, 0.012411506, 0.022205714, -0.014477795, 0.015813995, 0.0039362796, 0.008230716, -0.016544083, -0.029423948, -5.5445405E-4, 0.0060852193, -0.0115712155, -0.012590584, -0.018637922, -0.003447258, 0.010799801, -0.0020990048, -0.020401156, -0.012838539, 0.016475206, 0.011660755, 0.016502757, 7.4257245E-5, -0.028046422, 0.009277635, 0.02602146, -0.028377028, -0.014408918, -0.014918603, -6.6035136E-4, -0.032509606, -0.006557022, -0.021420524, 0.028845387, 4.37472E-5, 0.013506639, -0.012652573, -0.003411098, 0.017962934, -0.011020205, 0.024478631, 0.029258644, -0.007631492, 0.028680084, -0.0063848314, -0.008223828, 0.03005761, -0.024285777, 0.0012578531, -0.014670648, 0.004755907, -0.004835115, 9.115345E-5, -0.010455419, -0.026241863, 0.008871265, -0.01852772, -0.011268159, -0.0031166517, -0.0021213896, 0.0057580573, -0.0063607246, -0.013313785, -0.025098518, -0.027853569, 0.008533771, 0.07361497, 0.03115963, 0.02012565, 0.008960804, -0.010682711, 0.004480402, -0.013961222, -0.015731342, -5.983627E-4, -0.026668897, 0.024616383, -0.011171733, 0.03011271, -0.0073077735, 0.026200539, -0.008967692, 0.0043633124, -0.017039992, 0.004590604, -0.015221658, -0.0322892, -0.030140262, 0.0087404, 0.038873773, 3.986215E-4, -0.013589291, 0.02497454, 0.00909167, -0.0060301186, 0.01684714, -0.00862331, 0.004652593, -0.0010055937, 0.02340416, 0.0022763612, 0.004259998, 0.026269414, 0.026903076, 0.028349478, 0.0014489848, -0.012122226, 0.028680084, 0.007245785, -0.023362836, 0.012142888, -0.010875565, -0.012335742, 0.026269414, 0.02631074, -0.040223747, 0.02468526, 0.0045492784, -0.015483389, -0.02140675, 0.014629322, 0.013906121, -0.0038226338, -0.013547964, -0.01910628, -0.0016263413, 0.003953499, -0.0322892, 0.016819589, -0.008244491, -0.010441644, -0.008389131, -0.014932378, 0.0049797553, -0.012473495, -7.348238E-4, 0.008003424, -0.02230214, -0.009697781, -0.014629322, 0.01504258, 5.1269785E-4, 0.026379617, -0.008458007, 0.016681835, 0.023417937, -0.018279765, -0.014891053, 0.015056355, -0.010517408, -0.008251378, 0.017081318, -0.00511062, 0.024037823, -0.01086179, -0.008905703, -0.010386543, 0.011323261, -0.022371016, -0.0024123918, 0.042234935, 0.012032687, 0.018376192, 0.025938807, 0.0066568926, -0.0054412265, 0.0011803673, -0.015717568, -0.0022315916, -0.0035299095, -0.008726625, -0.0029048573, -0.0050520753, 0.0059336917, -0.031958595, -0.02898314, -0.017825183, -0.027481636, 0.019987898, -0.0095187025, 0.009057231, -0.0021696028, 0.031931043, 0.0054205633, 0.00248299, 0.009560028, 0.007190684, -0.015262984, 0.00909167, 0.024382204, 0.005021081, 0.03967274, -0.011047755, -0.008092963, -0.008272042, 0.027095929, -0.006429601, 0.0175359, -0.008864378, -0.006822196, -0.016626734, -0.017797632, 0.012349517, 0.002092117, -0.008292705, 0.015662467, -0.018321091, 0.0201532, 0.020290952, -0.004136021, 0.00381919, -0.028294377, 0.0038467404, -0.017756306, 0.0072733355, 0.024024047, -0.007335324, 0.019905245, -0.020552682, -0.010758475, -0.014119638, -0.034190185, -0.015745118, -0.0024313328, 0.023817418, 0.020938389, 0.028817836, 0.002536369, 0.024905663, 0.014560446, 0.010786026, 0.020263402, -0.020525131, -0.025139842, -0.023073554, 0.008871265, 0.007996537, 0.02146185, 0.009470489, 0.008733513, -0.0058613718, 0.025608202, 0.002426167, 0.020290952, 0.0068669654, -0.020332279, -0.030773923, 0.0075281775, -0.016764486, 7.976734E-4, -0.017384375, -0.014422693, 0.032702457, -0.0076246043, -0.0049590925, -0.007686593, 0.02445108, -0.0033628845, 0.03545751, -0.0018665473, 0.014698199, -0.027702041, -0.01826599, -0.038873773, -0.016626734, -0.014849726, -0.024823012, 0.009243197, 0.0022384792, -0.0010408928, -0.016819589, 0.01916138, -0.023514362, -0.029727003, 0.00752129, -0.0030030059, -0.020855738, -0.028239276, 9.3843933E-4, -0.03113208, -0.008519996, -0.008664636, -0.017783856, 0.015979297, -0.012852314, -0.040857412, 0.020483807, -0.004652593, 0.03854317, 0.027991321, 0.060335625, 0.022178164, 0.0049177664, -0.022081736, -2.4308485E-5, -0.007225122, -0.0040223747, 0.026393391, 0.029038241, -0.014057649, -0.005262148, -0.0015221658, -8.89365E-4, -0.04132577, -0.042124733, 0.022715397, 0.017962934, 0.024492405, -0.024836788, -0.0066603366, -0.031545337, 0.01858282, -0.005947467, -0.00833403, 0.011454126, -0.029754555, -0.016819589, 0.010730925, -0.0036263363, 0.015800219, -0.004373644, -0.01530431, 0.0114265755, -0.009387838, 0.005320693, -3.807567E-4, -0.011853608, 0.02465771, -0.01905118, 0.0016280632, 0.008168727, 0.010958216, 0.003319837, -0.0027016723, 0.00244683, 0.029809656, -0.021145018, 0.014560446, -0.005544541, -0.01394056, 0.025704628, 0.015772669, -0.025608202, -0.012266866, -0.021420524, -0.0018751568, 0.020759312, 0.012838539, 0.008616423, -0.0071080322, -0.010965104, 0.0029306859, 0.010848015, -0.01978127, -0.010992655, -0.04259309, 0.014326267, 0.0033594407, 0.016805813, -0.010531183, 1.5830783E-4, 0.019436887, -0.0055342093, 0.025153618, -0.0047524637, 0.0039603864, -0.014023211, -0.016998667, -0.041518625, -0.026710222, -0.010737812, -0.019423112, -0.00909167, -0.011399025, -9.3671744E-4, -3.1381755E-4, 0.009863083, 0.004594048, 0.011192396, -0.011523002, 0.0021782124, 0.025043417, -0.006278073, -0.012349517, 0.0022729174, 0.013575516, 0.0012724893, -4.031415E-4, 0.006333174, -6.556161E-4, 0.026999503, -0.011922484, 0.013169145, -0.0022901364, -0.037661552, 1.1965909E-5, 0.007314661, 0.010386543, 0.03876357, -0.014519121, -0.032123897, -0.006746432, -0.0134722, 0.03182084, -0.012445944, -0.0010667214, 0.02691685, 0.024699034, 0.03534731, 0.023748541, -0.0018837664, -0.038983975, 0.003373216, 0.0042290036, -0.02764694, 0.0025518662, 0.013547964, 0.009918185, 0.009284523, -0.008003424, -0.03815746, -0.0013990495, -0.02012565, -0.011805395, 3.9733006E-4, 0.02177868, 0.03438304, -0.007032268, -0.0018854883, 0.01690224, 0.012074012, 0.017301721, -0.008829939, -0.011950035, 0.02901069, 0.007672818, 0.011901822, 0.025415348, -0.029809656, -0.002980621, 0.024382204, 0.010262566, 0.0123839555, 0.033721827, -0.021530725, -2.3030507E-4, -0.00651914, 0.0045871604, -5.944884E-4, -0.00856821, 0.029120892, -0.04983888, 0.007411088, 0.019423112, 0.005248373, -0.01115107, 0.012156663, 0.010682711, 0.0034076541, 0.008926366, -0.005592754, -0.013913009, 0.019726167, -0.021048592, 0.013768368, -2.6840228E-4, 0.00103831, 0.026792875, 0.022508768, -0.0049039912, -0.0037227632, -0.016351229, -0.0019922464, -0.002612133, -0.009394725, 1.4151924E-4, 0.017990485, -0.0029031353, 0.013892346, -0.02854233, 0.0036917687, -0.010524296, 0.011764069, -0.008430457, 0.029919857, 0.001705549, -0.051354155, -0.011640091, -0.018541494, 0.008051638, -0.020359829, -0.0075832787, -0.029396398, -0.0071769087, -0.0027860457, 0.003516134, -0.035650365, -0.034135085, 0.015869096, -0.004432189, 0.00778302, 0.013575516, 0.18051097, -0.014822176, 0.010531183, 0.04306145, -0.009415388, 0.006391719, 0.024850562, 0.028790286, 9.82348E-4, 0.0187619, -0.006650005, 0.012390844, -0.008664636, -1.0363728E-4, 0.0077141435, -0.0117916195, -0.03118718, -0.013389549, -0.013306898, -0.020717986, -0.015249209, -0.0068635214, 0.0030064497, -0.020318503, 0.011171733, 0.01394056, -0.026062785, 0.00871285, 0.008368468, 0.02204041, -0.0063607246, -0.02343171, -0.0074042003, 0.010703375, -0.012411506, -0.020042999, 0.019450663, 0.019850144, 0.02018075, 0.0066431174, -0.009208759, -0.008554434, 7.5075147E-4, -0.002315965, -0.008485558, 0.037275843, -0.03157289, -0.004332318, -0.017852733, 0.02468526, -0.03278511, 0.008912591, 0.030167812, 0.030939227, -0.01425739, 0.00259147, 0.0047731264, 0.003386991, -0.001369777, 0.013616841, 0.013589291, 0.04190433, -0.031462684, 0.00659146, 0.008444232, 0.011516115, -0.025374023, -0.0061609834, 0.01637878, -0.020497581, -0.009312074, -0.040058445, -0.014574221, 0.0075695035, -0.016392555, -0.019822594, 7.374067E-4, 0.008051638, 0.00842357, 0.034603443, -0.024795461, -0.014464019, -0.0015832935, -0.03008516, -0.02793622, -0.02232969, 0.02303223, -0.0139956605, -0.0036814373, -0.02361079, -0.005840709, -0.029313745, -0.0061437646, -0.00325957, -0.0013818304, 0.013637504, 0.015924197, 0.00876795, -0.020635335, 0.0028480343, -0.03912173, -0.0038260776, 0.02526382, -7.335324E-4, -0.018982304, -0.019230258, -0.020249628, 0.0043805316, 0.016654285, -0.01821089, -0.021241445, -0.020662885, 0.005668518, -0.023913845, 0.0033267245, 0.015703792, 0.014822176, -0.022054186, 0.030305564, -0.007913885, -0.011378362, -0.016309904, 0.018982304, -8.936698E-4, -0.008037862, -0.02665512, -0.03854317, 0.019230258, -0.0026345178, -0.027702041, 0.010117926, -2.612994E-4, -0.0026138548, -0.009071006, -0.0037468697, 0.01298318, 0.027164806, -0.0049418733, -0.0057511698, -0.006074888, -0.011171733, -0.0037709766, -0.0070357122, 0.014312492, 0.006298736, -0.029093342, -5.4153975E-4, -0.0028290933, -0.0060783317, -0.03165554, -0.031021878, -0.0114128, 0.012556146, 0.0042324476, 0.042730846, 0.006749876, -0.020869514, -0.033501424, -0.022742948, 0.033115715, -0.04664302, 0.02445108, 0.013871683, -0.025484225, -0.017935384, -0.006911735, -0.17830692, 0.0074799643, 0.0052931425, -0.01852772, 0.011240609, 0.008237603, 0.022343466, 1.7003833E-4, 0.009415388, -0.017894058, 0.022563871, 0.008471782, -0.037386045, -0.003092545, -0.004025819, 0.022233265, -0.022784274, 0.027426535, 0.02764694, -0.014959929, 0.034658544, -0.022494994, -0.019450663, 0.0047593513, 0.0077348067, -0.0025053748, 0.020001672, -8.60523E-4, 0.0070529315, -0.028129073, -0.037386045, -0.011233722, 0.022577645, -0.008382243, -0.019850144, -0.002872141, -0.0030322783, -0.021943983, -0.00795521, 7.981039E-4, 0.02625564, 0.020332279, 0.02497454, 0.003981049, 0.02122767, -0.004087807, 0.033501424, -0.012301304, 0.014601772, -0.018541494, -0.019092506, -0.039452333, 0.006450264, 8.635364E-4, 0.0013732209, -0.0021627152, 0.0018579377, 0.0057890518, 0.0025725293, 0.009305186, -0.023238858, -0.0027361102, 0.0051381704, -0.019795043, -0.0014885886, -0.009980174, -0.010062825, 0.015442062, -0.017756306, 0.004201453, -0.018982304, 0.009043456, 0.0214894, -0.00663623, 0.020015448, -0.012583697, -0.034162637, 0.01060006, -0.009725331, 0.017370598, -0.012583697, 0.038818672, 0.0040602568, 0.008402906, 0.003185528, -0.008003424, 0.011233722, -0.005034856, 0.011295711, -0.013355111, -1.5002115E-4, -0.017838957, -0.028349478, -9.324127E-4, 0.002724057, 0.003166587, -0.0030770479, 0.0032716235, 0.029038241, -0.006133433, 0.0025708072, -0.0074317507, -0.012693899, 0.022880701, 0.021971535, 0.012576809, 0.0042703296, 0.031407584, 0.0269444, -0.0040292623, 2.7356797E-4, 0.0076797055, 0.017287947, 0.024616383, -0.015331861, 0.00344898, -0.011495451, -0.017549677, 0.0020077436, 0.0281704, 0.048571553, -0.010310779, -0.006319399, -0.012955628, -0.0043254304, -0.0018734349, -0.09477376, -0.01826599, 0.0025329252, 0.03655953, -0.015001254, 0.028129073, -0.0037640887, 0.025773505, -0.024051597, 0.025415348, 0.015483389, -0.0429237, 0.0074179755, -0.002520872, 0.01167453, -0.008079188, -0.0071769087, -0.016158376, -0.010407207, 0.02691685, 0.004866109, -0.008788614, 0.0038811786, -0.0120809, -0.024492405, 0.016681835, -0.03273001, 0.020194527, 0.017494576, -0.005410232, -0.0075695035, -0.023652116, 0.007989649, -0.038515616, -0.028184175, -0.020635335, -0.023156207, -0.02796377, 0.004125689, -0.04498999, 0.013148482, 0.024781687, 0.006798089, -0.027481636, -0.014174739, -0.01684714, -0.024836788, 0.038295213, -0.03115963, -0.019175157, -0.016268577, -0.009828646, -0.024492405, -0.005685737, 0.020786863, 0.003442092, 0.024092924, -5.3083168E-5, -8.8333833E-4, -0.029120892, -0.018334866, 0.009876858, -0.021627152, 0.021764906, 4.8471685E-4, 0.01318292, -0.0035092465, -8.24363E-4, 0.022853151, -0.0061437646, -0.018445069, 0.03008516, -0.027440311, -0.009635792, -0.011550552, -0.0055617597, -0.017370598, -0.01687469, 0.03529221, -0.02848723, 0.0027877674, -0.02761939, 0.019037405, -0.015249209, 0.017604778, 0.024272002, 0.013224246, 0.01585532, 0.002464049, -0.03636668, -0.0056960685, 0.0141471885, -0.00422556, -0.012039574, -0.0047972333, 0.006209197, -0.0037916393, 0.0016797204, 0.004690475, 0.008148064, -0.027454086, 0.0013181198, -0.07719654, 0.027743366, -0.0057959394, -0.013506639, -0.012122226, -0.01478085, 0.0017959491, 0.003092545, -0.007920773, 0.023238858, -7.292276E-4, 0.02445108, 8.936698E-4, -0.0077761323, -0.005317249, 0.020814413, 0.013747706, -0.014036986, -0.010014611, 0.0010176471, -0.006670668, 0.033501424, 0.026476042, 0.005651299, -0.007562616, 0.019753717, 0.0031958595, 0.0027705485, -0.021764906, -0.021957759, 0.029093342, -0.01344465, -0.016916014, 0.001833831, -0.009284523, -0.012142888, -0.009153658, 0.0024192794, 0.014670648, 0.015662467, -0.0027361102, -0.026875526, 0.0020146312, 0.0013258684, 0.0059164725, 0.012990067, -0.0032475167, 0.019230258, 0.012521708, 0.017962934, 0.009566915, 0.005613417, -0.0061609834, -0.007941435, 0.009656454, -0.01036588, 0.046670567, 1.9489836E-4, 0.0044735144, -0.004136021, 0.03220655, 0.008988355, 0.02845968, -0.033666726, -0.0063848314, 0.0020266846, 0.017522126, -0.009601354, -2.7765753E-4, -0.027082155, -0.012569921, -0.003281955, 0.017026218, 0.04785524, 0.011419687, 0.016778262, -0.002667234, 0.014739525, 0.0011140739, 0.017370598, 0.033115715, -0.0035850105, -0.043584913, 0.02628319, -0.0010822186, 0.01559359, 0.002832537, 0.009374062, 0.0046422617, 0.004910879, -0.015579815, 0.0134859765, 0.024148025, -0.008575097, -0.0061540958, 0.01687469, -0.0055135465, -0.002279805, 0.010379656, 0.008871265, -0.0061024386, -0.0026517368, 1.9920312E-4, -0.022233265, -0.02662757, 0.0010262566, -0.012335742, -0.015841546, 0.0058958097, 0.018155787, 0.020277178, 0.009256972, -0.01687469, 0.0057064, -0.018376192, 0.019657291, -0.019822594, -0.024437305, -0.021076143, 0.030691272, 0.0094429385, 0.014946153, 0.029175993, -0.014643097, 0.042758398, 0.017659878, 0.01980882, -0.02227459, 0.009890635, -0.0083409175, 0.0048454464, -0.015676241, -0.0117985075, 0.014312492, -0.011991361, 0.013974998, 0.0161446, 0.0078036827, -0.021847557, 0.06948239, 0.033666726, -0.0023383498, 0.028005097, -0.015524714, 0.006801533, 0.030250464, 0.010992655, -0.026393391, -0.016502757, -0.0010348661, -0.013334448, -5.6435505E-4, -0.027660714, 0.014725749, 0.0053447997, 0.0068669654, 0.021131244, -0.028087748, -0.019395562, -0.0031028765, -0.01823844, 0.03330857, 0.009732218, -0.033997335, -0.009566915, 0.024065373, -0.00307877, -0.0066947746, -0.0141471885, 0.0037916393, -0.02790867, -0.020538907, -0.008513109, 0.025566876, -0.02372099, -0.0036745497, -0.0049212105, 0.018885877, 0.010696487, 0.003540241, -0.011888047, -0.012046462, -0.010083488, 0.021089917, -0.0051588337, -1.1364587E-4, -0.018458843, -0.016199702 ], + "id" : "5cf395ea-32aa-4afe-93b1-0c07a9a429c7", + "metadata" : { + "source" : "movies.csv" + } + }, + "55a2b0bc-1d9b-43a1-8aa3-66cb3912c817" : { + "text" : "7,9556,Billy Crystal-John Goodman-Steve Buscemi-Helen Mirren-Peter Sohn-Joel Murray-Sean Hayes-Dave Foley-Charlie Day-Alfred Molina-Tyler Labine-Nathan Fillion-Aubrey Plaza-Bobby Moynihan-Noah Johnston-Julia Sweeney-Bonnie Hunt-John Krasinski-Bill Hader-Beth Behrs-Bob Peterson-John Ratzenberger-Lori Alan-Carlos Alazraqui-Jack Angel-Bob Bergen-Gregg Berger-Rodger Bumpass-Neil Campbell-Ava Acres-Sherry Lynn-Paul Lazenby-Aram�� Scott-Joseph John Schirle-Kristen Li-Davin Ransom-Raymond Ochoa-Calum John-Montse Hernandez-Mason Cook-Makenna Cowgill-Tyree Brown-Jack Bright-Isabella Acres-April Winchell-Colette Whitaker-Jim Ward-Marcia Wallace-David Theune-Tara Strong-Mindy Sterling-Joel Spence-Betsy Sodaro-Patrick Seitz-Dan Scanlon-Jan Rabson-Cristina Pucelli-Jeff Pidgeon-Dannah Feinglass Phirman-Donovan Patton-Bret 'Brook' Parker-Colleen O'Shaughnessey-Laraine Newman-David Neher-Pam Murphy-Matthew Mercer-Alec Medlock-Allan McLeod-Mickie McGowan-Tricia McAlpin-Mona Marshall-Jason Marsden-Danny Mann-Dawnn Lewis-Elissa Knight-John Kassir-Brandon Johnson-Jess Harnell-Mike Hanford-Daniel Gerson-Teresa Ganzel-Donald Fullilove-Andy Fischer-Price-Keith Ferguson-Bill Farmer-Paul Eiding-Greg Dykstra-John Cygan-Sean Conroy-Patrick Carlyle-Natalie Jane Dang-Gage Davenport-Ethan Louis Samuels DiSalvio-Faith Goblirsch-Brooke Klinger-Nikolas Michailidis-Marley Pearson-Lindsay Lefler,monster-training camp-dormitory-friendship-games-prequel-feud-bully-best friend-university-fraternity-aftercreditsstinger-college student-personification,/y7thwJ7z5Bplv6vwl6RI0yteaDD.jpg,/pK42lGbT48fClhtEcP7gvk4hoXP.jpg,585-10193-2062-863-62177-12-920-9806-49013-862-14160-9487-93456-10681-38757-953-127380-150540-950-82690-808\r\n615453,Ne Zha,Animation-Fantasy-Adventure,zh,The Primus extracts a Mixed Yuan Bead into a Spirit Seed and a Demon Pill. The Spirit Seed can be reincarnated as a human to help King Zhou establish a new dynasty whereas the Demon Pill will create a devil threatening humanity. Ne Zha is the one who is destined to be the hero but instead he becomes a devil incarnate because the Spirit Seed and a Demon Pill are switched.,23.317,Beijing Enlight Pictures-Horgos Coloroom Pictures-October Media-Chengdu Coco Cartoon,7/26/19,20000000,742500000,110,Released,,7.", + "embedding" : [ 0.022127058, -0.03512362, -0.011625617, -0.02659634, -0.022881078, 0.043842833, -9.716575E-4, -0.018480344, -0.037262294, -0.020728694, 0.015615067, 0.019138398, 0.021619808, -8.431314E-4, 0.0058436547, 0.023868158, 0.008486152, -0.014298961, 0.019206945, -0.009692584, -0.0061658267, -0.008931709, -0.025115719, 0.0031634565, 0.010110722, 0.0146142775, 0.037070364, -0.011042965, -0.011563924, -0.0042362213, 5.475213E-4, -0.0010564848, -0.002735036, -0.011605052, -0.013990497, -0.0059944587, -0.0016554166, -0.024978625, 0.02939307, 0.005600312, 0.014422345, -0.0030572081, -0.009692584, -0.0032491405, -0.018740823, 0.014477183, 0.014833629, -0.00941154, -0.012605842, 0.028543083, 0.030434987, 0.022044802, -0.013147366, -0.032573663, -0.0146142775, 0.005997886, -0.019919837, -0.002757314, -0.00595333, -9.588049E-4, 0.016204575, -0.027021334, -0.036302634, -0.0075401994, -0.010528861, -0.0076978584, -0.014559439, -0.009109932, -0.0040854174, -0.0020615591, 0.010138141, 0.015656196, 0.009199044, 0.008321638, 0.030544663, -0.046529885, -0.0401687, -0.009288155, -0.0024351417, -0.013784856, 0.029283393, -0.0185626, -0.014874757, 0.0038523565, 0.019919837, 0.010624827, -0.008575263, 0.019535972, -0.020934336, 0.012928015, 0.013407846, 0.03992193, 0.001566305, 0.008959128, 0.0051479, 0.031449486, -0.011269171, 0.027007625, -0.018219864, -0.03010596, 0.0066627944, -6.0707174E-4, -0.023264943, -0.014093318, 0.0019895844, 0.009939354, -0.011248606, -0.013880822, 0.014065899, 0.017657775, -1.530532E-4, -0.0012407056, 0.01164618, -0.054536205, -0.001943315, -0.012146576, 0.03314946, -0.01878195, -0.013421555, -0.020769821, 0.026911657, 0.021619808, 0.01731504, -0.041731577, 0.04389767, 0.036713917, -0.010755067, -0.02832373, 0.0064297337, -0.0016237134, 0.030462407, 0.0043219053, 0.024896368, 0.00633034, -0.031751096, 0.046557304, -0.0077458415, 0.0026339288, -0.023936706, -0.021318201, 0.03087369, 0.035013944, -0.030599501, -2.6039928E-5, -0.021208525, 0.020015802, 5.937907E-4, 0.013071964, 0.00477089, -0.007485362, 0.025033463, 0.02384074, 0.01331188, 0.012880032, 0.018658567, -0.0016219998, -0.014600568, 0.006714205, -0.007478507, -0.01831583, -0.0041505373, -0.013140512, 0.0017042564, -0.021674646, -0.013394136, 0.018425506, 0.039729998, -0.024677016, -0.01329817, -0.0011387415, -0.009534925, 0.03745423, -0.03463008, 0.004979959, 0.0019124688, 0.006810171, 0.009610327, -0.012866322, -0.020714985, -0.0113445725, 0.0041642464, 0.017493263, 0.025746353, 0.03761874, -0.0015483114, 0.01116635, 0.023827031, -0.036988106, 0.008013176, -0.0061898185, -9.630891E-4, 0.017027142, 0.0057476885, -0.023251234, -0.6290994, -0.0073619764, -0.0051341904, -0.0049833865, 0.018165026, 0.008753486, 0.001238135, -0.01164618, -0.03356074, -0.019796452, -0.02133191, 0.019028721, 0.029639838, -0.008109142, -0.020262573, -0.010885307, -0.00267163, -0.010782485, 0.019686775, -5.06393E-4, -0.015752163, 0.015848128, 0.013750582, -0.0082668, 0.007848662, 0.0058128084, -0.008870017, -0.0034153676, 0.0010813331, -0.0066730767, -0.03391719, 0.026651178, 0.007869226, 0.0037358261, 0.038962267, 0.01857631, -0.021537552, 0.046502467, 0.023525422, 0.023127848, -0.03718004, -0.009390975, 0.009438959, 0.0069541205, -0.029228555, 0.013825984, 0.0031240417, 0.014751372, -0.00777326, 0.01730133, 0.002320325, -1.02178274E-4, -0.004599522, -0.0050964896, -0.015176365, -0.009953063, 0.00267163, -0.032299474, 0.021729484, -0.008438169, -0.009315574, 0.022469794, -0.007924064, 0.018398087, -0.0067004953, 0.017712614, -0.013215913, -0.012393346, 0.008301075, -0.019741613, 0.017534392, 0.012742938, -0.023251234, -0.0032748457, -0.007595037, 0.012317944, 0.03613812, -0.004181383, -0.005685996, 0.009555489, -0.0058813556, -0.015107818, 0.0052198744, 0.021277072, 0.022414956, 1.321677E-4, -0.023922997, 0.0036638514, 0.013949369, -2.2320704E-4, 0.019220654, 0.00915106, 0.0059876037, 0.0055591837, -0.0065154177, -0.0052678576, -0.016355379, 0.0056071663, 0.032272052, -0.0567023, -0.015121527, -0.030462407, 0.027761644, -0.015340879, 0.014682825, 0.0077664056, -0.012564714, -0.020687565, 0.04395251, -0.0056722863, -0.012914306, -0.0031720249, -0.025513293, -0.028488245, -0.0015791577, -0.030188218, 0.015094109, 0.034575243, -0.0067793247, 0.0039928784, 0.001948456, 0.0038180829, 0.003338252, -0.021427875, 0.012276816, 0.028926946, 4.5069828E-4, 0.0025208257, -0.0015508819, -0.0041539646, -0.010172415, -0.0025910868, 0.011399411, -0.016643276, 0.027953576, 0.004534402, 0.021222234, -0.006858154, 0.021235943, -0.0035438938, -0.0038180829, 0.0032697048, -0.019769032, -0.0068992823, -0.012742938, -0.0027864464, -0.031065622, 0.0013606633, 0.0020221444, -0.015573939, -0.0058984924, 0.007533345, -0.007334558, 0.011419975, 0.012009481, -0.0019467424, -0.037317134, -0.023772193, 0.0064057424, -0.025184266, -0.0077184225, 0.005254148, -0.004750326, -0.021962544, 0.02207222, -0.0021609527, -0.011721583, 0.017712614, -0.010878451, -0.016944885, 0.018452924, -0.006830735, -0.008616392, 0.015491683, -0.021098848, 0.026212476, -0.004781172, 0.015340879, -0.004136828, 0.005562611, -0.0017248206, -0.006765615, -0.01832954, -0.018110188, 0.04395251, 0.018384377, 0.01577958, -0.014641697, 2.3156124E-4, 0.0064057424, -0.015861837, -0.002978379, -0.002870417, -0.0038832028, 0.0076704393, 0.023731064, -0.0058333725, -0.007355122, 0.010597408, 7.236021E-4, 0.040004186, 0.019892417, 0.007821243, 0.003079486, 0.012263106, -0.033451065, -0.0011584489, -0.016972303, 0.0053158407, 0.016218284, 0.01678037, -0.0048977025, -0.011200624, -0.011337718, 0.004462427, 0.020207735, -0.0037015525, -0.0077458415, -0.0052884216, 0.007197463, 0.006073288, 8.257804E-5, 0.017959384, 0.017753743, -0.01605377, 0.016684406, 0.008739777, -0.009459523, -0.008040595, -0.0074990713, -0.006916419, 0.0032131532, 0.002375163, 0.008177689, -0.0042019477, -0.020372247, 0.030489825, -0.0075196354, 0.03493169, -0.013305025, -0.018850498, 0.031531744, 0.020509342, 0.010083303, -0.0087740505, -0.0030709177, 0.01959081, 0.021249654, -0.01331188, 0.038578402, -0.009061948, 0.02835115, -0.01556023, 0.008465587, 0.007053514, -0.0031240417, -0.0010367774, 0.011180059, 0.03665908, 0.014079609, 0.017177945, -0.027953576, 0.021181107, 0.01780858, 0.013071964, -0.004479564, -0.0012175709, -0.004225939, -0.011022401, -0.033451065, -0.011810694, -0.010857888, -0.0015140378, 0.013092528, -0.0054563624, 0.004774317, -0.010199834, 0.01041233, 0.011447393, 0.019631937, -0.0146142775, -0.030901108, 0.01531346, 0.027980994, -0.017109398, -0.02510201, -0.019919837, -0.01480621, -0.018891627, -0.03537039, -0.024677016, 0.03633005, -0.020756112, 0.01954968, -0.019700484, -0.005744261, 0.013640907, -0.00916477, 8.152841E-4, 0.026829401, -0.01205061, 0.017671486, -0.016259411, -0.015902966, 0.02632215, -0.019152107, -0.018027931, -0.014778791, -0.013682035, -0.0037872365, -0.0027984423, 0.002224359, -0.050039507, 0.016862627, -0.0018456352, -0.007176899, -0.008835743, 0.017027142, 0.017397298, -0.017644066, -0.022510923, -0.020056931, -0.032052703, 0.011234897, 0.0787471, 0.052616883, 0.009480087, 0.014874757, -0.008911145, 0.009569199, -0.014436055, -0.01431267, 8.199967E-4, -0.02736407, 0.027939867, -0.022963336, 0.01706827, 0.007252301, 0.0059224837, -0.008294219, -0.023251234, -0.0053124134, -0.0010967563, -0.0050724978, -0.028543083, -0.012071174, 0.018836789, 0.029283393, -0.009219607, -0.018000513, 0.019988384, 3.5537474E-4, 0.008582118, 0.011385702, -0.014600568, 0.0019467424, 0.009000257, 0.012263106, 0.0060801427, -0.014134447, 0.0240738, 0.0034856286, 0.01142683, 0.0012338508, -0.0031805933, 0.010926435, 0.01505298, -0.022606889, 0.011947789, -0.010563134, -0.0046269405, 0.022044802, 0.03964774, -0.035671998, 0.01859002, 0.0024522785, -0.0068170256, -0.01480621, 0.024005253, 4.0592835E-4, -0.01630054, -0.00839704, -0.011481668, 0.0031308965, -0.0036604241, -0.040771917, 0.033752676, -0.006416024, -0.0108167585, 4.174957E-4, -0.020646438, 0.0019090414, -0.01834325, 0.0036569966, 0.0050724978, -0.024937496, -0.013990497, -0.005939621, -0.0010504869, 0.0077389865, 0.040004186, -0.003149747, 0.02283995, 0.011625617, -0.013798565, -0.048037924, 0.019645646, -0.018398087, -0.0059361933, 0.010432894, -0.002724754, 0.03838647, -0.008513571, -0.0053980974, -0.0049868138, 0.0012792634, -0.008972838, -0.024252024, 0.028707596, 0.006131553, 0.015971513, 0.011879242, 0.0054872087, 8.233705E-7, -0.003021221, -0.021441586, -0.002579091, -0.019426296, -0.025307652, -0.02606167, 0.003828365, -0.0012398487, -0.020865789, -0.027830191, -0.01908356, -0.020646438, 0.0051273354, -0.0046509323, 0.007053514, -5.3381186E-4, 0.005912202, 0.01731504, -0.017424716, 0.008349057, 0.022716565, -0.019631937, 0.0080611585, 0.017918255, -0.018507762, 0.0250883, 0.012057465, -0.027556002, 0.0108167585, 0.027898738, -0.012393346, 0.022346409, -0.016629567, -0.015807, -0.015711034, -0.038002606, 0.0052027376, 0.009843388, -0.013421555, -0.0027556003, -0.02559555, -0.0023991545, 0.003828365, -0.0128731765, -0.013510667, -0.033533324, 0.0031377512, -0.0065599736, 0.015244912, 0.011536505, -0.002358026, 0.016136026, -0.018494053, 0.0011224615, -0.0019227508, -0.022949625, -0.018384377, -0.0041916654, 0.020742403, 0.003069204, 0.045323454, 0.0041745286, 0.029475326, 0.012509877, 0.007122061, 0.037783254, -0.030681757, -0.014079609, -0.041841254, 0.004469282, 0.005603739, 0.022867369, -6.280643E-4, 0.002901263, -0.011248606, 0.02156497, 0.016752953, 0.017520681, -0.0070603685, -0.032052703, -0.013010272, 0.0027470319, -0.03737197, 0.009000257, -0.019782742, -0.01982387, 0.04463798, 0.002810438, -0.0015003283, -0.0033296836, 0.030736595, -0.0048531466, 0.018877918, -0.009301865, 0.02584232, -0.03112046, -0.0012784066, -0.019769032, -0.010467168, -0.013778001, 0.0028292886, 0.024635889, 0.0015551661, -0.025403617, -0.0104877325, 0.020783532, -0.014107028, -0.027446326, 0.02506088, -0.01604006, -0.014285251, -0.026733434, -0.0022329274, -0.03888001, 0.0032919825, -0.016067479, -0.005027942, -0.0041436823, -0.017479554, -0.032491405, 0.015697325, -0.0023940133, 0.024046382, 0.016876338, 0.043815415, 0.04085417, 0.0031137597, -0.011714729, 0.011803839, -0.008630101, -0.004486419, 0.028488245, 0.028488245, -0.023415746, 0.012564714, 0.005624303, -0.0062755025, -0.03789293, -0.04189609, 0.013963078, 0.02884469, 0.02408751, -0.024910077, -0.008719212, -0.02710359, 0.006535982, -0.005075925, 0.0062515107, 4.7297616E-4, -0.025636679, -0.020865789, -8.713001E-5, -0.009665165, 0.013325589, 0.018850498, -0.017123107, 0.015505392, -0.018987594, -0.005535192, 0.0035747401, -0.016519891, 0.037865512, -0.015738452, 0.0066011017, -0.0038352197, 0.012784066, 0.009109932, 9.630891E-4, -0.0046989154, 0.03084627, -0.011735292, 0.014833629, -0.0026236468, 0.0045206924, 0.014381217, 0.013606633, -0.020180317, -0.005432371, -0.029585, 0.0055317646, 0.037536483, 0.012852613, -0.003602159, 0.013154221, -0.018521471, -0.0016142882, 0.010460313, 0.0014026485, 0.008307929, -0.039812252, 0.02333349, -0.005895065, -0.0071426253, 0.00854099, -0.012592133, -0.0035953042, -0.001938174, 0.014573149, -0.0069712573, -0.0039106216, -0.01678037, -0.017493263, -0.04768148, -0.02381332, -7.3816837E-4, -0.006741624, 0.0031000501, -0.014669116, -4.4298673E-4, -0.0014026485, -0.006765615, 0.010110722, 0.004469282, -0.009390975, -0.010090158, 0.010480877, 0.004397307, 0.0013323876, 0.0011010405, 0.030736595, -0.008705503, -0.0043698885, 0.0017462417, 0.003742681, 0.03155916, -0.009452668, 0.009815969, -0.002277483, -0.028543083, -0.02231899, 0.0056174486, 0.024197185, 0.014710244, -0.0027864464, -0.026651178, -0.014819919, -0.005733979, 0.040525146, -0.01805535, 0.005518055, 0.016437635, 0.017123107, 0.037591323, 0.022730274, -0.008191398, -0.033286553, 0.005675714, -0.017918255, -0.02939307, -0.0073482674, 0.003315974, 0.021427875, -0.0019655928, -0.004856574, -0.017589228, -0.009438959, -0.013620342, -0.019769032, -0.0019501698, 0.020838369, 0.021044012, -0.00444529, -3.0310746E-4, 0.009384121, 0.0011935793, 0.008582118, -0.03339623, -0.0043527517, 0.027185846, 0.011577633, 0.023004463, 0.03435589, -0.013688889, -0.009404685, 0.013997352, 0.030544663, 0.00521302, 0.0366865, -0.017671486, -0.022730274, 0.0028207202, 0.003375953, -0.0068821455, -0.0098022595, 0.023168977, -0.026678598, -0.010583698, 0.0038523565, 0.023415746, -0.004791454, 0.0104740225, 0.022414956, -0.019659357, -0.0026424972, -0.0082668, -0.006765615, -0.010357493, -0.010419184, 0.011385702, 0.01506669, 0.0061075618, 0.04115578, 0.0065325545, -0.018000513, 0.001216714, -0.0022089358, 0.011563924, -0.012091738, -0.0048497193, 0.008335348, 0.019440005, -0.020440795, 0.023635099, -0.03109304, 0.008664374, -0.017712614, 0.009486942, -0.009829679, 0.03084627, 0.00977484, -0.046447627, 0.014902176, -0.007197463, -0.0012818339, -0.020454505, 0.0066079567, -0.033725254, -0.017232783, 2.8254327E-4, 0.0042088022, -0.007985757, -0.034520403, 0.0019775887, -0.0032285764, -0.022524633, 0.019892417, 0.18436474, -0.0013923664, 0.008924854, 0.032573663, 0.0015474546, 0.004140255, 0.026829401, 0.006875291, -0.010851032, 0.013113093, 0.0065154177, 0.025705226, -0.012825194, 0.0037015525, 0.019028721, -0.037426807, -0.041238036, -0.020797241, -0.019919837, -0.03087369, -0.0021729483, -0.0098022595, -0.006354332, -0.024252024, 0.009843388, -0.0045789573, -0.016410217, 0.005302131, 0.021948835, 0.001308396, -0.009624036, -0.018960174, -0.017712614, 8.7826187E-4, -0.018192446, -0.014065899, -0.009137351, 0.0057922443, 0.014477183, 0.0028635622, -6.928362E-7, 0.005075925, -0.009767986, -0.00890429, 0.0070398045, 0.024978625, -0.025006043, -0.0052404385, -0.018274702, 0.0032062985, -0.04068966, -0.0013795138, 0.022524633, 0.024046382, -0.0019827296, -0.004047716, 0.0047400435, -0.0052849944, 0.00288584, 0.012338508, 0.02862534, 0.0406074, -0.02282624, 0.012221978, 0.010864742, -4.7233352E-5, -0.039346132, -0.007834952, 0.026486665, -0.040634822, -0.00777326, -0.0130582545, -0.010522006, 0.0019278919, -0.0063234856, -0.018425506, 0.010549424, 0.01678037, 0.013113093, 0.026541501, -0.039017104, -0.0010307796, 0.005281567, -0.0014746231, -0.016396506, -0.028241474, 0.034657497, -0.020523053, -0.009699439, -0.018932756, -0.0029835198, -0.034739755, -0.006371469, 0.010803049, 0.012064319, -0.0035164747, 0.027912447, 0.010076448, -0.01906985, -0.0027624548, -0.024210894, 0.026020544, 0.015107818, 0.001017927, -0.03287527, -0.026116509, 0.00508278, -0.0058128084, 0.020029511, -0.007403105, -0.02607538, -0.026664887, -0.005716842, -0.009761131, 0.015025561, 0.022648018, 0.0120300455, -0.025115719, 0.036905847, -0.023484293, -0.014065899, -0.022168187, 0.02607538, 0.013873967, -0.003989451, -0.027898738, -0.02111256, 0.016766662, -0.0032354312, -0.025979415, 0.023498004, -0.010988127, 0.0042327936, 0.0070329495, -0.00696783, 0.0055866023, 0.014737663, 0.0014566295, -0.005980749, -0.022606889, -0.019110978, -0.017164236, 0.0052404385, 0.0052472935, 0.013510667, -0.028076962, 0.0027504591, -0.010179269, -0.012153431, -0.031943027, -0.013106238, -0.0035079063, 0.011666745, 0.005425516, 0.055660382, -0.003982596, -0.024471374, -0.028899528, -0.015656196, 0.04639279, -0.03314946, 0.009185334, 0.016163446, -0.0027744507, -0.018891627, -0.015080399, -0.17581004, 0.010734502, 0.010665955, -0.025732644, 0.01506669, 0.0074990713, 0.018535182, 0.003112046, 0.0072797197, -0.020920627, 0.015011852, 0.013551795, -0.04987499, -0.009157915, 0.0024471374, 0.019152107, -0.001264697, 0.02985919, 0.0326285, -0.011995772, 0.04112836, -0.0013940801, -0.009740567, 0.003315974, 0.018494053, 0.011228043, 0.03279301, 0.0040408615, -0.0019278919, -0.010761921, -0.031038202, -0.005007378, -0.0028892674, 0.010988127, 0.004829155, 9.750849E-4, 0.0018936183, -0.022977045, -0.004404162, -0.0042122295, 0.025910867, 0.016108608, 0.012468748, 0.008595827, 0.009678874, 0.018178735, 0.024567341, -0.023922997, 0.02588345, -0.013065109, 5.325266E-4, -0.044610564, 0.02862534, 0.0014377789, 0.0059841764, 0.02329236, 0.011399411, -0.0035713126, 0.00439388, -0.004582385, -0.018165026, -0.009706293, 0.0067758975, 2.7633118E-4, -0.0030006566, -0.011447393, -0.010967563, 0.017849708, -0.028159218, 0.0048154457, -0.011255462, 0.015011852, 0.016903756, -0.008211963, 0.015628777, -0.023799611, -0.037317134, 0.017726323, -0.011303444, 0.010336928, -0.011817549, 0.046337955, 8.469872E-4, 6.272075E-4, 0.0011455963, -0.011522796, 0.0018302121, -0.0041916654, 0.007814389, -0.016177155, -0.0064434432, -0.006481144, -0.03613812, 0.004092272, 0.0073482674, 0.009898226, 0.0058436547, 0.002136961, 0.006895855, -0.013558649, 0.0025996552, -1.2927587E-4, -0.023772193, 0.029530164, 0.026500374, -0.0031891617, 0.008698649, 0.011988917, 0.014888466, 0.006090425, -0.009370412, 0.0039757416, 0.020098059, 0.012105447, -0.015861837, 0.012256252, -0.011913516, -0.025732644, 0.008184544, 0.011159495, 0.045213778, -0.01267439, -0.0059841764, -0.0039586048, -0.016259411, -0.005980749, -0.09108561, -0.0018524899, -0.0070672235, 0.050341114, -0.028405989, 0.050368533, 0.0013529517, 0.025609259, -0.033259135, 0.039839674, 0.017205365, -0.0332043, 0.0034924834, -0.0012501308, 0.007834952, 0.007978902, -0.021907708, -0.0039963056, -0.00395175, 0.029201137, 0.0012347077, -0.0033022647, -4.2199413E-4, -0.015724743, -0.011385702, 0.02410122, -0.024992334, 0.024526212, 0.021181107, 0.017424716, 0.0074579427, -0.022785112, 0.021660937, -0.037042942, -0.021496423, -0.008205108, -0.026939075, -0.024978625, -0.004177956, -0.046091184, 0.0073688314, 0.021469004, 0.002406009, -0.0072865747, -3.442358E-4, -0.0068033165, -0.048613723, 0.022606889, -0.0065291272, -0.030078541, -0.010097013, -0.0046372227, -0.019919837, -0.0015868692, 0.004188238, 0.015272331, 0.03164142, 0.008376476, -0.025006043, -0.032299474, -0.005716842, -0.008033739, -0.020536762, 0.01934404, 0.008355912, 0.014669116, -0.00677247, -0.026555212, 0.015368298, -0.036028445, -0.026390698, 0.037947766, -0.03413654, 0.0028926947, -0.0043424694, 0.0037940913, -0.01908356, -0.019385168, 0.03183335, -0.034492984, -0.0036192958, -0.040278375, 0.017095689, -0.020481924, 0.027268102, 0.010707083, 0.02408751, 0.003343393, -0.0011258889, -0.042636402, -0.0040614256, 0.020248864, -0.001421499, 0.0045241197, -0.0076361657, 0.01505298, 0.019782742, -0.0044932733, -0.00419852, 0.009240172, -0.012866322, 0.0046303677, -0.074579425, 0.026555212, -0.035699416, 0.0015954376, -0.011180059, -0.018617438, 0.025458455, -0.008931709, -0.007704713, 0.013908241, -0.0070672235, 0.01679408, -0.021784322, -0.0038420744, 0.0022157903, 0.0034496412, 0.018617438, -0.021510134, -0.007910355, -5.708702E-5, 8.26423E-4, 0.02358026, 0.027199555, 0.0047606076, 0.008109142, 0.011125222, 3.5666E-4, 0.0023134702, -0.012023191, -0.016670696, 0.041594483, -0.025266523, 0.0056551495, 0.008876871, -0.003896912, -0.033697836, -0.00854099, -0.010535715, 0.0074922163, -0.0038249376, -0.009699439, -0.023415746, 0.0047880267, -0.0067381966, -0.007008958, 0.009418394, -0.007224882, 0.003742681, 0.011200624, 0.0048051635, 0.033286553, 0.011865532, 0.0034684918, -0.014031625, 0.007985757, -0.0055728927, 0.030160798, -0.0044350084, -0.006179536, -0.015765872, 0.01860373, 0.011975207, 0.017644066, -0.012016336, -0.018260993, 0.0118586775, 0.007978902, -8.139988E-4, 0.0011053247, -0.019028721, -0.016588438, -0.003800946, 0.00890429, 0.039044525, 0.008636956, 0.013942515, -0.005141045, -0.016204575, -0.013565504, 0.028378569, 0.02559555, -0.003591877, -0.023018172, 0.015998932, -0.0033365383, 0.004904557, -0.004506983, 0.0055009183, 0.01808277, 0.0032765595, -0.01778116, 0.01959081, 0.026294732, 0.0051753186, 0.024169767, 0.028268894, -0.008225672, -0.009555489, 0.0038489292, 0.018617438, -0.009747421, 0.0037392534, 0.004177956, -0.013496957, -0.023237525, 0.006261793, -0.026459245, 0.002616792, 0.017657775, 0.021647228, 0.012256252, 0.01480621, -0.018644856, 0.011714729, -0.03589135, 0.011755857, 0.01933033, -0.018370667, -0.0032782732, 0.028981784, -0.0019416014, 0.014573149, 0.014031625, -0.009603472, 0.05371364, -0.001981016, 0.014408636, -0.020646438, -0.0056654317, -0.006940411, -0.0111732045, -0.014559439, -0.030791434, 0.0035301843, -0.007403105, -0.007924064, 0.02282624, 0.020893207, -0.014463473, 0.08055675, 0.00646058, 5.16675E-4, 0.015738452, -0.014833629, 0.022661727, 0.01780858, 0.026308442, -0.012619552, -0.006422879, 0.011049819, -0.023799611, 0.020728694, -0.019179525, 0.026171347, -0.007855517, 0.011982063, 0.011817549, -0.0092744455, -0.025924576, 0.0033348247, -0.023155266, 0.0375639, 0.013030835, -0.01704085, 0.008691793, 0.007595037, -0.014751372, 0.011742147, -0.023827031, -0.0040991264, -0.00890429, -0.0036432873, -0.001981016, 0.010755067, -0.010741357, -0.008897436, 0.006045869, 0.024485083, -0.00841075, -0.01859002, 0.012756647, -0.02835115, 0.003896912, 0.045597643, -0.017986802, -0.006518845, -0.028652757, -0.018877918 ], + "id" : "55a2b0bc-1d9b-43a1-8aa3-66cb3912c817", + "metadata" : { + "source" : "movies.csv" + } + }, + "8077138b-2479-4c09-8a81-cc5a0e1b6dcb" : { + "text" : "Perez-Juan Pope-Mike Rianda-Stan Sellers-Warren Sroka-Jason Linere-White-Kimiko Glenn-Peggy Lu-John Mulaney-Andrew Garfield-Denis Leary-Tobey Maguire-Cliff Robertson-Alfred Molina-Post Malone,sacrifice-villain-comic book-sequel-superhero-based on comic-alternate dimension-alternate version-super power-brooklyn new york city-superhero team-spider bite-super villain-cliffhanger-teen superhero-alternate universe-female superhero-cartoon spider,/8Vt6mWEReuy4Of61Lnj5Xj704m8.jpg,/4HodYYKEIsGOdinkGi2Ucz6X9i0.jpg,496450-667538-385687-603692-298618-447277-976573-598331-324857-447365-462883-536437-979296-313369-537210-1106591-532408-502356-1140706-820707-462376\r\n360920,The Grinch,Animation-Family-Comedy-Fantasy,en,The Grinch hatches a scheme to ruin Christmas when the residents of Whoville plan their annual holiday celebration.,43.492,Illumination-Dr. Seuss Enterprises-Universal Animation Studios,11/8/18,75000000,508575295,85,Released,Scheme big.,6.829,3341,Benedict Cumberbatch-Rashida Jones-Kenan Thompson-Cameron Seely-Angela Lansbury-Pharrell Williams-Ramone Hamilton-Sam Lavagnino-Scarlett Estevez-Michael Beattie-Scott Mosier-Lori Alan-Carter Hastings-Carlos Alazraqui-John Kassir-Cathy Cavadini-Danny Mann-Meilee Condron-Frank Welker-Tristan O'Hare-Doug Burch-Tucker Chandler-Townsend Coleman-Abby Craden-Brian T. Delaney-John DeMita-Bill Farmer-Aaron Fors-Willow Geer-Jess Harnell-Evan Kishiyama-Barbara Harris-Jeremy Maxwell-Laraine Newman-Dashiell Priestley-Alex Puccinelli-Emma Elizabeth Shannon-Joel Swetow-Mindy Sterling-Tara Strong-Regina Taufen-Jim Ward,holiday-remake-surrealism-based on children's book-christmas,/1Bc9VNd9CIHIyJtPKFqSQzrXWru.jpg,/5lWIYxYEqWi8j3ZloxXntw3ImBo.jpg,707610-881098-985932-947938-892068-864692-8871-14537-816904-404368-975714-13377-772-34134-400155-412117-938008-446894-527435-280217-654028\r\n580489,Venom: Let There Be Carnage,Science Fiction-Action-Adventure,en,After finding a host body in investigative reporter Eddie Brock the alien symbiote must face a new enemy Carnage the alter ego of serial killer Cletus Kasady.,237.124,Marvel Entertainment-Columbia Pictures-Pascal Pictures-Matt Tolmach Productions-Avi Arad Productions-Sony Pictures,9/30/21,110000000,506863592,97,Released,,6.", + "embedding" : [ 0.0096410345, -0.04199085, -0.007635318, -0.026665822, -0.026584234, 0.031846687, -0.0035762934, -0.014033212, -0.017065583, -0.03973357, 0.038373765, 0.039679177, 0.031384353, 0.0026805203, 0.008961131, 1.7858096E-4, 0.017786281, -0.016385678, -0.0041644103, -0.032499395, 9.926594E-4, 0.0032006465, -0.042969912, 0.0072953664, 0.0183574, 0.014917087, 0.035572562, -0.0060171476, -0.003268637, -0.016290491, 0.012013898, -0.009797412, 0.0040114317, -0.019594824, -0.019961972, 8.762259E-4, 0.007444945, -0.020628277, 0.021920094, -0.013910829, 0.011089229, -4.364132E-4, -0.019703608, -0.014808302, -0.021648133, 0.0030476684, 0.016113717, -0.0053610406, -0.009824608, 0.014441154, 0.024653308, 0.023375088, -0.00790728, -0.021784114, 0.0018170426, -0.009083513, 4.015681E-4, 1.5414691E-4, 0.0033587243, -0.010001383, 0.01588255, -0.030622862, -0.022368832, -0.010994042, -0.023891816, -0.01193231, -0.0040114317, -0.021716123, -0.006190523, 0.002323571, 0.03429434, 0.014862695, 0.018547773, -0.0146315275, 0.017514318, -0.033777613, -0.037258722, 0.004827316, -0.013421299, -0.0015161852, 0.014114801, -0.0031088595, -0.0053338446, 0.0059253606, 0.015066666, 0.011877918, -0.0011889816, 0.024966063, -0.026312273, 0.016888807, 0.012544223, 0.03418556, 0.008743562, -0.007771299, -0.0022623795, 0.034239948, -0.0092058955, 0.022328038, -0.02132178, -0.04397617, -0.0019870186, -9.73962E-4, -0.019893982, -0.017527917, -0.005119675, 0.010783273, -0.0042969915, -0.008396811, 0.028909504, 0.017487124, -0.003926444, -0.0076693133, 0.013686461, -0.052053425, 0.011905113, -0.013346509, 0.01370006, -0.013190132, -0.023402285, -0.026067507, 0.024857279, 0.021131406, -0.006367298, -0.027726471, 0.04201805, 0.015569794, 0.0034046178, -0.02153935, 0.0015416816, -0.00769651, 0.025142837, -0.010076173, 0.0204651, 0.0065168766, -0.004327587, 0.05360361, -0.025985919, 0.015257039, -0.02428616, -0.030378096, 0.037693862, 0.03418556, -0.022776773, -0.031873886, -0.019390853, -0.0012238267, 0.0147947045, -0.013564078, 0.018778939, 0.0011141922, 0.023687845, 0.029399035, 0.007234175, 0.018112633, 0.031982668, -0.006316305, 0.014291575, -0.008165644, 0.001997217, -0.0116807455, -0.014169193, -0.013278519, -2.738737E-4, -0.0076693133, -0.009804212, 0.026856195, 0.017854271, -0.014237183, -0.009165102, 0.010144163, 3.5418733E-4, 0.03562695, -0.015297833, 0.020125149, 2.4726185E-5, 0.0069894097, -0.010586101, -0.015610589, -0.036334053, -0.017378338, 0.0056160046, 0.011123224, 0.024816485, 0.027876051, 0.004715132, 0.0078392895, 0.021824908, -0.028691936, 0.008009265, -0.015569794, 0.0018170426, 0.0225864, 0.0129929595, -0.009573044, -0.6309506, -0.0112456065, -0.010640493, -0.013176533, 0.031166784, 0.0054154326, 0.008029662, -0.0053338446, -0.039216846, -0.021920094, -0.0062143197, 0.007737304, 0.03521901, -0.030677253, -0.017527917, -0.0062925084, -0.0014277977, -0.019173283, 0.006754843, 0.012612213, -0.015447412, 0.010082971, 0.011769133, -0.005802978, 0.0047117327, 0.012700601, 0.006374097, -0.026516244, 0.013149337, 0.0038584534, -0.018833332, 0.016793622, 0.015705775, 0.0029762783, 0.03521901, 0.010327737, -0.008485198, 0.054201923, 0.023483872, 0.038020212, -0.037585076, 0.0058267745, -0.0021756918, -0.0043581827, -0.021484956, 0.01546101, 0.0015365824, 0.0071457876, 0.0037938626, 0.011782731, -0.008879542, 0.006064741, -0.0039128456, 0.0060511427, 0.00430719, -0.0026516244, 0.009375872, -0.020138748, 0.011959506, 0.0094234655, -0.018235017, 0.015678579, 0.015311431, 0.0047253305, 0.011592357, 0.034131166, 0.0062653124, 0.003848255, 0.020029962, -0.016290491, 0.009307882, 0.0036442836, -0.030323705, -0.0011609355, 0.008927136, 0.009464259, 0.030323705, 0.008383213, -0.0021943892, -7.1262405E-4, 0.003125857, 0.007832491, 0.0015331828, 0.003515102, 0.027957639, -0.00804326, -0.02858315, -0.005711191, 0.0058607697, -8.32882E-4, 0.01101444, 0.026108302, 0.0059831524, 0.0074721416, -0.017337544, -0.0032482399, -0.015379421, 0.012013898, 0.018112633, -0.06401973, -0.020437906, -0.017623104, 0.016956799, -0.026298674, 0.025360407, 0.016004933, -0.008600782, -0.02103622, 0.027903248, -0.028637543, -0.008791154, -0.002406859, -0.024299758, -0.014617929, -0.018044643, -0.029290251, 0.017378338, 0.0024799486, -0.013183332, -0.015257039, -1.2971288E-4, 0.02280397, 0.007206979, -0.009416666, 0.018330203, 0.019118892, -0.0032176443, -0.009831407, 0.0060409443, -0.0057927794, 0.0029456827, -0.0033060317, 0.013183332, -0.010558904, 0.01935006, 0.018506978, -0.0021552946, -0.010565703, 0.0072749695, 0.0025683362, -0.021852104, -0.004925902, -0.011211611, 6.8032864E-4, -0.0021620938, -0.007635318, -0.020628277, -0.011463176, 0.004426173, -0.009749819, -0.0022504812, 0.0025190432, 0.0020142146, 0.013434897, 0.008491997, 0.0012153279, -0.01376125, -0.015936943, 0.008852346, -0.026312273, 0.012972563, 0.024231767, 0.004878309, -0.039543197, 0.02053309, 9.323179E-4, -0.00966823, 0.0043207877, 0.008940733, -0.015583392, 0.013258122, -0.0053270455, 0.005350842, 0.020737063, -0.01856137, 0.020016365, -0.011877918, 0.01404681, -0.0013708558, -0.0010963447, 8.345818E-4, -0.008152045, -0.018370997, 0.001291817, 0.023728639, 0.015773766, 0.017949456, -9.1956975E-4, 0.0010648991, 2.5156437E-4, -4.4873642E-4, -0.0102801435, -0.0051128757, -0.006027346, 0.012428639, 0.025251623, -0.0033230293, 0.0038550538, -0.0028963897, 0.010626894, 0.016752826, 0.02866474, -9.782114E-4, -3.1721755E-4, 0.014209987, -0.022015281, -0.008974728, -0.026570637, 0.0092058955, -7.661665E-4, 0.034348734, -0.014413958, -0.015991334, -0.007818893, 0.0020924036, 0.03443032, -0.0073361606, -0.001362357, -0.019241273, 0.010477316, 0.0019156287, -0.008838748, 0.023062333, 0.0076489164, -0.036170878, 0.0031666514, 0.008621179, -0.01206829, -0.010708483, -0.024938866, -0.01842539, 0.0026074306, 0.008845547, -8.345818E-4, -0.008213237, -0.0035524967, 0.0240006, -0.0062857093, 0.038591333, -0.0045655533, 0.0047253305, 0.034539107, 0.024911672, 0.00860758, 8.1630936E-4, -0.009777015, 0.019513236, 0.019146089, -0.014345968, 0.059178818, -0.012788989, 0.030296508, -0.013122141, 0.013366906, 0.013258122, -0.026896989, 0.001947924, 0.0064862813, 0.022613596, 0.005619404, 0.013468892, -0.03429434, 0.018901322, -0.0023541665, 0.017187966, 0.0010088071, -0.01588255, 8.5922825E-4, 0.0035694942, -0.025999516, -0.018574968, -0.022695186, 0.0074993377, 0.0070777973, -0.021471359, -0.008852346, -0.019758001, 0.0041270154, -0.0018442387, 0.03472948, 0.0017558512, -0.033940792, 0.010361732, 0.022817567, -0.01807184, -0.013815643, 3.3490567E-5, -0.012449036, -0.019567627, -0.00430379, 0.0023405685, 0.039923944, -0.01023935, 0.022844763, -0.018235017, -0.004215403, 0.017963056, -0.01728315, 0.021104211, 0.031357158, 0.010538507, 0.03084043, -0.0072817686, 7.5256836E-4, 0.021974487, -0.00458935, -0.0045417566, -0.01440036, -0.013754452, 0.005969554, -0.0046607396, 0.0048171175, -0.049524184, 0.024041394, -0.017759085, -0.014917087, -0.0054256315, -0.00486811, -0.0023541665, -0.01750072, -0.015705775, -0.036877975, -0.008770757, -0.007737304, 0.0819148, 0.050802402, 0.010830865, 0.009763417, -0.01446835, 0.007390553, -0.0066528576, 5.0015416E-4, -0.013890432, -0.025564378, 0.028338386, -0.0030408693, 0.036823582, 0.00225898, 0.026856195, -0.010837665, -0.009661431, -0.011626353, 5.9013513E-5, -0.01601853, -0.022831166, -0.016127316, 0.019322863, 0.029154269, 0.012965763, -0.008573585, 0.0204651, 0.0028182007, 0.0025156436, 0.014318772, -0.0014108001, -0.0029269853, 0.007866486, 0.009872202, 0.0031156586, -0.006404693, 0.031357158, 0.016249698, 0.025700359, 0.008743562, -0.009817809, 0.018438987, -0.0059117624, -0.008906738, 0.0025802345, -0.029235858, -0.008933934, 0.030296508, 0.028746327, -0.026652224, 0.03070445, -0.002243682, -0.017174367, -0.014209987, 0.023497472, 0.01066089, 0.0020669072, -0.0070845964, -0.018167026, 0.0030561672, 0.009865402, -0.04082142, 0.0044771656, -0.013278519, -0.0031496538, -0.013230925, -0.0011745336, -0.010137364, -0.019880384, -2.0737063E-4, 0.003515102, -0.034484714, -0.014305173, 0.0026771207, 0.008757159, -0.006149729, 0.018466184, -0.0015340326, 0.007213778, 0.007043802, -0.033152103, -0.028148012, 0.013713657, -0.0225864, -9.2721864E-4, 9.051218E-4, -0.0044091754, 0.018153429, -0.0027859053, -0.0026091305, 0.0014040011, 0.0021263987, -0.019798795, -0.004439771, 0.03255379, 0.012911371, 0.018860528, 0.015080264, 0.0030714648, -0.004878309, 0.003521901, -0.019390853, -0.010613296, -0.016997593, -0.028419973, -0.0047049336, -0.00324654, 0.0064624846, -0.02625788, -0.02831119, -0.014985077, -0.014277977, -0.0024935468, 0.0014082505, 0.012551022, 0.0019853187, 0.011347593, 0.013706858, -0.008138447, 0.0132105285, -0.009185499, -0.005779181, 0.005466426, 0.04269795, -0.007560529, 0.018642958, -0.019825991, -0.021430563, -0.017595908, 0.020873044, -0.0014694418, 0.030323705, -0.011157219, -0.0094234655, -0.007988868, -0.022314439, 0.011837123, -0.0041066185, -0.021049818, 0.009409867, -0.022205655, 0.0067378455, 0.009409867, -0.004398977, -0.0017184565, -0.031030804, 0.009294284, -0.008559987, 0.0075197346, 0.019893982, -0.009001925, 0.014074006, -0.0275225, -0.011993501, -0.015692176, -0.021063415, -0.031085197, -0.01637208, 0.032852948, 0.0076285196, 0.03211865, -0.008444403, 0.026081106, 0.007227376, 0.010021781, 0.022409625, -0.013162935, -0.005058483, -0.02654344, 0.0131561365, 0.014223585, 0.030514078, 5.2989996E-4, -0.005874368, 0.008899939, 0.009994584, 0.013897231, 0.017759085, -6.255114E-4, -0.010348134, -0.023252705, 0.02780806, -0.021824908, -0.009817809, -0.012938567, -0.016059324, 0.035137422, 3.4250147E-4, -0.011333995, -0.020084355, 0.034675088, -0.0079480745, 0.019363657, -0.021308182, 0.02364705, -0.021960888, -0.005592208, -0.018574968, -0.020111552, -0.010531708, -0.009301082, 0.014359565, 0.0037360708, -0.020152345, -0.002131498, 0.025441997, -0.007370156, -0.030758843, 0.04207244, -0.008172442, -0.011354391, -0.026380263, 4.2685203E-4, -0.026516244, -0.016263297, 0.0023898615, -0.019758001, 0.0041338145, -0.02181131, -0.0275225, 0.023198314, 0.006941817, 0.034620695, 0.016603248, 0.027304932, 0.02519723, 0.01249663, -0.0110076405, 0.027794462, -0.0162361, -0.003156453, 0.030486882, 0.018466184, -0.02075066, -0.0058335736, 0.0058845663, 0.0017779481, -0.04389458, -0.038210586, 0.024163777, 0.013604873, 0.036388446, -0.02977978, -0.011952707, -0.021090612, 0.008356016, -0.004558754, -0.0057995785, 0.016766425, -0.034702282, -0.02061468, 0.0013147638, 0.0052964496, 0.004184807, 0.004487364, -0.019961972, 0.0121906735, -0.013543681, 0.0078120935, -0.011728339, -0.009607039, 0.033478457, -0.012435438, 0.02555078, 0.0039060467, 0.020165943, -7.9378753E-4, 0.0079480745, -0.003535499, 0.027957639, -0.011510769, 0.03078604, 0.0028385979, -0.025455594, 7.510811E-5, 0.015066666, -0.017351141, -0.017487124, -0.031357158, -0.010082971, 0.026747411, 0.007784897, -0.0105521055, -0.001383604, -0.0041474123, -0.0072613712, 0.009097111, -0.0040964196, 0.013734055, -0.008070457, 0.020655474, -0.010592899, 0.010184957, 0.0011022938, 0.01030734, 0.00649308, -0.007988868, -0.0015085363, -0.007886883, -0.0031071599, -0.009926594, -0.028991094, -0.04419374, -0.028963897, -0.011041636, -0.015583392, 0.007172984, -0.016997593, 0.0031649517, 0.0129929595, -0.010171359, -0.0030034746, -0.0023031738, -0.0024476533, -0.0022045877, 0.015624187, -0.009464259, -0.010626894, -0.0010767975, 0.026869794, -0.016848013, -0.009709025, 0.0074993377, -0.0025445395, 0.018901322, -0.019078098, 0.02152575, -0.0015850255, -0.021267388, -0.0145771345, 0.012612213, 0.023524668, 0.012455836, -0.005167268, -0.035708543, -0.0065814676, -0.009348676, 0.030133331, -0.01820782, -0.0124830315, 0.027223343, 0.02858315, 0.03203706, 0.021294583, -0.011347593, -0.028148012, -0.001023255, -0.005500421, -0.021960888, -0.009049518, 5.923661E-4, 0.008933934, 0.014549939, -0.011952707, -0.027495304, 0.001263771, -0.018819734, -0.022205655, -0.016752826, 0.029562213, 0.040250298, -0.004466967, 0.005211462, 0.010252948, 0.009273887, 0.012449036, -0.011102827, -0.0046709385, 0.01709278, 0.010082971, 0.0204651, 0.026665822, -0.016997593, -0.006367298, 0.016222501, 0.028120816, 0.017663898, 0.041174967, -0.021892898, -0.00903592, -0.020832248, -0.0026499247, 0.009702225, -0.004361582, 0.03070445, -0.029263055, -0.0050142896, 0.0025734354, 0.028012032, 0.0026006317, 0.014998675, 0.015732972, -0.008233634, 0.007070998, -0.01729675, -0.022246448, -0.0030935619, -0.036089286, 0.01990758, 0.016072923, -1.8474257E-4, 0.025074847, 0.017935859, -0.004827316, 0.0071525867, -0.004531558, 0.011096028, -0.005748586, -0.0052964496, 0.01066089, 0.02703297, -0.027304932, 0.0104977125, -0.017378338, 0.0018595366, -0.014318772, 0.004650541, 0.0020448102, 0.027576894, 0.010259747, -0.05175427, -0.0030238717, -0.0058267745, 0.010858062, -0.02272238, -0.008743562, -0.03543658, 0.006149729, -0.0012365748, -0.010069374, -0.024530925, -0.038564138, -9.6461334E-4, -0.0043819794, -0.019989168, 0.017895065, 0.18526016, -4.4661172E-4, 0.014291575, 0.051237542, -0.0071525867, 0.00911071, 0.03592611, 0.033206496, -0.015161852, 0.024435738, 0.005867569, -0.006663056, -0.008029662, 0.0017966455, 0.016344884, -0.020641876, -0.037231527, -0.024585318, -0.024299758, -0.037693862, -0.0055174185, 0.011850721, -0.005398435, -0.020764258, -0.013237725, -0.005337244, -0.003091862, 0.0025819342, 0.018969312, 0.008811552, -0.0096410345, -0.0072477735, -0.0014966379, 0.00713219, -0.0133193135, -0.009464259, -1.13140224E-4, 0.014971479, 0.0126462085, 0.0032414407, 0.0027893048, 0.0023065733, 0.0067752404, -0.008328821, 4.0873896E-5, 0.033070516, -0.037449095, 0.0026091305, -0.015243441, 0.008090854, -0.035817325, -0.0017592508, 0.036741994, 0.027413717, -0.0031394553, -0.0065780682, 0.011871118, -0.0028368982, -0.010864861, 0.0042595966, 0.013326112, 0.03706835, -0.037149936, -0.004772924, 0.011333995, 0.010144163, -0.044601683, -0.002462951, 0.01729675, -0.0360077, -6.1446294E-4, -0.030242115, 9.3061815E-4, -0.0011124924, 0.0017456528, -0.0072817686, 0.015352225, 0.0075265337, 0.022708783, 0.0145227425, -0.024748495, -0.014237183, 0.005548014, -0.012523826, -0.017106377, -0.018588567, 0.019921178, -0.0028470966, -0.007506137, -0.01178953, -0.008458002, -0.017759085, -0.01615451, 0.010157761, -0.0039740372, 0.006153128, 0.024598915, 0.01955403, -0.008233634, -0.014862695, -0.033696026, 0.03543658, 0.024721298, -0.0030612664, -0.02767208, -0.025741154, 0.0029473824, 0.011463176, 0.025401201, -0.020301923, -0.009613838, -0.01926847, -6.91802E-4, -0.01087166, 0.010960047, 0.016916003, 0.001616471, -0.00805006, 0.039787963, -0.022532009, -0.008070457, -0.024109384, 0.015855353, -0.008335619, -0.0024901472, -0.014944283, -0.029480623, 0.010116966, 0.0039978335, -0.020560287, 0.01722876, -0.029127074, 5.29475E-4, 0.007954873, -0.0024272562, 0.0013317614, 0.020247532, -6.586567E-4, 0.016929602, -0.024598915, -0.009389469, 0.0052964496, 0.0011728338, -0.0019666215, -0.0025445395, -0.0119731035, 0.016249698, -0.017772682, -0.0058845663, -0.026298674, -0.029263055, -3.1806744E-4, 0.009919794, 0.0070981947, 0.044302523, -0.008600782, -0.014345968, -0.043704208, -0.014441154, 0.044764858, -0.038591333, 0.016140914, 0.017895065, -0.0042799935, -0.03932563, -0.027699277, -0.17394656, 0.016467268, 0.0059219613, -0.014917087, 0.008356016, 0.020737063, 0.024898073, -0.0016385679, 0.013496088, -0.021892898, 0.03203706, -0.004997292, -0.034539107, -0.014930685, 0.006098736, 0.0068092356, 0.0028912905, 0.040739827, 0.01539302, -0.010334536, 0.051536698, -0.004059025, -0.010633694, 0.0019037303, 0.0017014589, -0.008335619, 0.01539302, 0.015066666, 0.0033910195, -0.010511311, -0.035980504, -0.017024789, 0.02053309, 0.0074381465, -0.006030746, -8.690019E-4, -0.022232851, -0.01101444, -0.0022045877, -0.013876834, 0.049170636, 0.008328821, 0.025673162, 0.021416966, 0.013387304, 0.007533333, 0.030650059, -0.012197472, -0.001121841, -0.011585559, -0.010681286, -0.039651982, 0.016807219, -0.0017422532, -0.006224518, 0.0035524967, -0.0050380863, -0.005993351, 0.021756917, -0.00254114, -0.029018288, -0.0013734055, 0.009498254, -0.012047893, -0.002843697, -0.020791454, 8.6305273E-4, 0.015093862, -0.030622862, 0.015651383, -0.027699277, 0.025238024, 0.0012510228, 0.0033927194, 0.007540132, -0.008036462, -0.04171889, 0.014386762, -0.014495547, 0.025102044, -0.0063910945, 0.032526594, -0.014672321, 0.008723164, 0.0033485256, 0.0017779481, 0.0041338145, -0.014250781, 0.008641575, -0.016004933, -0.0049938927, -0.010898856, -0.024476532, -0.010681286, -0.002252181, 0.0078052944, -0.0028759926, 0.008525992, 0.007995667, -0.013298916, -0.004262996, -0.025577977, -0.018996509, 0.008226834, 0.025754752, 0.007322563, 0.01030734, 0.02315752, 0.009967388, -0.007220577, -0.009654632, 4.6020982E-4, 0.014209987, 0.009940192, -0.01256462, 0.008525992, -0.017378338, -0.024830082, 0.002434055, 0.009511853, 0.04878989, -0.0034709084, -0.0049870936, -0.006839831, -0.005497021, -0.012809386, -0.08452562, 0.01080367, 0.009049518, 0.06021227, -0.028338386, 0.03924404, -0.010905655, 0.015841756, -0.01249663, 0.03211865, 0.017609505, -0.023307098, 0.016358482, -6.4505864E-4, 0.011544765, -0.0041304147, -0.01940445, -0.011483573, -0.019975571, 0.024530925, -0.0017779481, -0.014549939, 0.003868652, -0.015542598, -0.028229602, 0.021131406, -0.03353285, 0.03750349, 0.011884716, 0.008430806, 0.0094778575, -0.02378303, 0.014645126, -0.030894823, -0.019703608, -0.022328038, -0.021430563, -0.030486882, -0.014209987, -0.051999032, 0.008254031, 0.019309264, 0.007540132, -0.012809386, -0.007370156, -0.0025717358, -0.03763947, 0.029616604, 0.008152045, -0.019581227, -0.0030034746, -0.019825991, -0.014495547, -0.013883634, 8.647525E-4, 0.01610012, 0.02725054, -0.003380821, -0.018112633, -0.031982668, -0.008920336, -0.011531167, -0.018547773, 0.024517328, 0.007846088, 0.015161852, 0.0014600932, -0.016616846, 0.012816184, -0.016902406, -0.035137422, 0.0169432, -0.029698193, -0.008831949, -0.008593983, -0.0062925084, -0.020805053, -0.016521659, 0.028419973, -0.023198314, 0.012109085, -0.0289367, 0.0032363415, -0.027291333, 0.020560287, 0.01721516, 0.01820782, 0.022409625, -0.0021790913, -0.041773282, -0.0024765492, 0.025170034, 0.002767208, -3.8648274E-4, -0.0120818885, 0.022477616, 0.011218411, -0.013829241, -0.009607039, 0.021784114, -0.0044839648, 0.005340643, -0.07294007, 0.025224427, -0.021430563, -0.0056398013, -0.007818893, -0.015705775, 0.0055820094, -0.011966305, -0.010905655, 0.020111552, -0.016276894, 0.022464018, -0.008532791, -0.0014626428, -0.008437605, 0.010259747, -0.0020278126, 2.732363E-4, -0.0035728938, -0.0017796479, -0.010422924, 0.025591575, 0.030432489, 0.00628231, -0.0015399818, 0.027794462, -0.003232942, 0.014509144, -0.008070457, -0.019989168, 0.031465944, -0.020043561, 2.5092694E-4, 0.010790071, 0.0072885673, -0.033043317, -0.011850721, -0.0019751203, 0.024435738, 6.708737E-5, -0.011837123, -0.040359084, -0.005055084, -0.021416966, -0.012449036, 0.01947244, -0.013924427, 0.029045485, 0.0030017747, 0.020737063, 0.03192828, 0.004963297, -0.011286401, -0.022178458, 0.01709278, -0.023565462, 0.0430515, 0.0054868227, 0.003790463, -0.014903489, 0.028909504, 0.008152045, 0.031003607, -0.041882068, -0.016766425, 0.0031088595, -9.95209E-4, -0.022001684, -0.0019105293, -0.03056847, -0.010368532, -0.011993501, 0.0031479541, 0.043513834, 0.007363357, 0.020981828, 0.0070913956, 4.860249E-6, -0.002950782, 0.010572502, 0.019078098, -0.004674338, -0.02632587, 0.021498555, -0.0047593256, 0.023171118, -0.001093795, 0.012292659, -9.867102E-4, 0.0074721416, -0.014536341, 0.010824067, 0.01771829, -0.006037545, 0.022980744, 0.012727797, -0.00974302, -0.0012790688, -8.5157936E-4, 0.029154269, -0.0052692536, -0.0104433205, -0.02053309, -0.022001684, -0.023891816, 0.012904572, -0.023470275, -0.01935006, 0.007771299, 0.029099878, 0.024653308, 0.006782039, -0.019173283, 0.009892599, -0.033967987, 0.008356016, -0.015365823, -0.0042663957, -0.013598073, 0.04840914, 0.017323947, 0.01312894, 0.033152103, -0.0049157036, 0.045199998, 0.009552646, 0.00769651, -0.0360077, 0.0061429297, -0.014645126, 0.008838748, -0.019649217, -0.028773524, 0.0071253907, -0.00973622, 0.003933243, 0.007757701, 0.03508303, -0.014957881, 0.07375595, 0.014182791, -0.01037533, 0.023973403, -0.025713958, 0.005938959, 0.01856137, 0.027957639, -0.004701534, -0.005915162, 0.007546931, -0.006826233, 0.010130565, -0.03268977, -0.0010122067, -0.00861438, 0.017935859, 0.01333971, -0.020437906, -0.0261219, -0.006601865, -0.0077441027, 0.025754752, -0.0034063174, -0.014930685, -0.014454752, 0.029235858, -0.003062966, 2.9065882E-4, -0.053793978, -0.0030221718, -0.009430264, -0.0059525566, -0.007635318, 0.015243441, -0.005174067, -0.0099333925, -0.002209687, 0.022559205, 0.012224669, -0.010932852, 0.016793622, -0.033478457, -0.018370997, 0.021348976, -0.0010801969, -0.008593983, -0.023375088, -0.018180624 ], + "id" : "8077138b-2479-4c09-8a81-cc5a0e1b6dcb", + "metadata" : { + "source" : "movies.csv" + } + }, + "717e0bd1-cf36-499c-873c-8f4fdd0a5c75" : { + "text" : "Schwartz-David Sontag-Larry Sontag-Joe La Due-Cecelia Ann Birt-Paul L. Nolan-Carol Florence-Richard Reed-Charles La Russa-Mark Gantt-Anthony Allison-Ronn Soeda-Tim Perez-Frank Patton III-Jorge R. Hernandez-Tim Snay-Miguel P��rez-Barry Brandt-William Patrick Johnson-Robert Peters-Gregory Stenson-David Jensen-John C. Fiore-Tommy Kordick-Robin Sachs-J.P. Manoux-Frankie J. Allison-Eydie Gorm��-Steve Lawrence-Jim Lampley-Larry Merchant-Jim Alfonso-John Robotham-Vincent M. Ward-James Curatola-Lori Galinski-Bill Allison-Kelly Adkins-Rusty Meyers-Joe Coyle-Scott Beringer-Viola Davis-Kerry Rossall-David Leitch-Thomas Rosales Jr.-Tony Brown-Richard Steele-Niall Binnion,prison-pickpocket-strip club-thief-caper-heist-con artist-atlantic city-salt lake city utah-las vegas-card dealer-explosives expert,/hQQCdZrsHtZyR6NbKH2YyCqd2fR.jpg,/boI3myFhWBvQcru4zZ15aJ0u3CX.jpg,163-298-2501-10528-2502-2503-36557-607-954-58574-10764-18785-107-787-1572-1271-8681-604-1422-89-85\r\n447404,Pok��mon Detective Pikachu,Action-Adventure-Fantasy,en,In a world where people collect pocket-size monsters (Pok��mon) to do battle a boy comes across an intelligent monster who seeks to be a detective.,41.216,Legendary Pictures-The Pok��mon Company,5/10/19,150000000,449762638,105,Released,Partner Up!,6.963,6114,Justice Smith-Ryan Reynolds-Kathryn Newton-Bill Nighy-Ken Watanabe-Chris Geere-Suki Waterhouse-Rita Ora-Karan Soni-Omar Chaparro-Josette Simon-Simone Ashley-Alejandro De Mesa-Ben Fox-Max Fincham-Diplo-Edward Davis-Kadiff Kirwan-Ryoma Takeuchi-Rina Hoshino-Ikue Otani-Kotaro Watanabe,detective-amnesia-car crash-pocket monsters-whodunit-based on video game-missing person-missing parent-buddy comedy-neo-noir-live action and animation-pikachu character-live action anime,/wgQ7APnFpf1TuviKHXeEe3KnsTV.jpg,/nDP33LmQwNsnPv29GQazz59HjJI.jpg,287947-420817-429617-373571-299534-458156-299537-399579-320288-479455-324857-301528-456740-420818-404368-280217-166428-412117-454626-383498-335983\r\n10195,Thor,Adventure-Fantasy-Action,en,Against his father Odin's will The Mighty Thor - a powerful but arrogant warrior god - recklessly reignites an ancient war. Thor is cast down to Earth and forced to live among humans as punishment. Once here Thor learns what it takes to be a true hero when the most dangerous villain of his world sends the darkest forces of Asgard to invade Earth.,103.396,Marvel Studios,4/21/11,150000000,449326618,115,Released,Two worlds. One hero.,6.", + "embedding" : [ 0.008396723, -0.025012389, -0.015726762, -0.039768193, -0.022796966, 0.043460563, 1.8012457E-6, -0.009251438, -0.018803736, -0.03446212, 0.02290637, 0.025149142, 0.015412226, -0.0011188223, 1.3151931E-4, 0.010543767, 0.02182601, -0.018147314, 0.0032393709, -0.028691083, -0.012143794, 0.001089762, -0.024191862, 0.024889309, 0.016533613, 0.013258344, 0.0269543, -0.0037026266, -0.018119965, -0.0012239523, 0.009367679, -0.007514657, -0.0051932503, -0.0069266125, -0.027911583, 1.3483134E-4, 0.009415544, -0.0148925595, 0.02335766, -0.033012524, 5.824885E-4, 0.0047590546, -0.0074941437, -0.012061742, -0.022537133, -0.0064924173, 0.010024101, -0.0148925595, -0.0016726778, 0.024643151, 0.025272222, 0.021648228, -0.02416451, -0.008759122, -1.8483218E-4, -0.006991571, -0.008848012, 0.012923295, 0.01200704, 0.0062599345, 0.01362758, -0.02765175, -0.025545731, -0.0033915103, -0.014509646, -0.0077813277, -0.00963435, -0.015357524, -0.014277164, 0.01347715, 0.035474103, 0.01801056, 0.0161507, 7.769362E-4, 0.021730281, -0.039166473, -0.024602124, 0.003097488, -0.0041470784, 0.010625821, 5.367612E-4, -0.0113848075, -0.011555751, 0.007439442, 0.020868728, 0.007357389, -0.0019196905, 0.016191727, -0.046879426, 0.007829192, 0.0014461783, 0.040561367, -0.0020376411, 0.0043248595, -0.0013966048, 0.029894521, -0.027802179, 0.027610723, -0.016875498, -0.03293047, 0.010051452, -0.0054257326, -0.017764403, -0.012567733, -4.3846894E-4, 0.002350467, 0.013347234, -0.004871877, 0.014495972, 0.01206858, 0.011207026, -8.457408E-4, 0.01206858, -0.038810913, 0.0014564348, -0.0076172226, 0.010249746, -0.031480875, -0.007733464, -0.009107846, 0.039467335, 0.03621258, 0.00666336, -0.013805361, 0.04064342, 0.026379932, -0.010345474, -0.015001963, -0.003914596, 0.0063180556, 0.024985038, 0.00807535, 0.024930336, 0.01522077, -0.03410656, 0.029484259, -0.027009003, 0.008861688, -0.017791754, -0.014290839, 0.028554328, 0.024219213, -0.014085708, -0.034571525, -0.023302957, 0.0045197345, 0.012533545, 0.00447187, 0.010290772, -0.005446246, 0.01936443, 0.032164644, 0.009853158, 0.0018872113, 0.010482228, 0.0038598941, 0.0019897772, -0.002564146, 0.00573343, -0.022701237, 0.0029949225, 0.011446347, 0.004529991, -0.01984307, -0.0077881655, 0.020581543, 0.025655134, -0.015644709, -0.012280549, 0.0042428067, -0.008143728, 0.022085844, -0.020937106, 0.021128561, -0.0042257123, 0.017012253, 7.6326076E-4, -0.013224155, -0.032191996, -0.01936443, 0.009641188, 0.001834219, 0.03364159, 0.026708143, 0.0022410634, 0.0058189016, 0.028472276, -0.013504501, 0.0018325095, -0.015685735, 0.0045607607, 0.019856745, -0.004659908, -0.004875296, -0.64154243, 0.0013017313, -0.0018564416, -0.019460158, 0.017613973, 1.4690419E-4, 0.001693191, -7.354825E-4, -0.03971349, 0.0014162632, -0.02188071, 0.019350754, 0.023590142, -0.01552163, -0.026051722, -0.007056529, 0.004359048, -0.0076992754, 0.034653578, 0.004041094, -0.039576735, 0.01818834, 0.015808813, -0.012889107, 0.0074462797, 0.017641323, -0.00861553, -0.012266873, 0.011302755, 0.011706181, -0.033176627, 0.01206858, 0.02326193, 0.0038325433, 0.0385374, 0.021019159, -0.017340465, 0.042722087, 0.033942454, 0.024684178, -0.019884096, -0.013101076, -0.0052000876, 0.014701103, -0.022085844, 0.015015638, 0.013449799, 0.0014632726, -0.0042975084, 0.0024838026, 0.008328346, -0.0086633945, -0.014249813, -0.007405253, -0.015056664, 0.0060103578, 0.006150531, -0.027638074, 0.001723106, 0.0019350754, -0.021935413, 0.027542345, 0.0040205806, 0.013463475, 0.020841377, 0.022947395, -0.010318123, -0.012123281, 0.005685566, -0.028663732, 0.0014914782, 0.012622436, -0.021743957, 0.0072958497, 0.0056274454, 2.5000423E-4, 0.026215827, -0.0036786946, -0.0051043597, 0.01338826, -0.011309593, 0.0019060151, -0.009258276, -7.525768E-4, 0.03506384, -0.001089762, -0.04274944, 0.011713019, 0.017696025, 0.00666336, -0.013853225, 0.0014273745, 0.01507034, 0.0018752454, -0.0037949358, 9.2993025E-4, -0.013272019, -0.0025197007, 0.011596777, -0.0646575, -0.0012384824, -0.01828407, 0.029593661, -0.006591564, 0.015685735, 0.017586622, -0.006974477, -0.014495972, 0.029402206, -0.023631169, -0.018653307, -0.009709566, -0.02506709, -0.012629273, -0.010940355, -0.02627053, 0.022345677, 0.013518177, -0.008307832, -4.722302E-4, 2.3547406E-4, 0.015111366, 0.024178186, -0.009271951, 0.013791686, 0.022085844, -0.017149007, -0.007904407, 0.012943808, 0.002374399, -0.0016410534, -0.0056992415, 0.016123349, -0.027843205, 0.00237098, 0.010222395, 0.021128561, -0.0037949358, 0.02557308, -0.005165899, -0.014277164, 0.0028684244, -0.011207026, -0.017190034, -0.022742264, -0.03232875, -0.044664003, -0.009736916, -0.010441202, -0.010680522, -0.016807122, 0.0031026164, -0.020499492, 0.01161729, -0.0020256753, -0.01239679, -0.02629788, -0.033203978, 0.011124974, -0.02308415, 0.0038120302, 0.014837857, -0.0064377156, -0.031262066, 0.022126868, -0.021320019, -0.014523322, 0.0068069524, -0.0030667183, -0.012205334, 0.0102360705, -0.020267008, -1.957298E-4, 0.008417236, -0.017422516, 0.028444925, -0.004458195, 0.013463475, 0.009818969, -0.00984632, -0.0057778754, -0.0065437, -0.017299438, 0.0056308643, 0.030906504, 0.010249746, 0.019925123, -9.615547E-4, -0.002683806, -9.188189E-4, -0.015507954, -0.011795071, 0.009429219, -0.0039829733, 0.0070018275, 0.049094845, 0.002068411, 0.0041334033, -0.011104461, 0.010995057, 0.02951161, 0.016643016, 0.007336876, -0.020294359, 0.007965947, -0.036868997, 0.0060103578, -0.02230465, 0.007172771, 0.0059659127, 0.010509579, -0.0101471795, -0.0066770357, 0.0048308508, 8.1753515E-4, 0.030113328, -0.0022923464, 0.011220702, -0.0121096065, 0.010564281, 0.016957551, 8.002272E-5, 0.009839483, 0.00813689, -0.0169302, 0.020376412, 0.009080495, -0.013654931, -0.0144686205, -0.010140342, 0.0073779025, 0.0047214474, -6.901826E-4, 0.0024188443, -0.011610452, -0.007637736, 0.025682485, -0.009326654, 0.0507359, -0.0043624667, 0.0051829936, 0.03104326, 0.022523457, 0.0079385955, 0.00369237, -0.013976304, 0.021060184, 0.018256718, -0.004707772, 0.04589479, -0.017518245, 0.03782628, -0.012280549, 0.011685668, 0.010721548, -0.016834471, 0.0036957888, 0.019350754, 0.0076719243, 0.027091056, 0.0025761118, -0.04006905, 0.019747341, 0.01600027, 0.016109673, -0.0052992348, -0.020458465, 0.0026188476, -0.0021641392, -0.027925259, -0.019432807, -0.008745447, -0.01167883, 0.00894374, -0.0025367949, -0.0044684517, -0.014386567, 0.016861822, 0.0010487357, 0.03169968, -0.0033590312, -0.038072437, 0.013456637, 0.025983345, -0.012779703, -0.014345542, -7.729831E-5, -0.01221901, -0.037333965, 1.2265165E-4, -5.423168E-4, 0.019473832, -0.011446347, 0.006236003, -0.010181368, -0.0035145893, 0.011254891, -0.0052582086, 0.020950781, 0.02167558, 0.0026923532, 0.026051722, -0.012752352, -0.0032803973, 0.039467335, -0.008656557, -0.018338772, -0.0019179811, -0.0048342696, -0.019432807, 0.006160788, 0.0037504907, -0.03484503, 0.021579852, 0.0056274454, -0.011193351, -0.0065847267, 0.0020701203, 0.017367814, -0.0016231043, -0.019528534, -0.014960936, -0.043296456, -0.009559136, 0.0829279, 0.046004195, 0.0019983244, -0.0015572913, -0.013196804, 0.012629273, 0.0065334435, -0.006396689, -0.001822253, -0.022290975, 0.033121925, -0.01128908, 0.019911448, 0.010755737, 0.016725069, -0.0065437, -2.3547406E-4, 0.0071249064, 0.008171078, -0.020253334, -0.015261796, -0.0141677605, 0.013497664, 0.029730417, -0.0014094255, -0.01645156, 0.019979825, -0.0023949123, 0.0039385282, -0.0011068563, -0.022769615, -0.0018290908, 0.017750727, 0.008519802, -0.00948392, 0.006571051, 0.028198767, 0.025026064, 0.019624263, 0.01632848, -0.0043282784, 0.009121521, 0.015111366, -0.0049641863, 0.008485613, -0.023699546, -0.023453387, 0.022796966, 0.03968614, -0.035884365, 0.013005348, 0.0040513505, -0.01906357, -0.026489336, 0.023576466, -0.0015684025, -0.0018513133, -0.008567666, -0.022824317, 0.0072343103, -0.0024803837, -0.020472141, 0.011569426, -0.008560828, -0.010270258, -0.017012253, -0.009046307, -0.012492519, -0.015029314, 0.020458465, -0.008697582, -0.018666983, -0.03290312, 0.011248053, 0.034380067, 0.002663293, 0.024479046, -0.0023932029, 0.011036084, 0.019651614, -0.02765175, -0.025313247, 0.008095863, -0.033915102, -0.009859996, 0.0072684987, 0.012875431, 0.017313113, 0.010174531, 0.024998713, 0.007603547, -0.012082255, -0.01788748, 0.0012914748, 0.0261748, 0.0151660675, 0.024273913, 0.017764403, 0.007480468, -0.006741994, -0.0058462527, -0.0151660675, -0.009490758, -0.014605375, -0.012314738, -0.013244668, 0.008950578, 0.0044103307, -0.02104651, -0.0127455145, -0.020157605, -0.010324961, 0.010195044, 0.0031812503, 0.010359149, 0.0048308508, 0.018174665, 0.012854918, -0.010947193, -0.0068787485, -0.0041265655, -0.01846185, 0.017996885, 0.01753192, -0.009798456, 0.024178186, 0.010099316, -0.035857014, -0.0059385616, 0.013189966, 0.0060889916, 0.0151660675, -0.02521752, -0.0068411413, -0.017367814, -0.015767787, -0.0071112313, -0.0030855222, -0.0068821674, 0.009641188, -0.026530363, 0.009524947, 1.4284429E-4, 0.003921434, -0.004574436, -0.032821067, 0.0056274454, -0.008335183, 0.03446212, 0.0246158, -0.0093608415, 0.011398483, -0.008205267, 0.01602762, -0.006037709, -0.03016803, -0.028280819, -0.015986595, 0.029347504, -1.781013E-4, 0.03995965, -0.014290839, 0.014345542, 0.0048411074, 0.010092478, 0.013025861, -0.021443097, -0.019897772, -0.01269765, 0.016533613, 0.0081505645, 0.017518245, 0.009183061, 0.0015572913, 0.0080890255, 0.0088753635, 0.019624263, 0.012540382, 0.00948392, -0.030031277, -0.012800216, 0.002294056, -0.005097522, -0.007651411, -0.011275404, -0.023904677, 0.038865615, 0.0012461749, -0.0045710173, -0.0063385684, 0.016013946, -0.0015316497, 0.0012324995, -0.009183061, 0.017873807, -0.03388775, -0.0046906774, -0.021456772, -0.0048342696, -0.006253097, -5.1656854E-5, 0.012519869, -0.017942183, -0.01254722, 0.007706113, 0.02596967, -0.020157605, -0.027405592, 0.0130874, -0.01323783, -0.022892695, -0.033614244, 0.0048034997, -0.031289417, 5.226584E-4, 0.006673617, -0.0070770425, -5.487272E-4, -0.013525015, -0.04064342, 0.022947395, -0.0021880711, 0.043515265, 0.0132309925, 0.039275877, 0.027460292, 0.01185661, -0.021278992, 0.0011102752, -0.0077744904, -0.009538623, 0.019501183, 0.0034872384, -0.026885923, -0.007931758, -0.004998375, -0.004670164, -0.03845535, -0.03407921, 0.013251506, 0.024629476, 0.022427728, -0.029621013, 0.002386365, -0.01738149, 0.010263422, -0.003389801, 0.0049060658, 0.006400108, -0.036185227, -0.027173107, -0.009818969, -0.0027385077, 0.02674917, 0.017559271, -0.029976575, 0.019596912, -0.015781462, 0.012718163, -0.01783278, -1.7959705E-4, 0.03577496, -0.02674917, 0.014072033, -0.0019162716, 0.017258411, 0.012075418, -0.0024427762, -5.1496594E-5, 0.02755602, -0.0169302, 0.01876271, -0.0012230976, -0.004389818, 9.3249435E-4, 0.025436327, -0.013107914, -0.0022171314, -0.034954436, 6.2907045E-4, 0.043159705, -0.015658384, -0.00753517, -0.009798456, -0.014523322, -0.014687427, 0.0034171517, -0.013736984, 0.010960869, -0.041682754, 0.009210411, -0.0101471795, 0.010037776, -0.010735224, -0.0069095185, -0.006861654, -0.015453252, 0.024232889, -0.013983142, 0.0042496445, -0.005952237, -0.0071112313, -0.03719721, -0.026694467, -0.028034661, -0.012150632, 0.008143728, -0.0016111383, -0.007459955, -0.016013946, -0.0072206347, -0.0076240604, -0.0024000406, -0.012984835, 0.018065263, 0.014714778, 1.4412636E-4, -0.016137024, -0.018516552, 0.026051722, -0.007829192, -0.007829192, -0.004629138, 0.007630898, 0.025340598, -0.021265317, 0.005569325, 0.008683907, -0.03016803, -0.0073026875, 0.0074257664, 0.030961206, 0.020827701, 0.0029197074, -0.028554328, -0.004933417, -0.004895809, 0.028581679, -0.0140173305, 0.0041744295, 0.02657139, 0.034735627, 0.04400758, 0.019159298, -0.020102903, -0.011145487, 0.022974746, 3.613843E-5, -0.0230568, -0.008130052, -0.005070171, 0.016574638, 0.017285762, 0.0056958226, -0.019077245, -0.016506262, -0.016656691, -0.027979959, -0.012731839, 0.028280819, 0.045457177, 0.0068719108, -0.0015145555, 0.020814026, 6.747977E-4, 0.002894066, -0.009709566, -0.009901022, 0.014222463, 6.880458E-4, 0.020513168, 0.016738744, -0.036103174, -0.0049094846, 0.020171281, 0.026065398, 0.014523322, 0.02167558, -0.031644978, -0.0012025844, -0.015302822, 8.2907383E-4, -0.0076992754, -0.011555751, 0.01891314, -0.017778078, 0.0037231399, 0.011890799, 0.007808679, -0.014058357, 0.024725204, 0.014072033, -0.013429287, -0.0066428473, -0.0018923397, -0.018393474, 0.0050428202, -0.018243043, 0.030031277, 0.012013878, -0.009217249, 0.027815854, 0.02800731, -0.01377801, 0.0036957888, -0.015931893, 0.010878816, -0.0131694535, 0.0037812605, 0.0029675714, 0.021634553, -0.01936443, 0.021566177, -0.0054018004, 0.0059488183, -0.01236944, -0.0043693045, -0.018078938, 0.024041431, 0.015193419, -0.041682754, 0.009415544, -0.0222773, 0.021757632, 0.0015966082, -0.021839686, -0.027487643, -0.016697718, -0.00969589, 0.0059351427, -0.020882403, -0.022386702, -0.018215692, -0.014495972, -0.013771173, 0.011453185, 0.18390737, -0.016807122, -0.0035590346, 0.05601462, -0.004748798, 0.021237966, 0.04146395, 0.011774558, -0.007330038, 0.014783155, 4.931707E-4, 0.011364294, 0.0032410803, -0.0017692606, 0.003521427, -0.018530227, -0.020267008, -0.009962562, -0.0047351224, -0.020636246, -0.001002581, 0.0039727166, -0.012355764, -0.012321576, -0.00852664, 0.0010273678, -0.019460158, -0.0016307967, 0.02659874, 0.0014555801, -0.011159163, -0.010660009, 0.007138582, 0.002858168, -0.022523457, -0.018256718, 0.0050599147, 0.017654998, 0.012642949, -5.820611E-4, 0.0045163156, -0.0066770357, -0.003743653, -0.00954546, 0.0035180082, 0.011671992, -0.023097826, 0.003299201, -0.0107489, 0.0026513268, -0.04589479, 0.0017307984, 0.02569616, 0.0323014, -0.01185661, -0.014673752, 3.2244134E-4, 0.003295782, -0.017572947, 0.001419682, 0.009730079, 0.034544174, -0.020759325, 0.017176358, 0.013005348, 0.015015638, -0.029921873, 0.0046906774, 0.019637939, -0.020212308, -0.019172974, -0.024178186, -0.0067248996, -0.01146686, -0.0067146434, -0.020075552, 0.0093608415, 0.01383955, 0.010427526, 0.022550808, -0.016656691, -0.016013946, 0.023097826, 0.0028342358, -0.009764267, -0.020376412, 0.023330308, -0.026284205, -0.0019077245, -0.011801909, -0.0010495904, -0.020991808, -0.011179676, 0.0024051687, -0.006386433, -0.0059795883, 0.033012524, 0.015685735, -0.017873807, -0.008772798, -0.016943876, 0.025135467, 0.015480603, 0.0021333694, -0.028882539, -0.018954165, 0.0013282276, 0.010270258, 0.030414188, -0.022195246, -0.0131694535, -0.019952474, -0.006201814, -0.013107914, 0.012198497, 0.02491666, -0.0012316448, -0.009962562, 0.04031521, -0.023371335, 0.005637702, -0.016916525, 0.0016803702, -0.0016880627, -0.011453185, -0.026694467, -0.016054971, 0.009955724, -0.0017590041, -0.020540517, 0.02770645, -0.02509444, 0.010277096, 0.008006973, -0.0071590953, 0.020978132, 0.0141677605, -0.0057265926, 0.020184956, -0.011412159, -0.001858151, -0.009039469, 0.0043453723, 0.004728285, 0.0063659195, -0.02956631, -0.0016820796, -6.218054E-4, -0.0092993025, -0.034571525, -0.015398551, 0.014236138, 0.0022735426, 0.010229233, 0.028718434, -0.004106052, -0.013025861, -0.023439713, -0.014290839, 0.030386837, -0.029976575, 0.024834607, 0.01768235, -0.016560962, -0.02983982, -0.004700934, -0.17624913, 0.028089363, 0.0070018275, -0.04575804, 0.012089093, 0.01969264, 0.03968614, 0.007555683, 0.0037265585, -0.0025316668, 0.029621013, 0.01584984, -0.037470717, -0.009921535, -0.009408706, 0.013012186, -0.013668607, 0.028144065, 0.023494413, 0.0038222868, 0.048793986, -0.0030547525, -0.015562655, -0.0052035064, 0.008116377, 0.012266873, 0.025299571, 0.0073437137, -0.005292397, -0.012280549, -0.032219347, -0.008800149, 0.0061368556, 0.001458999, -0.009586487, 0.010263422, -0.006824047, -0.0019914866, -0.016519938, 9.897603E-4, 0.044746056, 0.012089093, 0.021019159, -0.0141677605, 0.014960936, 0.02122429, 0.024068782, -0.024643151, -0.02002085, -0.02371322, -0.003863313, -0.03930323, 0.017436191, 6.782166E-4, -0.0076172226, 0.019282376, -0.008389886, -0.012048067, 0.004010324, -0.0045197345, -0.033614244, -0.008813824, 0.010974544, -0.0051043597, 0.0054291515, -0.033176627, -0.029347504, 0.0101471795, -0.031453524, 0.009224087, -0.013675445, 0.012977997, 0.018270394, -0.010865141, 0.014099384, -0.016437884, -0.040971633, -0.0058975355, -0.015275472, 0.023398686, -0.011070272, 0.043925527, -0.0036068985, -0.009073657, -0.0042462256, -0.0039487844, 0.004700934, -0.010913005, -0.015289147, -0.007712951, -0.0057812943, -0.020937106, -0.02800731, -0.0076172226, 0.0047624735, -8.8409615E-5, 0.005757362, 0.019706316, -0.005015469, -0.025983345, -9.6326414E-4, -0.0064342967, -0.006793277, 0.017996885, 0.034380067, 0.014673752, 0.029073995, 0.02659874, 0.022920044, 0.009162548, -0.0058701844, 0.007610385, 0.017586622, 0.0028291077, -0.01567206, 0.010475391, -0.022824317, -0.032492857, -0.00738474, 0.016178051, 0.06651736, 0.003740234, 0.013107914, 0.0040205806, -0.011986527, -0.013989979, -0.08030221, 0.014865208, 0.009148872, 0.044472545, -0.013566041, 0.029402206, -0.010331798, 0.021114886, -0.011931825, 0.052185494, -0.0013325012, -0.036540788, 0.013791686, -0.0019060151, 0.0140173305, 0.010885654, -0.014755805, -0.002473546, -0.021114886, 0.020978132, -0.0022444823, -0.01645156, -0.0025983346, -0.015945569, -0.03044154, 0.0087249335, -0.032739013, 0.030277435, 0.015029314, 0.0037573285, -5.3740223E-5, -0.015343849, 0.015781462, -0.031836435, -0.0154395765, -0.023986729, -0.009832645, -0.014195112, 0.021128561, -0.04028786, 0.014564348, 0.0115284, 0.008280481, -0.01753192, -0.0019521697, 0.0054565025, -0.03905707, 0.039549384, 0.012868593, -0.014126734, 0.002335082, -0.0147421295, -0.020554192, -0.0033624498, 0.017846456, 0.008246293, 0.026188476, 0.010188206, -0.010571118, -0.017176358, -0.0011743788, -0.012280549, -0.006793277, 0.0051488047, 0.018926816, -6.615496E-4, -0.016287455, -0.0144686205, 0.034298014, -0.016068647, -0.02659874, 0.012779703, -0.037443366, -0.005634283, -0.00630438, -0.0059727505, -0.025737187, -0.011425834, 0.022892695, -0.02956631, 0.0048034997, -0.03076975, 0.0045231534, -0.028335521, 0.026379932, 0.006058222, -7.465938E-4, 0.026434634, -0.004136822, -0.046824723, 0.0048616207, 0.028034661, -9.4958866E-4, 0.0042017805, -0.0020034525, 0.023166204, 0.012930132, 0.0041265655, -0.0053539365, 0.0103865005, -0.015535305, -0.024287589, -0.07877056, 0.029703066, -0.0072684987, -0.005989845, -0.0065129306, -0.0055830004, 9.931792E-4, -0.007056529, -0.005316329, 0.019884096, -0.012082255, 0.019487508, -0.0031607372, -0.009059982, 7.577051E-4, 0.009538623, -0.0148925595, -0.013039537, -0.0035556157, 0.005295816, -0.0018803736, 0.006400108, 0.01740884, 0.01522077, 0.01909092, 0.023371335, -0.008902715, 0.0013615615, -0.021648228, -0.007254823, 0.028089363, -0.021415746, -0.0077676526, 0.0031709936, -0.011713019, -0.034598876, -0.011042922, -0.019460158, 0.014578024, 0.012772866, -0.015056664, -0.035173245, -0.0048034997, -0.024971362, -0.013012186, 0.028226117, -0.01858493, 0.0029949225, 0.026694467, -0.0022068748, 0.019596912, 0.001353869, -0.0037026266, -0.024944011, 0.027473968, -0.023207229, 0.045101617, 0.009463408, -0.004677002, -0.015111366, 0.02890989, 0.013654931, 0.03569291, -0.033969805, 1.00268786E-4, -0.01368912, 0.014878884, -0.007760815, -0.006253097, -0.016574638, -0.0026427796, 0.009750592, 0.016506262, 0.036157876, 7.906116E-4, 0.012150632, 0.006160788, -5.6731726E-5, -0.00822578, 0.013121589, 0.0021128561, -0.010407013, -0.03262961, 0.029894521, 0.018065263, 0.020102903, -0.018092614, 0.018448174, 0.0047864057, 0.01740884, -0.021620877, 0.0035282646, 0.005241114, -0.012752352, 0.021867035, 0.016779771, -0.008143728, -0.015494279, 0.0036957888, 0.005094103, -1.3899808E-4, -0.011781395, 0.0047111907, -0.0025008968, -0.020759325, -0.004478708, -0.023904677, -0.025860265, 0.011924988, 0.015384875, 0.026790196, 0.0076992754, -0.02275594, 0.014126734, -0.040834878, 0.014072033, -0.009962562, -0.020116579, -0.006000101, 0.036486086, 0.016342156, 0.007603547, 0.040369913, -6.73943E-4, 0.046332408, 0.014660076, 0.0060855728, -0.024506396, -3.816838E-5, -8.124069E-4, 0.0054257326, 0.004478708, -0.024383318, 0.005983007, -0.006779602, -0.00798646, 0.010858303, 0.045074265, -0.034598876, 0.07505084, 0.0101471795, -0.023275606, 0.0064479723, -0.0102976095, 0.01780543, 0.013080562, -7.8334654E-4, -0.017217385, -0.01236944, 0.013497664, -0.023617493, 0.0075898715, -0.02599702, -0.0013487408, -0.003839381, 0.016889174, 0.002235935, 0.0020290941, -0.020896079, -0.008930066, 0.0029487677, 0.017436191, 0.011480535, -0.0014136991, -0.012649786, 0.0128070535, -0.01720371, -0.0020478978, -0.039877597, -0.007138582, -0.037416015, -0.011706181, 1.7906284E-4, 0.024492722, -0.007459955, 0.0015222479, -0.008061674, -0.004424006, -0.009805294, -0.011425834, 0.014181436, -0.022263624, -0.01584984, 0.029046644, -0.007056529, 4.3846894E-4, -0.020007174, -0.022537133 ], + "id" : "717e0bd1-cf36-499c-873c-8f4fdd0a5c75", + "metadata" : { + "source" : "movies.csv" + } + }, + "7f4be21e-53de-4142-bf47-d91335f32762" : { + "text" : "Iwanonkiw-Cindy Jackson-Daniel Jordano-Tiffany Kemp-Sun Jae Kim-Hrvoje Klecz-Alex Kruz-Tyler La Marr-LeJon Stewart-Paul Jude Letersky-Joe Lipari-Silvia Lombardo-Jorge Mardel-Cale McConnell-David Dale McCue-Michael Papajohn-Salomon Passariello-Allen Merritt-Olan Montgomery-Alex Moore-Shane Nolan-Kyle David Pierce-Troy Polamalu-Michael Power-James Rawlings-Kirsten Roeters-Ben Roethlisberger-Mark Roman-Eric Salazar-Emily Schooley-Thomas Tull-Chris Vaina-Barbara Vincent-Justin Michael Woods-Jason Yee-John Zion-Alex Ziwak-Tommy Bayiokos-Jeff Moffitt-Diogo Hausen-Gary Sievers-Orion McCabe-London May-James Quinn-Joe Fishel-Ming Wang-Simon Rhee-Hines Ward-Heath Miller-Collin Taylor-Antonio Piluso-Jackson Nunn-Alja�_ Tepina,fight-burglar-hostage-secret identity-crime fighter-superhero-villainess-time bomb-based on comic-cover-up-vigilante-tragic hero-mobile-terrorism-destruction-fighting-criminal underworld-cat burglar-flood,/hr0L2aueqlP2BYUblTTjmtn0hw4.jpg,/c3OHQncTAnKFhdOTX7D3LTW6son.jpg,272-155-27205-37724-68721-24428-19995-1726-49521-1930-68718-120-49051-1771-10138-121-122-603-10195-49538-70160\r\n475557,Joker,Crime-Thriller-Drama,en,During the 1980s a failed stand-up comedian is driven insane and turns to a life of crime and chaos in Gotham City while becoming an infamous psychopathic crime figure.,145.268,Warner Bros. Pictures-Joint Effort-Village Roadshow Pictures-Bron Studios-DC Films,10/1/19,55000000,1074500000,122,Released,Put on a happy face.,8.163,24337,Joaquin Phoenix-Robert De Niro-Zazie Beetz-Frances Conroy-Brett Cullen-Shea Whigham-Bill Camp-Glenn Fleshler-Leigh Gill-Josh Pais-Rocco Luna-Marc Maron-Sondra James-Murphy Guyer-Douglas Hodge-Dante Pereira-Olson-Carrie Louise Putrello-Sharon Washington-Hannah Gross-Frank Wood-Brian Tyree Henry-April Grace-Mick Szal-Carl Lundstedt-Michael Benz-Ben Warheit-Gary Gulman-Sam Morril-Chris Redd-Mandela Bellamy-Demetrius Dotson II-Greer Barnes-Ray Iannicelli-Bryan Callen-Peter Hans Benson-Vito Gerbino-Adam Quezada-Xavyer Ure��a-Evan Rosado-Damian Emmanuel-Mike Troll-Jane Fergus-David Gibson-Tony D. Head-Jeff McCarthy-Kim Brockington-Troy Roberts-Lou Young-Michael-Scott Druckenmiller-Craig Austin-John Cenatiempo-Danny Schoch-Keith Buterbaugh-James Ciccone-Rich Campbell-Roger Squitero-Steven Elson-Graham Mabry-John Alldred-Alonzo Wright-Jack Wilkins-Richard Baratta-Mary Kate Malat-Adrienne Acevedo Lovette-Justin Theroux-Alissa Bourne-Jamaal Burcher-John Cashin-Jason John Cicalese-Brendan Patrick Connor-Blaise Corrigan-Dennis Jay Funny-James P.", + "embedding" : [ 0.0065794913, -0.030317197, 0.0047997646, -0.027651042, -0.04532462, 0.050079722, -0.0067993803, -0.012313784, -0.009097908, -0.042685952, 0.038920354, 0.023459408, 0.036584035, 0.0030543958, 0.006246222, -7.270939E-4, 0.02355561, -0.014279042, -0.0016818073, -0.043153215, -0.0031042143, 0.0036556546, -0.029959876, 0.019817496, -7.713294E-4, 0.024586339, 0.025191033, -0.01454016, -0.01328267, -0.015282285, -0.0015177495, -0.0021215854, 0.0020356912, -0.018237045, -0.018773023, -0.0032760026, 0.015694577, -0.013296413, 0.017398717, 0.001729049, -0.009132265, 0.006411139, -0.0019257467, -0.030179765, -0.0125680305, 0.0028705823, 0.018608106, -0.013165854, -0.01763235, 0.020779511, 0.0449673, 0.02337695, -0.008610029, -0.026661541, 3.9919303E-4, -0.007929747, 0.0046726414, 0.005291079, 0.0033464357, -0.0039030297, 0.016422959, -0.019144086, -0.02468254, 0.0035250955, -0.0075724274, -0.016876481, -0.012272555, -0.010149252, -0.022758512, -8.099818E-4, 0.033450615, 0.015213571, 2.8753065E-4, -0.01135177, 0.01628553, -0.020216046, -0.019611351, -0.0026317965, -0.003459816, 0.001524621, 0.012671104, -0.01157853, -0.028613057, 0.009585787, -0.003872108, -0.0033344105, -0.017673578, 0.009757575, -0.03312078, 0.0039236443, 3.5731963E-4, 0.048210666, -0.0018896711, -0.001949797, 0.007228851, 0.033038322, -0.029602557, 0.021123087, -0.010259196, -0.030921891, 0.0123000415, -0.012897864, 0.006658514, -0.013708705, 0.002126739, -0.0054525603, 0.0053872806, -0.003301771, 0.028805459, 0.008953606, 0.008891761, 0.0046657696, 0.02422902, -0.04221869, -0.0014653541, -0.012231326, 0.016409216, -0.02993239, -0.009702602, -0.023857957, 0.031031836, 0.018072128, 0.0037037553, -0.030482113, 0.03221374, 0.022373706, -0.016519161, -0.015928209, 0.0082114795, 2.8881905E-4, 0.033230726, -0.0077648303, 0.016725307, 0.012506187, -0.011983951, 0.03630917, -0.013207084, -0.0014215481, -0.019941185, -0.027128806, 0.022648567, 0.023816727, -0.025465894, -0.023596838, -0.017068883, 3.6998902E-4, 0.008245838, 0.012945965, 0.017165085, 0.008369525, 0.021274261, 0.033093296, 0.001991026, -8.456278E-4, 0.0014593415, 0.014127868, -0.007730473, 0.011674732, 0.0011020219, -0.009304053, -0.008960477, -0.013990438, -0.0062153, -0.015296029, -0.0030097307, 0.02543841, 0.012994066, -0.007077677, -0.0018432883, -0.007373153, -6.893005E-4, 0.020903198, -0.036089282, 0.04092684, -0.011138752, 0.014787535, -0.014155354, -0.008651258, -0.04419769, -0.015213571, 0.014883737, -2.1731218E-4, 0.023679297, 0.03570448, -0.0078060594, 0.004923452, 0.03204882, -0.01996867, -0.0010032436, -0.011241825, 0.0058201873, 0.028008362, 0.015914466, -0.011770933, -0.6258041, -0.012368756, 0.009537686, -0.006448932, 0.022442421, 0.013756806, 9.6201437E-4, 9.3195145E-4, -0.032900892, -0.008087792, -0.020573365, 0.02046342, 0.030619543, -0.014622618, -0.029382668, -0.017041398, 0.011331155, -0.007057063, 0.009297182, 0.012286298, -0.018745538, 0.014815021, 0.020875713, -0.011482329, -0.004895966, 0.010568415, -0.0033653325, -0.041421592, 0.021796497, 0.015378487, -0.015282285, 0.017302517, 0.012574903, -0.007462483, 0.03963499, -0.0059610535, -0.007290695, 0.048485525, 0.017934697, 0.035209727, -0.030399654, 3.218883E-4, -0.0027760987, -4.1873395E-4, -0.019130344, 0.03006982, 0.00812215, 0.004370294, -0.015021168, -0.0019309003, 0.010066793, -0.012588645, -9.293746E-4, -0.025878187, -0.0061671995, 0.002918683, -0.0027383051, -0.033588044, 0.024022873, 0.010575287, -0.023445666, 0.012540544, 0.0071738786, 0.012334399, 0.012677975, 0.02248365, 0.0028791716, 8.8041497E-4, 0.0069402466, -0.02422902, 0.001466213, 0.012045794, -0.02804959, -0.020971913, 0.0050849332, 0.011392999, 0.018456934, -0.004088561, -0.0015478125, 0.02620802, -0.0061328416, 0.007909132, 0.0051261624, 0.0135231735, 0.008177122, -0.0010882788, -0.03979991, 0.005383845, 0.004648591, 1.7726404E-4, 0.022428678, 0.0053907163, 0.014705077, 0.007881646, -0.01776978, 0.008630644, -0.0022126331, 0.0042122486, 0.028365681, -0.04988732, -8.967348E-4, -0.011977079, 0.029877419, -0.018525649, 0.019996157, 0.0078060594, -0.006874967, -0.003298335, 0.02064208, -0.011447972, -0.0076411427, -0.0057583433, -0.012987195, -0.007888518, -0.009860648, -0.030674515, 0.012224454, 0.016505418, -0.009365898, 0.002887761, 0.0064867255, 0.0016611927, 0.008053435, -0.016340502, 0.016436704, 0.024971144, -0.0062977583, -0.006435189, 0.008932991, 0.009290311, -0.0018879533, -0.015914466, 0.022428678, -0.015351001, 0.013317028, 0.006349295, 0.017508661, 0.0012136842, -2.939727E-4, 0.0037071912, -0.021769011, -0.012760433, -0.01759112, -0.007593042, 2.0807856E-4, -0.025795728, -0.040349633, 0.010032436, -0.0048719156, -0.001011833, 0.0011355205, 0.008129021, -0.0025235699, 0.023431921, 0.0025716706, 0.0023466279, -0.02422902, -0.019377718, -0.0048032003, -0.00771673, 0.003430612, 0.027431153, -0.00964763, -0.020724539, 0.042191204, -0.0038618005, -0.0033756397, -0.016546648, 0.0066619497, -0.015969438, 0.019267773, -0.011289926, 0.0031574687, -0.0058614165, -0.016450446, 0.014347757, 0.0025854136, 0.025424667, 0.0171376, 3.279009E-4, 0.008939862, -0.023363207, -0.035512075, -0.0026695898, 0.0077029867, 0.025630811, 0.017426204, 0.005627784, -0.0047138706, 0.0071532642, -0.017082628, -0.026111819, -0.0070914202, -0.0017522405, 0.006497033, 0.027472382, 0.0027915596, 0.015598376, -0.009249081, -0.0035457101, 0.027018862, 0.013990438, 0.011358641, 0.002813892, 0.010836405, -0.032818433, -0.0011621477, -0.036721464, 0.02464131, -0.0076411427, 0.013646862, -0.020394705, -0.018690566, 0.015886981, 0.015337258, 0.027183779, -0.022992143, 0.0055212756, -0.021095602, 0.003021756, 0.012588645, -0.011276183, 0.023047116, 0.013165854, -0.024490139, 0.013262056, 0.005205185, -0.022401191, 0.0032622595, -0.023748012, -0.0093865115, 0.0067341006, 0.013591889, 0.010870762, -0.017192572, -0.011386127, 0.024737513, -0.0054903533, 0.045077246, -0.014663848, 0.0063458593, 0.02464131, 0.019611351, 0.025685783, 0.016271787, -0.012726076, 0.01785224, 0.0034563802, -0.009166623, 0.050546985, -0.011310541, 0.024833715, -0.009015449, -0.0016757947, 0.013207084, -0.008506956, -0.0035130703, 0.020765768, 0.02220879, 0.016711565, 0.016670335, -0.027018862, 0.017384974, 0.0020339733, 0.013227697, 0.002638668, -0.0162443, 3.547428E-4, -0.0052670287, -0.018827995, -0.036226712, -0.012107639, 0.0037106269, 0.01346133, -0.007531198, -0.005583119, -0.007070806, 0.01193585, 0.0055040964, 0.008644386, -0.004895966, -0.031609043, 0.00852757, 0.033917878, -0.010279811, -0.032378655, 0.004569568, -0.016395474, -0.041119244, 0.008451983, -0.009290311, 0.02791216, -0.011523558, 0.017000169, -0.0068199947, 0.0040129744, 0.002447983, -0.008493213, 0.0063596023, 0.023184547, 0.0114892, 0.021191802, -0.013165854, -0.001936054, 0.029245237, -0.0018810817, 0.0022469908, -0.007304438, -6.068421E-4, -0.009833162, 6.9015945E-4, 0.023253262, -0.04263098, 0.01943269, -0.005174263, -0.016931454, -0.00536323, -0.008761203, 0.0061087916, -0.016876481, -0.017220058, -0.042163715, -0.037326157, 0.004401216, 0.08355782, 0.039057784, 0.015845751, 0.012162611, -0.012464958, 0.0021799933, -0.009324668, -0.011475458, -0.003535403, -0.019309003, 0.028365681, -0.016161842, 0.016890224, 0.006699743, 0.020229788, -0.01862185, -0.008403882, -0.0034684055, 0.009036064, -0.0027486125, -0.025136061, -0.018470677, 0.022112587, 0.027651042, 0.0026472574, -0.008252709, 0.013172725, -3.2398195E-5, 0.007242594, 0.01310401, -0.007737344, 0.013969823, 0.01848442, 0.0046004904, -0.010520315, 0.015282285, 0.038480576, 0.018209558, 0.03127921, 0.0017333438, 0.0034632517, 0.013894237, 0.011193724, -0.004174455, 0.017646093, -0.03567699, -0.017082628, 0.027197521, 0.03361553, -0.03270849, 0.004724178, 0.0058339303, -0.013509431, -0.028255736, 0.01660162, -0.004854737, 3.6719747E-4, 0.0029667837, -0.011791548, 0.028228251, -0.0053323084, -0.032681003, 0.010032436, -0.020614594, -0.0051124194, -0.008905505, -0.013289542, -0.002301963, -0.019982412, -0.006682564, 0.021164317, -0.006950554, 2.2268057E-4, 0.008135893, 0.016546648, -0.0063664736, 0.030317197, -0.005497225, 0.013124625, 0.00911165, -0.03696884, -0.025795728, 0.0059747966, -0.02795339, -0.0022761947, 0.009633887, -0.009441484, 0.014883737, -0.005188006, 0.010692103, -0.012499316, 0.013969823, -0.026455395, -0.019363975, 0.03334067, 0.010293554, 0.013722448, 0.021219289, 0.0021473535, -0.0036968838, 0.006363038, -0.020257274, -0.0067272293, -0.01844319, -0.01826453, -0.011695347, -0.008342039, 0.006686, -0.016642848, -0.013090267, -0.035512075, -0.026056847, -1.750093E-4, 0.00996372, 0.018896712, 0.0053391797, 0.013591889, 0.0069814757, -0.018882968, 0.0069539896, 5.011923E-4, -0.015021168, 0.030179765, 0.028640542, -0.0013880493, 0.034824923, 0.0020047692, -0.029520098, -0.003341282, 0.020669566, -9.7318063E-4, 0.026661541, -0.0093384115, -0.01081579, 0.0010985861, -0.006452368, 0.0076205283, 0.010128637, -0.0061053555, 0.0059026456, -0.013605632, 2.1057485E-5, 0.013000937, 0.010190481, -0.011819034, -0.03136167, -0.001451611, -0.0076205283, 0.021026885, 0.015158598, -0.008005334, 0.007682372, -0.016862737, 0.001187057, -0.017412461, -0.030042335, -0.023486894, -0.009015449, 0.03570448, 0.0069539896, 0.036913868, 0.0025922852, 0.014952452, 0.015337258, 0.012272555, 0.018209558, -0.018882968, -0.0060194614, -0.027513612, 0.0076342714, 0.00498186, 0.038755435, -0.005864852, 0.0014258428, 6.769532E-5, -0.002977091, -0.003461534, 0.018511906, -3.2661247E-4, -0.00834891, -0.027197521, -0.0011080344, -0.01933649, -0.01951515, -0.0219889, 0.0032175945, 0.018663079, -0.0085550565, -0.0031746475, -0.01126244, 0.025809472, -0.015241057, 0.017371232, -0.02266231, 0.016835252, -0.010705845, -0.014196584, -0.012684847, -0.0105615435, 0.009998078, -0.0044321376, 0.013275798, -0.00937964, -0.030894404, 0.014869994, 0.038975324, -0.029355181, -0.026689028, 0.015845751, -0.004174455, -0.0048616086, -0.019006656, -0.006950554, -0.023102088, -0.01794844, -0.0048169433, 0.0026421037, 0.0018931068, -0.008451983, -0.040459577, 0.022579852, 0.0052601574, 0.041723937, 0.014787535, 0.041339133, 0.031801447, 0.011606016, -0.018910455, 0.012526802, -0.0027365873, -0.004384037, 0.015598376, 0.029382668, -0.017439947, -0.0046107974, 0.0025321592, -0.005002475, -0.04169645, -0.035099782, 0.027142549, 0.034522574, 0.024984889, -0.031334184, 0.0077923164, -0.02589193, -0.0031626222, -0.013310156, 0.010802047, 0.003166058, -0.03144413, -0.029245237, 0.0063115014, -0.011901492, 0.010747075, 0.008438241, -0.019638836, 0.013715576, -0.019377718, -0.008816175, 2.0152912E-4, -0.0015366462, 0.032681003, -0.016313015, 0.013763677, 8.0955226E-4, 0.0097781895, 0.009956849, -0.004562697, -0.0032880278, 0.03006982, -0.018649336, 0.03006982, 0.0019583865, -0.0026455396, -0.012616131, 0.03015228, -0.004926888, -0.022195047, -0.027211264, -0.005778958, 0.02589193, 1.4312111E-4, 0.01503491, 0.0044183945, -0.025575839, -0.007345667, -0.00310765, -0.0078060594, 0.02064208, -0.042548522, 0.0014301374, -0.016299272, 0.009565172, -0.012375628, -2.1860059E-4, -0.0056346557, 0.004342808, -3.4400602E-4, 0.003954566, -0.0015435177, -0.01785224, -0.022428678, -0.028022105, -0.026592826, -0.0044046515, -0.013028423, 0.026139306, -0.014334015, -0.0062668365, -0.014237813, -0.008451983, -0.015598376, -0.008019077, -0.023005888, 0.013516302, 0.014608876, -0.0066482066, -0.004074818, -0.002094099, 0.03411028, -0.012781048, -7.2408764E-4, -0.0029427332, 0.0010960093, 0.017975926, -0.025507124, 0.0209994, 0.0085688, -0.03424771, -0.0038171357, 0.008108407, 0.039250188, 0.02755484, -0.0074075107, -0.02589193, -0.009407126, -0.018965427, 0.022799741, -0.009984335, 0.015543404, 0.023225777, 0.03979991, 0.035209727, 0.03553956, -0.0030303453, -0.026634056, 0.002564799, -0.0055212756, -0.030894404, -0.005438817, 0.012141996, 0.013536917, 0.0018724923, -0.012636746, -0.040954325, -0.013392614, -0.025067346, -0.039002813, -0.0129116075, 0.02597439, 0.03617174, 0.0063286806, 0.0048719156, 0.013983566, 0.0028276353, 0.0037415489, -0.023912929, -0.008005334, 0.020628337, 0.015021168, 0.040487062, 0.017879725, -0.024586339, -0.010953221, 0.0026747435, 0.011049422, 0.013667475, 0.023033373, -0.0110013215, -0.0190204, -0.0025905673, 0.0033378464, -0.015832009, -0.007682372, 0.025204778, -0.03114178, 6.996078E-4, 0.005435381, 0.017673578, -0.005950746, 0.03449509, 0.005322001, -0.010705845, -0.008520699, 0.009956849, -0.018044641, 0.009173495, -0.023363207, 0.020229788, 0.014512674, -6.7813427E-4, 0.036584035, 0.020078614, 0.010073665, -0.0076136566, -0.0037862137, 0.012994066, -0.011819034, 0.0025922852, 0.0061087916, 0.025740756, -0.03463252, 0.016189327, -0.030949377, 1.4290639E-4, 0.0043737297, -0.00839014, 0.011214339, 0.026537854, 0.014842507, -0.057500973, 0.009895005, -0.009310925, 0.012588645, -0.009310925, -0.007744216, -0.034357656, -0.012224454, -4.3827484E-4, -0.0011819034, -0.02405036, -0.020752024, -6.918773E-4, -0.021727782, -0.0050059105, 0.0037621635, 0.1889946, -0.0065623126, 0.014636362, 0.047770888, 0.005648399, 0.01628553, 0.029767474, 0.014842507, 0.0036247328, 0.028805459, 0.0030406527, -0.004088561, 0.012705461, -0.0013528328, 0.015886981, -0.0153097715, -0.024325222, -0.018374475, -0.023830472, -0.005751472, -0.018786767, 0.0038205713, -2.3857098E-4, -0.00987439, 0.007125778, 0.00991562, -0.004160712, 0.011049422, 0.015886981, 0.005510968, -0.005600298, -0.011289926, 0.0112212105, 0.007551813, -0.02095817, -0.01781101, 3.5989645E-4, -0.007799188, 0.017302517, -0.008692487, -5.205185E-4, -0.011056294, -0.014485188, -0.014677591, -0.010424113, 0.011179982, -0.027279979, -0.004267221, -0.007812931, 0.007331924, -0.034934867, -0.009922491, 0.029355181, 0.015296029, 0.0076205283, -0.008204608, 0.0056827567, -0.004648591, -0.012313784, -0.010080537, 0.017467434, 0.032653518, -0.032323685, 0.02028476, -0.010252325, 0.009029192, -0.01269859, 0.0020872275, 0.0028207635, -0.027279979, -0.008355782, -0.03257106, -3.2467986E-4, 0.0031402898, 0.0017101524, -0.024064103, 0.008410755, 0.009805676, 0.0069883475, 0.03221374, -0.031526584, -0.0035560175, 0.023857957, 9.4054086E-4, -0.019735038, -0.013241441, 0.020435935, -0.020710796, -0.010554672, -0.032076307, -0.011021936, -0.022607338, -0.0058408016, -0.005236107, -0.0028465318, -0.005717114, 0.03218625, 0.01247183, -0.0022384014, -0.0060813054, -0.023418179, 0.027183779, 0.041751426, -0.022593595, -0.020092357, -0.021851469, 0.003167776, 0.010403498, 0.033588044, -0.030042335, -0.014237813, -0.015186084, -0.00727008, -0.011049422, 0.012059538, 0.02082074, 0.009077293, -0.015296029, 0.019570122, -0.016381731, 0.003940823, -0.02543841, 0.0011114702, 2.4823408E-4, 0.00243424, -0.034385145, -0.033313185, 0.0029633478, -0.007084549, -0.02733495, 0.02337695, -0.021810241, 0.015667092, -0.015941953, 0.002887761, 0.0043737297, 0.031856418, 0.005218928, 0.023212032, -0.009290311, -0.010616516, -0.021397948, 0.007929747, 0.003531967, 0.0027829702, -0.03463252, 0.0012205557, -0.013310156, -0.0049784244, -0.03262603, -0.019006656, -9.439766E-4, 0.011915236, 0.014430216, 0.03540213, -0.0056655775, -0.012183225, -0.04733111, -0.023720527, 0.050409555, -0.03270849, 0.031718988, 0.034577545, -0.017068883, -0.026895173, -0.017165085, -0.17624104, 0.03463252, 0.014279042, -0.04186137, 0.015158598, 0.013653733, 0.032955863, -0.011557916, 0.006823431, -0.024338964, 0.028255736, 0.0061087916, -0.029245237, 0.009819418, -0.008953606, -0.0046932558, -0.012162611, 0.033038322, 0.03006982, 0.004617669, 0.037188727, -0.010300426, -0.01058903, -0.0012884121, 0.005215492, 0.008204608, 0.02427025, -0.0015778753, 0.005737729, -0.021233032, -0.024806228, -0.0049475026, 0.015103626, 0.0037106269, -0.021521635, -0.0019532328, -0.026606569, -0.01656039, -0.014011052, -0.012987195, 0.022016386, 0.006730665, 0.02607059, 0.0034495087, 0.02252488, 0.019762523, 0.03419274, -0.018882968, 0.0017814445, -0.0017393563, -0.0120801525, -0.044225175, 0.019707551, -0.012980322, -0.0022555802, 0.029217752, 0.0054766103, -7.232287E-4, -0.0013794599, 0.011626631, -0.016038153, -0.0068990174, -0.0011406742, -1.1595709E-4, -0.0044321376, -0.0143065285, -0.014869994, 0.016766537, -0.029877419, 0.014320271, -0.029602557, 0.032378655, 0.01745369, -9.2593883E-4, 0.016766537, -0.025094833, -0.04276841, 0.0028791716, -0.009413998, 0.026414167, -0.0086031575, 0.037985824, -0.011949593, 0.005294515, -0.007276952, 0.0050368323, 0.0037930852, -0.0037415489, 0.004954374, -0.013653733, -0.0010470495, -0.016807765, -0.025988132, 0.007916004, -0.015804522, 0.009413998, -0.006479854, 0.019913698, 0.0026455396, -0.0190204, -0.0067650224, -0.0190204, -0.019913698, 0.03127921, 0.019954927, 0.014443959, 0.009249081, 0.021191802, 0.0069402466, 0.01974878, -0.02216756, 0.0054663033, 0.008355782, 0.004253478, -0.016574133, 0.0056380914, -0.0074075107, -0.030756975, -0.0034357656, 0.007950362, 0.078830205, -0.0066069774, 0.0020099229, -0.016409216, -0.0019532328, -0.008273324, -0.08020452, 0.011049422, 0.02117806, 0.04169645, -0.0219889, 0.03795834, -0.0061465846, 0.028640542, -0.028530598, 0.035512075, 0.0025493382, -0.038920354, 0.019886212, 0.0016749358, 0.0032622595, 0.00348902, -0.014196584, 2.095817E-4, -0.01296658, 0.0324886, -0.013846136, 0.0022865022, -0.015199827, -0.017343745, -0.025630811, 0.022085102, -0.027032604, 0.034385145, -0.0019669759, 0.01099445, 0.012650489, -0.016299272, 0.010554672, -0.030399654, -0.010760818, -0.023225777, -0.010692103, -0.028022105, 0.007682372, -0.03683141, 0.003665962, 0.012856635, 0.015323515, -0.02656534, -0.0012875532, 0.0037346773, -0.036584035, 0.030729488, 0.0013296413, -0.0063458593, -0.017838495, -0.015227313, -0.03191139, -0.006424882, 0.019322746, 0.0257545, 0.015502174, 0.016093126, -0.020738281, -0.023335721, -0.01161976, -0.01808587, -0.014292785, 0.01368809, 0.010479085, 0.011867135, -0.0076067853, -0.010066793, 0.010740204, -0.025300978, -0.021425435, 0.015488432, -0.04540708, -0.018333245, -0.01731626, 0.004263785, -0.035594534, -0.008046563, 0.018113356, -0.046149205, 0.007723601, -0.037161242, -0.0025441844, -0.030674515, 0.006016026, 0.0065726195, 0.011365513, 0.012155739, 0.009661373, -0.041174214, -0.0065073404, 0.0237755, 3.8480575E-4, -0.0076755006, -0.0032330556, 0.01776978, 0.006249658, 0.0028345068, -0.002568235, 0.012767306, -0.0042740926, -0.01557089, -0.07751087, 0.033230726, -0.012581774, -6.575197E-4, -0.008397011, -0.0029564763, -0.012251941, -0.002374114, 0.005497225, 0.03468749, -0.004548954, 0.028420653, -0.007276952, -0.0040404606, -0.014691334, 0.0047585354, 5.218069E-4, 0.010506571, 0.0044596237, -0.0064592394, -0.007998463, 0.012368756, 0.018250788, 0.0140866395, 0.0035835037, 0.016642848, -0.012389371, 0.006057255, -0.01539223, -0.01579078, 0.03320324, -0.014430216, -0.007345667, -0.0012179789, 0.002125021, -0.04320819, 0.0024823407, 0.008582543, 0.013365128, 5.8837485E-4, -0.01826453, -0.01678028, -0.0024393937, -0.008823046, -0.005469739, 0.0012935657, -0.015859494, 0.012389371, 8.13847E-4, 0.01188775, 0.018511906, 0.004122919, -0.017618606, -0.019501407, 0.02054588, -0.007916004, 0.057720862, -3.2596826E-4, 0.0069539896, -0.015364744, 0.027706014, -0.006246222, 0.013372, -0.028393168, 0.013591889, -0.004710435, 0.006624156, -0.014251556, -0.0019549506, -0.029272724, -0.027499868, -0.0071944934, -0.0072219796, 0.035209727, 0.0048994017, 0.025479639, 0.003958002, 0.0051983134, 0.00468982, 0.011269311, 0.01372932, -0.010176738, -0.02405036, 0.018250788, -6.261683E-4, 0.009819418, -0.008403882, 0.008108407, 0.012224454, 0.006641335, -0.0077785733, 0.010382884, 0.014608876, -0.007517455, 0.014279042, 0.013502559, -0.030207252, -0.00996372, -3.377787E-4, 0.031526584, 0.0074418685, -0.020353476, -0.0065039042, -0.017673578, -0.026482882, 0.012856635, -0.02405036, -0.026317965, -1.876787E-4, 0.01781101, 0.022552365, -0.0015667091, -0.023857957, 0.0056999354, -0.032735974, 0.02171404, -0.0034563802, -0.02117806, -0.009221595, 0.040459577, 0.00964763, -0.0064592394, 0.027719757, -0.019680066, 0.038975324, 0.010444728, 0.015186084, -0.028832946, -0.009496456, 0.0037003197, 0.014691334, 0.0035766321, -0.02319829, 0.0014309965, -0.008074049, 0.019418947, 0.0096064005, 0.034165256, -0.015763292, 0.07619154, 0.009297182, -0.015337258, 0.021301746, -0.016931454, 0.0069333753, 0.0070261406, 0.02472377, -0.0036316044, -0.01830576, -0.006270272, -0.009867519, -0.0024840585, -0.054395042, -5.475752E-4, 0.004329065, 0.02054588, 0.014471445, 0.005208621, -0.018663079, -0.010506571, 0.00554189, 0.01602441, 0.013949209, -0.0042844, -0.009627015, 0.007125778, -0.010630259, 0.0011492636, -0.01983124, 0.0077785733, -0.037078783, -0.0014352911, -0.020408448, 0.021466663, -0.017398717, 9.310925E-4, 0.025740756, 0.008397011, 0.018910455, -0.018237045, 0.008067178, -0.024558853, -0.029630043, 0.039415102, -0.005703371, -0.0030458062, -0.03064703, -0.018237045 ], + "id" : "7f4be21e-53de-4142-bf47-d91335f32762", + "metadata" : { + "source" : "movies.csv" + } + }, + "39510581-62b9-4980-b9c8-069d951fe0c4" : { + "text" : "James-Mitch Bromwell-Elya Baskin-Eugene Alper-Inna Korobkina-Zoran Radanovich-Kathleen Gati-Annie O'Donnell-Chris Sheffield-Ken Takemoto-Michael Loeffelholz-Mindy Sterling-Stephen Monroe Taylor-Andy Daly-Derek Miller-Leidy Mazo-Scott Krinsky-Katherine Sigismund-Maile Flanagan-Darren O'Hare-Jack Axelrod-Rich Hutchman-Meredith Monroe-Charlotte Labadie-Christian Baha-Jennifer Williams-Danielle Fornarelli-Danny McCarthy-John Turk-Peter A Kelly-Mark Golden-Sean Murphy-Scott Paulson-Luis Echagarruga-Iqbal Theba-Anthony Azizi-Sammy Sheik-Mark Ryan-John S. McAfee-Jay Gates-Rebecca Cooper-Peter Cullen-Hugo Weaving-Leonard Nimoy-Jess Harnell-Charlie Adler-Robert Foxworth-James Remar-Francesco Quinn-George Coe-Tom Kenny-Reno Wilson-Frank Welker-Ron Bottitta-John DiMaggio-Keith Szarabajka-Greg Berg,spacecraft-moon-traitor-bodyguard-alien planet-based on toy-giant robot-sabotage-word domination-commando-duringcreditsstinger,/28YlCLrFhONteYSs9hKjD1Km0Cj.jpg,/h3js4rulxzKMOokM2oO5Kr0mBZU.jpg,8373-1858-91314-335988-2080-36668-49538-36657-36658-20526-14869-1865-41154-64635-1979-27578-56292-534-58574-13804-14161\r\n122,The Lord of the Rings: The Return of the King,Adventure-Fantasy-Action,en,Aragorn is revealed as the heir to the ancient kings as he Gandalf and the other members of the broken fellowship struggle to save Gondor from Sauron's forces. Meanwhile Frodo and Sam take the ring closer to the heart of Mordor the dark lord's realm.,82.045,New Line Cinema-WingNut Films-The Saul Zaentz Company,12/1/03,94000000,1118888979,201,Released,The eye of the enemy is moving.,8.", + "embedding" : [ 0.013294311, -0.027287962, -0.033595733, -0.03677704, -0.022474859, 0.045415945, -0.01493296, -0.00961935, -0.024449466, -0.026026407, 0.02668461, 0.005824403, 0.029619094, 0.0015538026, -0.0069111222, 0.016304215, 0.020513965, -0.0050085066, 0.009495936, -0.021679532, -0.0031898804, 3.5738316E-4, -0.017456068, 0.017497206, 0.011162011, 0.008618333, 0.023942102, -0.00741163, -0.0057147024, -0.011107161, 0.0036441085, -0.009934738, -0.006959116, -0.016756728, -0.032526154, -0.0029139156, 0.011518537, -0.023695275, 0.024792278, -0.011991619, 0.022680547, 0.00881031, -0.016866429, -0.005855256, -0.016852716, 3.9423563E-4, 0.016633315, -0.023256473, -0.0044017266, 0.02436719, 0.022872522, 0.042015232, -0.028220415, -0.013047486, -0.017099543, -7.7990093E-4, -0.007720162, 0.0156323, -0.0076241745, 0.018937023, 0.008378364, -0.015728287, -0.028055865, 0.0025659597, -0.011388267, -6.5241715E-5, -0.023736414, -0.026492635, -0.015865413, -0.01088776, 0.021597257, 0.015550025, 0.011162011, -0.0030167596, 0.0065203146, -0.037380394, -0.023681562, 1.479455E-4, -0.008584052, 0.0011578529, 0.015152361, -0.012951498, -0.013116048, 0.004357161, 0.008645759, 0.0018871889, -0.0038120872, 0.014151345, -0.030222446, 0.0066197305, 0.012711528, 0.037352968, -2.1147313E-4, 0.007891569, -0.002646521, 0.012492128, -0.023421025, 0.035652615, -0.018470796, -0.045690197, -8.141823E-4, -0.010455814, 0.003609827, -0.0099210255, -0.0016292216, 0.012492128, 0.0019951751, -0.017702894, 0.02679431, 0.0010935754, 0.017977145, 1.1141442E-4, 0.019691212, -0.011477399, -0.020609953, -0.010071863, 0.033732858, -0.035350937, -0.018786184, -0.025711019, 0.036585066, 0.03617369, -6.179215E-4, -0.039053325, 0.030524122, 0.03762722, -8.248952E-4, -0.020513965, 0.0054267393, 0.0024374046, 0.031456575, 0.0122178765, 0.019307261, 0.014631284, -0.017798882, 0.05084611, -0.024408327, 0.015412899, -0.023571862, -0.021391569, 0.034829862, 0.021418992, -0.0197872, -0.011072879, -0.020363128, 9.307389E-4, 0.012409852, 0.0039149313, 0.030195022, -0.0061603603, 0.022899948, 0.029783646, 0.023105636, 0.017181817, 0.018580496, -0.018484509, -3.4088528E-4, -0.0037538088, -0.014357033, -0.015179786, -0.0044085826, 0.0011389982, 0.005347892, -0.014480446, 4.9965084E-4, 0.019156424, 0.017579481, -0.012348145, -0.0061980695, 0.009118842, -0.014137632, 0.016125951, -0.037517518, 0.010675215, -0.003174454, 0.01859421, 0.008611478, -0.027315388, -0.022282884, -0.02668461, 0.003303009, -3.4217082E-4, 0.03378771, 0.0315937, -0.003051041, 0.010949466, 0.025093956, -0.0126566775, 0.025711019, -0.008652615, -0.011518537, 0.015975114, -0.0061089383, 0.0033647155, -0.6424053, -0.025080243, 0.007260792, -0.023462161, 0.010469527, 0.009351955, -0.007562468, 0.0015092369, -0.02037684, -0.006760284, -0.036831893, 0.01627679, 0.0140416445, -0.022790248, -0.026999999, -0.014274758, 0.0020654518, -0.008968004, 0.027617063, -0.0047308276, -0.035131536, 0.015728287, 0.023379887, -0.018141696, 0.015193499, 0.004261173, -0.0021545833, -0.022022346, 0.0036681055, 0.002848781, -0.012067039, 0.007740731, 0.01145683, 0.017565768, 0.037352968, 0.009454799, -0.034692734, 0.04275571, 0.024504315, 0.03260843, -0.022036057, -0.0097359065, 0.016852716, -0.005954672, -0.020212289, 0.021158455, 0.0077475873, 0.0018477653, -0.006558024, -0.011868207, -0.014096495, -3.897362E-4, -0.011518537, -0.02679431, -0.0014081069, -0.0040280595, 0.011765363, -0.028549517, 0.021323005, -0.001488668, -0.023517013, 0.04102793, -0.0017354938, 0.025560182, -0.004768537, 0.015659725, -0.011977907, -6.076371E-4, 0.00816582, -0.031237174, 0.022118334, 0.0156323, -0.0066574397, 0.0011141442, -0.0041069067, 0.014165058, 0.026067546, 0.0012889791, -0.002625952, 0.010346115, 0.006965972, -0.012121889, -0.0069762566, 0.006612874, 0.02517623, -0.010620365, -0.034308784, 0.006396902, 3.366001E-4, -0.005951244, -3.7452386E-4, 0.0056084306, 7.357637E-4, 0.003832656, 0.0058723968, -0.007864144, -0.016674453, 0.011614525, 0.03633824, -0.058360588, -0.0032413024, -0.022022346, 0.030908074, -0.009886744, 0.008309801, 0.0194581, -0.013445149, -0.004734256, 0.033897407, -0.011244286, -0.009057135, -0.0083166575, -0.011813357, -0.014192482, 0.001767204, -0.027246824, 0.01908786, 0.02015744, -0.0068597, -0.0071305227, 0.005251904, -0.0031470289, 0.0010901472, -0.011120873, 0.016304215, 0.015220923, -0.008227526, -0.01616709, 0.0081315385, 0.006883697, 0.002120302, -0.0056084306, 0.02263941, -0.021789232, 0.01366455, 0.0011509967, 0.01250584, -0.013849669, 0.01428847, -0.0035378363, -0.011724225, -0.003986922, -0.011319705, -0.010476383, -0.0083166575, -0.010065007, -0.03326663, -0.0072676484, -0.0043468764, -0.0062872013, -0.004514855, 0.01638649, -0.0041240477, 0.016921278, 0.004566277, 0.0024853984, -0.02431234, -0.019307261, 0.007233367, -0.0098936, 0.005467877, 0.012128745, -0.013774251, -0.022392584, 0.025272219, -0.015412899, -0.016880142, 0.0076584555, 0.008954291, -0.014631284, 0.023654139, -0.005824403, -0.0014201053, 0.008638903, -0.017606907, 0.0158517, -0.014021076, 0.028275264, 0.010949466, -0.0077270186, -0.0037538088, -0.0075213304, -0.031346876, -0.0027167976, 0.03249873, 0.030222446, 0.017840018, -0.008590909, 0.010709496, 0.005522727, -0.029399693, -0.0120327575, 0.0022317164, -0.0030047612, 0.009454799, 0.018498221, -0.0064894613, -0.0033287199, -0.0020843067, 0.0042680292, 0.040205177, 0.0074047735, 0.01428847, -0.005584433, 0.01886846, -0.03304723, 0.0031847383, -0.023283899, 0.011607668, -0.0069454033, 0.013547993, -0.009537074, -0.016729303, 0.0029344843, 0.0023825546, 0.031045198, -0.010730065, 0.005169629, -0.020308277, 0.008522346, -0.0041720415, 0.0011449974, 0.026780598, 0.017949719, -0.02986592, 0.005166201, 0.0149192475, -0.017648043, 0.0026550912, -0.017565768, -0.004412011, 0.006006094, 0.005354748, 0.006246064, -0.01053809, -0.003332148, 0.026602335, 0.0016360779, 0.046512946, -0.012629253, -0.009303961, 0.01307491, 0.02096648, 0.011011173, -0.008392077, -0.021432705, 0.017387506, 0.0277679, 0.003102463, 0.041795835, -0.0149192475, 0.011827069, -0.0041171913, -0.006177501, 0.012293295, -0.007144235, -0.0013052628, 0.014233621, 0.025217367, 0.027178261, 0.016359065, -0.019691212, 0.02043169, -0.0052004824, 0.012594972, 0.016221939, -0.0033955686, 0.0023636997, -0.0045799897, -0.032306753, -0.01655104, -0.014617572, -0.0011158582, 0.011210005, -0.012204164, -0.0058346875, -0.01789487, 0.015220923, 0.029207718, 0.018786184, -0.0067431433, -0.02113103, 0.015783139, 0.018745048, -0.0071305227, -0.032224476, -0.0023774123, -0.006321483, -0.024874555, -0.0061500757, -0.0047034025, 0.023242762, -0.007541899, 0.007829863, -0.016221939, 0.0023002792, 0.010448959, -0.013986794, 0.01649619, 0.019403249, -0.0097359065, 0.01188192, -0.0133148795, -0.010675215, 0.034253933, -0.017414931, 4.0837668E-4, -0.0032104494, -0.006383189, -0.011820213, -2.150084E-4, 0.006180929, -0.03853225, 0.0045011425, -0.01013357, -0.0010207274, -0.019691212, -0.0049056625, 0.003458989, 7.4604806E-4, -0.0072676484, -0.018991873, -0.02162468, 0.0124029955, 0.07536414, 0.031895377, -0.0063180546, 0.006959116, -0.004202895, 0.017209243, -0.007514474, -0.010092433, -0.012917216, -0.015961401, 0.017812595, 0.0033338622, 0.015947688, 0.007891569, 0.014219908, -0.009399949, 0.0011818499, -0.01719553, -0.004658837, -0.020980192, -0.026712036, -0.028796341, 0.0075281863, 0.02081564, -6.8434165E-4, -0.022077195, 0.017593194, 0.0054850173, -0.003356145, 0.010113001, 0.002019172, 0.0119641945, 0.0055570086, 0.0044497205, -0.006273489, -0.008714322, 0.031621125, 0.013691975, 0.015289486, -0.008241239, -0.0040417723, 0.0019368968, 0.016290503, -3.347789E-8, 0.012094463, -0.0198969, -0.0062357793, 0.026094971, 0.03493956, -0.037517518, 0.011436261, 0.008371508, -0.013445149, -0.013993651, 0.019869477, 0.003231018, -0.001183564, 1.2266298E-4, -0.034528185, 0.008398933, 5.4287746E-5, -0.027630776, 0.016304215, -0.007932707, -0.016578466, -0.0033921406, -0.024024377, -0.01487811, -0.022611985, -4.490858E-4, 0.01579685, -0.021528693, -0.01388395, -0.008817165, 0.014151345, 0.008378364, 0.021652106, -0.011045454, 0.010421533, 0.011072879, -0.022721685, -0.02975622, 0.012786947, -0.03600914, -0.013623412, 0.01018842, -0.005070213, 0.024737429, -0.00972905, -0.004364017, -0.008357795, 0.007055104, -0.018443372, -0.021898933, 0.040726256, 0.019444387, 0.0085360585, 0.01951295, -0.0014526726, -0.0071236663, -0.004151473, -0.026712036, -0.0076241745, -0.017565768, -0.008762316, 0.0072950735, 0.0016189372, -0.0015460893, -0.016139664, -0.031292025, -0.022104621, -0.029509393, -0.008707466, -0.005879253, 0.0124372775, 0.001688357, 0.028768918, 0.015522599, -0.010675215, 0.0042577446, -0.009811325, -0.014782122, 0.017209243, 0.014357033, -0.015769426, 0.031401724, 0.0059889536, -0.0154266115, -0.004545708, 0.028439816, -0.025477907, 0.019554088, -0.025916707, -0.0069488315, -0.012738953, -0.023146775, 0.0052313353, 0.0033390045, -0.014357033, 0.022241745, -0.02975622, -0.0014415311, 0.019074148, 0.006372905, -0.011367699, -0.02868664, 0.0097359065, -0.012841797, -0.0021922928, 0.028055865, -0.01655104, 0.015207211, -0.018717622, -0.009879888, -2.4404042E-4, -0.026753172, -0.022228034, -0.012361858, 0.020171152, 0.005927247, 0.044757742, -0.021706957, 0.025793295, 0.009818181, 0.014000507, 0.0194581, -0.023654139, -0.024641441, -0.026273234, -0.004741112, 0.022543421, 0.020486541, 0.010037582, -0.008858304, 0.0037160993, 0.01326003, 0.0024614015, 0.021816658, -0.0016695022, -0.037544943, -0.03348603, -0.0014612429, -0.03260843, -0.0095165055, -0.018470796, -0.009722194, 0.043660738, 0.0040691975, -0.002038027, -0.022515997, 0.022886235, -0.0034435627, 0.015714575, -0.020843066, 0.033211783, -0.031895377, 0.0018220543, -0.015920263, -0.019320974, -0.01042839, -0.016509902, 0.023091923, -0.007994413, -0.02194007, 0.011765363, 0.021432705, -0.023681562, -0.020253427, 0.02679431, -0.022721685, -0.0031847383, -0.030798374, -0.008549771, -0.019444387, -0.004391442, -0.0106477905, 0.0085360585, 0.003657821, -0.026712036, -0.039437275, 0.021405281, -0.009742762, 0.040561706, 0.016852716, 0.026835447, 0.016221939, 0.0060163788, -0.017963432, 0.012972066, -0.0030184737, -0.015673438, 0.024243778, 0.006736287, -0.028001014, -0.009166836, -0.004343448, -0.011895631, -0.02333875, -0.034308784, 0.027287962, 0.0198969, 0.018827323, -0.016701879, 1.07343505E-4, -0.030085322, 0.014247333, 0.004076054, -0.002296851, 0.0057044183, -0.033842556, -0.016866429, -0.015399187, -0.007082529, 0.010167851, 0.0028436386, -0.03801117, 0.025162518, -0.025052818, 0.0069522597, -0.01342458, -0.014891823, 0.038203146, -0.022324022, 0.01627679, 0.007562468, 0.026492635, -0.011573387, -0.0031076053, -0.013006348, 0.03422651, -0.017524632, 0.014082782, 0.0011732795, -0.00886516, 0.013040629, 0.02069223, -0.016208226, -0.008645759, -0.019951751, -0.00217001, 0.03348603, -0.009756475, -0.0016934992, 0.012738953, -0.023037074, -0.0025436769, 0.005598146, -0.0071030976, 0.0103941085, -0.037106145, 0.011888775, -9.5045066E-4, 0.0060232347, 0.0032207337, 0.0052861855, -0.0010438674, 0.0034555611, -2.896775E-4, -0.008179532, -0.0070036817, -0.018347384, -0.01853936, -0.041000504, -0.016372778, -0.0043194513, -0.017606907, 0.0076241745, -0.0193484, 0.0073019294, -0.0016746444, 0.004388014, -0.0062152105, 0.0024048374, -0.018374808, -0.00549873, 0.021871507, -0.009756475, -0.006431183, -0.0045491364, 0.029207718, 0.008323514, -0.008357795, -9.161693E-4, -0.003327006, 0.030195022, -0.008590909, 0.008913154, -0.0016215083, -0.035076685, -0.0058655404, 0.0138222445, 0.021556119, 0.030167596, 0.003705815, -0.036969017, -0.009825038, -0.005022219, 0.026190959, -0.014740985, 0.0067465715, 0.018882172, 0.026643472, 0.04209751, 0.032005075, -0.021432705, -0.031456575, 0.0013146901, -0.0036681055, -0.026602335, 0.0032824401, 0.006935119, 0.018018283, 0.00660259, -0.016674453, -0.020897917, -0.0020808785, -0.017812595, -0.033897407, -0.009242254, 0.029838495, 0.048597254, 0.0067225746, 0.005467877, 0.015316911, -0.0041754697, 0.007096241, -0.01434332, -0.0065957336, 0.029454544, 0.010236414, 0.028042153, 0.014974098, -0.03099035, -0.020884205, 0.0109014725, 0.019540375, 0.008467495, 0.017977145, -0.0034966986, -0.004466861, -0.014864397, -0.0023259902, -3.84594E-4, -0.0045285677, 0.029152868, -0.025861857, -0.0029396266, 0.008590909, 0.02124073, -0.002627666, 0.0068734125, 0.012361858, -0.008104113, 0.015563737, -0.0038635093, -0.020596242, 0.012094463, -0.021816658, 0.036667343, 0.009873032, 0.008090401, 0.02495683, 0.022557134, -0.0047034025, 0.015522599, -0.019101573, 0.014178771, -0.014576434, -0.008769171, 0.008926866, 0.0033835701, -0.024710003, 0.012382427, -0.020527678, 0.008817165, -0.008659472, -0.0032395883, 2.7810753E-4, 0.0318131, 0.014453021, -0.04171356, -0.0064654644, -0.003527552, 0.004926231, -0.008152108, -0.005070213, -0.033184357, 0.005118207, -0.019266125, 0.0053581763, -0.020472828, -0.036996443, -0.0010618651, -0.01746978, -0.0023894107, 0.014727272, 0.18484509, -0.01256069, 0.006715718, 0.04739055, -0.009441086, 0.02080193, 0.026808023, 0.023091923, -0.01395937, 0.014617572, -0.0031436007, 0.009454799, -0.0029481968, 0.001285551, 0.012642966, -0.022899948, -0.013465718, -0.023160486, -0.009914169, -0.021597257, -0.006475749, -0.00221629, -0.010661502, -0.017881157, 5.7892647E-4, 0.0032155914, -0.026780598, 0.012889791, 0.021364143, 2.564674E-4, -0.0031898804, -0.01778517, 0.005025647, -0.0017192102, -0.016907567, -0.003908075, 0.011833925, 0.0066197305, 0.010778059, -0.0085703395, 0.006551168, -0.0140416445, 0.0046279836, -0.0030801801, 0.015467749, 0.01853936, -0.03110005, -0.0047068307, -0.017867444, 0.0049022343, -0.031072624, 0.0043468764, 0.023105636, 0.02274911, -0.0060335193, 0.006784281, 0.00564614, 0.0030818942, -0.01320518, -0.0029584812, 0.011628237, 0.041823257, -0.036804467, 0.009591924, 0.006684865, 0.024764854, -0.027356524, 7.833291E-4, 0.0071305227, -0.04086338, -0.0090434225, -0.031675976, -0.0075281863, 0.0055775773, -0.003378428, -0.003932072, -5.930675E-4, 0.0018957591, 0.006955688, 0.025162518, -0.026204672, -0.009530218, 0.010448959, -0.008995429, -0.020843066, -0.017126966, 0.011813357, -0.019595224, -0.0058346875, -0.011676231, -0.01035297, -0.016235651, -0.0048302435, -0.0016069387, 0.0062014977, -0.006650584, 0.03332148, 0.020760791, -0.019636363, -0.007966988, -0.02959167, 0.021967495, 0.021364143, 0.0027613635, -0.026629759, -0.017277805, -0.0064928895, 0.008659472, 0.032005075, -0.018676484, -0.0011124301, -0.0018426231, 0.006486033, 0.0015555167, 2.4082654E-4, 0.012382427, 0.00610551, 0.004864525, 0.020184865, -0.0140416445, 5.8706827E-4, -0.013280598, 0.01406907, 0.004617699, -0.01493296, -0.03299238, -0.033184357, 0.011230573, -0.008659472, -0.023873538, 0.015947688, -0.02495683, 0.014549009, -0.011367699, 0.015673438, 0.0012889791, 0.008872015, -0.0041926103, 0.005622143, -0.0078778565, -0.005875825, -0.009825038, 0.006979685, 0.007939563, 6.4491807E-4, -0.016509902, -0.006715718, -0.0031093194, -0.011415693, -0.02549162, -0.020911628, -0.0128760785, 0.010524377, 0.018073132, 0.035680037, 0.008254951, -0.014946673, -0.026629759, -0.0078092935, 0.034583036, -0.047472827, 0.03655764, 0.01590655, -0.014521584, -0.029783646, -0.009077704, -0.17672727, 0.013184611, 0.0149878105, -0.035680037, 0.02458659, 0.014302183, 0.030578973, 0.014782122, 0.0022248602, -0.014686135, 0.030578973, 0.016743015, -0.056331128, -0.0067945654, 0.0021562974, 0.0030184737, 0.0027322243, 0.022776535, 0.034528185, 0.0010884332, 0.034363635, -0.019800913, -0.016029963, -0.0016720733, 0.011772219, -0.0075281863, 0.03099035, 0.011532249, -0.006283773, -0.0072745043, -0.041192483, -4.1630425E-4, 0.019266125, -0.0065683085, -0.019691212, 7.113382E-4, -0.014206195, -0.022899948, -0.0027562212, -0.0044497205, 0.030716099, 0.014357033, 0.034034535, 0.014247333, 0.013218892, 0.010956323, 0.026437784, -0.023352463, 0.021391569, -0.014576434, 0.0023037074, -0.03855967, 0.01412392, -0.009495936, -0.0076036053, 0.02813814, 0.0050599286, 0.008728034, 0.008371508, -0.0038977906, -0.022845099, 0.0036029709, 0.017881157, -0.008035551, 8.4589253E-4, -0.014357033, -0.02469629, 0.015097511, -0.02868664, 0.009955307, -0.015961401, 0.029235143, 0.023311324, 0.0056084306, 0.008556628, -0.017126966, -0.03348603, 0.014247333, -0.0016086528, 0.01870391, -0.016249364, 0.03422651, 0.005457592, 0.008899441, 0.0028042153, -0.014411883, -0.0012512696, -0.009358811, 2.6975144E-4, -0.010503808, 0.010860335, -0.016509902, -0.039684102, 0.008988572, 0.016907567, 0.008179532, 0.01134713, 0.0026105256, 0.01476841, -0.008474352, -0.0058826813, -0.016907567, -0.020212289, 0.015659725, 0.0313743, 0.0045799897, 0.010682072, 0.018100558, 0.014754697, -0.0023311325, -0.015028948, 0.008913154, 0.017538343, 0.015248349, -0.016701879, 0.011031741, -0.012930929, -0.024092939, 2.7746474E-4, 0.01864906, 0.0631874, -0.0028522091, 0.007562468, -0.009290248, -0.013081767, -0.0074596237, -0.08260436, 0.00746648, 0.010092433, 0.031456575, -0.029838495, 0.037983745, -0.01145683, 0.0060095224, -0.018402234, 0.03908075, 0.0039697816, -0.041000504, 0.012300151, -0.0019883187, 0.015138648, -0.006513458, -0.02695886, -0.023009649, -0.006304342, 0.027630776, 4.340877E-4, -0.014302183, 0.015070085, -0.01487811, -0.016221939, 0.00840579, -0.0390259, 0.019677501, 0.012121889, 0.0077270186, 0.015056373, -0.02517623, 0.017099543, -0.0312646, -0.03940985, -0.017456068, -0.01892331, -0.02986592, 0.010243271, -0.03493956, 0.017689181, 0.02517623, 0.008707466, -0.015015235, -0.013945657, 0.0035926865, -0.037874047, 0.03600914, -0.019526662, -0.02641036, -0.01919756, -0.038888775, -0.033568308, -0.002469972, 0.025107667, 0.011299136, 0.025848145, 0.00489195, -0.014096495, -0.0233936, -0.0029533391, -0.0015983684, -0.005875825, 0.008954291, 0.008762316, 0.0126566775, -1.6937134E-4, -0.023818688, 0.005221051, -0.011724225, -0.017387506, 0.033705432, -0.02565617, -0.017757744, -0.012738953, 5.819261E-4, -0.021446418, -0.021336718, 0.034061957, -0.026698323, -0.00272194, -0.04053428, 0.024339765, -0.017538343, 0.018841036, 0.019046724, 0.0075076176, -0.004672549, 0.0041309036, -0.04193296, -5.6435686E-4, 0.017126966, -0.006335195, -0.0043948703, -0.01221102, 0.030551547, 0.009036566, 0.0090434225, 6.1920704E-4, 2.9760506E-4, -0.009639918, 0.009310817, -0.07997155, 0.036365665, -0.01355485, 0.0018186261, -0.023640426, -0.018511934, 0.015618587, -0.0042954544, -0.002146013, 0.03779177, -0.0030698958, 0.008728034, -0.017881157, -0.0031830242, -0.011449974, -0.002067166, 0.0032978668, -0.009331386, -0.002190579, -0.0013018346, -6.7448575E-4, 0.0315937, 0.019595224, 0.0117790755, -0.0035892583, 0.0200066, -1.6444339E-5, 7.893283E-4, -0.02587557, -0.024161503, 0.037517518, -0.019855764, -0.013746825, 0.0077544437, -0.00840579, -0.031292025, 0.0060198065, -0.0014106779, 0.012889791, 0.010085576, -1.845837E-4, -0.020212289, 0.008145251, -0.001612081, -0.0069214064, 0.010736922, -0.0039389282, 0.009797612, 0.010688928, 0.0046896897, 0.017689181, 0.004010919, -0.0042954544, -0.02291366, 0.021830369, -0.018141696, 0.06028034, -8.061476E-5, 0.007973844, -0.009235398, 0.030935498, 0.0034847, 0.012252158, -0.036283392, 0.008618333, 0.011367699, 0.008289233, 0.0011998476, 0.0060129506, -0.028275264, -0.017812595, -0.0039937785, 0.007212798, 0.043660738, 0.017072117, 0.013993651, 0.0028162138, 0.003205307, -0.0133148795, 0.012457846, 0.01774403, -0.017990857, -0.018827323, 0.032005075, -5.952101E-4, 0.011566531, 0.0041549006, 0.015783139, 0.0060849413, 0.017428644, -0.015371761, 0.007617318, 0.013095479, -0.0036681055, 0.025313355, 0.0032155914, -0.023133062, 0.0024648297, 0.0057798373, 0.022474859, -0.0029859063, -0.008371508, -0.003986922, -0.01697613, -0.025203655, 0.0072745043, -0.022817673, -0.021981208, 0.010572371, 0.023215337, 0.03526866, 0.016029963, -0.0066231587, 0.014398171, -0.03886135, 0.017798882, -0.010599797, -0.031154899, -0.0011441404, 0.035021838, 0.0073704924, 0.0067671402, 0.024819704, -0.010126714, 0.051065512, 0.005670137, 0.025436768, -0.034583036, -0.0017843448, 0.0053101825, 0.006989969, -2.6889442E-4, -0.0062357793, 0.0034367063, 0.001133856, -0.0010198704, 0.00827552, 0.022118334, -0.018265108, 0.075418994, 0.010551803, -0.0097839, 0.03310208, -0.023146775, 0.018498221, 0.020143727, 0.0090434225, -0.004792534, -0.026026407, -0.0028213558, -0.009859319, 0.006777425, -0.011902488, 0.0049570845, -0.0024082656, 0.026232095, 0.016290503, -0.011141442, -0.025039105, -0.010606652, -0.009379379, 0.024298627, 0.0017877729, -0.006297486, -0.002596813, 0.033760283, -0.011079735, 0.008700609, -0.022899948, 0.008769171, -0.02177552, -5.107387E-5, 0.005265617, 0.027178261, -0.01280066, -0.002092877, -0.007487049, 0.021048754, -0.007836719, -0.0133148795, -0.0060232347, -0.016263077, -0.0028402107, 0.0271097, -0.0041240477, -0.002848781, -0.025093956, -0.024833417 ], + "id" : "39510581-62b9-4980-b9c8-069d951fe0c4", + "metadata" : { + "source" : "movies.csv" + } + }, + "5f903a7b-fb2f-46f0-87a4-4729fbfe767b" : { + "text" : "361743,Top Gun: Maverick,Action-Drama,en,After more than thirty years of service as one of the Navy��s top aviators and dodging the advancement in rank that would ground him Pete ���Maverick�� Mitchell finds himself training a detachment of TOP GUN graduates for a specialized mission the likes of which no living pilot has ever seen.,297.574,Skydance-Don Simpson/Jerry Bruckheimer Films-Paramount,5/24/22,170000000,1488732821,131,Released,Feel the need... The need for speed.,8.273,7187,Tom Cruise-Miles Teller-Jennifer Connelly-Jon Hamm-Glen Powell-Ed Harris-Val Kilmer-Lewis Pullman-Charles Parnell-Bashir Salahuddin-Monica Barbaro-Jay Ellis-Danny Ramirez-Jack Schumacher-Manny Jacinto-Kara Wang-Greg Tarzan Davis-Jake Picking-Raymond Lee-Jean Louisa Kelly-Lyliana Wray-Chelsea Harris-Darnell Kirkwood-Austin Bowerman-Stephanie Andrea Barron-Alec Williams-Rachel Winfree-Peter Mark Kendall-Ian Gary-Bob Stephenson-Landon Gordon-Margaret Strabala-Ryan Heilmann-Shantel Limbo-James Handy-Whylip Lee-Tristan Henry-Jason Robert Boles-Brian Ferguson-Chido Nwokocha-Chaz Ingram-Rachael Markarian-Shannon Kane-Norman Ralph Eliasen-Anthony Edwards-Meg Ryan-Kelly McGillis,fighter pilot-u.s. navy-sequel-nuclear weapons-military,/62HCnUTziyWcpDaBO2i1DX17ljH.jpg,/AaV1YIdWKnjAIAOe8UUKBFm327v.jpg,755566-507086-438148-616037-744-629015-99771-766507-585511-49046-453395-756999-610150-663712-81389-978436-778855-830784-414906-436270-919355\r\n330457,Frozen II,Family-Animation-Adventure-Comedy-Fantasy,en,Elsa Anna Kristoff and Olaf head far into the forest to learn the truth about an ancient mystery of their kingdom.,81.122,Walt Disney Pictures-Walt Disney Animation Studios,11/20/19,150000000,1450000000,103,Released,The past is not what it seems.,7.261,9304,Idina Menzel-Kristen Bell-Josh Gad-Jonathan Groff-Evan Rachel Wood-Sterling K. Brown-Alfred Molina-Rachel Matthews-Jason Ritter-Martha Plimpton-Ciar��n Hinds-Jeremy Sisto-Stephen J. Anderson-Chris Williams-Maia Wilson-Paul Briggs-Hadley Gannaway-Mattea Conforti-Aurora Aksnes-Alan Tudyk-Santino Fontana-Livvy Stubenrauch-Eva Bella-Jackson Stein-Delaney Rose Stein-Halima V.", + "embedding" : [ -6.39291E-4, -0.042845067, -0.024733776, -0.035632726, -0.0070179575, 0.029626908, -0.0065085357, -0.010724673, -0.015456934, -0.044909567, 0.034506634, 0.038018964, 0.0110196015, -0.026195012, 9.68572E-4, 0.021489562, 0.0112542035, -0.029358791, 0.009826481, -0.030082706, 0.0012886365, -6.14574E-4, -0.01911673, -8.1314804E-4, 0.019907674, 0.012132286, 0.017534839, -0.018540278, -0.009953837, -0.002563867, 0.016073603, -0.013647146, -0.006525293, -0.01982724, -0.010838622, -0.0086266585, -0.0010749808, -0.04322043, 0.028527629, -0.005234981, 0.014263814, 0.01595295, -0.006712975, -0.007869229, -0.01276236, 0.013875045, 0.021717463, -0.006103009, 3.1713193E-4, 0.023822179, 0.020216009, 0.01785658, -0.014357655, -0.041987095, -0.0018717905, 0.015979763, -0.01595295, 0.010751484, -0.009008725, 0.007105096, 0.015966356, -0.0054159597, -0.022039203, -0.0058717583, -0.021998985, -0.0024046728, -0.025564939, -0.025993925, -6.6233234E-4, -0.0034134623, 0.02198558, 0.019009482, 0.03410446, 0.0054126084, 0.005928733, -0.021181228, -0.02384899, 0.0010322498, -0.016851142, 0.024988487, 0.021931956, -0.009002022, -0.0046417722, 0.00812394, 0.010677752, 0.011817249, 0.001179714, 0.017186288, -0.026610594, 0.016140632, 0.012534461, 0.027173638, 0.015416717, 0.015805487, 0.0066358913, -0.0018550332, -0.0060829003, 0.015242441, -0.0245595, -0.053998727, -0.0077150613, -0.004480902, -4.7046124E-4, -0.0042932206, -0.018312378, 0.0016221068, 0.01207196, -0.0032425378, 0.022937393, 0.002228721, 0.004189325, -0.021972174, 0.025068922, -0.025564939, 9.350574E-4, -0.010684455, 0.023098264, -0.0028705257, -3.0330714E-4, -0.020644994, 0.037563168, 0.029519662, 0.018379407, -0.029063864, 0.032978367, 0.015497152, 5.818973E-4, -0.013995698, 0.0028269566, 0.0031822114, 0.04112912, 0.0013523141, 0.01737397, 0.01921057, -0.023285946, 0.038716067, -0.02997546, 0.021100793, -0.021730868, -0.009477929, 0.016006574, 0.03665157, -0.019331222, -0.014384467, -0.022119638, -0.004785885, 0.021851521, -0.026020737, 0.03346098, 0.0029409062, 0.013727581, 0.0119110895, 0.0047590733, 0.024760587, 0.007976475, -4.0531723E-4, -0.0044607935, -0.022226883, -0.0026359234, -0.0075608944, 0.0117703285, 0.0012090392, 0.006314151, -0.007225748, 0.007400024, 0.014116351, 0.009236624, -0.033568226, -0.0017947069, -7.940081E-6, 0.0011554159, 0.036892872, -0.0053489306, 0.022615653, -0.0042261914, 0.036276206, -9.68572E-4, -0.015389905, -0.029466039, 4.738127E-4, 0.0053288215, -0.009853293, 0.025095735, 0.029546473, -0.0048093456, 0.013198051, 0.013392435, -0.013834828, -0.0037603383, -0.0208863, -0.011267609, 0.014786642, -0.007648032, -0.0120987715, -0.65034413, -0.014330843, 0.011937901, -0.014639178, 0.03010952, -0.0039480203, 0.009256733, 0.005037245, -0.032951556, -0.003172157, -0.031959526, 0.012038445, 0.021114198, -0.01418338, -0.028983427, -0.020872895, 0.0016154038, -0.018915642, -1.3039274E-4, -0.0070380666, -0.037563168, 0.0052383323, 0.019934485, 0.015282659, 0.010449853, -0.003545845, -0.01184406, -0.0058583524, 0.0051344372, 1.9187109E-4, -0.01335892, 0.009444415, 0.009772858, 0.009906916, 0.036732003, -0.009317059, -0.0026241934, 0.044748697, 0.02701277, 0.015336282, -0.020644994, 0.007225748, 0.019183759, 0.0010950896, -0.008901479, 0.005469583, 0.0029207976, -0.003066586, 7.796334E-4, -0.008030099, -0.008981913, 0.008244592, 0.008204374, -0.004655178, -0.0151486, 5.940463E-4, 0.015001136, -0.028339947, 0.010751484, -0.010758188, -0.002161692, 0.038072586, 6.598187E-4, 0.011307826, -0.008244592, 0.025243198, -0.014330843, -0.0061365236, 0.02130188, -0.051585674, -0.0068637906, -1.3332527E-4, 0.0024633233, -0.0017846526, 2.1396979E-4, 0.01833919, 0.026637405, 0.0017025418, -0.008754014, 0.02481421, 7.188882E-4, 3.0498288E-4, 0.004420576, 0.01563121, 0.017333752, -0.010309092, -0.025564939, 0.009544958, 0.022360943, -3.3137563E-4, -1.8370191E-4, 0.02056456, 0.003415138, 0.008264701, -0.010610723, -0.0052550896, -0.022535218, 0.0025605157, 0.032817498, -0.05678714, -0.009216515, -0.018071074, 0.02614139, -0.0046719355, 0.024479065, -0.0030649104, -0.007406727, -0.021998985, 0.027830526, -0.016127227, -0.005680725, -0.0020829325, -0.013982292, -0.0029777724, 0.024291383, -0.023942832, 0.01762868, -1.4683585E-4, -2.3376435E-4, -0.028527629, -0.0031889144, -0.013673957, 0.019559123, -0.01115366, 0.0094109, 0.023674715, -0.011448588, 0.0039145057, 0.0017209748, -0.002478405, 0.0049266466, 0.015523964, 0.018593902, 0.003309567, 0.0022572083, -0.0051646, 0.00865347, 0.008633361, 0.028768934, -0.007332995, -0.026288854, -0.0011688217, -0.014612366, 0.001297853, -0.006823573, -0.014076133, -0.019250788, -0.008030099, 0.0048964834, -0.0047925883, -0.0071922336, 0.0012366888, 0.009551661, 0.007145313, 0.0039882376, 0.0017067312, -0.017575057, -0.019237382, 0.02665081, -0.031369668, 0.009712531, 0.028742123, -6.949043E-5, -0.013781204, 0.014384467, -0.021998985, -0.032147206, 0.006139875, -0.0075474884, -0.01689136, 0.014813454, -0.017802957, 0.0016179174, 0.019894268, 0.00127942, 0.016904766, -0.010932463, 0.019156946, 0.017977232, -0.0077016554, 0.004259706, 0.0061231176, -0.012152394, -0.0023125075, 0.0335146, 0.029358791, 0.025672184, 0.0062303646, -0.022360943, 2.8466465E-4, -0.022052608, 4.825579E-5, -0.023795368, 0.0059622475, 0.0033296756, 0.013834828, -2.2559517E-4, 0.007969772, -7.9178246E-4, -0.0076279235, 0.04831465, 0.01817832, 0.010255468, -0.020256225, 0.010396229, -0.01636853, -0.014625772, -0.010939166, -0.0061800927, -0.022991017, 0.0323617, -0.0020762295, -0.014304033, -0.014773237, 0.007815605, 0.008385354, -0.018298972, 0.010724673, -0.02056456, 0.006612431, 1.6118429E-4, -0.0064716698, 0.030511694, 0.0058348924, -0.017119259, 0.0031369668, 0.020537749, -0.0086266585, -0.0049098893, -0.0058751097, -0.0056840763, 0.013419246, 0.0011386586, 0.003103452, 0.015229035, 0.02446566, 0.02033666, -0.006066143, 0.03632983, -0.0034721128, 0.014558743, 0.0011202255, 0.018258756, -0.012058554, 0.006904008, -0.033434168, 0.010543694, 0.0099404305, -0.024117108, 0.019183759, -0.011589349, 0.013942074, 0.004983621, 0.011529023, -0.0032274562, -0.027562408, 0.011750219, -0.0042362455, 0.024639936, 0.03187909, 0.013405841, -0.018004045, 0.01099279, -0.01785658, 0.01595295, 0.01634172, -0.029090675, -0.0071989363, -0.013157832, -0.011073224, -0.0033514602, -0.007393321, 0.0063912347, 0.012594787, 9.148439E-5, -0.0061733895, 0.013727581, 0.01666346, 0.015979763, 0.018875424, -0.020859487, -0.040083464, 0.022642465, 0.027991395, -0.01299026, -0.0071922336, -0.01656962, -0.014263814, -0.03874288, -0.0050137844, -0.022575436, 0.026127983, -0.015845703, -0.016328314, -0.019425062, -0.0033799475, 0.011026304, -0.014143162, 0.003110155, 0.020309849, 0.0076212203, 0.019036293, -0.0036463886, 8.579738E-4, 0.008452383, 0.0016304854, -8.3786505E-4, -0.014451496, 0.00495681, 0.0054159597, 0.009122674, 0.0024448903, -0.04161173, 0.001645567, -0.024251167, 0.006290691, -0.028259512, -0.009927025, 0.0021265014, -0.014759831, -0.024117108, -0.0064348034, -0.023420004, 0.009296951, 0.06997849, 0.014625772, 0.008867963, -0.0024314844, 7.367976E-5, -0.015322876, -0.01168319, -0.003941317, -0.009296951, -0.0021449346, 0.010583911, 3.037261E-4, 0.028956616, -0.003291134, 0.023607686, -0.004561337, -0.0065722135, -0.016515996, -0.011415074, -0.02049753, -0.0070849867, 0.0032978368, 0.012896419, 0.03313924, 0.008606549, -0.022173261, 0.024197543, 0.01418338, 0.023594279, 0.01168319, -0.021020358, 0.0020024974, 0.006340963, 0.011763625, -0.0013514763, -0.0142370025, 0.020216009, -0.005958896, 0.016944982, 0.0034989244, -0.021395722, -0.010108004, 9.928701E-4, -0.0024851076, 0.019277599, -0.027616031, -0.013968886, 0.01746781, 0.02224029, -0.034426197, 0.022226883, 0.007406727, -0.028902993, -0.0045177685, 0.019344628, 0.009417603, 0.0043300865, 7.0757704E-4, -0.022133043, -0.00800999, -3.7515408E-4, -0.040592887, -0.008526115, -0.00968572, -0.006052737, -0.027508786, 7.226586E-5, -0.018607307, 0.0024063485, 0.011428479, 2.961853E-4, -0.017802957, -0.008660173, -0.009833184, 0.015792081, -0.0054293657, 0.019894268, -0.0013322054, 0.011971416, 0.023741744, -0.026543565, -0.027669655, 0.013613631, -0.026436318, -0.0033062154, 0.0042429487, -1.3678147E-4, 0.026195012, -0.012581382, 0.007339698, 0.007929555, -0.00592203, -0.01695839, -0.016448967, 0.04045883, 0.0023242377, 0.011944604, 0.014786642, 0.026610594, 0.0114888055, 0.0026107875, -0.016877953, -0.011515617, -0.028286325, -0.01592614, -0.011260906, 0.009330465, 0.01843303, -0.013640443, -0.019800426, -0.025001893, -0.00936398, -0.0011277663, 0.0010146545, 0.012829389, -0.0022588843, 0.025015298, 0.0046853414, -0.0063040964, 0.007835714, -0.0032643222, -0.0113480445, 0.028661687, 0.02224029, -0.0038340704, 0.025900085, -0.022749713, -0.017548246, -0.013271783, 0.04686682, 0.0120987715, 0.0049501066, -0.025564939, -0.0031922658, -0.019358033, -0.03061894, 0.0015818892, 0.011609458, -0.008130643, 0.005653913, -0.026034143, 0.012547867, 0.015778674, 0.012454026, 0.017092448, -0.019331222, 0.0015131843, -0.005405905, 0.003830719, 0.01840622, 0.008278106, 0.005077462, -0.027280886, -0.019036293, -0.01811129, -0.027294291, -0.026087767, 0.010047678, 0.026543565, 0.024747182, 0.053811044, -0.009256733, 0.011803843, 4.6836658E-4, -0.0013590171, 0.027884148, -0.017266722, -0.007882634, -0.020041732, 0.0073598064, 0.021757679, 0.007051472, 0.014464902, 0.01585911, -0.01659643, 0.016288096, -0.0017159476, -0.003247565, 0.007339698, -0.019036293, -0.016998606, 0.014907295, -0.030511694, 0.0024264571, -0.022789929, -0.020484125, 0.022830147, 6.5604836E-4, 0.00844568, 3.0205035E-4, 0.025323633, -0.0016363504, 0.0088612605, -0.026865305, 0.009122674, -0.03254938, -0.005637156, -0.029063864, -9.3673315E-4, -0.015296064, -0.010376121, 0.01682433, -0.012313264, 0.008660173, -0.007332995, 0.03128923, -0.025042111, -0.028983427, 0.010483367, -0.005818135, -0.009504741, -0.03812621, -0.0114754, -0.032951556, 0.0028789043, 1.3384894E-4, -0.003632983, 0.0012308238, -0.017481217, -0.038689256, 0.026677623, -0.0068470333, 0.04692044, 0.0114754, 0.051719733, 0.02775009, 0.013821422, -0.011100036, 0.009947134, 0.004400467, 0.0039145057, 0.030324012, 0.018768176, 0.0039212084, 0.0063342596, 0.0015802134, -0.0023694823, -0.03332692, -0.043461736, 0.03415808, 0.022066014, 0.022897176, -0.027414944, -7.214018E-4, -0.012668519, 0.023379786, 0.008821043, 0.021931956, 0.02775009, -0.022803335, -0.02591349, 0.011549132, 0.008472491, 0.0105973175, 3.650997E-4, -0.025256604, 0.03571316, -0.019880861, 0.007976475, -0.015899327, -0.012795875, 0.022696089, -0.018392814, 0.002203585, 0.00532547, 0.008727202, 0.010577208, 0.0010841974, 0.014947512, 0.025538126, -0.010744781, 0.0072793714, 0.0032375106, -0.013573414, 0.033031993, 0.00870039, -0.014880483, -0.025363851, -0.011596052, 0.0024800806, 0.020966735, 0.0029962054, -0.013942074, -0.0113480445, -0.0071117985, -0.030189954, 9.702477E-4, -0.00498027, 0.019894268, -0.04064651, 0.017709116, 0.013050586, -0.012889716, -0.026543565, 0.0038072588, 0.003395029, 0.0077150613, 0.009350574, -0.0070179575, -0.006407992, -0.027280886, -0.0096589085, -0.04241608, -0.013077398, -0.0068704933, 0.002242127, 0.01466599, -0.021931956, 0.0067565436, 0.009719235, -0.0032458892, -6.3049345E-4, 0.0046417722, -0.0073866183, 0.008485897, 0.028286325, -0.013057289, -0.014934107, 0.020323254, 0.0401639, 0.0054662316, -0.0017494622, 0.005918679, 0.004997027, 0.021342099, -0.041584916, 0.012795875, 0.009652206, -0.015979763, 0.006183444, 0.012635005, 0.007493865, 0.009826481, -0.014223597, -0.0433813, -0.0019874158, -0.010322497, 0.03758998, -0.0016195931, 0.010965978, 0.024894645, 0.011904387, 0.028983427, 0.017829768, -0.011012898, -0.028286325, 0.005811432, 0.00530201, -0.021583404, -0.0066761086, 1.0253373E-4, 0.017963827, 0.015403311, -0.004862969, -0.01695839, -0.0076145176, -0.026771463, -0.029278357, -0.0025001892, 0.020403689, 0.035793595, 0.0037770956, -0.020309849, 0.005097571, 6.3971E-4, 0.007145313, -0.023634497, -0.019237382, 0.007554191, 0.014733019, 0.008686985, 0.020350067, -0.021409128, -0.014853671, 0.004923295, 0.018915642, 0.012735548, 0.021409128, -0.026355883, -0.00844568, -0.008566332, 0.0015441853, -1.6453576E-4, -0.0013506385, 0.03332692, -0.039627664, -0.008278106, 0.017159477, -0.0016288096, -0.0068570874, -7.4611884E-4, 0.012635005, -0.0047825337, -0.004661881, -0.0041625137, -0.013432653, -0.016650055, -0.022521812, 0.01007449, 0.007105096, 0.016489184, 0.020966735, 0.024519283, -0.0067263804, 8.0937764E-4, 0.0033263243, -0.0012844471, -0.003750284, -0.011602756, -0.002961015, 0.014759831, -0.031208796, 0.015416717, -0.031074738, -8.747311E-4, 0.0010758187, 0.010664347, -0.0105973175, 0.026181607, -7.6748437E-4, -0.06279296, 0.0072056395, 0.0016505942, 0.020631589, -0.008867963, 0.009417603, -0.025417475, -0.0095181465, -3.3116617E-4, 0.0036866062, -0.0105503965, -0.024841024, 0.008566332, -0.0067464896, -0.0104565555, 0.030082706, 0.17609912, 0.0038005558, 0.013687364, 0.05882483, 0.022066014, 0.01450512, 0.007969772, 0.027776903, -0.0027900906, 0.0030498288, 0.004259706, 0.004862969, -0.008304918, 7.469567E-4, 0.015497152, -0.0071386104, -0.027857337, -0.026597189, -0.013834828, -0.004229543, -0.0068269246, -0.0012492568, -2.5722457E-4, -0.01866093, 0.012092069, -0.0037938529, -0.0103292, 0.0017477865, 0.014491714, 0.0050271903, -0.031074738, -0.021181228, 0.0024918106, 0.011944604, -0.028259512, -0.003954723, -0.0126148965, 0.010483367, -7.378449E-5, 0.009216515, 0.0100342715, 0.015001136, 0.011193877, -0.015765268, 0.011133551, 0.0227229, -0.023621092, 0.014652584, -0.015711645, 0.003247565, -0.054910325, 0.0041491077, 0.013781204, 0.015296064, -0.020189196, 0.0046652327, 0.0076279235, -0.021006953, -0.010134815, 0.0037234724, 0.019009482, 0.028929804, -0.03973491, 0.009055645, -0.020001514, 0.015497152, -0.02327254, -0.010516882, 0.0096589085, -0.023205511, -0.010114707, -0.006371126, -0.024371818, 0.007815605, -9.3924673E-4, -0.0030883707, 0.0020594723, 0.012373591, 0.007225748, 0.0058214865, -0.018781584, -0.023125075, 0.0063342596, -0.03254938, -0.011495508, -0.010724673, 0.008988616, -0.018004045, -0.01368066, -0.0054494743, -0.01624788, -0.026999364, -0.017749334, -0.0057544573, -0.013928669, 3.0623967E-4, 0.02871531, 0.010067786, -2.6476535E-4, -0.0018533575, -0.028822558, 0.03348779, 0.022910582, 0.0015282659, -0.015899327, -0.015644616, -0.0027331158, 0.017360564, 0.012675222, -0.021811303, -0.014679396, -0.050459586, 0.02417073, -0.01634172, -0.020644994, 0.015818892, 0.017615275, -0.013432653, 0.035766784, -0.0167573, 4.2563546E-4, -0.012883013, 0.01879499, 0.0021700705, 0.0014930755, -0.031021116, -0.021771085, 0.0017729225, 0.0012777442, -0.026583781, 0.011301124, -0.02510914, 0.024961676, -0.008633361, -0.01065094, -0.0052249264, 0.032254454, 0.013667255, 0.0038273674, -0.0022890472, 0.009102566, -0.014692801, 0.018071074, 0.03013633, 0.019022888, -0.026985958, 0.01326508, -0.002451593, -0.020309849, -0.025216386, -0.014438091, -0.013700769, -7.823565E-5, -0.0018030856, 0.051880606, 0.0017410836, -0.03010952, -0.03638345, -0.02694574, 0.04115593, -0.04608928, 0.016918171, 0.026195012, -0.0112542035, -0.0380994, -0.018634118, -0.17127302, 0.02758922, 0.009692423, -0.010744781, 0.022200072, 0.01482686, 0.035766784, 0.005074111, 0.0078089023, -0.023513844, 0.021141011, 0.003103452, -0.03716099, -0.010114707, 0.0069442256, 0.006699569, -0.02997546, 0.034479823, 0.017722521, 0.002267263, 0.04316681, -0.005798026, -0.011837358, -0.0032542679, -0.002997881, -6.414904E-5, 0.009900213, 6.4473716E-4, 0.0039580744, -0.019652963, -0.025511315, -0.017910203, 0.020202601, 0.012031742, -0.004309978, -0.0031202096, -0.010945869, 0.004420576, -0.0055969385, -0.005405905, 0.021891737, 0.012782469, 0.03174503, 0.0040753754, 0.010637535, -0.011797139, 0.013003666, 1.8799597E-4, 0.010208548, -0.021998985, -4.993152E-5, -0.03903781, -0.0012802578, -0.00973264, -0.0016832709, 0.014531932, -4.5621753E-4, -0.002154989, 0.022213478, -0.021435939, -0.035150114, -0.007916149, 0.0019019537, -0.014397873, -0.013573414, -0.02488124, -2.4319033E-4, 0.017950421, -0.042791445, 0.0018248701, -0.014397873, 0.013177942, 0.008030099, 0.014009103, 0.003353136, -0.013231565, -0.03220083, 0.023178698, 0.008432274, 0.030645752, -0.018955858, 0.04397116, -0.006672757, 0.013586819, 0.009075754, -0.0017930312, 0.0065588076, -5.4167974E-4, 0.001397559, -0.009933728, 0.0023208861, -0.017012011, -0.02933198, 0.003103452, -0.00333973, 0.005841595, -0.012353483, -0.006039331, 0.0094109, -0.013043883, -0.009772858, -0.023862397, -0.005811432, 0.009209813, 0.028768934, 0.021677244, 0.0077016554, 0.03203996, 0.017735926, -0.006421398, -0.0055030975, 0.003203996, 0.020484125, 8.449869E-4, -0.0072190454, 0.007105096, -0.009786264, -0.013090803, 0.008552927, 0.021864926, 0.045499425, 0.0012970151, 0.0056840763, -0.007929555, -0.009290247, 0.0034134623, -0.09464524, -0.0049400525, 0.030029083, 0.037080556, -0.033407357, 0.036276206, -0.006605728, 0.041826222, -0.013432653, 0.0206584, 0.0057511055, -0.020819271, 0.0047959397, -0.01953231, 0.027776903, -0.0077954964, 0.0057779173, -0.025417475, -0.009176298, 0.034399386, -0.004232894, -0.005824838, -0.011810546, -0.0015056435, -0.029117486, 0.014639178, -0.021677244, 0.024479065, 0.0090489425, -0.00592203, 0.023500439, -0.008083722, 0.013915263, -0.047644358, -0.039493605, -0.025645373, -0.026409507, -0.0319059, -0.0043870616, -0.03110155, 0.0017745981, 0.021704055, 0.0038474763, -0.044534203, -0.028152267, -0.0051109768, -0.02933198, 0.03702693, -0.0017745981, -0.022575436, -0.01569824, -0.019974703, -0.02304464, -0.020832676, 0.014679396, 0.02775009, 0.020028327, -0.005643859, -0.014491714, -0.009578473, -0.013580116, 0.014035915, -0.022883771, 0.0031486969, 0.009806372, 0.0010347633, -0.0048328056, -0.016542807, 0.012299859, -0.0022086122, -0.030994304, 0.015001136, -0.029197922, 0.0030280442, -0.021395722, -0.006736435, -0.018272161, -0.014196785, 0.020510936, -0.029680531, 0.008157454, -0.041021872, -0.0020779052, 0.0027113312, 0.0017360564, 0.027280886, 0.013767798, 0.01663665, -0.00817086, -0.036624756, -0.0116764875, 0.019344628, 0.00603598, -0.0023309404, -0.0034989244, 0.018982671, 0.017253317, -0.008472491, -0.00925003, 0.00697774, -0.0053489306, -0.004675287, -0.07223067, 0.016435562, -0.011334638, 0.003247565, 6.84431E-5, -0.013338812, 0.0020929868, -0.0090958625, 0.0072056395, 0.014102944, -0.0024381874, 0.01152232, -0.0047255587, 0.010356012, -0.014411279, 0.024505878, -0.0030900463, -0.0057410514, 0.0014754804, 7.1469886E-4, -0.030538505, -0.0032492406, 0.014934107, 0.0046350695, 0.0020728782, 0.02201239, 0.0064482093, 0.014545337, -0.015832298, -0.0033732448, 0.031208796, 5.178006E-4, -0.012219423, 0.004588149, -0.006190147, -0.018473249, 2.545015E-4, -0.0032693495, 0.018848613, -0.0019823888, -0.0017176233, -0.02949285, -0.0019522256, -0.007661438, 0.0027800363, 0.008807638, -0.022374349, 0.002843714, 0.016676866, 0.0105973175, 0.029600097, 0.0037703926, -3.1859818E-4, -0.028956616, 0.036437076, -0.01673049, 0.052095097, 0.0038910452, -0.010637535, -0.0010833595, 0.033568226, 6.749003E-4, 0.015202223, -0.039145056, 0.012956745, 0.0056103445, -0.018138103, 0.0105503965, -0.0019890915, -0.021543186, -7.44862E-4, -0.012695331, 0.0012500946, 0.014290626, 0.019787021, 0.007473756, -0.008103831, 0.009672314, 0.01173011, 0.013613631, 0.033595037, -0.004772479, -0.021355504, 0.008908181, -0.0033129184, 0.031798653, -0.018674336, 0.004661881, -8.88137E-4, 0.014035915, -0.008841152, 0.0014268842, 0.012165801, -2.9827995E-4, 0.014478308, 0.013318703, -0.013063991, -0.013506385, 0.0029425821, 0.013533196, 0.0015115086, 0.010543694, -0.01778955, -0.018634118, 0.0016212689, -0.0019388198, -0.028152267, -0.022843553, 0.010717969, -6.1289826E-4, 0.03319286, 3.2215912E-4, -0.009136081, 0.019545715, -0.024841024, 0.013640443, -0.013673957, -0.024586312, -0.013560008, 0.03831389, 0.005928733, 0.012172503, 0.01937144, -0.016904766, 0.051129878, 0.012789172, 0.020939924, -0.033407357, -0.010711267, 0.013452761, 8.990292E-4, -0.005995762, -0.027481973, 0.0060829003, -6.384532E-4, -0.00920311, 0.009786264, 0.023808774, -0.022521812, 0.07668141, 0.01627469, 0.009591879, 0.0023895912, -0.0096589085, 0.012896419, 0.018634118, 0.015644616, -0.021905145, -0.002334292, -0.0028856073, 0.0031202096, 0.016583025, -0.029358791, 0.0034721128, -0.026664218, 0.0052048177, 0.0097058285, -0.017534839, -0.01650259, 6.6526484E-4, -0.01762868, 0.014840266, 0.011461994, -0.019559123, -0.0051310854, 0.018459843, -0.007822308, -0.023192104, -0.009457821, 0.03126242, -0.028527629, -0.013573414, -0.007312886, 0.019800426, 0.004614961, -0.015979763, -0.003222429, 0.040807378, 0.00881434, 0.0025286768, 0.0027716577, -0.03777766, -0.0026543564, 0.021141011, -0.0032861067, -0.011301124, -0.02520298, -0.017105853 ], + "id" : "5f903a7b-fb2f-46f0-87a4-4729fbfe767b", + "metadata" : { + "source" : "movies.csv" + } + }, + "b2d6d837-dc22-47ec-8de9-759823b53445" : { + "text" : "Mitchell-Martin Gordon-Paul Humpoletz-Tom Branch-Graeme Crowther-Luke Hanson-Chris Jenkinson-Nicola Scott-Louis Sheldon-Stefan Kalipha-Peter Pacey-Pat Roach-Suzanne Roquette-Eugene Lipinski-George Malpas-Julie Eccles-Nina Armstrong-Albert Evansky-Ronald Lacey-Michael Sheard-Roy Beck-Paul Markham-Hugh Elton-Lee Richards-Nick Gillard-Tip Tipping-Chris Webb-Paul Heasman-Derek Lyons-Vic Armstrong-Peter Diamond-Martin Grace-Dickey Beer-Wayne Michaels-Graham Cole,germany-saving the world-venice italy-holy grail-riddle-nazi-entrapment-crusader-brotherhood-zeppelin-book burning-tank-nazi officer-boat chase-gestapo-single father-traveling circus-archaeologist-bible quote-medieval-boy scouts-german soldier-motorcycle chase-hindenburg-german agent-1930s-biblical archaeology-father son relationship-adolf hitler-german language-knights templar-nazi germany-the crusades-german castle,/riO8WLCG9BbuhQfBpbnXFKzBcgL.jpg,/S6lLHuyh86V6SDRkSBsbuVTE6n.jpg,87-85-217-1892-562-165-1891-196-1573-329-218-105-679-280-11-197-1895-1894-1893-1572-2501\r\n254128,San Andreas,Action-Drama-Thriller,en,In the aftermath of a massive earthquake in California a rescue-chopper pilot makes a dangerous journey across the state in order to rescue his estranged daughter.,84.289,New Line Cinema-Village Roadshow Pictures-Flynn Picture Company-Warner Bros. Pictures,5/27/15,110000000,473990832,114,Released,\"A rescue pilot survived an earthquake, this is what happens next\",6.207,7542,Dwayne Johnson-Alexandra Daddario-Carla Gugino-Ioan Gruffudd-Archie Panjabi-Paul Giamatti-Hugo Johnstone-Burt-Art Parkinson-Will Yun Lee-Kylie Minogue-Colton Haynes-Todd Williams-Matt Gerald-Alec Utgoff-Marissa Neitling-Morgan Griffin-Breanne Hill-Laurence Coy-Fiona Press-Dennis Coard-Ben McIvor-Nick Allen-Ducat-Claire Lovering-Sophia Emberson-Bain-Julian Shaw-Sofie Formica-Julie Brandt-Richards-Hugh Boddam-Whetham-Brad McMurray-John Reynolds-Simone Kessell-Saskia Williscroft-Arabella Morton-Hayley Sullivan-Renee Somerfield-Joey Vieira-Benjamin Blankenship-Barry Southgate-Nikki Green-Calum Grant-Eduardo Ambriz DeColosio-Michael Asberry-Teirrah McNair-Michael Yamaguchi-AnnaCorey-Stephen Chang-Hayley Gagner-Stephanie Johnston-Tom O'Reilly-Vanessa Ross-Andrea Walker-Allan Poppleton,california-earthquake-tidal wave-catastrophe-disaster movie-san andreas california-helicopter crash-rescue operation,/2Gfjn962aaFSD6eST6QU3oLDZTo.jpg,/ipjZVitWMjrVd2hoWKU2waVdxGy.", + "embedding" : [ 0.0065386766, -0.03429448, -0.009930249, -0.040051546, -0.022312071, 0.033991475, 0.016224457, 0.0060531823, -2.472663E-4, -0.038894624, 0.0068485662, 0.028785326, 0.01021948, 0.00897992, 0.010832373, -0.005736406, 0.023868406, -0.013903726, 0.004149081, -0.019350901, -0.002306958, -0.0031918657, 0.013945044, 0.011954863, 0.010735963, 0.011465926, 0.018414345, -0.008229298, -0.014213616, -0.014489073, -0.0018679473, -0.004001023, -0.0050856373, -0.014957352, -0.024157638, -0.013070466, 0.0081122285, -0.017822111, 0.020755736, -0.0050029997, 0.0028389357, 0.007650837, -8.3627226E-4, -0.008614939, -0.013965704, -0.0033709132, 0.01786343, -0.011582995, -0.009110763, 0.027297854, 0.035837043, 0.026251115, -0.030355435, -0.017491562, -0.016114274, 8.5047557E-4, -0.0052336957, 0.0070723756, -0.0013927828, -6.2881823E-4, 0.0068141343, -0.008725122, -0.036222685, 0.009723656, -9.270872E-4, -0.017408924, 0.008084683, -0.016210685, -0.002183002, 0.002253588, 0.01647237, 0.01437889, 0.0060290797, -0.0027855656, 0.025893021, -0.021072512, -0.011231787, -0.022559984, -0.0095583815, 0.009778747, 0.01848321, -0.00886285, -0.009145195, 0.0076852688, 0.023083353, -0.013249514, -0.01499867, 0.017519107, -0.02254621, 0.0075337673, -0.0021881668, 0.039776087, 0.0056331092, -0.0067418264, 0.0054299594, 0.018937714, -0.018689802, 0.015769951, 0.0035809497, -0.0530256, -0.0020573244, -0.015701087, 0.001847288, -0.008676916, 0.0072445367, -0.012815668, 0.020135956, 0.0010398527, 0.0070792623, 1.1663911E-4, 0.005054648, -0.01652746, 0.001131098, -0.026471483, -0.0015270684, -0.0119135445, 0.030438073, -0.020053318, -0.010309003, -0.022615075, 0.018552074, 0.020218592, 0.0029852726, -0.0305758, 0.032283638, 0.03787543, -0.010026659, 0.0063114236, 9.055671E-4, 0.0029680564, 0.011817134, -0.0090625575, 0.027807452, 0.010040432, -0.015866362, 0.05459571, -0.017918522, 0.0010123069, -0.03963836, -0.017078375, 0.031319536, 0.033275288, -0.032448914, -0.026967306, -0.022986943, 0.01110783, 0.004255821, -0.002739082, 0.011032079, 0.0152879, 0.017946066, 0.013834861, 0.0073409467, 0.017918522, 0.0013092847, -0.010129956, -4.820509E-4, 0.0049685678, -0.021100057, -0.02908833, -0.022628848, -0.011094058, 0.005188934, -0.01662387, 0.0041353083, 0.010329663, 0.014475301, -0.021609655, -0.011218013, -0.0037221217, -0.013118671, 0.028427232, -0.044872053, 0.012781235, -0.008752667, 0.029033238, 0.009420652, 0.0029904372, -0.030988988, -0.011135376, 0.0011663911, 0.0038082022, 0.019116763, 0.029776974, -0.011355743, 0.0027993387, 0.022518665, -0.012450687, 0.0010398527, -0.023289945, -0.009682337, 0.00632864, 0.013945044, -4.415931E-4, -0.63421375, -0.021967748, 9.847612E-4, -0.0045760404, 0.015962772, 0.01681669, -0.009544608, 4.424539E-4, -0.02684335, 0.014792077, -0.034900486, 0.027160127, 0.009007466, -0.0065249037, -0.0141172055, -0.01795984, -0.00398725, -0.016458595, 0.024570825, -0.0077885655, -0.01829039, 0.034074113, 0.020618007, -0.00342084, 0.011555449, 0.0059016803, 0.014736985, -0.014764531, 0.014778304, 0.013290833, -0.02374445, 0.015301674, 0.0024963352, 8.745781E-4, 0.05101476, -0.0111904675, -0.0150675345, 0.04790209, 0.029253604, 0.018552074, -0.023028262, -0.0015399805, 0.017174786, 0.007389152, -0.0012137353, 0.034046568, 0.0074166977, -0.021141376, 0.0062597757, -0.018317934, 0.0065076873, 0.020383868, -0.016252002, -0.0012318123, -0.0068106907, -0.012960283, 0.01881376, -0.03911499, 0.01358695, 0.005381754, -0.021182695, 0.026898442, 0.0066626323, 0.006982852, -0.0028664814, 0.028027818, 4.979758E-4, -0.009764974, 0.005832816, -0.032311186, 0.009551494, 0.017615518, -0.010983874, -0.0167616, 0.00988893, 0.021416834, 0.03377111, 2.5781116E-4, -6.886442E-4, 0.017615518, -0.007816112, 0.0043281284, -0.0036980193, 0.022188116, 0.046111614, -0.0045967, -0.040960554, -0.0017801452, 0.025479835, -0.009682337, 0.0055298125, 0.015191491, -0.004520949, 0.017711928, -0.0025290458, 0.0014539, -0.005898237, 0.0067280536, 0.030823713, -0.06324508, 8.0097927E-4, -0.005553915, 0.031154262, -0.009069444, 0.0030334776, -8.414371E-4, -0.010109296, -0.003973477, 0.015645996, -0.015701087, -0.008057137, 0.0037565539, -0.019502403, -0.0049238056, 0.002487727, -0.033275288, 0.016541233, 0.0038908396, -0.007561313, -0.006779702, -0.0010717025, -0.018001158, -4.8931397E-5, -0.007940067, 0.010054205, 0.027256537, -0.0051545016, -0.002219156, -0.003212525, 0.018799987, 0.008959261, -0.008938601, 0.02034255, -0.020879691, 0.0030593018, 0.0018817201, 0.0023207308, -0.014557938, 0.03156745, -0.0070241704, -0.019075444, -0.0064766984, 0.0076852688, -0.008890396, 0.0039631473, -0.0044968463, -0.03032789, -0.0072445367, 0.0054196296, -0.017367605, -0.012891419, -1.7592707E-4, 0.0061186035, 0.017560426, -4.5149235E-4, 0.0042145024, -0.022711486, -0.020907236, 0.0039493744, -0.022105478, 0.00653179, 0.013008488, -0.0052543553, -0.021788701, 0.013607609, -0.007747247, -0.015329219, -0.008435891, 0.0013006767, -0.010928783, 0.0038116456, -0.015342992, -0.0065868814, 0.021031193, -0.010667098, 0.027077489, -0.009461971, 6.778841E-4, 0.004861828, -0.0031298879, 0.0018438448, -0.018166434, -0.025672656, 0.0012085706, 0.025190603, 0.010983874, 0.025810383, -0.006428493, -0.0091934, 0.015108854, -0.003994136, 0.0070792623, 0.005547029, -0.006889885, -0.0042110593, 0.014750758, 0.0031212796, 0.013139331, -0.0015761344, -0.0099371355, 0.024322912, 1.0808485E-4, 0.024777418, -0.0032021955, 0.032090817, -0.02368936, -0.0026392287, -0.033165105, 0.01915808, -0.0016665189, 0.012588415, -0.013070466, -0.029501516, -0.0023654927, -0.0117620425, 0.012553983, -0.009131421, 0.0068106907, -0.019075444, 0.002986994, 0.012065046, -0.001391922, 0.010212593, 0.028785326, -0.031264447, 0.0069071013, 0.012244093, -0.0105087105, -6.4861675E-4, -0.007292742, -0.015880134, 0.004427982, 0.010136842, 0.008401459, 0.0044004363, 0.012547097, 0.008511642, -0.0039562606, 0.0455607, -0.0064766984, 0.003725565, 0.019750316, 0.010309003, 0.013531858, 0.019006578, -0.010756622, 0.018855078, 0.00938622, -0.016637644, 0.03481785, -0.012161456, 0.02574152, -0.0019712439, -0.0032417923, 0.005147615, -0.021609655, 0.016940646, 0.01275369, 0.028647598, 0.027834997, 0.003522415, -0.007981386, 0.025011556, -0.0022415367, 0.006576552, -0.013263287, -0.023537857, 0.012684826, -0.026760712, -0.020218592, -0.023234854, -0.009833839, -0.009269151, 0.0057914974, 0.0112662185, -0.027325401, 0.004944465, 0.017587973, 0.010136842, 0.010364095, 9.54633E-4, -0.035864588, 0.015301674, 0.037434697, -0.018428119, -0.01929581, -0.009103876, -0.011700065, -0.041346196, -0.016169365, 7.415837E-4, 0.026760712, -0.01672028, 0.0042661508, -0.0066523026, -0.006593768, 0.017105922, -0.021224013, 0.011755156, 0.021058738, -0.008249957, 0.011975522, -0.0041869567, -0.0070654894, 0.013979477, -0.016128046, 0.002673661, -0.0052577984, 0.005126956, -0.018070024, 0.0070861485, -0.0095997, -0.02626489, 0.016596325, -7.1532914E-4, -0.0059292265, 0.0025169945, -0.0064009475, 0.006879555, -0.013111785, -0.016183138, -0.023675587, -0.030438073, -0.00316432, 0.08743026, 0.05635864, -5.0184946E-4, 0.0014995227, -9.81318E-4, 0.0057295193, -0.0040492276, -0.009503289, -0.010302117, -0.014709439, 0.01585259, 0.009351788, 0.015453176, 0.006676405, 0.025851702, -0.0039356016, -0.0013574898, -0.002659888, 0.0021916102, -0.014668121, -0.01213391, 0.0029766643, 0.020852145, 0.02183002, -0.00764395, -0.020246139, 0.02980452, -0.010302117, 0.0055091535, 0.010515597, -0.02173361, 0.00957904, 0.024130091, 0.018042477, -0.009331129, -0.0054437323, 0.030988988, 0.007871203, 0.03616759, -0.022725258, 0.0030868475, 0.010446732, 0.010894351, -0.005467835, 0.014847169, -0.019653905, -0.009186513, 0.025466062, 0.017050829, -0.029914703, 0.029694337, 0.009393106, -0.031787816, -0.026058296, 0.004858385, -0.015398083, 4.5364434E-4, 8.788821E-4, -0.022559984, 0.028675143, -0.012498892, -0.03578195, -0.0035981657, -0.02560379, -0.003341646, -0.007912521, -0.024708552, 0.015466948, -0.024901373, -0.0063217534, 0.008738895, -0.019888043, -0.023634268, 0.009647905, 0.022890532, -0.0027339174, 0.021499472, -0.0074442434, 0.011576109, 0.0077541335, -0.024942692, -0.018882623, 0.014406436, -0.016348412, 0.0041077626, 0.027890088, -0.012120137, 0.012581529, -3.1440912E-4, 0.021568336, -9.408601E-4, 0.0031316094, -0.03578195, -0.00336747, 0.03669096, 0.014337571, 0.0073684924, 0.015659768, -9.245048E-4, -0.0053404355, 0.023565404, -0.03762752, -0.020948555, -0.021623427, -0.018648485, 0.01480585, -8.995414E-4, 0.010853033, -0.0034105103, -0.0108874645, -0.011734497, -0.018896395, 0.011858453, 0.004696553, 0.0012008232, 0.003914942, 0.035368763, 0.01377977, -0.0100128865, 0.0020435515, 0.004662121, -0.0102401385, 0.011314424, 0.014764531, -0.020507824, 0.034625027, -0.021499472, -0.032201003, -0.010901237, 0.01267794, -0.012423141, 0.042998943, -0.0024033682, 0.0037290081, -0.020659326, -0.018827531, -0.003928715, 0.014874714, -0.0073409467, 0.01315999, -0.019998226, -1.4063405E-4, 0.01981918, 0.026209798, -0.015494494, -0.030768622, 5.8448676E-4, -0.019750316, 0.015398083, 0.016981965, -0.013462993, 0.009944022, -0.00979252, -0.007313401, -0.023221081, -0.030630892, -0.01662387, -0.009675451, 0.014723212, 0.023716906, 0.04790209, 0.0038013158, 0.015577131, 0.020535368, 0.005843146, 0.028647598, -0.009723656, -0.0043419013, -0.032834556, 0.0054506185, 0.020218592, 0.018827531, 0.0077541335, -0.0022880202, -0.0044761873, 0.011851566, 0.013235741, 9.3569525E-4, 0.009028126, -0.038701802, -0.047185898, 0.013648927, -0.02751822, -0.0070723756, -0.025135512, -0.0091934, 0.03311001, -0.00694842, -0.020535368, -0.0021382403, 0.015439402, -3.9145118E-4, 0.018593393, -0.0072238776, 0.04065755, -0.014681893, -0.020494051, -0.020535368, -0.011541677, -0.001259358, -0.0040939897, 0.0075819725, -0.01581127, -0.010501823, -0.013366584, 0.027187672, -0.017298741, -0.01619691, 0.017161014, -0.008518528, -0.019888043, -0.021843793, -0.0077128145, -0.0027287526, 0.002656445, 0.0029801077, 0.014736985, 0.015136399, -0.03630532, -0.021857565, 0.013049807, -0.0035051988, 0.04478942, 0.026292434, 0.048893735, 0.005547029, -0.0075681997, -0.027311629, 0.018841304, 0.005219923, -0.0017887532, 0.022573756, 0.012553983, -0.002603075, -0.014103432, -0.011397061, 0.0032194115, -0.015177717, -0.029914703, 0.044541504, 0.036663417, 0.008408345, -0.02364804, -0.017794566, -0.028206864, 0.0036291548, 0.0029405106, 0.012168342, 0.011947976, -0.030796167, -0.0226013, -0.005392084, -0.0012404203, 0.010846145, 0.009634132, -0.02426782, 0.03591968, -0.020080864, -0.0057742815, 0.008174206, -0.012271639, 0.033495653, -0.031787816, 0.0010630945, 0.0068864417, 0.01490226, -0.005553915, -0.010584461, 0.014323799, 0.026058296, -0.008793986, 0.0061977976, -0.0060359663, -0.0140414545, 0.033330377, 0.016541233, -0.005736406, -8.500451E-4, -0.010460505, -0.011376401, 0.034019023, -0.0050753076, -0.004087103, -0.0011250724, -0.023289945, -0.0017250536, 0.007829884, -0.00938622, 5.173439E-4, -0.041511472, 0.0053369924, -0.010515597, 0.0121407965, -0.009826953, -2.991298E-4, -0.0054196296, -0.015687315, 0.0071481266, -0.0076095182, 0.0033726348, -0.013628269, -0.0035981657, -0.027008625, -0.002126189, 0.0027545767, 0.0048101796, 0.004427982, -0.011087171, 8.466019E-4, 0.025975658, 0.009041898, 0.0011448709, -0.018579619, -0.020494051, 0.009489517, 0.023675587, -0.0059671015, -0.01824907, -0.0019505846, 0.0305758, -6.0256367E-4, 0.009682337, -0.0061977976, 0.0016449988, 0.010178161, -0.012650394, 0.00458637, -0.01585259, -0.028482324, -0.007278969, 0.03195309, 0.030300343, 0.02703617, -0.0110389665, -0.029501516, -0.019130535, -0.015632223, 0.026251115, 0.0048377253, 0.018097568, 0.01060512, 0.019722769, 0.035313673, 0.0232624, -0.011858453, -0.034184296, 0.004782634, 0.0030231478, -0.030355435, -0.016224457, 0.012547097, 0.02039764, 0.0076301773, -0.004951352, -0.029556608, 0.0034965908, -0.029887157, -0.024281593, -0.011527903, 0.016610097, 0.046221796, 0.022284525, -0.011314424, 0.0070999213, 0.002947397, 0.021719838, 0.013173763, 0.0023190093, 0.029942248, 0.0023895954, 0.0040320116, 0.014213616, -0.026774485, 0.005347322, 0.009331129, 0.0098613845, 0.016169365, 0.021182695, -0.01886885, -0.021044966, 0.0012834605, -0.0011741383, -0.0017422697, -0.002205383, 0.019405993, -0.034211844, -0.011004534, 0.0108874645, 0.02340013, 0.00745113, 0.013304605, 0.012836328, 0.0037668836, 0.0075062215, -0.0024532948, -0.016320867, 0.010136842, -0.032366276, 0.032889646, 0.0031712065, 0.0025221594, 0.020328775, 0.03649814, -0.001188772, -0.00377377, 0.0018972147, 0.016389731, -0.019116763, 0.008807759, -0.014351345, 0.027449356, -0.021141376, 0.009744315, -0.027669722, 0.011135376, -0.0056778714, -0.012829441, 0.012994716, 0.02626489, 0.0104329595, -0.03616759, 0.009847611, -0.004097433, -0.012058159, -0.0066798483, -0.0014676729, -0.024515733, -0.01762929, -0.003243514, 0.0036119388, -0.014971124, -0.03032789, -1.9594078E-4, -0.0069105444, -0.013221968, 0.026016977, 0.19138798, -0.0035809497, 0.015108854, 0.030135069, -0.0037599972, 0.019226946, 0.01991559, 0.020645551, -0.009702996, 0.0020710973, -0.008800873, 0.008807759, 0.015577131, 0.0026271776, 0.002293185, -0.024033682, -0.020576688, -0.028867964, -0.022491118, -0.0023086795, -0.005316333, -0.0032004737, 0.002439522, -0.019240718, -0.0026168479, -8.92655E-4, -0.009964681, 0.0023758223, 0.017312514, 0.0024894488, -0.012953397, -0.035313673, 0.0020211707, 0.015150172, -0.015108854, -0.0043556746, 0.015315446, 0.008470323, 0.009902704, -0.006624757, 4.1598413E-4, 0.0013609331, 0.023661815, -0.009461971, -0.0013411345, 0.020011999, -0.024006136, -0.0015348156, -0.016307093, 0.0030988988, -0.038701802, 0.011052739, 0.025149286, 0.03930781, -0.0049788975, -0.026526574, 0.0024326355, -0.0022208774, -0.010908124, -0.009702996, 7.8763675E-5, 0.03134708, -0.014626802, 0.022697711, -0.0064663687, 0.0077128145, -0.023427675, -0.013600722, -0.014943578, -0.032035727, -0.0150675345, -0.03134708, -0.01695442, 0.017326288, -0.012354276, -0.019502403, 0.001696647, 0.0021726724, 0.0018748337, 0.02670562, -0.03644305, -0.018607166, 0.016059183, -0.011369515, -0.01786343, -0.019144308, 0.014392663, -0.0073478334, -0.018923942, -0.02264262, -0.013655814, -0.033605836, -0.014130979, 0.00938622, -0.011665632, -0.0037668836, 0.012257867, 0.015398083, -0.024116319, -1.1846832E-4, -0.04456905, 0.015425629, 0.012175229, -0.01652746, -0.019722769, -0.028082909, -0.0039424878, 0.010591348, 0.018648485, -0.01867603, -0.026595438, -0.016651416, 0.0076990416, -0.01079794, -0.009523949, 0.033936385, 0.012505778, 9.554938E-4, 0.015701087, -0.009248491, -3.3872685E-4, -0.024295367, 0.017946066, 0.006256332, 0.005237139, -0.029005693, -0.042337842, 0.004052671, -0.010632666, -0.031980634, 0.0263613, -0.02235339, 0.017808339, -0.020411413, -0.0070035113, 0.002121024, 0.0037014624, -0.024254048, 0.007829884, 0.004782634, 0.0021313536, -0.011245559, 0.01490226, 0.0049788975, 0.0035912793, -0.013834861, -0.004631132, 0.008614939, -0.020315003, -0.036112502, -0.018552074, -0.008181092, 0.0133183785, 0.006535233, 0.039720997, -0.002871646, -0.016582552, -0.043577403, -0.011328197, 0.04236539, -0.03134708, 0.03440466, 0.014723212, -0.013118671, -0.006280435, -0.008594279, -0.17728455, 0.030438073, 0.01925449, -0.03726942, 0.022284525, 0.0069036577, 0.043329492, 0.008463437, -0.0051682745, -0.02173361, 0.03071353, 0.0063527427, -0.039665904, -0.015026215, -0.007637064, 0.014557938, -0.019089216, 0.037049055, 0.02273903, 0.0012421419, 0.031842906, -0.015425629, -0.00754754, 0.013483653, 0.0024601812, 0.009234718, 0.011032079, 0.009434425, 0.0128638735, 0.003973477, -0.040519822, 0.003336481, 0.024501959, 0.0028664814, -0.020328775, -0.0038805099, -0.014792077, -0.007871203, -0.022945624, 0.009227832, 0.03710415, 0.003866737, 0.030162614, 0.003300327, 0.023909725, 0.0144202085, 0.04250312, -0.029363787, 0.0051062964, 0.0055401423, -0.013724678, -0.038123343, 0.025893021, 0.011734497, -0.011073398, 0.013504312, 1.6817982E-4, -0.0016432771, 0.0016269218, -0.005123513, -0.018620938, -0.014227388, 0.004331572, -0.012202775, -0.0056331092, -0.050987214, -0.011286878, -0.0065455628, -0.03390884, 0.0059188968, -0.019282037, 0.010329663, 0.012388709, -0.013910612, 0.012980943, -0.023895953, -0.0328621, 0.010515597, 6.6755444E-4, 0.0038495208, -0.011479698, 0.049169194, 0.016128046, 9.072887E-4, 0.018317934, -0.01662387, -0.011100944, -0.004317799, 0.0031092283, -0.010095524, 0.0030696313, -0.013022262, -0.03748979, 0.004131865, -0.003835748, -0.0032555654, -0.018221525, 0.01891017, 0.010247026, -0.012547097, -0.0036119388, -0.002659888, -0.02761463, 0.036911327, 0.029253604, 0.0069621927, 0.013821089, 0.030630892, 0.016802918, 0.0062081274, -0.011018307, 0.0031832578, 0.018717349, 0.025590017, -0.0016010978, 0.010832373, 0.0017035336, -0.027945181, -0.0039011692, 0.027876316, 0.05522926, -0.018799987, 0.013821089, -0.014172297, 0.0061977976, -0.019350901, -0.09475744, 7.0693626E-5, 0.022931851, 0.02072819, -0.014130979, 0.033798657, 2.0745405E-4, -0.006951863, -0.019805407, 0.03291719, -0.019419765, -0.03377111, 0.017395152, -0.0084152315, 0.018441891, -0.003632598, 0.005226809, -0.017450243, -0.016913101, 0.022931851, -0.011424607, 0.0021623427, -0.011892885, -0.015315446, -0.016403504, 0.01991559, -0.018593393, 0.009399993, 0.015494494, 7.3512766E-4, 0.0014280758, -0.020755736, 0.013538744, -0.036856238, -0.01824907, -0.035947226, -0.020797053, -0.02455705, 0.01480585, -0.030162614, 0.01567354, 0.013821089, 0.022408482, -0.020328775, -0.0049203625, -0.010453618, -0.037049055, 0.048480548, -0.020383868, -6.203177E-5, -0.0057777246, -0.0077610197, -0.0312369, -1.1069417E-5, 0.012581529, 0.014654348, 0.033991475, 0.0108186, -0.012071933, -0.015480721, -0.011059625, -0.006015307, -0.027917635, 0.005564245, 0.024240274, 0.011858453, -0.024474414, -0.012547097, 0.012381822, -0.019144308, -0.02479119, 0.031594995, -0.0328621, -0.016265776, -0.030630892, 0.010570688, -0.028110456, -0.022105478, 0.03162254, -0.022532437, 0.01091501, -0.02875778, 0.024984011, -0.007000068, 0.02159588, 0.024997784, 0.017698156, 0.0118377935, -0.008793986, -0.027986499, 0.0055057104, 0.035644222, 0.011073398, 0.0054230727, 0.002399925, 0.0141172055, 0.002606518, 0.009117649, -0.008952375, -6.279574E-4, -0.011872225, -0.010577574, -0.07426339, 0.029143421, 0.0020160058, 0.0013566291, -0.019543722, -0.021403061, 0.0026047966, -0.0025393753, -0.004600143, 0.014310026, -0.0063734017, 0.019006578, 0.0076783826, 0.008738895, -0.017050829, -0.0014194679, 0.009103876, -0.0027993387, -7.5363496E-4, 0.005898237, -0.026402617, 0.009014352, 4.777469E-4, 0.0052543553, 0.017560426, 6.072981E-4, -0.0042799236, 0.008546074, -0.033330377, -0.011335083, 0.021100057, -0.0093655605, 0.012588415, 7.1532914E-4, 0.0011956585, -0.020053318, 0.0051958202, 0.0031712065, 0.02287676, 0.012250979, -0.0076852688, -0.006693621, -0.024102546, -0.009214059, 0.002033222, -0.0050615347, -0.01929581, -0.0017379657, 0.010357209, -0.0033468106, 0.023496538, 0.0047447584, -0.00867003, -0.011727611, 0.009854498, -0.018359253, 0.030493164, 0.019888043, 0.0031557118, -0.01165186, 0.028867964, -6.5205997E-4, 0.03988627, -0.018235298, 0.01509508, -0.00979252, 0.015108854, -0.010143729, -0.014323799, -0.03696642, -0.02660921, -0.012801895, 0.0063802884, 0.061977975, 0.0044658575, 0.01958504, 0.006920874, -0.0074098115, 0.012471346, -0.001449596, 0.016995737, 0.0059567722, -0.026333753, 0.02713258, -0.0048136227, 0.0032021955, -8.6338766E-4, 0.014819623, 0.0027649063, 0.010901237, 0.003482818, 0.017794566, 0.017464016, -0.0072514233, 0.006893328, 0.011789588, -0.035671767, -0.01724365, 0.01743647, 0.020053318, -0.005898237, -2.2617658E-4, -0.011679405, -0.03390884, -0.0031608767, 0.016568778, -0.031071626, -0.0216372, 0.004011352, -0.0038288615, 0.018056251, 0.025961885, -0.01480585, 0.012306071, -0.029198512, 0.007051716, -0.011713837, -0.018235298, -0.009344901, 0.0455607, 0.017092148, 0.0011388453, 0.03272437, -0.013903726, 0.053466335, 0.0051682745, 0.026870895, -0.02713258, -0.008215525, -0.0044865166, 0.018125115, -0.0072101043, -0.03181536, -0.007809225, -0.016610097, -0.013194422, -0.0021244672, 0.025534926, -0.027821224, 0.072775915, 0.01829039, 0.0033554188, 0.018193979, -0.020521596, 0.023221081, -6.352742E-4, 0.019282037, 5.1519193E-4, -0.018579619, -0.015246582, -0.012808782, 0.019901816, -0.04677271, -9.89926E-4, -0.020328775, 3.796151E-4, 0.024240274, -0.007871203, -0.002956005, -0.014888487, -0.009344901, 0.01863471, -0.001149175, 0.0034587153, 0.011885999, 0.0062012407, -0.009124535, -0.018882623, -2.789009E-4, 0.006004977, -0.018579619, -0.027311629, -0.01256087, 0.02817932, -0.008394573, -0.0013609331, -0.011307538, 0.03319265, 0.0039803633, -0.015769951, -0.019144308, -0.006845123, -0.039445538, 0.019516176, -0.009930249, -0.0012662444, -0.024543278, -0.028537415 ], + "id" : "b2d6d837-dc22-47ec-8de9-759823b53445", + "metadata" : { + "source" : "movies.csv" + } + }, + "06828690-b49f-4956-a44d-cdf008be2781" : { + "text" : ",/9n2tJBplPbgR2ca05hS5CKXwP2c.jpg,603692-385687-447365-640146-569094-76600-713704-594767-493529-346698-758323-976573-315162-667538-964980-677179-447277-934433-298618-868759-872585\r\n284054,Black Panther,Action-Adventure-Science Fiction,en,King T'Challa returns home to the reclusive technologically advanced African nation of Wakanda to serve as his country's new leader. However T'Challa soon finds that he is challenged for the throne by factions within his own country as well as without. Using powers reserved to Wakandan kings T'Challa assumes the Black Panther mantle to join with ex-girlfriend Nakia the queen-mother his princess-kid sister members of the Dora Milaje (the Wakandan 'special forces') and an American secret agent to prevent Wakanda from being dragged into a world war.,57.153,Marvel Studios,2/13/18,200000000,1349926083,135,Released,Long live the king.,7.391,20780,Chadwick Boseman-Michael B. Jordan-Lupita Nyong'o-Danai Gurira-Martin Freeman-Daniel Kaluuya-Letitia Wright-Winston Duke-Sterling K. Brown-Florence Kasumba-John Kani-Angela Bassett-Forest Whitaker-Andy Serkis-David S. Lee-Nabiyah Be-Isaach De Bankol��-Connie Chiume-Dorothy Steel-Danny Sapani-Sydelle Noel-Marija Abney-Zola Williams-Janeshia Adams-Ginyard-Maria Hippolyte-Marie Mouroum-J��nel Stevens-Sope Aluko-Stan Lee-Atandwa Kani-Ashton Tyler-Denzel Whitaker-Shaunette Ren��e Wilson-Christine Hollingsworth-Lucy Hockings-Bambadjan Bamba-Roland Kilumbu-Jermaine Holt-Dominique Elijah Smith-Jalil Jay Lynch-Vaughndio Forbes-Sasha Morfaw-Alexis Louder-Francesca Faridany-Mark Ashworth-Seth Carr-Jeremy Sample-Chad Crumley-Alexis Rhee-Danny Chung-Liz Elkins Newcomer-Tony Sears-Alex C. Riley Hughes-Clifford Gay-Shamel Heath-De'Jon Watts-Alex Hibbert-Tristan Timmons-Tyler Timmons-Abraham Clinkscales-Thabo Moropane-Zani Mogodi-Zenzi Williams-Trevor Noah-T. Love-Sebastian Stan,africa-superhero-based on comic-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/uxzzxijgPIY7slzFvMotPv8wjKA.jpg,/b6ZJZHUdMEFECvGiDpJjlfUWela.jpg,284053-299536-363088-315635-271110-283995-99861-284052-102899-76338-118340-100402-299537-383498-10195-1771-10138-24428-1726-299534-68721\r\n12445,Harry Potter and the Deathly Hallows: Part 2,Fantasy-Adventure,en,Harry Ron and Hermione continue their quest to vanquish the evil Voldemort once and for all. Just as things begin to look hopeless for the young wizards Harry discovers a trio of magical objects that endow him with powers to rival Voldemort's formidable skills.,131.341,Warner Bros.", + "embedding" : [ 0.0023522761, -0.039569248, -0.02675085, -0.042575862, -0.0076776147, 0.027999135, -0.0016601835, -0.032750666, -0.016496133, -0.027757531, 0.023972413, 0.024254283, 0.023663698, -0.0074360115, 0.022630172, 0.012610348, 0.026938764, -0.022026164, 0.013368714, -0.03731428, 0.008946032, -0.005634054, -0.01323449, 0.01602635, 0.002682803, 0.005321983, 0.018415539, -0.023824766, 0.0027700486, -0.009301726, 0.010268139, -0.019220881, -0.009147368, -0.023314714, -0.031596337, -8.342863E-4, -0.0044193263, -0.019234303, 0.019287994, -0.007784994, 0.0021341622, 0.009362127, -5.8974687E-4, 0.0048555546, -0.02100606, 0.0037314282, 0.0065769777, -0.01630822, -0.02279124, 0.019502752, 0.013704274, 0.033582855, -0.014818333, -0.027784375, -0.0059897476, -0.0027868266, -0.019449063, 0.01814709, -0.0020536277, 0.004986423, 0.019516176, -0.013442537, -0.026562937, -0.01826789, -0.020254407, -0.012952619, -0.015569988, -0.00966413, -0.0031425203, 0.00798633, 0.03288489, 0.023730809, 0.0051340694, -0.01496598, 0.007073607, -0.025046205, -0.021797983, 0.0030821194, -0.019999381, -0.005691099, 0.020308096, -0.012757994, -0.012838529, 0.009597018, 0.025368342, 0.006345441, -0.0045535504, 0.015650522, -0.025864972, 0.005993103, -0.003496536, 0.014053256, -0.004130745, 0.005405873, -0.0053085606, 0.007717882, -0.007892373, 0.028079668, -0.0054864073, -0.04517981, 2.4202271E-4, -0.02367712, -0.01770415, -0.010388941, -0.019999381, 0.008328602, -0.010214449, 0.003160976, 0.021153709, 0.011402332, -0.010576854, 0.013147244, 0.037341125, -0.04144838, -6.8831764E-4, -0.020643657, -0.008402425, -0.030173562, -0.0029361509, -0.033019114, 0.014791489, 0.029690357, 0.025260964, -0.01602635, 0.033985525, 0.013080132, 0.0036173377, -0.023207337, 0.0076910374, -0.0027935377, 0.044132862, -2.5418677E-4, 0.013241201, -0.0068219365, -0.010758056, 0.045206655, -0.030737305, 0.008321891, -0.023771077, -0.024522731, 0.03178425, 0.030925218, -0.006154172, -0.029797737, -0.033072803, -0.0015343485, 0.012898929, 0.0012415723, 0.012529814, 0.005657543, 0.027945444, 0.002884139, 0.01865714, 0.005946125, 0.015462609, -0.003707939, 0.013288179, -0.011959362, 0.010429207, -0.023663698, 0.005556875, -0.011120461, -0.01457673, -0.0196504, 0.006080349, 0.034415044, 0.020026226, -0.013221067, -0.008979588, 0.013865343, -0.014429084, 0.017663883, -0.0060837045, 0.013476093, -2.2985866E-4, 0.007878951, -6.669257E-4, -0.013019731, -0.02987827, -0.0013271401, -0.0022230856, 0.015717635, 0.020147027, 0.030012494, -0.0010519809, 0.002355632, 0.03495194, -0.032696974, 0.020751037, -0.008456115, 0.0031240645, 0.014643842, -0.011207707, -0.01736859, -0.6455639, -0.0012826785, 0.0076709036, -0.010670811, 0.008912476, 0.008382291, 0.016455866, 0.0011585212, -0.030254098, -0.008617183, -0.004885755, 0.008167532, 0.014885445, -0.025086472, -0.027623307, -0.021126863, 0.0028522608, -0.011898961, 0.015314963, 0.0027767597, -0.029180305, 0.011798292, 0.006026659, -0.008590338, -0.027395125, 0.008174243, 0.0014420695, 0.008784963, 0.0019764488, 0.006684357, -0.04461607, 0.013576761, 0.025609946, 0.015462609, 0.020818148, 0.0020821504, -0.010979526, 0.045072433, 0.042978536, 0.033207025, -0.01155669, 0.008677584, 0.012355322, 0.021287931, -0.02786491, 0.0020989284, 0.010952681, -0.0050904467, -4.9579004E-4, -0.0028640053, -0.0031576206, -0.0076037915, 0.011120461, 0.008717851, -0.019355105, 0.010858725, 0.021140285, -0.01278484, 0.019234303, -0.0049327333, -0.0077715716, 0.027019298, 0.005674321, 0.0033723789, 0.0022834863, 0.03613311, -0.005093802, 0.0022297967, -0.0138787655, -0.016388755, -0.005724655, 0.004405904, -0.0028572942, 0.0046206624, 0.011643935, 0.002211341, 0.032079544, -0.010878858, -0.005036757, 0.02021414, -0.0012138886, 2.4894363E-4, -0.012831817, -0.003439491, 0.013536494, -0.008650739, -0.026066307, 0.0054494957, 0.01726121, 0.0156236775, 0.015650522, -0.009999691, 0.0081205545, 0.010039958, -0.0031240645, 0.009831911, 0.005184403, -0.008972877, 0.013556628, -0.04434762, -0.020133605, -0.031918477, 0.014469351, -0.014858601, 0.027260901, 0.004640796, -0.028401805, -0.016281376, 0.046817344, -0.008805097, -9.890634E-4, 0.0066709346, -0.016670626, -0.0030066185, 0.030925218, -0.022965733, 0.019663822, 0.006694424, 0.016630357, -0.0067112017, 0.015234428, 0.021623492, -0.0012466058, -0.026213953, 0.019502752, 0.043327518, -0.007946063, -0.0020838282, -0.020858414, 0.010643966, 0.009120523, 9.2446804E-4, 0.008617183, -0.012536525, 0.0021308067, -0.0019160481, 0.024200594, 0.010409074, 0.021287931, -0.014093524, -0.0024999226, -0.0020938949, -0.009167502, 0.0055602305, -0.008630605, -0.029341374, -0.0320527, 8.0911926E-4, -4.3832537E-4, -9.823522E-4, -0.018630296, 0.00993929, -6.5518107E-4, 0.004563617, 0.021569803, 0.0024479108, -0.0071340073, -0.010234583, 0.007972907, -0.013590184, 0.0034764025, -0.007180986, -0.003513314, -0.02010676, 0.025005938, -0.006919249, -0.0049562226, 0.021865096, 0.0041039, -0.030603081, -0.0029311173, -0.0145230405, -0.0109661035, 0.016241109, -0.005845457, 0.018079977, -0.01620084, 4.22596E-4, 0.0014915646, -0.0011417432, 0.007221253, -0.0038857858, -0.016012928, 0.007912507, 0.031166822, 0.014268015, -5.75905E-4, -0.0047750203, 6.241418E-4, -0.0025502567, -0.02853603, -0.017167253, -0.008697717, -0.005150847, -0.007959485, 0.016898805, 0.006365575, 0.0075970804, -0.006972939, 0.019596709, 0.0075568133, 0.017596772, 0.005892435, -0.02171745, 5.009807E-5, -0.031569492, -0.012919064, -0.01943564, 0.008086998, -0.017569926, 0.019663822, -0.022818087, -0.0062414175, -0.023985835, -0.0068152254, 0.030066185, -0.012878796, -0.0052481596, -0.018254468, 0.0021794627, 0.016684048, -0.017489392, -0.0016132052, 0.0090467, -0.026844807, 0.0048823995, 0.010570142, 0.008288334, 0.004077055, -0.021368466, 8.9342875E-4, 7.4871845E-5, -0.0055098967, -0.0075769466, -0.012308344, 0.011294953, 0.02920715, -0.010046669, 0.04931391, -0.029690357, -0.0113553535, 0.01278484, 0.014992825, 0.0029143393, -0.0058555235, -0.02088526, 0.009764799, 0.007825261, -0.017462548, 0.043085914, -0.021636914, 0.027596463, 0.0052280263, 0.0156236775, 0.031193666, -0.022750974, 4.5258668E-4, 0.012657327, 0.038173314, 0.02389188, 0.015986083, -0.025972351, 0.026267644, 0.009496351, 0.027623307, -0.018455805, -0.0132277785, 0.005664254, 0.0011375487, -0.019408796, -0.0197712, -0.03948871, 0.023542896, -0.011811716, -0.017341746, -7.1012904E-4, 0.004573684, 5.498991E-4, -0.003590493, 0.024670377, 1.17446034E-4, -0.03334125, -2.6779268E-5, 0.031542648, -0.00469113, -0.038441762, -0.010462764, 0.003506603, -0.012576792, 0.0068991156, -0.0068991156, 0.029958805, -0.0017382012, -0.01116744, -0.038549144, 0.005905858, 0.02424086, -0.0065904004, 0.035193544, 0.022455681, -0.0050803795, 0.011221129, -0.015314963, -0.0019647044, 0.022469103, -0.003993165, 0.023865033, -0.0022415414, 0.0055870754, -0.010523165, 0.010288272, -0.017516237, -0.034656648, 0.014603575, -0.0076037915, -0.0086373165, 0.0013246235, 0.008234644, 0.014563308, 0.0015167316, -0.011429177, -0.015986083, -0.010120492, -0.004231413, 0.07156826, 0.014831756, 0.012294922, 4.8991776E-4, -0.022294613, 0.01424117, 0.013919032, -0.018751098, 0.004264969, -0.011489578, 0.015408919, -0.0032952002, 0.014898868, 0.030522546, 0.020522855, -0.008858786, -0.0040871217, -0.011033216, -0.02122082, -0.005472985, -0.010979526, -0.024589844, 0.01932826, 0.029529288, 0.017690727, -0.009167502, 0.010838591, 0.011348642, 0.002244897, 0.0017130342, -0.010348673, -0.0021794627, 9.1524015E-4, -4.869816E-4, 0.0027432037, 0.0012625449, 0.015476031, 0.014200903, 0.014080102, 0.012328478, -8.6742284E-4, 0.011274819, -0.0042817467, -0.019744355, 0.0060837045, -0.018455805, -0.0064763096, 0.018791365, 0.0222275, -0.021019485, 0.021368466, 0.008590338, -0.03183794, 7.0845126E-4, 0.014254592, 0.0013992856, -0.0016501168, -5.498991E-4, -0.0018522916, 0.010529876, 0.0013422404, -0.024321396, 0.016737737, -0.005077024, 0.013825076, -0.010140626, -0.030576235, -0.011992917, -0.0066541564, 0.011979495, -0.003657605, -0.03355601, -2.938248E-4, -0.0014227747, 0.0077715716, -0.0024999226, 0.018791365, -0.021301355, -1.4649295E-4, 0.0072011193, -0.018616874, -0.014724377, 0.0042616134, -0.033851303, -0.014281438, 0.01010707, 0.019516176, 0.015663944, -0.016080039, -0.0028807833, 0.012200965, -0.015100204, -0.01630822, 0.008744696, 0.025703903, 0.0076373476, 0.014724377, 0.017341746, 0.0123217665, 0.013731119, 0.004036788, -0.028348116, -0.01876452, -0.012952619, -0.0028606497, 0.0056038536, -0.0018002798, 0.004617307, -0.022818087, -0.0246838, -0.015341807, -0.020240985, -0.014080102, -0.007281654, 0.005858879, -5.5105258E-5, 0.020066494, -5.3018495E-4, 0.0086373165, 3.1878208E-5, -0.0026274356, -0.004677708, 0.015731057, 0.020992639, 0.004288458, 0.029475598, -0.012945908, -0.009925867, -0.009496351, 0.008348735, 0.009362127, 0.0036274046, -0.025650213, 0.017851796, -0.023274448, -0.010100359, 0.0043924814, -0.010073514, 0.0085702045, -0.0011249651, -0.021959051, 0.0022516083, 0.007449434, -0.012576792, -0.020643657, -0.026871651, 0.0059763254, -0.009731242, 0.0058219675, 0.026334755, -0.0037851178, 0.008295045, -0.025556257, -0.011388909, -0.014053256, -0.024549576, -0.036106266, -0.010288272, 0.033770766, 0.009556752, 0.033985525, -0.0102547165, 0.034280818, 0.010516454, -0.0021408733, 0.018388692, -0.014952557, -0.009818488, -0.02093895, 0.019569864, 0.011308375, 0.020563122, 0.0066877124, 0.013395559, 0.0060904156, 0.0049964897, 0.012469413, 0.00714743, -0.0037213613, -0.024307974, -0.031811096, 0.0011685881, -0.024482464, -0.008912476, -0.032240614, -0.012664038, 0.035032474, -0.0026257576, -0.013059999, -0.012643904, 0.020509433, 0.009295015, 0.008892342, -0.014200903, 0.026603203, -0.040911485, -0.0018522916, -0.015878703, -0.0075232573, 0.024052948, -0.01278484, 0.0022063076, -0.012764705, -0.014898868, -0.0020821504, 0.025677059, -0.014361972, -0.02920715, 0.026388446, -0.014268015, -0.015516299, -0.041743673, -9.0265664E-4, -0.036267333, -0.019100081, -0.0021123507, -0.00826149, 0.012046607, -0.012355322, -0.046602584, 0.031462114, -0.001773435, 0.046065688, 0.018442383, 0.032589596, 0.03556937, 0.010308406, -0.030468857, 0.005936058, -0.0149122905, -0.012167409, 0.03210639, 0.027650151, -0.03484456, -0.013194223, 4.6013677E-4, -0.0069326716, -0.026898496, -0.038495455, 0.025502566, 7.1851804E-4, 0.026254222, -0.021865096, 0.0060233036, -0.027005875, 0.0064091976, -0.023838188, 0.007617214, 0.013308313, -0.04088464, -0.02931453, -0.015583411, -0.011382198, 0.0051172916, 0.008456115, -0.03709952, 0.018402115, -0.014858601, 0.01496598, -0.019274572, 0.0024764335, 0.03795856, -0.013596895, 0.01032854, 0.020965794, 0.009060122, 0.0041072555, 0.014885445, 0.014939135, 0.0312742, -0.011623802, 0.021301355, -2.703356E-4, 0.02072419, 0.007281654, 0.019220881, -0.022455681, -0.021019485, -0.027448814, 4.823676E-4, 0.024992516, 0.02065708, -0.03009303, -0.017288055, -0.009093679, -0.019704089, 0.0041206777, -0.012281499, 0.013549916, -0.030361477, -0.010697655, 0.0030502412, -0.0022599972, 0.0061441055, 0.0018321581, -3.710036E-4, -0.013207645, 0.030039338, -0.003909275, 0.0017700795, -0.008912476, -0.0043689925, -0.034925096, -0.020428898, -0.023878455, -0.025005938, 0.007194408, -0.02010676, -0.0017667238, -0.019596709, -0.019395374, -0.0010654033, -0.00714743, 0.005801834, -0.00452335, 0.036321025, -0.015449187, -0.011979495, -0.001504987, 0.030039338, -0.0028723944, 0.0029613178, 0.009972846, 9.4879617E-4, 0.015677368, -0.01468411, 0.0156371, 0.004278391, -0.018952433, -0.017341746, 0.015798168, 0.023771077, 0.007912507, -0.004832065, -0.03857599, 0.016965918, -0.015771324, 0.019704089, -0.0076037915, -0.009254747, 0.037072677, 0.013757964, 0.03809278, 0.011851982, -0.012435857, -0.026817963, 0.0098252, -0.016321642, -0.010147337, -0.009254747, 0.00748299, 0.025730748, 0.004865621, 0.00558372, -0.035998885, -4.0393046E-4, -0.022657016, -0.032858044, -0.0086373165, 0.036159955, 0.02926084, 0.017556503, -0.017113565, 0.026119998, -0.010422496, -0.0014529752, -0.011858693, -0.022375146, 0.005811901, -0.0020301386, 0.020093339, 0.017167253, -0.032804355, 0.006231351, 0.02189194, -0.0031945321, 0.00633873, 0.0403209, -0.023220759, -0.01468411, -0.012335189, 0.015731057, -0.0076776147, -0.008617183, 0.024187172, -0.033851303, -0.010294983, -8.373273E-5, 0.024549576, 0.008187667, 0.017717572, 0.013106977, -0.010711078, 0.0027197145, -0.011979495, -0.025328076, -0.004365637, -0.014080102, 0.024281127, -1.4492E-4, -0.0030082962, 0.03267013, 0.0279186, -0.003270033, 0.012274788, -0.00887892, 0.014321704, -0.0055468082, -0.009657419, -0.007046762, 0.040616192, -0.021301355, 0.01652298, -0.027757531, -0.007107163, -0.013274757, 0.0043924814, -0.023583163, 0.030790994, -4.1462644E-4, -0.03473718, -5.725494E-4, -6.379836E-4, -0.002119062, -0.006634023, -0.005550164, -0.023865033, 0.0023992546, -4.2553214E-4, -0.0010788257, -0.008986299, -0.012711016, -4.6936466E-4, -0.01680485, -0.0014848534, 0.022079853, 0.18855792, -0.006892404, 0.021583226, 0.046683118, -0.0055098967, 0.025193851, 0.022710707, 0.010100359, -0.007550102, 0.009892312, -0.02802598, 0.0075232573, -0.005701166, -0.002867361, 0.01424117, 0.0030502412, -0.024697222, -0.014925713, -0.013650584, -0.0067145573, -0.019140348, -0.0030032627, -0.0062749735, -0.012268077, 0.014321704, 0.0019244371, -0.0026442136, -0.0052011814, 0.015086781, -0.016294798, -0.013046577, -0.027596463, 0.0025938796, 0.022160389, -0.018818209, -0.0145230405, 0.012818395, 0.016348487, -8.74134E-4, 0.019059813, -0.0136170285, 0.008939321, -0.009375549, -0.0026609914, 0.0075433906, 0.034200285, -0.021368466, 0.0038522298, -0.012945908, 0.0023438872, -0.04131416, -0.014496196, 0.025086472, 0.038173314, -0.024052948, -0.0076843263, 0.013194223, 0.007355477, -0.007939352, -8.0911926E-4, 0.002454622, 0.029287685, -0.030871527, 0.012576792, 0.008234644, 0.011650646, -0.041233625, -0.004711264, 0.021059752, -0.026710583, -0.007999753, -0.018053133, -0.0029126615, -0.0050568907, -0.0156236775, -0.01597266, -5.402517E-4, 0.0030233965, 0.013174089, 0.007892373, -0.0061675943, -0.026388446, 0.004516639, -0.0063890642, -0.015408919, -0.02272413, -5.4612407E-4, -0.012529814, -0.013415692, 0.0027935377, -0.011120461, -0.011207707, -0.019381952, 0.0034193574, -0.0017549793, 0.0027968932, 0.025301231, 0.0164156, -0.013308313, -0.012100297, -0.033421785, 0.019529598, 0.02630791, -0.010496319, -0.026871651, -0.021704027, 4.9159554E-4, 0.011898961, 0.021838252, -0.010395652, 0.010784902, -0.04053566, -0.0041743675, -0.011147306, 2.4160327E-4, 0.02848234, -0.015422341, -0.010711078, 0.034146596, -0.021247664, -0.0015561599, -0.01954302, -0.007080318, -0.0072346753, -0.010912414, -0.019006124, -0.013482804, 0.013657296, 0.007751438, -0.021824827, 0.02339525, -0.028240737, -0.0037482062, 0.009133945, 0.005513252, 0.02669716, 0.026898496, -0.009429239, -6.388225E-4, -0.012294922, 0.002496567, -0.019757777, 0.015959239, 0.009140657, 0.001959671, -0.025113316, -0.0072615203, -0.0066541564, -0.0074360115, -0.030817838, -0.025757592, -0.016080039, -0.004395837, -0.011697625, 0.028240737, 0.01418748, -0.019032968, -0.014952557, -0.007180986, 0.046468362, -0.01943564, 0.026871651, 0.019355105, -0.007959485, -0.03500563, 3.5842013E-4, -0.17169939, 0.025113316, 0.008295045, -0.02507305, 0.030629925, 0.017905487, 0.009261458, 0.015704213, 0.0033388229, -0.00826149, 0.0069393828, 0.0066575124, -0.044642914, -0.011664068, 0.00213584, -0.005405873, -0.0019093369, 0.04042828, 0.023153646, -0.008402425, 0.049609203, -0.005818612, 0.010301694, 0.014053256, 0.017824952, -0.013308313, 0.013972722, 0.0098856, -0.016764581, -0.004785087, -0.006214573, -0.010476186, 0.021918785, -0.0010117136, -0.006378997, -0.0028891724, -0.017771263, -0.0077313045, -8.991962E-5, -7.633992E-4, 0.046844188, 0.013442537, 0.030629925, 0.0022851643, 0.016536402, 0.03132789, 0.014778066, -0.015073359, 0.013415692, -0.013375425, 0.015569988, -0.03132789, 0.026603203, 0.0026408578, 0.019086657, 0.016630357, -0.017153831, -0.0077245934, 0.0029898405, -0.004083766, -0.029851425, 0.015328385, 0.0019311483, -0.017126987, -0.0052246707, -0.010167471, -0.00938226, 0.023596585, -0.030683614, 0.009946001, -0.028133357, 0.01429486, 0.006986361, 0.0072615203, -0.008040019, -0.014106946, -0.02848234, -0.008697717, -0.0072279642, 0.030254098, -0.01932826, 0.029582977, -0.015127049, 0.012435857, 0.013449248, -0.006952805, 4.6684797E-4, 0.003758273, -0.010751345, 0.0026794474, 0.0015871992, -0.018697409, -0.025771014, -0.013650584, 0.016402178, 0.012066741, 0.007281654, -0.010435918, -0.004842132, -0.010852014, 0.004063633, -0.004446171, -0.019784624, 0.005070313, 0.038441762, 0.02233488, 0.014147214, 0.023932146, 0.038549144, -5.247321E-4, -0.0015100203, -0.0030653414, 0.028294427, -0.003530092, 0.0029713847, 0.018603452, 0.0023422095, -0.015019669, -0.002598913, -0.0037012277, 0.049555514, -0.014952557, -0.0113553535, -0.006660868, 0.007127296, -0.025515988, -0.09776879, 0.007308499, 0.012543236, 0.033770766, -0.01144931, 0.015207583, -0.009013144, 0.019623553, -0.0024076437, 0.03865652, -0.0010360418, -0.024334818, 0.017529659, -0.0035032474, 0.027274324, 0.012596926, -0.021529535, -0.008892342, 0.005405873, 0.036589473, -0.013945878, -0.007932641, 0.010033247, -0.023610007, -0.018294737, 0.0033220449, -0.041233625, 0.019019546, 0.009778221, 0.010194316, 0.004026721, -0.015234428, 0.012214387, -0.0343882, -0.016764581, -0.016214263, -0.022442259, -0.023556318, 0.027059566, -0.05226684, 0.010154048, 0.002926084, -0.0028036046, -0.024777757, 0.010402363, -0.0022851643, -0.025274387, 0.022683863, 0.002496567, -0.04244164, -0.0014059967, -0.017449124, -0.041018866, 0.0029562844, 0.020979216, -0.0041743675, 0.021032907, 0.0064830207, -0.0045367726, -0.009630575, -0.004496505, -0.0014219359, -0.021261087, 0.017905487, 0.020308096, 0.0023640208, -0.009905734, -8.544199E-4, 0.021918785, -0.001589716, -2.3258508E-4, 0.0076373476, -0.042065814, -0.023328137, -0.025596524, 0.0075702355, -0.030361477, 0.004879044, 0.022536216, -0.03256275, 0.010758056, -0.02194563, 0.0032750664, -0.021234242, 0.009335281, 0.015113627, 0.01574448, 0.020428898, 0.009174213, -0.030361477, 0.008328602, 0.028965548, 0.006540066, -0.021865096, 2.2629334E-4, 0.038817592, 0.026616625, 0.022039587, 0.018965857, 0.017006185, -0.01971751, -0.002588846, -0.078762665, 0.020415476, -0.004583751, -0.0077984165, -0.017301477, 6.589561E-4, 0.0055300305, -0.0072615203, -0.004030077, 0.021985898, -0.0055635865, 0.023878455, -0.009060122, -0.0067548244, -0.0023992546, 0.012872085, 0.0029982293, -0.006154172, -0.005959547, -0.00625484, -0.01390561, 0.008368868, 0.051864166, -0.0088319415, -7.558491E-4, 0.010992949, 0.00882523, 0.013543205, -0.018616874, -0.0044361046, 0.036777385, -0.020066494, -0.0010326862, 0.019167192, -0.008415847, -0.030173562, 0.0029948738, -0.010657389, 0.021650337, 0.005459563, -0.0050803795, -0.027784375, -0.008033308, -0.012704305, -0.011670779, 0.034307662, -0.010409074, 0.01926115, 0.014442506, 0.012180831, 0.033636544, 0.008422558, -0.009402393, -0.015019669, 0.016724315, -0.018106822, 0.043757036, 0.009946001, 0.010435918, -0.028777633, 0.02507305, 0.010174182, 0.03444189, -0.014925713, -0.0011132206, 0.00921448, 0.023046266, -0.015569988, -0.0049562226, -0.03304596, 0.013408981, -0.01726121, 0.016294798, 0.024254283, 0.013281468, 0.014939135, -0.021381889, -7.94858E-4, 0.0027046143, 0.019355105, 0.009449372, -0.011865404, -0.030066185, 0.023207337, 0.011026504, 0.02936822, -0.023234181, 0.011603668, -1.8183162E-4, 0.013549916, -0.015288117, 0.009597018, 0.012529814, 0.0082480665, 0.008234644, 0.0020368497, -0.0114828665, -0.014952557, -0.0037716953, 0.02781122, -0.021797983, -0.0066709346, -0.018536339, -0.009999691, -0.03484456, 0.0010612088, -0.009422528, -0.030280942, 0.0014185803, 0.02178456, 0.027019298, -0.012241232, -0.012851952, 0.010496319, -0.054333888, 0.02595893, -0.026670316, -0.0016509556, -0.0115499785, 0.042951692, 0.014415662, 0.0055635865, 0.034307662, -0.003530092, 0.024133481, 0.023905301, 0.023945568, -0.013053288, -0.008234644, 0.009912445, -0.011107039, 0.0036374715, -0.02742197, 0.009362127, -0.018992702, 0.0038455187, 0.0087648295, 0.014509618, -0.005244804, 0.061904125, 0.023878455, -0.015395497, 0.012724439, -0.029663512, -0.0050501795, 0.0027851488, 0.01581159, -0.013247913, -0.016254531, 1.553014E-4, -0.03054939, -0.011086905, -0.033260714, -0.017623616, 0.017247789, 0.010979526, 0.009657419, 0.0032213768, -0.014818333, -0.0011484544, 0.004137456, 0.02591866, 0.009583596, -0.021180553, -0.025140163, 0.039327644, 8.65745E-4, -0.0028136712, -0.03199901, -0.0027801152, -0.019019546, -0.00566761, -0.005311916, 0.026616625, -0.0064830207, -5.276682E-4, 0.009932579, 0.015194161, 0.020804726, -0.012603637, 0.013972722, -0.010643966, -0.016402178, 0.0013346903, -0.010959392, 0.018952433, -0.017637039, -0.004362281 ], + "id" : "06828690-b49f-4956-a44d-cdf008be2781", + "metadata" : { + "source" : "movies.csv" + } + }, + "7c49484d-5815-43d8-ab35-eea0c6f96756" : { + "text" : "417859,Puss in Boots,Action-Animation-Adventure-Comedy-Family,en,Long before he even met Shrek the notorious fighter lover and outlaw Puss in Boots becomes a hero when he sets off on an adventure with the tough and street smart Kitty Softpaws and the mastermind Humpty Dumpty to save his town. This is the true story of The Cat The Myth The Legend... The Boots.,129.022,DreamWorks Animation,10/27/11,130000000,554987477,90,Released,Live for danger. Fight for justice. Pray for mercy.,6.521,3204,Antonio Banderas-Salma Hayek-Zach Galifianakis-Billy Bob Thornton-Amy Sedaris-Constance Marie-Mike Mitchell-Guillermo del Toro-Conrad Vernon-Chris Miller-Rich Dietl-Ryan Crego-Tom Wheeler-Tom McGrath-Bob Joles-Latifa Ouaou-Bob Persichetti-Jessica Schulte-Nina Barry-Sergio Bruna-Rebecca Davis-Roberto Donati-Jossara Jinaro-Lara Jill Miller-Joshua Rush-Julie Wittner,rebel-small town-fairy tale-spin off-wild west-talking cat-pets,/n4UkIqNYSTr4DPoHCVfLrL8mbre.jpg,/eSdpZZQubPSZ47qppFfUPbKsWlw.jpg,83201-810-899579-10192-315162-809-10527-80321-41513-65714-49444-5559-172385-15512-46195-11619-22794-632065-12222-13053-737853\r\n381890,The Mermaid,Comedy-Fantasy-Romance,zh,A playboy business tycoon Liu Xuan purchases the Green Gulf a wildlife reserve for a sea reclamation project and uses sonar technology to get rid of the sea life in the area. Unknown to him the Green Gulf is the home of merpeople and the sonar has caused many of them to succumb to illness or die. Xuan's business ventures in the area are threatened when he crosses paths with the mermaid Shan who is sent to avenge her people.,22.619,China Film Group-Edko Films Ltd.,2/8/16,60720000,553810228,93,Released,\"Half Fish, Half Human, 100% Assassin\",6.4,285,Lin Yun-Deng Chao-Kitty Zhang-Show Lo-Tsui Hark-Wen Zhang-Kris Wu-Lee Sheung-Ching-Lu Zhengyu-Chiu Chi-Ling-Mei'e Zhang-Gao Shuang-Linah Matsuoka-Barbie Liu-Xu Zhenzhen-Luo Hong Ming-Kong Lian-Shun-Tenky Tin Kai-Man-Wilson Chin-Lam Tze-chung-Zheng Jifeng-Fan Shu-Zhen-Ivan Kotik-Pierre Bourdaud-Yang Neng-Sun Jialing-Li Ye-Qing-Kabby Hui-Zeng Yilian-Zhou Shuai,mermaid,/8YVB8VxQqx3J1FtOVvoHybBKNPS.jpg,/gSz01IaN06BrCMFwCbUeBPh9X1q.jpg,9470-11770-140300-269149-396535-259316-49519-177572-128-10681-297761-82702-328387-8392-87827-321612-293660-264660-22-14160-271110", + "embedding" : [ -5.843135E-4, -0.048636343, -0.012293218, -0.027899502, 0.0060896026, 0.024881527, 0.0031168973, -0.009483147, -0.008584462, -0.043941714, 0.029777352, 0.033989105, 0.018510247, 0.0021645587, -0.005687206, 0.01403023, 0.017262816, -0.007806495, 0.019744262, -0.034928028, -0.004701334, -0.010851297, -0.0329697, -4.7030108E-4, 0.0029525855, -0.0032174964, 0.030126097, -0.016511675, -0.013486994, -0.00961728, -0.0011845551, -0.0039904336, -0.013446755, -0.0015785685, -0.015452031, -0.0057140323, 0.019596716, -0.035330426, 0.018362701, -0.01444604, 0.009563627, 0.009208176, -0.019167494, -0.0028519863, 0.0018342581, 0.011327466, -0.004272111, -0.014888676, -0.0055061276, 0.03447198, 0.014969155, 0.038200855, -0.015452031, -0.013775378, -0.006173435, -0.015934907, -0.013922924, -0.016538503, 0.006069483, -0.0073303254, 0.016042214, -0.004724807, -0.01652509, -0.02734956, -0.014083883, -0.014620411, -0.028462857, -0.0160288, 0.0077796686, -0.012816333, 0.033345267, 0.020280791, 0.012816333, 0.005365289, 0.03189664, -0.0040541464, -0.03626935, 6.37652E-5, -0.0027648003, 0.005140617, 0.021675766, -0.0133662755, 0.005170797, 0.0030079149, 0.01840294, 0.026504526, 2.002552E-4, 0.03219173, -0.03680588, 0.0032309098, 0.0058347513, 0.026464287, -9.0623077E-4, 0.022051336, 0.02297685, 0.013715019, -0.026826443, 0.012541362, -0.01644461, -0.03755702, 0.019583303, -0.0088326065, -0.009456322, -0.010113569, 5.5161875E-4, 0.006763617, -0.007048648, -0.009107578, 0.024868112, 0.021622114, -0.007370565, 0.0013270706, 0.017410362, -0.021890378, 0.0167397, -0.020656362, 0.015358139, 0.0063343938, -0.0015224006, -0.023298766, 0.010710457, 0.0353036, 0.0045973817, -0.020334445, 0.036618095, 0.025082724, -0.009838598, -0.025257096, -0.024170626, -0.0176518, 0.047026753, -0.0047918735, 0.031199154, -0.0056737927, -0.02993831, 0.054269895, -0.044907466, 0.0043022907, -0.012212738, -0.03417689, 0.019878395, 0.0262765, -0.011428065, -0.009074044, -0.0039233672, -0.00238923, 0.01565323, -0.014915503, 0.009228297, 0.020763667, 0.036832705, 0.005046725, 0.010281234, 0.019221148, 0.021514807, 0.00520433, 0.012621841, 0.006146609, 0.007155954, -0.016001973, 0.006927929, 0.0064081666, -0.005345169, -0.030072443, 0.017812759, 0.018724857, 0.038200855, -0.0067937966, -0.0047650468, 0.006213675, 8.970092E-4, 0.01865779, -0.015344726, 0.031279635, 0.007397392, 0.012232858, -0.013761966, -0.010187342, -0.0091209905, -0.005479301, 0.00718278, -0.011870701, 0.016390957, 0.035786476, -0.016954312, 0.00436265, 0.0038261216, -0.025793625, -0.00878566, -0.010220875, -0.011226866, 0.028167766, 9.515004E-5, 0.0072431397, -0.65027297, -0.01648485, -0.0121993255, -0.020227138, 0.0126084285, 0.0054055285, -0.0069212224, -0.0042553446, -0.028462857, 4.5138633E-5, -0.03286239, 0.018537072, 0.034740243, -0.008222305, -0.01557275, -0.008530809, 0.012527949, -0.023419484, 0.010422073, 0.0014570112, -0.0044766627, 0.003447198, 0.00642158, 0.015438618, 0.005435708, -0.015814189, -0.0010051533, -0.008664941, 0.0255656, -0.0017906651, -0.018952882, 0.018952882, 0.016538503, -0.0020186899, 0.03259413, -0.0047382205, -0.021125823, 0.044290457, 0.045739084, 0.04426363, -0.027497103, -0.009932491, 0.019247973, 0.01652509, -0.023298766, 0.012534656, 0.028838426, 0.011099441, -0.005338462, -4.200015E-4, -0.0018577311, -0.004697981, 0.016645808, -0.012501122, -0.01284316, -5.5413373E-4, 0.008275958, -0.042090688, 0.017088445, 0.0018694678, 0.0067904433, 0.027872674, 0.0013329389, 0.012065193, -0.013077891, 0.036483962, -0.010140396, -0.0144058, 0.015908081, -0.023634097, 0.0031034842, 0.004486723, -0.021125823, 0.0126084285, -0.00199354, 0.016605569, 0.007907094, 0.012266391, -0.00441295, 0.0027832435, -0.0021494688, 0.004537022, -0.0069011026, 0.016927486, 0.02285613, -0.0031370171, -0.027175186, 0.018926056, 0.01810785, -0.0025183323, 0.012548069, 0.014835023, 0.0025233624, 0.0053216955, -0.021756245, 0.007853441, -0.012118846, 0.011917647, 0.012306631, -0.060413152, -0.012454176, -0.017759105, 0.0041580987, 0.018630965, 0.028301898, 0.0035746235, -0.019033361, -0.0088326065, 0.008121706, -0.022641517, -0.0028855193, 0.0049461257, -9.6575194E-4, -0.02006618, 0.011508544, -0.029240822, 0.034820724, 0.0014016817, 0.019489411, 0.009281949, 0.005422295, 0.007900388, 0.0050232513, -0.025109552, -0.00961728, 0.024921766, -0.014244841, 0.016203173, 5.511996E-4, 0.014633825, 0.012501122, -0.012159086, 0.018751685, -0.017329883, -3.4895333E-5, 0.0066764313, 0.034981683, 0.0077126026, 0.027711716, -0.0019868335, -0.019838154, -0.019516237, -0.023325592, -0.0034606112, 0.005861578, -0.019932047, -0.0353036, -0.007565057, 0.0055832537, 0.014311908, -0.012635255, -0.024116972, 5.1347486E-4, 0.0033415689, 0.009583747, 0.009255123, -0.021327022, -0.0076589496, 0.013520528, -0.012152378, 0.014499692, 0.025632666, -0.01944917, -0.0011325789, -7.8593096E-4, 0.0013698252, -0.0017806052, 0.015264247, -0.013332742, -0.043029614, 0.0113945315, -0.015639817, 0.00602589, 0.01844318, -0.01818833, 0.03364036, -0.018926056, -0.011790222, -0.0095300935, -0.0057676854, 0.01719575, 0.0070419414, -0.023969427, -0.0064953524, 0.016699461, 0.015961735, 0.013909511, -0.0068474496, -0.024626674, -1.4031488E-4, -0.011709742, -0.0011208423, 9.037158E-4, 0.00561008, -0.01723599, 4.4640878E-4, 0.009375842, 0.01790665, 0.021367261, 0.011293933, 0.02527051, 0.012125553, -0.009349016, -0.00803452, 0.008812486, -0.045765914, -0.001605395, -0.018644378, 0.023795055, -0.0025183323, 0.023084154, -0.0067133172, -0.013701606, -0.0122596845, 0.008457037, 0.016136106, -0.006002417, 0.0033046824, -0.01723599, 0.004677861, -0.0065288856, -0.016618982, 0.010287941, 0.0343915, 0.0071894866, 0.0053082826, 0.021072172, -0.01557275, -0.0036215698, 0.0033264789, -0.013225436, -0.0036148631, 0.010207462, -0.015264247, -0.008027813, -0.004785167, 0.038817864, -0.009094165, 0.043834407, -0.0063612205, -0.0065087657, 0.028167766, 0.010495846, 4.2838475E-4, -0.01205178, -0.013104717, 0.008732007, 0.025994824, 0.0071090073, 0.03447198, -0.02052223, 0.011649383, -0.009382549, 0.00641152, 0.00847045, -0.012165792, -0.013191904, 0.019301627, 0.038603254, 0.018335873, 0.016095866, -0.01244747, 0.011360999, 0.01195118, 0.025122965, 4.1958233E-4, -0.013540647, -0.013842445, -0.009704466, -0.036940012, -0.016887246, -0.0076254164, -0.0023322238, 0.011649383, 3.904505E-4, -0.007343739, -0.012950465, -0.004456543, 0.008054639, 0.027845848, -0.024291344, -0.03559869, 0.021179477, 0.009335603, -0.019744262, -0.00318564, -0.026330154, -0.0067133172, -0.027738543, -0.0047616935, -0.008852726, 0.009677639, 0.003953547, 0.003306359, -0.002080726, -0.025122965, 0.007833322, -0.019221148, -0.00238923, 0.018241981, -0.007015115, -0.008188772, -0.009308776, 0.003514264, 0.02311098, -0.015465445, -0.0034002517, -0.003272826, 0.008450329, 0.017249404, -0.013815618, 0.012306631, -0.037691154, 0.01844318, -0.033801317, -0.0029995318, -0.0037925884, 0.003765762, 0.02669231, 0.0051875636, -0.014727717, -0.029804178, -0.027765369, 0.005962177, 0.06475903, 0.020830734, 0.012366991, -6.513796E-4, -0.005368642, -0.009375842, -0.006609365, -0.0067971502, -0.0061365487, 0.002463003, 0.018765097, -0.0080144, 0.020012526, 0.0058213384, 0.025377816, -0.010100156, -0.0035444438, -0.0059856502, 0.0014888676, -0.021944031, -0.013560767, -0.009027098, 0.02235984, 0.041902903, -0.015143528, -0.013694899, 0.02681303, 0.017007966, -0.0013413222, 0.0028100698, -0.008376557, 2.9446214E-4, 0.0077260155, 5.4784626E-4, -0.012420643, 0.0020287498, -7.293439E-4, 0.020039354, 0.0072632595, -0.005190917, -0.012293218, 0.021756245, 0.004235225, -0.0070955944, 0.024251105, -0.02918717, -0.014043643, 0.01711527, 0.047187712, -0.04080302, 0.03192347, 0.00886614, -0.017329883, 0.0072029, 0.030206576, 0.0031839635, -0.013191904, -0.017946891, -0.013627833, -0.020133246, 0.013419928, -0.024613261, 0.011488425, -0.0053015756, -8.912457E-5, -0.01122016, -0.02447913, -0.007062061, -0.023218287, 0.021595286, -0.010898243, -0.03310383, -0.01844318, -0.008289371, 0.0047818134, -0.004191632, 0.021970857, -9.0455415E-4, 0.0023942601, 0.008188772, -0.021716006, -0.042358954, -7.1886485E-4, -0.028784774, 0.0058716377, 0.007370565, -0.017262816, 0.012232858, -0.005348522, 2.823064E-4, 0.015881255, -3.606899E-4, -0.0064551127, 0.0039032474, 0.041580986, 0.0038060017, 0.012983998, 0.013580887, 0.010831176, -0.002743004, 0.014848436, -0.020924626, -0.020253964, -0.025069311, 2.3997092E-4, -0.02376823, -0.0017772518, 0.0075583505, -0.01677994, -0.023754815, -0.019771088, -0.020146659, 0.013480288, -0.0032694729, 0.002442883, 6.4299634E-4, 0.0059923567, 0.027161773, -5.851518E-4, 0.008141826, -8.0940407E-4, 0.018483419, 0.0013463522, 0.027161773, -0.02077708, 0.034579284, -0.019636957, -0.016229998, -0.009570334, 0.02364751, 0.0031923468, 0.01923456, -0.018832164, -0.0060460097, -0.039193433, -0.022185469, 0.013627833, -0.0018661144, -0.0105763255, 3.82696E-4, -0.018349288, 0.011984713, 0.0134266345, -0.008752127, -0.0040776194, -0.026611831, -0.0038630078, -0.012729147, 0.0062539144, 0.037154622, 0.0030733044, 0.0088929655, -0.010717164, 7.230565E-5, -0.018376114, -0.03039436, -0.01931504, -0.015492271, 0.035384078, 0.01161585, 0.032755088, 0.027202014, 0.015961735, 0.0019633602, -0.0073370324, 0.0136546595, -0.01840294, -0.0019247973, -0.043619797, 0.011240279, 0.008114999, 0.030823583, -0.0035511504, 0.012675495, -0.00926183, 0.010583032, 0.013493701, 0.005948764, -0.006860863, -0.0223196, 0.001045393, -0.012983998, -0.022829304, 0.0108647095, -0.022172056, -0.02348655, 0.024465716, -0.010697044, -0.0077528423, -0.003432108, 0.026705725, -0.01078423, 0.0070955944, -2.3431222E-4, 0.0018694678, -0.020884385, -0.013077891, -0.024184039, -0.0024998891, -0.0078467345, -0.018483419, 0.01640437, -0.018121263, -0.007055355, 0.003354982, 0.017088445, -0.019341866, -0.048019335, 0.014902089, -0.003567917, -0.012735854, -0.04002505, -0.009724585, -0.037691154, -0.0040004933, -0.0095904535, -0.018040784, 0.0094697345, -0.024157213, -0.02768489, 0.0032191733, -0.021581873, 0.03213808, 0.009858718, 0.06336406, 0.04708041, 0.0011082675, -0.028114112, 0.01682018, -0.012004834, -0.014325321, 0.025391228, 0.023956014, -0.0059219375, -0.004074266, 0.001479646, -0.009791652, -0.045309864, -0.040695716, 0.01761156, 0.036618095, 0.024251105, -0.0150496345, -0.004070913, -0.006250561, 0.009463028, -0.016605569, 0.007967453, -0.010703751, -0.014620411, -0.019489411, -0.0077126026, -0.01761156, 0.007149247, 0.0029425255, -0.024237692, 0.027202014, -0.02164894, 0.006434993, -0.012299924, -0.020803906, 0.018563898, -0.011890821, 0.021595286, 0.010958602, 3.562887E-4, 0.009328895, 3.3134848E-4, 0.0058179847, 0.03664492, -0.0066764313, 0.002607195, -0.0031990535, -0.010972016, -0.001400005, 0.01523742, -0.018121263, -0.023888947, -0.02356703, -0.013004119, 0.027497103, 0.014392387, 0.009496561, -0.0075248173, -0.01911384, -0.005445768, 0.008457037, 0.005787805, 0.0038194149, -0.037154622, 0.019395519, -0.017370122, -0.0012080283, -0.0075114043, -0.014392387, 0.008926499, 0.0027580936, 0.025753386, -0.0023489904, -0.003418695, -0.024076734, -0.015291072, -0.043002788, -0.017933477, -0.0044498364, -0.006297508, 0.0063411007, -0.023137808, 0.019596716, -0.010609859, -0.013118131, -0.0120786065, 0.005854871, -0.007900388, 0.009047218, 0.017665213, -8.936559E-4, -0.015908081, 0.01280292, 0.033452574, 0.0039837267, -0.007424218, 0.017182337, 0.010120275, 0.050567847, -0.03522312, 0.016042214, 0.014164362, -0.025498534, -0.0334794, 0.0033751018, 0.024036493, 6.082058E-4, -0.0074376315, -0.03680588, -0.014767957, -0.010710457, 0.016578741, -0.017799346, 4.4431296E-4, 0.023526791, 0.01523742, 0.0041346257, 0.026142368, -0.016981138, -0.016927486, -0.012890106, -0.013386395, -0.015371552, -0.0054625347, -0.004533669, 0.025780212, -3.426659E-4, 0.0056402595, -0.025927758, 0.014969155, -0.017075032, -0.026410634, -0.018698031, 0.017222576, 0.03460611, -0.007571764, 0.0040675593, 0.007913801, -0.008973446, 0.021367261, -0.015438618, -0.010341594, 0.0068474496, 0.0025652787, 0.028409204, 0.013647953, -0.024975419, -0.0048656464, 0.0060460097, 0.014915503, 0.011072614, 0.04729502, -0.039408047, -0.017249404, -0.019462585, 0.006709964, 0.030313881, -0.004325764, 0.024626674, -0.03626935, -0.022762237, 0.012098726, 0.017464014, 0.0015299456, -0.008497276, -0.0055296007, -0.022118403, -0.0051003774, -0.014432627, -0.008188772, -0.009047218, -0.01565323, 0.014204602, -0.0021109057, -0.0060393033, 0.012326751, 0.009932491, -0.024532782, -0.0119713005, 0.0010269497, 0.0023322238, -0.005489361, -0.0037925884, 0.0043861233, 0.021608701, -0.04201021, 0.020012526, -0.023379246, -0.0128834, -0.0068440964, 0.028999384, -0.019087015, 0.032379515, 0.019046774, -0.049950838, -0.002771507, -2.6551368E-5, 0.009308776, -0.0013857535, 0.014244841, -0.032674607, 0.01403023, -0.0071894866, 0.0013840768, -0.03039436, -0.014124122, -0.0018795277, -0.0058146315, -0.014995982, 0.020481989, 0.17780566, -0.015908081, 0.013205317, 0.03734241, 0.0012390463, 5.8766676E-4, 0.017142097, 0.016873833, -0.005241216, 0.012132259, -0.0052982224, 0.008738714, -0.002303721, 0.007692483, 0.011381119, 0.010978722, -0.020481989, -0.0103483, 0.0054725944, -0.022172056, -0.0063276873, -0.005828045, -0.0049595386, -0.01665922, 0.0160288, 0.0071090073, -0.007907094, 0.006927929, 0.019918634, -0.0011820402, -0.021461155, -0.0043760636, -0.00847045, 0.002563602, -0.02281589, -0.00482876, 0.0012692261, 0.0144058, 0.014566759, -0.0039032474, -0.015492271, 2.2152773E-4, -0.010368421, -0.0018258748, 0.0037691153, 0.013829032, -0.023674335, 0.007947334, -0.01157561, 0.008510689, -0.021018518, 0.0091813505, 0.022386666, 0.014177775, -0.016283652, -0.016216585, 0.013560767, -0.0061533153, 3.5335455E-4, 0.010589738, 0.025364403, 0.030072443, -0.03913978, 0.019891808, -0.0047918735, 0.013829032, -0.033801317, -0.022762237, 0.010737284, -0.036779054, -0.021018518, -0.021219717, -0.007886974, 0.013004119, -0.017088445, -0.020602709, -0.0075114043, 0.015693469, 0.015331312, 0.0144058, -0.023888947, -0.02918717, -0.0039837267, -0.015854428, -0.0033818085, -0.013077891, 0.004087679, -0.018899228, 0.0041681584, 0.0014779693, -0.012460883, -0.0148216095, -0.002828513, 0.0071224207, 6.991642E-4, 0.021917203, 0.013285796, 0.028972559, -0.0037422888, 0.0036148631, -0.024988832, 0.01723599, 0.03500851, -0.0034773778, -0.009623987, -0.008664941, 0.0011434772, -0.007276673, 0.023634097, -0.011367706, -0.0015316223, -0.03559869, -0.011863994, -0.019891808, 0.012943759, 0.014124122, 0.02176966, 0.01238711, 0.021407502, -0.009080751, -0.004389477, -0.02269517, 0.018590726, 0.012333457, -0.007913801, -0.024586435, -0.02052223, 0.016216585, -0.0020756961, -0.03331844, 0.024251105, -0.032245386, -0.007565057, 6.203615E-4, -0.019784503, 0.031842988, 0.027872674, 7.129966E-4, 0.015492271, 0.007551644, 0.0012315015, -0.009570334, -0.008524102, 0.022534212, 0.016471436, -0.029884657, 0.022480559, 0.0071224207, -0.0027832435, -0.0394617, -0.022681758, -0.004064206, 3.8536815E-5, -3.688636E-4, 0.038254507, 0.006002417, -0.032459997, -0.026531352, -0.011709742, 0.03575965, -0.032996524, 0.005707326, 0.01120004, -9.892251E-4, -0.01956989, -0.020481989, -0.17168924, 8.542545E-4, 0.017370122, -0.013225436, 0.014164362, 0.013339449, 0.016645808, 0.006894396, 0.01205178, -0.030877236, 0.013480288, 0.018724857, -0.043324705, -0.02564608, 0.006887689, 0.015854428, -0.02168918, 0.035330426, 0.037074145, 6.694036E-4, 0.038254507, 0.008503983, -0.02123313, -0.0017076707, 0.015022809, 0.009831891, 0.029240822, 0.008275958, -0.012460883, -0.029053038, -0.02594117, -0.011689623, 0.0077126026, 0.025404641, -0.009047218, 0.003480731, -0.0051003774, 0.008275958, 0.008946619, 0.007155954, 0.04192973, 0.023245113, 0.01644461, -0.002882166, 0.0062572677, 2.470967E-4, 0.024170626, -0.009053925, 0.0027597703, -0.017490841, -0.0060560694, -0.01363454, 0.02889208, -0.010254408, 0.0052311565, 0.018470006, 6.761102E-4, 0.00640146, 0.012514535, -0.0030313882, -0.014808197, -0.012045073, 0.008846019, -0.0087118875, -0.017075032, -0.024385236, 0.0010881476, 0.03130646, -0.04493429, -0.0055731935, -0.021487981, 0.023446312, 0.016162932, -0.001284316, 0.009027098, -0.009872131, -0.03101137, 0.0023389305, -0.0088326065, 0.0075784703, -0.005797865, 0.04222482, 0.0030498314, 0.0050668446, 0.01990522, 0.00277989, 0.005026605, -0.018362701, 0.018577311, -0.012863279, 0.0032174964, -0.0199857, -0.031199154, -0.0052579828, -0.004604088, 0.009100871, -0.015787361, -1.7741081E-4, -0.0047684005, -0.006914516, -0.009154524, -0.018644378, 0.0045202556, 0.014057056, 0.013285796, 0.007980867, 0.021796485, 0.01561299, 0.039247088, 4.1366166E-5, 0.0041580987, 0.007055355, 0.025122965, 0.010650098, -0.012997412, 0.0019415638, -0.004064206, -0.016055627, 0.0039233672, -0.009389255, 0.02502907, 0.0035477972, 5.5958284E-4, -0.0021125823, -0.022628104, -0.013024238, -0.08182065, -0.016458023, 0.0064048134, 0.031038195, -0.039890923, 0.015639817, -0.021058759, 0.031842988, -0.009939197, 0.02156846, 0.022413494, -0.015452031, 0.0023774935, -0.014727717, 0.031038195, 0.022172056, -0.00803452, -0.0074040983, -5.8766676E-4, 0.02689351, -9.6491363E-4, -0.009798358, 0.013272383, -0.01561299, -0.02827507, 0.005268043, -0.029965138, 0.015908081, 0.016900659, 0.015264247, 0.023406072, -0.013225436, 0.011454891, -0.047643762, -0.028167766, -0.017249404, -0.020347858, 0.0033180958, 0.024344997, -0.046061, 0.033854973, -6.886851E-4, 0.0038026483, -0.025257096, -0.0116225565, -0.0061533153, -0.023352418, 0.036108393, -0.013131544, -0.029831005, 0.0035310306, -0.009315482, -0.023137808, 8.4629044E-4, 0.027282493, 0.011837168, 0.010341594, 0.018362701, 0.0015576103, -0.024184039, 0.0048488798, -0.004272111, -0.033398923, 0.016632395, 0.0135943005, 0.005509481, 0.003100131, 0.0018711444, 0.023808468, -0.0061868485, -0.032728262, 0.037664328, -0.031816162, 0.0024512662, -0.011843875, -0.014767957, -0.019516237, -0.02036127, 0.02677279, -0.023862122, 0.006894396, -0.029106691, 0.002229948, -0.00836985, 0.0054524746, 0.006642898, 0.04184925, 0.008343024, -0.007149247, -0.021206303, -0.009825185, 0.012252978, 0.0017420421, -0.009724585, 0.0044699563, 0.025257096, 0.023285354, 0.0032644428, 0.0057810987, 0.019771088, -0.010529379, -0.005127204, -0.070768155, 0.016458023, 0.003046478, -0.002481446, -0.016337303, -0.0054826546, 0.00838997, -0.009483147, -0.005345169, 0.006096309, -0.013647953, 0.029884657, -0.007954041, 0.0025602486, -0.0040105535, 0.01586784, 5.495229E-4, -0.026128955, -0.0015919817, -0.007960747, -0.018309047, -0.0053854086, 0.03372084, 0.0034103116, 0.0019197674, 0.020951452, -0.0014008434, 0.011676209, -0.013312623, 0.003249353, 0.0109854285, -0.020951452, -4.967084E-4, 0.0034639644, -0.005918584, -0.01731647, -0.0064752325, 0.014124122, 0.012299924, 0.020200312, -0.0038630078, -0.017356709, -0.01665922, -0.015975147, 0.0025367755, 0.009375842, -0.0208978, 0.0075382306, 0.024707153, 0.0017772518, 0.029831005, 0.01739695, -0.0057039727, -0.013500407, 0.023888947, -0.024519369, 0.050594673, 0.0026189315, -0.026196022, -0.007129127, 0.01606904, 0.019140668, 0.020616122, -0.035410903, -0.0065925983, 0.013922924, 6.8910426E-4, -0.022426907, 0.011843875, -0.031279635, 0.0042754645, -0.011736569, -0.009107578, 0.021327022, 0.013399809, 0.014861849, -0.025860691, 0.0032124666, -0.016618982, 0.036162045, 0.016833594, -0.024197452, -0.018899228, 0.010629978, -0.0021209656, 0.018349288, -0.0070419414, 0.0036618095, -0.0036819293, 0.022467146, -0.01911384, 0.001892941, -4.962892E-4, 0.0053820554, 0.0035109108, 0.029240822, -0.0034254014, -0.010596445, -0.0033264789, 0.025109552, -0.0049997782, -0.0016422813, -0.02643746, -0.03235269, -0.020079592, -2.5464164E-4, -0.013775378, -0.022118403, 0.0091209905, 0.01155549, 0.020093005, -0.0030347414, -0.004533669, 3.529354E-4, -0.024291344, 0.028650641, -0.007269966, -0.021702593, -0.01367478, 0.052311566, 0.0032459996, 0.01523742, 0.010837883, -0.023446312, 0.025324162, 0.012829746, 0.032299038, -0.017088445, 0.004852233, 0.007907094, -0.022037923, 0.0030146216, -0.016967725, -0.0066831377, -0.020710014, -0.0047918735, 0.019019948, 0.026719138, -0.016873833, 0.066314965, 0.033077005, 0.009013685, 0.011823755, -0.009154524, 0.0035377373, 0.012125553, 0.007129127, -0.016095866, 0.010194048, 0.021206303, 0.0020186899, 0.00718278, -0.027711716, -0.011454891, -0.003678576, -0.011642677, -0.0102275815, -0.009623987, -0.018054197, 0.01881875, -0.013896097, 0.020173484, 0.01042878, -0.034498807, -0.021125823, 0.02768489, -0.0020203665, 0.0012449146, -0.033372097, 0.011233573, -0.004268758, -0.004238578, -0.012420643, 0.035625517, 0.0066797845, -0.013037652, -9.6156035E-4, 0.01280292, -0.007860148, -0.012856573, 0.010140396, -0.019019948, 0.00838997, 0.0024361764, -0.0051775035, -0.011018962, -0.024291344, -0.02052223 ], + "id" : "7c49484d-5815-43d8-ab35-eea0c6f96756", + "metadata" : { + "source" : "movies.csv" + } + }, + "3f213638-bdf8-4cca-ba48-45f25f070651" : { + "text" : ",/tS6PvNcFxoqcjkb0iCnX7oHeD1u.jpg,1597-39451-9522-9472-1593-544-1824-5966-9339-2698-9506-8488-9398-4964-310-18360-10555-7288-8273-3981-1624\r\n569094,Spider-Man: Across the Spider-Verse,Action-Adventure-Animation-Science Fiction,en,After reuniting with Gwen Stacy Brooklyn��s full-time friendly neighborhood Spider-Man is catapulted across the Multiverse where he encounters the Spider Society a team of Spider-People charged with protecting the Multiverse��s very existence. But when the heroes clash on how to handle a new threat Miles finds himself pitted against the other Spiders and must set out on his own to save those he loves most.,2550.738,Columbia Pictures-Sony Pictures Animation-Lord Miller-Pascal Pictures-Arad Productions,5/31/23,100000000,512609552,140,Released,It's how you wear the mask that matters,8.64,1684,Shameik Moore-Hailee Steinfeld-Brian Tyree Henry-Luna Lauren Velez-Jake Johnson-Oscar Isaac-Jason Schwartzman-Issa Rae-Daniel Kaluuya-Karan Soni-Shea Whigham-Greta Lee-Mahershala Ali-Amandla Stenberg-Jharrel Jerome-Andy Samberg-Jack Quaid-Rachel Dratch-Ziggy Marley-Jorma Taccone-J.K. Simmons-Donald Glover-Elizabeth Perkins-Kathryn Hahn-Ayo Edebiri-Nicole Delaney-Antonina Lentini-Atsuko Okatsuka-Peter Sohn-Melissa Sturm-Lorraine Velez-Nic Novicki-Taran Killam-Metro Boomin-Josh Keaton-Sofia Barclay-Danielle Perez-Yuri Lowenthal-Rita Rani Ahuja-Ismail Bashey-Oscar Camacho-Freddy Ferrari-Kerry Gutierrez-Kamal Khan-Angelo Sekou Kouyate-Andrew Leviton-David Michie-Sumit Naig-Juan Pacheco-Chrystee Pharris-Ben Pronsky-Al Rodrigo-Jaswant Dev Shrestha-Libby Thomas Dickey-Ruth Zalduondo-Jasper Johannes Andrews-Gredel Berrios Calladine-Natalia Castellanos-Russell Tyre Francis-Deepti Gupta-Sohm Kapila-Pradnya Kuwadekar-Ashley London-Christopher Miller-Andrea Navedo-Lakshmi Patel-Jacqueline Pinol-Eliyas Qureshi-Lashana Rodriguez-Dennis Singletary-Amanda Troop-Sitara Attaie-Mayuri Bhandari-June Christopher-Michelle Jubilee Gonzalez-Marabina Jaimes-Rez Kempton-Lex Lang-Phil Lord-Richard Miro-Doug Nicholas-Shakira Ja'nai Paye-James Pirri-Marley Ralph-Michelle Ruff-Narender Sood-Cedric L. Williams-Kimberly Bailey-Sanjay Chandani-Melanie Duke-Jorge R. Gutierrez-Miguel Jiron-Deepti Kingra-Mickelsen-Luisa Leschin-Caitlin McKenna-Richard Andrew Morgado-Arthur Ortiz-Eliana A.", + "embedding" : [ 0.005279126, -0.022595063, -0.013374235, -0.029060397, -0.020847676, 0.026170487, 0.01006764, -0.020551965, -0.0036762343, -0.030969081, 0.03860382, 0.0059982436, 0.024651604, 1.2437272E-6, 0.008777262, 0.0055681174, 0.018414775, -0.028011965, 0.011754541, -0.049007498, -0.008844469, -1.4859093E-4, -0.025135497, -0.0030747298, -0.0032948335, 0.019449767, 0.022608506, -0.014100072, 0.0055546756, -0.02041755, 0.005121189, -0.005927676, -0.007231496, -0.0141269555, -0.012104019, 0.012782811, 0.0061192163, -0.020753587, 0.007218054, -0.031157263, 0.0026916487, 0.0045196847, -0.028657153, -0.007890127, -0.015874343, 0.021788577, -0.010578414, -0.016640505, -0.014960324, 0.02192299, 0.021506308, 0.02180202, -0.02451719, -0.024651604, 0.009106576, -0.018226596, -0.017366342, 0.0124198925, 0.01473182, -0.008904955, 0.0044255946, -0.018589513, -0.02629146, -0.008494991, -0.020901442, -0.019543856, -0.0073390272, -0.015860902, 0.0034712523, 0.0038005677, 0.04876555, 0.013179334, -0.001807874, -0.016788362, 0.0034006848, -0.029786235, -0.017473875, -0.0011820068, -0.0067173606, 0.016559856, 0.0076011354, -0.009288036, 0.0038778558, 0.015094739, 0.016250703, 0.0092745945, -0.008730216, 0.023347784, -0.021694487, 0.010208775, 0.012379568, 0.022904217, 0.01332719, 0.0045062434, -0.0037232793, 0.020820793, 0.0023287297, 0.024476865, -0.026842559, -0.04355027, -0.0044356757, -0.007930451, -0.0131054055, -0.012708883, -0.0063006757, -0.002731973, 0.0030058424, 1.8944032E-4, 0.025148937, -0.019248145, 0.008125352, -0.0076212976, 0.019234704, -0.04298573, -0.0062939553, -0.0077624326, -0.0047213063, -0.020632613, -0.009684559, -0.008024541, 0.013723712, 0.039706018, 7.2037725E-4, -0.02721892, 0.04465247, 0.02275636, 0.0039013785, -0.006636712, -0.008051423, -0.01575337, 0.042474955, 0.0030612883, 0.024557514, 0.0049363696, -0.012890343, 0.028119497, -0.029490523, 0.008051423, -0.016774919, -0.03508216, 0.02582101, 0.03225946, -0.02572692, -0.019476648, -0.017016865, -0.008958721, 0.009462775, -0.018199712, 0.008864631, 0.009153622, 0.031990632, 0.009644235, 0.007070198, 9.106577E-4, 0.03021636, -0.0015550068, 0.020296577, -0.010222216, 0.012950829, -0.0040996396, -0.0016348154, -0.009617352, 0.015215712, -0.015645837, -0.016102847, 0.027796902, 0.0054874686, -0.016385118, -0.016936217, -0.0024497027, -0.022232145, 0.030646488, -0.018979317, 0.021573514, -0.010578414, 0.00736591, 5.3555745E-4, -0.009946667, -0.038792, -0.0033166758, 0.003693036, 3.8392117E-4, 0.018387893, 0.03067337, 0.0016558176, 0.019369118, 0.02751463, -0.024759136, 0.015054415, -0.031479858, 0.001054313, 0.018871784, 0.0058974326, -0.015377009, -0.6387373, -0.026224254, -0.0031503378, -0.029893767, 0.023872001, 0.011586523, -0.01119, 0.0014214325, -0.036775786, -0.010800199, -0.02572692, 0.021465983, 0.025484974, -0.014140396, -0.025605947, -0.0038778558, 0.011620127, -0.02285045, 0.013764036, 0.01754108, -0.028361442, 0.014987208, 4.6498986E-4, 0.009314919, -0.005621883, 0.0025051488, 0.014812469, -0.017231928, -0.0039551444, -0.0037434415, -0.047744002, 0.012144343, 0.017272253, 0.0031133739, 0.028925983, 0.0033015541, -0.00979209, 0.032205693, 0.04467935, 0.036211245, -0.024786018, -0.0065493425, 0.012379568, -0.0067072795, -0.007050036, 0.007728829, 0.017500756, -0.021828901, 0.014704937, -0.0026580452, -0.004052595, -0.010753154, 0.006818171, 3.6396904E-4, -0.009482937, 0.025296794, 0.012742487, -0.014839352, 0.018226596, -0.015202271, -0.012097297, 0.007708667, 0.009939946, 0.0069425046, 0.0058067027, 0.028576504, 0.011478991, -0.007930451, -0.001854919, -0.0031032928, 0.014046307, 0.0010072681, -0.02572692, -0.0066535138, 0.0054773875, 0.015027531, 0.016546415, 1.4947697E-6, 0.009704721, 0.0015180429, 0.018979317, -0.00587391, -0.003133536, -0.0030646487, 0.02833456, 0.0037871262, -0.038792, 0.015161946, 0.019315353, -0.010376793, 0.02134501, 0.011505874, -0.0020296576, 0.0057294145, -0.0029453558, 0.010034036, -0.014462992, 0.014100072, 0.028200144, -0.050943065, -0.010780036, -0.019745478, 0.024745693, -0.01920782, 0.029248577, 0.010430559, -0.004223973, -0.01603564, 0.009099856, -0.02200364, -0.012534144, -0.011290811, -0.017863676, -0.010880847, 0.0064552524, -0.029141046, 0.014221045, -9.0225675E-4, 0.018387893, -0.0058235046, -0.008925118, 0.017097514, 0.0029436757, -0.008595802, 0.008125352, 0.02927546, -2.61058E-4, 0.0059612794, 0.0041870093, 0.008783982, -0.0057966216, 0.009240991, 0.013112127, -0.008636126, 0.008340415, 0.0061595407, -0.0023455315, -0.0021590316, 0.008206001, -0.015618956, -0.019355675, -0.0021371893, -0.022635387, -0.015094739, -2.068722E-4, -0.01007436, -0.030431423, -0.011458829, 0.009449334, 0.0020750226, -0.018159388, 0.0038711352, 0.005353054, 0.020323459, 0.0050674235, -0.0058806306, -0.0073524686, -0.010121406, -0.0012979392, -0.026157046, 0.0036863154, 0.006001604, -0.012117459, -0.025511857, 0.0026647658, -0.0032881126, -0.009449334, 0.007533928, 0.011136235, -0.02432901, 9.361754E-5, -0.026775353, -0.011855352, 0.02500108, -0.005917595, 0.031103496, -0.018562632, 0.02004119, 0.008071586, -0.008206001, -0.001202169, 0.005279126, -0.013938775, -0.0017776306, 0.02629146, 0.03247452, 0.019100288, -0.010383514, 0.009583748, 9.6022297E-4, -0.002348892, -0.020242812, -0.011687334, 0.005040541, 0.0031873018, 0.014247928, -0.0058806306, 0.013320468, -0.002730293, 0.015390451, 0.034732684, 0.023697263, 0.0054740272, -0.011358018, 0.008515153, -0.03217881, -0.0030747298, -0.0339262, 0.0030142432, -0.010934613, 0.035377875, -0.015014091, -0.021103064, -0.006744243, 0.00782964, 0.02748775, -0.014032865, 0.0017423469, -0.030754019, 0.0031940227, -0.009872739, -0.006566144, 0.013454883, 0.009395568, -0.021707928, 0.021156829, 0.0011878874, -0.0064754146, -0.015444216, -0.02283701, -0.012446775, 0.008192559, 0.009388847, 0.006408207, -0.026493082, 0.022057407, 0.036372542, -0.004627216, 0.042663135, -0.007943892, 0.0060486486, 0.023482198, 0.014570523, -0.0069425046, -0.008158955, -0.0035317389, 0.033684254, 0.011458829, -0.014933442, 0.04113081, -0.02871092, 0.0018952433, -0.019879892, 0.005937757, 0.021479424, -0.0076817838, -0.019033082, 0.016734594, 0.026640937, 0.014933442, 0.002918473, -0.03234011, 0.023361227, 0.0066400724, 0.020027747, -0.01221155, -0.04540519, 0.011089189, -0.007412955, -0.027581839, -0.022259027, -0.022998307, 0.0088579105, -0.0059915227, -0.009953388, -0.021640722, -0.013643064, 0.004203811, -0.003766964, 0.019355675, -0.018024974, -0.036211245, 0.005416901, 0.014032865, -0.012695442, -0.037071496, 0.00521864, -0.0036392703, -0.005537874, 0.007654901, 0.015256036, 0.023455316, -0.004529766, 0.01332719, -0.018024974, 0.001565928, 0.016869009, -0.017473875, 0.033442307, 0.022810126, -0.004607054, 0.015014091, 0.0049195676, -0.002153991, 0.020377226, -0.0029134324, 0.005910874, -0.0034258876, -0.021896109, -0.0014567162, 0.008972162, -0.020283135, -0.045969732, 0.03139921, -0.007822919, -0.01361618, -0.006509018, -0.018213153, -0.0012643356, -0.028307676, -0.007386072, -0.03494775, -0.01920782, 0.022393443, 0.07543337, 0.027460866, 0.0076212976, -0.01155964, -0.027299568, -0.0030512072, 8.01866E-4, 0.010659063, -0.025767244, -0.01697654, 0.008636126, -0.00848827, 0.027433982, 0.02349564, 0.023374667, -0.005443784, -0.004808676, -0.00857564, -0.010773315, -0.030592721, -0.011895676, -0.021492865, 0.016721154, 0.034732684, 0.00811863, -0.022097731, -8.371498E-4, 0.004613775, -0.0062099462, 0.011492433, 0.011216884, 0.0062905946, 0.007002991, 0.009745046, 0.010101244, -3.2028437E-4, 0.030888433, 0.019180937, 0.021170272, 0.0049061263, -0.014140396, 0.01575337, -0.0017927523, -0.004462559, 0.0075204866, -0.005547955, -0.0054706666, 0.021936433, 0.031157263, -0.032582056, 0.025619388, 0.014032865, -0.027353333, -0.0125879105, 0.026708145, -0.012984432, 0.009301478, -0.023791352, -0.028764686, -0.018495424, 0.025565622, -0.032770235, 0.020256253, -0.008414342, -0.0031200948, -0.01351537, 0.0059041535, -0.009240991, -0.0026496442, 0.008447946, -0.007843081, -0.03225946, -0.016264144, -0.017796468, 0.012729045, 0.004119802, 0.02285045, -0.0025605946, 0.008071586, 0.00736591, -0.037528504, -0.020901442, 0.015578631, -0.011142955, 0.0019070045, 0.0066971984, -0.0037636037, 0.02321337, -0.016828684, 0.017366342, 3.1881419E-4, -0.007809478, -0.011284091, -0.004502883, 0.029759351, 0.006021766, 0.01426137, 0.022554738, 3.643891E-4, -0.006935784, 0.013065081, -0.024597839, -0.0035821442, -0.026869442, -0.009818973, -0.024732253, 0.0055983607, 0.01444955, -0.018818019, -0.020861117, -0.01716472, -0.009489658, 0.0094762165, -0.004717946, 0.012513982, -0.0034275677, 0.032608937, -0.003010883, -0.009503099, 0.0030428064, 0.0013752275, -0.004892685, 0.008851189, 0.03104973, 0.01928847, 0.03441009, -0.013434721, -0.031372324, -0.009113298, 0.010632181, 0.011250487, 0.014476432, 3.9274213E-4, -0.00755409, -0.009906342, -0.030189479, 0.012970991, 0.0062032253, -0.010706108, 0.0069223423, -0.0016104528, 0.0054572253, -2.4194595E-4, -0.0012189707, 0.010020595, -0.027716253, 0.0108472435, -0.009946667, -5.817624E-4, 0.031479858, -0.007775874, 0.021896109, -0.03244764, -0.006172982, -0.01930191, -0.010921172, -0.04389975, -0.025135497, 0.043200795, 0.016788362, 0.038200576, 0.0051581534, 0.022406884, 0.015645837, 0.0074062343, 0.0061965045, -0.015834019, 0.001463437, -0.019637946, 0.020888, 0.025095172, 0.043120146, 4.5784912E-4, 0.003002482, 0.0067812074, 0.012251874, 0.0028848695, 0.015027531, 0.011848631, -0.012144343, -0.021170272, 0.023468757, -0.02236656, -0.0017188244, -0.019691711, -0.018683605, 0.021586955, -0.00494309, -0.015928108, 0.0020968649, 0.05492173, -0.0013004595, 0.018912109, -0.019691711, 0.029060397, -0.02368382, -7.712027E-4, -0.037609152, -0.0023690541, 0.007480162, -0.02748775, 0.019476648, -0.0019523695, -0.019382559, -0.0064485315, 0.021304686, 0.0037535226, -0.029759351, 0.008736937, -0.006001604, -0.0027017298, -0.040136144, 0.0021355092, -0.04131899, -0.015175387, -0.0023606531, -0.014893117, 0.01780991, -0.027353333, -0.03338854, 0.00988618, 0.013118847, 0.029194811, 0.014100072, 0.04056627, 0.013582577, 0.019059964, -0.007869964, -0.0031436172, -0.020914882, -0.018562632, 0.033522956, 0.01743355, -0.016559856, -0.021748252, -0.0075272075, -0.009019207, -0.031237911, -0.045566488, 0.021224037, 0.021412216, 0.023414992, -0.023388108, -0.007910289, -0.016465766, 0.01649265, 0.006109135, 0.0062301084, 0.012063694, -0.029947532, -0.024732253, 0.0030411263, -0.009328361, 0.023482198, 0.012715604, -0.02965182, 0.010444, 0.0030982522, 0.005527793, -0.021613838, -0.008898234, 0.047394525, -0.0070634778, 0.024597839, 0.005531153, 0.0093081985, 0.007244937, 0.005941117, 0.010652343, 0.03252829, -0.023334343, 0.008938558, -0.010289424, -0.0077624326, -0.0014432748, 0.012292199, -0.017783027, -0.02508173, -0.03494775, -0.005510991, 0.024812901, 0.014772144, 0.0063006757, -0.009086414, -0.007628018, -0.0060452884, 0.025579063, -0.009086414, 0.01416728, -0.039490957, 6.204065E-4, -0.009254432, -0.0034376488, 0.008878073, -0.004896045, 0.014664613, -0.0027017298, 0.018172828, -0.014812469, 0.015175387, -0.012513982, -0.013078523, -0.058174558, -0.014570523, -0.020068072, -0.023078956, -0.0041130814, -0.011237046, 0.0011988085, -1.7484375E-4, -0.022447208, -0.009926504, -0.020672938, -0.01426137, 0.0017289055, 0.004502883, -0.00792373, -0.023710703, -0.003215865, 0.015511423, -0.02135845, -0.0102289375, 0.010564974, -0.0064485315, 0.017285693, -0.0047213063, 0.026466198, 0.020565405, -0.016842127, -0.015121622, 0.005742856, 0.015323244, 0.011021982, -0.0033502793, -0.023428433, -0.012708883, -0.009966829, 0.018186271, -0.013589297, -0.01463773, 0.0309422, 0.021183712, 0.030323893, 0.011122793, -0.025552182, -0.007930451, -0.014503316, 0.004133243, -0.020054631, -0.012876901, 0.013313748, 0.0074465587, 0.015524865, -0.008468108, -0.0146780545, -0.0030646487, -0.022769803, -0.01603564, 0.001361786, 0.02721892, 0.03664137, 0.0062939553, 0.0034645316, 0.01780991, -0.004375189, 0.030700253, -0.021828901, -0.006798009, 0.023509081, 0.017124398, 0.022312794, 0.017258812, -0.026694704, 0.0013911892, 0.011008541, 0.0050002164, 0.015054415, 0.04605038, -0.025108613, -0.0036896758, -0.009698, 0.0029520767, -0.0026681263, -0.012406451, 0.026345225, -0.035485405, -0.016989982, 0.0032326668, 0.02238, 0.012137622, 0.010571694, 0.016613621, -0.010282703, 0.0043785498, -0.022312794, -0.018992757, -0.007701946, -0.034893982, -6.4182887E-4, 0.0034292478, 0.007943892, 0.030162595, 0.0035653424, 0.012708883, 0.0025202704, 0.0014987207, 0.0019607702, -0.012009928, -0.019866452, -0.0044894414, 0.03607683, -0.011707496, 0.018804576, -0.01837445, 0.007883405, -0.012991154, 0.014194163, -0.009617352, 0.03244764, 0.01090101, -0.04605038, -0.008804144, -0.0026530046, -0.003908099, -0.032098163, 0.008878073, -0.026882883, 0.0033872433, 0.006088973, 0.0013391037, -0.010981658, -0.0043550273, -0.003254509, 0.014973766, -0.01426137, 1.2286317E-4, 0.18570696, -0.012245153, -8.3588966E-4, 0.038630705, -0.0110152615, 0.012292199, 0.022635387, 0.02321337, -0.0017826712, 0.029141046, -0.004082838, -0.0077691535, 0.004166847, -0.004502883, 0.0055546756, 0.004963252, -0.020686379, -0.0051581534, -0.010793477, -0.020363783, -0.014382343, 0.0057663787, -0.01977236, -0.024839785, -0.0018061937, 0.022447208, -0.014785586, -0.00307641, 0.012628235, 0.0067644054, -0.010833802, -0.0011013581, 0.0022312794, 0.021775136, 0.0049733333, -0.01826692, 0.018132504, 0.0037972073, 0.015780253, 0.019866452, -0.021264361, 9.97187E-4, -0.016062522, -0.014893117, -0.002059901, 0.02153319, -0.023710703, -0.008219441, -0.011909117, 0.0063006757, -0.03551229, -0.0016633784, 0.019409442, 0.030592721, -0.0051144687, -0.0029403153, 0.01623726, 0.010444, -1.4050507E-4, 0.013871568, 0.010880847, 0.028361442, -0.025995748, -7.3717907E-4, 4.8431195E-4, 0.013454883, -0.018938992, -0.009805532, 0.027662488, -0.031345442, -0.009570306, -0.022030523, -0.008562199, -0.00932164, -0.0013273424, -8.594122E-4, -1.0858165E-4, 0.013992541, 0.012776091, 0.021855785, -0.009892901, -0.004476, 0.002162392, -0.0055546756, -0.023388108, -0.011902397, 0.005699171, -0.017366342, -0.01034991, -0.018965874, -0.01332719, -3.011198E-5, -0.007917009, 0.005208559, -0.018629838, 0.010040757, 0.026976973, 0.011707496, -0.021170272, 0.0052253604, -0.03207128, 0.021492865, 0.014274811, -0.010867406, -0.011606685, -0.014153838, -0.003578784, 0.0018112343, 0.017258812, -0.015901225, 0.002387536, -0.025700036, -0.002723572, -0.01305164, 0.00978537, 0.037205912, 0.016815243, -0.020108396, 0.04645362, -0.01249382, -0.029705586, -0.01789056, -0.018871784, 0.0015373649, 0.0019372478, -0.027581839, -0.0073591894, 0.010363352, -0.0039450633, -0.02453063, 0.006492216, -0.018522307, 0.007943892, -0.003961865, 0.0033872433, 0.0039585046, 0.009738324, 0.012231712, 0.0073054237, 0.0011862073, 0.006478775, -0.00111816, 0.0018397974, 0.0109144505, -0.016062522, -0.018602956, 0.008676451, -0.002441302, -0.008602522, -0.03607683, -0.004707865, -0.008710055, 0.011606685, 0.0023908964, 0.03225946, -0.0024933876, -0.026210811, -0.021465983, -0.020955207, 0.0559164, -0.023482198, 0.028603388, -8.327393E-5, -0.004408793, -0.027823783, -0.022353118, -0.1715128, 0.013938775, 0.019785803, -0.019853009, 0.00922755, 0.03330789, 0.01697654, 0.006492216, 0.024812901, -0.015793694, 0.028280793, -0.004049234, -0.02619737, 0.004556649, 0.01109591, 0.005517712, 0.001807874, 0.03430256, 0.022299351, -0.009294757, 0.041722234, -0.00941573, 0.0045633693, -0.015161946, 0.014019424, 0.008958721, -4.2445553E-4, 0.023052072, 0.0027420542, -0.010188613, -0.026829118, -0.011445387, 0.017823352, -7.249978E-4, -0.006273793, 0.0069425046, -0.013394397, -0.024678487, -0.004371829, -0.0019204459, 0.030888433, 0.0063006757, 0.024033299, 0.010356631, 0.013011316, 0.007002991, 0.034598272, -0.009005766, 0.0017507478, -0.014180721, -0.0046003335, -0.029167928, 0.02022937, -6.296475E-4, 0.012151063, 0.009536703, -0.0016112928, 0.0060352073, 0.014315136, -0.022353118, -0.018293802, 0.0028848695, 0.015094739, -0.015928108, -0.012157784, -0.0068719373, -0.010491045, 0.022554738, -0.037447855, 0.012366126, -0.025431208, 0.032824002, -0.0029419956, 0.008602522, 0.008400901, -0.007419676, -0.029786235, 0.016049081, 0.006488856, 0.013656504, -0.011418505, 0.04269002, -0.014194163, 0.007950612, 0.0117679825, -0.0053933784, 0.007103802, 1.8072438E-4, 0.003814009, 0.0035586217, -0.0067946487, -0.010766595, -0.026546847, -0.01482591, 9.173784E-4, 0.0094426125, 0.009556865, -0.01315245, 0.025888218, -0.0013206217, -0.00988618, -0.009839135, -0.010780036, 0.014570523, 0.030995965, 0.02461128, 0.0040962794, 0.017231928, 0.015081298, -0.0040962794, -0.0102289375, -0.0072852615, 0.011949441, 5.561396E-4, -0.0037333604, 0.014852793, -0.01669427, -0.014785586, -0.007957334, 0.0026563648, 0.04653427, -0.008931838, -0.021183712, -0.008938558, -0.007070198, -0.014153838, -0.08720808, 0.022393443, 0.0146780545, 0.04094263, -0.026251135, 0.019906776, -0.010235658, 0.014503316, 0.0038812163, 0.02665438, -0.0022800046, -0.018629838, 0.011290811, -0.022420324, -6.0864526E-4, -0.017756145, -0.0017112636, -0.0109144505, -0.015739929, 0.025135497, -0.015605514, -0.005769739, 0.0074532796, -0.009113298, -0.03180245, 0.022729479, -0.04207171, 0.018535748, 3.887517E-4, 0.008441226, -0.004959892, -0.016936217, 0.015040973, -0.04317391, -0.023159605, -0.026869442, -0.011761261, -0.027097946, 0.010988379, -0.052179676, 0.009751766, 0.0274071, 0.01826692, -0.021586955, 0.0018868424, -0.01184191, -0.020108396, 0.04131899, -0.0022396802, -0.045109477, -0.009980271, -0.02061917, -0.022595063, -0.0139791, 0.009301478, 0.020888, 0.01565928, -0.0012315721, -0.009382126, -0.003328437, -0.019490091, -0.025283352, -0.029893767, 0.003656072, 0.027420541, 0.002767257, -0.011781423, -0.016075965, 0.02264883, -0.004798595, -0.021143388, 0.010840523, -0.04309326, -0.016143171, -0.015807135, -0.008535315, -0.016869009, -0.020390667, 0.020726703, -0.045243893, 0.013428001, -0.019140612, 0.012433333, -0.01957074, 0.014328577, 0.0055714776, 0.024974199, 0.03161427, -0.009516541, -0.03139921, 7.027354E-4, 0.0329853, -0.0066871173, -0.0059747207, -0.0064854957, 0.0155651895, 0.019046523, -0.004304622, -0.012668558, 0.019718595, -0.020377226, -0.022474092, -0.07392793, 0.015269478, -0.0013080203, 0.001836437, -0.017231928, -0.011888955, 0.013448162, -0.006982829, -0.012876901, 0.016371677, -0.011687334, -0.0049296487, 0.0023152884, 0.0018263559, -0.0034746127, 0.004553288, 0.01622382, -0.007722108, -0.0021103064, -0.004240775, -0.028764686, 0.026466198, 0.035861768, 0.010107964, -0.0044222344, 0.031291675, 0.004872523, 0.015081298, -0.014973766, -0.02107618, 0.025216145, -0.017877117, -0.005490829, 0.006845054, 0.0026261217, -0.027904432, -0.002592518, 0.007567532, 0.023979532, -8.904955E-4, -0.010444, -0.03244764, -3.9589245E-4, -0.014382343, -0.013737153, 0.024866667, -0.018549189, 0.026735028, 0.0038812163, 0.024369333, 0.038818885, -8.073266E-4, -0.015780253, -0.014180721, 0.020189045, -0.030888433, 0.058013264, -5.557196E-4, -0.0024581037, -0.013871568, 0.029947532, 0.004680982, 0.009570306, -0.034652036, 0.002404338, 0.013286865, 0.0027773378, -0.027581839, -0.0050573424, -0.027985081, 6.229268E-4, -0.01203009, 0.012137622, 0.03330789, 0.010464163, 0.020686379, -0.008091748, -0.0066703153, -0.012809694, 0.00922755, 0.02806573, -0.008515153, -0.028495856, 0.015968433, -0.003441009, 0.036372542, -0.0021556711, 0.004775072, -0.007466721, -5.914234E-4, -0.009677838, 0.00559164, 0.0110488655, 0.0061662616, 0.018172828, 0.014597406, -0.0058940724, 0.0014306734, 0.013125568, 0.017850235, -3.692196E-4, -0.007171009, -0.016479207, -0.003551901, -0.032850884, 0.0069962703, -0.021143388, -0.014328577, 0.01754108, 0.026721586, 0.016398558, 0.0030797704, -0.03236699, -0.0025605946, -0.04018991, 0.025175821, -0.004150045, -0.007843081, -0.02060573, 0.050969947, 0.017917441, 0.026896324, 0.035727352, -0.018240036, 0.061776865, 0.015981873, 0.020471316, -0.033549838, 0.022124613, 0.0011542838, -0.007070198, -0.020269694, -0.018051857, 0.005295928, -0.010780036, 0.007076919, 0.0059646396, 0.027326452, -0.0032360272, 0.07935827, 0.026842559, 0.007493604, 0.018952433, -0.012507262, -0.0079035675, 0.0154979825, 0.018602956, -0.008743658, -0.016895892, -0.011969604, -0.010101244, -0.0022144776, -0.027716253, -0.0023052073, 0.018898668, 0.011324415, 0.016156614, -0.017957766, -0.017662054, 0.018387893, -0.025861334, 0.024597839, 0.005282487, -0.015793694, -7.419046E-5, 0.055540036, 0.006646793, -0.011539478, -0.039383423, 0.0034544505, -0.007533928, -0.023737585, -0.016452326, 0.021855785, 0.013569135, 2.860507E-4, -0.0020010946, 0.026439317, 0.011714216, -0.0061494596, 0.010679225, -0.027245803, 0.003961865, 0.015914667, 0.0061360183, -0.008340415, -0.022205262, -0.0049128467 ], + "id" : "3f213638-bdf8-4cca-ba48-45f25f070651", + "metadata" : { + "source" : "movies.csv" + } + }, + "a8b9072e-9589-4ac0-9d97-436b10317e26" : { + "text" : "6,6421,George Clooney-Brad Pitt-Matt Damon-Catherine Zeta-Jones-Andy Garc�_a-Don Cheadle-Bernie Mac-Julia Roberts-Casey Affleck-Scott Caan-Vincent Cassel-Eddie Jemison-Carl Reiner-Elliott Gould-Shaobo Qin-Eddie Izzard-Jeroen Krabb��-Robbie Coltrane-Cherry Jones-Candice Azzara-Jared Harris-Ed Kross-Anne Jacques-David Sontag-Larry Sontag-Don Tiffany-Dina Connolly-Nelson Peltz-Mini Anden-Jennifer Liu-Leah Zhang-Craig Susser-James Schneider-Nerissa Tedesco-Nichelle Hines-Michael Van Der Heijden-Johan Widerberg-Jeroen Willems-Chris Tates-Michael Delano-David Lindsay-Nasser Faris-Youma Diakite-Andrea Buhl-Sylvia Kwon-Francesca Lancini-Raquel Faria-Elena Potapova-Jessie Bell-Anne-Solenne Hatte-Denny Mendez-Martina Stella-Mattia Sbragia-Carlo Antonazzo-Mingming Gao-Amelie Kahn-Ackermann-Luciano Miele-Antonio De Matteo-Ana Caterina Morariu-Adriano Giannini-Giulio Magnolia-Marco Matronelli-Scott L. Schwartz-Giselda Volodi-Mathieu Simonet-Karl A. Brown-Marc Bodnar-Antonella Elia-Albert Finney-Topher Grace-Jerry Weintraub-Bruce Willis,rome italy-sequel-heist-faberg�� egg-golden egg-goon,/Ad55M8newGWemFWCsMAkxO3fDwl.jpg,/5b5HrewiViLWEdMR4dmbd7ajQ8Q.jpg,298-161-787-9654-2502-2503-652-2501-956-2059-955-1571-608-954-591-9679-58574-8960-39514-4108-607\r\n86834,Noah,Drama-Adventure,en,A man who suffers visions of an apocalyptic deluge takes measures to protect his family from the coming flood.,31.97,Paramount-Regency Enterprises-Protozoa Pictures,3/7/14,125000000,362600000,138,Released,The end of the world is just the beginning.,5.659,5955,Russell Crowe-Jennifer Connelly-Ray Winstone-Anthony Hopkins-Emma Watson-Logan Lerman-Douglas Booth-Nick Nolte-Mark Margolis-Kevin Durand-Leo McHugh Carroll-Marton Csokas-Finn Wittrock-Madison Davenport-Gavin Casalegno-Nolan Gross-Skylar Burke-Dakota Goyo-Ariane Rinehart-Adam Griffith-Sophie Nyweide-Don Harvey-Sami Gayle-Barry Sloane-Arna Magnea Danks-Vera Fried-Thor Kjartansson-Gregg Bello-Mellie Maissa Rei Campos-Oliver Lee Saunders-Frank Langella-J�_hannes Haukur J�_hannesson-Arnar Dan-Jack Angel-Rick Bolander-Joe Barlam-Ezra Barnes-Joseph Basile-Gabriel F.", + "embedding" : [ 0.010398634, -0.020635212, -0.0042945007, -0.04380931, -0.025672471, 0.042269774, 0.0038387165, 0.0015876485, -0.023903353, -0.026739344, 0.014963229, 0.04426847, 0.011499269, 0.008426945, 0.0071169874, 0.015503418, 0.017259032, -0.014571592, 0.017056461, -0.02675285, 0.013302148, -3.8171935E-4, -0.008724049, 0.0021506266, 0.009007648, 0.008426945, 0.035031244, -0.0034200703, -0.006039986, -0.009507323, 0.012498618, -0.03133095, -0.0058441674, -0.02529434, -0.013403434, 0.008204117, 0.008609259, -0.02457859, 0.02045965, -5.140234E-4, 3.715908E-4, 0.006104133, -0.00867003, -0.0148957055, -0.013585748, 0.007866499, 0.0168809, -0.0194603, -0.011627563, 0.01734006, 0.029035147, 0.033329647, -0.03127693, -0.0148957055, -0.02629369, 0.0015327857, -0.033518713, -0.0056280917, -0.012221771, -0.0012567829, 0.013099578, -0.013005045, -0.03789424, -0.010142044, -0.01542239, -0.015922064, -0.005857672, -0.015138791, -0.0034842177, 0.019176701, 0.017232021, 0.012309552, 0.017529126, 0.008278393, 0.018636514, -0.035031244, -0.029278232, 6.321897E-4, -0.0067253504, 0.006077124, 0.012714693, -0.006769241, -0.011641068, -0.0042100963, 0.023241622, 0.0035990078, -0.02209372, 0.02077026, -0.030709732, 0.015111781, 1.1995989E-4, 0.043431178, -0.0071980157, 0.0077044424, -5.7648274E-4, 0.029737392, -9.309816E-4, 0.030061506, -0.021040352, -0.036408722, -0.009122438, -0.004898837, 0.0070494637, -0.012066467, 0.004770542, 0.0074478528, 0.009709894, -0.020108527, 0.021715589, -9.892207E-4, 0.0059724622, -0.0056213397, 0.015868045, -0.04286398, -0.017421087, -0.009500571, 0.029683374, -0.027954768, -0.009932721, -0.0113574695, 0.023363166, 0.026064109, 8.3180633E-4, -0.03608461, 0.032033194, 0.03268142, -0.0041459487, -0.021107877, 0.023673773, -0.0015370059, 0.018960627, -0.00555044, 0.028035797, 0.014652621, -0.021607552, 0.052290272, -0.01613814, 0.012079972, -0.024673123, -0.010391882, 0.03260039, 0.04083827, -0.020176051, -0.014233975, -0.028278882, 0.013308901, 0.01874455, -0.001895725, 0.017556135, 0.00783949, 0.013558738, 0.031520016, 0.013612757, 0.014152946, 0.011141393, -9.166328E-4, -0.012917264, -1.4517574E-4, -3.2348023E-4, -0.02790075, -0.013329159, -0.0034386392, -0.0011048549, -0.006350594, -0.0013800135, 0.025969576, 0.011809877, -0.017799221, -0.012424342, -0.0072520343, -0.018109828, 0.022269282, -0.023633258, 0.027482104, 0.0022046454, 0.020041004, 0.002120241, -0.0030149287, -0.024078915, -0.014098927, -0.009581598, 0.013349415, 0.03168207, 0.043215103, -0.0045308336, 2.8803035E-5, 0.023525221, -0.031547025, 0.013268387, -0.013038807, -2.5848878E-4, 0.031249922, 0.007616662, -0.0058509195, -0.6214332, -0.014774163, -0.0070629683, -8.659901E-4, 0.008663277, 0.014274488, -8.237879E-4, 0.0024814922, -0.024403028, 0.0031482878, -0.032546375, 0.021526523, 0.01250537, 2.3949776E-4, -0.015138791, -0.0155844465, 0.011978686, -0.014342012, -5.473632E-4, 0.016502768, -0.028575987, 0.026118128, 0.027252523, -9.824684E-4, 0.006161528, 0.0048414418, -0.022714939, -0.03322161, 0.00892662, 0.010938823, -0.013072568, 0.010250082, -9.3351374E-4, 7.5415417E-4, 0.03670583, -0.0060703713, -0.018636514, 0.044430528, 0.014328508, 0.030007487, -0.014125937, -0.014166451, 0.004260739, -0.0051790597, -0.021053858, 0.023201108, 0.0030183047, 5.3259236E-4, -0.001708347, -0.0052465834, 0.0020341484, 0.021850636, -0.0074275956, -0.013747805, -0.009460056, 3.1519805E-5, 0.015179304, -0.05048064, 0.026455745, -0.0020020746, -0.017421087, 0.017920762, 0.005401888, 0.010972585, 0.002984543, 0.025712986, -0.01204621, -0.0045679715, 0.0065599177, -0.035301335, 0.012478361, 0.010006997, -0.014787667, -4.8110564E-4, 0.014625611, 0.00898739, 0.024511065, 0.0013817016, -0.01310633, 0.02555093, -0.006407989, -0.010283844, 0.010972585, 0.024821674, 0.021850636, -7.285163E-5, -0.051236905, 0.006225676, 0.0018568989, -0.0020763506, 0.013308901, 0.015989589, -0.0026317323, 0.016394729, -0.012194762, -0.009372275, -0.00795428, -6.0096E-4, 0.030439638, -0.06525481, -0.0105741955, -0.019298244, 0.040190045, 7.8664994E-4, 0.010682233, 0.0049325987, -0.00619529, -1.6627686E-4, 0.028981129, -0.012248781, -0.009439799, -0.001709191, -0.008865848, -0.010452653, -0.017488612, -0.029008137, 0.0034470796, 0.014260984, -0.0020881672, -0.0047435327, 0.0070697204, 0.0044599334, 0.007589652, -0.024592094, 0.016718842, 0.03468012, -0.008771315, -0.009912464, 0.006198666, -9.3214214E-5, -0.004355272, -0.0042911246, 0.019932967, -0.022931013, 0.01928474, 0.010054263, 0.0034639605, -0.011701839, 0.020013994, 8.2294387E-4, -0.0091562, -0.00898739, -0.006492394, -0.008008298, -0.0016931542, -0.006343842, -0.03076375, 0.0031465997, -0.016057111, -0.020284088, -0.007650424, 0.020540679, 0.0064788894, 0.013633015, 0.003825212, 0.0066713314, -0.031628054, -0.021296943, 0.002008827, -0.028792063, 0.006191914, 0.014085422, -0.00439241, -0.019838434, 0.019622358, 0.004220225, -0.014085422, 0.0050575174, -0.009736903, -0.006948178, 0.038218357, -0.0073600723, 0.0075558904, 0.019244226, -0.015003744, 0.023363166, -0.016610805, 0.026118128, 0.013687033, -0.0075153764, 0.01422047, -0.0154899135, -0.016867395, -0.019136187, 0.03565246, 0.024754152, 0.015611456, -0.0032934635, -0.012478361, 0.0040784255, -0.016732348, -0.020729745, -0.009000896, -0.012073219, 0.010979337, 0.017123984, 0.005104784, -8.883573E-5, 0.00462199, -0.011121136, 0.045483895, 0.010452653, 0.010898309, -0.0046017333, 0.013261635, -0.02887309, 4.3019918E-5, -0.0069076642, 0.0012348378, -7.191263E-4, 0.018433942, -0.020297593, -0.014787667, 0.012215019, 0.009054914, 0.035193298, -0.0032563254, -0.0023582617, -0.004311382, 0.0024882446, -2.1987372E-4, -0.0018619632, 0.018609503, 0.008859096, -0.027981779, 0.0032985278, 0.011965182, -0.0052837217, -0.0024949969, -0.012356819, -0.008791572, 0.0073870816, 0.015624961, 0.015895056, -9.883767E-4, -0.020189555, 0.022849984, -0.008217622, 0.03459909, -0.020108527, -0.015152295, 0.016124636, 0.026455745, 0.0024511067, 0.0012736638, -0.014017899, 0.008764563, 0.01902815, -0.0074951192, 0.041513506, -0.017596649, 0.0226069, -0.0073600723, 0.011924667, -2.1333237E-4, -0.0033677395, 0.003960259, 0.0045375857, 0.03179011, 0.018474456, 0.014342012, -0.028738042, 0.0211754, 0.01130345, 0.0038150833, -0.009480313, -0.020864792, 0.0031297188, 0.0028815696, -0.022161245, -0.011452002, -0.023214612, 0.011661326, 0.008859096, -0.015300848, -0.01153303, -0.0022958023, 0.014017899, 0.014017899, 0.00961536, 0.003433575, -0.03430199, 0.015233324, 0.03173609, -0.018136838, -0.032033194, -0.013146845, -0.0029423407, -0.039811913, -0.013450701, -0.016556786, 0.040325094, -0.031222912, 0.012633665, -0.005439026, -0.008285145, 0.013572243, -0.005104784, 0.016921414, 0.0044970717, 0.003099333, -0.0035584937, -7.212364E-4, -0.015503418, 0.016975433, -0.0047941753, 0.00480768, -1.652218E-4, -0.0048448183, -0.004635495, 0.013281892, -0.002646925, -0.03937976, 0.013909861, -0.006283071, -0.0059049386, -0.007589652, 0.005915067, -0.0018991012, -0.02334966, -0.018568989, -0.03214123, -0.031465996, -0.012633665, 0.07179109, 0.034464043, 0.0075423857, 0.008109584, -0.013727548, 0.0024713636, -0.011809877, -0.006526156, -0.013349415, -0.011506021, 0.01347771, -0.017421087, 0.025199806, 0.004314758, 0.01153303, 3.2326923E-4, -0.0071237395, -0.013308901, -0.0017809349, -0.0028022293, -0.03084478, -0.018406933, 0.014828182, 0.026253175, 0.01805581, -0.0062695662, 0.03716499, 0.011782868, 0.0031617924, 0.020176051, 5.861892E-4, 0.011013099, -0.0078124804, 0.006188538, 0.0034774654, 0.007589652, 0.031844128, -0.008575497, 0.029386269, -0.0031989305, -0.011411488, 0.0044430527, 0.0024105925, -0.003112838, -0.0037779452, -0.019109178, -0.0128294835, 0.037867233, 0.029656364, -0.037705176, 0.0142069645, 0.0033542346, -0.019649366, -0.012491865, 0.017015947, -0.01153303, -0.008913115, -0.012201514, -0.027455095, 0.012309552, -0.008447202, -0.027576637, 0.009628865, -0.009304752, -0.0046456237, -0.020824278, -0.015570941, -5.5126686E-5, -0.022741947, -0.005675358, 0.021688579, -0.020297593, -0.002908579, -0.017677678, 0.021931665, 0.009216971, 0.024767656, -0.011917915, 0.010824033, 0.0042641154, -0.027333552, -0.03324862, 0.014949724, -0.011337212, 0.004865075, 0.012363571, -0.014369021, 0.014882201, -0.006590303, 0.009892207, -0.0062425565, -0.00367666, -0.012383828, -0.0011884153, 0.04189164, 0.018582495, 0.0033069681, -0.0065194033, 0.0074275956, 3.1947103E-4, -0.0012061403, -0.016840385, 0.0069009117, -0.019001141, -0.025132284, -0.0075558904, -0.0048448183, -0.0013707291, -0.02601009, -0.01785324, -0.019149693, -0.031465996, 0.009291247, -0.012471609, 0.0013302149, 6.693277E-4, 0.02263391, 0.009507323, -0.009831436, 0.0073330626, 0.007339815, -0.010364872, 0.018447448, 0.021594046, -7.389614E-4, 0.031574033, -0.0024308495, -0.028143836, -0.0017927515, 0.02761715, -0.0069751875, 0.009122438, -0.019136187, -0.013680281, -7.9973263E-4, -0.02572649, 0.014612107, 0.0037475596, -0.01805581, 0.028197855, -0.014342012, -0.0057293773, 0.0122420285, 0.014315003, -0.0067456076, -0.029710382, 0.01118866, -0.02933225, 0.015462904, 0.024916207, -0.009514075, 1.2702876E-4, -0.018555485, -0.013167102, -0.009230476, -0.030628704, -0.004183087, -0.0035956316, 0.021269932, 0.011803125, 0.034491055, -0.0047772946, 0.03516629, 0.011917915, 0.0060366094, 0.025618453, -0.019473806, -0.015895056, -0.02629369, 0.0014737025, 0.011134641, 0.025577938, 0.0045308336, 0.0021489386, 9.7318384E-4, 0.018636514, 0.0066915886, 0.008744306, -0.003342418, -0.024470551, -0.031520016, 0.0077449568, -0.030682722, 0.0029946715, -0.013065816, -0.010810528, 0.033113573, -0.0015707677, -0.013781566, -0.0062189233, 0.025658967, 1.3557472E-4, 0.007852995, -0.02503775, 0.018406933, -0.033869836, 0.0031330949, -0.022053206, -0.011661326, -0.0058239102, -0.008744306, 0.035409376, -0.0054694116, -0.028657015, -0.0096828835, 0.03900163, -0.011998943, -0.005685487, 0.032411326, -0.009291247, -0.005675358, -0.028062807, -0.0021134885, -0.026091117, -0.016381225, -0.0049055894, -0.017232021, 0.0071575013, -0.012086724, -0.04467361, 0.031709082, 0.0046861377, 0.04132444, 0.0063573467, 0.05245233, 0.0148957055, 0.008663277, -0.019122683, 0.0041797105, -0.019986985, 0.0047739185, 0.026064109, 0.02792776, -0.002326188, -0.0060197287, -0.008636268, -0.0034842177, -0.01754263, -0.02984543, 0.03465311, 0.031925157, 0.027333552, -0.028062807, 0.0018720918, -0.02501074, 0.006212171, -0.0077044424, -0.003585503, 0.009655874, -0.031574033, -0.022215264, 0.004372153, -0.017920762, 0.022336805, 0.0012044521, -0.025429387, 0.014882201, -0.03030459, 0.015233324, -0.008649773, -0.01178962, 0.022552881, -0.01708347, -0.0030537548, 5.6466606E-4, 0.010918566, 0.00987195, -0.005182436, 0.011573545, 0.033410676, -0.028575987, 0.017015947, 0.0064113657, 0.0021658193, 0.024646113, 0.026091117, -0.026847383, -0.0055639446, -0.020837782, -0.005385007, 0.031601045, -0.007623414, -0.0077854707, 0.012113733, -0.029035147, -0.013842338, -0.005098032, 0.0038589735, -8.047969E-4, -0.032384317, 0.01894712, -0.0078124804, 0.023201108, -0.01848796, -1.8368529E-4, -0.00247474, -0.0032428207, 0.0017184756, -0.0016416674, -3.5534293E-4, -0.022849984, -0.020783763, -0.035787508, -0.025685977, -0.0024646113, 2.3991978E-4, -0.0050372602, -0.017515622, 0.0013622886, -0.0052668406, -0.0045781, -0.0059083146, 0.0075693955, -0.019595347, 0.0018450823, 0.019595347, -0.003357611, -0.02140498, 0.005162179, 0.031520016, 0.0030098644, -0.004709771, -0.018528474, 0.019203711, 0.03659779, -0.022350311, 0.018866094, 0.0035382365, -0.017123984, 0.0066983406, 0.0194603, 0.03611162, 0.018677028, -0.005192565, -0.038272373, -0.0131265875, -0.0040480397, 0.03330264, -0.0019463677, 0.016610805, 0.04183762, 0.0165973, 0.033383667, 0.025685977, 0.005125041, -0.029089166, 0.0021810122, -0.0025135658, -0.028711034, -8.1239326E-4, 0.010121787, 0.0041425726, 0.014166451, -0.010810528, -0.03173609, -0.0077787186, -0.027144486, -0.02984543, -0.004895461, 0.0104459, 0.028170845, 0.022674425, 0.0012795721, 0.0073600723, 0.018393427, 2.9414968E-4, -0.01894712, 0.0040784255, 0.014841687, 0.008278393, 0.025415882, 0.007947528, -0.037192, -0.0016948422, 0.014004394, 0.020824278, 0.0053917593, 0.015638465, -0.0010103218, -0.017042955, -0.008683534, 0.0032225638, -0.0067827455, 0.0013394994, 0.018109828, -0.040811263, -0.013606004, 0.014558088, 0.034815166, -0.008960381, 0.009581598, 0.011479012, -0.019500814, -0.009419542, -0.010229825, -0.030655714, 0.009709894, -0.02835991, 0.010905061, 0.016921414, -0.014814678, 0.048049793, 0.021675074, 0.0028613124, 0.016529776, -0.013693785, 0.0045105764, -0.003946754, -0.0032343804, 0.013828833, 0.020162547, -0.027306544, 0.011992191, -0.035598442, 0.013788318, -0.009230476, -0.009750407, 0.010952327, 0.042296782, 0.023457699, -0.06390433, 0.011890906, -0.00938578, 0.018731046, -0.024619104, 0.0018720918, -0.025915558, -0.014125937, -0.01047291, 0.009081923, -0.0143014975, -0.029737392, 0.0038961116, -0.012248781, -0.0018653393, 0.0090954285, 0.19349562, 0.002702632, 0.004341767, 0.04124341, -0.0042877486, 0.013660024, 0.018879598, 0.019095674, -0.0029018265, 0.0075964048, -0.0039501307, 8.846646E-5, 0.02306606, 0.0040244064, 0.030574685, -0.018758055, -0.025942566, -0.02209372, -0.007866499, -0.024700131, 0.0012095164, 0.0025270707, -0.014652621, -0.0289001, -6.245933E-4, -0.0058779293, -0.018731046, 0.0063573467, 0.03513928, 0.0041560773, 0.0039264974, -0.016421739, 3.8150832E-4, 0.005101408, -0.017218517, -6.773461E-5, -0.0010651847, 0.00818386, 0.015300848, -2.81278E-4, -0.0124378465, 0.005131793, -0.013565491, 2.985809E-4, 0.0072925487, 0.02283648, -0.025631957, -0.005648349, -0.018069314, 0.00631008, -0.053640746, -0.0038555975, 0.007988041, 0.018406933, -0.014868696, -0.020581193, 0.008224375, 0.013437196, -0.019311748, 0.0050271316, 0.0168809, 0.030952817, -0.021377971, 0.0020594697, 0.0027549628, 0.021999188, -0.0346261, -0.014747154, 0.012458104, -0.026793363, -0.0021945168, -0.031195901, -0.0068603973, 4.6042653E-4, -9.37734E-4, -0.015084771, -0.006472137, 0.010979337, 0.0028106698, 0.01877156, -0.02941328, -0.0101758065, 0.011397983, -0.008595754, -0.027846731, -0.025415882, 0.022485359, -0.02291751, -0.014017899, -0.015570941, -0.011249431, -0.033572733, -0.014315003, -0.0050001224, -0.008528231, -0.013396681, 0.01141824, 0.0035213556, -0.010189311, -0.007204768, -0.03430199, 0.02846795, 0.020419136, -0.014274488, -0.028765053, -0.020905307, -0.01894712, 0.011938172, 0.04386333, -0.01310633, -0.02411943, -0.01871754, 5.840791E-4, -0.007434348, -0.0022654168, 0.029008137, 0.005439026, -0.014747154, 0.04394436, -0.021567037, 3.2959957E-4, -0.026388222, 0.025253825, 0.004125692, -0.0021118005, -0.03408591, -0.03316759, -0.0030554428, 0.0047266516, -0.038326394, 0.013842338, -0.03665181, 0.0068097548, -0.004713147, 0.009068419, 0.0043282625, 0.032006186, -0.016178655, 0.012613408, -0.011796372, -0.0020611577, -0.015949074, 0.021580542, 0.0067321025, 6.583551E-4, -0.021013344, 0.0072115203, -0.021904655, -0.020162547, -0.02294452, -0.024173448, -0.00578002, 0.01894712, 0.023295641, 0.031438988, 2.9161753E-4, -0.017205013, -0.03859649, -0.0077044424, 0.041594535, -0.017069966, 0.015246828, 0.024254477, -0.02020306, -0.028278882, -0.01762366, -0.17156395, 0.027873741, 0.0019429915, -0.027684676, 0.018190857, 0.021188905, 0.013768061, 0.019379273, 0.010290597, -0.01104686, 0.036921903, -0.005165555, -0.03214123, 0.004490319, 0.0010643407, 0.014436545, -0.012552637, 0.02294452, 0.035463393, -0.0016450436, 0.039730884, -0.008460707, -0.006961683, -0.0015893367, 0.017596649, -0.0049292226, 0.026145136, 0.0021523146, 0.0056280917, -0.008089327, -0.03819135, 0.0050203796, 0.034031894, 0.01167483, -0.022350311, 0.010797023, -0.0073128054, -0.027765702, -0.010878052, -0.02360625, 0.035679467, 0.0025945941, 0.021580542, 0.009790922, 0.015179304, 0.010641719, 0.029629355, -0.032789458, 0.025672471, -0.006397861, -0.0014880513, -0.033464696, 0.022485359, -0.011215669, 0.0011301762, 0.036813866, 0.014787667, 0.0038623498, -0.0011006347, -0.0032748946, -0.040244065, -0.0037610643, 0.0020746626, -0.01588155, 0.0037779452, -0.021148391, -0.015638465, 0.009696389, -0.027792713, 0.019014645, -0.01467963, -0.0023481331, 0.007846242, -0.011755859, 0.0088928575, -0.017205013, -0.049373254, 0.015071267, -0.005496421, 0.0062931995, -0.01665132, 0.030790761, 8.5164135E-4, 0.009439799, 0.0029693502, -0.034031894, 0.0019581844, -0.0067861215, 0.0013808575, -0.012032705, 0.017731696, -0.018028801, -0.031628054, 0.0021793242, 0.0065396605, -0.006374228, -0.0018282013, 0.00494948, 0.021256428, -0.0066038077, 0.0031364711, -0.006161528, -0.015260333, 0.016961928, 0.030250572, 0.0026317323, 0.0017015947, 0.02334966, 0.015665475, 0.008548487, -0.0073938337, 0.0035213556, 0.019649366, 0.008514726, -0.01708347, 0.011465507, -0.023768306, -0.023714287, -0.012525627, 0.0152873425, 0.04372828, -0.0091562, 0.006158152, -0.02217475, 6.883187E-4, -0.011424992, -0.09112985, -0.0024629233, 0.020986333, 0.037921254, -0.021499513, 0.045997076, -7.376953E-4, 0.02984543, -0.027954768, 0.02675285, -3.9353597E-4, -0.04183762, 0.015962578, 0.009669379, 0.006607184, -0.006830012, -0.009054914, -0.009027905, -0.020095022, 0.021823626, 0.0051486744, -0.0107632615, 0.003568622, -0.011154898, -0.00952758, 0.01854198, -0.016529776, 0.024605598, 0.011654573, 0.0079137655, 4.0883428E-5, -0.029953469, 0.00927099, -0.04124341, -0.0303316, -0.03897462, -0.02077026, -0.031655062, -0.0043789055, -0.043998376, 0.007434348, 0.023538725, -0.010749756, -0.027711684, -0.016502768, -2.985809E-4, -0.027590143, 0.026482755, -0.018366419, -0.010263586, -0.004598357, -0.017583145, -0.034410026, -0.0035787506, 0.007373577, 0.014612107, 0.03373479, 0.0084066875, -0.0015690796, -0.01756964, -0.0030351856, -1.9697899E-4, -0.01979792, 0.03654377, 0.015408885, 0.01925773, -0.001295609, -0.008717297, 0.018217867, -0.01570599, -0.028630005, 0.037786204, -0.03416694, -0.0093925325, -0.024416532, 0.0010905061, -0.018758055, -0.01250537, 0.033437684, -0.02738757, -0.0018130086, -0.030682722, 0.006306704, -0.026577288, 0.017488612, 0.017015947, 0.016273187, 0.016300196, -0.014490564, -0.043647252, -0.010061016, 0.020837782, -0.0049258466, 0.005648349, 0.0025287587, 0.011458755, 0.0036091362, 0.0020712863, 0.0050608935, -0.008204117, -0.008312155, -0.007042711, -0.074275956, 0.028116826, -0.03235731, -0.0030301213, -0.0050034984, -0.02334966, 0.00961536, -0.0014103991, -0.011877401, 0.020216566, -0.013842338, 0.010756509, -0.0029676622, -0.0026958797, -0.0019024774, 0.024862189, 0.0041965917, 3.958571E-4, 0.007866499, -0.0018146967, -0.018244876, 0.02120241, 0.022188254, 0.00243929, -0.002927148, 0.017380575, -2.6503013E-4, -0.0024679876, -0.023390174, -0.001973377, 0.04753661, -0.014720145, -0.0027718437, 0.0010921942, -0.0069684354, -0.03362675, -0.013774814, 0.0015513547, 0.017407583, -0.005307355, -0.009406037, -0.021688579, 0.01021632, -0.009635617, -0.0054761637, 0.024254477, -0.013680281, -0.0014011146, 0.0027482104, 0.0012179569, 0.029818421, 0.013194111, 0.0021540027, -0.014287993, 0.02987244, -0.022323301, 0.051371954, 0.015516923, -0.0040851776, -0.024673123, 0.026280183, 0.018568989, 0.018758055, -0.025415882, 0.0071845106, 0.0066747074, 0.0028916982, -0.007711195, 0.0018315776, -0.024740646, -0.0061176377, -0.015408885, 0.014247479, 0.029656364, 0.036462743, 0.0027279533, 0.009176457, 0.004611862, 0.0052094455, 0.012687684, 0.011526278, -0.0037475596, -0.02941328, 0.02761715, -0.00397714, 0.008825334, 0.0021286814, 0.0060096, 0.004827937, 0.011276441, -0.0071034823, 0.02025708, 0.033059552, 0.0016965304, 0.008494468, 0.015030753, -0.023646764, -0.011985439, 1.6342821E-4, 0.030169543, -0.0027684674, 0.0017041268, -0.019338759, -0.017664174, -0.01805581, 0.016462253, -0.025064759, -0.019568339, 0.0030908927, 0.021985684, 0.036894895, 0.010182559, -0.009622113, 0.0039703874, -0.0389206, 0.008217622, -0.002984543, -0.016732348, -0.0075423857, 0.034383018, 0.016219169, 0.008035308, 0.031249922, -0.002797165, 0.059042633, 0.006620689, 0.008778067, -0.022539377, -0.003828588, -0.0042506102, 0.0050406368, -0.008521478, -0.016435243, 0.0034099417, -0.014666125, -9.292935E-4, 0.016516272, 0.041810613, -0.022269282, 0.06741556, 0.0066713314, -0.009129191, 0.021026848, -0.0023126833, 0.02457859, 0.019473806, 0.024916207, -0.0082108695, -0.011722096, -0.013585748, 0.0067287264, 0.0120192, -0.047860727, 0.017353565, -0.0060163527, 0.015760008, 0.008420193, -0.015044257, -0.0061682807, 0.0013015174, -0.011600554, 0.011397983, 0.023633258, -0.0042134724, -0.004618614, 0.012978035, -0.0075356336, 0.0025388873, -0.027212009, 0.011141393, -0.029926458, 0.004071673, 0.006863774, 0.027981779, -0.0040818015, -0.011506021, -0.003041938, 0.026536774, 0.00838643, -0.024308495, -0.006678084, -0.028197855, -0.018217867, 0.030358609, -0.022687929, -0.012059715, -0.03659779, -0.020837782 ], + "id" : "a8b9072e-9589-4ac0-9d97-436b10317e26", + "metadata" : { + "source" : "movies.csv" + } + }, + "a2706cb1-117d-484b-908e-724f42c9497f" : { + "text" : "724,8845,Tom Hanks-Audrey Tautou-Ian McKellen-Jean Reno-Paul Bettany-Alfred Molina-J�_rgen Prochnow-Jean-Yves Berteloot-Etienne Chicot-Jean-Pierre Marielle-Marie-Fran�_oise Audollent-Rita Davies-Francesco Carnelutti-Seth Gabel-Shane Zaza-Andy Clark-Fausto Maria Sciarappa-Joe Grossi-Denis Podalyd��s-Harry Taylor-Clive Carter-Garance Mazureck-Daisy Doidge-Hill-Lilli-Ella Kelleher-Crisian Emanuel-Charlotte Graham-Xavier de Guillebon-Tonio Descanvelle-David Bark-Jones-Seretta Wilson-Eglantine Rembauville-Nicolle-Dan Tondowski-Aewia Huillet-Roland John-Leopoldie-David Saracino-Lionel Guy-Bremond-Yves Aubert-Rachael Black-Dez Drummond-Mark Roper-Brock Little-Matthew Butler-Hart-Roland Menou-Hugh Mitchell-Tina Maskell-Peter Pedrero-Sam Mancuso-Andre Lillis-Mario Vernazza-Agathe Natanson-Daz Parker-Andy Robb-Tom Barker-Maggie McEwan-Michael Bertenshaw-Sarah Wildor-David Bertrand-Dan Brown,paris france-based on novel or book-holy grail-christianity-monk-secret society-louvre museum-heresy-mona lisa (la gioconda)-freemason-pentagram-conspiracy-tomb-catholicism-cryptologist-iconography-albino-sect,/tYXOOkDxJ7jSvUX5j1Hbks1GjBZ.jpg,/66oSbVOmD4W7S6ILRPssYt51ab4.jpg,13448-207932-8358-2059-652-594-787-9738-8960-310-1593-298-2048-163-6479-608-161-1979-73731-435-564\r\n8587,The Lion King,Family-Animation-Drama,en,A young lion prince is cast out of his pride by his cruel uncle who claims he killed his father. While the uncle rules with an iron paw the prince grows up beyond the Savannah living by a philosophy: No worries for the rest of your days. But when his past comes to haunt him the young prince must decide his fate: Will he remain an outcast or face his demons and become what he needs to be?,113.759,Walt Disney Pictures-Walt Disney Feature Animation,6/24/94,45000000,763455561,89,Released,Life's greatest adventure is finding your place in the Circle of Life.,8.256,17204,Matthew Broderick-Moira Kelly-Nathan Lane-Ernie Sabella-Robert Guillaume-Rowan Atkinson-James Earl Jones-Jeremy Irons-Jonathan Taylor Thomas-Niketa Calame-Harris-Whoopi Goldberg-Cheech Marin-Jim Cummings-Madge Sinclair-Zoe Leader-Frank Welker-Cathy Cavadini-Judi M. Durand-Daamen J. Krall-David McCharen-Mary Linda Phillips-Phil Proctor-David J. Randolph-Brian Tochi,father murder-loss of loved one-africa-lion-manipulation-redemption-musical-uncle-murder-warthog-shaman-king-scar-family-hyena-meerkat-nature-hamlet-mandrill-murder confession-wildebeest,/sKCr78MXSLixwmZ8DyJLrpMsd15.", + "embedding" : [ 0.011379211, -0.03174166, -0.020208945, -0.027924117, -0.011092228, 0.042046353, 0.0042913975, -0.0024093227, -0.024093227, -0.03673383, 0.021276789, 0.014482632, 0.027043145, -0.013748489, -0.007461559, 0.004264701, 0.018206738, -0.0092969155, 0.026562616, -0.035665985, -0.022144413, -0.008562773, -0.026709445, 0.0023125494, 0.014963162, 0.01401545, 0.03849577, -0.005826423, -0.0056996164, -0.015136687, 0.001952152, -0.016671712, 0.006063351, -0.02968606, -0.009330286, 0.0050789323, 0.010711809, -0.02572169, 0.03638678, 0.0052324347, 0.003884282, 0.016511535, -0.013735142, -0.010925378, -0.010665091, 0.011786327, 0.008229071, -0.00820905, -0.0013431474, 0.018593831, 0.029098745, 0.027657155, -0.017218983, -0.013141153, -0.023012035, 0.00288151, -0.025214463, 0.0034437964, 0.0026979742, 0.010571654, 0.023772873, -0.018006517, -0.034785014, -0.019755112, -0.026215566, -0.015910873, -0.001585915, -0.024266751, -0.0047552423, 0.0039877295, 0.013761838, 0.008015503, 0.016725104, 0.0010745178, 0.035532504, -0.026642704, -0.026295654, -0.001800318, 0.005028877, 0.0029899627, 0.016097747, -0.011052184, 9.771188E-5, 0.009110043, 0.010831941, 0.011299123, -0.008789689, 0.030113196, -0.025334595, 0.01214005, 0.0053992853, 0.04300741, -0.0108920075, 0.0021690577, 0.019394714, 0.023078775, -0.010825267, 0.020395817, -0.016004309, -0.036093123, -0.01053161, -0.0056862687, 0.004124547, -0.008803038, -0.0027980846, 0.016017659, 0.0034504705, -0.0039877295, 0.015670609, 0.005499396, 3.3703822E-4, -0.0017010419, 0.023559306, -0.046531297, -0.006323638, -0.033610385, 0.02058269, -0.02004877, -0.0113258185, -0.015403648, 0.02893857, 0.028885176, 0.0012972634, -0.038655948, 0.046798255, 0.037107576, 0.0073347525, -0.023012035, -0.005459352, -1.6977049E-4, 0.02968606, -0.0119264815, 0.014789637, 0.012787431, -0.022811815, 0.053579066, -0.016978716, 0.011172316, -0.012707341, -0.02565495, 0.032649327, 0.02968606, -0.017325766, -0.018700615, -0.038896214, 0.01429576, 0.0132679595, -0.002614549, 0.02406653, 0.013454832, 0.024240056, 0.03064712, 0.012473751, 0.0053926115, 0.023465868, -0.0019604946, -0.0045149773, -0.005305849, -0.013328026, -0.029232226, -0.0069343112, 0.010171212, -0.011265753, -0.0037574756, 0.0066339797, 0.023238951, 0.0256416, 6.123417E-4, -0.003570603, -0.0021657208, -0.012026591, 0.016364707, -0.021637186, 0.018300174, 0.002861488, 0.016097747, -0.0032786143, -0.0138686225, -0.03275611, -0.013975406, -0.0030617085, 0.02476063, 0.02912544, 0.041218773, -0.005859793, 0.021583794, 0.018967576, -0.017299071, 0.00550607, -0.014696201, -0.001114562, 0.016351359, 0.0014482632, -0.024707237, -0.64839476, -0.016524883, -0.0014666168, 6.00245E-4, 0.019514846, 0.02154375, -0.0034237744, -0.010491566, -0.037080877, -0.0048653637, -0.029872932, 0.017659469, 0.038122024, -0.013074413, -0.026829576, -0.01149267, 0.010338063, -0.032702718, 0.0136950975, 0.009276894, -0.01920784, 0.026535919, 0.016191183, -0.013908667, 0.009597247, 0.008469337, -5.706291E-4, -0.023158863, 0.013321352, -0.0010394793, -0.011412581, 0.008829734, 0.008315834, -8.9181645E-4, 0.040311106, 0.012480425, -0.02051595, 0.057343215, 0.014402544, 0.032916285, -0.021370225, -0.0015125007, 0.006647328, 0.0012230149, -0.020195598, 0.018153345, -0.0033153214, 0.013247938, -0.012507121, -0.007268012, -0.010551632, -0.0045450106, -0.009523832, -0.011118924, -0.015096642, -0.0036740503, 0.029419098, -0.034598142, 0.034304485, 0.015884178, -0.017832993, 0.01288754, 0.011779653, 0.030940775, -0.0043381155, 0.031367913, -0.0011270759, -0.013321352, 0.007888696, -0.022971991, 0.017726207, 0.008863104, -0.016311314, -1.7060475E-4, 0.011499343, 0.00776189, 0.012994325, -0.007922066, -0.023212256, 0.023599349, 0.0067107314, -0.007241316, 0.0070143994, 0.022478113, 0.017365811, 0.005219087, -0.041352253, 0.00796211, 0.01723233, 0.0053725895, 0.018139997, 0.011572758, 0.00998434, -0.0013373076, -0.01059835, -0.0016851911, -0.02003542, -0.0073948186, 0.013114457, -0.06332314, -0.011479322, -0.02331904, 0.01935467, -0.008863104, 0.022411373, -0.002891521, -0.012980977, -3.3349264E-4, 0.03174166, -0.0048219822, -0.019861896, -1.7819122E-5, -0.010164538, -0.021009827, -0.004995507, -0.02638909, 0.015216775, 0.009684009, -2.1669723E-4, 0.0075149513, 0.006003285, 0.011879763, -8.410313E-5, -0.0070344214, 0.016511535, 0.033877347, -0.004244679, -0.020903043, 0.0155504765, 0.02235798, -7.9128897E-4, -0.0016985391, 0.015630564, -0.015310211, 0.016378054, 0.0022725053, 0.029045353, -0.0018186716, 0.024773978, -0.0051957276, -0.019581586, -0.018593831, -0.012747386, -0.009350307, -8.93485E-4, -0.016578276, -0.030059805, 3.2661005E-4, -0.012640602, -0.017299071, -0.008549425, 0.008435966, 5.7229755E-4, 0.016244575, 0.009610594, 0.008315834, -0.030166589, -0.018286826, 0.011532714, -0.0071745757, 0.0054893848, 0.021170005, -1.7404603E-4, -0.013922014, 0.01587083, -0.007001051, -0.012800778, 0.011219035, -0.019408062, -0.016338011, 0.009090021, -0.014669505, 0.0030266698, 0.020689474, -0.0017986494, 0.030273374, -0.0049521257, 0.021276789, 0.008202376, -0.010711809, 0.012493773, -0.01175963, -0.018086605, -0.010164538, 0.035318937, 0.013488202, 0.014536024, -0.007982133, -0.021730622, 0.020355774, -0.018113302, -0.009123391, -0.0076083876, -0.006100058, -0.00582976, 0.031448003, -0.0012980977, -0.00105533, 0.0015592189, -0.0013731804, 0.035879552, 0.020155553, 0.005766357, 5.335048E-4, 0.015176731, -0.029445793, -0.0020188922, -0.01573735, 0.014829681, 0.0016017657, 0.0198352, -0.008509381, -0.014749593, -0.0054460037, -0.004117873, 0.028805088, 0.0036974093, -0.010791897, -0.016458143, 0.004481607, 0.008042199, 0.002050594, 0.009323612, 0.011666195, -0.02351926, 0.0025044275, 0.007922066, -0.01240701, -0.015029903, -0.0076150615, -0.0068175155, -0.0068041678, 0.0011921475, 0.010358085, -0.009343633, -0.016631668, 0.024880761, -0.0046517947, 0.047358874, -0.01316785, 0.0029499186, 0.012260182, 0.020155553, 0.004181276, -0.00985086, -0.0073013823, 0.01005108, 0.009750749, -0.01008445, 0.04423543, 0.004207972, 0.03043355, -0.0012330259, 0.010011036, 0.007995481, -6.156787E-4, 0.0057530086, 0.012220138, 0.035532504, 0.02482737, 0.016084397, -0.030967472, 0.01613779, 0.011445952, -6.3194666E-4, -0.009090021, -0.0140421465, -0.0020005386, -7.174576E-5, -0.036199905, -0.017979821, -0.019888591, 0.003904304, 0.0022007595, -0.0012013243, -0.011399233, -0.004264701, 0.011906459, 0.015176731, 0.024039835, -0.008616165, -0.04020432, 0.01805991, 0.025841821, -0.016725104, -0.025174418, -0.009443744, -0.0074949292, -0.03475832, -0.019020969, 0.0031267803, 0.043407854, -0.009156761, 0.0043014083, -0.003860923, -0.0035272217, 0.012980977, -0.0030033109, 0.022464765, 0.009930948, -0.011813022, 0.0124870995, -0.0105049135, -0.0030383496, 0.019181145, -0.013181197, -0.009423722, -0.008482684, -0.00418795, -0.011272427, -0.0048853857, 0.010771875, -0.029178834, 0.002182406, -0.010231279, 0.0022274556, -0.012126702, 0.010965422, 0.018967576, -0.013414788, -0.016124442, -0.043941773, -0.028618215, 0.015790742, 0.072987124, 0.03678722, -3.9752157E-4, 0.0070210733, -0.009730727, 0.012960955, -0.0062802564, -0.009697357, -0.014269063, -0.0017052131, 0.0073080566, -0.015003206, 0.04217983, -8.459326E-4, 0.016978716, -0.015910873, -0.006880919, -0.009630617, 0.0023242289, -0.0019604946, -0.021597141, -0.017272374, 0.025828473, 0.027203321, 5.602009E-4, -0.009637291, 0.022651637, 0.015270167, 6.669853E-4, 0.0025895212, -0.004408193, -0.003927663, -0.006183483, 0.0033153214, -0.0042546904, 9.143413E-4, 0.027163278, 0.020422515, 0.0263357, 0.0069142887, -0.0018820748, 0.023893006, 0.006387041, -0.0034471333, 0.0062936046, -0.021490358, -0.01826013, 0.028084293, 0.021557098, -0.03713427, 0.016511535, -3.1701615E-4, -0.005546114, -0.013414788, 0.023252299, -0.0050522364, -0.013521573, -0.0063136267, -0.007788586, 0.007428189, -0.0015642244, -0.02714993, 0.011265753, -0.022211153, -0.004161254, -0.012126702, -0.017299071, -0.009350307, -0.02933901, 0.008576121, 0.012026591, -0.019034317, -0.005462689, -0.0024743944, 0.006563903, 0.0011621144, 0.029605972, -0.01751264, 0.010478218, 0.014816334, -0.022398025, -0.022651637, 0.008202376, -0.026909664, -0.017125545, 0.01323459, -0.0100711025, 0.02215776, -0.0037074203, -0.002100649, 0.00178697, -0.0011479321, -0.015216775, -0.012553839, 0.033476904, 0.011165642, 0.0096439645, 0.02167723, 0.006580588, -0.009123391, 0.0057730307, -0.011405908, 8.121453E-4, -0.022478113, -0.016297966, -0.008255768, 0.0045116404, -0.012593883, -0.010725156, -0.039750487, -0.023212256, -0.017859688, -0.0016234564, 0.0033720506, 0.0065238588, 0.0045717065, 0.014576068, 0.016097747, -0.0074148406, 0.015630564, -0.0014332467, -0.01812665, 0.012533817, 0.020155553, -0.023532609, 0.03673383, -0.0033169899, -0.026776185, 0.016498188, 0.030540334, 0.012053288, 0.020916391, -0.020876348, -0.022598246, -0.009363656, -0.02824447, 0.009156761, 0.0018036551, -0.014963162, 0.015270167, -0.012440381, -0.0023776211, 0.018980924, 0.0031151008, -0.011219035, -0.032649327, 0.0058764783, 2.3505079E-4, 0.02310547, 0.025201116, -0.0021507042, 0.004321431, -0.018139997, -0.0019705056, -0.011032162, -0.028057598, -0.012260182, 0.008629513, 0.032515846, 0.016631668, 0.03345021, -4.611855E-5, 0.032248884, 0.008022177, 0.010938725, 0.029098745, -0.020342425, -0.014055495, -0.02577508, -0.0018420307, 0.012420359, 0.019341322, 0.021503706, 0.0073881447, 0.015683956, 0.004361475, 0.005836434, 0.0015708985, -0.005759683, -0.025681645, -0.031421304, 0.007955437, -0.031314522, -0.005239109, -0.0036273322, 5.9732515E-4, 0.04535667, -0.003941011, -0.008222397, 0.013348049, 0.03499858, -0.00796211, 0.016578276, -0.025294552, 0.012987651, -0.024640497, -0.0064704665, -0.024920806, -0.006987703, -0.005038888, -0.016858585, 0.012734038, -5.4727E-4, -0.012880866, -0.0020238978, 0.029445793, -0.019928636, -0.02605539, 0.020409165, -0.016004309, -0.027950812, -0.034518052, -0.007968784, -0.018687267, -0.008462663, -0.0029232225, -0.012053288, 4.0210996E-4, -0.024773978, -0.048400022, 0.028778391, 0.008562773, 0.05053571, 0.018313522, 0.03043355, 0.0061768093, 0.0071145096, -0.024293447, 0.019648327, -0.0032285592, -0.0040711546, 0.024306796, 0.020809608, -0.021530401, -0.009009932, 0.0027563719, -0.0076951496, -0.037961848, -0.04322098, 0.02003542, 0.02379957, 0.0138285775, -0.026629357, -0.004261364, -0.022731725, 0.024293447, -0.008943193, 0.0027179962, 0.0019337984, -0.025040938, -0.014909769, 0.010171212, -1.328548E-4, 0.007815282, 0.0044515743, -0.026882969, 0.020395817, -0.022785118, -0.0056695836, -0.007207946, -0.012026591, 0.02305208, -0.026255611, 0.0054092966, 0.007781912, -0.0046184245, 0.01265395, -0.007888696, 0.006603947, 0.029899627, -0.007227968, 0.016444795, -0.009069999, 0.009069999, 0.0065105106, 6.0691906E-5, -0.022211153, -0.0046551316, -0.025935257, -0.01805991, 0.03748132, -0.004434889, 0.008028851, 0.016031006, -0.013708445, -0.0034871777, 0.013448158, -0.008909822, 0.003907641, -0.028351255, 0.013034369, -0.010171212, 0.010745179, -0.015270167, -0.0032752773, -0.0030416865, -0.010658417, 0.014095539, -0.002924891, 0.0033470232, -0.021944191, -0.03104756, -0.027470283, -0.0383089, -0.013841926, -0.001925456, 0.006587262, -0.01812665, -0.0113258185, 0.0018854118, 0.0149898585, -0.009049976, 0.011425929, -0.023826266, -0.0030850677, 0.009617269, -0.0040344475, -0.0025111015, 0.0042947344, 0.029659363, -3.0997715E-5, -0.006060014, 0.0031284487, 0.009630617, 0.040871724, -0.022398025, 0.009583899, 0.008329182, -0.025748385, -0.00875632, 0.0021940854, 0.031821746, 0.013922014, -0.005839771, -0.04634442, -0.016444795, -0.0026045379, 0.037160967, -0.0164181, -5.126485E-4, 0.029152136, 0.015977614, 0.03315655, 0.028324557, -0.006123417, -0.022945294, 0.010458196, -0.00957055, -0.018273478, -0.012427033, 7.871177E-4, 0.010231279, -0.0014916444, -0.0073614484, -0.026696097, 0.004264701, -0.04015093, -0.01942141, -0.0071011614, 0.01429576, 0.024613801, 0.017138895, 0.005839771, -0.0071545537, 0.0041946243, -0.0019104393, -0.026282307, -0.0112390565, 0.0064537814, 0.010665091, 0.027950812, 0.011158968, -0.019634979, -0.009176783, 0.0013656722, 0.015884178, -9.4020314E-4, 0.024146618, -0.028057598, -0.015777392, -0.011479322, 3.8917904E-4, -0.011839719, -0.0084760105, 0.032515846, -0.018086605, -0.012934258, 0.00995097, 0.016791845, -0.01217342, 0.0017068817, 0.010004362, -0.0044916184, 0.0029265597, -0.005556125, -0.009663987, 0.008729624, -0.02338578, 0.018153345, 0.0062368754, -0.014522676, 0.032115404, 0.009363656, -0.0032202166, 0.019861896, -0.006690709, 0.014536024, -0.021423617, 0.0020272348, -0.0083759, 0.029392403, -0.021984234, 0.025414683, -0.033076465, 0.0073948186, -0.0030850677, -0.0029799517, -0.018727312, 0.026842926, 0.00937033, -0.056595724, 0.015510432, -0.012747386, 0.013321352, -0.016698409, 0.0054159705, -0.0355592, -0.018113302, -0.0055961693, 0.0031000841, -0.020062117, -0.016738452, -0.0013698435, -0.023652742, -0.008529402, 0.013521573, 0.16914646, -0.021970887, 0.005242446, 0.02237133, -0.0015825779, 0.0059665777, 0.032035317, 0.028217774, -0.001935467, 0.014215671, -0.0067707975, 0.0040077516, 0.012133376, 0.0048386673, 0.014202323, -0.027056493, -0.029098745, -0.017592728, -0.018620526, -0.019688372, -0.00476859, -0.00447827, 0.0020155553, -0.02051595, 0.002637908, -0.00386426, -0.013748489, -0.002100649, 0.023078775, -0.01073183, -0.009657313, -0.01364838, -0.025868516, 0.006397052, -0.026616009, -0.0069343112, -0.012160072, 0.015096642, 0.023599349, -0.003063377, 0.007895371, 0.004862027, -0.0060333177, 0.0029549242, 0.008182353, 0.030219981, -0.022291241, 0.0032202166, -0.02263829, 0.015910873, -0.034304485, 0.0014766278, 0.019274581, 0.025134375, -4.4924524E-4, -0.009156761, 0.0059098485, -0.0013097773, -0.006440433, 0.004461585, 0.011979873, 0.029365705, -0.022104368, 0.006900941, -0.0048586894, 0.02351926, -0.04685165, -0.010851963, 0.0021356877, -0.025895214, -0.008048873, -0.02947249, -0.0046918388, 0.0010052748, 0.0037908456, -0.003211874, 0.0047752643, -0.0029949683, 0.0014232356, 0.009517158, -0.02502759, -0.0124870995, 0.011672868, -0.0011662857, -0.018633876, -0.030193284, 0.019034317, -0.012233486, 0.0053725895, -0.02071617, -0.015216775, -0.02776394, -0.01149267, -0.007815282, -0.006690709, -0.0053559043, 0.018553788, 0.009704031, -0.0273635, -0.01587083, -0.02797751, 0.023252299, 0.0022808476, -0.010151191, -0.030727208, -0.020983132, -9.326949E-4, 0.012974303, 0.032862894, -0.010958748, -0.039002996, -0.033904042, -0.004418204, -0.014188975, 0.004204635, 0.029285617, -0.0016334674, -0.014696201, 0.041752696, -0.012747386, 2.0981464E-4, -0.02496085, 0.022277892, 0.0073547745, -0.0083892485, -0.027897421, -0.034224395, 0.021557098, -0.007768564, -0.031581484, 0.014162279, -0.020195598, -0.002380958, 0.0022007595, -0.011833045, 0.0022257871, 0.013127806, 0.010344737, 0.006920963, -0.0031267803, -0.0028765043, -0.0122735305, 0.006096721, 0.0068308637, 0.003343686, -0.024466973, 0.01703211, -0.013775186, -0.015176731, -0.04695843, -0.022945294, -0.0050488994, 0.010651742, 0.008983237, 0.044769354, 0.0067407642, -0.022144413, -0.033049766, -0.014175627, 0.04746566, -0.028831784, 0.0037274424, 0.036360085, -0.011939829, -0.013000999, -0.011332493, -0.16978717, 0.019528195, 0.0072947084, -0.023132168, 0.01703211, 0.010631721, 0.024507016, 0.0026078748, 0.016404752, -0.022451418, 0.024026487, 0.0030650455, -0.043995168, -6.5541004E-5, -0.0062669087, 0.021930844, -0.005602843, 0.023599349, 0.03288959, 0.0039910665, 0.04177939, -0.004104525, 0.0040210993, 0.0056528985, 0.010671765, 0.0070878137, 0.035719376, -0.008916496, 0.015203427, -0.0153369075, -0.031581484, -0.004421541, 0.02031573, 0.0034004152, -0.013468181, -0.0011062195, -0.015790742, -0.017873036, -0.009450418, -0.017525988, 0.029178834, 0.016257923, 0.020862998, 0.0070477696, 0.023719482, 0.023025382, 0.035185456, -0.023198908, 0.009156761, -0.009583899, -0.006927637, -0.036093123, 0.03569268, -3.8396494E-4, -0.015790742, 0.015497084, 0.006680698, 0.009503811, 0.0054393294, 0.010011036, -0.02968606, -0.011219035, 0.014669505, -0.007948763, 5.8773125E-4, -0.015990961, -0.024466973, -0.002330903, -0.017979821, 0.00868958, -0.022664987, 0.012800778, 0.012814126, -0.0033420175, 0.0011462637, -0.019434758, -0.045089707, -0.0061934944, -0.015270167, 0.013354722, -0.018647224, 0.032729413, -0.012927584, 0.018580483, -0.0018453676, -0.018660571, 0.006650665, -0.01056498, -0.00840927, -0.01011782, 0.016031006, -0.016351359, -0.04063146, 0.0016151138, 0.010785223, 0.0040744916, -0.0018820748, 0.007935415, 0.009290242, -0.01104551, -0.0069743553, -0.024507016, -0.015977614, 0.024426928, 0.034598142, 0.015350255, 0.00383089, 0.011152294, 0.021450313, 0.009837512, 6.653168E-5, 0.014829681, 0.023572654, 0.007488255, -0.023292344, 0.022971991, -0.005269142, -0.029178834, 0.0056528985, 0.008896474, 0.053071838, -0.0017168927, 0.0017010419, -0.01504325, -0.016845237, -0.00666735, -0.1018723, -0.0040878397, 0.00868958, 0.04362142, -0.023479216, 0.039510224, -0.0033420175, 0.009377004, -0.016738452, 0.022865206, -0.0061534503, -0.020649431, 0.015617216, -0.0030867362, 0.0029699407, 0.006323638, -0.012420359, -0.010858637, -0.023225604, 0.013027695, 0.0027263388, -5.1890535E-4, 0.009690683, -0.02572169, -0.008809712, 0.00724799, -0.027390195, 0.027109886, 0.006283594, 0.025841821, 0.0026879632, -0.019781807, 0.0043548006, -0.051069632, -0.01826013, -0.023439173, -0.008883126, -0.014482632, 5.360076E-4, -0.036573652, 0.0073347525, 0.012747386, 0.0010987112, -0.021236744, 0.008983237, -0.008148983, -0.03433118, 0.024707237, -0.025281204, -0.021076567, -0.008402596, -0.0018987599, -0.023559306, -0.011859741, 0.02079626, 0.026295654, 0.016564928, 0.0058764783, -0.009597247, -0.025254507, -0.0018353566, 9.86087E-4, -0.008062221, 0.013294656, 0.011846392, 0.020889696, 0.0198352, -0.010751853, 0.01607105, -0.011546061, -0.012874193, 0.028805088, -0.031341217, -0.01165952, -0.019047664, 0.00550607, -0.032942984, -0.016444795, 0.03179505, -0.025361292, 0.01320122, -0.030460246, 0.010324716, -0.021450313, 0.010411478, 0.007781912, 0.012346945, 0.023786223, -0.016378054, -0.04300741, -0.0027413554, 0.01826013, 0.0011429266, 0.0073280786, -0.0017769589, 0.018647224, 0.021396922, -0.0054259817, 0.0016660033, 0.0054460037, -0.019234538, 0.0087362975, -0.0697836, 0.021984234, -0.013321352, -3.3109416E-5, 0.0021974223, -0.009957644, -0.001655158, -0.0037007465, 0.0049321037, 0.009930948, -0.016177835, 0.016524883, -0.0028381287, 0.01990194, 0.0024059857, 0.011572758, 0.009777445, -0.008062221, -0.012160072, 0.012073309, -0.0042780493, 0.019715067, 0.024907459, 0.011859741, 0.009890904, 0.012213464, 0.004882049, 0.011766304, -0.015617216, -0.0045683696, 0.02933901, -0.014055495, -0.006880919, 0.0100711025, -0.015630564, -0.030273374, -0.0015800752, -0.010384781, 0.024440276, 0.014322456, -0.012420359, -0.021049872, 0.0010461533, -0.0131344795, -0.0037241054, 0.020075465, -0.01587083, 0.023612697, 0.0046117506, 0.008395922, 0.030353462, 0.006607284, -0.0040110885, -0.019795155, 0.018233433, -0.011352515, 0.057716962, 0.005279153, -0.0046751536, -0.02270503, 0.022344632, 0.00466848, 0.022117715, -0.021770667, -0.016778497, 6.8367034E-4, 0.011599454, -0.011612802, -5.27665E-4, -0.026882969, -0.009250198, -0.002090638, 0.008496033, 0.038869515, 0.027496979, 0.025147723, -0.0043381155, 0.001615948, 4.8334532E-5, 0.019194493, 0.0016151138, -0.01275406, -0.032862894, 0.02147701, -0.0011729597, 0.0028331233, 0.003340349, 0.006350334, 0.01364838, 0.007781912, -0.0039109783, 0.011285774, 0.011826371, 0.0039143153, 0.014055495, 0.022611594, -0.0043748226, -0.021103265, -0.006263572, 0.03377056, -0.011772978, 0.002542803, -0.013922014, -0.020662779, -0.025054287, -0.005362578, -0.027817333, -0.021890799, 0.01592422, 0.013615009, 0.024240056, 0.014002102, -0.008469337, 0.0042680386, -0.041912872, 0.007521625, -0.0048520155, -0.013054391, -0.016471492, 0.035372328, 0.01059835, 4.2150632E-4, 0.04001745, -0.013014347, 0.04773262, -0.00178697, 0.01915445, -0.033610385, 0.0034437964, -0.01320122, -0.0036807242, -0.00251277, -0.031154344, 0.006860897, -0.0077351937, 0.004438226, 0.021236744, 0.03713427, -0.019648327, 0.070744656, -0.00718125, 0.0019404725, 0.020916391, -0.01812665, 0.010478218, 0.02058269, 0.03091408, -0.011906459, -6.3069526E-4, -8.876452E-4, -0.01585748, 0.013541595, -0.02968606, 0.0014858046, -1.96988E-4, 0.014816334, 0.008349204, -0.0071345316, -0.014202323, 0.007688476, -0.0056629092, 0.018713964, 0.0068008304, -0.012266857, -0.0077952603, 0.014108887, -0.0076284097, -9.268551E-4, -0.028217774, 0.007895371, -0.026202219, 0.003300305, 0.001325628, 0.009377004, -0.015510432, -0.0070344214, 0.009717379, 0.010304693, -0.002050594, -0.010111147, 0.0032652663, -0.019755112, -0.010291345, 0.033129856, -0.009904251, 0.005983263, -0.025801778, -0.01709885 ], + "id" : "a2706cb1-117d-484b-908e-724f42c9497f", + "metadata" : { + "source" : "movies.csv" + } + }, + "c7f2ab97-8c21-418f-85bc-0872d2e07971" : { + "text" : "487,13990,Felicity Jones-Diego Luna-Alan Tudyk-Donnie Yen-Jiang Wen-Ben Mendelsohn-Guy Henry-Forest Whitaker-Riz Ahmed-Mads Mikkelsen-Jimmy Smits-Alistair Petrie-Genevieve O'Reilly-Ben Daniels-Paul Kasey-Stephen Stanton-Ian McElhinney-Fares Fares-Jonathan Aris-Sharon Duncan-Brewster-Spencer Wilding-Daniel Naprous-James Earl Jones-Ingvild Deila-Anthony Daniels-Jimmy Vee-Valene Kane-Beau Gadsdon-Dolly Gadsdon-Duncan Pow-Jordan Stephens-Babou Ceesay-Aidan Cook-Daniel Mays-Andy de la Tour-Tony Pitts-Martin Gordon-Eric MacLennan-Francis Magee-Bronson Webb-Geraldine James-Ariyon Bakare-Simon Farnaby-Drewe Henley-Angus MacInnes-Toby Hefferman-Jack Roth-Geoff Bell-Derek Arnold-Nick Kellington-Michael Smiley-Warwick Davis-Angus Wright-David Ankrum-Ian Whyte-Rian Johnson-Ned Dennehy-Angus Cook-Emeson Nwolie-Jorge Leon Martinez-Russell Balogh-Steen Young-Attila G. Kerekes-Mac Pietowski-Ram Bergman-Katie Sheridan-Terri Douglas-Vanessa Lengies-Vanessa Marshall-Verona Blue-Dave Filoni-David Boat-David Cowgill-David Sobolov-Eugene Byrd-Fred Tatasciore-James Arnold Taylor-Julian Stone-Matthew Wood-Michael Giacchino-Robin Atkin Downes-Samuel Witwer-Tom Kane-Tony Gilroy-Yuri Lowenthal-Alexi Melvin-Christian Simpson-Christopher Scarabosio-David Acord-Flora Miller-John Gilroy-John S. Schwartz-Jonathan Dixon-Karen Huie-Kevin Hickman-Lex Lang-Michael Donovan-Orly Schuchmacher-Steve Bardrack-Tom Harrison-Read-William M. Patrick-Robert Benedetti-Hall-Richard Franklin-James Harkness-David M. Santana-Robin Pearce-Tim Beckmann-Gabby Wong-Richard Glover-Richard Cunningham-Michael Gould-Rufus Wright-Michael Shaeffer-Matt Rippy-Michael Nardone-Nathan Plant-Christopher Patrick Nolan-Dee Tails-Ruth Bell-May Bell-Keith Dunphy-Alan Rushton-Weston Gavin-Nick Hobbs-Samantha Alleyne-Benjam�_n Ben�_tez-Arthur L.", + "embedding" : [ 0.017922968, -0.019235063, -0.009360523, -0.035250757, -0.039687537, 0.04293396, -0.016353862, -0.0072909277, -0.015839845, -0.02862264, 0.02992121, 0.033654597, 0.033194687, 0.005583173, 0.00625613, 0.015312301, 0.016664978, -0.01556931, 0.018734572, -0.030137638, 4.9119076E-4, -0.00795374, -0.026918268, 0.019018635, -0.008623314, 0.019586759, 0.037739683, -0.0071759503, -0.017111361, -0.0038382204, 0.0096378215, -0.0071218433, 0.0069189416, -0.03143621, -0.021020597, 0.0034019821, 0.010922865, -0.025876706, 0.022454435, -0.0046701166, 0.0017009911, 0.0061749695, -0.0105373515, -0.006381253, 0.0014972441, 0.0057725483, 0.02476751, -0.010584695, -0.007399142, 0.028216837, 0.019262116, 0.029380139, -0.02104765, -0.02104765, -0.004754659, 9.350378E-4, -0.014419534, -0.0032937678, -0.009434921, 0.0038145485, 0.009191439, -0.011484225, -0.023874745, -0.012255251, -0.01840993, -0.010050388, 8.5091824E-4, -0.01962734, -0.0022555885, 0.007933449, 0.017544217, 0.007994319, 0.006986575, 0.002468635, 0.023009032, -0.025768492, -0.02560617, -0.0044469247, -0.013377973, -0.004095229, 0.012519023, -0.011064895, -0.012153801, 0.017260155, 0.017557744, 0.01293159, -0.01573163, 0.021331713, -0.021277605, 0.004179771, 0.0011827467, 0.045666367, -0.0061310073, 0.011348958, 0.02212979, 0.018518144, -0.013438843, 0.027973356, -0.023509521, -0.042744584, -0.011720944, 0.011984716, -0.0071827136, -0.009171149, -0.006026175, -0.00491698, 0.0052517676, -0.018423457, 0.03649522, 0.019586759, 0.0073585617, -0.011775051, 0.004169626, -0.037929054, -0.018937474, -0.017057253, 0.032491297, -0.027973356, -0.016854353, -0.028027462, 0.027472865, 0.032464243, -0.0031500459, -0.042501103, 0.0359812, 0.038578343, 0.0041865343, -0.010266816, 0.0056136088, 0.008609788, 0.018423457, -7.443949E-4, 0.024131753, 0.015068819, -0.019113323, 0.036062364, -0.02892023, 0.021480506, -0.017368369, -0.016299754, 0.026904741, 0.042122353, -0.021913363, -0.012410809, -0.026553044, -0.007297691, 0.012715162, -0.0051672254, 0.02406412, 0.011680364, 0.0029319269, 0.022170372, 0.02088533, 0.01832877, 0.006584154, -0.0069189416, -0.0059585413, -0.01431132, 0.0025176697, -0.022048632, 0.0065097567, -0.016678505, 0.010456191, -0.019992562, 0.010205946, 0.02640425, 0.008068717, -0.022170372, -0.009346996, -0.0052145687, -0.0053532184, 0.032193705, -0.025754966, 0.016353862, -0.005380272, -0.009867777, 0.004359001, -0.024753984, -0.034385044, -0.00843394, 0.004240642, 0.0058773803, 0.03192317, 0.044448957, 0.0011159583, 0.018748099, 0.020574214, -0.01632681, 0.016935512, -0.020425418, -0.0030553585, 0.016840825, 0.010936392, -0.0050962097, -0.63759774, -0.036089417, 0.0069527584, -0.008393359, 0.01786886, 0.011362485, -0.0066720783, -0.010422374, -0.031625584, -0.018044708, -0.023793584, 0.019072741, 0.025944341, -0.012634001, -0.010861995, -0.011470699, 0.004091847, -0.009854251, 0.012904536, 0.014595382, -0.025646752, 0.026485411, 0.014554801, -0.007717021, 0.0185452, 0.0030790304, -0.007250347, -0.01556931, 0.006164824, 0.0017102907, -0.019965509, 0.020425418, 5.715059E-4, 0.007730548, 0.04079673, 0.0070068655, -0.008312198, 0.048155293, 0.01715194, 0.03322174, -0.03029996, -0.01383112, 0.0067972005, -0.007987556, -0.023374254, 0.02146698, 0.0028321669, -0.0027814417, -0.020236045, 0.007257111, 2.6630823E-4, 0.010828177, -0.00849481, -0.009854251, -0.0153528815, 0.0025430324, 0.023279566, -0.0420953, 0.026458357, 0.011896792, -0.017936494, 0.026377197, -0.0051300265, 0.010530588, -0.0033428024, 0.023130773, -0.004179771, -0.0057962197, 0.012248488, -0.028947283, 3.8086306E-4, 0.0042203516, -0.01611038, 0.0062595117, 9.570188E-4, 0.0047039334, 0.03297826, -0.0035947384, 0.0024128372, 0.025051573, -0.0025413414, -0.0012469989, 0.013080385, 0.004605864, 0.015501675, 0.01427074, -0.029298978, 5.2543037E-4, 0.010889048, -0.0047276053, 0.013005987, 0.0026461738, 0.021074703, 0.007250347, -0.01615096, -0.005948396, -0.0079469755, -9.5110084E-4, 0.018491091, -0.06476616, -0.017260155, -0.016205067, 0.044827707, -0.032870047, 0.018098814, 0.016272701, -0.020641847, -0.017665958, 0.025673805, -0.019289171, -0.012978934, -0.004971087, -0.022332693, -0.005674479, 0.0019478545, -0.029244872, 0.0031686453, 0.011078423, -0.009495791, -0.012289069, -0.0038788007, 0.006871598, 0.006986575, -0.010462955, 0.006847926, 0.039741643, -0.011267797, -0.001810896, 0.0058807624, 0.023090193, 5.9560046E-4, 7.372088E-4, 0.01163302, -0.016164487, 0.011504516, -0.0011759833, 0.01383112, 0.0064488864, 0.0032886954, -0.006979812, -0.016651452, -0.0045145587, -0.0069730487, -0.02434818, -0.003730006, 0.0010474791, -0.033925135, -0.0050319573, -0.0034273446, -0.013567348, -0.021899836, 0.018802207, 0.011646546, 0.014987659, 0.010422374, 0.0055256844, -0.016705558, -0.00857597, 0.011220453, -0.028189784, 0.0047276053, 0.01573163, -0.012924827, -0.010449428, 0.02092591, -0.010550879, -0.0041966797, 0.0069662854, -0.0027374795, -0.0071150796, 0.018058235, -0.015204087, 0.0070677362, 0.021034123, -0.0037672047, 0.025470903, -0.021859257, 0.036873966, 3.2548784E-4, -0.004761422, -4.3137706E-4, -0.0141354725, -0.01732779, -0.019397385, 0.037847895, 0.024659296, 0.015921006, -0.015663996, -0.010719963, 0.010523825, -0.018842787, -0.017963547, -0.003885564, -0.008704475, -0.011720944, 0.02992121, 9.933719E-4, 0.0017314262, -0.009211728, -0.02158872, 0.0348179, 0.022630282, 0.010347977, -0.010807888, 0.017165467, -0.0359812, -0.0010863685, -0.034547362, -9.785771E-5, 0.0033833827, 0.029677728, -0.027378177, -0.01728721, -0.001733117, 0.013418553, 0.022954924, -0.0056271353, 0.00643536, -0.01197119, 0.0019749082, -0.0047140783, -0.006871598, 0.022116264, 0.019654393, -0.031030405, -0.007209767, 0.015866898, -0.014865917, 0.0114368815, -0.009157621, -0.013905517, 0.012404046, -0.0076561505, 0.011078423, -0.024983939, -0.027756928, 0.036332898, -0.009468737, 0.03795611, -0.010266816, -0.014757703, 0.009570188, 0.03343817, 0.00623584, -0.002624193, -0.0017466438, 0.0153528815, 0.020520106, -0.002930236, 0.029434247, -0.004311657, 0.030922191, 0.0017669341, -0.015866898, 0.016178014, -0.017354842, 0.009083224, 0.025538538, 0.019343277, 0.017841807, 0.016178014, -0.021088231, 0.015366408, -0.008488047, 0.0025075246, -7.397451E-4, -0.014568329, -0.0020053433, -0.012194381, -0.030597549, -0.02392885, -0.0044942684, -5.0302665E-4, 0.008738291, -0.0076899673, -0.005972068, -0.010868758, 0.008893849, 0.005704914, 0.0137905395, 0.001800751, -0.01732779, 0.0056034634, 0.028947283, -0.010956681, -0.025660278, 0.0037604414, -0.004504414, -0.043042175, -0.022102738, -0.010801123, 0.042203516, -0.018207029, 0.015163506, -0.008718002, 0.003601502, 0.005038721, -0.013344157, 0.021669881, 0.025619697, -0.012241725, 0.012316122, -0.007033919, -0.014865917, 0.0058570905, -0.0044705966, -0.015001185, -0.011761525, 0.010949918, 0.004149336, -0.0018599306, -0.006070137, -0.050211363, -0.0075885165, -0.010767307, 0.0036725174, -0.020547159, 0.006814109, 0.028216837, -0.012728688, -0.020006089, -0.033898078, -0.005055629, 0.020452473, 0.07856347, 0.032193705, 0.013114201, 0.009265835, -0.011869739, -3.070999E-4, -0.0080349, -0.0075344094, -0.007581753, -0.020263098, 0.017584797, -0.0055967, 0.016921986, -1.1296965E-4, 0.008007847, -0.016042747, -0.012444627, -0.019356804, -0.012214671, -0.0042778403, -0.031219779, -0.019857295, 0.026782999, 0.0269859, 0.011747997, -0.011064895, 0.016840825, 0.017354842, -0.0013738123, 0.020668902, 0.0064793215, 0.0064083063, 0.007507356, 0.01293159, 0.010246526, 0.011301614, 0.03779379, 0.0077440743, 0.02100707, -0.0038382204, -0.003466234, 0.001163302, 0.0077508376, -0.007629097, 0.013722906, -0.031842012, -0.015420515, 0.02256265, 0.024970412, -0.023834165, 0.010138312, 0.010462955, -0.028135676, -0.020736534, 0.023536576, -6.673558E-5, -0.004402963, 0.001866694, -0.0020594504, 0.011734471, 0.008373069, -0.033789866, -0.002504143, -0.0120185325, -0.0021101758, -0.011964425, -0.0071691866, -0.013188599, -0.018274663, -0.0111190025, 0.010057151, -5.114809E-4, -0.002974198, -0.007994319, 0.023482468, -0.0040106867, 0.02514626, -0.01301275, 0.024835145, 0.0027154987, -0.0321396, -0.019424438, 0.010057151, -0.01025329, 0.0049203616, 0.0059991213, 0.0017178995, 0.023455415, -0.0078117084, -0.018491091, -0.010287107, 0.015826318, -0.021020597, -0.022292113, 0.03949816, 0.018964527, 0.009089988, 0.00473775, 0.015663996, 0.009712219, 0.00601603, -0.024118226, 0.0022031723, -0.02058774, -0.012316122, -0.013154781, 0.0014127018, -0.0058198916, -0.007669677, -0.023712423, -0.03863245, -0.023198407, 0.007683204, 0.0015217613, 0.016123908, 0.015366408, 0.017895913, 0.015596363, -0.01245139, 0.007561463, 0.009806907, -0.03227487, 0.023009032, 0.017381895, -0.0014397553, 0.037685573, -8.280918E-4, -0.014094892, 0.008799163, 0.024253495, -0.0067261853, 0.017503638, -0.018436983, -0.012748978, -0.012302595, -0.017922968, 0.022116264, 0.0013755031, -0.028135676, 0.01295188, -0.03181496, 0.002171046, 0.02464577, 0.009624295, -0.008183694, -0.024199387, 0.0046565896, -0.012918063, 0.013824357, 0.023333674, -0.009049407, 0.0120185325, -0.025430324, -0.0032007713, -0.009915121, -0.040147446, -0.017057253, -0.015758684, 0.021980997, 0.01389199, 0.043826725, 0.007203004, 0.028812015, 0.0038990907, 0.009096751, 0.024672823, -0.020695955, -0.021088231, -0.026377197, -0.0024872343, 0.013804066, 0.01866694, 0.005434379, -0.008758582, 0.0033326573, 0.024510503, -0.005038721, 0.012525787, -0.0012334721, -0.014622436, -0.034953166, -0.0039126175, -0.025768492, 0.0022961688, -0.01790944, -0.008697712, 0.021101758, -0.0013678944, -0.0055730282, -0.011166346, 0.03130094, -0.013033041, 0.012228197, -0.029271925, 0.023604209, -0.029380139, -0.0076223337, -0.019194484, -0.010598223, 0.009854251, -0.01077407, 0.021710461, 0.009360523, -0.018004127, -0.0054817228, 0.036062364, -0.02514626, -0.012525787, 0.022413854, -0.009306416, -0.01631328, -0.027134696, -0.004622773, -0.027107643, -0.008163405, -0.005674479, -0.0070947898, 0.0054242336, -0.010814651, -0.036928076, 0.018098814, 0.005721823, 0.017260155, 0.008258091, 0.03503433, 0.026958847, 0.006032938, -0.021615775, 4.1806165E-4, -0.010368267, -0.0024567991, 0.025809072, 0.010490009, -0.020858275, -0.011004025, 0.002864293, 4.5526028E-4, -0.032870047, -0.025240948, 0.024010012, 0.022914344, 0.016719084, -0.02586318, -0.004348856, -0.026891213, 0.015542256, 0.0018159685, 0.010165365, 0.01744953, -0.021101758, -0.022089211, -0.0038348385, -0.0039870148, 0.008109297, 8.04737E-5, -0.029731834, 0.0024229821, -0.015312301, 0.0031466642, -0.012478443, -0.005454669, 0.043826725, -0.01978966, 0.017138414, 9.52686E-5, 0.02380711, 0.0037705863, -3.6524914E-6, 0.00359812, 0.03381692, -0.0063474355, 0.021669881, 0.007926686, -0.0051165, 0.014460115, 0.018085288, -0.018910421, -0.015812792, -0.026634205, 0.0031382102, 0.036603432, -0.009827197, 0.008636841, 0.017517164, -0.0117006535, -0.015461096, 0.018193502, -0.0097528, 0.023184879, -0.03205844, 0.006117481, 0.0036251736, 0.011098713, -0.010665856, -0.004873018, -0.0058875256, -9.612459E-4, 0.0015445878, 0.0040884656, 0.0071218433, -0.030570494, -0.018261136, -0.036305845, -0.029001389, -3.195699E-4, -0.016340336, 0.0033478749, -0.013864936, -0.0072774007, -3.6564542E-4, 0.0010111259, -0.0048764, -0.0051739886, -0.024835145, -6.8775157E-4, 0.013377973, -0.0039971597, -0.005258531, 0.0016223667, 0.02778398, -0.011646546, -0.006442123, -0.018964527, 0.0076561505, 0.027689293, -0.014865917, 0.025200367, 0.0053464547, -0.021237025, -0.0108552305, 0.013141255, 0.016178014, 0.016556764, -0.010550879, -0.029488353, -0.022183899, -0.007859052, 0.047235474, -0.0051198816, 0.010205946, 0.022603229, 0.024131753, 0.0370904, 0.03476379, -0.0014465187, -0.02682358, -0.0092726, -0.0064387415, -0.024050593, -0.0053396914, 0.006266275, 0.011024316, 0.011917083, -0.0013383046, -0.029515406, -0.0017466438, -0.015244667, -0.038902983, 0.0014761086, 0.009732509, 0.026093135, 0.008021373, 0.0076899673, 0.010632039, 0.015609889, 0.010070679, -0.015609889, -0.015596363, 0.023780057, 0.022183899, 0.033005312, 0.01774712, -0.021913363, -0.010699674, 0.007879342, 0.021494033, 0.00443678, 0.012525787, -0.016083326, -0.011903555, -0.016962567, 0.0041358094, -0.02494336, -0.016421495, 0.03000237, -0.018017655, 0.0046396814, 0.008467756, 0.024875725, -0.010557642, 0.004960942, 0.0047343685, -0.006513139, -0.008596261, -0.0017314262, -0.015177033, -5.2458496E-4, -0.031787902, 0.013878464, -0.0023012413, -8.690948E-4, 0.038686555, 0.014554801, 3.7705863E-4, -0.0029978699, -0.009705456, 0.0026039027, -0.010659093, 1.5006258E-4, 0.0052280957, 0.040959053, -0.023780057, 0.009610768, -0.027608132, 0.0026918268, -0.018166449, 0.0045483755, -0.0027932774, 0.028812015, 0.01690846, -0.054783408, 0.0037401512, -0.007845525, 0.00128927, -0.014798284, -8.285145E-4, -0.027188802, -0.011017553, -0.008941193, 0.0030063242, -0.016773192, -0.019235063, -0.003412127, -0.01556931, -0.010456191, 0.007899633, 0.1905651, -0.0082107475, -0.005654189, 0.03549424, 0.00891414, 0.009570188, 0.030813977, 0.020398365, -0.0076020434, 0.012424336, 0.012715162, -0.0013408408, 0.014757703, -0.0011041224, 0.015366408, -0.029298978, -0.034330934, -0.015339354, -0.019870821, -0.018937474, 0.0056643337, 0.002404383, -0.019573232, -0.028974336, 0.015663996, -3.2548784E-4, -0.016340336, 0.015542256, 0.01908627, 0.009198202, -0.010199183, -0.004558521, -0.0025802308, 0.0020171793, -0.019451492, -0.009286126, -0.0015674141, -0.0024753984, 0.03284299, 0.008224275, -0.0018244227, -0.0011565386, -0.028812015, -0.0032447334, 4.7428228E-4, 0.020100776, -0.030922191, 5.085219E-4, -0.025579117, 0.006506375, -0.037983164, 0.003665754, 0.015921006, 0.016786719, 9.12E-5, -0.008007847, 0.015799265, 0.008089007, -0.003062122, 0.007013629, 0.017219575, 0.024997467, -0.023293093, 0.012877483, -0.007412669, 0.0233472, -0.031517368, -0.018802207, 0.011335432, -0.03016469, -0.008907377, -0.02878496, 0.0010246526, 0.0074397223, -0.00843394, -0.018085288, 1.9032585E-4, 0.006212168, -0.0023113864, 0.032545403, -0.026268983, -0.015609889, 0.010767307, -0.0023891653, -0.024456395, -0.02154814, 0.012667818, -0.024929833, -0.01648913, -0.0241047, -0.015379935, -0.02644483, -0.021764569, 0.003062122, -0.0036589906, 7.6088065E-4, 0.029326033, 0.009130568, -0.016015694, -0.014365427, -0.04509824, 0.028703801, 0.0021220117, 0.0052450043, -0.043610297, -0.019153902, 0.0020036525, 0.0042507867, 0.022995505, -0.0011049678, -0.025754966, -0.02338778, -0.0037401512, -0.0085151, 0.011112239, 0.027973356, 0.0058807624, -0.019437965, 0.03452031, -0.019492071, -0.0019901257, -0.023211934, 0.02556559, 0.0024889251, 6.9705123E-4, -0.021805149, -0.021223499, 0.005062393, -0.0051131183, -0.021521088, 0.016178014, -0.0085556805, 0.0052213324, -0.020141358, 0.008778872, -0.0057556396, 0.019951982, -0.0039903964, 8.0780167E-4, -0.016827298, -0.0027797506, -0.015934533, 0.016651452, 0.005674479, 0.008406886, -0.015542256, 0.0058266553, -0.014906498, -0.018680466, -0.04407021, -0.022887291, -0.0036725174, 0.00807548, 0.024659296, 0.046234492, -0.0018227319, -0.021629302, -0.039389946, -0.018261136, 0.041229587, -0.032328974, 0.015474622, 0.015988639, -0.0093740495, -0.0185452, -0.013919043, -0.1729262, 0.03506138, 0.0026055935, -0.024997467, 0.022589702, 0.025700858, 0.030489335, -0.0055392114, 0.010949918, -0.016637923, 0.019654393, 0.007101553, -0.033627544, 0.0019022017, 0.016583817, 0.019830242, -0.008826216, 0.033113528, 0.034466203, -7.473539E-4, 0.03887593, -0.005474959, -0.013310339, -0.006202023, 0.024726931, -0.002236989, 0.019559706, -0.010949918, 0.00795374, -0.0019732171, -0.03452031, -0.008670658, 0.02280613, 0.0036251736, -0.0038145485, 0.0015234522, -0.015785737, -0.030408174, -9.663185E-4, -0.009725746, 0.04393494, 0.009117042, 0.02392885, 0.020898856, 0.01924859, 0.015488149, 0.019938456, -0.021615775, 0.015866898, -0.022887291, -0.012417573, -0.038902983, 0.03130094, -0.009915121, -0.0024094554, 0.029407192, 0.012674581, 0.010449428, 0.00233844, 0.012458153, -0.025240948, -0.01025329, 0.0023773294, -0.003861892, 0.0046802615, -0.011957662, -0.015704578, -0.0010686147, -0.023360727, -0.0015826318, -0.029948262, 0.013195362, 0.015420515, -0.0043759095, 0.013601164, -0.022954924, -0.046856724, -0.0056474255, 0.0022082448, 0.0068208724, -0.019194484, 0.023631264, -0.012519023, 0.02322546, -0.0071624233, 7.613034E-4, 0.014838864, -0.008285145, 0.010970209, -0.0026833725, 0.0076899673, -0.01481181, -0.031355046, 0.009806907, -0.009042644, -2.851189E-4, -0.00539718, -0.0015564237, 0.015799265, -0.0026174295, 0.0040749386, -0.019383857, -0.020560687, 0.011355721, 0.006411688, 0.0020493052, 0.003334348, 0.023401307, 0.008413649, 0.0010128167, -0.0051638433, 0.024672823, 0.004619391, 0.001153157, -0.017544217, 0.021250552, -0.019451492, -0.025836127, -0.0021761188, 0.026336616, 0.053809483, -0.0043860544, 0.012674581, -0.019965509, -0.002566704, -0.0060971905, -0.08170167, 0.0097528, 0.0129721705, 0.040769678, -0.023320148, 0.03887593, 0.0014862536, 0.0214264, -0.027445812, 0.022833183, 0.0056338985, -0.032410134, 0.008420412, 0.0046363, 0.0026613914, -0.0026461738, -0.012417573, -0.0067735286, -0.012762506, 0.030570494, -0.014203106, -0.007466776, 0.0063136187, -0.008799163, -0.014960605, 0.03167969, -0.011896792, 0.029731834, 0.002776369, 0.005349837, 0.0016096854, -0.023780057, 0.016583817, -0.035845935, -0.028325051, -0.022183899, -0.0056812423, -0.022697916, -0.0074803024, -0.041040212, 0.011680364, 0.014581855, -0.0035338681, -0.02406412, -0.035223704, 0.011430118, -0.03297826, 0.025470903, -0.0021456834, -0.035169594, -0.010077442, -0.015258194, -0.035548344, -0.018166449, 0.015474622, 0.011639783, 0.026079608, -0.00941463, -0.020614794, -0.011281325, -6.6492514E-4, -0.001009435, -0.012370229, 0.027459338, 0.007730548, 0.012180855, 0.0022538977, -0.018450512, 0.011348958, -0.024848672, -0.032815937, 0.013175071, -0.03016469, -0.019722028, -0.016827298, -0.0040546483, -0.01774712, -0.011937372, 0.02778398, -0.04561226, 0.0041966797, -0.03016469, 0.013330629, -0.019532653, 0.017476583, 0.020547159, 0.005055629, 0.0051841335, -0.001217409, -0.043826725, -0.014635962, 0.018044708, -0.011890029, 0.009380814, -0.004629536, 0.020601267, 0.021439927, -0.0044841236, -0.0014617363, -7.659532E-4, -0.013418553, 0.003205844, -0.07147544, 0.029840048, -0.026647732, -0.0031010115, -0.022089211, -0.015663996, 0.0025092154, 0.015244667, -0.0023587302, 0.016705558, 0.002600521, 0.014649489, -0.016367389, -0.0107132, 0.0011370939, 0.010327687, 0.0044705966, -0.0063068555, 0.016705558, 0.00981367, -0.010544116, 0.038226645, 0.014297794, -0.0029708163, 0.0015048529, 0.01661087, -0.0012148728, 0.0023942378, -0.025362689, -0.010246526, 0.031192726, -0.017314263, -0.010111258, -6.957831E-4, -1.7426281E-4, -0.037171558, 0.009157621, 0.004605864, 0.02092591, 0.0044401614, -0.012289069, -0.01836935, 0.002282642, -0.0105644055, -0.012796322, 0.015122926, -0.035250757, 0.0103006335, -0.0011726017, 0.02212979, 0.019153902, 0.020912383, -0.0021372293, -0.004541612, 0.023604209, -0.010936392, 0.068283126, 0.0026411014, -9.536371E-4, -0.027513444, 0.022697916, -0.009685165, 0.016543237, -0.023157826, 0.0065773907, 0.0060904273, 0.008136351, -0.011247507, -4.5399214E-4, -0.023739478, -0.01644855, -0.0076967306, 0.0028034225, 0.028460318, 0.020006089, 0.0260255, -3.614183E-5, -0.0061512976, -0.005860472, 0.012620474, 0.026079608, -0.0152987745, -0.01908627, 0.012011769, -0.014865917, 0.021602247, 0.0027932774, 0.012322885, 0.023793584, 0.007771128, -0.001476954, 0.00649623, 0.02214332, 0.010848467, 0.0152987745, 0.013729669, -0.017922968, -0.0069121784, 0.00719624, 0.026296036, 0.0046498263, -0.004139191, 0.0028118768, -0.0033022221, -0.027811034, 0.0059822127, -0.027608132, -0.018775154, 0.014121945, 0.024172334, 0.022278586, 0.014798284, -0.034844954, 0.004751277, -0.037631467, 0.0027746782, -0.0034560892, 5.056686E-5, -0.01295188, 0.027811034, 0.017070781, -5.554429E-4, 0.021778096, -0.006428596, 0.056109034, 0.0011269489, 0.01715194, -0.033329956, 0.010577932, 0.009035881, -0.0039802515, -0.0092726, -0.014487168, 0.019694973, -0.018058235, 0.013587638, 0.022535594, 0.02694532, -0.007000102, 0.07558758, 0.025687331, -0.010686146, 0.01992493, -0.007838761, 0.017057253, 0.014203106, 0.015745157, -0.018734572, -0.0064083063, -0.008657131, -0.008061954, -0.0038382204, -0.01836935, -0.008291909, 0.005830037, 0.026607152, 0.014798284, -0.0030249234, -0.014081365, 0.005187515, -0.006638261, 0.011984716, 0.02034426, -0.006560482, -0.008765345, 0.019586759, 0.0025650132, 0.005322783, -0.022495015, 0.011484225, -0.03305942, 0.0036792809, 0.0036387003, 0.01882926, -0.013229178, -0.0030756488, -0.0047478955, 0.017381895, 0.021683408, -0.01728721, -0.0049744686, -0.02376653, -0.01812587, 0.02226506, -0.0075411727, -0.018721046, -0.028460318, -0.0042372597 ], + "id" : "c7f2ab97-8c21-418f-85bc-0872d2e07971", + "metadata" : { + "source" : "movies.csv" + } + }, + "d1210fb5-6af0-4755-8d38-313b6c8706fc" : { + "text" : "Michael Benyaer-Style Dayne-Kyle Cassie-Taylor Hickson-Ayzee-Naika Toussaint-Justyn Shippelt-Donna Yamamoto-Hugh Scott-Cindy Piper-Em Haine-Aatash Amir-Chad Riley-Paul Belsito-Darcey Johnson-Kyle Rideout-Jason William Day-Stan Lee-Benjamin Wilkinson-Rachel Sheen-Paul Lazenby-Rob Hayter-Andre Tricoteux-Victoria De Mare-Heather Ashley Chase-Kayla Adams-Olesia Shewchuk-Fabiola Colmenero-Matthew Hoglie,superhero-anti hero-mercenary-based on comic-aftercreditsstinger-duringcreditsstinger,/fSRb7vyIP8rQpL0I47P3qUsEKX3.jpg,/en971MEXui9diirXlogOrPKmsEn.jpg,383498-271110-284052-24428-118340-209112-140607-19995-155-269149-157336-281957-76341-246655-297761-263115-102899-135397-286217-68718-550\r\n11,Star Wars,Adventure-Action-Science Fiction,en,Princess Leia is captured and held hostage by the evil Imperial forces in their effort to take over the galactic Empire. Venturesome Luke Skywalker and dashing captain Han Solo team together with the loveable robot duo R2-D2 and C-3PO to rescue the beautiful princess and restore peace and justice in the Empire.,96.126,Lucasfilm-20th Century Fox,5/25/77,11000000,775398007,121,Released,\"A long time ago in a galaxy far, far away...\",8.2,18331,Mark Hamill-Harrison Ford-Carrie Fisher-Peter Cushing-Alec Guinness-Anthony Daniels-Kenny Baker-Peter Mayhew-David Prowse-James Earl Jones-Phil Brown-Shelagh Fraser-Jack Purvis-Alex McCrindle-Eddie Byrne-Drewe Henley-Denis Lawson-Garrick Hagon-Jack Klaff-William Hootkins-Angus MacInnes-Jeremy Sinden-Graham Ashley-Don Henderson-Richard LeParmentier-Leslie Schofield-Michael Leader-David Ankrum-Scott Beach-Lightning Bear-Jon Berg-Doug Beswick-Paul Blake-Janice Burchette-Ted Burnett-John Chapman-Gilda Cohen-Tim Condren-Barry Copping-Alfie Curtis-Robert Davies-Maria De Aragon-Robert A.", + "embedding" : [ -0.004001851, -0.022889482, -0.02275101, -0.037193675, -0.016824393, 0.031128587, 0.009367655, -0.012213262, -0.017696768, -0.03162709, 0.030574698, 0.021006256, 0.020230811, 0.017862935, 0.017613685, 0.0053173387, 0.012746381, -0.009305343, 0.010496205, -0.024634233, 0.0045938203, 0.0022207506, -0.012607909, -0.0044657337, -0.0022570994, 0.008384502, 0.036805954, -0.021961717, 0.0059750825, -0.022529453, 0.013611833, -0.008938391, -0.0023297975, -0.023235662, -0.031017808, 0.0036868267, 0.010406198, -0.0061724056, 0.025465067, 0.020147728, 0.0075121257, 0.011770151, -0.009436891, 0.007491355, -0.025520455, -0.0081006335, 0.014401126, -0.029577697, -0.008377578, 0.023166426, 0.029439224, 0.033288755, -0.021518605, -0.02264023, -0.009859232, 0.0055769742, -0.01142397, 9.2863024E-4, -0.0022570994, -6.8316636E-5, 0.009021474, 0.0027140582, -0.01808449, 0.0027729091, -0.0014885779, -0.005725832, -0.002231136, -0.012317116, -0.008536821, 0.022723313, 0.021670924, 0.01467807, 0.013466437, -0.0070967083, 0.010863157, -0.030713169, -0.01823681, 0.0051338626, -0.03212559, -0.0020753546, 0.0028663778, -0.0030879336, -0.017267503, -0.0044311155, 0.01913688, 8.3256507E-4, -0.011590136, 0.013985708, -0.028663779, 0.013355659, 0.009014551, 0.04985005, 0.004874227, 0.01672746, 0.013660299, 0.030436225, -0.017710615, 0.018292198, -0.0065705134, -0.02600511, 0.0031658243, 0.002610204, -0.006397423, -0.019358436, -0.004126476, 0.013978785, -0.0047184457, 0.001305102, 0.020964716, 0.013009478, 0.001322411, 0.012767152, 0.021075493, -0.033704173, -0.014138028, -0.01109856, 0.001940344, -0.018264504, -0.011825539, -0.012552519, 0.037138287, 0.039686177, -0.013480284, -0.02234944, 0.046969824, 0.04018468, -0.008066015, -0.014747307, 0.01492732, -0.002826567, 0.03982465, -0.007380577, 0.030270059, 4.1260436E-4, -0.008737606, 0.047357548, -0.029577697, 0.0120678665, -0.011375505, -0.01733674, 0.0345627, 0.022681773, -0.025714317, -0.004801529, -0.025589691, 0.0069720834, 0.012697916, 1.2375967E-4, 0.009824614, 0.019981561, 0.026960569, 0.013528749, 0.011880929, 0.0013016402, 0.018956866, 0.0071105557, -0.01683824, -0.013528749, 0.006092784, -0.018998409, 0.011915547, -0.010994705, 0.0053761895, -0.014221111, 0.01687978, 0.014996557, 0.01808449, -0.0124002, -0.008322189, 0.0077475286, -0.011825539, 0.015688919, -0.029134585, 0.02369262, -0.014581139, -3.6348993E-4, 0.0043411083, -0.022529453, -0.043508016, -0.012718686, -0.0013483746, 0.008308342, 0.026171276, 0.0380799, 0.0014920396, 6.3697284E-4, 0.027057499, -0.014553445, 0.009762301, -0.00834296, -0.003171017, 0.029023807, 0.0012626948, -0.0057500647, -0.6371944, -0.024108037, 0.0014539597, -0.017516753, 0.0057050614, -0.0015110796, 0.0039222296, 0.008959162, -0.021546299, -0.019012256, -0.034507312, 0.018859936, 0.024883483, -0.010724684, -0.025686624, -0.00933996, 7.8972516E-4, -0.022584843, 0.032734867, 0.01087008, -0.023928024, 0.024620386, 0.016159724, -0.0068613053, -8.2217966E-4, 6.068984E-5, 0.0036937501, -0.022709467, 0.013092562, 0.011860157, -0.01370184, 0.023914177, 0.01658899, -0.0050403937, 0.04519738, 0.025838943, 0.0022570994, 0.050930135, 0.008273724, 0.029051501, -0.036999814, 0.006629364, 0.011070865, 4.85086E-4, -0.02024466, 0.031876337, 0.012123255, 0.007629827, -0.013861083, -0.0061931764, -0.004444963, -0.0044311155, -0.004313414, -0.02604665, -0.0051511717, 0.005746603, 0.014691917, -0.033787254, 0.022058647, -0.0032679476, -0.019732311, 0.021878634, -0.0077406047, -0.005857381, 0.01280177, 0.031654783, -0.004566126, -0.0036383613, -0.002667324, -0.009976934, 0.011777074, -0.0013985708, -0.011763227, -0.009291495, 0.009651523, 0.011590136, 0.025395831, -0.007678292, -0.0057189083, 0.02941153, 0.010253878, -0.009748454, 4.264516E-4, -0.002757331, 0.02774986, 0.010780073, -0.027666777, 0.007449813, 0.024080344, -0.008543745, 0.020175423, 0.0134525895, 0.007962161, 0.0062381797, -0.014262653, -0.008876078, -0.01395109, -4.2125888E-4, 0.018859936, -0.047025215, -0.013674146, -0.0068093785, 0.027597541, -0.021767855, 0.009298419, 0.007934466, -0.008896849, -0.011527824, 0.032541003, -0.03747062, -0.004998852, -0.0016140684, -0.012026325, 0.004555741, 5.2630316E-5, -0.030353142, 0.023581844, 0.007685216, -0.0059543117, -0.015093488, 0.0062658745, 0.010558518, -0.006130864, -0.012808694, 0.011188567, 0.042455625, 0.0055354326, -0.009949239, 0.0037906808, 0.01919227, 0.019746158, -0.02099241, 0.016312044, -0.013944167, 0.01109856, -3.1113008E-4, 0.008398348, 0.0034496926, 0.009236107, -0.0014738652, -0.007069014, -0.010537746, -0.006158558, 0.002662131, -0.011742456, -0.0101431, -0.0192892, -0.008308342, 2.2501759E-4, -0.0016374356, -0.020272354, 0.01838913, -0.0011103753, 0.026060497, 0.0015093487, 0.0085091265, -0.024108037, -0.014387278, 0.0110916365, -0.016325891, -0.0067193713, 0.007519049, -0.012877929, -0.025465067, 0.017045947, 0.0035587396, -0.010413121, 0.0011908623, -0.013604909, -0.014061868, 0.018873783, -0.008889926, -0.014442667, 0.010793921, -0.030962419, 0.016810544, -0.015772002, 0.016962864, 0.0018884168, -7.0015085E-4, -0.00562544, -0.0034808489, -0.023651078, 0.0020753546, 0.026932875, 0.014844237, 0.0036937501, 0.001919573, -0.00851605, 0.005459273, -0.01647821, -0.032430228, 0.0029286905, 1.7254954E-4, -0.005016161, 0.015619682, 0.018029101, 0.0018243734, -0.016090488, 0.003880688, 0.030353142, 0.018499907, 0.026392832, -0.008391425, 0.004462272, -0.030879335, 0.0020978563, -0.015495057, 0.0047599874, -0.008709911, 0.017641379, 0.0017014791, -0.018042948, -5.663303E-5, 0.011354733, 0.019953867, -0.015952015, 0.0058296863, -0.018818393, 0.0048984597, 0.015965862, -0.012628679, 0.011181643, 0.012275575, -0.026697472, 0.012580214, 0.017946018, -0.014691917, 0.0035933577, -0.01613203, 0.010267725, 0.004472657, -0.015633529, 0.01125088, -0.015024251, 0.008959162, 0.02780525, -0.023346439, 0.04996083, -0.011929394, -0.007179792, 0.0057015996, 0.031377837, 0.018707616, -0.004476119, 0.0020909326, 0.016312044, 0.005615054, -0.0067678364, 0.040517014, -0.017973712, 0.014691917, 0.004493428, 0.002265754, 0.014871932, -0.017142879, -0.0021082417, 0.00924303, 0.029799253, 0.014331889, 0.008931467, -0.027431374, 0.0061724056, 6.8500545E-4, 0.0069132326, 0.002681171, -0.013466437, 0.0020320818, -0.009928469, -0.037858345, -0.026171276, 0.0021844015, -0.0046872892, 0.011728609, -0.0029494613, -0.008709911, 3.145919E-4, 0.008945314, 0.011216261, 0.02234944, 0.006037395, -0.037996817, 0.0071313265, 0.027985264, -0.017613685, -0.021767855, -0.0041057053, 9.260339E-4, -0.031128587, -0.002757331, -0.014913473, 0.04012929, -0.009208412, 0.012787922, -0.01142397, -0.0021134345, 0.020909326, -0.018859936, 0.017392129, 0.01883224, -3.989735E-4, 0.01898456, -0.015619682, -0.015661225, 0.016865933, -0.020078491, 0.0031138973, -0.012088637, 3.5267178E-4, -0.013826465, 0.010426968, -0.016852086, -0.041320153, 0.019884631, 0.011714762, -0.011790922, -0.017004406, -0.0041195527, 0.017932171, -0.020978563, -0.012753304, -0.0243019, -1.9710675E-4, 0.017862935, 0.08474509, 0.042344846, 0.004586897, 0.0038149136, -0.0077406047, 0.02018927, -9.0007036E-4, -0.007899848, -0.0070967083, -0.027375985, 0.013778, -0.006002777, 0.005182328, 0.011825539, 0.019621534, -0.015827391, -0.0033856493, 3.4207E-4, 0.009554593, -0.010606983, -0.036307454, 0.009776149, 0.015993558, 0.0072074863, 0.011597061, -0.005438502, 0.020812396, 0.007927543, 0.0072974935, 0.009284572, -0.0062104855, 0.0010394081, -2.6850656E-4, 0.01483039, 0.0028698395, -8.702122E-4, 0.027625237, 0.013321041, 0.018652227, -0.0050403937, 0.0048534563, 0.017779851, 0.0076436745, -0.010897775, 0.006400885, -0.018846089, -0.012829464, 0.018347587, 0.021269355, -0.035365842, 0.025285052, -0.008156022, -0.013958014, -0.010987782, 0.017253656, -0.014650376, -0.011368581, 5.3441676E-4, -0.009208412, 0.032402534, -0.0013977054, -0.02394187, 0.0030896645, -0.008370654, 0.009727683, -0.010510053, -0.0038149136, -0.0030688937, -0.017004406, 5.184059E-4, 0.0040814728, -0.009796919, -0.0053381096, 0.009755378, 0.0086199045, -0.0038010662, 0.023817247, -0.008792995, 0.0257974, -0.0017438863, -0.027888333, -0.019912325, 0.0064285793, -0.03381495, 0.008924544, 0.0197877, -0.011486283, 0.027085194, -0.018804546, 0.014262653, 0.00828757, -0.0019974639, -0.016048947, -0.006674368, 0.020355437, 0.024177274, 9.7276835E-4, 0.0052100224, 0.0035552778, 0.010690066, -0.004791144, -0.021393979, 6.780818E-4, -0.010523899, -0.023014106, -0.01387493, 0.00173177, 0.003984542, -0.0033042966, -0.023831094, -0.0197877, -0.026475916, 0.010260802, 0.0014236689, 0.023761857, 0.0030931262, 0.01712903, 0.00811448, -0.00909071, -2.998792E-4, 0.004088396, -0.024869636, 0.019773852, 0.014802695, -0.016450517, 0.04026776, -0.0045626643, -0.019524602, -0.003953386, 0.020369284, -0.031017808, 0.01818142, -0.015245806, 0.0059785442, -0.012656374, -0.015051945, 0.0037283683, 0.014151875, -0.0021342053, 0.023194121, -0.031931724, 0.023069495, 0.008204487, 0.004444963, 0.00648743, -0.027431374, -4.7902783E-4, 8.0443785E-4, 0.001511945, 0.013577214, -0.008405272, 0.015855085, -0.01337643, -0.016367434, -8.29536E-4, -0.04198482, -0.0038010662, -0.008072939, 0.030602392, 0.015287349, 0.04129246, -0.008197564, 0.02179555, -6.0257113E-5, 0.0020320818, 0.03010389, -0.026905179, -0.017156726, -0.024108037, 0.011278573, 0.013771076, 0.032790255, -0.014899626, -0.0045799734, 0.019704618, 0.011458588, 0.009789996, 0.0036452848, -7.901579E-4, -0.022072494, -0.036639787, 0.0125871375, -0.029023807, 0.004438039, -0.020826243, -0.015439668, 0.0370552, -9.2170667E-4, -0.020120034, -0.02264023, 0.018956866, -0.0046734423, 0.023069495, -0.016505904, 0.03542123, -0.00859221, -0.0031467844, -0.013009478, -0.010413121, 0.009346885, -0.008626828, 0.005926617, -0.0053173387, -0.018610686, -0.009229183, 0.024661927, -0.02043852, -0.013459513, 0.0020424672, -0.010904699, -0.022709467, -0.025658928, -0.012815617, -0.026185123, -0.023277204, -8.02707E-4, -6.876018E-4, 0.004444963, -0.030048503, -0.033731867, 0.01854145, -0.016921323, 0.044449627, 0.028026806, 0.034784257, 0.040295456, 0.02179555, 9.545938E-4, -0.0053969603, -0.008772224, 0.004438039, 0.01863838, 0.021670924, -0.023207968, 0.0035552778, 0.001467807, -0.002175747, -0.031045504, -0.027459068, 0.022737162, 0.018001407, 0.024661927, -0.029688474, -0.015315043, -0.029328445, -0.010759302, -0.0029234977, 0.006657059, -0.0070724757, -0.026628235, -0.011964012, -0.0024180736, -0.009907697, 0.013334888, 0.013819542, -0.024011107, 0.0064805066, -0.0128225405, 0.013847236, -0.003953386, -0.016561294, 0.043868043, -0.010516976, 0.023346439, 4.509006E-4, 0.020064645, -0.004586897, -0.005801992, 0.022972565, 0.027057499, -0.0069340034, 0.031765558, 0.011223185, -0.019663075, 0.011811692, 0.024855789, -0.012919472, -0.011839387, -0.026849791, -0.008626828, 0.02074316, -0.019843088, -0.011105483, -0.00933996, -0.015107335, -0.018361434, 0.013085638, -0.009748454, 0.027099041, -0.03040853, 0.0044657337, -0.010918546, -0.0027469455, -0.0050646267, -0.011292421, 0.0035327761, 0.0012194222, 0.0031658243, -0.014719612, 0.0041057053, -0.03262409, -0.014442667, -0.051511716, -0.019275352, -0.011417046, -0.009956162, 0.017516753, -0.011534748, -0.0030342755, -0.007435966, 0.0012791384, -0.0022034415, -0.006722833, -0.0054973527, 0.0012272113, 0.0050784736, 6.2788563E-4, -0.009367655, -0.0057985303, 0.016035099, -0.0029702322, -0.012635603, -0.007069014, -0.0056081307, 0.019829242, -0.024038801, -0.0017897553, -8.710777E-4, -0.023955718, -5.647076E-4, 0.014061868, 0.031433225, 0.014165723, -0.009173794, -0.032347143, -0.014525751, -0.011410123, 0.040738568, 4.539297E-4, 9.330657E-5, 0.030491613, 0.0155781405, 0.037526008, 0.014020327, -0.0011181643, -0.027140582, 0.009900774, -0.001994002, -0.03226406, -0.0062208707, 0.006130864, 0.027666777, 0.00277464, -0.016949017, -0.025977414, -0.011742456, -0.020812396, -0.027459068, -0.016852086, 0.018139878, 0.026434373, 0.019150726, 6.252893E-4, 0.009776149, 0.0042684106, -0.011804769, -0.029993113, -0.0077475286, 0.01873531, 0.0097207595, 0.015661225, 0.012504054, -0.034147285, -0.004545355, 0.02024466, 0.004697675, 0.011749379, 0.02189248, -0.008460661, 8.3040143E-4, -0.009367655, 0.0077890703, -0.00949228, -0.018153727, 0.025783554, -0.02554815, 0.0047011366, 0.0027227127, 0.015785849, -0.008079862, -0.0016746501, 0.01037158, 0.005234255, -0.004714984, 0.01004617, -0.029383834, -0.0152319595, -0.041541707, 0.028857639, -0.0022536376, -0.008543745, 0.029799253, 0.025991263, -0.0017404244, 0.010551594, -0.014401126, 0.020798549, -0.014075715, -0.0068232254, 0.011050094, 0.033704173, -0.017419823, 0.009194565, -0.02985464, 0.0066986005, 0.00304293, 0.0053484947, 0.0026171275, 0.024357287, -0.0027815634, -0.054918136, 0.005016161, -2.6374657E-4, 0.013459513, -0.012261728, -0.0063731903, -0.034728866, -0.011403199, -0.008869154, 0.004303029, -0.029993113, -0.030380836, -0.017849088, -0.0075328965, 0.001919573, 0.015536599, 0.19375053, -0.012330963, 0.0075259726, 0.045418933, -0.003984542, 0.007719834, 0.03686134, 0.020272354, -0.012372505, 0.010710837, -4.4267884E-4, -0.0018468751, 0.010953164, -0.006328187, 0.018818393, -0.035282757, -0.023124885, -0.013161798, -0.017849088, -0.01467807, 1.5199505E-4, -0.0041749417, 0.002212096, -0.017392129, 0.0098315375, 0.008239105, -0.0054627345, 0.0020961254, 0.025908178, 0.0027227127, -0.0082668, -0.017489059, 0.008522973, 0.011133178, -0.020078491, -0.0048880745, 0.0059889294, 0.0030515846, 0.019510755, -0.002011311, -0.0026517457, -0.007719834, -0.008716835, 0.0043099523, 5.2792585E-4, 0.022931023, -0.03010389, -0.008121404, -0.017862935, 0.007920619, -0.045114294, -0.0112647265, 0.036252063, 0.020327743, 0.0018641842, -0.0034237292, 0.021781702, 0.013971861, -0.0057015996, -0.0056773666, 0.0016365702, 0.029245362, -0.022654079, 0.011700914, -0.011327039, 0.0017118646, -0.015398126, -0.013064867, 0.011050094, -0.025991263, -0.0050300085, -0.029494613, 0.0023055647, 0.010087712, -0.013985708, -0.017392129, 6.3307834E-4, -0.006650135, 0.004001851, 0.030519309, -0.028968418, -0.018139878, 0.003717983, -0.0155781405, -0.02064623, -0.035642784, 0.033925727, -0.012794846, -0.022612536, -0.013528749, -0.01117472, -0.0390769, -0.010080787, -0.0028507998, -0.013334888, -0.028248362, 0.037830647, 0.011216261, -0.008564515, -0.009381502, -0.03151631, 0.012483283, 0.011700914, -0.006435503, -0.034479618, -0.009789996, 0.00696516, 0.0062935688, 0.017156726, -4.3726974E-4, -0.0041403235, -0.030131586, 0.0072767227, -0.021823244, -0.0031312061, 0.026849791, -0.01264945, 0.0026707856, 0.04633285, -0.01863838, -0.003842608, -0.012310193, 0.020009257, 0.0014158799, 3.7279355E-4, -0.020078491, -0.024384983, -0.011417046, -0.011084712, -0.035255063, 0.012012477, -0.027251361, 0.029688474, -0.01798756, -0.009042245, 0.0055077383, 0.0165336, 2.542266E-4, 0.015204265, -0.010717761, -0.010191565, 9.3641935E-4, 0.024952719, 0.0012237495, 0.011181643, -0.026462069, 0.010385427, -0.0021722852, -0.0060443184, -0.025506608, -0.019399978, -5.473985E-4, 0.013411048, -0.004060702, 0.03287334, -0.005815839, -0.011680144, -0.026365137, 0.0018295661, 0.043092597, -0.04303721, 0.0335657, 0.019718464, -0.005653134, -0.037802953, -0.012607909, -0.17846318, 0.031488616, 0.009796919, -0.036612093, 0.012732534, 0.012552519, 0.036999814, -0.0028300288, 0.01021926, -0.008848384, 0.038606092, -0.009776149, -0.03171017, -0.003842608, 0.018167574, 0.018707616, -0.024011107, 0.04713599, 0.04550202, 0.0022588305, 0.04818838, -5.2749313E-4, -0.009222259, 0.0043930355, 0.011063942, -5.8201666E-4, 0.01647821, -0.008481432, 0.010274649, 2.1149489E-4, -0.017101336, -0.01833374, 0.015536599, 0.008308342, 0.00106191, 0.008446814, -0.012580214, 0.00753982, -0.012829464, -0.0017006136, 0.030353142, -0.0047115223, 0.028691472, 0.0165336, 0.005476582, 0.012344811, 0.02935614, -0.009928469, 0.015135029, -0.02585279, -0.008730683, -0.029993113, 0.028386833, -0.011860157, -0.0035275833, 0.02644822, 0.02610204, 0.0090768635, -0.0062624123, -0.009042245, -0.012497131, -0.013715687, 0.0026759785, -0.0063904994, -0.0040087746, -0.011576289, -0.014331889, 7.815034E-4, -0.037553705, 0.016962864, -0.01297486, 0.007823688, 0.015744308, 0.0035431616, 0.015508904, -0.015051945, -0.034147285, 0.0021515144, -0.0035033508, 0.0075121257, -0.028829945, 0.04242793, -0.0021428599, 0.010627754, 0.0043930355, -0.011714762, 0.014013403, -0.0036487468, -0.0031190899, -0.010440816, 0.0041195527, -0.02996542, -0.03015928, -0.0070828614, -0.018444518, 0.010600059, 0.009637676, -0.002502888, 0.009713836, -0.0031017808, 0.0061931764, -0.003949924, -0.010814691, 0.019593839, 0.011527824, 0.006400885, -0.00231595, 0.0243019, 0.019981561, 0.0064112702, -0.010600059, 0.0072767227, 0.014414973, 0.018818393, -0.026572846, 0.02099241, -0.019026102, -0.03461809, 0.011645526, 0.007574438, 0.07560591, -0.0027556, 0.009907697, -0.004548817, -0.0054523493, -0.0065670516, -0.09848154, 3.3428092E-4, 0.020867785, 0.01628435, -0.009928469, 0.027168278, -0.0042337924, 0.011811692, -0.017876782, 0.03974157, -0.007920619, -0.041624792, 0.020881632, 9.0872485E-4, 0.0044138064, -0.0025426988, -0.0035552778, -0.0049019214, -0.017059796, 0.043092597, -0.001973231, 0.008536821, 0.0048846123, -0.013175645, -0.009852309, 0.016187418, -0.032679476, 0.03021467, 0.022570994, 6.157693E-4, -0.005455811, -0.022072494, 0.006816302, -0.029328445, -0.028331446, -0.00786523, -0.007934466, -0.025395831, -0.0080521675, -0.035642784, 0.005857381, 0.008010626, -0.011576289, -0.03140553, -0.020660076, 0.0030342755, -0.02996542, 0.027569847, 0.0053727278, -0.030990114, -0.009762301, -0.015245806, -0.02594972, -0.017558295, 0.013244881, 0.021435522, 0.0252989, -0.009118405, -0.023138732, -0.044754267, -0.006075475, -9.97001E-4, -0.024232663, 0.007089785, -9.554593E-4, 0.0045072753, -0.007249028, -0.003515467, 0.017392129, -0.02164323, -0.014234958, 0.03375956, -0.034230366, -0.012192491, -0.02284794, -0.007844459, -0.023194121, -0.020784702, 0.035698175, -0.032901034, 0.009706913, -0.020881632, 0.0106346775, -0.044948127, 0.010960087, 0.024772706, 0.017779851, 0.006795531, -0.0074221184, -0.032430228, -0.017115183, 0.034091894, -0.0028300288, -0.0010117136, -0.008467585, 0.017405976, 0.003281795, 0.01622896, -0.01280177, 0.00851605, 0.0062208707, 1.6173138E-4, -0.070731685, 0.036916733, -0.02589433, 5.62544E-4, -0.01264945, -0.018901477, -0.0038356844, 0.008086786, -0.019275352, 0.020272354, -0.0034393072, 0.007359806, -0.011243955, 4.8162419E-4, 0.009616906, 9.744992E-4, -3.3168457E-4, 0.0064839683, 0.011749379, 0.0034877725, -0.012794846, 0.02419112, 0.010877004, 0.00273656, -0.0022917176, 0.012961013, -0.015384279, -0.009236107, -0.018596837, -0.018444518, 0.02830375, -0.022626383, 0.0024371136, 0.0076436745, -0.0077959937, -0.029189974, -0.0020736237, 0.011659373, 0.010343885, -0.0022934484, -0.016256655, -0.023858787, -0.011887852, -0.01848606, -0.012109408, 0.0068232254, -0.0170321, 0.017932171, 8.1612146E-4, 0.013708764, 0.01127165, 0.0062762597, 0.0056600575, -0.019399978, 0.025922026, -0.007844459, 0.05394883, -0.016242808, -7.771761E-4, -0.022017105, 0.01867992, -0.007927543, 0.023000259, -0.024606539, 8.187178E-4, 0.0034323835, 0.012829464, -0.0027348292, -0.007830612, -0.050293162, -0.012448665, -0.011943241, 0.0040156986, 0.039963122, 0.012192491, 0.020050798, -4.5030563E-5, -0.010060017, 0.00174129, 0.011472435, 0.026669776, -0.0064943535, -0.038162984, 0.0075121257, 0.0036591322, 0.0024907715, 0.00941612, 0.014234958, 0.01004617, 0.0062381797, -0.0022363286, 0.015896628, 0.022972565, -0.003155439, 0.0054627345, 0.014636529, -0.024689622, -0.009845384, -0.00235403, 0.022875633, -0.011950165, 0.0076575214, -7.7284884E-4, -0.019829242, -0.033039507, 0.019593839, -0.029023807, -0.013888778, 0.015301196, 0.009298419, 0.012517901, 0.018402977, -0.016713614, 0.017198266, -0.040517014, 0.01483039, -0.0096446, -0.016796697, -0.020106187, 0.020853937, 0.013584139, -0.0059508495, 0.039187677, -0.018929172, 0.04187404, 0.0049400013, 0.030491613, -0.026282053, 5.4550535E-5, 0.012497131, 0.008398348, -0.015453516, -0.021518605, 0.0029667702, -0.012594061, 0.0077890703, -0.0036348994, 0.04594513, -0.020881632, 0.07189485, 0.018402977, -0.021657078, 0.011666296, -0.018278351, 0.0072628753, 0.014290348, 0.02053545, -0.0130440965, -4.3445703E-4, -0.016021252, -0.008723759, 0.018472213, -0.028636085, -0.008709911, -0.013570291, 0.016769003, 0.0022899867, -0.0036072049, -0.024925025, -0.008723759, -0.00608586, 0.030297752, -0.0035622015, -0.020161575, -0.0029685013, 0.023401828, 0.0047946055, -0.0011735533, -0.027819097, -4.9384867E-5, -0.028082194, -0.0019870785, -0.009789996, 0.023207968, 0.0012973129, 0.0067366804, -0.002189594, 0.026365137, 0.03121167, -0.009367655, -0.03838454, -0.026171276, -0.02795757, 0.008786071, -0.00554928, -0.003427191, -0.023512607, -0.01708749 ], + "id" : "d1210fb5-6af0-4755-8d38-313b6c8706fc", + "metadata" : { + "source" : "movies.csv" + } + }, + "daf35c0d-7c1c-4358-8aea-80066dbd6b4a" : { + "text" : "061,The Donners' Company-Bad Hat Harry Productions-Genre Films-Hutch Parker Entertainment-20th Century Fox,5/18/16,178000000,543934787,144,Released,Only the strong will survive.,6.514,11989,James McAvoy-Jennifer Lawrence-Michael Fassbender-Oscar Isaac-Nicholas Hoult-Rose Byrne-Tye Sheridan-Sophie Turner-Evan Peters-Olivia Munn-Kodi Smit-McPhee-Alexandra Shipp-Lucas Till-Josh Helman-Ben Hardy-Lana Condor-Warren Scherer-Rochelle Okoye-Monique Ganderton-Fraser Aitcheson-Abdulla Hamam-Hesham Hammoud-Antonio Daniel Hidalgo-Al Maini-Berdj Garabedian-Ally Sheedy-Anthony Konechny-Emma Elle Paterson-Manuel Sinor-Gustave Ouimet-Lukas Penar-Ryan Hollyman-Joanne Boland-Nabeel El Khafif-Manuel Tadros-Abanoub Andraous-Aladeen Tawfeek-Carolina Bartczak-T. J. McGibbon-Davide Chiazzese-Sebastian Naskrent-Boris Sichon-Martin Skorek-Kamil Orzechowski-Michael Terlecki-Ahmed Osman-Ziad Ghanem-Moataz Fathi-T�_mas Lemarquis-James Loye-Zehra Leverman-Herb Luft-Stan Lee-Joan Lee-Stephen Bogaert-John Bourgeois-Conrad Coates-Dan Lett-Adrian G. Griffiths-Shawn Campbell-Joe Cobden-Henry Hallowell-Danielle Dury-Naomi Frenette-Aj Risi-Rapha�l Dury-Ilan Rosenberg-Erika Heather Mergl-Tauntaun-Mary-Piper Gaudet-Josh Madryga-Scott Cook-Allen Keng-Tally Rodin-Francis Limoges-Tsu-Ching Yu-Karl Walcott-Desmond Campbell-Ian Geldart-John Ottman-Linda Joyce Nourse-Zeljko Ivanek-Christopher B. MacCabe-Chris Cavener-Ronald Tremblay-Joseph Bellerose-Philippe Hartmann-Sebastien R. Teller-Alexander Peganov-Simon Therrien-Patrice Martre-James Malloch-Vladimir Alexis-Jason Deline-Hugh Jackman,hero-mutant-superhero-based on comic-superhuman-super power-superhero team-world domination-aftercreditsstinger-1980s,/lRxsDK4exeEgKoXqI4zdr0Vl0yk.jpg,/2ex2beZ4ssMeOduLD0ILzXKCiep.jpg,468015-803843-758982-477295-600360-750741-127585-919459-107488-56497-49538-14655-44090-36658-36668-271110-36657-2080-209112-38842-3693\r\n150689,Cinderella,Romance-Fantasy-Family-Drama,en,When her father unexpectedly passes away young Ella finds herself at the mercy of her cruel stepmother and her daughters. Never one to give up hope Ella's fortunes begin to change after meeting a dashing stranger in the woods.,75.014,Walt Disney Pictures-Genre Films-Beagle Pug Films-Allison Shearmur Productions,3/12/15,95000000,543514353,105,Released,Midnight is just the beginning.,6.", + "embedding" : [ -3.4774715E-4, -0.031356156, -0.008008568, -0.04592212, -0.0072422954, 0.030623788, 0.0014799915, -0.016586754, -0.019434849, -0.04038868, 0.019773908, 0.0476581, 0.023354368, -0.0094665205, 0.010124295, 0.032576766, 0.0115212165, -0.021469202, 0.018363422, -0.023272993, -0.01078885, 0.0010680351, -0.033092134, 0.016179884, 0.0016749502, 0.0042484063, 0.025700655, -0.009649612, -0.016044261, 0.0010163287, 0.0011612762, -5.35289E-4, -0.0052893166, -0.017820928, -0.017061437, -0.008584968, 0.010653227, -0.020750396, 0.040361557, -0.0113991555, 0.013372478, 0.017468307, -0.020628335, -0.00380763, -0.012796078, 0.011446624, 0.0070185163, -0.0028107972, 0.004634933, 0.022866122, 0.0075067612, 0.029240428, -0.013928534, -0.030081294, -0.004777338, 0.019882405, -0.009046088, 0.0045671216, 0.0022242256, 0.0044586225, 0.02285256, -0.009066432, -0.033282008, -0.03284801, -0.008184878, 0.0055842977, -0.01891948, -0.032332644, 0.0015952715, 0.021320015, 0.009188493, 0.008374752, 0.014457466, 7.5482955E-4, 0.022540627, -0.026514396, -0.04264003, -0.0010629492, 2.186929E-4, 0.009995452, 0.026677143, -0.00992086, -0.012260365, 0.007981444, 0.015596704, 0.011900962, -0.021631949, 0.039900437, -0.029810047, 0.009608925, 0.0031023878, 0.014145532, 0.0030769582, 0.00582842, 0.015528891, 0.003570289, -0.01771243, 0.022065945, -0.014389654, -0.026731392, 0.00386527, 4.0242038E-4, -0.0033244712, -0.013718317, -0.010137857, -0.022432128, 0.0074389493, -0.005821639, 0.014254031, 0.0077915704, -0.006330227, -0.019624721, 0.021889634, -0.04377927, 0.014877899, -0.021008082, 0.0070998906, 0.0025887138, -0.0067710034, -0.0017105514, 0.042884152, 0.015108459, 0.014471028, -0.040822674, 0.037486337, 0.020953832, -0.0062386813, -0.020696146, -0.0018156597, -0.015108459, 0.031437527, -0.02233719, 0.031871524, 0.00905965, -0.027368823, 0.050804567, -0.033905875, 0.008083161, -0.025171723, -0.022771187, 0.016681692, 0.038571324, -0.009541114, 0.002676869, -0.02065546, -0.02024859, 0.013575913, 7.251619E-4, 0.037486337, -0.0014579527, 0.032061398, 0.020899583, 0.02602615, 0.023300119, 0.027301012, -9.468216E-4, 0.0012460409, -0.019109352, -0.0047366507, -0.02342218, -0.0047095264, 0.008822309, -0.011799245, 0.0041975477, 0.00271247, 0.0043942016, 0.027653633, -0.013521664, -0.013942096, -0.009052869, -0.017780242, 0.024330856, -0.01119572, 0.0073440126, 0.006543834, 0.025402283, -0.003946644, -0.00288539, -0.03241402, -0.017074998, 0.0014359138, 0.013291104, 0.027938442, 0.0363471, -0.026704269, 0.007967881, 0.015705202, -0.020641897, 0.013128355, -0.021374265, -0.008618874, 0.020574085, -9.993757E-4, 0.0041297358, -0.64231294, -0.008266252, -0.013623381, -0.0086256545, -0.0075745727, 0.030054169, 0.0059470907, 0.0014969445, -0.04817347, -0.0018614326, -0.016925814, 0.022120195, 0.026582208, -0.012653673, -0.033499006, -0.012077273, 0.0036720063, -0.018892355, 0.01338604, 0.0046688393, -0.02169976, 0.030569538, -0.0028582653, -0.01679019, 0.018607546, 0.0104362285, 0.0073372317, -0.0047332603, -0.0012570603, -0.0018360032, -0.0036008041, 0.02088602, 0.021062331, 0.01909579, 0.039737687, 0.011534779, -0.0032498783, 0.049855202, 0.04141942, 0.03352613, -0.050614692, -0.0036787875, -0.001474058, 0.0017037702, -0.026324522, 0.013419946, 0.013826816, -0.004523044, 0.015610266, 0.0037533806, -0.017793804, 0.014688025, 0.0044857473, -0.008578187, -0.01829561, -2.4814863E-4, 0.01788874, -0.024846226, 0.026161775, 0.003756771, -0.017766679, 0.01021245, 0.01321651, 0.018214237, -2.78452E-4, 0.0040110652, -0.005197771, -0.0077915704, 0.014633777, -0.02210663, 0.0041907663, 0.01984172, -0.016925814, 0.004909571, 0.017644618, 0.010605758, 0.027992692, 0.007432168, -0.006906627, 0.030759411, -0.0032210583, -0.007472855, 0.0104294475, 0.030623788, 0.0259719, -0.0030532242, -0.005994559, 0.02007228, 0.020085841, -0.00548258, -0.0024191842, 0.025863403, 0.0024090125, 0.012674017, -0.01643757, -0.0027531572, -0.016301945, 0.009602144, 0.0035804606, -0.0730197, -0.01840411, -0.021279328, 0.01921785, -0.012341739, 0.032739513, 0.015678078, -2.1064025E-4, -0.018878791, 0.019516222, -0.026677143, -0.011127909, 0.005814858, -0.009513989, -0.013636944, 0.005485971, -0.026175337, 0.04310115, 0.01009717, 0.00380763, -0.019434849, 0.010524384, 0.019190727, 0.011555123, -0.026188899, 0.007859382, 0.037025217, -0.008700248, -0.008639217, 3.541045E-4, 0.008252691, -0.002112336, -0.0062047755, 0.01407772, -0.015732327, 0.014430341, 0.0023378101, 0.010537947, -0.011914525, 0.023788363, -0.017169936, -0.042097535, -0.011419499, -0.01638332, 0.010090389, -0.021143705, -0.0153797055, -0.0273417, -0.008049255, 0.003929691, -0.021889634, -0.02861656, 0.0038618792, 0.003485524, 0.0031803711, 0.00715414, -0.0016952938, -0.012436676, -0.016966501, 0.012267146, -0.025646405, 0.016776627, 0.01367085, 0.006876112, -0.0319529, -0.0036075853, -0.008896902, -0.0086256545, 0.0227305, 9.3156396E-4, -0.011175377, 0.003502477, -0.010205668, -0.011141471, 0.023259431, -0.0035499453, 0.024466481, -0.012063711, 0.010951598, 0.007391481, -0.0070659844, -0.001044301, -0.01546108, -0.020587647, 9.230875E-4, 0.021184392, 0.011304219, -0.002458176, 3.630048E-4, -0.0051672556, -0.005411378, -0.02365274, 0.005896232, -0.004400983, -0.010971942, -0.014050595, 0.01338604, 0.014335404, 0.007655947, 0.0076016975, -0.0034634853, 0.02948455, 0.003699131, 0.009046088, -0.011060097, 0.008225566, -0.015420392, 0.009710643, -0.016247695, -0.003248183, -0.01009717, 0.03040679, -0.013013075, -0.017237747, 0.0017563244, -5.501229E-4, 0.026351647, -0.004075486, 0.024724165, -0.019190727, -0.002203882, -0.0059572626, -9.60384E-4, 0.008537499, 0.0106735695, -0.011209283, -0.009039307, 0.02439867, -0.012429894, 0.006598084, -0.005302879, -0.014552402, 0.01384716, 0.0037228651, -0.019394161, -0.007357575, -0.002371716, 0.039710563, -0.0018970338, 0.03566898, -0.017291997, -0.0029582877, 0.009452959, 0.031980023, 0.0048553217, -0.0073643564, -0.019367037, 0.0010985504, 0.019122913, -0.023123808, 0.011053315, 0.0023445913, 0.02457498, 0.0013002903, 0.019339912, 0.008205222, -0.027626509, 0.011473749, -1.437821E-4, 0.023625614, 0.011683965, 0.00300067, -0.04160929, 0.009480083, -3.8377213E-4, -0.0015427173, 0.008225566, -0.013121574, 0.011921306, -0.008693467, -0.028914932, -0.015216958, -0.011527998, 0.0059097945, 0.01609851, -0.011948431, 0.0023513725, -0.0092291795, 0.0059097945, 0.021686198, 0.028291063, -0.007818695, -0.028046941, 0.015027084, 0.021713324, -0.0063200556, -0.029647298, -4.7637755E-4, -0.0024547854, -0.036726844, -0.013867503, -0.0027785865, 0.03762196, -0.011141471, 0.008483251, 0.003380416, 0.0091071185, 0.018512608, -0.03594023, -0.010721038, 0.006103058, -0.0024242701, -0.007418606, -0.013453851, -0.015162708, 0.013379259, -0.020858895, -0.010748163, -0.018566858, -0.020262152, -0.0053096605, 0.0075338855, 0.008693467, -0.036672596, 0.027355261, -0.026229586, 0.0015944238, -0.011188939, 0.020262152, 0.04396914, -0.0044891383, -0.02331368, -0.019801032, -0.020818207, -8.022978E-4, 0.076057665, 0.04361652, -0.011317781, 0.0123553015, -0.0023547632, 0.0017512385, -0.008415438, -0.013480976, 2.0322335E-4, -5.2511727E-4, 0.015515329, 8.9511514E-4, 0.019421287, -1.4012663E-5, 0.017183498, -0.012531612, -0.012524831, -0.0036550534, -0.013365696, -0.0015181357, -0.021130143, -0.013026638, 0.021618387, 0.014348967, 0.017508995, -0.023449304, 0.021170828, 0.0111550335, -0.0024971678, 0.005265583, -0.00917493, -0.0049739922, 0.012206116, 0.0104362285, 0.0052689733, -0.010103951, 0.03029829, -0.006652333, 0.032902263, 0.0027768912, 5.125615E-5, 0.005665672, 0.008239128, 0.009608925, 0.014511715, -0.028453812, -0.01881098, 0.019394161, 0.028914932, -0.037187964, 0.029918546, -0.0023869737, -0.012701142, 0.0077644456, 0.011643278, 0.007045641, -0.012124741, -0.004950258, -0.03311926, -0.0045501688, 0.0065336623, -0.04662736, 0.021401389, -0.0101921065, -0.004397592, 0.003939863, -0.013141918, -0.02746376, -0.0032803935, -7.7432545E-4, 3.0621246E-4, -0.00830694, -0.007276201, -0.0060488083, 0.029457426, -0.004770557, 0.027653633, -0.013067325, 0.022188006, 0.0030532242, -0.028019816, -0.03157315, 0.008049255, -0.030678038, -0.0034194076, 0.017522557, -0.021374265, 0.02169976, -0.012178991, 0.012592643, 0.009093556, -0.007866164, -0.01148053, -0.01847192, 0.040768426, -0.008062817, -0.0068693305, 0.025253097, -0.0046993545, -2.911667E-4, 0.009079994, -0.016410444, -0.01090413, -0.008957933, -0.021442076, -0.014606652, 0.0047909003, -0.011385594, -0.01783449, -0.003583851, -0.027735006, -0.022635562, -0.003236316, -0.0034194076, -0.009676737, 0.00513335, 0.010388761, 0.02203882, 0.0036855687, 0.010768507, -0.01517627, -0.022486378, 0.0055300486, 0.019339912, -0.012016242, 0.021265766, -0.011175377, -0.027965566, -0.012273927, 0.028643684, -0.0017732773, 0.022513501, -0.013521664, -0.029728672, -0.023408618, -0.025036098, 0.0064251637, -0.004177204, -0.009154587, 0.0071270154, -0.02180826, 0.012823203, -0.004044971, -0.021333577, -0.0067947377, -0.029674424, 9.552981E-4, 0.0060725426, 0.009656394, 0.014009908, 0.009208836, -0.011548341, -0.010280262, -0.010863443, -0.0022818656, -0.043182526, -0.024073172, -0.010354855, 0.027328137, 0.012965607, 0.047929347, 0.0036245382, 0.031925775, 0.0026327914, -0.0020123138, 0.036455598, -0.028074065, -0.011948431, -0.027490884, 0.0124841435, -0.006167479, 0.016356194, 0.01996378, 7.8704016E-4, 0.0011833151, 0.008734154, 0.018648231, 0.022418566, -0.006835425, -0.030596662, -0.020167215, -0.0041263453, -0.025348034, -0.00675066, -0.03669972, -0.0091071185, 0.024886914, 0.010565071, -0.0076423846, -0.01101941, 0.03594023, -0.016681692, 0.012836765, -0.017522557, 0.019353474, -0.015352581, -0.001157038, -0.019516222, -0.023205182, -0.0038618792, -0.003946644, 0.02336793, 7.069375E-4, -0.009127462, -0.006486194, 0.03241402, -0.01096516, -0.016288383, 0.015298331, -0.016030699, -0.0035465546, -0.038164455, 0.002602276, -0.030705161, 0.003109169, 6.696411E-5, -0.016410444, -0.010117513, -0.017224185, -0.03230552, 0.02631096, -0.008713811, 0.05140131, 0.0048214155, 0.05037057, 0.03957494, -0.0043365615, -0.0030667866, 0.017169936, -0.0039771595, 0.0075338855, 0.034122873, 0.0037296463, -0.023205182, 0.0049943356, 3.2157604E-5, 0.002556503, -0.042368785, -0.032169897, 0.024263045, 0.025985464, 0.024710603, -0.01909579, -7.196522E-4, -0.017088562, 0.014064157, 0.0063946485, 0.006686239, -0.00715414, -0.018539732, -0.02313737, 0.00472987, 3.1447702E-4, -0.003438056, 0.0041941567, -0.023693426, 0.008225566, -0.027612945, 0.004723089, -0.0158137, -0.010259918, 0.033471882, -0.030081294, 0.0018088785, 0.018282048, -0.002261522, -0.0033431195, -0.0051435214, 0.005675844, 0.02983717, -0.009364803, -0.0012248498, 0.022635562, -0.0044416697, -0.0049536484, 0.014240468, -0.011066878, -0.034366995, -0.0385442, -0.0029209913, 0.033010762, -0.006543834, -3.6067376E-4, 0.0062590246, -0.01886523, -0.01961116, 0.01015142, -0.018553296, 0.0014028556, -0.0273417, 0.004851931, -0.010103951, 0.001985189, 0.0032634407, -0.0012706227, -0.0077441023, 0.01649182, 0.0034651805, -0.0034109312, 0.0011790768, -0.002002142, -0.018485485, -0.03751346, -0.026229586, -0.01771243, -0.0032583547, 0.013006294, -0.02244569, 0.021062331, -0.009202055, -0.0052825357, -0.007696634, 0.004692573, -0.0204249, -0.0042212815, 0.011466968, -0.0013714927, -0.010815974, 0.0057097496, 0.024561416, 0.0033973688, -0.0069337515, 0.006486194, 0.019882405, 0.030542413, -0.018132864, 0.005435112, -0.007913631, -0.01275539, -0.0056215944, 0.013304666, 0.017617494, 0.010483697, 0.007045641, -0.03480099, -0.010205668, 0.0013486062, 0.038327202, 0.00386527, 0.012952045, 0.022798311, 0.024602104, 0.03946644, 0.026188899, -0.010687132, -0.01921785, -0.008320502, -0.010476916, -0.031220531, -0.008157754, 0.008883339, 0.01765818, 0.01032773, -0.012768953, -0.019719658, -0.0018970338, -0.022418566, -0.031518903, 0.0023361149, 0.026650019, 0.03341763, 0.019977342, -0.01944841, 0.004075486, 0.005285926, 0.011439843, -0.028345313, -8.565472E-4, 0.008496813, 0.0024530902, 0.0061844317, 0.018268486, -0.030244041, -0.02688058, 0.012762172, 0.02620246, 0.01101941, 0.024276607, -0.013772567, -0.0053978157, -5.501229E-4, 0.014484591, 6.704887E-4, -0.003756771, 0.020736834, -0.015854388, -0.009154587, -0.0057911235, 0.022364317, -0.004122955, -0.005245239, 0.008483251, -0.0068388153, -0.009256304, 5.3740817E-4, -0.022622, -0.012185772, -0.0205334, -0.0014460856, 0.011968775, 0.0053740814, 0.024235921, 0.020316401, -0.029620174, 0.007988225, -0.009642831, 0.001874995, -2.1646783E-4, -0.009161368, -0.0020682584, 0.013277541, -0.031763025, 0.0039025664, -0.024629228, -0.001058711, -0.005435112, -0.0035160393, -0.0067303167, 0.028887806, 4.2594256E-4, -0.035858855, 0.00403819, -0.004933305, 0.01609851, 0.003699131, -0.0021377655, -0.017753117, -0.0032956512, -0.020140091, 0.004712917, -0.016084949, -0.017603932, 8.578187E-4, -0.021075893, -0.004943477, 0.027911317, 0.17641905, -0.0062217284, 0.026460147, 0.048146345, 0.0021140315, 0.0036584442, 0.02221513, 0.0021971008, -0.0047739474, 0.011216064, 0.005523267, 0.011846713, -0.0010417581, 0.0019309396, 0.0069167987, -0.014972835, -0.026053276, -0.024805538, -0.010843099, -0.016627442, 0.008286596, 0.0050689285, -0.010829537, -0.029728672, 0.01021245, -0.0118874, -0.008564624, -0.006330227, 0.020628335, 0.0119958995, -0.0075949165, -0.013996346, -0.005845373, 0.009717424, -0.024873352, -0.017875178, -0.011338125, 0.020411337, 0.004390811, 0.009073213, 0.013263979, 0.0034007593, -0.0012952045, 0.006818472, 0.011216064, 0.01967897, -0.016301945, 0.009486864, -0.025958339, -0.0028633513, -0.05538864, 0.0038449264, 0.018539732, 0.03490949, -0.015962888, -0.005543611, 0.0064014294, 0.0047807284, -0.020872457, -0.0018732997, 0.012341739, 0.021835385, -0.036075853, 0.010992285, 0.002822664, 0.021238642, -0.038218703, -0.028589435, 0.014755838, -0.027884193, -0.018783856, -0.022282941, -0.018037926, 0.0027735007, -0.0017563244, -0.01205693, 0.010002233, 0.020560523, 0.014538839, 0.022174444, -0.020560523, -0.025144598, 0.0021242031, -0.012816422, -0.017346246, -0.031003533, 0.012050148, -0.0054893615, -0.004133126, -0.02024859, -0.0062997118, 0.0053367848, -0.014294717, -0.0022208348, -0.020913145, 0.009425834, 0.0051367404, 0.016017135, -0.015827263, -0.016044261, -0.03306501, 0.018688919, 0.011683965, 0.007262639, -0.02659577, -0.013141918, 0.0063912575, -0.004824806, 0.032169897, -0.022052381, 0.003716084, -0.03773046, -0.0072219516, -0.014199781, 0.011839932, 0.012090836, -0.01113469, -0.00577078, 0.0318444, -0.0153797055, -0.0060047307, -0.02001803, 0.027219638, 0.008469688, -0.0032261442, -0.017210623, -0.0059335283, 0.0053164414, 0.0060318555, -0.021184392, 0.012945264, -0.024493605, 0.016708815, 0.0036855687, 0.01390141, 0.008327283, 0.010856662, 0.0058521545, -4.4882903E-4, -0.0036720063, 0.0033278617, -0.004367077, 0.03086791, 0.018024364, 0.014511715, -0.049014334, 0.008395095, -0.016044261, -0.015759451, -0.021414952, -0.025917651, -0.006340399, -0.0011434756, -0.007947537, 0.031410404, -0.001742762, -0.023164494, -0.038164455, 4.5730552E-4, 0.034828115, -0.037811834, 0.02677208, 0.002498863, 0.004414545, -0.009730986, -0.015759451, -0.17381509, 0.028291063, -5.480037E-4, -0.029131928, 0.025198847, -0.003946644, 0.025605718, 0.011263533, -0.002302209, -0.02249994, 0.026812768, 0.0016673214, -0.051618308, -0.018187111, 0.012857108, 0.034149997, -0.003987331, 0.06173582, 0.037025217, -0.0116364965, 0.052594796, 0.0010146333, -0.0031396842, 0.0063946485, 0.012992732, 0.008001787, 0.028887806, 2.4624143E-4, -0.016288383, -0.008598531, -0.026731392, -0.0105515085, 0.0012528221, 0.0116364965, -0.006143745, -0.008693467, -0.019163601, -0.01015142, -0.0025395502, -0.020004466, 0.038625576, 0.007893288, 0.020628335, 0.0040687053, 0.018254925, 0.019638283, 0.022947498, 0.012904577, 0.0020835162, -0.033037886, -0.021374265, -0.02313737, 0.037187964, -0.008395095, -0.0019597597, 0.012524831, 0.008801966, 0.013745442, 0.009927641, -0.011914525, -0.033661753, -0.03398725, 0.011704309, -0.019814594, -0.0086256545, -0.02983717, -0.0024039266, 0.016871564, -0.031708777, 0.015528891, -0.014511715, 0.012497706, 0.008388313, -6.526219E-6, -2.0470672E-4, -0.012212897, -0.020329963, -0.010619321, 0.004665449, 0.015718764, -0.02365274, 0.028508062, -0.020628335, -0.008815528, 0.013745442, -0.008883339, 0.006798128, -0.0032091911, 0.021659074, -0.0015664515, 0.01090413, -0.010754944, -0.03179015, -0.015542454, 5.602946E-4, 0.0081441915, -0.0055300486, -0.008605312, 0.009154587, -0.009086775, -0.0052181142, -0.010232793, -0.0060318555, 0.016763065, 0.03572323, -3.8250067E-4, 0.0080153495, 0.018132864, 0.016084949, -0.0034990865, 0.001903815, 0.0018037927, 0.019421287, 0.0031210359, -0.01794299, 0.011622935, -0.014837212, -0.016125634, 0.008062817, 0.0026395724, 0.036319975, 0.017617494, 0.0019428068, -0.0045433873, -0.006492975, -0.0054045967, -0.08723304, -0.011839932, -0.0018122691, 0.016179884, -0.024968287, 0.041473668, 0.0032634407, 0.022879686, -0.0025344642, 0.02671783, 0.0017902303, -0.01909579, 0.0037228651, 0.0015995097, 0.03398725, 0.0033634629, -0.0048044627, -0.018946603, -0.0024649573, 0.052133676, -0.02429017, -0.00842222, -0.0058996226, -0.008150972, -0.010375198, 0.009873391, -0.03040679, 0.0016130721, 0.015488205, 0.019068666, 0.017956553, -0.032224145, 0.013738661, -0.026270272, -0.024235921, -0.023896862, -0.009330898, -0.015271206, 0.007418606, -0.054656275, 0.015773013, 0.011290656, -0.0042314534, -0.029620174, -0.012843546, 0.008062817, -0.02694839, 0.03149178, 0.0035296017, -0.024697041, -0.019312788, -0.023150932, -0.01915004, -0.009758111, 0.017685305, -3.034576E-4, 0.018783856, -0.0092291795, -0.0052486295, -0.019475535, -0.0061267917, 6.2598725E-4, -0.021794697, 0.01984172, 0.012165428, 0.006357352, 0.0010290433, -0.017739555, 0.008673123, -0.020112965, -0.016573193, 0.03265814, -0.017400496, -0.008605312, -0.021035206, 0.0058894507, -0.031356156, 0.0012604509, 0.015162708, -0.02948455, 0.004495919, -0.030379666, 0.020452024, -0.007432168, 0.0046722298, 0.022201568, 0.00403819, 0.00917493, -0.0066692857, -0.025225973, -0.0043263896, 2.1975246E-4, 0.0054215495, -0.0029396394, -0.0038178016, 0.023218744, 0.026989078, -0.0045027, 0.0062217284, 0.017508995, 4.7552993E-4, 0.0054791896, -0.06650977, 0.03398725, -0.011331344, -0.0021733667, -0.0086256545, -0.0015088115, 0.012267146, -0.0017902303, 0.015081334, 0.00588606, -0.010415886, 0.021659074, -0.021157267, -0.003594023, 0.005048585, 0.007418606, -0.010782069, -0.006537053, 0.0012375645, 0.019868843, -0.024995413, 0.0104294475, 0.032631017, 0.010049702, -8.408657E-4, 0.013311447, 0.009744549, 0.0259719, -0.011121128, -0.018363422, 0.029755797, -0.016410444, -0.008157754, 0.004923133, -0.001644435, -0.038354326, -0.015203395, -0.008530718, 0.027884193, 0.0060691517, -0.0056419377, -0.041473668, -0.011616154, -0.0051774275, -0.0101853255, 0.020899583, -0.025876965, -2.7018745E-4, 0.006398039, 0.02007228, 0.041636415, 0.020343525, 0.010707476, -0.007662728, 0.0055842977, -0.020953832, 0.035560485, 0.0029955842, 4.085658E-4, -0.031139158, 0.010171763, 0.010293824, 0.014389654, -0.019082228, -0.0044348887, -0.016912252, 0.016234133, -0.0028057112, -6.1539165E-4, -0.008110286, 0.0116364965, 0.0077576647, 0.020872457, 0.05308304, 0.024873352, 0.022757623, -0.010076826, 0.005428331, 0.0015325457, 0.021726886, 0.029294677, -0.017698867, -0.026867017, 0.018037926, 2.890476E-4, 0.027260324, -0.008808747, 0.0036686158, 0.020411337, 0.008666342, -0.020818207, 0.022689812, 0.0076491656, 0.01430828, 0.00986661, 0.01194165, -0.0025412454, -0.01632907, -0.005038413, 0.022866122, -0.0044857473, -4.5391492E-4, -0.020452024, -0.015040647, -0.0111482525, 0.0056690625, -0.017034313, -0.023910424, 0.005862326, 0.019190727, 0.03238689, 0.0014342186, -0.013277541, 0.002573456, -0.054276526, -0.0035296017, -4.0030124E-4, -0.013297885, -0.009147805, 0.048390467, 0.006645552, 0.0028057112, 0.023327243, -0.0071744835, 0.041012548, 0.003370244, 0.033607505, -0.027626509, 0.015284769, -0.0046891826, -0.0027955396, -0.014037033, -0.020452024, 0.016681692, 0.0011392374, -0.0019292444, -8.7222864E-4, 0.02659577, -0.016858002, 0.07443018, 0.019136477, -0.007303326, 0.017807366, -0.012131522, 0.021238642, 0.0096903, 0.0136844115, -0.014810087, -0.0083815325, -0.005648719, -0.009561457, 0.011955212, -0.039249443, 0.00369235, -9.502122E-4, 0.0076288222, 0.00945974, -0.01788874, -0.015827263, 0.005428331, 0.0034007593, 0.017427621, -0.0041297358, -0.016966501, -0.017793804, 0.032929387, -0.0036821782, -0.008225566, -0.029511675, -0.0030549194, -0.028697934, 0.0032549642, -0.008266252, 0.027626509, 0.004597637, 0.0060691517, 5.0567436E-5, 0.017169936, 0.017468307, -0.015339019, 0.015162708, -0.0074796365, -6.2853016E-4, 0.008693467, -0.010124295, 0.006998173, -0.014376092, -0.010002233 ], + "id" : "daf35c0d-7c1c-4358-8aea-80066dbd6b4a", + "metadata" : { + "source" : "movies.csv" + } + }, + "cb2ac70e-2aad-492b-86b8-4798a236c703" : { + "text" : "869,7289,Naomi Watts-Jack Black-Adrien Brody-Thomas Kretschmann-Colin Hanks-Jamie Bell-Andy Serkis-Kyle Chandler-Evan Parke-Lobo Chan-John Sumner-Craig Hall-Peter McKenzie-William Johnson-David Pittu-Mark Hadlow-Geraldine Brophy-David Dennis-Pip Mushin-Jim Knobeloch-Ric Herbert-Lee Donahue-Tom Hobbs-Tiriel Mora-Jed Brophy-John Wraight-William Wallace-Frank Edwards-Crawford Thomson-Richard Kavanagh-Stephen Hall-Joe Folau-Chic Littlewood-Samuel Taylor-Lorraine Ashbourne-Laura Surrich-Katie Jackson-Michael Lawrence-Ray Woolf-Eddie Campbell-Greg Smith-Phil Grieve-Matt Wilson-Jim McLarty-Latham Gaines-Camille Keenan-Peter Jackson-Billy Jackson,new york city-show business-movie business-exotic island-human animal relationship-great depression-giant insect-remake-prehistoric creature-dinosaur-creature-kaiju-empire state building-giant ape-woman in peril-1930s-giant gorilla,/6a2HY6UmD7XiDD3NokgaBAXEsD2.jpg,/14xx5Tf58mD8FRJ1B3BspiLiRxz.jpg,9738-390430-1593-74-2059-1979-1487-435-1734-559-2048-8960-331-1927-950-61791-9502-6479-558-330\r\n49013,Cars 2,Animation-Family-Adventure-Comedy,en,Star race car Lightning McQueen and his pal Mater head overseas to compete in the World Grand Prix race. But the road to the championship becomes rocky as Mater gets caught up in an intriguing adventure of his own: international espionage.,95.233,Walt Disney Pictures-Pixar,6/11/11,200000000,559852396,106,Released,Ka-ciao!,6,6745,Larry the Cable Guy-Owen Wilson-Michael Caine-Emily Mortimer-John Turturro-Eddie Izzard-Thomas Kretschmann-Guido Quaroni-Joe Mantegna-Peter Jacobson-Bruce Campbell-Tony Shalhoub-Darrell Waltrip-Brent Musburger-Jason Isaacs-David Hobbs-Stanley Townsend-Lloyd Sherr-Paul Dooley-Michel Michelis-Sig Hansen-Franco Nero-Vanessa Redgrave-Bonnie Hunt-Cheech Marin-Jenifer Lewis-Michael Wallis-Katherine Helmond-John Ratzenberger-Jeff Garlin-Patrick Walker-Lewis Hamilton-Velibor Topic-John Mainieri-Brad Lewis-Richard Kind-Edie McClurg-Teresa Gallagher-Jeff Gordon-John Lasseter-Mark Winterbottom-Daisuke Tsutsumi-Fernando Alonso-Vitaly Petrov-Jan Nilsson-Memo Rojas-Jacques Villeneuve-Sebastian Vettel-Catherine Bolt-Jess Fulton-Sonoko Konishi-Gillian Bolt,car race-sequel-anthropomorphism-best friend-duringcreditsstinger,/okIz1HyxeVOMzYwwHUjH2pHi74I.jpg,/robYRZk9LxJTwD7GlZCginji5k.jpg,920-260514-10193-863-62211-2062-862-12-9806-585-9487-10527-80321-62177-8355-14160-49444-950-9502-13053-46195", + "embedding" : [ 0.01684202, -0.015333979, -0.015961219, -0.022286985, -0.025783505, 0.035018593, 0.006202321, -0.018697046, -0.015467434, -0.04620212, 0.016508384, 0.020084977, 0.031788982, -0.017415877, 0.005648483, 0.013625756, 0.022900878, -0.012998517, 0.014159575, -0.035926085, -0.0054249456, 0.004654243, -0.02159302, 0.0053749, 0.0059654387, 0.010189289, 0.024248773, -0.0073066615, -0.0051046535, -0.023621535, 0.009448614, -0.0051747174, -0.0011585562, -0.031361926, -0.008174119, 0.009568724, 0.0063824854, -0.02310106, 0.029306717, 0.0016273169, -0.0012211133, 0.009408577, -0.015427398, -0.011397057, -0.013772556, -0.0057452377, 0.009562051, -0.01669522, -0.00922174, 0.022233604, 0.019150792, 0.025169613, -0.01654842, -0.02025847, -0.011316984, -0.0037267308, -0.0161614, 0.010983346, 0.0055617373, 0.008234173, 0.018243298, -0.0085077565, -0.04198494, -0.018657008, -0.020832326, -0.021032508, -0.0077604083, -0.012217805, 0.008207482, -0.0013470614, 0.016334891, 0.016468346, 0.0040236684, -0.0066594044, 0.015494126, -0.036646742, -0.030854795, -0.0074000796, -0.0065359585, 0.008647884, 0.007987281, -0.002909319, 0.0021185982, 0.001405448, 0.01628151, 0.005268136, -0.011910859, 0.020618798, -0.03840835, 0.024355538, 0.0071998974, 0.047910344, -0.004921153, -0.01026269, 0.024889357, 0.02322117, -0.01907072, 0.01859028, -0.020872362, -0.052154213, 0.0070864605, -0.0030361013, 0.0030110783, -0.014226303, 0.0061756303, -0.0013053567, -0.011343675, 0.0019818067, 0.016388275, 0.003960277, 0.009688833, -0.0056184554, 0.0065359585, -0.045801755, -0.015720999, -0.022393748, 0.022954259, -0.017989734, -0.01987145, -0.017829588, 0.031308543, 0.036166307, 0.0019901476, -0.03304346, 0.0403301, 0.028532678, -0.00419716, -0.008614521, -5.96377E-4, -0.007366716, 0.0042405324, 3.8764506E-4, 0.021259382, 0.0074401163, -0.02775864, 0.04753667, -0.022140184, -0.0020969117, -0.021219345, -0.015720999, 0.028719516, 0.033523895, -0.014906923, -0.011764058, -0.035392266, 0.011216893, 0.0139994295, -0.010683073, 0.006639386, -0.0020969117, 0.019964868, 0.038835406, 0.021165963, 0.026797764, 0.013325482, 6.618534E-4, 0.0033597297, 7.741433E-5, -0.020205086, -0.019391011, -0.0098289605, -0.0044674063, -0.005535046, 0.0036700126, -0.003379748, 0.02069887, 0.033443823, -0.013865975, -0.00846772, -0.0064425403, -0.01678864, 0.03389757, -0.027304893, 0.024902703, -0.0018049788, 0.0044907606, 0.0063190944, -0.0080073, -0.029760465, -0.017642751, 0.019804722, 0.0104828905, 0.036459904, 0.03389757, 0.0071865516, 0.0019701293, 0.03072134, -0.030214213, 0.011143493, -0.006385822, 0.005845329, 0.027972167, -4.1850653E-4, -0.013812592, -0.64485455, -0.0020168386, 0.0067027775, -0.0023020988, 0.0096154325, 0.03069465, -0.00682956, -0.008741302, -0.03226942, -0.0047209705, -0.027972167, 0.005358218, 0.02159302, -0.010849891, -0.017963042, -0.016628493, 0.008681248, -0.016481692, 0.009421923, 0.008814703, -0.019017337, 0.016455002, 0.017269077, -0.0064025037, 0.006315758, -0.0076736626, -0.016121363, -0.018777119, 0.007973936, 0.0037734401, -0.031788982, 0.0068262233, 0.0044273697, -0.0029143235, 0.039395917, -0.0012711589, -0.017842934, 0.059467547, 0.029787157, 0.034538154, -0.031415306, -0.010342763, 0.008707939, 0.0047476618, -0.019818068, 0.03387088, -1.3449762E-4, -0.0035799304, -0.0060521844, -0.016361583, 0.0037767766, 0.0036466578, -0.014599977, -0.0131987, -0.013372191, -0.00473098, 0.011490475, -0.029199954, 0.02458241, 0.0138926655, -0.0029877238, 0.016481692, 0.0011410402, 0.008427683, -0.011296966, 0.037127182, -0.018470172, -3.6971204E-4, 0.004484088, -0.032402873, 0.021432873, 0.013452264, -0.014399795, 0.0023337943, 0.0047910344, 0.00827421, 0.014906923, 0.0010217648, -0.0077003534, 0.015200525, 0.002572345, -0.008314246, 5.584258E-4, 0.013225391, 0.021139272, -0.0077737537, -0.03258971, 0.009175031, 0.0043973424, 0.0042071687, 0.020485342, 0.0061823027, 0.00934185, 0.012611497, -0.014172921, -1.6567187E-4, -0.005808629, 0.004921153, 0.010829873, -0.06170959, -0.012317897, -0.032055892, 0.032055892, -0.010916619, 0.014453176, -0.0030294284, -0.016601803, -0.005067954, 0.016681874, -0.0038635223, -0.01684202, 0.012057659, -0.0079605905, -0.0023688262, -0.0033697388, -0.029973993, -0.0029526919, 0.010329417, -0.0014813505, -0.006502595, 0.00484108, 0.0093885595, -3.834746E-4, -0.008774666, 0.018229952, 0.021966692, 0.008994867, -0.011944222, 0.0076136077, 0.006148939, -0.004263887, -2.9902262E-4, 0.0158678, -0.02414201, 0.024502339, 0.004931162, 0.019591194, -0.009969088, 0.01921752, -0.005214754, -0.016148055, -0.008127409, -0.019350976, -0.0021185982, -0.010282707, -0.0064992583, -0.037500855, 0.014319722, -0.009768906, -0.005888702, -0.0011510494, 0.014746778, -0.003986968, 0.009121649, 0.013432246, -0.0014813505, -0.031655528, -0.013238736, 0.010689746, -0.006459222, 0.007580244, 0.011657294, 8.841394E-4, -0.029226646, 0.018056462, 0.0016273169, -0.019377666, 0.0055717463, -0.004517452, -0.019137448, -0.010015798, -0.0237283, 1.173987E-4, 0.018937264, -0.01162393, 0.023087716, -0.0056084464, 0.015133797, 0.0032529656, -0.0025489905, 0.010809855, -0.01227786, -0.021699782, -0.01536067, 0.03304346, 0.009255105, 0.016041292, -0.011970913, -0.016268164, 0.008013973, -0.01788297, -0.002997733, -8.78405E-5, -0.0037834493, 0.012744953, 0.026344016, 0.006682759, 0.0014746777, 9.1500086E-4, 0.0030461103, 0.034938518, 0.02067218, 0.011323657, -0.002482263, 0.022447132, -0.024742557, -0.004670925, -0.0320292, 0.0060621933, -0.0077804266, 0.023514772, -0.0143330665, -0.016948786, 0.0058686836, 0.009548705, 0.025663396, -0.01708224, -0.0029760464, -0.008641211, -0.012357933, 0.005114663, -0.0088413935, 0.030507812, 0.008674575, -0.017522642, 0.0053548818, 0.015974563, -0.0020752253, -7.252445E-4, 0.0015238893, -0.009868997, -0.0041838144, 0.0053715636, 0.004660916, -0.0019701293, -0.02657089, 0.024755903, -0.0049178167, 0.0459619, -0.0077737537, -0.0067661684, 0.016801985, 0.015494126, 3.2425395E-4, 0.018817155, -0.006779514, 0.018390099, 0.022954259, -0.008848066, 0.041824795, -0.010843218, 0.026023725, -0.010576309, 0.015547507, 0.0029410145, 0.0037734401, 0.013465609, 0.014813505, 0.042038325, 0.019084064, 0.026237253, -0.027238166, 0.027384967, 0.013812592, 0.015667617, -0.0028659462, -0.020205086, 0.009368541, 0.014293031, -0.026597582, -0.021099236, -0.011610585, 0.00400365, 0.0015205529, -0.009915707, -0.0047643436, -0.0070864605, 0.01133033, 0.019431047, 0.03368404, 0.0052280994, -0.040196646, 0.011977586, 0.03045443, -0.021272726, -0.02280746, -0.011383711, -0.0050879717, -0.028692825, -0.012438006, 0.0042205146, 0.034831755, -0.0131252995, 0.0019334293, -0.009969088, -0.001246136, 0.016201437, -0.013278772, 0.025610015, 0.0047476618, -0.012451352, 0.021699782, 0.002081898, -0.011730694, 0.023114406, -0.020031596, 0.0028142324, -0.01162393, -0.013665792, -0.0028609415, 0.002295426, -0.0043639783, -0.034564845, 0.0043739877, -0.013392209, -0.005701865, -0.0023738309, 8.8914396E-4, 0.009361868, -0.016361583, -0.019631231, -0.028185695, -0.03128185, -0.012644861, 0.07500171, 0.057545796, 0.0021102573, 0.009101631, -0.0054015913, 0.0108232, -0.007880517, -0.005675174, -0.016121363, -0.010496235, 0.012584806, -0.03365735, 0.025076194, 0.010256017, 0.014573286, -0.0043839966, -0.018310025, -0.014106194, -0.0037967947, -1.0582565E-5, -0.03662005, -0.020058287, 0.013318809, 0.027945478, 0.007693681, -0.003319693, 0.017309114, 0.01273828, 0.0013161999, -0.001983475, -0.004907808, 0.007366716, -0.0014137889, 0.0049344986, 0.0049244897, -0.004947844, 0.026050417, 0.01936432, 0.033497203, -0.008033991, -0.010095871, 0.015427398, 0.008414337, -0.004707625, 0.011683986, -0.0121377325, 9.049917E-4, 0.032910004, 0.02589027, -0.03947599, 0.028452607, 0.008694593, -0.018737081, -0.009021558, 0.012951808, -0.004594188, -0.02132611, -0.0091683585, -0.0029643693, 0.015720999, -0.0062690484, -0.03282993, 0.005665165, -0.023261206, -0.01613471, -0.021045854, -0.031602144, 0.0073066615, -0.028265769, 0.0054015913, 0.009508668, -0.015187179, -0.013512319, -0.005651819, 0.019804722, 0.0028392551, 0.029787157, -0.014386449, 0.009775579, 0.009915707, -0.029306717, -0.026677655, 0.0019384339, -0.0148802325, -0.010242671, 8.8830985E-4, -0.00400365, 0.013959393, -0.008127409, -0.005311509, 0.008788012, -0.009788924, -0.028212387, -0.003032765, 0.039716206, 0.008067355, 0.013065244, 0.014066157, 0.010683073, -0.011517166, 0.0022103484, -0.014266339, 0.00496119, -0.012224478, -0.015881145, -0.011637276, 0.0016706898, -0.012151077, -0.010089198, -0.030908179, -0.02831915, -0.02215353, -0.008107391, -0.0059988024, 0.0043206057, 0.0014029457, 0.011984259, 0.0138926655, -0.0067928596, 0.016655184, 0.0056718374, -0.02307437, 0.013665792, 0.024996122, -0.00236549, 0.026103798, -0.009321832, -0.021125926, 0.0014396458, 0.028746206, -1.4784312E-4, 0.0077003534, -0.01654842, -0.0015497461, -0.0074067526, -0.009808943, 0.015454089, -0.003523212, 0.0023738309, 0.015093761, -0.013839283, 0.0028008868, 0.020084977, -0.00242054, -0.011750713, -0.028505988, -0.0012661543, -0.013865975, 0.022367058, 0.03477837, -0.001966793, 0.009195049, -0.033176914, -0.006469231, 0.0030844787, -0.036192995, -0.029573629, 0.0068729324, 0.032429565, 0.022113493, 0.031441998, -0.0027174775, 0.030481122, 0.0056618284, 0.017309114, 0.017028859, -0.029947301, -0.0012878408, -0.03357728, 8.8914396E-4, 0.017629405, 0.025690088, 0.012117714, 0.012711588, -0.0038201495, 0.016388275, 0.003139529, 0.017535986, -0.0028325825, -0.013632428, -0.019964868, 0.0029109872, -0.028265769, 0.004921153, -0.023114406, -0.013238736, 0.03448477, 7.9072086E-4, -0.01315199, 4.0286727E-4, 0.02324786, -4.5207882E-4, 0.0046142065, -0.025556633, 0.0056017735, -0.021459565, -0.006993042, -0.023327934, -0.007320007, -0.00640584, -0.012404642, 0.03336375, 0.010449527, -0.012111042, -0.0015047052, 0.023167787, -0.00846772, -0.017135622, 0.025009466, -0.008334265, -0.009475305, -0.02746504, -0.01181744, -0.03229611, -0.022820804, -5.942918E-5, -0.020231778, 0.006762832, -0.020872362, -0.038808715, 0.029333409, 0.012311224, 0.048177253, 0.010776491, 0.05017908, 0.010362781, 0.012784989, -0.01693544, 5.717713E-4, -0.018523553, 0.0049511804, 0.02496943, 0.031415306, -0.026517509, -0.005284818, 0.006492586, -0.013665792, -0.04321273, -0.047429908, 0.033710733, 0.015720999, 0.022407094, -0.026183872, 0.003816813, -0.032803237, 0.00396695, -0.0052614636, 0.0037600945, 0.0068195504, -0.031682216, -0.020805635, 8.825755E-5, -0.013799247, 0.012558116, 0.0011001696, -0.014853542, 0.028399223, -0.015921181, 0.002572345, 0.0033313704, -0.018229952, 0.035392266, -0.01562758, 0.0060621933, 0.011110129, 0.009195049, 0.008160774, -0.001645667, 0.0049144803, 0.031895746, -0.019057374, 0.01453325, -0.017189004, 0.008767993, 0.0098289605, 0.016241474, -0.016882058, -0.015120451, -0.0139994295, -0.0010467876, 0.028212387, -0.0018700382, 0.0038535132, -2.8817938E-4, -0.014853542, -0.009728869, 0.003086147, -0.0017299104, 0.010182616, -0.045027718, 0.0036633397, -0.0134923, 0.011296966, -0.012651534, -0.0027591821, -0.015027033, 0.001956784, 0.012177769, 0.0013687478, 0.0050746263, -0.023394661, -0.018016426, -0.037314016, -0.030881487, -0.009328504, 0.0026307318, 0.004440715, -0.021686437, -0.0076002623, -3.238369E-4, -0.002020175, -0.004777689, -0.0015981236, -0.0126848975, 0.011417075, 0.023875099, -0.009481978, -0.0032262746, 0.0075402074, 0.027211474, -0.0044140243, 0.010522927, -0.0061522755, 0.012397969, 0.03576594, -0.027358275, 0.0051647085, -0.003212929, -0.029813847, -0.0055317096, 0.010095871, 0.029546937, 0.018069807, -4.7145845E-6, -0.033256985, -0.019724648, -0.013452264, 0.03816813, -0.0031145061, 9.0916216E-4, 0.021152617, 0.020271815, 0.019671267, 0.029546937, -0.0060688662, -0.038782023, 0.00992238, -0.013238736, -0.027037984, -0.008674575, 0.012791662, 0.005882029, 0.004837744, -0.012991845, -0.020952435, -0.0038668585, -0.03122847, -0.035045285, -0.0029610328, 0.016615147, 0.024595756, 0.005748574, -0.003933586, -0.0030794742, 0.0046275523, 0.0013195364, -0.009048249, -0.001956784, 0.013679137, 0.0125781335, 0.031014942, 0.01681533, -0.021940002, 7.394241E-4, 0.0074401163, 0.025249686, 0.0046142065, 0.02532976, -0.018189916, -0.0054015913, -0.0018616973, 0.0044807517, -0.0052781454, 0.007840482, 0.0320292, -0.026677655, -0.016775293, -0.0013921025, 0.01361241, 0.0010901606, 0.003353057, 0.019684613, 0.0017249059, -0.010562963, -0.010863237, -0.018109843, -0.005124672, -0.036993727, 0.014546595, 0.011143493, -0.0027174775, 0.040917303, 0.017068895, 0.001166063, 0.010082525, -0.01613471, 0.0119175315, -0.0065092677, -0.0032613066, -0.0033297022, 0.02067218, -0.018763773, 0.0059454204, -0.038648568, -5.6509853E-5, -0.0027808687, -1.1708591E-4, 0.0034598208, 0.042892437, 0.0046408977, -0.05204745, 0.0036266397, -0.009421923, 0.009021558, -0.009602088, -3.8806212E-4, -0.036112923, -0.006355794, 0.0015138802, 0.007446789, -0.023888445, -0.010469545, 0.004447388, -0.0025289722, -0.016148055, 0.00880803, 0.16463009, -0.02040527, 0.010522927, 0.04139774, 0.0017549333, 0.0014212958, 0.030000685, 0.015640926, -0.008207482, 0.017549332, -0.0036099576, 0.012057659, 0.0023971854, 0.0011677312, 0.028906353, -0.013986084, -0.028986426, -0.024222083, -0.018843846, -0.027812023, -0.012611497, -0.006682759, 2.3396329E-4, -0.021219345, -2.3146102E-4, 0.0014963641, -0.0041137505, 3.628308E-4, 0.017896315, 0.0029243326, -0.009395232, -0.0134189, -0.0031478698, 0.0060221567, -0.004954517, 5.5800873E-4, -0.0031879062, 0.014519904, 0.018630318, 0.005952093, -0.004297251, -0.0035565759, -0.004607534, -0.004991217, 0.006192312, 0.02108589, -0.027625185, -7.1315015E-5, -0.021005817, 0.020738907, -0.03517874, 0.0022253622, 0.027251512, 0.025903616, -0.015187179, -0.0134189, 0.005168045, -0.0065092677, -0.0068462417, 0.005978784, 0.012451352, 0.030828105, -0.024101973, 0.014359758, 0.0058853654, 0.016748602, -0.024355538, -0.0015914509, 0.0034047707, -0.025463214, -0.009515341, -0.025930306, -0.009301813, -4.662584E-4, -0.0024071946, -0.012938462, 0.0010476217, 0.008961503, 0.006462558, 0.019684613, -0.02565005, -0.030054066, 0.027865404, -0.01402612, -0.015841108, -0.021926656, 0.005131345, -0.0065726587, -1.8850519E-4, -0.020111669, -0.012111042, -0.023061024, -0.018376753, -0.0012453019, -0.010242671, -0.002073557, 0.018216608, 0.014546595, -0.022233604, -0.0061956486, -0.033203606, 0.017629405, 0.01562758, -0.015080415, -0.03128185, -0.026864491, -0.0051346812, 4.235111E-4, 0.031682216, -0.008594502, -0.01948443, -0.02117931, -0.0047643436, -0.010976674, 0.0018833837, 0.03128185, -0.0063491217, -0.0067328047, 0.03627307, -0.021272726, 0.010422835, -0.036112923, 0.033764116, -8.7413023E-4, -0.006832896, -0.030187521, -0.038088057, 0.009668815, 0.00496119, -0.038568497, 0.020792289, -0.010903274, 0.007099806, 0.012030968, 0.0030194193, 0.0023004306, 0.019444393, 0.0031145061, 0.0069997148, 0.0026624273, -0.0016348237, -0.004263887, 0.0069863694, 0.014239648, 0.0025022812, -0.033176914, 0.013545683, -0.0062690484, -0.032456256, -0.034538154, -0.026624272, -0.00701306, 0.008427683, 0.009475305, 0.05068621, 0.01468005, -0.013772556, -0.030801414, -0.019310938, 0.04353302, -0.033230294, 0.014172921, 0.025263032, -0.011890841, -0.02802555, -0.010636363, -0.16986153, 0.009989107, 0.010075852, -0.019884795, 0.016801985, 0.0038501767, 0.028132314, 0.010656382, 0.003523212, -0.013352172, 0.033764116, 0.0061823027, -0.038301583, 0.00781379, 0.0026507499, 0.00854112, -0.0036600034, 0.034911826, 0.02363488, -0.0046509067, 0.030801414, -0.0088413935, -0.005972111, -0.0057385648, 0.006609359, 0.01121022, 0.019537812, 0.007119824, 0.018563591, -0.008174119, -0.031575453, -0.011737367, 0.013759211, 0.011617258, -0.01506707, -0.00480438, -0.016027946, -0.018563591, -0.009041577, -0.011010038, 0.03728733, 0.019991558, 0.018977301, 0.0038301584, 0.016121363, 0.010509581, 0.0296537, -0.024595756, 0.022113493, -0.015827764, -0.007920554, -0.024876012, 0.02496943, -0.0054015913, 1.250098E-4, 0.02176651, 0.007526862, 0.010843218, 0.0052280994, -0.0050345897, -0.036726817, -0.008861412, 0.004824398, -0.012037641, 0.0048177256, -0.026437435, -0.010576309, -8.8497344E-4, -0.034084406, 0.008227501, -0.023554808, 0.0099423975, 0.008027318, 0.0036099576, 0.0061155753, -0.026317326, -0.045428082, -0.002143621, -0.010302726, 0.008220828, -0.01948443, 0.04732314, -0.00888143, 0.019350976, -8.6902146E-5, -0.021779856, 0.006469231, -0.003453148, -0.011597239, -0.0052014086, 0.010309399, -0.028479297, -0.038248204, -0.0016565102, 0.0049511804, 0.01281168, -0.0084009925, 0.02322117, 0.012478042, 0.0053849095, -0.012778317, -0.012017623, -0.02016505, 0.007840482, 0.03200251, 0.012518079, 0.01681533, 0.03368404, 0.030267594, 0.002749173, -0.0090615945, -0.002533977, 0.024849322, 0.023941826, -0.019284248, 0.02016505, -0.011463785, -0.028345842, 0.008100718, 0.022020075, 0.039956428, -0.015734345, -0.001253643, -0.01506707, 0.013372191, -0.005451637, -0.09325835, -0.009775579, 0.013438919, 0.04113083, -0.025156267, 0.03603285, -0.002473922, 0.022046765, -0.026877837, 0.039395917, 0.0099423975, -0.03226942, 0.027812023, 0.0034364662, 0.016615147, 0.0043906695, -0.013679137, 0.0026007043, -0.017576024, 0.02642409, -0.004557488, -0.015907835, -0.005631801, -0.008360956, -0.033977643, 0.034938518, -0.020965781, 0.029493555, 0.016054636, 0.008514429, 0.008821376, -0.026143834, 0.0043739877, -0.044627354, -0.022633968, -0.025142921, -0.019711303, -0.027945478, 0.010469545, -0.047429908, 0.013472282, 0.014640014, 0.0049178167, -0.016374929, -0.015534162, -8.486904E-5, -0.031308543, 0.034564845, -0.0019918159, -0.028852971, -0.010596327, -0.005865347, -0.030267594, -0.0013212045, 0.020658834, 0.014319722, 0.03363066, 0.004127096, -0.014279685, -0.011110129, -0.011010038, 0.009141668, -0.01725573, 0.024448955, -0.0020401934, 0.011837458, -0.004083723, -0.0018733746, 0.02132611, -0.012558116, -0.020205086, 0.02132611, -0.032963384, -0.012978499, -0.016535075, 0.0013604069, -0.031121707, -0.017455913, 0.02455572, -0.02268735, -0.0020835663, -0.026170526, 0.0066160318, -0.012584806, 0.015187179, 0.008147428, 0.009562051, -8.3576195E-4, -0.020632142, -0.03790122, 0.009101631, 0.027705258, 0.01560089, -0.011750713, -0.0051213354, 0.010015798, 0.017802898, 0.016948786, 0.008447701, 0.0013554023, -0.005972111, 0.0015906168, -0.069183074, 0.038808715, -0.023434699, -0.0026857818, -0.01494696, 4.750164E-4, 0.0099423975, -0.01402612, -0.0053749, 0.023554808, -0.008434356, 0.02506285, -3.3989322E-4, -0.0014379777, -0.007106479, 0.022780769, 0.0055217007, -0.0043372875, -0.010582982, 0.002046866, -0.011016711, 0.008214155, 0.021059198, 5.9470884E-4, 0.01273828, 0.0063391123, 0.0037334035, 0.010309399, -0.013245408, -0.004517452, 0.048631, -0.02084567, 0.005114663, 0.003112838, -0.016401619, -0.021125926, 0.003956941, 0.0019100747, -9.461751E-5, 0.004837744, -0.011196874, -0.022780769, 0.0019100747, -0.008801357, -0.01814988, 0.012291205, -0.017829588, 0.0134189, 0.0061689573, 0.011110129, 0.024235427, 0.0026907865, -0.011110129, -0.0037600945, 0.009582069, -0.026744382, 0.04214509, 0.015814418, -9.792261E-4, -0.020044941, 0.027678566, 0.0017632742, 0.03517874, -0.023835063, -0.008934813, 0.0040169954, 0.011577222, -0.0115905665, -8.825755E-5, -0.03360397, -0.013719174, -1.9132026E-4, 0.014693395, 0.041931562, 0.01989814, 0.012524752, -0.005675174, -0.007313334, -0.008874757, 0.023327934, 0.015280598, -0.0033697388, -0.046308886, 0.014373103, 0.0061456026, 0.015934527, -0.0061289207, 0.013138644, 0.009575396, 0.012211133, -0.015027033, 0.016761947, 0.009134995, -0.0056251283, 0.016401619, 0.026997946, -0.017869625, -0.021259382, -0.0059287385, 0.022513859, -0.011236911, -0.0060621933, -0.02043196, -0.021366145, -0.016401619, 5.146358E-4, -0.016228128, -0.0062590395, 0.008721285, 0.022100149, 0.026223907, 0.0065192766, -0.014373103, 0.0057085375, -0.045214552, 0.009889016, -0.0026807773, -0.016882058, -0.02565005, 0.044467207, 0.021059198, 0.008280883, 0.032456256, 0.0032629748, 0.053809054, 0.003326366, 0.010616345, -0.031922437, 0.012631516, 0.0072933156, 0.0013779228, -0.008521101, -0.014279685, 0.012698243, -0.009915707, 0.0032246064, 0.0120242955, 0.034858447, -0.015494126, 0.07131835, 0.013692483, -0.004947844, 0.030374357, -0.016855367, 0.0061889756, 0.02016505, 0.01776286, -0.012624843, -0.004073714, -0.0074067526, -0.013559028, -2.0883622E-4, -0.030240903, 0.008047337, -0.0069263144, 0.025276378, -0.0011010037, -0.0039469316, -0.01708224, -0.006799532, -0.010996692, 0.03016083, 0.011397057, -0.0030144148, -0.026277289, 0.015841108, -0.015133797, 0.0035532394, -0.014239648, -0.007480153, -0.011463785, -0.002607377, 0.0020351887, 0.021993384, -0.0069530057, -0.009128322, 0.017923007, 0.027064674, -0.01079651, -0.017789552, -0.009028231, -0.031175088, -0.013238736, 0.023648227, -0.016828675, 0.0020585433, -0.03461823, -0.020218432 ], + "id" : "cb2ac70e-2aad-492b-86b8-4798a236c703", + "metadata" : { + "source" : "movies.csv" + } + }, + "be930bc1-2890-403b-a81d-2f4ed7f149b1" : { + "text" : "281,2966,Natsuki Hanae-Akari Kito-Hiro Shimono-Yoshitsugu Matsuoka-Satoshi Hino-Takahiro Sakurai-Katsuyuki Konishi-Saori Hayami-Kenichi Suzumura-Tomokazu Seki-Tomokazu Sugita-Toshiyuki Morikawa-Rina Sato-Shin-ichiro Miki-Houko Kuwashima-Kaede Hondo-You Taichi-Konomi Kohara-Aoi Koga-Rikiya Koyama-Megumi Toyoguchi-Junya Enoki-Mariya Ise-Daisuke Hirakawa-Akira Ishida-Jun Kasama-Sayaka Senbongi-Takuya Eguchi-Hibiku Yamamura-Yuya Hirose-Shinya Takahashi-Saeko Akiho-Shugo Nakamura-Mitsuki Nakae,fight-magic-psychology-supernatural-gore-survival-tragedy-coming of age-based on manga-demon-historical-family-mutilation-dark fantasy-shounen-anime-taisho,/h8Rb9gBr48ODIwYUttZNYeMWeUU.jpg,/qjGrUmKW78MCFG8PTLDBp67S27p.jpg,811948-802401-820232-47053-895003-592350-486418-810693-768744-257147-383607-739187-505262-23150-372058-843241-378064-952374-19014-895006-532067\r\n172385,Rio 2,Adventure-Animation-Comedy-Family,en,It's a jungle out there for Blu Jewel and their three kids after they're hurtled from Rio de Janeiro to the wilds of the Amazon. As Blu tries to fit in he goes beak-to-beak with the vengeful Nigel and meets the most fearsome adversary of all: his father-in-law.,58.74,20th Century Fox-Blue Sky Studios-20th Century Fox Animation,3/19/14,103000000,500188435,101,Released,It's on in the Amazon.,6.5,3020,Jesse Eisenberg-Anne Hathaway-Will.i.am-Jamie Foxx-Leslie Mann-George Lopez-Andy Garc�_a-Bruno Mars-Bernardo de Paula-Rodrigo Santoro-Jemaine Clement-Jake T. Austin-Amandla Stenberg-Pierce Gagnon-Rita Moreno-Kristin Chenoweth-Tracy Morgan-Rachel Crow-Bebel Gilberto-Jason Harris-Janelle Mon��e-Amy Heidemann-Carlinhos Brown-Jim Conroy-Nola Donkin-Miguel Ferrer-Jeffrey Garcia-Kevin W. Keane-Philip Lawrence-Gracinha Leporace-S��rgio Mendes-Kate Micucci-Pablo Ram�_rez-Marco Antonio Regil-Peter Pamela Rose-Carlos Saldanha-Julia Scarpa Saldanha-Manoela Scarpa Saldanha-Rafael Scarpa Saldanha-Sofia Scarpa Saldanha-Cindy Slattery-Randy Thom-Claira Nicole Titman-Miriam Wallen-Claudine Barros-Mauro Blanco-Jeremy Bowker-Dennis T.", + "embedding" : [ 0.006714763, -0.026669044, -0.009371488, -0.00941899, -0.012757711, 0.039033167, -0.008292512, -0.0034540824, -0.01178731, -0.05073226, 0.0148206595, 0.018851554, 0.029559888, -0.015078529, -0.0019475868, 0.0020171434, 0.021660965, -0.020982362, 0.012649135, -0.047556404, -0.001221483, -0.012126612, -0.027347647, 0.00734247, -0.009575069, 0.016137147, 0.041557565, -0.018132236, -0.0033132725, -0.025474705, 0.0026770835, -0.008102504, 0.008903254, -0.024538236, -0.01151587, -0.008462163, 0.008041429, -0.017521495, 0.016327156, -0.006579043, 0.0112240715, 0.004862181, -0.006874235, -0.010905128, -0.009588641, 0.0072338935, -7.5748906E-4, -5.1637344E-5, -0.010844055, 0.042779047, 0.025189692, 0.020995935, -0.018525824, -0.014332066, -0.0077157007, -0.0043464433, -0.023357468, -0.020276617, 6.3491665E-4, 0.006253314, 0.02390035, -0.0060904496, -0.026994774, -0.03164998, -0.023181032, -0.023072455, -0.012336978, -0.016232152, -0.021850973, -1.407038E-4, 0.021253804, 0.012119825, 0.0056731096, 0.014874948, 0.021796685, -0.018132236, -0.034961555, -0.01902799, -0.0063856416, 0.0039223176, 0.020683778, -0.013409168, 0.002076521, -0.0055170315, 0.017602926, 0.00692513, -0.015417829, 0.031025667, -0.023723913, 0.012560916, 0.017209338, 0.034635827, -5.6960125E-4, -0.0056086425, 0.0027941423, -1.0799309E-4, -0.014114914, 0.020873787, -0.032871462, -0.040688954, -0.00647386, -0.002753426, 5.3991243E-4, -9.534353E-4, -0.0068063745, 0.016177863, 0.013795972, -0.005595071, 0.02531184, 0.0016922628, -0.0022868875, -3.4205764E-4, 0.0043091206, -0.034092948, -0.022529574, -0.019665876, 0.021077367, -0.012296262, 0.0052150534, -0.013992766, 0.023913922, 0.03718737, 0.01889227, -0.020534486, 0.04006464, 0.031758558, -0.0039630337, -0.026180452, -0.010301173, -0.013056296, 0.030917091, -0.010789766, 0.020154469, 0.02703549, -0.02117237, 0.036888786, -0.037078794, 0.0010671011, -0.019082278, -0.011495512, 0.02531184, 0.020982362, -0.018661546, -0.021470957, -0.016639313, 0.016367871, 0.029397024, -0.0034252417, 0.025189692, 0.0129816495, 0.020412337, 0.017928656, 0.0077971327, 0.011156211, 0.016530735, 0.00365427, 0.004112326, -0.0176165, 0.004685744, -0.02757837, 0.0012969774, -0.02136238, 0.0014640831, -0.016408587, -0.0038680295, 0.024470376, 0.016069287, -0.02250243, -0.0149020925, 1.8438879E-4, -0.013063082, 0.027361218, -0.02923416, 0.010803338, -0.012723781, -0.0056391796, 0.0012477788, 0.0039901775, -0.02657404, -0.0048078927, 0.011115495, -0.011875529, 0.030428497, 0.018010087, -0.014277779, 0.007600338, 0.019625159, -0.018729405, -0.0060734847, -0.0038917805, 0.00487236, 0.028474124, 0.008109289, -0.009690432, -0.63408536, -0.031948566, 0.006606187, -0.02176954, 0.027727664, 0.01935372, 0.0075731943, 3.5414525E-4, -0.027686948, -0.015716415, -0.037540242, 0.022258135, 0.025053972, -0.013130941, -0.020995935, -0.01935372, 0.008631813, -0.023683198, 0.010301173, 0.008543595, -0.020113753, 0.011488725, 0.004478771, 0.0020375014, 0.00827894, 0.012031607, -0.0057206117, -0.023913922, 0.0030689759, 0.02456538, -0.04199187, 0.044624843, 0.010701548, 0.0049062897, 0.03536872, -0.0060225897, -0.008916826, 0.056513947, 0.03298004, 0.02236671, -0.036563057, 0.0039121383, 0.016110003, 8.8048563E-4, 1.2246639E-4, 0.010803338, 0.015173533, -0.009547926, -0.0051675513, -0.008787891, -0.0038917805, -0.018580113, -0.005428813, -0.006514576, -0.011522656, -0.007349256, 0.009737934, -0.029152727, 0.019598015, 0.0084485905, -0.022719583, 0.015539978, -0.006521362, 0.014291351, -0.004546631, 0.02529827, 0.001621858, -0.008299298, 0.009887226, -0.016965041, 0.0056697167, -0.0047264607, -0.014209919, -0.008156791, 0.014250634, 0.014657795, 0.024782533, -0.0035015845, -0.009575069, 0.010898342, -6.459439E-4, -0.0014352425, -2.1694046E-4, -0.004661993, 0.02062949, -0.011210499, -0.033930082, 0.021579532, 0.014630651, -3.479954E-4, 0.006087057, 0.017657215, 0.011312289, 0.022135986, -0.0027398542, -0.0027381575, -0.016164292, 0.013795972, 0.019109422, -0.053500954, -0.024687529, -0.008964328, 0.03471726, -0.025881866, 0.0023547476, -0.0072474657, -0.022909591, -0.0052286256, 0.041014683, -0.008604669, -0.01265592, -0.013924906, -0.027415507, -0.018132236, 0.0046484214, -0.03398437, 0.022529574, 0.020303762, 0.008000714, 0.007919281, 0.004570382, 0.018566541, -4.8535923E-5, -0.019068707, 0.014182774, 0.04313192, -0.006538327, 0.0068369117, 0.025203265, 0.007403544, 0.0059615155, -0.0022597434, 0.0138027575, -0.011950175, 0.018539397, -0.013083439, 0.015702842, 0.010022947, 0.028148396, -0.016802177, -0.03037421, -0.022461714, -0.0061142007, -0.013646679, 0.0041734, -0.019380864, -0.024253223, 0.007471404, -0.0028636989, -0.0039324965, 0.0016057411, 0.019313002, -0.0010204472, 0.025284696, -3.817134E-4, -0.0022190274, -0.031541403, -0.013538103, 0.013164872, -0.010531898, 0.016775033, 0.022529574, -0.008407874, -0.0061311657, 0.008821822, 0.004529666, -0.020263044, 0.008618241, 0.005120049, -0.019991605, 0.011916244, -0.015472118, -0.016652884, 0.011556586, -0.0067758374, 0.02577329, -0.0072542517, 0.023479616, 3.9231658E-4, -0.0056120357, 0.0034778335, -0.019272286, -0.024416087, -0.011563372, 0.02396821, 0.017833652, 0.017005756, -0.012051965, 0.0060802707, 0.0051234425, -0.020928076, -0.0065179686, -0.008435018, 0.006280458, 0.0034252417, 0.017060045, 0.012594846, 0.010341889, -0.0017490957, -9.636143E-4, 0.049565066, 0.024198934, -0.009032188, -0.013721325, 0.015797846, -0.039766055, -8.106109E-5, -0.029478455, 0.01488852, -0.007016741, 0.016205007, -0.015539978, -0.005072547, -0.0013928299, 0.018240811, 0.0131513, -0.011644804, 0.0128662875, -0.0077157007, 0.005761328, 0.019543728, -0.0063754623, 0.02062949, -0.01144801, -0.010654046, -0.0012146969, 0.006531541, -0.001531095, -0.009127192, 0.003284432, -0.02062949, -0.007688557, -0.007769989, 0.009337558, 0.0056052497, -0.016096432, 0.025691858, -0.008136434, 0.04239903, 4.7374878E-4, -0.0071456754, 0.017209338, 0.00914755, 0.0019764274, 0.0013113976, -0.0040546446, 0.01662574, 0.020263044, -0.011529442, 0.044190537, -0.02069735, 0.02250243, -0.009100048, 0.016666457, 0.014712084, -0.01809152, 0.0017457027, 0.010382605, 0.026180452, 0.028419837, 0.017060045, -0.014033482, 0.007294968, -0.004180186, 0.0050284383, -0.0048587876, -0.017507922, 0.021335235, -0.013660251, -0.03325148, -0.023723913, -0.008658957, -0.00751212, -0.0034642613, -0.0014861376, -0.010660832, -0.00911362, 0.0043430505, 0.014983525, 0.015431401, -0.006144738, -0.036128752, 0.030428497, 0.014779944, -0.017073618, -0.014969952, 0.007525692, -0.023045313, -0.04560203, -0.008116076, 0.008930397, 0.029098438, -0.0024446624, 0.014522075, -0.019693019, -0.008021072, 0.024198934, -0.008787891, 0.017277198, 0.021783113, 0.009690432, 0.0109119145, -0.005225233, 0.007016741, 0.025691858, -0.0012630473, 0.00851645, 0.00974472, -0.004051252, -0.004821465, 0.011108709, -0.010131522, -0.037703108, 0.028854141, -0.011217285, -0.009547926, -0.01742649, -0.0025294877, 0.0048350366, -0.018729405, -0.022271706, -0.03004848, -0.011746595, 0.013443098, 0.07361471, 0.019163711, 0.008781105, 0.009412205, -0.0075664083, 0.0016634223, -0.012683065, 0.001241841, -0.0017915083, -0.016815748, 0.032382872, -0.016680028, 0.020466626, 0.0056731096, 0.0195573, -0.013205588, 7.417964E-4, -0.005303272, -4.2645872E-4, -0.015241393, -0.003647484, 0.004889325, 0.011556586, 0.03471726, 0.008699673, -0.014304923, 0.007912495, 0.007885351, 0.02289602, 0.007831063, 0.0026431533, 0.007023527, -0.008530023, 0.01642216, -1.4356666E-4, -0.0052693416, 0.028609846, 0.022583863, 0.017942227, -0.0018322244, -0.004193758, 0.015119244, 0.01722291, 6.4212683E-4, 0.015634982, -0.031351395, -0.023981782, 0.01809152, 0.019788023, -0.039820343, 0.023547476, 0.007084601, -0.030482786, -0.020846643, 0.025651142, 0.0041903653, -0.008156791, -0.0027313717, -0.0042310813, -0.0075799804, 0.016747888, -0.026546896, 0.01602857, -0.019055134, -0.012920575, -0.031351395, -0.009337558, -0.004519487, -0.022868875, 0.0077564167, 0.007892137, -0.023398185, -0.011760167, 8.5503806E-4, 0.008007499, 0.012099467, 0.021253804, -0.011807669, 0.009561497, 0.0072203213, -0.039576046, -0.023058884, 0.018770121, -0.020860214, -0.0024446624, -0.0075799804, 5.1276834E-4, 0.018444393, -0.010369034, 0.0065654707, -9.2798774E-4, 0.0023784987, -0.018010087, -0.0060836636, 0.03439153, 0.025094688, 0.019462295, 0.020154469, 0.0034218489, 0.011678734, 0.0055034594, -0.017820079, -0.015078529, -0.015119244, -0.01875655, -0.021036651, 0.016652884, -0.00612438, -0.017725075, -0.03458154, -0.02996705, -0.017005756, 0.0026533324, 0.010212955, 0.019842312, 0.0035253356, 0.015743557, 0.019530155, -0.011441223, 4.2221745E-4, 0.014399927, -0.008584311, 0.019380864, 0.02243457, -0.009690432, 0.024321083, -4.724764E-4, -0.030157058, 0.005401669, 0.024931824, 0.002066342, 0.030727083, -0.012174114, -0.013517745, -0.018132236, -0.012499842, -0.0055475687, 0.002870485, -0.005839367, 0.006175275, -0.023954637, 0.010240098, 0.01815938, 0.011183355, -0.020140897, -0.029342735, 0.0050996915, -0.007009955, 0.004977543, 0.01701933, -0.002733068, 0.004153042, -0.010905128, -0.005822402, -0.008109289, -0.02863699, -0.028826999, -0.006616366, 0.017643644, 0.00988044, 0.038490284, 0.015770702, 0.017304342, 0.003650877, 0.010348675, 0.029424168, -0.028284116, -0.0037967763, -0.03412009, 0.004458413, 0.011889101, 0.042697616, 0.001457297, -0.008435018, -0.018403677, 0.036753066, -0.015363541, -0.006538327, 0.008523237, -0.043620512, -0.005863118, 0.018335816, -0.026601184, -0.004041073, -0.010165453, -0.0063177813, 0.028419837, -0.00814322, 0.0044075176, -0.010280815, 0.03531443, 0.012574488, -0.0053982763, -0.018118665, 0.023303181, -0.019041562, 0.005435599, -0.018308673, -0.011210499, 1.4452095E-4, 5.8953516E-4, 0.009290056, 0.013415954, -0.022814587, -0.008021072, 0.029207015, -0.0109187, -0.027130494, 0.014969952, -8.5800694E-4, -0.010063662, -0.025963299, -0.01258806, -0.03792026, -0.015567122, -0.0074917623, -0.014522075, 0.0023581407, -0.01756221, -0.03545015, 0.030075625, -0.006948881, 0.04701352, 0.014494931, 0.036291614, 0.01942158, 0.014522075, -0.018770121, -0.0032759495, -0.021552388, -0.008767533, 0.021525243, 0.02109094, -0.020235902, -0.0019051741, 0.006602794, -0.004210723, -0.048642166, -0.043783378, 0.0113394335, 0.02703549, 0.019150138, -0.026940485, 0.018919414, -0.024158219, 0.02696763, -0.0016871734, -0.004573775, 0.010382605, -0.011278359, -0.0129816495, 0.011217285, 0.009351131, 0.018783694, 0.0170329, -0.023086028, 0.003952855, -0.019883027, -0.0063856416, -0.005771507, -0.020968791, 0.040444657, -0.025216836, 0.023194604, 0.012235188, 0.021403097, 0.009337558, 0.005065761, -0.0034846195, 0.03251859, -0.0012664403, 0.008679315, -0.009615785, 0.0075799804, -0.0016362782, 0.014454215, -0.013924906, -0.007003169, -0.02890843, 0.0030163843, 0.030618506, -1.8619132E-4, 0.016110003, 9.0847793E-4, -0.020059464, -0.018566541, 0.008753961, -0.014454215, 0.009344345, -0.043647658, 0.0031181746, -0.0021647392, -0.0134906005, -0.0046755653, -0.0032148752, 0.0063788556, -0.005449171, 0.015363541, -0.013341309, -0.0048248577, -0.019462295, -0.010552255, -0.028989863, -0.023886777, -0.016123574, -0.008998258, 0.021891689, -0.007043885, -0.008265368, -0.008380731, -0.001140899, 0.0010195989, 0.010864412, -0.0013699271, -7.477342E-4, 0.0055407826, -0.017738648, -0.019625159, -2.7992317E-4, 0.033522923, -0.0025871687, -0.0074510463, -0.0014980132, 0.005452564, 0.03205714, -0.024226079, 0.012370908, 1.2904035E-4, -0.01923157, -0.00918148, 0.010959417, 0.016313583, 0.008007499, -0.008041429, -0.016340727, -0.004010536, -0.003762846, 0.013422741, -0.0067588724, -0.0030112949, 0.028962718, 0.027849812, 0.029641319, 0.021579532, -0.016937897, -0.015852135, 0.00880825, -0.017969372, -0.015064957, -6.2516175E-4, 0.0027907493, 0.008720031, -0.007172819, -0.017480778, -0.034798693, -8.830304E-4, -0.033224337, -0.033332914, -0.0060124104, 0.010355461, 0.039766055, 0.0170329, 0.0021308092, 0.0093036285, -0.007057457, 3.1491357E-4, -0.022950308, 0.004478771, 0.017385773, 0.023384612, 0.029939905, 0.022638151, -0.026628328, -0.029559888, 0.012038393, 0.014712084, 6.6460547E-4, 0.047366396, -0.024388943, -0.004661993, -0.01081691, 0.0026584219, -0.020235902, -0.009527567, 0.006531541, -0.038680293, -7.6681987E-4, -0.0069760247, 0.01936729, 0.003952855, 0.0132598765, 0.018444393, -0.0079396395, 0.0077021285, -0.021416668, -0.023276037, -0.00901183, -0.028365549, 0.016082859, 0.004892718, 0.0060599125, 0.049103614, 0.022923164, -0.0025888653, -0.004217509, -0.014562791, 0.011095137, -0.01602857, 0.015743557, 0.01005009, 0.026221167, -0.029017007, 0.0023513548, -0.035993032, 0.006368676, 0.0049062897, -0.015092101, -0.009242554, 0.038001694, 0.013103798, -0.057979725, 0.006592615, 0.0037458811, -0.0059784804, 0.004197151, -0.0012359032, -0.024755388, -0.018037232, 0.015349969, -0.0056256074, -0.012214829, -0.024809675, 0.005418634, -0.010280815, -0.034690116, 0.0025549352, 0.17643642, -0.007471404, 0.016897181, 0.030292777, 1.7975653E-6, -6.039555E-4, 0.020412337, 0.028881285, -0.0063551045, 0.019842312, -0.002258047, 0.006989597, -2.5235498E-4, 8.1262545E-4, 0.028501268, -0.031025667, -0.029424168, -0.020615919, -0.011034063, -0.0016820838, -0.010755836, 0.007919281, -0.0067419074, -0.0069013787, -8.062636E-4, 0.008584311, -0.010925487, 0.0067860163, 0.028148396, 0.005377918, -0.014929236, -0.01756221, -0.00504201, 0.0064670737, -0.011875529, -0.010307959, -0.005869904, 0.015648553, 0.019978032, 0.0029536136, -0.0102061685, 7.218625E-4, -0.01628644, 8.5302345E-5, -0.0039867847, 0.027334074, -0.025488278, -0.010192596, -0.023384612, 0.015838562, -0.04226331, -0.0042887623, 0.026750477, 0.017657215, -0.009568283, -0.010056877, 0.01943515, 6.277065E-4, -0.018661546, 0.0056459657, 0.014250634, 0.04359337, -0.028609846, 0.022013837, -0.0035728377, 0.012133397, -0.034771547, -0.024443232, 0.017928656, -0.03162284, 0.0047264607, -0.028691277, -0.0071796053, -0.016680028, -0.0074917623, 0.0011570158, 0.0064772526, 0.006368676, 0.0013037634, 0.024551807, -0.03156855, -0.005303272, 0.011570158, 0.0076817707, -0.0109119145, -0.014114914, 0.014969952, -0.025121832, -0.0021511673, -0.032192864, -0.013239518, -0.02042591, -0.013225946, -0.0016210097, -0.02396821, -0.0026295814, 0.01401991, 0.006076878, -0.0027890527, 0.006005625, -0.028066965, 0.044027675, 0.021267375, 0.004947006, -0.033875793, -0.016720744, 0.0051777307, 0.0020341084, 0.028419837, -0.006148131, -0.0013266662, -0.028256973, -0.0018220454, -0.017874368, -0.007050671, 0.02056163, -0.0042242953, -0.025135405, 0.028066965, -0.013246304, 0.0012308137, -0.02176954, -0.0071456754, 0.014169202, -0.01662574, -0.029261302, -0.010450466, 0.0029434345, -0.011115495, -0.041503277, 0.024863964, -0.016707173, 0.025963299, 0.0034388138, 0.003715344, 0.0077224867, 0.027008345, 2.4493277E-4, 0.012404838, -0.009405419, 0.0018695475, -0.008136434, 0.01822724, 0.005466136, 0.010036518, -0.022991024, 0.014291351, 0.0072813956, -0.015254965, -0.0275648, -0.015607838, 3.16398E-4, -0.0034812265, 0.018444393, 0.03805598, 0.009602213, -0.026913341, -0.029288447, -0.008000714, 0.051030844, -0.036155894, 0.023669625, 0.030021336, -0.003219965, -0.030075625, -0.011522656, -0.17339629, 0.022651723, 0.0104029635, -0.03764882, 0.01582499, 0.012289476, 0.011393721, -0.004156435, 0.01701933, -0.017507922, 0.04286048, 0.011271574, -0.028745566, -0.024972541, -0.003993571, 0.021538816, -0.024280367, 0.030618506, 0.03884316, -7.333139E-4, 0.029994193, -4.8604843E-4, -0.0032131788, 0.0061074146, 0.006945488, 0.01355846, 0.011230857, -0.0056052497, 0.0046789586, 3.7031503E-5, -0.041883294, -0.020344477, 0.0074985484, 0.013083439, -0.009588641, -0.0021528637, -0.037838828, -0.0033505957, -0.008828607, -0.006538327, 0.019774452, -0.005778293, 0.007946425, -0.005401669, 0.016435731, 0.020833071, 0.016707173, -0.016503591, -0.005001294, -0.021063795, -0.014494931, -0.025488278, 0.033007182, -0.0028399478, 0.0064093927, 0.027524082, 4.7968654E-4, 0.0017024418, 0.0056731096, -0.002415822, -0.028799854, -0.011278359, 0.01935372, -0.010362247, -0.009561497, -0.0044414476, -0.012153756, 0.018213669, -0.045357734, 0.0148206595, -0.030157058, 0.020140897, 0.0076614125, -0.001871244, 0.0039969636, -0.02490468, -0.03303433, 0.013015579, 0.009670073, 0.010708334, -0.0126694925, 0.026682617, -0.0089914715, 0.002716103, -0.0047128885, -0.010491181, 0.02744265, -0.017372202, -0.015051384, -0.0051573724, 0.015539978, -0.012499842, -0.017725075, 0.0043396577, -0.007349256, -0.007356042, -0.007688557, 0.010165453, 0.016666457, -0.005279521, -0.008183936, -0.03517871, -0.012126612, 0.026560469, 0.028121252, 0.013809543, 0.012988435, 0.029994193, 0.020710923, -0.0015217642, -0.008034644, -0.0076274825, 0.030808514, 0.014128487, -0.013022366, 0.019693019, -0.016191436, -0.023818918, 0.009242554, 0.0035049776, 0.05434242, -0.004631456, -5.360953E-4, -0.02350676, 0.003257288, -0.020534486, -0.089683995, 0.032029998, -0.0030062052, 0.052415192, -0.026289027, 0.049999367, 0.0038069552, 0.027904099, -0.009480065, 0.018810838, -0.0012842537, -0.021647392, 0.014630651, -0.017005756, 0.0010628598, 0.0071456754, -0.022882447, -0.012072323, 0.0021121476, 0.036128752, -0.015947139, -0.018675117, -0.00285352, -0.023805346, -0.01976088, 0.014332066, -0.041638996, 0.015947139, 0.0047875345, 0.013979194, 0.018322244, -0.021796685, 0.019109422, -0.04614491, -0.027849812, -0.017345058, -0.011678734, -0.022027409, 0.0038273132, -0.049375057, 0.019733736, -0.0017592747, 0.006178668, -0.01602857, -2.718648E-4, 0.0023886778, -0.039168887, 0.017535066, -0.024619667, -0.037078794, -0.031405684, -0.016598595, -0.022054553, -0.011712665, 0.02704906, 0.018471537, 0.016300011, 0.007993927, -0.031351395, -0.023886777, 0.0032623773, -0.006616366, -0.025990443, 0.0088761095, 0.019217998, 0.009737934, -0.00991437, -0.015662126, 0.026424749, -0.023004595, -0.01935372, 0.026071874, -0.04052609, -0.010443679, -0.008217866, -0.0038510642, -0.03183999, -0.028474124, 0.025868295, -0.0240225, 0.011319076, -0.04332193, 0.012119825, -0.015743557, 0.0059954454, 0.010199383, 0.014712084, 0.010599758, -3.7026202E-4, -0.04913076, 0.012533773, 0.023262464, 0.0017109244, 0.004560203, 0.0014284565, 0.015472118, 0.010362247, 0.0018084734, -0.006188847, 0.0013936781, -0.014657795, -0.013076654, -0.0750262, 0.0195573, -0.007172819, -0.0013555068, -0.0044651986, -0.0016965041, 0.0010552256, 0.0019899993, 0.0083468, 0.01710076, -0.0063381395, 0.008699673, -0.009595428, -0.014114914, -0.006063306, 0.011108709, 0.0020578594, 0.008034644, 0.005757935, -0.0058563324, -0.010993347, 0.024212508, 0.03205714, 0.008835393, -0.0060225897, 0.026153307, -3.8621976E-5, 0.0025464527, -0.015146389, -0.005330416, 0.021457383, -0.019448724, 0.0039223176, -8.618241E-4, -0.0068912, -0.029152727, -0.0036271259, 0.003671235, 0.01568927, 0.01461708, -0.0024887715, -0.0102061685, -0.009731147, 0.010253671, -0.0039630337, 0.018498681, -0.023045313, 0.0126694925, 0.01936729, 0.011108709, 0.019801596, 0.0023004597, -0.018132236, -0.00229537, -0.0026007409, -0.03173141, 0.05393526, 0.0049877223, -0.010891557, -0.019272286, 0.02550185, -0.004475378, 0.021375952, -0.02517612, -0.005350774, -2.3645026E-4, 0.0053168437, -0.0027602122, 0.0043091206, -0.030889947, -0.029424168, -0.006528148, -0.0015506047, 0.035477296, 7.061698E-4, 0.011855171, -0.0035015845, 0.002305549, -0.012635563, 0.0036814138, 0.01374847, -0.0012299655, -0.016652884, 0.027958388, -0.009575069, 0.0024616274, 0.0046416353, 0.011081565, 0.006229563, 0.0039732126, -0.013076654, -0.010145094, 0.031758558, 0.011291931, 0.010789766, 0.020887358, -0.018797265, -0.025949728, 0.020833071, 0.026831908, -0.0038103482, -0.012968077, -0.0080550015, -0.010925487, -0.01882441, 0.0013207285, -0.029641319, -0.008815035, 0.018634401, 0.015838562, 0.016069287, 0.015322825, -0.009296843, 0.015214249, -0.028284116, 0.0021817044, -0.026913341, -0.018417249, -0.0040275007, 0.043783378, 0.008251796, 0.011305504, 0.035477296, -0.012961292, 0.034961555, -0.00591062, 0.027415507, -0.028012676, 0.00977865, 0.0042480463, 0.0149020925, 1.8809989E-4, -0.031215675, 0.01950301, -0.015716415, 0.014942808, 0.03078137, 0.0295056, -0.01231662, 0.08094361, 0.017141478, -0.003711951, 0.006680833, -0.002671994, 0.005764721, 0.020195184, 0.019000847, -0.00427519, -0.0013088529, -0.013354881, -0.023045313, 0.011420866, -0.029614177, 0.008041429, -0.008720031, -0.003038439, 0.025135405, 0.0035015845, -0.022923164, -0.009866868, 0.0021206301, 0.0227603, 0.018783694, -0.012526986, 0.004468592, 0.024687529, -0.009941514, 0.01158373, -0.019815167, 0.007396758, -0.0227603, -0.0060802707, -0.0043905526, 0.015322825, 0.0014912271, -0.0042717974, 0.021579532, 0.021728825, 0.01950301, -0.0085639525, 0.0072678234, -0.014671368, -0.017725075, 0.023072455, -0.004580561, -0.00591062, -0.030998522, -0.008523237 ], + "id" : "be930bc1-2890-403b-a81d-2f4ed7f149b1", + "metadata" : { + "source" : "movies.csv" + } + }, + "0a7cb042-e395-44aa-8798-da43338a0525" : { + "text" : ",49521-75612-72190-54138-268896-76170-68721-68724-70981-97020-137113-80274-72559-39254-127585-49051-76338-49047-1858-124905-57158\r\n343668,Kingsman: The Golden Circle,Action-Adventure-Comedy,en,When an attack on the Kingsman headquarters takes place and a new villain rises Eggsy and Merlin are forced to work together with the American agency known as the Statesman to save the world.,71.483,20th Century Fox-Marv Films-Cloudy Productions-TSG Entertainment-Shangri-La Entertainment,9/9/17,104000000,410902662,141,Released,Reports of my death have been greatly exaggerated.,6.979,9183,Taron Egerton-Colin Firth-Julianne Moore-Mark Strong-Halle Berry-Pedro Pascal-Channing Tatum-Jeff Bridges-Edward Holcroft-Hanna Alstr�_m-Emily Watson-Sophie Cookson-Elton John-Michael Gambon-Bruce Greenwood-Thomas Turgoose-Calvin Demba-Tobi Bakare-Gordon Alexander-Keith Allen-Tom Benedict Knight-Bj�_rn Granath-Lena Endre-Samantha Coughlan-Martyn Ford-Poppy Delevingne-Grant Gillespie-Tara Hugo-Nicholas Colicos-Jordan Mifsud-Kaye Brown-Paul Giddings-Iain McKee-Mark Arnold-Shannon Bream-James Carroll Jordan-Bill Hemmer-Stacey Swift-Alessandro De Marco-Antonio Magro-Stephen Schreiber-Count Prince Miller-Jeff Ricketts-Joe Gallina-Ammara Niwaz-Mingus Johnston-Samantha Womack-James Clayton-Bimbo Hart-Chester King-Alastair MacIntosh-Max Macintosh-Tom Parker Bowles-Carlos Peres,saving the world-spy-europe-sequel-secret government organization-agent-statesman,/34xBL6BXNYFqtHO9zhcgoakS4aP.jpg,/eVHVwP71el20fofkCHo78ebQv7Q.jpg,207703-141052-284053-283995-390043-339403-139426-339964-315635-353486-297762-166426-335984-181808-281338-291805-476669-337170-263115-374720-324552\r\n282035,The Mummy,Fantasy-Thriller-Action-Adventure-Horror,en,Though safely entombed in a crypt deep beneath the unforgiving desert an ancient queen whose destiny was unjustly taken from her is awakened in our current day bringing with her malevolence grown over millennia and terrors that defy human comprehension.,36.243,Secret Hideout-Sean Daniel Company-Universal Pictures-Perfect World Pictures-Conspiracy Factory-dentsu,6/6/17,125000000,409231607,110,Released,Welcome To A New World of Gods And Monsters,5.502,6500,Tom Cruise-Annabelle Wallis-Sofia Boutella-Jake Johnson-Courtney B.", + "embedding" : [ 0.0017697754, -0.035856597, -0.013107187, -0.04990631, -0.01186631, 0.013758139, -0.0141039565, -0.028370652, -0.02138648, -0.025427807, 0.028858867, 0.033741005, 0.004838064, -0.001390901, -0.0038039999, 0.015188877, 0.010442353, -0.017345155, 0.011757818, -0.026458481, -0.003939615, 8.060615E-4, -0.025346437, 0.010164342, 0.0089099035, 0.009608321, 0.015812706, -0.018958973, -0.017914739, -0.01685694, 0.013202118, -0.0108152935, -0.017168855, -0.012307059, -0.025346437, 0.0031479625, 0.0028241817, -0.024356449, 0.027706139, -0.013242802, 0.009377775, 0.018104598, -0.007553754, -0.0011612031, -0.002093556, 0.017684191, 0.005417818, -0.0019240374, -0.002953016, 0.0402234, 0.013873411, 0.026309304, -0.02074909, -0.031327058, -0.017765561, 0.007221497, -0.016205989, 0.007858887, -0.0013883583, -0.005370353, 0.012422332, -0.027163679, -0.03070323, -0.017589262, -0.011181454, -0.024247957, -0.017277347, -0.019894715, 0.00715369, 0.013575058, 0.015649967, 0.02510233, 0.010137219, 0.0013468262, 0.005478845, -0.038379036, -0.028669005, -0.0059467163, 0.002625845, 0.012625754, 0.0127342455, -0.020315122, -0.012144321, 0.0070045134, 0.010903443, 0.014863401, -0.008035187, 0.011432342, -0.015975444, 0.009838866, 0.0130122565, 0.03742973, 2.8203675E-4, 0.012537604, -0.0077029304, 0.009927016, -0.02083046, 0.02961831, -0.023963165, -0.040630244, 0.0036514332, -0.015649967, -0.006387465, -0.0056449734, -0.017711315, -0.0046515935, -0.0035700642, -0.020884706, 0.02220017, 0.014714224, -0.008319979, -0.011723914, 0.014551486, -0.03932834, 1.9611196E-4, -0.007546973, 0.020694844, -0.023529198, -0.0048719677, -0.015487229, 0.021861134, 0.025753282, 0.021793326, -0.037375487, 0.030106524, 0.019162396, 0.0015282112, -0.01819953, -0.00833354, -0.008442032, 0.023474952, -0.010130438, 0.017982544, 0.013459786, -0.037212748, 0.053296685, -0.02255277, 0.0119205555, -0.012978353, -0.017819807, 0.035531122, 0.04792633, -0.009092984, -0.024451379, -0.025400683, 0.0042888233, 0.0020969466, -0.021142375, 0.027000941, -0.0022952834, 0.022593454, 0.0074045775, 0.03325279, 0.025983829, 0.02961831, -0.0014171764, 0.0056110695, 0.002202048, 0.0026377111, -0.01928445, -0.004990631, -0.007499508, -0.003370032, -0.011649326, 0.0025326095, 0.025753282, 0.013303828, -0.016151743, 0.006126406, -0.006458663, -0.0115883, 0.025373561, -0.0073435507, 0.0064959573, -0.0086251125, 0.03344265, 0.006831604, -0.012869861, -0.031923763, -0.019854032, 0.010733925, 0.0036005774, 0.041742288, 0.036209196, -0.0057839784, 0.02119662, 0.026458481, -0.032601837, 0.010462695, -0.019162396, -4.7931416E-4, 0.006289144, -0.01902678, -0.015148193, -0.6314233, -0.01358862, 0.002102032, -0.011072963, 0.0021850963, 0.009215037, 0.003361556, 0.0024715827, -0.036616042, -0.023474952, -0.029048726, 0.01856569, -3.2738302E-4, -0.011432342, -0.026078759, -0.019433625, -0.0067604063, -0.014592171, 0.023624128, 0.014483679, -0.03469031, 0.010476257, 0.01430738, 0.012727465, -0.0031920373, 2.9665776E-4, -0.015568598, -0.004654984, 0.008570866, -0.003488695, -0.006475615, 0.014931208, 0.010062631, 0.009465925, 0.03159829, 0.008848877, -0.014904086, 0.044101987, 0.026892448, 0.047953453, -0.01856569, -0.001766385, 0.01731803, -3.7463635E-4, -0.022118801, 0.017223101, 0.027217925, -0.008130117, 0.010354203, -0.009221818, 0.0040379358, 0.00787923, 0.006723112, -0.0018002887, -0.011832406, 0.02446494, 0.0070316363, -0.031055829, 0.013981904, -0.007682588, -0.0069706095, 0.02845202, -0.0037633155, 0.0030479464, -0.028858867, 0.03124569, 0.00968969, -0.0102660535, 0.01159508, -0.02527863, 0.0047024493, 0.009947358, -0.009296406, -0.0066315723, -0.0017799465, 0.021793326, 0.039002866, -0.0021596684, -0.0070451978, 0.019230204, -0.009215037, -0.007499508, 3.8078142E-4, 0.011208577, 0.017046802, -0.006601059, -0.038297668, 0.004119305, 0.023895359, 0.018647058, 8.191992E-4, 0.006933315, 0.002690262, 0.0021138983, 0.003959957, 0.00416677, 0.004410877, 3.1445723E-4, 0.03677878, -0.060104556, -0.016043251, -0.013236021, 0.014659978, -0.0067502353, 0.0132631445, 0.029564064, -0.019392941, -0.013174994, 0.03298156, -0.009771058, -0.01403615, 0.0068790694, 0.002617369, -0.014198887, -0.0089031225, -0.032845944, 0.019528557, 0.014619294, -0.007391016, 0.012937668, 8.933636E-4, -0.004563444, 0.0083538825, -0.024532748, 0.0070994436, 0.04201352, -0.0029038556, 0.0010171123, 0.011561176, -0.009832085, 6.513757E-4, 0.0025173528, 0.010516941, -0.014917647, 0.011289947, -0.014320941, 0.022891806, -0.008069091, 0.015731337, 0.0030292994, -0.028397774, -0.03224924, -0.023420705, -0.010849197, 0.004383754, -0.018511444, -0.03859602, 5.6746387E-4, -0.003270016, -0.014537925, -0.023610566, 0.009594759, -0.0141039565, -0.0031852566, 7.018075E-4, -0.0037565348, -0.024288641, -0.014483679, 0.008828535, -0.027611207, 0.0074791657, 0.015378738, -0.00860477, -0.03016077, 0.012008705, 8.7725936E-4, -0.015432984, 0.011106866, 0.0094523635, -0.020437175, 0.011676449, -0.0030445561, -0.0038480747, 0.028153667, 0.008069091, 0.01593476, -0.017806245, 0.012761368, -0.006668866, -0.009316748, 0.008957369, -0.0050957324, -0.03054049, -0.0053737434, 0.036371935, 0.015392299, 0.008414909, -0.017643508, -0.0014604037, 0.0022359518, -0.006031476, -0.01204939, -0.015066823, -0.0014163288, 0.010564406, 0.015880514, -0.007858887, -0.0049329945, 0.015568598, 0.013968342, 0.046407443, 0.026716148, -0.0052211764, -0.00787923, 0.012361305, -0.028858867, 0.0055432618, -0.023678374, 0.01169001, -0.016355166, 0.030296385, -0.0052550803, -0.0073435507, -0.0028852085, 0.003776877, 0.017535016, -0.019637048, -0.00416338, -0.008340321, 0.0011264519, -0.012625754, -0.015541475, 0.014795593, 0.0049397754, -0.01874199, -0.0052788127, 0.025766844, -0.004865187, -0.012666438, -1.1590842E-4, -0.004248139, -0.0020596525, 3.4687767E-4, 0.0019053903, 0.003297139, -0.0049838503, 0.03309005, -0.009316748, 0.030594738, -0.006811262, 0.0024410696, 0.00914723, 0.019216642, -0.0112357, -9.730374E-4, -0.024614118, 0.014212449, 0.022118801, -0.005021144, 0.04602772, -0.027773947, 0.027936684, -0.005444941, 0.009404899, 0.006957048, -0.008638673, 0.005482235, 0.006245069, 0.03224924, 0.031733904, 0.016300919, -0.037402608, 0.023963165, 0.0049058716, 0.014348064, 0.015663529, -0.011798503, -0.005834834, -0.009113326, -0.035802353, -0.0050414866, -0.014822716, 0.006685818, 0.004817722, -0.011391657, -0.006048428, 0.010462695, 0.013981904, 0.010408449, 0.027638331, -0.012524042, -0.029808171, 0.014551486, 0.023040984, 0.001228163, -0.022661261, -0.0086318925, -0.024058096, -0.037185624, -0.00416677, 0.0010662727, 0.032466225, -0.028180791, -0.012246032, -0.025699036, -0.005845005, 0.011730695, -0.0024681925, 0.023678374, 0.034988664, -0.0069163637, 0.0067536253, -0.0055297003, -0.0110797435, 0.03417497, -0.012917326, 0.011181454, 0.008258952, -3.3628274E-4, 8.781069E-4, -0.009289625, 0.012958011, -0.04792633, 0.022417154, -0.012896984, -0.013100406, -0.011479807, -0.012924107, 0.004112524, -0.008862439, -0.016911186, -0.02899448, -0.025495615, -0.003695508, 0.07214716, 0.021806886, -2.1380547E-4, -0.0078046415, -0.004654984, 0.006234898, -0.011676449, -0.014022588, 5.414004E-5, -0.012802053, 0.011852749, 0.008984492, 0.0055195293, 0.006306096, 0.012096856, 0.0044786846, -0.0031038877, 0.010015165, -0.013608962, -0.019013219, -0.016043251, -0.011242481, 0.03859602, 0.03767384, 9.408289E-4, -0.027421348, 0.017996106, 0.0127410265, -0.0040481067, 0.005200834, -0.0069977324, 0.0047261817, 0.018592812, 0.004485465, 0.004719401, -0.011730695, 0.017589262, 0.010896663, 0.020098139, -0.0034598769, 0.022118801, 0.011242481, 0.009269283, -0.004404096, 0.020789774, -0.018972535, 0.0105508445, 0.01857925, 0.04011491, -0.036534674, 0.021223743, -0.0053330585, -0.035910845, -0.011378096, 0.020179508, 0.020491421, -0.0042447485, -0.008692919, -0.033741005, 0.004051497, 0.012571508, -0.043640897, 0.012435893, -0.0074249194, -0.008279294, -0.012069732, -0.010672898, -0.0032259412, 0.0035463315, 0.029184341, 0.007628342, -0.023000298, -0.008943807, -0.0028106202, 0.0036175293, 0.0026411016, 0.021088127, -0.0040379358, -0.0019511604, 0.0054415506, -0.033496898, -0.03224924, 0.007682588, -0.02626862, -0.0063535613, 0.007384235, 0.012103636, 0.020789774, -0.011289947, 0.0052889837, 0.006187433, 0.0016773876, -0.021142375, -0.015148193, 0.031218566, -0.00462108, 8.081805E-4, 0.021400042, -9.2641974E-4, 0.015432984, 0.0049838503, -0.022132363, -0.0019511604, -0.010761048, -0.01059831, -0.013385197, 0.0049567274, 0.01992184, -0.02681108, -0.0119205555, -0.030242138, -0.017724877, 0.010645775, -0.002346139, 0.008041968, -0.0022715507, 0.01665352, 0.01005585, -0.00860477, -0.0064620534, -0.006533251, 0.004546492, 0.003641262, 0.028831743, 0.0077029304, 0.018362267, -0.01567709, -0.021033881, 0.0032530641, 0.030838843, 0.00389554, 0.008679358, -0.026661903, -0.0034988662, -0.025292192, -0.027801068, 0.019338695, 0.0044346093, -0.0083471015, 0.0031191444, -0.0280723, 0.009804962, -0.00987277, -0.009933797, -0.013697112, -0.029347079, 0.01567709, -0.0067604063, -0.003542941, 0.043261174, -0.008028407, 0.0039294437, -0.035476875, -0.01575846, -0.0067977, -0.027556961, -0.036643166, 0.006899412, 0.034473326, 0.023583444, 0.044725817, -7.323208E-4, 0.027516278, 0.017277347, 0.016775573, 0.014659978, -0.03414785, -0.0077436147, -0.033469774, 0.0076690265, 0.0091607915, 0.004417658, 0.033279914, 0.016205989, -0.0056720963, 0.020613475, 0.016016128, 0.0135954, 0.0040650587, -0.0226477, -0.020857582, -0.007682588, -0.029835293, -0.0086251125, -0.0331443, -0.01840295, 0.054218866, 0.0017985936, 0.001983369, -0.009899893, 0.034283463, -0.012727465, 0.005970449, -0.02564479, 0.012564727, -0.020315122, 0.007465604, -0.020816898, -0.014551486, 0.014293818, 0.001612123, 0.014985454, -0.00407862, -0.01177816, -0.0034191925, 0.010394887, -0.0119137755, -0.021183059, 0.025604106, -0.015188877, -0.007350331, -0.021128813, -0.013486909, -0.029564064, -0.00470923, -9.19639E-5, -0.008706481, 0.011188235, -0.028858867, -0.037348364, 0.03452757, 0.010076192, 0.044888556, 0.0016697593, 0.05020466, 0.02636355, 0.004973679, -0.021901818, 0.01920308, -0.019948963, -0.018172406, 0.02727217, 0.024586994, -0.011974802, -0.005553433, 4.1871122E-4, -0.0013976818, -0.027801068, -0.039246973, 0.015487229, 0.027489154, 0.013486909, -0.023936043, -0.003153048, -0.013242802, 0.003478524, 0.00470923, 0.0074588233, 0.015649967, -0.017507892, -0.017182417, 0.010049069, -0.0016731496, 0.017263785, 0.01150693, -0.03696864, 0.023963165, -0.029401325, 0.0072621815, -0.018687744, -0.0016273797, 0.028858867, -0.03959957, -0.0045600533, 0.015175316, 0.019677732, -0.0066078394, 0.003107278, -0.0036073583, 0.032764576, -0.023759743, 0.01856569, 0.0091811335, -5.272032E-4, 0.011791722, 0.017752, -0.022308663, -0.01032708, -0.018809797, -0.003178476, 0.026051635, 0.010435572, -0.0044244383, -0.010923786, -0.022173047, -0.019691294, 0.009167572, -0.007865668, 0.00643154, -0.025400683, 0.01874199, -0.0102660535, -0.0074588233, 0.019081026, 0.0016256844, 0.006838385, 0.011527273, 0.02599739, 0.012890203, -0.008998053, -0.0022969786, -0.017535016, -0.023393583, -0.023583444, 1.1325969E-4, -0.01476847, 0.019976085, -0.026594095, 0.0038345132, -0.010469476, -0.006729893, 0.0020342246, 0.021359358, -0.029102972, 0.0069434866, 0.033849496, -0.0073232083, -0.002936064, -0.008265733, 0.041796535, 6.746845E-4, -0.005136417, -0.002129155, 0.007757176, 0.03200513, -0.010557625, 0.024953155, -0.0022579893, -0.0023478342, -0.010198246, 0.016911186, 0.030513369, 0.0055398718, -0.0038921495, -0.028343529, 3.1043115E-4, -0.005950107, 0.029726801, -0.008876, -0.005814492, 0.02773326, 0.0048719677, 0.043152682, 0.033171423, -0.0034225828, -0.017141731, -0.0015477058, -0.0119069945, -0.024939593, -0.0048957006, 0.0026478823, 0.012218908, 0.010950909, -0.009045519, -0.03469031, -0.005316107, -0.021630587, -0.04130832, -0.01005585, 0.02762477, 0.058097452, 0.033849496, -0.004766866, 0.015080385, -0.0018257166, 0.0041769412, -0.01131707, -0.0024258129, 0.03306293, 0.001040845, 0.0054483316, 0.028235037, -0.02400385, -0.001186631, 0.0036005774, 0.016083935, -0.008706481, 0.030893091, -0.023841111, -7.560535E-4, -8.6115504E-4, -0.008923465, 0.00135954, -0.0047600856, 0.01639585, -0.03452757, -0.008048749, 0.0027767166, 0.022729069, 0.0050143637, -0.0036683849, 0.0143751865, -0.033035807, 0.0010416924, -0.015663529, -0.01838939, 0.0072418395, -0.018701304, 0.035368383, 0.022607015, -6.6112296E-4, 0.03696864, 0.023474952, -0.01937938, -1.1251804E-4, 0.0019426844, -0.004298995, -0.014158203, -0.006123016, 0.0072621815, 0.029048726, -0.03995217, 0.020586353, -0.020776214, 0.001495155, -7.895334E-4, 0.004519369, -0.008557305, 0.037239872, 0.008258952, -0.044617325, 4.6236228E-4, -0.007092663, -0.0051771016, -0.003190342, -7.107072E-4, -0.03525989, -0.005580556, 1.0589622E-4, 0.005692438, -0.0065196897, -0.019474309, 0.001991845, -0.0019053903, -0.013419101, -0.0023681764, 0.17640795, -0.004031155, 0.012930888, 0.05535803, 0.011154331, 0.009954139, 0.00878785, 0.020803336, -0.0037395828, 0.006556984, -0.019867593, 0.012978353, -0.0018002887, 0.002710604, 0.021589903, -0.0034463154, -0.010700021, -0.02338002, -0.013900534, -0.024302203, -0.02409878, 0.011751037, -0.012978353, -0.026065197, 0.0015756765, -0.016558588, -0.0027428127, 0.010564406, 0.0351514, 0.005116075, -0.025387123, -0.003742973, 7.0689304E-4, 0.009092984, -0.03460894, -0.012029048, 0.003976909, 0.016328042, 0.013141091, 0.012585069, 0.0031683047, -0.025970267, -0.0033547753, -0.01748077, 0.016545026, 0.023583444, -0.020396492, -0.003288663, -0.020165946, -0.00389554, -0.049797818, -0.0059094224, 0.010679679, 0.012964792, -0.0067773582, -0.011968021, 0.01838939, 5.5220723E-4, -0.0010866149, -0.0012798663, 0.010645775, 0.041064214, -0.033469774, 0.0023207113, -1.6242011E-4, 0.028153667, -0.032276362, -0.012029048, 0.015432984, -0.030920213, -0.014470117, -0.006604449, -0.0100083845, 0.0047227913, -0.013853069, -0.0091607915, 0.011113646, 0.008977711, 0.0052788127, 0.018308021, -0.023081668, -0.02129155, 0.019854032, -0.010347422, -0.0034988662, -0.019053902, 0.005048267, -0.015283807, -0.016884064, 0.003305615, -0.008652235, -0.027855314, -0.011547615, -4.3820587E-4, -0.0121782245, 0.012883422, 0.03143555, 0.013927657, 4.6448127E-4, -0.012700342, -0.031028705, 0.018416513, 0.025332876, -0.0073706736, -0.0100083845, -0.013981904, -0.013886973, 0.010164342, 0.027095871, -0.018850481, -6.441711E-4, -0.023786865, 0.0052110055, -0.0070451978, -0.0067502353, 0.011818845, 0.014890524, -0.012761368, 0.027760385, -0.00996092, -0.0065807165, -0.019243764, 0.014714224, -0.0023410534, 6.564612E-4, -0.022932492, -0.015134631, 0.002617369, 0.006767187, -0.042203378, 0.0027377272, -0.022878246, 0.024600556, 0.009655786, 0.006234898, 0.0018223262, 0.022986738, 0.006685818, 0.0076758075, 0.005234738, 0.016002566, -0.013636085, 0.017507892, -0.0017511284, 0.00788601, -0.03290019, -0.0046346416, 0.005309326, -0.01902678, -0.034771677, -0.016138181, -0.018104598, -0.006865508, 0.0029496257, 0.05392051, -8.598837E-4, -0.017467208, -0.024586994, -0.002888599, 0.037646715, -0.030893091, 0.010849197, 0.021793326, -0.0047227913, -0.016680641, 0.0065535936, -0.17337018, -0.0026614438, 7.602914E-4, -0.031001583, 0.019704856, 0.023054546, 0.013215679, 0.011547615, -0.0036446524, -0.017643508, 0.017507892, 0.011547615, -0.05533091, -0.01186631, 0.011432342, 0.018280897, -0.007838545, 0.03309005, 0.018335143, 0.0064179786, 0.035341263, -5.530548E-4, -0.02283756, -0.0022868074, 0.014890524, 0.0045803958, 0.027421348, 0.005000802, -0.012849518, -0.007906353, -0.036317687, -0.010360984, -0.00398369, 0.010910224, -0.011649326, -0.0010823769, -0.020803336, -0.010062631, -6.208623E-4, -0.0074317004, 0.044535957, 0.010523722, 0.019257326, 0.0045905667, 0.015229561, 0.020898268, 0.018253775, -0.00534323, 0.009377775, -0.011520492, -0.011195016, -0.029184341, 0.026566973, -0.01422601, 0.002654663, 0.020274438, -0.007180813, -0.0061297966, 0.013880192, 2.3902139E-4, -0.02392248, -0.003868417, 0.005861957, -0.031462673, -0.0141039565, -0.025522737, -0.01649078, 0.014429433, -0.030025154, 0.012673219, -0.019338695, -0.003776877, 0.012476577, 0.009262502, -0.0028038395, -0.01122892, -0.036670286, 0.01177816, 0.009187914, 0.020003209, -0.020545669, 0.038840126, 0.0015477058, 0.019406503, 0.01966417, -0.013927657, 0.010835636, 0.004020984, 0.0062179463, -0.009133669, -0.0053500105, -0.0059738397, -0.03376813, -0.010666117, 0.03062186, 0.007546973, -0.006604449, 0.004322727, 0.00788601, -0.019989647, 0.0068180426, -0.020681283, -0.015907636, 0.02301386, 0.023624128, 0.006051818, 0.010700021, 0.027258608, 0.023027422, -0.0012434197, -0.0062654116, -0.001240877, 0.017928299, 0.013697112, -0.027150117, 0.007038417, -0.030242138, -0.02328509, -0.011289947, 0.001453623, 0.041688044, -0.0097032515, 0.0036277005, -0.0060958927, -0.0021274597, -0.009791401, -0.08489497, 0.011025497, 0.0073028663, 0.033822373, -0.038324792, 0.021332234, -0.012551165, 0.028587636, -0.020627037, 0.028289283, -1.059492E-4, -0.024030972, -0.002210524, -0.0097168125, 0.022661261, -0.010238931, -0.0201117, -0.015663529, 0.009065861, 0.026512727, -0.014931208, -0.014388748, -0.0026190642, -0.018240213, -0.03713138, 0.013371636, -0.03561249, 0.015663529, 0.013073283, 0.006475615, 0.018091038, -0.016463658, 0.009621882, -0.03921985, -0.033957988, -0.012842738, -0.017494332, -0.017507892, 0.017290909, -0.0621659, 0.0037022887, 0.005360182, 7.992807E-4, -0.024898909, -0.0054585026, 1.2554979E-4, -0.032384854, 0.02853339, -0.0037667057, -0.024424257, -0.021644149, -0.013378417, -0.022579893, -0.0042244066, 0.0044786846, 0.03805356, 0.015785582, 0.0045668343, -0.001635008, 0.003351385, 0.0050516576, -0.01647722, -0.025061646, -0.0013985294, 0.016205989, 0.018240213, -0.008882781, -0.00978462, 0.01894541, -0.0077029304, -0.018918289, 0.014659978, -0.030242138, -0.0017901176, -0.020274438, -0.0015256684, 0.0034395347, -0.01585339, 0.02100676, -0.031571165, 0.0046075187, -0.035910845, -5.513596E-4, -0.012069732, 0.014592171, 0.0226477, 0.023502074, 0.0017596042, -0.014022588, -0.031571165, 0.021956064, 0.016328042, 0.0019884545, -0.018185968, -0.016531466, 0.026661903, 0.020898268, 0.008523401, 0.0055297003, 0.007953818, -0.016626395, -0.015093946, -0.083213344, 0.016558588, -0.0045973477, -0.009818524, -0.0037260214, -0.0060450374, 0.019135272, -0.009425241, 0.0047600856, 0.018131722, 0.0059772297, 0.00724862, -0.011371315, 0.01059831, -0.0077503957, 0.01794186, -0.0041599893, -0.009940578, -0.0021884865, 0.013853069, -0.019894715, 4.481651E-5, 0.0250074, -0.0029428448, -0.0016706069, 0.035910845, 0.014876963, 0.0067841387, -0.016951872, -0.014782032, 0.032411978, -0.01920308, -0.0035293796, 0.0031242298, -0.007350331, -0.025495615, -0.01395478, -0.0024495453, 0.02653985, 2.7313703E-4, -0.0029953956, -0.029564064, -0.009004834, -0.0046685454, -0.012327401, 0.025197262, -0.020410053, 0.0121917855, 0.012985134, 0.0067604063, 0.017521454, 0.003424278, -0.010496599, -0.026404236, 0.032140747, -0.034012236, 0.053757776, 0.015622845, -0.00115527, -0.015473668, 0.031625412, -3.3967313E-4, 0.020776214, -0.03778233, 0.01856569, -0.0031598287, -0.007180813, -0.010733925, -0.00897093, -0.023773305, 0.019148834, -0.0071265665, 7.369826E-4, 0.03441908, 0.01665352, 0.006929925, -0.0052788127, 0.0017273957, -0.0046787164, 0.022593454, 0.01982691, -0.029916663, -0.0022851122, 0.009113326, 0.0015688956, 0.023352899, -0.0083538825, 0.004539711, -0.0073232083, 0.01676201, -0.010422011, 0.006245069, 0.015351615, -0.0031089731, -0.001526516, 0.009642225, -0.01558216, -0.013615743, 0.0035937966, 0.02446494, 0.009459144, -0.009282845, -0.024803977, -0.011947679, -0.015175316, 1.6305581E-4, -0.009282845, -0.028153667, 0.011208577, 0.02309523, 0.024586994, 0.009391337, -0.010496599, 0.004031155, -0.0371585, 0.0032547594, 0.005736513, -0.00996092, -0.013886973, 0.04792633, 0.0023156255, 0.012856299, 0.024139464, -0.021074567, 0.055493645, 0.009859208, 0.022525646, -0.028235037, 7.208783E-4, 0.0026495776, -0.017901177, 0.00598062, -0.028669005, 0.01032708, -0.017223101, -0.0033869839, 0.021589903, 0.037185624, -0.021983186, 0.07529343, 0.018972535, -0.0039057112, 0.018362267, -0.01033386, 0.0030411656, 0.019976085, 0.017440084, -0.022254417, -0.022891806, -0.0038819786, 0.0015866952, 0.011337412, -0.012035829, -0.0064620534, -0.011059401, 0.0125037, 0.019596362, -0.019989647, -0.0044617327, 0.003993861, -0.014212449, 0.015568598, 0.0067502353, -0.008692919, -0.009628663, 0.033117175, -0.009201475, -0.017589262, -0.040467508, 0.005987401, -0.021956064, 0.007838545, 0.010638994, 0.022593454, 0.005234738, -0.006729893, -0.00924216, 0.046407443, 0.017290909, -0.021088127, 0.01992184, -0.015785582, -0.011262823, -5.962821E-4, -0.005136417, -0.004902481, -0.019325133, -0.016612833 ], + "id" : "0a7cb042-e395-44aa-8798-da43338a0525", + "metadata" : { + "source" : "movies.csv" + } + }, + "697fd2b2-6faf-4735-a634-6a14c2a5fb1b" : { + "text" : "16,Walt Disney Pictures-Fairview Entertainment,7/12/19,260000000,1663075401,118,Released,The King has Returned.,7.131,9015,Chiwetel Ejiofor-John Oliver-James Earl Jones-John Kani-Alfre Woodard-JD McCrary-Shahadi Wright Joseph-Penny Johnson Jerald-Keegan-Michael Key-Eric Andr��-Florence Kasumba-Seth Rogen-Billy Eichner-Amy Sedaris-Chance the Rapper-Josh McCrary-Donald Glover-Beyonc��-Phil LaMarr-J. Lee,africa-lion-prince-musical-uncle-remake-grief-redemption-king-family-sidekick-live action and animation-father son relationship-live action remake,/dzBtMocZuJbjLOXvrl4zGYigDzh.jpg,/1TUg5pO1VZ4B0Q1amk3OlXvlpXV.jpg,420817-301528-429617-330457-420809-384018-8587-475557-454626-474350-299536-299534-447404-329996-9732-287947-404368-512200-466272-299537-984430\r\n24428,The Avengers,Science Fiction-Action-Adventure,en,When an unexpected enemy emerges and threatens global safety and security Nick Fury director of the international peacekeeping agency known as S.H.I.E.L.D. finds himself in need of a team to pull the world back from the brink of disaster. Spanning the globe a daring recruitment effort begins!,100.8,Marvel Studios,4/25/12,220000000,1518815515,143,Released,Some assembly required.,7.71,29108,Robert Downey Jr.-Chris Evans-Mark Ruffalo-Chris Hemsworth-Scarlett Johansson-Jeremy Renner-Tom Hiddleston-Samuel L. Jackson-Cobie Smulders-Clark Gregg-Stellan Skarsg��rd-Gwyneth Paltrow-Paul Bettany-Alexis Denisof-Tina Benko-Jerzy Skolimowski-Kirill Nikiforov-Jeff Wolfe-M'laah Kaur Singh-Rashmi Rustagi-Powers Boothe-Jenny Agutter-Arthur Darbinyan-Donald Li-Warren Kole-Alicia Sixtos-Jesse Garcia-Maximiliano Hern��ndez-Dieter Riesle-Kenneth Tigar-Walter Perez-Harry Dean Stanton-Josh Cowdery-Ashley Johnson-Katsumi Komatsu-Yumiko Komatsu-Momoko Komatsu-Robert Clohessy-Enver Gjokaj-Fernanda Toker-Andrea Vecchio-Robin Swoboda-Brent McGee-Jamie McShane-Michael Zhang-William-Christopher Stephens-Kelley Robins Hicks-Romy Rosemont-James Eckhouse-Stan Lee-Thomas Roberts-Pat Kiernan-Damion Poitier-Lou Ferrigno-Jillian Morgese-Catherine Anderson-Ricardo Andres-Logan Bennett-Mayank Bhatter-Sharita Bone-Jason Botsford-Mary Kate Campbell-Gene N. Chavez-Layla Cushman-Robert Dean-Rick Dremann-Rod Fielder-Eric Frank-Israel Hall-Carmen Dee Harris-Alexander Christopher Jones-Mike Karban-Demoine Kinney-Andrew Knode-Annette Lawless-Kimberly J.", + "embedding" : [ 0.008740068, -0.029989362, -0.012597989, -0.035861593, -0.018763835, 0.029060729, -0.011348433, -0.010925086, -0.017152386, -0.03853824, 0.017493794, 0.0300713, 0.023106556, 0.006732584, 0.0013716104, 0.018873086, 0.010372004, -0.036380537, 0.008043595, -0.038046613, 0.0037520842, -0.0024154682, -0.028924165, 0.007831921, 0.00970967, 0.0013664892, 0.031737376, -0.012488739, -0.002857593, -0.009457028, 0.015158556, -0.02463607, 0.0055991067, -0.019296434, -0.019733436, 0.0018197097, 0.010802179, -0.032365568, 0.030426364, -0.009395574, 0.00642873, 0.01720701, -0.009518481, -0.003714529, -0.010768038, 0.012597989, 0.017425513, -0.004090079, -0.0017889828, 0.036380537, 0.006688201, 0.034987587, -0.022369113, -0.023557216, -0.0073129795, -0.00290539, -0.018886743, 0.0073129795, 0.0040661804, 0.006039524, 0.024663381, -0.006339964, -0.027818, -0.023598185, -0.018162955, -0.009525309, -0.021317573, -0.021836516, 0.0014825683, 0.007907031, 0.02650699, 0.0076543884, -0.004042282, 0.0066677164, 0.008603505, -0.031546187, -0.021768233, 0.0070739933, 0.0017232616, 4.7199786E-4, 0.007142275, 0.005732256, -0.01570481, 0.013642701, 0.017411856, 0.017384542, -0.006613091, 0.031955875, -0.047933813, 0.022901712, 0.0050323675, 0.025346199, -0.00791386, 7.387236E-4, 8.070054E-4, 0.02197308, -0.013062306, 0.021536076, -0.016701724, -0.038975243, 6.243516E-4, -0.005028954, 8.9193083E-4, -0.0120722195, 0.003933031, -0.0010233733, -0.0067052715, -0.010563193, 0.012850632, 0.0032604553, -0.0062546115, -0.014926398, 0.041214887, -0.03580697, -0.006196572, -0.021699952, 0.008733241, -0.009907687, 6.0600087E-5, -0.0176167, 0.026288489, 0.030453676, 0.012707241, -0.03313032, 0.035151463, 0.015158556, -0.0025554458, -0.029497731, -0.00283028, -0.0036838024, 0.03340345, -0.019910969, 0.024772633, 0.008159674, -0.018832117, 0.04506598, -0.01875018, 0.026302144, -0.015663842, -0.013663186, 0.03310301, 0.030344427, -0.005257698, -0.025346199, -0.036353223, 0.002067231, 0.00824844, -0.004387105, 0.014940055, 0.0065823644, 0.019788062, 0.01795811, 0.010255924, 0.022369113, 0.028760288, 0.0020894227, 0.011655701, -0.011341604, 0.01087046, -0.014994681, 0.011034337, -0.011969797, -0.012427285, 0.0040320395, 0.0014987852, 0.030754117, 0.02654796, -0.019310089, -0.00429151, -0.0015534107, -0.0048036235, 0.016879257, -0.012386316, 0.018135643, -0.009463856, 0.007907031, -0.0029309958, -0.01859996, -0.03963075, 0.0052474556, 7.4683205E-4, 0.016073532, 0.020771319, 0.030235175, -8.441336E-4, 0.0030231762, 0.03209244, -0.02867835, 0.017398199, -0.032256316, 0.01866824, 0.013854374, -0.016059875, -0.014107017, -0.6231669, -0.010412972, -5.3259794E-4, -0.019392027, 0.014885429, 0.016483223, 0.002488871, -0.0025042344, -0.041569952, -0.005035782, -0.020771319, 0.009395574, 0.03198319, -0.013881687, -0.030945307, -0.014953711, -0.0030692662, -0.032720633, 0.010665615, 0.0030436607, -0.03520609, 0.023857657, 0.0106860995, -0.009948656, 0.0031136496, 0.0056673884, -0.0044178315, -0.013704155, 0.004008141, -0.0050665084, -0.016428597, 0.011348433, 0.020252379, 0.01484446, 0.03211975, 0.015868688, -0.016810976, 0.046431616, 0.034277458, 0.032447506, -0.042635147, -0.003816952, 0.003929617, -0.004677302, -0.02354356, 0.020293348, 0.019241808, 0.004711443, -0.0015781628, -0.0017113123, -0.008712756, -0.0054488867, -0.004899218, -0.0069852266, -0.025373513, 0.0037384278, 0.014680584, -0.023120213, 0.024458537, 0.010358347, -0.023038276, 0.016660756, 8.9107733E-4, 0.010399316, -0.011935656, 0.032392878, 0.004243713, -0.010112532, 0.0068213507, -0.0230929, 0.00290539, 0.002519598, -0.0010814128, -0.008016282, 0.019897312, 0.0062750964, 0.026752803, -0.002410347, -0.0021952596, 0.022205237, -0.004482699, -0.008746897, 0.014858116, 0.015977938, 0.009347777, 0.0016362023, -0.03168275, -0.0043222373, 0.00884932, 0.003820366, 0.006268268, 0.014625959, 0.012031251, 0.013656357, -0.0049470155, -0.003595036, -0.011983453, 0.0034499373, 0.008330378, -0.062436868, -0.02571492, -0.029852796, 0.02313387, -0.012263409, 0.03099993, 0.021904796, -0.015062963, -0.020989822, 0.03217438, -0.012591162, -0.009989626, 6.9434044E-4, -0.02197308, -0.0154316835, -0.0075041684, -0.02721712, 0.01353345, 0.010139845, -0.007565622, 0.010201299, 4.1529198E-5, 0.017671326, 0.0062648538, -0.032256316, 0.0018914056, 0.03613472, -0.013376402, -0.0031477904, 4.35083E-4, 0.016264722, 0.0021269778, -0.002673232, 0.011573763, -0.013219354, 0.019432997, 0.018873086, 0.01971978, -0.0058346787, 0.015172213, -0.012174643, -0.02174092, -0.019023307, -0.01229755, -0.011628388, -0.007995797, -0.0016114502, -0.02695765, 0.004431488, 0.004899218, 0.0052542835, -0.030836055, 0.019146213, -0.003279233, 0.016442254, 0.011225526, 0.008412316, -0.015896, -0.012550193, 0.009935, -0.03099993, 0.017193355, 0.01735723, -0.019951938, -0.029606983, 0.01799908, -0.008255268, -0.0077158418, -0.0020365042, 0.0044280738, -0.0120585635, 0.008842492, -0.017370887, -0.019514935, 0.012994024, 0.0012734553, 0.029770859, 0.001833366, 0.025441794, 0.01649688, -0.011437199, 0.012236096, -0.0062887524, -0.034659836, -0.01109579, 0.032747947, 0.02740831, -0.004701201, -0.00657895, -0.002603243, -0.002449609, -0.017343573, -0.018040048, -7.4213766E-4, -0.008378175, -0.006032696, 0.028132096, 0.009088306, -0.0020057776, 0.0063945893, 0.0022276933, 0.026602585, 0.03370389, 0.006886218, -0.019665156, -0.0044553867, -0.03140962, -0.0073198075, -0.031737376, 0.009224869, 0.009996453, 0.030644866, -0.0036257629, -0.013089619, -0.007674873, 0.012666271, 0.020976165, -0.011676186, -0.0017497208, -0.016660756, -0.008350862, -0.0018231237, -0.011464512, 0.016005252, 0.012031251, -0.02305193, 0.0052952524, 0.018804803, -0.013028165, -0.0040388675, -0.010419801, -0.01881846, -0.005431816, 0.0035404107, 4.438316E-4, -0.013465168, 0.0021525833, 0.030125925, -0.005302081, 0.04203427, -0.015841374, -0.013519794, 0.023680124, 0.025796859, 0.012543364, -0.01357442, -0.015062963, 0.015540935, 0.011792265, -0.019965595, 0.041214887, -0.009894031, 0.0058517493, -0.003204123, 0.016251065, 0.006725756, -0.009825749, 0.004352964, 0.011676186, 0.028022846, 0.023379683, 0.013717811, -0.031245746, 0.03539728, 0.006456043, 0.017015822, -0.006305823, -0.026220206, 6.7214883E-4, -0.008692271, -0.031955875, -0.017179698, -0.018586302, 0.002027969, 0.0079411715, -0.013014508, 0.012884773, -0.0027500489, -0.009723326, 0.019310089, 0.030344427, -0.0044280738, -0.025250604, 0.011942484, 0.024649724, -0.014967368, -0.02515501, -0.010733897, -0.005899546, -0.024089815, 0.004622677, -0.008480598, 0.033922393, -0.018053705, 1.1010438E-4, -0.019910969, 0.0057083573, 0.025810516, -0.018545333, 0.028924165, 0.021167355, -0.0096140755, 0.0063160653, -0.010529052, 0.001545729, 0.03198319, -0.0032809398, 0.021959422, 6.589192E-4, -0.023925938, -0.0028063816, 0.0110001955, -0.015008337, -0.033785827, 0.014270893, -0.0052986667, -0.0043324796, -0.017821547, 0.0032160722, 0.0070466804, -0.027831657, -0.012871116, -0.027544873, -0.011382574, 8.210885E-4, 0.06451263, 0.022710523, 0.017152386, 0.012959884, -0.025428137, 0.016073532, -0.016988508, -0.017794233, -0.00687939, -0.0055683795, 0.011184556, -0.014025079, 0.019392027, 0.008712756, 0.017220667, -0.021030791, 9.036668E-5, -0.011969797, -0.023884969, -0.011450856, -0.021112729, -0.011519138, 0.032829884, 0.03771886, -0.0034601795, -0.0068896324, 0.021167355, 0.027572185, -0.0063877613, 0.004977742, 0.002721029, 0.0053601204, 0.0110001955, 0.013526622, 0.016879257, 0.0065277386, 0.026657209, 0.020047532, 0.024390254, 0.012174643, -0.003403847, 0.004632919, -6.0856144E-4, -0.008364519, 0.010467598, -0.018845772, -0.016223753, 0.033157635, 0.030562928, -0.034659836, 0.024649724, 4.4809922E-4, -0.021030791, -0.0132876355, 0.037418418, -0.004212986, -4.2590764E-4, 0.009682357, -0.015964283, 0.0042607835, 0.0066301613, -0.033430763, 0.00880835, -0.009723326, 0.0026715249, -0.013751952, -0.006619919, -0.021290261, -0.005397675, 0.013260323, -0.0034277458, -0.011341604, -0.0010890946, -0.010549536, 0.013772436, -0.009757468, 0.027940907, -0.009170244, 0.0145167075, 0.002937824, -0.018763835, -0.019897312, 0.0016088895, -0.028323285, -0.014079705, 0.024622412, -0.0025469107, 0.03692679, -0.011491825, 0.0013101568, 0.0029907422, 0.004738756, 0.0019289604, -0.008781038, 0.03228363, 7.536602E-4, 0.0053328075, 0.025223292, 0.009279495, -0.0015593853, 0.009218041, -0.0029634295, 5.436937E-4, -0.015554591, -0.007429058, -0.012481911, -0.006234127, 0.0020808876, -0.015062963, -0.021536076, -0.039166432, -0.01967881, -0.006981813, -8.407195E-4, 0.004974328, 1.3997767E-4, 0.014680584, 5.308909E-4, -0.0031375482, 0.007756811, 0.005657146, -0.01660613, 0.012495567, 0.024963822, -0.0043802764, 0.031955875, -0.027244434, -0.024758976, -0.0135880755, 0.02272418, 0.010911429, 0.014066048, -0.017329918, -0.006462871, -0.00566056, -0.017684983, -0.004475871, -0.0018675069, -0.016483223, 0.0018538506, -0.02066207, 5.93198E-4, 0.011314292, -0.010412972, -0.0017531349, -0.026302144, 0.009948656, -0.0032365567, 0.015308777, 0.029934736, 0.0033731202, 0.0078114364, -0.022396427, 0.0021389269, -0.0029224604, -0.03763692, -0.019473966, -0.01053588, 0.033540014, 0.021549731, 0.035643093, -0.010522223, 0.02208233, -0.0031443762, 0.007026196, 0.022164268, -0.01690657, -0.00985989, -0.026247518, 8.936379E-4, 0.0071286187, 0.02369378, 0.012024423, 0.012488739, 0.0040047267, 0.01334909, 0.008719584, 0.01087046, -2.5779042E-5, -0.00933412, -0.021891141, 0.014038735, -0.027162494, -0.0020245549, -0.016141815, -0.011942484, 0.029115355, 5.603374E-4, 0.004694373, -0.0051928298, 0.03528803, -0.012065392, 0.026179237, -0.03840168, 0.015254151, -0.022246206, 0.0012461427, -0.02661624, -0.01885943, 0.006998883, -0.016810976, 0.012065392, -0.0013895343, -0.00824844, 3.9155336E-4, 0.037090667, -0.020907883, -0.028651038, 0.0183678, -0.013437856, -0.007374433, -0.04348184, -9.2009705E-4, -0.03490565, -0.01334909, -0.002185017, -0.010549536, 0.00588589, -0.021058103, -0.048234254, 0.022696866, 0.012454598, 0.042389333, 0.0027278573, 0.05309592, 0.020948851, 0.008186987, -0.01675635, 0.008391832, -0.022218894, -7.4725883E-4, 0.036544412, 0.01413433, -0.029962048, -0.0053396355, 0.009020024, -0.007490512, -0.039466873, -0.03681754, 0.019501278, 0.01780789, 0.023188494, -0.022628585, 0.01079535, -0.022696866, 0.012468254, 0.0062102284, -8.650449E-4, 0.016879257, -0.025373513, -0.023570873, -0.004694373, -0.004827522, 0.008439628, 0.0055581373, -0.034932964, 0.00693743, -0.017275292, -0.007456371, -0.004957258, -0.013786092, 0.034359396, -0.029142667, 0.027954563, 0.012201956, 0.009081477, 0.009532138, -0.0076543884, 0.016360316, 0.030399052, -0.01926912, 0.013465168, 0.0017224081, 0.0018999408, 0.0034499373, 0.011751296, -0.02549642, -0.03490565, -0.038702115, -0.001717287, 0.039466873, 6.7428267E-4, -0.012898429, -0.011164072, -0.017739609, -0.024199065, 0.012106361, -0.012905258, 0.0017906899, -0.036462475, 0.01728895, 0.004827522, -0.001243582, 0.006268268, -0.011088963, -0.0019187182, 0.007886547, 0.005715186, -0.007155931, -0.0065926067, -0.023966907, -0.027572185, -0.04394616, -0.0382378, -0.016988508, -0.009566278, 0.006445801, -0.023857657, -0.0031563255, 0.007825092, -0.016428597, -0.010809007, -0.0028063816, -0.010911429, -0.003980828, 0.018436082, -0.005005055, -0.012666271, 0.0048480066, 0.033785827, -0.01026958, -0.010925086, 0.0091839, 0.004994813, 0.024936508, -0.020156784, 0.014789835, -0.0028814913, -0.0032963033, -0.015855031, 0.013478825, 0.023366027, 0.008159674, 0.0027295644, -0.03337614, -0.004554395, 0.00206211, 0.042225458, -0.015732124, -0.014175299, 0.03504221, 0.012338519, 0.056100316, 0.029962048, -0.015377059, -0.02463607, -0.009846234, -0.0035813798, -0.018012736, -0.011109447, 0.008077735, 0.026561616, 0.010051079, 3.2369833E-4, -0.028377911, -0.01053588, -0.023625499, -0.036162034, -6.4227555E-4, 0.014571333, 0.03269332, 0.013021337, -5.02778E-5, 0.02152242, -0.0067803813, 0.00929998, -0.02796822, -0.020115815, -8.753938E-5, 0.005848335, 0.02489554, 0.00978478, -0.012679928, -0.016961196, 0.012509223, 0.015172213, 0.012044908, 0.022860743, -0.021795547, -0.010529052, -0.018804803, 0.022300832, -0.014407457, -0.0031085284, 0.035178777, -0.02927923, -0.013792921, 0.0070535084, 0.010153501, -0.003775983, 0.015199526, 0.01330812, -0.009218041, -0.0091839, -0.008193814, -0.009136103, 4.2569428E-4, -0.031792, 0.023024619, 0.006357034, -0.005005055, 0.024881883, 0.02358453, -0.008726412, 0.0075109964, -0.014339175, 0.008726412, -0.008767381, -0.0059132027, 0.008330378, 0.0070808213, -0.033867765, 0.01795811, -0.02691668, 0.0071354466, -0.006032696, 0.011484996, -0.0072788387, 0.025865141, -0.0023403582, -0.053150542, -0.007988969, -0.012434114, 0.014940055, -0.011444028, 0.0021235636, -0.021495106, -0.01533609, -0.0025417896, 0.008869804, -0.024485849, -0.011566935, -0.007852405, 0.0032963033, -0.011136759, 0.021645326, 0.19239077, -0.00832355, 0.022273518, 0.050391957, -0.0035369967, 0.011976626, 0.025810516, 0.016059875, 5.8551633E-4, 0.01136209, -0.01357442, 0.015213182, 0.004209572, 0.0041481187, 0.008903945, -0.013362746, -0.018026391, -0.014161643, -0.0285691, -0.01106165, 8.41573E-4, -0.0038271942, -0.019951938, -0.022150612, 0.008890289, -9.54238E-4, -0.010966055, 0.015021993, 0.02021141, 0.0018760421, -0.010979711, 0.007060337, -0.008152845, 0.013376402, -0.030207863, -0.013239838, 0.008958571, 0.010447114, 0.018927712, 0.015909657, 0.00978478, -0.008726412, -0.01529512, -0.024608755, 0.028623724, 0.020634755, -0.029606983, -0.0027363927, -0.009047337, 0.008200643, -0.051238652, 0.0040320395, 0.007886547, 0.024526818, -0.017739609, -0.004387105, 0.008535223, 0.007067165, -0.007763639, -0.007429058, 0.013376402, 0.02418541, -0.02826866, 0.013895344, -0.0034157964, 0.029716233, -0.035260715, -0.008439628, 0.015909657, -0.027421966, -0.014707897, -0.028132096, -0.008835663, -0.0050528524, 0.0011659116, -0.01473521, 0.01582772, 0.00828258, 0.017712295, 0.009060993, -0.030808743, -0.027176151, -0.017002165, 0.004851421, -0.026370427, -0.009812092, 0.01776692, -0.008514739, -0.002748342, -0.021918453, -0.014885429, -0.00933412, -0.025592014, -0.00564349, -0.0148171475, 0.008139189, 0.024226379, 0.0105427075, -0.025073072, -0.017398199, -0.033239573, 0.034659836, 0.017056791, -0.005506926, -0.026752803, -0.010979711, -0.0027278573, 0.001740332, 0.030508302, -0.015158556, 0.0012700412, -0.03108187, 0.01473521, -0.019965595, 0.0013861203, 0.030535616, -0.008275753, -0.016196439, 0.04416466, -0.010201299, -0.010426629, -0.016838288, 0.02058013, -0.0011514017, -0.018313175, -0.024499506, -0.021727264, 0.010979711, 0.013185213, -0.030917993, 0.00899954, -0.02796822, 0.0154316835, -0.0060975635, 0.0048753195, 0.007668045, 0.024963822, 0.012454598, 0.0033833624, -0.02403519, 0.011375746, -0.006575536, 0.02429466, 0.011519138, 0.005090407, -0.03313032, 0.01375878, -0.010597333, -0.009218041, -0.043891534, -0.020566475, -0.01102068, 0.02032066, 0.0033406864, 0.043618407, 0.01615547, -0.013813405, -0.02148145, -6.768432E-4, 0.036762916, -0.031873938, 0.00828258, 0.020771319, -0.011935656, -0.03662635, -0.0058688195, -0.17447363, 0.021604357, -0.0027398067, -0.026110955, 0.012495567, 0.008979055, 0.014011423, 2.4538767E-4, 0.014366488, -0.021276604, 0.025824172, 0.0036189347, -0.049818393, 1.7870624E-4, 0.005349878, 0.014748866, -0.02354356, 0.029989362, 0.013710983, 0.0012384609, 0.056701194, 0.0039091324, -0.0013272272, -0.0117581235, 0.015991595, 0.004363206, 0.017138729, -0.0013357624, -0.004390519, -0.011819578, -0.033758514, -0.015172213, 0.012236096, -0.004045696, -0.0230929, 0.0030402467, -0.033157635, -0.015800405, -0.0049913987, 0.005722014, 0.050009582, 0.016510537, 0.032966446, 0.01563653, 0.032010503, 0.021986736, 0.022997307, 6.5763894E-4, 0.016414942, -0.028323285, -0.009832578, -0.03662635, 0.018203925, -0.0042676115, -0.019405684, 0.030808743, -0.019979252, 0.0067052715, 0.008924429, -0.015540935, -0.025892453, -0.010925086, 9.030266E-4, -0.035561156, 0.009593591, -0.011956141, -0.017125072, 0.016264722, -0.0270669, 0.017302604, -0.013034993, 0.014912742, -3.2780594E-5, 0.010030595, 0.0034055542, -0.016319348, -0.03621666, -0.0052099004, -0.0021594116, 0.018545333, -0.020484537, 0.040887132, -0.016114501, 0.009088306, 0.003864749, -0.015254151, 6.000262E-4, 0.0025861727, 0.0026920096, 0.0045680515, -0.003245092, -0.014339175, -0.02957967, 4.920556E-4, 0.0031187707, 0.003099993, -0.00940923, 0.004096907, 0.004878734, -0.020744007, -0.0020450396, -0.014270893, -0.017275292, 0.013697326, 0.020784976, 0.01154645, 0.0046909587, 0.02908804, 0.017848859, 0.003239971, -0.002480336, 0.0017061911, 0.01956956, 0.0053293933, -0.010119361, 0.020184096, -0.010952398, -0.01533609, -3.9966183E-4, 0.006418488, 0.0526316, -0.0050426098, -0.005506926, -0.015923312, -0.006469699, 5.2918383E-4, -0.08767381, -0.006083907, -0.006425316, 0.031054556, -0.022259863, 0.03902987, -0.0067120995, 0.018886743, -0.005302081, 0.03733648, -0.0029873282, -0.01574578, 0.021426825, 0.0033099595, 0.018231237, -0.0029036829, -0.0058073658, -0.01177178, 0.001261506, 0.031819314, -0.014994681, -0.0010626353, 0.005387433, -0.018244894, -0.029415794, 0.013280808, -0.022956336, 0.028050158, -0.0013477118, 0.02238277, 0.012550193, -0.00480021, 0.015609217, -0.031846624, -0.026425052, -0.02774972, -0.026042674, -0.01630569, -0.0030317113, -0.05110209, 0.021126386, 0.0033867767, 0.009853062, -0.015718468, 0.006964742, 0.0060975635, -0.020429911, 0.039384935, 2.0871288E-5, -0.035506528, -0.009648217, -0.019255463, -0.032556757, -0.0053225653, 0.0070466804, 0.019228151, 0.023953252, 0.0022379356, -0.0021167353, -0.026083643, 0.002789311, -4.1139778E-4, -0.024977477, 0.015049306, 0.008985884, 0.013205698, 0.027476592, 0.0014211147, 0.00970967, -0.018955024, -0.02193211, 0.017930796, -0.044792853, -0.004957258, -0.018832117, -0.0026937164, -0.028705664, -0.013581247, 0.024813602, -0.03198319, 0.0056503178, -0.027640468, 6.8537844E-4, -0.02455413, 0.027012276, 0.008842492, 6.260586E-4, 0.019036962, -0.013103275, -0.04375497, -0.011908344, 0.010133017, -0.0022754907, -3.320202E-4, 0.009832578, 0.024076158, 0.012891602, 0.0013238131, -0.002715908, 0.021508763, -0.01383389, -0.0054796133, -0.08199277, 0.03280257, -0.023502592, -0.0046397476, -0.015773093, 0.0016344953, 3.3073992E-4, -0.01769864, 0.0050938213, 0.00990086, -0.0025793444, 0.01278235, -0.005346464, 0.009846234, -0.0060634227, 0.017562076, -0.013294464, -0.0126730995, -5.2833033E-4, 0.0060258675, -0.012481911, 0.01825855, 0.037227232, 0.002857593, 0.015786748, 0.026780117, 9.875253E-4, 0.020457223, -0.015377059, -0.010221783, 0.035124153, -0.010890945, -0.013342261, 0.012707241, -0.0037281855, -0.029333856, -0.019624185, -0.006435558, 0.014571333, -0.013376402, -0.008303065, -0.030945307, -0.003936445, -7.429912E-4, -0.005725428, 0.023898626, -0.015281464, 0.014789835, 0.009190729, 0.017261636, 0.0425259, 0.0148034915, 4.849074E-5, -0.011580591, 0.03269332, -0.011635217, 0.06227299, 0.0018692139, 0.0069545, -0.015390715, 0.016797319, 0.0028405224, 0.02167264, -0.015527278, 0.0022823187, -0.011990282, 0.0057288418, -0.0069783987, 0.0035199262, -0.029852796, -0.00459195, -0.0017138729, 0.01229755, 0.023680124, 0.0230929, 0.0071627595, 0.0025093558, 7.7158416E-4, -9.585056E-4, 0.015540935, 0.019842688, -0.020552818, -0.028241348, 0.021836516, -0.0021833102, 0.02590611, -0.010139845, 0.010638302, 0.007524653, 0.015691156, -0.019392027, 0.008781038, -1.9513654E-4, 0.00642873, 0.0039876564, 0.011730811, -0.013034993, -0.013963626, 0.0027022518, 0.024089815, -0.0059780707, -0.004619263, -0.021727264, -0.010706584, -0.028295973, 0.0011420129, -0.018927712, -0.007613419, 0.013936313, 0.025387168, 0.030153237, -0.0020877155, -0.028350597, 0.005889304, -0.043618407, 0.0064765275, -0.004202744, 0.006049766, -0.02354356, 0.042198144, 0.01053588, 0.001318692, 0.036653664, -0.0077841235, 0.038947932, 0.0053669484, 0.008781038, -0.036025472, 0.010037423, 0.0011070184, -0.0054830275, -0.0047558267, -0.026875712, 0.005872234, -0.0026868882, 0.021822859, 0.02455413, 0.03580697, -0.018176612, 0.078223616, 0.020088501, -0.0015909657, 0.01079535, -0.012154158, 0.018490708, 0.018162955, 0.02927923, -0.021344887, -0.002977086, -0.0072515258, -0.014584989, -0.006916945, -0.037882734, 0.01001011, -0.0045270827, 0.01720701, -6.6318683E-4, 0.0031563255, -0.0031597398, 0.0024547302, 0.0054488867, 0.018791148, 0.015199526, -0.019473966, -0.023065588, 0.03247482, -0.0041071493, -0.0148171475, -0.0524131, 0.0070125395, -0.021809204, 0.0074973404, 0.004906046, 0.03960344, 3.7768365E-5, 0.005230385, 0.012051735, 0.023857657, -0.0014996388, -0.011382574, 0.0055717938, -0.017684983, -0.010754381, 0.0128301475, -0.0020740593, -0.0060087973, -0.017930796, -0.016251065 ], + "id" : "697fd2b2-6faf-4735-a634-6a14c2a5fb1b", + "metadata" : { + "source" : "movies.csv" + } + }, + "69e1b135-6c58-46a0-93db-d82fe51ee734" : { + "text" : "701,9793,Jim Carrey-Morgan Freeman-Jennifer Aniston-Philip Baker Hall-Catherine Bell-Lisa Ann Walter-Steve Carell-Nora Dunn-Eddie Jemison-Paul Satterfield-Mark Kiely-Sally Kirkland-Tony Bennett-Timothy Di Pri-Brian Tahash-Lou Felder-Lillian Adams-Christopher Darga-Jack Jozefson-Mark Adair-Rios-Enrique Almeida-Noel Gugliemi-Rolando Molina-Emilio Rivera-Mary Pat Gleason-Don Dowe-P.J. Byrne-Albert P. Santos-Madeline Lovejoy-Jovan Allie-Koby Allie-Dan Desmond-Selma Stern-Alfred Dennis-Rina Fernandez-Robert Curtis Brown-Michael Brownlee-Ted Garcia-Maria Quiban-Shaun Robinson-Saida Pagan-Ken Rudulph-Gina St. John-Michael Villani-Christina Grandy-Allen Lulu-Jamison Yang-Bette Rae-Andrew Romero Hateley-Nick Huff-Greg Collins-Dougald Park-Susan Ware-John Rosenfeld-Carey Scott-David A. Clemons-Bradley Stryker-Michael Guarnera-Laura Carson-Zachary Aaron Krebs-Ben Livingston-Nelson Mashita-Glen Yrigoyen-Dohn Norwood-Michael Olifiers-Howard S. Lefstein-Miah Won-Darcy Fowers-Laura-Shay Griffin-Darius Rose-Micayla Bowden-Sammy Boyarsky-Dylan Ferguson-Cubbie Kile-Emily Needham-Alex Villiers-Monique Daniels-Ara Celi-Jessica Leigh Mattson-Allison McCurdy-Patti McLafferty-Janelle Pierzina-Annie Wersching-Ashley Yegan-Micah Stephen Williams-William Thomas Jr.-Tom Beyer-Max Grod��nchik-Michael Bofshever-Colby French-Manny Suarez-Shashawnee Hall-Carrie Quinn Dolin-Vanna Salviati-Scott DeFoe-David Carrera,christianity-moon-moses-street gang-lovesickness-journalism-new love-faith-prayer-god-car crash-religion-relationship-news reporter-female journalist-religious conflict-responsibility-praying-almighty,/f0QqG14SZYYZcV4VWykVc5w13dz.jpg,/8bQbejOvAKe78RXxpkfM04n0K18.jpg,854-1624-1593-2698-3049-953-10201-9339-607-45243-425-8467-118-608-9738-809-18360-772-2048-8960-2105\r\n61791,Rise of the Planet of the Apes,Thriller-Action-Drama-Science Fiction,en,A highly intelligent chimpanzee named Caeser has been living a peaceful suburban life ever since he was born. But when he gets taken to a cruel primate facility Caeser decides to revolt against those who have harmed him.,63.084,Dune Entertainment III-Dune Entertainment-Chernin Entertainment-Ingenious Media-Big Screen Productions-20th Century Fox,8/3/11,93000000,482860185,105,Released,Evolution Becomes Revolution.,7.3,10419,James Franco-Andy Serkis-Freida Pinto-John Lithgow-Brian Cox-Tom Felton-David Hewlett-Tyler Labine-David Oyelowo-Jamie Harris-Ty Olsson-Chelah Horsdal-Jesse Reid-Joey Roche-Madison Bell-Makena Joy-B. J.", + "embedding" : [ 0.007627461, -0.025170622, -0.017141715, -0.03586245, -0.026816549, 0.029359035, 0.005074938, 6.293492E-4, -0.022654898, -0.027753254, 0.027485624, 0.038164068, 0.02046033, -0.010123113, 0.0038505297, 0.009440656, 0.015000674, -0.014291454, -0.0046734926, -0.022628134, 0.002698047, -0.009500872, -0.012230701, 0.006871406, 0.006510105, 0.018653827, 0.030322503, -0.004867525, -0.01417102, -0.003377159, 0.008022216, -0.013522017, -7.203016E-5, -0.032249443, -0.0108055705, 0.006048443, 3.7405506E-4, -0.019429954, 0.03623713, -0.007386594, 0.0154556455, 0.019844782, -0.011842637, 0.0026043765, -0.022828858, 8.3164E-5, 0.02028637, -0.0072929235, -0.009634688, 0.0230162, 0.030349268, 0.035621583, -0.019764492, -0.018881312, -0.013983679, -0.0032667613, -0.027860306, 0.0061421134, -0.0050281025, 0.0017329056, 0.002704738, -0.013120571, -0.030135162, -0.008517331, -0.010959458, -0.0127525795, -0.009079355, -0.0201927, -0.001058812, 0.012705744, 0.022748569, 0.0047437456, 0.008651147, -0.008276464, 0.010471032, -0.027619438, -0.028047647, -0.0025207421, -0.0028418985, -0.0047404002, 0.012939921, -0.0020022085, -0.013093809, -0.0025843042, 0.020420186, 0.011140108, -0.013702667, 0.029278746, -0.021959059, 0.01752978, 0.020085648, 0.033587594, -0.0041114693, 0.012893085, -0.001988827, 0.039341643, -0.012745889, 0.018921457, -0.015000674, -0.04108124, 0.005737323, 0.0023032925, 0.0011600098, -0.010210093, 0.0110129835, 0.0037869676, 0.008055669, -0.014518939, 0.014452032, -0.0024923065, 0.017676976, -0.01929614, 0.003843839, -0.03877962, -0.008657837, -0.015067581, 0.02673626, -0.028529381, -0.004409208, -0.023939524, 0.03302557, 0.015937379, 0.014144257, -0.03808378, 0.033721406, 0.043918118, -2.0072266E-4, -0.027284902, 0.013140644, 0.0069650766, 0.022601372, -0.0046199667, 0.024474783, 0.015040819, -0.02151747, 0.03754852, -0.014438651, 0.020942064, -0.017141715, -0.027030652, 0.029974585, 0.034069326, -0.027887069, 9.5928705E-4, -0.037762623, 0.011983143, 0.009012448, -0.0072929235, 0.019148942, 0.0052923877, 0.028716723, 0.030161927, 0.018894693, 0.02594675, 0.03117892, -0.002877025, -4.003999E-4, 0.008055669, -0.008283155, -0.016847322, -0.0015664732, -0.0049277414, 0.0024638707, -0.004422589, -0.0027733182, 0.014559084, 0.015964143, -0.007038675, -0.014746425, -0.012110268, -0.02772649, 0.019496862, -0.030268978, 0.010323836, -0.0023133287, 0.013321294, 1.8242763E-4, -0.011568316, -0.025465015, -0.022614753, 0.007841566, 0.017395964, 0.029947821, 0.03318615, -1.5681458E-4, 0.006112005, 0.021718193, -0.037976727, 0.02054062, -0.01691423, 0.0010880841, 0.0186003, 0.003397231, -0.018546775, -0.6423125, -0.02151747, -0.0026863383, 0.007513718, 0.012772652, 0.02001874, 0.0012645528, -0.009822029, -0.03658505, -0.007935236, -0.014746425, 0.022213308, 0.017034663, -0.009768503, -0.01354878, -0.013448418, 0.0065234867, -0.026642589, 0.009701596, 0.005774122, -0.044266038, 0.017503016, 0.026896836, -0.014224546, 0.0022999472, 0.015535934, -0.0036196988, -0.018653827, 0.008611002, -6.549622E-5, -0.016419115, 0.026977126, 0.007875019, -0.0025675774, 0.034577824, 0.0033788315, -0.024742413, 0.047290258, 0.021865388, 0.040091008, -0.0313395, -0.0058142664, -0.006827916, -0.006382981, -0.02320354, 0.01310719, -0.00779473, 0.007038675, 0.0041148146, -0.010992912, -0.0071524177, 0.025117096, -0.013207551, -0.01018333, -0.0043590274, 6.8956596E-4, 0.0125117125, -0.049136907, 0.0345243, 0.0026227762, -0.016419115, 0.012832869, 0.008289846, 0.01708819, -0.01098622, 0.030563371, -0.006299346, -0.009427275, 0.022106256, -0.036370948, 0.017074808, 0.0053091147, -0.017222004, 0.0064766514, 0.008704673, 0.009293459, 0.021611141, 6.14295E-4, -0.02098221, 0.03128597, 0.008336681, -0.013542089, 0.011434501, 0.012090195, 0.009367058, -0.005650343, -0.03313262, 0.0071791806, 0.004753782, 0.0036866062, 0.013120571, 0.014050586, 6.032134E-5, 0.004195104, -0.012899777, -0.017717121, -0.026682733, -0.0061588404, 0.017302293, -0.060109746, 0.0052756607, -0.020125793, 0.023538077, -0.013756193, 0.019001745, 0.0123042995, 0.0035962812, -9.450692E-4, 0.036290657, -0.0010889204, -0.015964143, -3.265925E-4, -0.011481336, -0.010176639, -0.013695977, -0.028582908, 0.015950762, 0.008938849, -0.005125119, -0.010872478, -0.0016626527, 7.594007E-4, -0.0062558562, -0.010531249, 0.023069724, 0.029439325, -0.008316609, -0.010959458, 0.0050281025, 0.009855483, -0.007814802, 0.003639771, 0.023056343, -0.009915699, 0.018185474, 0.014599228, 0.013522017, -0.0138231, 0.013321294, -0.0026244489, -0.003699988, -0.0019169014, -0.015522553, -0.013716049, -0.009059283, -0.019189086, -0.024514928, 0.011715513, -0.021356892, -0.019148942, -0.010812261, 0.0071189636, 0.0034022492, 0.012096886, 0.003338687, 0.009775193, -0.026709495, -0.03128597, 0.020339897, -0.022159781, 0.008109196, 0.018038277, 0.0032031992, -0.03318615, 0.02435435, 0.0076207705, -0.008651147, 0.013348057, 0.0010211766, -0.014278072, 0.025076952, -0.008651147, 0.0023150013, 0.013174098, -0.01133414, 0.020085648, -0.011795802, 0.022681661, 0.013642451, -0.0021477325, -0.0031730908, -0.0075204093, -0.019577151, -0.01726215, 0.040091008, -0.004047907, 0.00938713, -0.0046032397, -0.007767967, 0.008544095, -0.016419115, -0.013026901, -0.0064900327, -0.007413357, 0.0134618, 0.025210766, -0.01019002, -0.0060082986, 0.0058845193, -0.009112809, 0.040947422, 0.03313262, 0.008999066, -0.011521481, 0.023390882, -0.030054873, 0.005128464, -0.030188689, 4.0980877E-4, -0.006423125, 0.015910616, 0.0060317162, -0.015937379, 0.006667338, 0.001430149, 0.016673362, -0.010999602, -0.004221867, -0.014719662, 0.0016183265, -9.999543E-5, -0.005011376, 0.009982607, 0.0061186957, -0.022721805, 0.008477187, 0.008958922, -0.013321294, 0.007854947, -0.0029757135, -0.008303228, -8.4219885E-4, 1.8670736E-6, 0.012458187, 0.015014055, -0.017636832, 0.032570597, -8.484714E-4, 0.038458463, 2.4902154E-4, -0.008249702, 0.01674027, 0.03348054, 0.008396898, 0.0022581299, -0.0028569526, 0.007854947, 0.02868996, -0.011180253, 0.035434242, -0.013067045, 0.021089261, 0.009674832, 0.013769574, 0.015134489, -0.0042887744, 0.0044761156, 0.0038538752, 0.031098632, 0.018801022, 0.019429954, -0.026441867, 0.02241403, 0.0032650887, 0.005279006, 0.001609963, -0.014251309, -0.0035828995, 0.0022012584, -0.036799155, -0.018172093, -0.017114952, 0.0011349194, 0.011173561, -0.011534862, -0.014920385, -0.016365588, 0.0110129835, 0.025679119, 0.0050147213, 0.009547708, -0.0194701, 0.013716049, 0.022815477, -0.016138103, -0.007299614, -0.0108055705, -0.012531785, -0.03658505, -0.023123251, -0.021276603, 0.038057018, -0.025331201, 0.012558548, -0.005570054, 0.005968154, 0.020500476, 5.829321E-4, 0.015535934, 0.0065134503, -0.012197247, 0.015696513, 0.0048474525, -0.007921854, 0.016593074, -0.020754723, -0.007031984, -0.009607925, -0.0051418454, -0.005764086, 0.008918777, 0.002585977, -0.04030511, -0.0022012584, -0.014358361, -0.014826714, -0.0091194995, -0.0032483619, 0.010297073, -0.0029957858, -0.01284625, -0.031473313, -0.027151085, 0.0020875158, 0.08285832, 0.043570198, 0.011789111, 0.009400511, -0.017650213, 0.006349527, -0.024675507, -7.196744E-4, -0.01407735, -0.019630676, 0.0085507855, -0.037602045, 0.022949291, 0.001967082, 0.016552929, -0.013080427, -0.017837554, -0.01877426, -9.7183225E-4, 0.0069583855, -0.023337355, -0.021758337, 0.012498331, 0.03436372, 0.014278072, -0.010350599, 0.029171694, 0.024247298, -0.0035226827, 0.007915163, 0.005720596, -1.3684685E-4, -0.0018784296, 0.017944606, 0.0026294668, -0.0027866997, 0.030750712, 0.0021778408, 0.042553205, 0.011260541, -0.003699988, 0.015067581, 0.011775729, -0.016419115, 0.025357964, -0.0233775, -0.012377897, 0.027833542, 0.046085924, -0.026669351, 0.014947148, 0.004793926, -0.016178247, -0.003964273, 0.023083106, 0.0058945557, 0.0060016075, -0.019577151, -0.023591604, -0.0018249035, 0.0010094678, -0.028315278, 0.020473711, -0.012538476, -0.0062725833, 0.0055064918, -0.009193098, 0.0013005156, -0.025505159, -0.0083233, 0.014104113, -0.032436784, 0.0017931225, 4.490124E-5, 0.019938452, -7.522918E-4, 0.022280216, -0.004392481, 0.030991578, 0.014840095, -0.02285562, -0.027311664, 0.013187479, -0.019095415, -0.0078616375, 0.0034106127, -0.009795266, 0.010578085, -0.0019988632, -6.816207E-5, -0.012418042, -0.005091665, -0.010330526, -0.00779473, 0.024688888, 0.010698518, 0.028823774, 0.015910616, -1.4029678E-4, -0.015830327, 0.0043155374, -0.020647671, -0.0050281025, -0.008209557, -0.01434498, -0.010404125, 0.006607121, -0.0027298282, -0.024862848, -0.026227761, -0.009286769, -0.009206479, 0.014385125, -0.0027967358, 0.02400643, 7.702732E-4, 0.025799554, 0.0055299094, -0.008691291, -0.0018583573, 0.0054496205, -0.019844782, 0.027753254, 0.021892153, -0.012832869, 0.027887069, -0.011200325, -0.01699452, 0.0012001543, 0.032008573, -0.011327449, 0.027057415, -0.0075605535, -0.014987293, -0.01691423, -0.017650213, 0.008684601, 0.003947546, -0.0071858712, 0.024167009, -0.022895765, -0.0022497666, 0.012518403, 0.01053794, -0.013890008, -0.031821232, 0.017730502, -0.017329056, 0.017235385, 0.009541017, -0.010966148, -3.6673705E-4, -0.026990507, -0.0048842514, -0.006396362, -0.027405335, 0.0016509439, 4.4535342E-4, 0.03125921, 0.008008834, 0.03621037, -0.013267769, 0.036986496, -0.0037501685, 0.016151484, 0.01921585, -0.030188689, -0.0138231, -0.028904064, -0.005693833, 0.011588388, 0.011722203, 0.01009635, -0.0027699727, 0.012652218, 0.010912622, 0.0134417275, -3.4248305E-4, -0.009902318, -0.030081637, -0.024862848, 0.009922391, -0.035621583, -8.5725304E-4, -0.013301222, -0.013702667, 0.03497927, 0.01345511, -0.012899777, -0.001352369, 0.025906606, 0.0068914783, 0.011253851, -0.016084576, -0.0042921198, -0.040144533, -0.0021142787, -0.022333741, -0.01372943, -0.012157103, -0.024983281, 0.035541292, 0.0035327189, -0.01868059, -0.010939385, 0.031767707, -5.9631356E-4, -0.024327587, 0.027284902, -0.020513857, -0.0062190574, -0.03639771, -0.0030175308, -0.035113085, -0.0046199667, -0.008564167, -0.0041114693, 0.0024003086, -0.019322902, -0.037120312, 0.031098632, 0.005198717, 0.037655573, 0.012826178, 0.05392749, 0.01815871, 0.012966684, -0.018359434, 0.013254386, -0.005727287, -0.002554196, 0.0214238, 0.03356083, -0.0076676058, -0.008048979, 0.0021443872, -0.010832333, -0.036959734, -0.037682336, 0.01674027, 0.025411488, 0.009219861, -0.027512386, -0.003549446, -0.01904189, 0.022454176, -0.004894288, -0.0048307255, -0.0053726765, -0.03912754, -0.014625992, -6.849661E-4, -0.0104108155, 0.007058747, 0.0032517072, -0.031312734, 0.011929617, -0.029466087, 0.02596013, -0.01133414, -0.011782421, 0.026093947, -0.003947546, 0.019670822, -0.01221732, -0.008035597, -7.5187365E-4, -0.0011232105, -0.004037871, 0.030857764, -0.023297211, 0.0077545857, 0.0063328003, 0.0011014657, 0.008778271, 0.016967757, -0.018707352, -0.011849328, -0.029653428, -5.047339E-4, 0.031018343, 1.1447464E-4, -0.005285697, -0.0022062766, -0.019001745, 0.001104811, 0.00571056, 0.0014870204, 0.006456579, -0.025344582, 0.030964816, -0.0045196055, 0.010491105, -0.009541017, 0.0132343145, -0.0027749909, -0.013388202, 0.018185474, -0.0047571273, -1.2294263E-4, -0.030938054, -0.017703738, -0.03029574, -0.024059957, -0.0046166214, -0.0068212254, 4.8382525E-4, -0.022735188, -0.0018098494, -0.009607925, 0.011695441, -0.0020189355, 7.6274615E-4, -0.024394494, 0.010611538, 0.00964807, -0.0034206486, -0.009494182, -0.0020022085, 0.03650476, 0.0014159312, -0.0104442695, 0.0018165401, 0.008564167, 0.027565913, -0.02293591, 0.016432496, 0.011528172, -0.023471171, -0.006844643, -0.0032115625, 0.031205684, 0.01886793, -0.005526564, -0.033534065, -0.011742276, -0.012585311, 0.036531527, -0.0035126465, 7.8490924E-4, 0.02071458, 0.025478397, 0.029653428, 0.023431025, 3.040112E-4, -0.03283823, 0.011775729, -0.009674832, -0.010016061, 0.003817076, 0.005740668, 0.007654224, 0.0067877714, 0.0030442937, -0.0384317, -0.01372943, -0.028636433, -0.02392614, -0.001578182, 0.018024895, 0.023069724, 0.0035026106, -0.0011984815, -0.0010855751, 0.014960529, 0.003934164, -0.020955445, -0.004154959, 0.027619438, 0.005677106, 0.033105858, 0.0170079, -0.011019674, -0.014773188, 0.0064197797, 0.02949285, 0.0062725833, 0.010859096, -0.009888937, 0.0062056757, -0.0070922007, 0.0056035076, -0.004262011, 0.00526897, 0.03064366, -0.019644057, -0.009848792, 0.0012478259, 0.018372815, -0.0055131824, -2.408672E-4, 0.0023016199, -0.0040311804, 4.5204416E-4, 0.0022915837, -0.014826714, 0.011588388, -0.021410417, 0.008022216, 0.0024989971, 0.0020841702, 0.03286499, 0.018881312, -0.017248768, 0.006684065, -0.0047404002, 0.02284224, -0.011896163, 0.009460729, 0.009253315, 0.017690357, -0.02258799, 0.014572466, -0.031152157, 0.009795266, -0.018466486, 0.003107856, -0.0089455405, 0.023364117, 0.009895627, -0.053097837, 0.003219926, -0.007875019, 0.0025709227, -0.014572466, -0.0050615566, -0.027887069, 0.005382713, -0.0033236328, 0.011742276, -0.023364117, -0.032062102, 0.0050615566, -0.014759807, -0.013655832, 0.016191628, 0.18006161, -0.010196711, 0.0065335226, 0.038511988, -0.005730632, 0.018881312, 0.018011514, 0.016579691, -0.011661987, 0.008671219, 0.00420514, 0.004091397, 0.0012478259, 0.002709756, 0.016071195, -0.013608997, -0.021089261, -0.018988363, -0.015576079, -0.039983954, -0.002338419, -0.0044727703, -0.0056737605, -0.015469027, 0.009547708, -0.0037970038, -0.02011241, 0.0062759286, 0.01434498, 0.006235784, -0.0021928952, -5.7540496E-4, -0.012598692, 0.008564167, -0.029573139, -0.002396963, -0.010952767, 0.019831399, 0.013675904, -0.009895627, 0.012658909, -0.0037702408, -0.006924932, -0.005794194, 0.003960927, 0.030483082, -0.014157639, -0.0108055705, -0.024836084, 0.011354212, -0.045416847, 0.0016685071, 0.012525095, 0.02976048, -0.02063429, -0.010765426, 0.0049712313, 0.0030359302, -0.0100829685, 0.019537006, 0.02205273, 0.03789644, -0.034925744, 0.01647264, -0.0054061306, 0.0065067597, -0.03286499, 0.0011365921, 0.018024895, -0.03861904, -0.024555072, -0.035621583, -0.013983679, 0.003418976, 0.0056035076, -0.013414965, 0.014773188, 0.008028907, 0.008724745, 0.017543161, -0.033908747, -0.021062499, -0.0023099834, -0.0141308755, -0.016954374, -0.025625594, 0.024648743, -0.018640446, 0.001002777, -0.016178247, 6.8831147E-4, -0.019095415, -0.014572466, -0.016700126, -0.0064632697, -0.0050180666, 0.015535934, 0.013006829, -0.014411887, 0.0019503552, -0.027619438, 0.032704413, 0.017235385, -0.008597621, -0.025291055, -0.0249699, -0.0073665217, 0.013481872, 0.04445338, -0.02408672, -0.02807441, -0.02328383, 0.0051451907, -0.021664666, 0.011815874, 0.02116955, -0.0070654377, -0.011648606, 0.043570198, -0.02224007, -0.008156031, -0.01576342, 0.020580763, -9.751776E-4, -0.008048979, -0.033748172, -0.042392626, 0.008336681, 0.011641915, -0.03230297, 0.01656631, -0.019496862, 0.0015146198, 0.013167406, -0.011575007, -0.0030459664, 0.028636433, -0.0032533798, 0.008102505, -0.009601234, -0.027177848, -0.009587852, 0.0079820715, -0.0026194307, 0.0043991716, -0.020232845, 0.0040947422, 6.2600384E-4, -0.011501409, -0.017021282, -0.021758337, -0.0060618245, 0.012458187, 0.025424872, 0.04482806, 0.004134887, -0.01532183, -0.020567382, -0.02877025, 0.036103316, -0.040064245, 0.024742413, 0.011795802, -0.012678982, -0.029305508, -0.0042854287, -0.17042692, 0.013428346, -0.00336545, -0.022360506, 0.00735314, 0.00509501, 0.019456716, -0.0032316349, 0.008129268, -0.025893224, 0.036130078, 0.010404125, -0.03559482, 0.0022648207, 0.010618229, 0.018105185, -0.010885859, 0.040545978, 0.021410417, -0.018131947, 0.027512386, -0.010243546, -0.014826714, -0.019269375, 0.02648201, 0.012919849, 0.026361577, 0.0022397304, -0.0067978078, -0.012792724, -0.035139848, -0.004151614, 0.029466087, 0.0016300353, -0.003907401, 0.0011374285, -0.01825238, -0.0237388, -0.013629069, -0.009447346, 0.027164467, 0.0089455405, 0.012658909, 0.0075940075, 0.017302293, 0.0056168893, 0.03072395, -0.011113345, 0.022280216, -0.0121504115, -0.014585847, -0.04464072, 0.012317681, 0.0018617028, -0.007607389, 0.016057814, 0.0040077628, 0.0010880841, -4.712801E-4, -0.005941391, -0.024862848, -0.009420584, 0.018145328, 0.0010337217, -0.009079355, -0.016365588, -0.02745886, 0.0021477325, -0.035621583, 0.020005358, -0.018573537, 0.012264155, 0.013435037, -0.0014385125, 0.010464341, -0.018185474, -0.031419788, 0.0052288254, -0.013782957, 0.006924932, -0.021022353, 0.044266038, -0.006724209, 0.0038839835, 0.0025993586, -0.022681661, 0.0026027039, -0.0033403598, 0.003613008, -0.0134618, 0.0049110143, -0.022775332, -0.038645804, 0.0011600098, 0.014117494, 0.012672291, -0.0029606593, 0.014518939, 0.014184401, 0.0038404937, -0.0031045105, -0.016633218, -0.0072594695, 0.021852007, 0.03907401, 0.009714977, -0.0012712436, 0.015629604, 0.020393422, -0.0094808005, -0.018586919, 0.008028907, 0.009527636, 0.020045504, -0.014692899, 0.006225748, -0.026067182, -0.019991977, -0.0014661117, 0.027325045, 0.045630954, 0.0011516463, 0.0017730502, -0.012919849, -0.0058577564, -0.0019386464, -0.0947411, -0.005854411, 0.0025291056, 0.062732525, -0.028716723, 0.038511988, -0.0061789127, 0.029144932, -0.04046569, 0.029573139, 0.009052592, -0.037842914, 0.025317818, -0.0036196988, 0.011186943, -0.010932694, -0.020085648, -0.0026729568, -0.018024895, 0.019162323, 0.027405335, -0.0053258413, 0.006285965, -0.020353278, -0.011367594, 0.01656631, -0.021477325, 0.016218392, 0.008216248, 0.009500872, -0.012464877, -0.03128597, 0.01098622, -0.029814007, -0.016526166, -0.030563371, -0.015723275, -0.027432097, 0.0012729162, -0.049190436, 0.014090731, 0.022641517, -0.0060752057, -0.0100495145, -0.013782957, -0.009995989, -0.03859228, 0.020754723, -0.020794868, -0.026789784, -0.02674964, -0.0057507046, -0.03447077, -0.01886793, 0.015709894, 0.014318217, 0.03736118, 0.028315278, -0.005262279, -0.030563371, 0.0071591083, -0.0020122447, -0.013782957, 0.028208226, 0.008697982, 0.013756193, -0.0060618245, -0.0029104787, 0.020420186, -0.0121504115, -0.012090195, 0.027378572, -0.030001348, -0.007915163, -0.012612074, 0.012103576, -0.02054062, -0.022306979, 0.023431025, -0.024300823, 0.0037066785, -0.029305508, 0.013702667, -0.009467419, 0.0045831674, 0.010163258, 0.0104108155, 0.011153489, -0.012906468, -0.025451634, -0.0074200477, 0.015522553, 0.0053994395, 0.009173025, -0.010571394, 0.006697446, 0.01372943, -0.010062897, -2.6846657E-4, 8.217084E-4, -0.009494182, 0.014264691, -0.07258131, 0.023497934, -0.027833542, -0.0077010593, -0.006613812, -0.0113742845, 0.001134083, -0.01035729, -0.0076742964, 0.021089261, -0.015375356, 0.021985823, -2.7181194E-4, 0.0043623727, -4.6458934E-4, 0.023042962, 0.019724347, -0.010905932, 0.004021144, 0.009206479, -5.6160527E-4, 0.01009635, 0.01921585, -0.011715513, -0.0057774675, 0.0230162, 0.0017496325, 0.014425268, -0.025545305, -0.0104108155, 0.027432097, -0.008115887, 0.001131574, 0.005155227, -0.006393017, -0.029653428, 0.004867525, -0.00571056, 0.008878632, 0.008905396, -0.0070520565, -0.021022353, 0.004549714, -0.009260005, -0.011026365, 0.012351135, -0.008570857, 0.003756859, 0.0100495145, 0.010939385, 0.025465015, 0.015348593, -0.008483878, -3.6966425E-4, 0.015415501, -0.011554935, 0.042927887, 0.008336681, -4.244448E-4, -0.023042962, 0.020299751, 0.005914628, 0.032570597, -0.013033591, -0.0040311804, 0.0064164344, 0.008604311, -0.00956109, -0.001231099, -0.025117096, -0.007908473, -0.0062625473, 0.015000674, 0.029733717, 0.013040283, 0.013274459, 0.0071858712, 0.002467216, -0.009949153, 0.008524022, 0.029198457, -0.010143185, -0.036718868, 0.028877301, -0.0065201414, 0.018640446, 0.0040780157, 0.015469027, 0.012123649, 0.0046734926, -0.016245155, 0.013301222, 0.024675507, -0.0024287442, 0.017222004, 0.0148534775, -0.03128597, -0.0025291056, 0.0038940196, 0.024394494, -0.0017964678, 7.840729E-4, -0.0047705085, -0.006456579, -0.026348196, -0.004064634, -0.014719662, -0.013890008, 0.009601234, 0.0153352115, 0.029867532, 0.009534326, -0.019550387, 0.006155495, -0.041402396, 0.009627997, 0.005118428, -0.010932694, -0.017516397, 0.033935513, 0.022106256, 0.008122577, 0.026722878, -0.006871406, 0.044560432, 0.011267232, 0.0132343145, -0.030483082, -0.0010730299, 0.002117624, -0.0048407614, -0.007901782, -0.01036398, 0.016258536, -0.010136494, 5.1978807E-4, -0.0014067313, 0.032035336, -0.017195242, 0.06963738, -0.0017646868, -0.00296735, 0.012765962, -0.014773188, 0.018961601, 0.025157241, 0.018734116, -0.015014055, 0.004522951, -0.0071323453, -0.018265763, 0.014237927, -0.03621037, 0.011748967, -0.0018014859, 0.02745886, 0.010899241, 3.2533798E-4, -0.017583305, -0.0029606593, -0.0032701069, 0.025545305, -0.005369331, -0.019189086, -0.013930153, 0.013809719, -0.005151882, 0.003418976, -0.030563371, 0.002360164, -0.022454176, 2.592668E-4, 0.009407202, 0.024153627, 0.0027499006, -0.0135956155, 0.0019654094, 0.017610068, -0.0018951565, -0.03117892, -0.005473038, -0.029359035, -0.011769039, 0.029171694, -0.019349664, -0.0059213187, -0.043008175, -0.0201927 ], + "id" : "69e1b135-6c58-46a0-93db-d82fe51ee734", + "metadata" : { + "source" : "movies.csv" + } + }, + "74e12dc0-4680-40ed-bdf9-ca54c30c4c67" : { + "text" : "Jackson-Ben Mendelsohn-Jude Law-Annette Bening-Djimon Hounsou-Lee Pace-Lashana Lynch-Gemma Chan-Clark Gregg-Rune Temte-Algenis Perez Soto-Mckenna Grace-Akira Akbar-Matthew Maher-Chuku Modu-Vik Sahay-Colin Ford-Kenneth Mitchell-Stephen A. Chang-Pete Ploszek-Matthew 'Spider' Kimmel-Stephen 'Cajun' Del Bagno-London Fuller-Azari Akbar-Mark Daugherty-Diana Toshiko-Barry Curtis-Emily Ozrey-Abigaille Ozrey-Marilyn Brett-Stan Lee-Robert Kazinsky-Nelson Franklin-Patrick Brennan-Patrick Gallagher-Ana Ayora-Lyonetta Flowers-Rufus Flowers-Sharon Blynn-Auden L. Ophuls-Harriet L. Ophuls-Matthew Bellows-Richard Zeringue-Duane Henry-Chris Evans-Scarlett Johansson-Don Cheadle-Mark Ruffalo-Kelly Sue DeConnick-Vinny O'Brien-Joey Courteau-Anthony Molinari,superhero-based on comic-alien invasion-super power-female hero-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-woman director-hero's journey-1990s-alien technology,/AtsgWhDnHTq68L0lLsUrCnM7TjG.jpg,/w2PMyoyLU22YvrGK3smVM9fW1jj.jpg,901944-299534-363088-429617-299536-284053-284054-1771-271110-76338-99861-315635-10138-100402-10195-102899-283995-1726-287947-284052-68721\r\n38356,Transformers: Dark of the Moon,Action-Science Fiction-Adventure,en,The Autobots continue to work for NEST now no longer in secret. But after discovering a strange artifact during a mission in Chernobyl it becomes apparent to Optimus Prime that the United States government has been less than forthright with them.,13.866,Paramount-di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions,6/28/11,195000000,1123800000,154,Released,The invasion we always feared. An enemy we never expected.,6.19,7907,Shia LaBeouf-Josh Duhamel-John Turturro-Tyrese Gibson-Rosie Huntington-Whiteley-Frances McDormand-John Malkovich-Patrick Dempsey-Kevin Dunn-Julie White-Ken Jeong-Alan Tudyk-Glenn Morshower-Lester Speight-Buzz Aldrin-Bill O'Reilly-Ravil Isyanov-Dustin Dennard-Markiss McFadden-Nick Bickle-Ajay James-Brett Lynch-Chris A. Robinson-Scott C. Roe-James D. Weston II-Brian Call-Aaron Garrido-Mikal Vega-Kenny Sheard-Josh Kelly-Keiko Agena-LaMonica Garrett-Yasen Peyankov-Brett Stimely-John H. Tobin-Drew Pillsbury-Patrick Pankhurst-Larry Clarke-Tom Virtue-Thomas Crawford-Kevin Sizemore-Alan Pietruszewski-Michael Daniel Cassady-Peter Murnik-Don Jeanes-Cory Tucker-Lindsey Ginter-David St.", + "embedding" : [ 0.013949114, -0.021510571, -0.013969587, -0.03491373, -0.01999555, 0.03728863, 0.016091982, -0.019804465, -0.025769008, -0.033548847, 0.027447816, 0.02879905, 0.029317707, -0.0019569022, 0.018876344, 0.009902232, 0.021933684, -0.0126797715, 0.0020200282, -0.011444552, -0.00585194, -7.067539E-4, -0.0140446555, 0.015150212, 0.00602255, 7.937653E-4, 0.02469075, -0.016992806, -0.011239819, -0.0084486315, 0.016405905, -0.007916327, -0.003171649, -0.0364424, -0.013485053, 0.0051285513, 0.010038721, -0.026287664, 0.038598917, -0.006428603, 0.016433202, 0.007779838, -0.0072475336, -0.019790817, -0.008011868, 0.0031801795, 0.0077661895, -0.009970477, -0.023216676, 0.03147422, 0.020036496, 0.03196558, -0.0188081, -0.013464579, -0.018043766, 0.0027707142, -0.009656554, -0.006278466, -0.006896076, 0.0032160077, 0.011144277, -0.0049340553, -0.034176692, -0.0029720347, -0.018726207, -0.019900007, 0.0035828203, -0.021387732, -0.007172465, 0.0015150211, 0.03655159, 0.016542394, 0.00934263, -0.012038276, 0.009499592, -0.03046421, -0.026546992, -0.014863586, -0.020405015, 0.006292115, 0.009615608, 8.2276907E-4, -0.008332617, 0.0067459387, 0.003139233, 0.002830428, -0.014058304, -0.0013060233, -0.015614272, 0.0019466657, -0.0052616275, 0.028935539, 0.0013682961, -3.305578E-4, 0.009103776, 0.026792672, -0.011512795, 0.03139233, -0.0147407465, -0.042502485, 0.0024482606, -0.0019040131, -0.01834404, -0.013901343, -0.009581485, -0.0034719235, 0.01110333, -0.0015568207, 0.025850901, 0.012236184, 0.017252132, -0.005449299, 1.4651175E-4, -0.044604406, -0.012420444, -0.020022847, 0.0025267412, -0.034149393, -0.011028262, -0.018862696, 0.034722645, 0.028826348, -0.0026086343, -0.035050217, 0.044740893, 0.039417848, 0.0026888214, -0.0024602031, -0.014290335, -0.0035896446, 0.023121133, -0.0054561235, 0.021455975, 0.0122907795, -0.018357689, 0.04490468, -0.025891848, -0.0030778132, -0.028880943, -0.016364958, 0.035841852, 0.04056435, -0.0317472, -0.0023015356, -0.026587939, -0.003448038, 0.019954603, 5.566167E-4, 0.00934263, 0.009451821, 0.002390253, 0.028717156, 0.011048735, 0.0061624506, 0.0049340553, -0.021920035, -6.444811E-4, 0.0010432831, -0.0026393442, -0.006510496, 0.003756843, -0.026301313, 0.0060737333, -0.017593354, 0.004671315, 0.024363177, 0.012952749, -0.025796305, -0.02081448, 0.0063808323, -1.754089E-4, 0.03715214, -0.019122023, 0.019954603, -0.014890883, -0.0027945999, 0.00458601, -0.011772124, -0.04809851, -0.0025591573, 0.015696164, 0.003596469, 0.03234775, 0.032047473, -0.011710704, 0.022384096, 0.026874565, -0.01116475, 0.007479564, -0.011826719, 0.0022571767, 0.021305839, 7.924857E-4, -0.007629701, -0.62457085, -0.021319486, 0.013000519, -3.983755E-4, 0.018125659, 0.020950967, 0.0018750093, -0.009390402, -0.027297677, -0.012277131, -0.032238558, 0.021101106, 0.02398101, -0.015300348, -0.006135153, -0.022670722, 4.457199E-4, -0.04547793, 0.01797552, 0.018507825, -0.030627996, 0.014781693, 0.014276685, -0.014877235, -0.008980936, 0.0028423707, 0.004408575, -0.0011490616, 0.021947334, 0.007807136, -0.02915392, 0.008721608, -0.0064934352, 0.0036851866, 0.037124842, 0.016501447, -0.0064456644, 0.049872857, 0.015245753, 0.030764483, -0.01775714, -0.0033269045, 0.006981381, -0.009131073, -0.023489652, 0.022302203, 0.0080869375, 0.0010415771, -0.014085602, -0.0054936577, 0.007957273, 0.01868526, 0.0034941027, -0.00670158, -0.002407314, -0.010141088, 0.009847637, -0.02657429, 0.028416883, 0.0049852384, -0.022001928, 0.027775388, -4.6406052E-4, 0.0017282843, 0.008619241, 0.016515095, -0.0021582227, -0.0012573993, -0.011683406, -0.03455886, 0.005889474, 0.008789852, -0.021783547, 0.0033934426, 0.020364068, 0.0036578889, 0.025700765, -0.0045723612, 0.002147986, 0.03199288, -0.001511609, -0.009492768, 0.011983681, 0.014099251, 0.032238558, -0.0041867816, -0.041410577, 0.00758193, -0.005841703, -0.007124694, 0.01774349, 0.021756249, -0.004603071, -4.747237E-4, -0.014495067, -0.013962762, -0.0091447225, 0.021783547, 0.014904533, -0.06666093, -0.016010089, -0.01317113, 0.05104666, -0.0044597583, 0.0030863436, 0.012379497, -0.022479638, -0.018330391, 0.020705288, -0.012270306, -0.019354053, -0.0023015356, -0.022042874, -0.012024627, -0.0021855203, -0.025127513, 0.0022196425, 0.0108167045, -0.011935909, -0.0010833766, -0.0028986721, -0.0037022475, 0.0035521104, -0.020050144, 0.023844521, 0.027829982, 0.004777094, -0.009950004, 0.014836288, 0.027543357, -0.012625176, -0.0026069283, 0.012536459, -0.02879905, 0.022670722, 0.005445887, 0.007254358, -0.0090901265, 0.0115946885, -0.018166605, -0.01093272, -0.014303983, -0.010059195, -0.0041867816, -0.0050159483, -0.00833944, -0.04446792, -0.0025079742, -0.005903123, -0.022766264, -0.006879015, 0.033330467, -0.0043403306, 0.020350419, -5.7154516E-4, 6.274201E-4, -0.021578815, -0.016542394, 0.0056881537, -0.023653438, 0.014972776, 0.02833499, -0.008121059, -0.029017432, 0.022247607, 0.007848082, -0.006524145, 0.011710704, -0.015068319, -0.010352644, 0.013430458, -0.02198828, 0.0026222833, 0.0051285513, -0.019886358, 0.008974112, -0.019517839, 0.02434953, -0.0023203027, 0.005872413, 0.007970922, -0.016856316, -0.020718938, 4.4955863E-4, 0.017238483, 0.023817224, 0.01811201, -0.016023736, -6.918255E-4, 0.0018238261, -0.030900972, -0.009956828, 0.0058928863, 0.0014672502, 0.0020097916, 0.014194793, 0.004149247, -0.010680216, -0.017347675, 3.179753E-4, 0.029290408, 0.011567391, 0.009185669, -0.009881759, 0.013874045, -0.035841852, 0.008550998, -0.026369557, 0.0028901417, -0.017293079, 0.024977375, -0.00523433, -0.0098408125, -0.0029805652, 0.018753504, 0.025264, -0.005855352, 0.0053435205, -0.013894518, 0.0023117722, 0.008598768, -0.0019961428, 0.027475113, 0.017238483, -0.023680735, 0.0199819, 0.019572435, -0.022001928, 0.0035009272, -0.014727097, -0.016883614, 0.006800534, -0.0071178693, 0.009076478, -0.0119290855, -0.007486388, 0.014495067, -0.019190269, 0.039199464, -0.016897263, 8.903735E-5, 0.017907277, 0.010072843, 0.0069029005, 0.01399006, -2.9622245E-4, 0.018207552, 0.0068278317, -0.0036340035, 0.04244789, -0.0037158965, 0.025141161, -0.0028560197, -0.004111713, 0.013061939, -0.014385876, -0.0012394852, 0.01809836, 0.024840888, 0.016842667, 0.020241229, -0.023093836, 0.019340405, 4.990357E-4, 0.010066018, 0.0034702173, -0.013566946, 0.0025711001, -0.0027724204, -0.029208515, -0.02033677, -0.009294859, 0.0023185965, -0.002731474, -0.0025113863, -0.022779912, -0.0011072621, 0.007820785, 0.02314843, 0.027065648, 0.012140642, -0.02245234, 0.009561012, 0.019708924, -0.019586084, -0.02433588, -0.010257103, -0.008148357, -0.025018321, -0.008489578, -0.009752096, 0.041465174, -0.0073430752, 0.016214821, -0.019149322, -0.010277576, 0.013512351, -0.02222031, 0.0112602925, 0.008953638, 0.0073771975, 0.011970032, -0.0011362658, -0.008626066, 0.009062829, -0.0070632743, -0.020323122, -0.011942734, -0.008612418, -0.024308583, -0.007261182, -0.010741636, -0.035323195, 0.009854462, -0.0010629033, -0.015177509, -0.014972776, 0.004828277, -0.0013725613, -0.0044017504, -0.014754395, -0.04561442, -0.014959128, 0.007882205, 0.08287575, 0.03682457, 0.011615162, 0.007575106, -0.020978266, 0.0075068614, -0.0013725613, -0.013464579, -0.0071451673, -0.028990135, 0.019122023, -0.009178844, 0.014099251, 0.0061317408, 0.013369038, -0.0048214523, -0.005254803, -9.963652E-4, -0.004702025, -0.009547363, -0.01800282, -0.020391366, 0.015832653, 0.0423387, 0.012004154, -0.0033934426, 0.013198427, -0.0076024034, 0.0115946885, 0.0060259625, 0.0069882055, 0.0035316371, 0.012536459, 0.013089237, -1.3862102E-4, -0.008912692, 0.0341221, 0.019504191, 0.03046421, -0.010250278, 0.0027758325, 0.022534233, 0.009349455, -0.0057871076, 0.020445962, -0.021920035, -0.0036817743, 0.0317199, 0.033685334, -0.029290408, 0.006261405, -4.849603E-4, -0.004770269, -0.007513686, 0.017948223, -7.430087E-4, -0.008946814, -0.0054083522, -0.0095337145, 0.008100586, 0.0050193607, -0.036606185, 0.012734367, -0.023080187, -0.008298494, -0.018207552, 0.0039615757, -0.013007344, -0.010045545, -0.002943031, 0.005657444, -0.007868555, -0.0023458942, 0.0022076997, 0.019695275, -0.0071383426, 0.028662562, -0.0066435724, 0.012536459, 0.01786633, -0.03630591, -0.009390402, 0.026001038, -0.014481418, 0.0024653214, 0.0016566279, -0.0108440025, 0.012536459, -0.013020992, 0.017716194, -0.01093272, -0.0059986645, -0.024172094, 0.003985461, 0.02645145, 0.017839033, 0.004118537, 0.006684519, 0.0037534307, 0.0105642015, -0.012447741, -0.025796305, -0.006797122, -0.014317632, -0.00992953, -0.0054424745, -0.014617907, 2.2669868E-4, -0.01656969, -0.030000148, -0.039472442, -0.032129366, -0.007575106, -0.0038626215, 0.01879445, 0.0073294267, 0.020991914, 0.008994585, -0.02080083, 0.014426823, -0.0018954825, -0.028498776, 0.022001928, 0.024977375, -0.0056199096, 0.037479714, -0.0060942066, -0.02093732, -0.0022691195, 0.027447816, -0.015136562, 0.020568801, -0.006800534, -8.7779097E-4, -0.007575106, -7.681737E-4, -0.0029635043, 0.0043335063, -0.010168385, 0.010079668, -0.035896447, -0.0064456644, 0.008298494, 0.008967287, 8.6968695E-4, -0.024595208, -0.0021428678, -0.0064456644, -2.8236036E-4, 0.020869074, -0.013566946, 0.0147680435, -0.01785268, -0.0011789185, -0.01434493, -0.038844597, -0.015477783, -0.003709072, 0.030191232, 0.01110333, 0.024404123, -0.018234849, 0.026819969, 0.019804465, 0.023653438, 0.015614272, -0.016910912, -0.0068551293, -0.047224984, -0.006182924, 0.0016131222, 0.038817298, 0.00152867, 0.0062887026, 6.159039E-4, 0.019640679, -0.00611468, 0.013894518, 0.008537348, -0.032975595, -0.03147422, 0.023298569, -0.032402344, -0.011656108, -0.019654328, -0.0028662563, 0.022738965, 0.0074727396, -0.007868555, -0.014863586, 0.025536979, -0.0056676804, 0.015027372, -0.020541502, 0.016965507, -0.009888584, -0.007322602, -0.010837178, -0.009950004, -0.008250724, -0.01158104, 0.0188081, 0.0012326607, -0.020323122, 0.0017692308, 0.034531564, -0.019722572, -0.022588829, 0.010925896, -0.007820785, -0.018262146, -0.02422669, -0.01539589, -0.037752688, -0.013860396, -0.010707514, -0.00289526, 0.012536459, -0.014358578, -0.030900972, 0.024308583, 0.004633781, 0.0305734, 0.010557377, 0.03466805, 0.03668808, 0.018139306, -0.022247607, 0.012413619, -0.011567391, 0.002328833, 0.02010474, 0.026274014, -0.02398101, -0.005258215, 0.01158104, 0.004343743, -0.040509753, -0.032648023, 0.026642533, 0.030518804, 0.017088346, -0.016378608, -0.0073976708, -0.029126622, -0.012898153, 4.1884874E-4, 0.0073499, 0.008366738, -0.02116935, -0.021510571, 0.0015064906, 0.0031904161, 0.0084213335, 0.013239373, -0.031938285, 0.01774349, -0.013498702, 0.009253913, 0.0015244047, -0.02728403, 0.039663527, -0.009158371, 0.03079178, 0.0017811735, 0.0018477116, 0.008550998, -0.00893999, 0.003562347, 0.030027445, -0.0154641345, 0.0341221, -0.011567391, -9.5712487E-4, 0.035432387, 0.018166605, -0.0031750612, -0.0034548624, -0.02317573, 6.440546E-4, 0.019572435, -7.664676E-4, -1.6346617E-4, 0.016665233, -0.017497811, -0.0176343, 0.03253883, -0.0133212665, 0.006210222, -0.030191232, 0.012086047, 0.0021923447, -0.0023203027, -0.015122914, -0.0024021957, -0.010734812, -0.0025557452, 8.957051E-4, -0.014440471, 0.016119279, -0.005903123, -0.013143832, -0.033330467, -0.031665307, 0.0059508937, -0.017566055, 0.02316208, -0.011553742, 0.002062681, 0.01797552, -0.01692456, -0.018889993, -0.005531192, -0.022752615, -0.005483421, 0.0055891997, -7.1187224E-4, -0.0021599287, -0.006329649, 0.021142052, -0.010823529, -0.0036885988, -0.0023220088, -0.0030146872, 0.03068259, -0.018262146, 0.027898228, 0.0044529336, -0.020759884, 0.006015726, 0.013792152, 0.02433588, 0.013478229, 0.0051149023, -0.030873673, -0.0034941027, -0.009492768, 0.042284105, 0.0027741266, 0.0137648545, 0.022070173, 0.016747126, 0.046269566, 0.025373193, -0.006090794, -0.030846376, -0.0016028855, -0.004442697, -0.022479638, -0.0154914325, 0.0032944884, 0.019395, 0.01916297, -0.0054220012, -0.033084787, -0.0029532677, -0.030546103, -0.03488643, -0.0036340035, 0.021947334, 0.030409614, 0.002194051, 0.0098408125, 0.029781766, 0.021797195, 0.020323122, -0.0101752095, -0.016747126, 0.017320376, 0.009431348, 0.033903718, 0.018767154, -0.03103746, -0.003417328, 0.009028707, 0.012611527, 0.0096975, 0.014140197, -0.008639715, -0.0062852902, -0.01375803, 0.004442697, -0.022820858, -0.015273051, 0.029126622, -0.020500556, -0.010584675, 0.0046986127, 0.009881759, -0.004394926, 0.013334916, 0.021565165, -0.013505526, 8.5347897E-4, -1.7700839E-5, -0.02317573, 0.001724872, -0.044276834, 0.024950078, 0.009874935, -0.0038455604, 0.025441436, 0.01999555, 0.0060498477, 3.619075E-4, -0.018289445, 0.019886358, -0.018030116, 0.0068517174, 0.009540538, 0.03234775, -0.021142052, 0.005988428, -0.040018395, -0.0036715376, 0.004930643, 0.013498702, 0.0024533789, 0.040291373, 0.0027690083, -0.050964765, 0.008714784, -0.014945479, 0.007090572, -0.020950967, 0.0044461093, -0.01669253, -0.017893627, 0.0013230843, -9.7247976E-4, -0.029699873, -0.030928269, -0.006217046, -0.010250278, -0.012748016, 0.008694311, 0.1927216, -0.014290335, -0.0025420962, 0.037534308, -0.0022042876, -0.0010492546, 0.030000148, 0.024595208, 0.002876493, 0.012659298, -0.002519917, 0.0028781989, -0.0036169423, 9.2812104E-4, 0.022465989, -0.023899117, -0.024158444, -0.016351309, -0.022657072, -0.017525109, -5.7282473E-4, -0.0027758325, -0.0032620726, -0.02844418, 0.006292115, 0.0063023516, -7.1827014E-4, 0.025455086, 0.008844447, 0.010025072, -0.010884949, -0.004783918, 0.0154641345, 0.00390698, -0.00881715, -0.0058485274, -0.011021437, 0.010386767, 0.014440471, 0.009383577, -0.005694978, -0.0012923745, 0.0017777613, -0.0025438024, 0.004081003, 0.021715302, -0.028635263, 0.003318374, -0.0050364216, 0.0137648545, -0.048153102, -0.0072475336, 0.017129293, 0.02434953, -0.0045962464, 0.0028440768, 0.009997775, 0.009909057, 0.005903123, -0.0027212373, 0.0050841924, 0.039199464, -0.029918255, 0.017702544, 0.011369483, 0.012079222, -0.020527855, -0.0023680737, 0.016788073, -0.019395, -0.015177509, -0.03466805, 0.001561939, 0.0066572214, -0.009881759, -0.015054669, -0.0039411024, 0.0108713005, 0.012256658, 0.025850901, -0.020787181, -0.0102025075, 0.018180253, -0.015941843, -0.018303093, -0.008571471, 0.01786633, -0.024622506, -0.009369928, -0.016446851, -0.0057291, -0.033248574, -0.007206587, -0.0070769233, -0.008789852, -0.009267562, 0.03701565, 0.0033729693, -0.015095616, -3.994418E-4, -0.05091017, 0.01422209, 0.010673393, 0.0032825458, -0.030273125, -0.013423633, -0.0073157777, 0.009458645, 0.015846303, -0.004944292, -0.010270751, -0.018507825, 0.0018408871, -0.0051797344, 0.0024021957, 0.025564276, -0.006885839, -0.003756843, 0.03464075, -0.021592464, 4.71738E-4, -0.028007418, 0.006616275, -0.002618871, 0.0019296046, -0.02714754, -0.030054744, 0.013676137, -0.0039342777, -0.027884578, 0.009451821, -0.026410503, 0.020186633, -0.0017709369, 0.0044188118, -0.006698168, 0.013096061, 7.502596E-4, 0.005596024, -1.3168997E-4, -0.012195238, -0.0030999926, 0.024021957, 0.00940405, 0.007186114, -0.02668348, 0.014399525, -0.004002522, -0.02208382, -0.037916474, -0.018234849, 8.8888063E-4, 0.013246198, -0.0033234924, 0.031146651, -0.00999095, -0.016719827, -0.041574363, -0.0024431422, 0.034995623, -0.037998367, 0.02314843, 0.019736221, -0.005855352, -0.021906387, -0.014877235, -0.17426838, 0.0164605, 0.007261182, -0.038626216, 0.00699503, 0.018712558, 0.0085237, 0.0047361474, -0.0036817743, -0.011956383, 0.030191232, 0.0048351013, -0.04689741, 0.0015346414, 0.0063569467, 0.02314843, -0.009096951, 0.041437875, 0.03488643, -0.0039684, 0.04056435, -0.01798917, -0.010045545, -0.0032143015, 0.013177954, 0.005838291, 0.03152882, 0.009062829, 0.00705645, -0.003773904, -0.03021853, -0.024977375, 0.018862696, 0.0034036792, -0.011007789, 0.007957273, 0.0120451, -0.0053571695, -0.00898776, -0.0069199614, 0.043021142, 0.005319635, 0.015791707, 0.016242119, 0.032484237, 0.018985536, 0.03707025, -0.025455086, 0.014454121, -0.009520065, -6.052407E-4, -0.029481493, 0.030655293, -0.008673837, 0.011758475, 0.021319486, 0.005043246, 0.0039103925, 0.009274386, 0.0064388397, -0.008489578, -0.0067425263, 0.0076911207, -0.007124694, -0.01357377, -0.012980046, -0.017607002, 0.004456346, -0.036114827, 0.009717973, -0.017607002, 0.022902751, 0.018562421, 0.005183147, 0.013928641, -0.025373193, -0.035650767, 0.006817595, -0.013457756, 0.015723463, -0.016501447, 0.04023678, -0.010912247, 0.020364068, -0.0036920109, -0.015477783, 0.021851791, -0.008114235, -0.0063944813, -6.4149546E-4, 0.003415622, -0.015354943, -0.026533343, 0.0033849122, -3.0901824E-4, 0.008380387, -0.013539649, 0.00781396, 0.015382241, -0.006602626, 0.006520733, -0.013676137, -0.017429568, 0.026301313, 0.006397893, 0.0076774717, 0.007895853, 0.019531488, 0.011212521, 0.0024943254, -0.016364958, 4.9434387E-4, 0.017702544, 0.0158736, -0.020773534, 0.0076706475, -0.016515095, -0.021824494, 0.006101031, 0.020500556, 0.065350644, 0.0012437504, 0.0063262368, -0.01868526, 0.0020080854, -0.028498776, -0.098380834, -0.012543283, 0.020650694, 0.037698094, -0.030382317, 0.03464075, -0.007984571, 0.0133212665, -0.025318597, 0.047006603, -0.0030709887, -0.03783458, 0.019940954, 0.005841703, 0.0045791855, -0.009076478, -0.009554188, -0.0017862918, -0.015081967, 0.0317199, -0.005752986, 0.00667087, 0.0025966917, -0.010216156, -0.019545138, 0.021851791, -0.023953712, 0.010557377, 0.012611527, 0.00416972, 0.010850827, -0.020950967, 0.016979156, -0.03974542, -0.022602478, -0.015682517, -0.019272162, -0.02116935, 5.5277796E-4, -0.034804538, -1.7455585E-4, 0.0014928418, -0.0040400564, -0.027857281, -0.016242119, 4.9605E-4, -0.023967361, 0.031310435, 0.007895853, -0.020759884, -0.011792597, -0.021442326, -0.038244046, 7.16564E-5, 0.02751606, 0.026942808, 0.027775388, 0.008264372, -0.023203027, -0.029699873, -0.02433588, 0.0010671685, -0.024758995, 0.007042801, -0.0029703286, 0.0063023516, -0.0108167045, -0.007650174, 0.018466879, -0.024663452, -0.011267116, 0.015341295, -0.026888212, -0.01904013, -0.021619761, -0.008100586, -0.021101106, -0.014031007, 0.02327127, -0.03032772, 8.752318E-4, -0.014877235, 0.021565165, -0.0211557, 0.01680172, 0.011738001, 0.0022076997, -0.012304428, -0.00892634, -0.04280276, -0.01005237, 0.01999555, 0.0028014241, 0.014467769, -0.007404495, 0.011792597, 0.008619241, -0.012904977, 0.0024158445, 0.028362287, -0.0036817743, -0.009772569, -0.07572376, 0.03444967, -0.02986366, -0.0031358209, -0.017729841, -0.016405905, -0.012700245, -0.013976411, 0.0010842297, 0.018180253, -0.0015917958, 0.013068764, -0.010400415, -0.00260181, -0.0044461093, 0.002958386, -0.002275944, 0.0076911207, 0.0019125436, 0.010850827, -0.02081448, 0.013293969, 0.01310971, 0.001416067, 0.0019193679, 0.02011839, -0.0012343669, -0.006397893, -0.03728863, -0.016324012, 0.040700838, -0.01045501, 0.0028014241, -0.0022213485, -0.01751146, -0.046214968, 0.0084213335, 0.013150657, 0.014426823, -0.004763445, -0.0019449595, -0.030819079, 0.0034582745, -0.008175654, -0.014454121, 0.0036817743, -0.015368593, 0.008660188, 0.013430458, 0.011840368, 0.024390476, 0.004162896, -0.0042550256, -0.018753504, 0.025455086, -0.0070223277, 0.05798027, 0.0047600325, -0.005285513, -0.01670618, 0.022602478, -0.008803501, 0.02879905, -0.033330467, 0.00458601, 0.0077661895, 0.009199318, -0.009881759, -0.0023151843, -0.03676997, -0.019586084, -0.015655218, 0.02280721, 0.03737052, 0.015546028, 0.009499592, 0.0017811735, -0.007984571, -0.0029089088, 0.017224835, 0.004862399, 0.011553742, -0.034367777, 0.023134783, -0.0063364734, 0.0105914995, -0.005633558, 0.012836733, 0.011881314, 0.013969587, 0.005439062, 0.017306728, 0.022889104, -0.0018681849, 0.0032415993, 0.017402269, -0.002748535, -4.96903E-4, 6.069468E-4, 0.032020178, -0.003105111, -0.013601068, -1.439526E-4, -0.016378608, -0.022793561, 0.01105556, -0.028935539, -0.017429568, 0.008550998, 0.02234315, 0.022425042, 0.02656064, -0.018999184, 0.014317632, -0.04629686, 0.015955493, -0.009963652, -0.008332617, -0.025182107, 0.03305749, 0.035814553, 0.013853571, 0.032020178, -0.0028833172, 0.06758905, -9.016764E-4, 0.02445872, -0.0317472, -0.009752096, 0.014959128, 1.176146E-4, -0.020145686, -0.016419554, 0.0043505672, -0.027720792, 0.0087284325, 0.008366738, 0.044113047, -0.023803575, 0.085223354, 0.006722053, -0.014303983, 0.020145686, -0.0129595725, 0.014877235, 0.015409539, 0.03043691, -0.0060566724, -0.0018306505, -0.0041390103, -0.00552778, 0.014836288, -0.03338506, 0.0012616646, -0.008489578, 0.012468214, 0.017033752, -0.016719827, -0.010066018, -0.005691566, -0.0067902976, 0.020432312, 0.014358578, -0.008209777, -0.008946814, 0.014181144, -0.0032501298, -1.05098725E-5, -0.030655293, -0.0024192566, -0.0340948, -0.020950967, 0.003285958, 0.026233068, -0.0045621246, -0.00841451, 0.010891774, 0.016160225, 0.017538758, -0.014454121, -0.012734367, -0.01916297, -0.028253097, 0.033221275, -0.00835309, -0.026519693, -0.032375045, 0.0033269045 ], + "id" : "74e12dc0-4680-40ed-bdf9-ca54c30c4c67", + "metadata" : { + "source" : "movies.csv" + } + }, + "c78b1b47-852e-413a-94f7-05873d4f187b" : { + "text" : "586,2735,Tom Cruise-Hayley Atwell-Ving Rhames-Simon Pegg-Rebecca Ferguson-Vanessa Kirby-Esai Morales-Pom Klementieff-Henry Czerny-Shea Whigham-Greg Tarzan Davis-Frederick Schmidt-Mariela Garriga-Cary Elwes-Charles Parnell-Mark Gatiss-Indira Varma-Rob Delaney-Marcello Walton-Brian Law-Lincoln Conway-Alex James-Phelps-Marcin Doroci��ski-Ivan Ivashkin-Zahari Baharov-Adrian Bouchet-Sam Barrett-Louis Vaughan-Jean Kartal-Os Leanse-Luke Smith-Nikolaos Brahimllari-Matt Malecki-Damian Rozanek-Antonio Bustorff-Ioachim Ciobanu-Michael Kosterin-Sergej Lopouchanski-Robert Luckay-Jadran Malkovich-Mikhail Safronov-Christopher Sciueref-Andrea Scarduzio-Barnaby Kay-Gloria Obianyo-Alex Brock-Kaye Dinauto-Dana Blacklake-Arevinth V Sarma-Doroteya Toleva-Lucia Tong-Hersha Verity-Yennis Cheung-Laura Vortler-Faycal Attougui-Gaetano Bruno-Marco Sincini-Evita Ciri-Melissa Anna Bartolini-John Akanmu-Marco Lascari-Simon Rizzoni-Nicolas Wang-Lee Bridgman-Daniella Carraturo-Katie Collins-Joanna Dyce-Taylor Goodridge-Jessica Holland-Philip Hulford-Grace Jabbari-Ira Mandela Siobhan-Nicholas Tredrea-Megan Westpfel-Marc Wesley DeHaney-Rocky Taylor,race against time-mission-rome italy-chase-secret mission-secret agent-sequel-intelligence agency-rogue agent-based on tv series-secret government agency-northern norway,/NNxYkU70HPurnNCSiCjYAmacwm.jpg,/628Dep6AxEtDxjZoGP78TsOxYbK.jpg,939335-507089-968051-1050474-926393-299054-123-474412-744857-1008042-893723-1022469-678512-70829-1039690-69110-937249-951491-975902-997391\r\n293167,Kong: Skull Island,Action-Adventure-Fantasy,en,Explore the mysterious and dangerous home of the king of the apes as a team of explorers ventures deep inside the treacherous primordial island.,71.14,Legendary Pictures-Tencent Pictures,3/8/17,185000000,566652812,118,Released,All hail the king,6.508,9374,Tom Hiddleston-Samuel L. Jackson-John Goodman-Brie Larson-Jing Tian-Toby Kebbell-John Ortiz-Corey Hawkins-Jason Mitchell-Shea Whigham-Thomas Mann-Terry Notary-John C. Reilly-Marc Evan Jackson-Eugene Cordero-MIYAVI-Will Brittain-Richard Jenkins-Allyn Rachel-Robert Taylor-James M. Connor-Thomas Middleditch-Brady Novak-Peter Karinen-Brian Sacca-Joshua Funk-Daniel F. Malone-Glenn Kiwi Hall-Garreth Hadfield-Shannon Brimelow-Jon Quested-Korey Williams-Dat Phan-Cynthy Wu-Beth Kennedy-Bryan Chojnowski-Nick Robinson-Kevin Kent-Erin Moriarty,vietnam veteran-1970s-monster-expedition-island-giant spider-giant monster-creature-spin off-u.s.", + "embedding" : [ -0.0022252926, -0.013877734, -0.01847667, -0.040864464, -0.020310853, 0.04590846, -0.009238335, -0.005880167, -0.004362922, -0.037951354, 0.026164046, 0.024774924, 0.015078043, -0.01808556, -0.002864221, 0.008071743, 0.013243862, -0.01664249, 0.0064634634, -0.02466703, 0.003452575, -0.013837273, -0.01193566, 0.017087549, -0.0029232253, 0.014956663, 0.03217908, -0.0016108083, 0.005779017, -0.0028557922, 0.014268845, -0.014214899, -0.00448093, -0.027404815, -0.0068444605, -0.0029097386, 0.0043966384, -0.025476228, 0.030587658, 0.004356179, -0.0035200082, 0.013614744, -0.0058835386, -6.035263E-4, -0.027229488, 0.0087730475, 0.010748837, -0.019272381, -0.010519565, 0.021389782, 0.029508729, 0.03358169, -0.017438201, -0.013338269, -0.019461194, -0.0026872093, -0.017492147, 0.0051620044, -0.0149027165, 0.013513595, 0.015320802, -0.0073030056, -0.018112533, -0.004595566, -0.016318811, -0.017856287, -0.018287858, -0.024383811, -0.0034997782, -9.6092175E-4, 0.014484632, 0.0065780994, 0.023183502, 0.0051518893, 0.022886796, -0.021120049, -0.032556705, -0.011261329, -0.01305505, 0.005768902, 0.007619941, -0.015806321, -0.018517131, -4.4168686E-4, 0.022374306, 0.0060420064, -0.0026012321, 0.027809413, -0.02047269, 0.009339485, -1.8386058E-4, 0.026582131, -0.022563118, 0.0016285095, 0.0056272927, 0.016979657, -0.022145033, 0.026420292, -0.029050183, -0.039893426, -0.001183451, -0.0011396195, -9.735655E-5, -0.014619498, 0.008638181, 0.0057115844, 0.0021764035, -0.011153436, 0.016871763, 0.006854575, 0.006426375, -0.008233583, 0.009993587, -0.028672557, -0.013291066, -0.025651554, 0.019892767, -0.017424716, -0.0093597155, -0.014606011, 0.04310324, 0.0151319895, 9.255194E-4, -0.03867963, 0.038922388, 0.034741536, 0.009481095, -0.01896219, 0.0120165795, -0.007141166, 0.035307974, -0.010189142, 0.026393319, 0.0070872195, -0.011133206, 0.045449913, -0.030452792, 0.010506078, -0.012326772, -0.004008898, 0.035038244, 0.032637622, -0.025273928, -0.008152663, -0.031208042, 0.008186379, 0.028942289, -0.010216116, 0.013304552, 0.016399732, 0.017384255, 0.031208042, 0.015010609, 0.013769841, 0.025044655, -0.018517131, -0.0014894288, -0.0017397741, 0.0034964066, -0.034094177, -0.0076064547, -0.0029417693, -0.010600485, -0.007289519, -0.005060855, 0.022859823, 0.015428695, -0.0022320359, -0.011348992, -0.01197612, 0.0014869, 0.02690581, -0.034525752, 0.02063453, -0.01488923, -2.7774012E-4, -6.671663E-4, -0.009649677, -0.031720534, -0.019973686, 0.008550518, 0.010667917, 0.017519122, 0.0426447, -0.009555271, 0.015145476, 0.021659514, -0.032340918, 0.011443398, -0.026636077, 0.010762324, 0.026447264, -0.005768902, -0.0113017885, -0.6309581, -0.018018126, -0.0100745065, 0.003405372, 0.031504747, 0.013985626, 0.0100745065, -0.010344239, -0.03261065, -0.021726947, -0.028726503, 0.02470749, 0.01916449, -0.009541784, -0.012266082, -0.010452132, -8.1551913E-4, -0.022927256, 0.01983882, 0.0073704384, -0.04523413, 0.023453234, 0.01279206, 3.125103E-4, 0.0041707377, 0.0029518842, -9.4743515E-4, -0.025638068, 0.0045652213, 0.0031170954, -0.02515255, 0.021147022, 0.004362922, 0.0033362529, 0.040783543, 0.005269897, -0.018099045, 0.053137287, 0.020445717, 0.036305986, -0.031828426, 0.00295357, 0.0059644585, -0.009170903, -0.024356838, 0.020135526, -0.005057483, 0.003766139, -0.007815497, -0.0023500437, -0.0059138834, 0.0037526523, -0.01776188, 0.00494959, -0.013142712, -0.0050709695, 0.013439418, -0.034822457, 0.021241428, 0.008267299, -0.019434221, 0.018746404, -0.0013613058, 0.0056239213, -0.013102253, 0.030263979, 0.015266855, 0.0017616899, 0.007201856, -0.040621705, 0.013877734, 0.009427148, -0.009912667, -0.012421179, 0.0064938082, 0.008193122, 0.040729597, 2.1831469E-4, -0.012414435, 0.023776913, 0.0048855287, 0.0016124941, 0.012603248, 0.014943177, 0.023682507, -0.014767851, -0.047338042, 0.0042718872, 0.014484632, -0.00450116, 0.0073502087, 0.021511162, 0.0016124941, 0.011605238, -0.015374748, -0.015455668, -0.007869444, 0.0056003197, 0.029562674, -0.06263187, -0.010647688, -0.021996679, 0.027971253, -0.014471144, 0.0077143474, 0.012313285, -0.01413398, -0.019852307, 0.02411408, -0.01668295, -0.022306873, -0.0057014693, -0.0031221528, 0.0028203898, -0.009521555, -0.029427808, 0.016426705, -7.2406296E-4, -0.010243089, -0.01867897, 0.010209372, 0.0067264526, -1.7424609E-5, -0.011328762, 0.020216446, 0.017829314, -0.012488611, -0.0128594935, 0.0064803218, 0.02295423, 0.0040392433, -0.005694726, 0.022590091, -0.022603577, 0.022266412, -0.002260695, 0.020027632, -0.0058329636, 0.004268516, -0.016062567, -0.013500108, -0.01755958, -0.015536588, -0.014363252, 0.011348992, -0.011773821, -0.035901386, 0.010620714, 0.0053002425, -0.014538578, -0.001653797, 0.010047533, 0.013634974, 0.006267907, 0.008368448, 5.500013E-4, -0.028375851, -0.022360818, 0.01896219, -0.018193452, 3.2262527E-4, 0.027000217, 0.0017600041, -0.019542115, 0.016116513, 0.0070939627, -0.023277909, 0.009076497, -0.0015138732, -0.008523544, 0.016116513, -0.012738114, 0.0039852965, 0.012461638, -0.0045753364, 0.015995134, -0.008294272, 0.025449255, -0.0058936537, 0.006426375, -2.5793162E-4, -0.010553281, -0.0061195544, -0.012353745, 0.026123585, 0.016993143, 0.016035592, 0.0039178636, -0.010047533, 0.014080033, -0.018099045, -0.019744413, -0.0039954116, -0.0042449143, 0.0075457646, 0.015320802, 0.011382708, 0.004902387, -0.0033901995, -0.010519565, 0.032071184, 0.020418745, 0.024855843, -0.016817817, 0.010728607, -0.029158076, -0.0057385573, -0.016035592, 0.016372759, -0.009373202, 0.029050183, -0.020418745, -0.018665483, 0.012542558, -0.00223035, 0.017937206, -0.0040426147, -0.012926927, -0.014174439, 0.0035402381, 0.022617064, -0.02391178, 0.020594072, 0.01105903, -0.0391112, 0.014295818, 0.01087696, -0.011328762, 0.003621158, -0.012906697, -0.0066961073, 0.0031626127, 0.0014152523, 0.011618724, 4.4779797E-5, -0.0023905037, 0.023170015, -0.0024410784, 0.032233026, -0.008853967, -2.2316143E-4, 0.030938309, 0.02116051, -0.0019151003, 0.012191906, -0.0038335721, 0.014565551, 0.012185163, -0.008422395, 0.044883475, 0.0013621488, 0.025179522, 0.0011724931, 0.0056610093, 0.011969376, -0.013257349, -0.008995577, 0.017586553, 0.018692458, 0.031585667, 0.018328318, -0.02826796, 0.025975233, 0.003150812, 0.012488611, 0.0015998505, -0.025017682, 0.00696584, -0.0036717327, -0.028726503, -0.012205392, -0.014322792, 0.014066546, 0.0026787801, -0.008354962, 4.7708923E-4, 0.00792339, -0.0014472831, 0.0016411532, 0.022225952, -4.4463706E-4, -0.042294044, 0.0075390213, 0.038463846, -0.015172449, -0.026393319, -0.012353745, -0.006773656, -0.0329613, -0.017303335, -0.0061094393, 0.029832406, -0.021403268, 0.0033210805, -0.007437872, 0.0028288187, 0.020216446, -0.0059543434, 0.011295046, 0.019865794, -0.01195589, 0.017977666, -0.0063420837, -0.007154653, 0.027647574, -0.022563118, -0.016453678, -0.010283548, -0.00324859, 0.014538578, 0.0104588745, -0.003177785, -0.037196103, -0.0068512037, -0.007869444, 0.0028018455, -0.019285869, 0.003924607, 0.008139176, -0.033338927, -0.01004079, -0.024923276, -0.021147022, -0.006095953, 0.0890117, 0.026919296, 0.011295046, 0.005741929, -0.0074108983, -0.009993587, -0.010034046, 9.963241E-4, -0.006483693, -0.021362808, 0.02794428, -0.016399732, 0.018665483, 0.010229602, 0.01625138, -0.005526143, -0.016237892, -0.0027951023, -0.01077581, -0.009083239, -0.0276206, -0.0276206, 0.023669021, 0.04642095, 0.014943177, -0.0034205443, 0.02869953, 0.0068444605, 0.012293056, 0.01085673, -0.008746074, 4.4758726E-4, 0.008112202, 0.015860267, 0.008523544, -0.0010595426, 0.021093076, 0.0031879002, 0.020931236, -0.003297479, -0.01808556, 0.02195622, 0.009339485, -0.011726617, 0.023048636, -0.023453234, -0.020931236, 0.018503645, 0.03552376, -0.034876402, 0.016197432, 0.008334732, -0.018908244, -0.02698673, 0.012846007, 0.0014936433, -0.010404929, -0.00277993, -0.01971744, 0.0019926482, 0.0047034593, -0.033150114, -0.0020162498, -0.008894427, -0.008240325, -0.030183058, -0.020499665, -0.01472739, -0.017249389, -0.0107892975, -0.0019016137, -0.010344239, 0.003853802, 0.008590978, 0.017653987, -3.0471335E-4, 0.019663494, -0.009575501, 0.011524318, -0.0058869105, -0.031315934, -0.021335835, 0.0035469814, -0.015401722, -0.0017010001, 0.0013865932, -0.017235903, 0.024734464, 0.0041201627, 0.008928143, 7.2532735E-4, 0.006817487, -0.014781337, -0.008806764, 0.039542776, 0.01085673, 0.023291396, 0.012825777, 0.008098716, 0.0054452233, 0.0010435274, -0.015819807, 0.00647695, -0.015442181, -0.014241872, 0.0016984714, -0.009319255, 0.008597721, -0.02267101, -0.029832406, -0.01664249, -0.017937206, 0.010377956, 8.294272E-4, 0.025934773, -0.0015973217, 0.019299354, 0.013918193, -0.017694447, 0.00995987, 0.0017667474, -0.007235572, 0.01939376, 0.025718987, -0.022131545, 0.03401326, -0.013904707, -0.022198979, 0.002963685, 0.036305986, -0.0032233025, 0.0039482084, -0.013439418, -0.0011531061, -0.0059341136, -0.026716998, -0.002387132, 0.009750827, -0.003961695, 0.031235015, -0.027445275, 0.008361706, 0.007397412, 0.008705614, -0.02374994, -0.02778244, 0.015401722, 0.0039583235, 0.008118946, 0.014444171, -0.008476341, 0.009009063, -0.02362856, -0.007147909, -0.018099045, -0.023331854, -0.022091085, 0.022333845, 0.039273042, 0.006190359, 0.028321905, -0.0034694334, 0.03884147, 0.008705614, 0.009683394, 0.021780893, -0.017451689, -0.003826829, -0.030587658, -0.0025068258, 0.0118952, 0.030722523, 0.015172449, 0.009588988, 0.012421179, 0.019865794, -7.1563385E-4, 0.006564613, -8.7663037E-4, -0.020418745, -0.025718987, 0.014066546, -0.024194999, -0.004696716, -0.019569088, -0.0027158684, 0.033635635, 0.007822241, -0.006446605, -0.008685384, 0.026366346, -0.012347002, 0.009116956, -0.032745518, 0.021241428, -0.029670566, 0.004373037, -0.013877734, -0.020648018, -0.007957106, -0.013945167, 0.027701521, 4.4590142E-4, -0.010930907, -0.017640501, 0.03201724, -0.014174439, -0.009811517, 0.03317709, -0.014565551, -0.016318811, -0.023372315, -0.015064556, -0.035496786, -0.017573068, -0.0021578595, -0.0012795432, -0.0012298113, -0.027890334, -0.03932699, 0.027350869, 0.015293829, 0.038733575, 0.022455225, 0.04706831, 0.019811846, 0.02051315, -0.024653545, 0.016723411, -0.008166149, -0.010411671, 0.01187497, 0.029131101, -0.015752373, -0.0062443055, 0.009568758, -0.0027478992, -0.03484943, -0.029643593, 0.021565108, 0.019231923, 0.01680433, -0.025098603, -0.0025793163, -0.040432893, 0.013904707, -0.010350982, 0.0022067484, 0.010809527, -0.036791503, -0.022482198, 0.010357725, -4.539091E-4, 0.006271279, 0.017411228, -0.02674397, 0.019218436, -0.008220096, 0.005839707, -0.00696584, -0.015711915, 0.027998226, -0.029319914, 0.011901943, -0.0027242976, 0.0058633084, 0.006446605, -0.0035638397, 0.0056980974, 0.03153172, -0.011396195, 0.021268401, 0.004224684, 0.0010578568, 0.017653987, 0.013945167, -0.012765087, -0.015442181, -0.016858276, -0.005266526, 0.03325801, 0.0035065215, 0.0058430787, 0.007775037, -0.018746404, -0.024424272, 0.0066725058, -0.0018914987, -0.0012449838, -0.019097056, 0.014241872, 0.0031760994, 0.010324009, 0.00547894, -0.0011539491, -0.016413217, -0.010249833, 0.012785317, -0.007936876, -3.6245296E-4, -0.012650451, -0.015118503, -0.04126906, -0.037735566, -0.0038672886, -0.012980873, 0.0085168015, -0.019285869, -0.013007847, -0.013581028, 0.0057183276, -0.0014262102, 9.019178E-5, -0.02650121, 0.0042516575, 0.00792339, -0.0072558024, -0.00900232, -0.005283384, 0.016669463, -0.0057554157, -0.00602852, -0.006790514, -0.0019218435, 0.02666305, -0.017060576, 0.02171346, -0.0048349537, -0.016440192, -0.0010949451, 0.023722967, 0.02171346, 0.014525091, -0.02116051, -0.037223075, -0.02295423, -0.009211362, 0.031720534, -4.7582487E-4, -0.0023163273, 0.024208486, 0.013682177, 0.04833605, 0.010843243, -9.7187964E-4, -0.024046646, 0.016143486, -0.007977337, -0.01808556, -0.003853802, 0.0064634634, 0.012899953, 0.01696617, -0.00993964, -0.023669021, -0.008995577, -0.032826435, -0.028591637, -0.0048585553, 0.009393432, 0.029805433, 0.01676387, 0.0046259114, 0.0058295922, 0.008550518, -0.0048349537, -0.014565551, -0.015091529, 0.020445717, 0.0070467596, 0.026797917, 0.020742424, -0.035146136, 0.0010494278, 0.022644037, 0.016750384, 4.204033E-4, 0.020014146, -0.009413661, 0.0015922643, -0.009110212, 0.003101923, 0.0032755632, -0.0024309636, 0.024532164, -0.031909347, -0.0057486724, 0.0052766404, 0.008752817, 0.011625468, 0.012266082, 0.010128452, -0.011409681, 0.00442024, -0.0034003144, -0.017451689, -1.366574E-4, -0.030668577, 0.029670566, 0.003600928, 0.0025810022, 0.03460667, 0.010357725, -0.0013545626, 0.015226396, -0.0057486724, 0.00686469, -5.276641E-4, 0.008307759, 0.006234191, 0.023372315, -0.023480209, 0.014080033, -0.04423612, 0.004676486, -0.0043696654, -0.005516028, -5.5843045E-4, 0.04242891, 0.007242316, -0.062200297, -0.005155261, -0.012670681, 0.02223944, -0.02116051, 0.010951136, -0.017950693, 0.004821467, 0.0024393927, 0.0074715884, -0.026514698, -0.02370948, 0.0031558694, 0.002532113, -0.015212909, 0.014848771, 0.17640501, -3.243111E-4, 0.018395752, 0.042536803, 0.01676387, -0.0015914213, 0.023210475, 0.030183058, -0.006733196, 0.009393432, 0.0052800123, 0.0038774037, -1.4561336E-4, 6.583157E-4, 0.012717884, -0.030560683, -0.032718543, -0.023399288, -0.007822241, -0.036332957, 0.0058936537, 0.003766139, -0.0034593183, -0.025004197, 0.0047034593, -0.015442181, 0.0023163273, 0.011483858, 0.014093519, 0.001652954, -0.0066725058, -0.015711915, -0.009865464, 0.010209372, -0.029967273, -0.0034424602, 0.0018426096, 0.009191132, 0.014997123, -0.005094571, -0.00794362, -0.006112811, -0.012070526, -0.0022320359, 0.002152802, 0.021767408, -0.013284322, 0.00869887, -0.010445388, 0.018813837, -0.05772274, 0.0061229263, 0.007397412, 0.03433694, -0.004261772, -0.0016057509, 0.013547312, 0.00452139, -0.007849214, 0.020283878, 0.0020600813, 0.028996237, -0.018948704, 0.020499665, 0.0010789298, 0.00902255, -0.045072287, -0.010472362, 0.012084013, -0.029805433, -0.019299354, -0.032718543, -0.004902387, 0.015873753, -7.7042327E-4, -0.011510831, 0.01808556, -0.011585007, 0.0020364798, 0.0047439192, -0.024235459, -0.021605568, 0.018827323, -0.01077581, -0.022981202, -0.015563562, 0.02012204, -0.008334732, -0.0021747176, -0.015657967, -0.0052462956, -0.017141497, -0.0049833064, -0.011591751, -0.016453678, 0.0104588745, 0.018072072, 0.007613198, -0.020526638, -0.002299469, -0.034714565, 0.031396855, 0.022131545, -0.008172893, -0.018598052, -0.012771831, 0.0063454555, 0.016318811, 0.023507182, -0.014579038, -0.019865794, -0.011928917, -0.0021224571, -0.01191543, 0.0025506574, 0.02515255, -0.0042449143, -0.008064999, 0.042267073, -0.011638954, 0.009622704, -0.027512707, 0.016736897, 0.014713904, -0.0057520443, -0.038409896, -0.036710583, 0.009164159, 0.009170903, -0.037384916, 0.01600862, -0.014444171, 0.013378728, -0.0077548074, 0.0033396247, -0.0062072175, 0.023210475, -0.0056610093, -0.002741156, 0.007970593, -5.47894E-4, -0.015738888, 0.011072516, 0.013082023, 0.0045449915, -0.02271147, 0.0012660566, -0.002552343, -0.023655534, -0.039704613, -0.025611093, -0.011146693, 0.014740877, 0.013189916, 0.038868442, -3.0450264E-4, -0.017977666, -0.050359044, -0.011126462, 0.03803227, -0.043211136, 0.02374994, 0.030506738, -0.016076053, -0.02869953, -0.01397214, -0.17154983, 0.024235459, 0.0052395524, -0.027445275, 0.009636191, 0.022617064, 0.03573955, 0.005603691, 0.008301016, -0.019204948, 0.03681848, -0.0050372533, -0.047985397, 0.0056003197, 0.011348992, 0.011025313, -0.008820251, 0.021807866, 0.03401326, -0.017667474, 0.039785534, -0.0032047585, -0.0071276794, 0.005273269, 0.021093076, -0.014282332, 0.02120097, 0.0012382404, 0.011382708, 0.0047607776, -0.03943488, -0.013358499, 0.03352774, 0.003853802, -0.018166479, 0.0077615506, -0.016183946, -0.012434665, -0.0044370983, -0.008847224, 0.050628778, 0.014012599, 0.018854296, 0.0069590965, 0.018894756, 0.018031612, 0.018773377, -0.017087549, 0.0113017885, -0.020621045, -0.023372315, -0.03509219, 0.017667474, -0.008820251, -4.627597E-4, 0.026406804, 0.026015693, 0.0026754085, -0.0020853688, -0.0037020775, -0.027081136, -0.0064027733, -0.010721864, -0.020162499, -0.004811352, -0.012502098, -0.011861484, -0.0052092075, -0.02977846, 0.017424716, -0.033635635, 0.016170459, 0.0034272876, 3.5107363E-4, 0.019016135, -0.01293367, -0.034471806, 0.005148518, -0.00399204, 0.021093076, -0.0074783317, 0.040028293, -0.00702653, 0.023736455, 0.0028305047, -0.017478662, 0.0063319686, -0.0067365672, -0.0072220857, -0.0016984714, 0.018018126, -0.027701521, -0.047095284, 0.001692571, -0.0069725835, 0.009730597, -0.008732587, 0.0092315925, 0.011800794, -0.011133206, 0.0064230035, -0.021376295, -0.019137517, 0.015792834, 0.02886137, 6.4482907E-4, 0.005957715, 0.021740433, 0.026137073, 0.0080582565, -0.017047089, 0.002407362, 0.028564664, 0.015536588, -0.014700417, 0.020580584, -0.030290952, -0.024208486, -0.0042718872, 0.014093519, 0.048767623, 4.4843016E-4, -0.0066320463, -0.0136754345, -0.0014219957, 0.009312512, -0.093866885, 0.0038335721, 0.009548528, 0.047877505, -0.03436391, 0.037330966, -0.008671897, 0.011827767, -0.020890776, 0.01768096, -0.005195721, -0.032556705, 0.017613528, -0.00800431, 0.0066792495, -0.0018409238, -0.023938753, 3.5676328E-4, -0.0023028406, 0.023439748, -0.004059473, -0.014430685, -4.8172526E-4, -0.01932633, -0.012252595, 0.029670566, -0.021484189, 0.019636521, 0.016790845, 0.0051518893, -0.005104686, -0.02450519, 0.019447709, -0.044721637, -0.027674546, -0.021389782, -0.0108162705, -0.009683394, 0.002387132, -0.04499137, -0.006810744, 0.011564778, 0.0021376295, -0.014147466, -0.013142712, -6.748579E-5, -0.027404815, 0.0149027165, -0.010162169, -0.021457214, -0.016062567, -0.020095065, -0.033473793, -0.010445388, 0.017991154, 0.022023654, 0.025300901, 0.0055430015, 2.318013E-4, -0.03136988, -0.019083569, -0.0035098933, -0.0235881, 0.031585667, 0.016993143, 0.018948704, 0.0049529616, -0.011625468, 0.01648065, -0.013311296, -0.029805433, 0.026487725, -0.03269157, -0.017357282, -0.020162499, 0.010593741, -0.025071628, -0.019407248, 0.030641604, -0.03627901, 0.011753591, -0.029535701, 0.015509615, -0.01772142, 0.022778904, 0.023277909, 0.022913769, 0.011544548, -0.008274042, -0.044047307, -0.006655648, 0.007734577, -0.009521555, -0.004764149, -0.0062915087, 0.012454895, 0.0054452233, -0.0035301233, -0.015630994, 0.00896186, -0.008247069, -0.0021376295, -0.06894361, 0.03668361, -0.028025199, -0.009272052, -0.012926927, -0.01472739, 5.879324E-4, -0.0049866783, -0.006352199, 0.016790845, -0.004851812, 0.01733031, -0.0030968655, 0.01413398, 0.002474795, 0.0072153425, 0.004089818, -0.011605238, 0.010823013, 0.017087549, -0.004285374, 0.01959606, 0.027431788, -0.004979935, 0.0035233798, 0.017141497, 0.006015033, 0.0053845337, -0.025516687, -0.010924163, 0.030992256, -0.024720978, -0.002299469, -0.0019134145, 6.4061454E-4, -0.02063453, -0.016426705, 0.007660401, 0.017195443, 0.0027074392, -0.0034694334, -0.018719431, -0.0022960973, 0.0055126566, -0.0128325205, 0.021983193, -0.00888094, 0.0105869975, 0.026123585, 0.020310853, 0.022751931, 0.012286312, 0.0013646776, -0.014592525, 0.021268401, -0.015671454, 0.05017023, 0.00989918, 0.0031036087, -0.026325885, 0.011086003, 0.0029889725, 0.027755467, -0.040810518, 0.006173501, 2.2695455E-4, 0.009548528, -0.015320802, -0.0072220857, -0.02594826, -0.017977666, -6.6969503E-4, 0.009636191, 0.029292941, 0.013264093, 0.017316822, 0.0035368665, 6.06898E-4, 6.545226E-4, 0.014862257, 0.010371212, -0.0141879255, -0.034876402, 0.011436655, 3.1735707E-4, 0.0137024075, 4.2841095E-4, 0.02132235, 0.008375192, -4.1007757E-4, 0.0011042171, 0.01077581, 0.022468712, -0.002543914, 0.027701521, 0.009683394, -0.01808556, -0.011618724, 0.011598495, 0.018139506, -0.019029623, -0.003120467, -0.013877734, -0.029400835, -0.021187482, -0.0047574057, -0.026716998, -0.0074783317, 0.008638181, 0.013479878, 0.028645584, 0.014835283, -0.014322792, 0.0022488942, -0.033743527, 0.007525535, -0.011740104, 0.003444146, -0.022306873, 0.044532824, 0.017991154, 0.009325999, 0.04393941, -0.013048306, 0.062200297, 0.0034087435, 0.017222416, -0.024963737, 9.7103673E-4, 0.002366902, 0.0018914987, -0.012846007, -0.02542228, 0.010216116, -0.013169685, -0.0017144867, 0.016386244, 0.031801455, -0.024518678, 0.073475115, 0.00798408, -0.0018240656, 0.012461638, -0.017667474, 0.010721864, 0.01780234, 0.028348878, -0.020027632, -0.01604908, -0.0017144867, -0.009494581, 0.013688921, -0.025718987, -0.002887823, -0.01279206, 0.013688921, 0.006938867, -0.004851812, -0.015266855, -0.014403712, -0.016777357, 0.019811846, 0.0052193226, -0.016655978, -0.009164159, 0.03220605, -0.006025148, -0.0015475898, -0.029400835, 0.009717111, -0.026487725, -0.01193566, 0.0035874413, 0.0070400164, 0.0013368614, -0.00393135, 0.0127583435, 0.02132235, 0.0073232353, -0.022684498, -0.0063252253, -0.027728494, -0.024356838, 0.016305326, -0.0035436098, -0.0053474456, -0.032556705, -0.0035267514 ], + "id" : "c78b1b47-852e-413a-94f7-05873d4f187b", + "metadata" : { + "source" : "movies.csv" + } + }, + "ec53640f-9f0f-4c7d-8b8f-f4e5383a0364" : { + "text" : "544,There's Something About Mary,Romance-Comedy,en,For Ted prom night went about as bad as it��s possible for any night to go. Thirteen years later he finally gets another chance with his old prom date only to run up against other suitors including the sleazy detective he hired to find her.,28.541,20th Century Fox,7/15/98,23000000,369884651,119,Released,Love Is In The Hair.,6.579,4398,Cameron Diaz-Ben Stiller-Matt Dillon-Lee Evans-Chris Elliott-Lin Shaye-Jeffrey Tambor-Markie Post-Keith David-W. Earl Brown-Sarah Silverman-Khandi Alexander-Marnie Alexenburg-Danny Murphy-Richard Tyson-Rob Moran-Jackie Flynn-Hillary Matthews-Willie Garson-David Shackelford-David Goryl-Lori Brener-Jeffrey P. Lerner-Cory Pendergast-Brett Favre-Warren Tashjian-Kelly Roarke-Herbie Flynn-Caryl Lippman West-Ken Rogerson-Brad Blank-Steve Sweeney-Cindy Oliver-Will Coogan-Steve Tyler-Maureen Griffin-Mariann Farrelly-Jonathan Richman-Tommy Larkins-Lenny Clarke-Daniel Greene-Michael Budge-James Gifford-Sean Gildea-Zen Gesner-Tracy Anne George-Jesse Farrelly-A.B. Cassidy-Zack Lee-Valerie Bruce-Kelly O'Brien-Mike Charpentier-Peter Grundy-Michael 'The Cannon' Gannon-Peter Conway-Ann Conway-Susan O'Day-Heather Rosbeck-Jack Shields-Fallon Shields-Bob Grundy-Nancy Farrelly-Bill Beauchene-Kathy Beauchene-Manny Barrows-Max Murphy-Sheila Mone-Barbara O'Connor-Tim Sheehan-Richie Balsbaugh-Jim Blake-Tim Robbie-Providence Wissel-Ruth Michelle Meyer-Billy Meyer-Brian McGlaughlin-Brian Mone-John Stroehman-Pete Anicelli-Duana Knight-Kelley Schneider-Meda Thomas-Jeanie Flynn-Kevin Civale-Tom Leasca-Mercy Lopez-Michael Cheney-Scott Rosenberg-George Bedard-Terry Mullany-Rick Coleman-Michael Burke-Kris Meyer-Emilio Diaz-Billy Smith-Ed Nelson-Brian Stuebe-Don Daley-Clem Franek-Julia Hissom-James 'Sporty' Ahern-Robin Gau-Paul Pelletier-Monique Pelletier-Jon Mone-Nicholas Greenbury-Andrew Greenbury-Phil Rosenberg-John-Eliot Jordan-John Adamonis-Kyle Adamonis-Neil Pomfret-Ruth Pomfret-Josh Miller-Richard Fitzpatrick-Deborah Smith Ford-James Gaiero-Paul Homza-Debbie Howard-Richard Jenkins-Don Julio-Rick Michaels-Cord Newman-Al Quinn-Jevon White-Harland Williams,surgeon-stalker-romantic comedy-dream girl-taboo-screwball comedy-frisbee-troubadour-intellectual disability,/g03pwohXHOI75InM3zraiaEGguO.jpg,/egJQ3nIon5fT8wyXcKRHzvmtZpD.jpg,8467-1597-8872-6957-8699-693-496-55721-12133-11381-9522-37136-137-9472-1824-854-9767-2675-3981-813-9390", + "embedding" : [ -0.0045296224, -0.04066126, -5.2916916E-4, -0.021423534, -0.017723463, 0.017512783, -0.0015356605, -0.0146554345, -0.029811235, -0.034709547, 0.015498155, 0.026295511, -0.0019866475, 0.005800287, -0.003844912, 0.019790763, 0.025439622, -0.005968172, 0.00799926, -0.036157973, 4.1827408E-4, -0.0081243515, -0.036078967, 0.007814915, 0.011172629, 0.009967802, 0.015300643, -0.015129465, -0.0040226732, -0.015484988, 0.020198954, -0.01764446, -0.021568375, -0.008730057, -0.037948754, -0.022411097, 0.0034070923, 0.0023586296, 0.039133828, -0.0072618797, -0.01066568, 0.006768098, -0.012410374, -0.00635003, -0.0023635675, -0.00736722, 0.036553, -0.026809042, -0.0064158677, 0.013602034, 0.013496694, 0.010731517, -0.01701242, -0.0074923113, -0.004325526, -0.0098163765, -0.01663056, 0.00422677, 0.012357704, 0.013035831, -0.0016969624, -0.026071662, -0.019882934, -0.003018651, -0.01948791, 0.014984623, -0.01938257, -0.015089963, -0.007716159, 0.024491562, -0.0064619537, 0.022555938, 0.00741989, 0.019659087, 0.018236997, -0.047429357, -0.052591022, -0.0081046, 0.0075713163, -0.0064125755, 0.031391334, 0.0014615932, -0.00945427, -0.006991946, 0.0018500347, 0.028441815, -0.010619594, 0.041582987, -0.015985353, 0.00950694, 0.017446946, 0.044690516, -0.005783827, 0.017236266, 0.012160192, 0.012068019, -0.006652883, 0.033287454, -0.0081046, -0.023767348, -0.013384771, -0.010580092, -0.0026795876, -0.011514984, -0.0010575154, -0.014352582, 6.118776E-4, -0.015300643, 0.019290397, -0.0012863008, 0.0048752693, -0.011060705, 0.025702972, -0.03157568, 0.0010221277, 0.0036408156, 0.013536196, 0.0066923853, -0.0051814136, -0.021897564, 0.013681039, 0.023662008, 0.0113635585, -0.028257469, 0.02576881, 0.019580083, 0.006768098, -0.012667141, 0.02006728, 0.007880753, 0.045743916, -0.0032243931, 0.00942135, 0.015537658, -0.0339985, 0.06373073, -0.045612242, 0.0022006196, -0.020528143, -0.021054843, 0.025268445, 0.056409597, -0.018513514, -0.016538387, 3.3597715E-4, -0.013134588, 0.023385491, -0.016406713, 0.013299181, -0.00866422, 0.01805265, 0.013825881, 2.7754635E-4, 0.012384039, 0.009539858, 0.01641988, -0.025439622, -0.010797355, -0.011304304, -0.013562531, -0.004463785, 0.010092894, 0.01636721, 0.00866422, 0.004585584, 0.02133136, 0.0047863885, -0.0077490774, 9.531011E-5, -0.013707374, 0.0014369042, 0.02994291, -0.038686134, 0.012193111, 0.002724028, 0.02001461, -0.0050661983, -0.014984623, -0.019264061, -0.027572758, 0.0060932636, 0.008604965, 0.025913652, 0.03779074, -0.021713218, 0.020686153, -0.0050563226, -0.035130907, 0.004351861, 0.003463054, 0.0020360257, 0.023095807, 0.0041477643, -0.001255028, -0.64299566, -0.01706509, -0.005484266, -0.017038753, 0.025531795, 0.006932692, 0.007821498, 0.003818577, -0.041266967, -0.02170005, -0.02011995, 0.03231306, 0.027836109, -0.002989024, -0.006847103, 0.0012336308, -8.0116047E-4, -0.022766618, -0.00884198, 0.0025939988, -0.0318917, 0.006853687, 0.028336475, -0.0044078226, 0.017130926, 0.0016121966, 0.0027339035, -0.026493022, 0.0013801192, -0.00549085, -0.0043189423, 0.008348199, 9.916779E-4, 7.658757E-5, 0.037975088, -0.008512793, -0.023635674, 0.03578928, 0.045954596, 0.014260409, -0.026967052, -0.021212853, 0.006432327, 0.0020854038, -0.018513514, 0.025571298, -0.014076064, 0.011100207, 0.00645537, 0.013509861, -0.0050135283, 0.014510592, 0.0075186463, -0.015195303, -0.0063401544, 0.01869786, 0.032128714, -0.01922456, -0.0018286374, -0.013746876, -0.008697138, 0.009013158, 0.0059286696, 0.009151417, -0.009164585, 0.013312349, -0.013891719, -8.53419E-4, 0.019988274, -0.015076795, -0.0044242823, 0.01694658, -0.0145237595, -0.006985362, 0.020659817, 0.029310869, 0.0350519, 0.016498886, -0.008756392, 0.0035519348, 0.012331369, -0.0080321785, 0.00987563, 0.023385491, 0.019356234, -0.03062762, -0.03262908, 0.01711776, 0.0010023764, -0.0021463037, 0.012732979, 0.018921707, -0.0146686025, 0.010066559, -0.013062166, -0.006853687, -0.012324786, 0.005415137, 0.026045328, -0.04927281, -0.005958297, 6.3080585E-4, 0.03631598, 0.013226761, 0.01789464, 0.0010739748, -9.3242404E-4, -0.0036210644, 0.017604956, -0.017934144, 0.013009496, -0.01736794, -0.0059089186, -0.015774673, -0.02550546, -0.013523029, 0.027414748, 0.010790772, 0.015563993, 9.834481E-4, 0.010316742, -0.007038032, -0.02033063, -0.016117027, -0.0045921677, 0.015037293, -0.008137519, 0.011989014, -0.0013175736, 0.0032474364, 0.011969264, 3.380346E-4, 0.012574969, -0.02217408, -0.002640085, 0.0015117943, 0.024096537, -0.015300643, 0.019830264, 0.0018467428, -0.010836857, -0.0054974337, -0.005378926, 0.005764076, -0.017394276, -0.010711767, -0.024478395, -0.024149207, -0.003089426, -0.007880753, -0.02206874, 0.003436719, -0.0023849646, -0.0031519718, -0.0062611494, -0.013101669, -0.038923148, -0.026861712, -0.009092163, -0.01615653, -0.0043814876, 0.020040944, -0.012232614, -0.011949512, 0.03410384, -0.01975126, -0.00752523, 0.0024409266, -0.015221638, -0.008835397, 0.014800278, -0.0044934116, 0.0042761476, 0.008973655, -0.016433047, 0.03381416, 0.004085219, 0.0071104537, 0.019158721, -0.0129502425, 0.014062897, 0.004078635, -0.023530334, 0.0018615562, 0.028652495, 0.0147212725, 0.021673715, -0.02096267, -0.020238457, -0.0025281613, -0.005510601, -0.017288936, 0.0010706829, 0.003097656, 0.0067812656, 0.024991928, 0.0056225252, 0.0020063987, -0.0030038373, 0.012634222, 0.046665642, 0.015722003, -0.0068141846, -0.005737741, -0.008855148, -0.023833187, 0.0047139674, -0.02952155, 0.014220907, -0.0051353276, 0.008242859, -0.019303564, -0.017499616, -0.014286744, 0.009849295, 0.021818558, -0.026216505, 0.021449868, -0.026927551, -0.0014846363, 0.003334671, 0.0113767255, 0.0412933, 0.0043090666, -0.008591798, 0.005846373, 0.025847815, -0.036263313, 0.0034334273, -0.005741033, -0.02164738, 0.0059089186, 0.01890854, 0.016591057, 0.006080096, -0.027678099, 0.026295511, -0.0038778307, 0.04397947, 0.0016747422, -0.00778858, 0.03210238, 0.012265532, -0.018184327, -0.025847815, -0.009283092, 0.009197503, 0.03463054, -0.0023273567, 0.028547155, -8.929215E-4, 0.015010958, -0.0019027047, 0.018882204, 0.0028145546, -0.0095266905, 0.0034762216, 0.017657626, 0.00884198, 0.02217408, -0.0060241343, -0.01066568, 0.0069656107, -0.011317472, 0.0075713163, -0.0023059596, -0.013588866, -0.007426474, 6.941745E-4, -0.027572758, -0.026242841, -0.02043597, -0.023885857, 0.010975117, -0.012588136, -0.009072412, -0.016235536, 0.014418419, -0.0056159417, 0.005951713, 0.0019027047, -0.034472533, 0.026743205, 0.03515724, -0.02587415, -0.01541915, -0.022450598, -0.002082112, -0.016169697, -0.0038482037, 0.0010155439, 0.018605687, -0.005046447, 0.01589318, -0.026730038, -0.0050332793, 0.02576881, -0.011383309, -0.00892757, 0.0156825, 0.026479855, 0.010724934, -0.01019165, -0.0130424155, 0.027414748, -0.019711757, 0.0050299875, 0.004078635, 0.011995599, -0.022042405, 0.007689824, 0.008624717, -0.04282073, 0.0044144066, -0.023201147, 0.016393546, -0.012035101, 7.254473E-4, -0.0011159462, -0.002347108, -0.013463776, -0.0329451, -0.026466688, -0.00919092, 0.08079582, 0.032655414, 0.011587406, -2.2631652E-4, -0.0014739378, -0.009691285, -0.017130926, -0.0172626, 0.006932692, 0.012173359, 0.031022646, -0.02011995, 0.020580813, 0.009256757, 0.02006728, 0.0012147025, -0.0022532896, -2.4097566E-5, 0.008361367, -0.0081111835, -0.0042662723, -0.027362078, -9.143187E-4, 0.03694802, 0.003413676, -0.015392815, 0.013641536, 0.0028869759, 0.0020903416, 0.0058924593, -0.025900485, 0.0023520458, -0.015498155, -0.0012912386, -0.009441102, 8.879837E-4, 0.026335012, -0.0023141892, 0.038080428, -0.005915502, 0.018355504, 0.012937075, 0.016920246, -0.02227942, 0.008499625, -0.01747328, -0.0011143002, 0.013588866, 0.045296222, -0.032576412, 0.024754912, 0.005704822, -0.011620324, -0.020923167, 0.021976568, -0.0039140414, -0.0041543483, -0.0042761476, -0.037237708, 0.005889167, 0.034182847, -0.05222233, 0.026453521, -0.013088501, -0.014365749, -0.005342716, -0.019316731, -0.005810162, -0.024768079, 2.1417772E-4, -0.0020096907, -0.01785514, -0.014879283, 0.015642997, 0.010152147, 0.010573507, 0.0339195, 0.0017397568, 0.012535466, 0.026690535, -0.027836109, -0.011119959, 0.0019701882, -0.020212123, -5.888344E-4, 0.002742133, 0.012258949, 0.0068405196, -0.02180539, 0.017552286, 0.009862462, 6.690739E-4, -0.017394276, -0.027098728, 0.027994119, 0.004957566, -0.0024376346, 0.008078265, 0.0095530255, -0.012792232, -0.0017183595, -0.0214367, -0.013575699, -0.025360618, -0.015326978, -0.0064817052, -0.006057053, -0.0040950943, -0.024610069, -0.023438161, -0.018987544, -0.012232614, 0.002319127, -0.001656637, 0.0077819964, 4.170396E-4, -0.0011850756, 0.049246475, -0.005905627, 0.01811849, 0.020317463, -4.6621202E-4, 0.011514984, 0.01584051, 0.0018549724, 0.019395737, -0.008065098, -0.026440352, -0.015722003, 0.024873419, 0.009046077, 0.011646659, -0.011719081, -0.02064665, -0.026177002, -0.03908116, 0.019040214, 0.014036562, -0.010994867, 0.004111554, -0.01917189, 0.015695667, -0.0029988997, -0.01066568, -3.1746036E-4, -0.024043867, 8.443663E-4, -0.019514244, 0.016196033, 0.056514937, 0.005352591, 6.2874844E-4, -0.021897564, -0.008888067, 0.0023438162, -0.016275037, -0.014076064, 0.005602774, 0.040318906, 0.010573507, 0.038422782, -0.013878551, 0.024399389, 0.0039140414, 0.018618854, 0.027414748, -0.01584051, -0.0058035785, -0.027362078, 0.023622507, 0.022727117, 0.016248703, 0.01826333, 0.018250164, -0.018934874, 0.0076700724, 0.020580813, 0.017130926, -0.0024326968, -0.009855879, -0.038475454, 0.0033692357, -0.013266263, 0.0043814876, -0.024346719, -0.01552449, 0.028099459, 0.006231522, -7.069305E-4, 0.0018533266, 0.029758565, -0.01838184, 0.005958297, -0.012627639, 0.010698599, -0.0131477555, -1.708947E-5, -0.023872688, -0.026335012, 0.0079531735, -0.0026302093, 0.0297849, -0.0096583655, -0.016130196, -0.014089232, 0.027177732, -0.02989024, -0.014800278, 0.012120689, -0.013450608, -0.00820994, -0.010316742, -0.012838319, -0.032602746, 0.00773591, 0.0038251607, -0.009414767, 0.0034202598, -0.02936354, -0.026203338, -0.006847103, -0.012785649, 0.03062762, 0.006679218, 0.053196725, 0.023635674, -6.1401215E-6, -0.02022529, 0.02962689, -0.014141902, 0.0011175921, 0.033656146, 0.024162374, -0.011989014, 0.009836127, 0.0013735355, -0.007907088, -0.021370864, -0.03599996, 0.021081178, 0.026335012, 0.00950694, -0.012515714, 0.0015002728, -0.039107494, 0.030390605, -0.003571686, -5.489204E-4, 0.0052176244, -0.0048193075, -0.006247982, 0.011719081, 0.009197503, -0.010119229, 0.0015241388, -0.03887048, 0.026901215, -0.020765157, 0.008196773, -0.020607147, -0.01695975, 0.0360263, -0.01557716, 0.0065508345, 0.007887336, 0.013983892, -0.0051814136, -7.172176E-4, -0.004183975, 0.031365, -0.009836127, 0.0031585556, -0.006369781, -0.01768396, -0.0028655785, 0.013681039, -0.02999558, -0.0068076006, -0.012153609, -0.0057805353, 0.025584465, 0.018829534, -0.012502547, 0.0097637065, -0.018618854, -1.5677563E-4, -0.0034268436, -9.488834E-4, -7.916963E-4, -0.045401562, 0.012331369, -0.01599852, 7.575431E-4, 0.009362097, 7.5589714E-4, 0.0041708075, 0.016235536, 0.0051452033, -0.014273577, 0.0056126495, -0.017341606, -0.023899024, -0.052591022, -0.01732844, -0.010395747, -0.012792232, 0.004536206, -0.01842134, -0.013187258, 0.0019109343, 0.006646299, -0.010040224, 0.011231883, -0.020027777, 0.0018105322, -9.488834E-4, -0.007972925, -0.01108704, 0.001173554, 0.020844163, -0.00427944, -0.0079531735, 0.019882934, -8.937445E-4, 0.033866826, -0.0028096167, -0.0048291828, 0.0038021174, -0.01711776, 0.011482066, -0.0057179895, -2.1273752E-4, 0.00256108, 0.0063599055, -0.008348199, -0.0040654675, -0.011653244, 0.032866094, 0.0017973647, -0.0012410375, 0.010455, 0.016867576, 0.0053986777, 0.023029968, 0.011751999, -0.011778334, -0.020080447, -0.00921067, -0.016196033, -0.01647255, -0.012713227, -0.0044144066, -0.006847103, -0.019422071, -0.026348181, 0.005201165, -0.045427896, -0.03402484, -0.006300652, 0.0039667115, 0.033076774, -0.0014113921, -0.007992676, -0.01050767, 0.005737741, 0.026953885, -0.032128714, 0.010566924, 0.027888779, 0.0079268385, 0.03802776, 0.028231135, -0.01805265, -0.017552286, -0.0026285634, 0.01864519, 0.0040226732, 0.03057495, 1.00762285E-4, 0.0073869713, -0.016643727, -0.021739554, 0.009441102, 0.007446225, 0.009961219, -0.038080428, -0.0047501777, 0.018026317, 0.027520088, -0.012686892, 0.01753912, 0.01842134, -0.0042827316, 0.007505479, -0.016340876, -0.01738111, -0.0019059966, -0.01879003, 0.008361367, -0.005369051, -0.0011077165, 0.024768079, 0.012660557, -0.012838319, -9.0608903E-4, -0.016564723, -0.011824421, 0.015379648, 0.011580822, 0.0015389523, 5.703176E-4, -0.008539128, 0.0095266905, -0.02017262, 0.008756392, -0.026150668, -0.03068029, 0.0023668592, 0.030179925, 0.012173359, -0.054302797, 0.0026746497, 0.0048884368, -0.008539128, 0.0011924823, -0.0031338665, -0.03420918, 0.0016360626, -0.009276508, 0.006794433, -0.002939646, -0.013022664, 0.0046810484, -0.0014796986, -0.017776133, 0.025979491, 0.18423975, 2.3547848E-6, 0.020607147, 0.054566145, -0.0012188173, -0.0060405936, 0.0057542003, 0.021502538, -0.0151558, 0.021305025, 0.0061130146, -2.837186E-4, -0.005178122, 8.332563E-4, 3.9914003E-4, -0.010185067, -0.013904886, -0.041372307, -0.0047633452, -0.048772443, -0.0096847005, 6.928371E-5, -0.014536927, -0.020554477, 0.010573507, 0.0017825512, 0.0012978223, 6.3574367E-4, 0.0013570761, 0.00256108, -0.018724194, -0.02101534, 0.012107522, -0.003765907, -0.01817116, 0.008223108, -0.025992658, 0.008460123, 0.018711027, -0.0014294974, 0.004990485, -0.010053392, -0.0027668222, -0.011014619, 0.011159462, 0.016090693, -0.011633492, -0.0021495954, 0.0036506911, -0.011264802, -0.028547155, -0.004032549, 0.01077102, 0.014378917, -0.01773663, -0.0039337925, 0.016775403, -0.010171899, -0.010375995, 0.005579731, 0.021976568, 0.013628369, -0.027546423, 0.006794433, -0.007814915, 0.029600555, -0.05048422, -0.011587406, 0.023503998, -0.023583004, -0.0114952335, -0.005826622, -0.0095530255, -0.0024491563, 0.0031025936, -0.0011036017, 0.0130029125, -0.00845354, 0.0039239167, 0.01900071, -0.055724885, -0.011738832, -0.0021726387, -0.032365732, -0.01922456, -0.040002886, 0.008940737, -0.0022022654, -0.015353313, -0.016814906, -0.01869786, -0.023003634, -0.010046807, 0.022266254, -0.00747256, 0.0080716815, 0.0156825, 0.0062841927, -0.0076766564, -0.0056225252, -0.026558861, 0.022727117, 0.032971434, 6.624902E-5, -4.1086736E-4, -0.023398658, 0.0031618476, 0.021094345, 0.047087003, -0.021726385, -0.001520024, -0.007959758, 0.0027388413, -3.6272366E-4, -0.0011439271, 0.020870497, 0.013852216, -0.01573517, 0.012160192, -0.014062897, -0.011995599, 0.007900503, -0.003973295, 0.0073474688, 0.0017578622, -0.01547182, -0.010264072, 0.00934893, -0.012522299, -0.023043137, 0.045322556, -0.023082638, 0.0016196033, 0.00998097, -0.0047040917, -0.0067022606, 0.026927551, -0.00799926, -0.010494502, 0.0010640991, -0.0027865735, -0.005655444, -0.004536206, 0.012147024, -0.0035848536, -0.034288187, -8.509501E-4, -0.007117037, -0.009434518, -0.013483526, -0.012041684, -0.021555208, 0.013009496, 0.014155069, 0.028626159, -3.7342226E-4, -0.038686134, -0.040529586, -0.015498155, 0.03934451, -0.031602014, 0.012107522, 0.032497406, 0.010395747, -0.0010352952, 0.0012410375, -0.1667533, 0.030759295, 0.004430866, -0.0074330573, 0.023754181, 0.012930491, 0.0145237595, 0.019448407, -0.0068076006, -0.01690708, 0.005141911, 0.0069656107, -0.03718504, 0.016406713, -0.0042563966, 0.026940718, -0.007097286, 0.024412557, 0.015274308, -0.008920985, 0.023438161, 0.0046086274, -0.010092894, -0.0056817792, 0.013371603, 0.01727577, 0.020528143, 0.021357695, -0.0064882888, -0.015906347, -0.042004347, -0.00384162, 0.013365019, 0.015603495, 0.007070951, 0.011119959, -0.023240648, 0.0016237182, 0.0066825096, -0.010586675, 0.023648841, 0.008815645, 0.02983757, 0.006794433, -0.0010534006, 0.026348181, 0.020528143, -0.0046711727, -0.00873664, -0.007920255, 1.8743123E-4, -0.028652495, 0.018289667, -0.009618863, 0.0067878496, 0.019461574, -0.014418419, 0.023240648, 0.010264072, -0.0074659763, -0.03231306, -0.0055237687, 0.013444024, -0.006429035, -0.019527413, -0.027651763, -0.008407453, 0.00926334, -0.031338666, 0.0010558694, -1.4587128E-4, -0.011040954, 0.015669333, 0.0028491192, 0.0010064912, -0.011060705, -0.03157568, 0.03747472, 0.0029692727, 0.0059352536, -0.0038613712, 0.04329476, 0.0052143326, 0.013957557, 0.014800278, -0.0066397153, 0.02967956, -0.013496694, 0.0156825, -0.009434518, 0.008723473, -0.02159471, -0.011719081, -0.010073142, 0.0032326228, 0.024228211, 0.0010575154, -0.0036144806, 0.0075779, -0.023780517, -0.0021298442, -0.026901215, -0.0075976513, 0.012917324, 0.026216505, 0.015168968, 0.007742494, -0.016828073, 0.013681039, -0.011969264, -0.02022529, -0.01056034, 0.029389875, 0.018408174, -0.015340145, 0.026993388, 0.00320135, -0.031970706, 0.013957557, 0.01790781, 0.029152859, -0.0021117388, 0.0014048084, -6.2586804E-4, -5.2999216E-4, 7.349115E-4, -0.09638615, 9.694577E-4, -0.0029561052, 0.044637848, -0.030074585, 0.049193803, -0.011653244, 0.025386952, -0.010066559, 0.024254547, 0.003041694, -0.0303116, -0.006959027, -0.022108244, 0.020738823, -0.007044616, -0.04092461, -0.005704822, -0.013667871, 0.026848545, -0.02566347, -0.010599842, -0.003601313, -0.01848718, 0.016169697, -0.007222377, -0.031022646, 0.025755642, 0.015274308, 0.018816367, -0.007117037, -0.019830264, 0.01003364, -0.031391334, -0.013345268, -0.011804669, -0.020830994, -0.01826333, -0.00468434, -0.035130907, -0.002694401, 0.024728578, 0.008493042, -0.012318202, 0.009796625, -0.014444754, -0.0402399, 0.042109687, -0.010915862, -0.013588866, -0.0035025568, -0.0024606779, -0.019198224, -0.01489245, 0.022358427, -0.0029791484, 0.03168102, 0.001733173, -0.015024125, -0.00852596, -0.02017262, 0.0066067963, -0.03068029, 0.021937065, 0.007907088, 7.764714E-4, 0.012548634, 0.006689093, 0.00778858, -0.02222675, -0.020975837, 0.035657607, -0.038291108, -0.006241398, -0.019395737, 0.014352582, -0.039160166, -0.018408174, 0.012449877, -0.033313792, -0.00910533, -0.016722733, 0.012601304, -0.009171168, 0.0062282304, 0.034604207, 0.012476212, 0.00240307, 0.004799556, -0.030759295, -0.007505479, 0.037422054, 0.0044144066, 0.0040654675, -0.017446946, 0.00773591, -0.0066067963, -0.011343807, 0.010961949, 0.0031322206, -0.012792232, 7.2956213E-4, -0.06104456, 0.011745416, -0.009342345, -0.0061722687, -0.013720541, 0.002615396, 0.008651052, 0.02059398, 0.0015850386, 0.018711027, -0.013233344, 0.0055896067, -0.0060965554, 0.01763129, -0.013536196, 0.016722733, -0.005369051, -0.0070577837, 0.0016097276, -0.0114162285, -0.0074659763, 0.0016179574, 0.02206874, 0.025281612, 0.013463776, 0.027599093, -0.005678487, 0.021305025, 0.0036309399, -0.006827352, 0.02112068, -0.023240648, 0.014392084, -8.962134E-4, -0.0051188683, -0.012759314, -0.009915132, 0.018184327, 0.01742061, -0.015722003, -0.014128734, -0.014918785, -0.008117768, -0.0074396413, -0.009059245, 0.012252364, -0.029916575, -0.009355513, 0.021528874, 0.0074923113, 0.03210238, 0.004108262, -0.00314868, -0.009941467, 0.010586675, -0.0024014239, 0.05169563, -0.005879292, -0.011258218, -0.011501817, 0.011422812, -0.0015982061, 0.015616663, -0.01790781, 0.009862462, -0.0074067223, 0.032918766, 0.019619584, -0.010955365, -0.018605687, -0.0013554302, -0.001971834, -0.0058562486, 0.028810505, 0.0071565397, 0.021634214, -0.010850025, 6.8964815E-4, 0.006511332, 0.0042300615, 0.038212102, -0.011370142, -0.031970706, 0.023266984, 0.00987563, 0.019619584, 0.0053756344, 0.005905627, 0.0019586666, 0.011396477, 0.0019652504, -0.0021430117, 0.01732844, -8.377826E-4, 0.023662008, 0.013865384, -0.011047537, -0.01911922, -0.012522299, 0.01811849, 0.0109817, 0.006458662, -0.024991928, -0.03370882, -0.024899755, 8.443663E-4, -0.017091423, -0.03052228, 0.013878551, 0.025492292, 0.03089097, -0.0028096167, -0.0145500945, 0.0030515697, -0.037448388, 0.0021281983, -0.01699925, -0.03252374, 0.006616672, 0.044585176, 0.0031651394, 0.0014031624, 0.019738093, -0.0025939988, 0.046507634, 0.01685441, 0.027862443, -0.03073296, -0.003092718, -0.008493042, 0.0066133803, 0.010461584, -0.011409644, 0.014273577, -0.0056389845, 3.557284E-4, 0.014128734, 0.03020626, -0.0047633452, 0.071051866, 0.016986083, -0.014102399, 0.008901235, -0.019527413, -0.0026828793, 0.013628369, 0.011205548, -0.0062776087, 0.0067285956, 0.025031429, 0.0011875444, 0.023306487, -0.03547326, 0.006873438, -0.005405261, -0.01684124, 0.01715726, 3.765084E-4, -0.02054131, -0.019580083, -0.016656896, 0.021515705, -0.0021528874, 0.0012945305, 7.8799296E-4, -9.966156E-4, -0.0061031394, -0.0025067641, -0.03141767, 0.008374535, -0.018184327, 0.0071565397, -0.0022351842, 0.024149207, 0.0036375236, -0.015511323, -0.001357899, 0.033182114, 0.011890259, 9.916779E-4, -0.0064685377, -0.043689787, -0.007762245, 0.0018121781, -0.00977029, 0.006768098, -0.032365732, -0.032997772 ], + "id" : "ec53640f-9f0f-4c7d-8b8f-f4e5383a0364", + "metadata" : { + "source" : "movies.csv" + } + }, + "11f97068-60f7-441a-81de-c4e2e01cc319" : { + "text" : "Smith-Jimmy Gonzales-David Clark-Michael Shikany-Robert Bryan Davis-Nazareth Dairian-Tony DeMil-Stefanie Kleine-Johnny Harvill-Angie Dillard-Wallace Langham-Franck Neel-Anton Yakovlev-Ellen Ho-Haley Craft-Stephanie Honor��-Steve Coulter-Mike Davies-Jonathan Waite-Lauren Sivan-Cornelius Peter-Kevin Fry-Katie Mary Garland-Al Sapienza-Chad Donella-Pete Thias-Cedric Camus-Karim Ben Haddou-Vincent Parisi-Scott Thrun-Laurent Desponds-Amanda Nima-Alex Disdier-Martin Vaughan Lewis-Abbey Ferrell-Ashante P.T. Stokes-C��dric Chevalme,revenge-murder-on the run-fugitive-framed-framed for murder-father daughter relationship,/vzvMXMypMq7ieDofKThsxjHj9hn.jpg,/Ivj0wsH0RU2IEGc8LdvCr97WL1.jpg,977897-82675-884361-30762-8681-852161-559672-74595-504047-643274-498580-303233-551649-17710-241554-168259-225574-8-254128-1034362\r\n2133,The Perfect Storm,Action-Adventure-Drama-Thriller,en,In October 1991 a confluence of weather conditions combined to form a killer storm in the North Atlantic. Caught in the storm was the sword-fishing boat Andrea Gail.,20.215,Baltimore Spring Creek Productions-Radiant Productions-Warner Bros. Pictures,6/29/00,120000000,325756637,130,Released,The storm is coming.,6.4,1920,George Clooney-Mark Wahlberg-Diane Lane-John C. Reilly-William Fichtner-John Hawkes-Allen Payne-Mary Elizabeth Mastrantonio-Dash Mihok-Josh Hopkins-Todd Kimsey-Bob Gunton-Karen Allen-Cherry Jones-Christopher McDonald-Michael Ironside-Rusty Schwimmer-Janet Wright-Chris Palermo-Wiley M. Pickett-Hayden Tank-Merle Kennedy-Jennifer Sommerfeld-Joseph D. Reitman-Sandy Ward-Melissa Samuels-Steven Barr-Billy Mayo-Marcio Rosario-Brad Martin,based on novel or book-u.s. air force-natural disaster-biography-based on true story-disaster-shark-tragic event-thunderstorm-new england-jamaican-meteorologist-rescue boat-marina-city hall-the flemish cap-male camaraderie-storm at sea-1990s-man vs nature,/aOYHJclz1yZdFT3hdMY8TeYU4fk.jpg,/cmOWlfDvBSMyLaeZ85M87GmkH8v.jpg,6415-664-361751-6623-9772-503-9619-10782-2103-11652-2655-11678-1844-9341-602-2024-8656-11775-9631-869-10357\r\n10545,The Hunchback of Notre Dame,Drama-Animation-Family,en,At the urging of his gargoyle pals Quasimodo leaves Notre Dame tower against the wishes of his guardian the evil Judge Claude Frollo. He ventures out to the Festival of Fools and finds his first true friend a Romani woman named Esmeralda who entrusts him with a secret. When the secret is revealed Quasi soon finds himself fighting to save the people and city he loves.,53.", + "embedding" : [ -0.008534583, -0.025989806, -0.010526906, -0.028705982, -0.0044465316, 0.038302217, 0.007652171, -0.0037226777, -0.01241582, -0.03744738, 0.010844022, 0.030388081, 0.026306923, 0.013718757, 0.01055448, 0.008858594, 0.017813703, -0.012967328, 0.008748293, -0.03493802, 0.005928709, 0.0049566766, -0.001963023, 0.008713824, -0.0017174298, -0.008534583, 0.030084752, -0.01746901, 0.007114451, -0.00433623, 0.012374457, 0.0045775147, 0.002380101, -0.008438069, -0.01220211, -0.0121193845, 0.009830627, -0.017372496, 0.008293299, 0.0035365438, 0.008307086, 0.0065319207, -0.00674563, -0.012739831, -0.0015450836, 0.014270265, 0.01406345, -0.018765053, -0.009706537, 0.028871434, 0.045609698, 0.022722121, -0.016903715, -0.024624825, -0.017634463, 0.006873166, -0.0016614173, -0.008376025, 0.010844022, 0.0037157838, 0.011581664, -0.013594667, -0.0075074, -0.010030548, -0.004384487, -0.010044336, -0.009472147, -0.0051772795, -0.017882641, -0.00978237, 0.031684123, 0.01220211, 0.0043672523, 0.006466429, 0.018351423, -0.029367791, -0.014201326, -0.0067146076, -0.004894632, -0.0127053615, 0.020502303, -0.0069421045, -0.005394436, -0.0019733638, 0.015566308, 4.7395204E-4, -0.015221615, 0.025934655, -0.03990159, -0.002443869, 0.020874571, 0.047512397, -0.015580095, 0.0046878164, 0.013960041, 0.025162544, -0.020323062, 0.022294704, -0.0056357207, -0.033173196, -0.0049084197, -0.018558238, 0.0020750482, -0.01175401, -0.013174143, -0.0041707777, 0.010713039, -0.01076819, 0.010333878, 0.012574378, 0.0096444925, -0.019288985, 0.00924465, -0.043569118, 0.004891185, -0.032814715, 0.029478092, -0.011457575, -0.010871598, -0.0352965, 0.018806417, 0.029119613, -0.006973127, -0.032704413, 0.039736137, 0.0030712092, -0.010547587, -0.023645898, -0.0057287873, 0.0062182504, 0.045223642, 0.020874571, 0.019482013, -0.009982292, -0.035186198, 0.044479106, -0.03151867, 0.0035158624, -0.028788708, -0.012891496, 0.01698644, 0.03546195, -0.019964583, -0.018572025, -0.019964583, 0.0043982747, 0.023590747, 0.0039915377, 0.024459371, -4.429297E-4, 0.025093606, 0.02501088, 0.009354951, 0.012140065, 0.016738262, 0.0033452397, -0.017014015, 0.009237756, -0.017400071, -0.015483581, 0.008279511, -0.0036951024, -5.3728925E-4, -0.013505047, 0.009582448, 0.014849348, 0.0058321953, -0.03237351, -0.014001405, -0.0069524455, -0.020061096, 0.015194041, -0.033118043, 0.020612605, 0.004298314, 0.027685693, 0.019937007, 0.010533799, -0.019661253, -0.014173751, 0.0028816282, -0.0072592217, 0.03499317, 0.043210637, -0.016228117, 0.020460939, 0.01513889, -0.018889142, 0.016614173, -0.0064423005, -0.004153543, 0.015042376, 0.014256477, 0.00804512, -0.6468084, -0.012029764, -0.010209789, -0.0064767697, 0.0063595744, 0.0044189566, 0.0049049724, 0.008520796, -0.020198973, 0.012305518, -0.027147973, 0.021177901, -0.0020836655, -0.007279903, -0.03422106, -0.01578691, 0.008479432, -0.0031487648, 0.010223576, -6.3595746E-4, -0.022570457, 0.016820988, 0.016228117, -0.0030384634, 0.01723462, 0.0040087723, -6.781823E-4, -0.040894303, 0.0076797465, -0.0010814724, -0.02895416, 0.025272846, 0.02094351, -0.0019268304, 0.040701278, -0.0033366224, -0.011547195, 0.05796347, 0.041252784, 0.026596464, -0.019151108, -0.0034245187, 0.015759336, 0.009058516, -0.013208612, 0.029946875, 0.022115463, -0.0051048943, -0.009699644, -0.004512023, -1.1191731E-4, -2.776928E-4, -0.01752416, -0.03033293, -0.014504655, -0.011829843, 0.015773123, -0.023314992, 0.012967328, -0.0023404614, -0.023535596, 0.007996864, 0.0049980395, 8.7077916E-4, 0.013539516, 0.02266697, -0.01220211, -1.4821773E-4, 0.0060321167, -0.020392, 0.0016614173, 0.013539516, -0.008844807, -0.0030160584, 0.0058528767, 0.020212762, 0.023053026, 0.0059907534, 0.004105286, 0.004212141, 0.0012908729, -0.021053812, 0.0011840183, 0.006204463, 0.02626556, -0.004284526, -0.01961989, 0.010513118, 0.011926357, -0.009520404, 0.0067594177, 0.011809161, -0.0043672523, -0.010127062, -0.0016769285, 1.3712294E-4, -0.012277943, 0.0130638415, 0.035765283, -0.054847453, -0.014890711, -0.015083739, 0.018944293, -0.017482799, 0.013470578, 0.0011133564, -0.0048153526, -0.018158395, 0.027837357, -0.0028816282, 0.011519619, -0.008431176, -0.023756199, -0.025631325, -0.014173751, -0.034358937, 0.017317345, 0.020323062, -0.0030453573, -0.01596615, -0.0079555, 0.0011073243, 5.1962375E-4, -0.013394746, 0.0028936926, 0.0369786, 0.0065491553, -0.0016691729, -0.003193575, 0.015593884, 0.023673473, -0.0055081844, 0.024087103, -0.025093606, 0.016297055, 9.2743794E-5, 0.01537328, -0.0016226394, 0.02309439, -0.004811906, -0.021329565, -0.0050049336, -0.015690397, 7.1566756E-4, -0.013601561, -0.018213546, -0.046078477, -0.011050838, -0.022584245, -0.01866854, -0.01549737, -0.0012693297, 0.00897579, 0.014697683, -0.016669324, 0.005201408, -0.0023232268, -0.034607116, 0.011147352, -0.02698252, 0.017689614, 0.01005123, -0.0051290225, -0.01062342, 0.024307707, -0.0024852322, -0.016655536, 0.015635246, -0.0027696034, -0.019771555, 0.027837357, -0.017634463, 0.0018441043, 0.018737478, -0.011333485, 0.04307276, -0.01872369, 0.013318914, 0.0034417536, 0.004842928, 0.010506224, -0.01967504, -0.028761132, -3.8104667E-5, 0.019730192, 0.009809945, 0.01609024, -0.01884778, -0.018654753, 0.016448721, -0.003007441, -0.01178848, 0.010092593, 0.0027299637, -0.0066215405, 0.019578528, -0.0041121803, 0.015469794, -3.0828424E-4, 0.013167249, 0.03832979, 0.021591531, 0.010754403, 0.011243866, 0.00688006, -0.035572253, 0.018778842, -0.0057632565, 0.0024938495, 0.0031573821, 0.013036266, -0.021563955, -0.029147187, -0.018820204, -0.0102304695, 0.012912177, 0.0019061489, -0.0039674095, -0.022225766, 0.0065353676, 0.010071912, -0.008410494, 0.024817852, 0.017400071, -0.024762701, -0.0035434377, 0.0039122584, -0.006886954, -0.0033383458, -5.38151E-4, -0.0037468062, -0.009161924, 0.0022853105, 0.007231646, 0.007948606, 0.0060976082, 0.009313588, -0.00308155, 0.047870878, -0.00978237, 0.0043672523, 0.009651387, 0.018434148, -0.006556049, 0.009713432, -0.013236187, 0.025576174, 0.02428013, -3.125929E-4, 0.037723135, -0.01734492, 0.024031954, 0.0057149995, 0.0065698368, 0.019164896, -0.015717972, 0.005146257, 0.006076927, 0.04026007, 0.015690397, -0.009148136, -0.0044499785, 0.010706145, 0.009547979, 0.012836345, -0.007100663, -0.010892279, 0.010395923, -0.01698644, -0.03295259, -0.02279106, -0.0151802525, 0.004208694, 0.014325416, -0.01693129, -0.014794197, 0.0058425358, 0.008575946, 0.013167249, 0.01968883, 0.007941713, -0.030636258, -2.9902064E-4, 0.023011664, -0.009513509, -0.009996079, -0.0015993727, -0.0046499004, -0.03176685, -0.009582448, -0.001963023, 0.025782991, -0.015773123, 0.013181036, 0.0017665485, -0.012608848, 0.004301761, -0.012581272, 0.004791224, 0.018227333, 0.0012408926, 0.0019423416, -0.0097961575, 0.0015252638, 0.016255694, -0.008120952, -0.0036882085, -0.0032969827, 0.0011779863, -0.0017355261, 0.002693771, -0.01103705, -0.03835737, 0.011512726, -0.020336851, -0.009175711, -0.019068383, -0.016614173, 0.022818636, -0.013463684, -0.013946254, -0.027134184, -0.032345932, -0.01549737, 0.082174666, 0.034441665, -0.0075832326, 0.0059838598, 0.008444963, 0.011312804, -0.026706766, -0.014242689, 0.0094928285, -0.011526513, 0.025576174, -0.016531447, 0.02183971, -7.4065774E-4, 0.0043638055, -0.0069765737, 0.0021026235, -0.003455541, -0.0018871909, -0.024376646, -0.026293134, -0.0039949846, 0.019716404, 0.02895416, 5.885622E-4, -0.021164112, 0.008968896, 1.7428509E-4, 0.0022749698, 0.0133464895, -0.020598818, 0.009775476, 0.0048636096, -2.8803357E-4, 0.01376012, 0.0048222463, 0.027092822, -0.005525419, 0.021936223, 0.0032108095, -0.0022232658, 0.002738581, 0.00912056, -0.0028574998, 0.015690397, -0.029698696, -0.00790035, 0.02782357, 0.029395366, -0.03405561, 0.01693129, 6.643946E-4, -0.008941321, -0.021301989, 8.027024E-4, 6.2001543E-4, 0.0065457085, 0.008093378, -0.0024128468, 0.02237743, -0.015262979, -0.023590747, 0.014408141, -0.0143116275, 0.0065732836, -0.02811311, -0.021481229, -0.004287973, -0.030112326, -0.015911, 4.019975E-4, -0.026375862, -0.025521023, 0.009113667, 0.0038329794, -0.0073626293, 0.017855065, -0.005035956, 0.012939752, 0.018930506, -0.03391773, -0.024266344, 0.019550951, -0.023177115, -0.008010651, -0.0022525648, -0.022391217, 0.022804849, 0.002309439, 0.017965367, -0.005704659, 0.0073626293, -0.020309275, -0.018351423, 0.031904727, 0.03237351, 0.023425294, 0.010416604, 0.011629921, -0.018627176, 0.02022655, -0.03918463, -0.011740223, -7.298861E-4, -0.017041592, -0.021619106, 4.9334095E-4, 0.014001405, -0.01327755, -0.01872369, 0.010168426, -0.024638612, 0.008541477, -1.5047977E-4, 0.0048636096, 0.0037916163, 0.031187767, 0.01609024, -0.01026494, 2.1155494E-4, -0.01621433, -0.0049635703, 0.01639357, 0.017662037, -0.016255694, 0.024969516, 0.0066732448, -0.038798574, 0.0029643546, 0.0140841305, -0.0020991766, 0.022928938, -0.015290554, -0.0028299245, -0.024431797, -0.036840722, 0.022211976, 0.007817623, -0.008389813, 0.012084915, -0.015897213, 0.0086242035, 0.011905675, 0.011857418, -0.011374849, -0.02900931, 0.00960313, -0.034248635, 0.0051634917, 0.022405004, -0.020929722, -0.0048601627, -0.006514686, 0.0059631784, -0.01890293, -0.025631325, -0.0039191525, -0.0037433594, 0.0141599635, 0.017262194, 0.035820432, -0.0053634136, 0.0439276, 0.0013882485, -0.01979913, 0.029422943, -0.016669324, -0.01478041, -0.03606861, 0.012236579, 0.028650831, 0.01603509, -2.1306297E-4, -0.010292514, 0.017855065, 0.0011874653, 0.031987455, -0.0046257717, 0.015952364, -0.037061326, -0.0066318815, 0.0045464924, -0.026417224, 0.0030953377, -0.020309275, -0.002142263, 0.032649264, -0.011354167, -0.00947904, 0.0010202895, 0.035351653, 0.00813474, -0.0098719895, -0.009906459, 0.03278714, -0.031132616, -0.0110990945, -0.024431797, -0.012402032, -0.002645514, -0.02357696, 0.00912056, -0.013518835, -0.009630705, -0.025658902, 0.022198189, -0.020612605, -0.008844807, 0.024211193, -0.0038571078, -0.007886562, -0.018475512, 0.006604306, -0.019854281, 0.008755187, -8.061493E-4, -0.0048739505, -0.008803443, -0.030415656, -0.024183618, 0.026886007, -0.0035848008, 0.035020746, 0.023783775, 0.036620118, 0.04671271, -0.003103955, -0.017179469, 0.0048256936, -0.0038881302, -0.01049933, 0.036399517, 0.020971084, -0.019027019, -0.0024145702, -0.008320875, 0.00326079, -0.01950959, -0.017634463, 0.030360505, 0.045499396, 0.018254908, -0.031684123, -0.0042707385, -0.009313588, 0.027230699, -0.010699252, 0.008706929, 0.0036744208, -0.01806188, -0.015331917, -0.0010978453, -0.011416212, 0.01662796, 0.012257261, -0.02900931, 0.025190119, -0.027134184, 0.0056839776, -0.010830235, -0.007245434, 0.024073316, -0.024335282, -0.0018509981, 0.015207828, 0.015552521, 0.004467213, 0.008148528, 4.5370136E-4, 0.029836573, -0.010223576, 0.015704185, 0.008782762, -0.0043982747, 0.00813474, 0.012622635, -0.022322278, -0.022143038, -0.0015890319, -0.0151802525, 0.04271428, -0.002786838, 0.015690397, 0.0045016827, -0.011953932, -0.020350639, 0.010781977, -0.0077693663, -0.014380566, -0.04467213, 0.002648961, -0.0121193845, -0.002607598, 0.0026541313, -0.011781585, 0.0034003903, 9.349781E-4, 0.014325416, -8.496667E-4, -0.011174927, -0.020874571, -0.026899794, -0.032980166, -0.0145184435, 3.823931E-4, -0.0021819028, 0.014435717, -0.019316562, 0.0075763385, -0.008989577, -0.004467213, -0.0031332537, -0.0023456316, -0.020474728, 0.01908217, 0.012209004, -0.015069951, -0.017455222, 0.0072178585, 0.04158369, 0.004060476, -0.005387542, 0.0071558137, 0.003122913, 0.026941156, -0.01040971, 0.0076659587, -0.008238148, -0.015483581, -0.011871206, 0.01818597, 0.014366779, 0.014697683, 0.0016803754, -0.023742411, -0.023190904, -0.012850132, 0.024569673, -0.008065802, 0.023963014, 0.02900931, 0.011602346, 0.027147973, 0.03157382, -0.0064905575, -0.03099474, 0.003801957, -0.00384332, -0.00804512, -0.009465253, 0.007390205, 0.021012448, 0.014173751, 0.0017001951, -0.028085535, 0.005880452, -0.029174764, -0.024390433, -0.013050053, 0.012670892, 0.043293364, 0.018420361, -0.009037835, 0.012788087, -7.863295E-4, 0.008203679, -0.021315778, -0.0021870732, 0.009451465, 0.0038881302, 0.026527526, 0.01406345, -0.035351653, -0.009734113, 0.011884993, -0.0018716797, 0.007472931, 0.006280295, -0.027713267, -0.0069800206, -0.013187931, -6.282019E-4, -0.014408141, 0.0046050902, 0.0052944752, -0.044010323, -0.014821772, 0.004660241, 0.0073074787, -0.010361453, 0.008410494, -8.591458E-4, -0.023011664, -0.014794197, -0.0053186035, -0.024804063, 0.005015274, -0.022267127, 0.025907079, -8.203679E-4, -0.0066732448, 0.038384944, 0.025769202, -0.005359967, 1.8537987E-4, -0.009410102, 0.019109746, -0.00219052, -0.004967017, 0.008686248, 0.019151108, -0.030663835, 0.020019734, -0.0059528374, -0.006838697, -0.011181821, -0.009024046, -0.010520011, 0.028375076, 0.02428013, -0.042852156, 0.011319698, -7.199762E-4, -0.005166939, 0.0029229915, -1.953975E-4, -0.011305911, -0.019302774, -0.017441435, -0.00451547, -0.0316014, -0.029753847, 0.017441435, -0.011388636, -0.011864312, 0.008107165, 0.19523376, -0.0036571862, -1.4905253E-5, 0.046988465, 0.006876613, 0.020005945, 0.024983304, 0.029367791, 3.39522E-4, 0.00876208, -0.0017579312, 0.008210572, -0.0022887574, 0.002626556, 0.015938576, 2.1941825E-4, -0.018572025, -0.011560982, -0.017868852, -0.024983304, 0.003190128, -0.0065008984, -0.001707089, -0.021495016, 0.0074039926, 0.006169994, -0.0019388946, 0.0074039926, 0.018861568, -0.0044603194, -0.011795374, -0.024238769, -0.0078107296, -0.0017096743, -0.01032009, -0.0025834695, 0.010416604, -0.0029281618, 0.007093769, 0.0010211512, -0.0039674095, -0.017634463, 0.010058124, -0.013263763, -0.002517978, 0.020543667, -0.03309047, 0.006614647, -0.016917503, -0.004108733, -0.03069141, -0.0051497044, 0.021508805, 0.024873002, -0.0069455514, -0.0202817, -0.0038054038, 0.0072592217, -7.6306274E-4, -0.014015192, 0.0087000355, 0.033366222, -0.037723135, 0.01879263, 0.0050911065, 0.022184402, -0.04569242, -0.013036266, 0.0054875026, -0.022542883, -0.016448721, -0.029367791, 4.106148E-4, 0.002835095, -0.004753308, -0.015276766, -0.0051393635, -0.0020078332, -0.0038295323, 0.008451858, -0.030222628, 0.008603522, -0.0046947105, -0.010058124, -0.0127811935, -0.02356317, 0.0136705, -0.0137256505, -0.010954324, -0.013084522, -0.0037364655, -0.011940144, -0.013822164, 0.0015321577, 0.012464076, 0.0048291404, 0.02925749, 0.027175548, 0.004263845, 0.0068145683, -0.030553533, 0.001531296, 0.012105596, -0.0075487634, -0.035434376, -0.015580095, -0.0015752442, 0.0020233444, 0.011540301, -0.015552521, -0.021329565, -0.016448721, -0.011616133, -0.026237985, -0.00634234, 0.03223563, 0.0148769235, -0.008569052, 0.018696114, -0.010988793, -0.0133464895, -0.008920639, 0.011450681, 0.0148769235, 0.006749077, -0.04624393, -0.03074656, 0.0077073216, -0.0017786127, -0.03546195, 0.019275198, -0.012436501, 0.0039225994, -0.003939834, -0.001479592, 0.012526121, 0.032401085, -0.024624825, 0.007210965, -4.445993E-5, -2.49902E-4, -0.034331363, 0.01214696, 0.017510373, 0.029395366, -0.020957297, 0.016531447, -0.01134038, -0.015842061, -0.024500735, -0.014091025, -0.013001797, -0.011760904, 0.02345287, 0.043210637, 0.004036348, -0.02183971, -0.03590316, -0.0025817459, 0.024611035, -0.039074328, 0.037116475, 0.019330349, -0.003014335, -0.01764825, -0.0058046198, -0.17813702, 0.037888587, 0.012974221, -0.01603509, 0.029478092, 0.03253896, 0.032456234, 0.014284052, -0.0026696424, -0.022694547, 0.0059597315, 0.006194122, -0.037474956, 0.004977358, 0.007369523, 0.0029902065, -0.0143116275, 0.024569673, 0.03116019, 0.0040535824, 0.03237351, -0.010864704, -0.014435717, -0.0058666645, 0.018572025, -0.0040053255, 0.0137256505, 0.0019027019, -0.0104372855, -0.008382918, -0.020598818, 0.0028454356, 0.0026817068, 0.0073970985, 0.0014511549, 0.004215588, -0.014215114, -0.010899173, -0.015400856, 0.012064233, 0.031132616, 0.0014632192, 0.02350802, 0.01193325, 0.005301369, 0.023356356, 0.012491652, -0.0014563253, 0.017786127, -0.020019734, -0.0038329794, -0.031380795, 0.0075763385, -0.012719149, -0.0022025844, 0.032869864, -0.0053565195, 0.0036778678, 0.005921815, -0.0054875026, -0.019399287, -0.015745549, 0.007796942, -0.010402816, -0.008031333, -0.02010246, -0.016724475, 0.00813474, -0.0336144, 0.015318129, -0.01956474, 0.0060907146, 0.013629137, -0.0016579704, 0.012133172, -0.019068383, -0.041252784, 0.022267127, -0.007914137, 0.009975398, -0.00906541, 0.04533394, -0.007210965, 0.0060976082, 8.1993703E-4, -0.01872369, -0.009947822, -0.0063561276, -0.0036123763, -0.006514686, -6.902465E-4, -0.008941321, -0.006294083, 0.0041432027, -0.0030867204, 0.0026351733, 0.012491652, -0.0057322346, 0.010416604, -0.016434932, 0.009354951, -0.008362237, 0.0014649426, 0.016945077, 0.019164896, 0.028140686, 0.023204692, 0.02956082, 0.041776717, 0.0038536608, -0.006662904, 0.0075763385, 0.02135714, 0.0027247933, -0.024735125, 0.013194825, -0.0073833107, -0.018158395, -0.006652563, 0.0022818635, 0.058901034, 0.0022060312, 0.010850917, -0.0052841343, 0.008665566, -0.019495802, -0.095024794, 0.007969288, 0.010216682, 0.033476524, -0.024100892, 0.03841252, -0.013187931, 0.034303784, -0.029202338, 0.0319323, -0.0037468062, -0.01824112, -0.005394436, 0.0014778686, 0.024666186, 0.014394354, -0.024542097, -0.031132616, -0.011174927, 0.015524945, -0.008100271, -0.015855849, -0.02135714, -0.022625608, -0.015331917, 0.005394436, -0.021495016, 0.014918286, 0.021495016, 0.016448721, 0.012905283, -0.017924003, 0.012395138, -0.031739276, -0.02064018, -0.03099474, -0.02811311, -0.012188323, 0.009396315, -0.04199732, 0.011836736, 0.004250057, 0.0151802525, -0.019164896, -0.01406345, 0.007941713, -0.051565982, 0.039157055, -0.012546803, -0.025190119, 0.004980805, -0.014987225, -0.011312804, -0.015042376, 0.020750482, 0.017014015, 0.019826706, 0.007845199, -0.038688272, -0.023673473, 0.010733721, 0.0032263207, -0.011719541, 0.026224196, 0.014270265, 0.01735871, -0.023218479, -0.012601954, 0.023066815, -0.038991604, -0.01807567, 0.04265913, -0.030305354, -0.018282484, -0.017303558, 0.0069041885, -0.047733, -0.004749861, 0.009616918, -0.022749698, 0.017992942, -0.026886007, 0.0054013296, -0.014959649, 0.025782991, 0.030057175, 0.0041811187, 0.002597257, -0.009086091, -0.023425294, 0.010975005, 0.012043552, 0.017441435, 0.015745549, -0.010871598, 0.019164896, 0.01067857, -0.015911, -0.004525811, 0.008555265, -0.0018854673, 0.015318129, -0.07285418, 0.02094351, -0.015731761, 0.002686877, -0.02123305, -0.008837913, -0.009830627, 0.0032487258, -0.006125184, 0.025824353, -0.008100271, 0.026472375, -0.009099879, -0.0034676054, -0.0028316479, 0.017096743, -0.003353857, -0.0022284363, 0.0060803737, 0.0044706604, -0.03402803, 0.0022990983, 0.010237364, 0.008307086, 0.0058666645, 0.022446368, 0.01723462, 0.008396707, -0.008079589, -0.004108733, 0.023618322, -0.010995687, -2.3869947E-4, 0.011664391, -0.010540693, -0.037281927, -0.002847159, 0.014987225, 0.018213546, 0.015001013, -0.016159179, -0.009913353, 0.0017484521, -0.0032504492, -0.01184363, 0.018392786, -0.017179469, 0.00825883, 0.017413858, -0.009010259, 0.022570457, 0.0070007024, 2.091852E-4, -0.026527526, 0.008327768, -0.021260627, 0.03468984, 0.0220741, 0.005918368, -0.011850524, 0.022956513, 0.0061182897, 0.0300296, -0.01735871, 0.005515078, 0.0038881302, 0.0021457102, -0.015111314, -0.0033762618, -0.019578528, 0.0024042295, -0.0058563235, -0.0027954553, 0.035627406, -0.0018958081, 0.0037985102, 4.0027403E-4, 0.0071764956, 0.0083415555, 0.009534191, 0.013856634, 0.008610416, -0.026403436, 0.025272846, -0.009306694, 0.01300869, -0.0073626293, 0.022639396, -0.0027316872, 0.013539516, -0.0040191133, 0.002828201, 0.010568269, -0.0057218936, 0.010506224, 0.0100788055, -0.024376646, -0.02368726, -0.004870503, 0.028457804, -0.01376012, 0.002914374, -0.011209397, -0.012257261, -0.032814715, 0.014077237, 0.0010314919, -0.02805796, -8.0701103E-4, 1.7654712E-4, 0.0049118665, 0.0030763794, -0.007976182, 0.005883899, -0.02434907, 0.0067180544, -5.915783E-4, -0.020309275, -0.0011047391, 0.027368575, 0.007410886, -0.006280295, 0.027630541, -0.00397775, 0.04844996, 0.026665403, 0.02123305, -0.028650831, -0.004839481, -0.0089275325, 0.019302774, 0.008899957, -0.017165681, 0.01675205, -0.01734492, -5.8651563E-5, 0.008831019, 0.015235404, -0.018599601, 0.06518822, 0.024307707, 7.9063815E-5, 0.014284052, -0.024748914, 0.015524945, 0.013001797, 0.01447708, -0.007734897, -0.02124684, 0.0011297293, 0.0015640417, 0.0069765737, -0.030470807, -0.012395138, -0.013987617, 0.0032521726, 0.016324632, -0.016559022, -0.011671284, 0.005597804, 0.0070248307, 0.032290783, 0.010354559, -0.01926141, -0.018089456, -0.0059873066, -0.009968503, 0.0026437906, -0.03151867, -0.011864312, -0.0132224, -0.0012615741, -0.0128570255, 0.021343352, 0.003526203, -0.00122969, 0.0042431634, 0.012029764, 0.013394746, -0.019440651, -0.002779944, -0.03027778, -0.022818636, 0.024031954, -0.025948443, -0.015042376, -0.029864147, -0.02626556 ], + "id" : "11f97068-60f7-441a-81de-c4e2e01cc319", + "metadata" : { + "source" : "movies.csv" + } + }, + "ff9b7f46-6504-4521-b636-a1d0e4304296" : { + "text" : ",/5bzPWQ2dFUl2aZKkp7ILJVVkRed.jpg,165-196-1891-85-218-11-603-329-89-13-280-10681-348-121-8587-862-857-87-1892-607-120\r\n497698,Black Widow,Action-Adventure-Science Fiction,en,Natasha Romanoff also known as Black Widow confronts the darker parts of her ledger when a dangerous conspiracy with ties to her past arises. Pursued by a force that will stop at nothing to bring her down Natasha must deal with her history as a spy and the broken relationships left in her wake long before she became an Avenger.,82.963,Marvel Studios,7/7/21,200000000,379751131,134,Released,Her world. Her secrets. Her legacy.,7.32,9123,Scarlett Johansson-Florence Pugh-Rachel Weisz-David Harbour-Ray Winstone-Olga Kurylenko-Ever Anderson-Violet McGraw-O.T. Fagbenle-William Hurt-Ryan Kiera Armstrong-Liani Samuel-Michelle Lee-Lewis Young-C.C. Smiff-Nanna Blondell-Simona Zivkovska-Erin Jameson-Shaina West-Yolanda Lynes-Claudia Heinz-Fatou Bah-Jade Ma-Jade Xu-Lucy-Jayne Murray-Lucy Cork-Eniko Fulop-Lauren Okadigbo-Aur��lia Agel-Zhan�� Samuels-Shawarah Battles-Tabby Bond-Madeleine Nicholls-Yasmin Riley-Fiona Griffiths-Georgia Curtis-Svetlana Constantine-Ione Butler-Aubrey Cleland-Kurt Yue-Doug Robson-Marcel Dorian-Zolt��n Nagy-Liran Nathan-Judit Varga-Szathmary-Noel Krisztian Kozak-Martin Razpopov-Olivier Richters-Nina Novich-Andrew Byron-Ed Ashe-Dawid Szatarski-Cali Nelle-Geoffrey D. Williams-Robert Pralgo-Jacinte Blankenship-Josh Henry-Jose Miguel Vasquez-Valentina Herrera-Danielle Jalade-Aria Brooks-Sophie Colgrove-Caister Myung Choi-David Turner-Edward L. Oliver-Rob Horrocks-Oliver Simms-Yuuki Luna-Kalina Vanska-Jordyn Curet-Chad J. Wagner-Joakim Skarli-Ian Wilson-Tyrone Kearns-Gavin Lee Lewis-Ahmed Bakare-Zoltan Rencsar-Adam Prickett-Luigi Boccanfuso-Roman Green-Clem So-Graham Kitchen-Daniel Joseph Woolf-John Wolfe-Paul O'Kelly-Shane Askam-Obie Matthew-Ty Hurley-Stephen Samson-Marian Lorencik-Julia Louis-Dreyfus-Jeremy Renner-Dale Liner,spy-assassin-hero-kgb-based on comic-female assassin-female spy-female hero-aftercreditsstinger-marvel cinematic universe (mcu)-woman director,/kwB7d51AIcyzPOBOHLCEZJkmPhQ.jpg,/keIxh0wPr2Ymj0Btjh4gW7JJ89e.jpg,566525-524434-436969-588228-451048-550988-429617-299534-299536-580489-299537-508943-634649-363088-379686-385128-284053-337404-101638-315635-271110\r\n929,Godzilla,Science Fiction-Action-Thriller,en,French nuclear tests irradiate an iguana into a giant monster that viciously attacks freighter ships in the Pacific Ocean.", + "embedding" : [ -0.008523166, -0.039792784, -0.0134195965, -0.021220116, -0.0032029408, 0.019356096, -0.007739737, -0.018829308, -0.011521808, -0.04333172, 0.031012978, 0.024029655, 0.022665408, -0.00550764, -0.002097023, 0.0184511, 0.025326364, -0.012447064, 0.01695178, -0.042953514, 0.006422766, -4.651609E-4, -0.02126064, 0.012872547, -0.008394846, 0.01174468, 0.0152228335, -0.01306165, -0.0016825148, -0.004325743, 0.015006715, -0.017113868, 0.0041602775, -0.024232266, -0.023151673, -2.2392727E-4, 0.012791502, -0.035200268, 0.01664111, -0.011474531, 0.011130093, 0.008631225, -0.015790144, 0.015519996, -0.008793314, 0.008259771, -0.0131967245, -0.01205535, -0.00811119, 0.02389458, 0.022233171, 0.014263809, -0.0039846813, -0.0195452, -0.015695592, -0.012737473, -0.014385375, 0.007915333, 0.01446642, -0.009826629, 0.007989624, -0.013520902, -0.02643397, -0.001313594, -0.015168804, -0.011575837, -0.012784748, -0.02307063, -0.015898203, -0.019585721, 0.042602323, 0.028689705, -0.005450234, 6.5468653E-4, 0.022098098, -0.02882478, -0.032039538, -0.0011633243, -0.0071926876, 0.0028686328, 0.019788332, 0.0021105304, 0.0038766223, 0.002598485, 0.017748715, 0.02244929, -0.01669514, 0.026271882, -0.02601524, 0.012811763, 0.017789239, 0.012251207, -0.0016681632, 0.015425445, 6.466665E-4, 0.015047237, -0.009272826, 0.021328175, -0.023597417, -0.038955327, -2.8829844E-4, 2.4017836E-4, -0.017505582, -0.008887866, -0.00990092, -0.0034426972, -0.0019636375, -0.009988718, 0.01819446, -0.0014967881, -0.008989171, -0.0063653598, 0.026866207, -0.03152626, -0.0047849943, -0.025745094, 0.009529467, -0.013000867, -0.0071319044, -0.017384017, 0.0057237586, 0.036578026, 0.014615001, -0.025488453, 0.04168382, 0.023691969, 0.008860851, -0.011515054, 0.0013346995, 9.0161856E-4, 0.052165557, -1.6092794E-5, 0.01839707, 0.0022489813, -0.013392582, 0.043304708, -0.04125158, 0.0043392503, -0.029689252, -0.018018864, 0.025596512, 0.041305613, -0.02442137, -0.033012073, -0.026987774, 0.007651939, 0.02219265, 0.0015010092, 0.004015073, -0.0020548124, 0.019234529, 0.011798709, 0.015979247, 0.0034714004, 0.015695592, 0.0059061083, 0.010218344, -0.020234076, 0.015101267, -0.009380885, -0.0018336287, 0.0019771447, -0.0057440195, -0.025393901, -0.011292182, 0.031499244, 0.022219663, -0.033147145, -0.018072894, 0.0040488415, -0.008543427, 0.019248037, -0.0020683198, 0.022071082, 0.0017660918, 0.017789239, 0.009083723, -0.008361077, -0.027284937, 0.010312895, -0.009786108, 9.328544E-4, 0.03576758, 0.0022878149, 0.0012967099, 0.0122917285, 0.031688347, -0.030553726, 0.013284522, -0.027852247, -0.008827082, 0.018572668, -0.007226456, -0.011184122, -0.64705825, -0.0027470663, 0.009536221, -0.016397977, 0.02213862, 0.01892386, 0.013649222, 8.75448E-4, -0.024961665, -0.0020024711, -0.015047237, 0.0017812876, 0.014263809, -0.015425445, -0.040089946, -0.012764487, 0.0050720265, -1.8709851E-4, 0.008610964, 0.012777995, -0.038658164, 0.013872094, 0.012102625, 0.0077735055, -0.0012198866, -0.009981965, -0.011893261, -0.016857227, -0.0034984152, 0.013872094, -0.036632054, 0.0031691724, 0.016154844, -0.0048863, 0.037901748, 0.001007145, -0.00680435, 0.047410954, 0.042575307, 0.040116962, -0.027852247, 6.410736E-5, 0.0022050822, 0.0100427475, -0.021787427, 0.013385828, 0.0022844381, -0.007888318, 0.015006715, 0.0107181175, 0.004869416, 0.0022996338, 0.009988718, 0.011008526, -0.015020222, 0.01529037, 0.012588891, -0.017910805, 0.011352965, -0.005730512, -0.008516412, 0.020234076, 0.0030796858, -0.00891488, -0.0016985548, 0.028041352, -0.0074966038, -0.0034646466, 0.004504716, -0.01850513, 0.008354323, -0.0021426105, 4.947083E-4, -0.0047985017, 0.010988265, 0.02592069, 0.026987774, 0.0059601376, 0.0016614095, 8.501216E-4, 0.007293993, -0.010880206, -0.011528561, 0.007989624, 0.012251207, -0.016506037, -0.042494263, 0.011494793, 0.018626697, -0.009894166, 0.021706384, 0.014425897, 0.011177368, 0.008171974, -0.00927958, 0.012413296, -0.003111766, -0.0012435245, 0.023192197, -0.038901296, -0.014966193, -0.026420463, 0.023881074, -0.019275052, 0.029716268, -0.0022658654, -0.024245773, -2.8360253E-7, 0.0219225, -0.020504225, -0.006422766, 0.015844174, -0.018005356, -0.0066591455, 0.0047883713, -0.02742001, 0.0134128425, 0.0073480224, 0.024867114, -0.005200347, 0.0037719398, 0.009070216, 0.012170162, -0.004558746, 0.017708194, 0.0125213545, -0.017019317, 0.0014799039, -0.012811763, 0.0017644034, 0.0017998603, 0.0047613564, 1.7665139E-4, -0.00995495, 0.008442122, 0.0041636545, 0.010853192, -0.004889677, 0.02047721, -0.0016495906, -0.02104452, -0.0016234199, -0.0168032, 0.020207062, -0.008881112, -0.010947743, -0.023354284, -0.0031860566, 0.0029463004, 0.0067638275, -0.009205289, -0.003991435, 0.005369189, 0.015898203, 0.008624472, -0.011366473, -0.015952233, -0.028230455, 0.010096777, 0.0033700948, -4.1514132E-4, 0.013568178, 0.005065273, -0.01669514, 0.013993661, 0.003586213, -0.016614094, 0.023786522, -0.0010552652, -0.029905371, -0.01106931, -0.029824328, -0.02317869, 0.01435836, 0.0014005479, 0.012460572, -0.015790144, 0.020855417, 0.0059466306, -0.0075438796, -7.6865515E-4, -0.017910805, -0.008631225, -0.0033768485, 0.027014788, 0.03565952, 0.008867605, -0.004325743, 0.00717918, -0.004774864, -0.016492529, -0.022260185, -0.012035089, -0.010319649, -0.008408353, 0.003812462, 0.013379074, 0.019828854, -0.012683444, 0.020409673, 0.031904466, 0.026609566, 0.01137998, -8.463227E-4, 0.014439405, -0.011859492, 0.002880452, -0.03063477, 0.02166586, -1.2346603E-4, 0.039684724, -0.009887413, -0.020126017, -0.013466872, 0.0058824704, 0.0030543595, -0.018626697, 0.0039137676, -0.016262902, -0.007942348, 0.001794795, -0.00692254, 0.0038496074, 0.0068313647, -0.029554179, 0.002682906, 0.024786068, -0.009887413, 0.011724418, -0.01782976, 0.005841948, -0.0066051157, 1.02426675E-5, -0.0048457775, -0.008023392, 0.0033261958, 0.01205535, -0.009070216, 0.037145335, -0.017397525, -0.0036402429, -0.0032535936, 0.01892386, 6.7494763E-4, -0.012332251, -0.007584402, 0.027203891, 0.009880659, -0.02710934, 0.032904014, -0.01782976, 0.018991396, -0.010015733, 0.008610964, 0.021058029, -0.026474493, 0.005149694, 0.011406994, 0.043574855, 0.03701026, 0.027028296, -0.033012073, 0.016830213, 0.01669514, 0.035011165, -0.008590703, -0.01985587, 0.016357455, 0.009961704, -0.0118392315, -0.02736598, -0.037901748, 0.006895525, 0.017870283, -0.026933745, 0.0033194423, -0.0060479357, 0.010637073, -0.0041163783, 0.015330893, -0.00884059, -0.025907183, -0.004923445, 0.029824328, 3.9382497E-4, -0.026082778, -0.011717665, 0.010035994, -0.020531239, -1.0061954E-4, 0.0057440195, 0.026744641, -0.020342136, -0.021490265, -0.024232266, 0.0059229922, 0.021449743, -0.016492529, 0.014804104, 0.016249396, 0.005146317, -0.0023165182, -0.018153938, -0.0067942194, 0.013541163, -0.003917144, 0.029067913, 0.0029716268, 0.0013119057, -4.1915133E-4, -0.0012764487, 6.736813E-4, -0.03176939, 0.0074088057, -0.003349834, -0.021382205, -0.024799576, -0.013818065, 0.006811104, -0.0064295195, -0.009765846, -0.021679368, -0.026515014, -0.007969363, 0.060621187, 0.031229096, 0.014209779, -8.2521736E-5, -0.004366265, 0.009272826, 0.0011954044, -0.0038968832, -0.0030915048, -0.008138205, 0.013162956, -0.006615246, 0.011670389, 0.028311498, 0.032633863, -0.0017812876, -0.012872547, -0.019018412, -0.007287239, -0.03085089, -0.009178274, -0.013534409, 0.013993661, 0.036956232, 0.019815348, -0.0064565344, 0.0184511, 0.0029243508, 0.013108926, 0.0044641937, -0.007847796, 0.0017981719, -0.0013254131, 0.0038732453, -0.0011599475, 0.0082260035, 0.023624433, -0.0034545162, 0.013325045, 0.010954496, 0.010231852, -1.5459635E-4, -0.0034646466, -0.006601739, -7.374193E-4, -0.028041352, -0.0030611132, 0.024610473, 0.011319197, -0.026447479, 0.03549743, -0.0064801723, -0.022516826, -0.0125146005, 0.017019317, 0.0035220531, -0.004997736, -0.003586213, -0.016033277, -0.0084556285, 0.00834757, -0.02939209, 0.0021375453, -0.016316932, -0.001460487, -0.025637034, -0.02084191, -0.017762223, -0.0035355606, 0.013048143, -0.0036875186, -0.039117415, -7.226456E-4, 7.12304E-5, 0.012325497, -0.0030155259, 0.024961665, -0.0076722, 0.005956761, 0.011879753, -0.038901296, -0.032066554, 5.6646636E-4, -0.039522637, -0.0014064574, 0.00624717, 0.006949554, 0.017951326, -0.019139977, 0.0042109303, 0.020180047, -0.00811119, -0.017451553, 3.518254E-4, 0.040576212, 0.012825271, 0.0107113635, 0.008820329, 0.011319197, -0.0011928717, 0.0080098845, -0.019680273, -0.007091382, -0.013885601, -0.02332727, -0.017559612, 6.631286E-4, 0.0131899705, -0.01746506, -0.010907221, -0.012642921, -0.022111604, -0.0021341683, -0.005733889, 4.4954297E-4, 0.0057372656, 0.028527617, -0.0011515054, 3.2502168E-4, -7.779415E-4, -0.0050517656, -0.0021780673, 0.017127376, 0.035551462, 0.020652806, 0.023813536, -0.028635677, -0.025164276, -0.005538032, 0.013628961, 0.0012350824, 0.01404769, -0.015628055, 0.001985587, -0.0027909654, -0.010414201, 0.015830666, 0.0038664916, 0.0047917482, -0.00946193, -0.013743774, -7.285551E-4, 0.0042885975, -0.010414201, -0.01799185, -0.032282673, -0.009927935, 0.0029294163, 0.009833383, 0.027379489, -0.0113732265, 0.018518638, -0.023678463, -3.0454953E-4, -0.01715439, -0.02877075, -0.05211153, 0.001388729, 0.043872017, 0.014182764, 0.034281768, 0.004102871, 0.024718532, 0.014115227, -1.4953107E-4, 0.020382658, -0.0035963438, 0.005392827, -0.025745094, 0.01441239, 0.036929216, 0.029797312, 0.008253018, 0.0063889977, -0.007071121, 0.00821925, 0.0084488755, 0.011157108, 0.005328667, -0.030904919, 7.6992146E-4, 0.033984605, -0.025515469, 8.653175E-4, -0.018180953, -0.009894166, 0.030985963, -0.013750527, -0.0019028542, -0.0023418446, 0.03074283, 0.014209779, -0.0073885447, -0.013149449, 0.03271491, -0.035524447, -2.1843989E-4, -0.0077532446, -8.637345E-5, 0.016424991, -0.011461024, 0.009009432, 0.004619529, -0.014533957, -0.0060479357, 0.013000867, -0.018059386, -0.018964382, 0.024407862, -0.020760866, -0.00971857, -0.044709474, -0.003047606, -0.03960368, -0.0152228335, -0.011359719, -0.0107046105, 0.0084488755, -0.01757312, -0.048788708, 0.02498868, 3.043385E-4, 0.049437065, 0.009745585, 0.056731056, 0.033417292, 0.023151673, -0.02601524, 0.018599682, -0.026271882, -0.0071859336, 0.022098098, 0.02555599, -0.03679414, -0.018086402, 0.006338345, -0.018221475, -0.018532146, -0.038847268, 0.023651447, 0.01638447, 0.04214307, -0.024191743, 0.0031202082, -0.023854058, 0.011406994, -0.001273072, -0.002431331, 0.024542935, -0.029419105, -0.030661786, -0.0044945856, 0.005092288, 0.02104452, 0.0056933668, -0.014871641, 0.019248037, -3.775739E-4, 0.022665408, -0.016992303, -0.022044068, 0.038225926, -0.018856322, 0.012642921, 0.0058554555, 0.022503318, 0.027203891, 0.0028753865, 0.015155297, 0.031553272, -0.018207967, 0.008678501, -0.005504263, -0.0043797726, -0.010056255, 0.025826138, -0.024245773, -0.019058933, -0.013176464, -0.013034635, 0.013439857, 0.008631225, -0.02067982, -0.010495245, -0.012271468, -0.020126017, 0.004636413, -0.008523166, 0.004548615, -0.036118772, 0.004980852, -0.0027301821, -0.0054637413, 0.013399336, 0.009914427, -0.013223739, 0.0014950997, 0.024502413, -0.0127442265, 9.438292E-4, -0.011440763, -0.0052341153, -0.034092665, -0.017613642, -0.018626697, -0.021125564, 0.00303241, -0.019504678, -0.005551539, -0.017248943, -0.027622622, 0.005173332, 4.1535238E-4, -0.008746038, 0.018572668, 0.029986415, -0.008036899, -0.018707741, 0.009043201, 0.01850513, 0.008536673, 0.00402858, 0.020558255, -0.0053489283, 0.026109794, -0.024245773, 0.018140431, 0.0118459845, -0.00761817, -0.021679368, 0.0025596512, 0.020058481, 0.010360171, -0.0019450648, -0.028527617, -0.008550181, -0.018370057, 0.014142242, -7.8722784E-5, -0.0040758564, 0.023773015, 0.013284522, 0.042575307, 0.026447479, -0.012832025, -0.02566405, -0.017019317, -0.021017505, -0.0026947253, 7.146256E-4, 0.0199099, 0.016573573, 0.008421861, -0.0011422191, -0.028311498, -0.004423672, -0.022678915, -0.021328175, -0.011082817, 0.015682084, 0.034741018, 0.01726245, -0.010988265, 0.02939209, -0.007624924, 0.008624472, -0.009637526, -0.0057980493, 0.005662975, 0.007341269, 0.023219211, 0.028365528, -0.029257016, -0.01773521, 0.007091382, -0.005706874, 0.009522713, 0.043628883, -0.023138167, -0.004302105, -0.018234983, 0.015168804, 0.004524977, -0.015925217, 0.033822514, -0.026920237, -0.007915333, 0.009144506, 0.02716337, 1.0309941E-4, 0.0073007466, 0.009927935, -0.012122886, -0.0069968305, -0.011136847, -0.0330661, -0.0061492412, -0.026771655, 0.022044068, 0.017654164, -0.0035997205, 0.043115605, 0.011103078, -0.0055819307, -0.0040758564, -0.007868057, 0.0046904427, 0.005220608, -0.004089364, 0.0014385375, 0.017248943, -0.030877903, 0.026366433, -0.029851342, -0.0017188159, -4.3476926E-4, 0.016519543, -0.019720796, 0.029257016, -8.805133E-4, -0.03925249, -0.0026626452, -0.008523166, 0.008867605, -0.027460532, -0.006037805, -0.02535338, -0.0073885447, -0.01824849, 0.013338552, -0.01633044, -0.019194007, 9.302163E-5, 0.005703497, -0.011771694, 0.0071251504, 0.17862178, -0.0080098845, 0.025096739, 0.05303003, -0.016141336, 0.020517733, 0.03176939, 0.0072602243, 0.002519129, 0.026488, -0.0061323573, -0.0038428537, 0.0025528974, -0.0051598246, 0.005173332, -0.004889677, -0.010616812, -0.013500641, -0.010596551, -0.017667672, -0.008259771, 0.011211137, -0.016397977, -0.015519996, 0.01044797, -0.011157108, 0.0034089286, 0.0035929668, 0.008313801, -0.0016766053, -0.008678501, -0.019707289, 0.011859492, 0.035281315, -0.018478116, -0.008394846, 0.005838571, 0.007206195, 0.009002678, 0.008624472, -0.016479021, -0.0023587288, 0.004214307, 0.0026204346, 0.003132027, 0.015992755, -0.019302066, 0.005784542, -0.003422436, 0.0026626452, -0.04017099, 3.9171445E-4, 0.011312443, 0.030769844, -0.021125564, -0.010103531, 0.013210231, -0.0025900428, -0.005446857, 9.5986924E-4, -5.082157E-4, 0.028176425, -0.034605943, 0.010745132, 0.014304331, 0.02617733, -0.02893284, -0.012798256, 0.028797764, -0.025596512, -0.004869416, -0.0082327565, -0.023286749, -0.004373019, -0.0046735583, -0.006581478, -0.0015263356, 0.010954496, 0.032579836, 0.015938725, -0.023057122, -0.008421861, 0.0077464906, 0.0125078475, -0.02623136, -0.0045182235, 0.007314254, -0.006757074, -0.012859039, -0.0037516789, -0.020463703, -0.021881979, -0.029067913, 0.020639298, -0.008860851, 0.015668577, 0.0098063685, 0.013939631, -0.00896891, -0.013912616, -0.038144883, 0.016830213, 0.0476811, -0.0053894506, -0.023651447, -0.018896844, 0.0041839154, 0.004727588, 0.009144506, -0.021193102, -0.008806821, -0.024705024, -0.001961949, -0.008955402, 0.004396657, 0.03220163, -0.0067503206, -0.01876177, 0.0498693, -0.018464608, -7.239119E-4, -0.03395759, -0.0014343164, -0.015371415, -0.0051834625, -0.046006184, -0.019666767, 0.0152093265, 0.01446642, -0.042710382, 0.019936914, -0.021476757, 0.009684802, 0.0024499036, -0.0018961005, 0.02213862, 0.023624433, 0.0021324798, 0.0061019654, -0.016100815, 0.008982417, -0.023367792, 0.021125564, 0.00884059, 0.011339458, -0.005642714, 0.00798287, 0.014858134, -0.011555576, -0.021841457, -0.026109794, -0.017532598, 0.0071589192, 0.009556482, 0.028392542, 0.0046938197, -0.022354737, -0.02213862, -0.01897789, 0.038793236, -0.026082778, 0.027771203, 0.022692423, -0.015803652, -0.04333172, -0.025947705, -0.17343494, 0.023246225, 0.015533503, -0.030040445, 0.021881979, 0.025569497, 0.009144506, 0.005017997, 0.011670389, -0.0035828364, 0.021652354, 0.0061289803, -0.04495261, -0.008408353, -0.0010451346, 0.0107046105, -0.011960798, 0.034389827, 0.011852738, 0.0013591816, 0.05257078, -0.018599682, -0.004167031, -0.007942348, 0.004697196, 1.6335506E-4, -0.004278467, -0.0067435666, -0.003920521, -0.0041771615, -0.019477664, -0.009556482, -0.010204837, -0.0037820705, -0.010839684, 0.008367831, -0.023462344, -0.008212496, -0.018842814, -0.006777335, 0.02939209, 0.015425445, 0.021652354, -0.0036908956, 0.019288559, 0.015938725, 0.022165634, -0.013257507, 0.009981965, -0.027960306, 0.0021442987, -0.027933292, 0.019396618, -0.010157561, 0.011960798, 0.02047721, -0.017586628, 0.0017964834, 0.016506037, -0.009576743, -0.029202987, -0.0062944456, 0.012669936, -0.009016186, -0.0033363265, -0.014209779, -0.017127376, 0.021287654, -0.033876546, -0.002240539, -0.022868019, 0.02425928, 0.008759545, -0.008874358, 0.0061323573, -0.0061256033, -0.021368697, -6.7241496E-4, -0.009759093, 0.019882884, -0.013872094, 0.02769016, -0.01472306, -0.0057440195, 0.022719437, -0.022530334, 3.5435805E-4, -0.022057574, 0.0046735583, -0.006314707, 0.0017914182, -0.010610058, -0.010968004, -0.014196271, 0.007874811, 0.007010338, 0.0053894506, 0.005396204, -0.009529467, -0.0109409895, -0.011737926, -0.013075158, -0.024961665, 0.012278222, 0.032012526, 0.024070177, 0.028743735, 0.014696045, 0.021503773, -0.008307047, -0.004477701, 0.0037044028, 0.015560518, 0.016289918, -0.014493434, 0.022773467, 6.378023E-4, -0.014696045, 6.458223E-4, -0.012845532, 0.049653184, -0.005538032, -0.011798709, -0.013966646, 0.005598815, -0.02601524, -0.08434017, 0.01773521, 0.0188158, 0.026352927, -0.015844174, 0.023610925, 0.0038462305, 0.028554631, -0.005845325, 0.030364623, 0.003994812, -0.010562782, 0.008327309, -0.005332044, 0.01311568, -0.0012544993, -0.014061198, -0.006108719, -0.0039644204, 0.03768563, -0.006807727, -0.013075158, -0.0073750373, -0.007564141, -0.024650995, 0.026055764, -0.023786522, 0.0336064, 0.008881112, -0.0020007829, 0.0015254914, -0.019072441, 0.021193102, -0.046627525, -0.033471324, -0.014858134, -0.02628539, -0.02405667, 0.016911257, -0.042224117, 0.014925671, 0.019221023, 0.0091377525, -0.028986868, 9.210355E-4, 0.0016352389, -0.012926577, 0.03644295, 6.386465E-4, -0.040306065, 0.0040961173, -0.024083685, -0.02877075, 0.0023536636, 0.02933806, 0.009232304, 0.026055764, -0.001217354, -0.018748263, -0.008901373, 2.4287588E-6, -0.008496151, -0.022881526, 0.0086852545, 0.0118459845, 0.008097683, -0.016884243, -0.015817158, 0.023651447, -0.019923408, -0.013912616, 0.010056255, -0.024461892, -0.02001796, -0.016127829, 0.0015432198, -0.011900014, -0.007516865, 0.019004904, -0.045222756, 0.0012604088, -0.024097191, -2.4735415E-4, -0.024650995, 0.026352927, 0.021571308, 0.010657334, 0.012845532, -0.007206195, -0.042845454, -0.004636413, 0.034443855, -0.0046735583, -0.028176425, -0.0029226625, 0.039414577, 0.023259733, 0.0014858134, -0.0041636545, 0.021031013, -0.006152618, -0.0063484753, -0.07261575, 0.03001343, -0.017492076, -0.008178728, -0.016208874, -0.006736813, -0.0019940292, 0.003419059, -0.0054063345, 0.02400264, -0.008070668, 0.012406542, -0.019815348, -0.0041771615, -0.009711817, -0.008813575, 1.543853E-4, -0.015587533, 0.0024769185, -9.0668385E-4, -0.023867566, 0.007699215, 0.030175518, -0.0047681103, 0.008117944, 0.022368245, 0.011049049, 0.01959923, -0.011393487, -0.010819423, 0.030904919, -0.019842362, -0.002586666, 0.0042008, -0.002515752, -0.02519129, -0.0015693904, -0.0034325665, 0.014034183, 0.005193593, -0.006392374, -0.020706836, -0.0067097982, -2.3785677E-4, -0.013284522, 0.035551462, -0.02084191, 0.0022895033, 0.009191782, 0.018059386, 0.040711287, 0.007888318, -0.010150807, -0.0131967245, 0.016154844, -0.03493012, 0.045330815, 0.0046026446, -0.0016715401, -0.0011810528, 0.018802293, 5.474716E-4, 0.018748263, -0.02498868, -0.012251207, 0.009002678, -9.5733657E-4, -0.005477248, 0.0051902165, -0.026866207, -0.00884059, 0.008063914, 0.013399336, 0.021517279, 0.020234076, -0.006601739, -0.015087759, -4.1999554E-4, 0.005578554, 0.010191329, 0.023786522, 0.0056359605, -0.024596965, 0.014790596, 0.0031252734, 0.029581193, -0.017140884, -0.005308406, 0.007827535, -0.007976117, -0.007624924, 0.01782976, 0.019464156, 0.015925217, 0.010562782, 0.01949117, -0.004416918, -0.02400264, 8.188858E-4, 0.01231199, 0.002375613, -0.0074966038, -0.011285428, -0.019275052, -0.016884243, 0.012366019, -0.01368299, -0.009752339, 0.017708194, 0.032525804, 0.015263355, -0.0035963438, -0.016046785, 0.008489397, -0.03733444, 0.017127376, -0.019194007, -0.011393487, -0.02016654, 0.055704493, 0.007834288, 0.01653305, 0.040738303, -0.009083723, 0.02566405, 0.02171989, 0.027595608, -0.035956684, 0.011879753, -0.007206195, 0.0019940292, -0.0027909654, -0.02462398, 0.013345306, -0.03395759, 0.004349381, 0.020504225, 0.03085089, -0.024826592, 0.06418714, 0.027082326, -0.006561217, 0.003684142, -0.026420463, -0.0031978756, 0.002821357, 0.010853192, -0.023448836, -0.023705477, -0.013379074, -0.011157108, -0.004089364, -0.0272174, -0.015871188, 0.006399128, -0.0023013223, 0.005396204, -0.015128282, -0.019207515, -0.002085204, -0.01329803, 0.03773966, 0.0038698686, -0.019761318, -0.015668577, 0.024907636, -0.0010755262, -0.004555369, -0.02420525, 0.0011979371, -0.009158013, 0.0021358568, -0.011805463, 0.027960306, -0.00544348, -0.011548822, -0.002880452, 0.014506942, 0.014128734, -0.0033211305, 0.0071048895, -0.023610925, -0.009637526, 0.0066355076, -0.008874358, 0.0015212703, -0.013926123, -0.015641563 ], + "id" : "ff9b7f46-6504-4521-b636-a1d0e4304296", + "metadata" : { + "source" : "movies.csv" + } + }, + "f7b16d95-7f4a-48c4-ad05-16af4d490215" : { + "text" : "666,6341,Vin Diesel-Paul Walker-Michelle Rodriguez-Jordana Brewster-John Ortiz-Laz Alonso-Sung Kang-Tego Calderon-Gal Gadot-Don Omar-Jack Conley-Liza Lapira-Shea Whigham-Mirtha Michelle-Greg Cipes-Ron Yuan-Alejandro Pati��o-Joe Hursley-Cesar Garcia-Brandon T. Jackson-Mousa Kraish-Neil Brown Jr.-Wilmer Calderon-Joseph Julian Soria-Don Theerathada-Robert Miano-Luis Moncada-McCaleb Burnett-Greg Collins-Monique Gabriela Curnen-Jimmy Lin-Roger Fan-Brendan Wayne-Breon Ansley-Assaf Cohen-Loren Lazerine-Lou Beatty Jr.-Julian Starks-Christopher Gehrman-Marco Rodr�_guez-Naureen Zaim-Becky O'Donohue-Alexandra Castro-Leigh Folsom Boyd-Jeff Lam-Gilbert J. Menchaca-Frank Miranda-Rana Morrison-Kristen DeLuca-Holly Weber-Bruna Rubio-Ashley Green Elizabeth-Valenzia Algarin-Liberty Cordova-Lexi Baxter-Christian Calloway-Jerald Garner-Meredith Giangrande-Victoria Gracie-Fatimah Hassan-Adrienne McQueen-Christina Neferis-Lindsay Rosenberg,sibling relationship-gambling-car race-ex-lover-fast-cop-street race-car crash-paul walker-vin diesel,/AmY8rE2HzWzZs5S81CygXXYDjki.jpg,/3ZiM6gm2XL8qnhZCXsTjixvaH4v.jpg,584-9615-51497-9799-82992-168259-337339-8373-38356-1858-27578-988334-2080-36668-76163-1571-1979-1865-58-36657-558\r\n577922,Tenet,Action-Thriller-Science Fiction,en,Armed with only one word - Tenet - and fighting for the survival of the entire world the Protagonist journeys through a twilight world of international espionage on a mission that will unfold in something beyond real time.,57.341,Warner Bros. Pictures-Syncopy,8/22/20,205000000,363129000,150,Released,Time runs out.,7.", + "embedding" : [ 0.012842163, -0.028856065, -0.015332315, -0.04289269, -0.029800838, 0.03519954, -0.009144053, -0.009177795, -0.024793541, -0.041084126, 0.025373902, 0.029368943, 0.025022987, 0.008556943, 0.011296785, 0.005300851, 0.02326841, -0.035469476, 0.012680203, -0.031474438, 0.00852995, -0.011188812, -0.026156714, 0.018193629, 0.014859929, 0.018625524, 0.02197272, -0.008772892, -0.012052604, -0.019799741, 0.014414536, -0.010831147, 0.005516799, -0.027587371, -0.0078888545, 0.0045349104, 0.0158182, -0.024834031, 0.02958489, 2.6635005E-4, 0.011998616, 0.010520722, -0.014495516, -0.014158098, -0.0141850915, 0.005027542, 0.014036627, -0.020582553, 2.7626174E-4, 0.021581315, 0.010905379, 0.03479464, -0.012882655, -0.027776325, -0.0057766116, -0.009548956, -0.016614508, 0.005584283, -0.0068563526, 9.4646006E-4, 0.006370469, -0.011472243, -0.03387686, -0.001291471, -0.0345247, -0.011755675, -0.0112427985, -3.6546687E-4, -0.0034382988, 0.0028866187, 0.022566577, 0.0022860132, 0.022188667, 0.00463951, 0.010176554, -0.04132707, -0.019165395, 0.004157001, -0.0018119395, 0.0039444272, 0.0174783, -0.00927902, -0.0058609666, 0.008590685, 0.0105342185, 1.882165E-4, -0.018085653, 0.01377344, -0.033067055, -0.008799885, 0.0046496326, 0.023538344, 0.0030468928, 0.011944629, 0.006043173, 0.009393742, -0.016398558, 0.009366749, -0.025333412, -0.02842417, 0.0051490124, -0.004069272, -0.012707196, -0.009306014, -0.008880866, -0.0044539296, 5.584283E-4, 0.0045888973, 0.025117464, 0.020501573, 0.006606662, 0.0014382481, 0.014171595, -0.037871897, -0.0065223076, -0.010959366, 0.027533384, -0.01951631, -0.020218141, -0.02213468, 0.037790917, 0.033930846, 0.013341544, -0.035766404, 0.032095287, 0.021810759, 0.014050123, -0.0043088393, -0.0023923002, -2.9903752E-4, 0.024307659, -0.0068732235, 0.022890499, 0.009575949, -0.021311378, 0.042703737, -0.02554936, 0.008523202, -0.02085249, -0.013004125, 0.033768885, 0.029800838, -0.023929749, -0.01606114, -0.017343333, -0.0014331868, 0.0183151, 8.848811E-4, 0.019462323, 0.0025002742, 0.029719857, 0.025724819, 0.026494132, 0.008907859, 0.015426793, 9.5573906E-4, -0.002854564, -0.002692603, -0.0017647009, -0.006157895, -0.011499236, -0.007828119, -0.001071305, -0.010594954, 0.010493728, 0.028451163, 0.017073397, -0.019826736, -0.006488566, -0.0054526897, -0.013145841, 0.03379588, -0.024442626, 0.02359233, -0.00279889, 0.010014594, 0.017653758, -0.009866129, -0.02804626, -0.015237838, 0.021851249, 0.007693151, 0.033903852, 0.03727804, -0.011458746, 0.011958126, 0.027141977, -0.027884299, 0.011215805, -0.012659958, -2.465267E-4, 0.02225615, 0.019151898, -0.006100534, -0.6396383, -0.012045856, -0.012025611, -0.0060026823, 0.019124905, 0.016385062, 0.0042582266, 0.008948349, -0.044620275, -0.009562452, -0.019705264, 0.012221313, 0.010547715, -0.022863505, -0.029206982, -0.021189908, -0.0048757032, -0.0073219906, -0.005746244, 0.013334796, -0.016169114, 0.01048698, 0.0062894886, 0.0058238506, 0.009866129, 0.008003577, -0.0019705265, -0.0155077735, 0.01731634, 0.0072882487, -0.02255308, 0.012113339, 0.0075176936, 0.0038803176, 0.038546737, -0.0075379387, -0.0065796687, 0.047859497, 0.024199685, 0.037089087, -0.028559137, -0.0019232878, 0.009177795, 0.0012627903, -0.020771509, 0.030826593, 0.016722482, -0.0145764975, 0.004922942, -0.0077673835, 0.0037655951, 0.01585869, 0.0031852345, -0.009656929, -0.015035387, 2.2817955E-4, 0.012241558, -0.033984832, 0.025724819, 0.0033370731, -0.016371565, 0.014009633, 0.013645221, 0.009184543, -0.012012113, 0.020663535, -0.0010729921, 0.0031312476, 6.0229277E-4, -0.03679216, 0.0076054223, 0.010007845, -0.012248307, -0.001818688, 0.007173526, 0.008415228, 0.037143074, 0.0022961358, 3.3910602E-4, 0.022377623, -0.009683923, -2.3935654E-4, 0.0044134394, 0.007153281, 0.017775228, -0.0050983997, -0.044323348, 0.0042919684, 0.011661198, 0.009063072, 0.012889403, 0.0035226534, 0.009555704, 0.010136064, -0.0019536556, 0.0018844847, -0.008381486, 0.0017731364, 0.036441244, -0.06078939, -0.014495516, -0.024267169, 0.038546737, -5.508364E-4, 0.026710082, 0.01989422, -0.019921213, -0.017653758, 0.019867226, -0.010702928, -0.0045922715, 0.0065020625, -0.01173543, 8.009481E-4, 3.711608E-4, -0.027857305, 0.0024850904, 0.022755532, -0.009980852, -0.013105351, -0.0050916513, 0.010689431, 0.0041671237, -0.0016035833, 0.008010325, 0.026264688, -0.0021189908, 0.0016499785, 0.008219524, -0.005172632, 6.984572E-4, 0.0023028841, 0.021311378, -0.014927412, 0.005165884, -0.0040422785, 0.008840376, -7.3683856E-4, 0.01739732, 0.0020042683, -0.02463158, 0.004268349, -0.013085105, -0.0068124877, 0.0023686807, -0.020231638, -0.046131913, 0.0021797263, -1.1535509E-4, -0.023241416, -0.008995588, 0.010756915, -0.0030165252, 0.012659958, 0.008772892, -0.0032358475, -0.012862409, -0.026750572, 0.006866475, -0.025940767, 5.2131223E-4, 0.0085771885, 0.008766144, -0.022485597, 0.027371421, -0.017680751, -0.007652661, 1.2273614E-4, -0.010507225, -0.015710225, 0.02105494, -0.008806634, 0.0019131652, 0.016870946, -5.8795244E-4, 0.015102871, -0.013307802, 0.027884299, 0.01544029, -5.9090485E-4, -0.0073219906, -0.0068428554, -0.021446345, -0.001125292, 0.010041587, 0.038384777, 0.015170354, -0.0038263304, -0.016641501, 0.0070925457, -0.013490008, -0.008064312, -0.0063839657, 0.0054324446, 0.009069821, 0.040760204, 0.006367095, -0.0049803033, -0.011472243, 0.0020245134, 0.039842427, 0.018234119, -0.0013952272, -0.012646461, 0.008152041, -0.025778806, -0.013078357, -0.037790917, 0.0036677436, -0.010662437, 0.029773844, -0.022242654, -0.01839608, 0.022458604, 0.0070588035, 0.029314956, -0.018342093, 0.0114654945, -0.013132344, 0.0028140738, 0.008496208, 0.00144584, 0.022188667, -0.0064210817, -0.027803319, 0.011897391, 0.021041444, -0.013530498, -9.658616E-5, -0.016128624, -0.007011565, 0.0061309016, 0.017869705, 0.012585726, -0.0067382557, -0.016155617, 0.023619324, -0.002250584, 0.037170067, -0.015548264, -0.0046833744, 0.03058365, 0.02434815, 3.616709E-4, 0.008583937, -0.01023729, 0.016924933, 0.016560521, -0.0064784433, 0.05185454, -0.012646461, 0.028694104, -0.0115397265, -0.0058812117, -0.0033826246, -0.02334939, -0.020542063, 0.01714088, 0.034254767, 0.022040203, 0.029908812, -0.029099008, 0.012039107, 0.0057327473, 0.003458544, -0.003229099, -0.022701545, 0.0056956313, -0.0053042253, -0.02434815, -0.010466735, -0.0076864026, 0.016128624, 7.102668E-4, -0.017680751, -0.0030232735, -0.004227859, 0.014387542, 0.015953166, 0.017424313, 0.009184543, -0.029449923, 0.008077809, 0.03471366, -0.019489316, -0.03274313, -0.020150658, -0.0062894886, -0.02834319, -0.016560521, -0.007294997, 0.040679224, -0.009454478, 0.0010358761, -0.012491249, 0.0053683347, 0.009393742, 1.575061E-5, 0.008901111, 0.023457363, -0.006259121, 0.015683232, -0.002193223, -0.0039646723, 0.030178748, -0.0019890845, 0.015062381, -0.009839135, 0.006640404, 0.0013041241, -0.0029287962, 0.010756915, -0.048669305, -0.0054256963, -0.012767931, -0.00873915, -0.0036205049, -4.253587E-4, 0.008887614, -0.020919973, -0.004659755, -0.024402136, -0.014967903, -0.009832387, 0.061383247, 0.033309996, 8.2625455E-4, 0.018166635, -0.02063654, 0.0061477725, -0.0033117665, -0.008995588, -0.011667946, -0.017856209, 0.013415776, -0.022917492, 0.023160433, -0.002053194, 0.019111408, -0.006373843, -5.023324E-4, -0.016708985, -0.01843657, -0.012875906, -0.032338228, -0.026710082, 0.035442483, 0.031177508, 0.009373497, -0.015291825, 0.021837752, 0.0069508296, -0.0053649605, 0.008273512, -0.019219382, 0.005280606, 0.006222005, 0.006195011, 0.0067180106, -0.0026841674, 0.027114984, 0.013692459, 0.02612972, 0.010264283, -0.009609691, 0.0017410816, -6.8580394E-4, -4.5551555E-4, 0.012066101, -0.029449923, -0.011809662, 0.025373902, 0.03525353, -0.03357993, 0.010790657, 0.0050916513, -0.022998473, -0.03104254, 0.0012518242, -0.010540967, 1.15144205E-4, -0.0115397265, -0.031150514, 0.012869158, 7.920909E-4, -0.045592044, 0.007882106, -0.008914608, -0.010149561, -0.014239078, -0.018450066, -0.00384995, -0.019880723, 0.0047204904, -0.0050207935, -0.017896699, -0.009090066, -0.001909791, 0.02105494, -0.006329979, 0.03598235, -0.009704168, 0.012990628, 0.010918876, -0.04256877, -0.023200925, 0.019813238, -0.029287962, -0.013415776, 0.0063940883, -0.0043729492, 0.02434815, -0.0023602452, 0.0070925457, -3.7812008E-4, -0.0029119253, -0.004072646, -0.010399251, 0.03919458, 0.011202308, 0.015548264, 0.0018170008, 0.0063097337, 0.007929345, -0.008091305, -0.032338228, -0.004976929, -0.016816959, -0.015926173, -0.02209419, 0.0066808946, -0.008374738, -0.003799337, -0.00931951, -0.028019266, -0.024375143, -0.0014686158, 0.0044876714, 0.0033944342, 0.008057564, 0.019786244, 0.001535256, -0.013031119, 0.004970181, -0.0074839513, -0.012916396, 0.017572777, 0.024186188, -0.002582942, 0.017707745, -0.009764903, -0.020528566, 0.0075716805, 0.03733203, 4.4033167E-4, 0.013476511, -0.018234119, -2.0919973E-4, -0.013800434, -0.023740795, 0.017950686, 0.011640953, -0.0022252777, 0.01094587, -0.015683232, 0.002140923, 0.015534767, 0.007099294, -0.0060904115, -0.030853586, -0.002390613, -0.0022016584, 0.01985373, 0.021527328, -0.010723173, 0.019003434, -0.018180132, -0.0057968567, -0.015467283, -0.040841185, -0.03317503, -0.015183851, 0.04556505, 0.00528398, 0.04864231, -0.008509705, 0.02716897, 0.0039815432, 0.0092857685, 0.035928365, -0.027492894, -0.005634896, -0.019529806, 8.916295E-4, 0.015966663, 0.010547715, 0.011991868, 0.017923692, 0.0016997478, 0.020123664, 0.003333699, 0.032230254, 0.016209604, -0.0109256245, -0.036252286, 0.014684471, -0.025198445, -0.011904139, -0.03463268, -0.020461082, 0.009413987, -0.012518242, -0.0068462295, 0.0012028984, 0.027519887, -9.877939E-4, 0.0041435044, -0.025252432, 0.01052747, -0.028856065, 0.005014045, -0.010001097, -8.481868E-4, 0.0043088393, -0.0143335555, 0.015723722, 8.8319404E-4, -0.015669735, -0.0044674263, 0.032905094, -0.016654998, -0.031285483, 0.02567083, -0.0145764975, -1.3950163E-4, -0.03749399, -0.013267311, -0.028451163, -0.016263591, -0.0077336417, -0.017451307, -0.001071305, -0.014306562, -0.04588897, 0.03341797, 0.009913368, 0.04194792, 0.006495314, 0.043675505, 0.027222957, 0.008307254, -0.020461082, 0.0076796543, -9.1356173E-4, -0.0033218893, 0.011431753, 0.026035244, -0.021702785, -0.001872675, 0.01110783, -0.008556943, -0.024159195, -0.037251048, 0.021189908, 0.025657333, 0.030394696, -0.02475305, -0.0036340016, -0.029287962, 0.0012501371, -0.0097784, 0.015534767, 0.013253815, -0.037790917, -0.021243894, -0.0056483927, -0.015102871, 9.565826E-4, -0.008583937, -0.032311235, 0.030151755, -0.030097768, 3.422693E-4, -0.017410817, -0.016776469, 0.03927556, -0.020987457, 0.009616439, 0.013692459, 0.0143335555, 0.004956684, 0.0013581112, 0.009643433, 0.030097768, -0.014077117, 0.020987457, 0.007510945, 0.0012003678, 0.0029945928, 0.01410411, -0.024334652, -0.025198445, -0.017275847, -0.004855458, 0.026035244, -3.2708546E-4, 0.009413987, -0.004690123, -0.018787485, -0.02504998, -0.0021442971, -0.0015630932, 0.008590685, -0.038681705, 0.009515214, -4.335833E-4, 0.005513425, -0.004231233, -0.0139421495, -0.0032594667, -0.005672012, -0.0013699208, -0.010581457, 0.0015630932, -0.021824256, -0.016331075, -0.044404328, -0.025306419, -0.018760491, -0.011937881, 0.0025424515, -0.010432993, 0.013463015, 0.0051523866, 0.006883346, -0.010628696, -7.570837E-4, -0.027695345, -0.0038330788, 0.018544544, -1.0792133E-4, -0.014090613, 0.0053447154, 0.032068294, -8.5324806E-4, 8.9574176E-5, -9.582697E-4, 0.011924384, 0.033229016, -0.018274609, 0.014954406, 0.0061241533, -0.010406, -0.009569201, 0.003014838, 0.031069534, 0.007011565, 0.0018844847, -0.03927556, -0.013678962, -0.008374738, 0.04764355, -0.0025998128, -0.003107628, 0.03749399, 0.02097396, 0.02459109, 0.026278185, -0.018895458, -0.027614364, 0.010453238, -0.0066100364, -0.022903996, -0.0018659265, 0.011438501, 6.798991E-4, 8.9669076E-4, -0.0023619323, -0.022539584, -0.0052941027, -0.018720001, -0.02966587, 0.0041974913, 0.015494277, 0.02363282, 0.0042885942, -0.006670772, 0.011769172, 0.0064851916, 0.007463706, -0.01959729, 0.0035563954, 0.023484357, -0.004173872, 0.02259357, 0.0065223076, -0.03519954, -0.0034214277, -0.0019384717, 0.022769028, 0.013820679, 0.027438907, -0.011445249, 0.0026841674, -0.004760981, -0.006215256, -0.019921213, -3.9330393E-4, 0.013705957, -0.037601963, 0.0037689693, 0.0148734255, 0.013901659, 0.00374535, 0.011350772, 0.015534767, -0.009690671, -0.020002194, -0.0096029425, -0.036306277, -5.984968E-4, -0.022957982, 0.014630484, 0.012464255, -0.006225379, 0.042055894, 0.024807038, -7.7521993E-4, 0.008165537, -0.005921702, 0.016803462, -0.0054088254, -0.0026082483, 0.015683232, 0.01967827, -0.028073253, 0.022903996, -0.02093347, 0.006299611, 0.0015453786, 0.0056079025, -9.911681E-4, 0.041462038, 0.010993108, -0.0586839, 0.0064008366, -0.0057361214, 0.012491249, -0.009569201, -0.006437953, -0.02488802, -0.018139642, -0.013651969, 0.0067112623, -8.865682E-4, -0.019570297, -0.0025289548, -0.017626764, -0.007760635, 0.023902755, 0.17891301, -0.009076569, 0.009353252, 0.049371134, 0.011458746, 0.0195568, 0.028559137, 0.010439741, -0.008860621, 0.003107628, -0.007929345, 1.5436915E-4, 0.006292863, 0.0041401302, 0.022809519, -0.0037251047, -0.023929749, -0.018072156, -0.02567083, -0.022283144, -0.020650037, 0.00349566, -0.0072005196, -0.023376383, 0.005226619, -0.008415228, -0.0030637637, 0.010095574, 0.022796022, 0.007821371, -0.012632964, -0.0030080897, -4.352704E-4, 0.001980649, -0.020501573, -0.0033944342, -0.013651969, -9.641746E-4, 0.010736669, -0.0010274405, -0.003549647, -2.4568316E-4, -0.006923836, -0.0066100364, 0.005634896, 0.021473339, -0.030907573, 0.008388234, -0.02355184, -0.0012121774, -0.043756485, -0.009886374, 0.013678962, 0.021162914, -0.0051928773, -0.009353252, 0.012835415, 0.008003577, -0.018301602, 0.01348326, 0.0060330504, 0.036927126, -0.04402642, 0.007693151, 0.00229951, 0.008712157, -0.018207125, -0.008064312, 0.010230541, -0.041138113, -0.008435473, -0.029611884, -1.04599865E-4, 0.008644673, -0.0032004183, 0.0014222207, -0.005459438, 0.004443807, 0.009009085, 0.00915755, -0.02059605, -0.014455026, 0.015588754, -0.011829907, -0.01552127, -0.008327499, -0.002409171, -0.018706504, -0.00865817, 0.003728479, -0.009744658, -0.031528424, -0.020677032, -0.004561904, -0.01377344, -0.012842163, 0.025319915, 0.009245278, -0.018693008, -0.014077117, -0.028937045, 0.027749332, 0.016843952, -0.0044910456, -0.032770123, -0.0050410386, 0.012369777, 0.008165537, 0.024010729, -0.01410411, -0.016641501, -0.016412055, -0.003586763, -0.009373497, 0.004582149, 0.020191148, 0.0015656238, -0.010439741, 0.037682943, -0.02235063, 0.01652003, -0.035307515, 0.022404617, 7.9293444E-4, 0.0050174193, -0.013705957, -0.02612972, 0.013901659, -0.0061848885, -0.02796528, 0.012363029, -0.02950391, 0.011674695, -0.006296237, 9.506778E-4, 0.0045754006, 0.022202164, 0.0020093296, -0.0015065755, -0.012336035, -0.00474411, -0.015872186, 0.013503505, 0.00857044, 0.004818342, -0.03781791, 0.0029861573, -0.0071397843, -0.010655689, -0.036090326, -0.02343037, -0.0022067197, 0.0064986884, 0.031285483, 0.05803605, 0.0017343332, -0.020838993, -0.05417598, -0.019691767, 0.037224054, -0.02571132, 0.023457363, 0.018031666, -0.010689431, -0.03171738, -0.01614212, -0.17265052, 0.017788725, 0.009130556, -0.03295908, 0.021473339, 0.020258632, 0.027749332, -1.5784879E-4, 0.0065155593, -0.01219432, 0.021567818, -0.0073557324, -0.031231495, 0.0064649465, 0.008975343, 0.0063805915, 0.005827225, 0.03833079, 0.030934567, 0.0046462584, 0.036927126, -0.013139092, -0.009366749, -5.727686E-4, -0.004868955, -0.0034534826, 0.025144458, 0.0026268063, 0.0075379387, -0.0022235906, -0.041435044, -0.010304773, 0.013928653, 0.0059925597, -0.020447586, 0.014900419, -0.011303534, -0.0095287105, -0.010979611, -1.6660058E-4, 0.03800687, 0.009650181, 0.02063654, 0.00484871, 0.022728538, 0.029881818, 0.018746994, -0.02850515, 0.0151163675, -0.02063654, -0.008104802, -0.03781791, 0.021824256, -0.00844897, -0.010082077, 0.01901693, 0.009076569, -0.0043763234, 0.005925076, 0.0103857545, -0.033471957, -0.0053919544, 0.008347744, -0.015345812, -0.0032746505, -0.013037867, -0.014697968, 0.016668495, -0.035280522, 5.871089E-4, -0.03374189, 0.0050207935, 0.015534767, 0.0042008655, 0.015143361, -0.024982497, -0.034254767, 0.016547024, 0.0038229562, 0.022823015, -0.01031827, 0.026656095, -0.0015048884, 0.01231579, 0.0016778156, 0.008840376, 0.018409576, -4.2156276E-4, 0.0033471957, -0.015048884, 0.009204788, -0.007983332, -0.02355184, 7.2292E-4, -0.004585523, 0.006512185, 0.007915848, 0.009771652, 0.014603491, -9.3718106E-4, -0.008172286, -0.017127384, -0.020218141, 0.023484357, 0.020447586, 0.013078357, 0.009440981, 0.022769028, 0.011681443, 0.00214261, -0.013220073, -0.0031801732, 0.011991868, 0.011742178, -0.008995588, 0.009009085, -0.023970239, -0.02326841, -0.0030249606, 0.034065813, 0.04448531, 0.0017225236, 0.004052401, -0.019664774, -0.007956338, -0.01985373, -0.079468906, -0.0020768135, 0.014050123, 0.034983594, -0.031015547, 0.043351583, -0.007119539, 0.016304081, -0.028289203, 0.025076974, 0.003957924, -0.035469476, 0.0064312047, 8.1697555E-4, 0.01094587, -0.005763115, -0.00898884, -0.0063974624, -0.0055370443, 0.030529663, 0.0043223365, -0.013753195, -0.014225582, -0.0103857545, -0.02571132, 0.007247758, -0.025130961, 0.02259357, 0.0051962514, 0.0057226247, 0.0035260275, -0.028451163, 0.028532144, -0.03565843, -0.021756772, -0.03042169, -0.025751812, -0.035064574, 0.0047677294, -0.05018094, 0.012059352, 0.017950686, -0.0059486954, -0.013570989, -0.022769028, -0.0029861573, -0.019691767, 0.038519744, 0.0056585153, -0.018962942, -0.0090428265, -0.021405855, -0.03590137, -0.00919804, 0.0088201305, 0.022499094, 0.027830312, 0.003107628, -0.024145698, -0.009245278, -0.004170498, -0.005904831, -0.017748235, 0.014967903, 0.0040962654, 0.006765249, 0.0048048454, -0.0069508296, 0.015318818, -0.017707745, -0.032932088, 0.008840376, -0.03125849, -0.02097396, -0.024685567, -0.005496554, -0.014967903, -0.013031119, 0.033229016, -0.036522225, -0.0036846146, -0.030178748, 0.010034839, -0.01697892, 0.016344571, 0.018274609, 0.007996828, 0.011546475, -0.004855458, -0.038384777, -0.010439741, 0.017032906, 0.009454478, -0.0074907, -0.002210094, 0.013915156, 0.008077809, 0.0038938143, -0.012950138, 0.006545927, -0.00861093, 7.132192E-4, -0.07649962, 0.021068437, -0.027627861, 0.0026487384, -0.014198588, -0.0034450472, 3.8824262E-4, 0.012437261, 0.00588796, 0.029773844, -0.0077336417, 0.015035387, -0.0040085367, -0.0041974913, -0.012626216, 0.01231579, -5.3944846E-4, -0.006026302, 0.0047846003, -0.010837896, -0.025400896, 0.007328739, 0.025157955, 0.010014594, 0.00374535, 0.017167874, 0.01273419, 4.9389695E-4, -0.005472935, -0.01743781, 0.036684185, -0.016331075, 0.0010139438, 0.0044741747, -0.0010055084, -0.027438907, -0.007976583, -0.0043088393, 0.010244038, 0.004922942, 0.0059689404, -0.024267169, -0.010891883, -0.008685163, 0.002409171, 0.009083318, -0.0073759775, 0.0033303248, -0.0041839946, 0.020838993, 0.026521126, 0.00399504, -0.017343333, -0.020312618, 0.02504998, -0.021486836, 0.058144026, 0.0046833744, -0.0025947515, -0.014603491, 0.029018026, 0.011134824, 0.027438907, -0.039302554, 0.012153829, 0.0032729635, 0.0027195965, -0.0072005196, 0.009312762, -0.032527182, -0.010014594, 3.5323543E-4, 0.008172286, 0.029692864, 0.011377766, 0.0054155737, 0.006424456, 0.014940909, -0.0029119253, 0.0274659, 0.028532144, -0.0052333674, -0.036549218, 0.023970239, 0.0010594954, 0.026413152, 0.0013403966, 0.020326115, 0.001481269, 0.005584283, -0.026683088, 0.015548264, 0.0038128337, 0.0011894017, 0.0096029425, 0.015764212, -0.020339612, -0.011971623, 1.639645E-4, 0.025792303, -0.0064683207, -0.0055606635, -0.007774132, -0.0023281905, -0.0199752, 0.010392503, -0.015723722, -0.0025542611, 0.005655141, 0.012835415, 0.02934195, 0.001978962, -0.011883894, 0.0026993514, -0.03042169, 0.016331075, 2.0234591E-4, -0.017964182, -0.020987457, 0.046455838, 0.016762972, 0.010952618, 0.027074493, -0.005496554, 0.04893924, 0.018814478, 0.020501573, -0.033202022, 0.0062321275, 0.0071600294, 0.007112791, -5.9934036E-4, -0.019570297, 0.008887614, -0.018544544, 0.014198588, 0.0120053645, 0.03733203, -0.015926173, 0.085731395, 0.018962942, -0.010507225, 0.019840233, -0.004615891, 0.008057564, 0.023416873, 0.024091711, -0.021243894, -0.007659409, 0.014616988, -0.01098636, 0.007193771, -0.030151755, 6.0440163E-4, -0.011985119, 0.012653209, 8.241457E-4, -0.0021577938, -0.005614651, -0.0025964386, -0.012221313, 0.011890642, 0.011870397, -0.002603187, -0.009069821, 0.0102912765, 0.0072207646, -2.7710528E-4, -0.033444963, -0.0036643695, -0.024442626, -0.010001097, 0.0010611825, 0.028397176, -0.0071262876, -0.0023602452, 0.0092115365, 0.025117464, 7.8829494E-4, -0.013118847, 0.005277232, -0.020812, -0.014009633, 0.023214422, -0.009940362, -0.011910887, -0.033606924, -0.017964182 ], + "id" : "f7b16d95-7f4a-48c4-ad05-16af4d490215", + "metadata" : { + "source" : "movies.csv" + } + }, + "5b6d70ab-1e47-4c1d-a3a4-7c483cdd07cf" : { + "text" : "3,4819,Hugh Jackman-Russell Crowe-Anne Hathaway-Amanda Seyfried-Sacha Baron Cohen-Helena Bonham Carter-Eddie Redmayne-Aaron Tveit-Samantha Barks-Daniel Huttlestone-Cavin Cornwall-Josef Altin-David Hawley-Adam Jones-John Barr-Tony Rohr-Richard Dixon-Andy Beckwith-Stephen Bent-Colm Wilkinson-Georgie Glen-Heather Chasen-Paul Thornley-Paul Howell-Stephen Tate-Michael Jibson-Kate Fleetwood-Hannah Waddingham-Clare Foster-Kirsty Hoiles-Jenna Boyd-Alice Fearn-Alison Tennant-Marilyn Cutts-Cathy Breeze-John Albasiny-Bertie Carvel-Tim Downie-Andrew Havill-Dick Ward-Nicola Sloane-Daniel Evans-David Stoller-Ross McCormack-Jaygann Ayeh-Adrian Scarborough-Frances Ruffelle-Lynne Wilmot-Charlotte Spencer-Julia Worsley-Keith Dunphy-Ashley Artus-John Surman-David Cann-James Simmons-Polly Kemp-Ian Pirie-Adam Pearce-Julian Bleach-Marc Pickering-Isabelle Allen-Natalya Wallace-Phil Snowden-Hadrian Delacey-Lottie Steer-Sam Parks-Mark Donovan-Lewis Kirk-Leighton Rafferty-Peter Mair-Jack Chissick-Dianne Pilkington-Robyn North-Norma Atallah-Patrick Godfrey-Mark Roper-Paul Leonard-Miles Roughley-Cameron Strefford-Alfie Davis-Joseph West-Joel Phillimore-Jacqueline Dankworth-Amelia Jefford-Chris Barnes-Richard Cordery-Killian Donnelly-Fra Fee-Gabriel Vick-George Blagden-Hugh Skinner-Stuart Neal-Alistair Brammer-Iwan Lewis-Katy Secombe-Hadley Fraser-Linzi Hateley-Gemma Wardle-Gina Beck-Katie Hall-Lisa Hull-Andrea Deck-Jessica Duncan-Kerry Ingram-John Warnaby-Michael Sarne-Freya Parks-Richard Bremmer-Alexander Brooks-Eleanor Bruce-Emma Dukes-Stephen Matthews-Peter Saracen-Sebastian Sykes-Phil Zimmerman-Bessie Carter-Helen Cotterill-Tricia Deighton-Mandy Holliday-Charlotte Hope-Jackie Marks-Sara Pelosi-Mary Roscoe-Amelia Scaramucci-Caroline Sheen-Rachael Archer-Lorna Brown-Antonia Clarke-Mary Cormack-Sonya Cullingford-Holly Dale Spencer-Amy Griffiths-Fania Grigoriou-Amanda Henderson-Alexia Khadime-Luisa Lazzaro-Gemma O'Duffy-Amy Ellen Richardson-Olivia Rose-Aaron-Robyn Miranda Simpson-Rachel Stanley-Nancy Sullivan-Rebecca Sutherland-Tabitha Webb-Gerard Bentall-Tony Bignell-Michael Cahill-Richard Colson-Kerry Ellis-Simon Fisher-Becker-Sarah Flind-Kelly-Anne Gower-James Greene-Nick Holder-Chris Howell-Alison Jiear-Terence Keely-Martin Marquez-Sally Mates-Jeff Nicholson-Adam Searles-Simon Shorten-Juliet Alderice-Sean Buckley-Valerie Cutko-Spike Grimsey-Matt Harrop-Georgina Jackson-Perry Millward-Phil Philmar-Joyce Springer-Julie Stark-Dominic Applewhite-Matthew Corner-Andy Coxon-Jonathan Dudley-Rhidian Marc-Chris Milford-Jamie Muscato-Joseph Peters-David Roberts-Stevee Davies-Jonny Purchase-Matt Seadon Young-Jos Slovick-Samuel J.", + "embedding" : [ 0.008184468, -0.019099323, -0.0031235493, -0.030221635, -0.03667284, 0.04119672, 0.003650554, -0.0056146923, -0.012614655, -0.039242618, 0.01515097, 0.024586866, 0.020812508, -0.012795342, 0.0055879243, 0.0054540816, 0.020531438, -0.01861749, 0.010627094, -0.04047397, -0.0021732675, -0.0079234755, -0.029927181, 0.018135658, -0.012875648, 0.014602216, 0.03477228, -0.005959337, -0.020049606, -0.0060061817, 0.006912965, -0.020919582, -0.004306382, -0.03498643, -0.019353624, 0.009034368, 0.007408182, -0.022820145, 0.018992249, 0.0050860145, -9.921074E-4, -0.0010280777, -0.008171084, -0.007615638, -0.012534349, 0.002635024, 0.012025748, -0.020410981, -0.013578321, 0.02059836, 0.03635162, 0.02941858, -0.028133692, -0.016502779, -0.018416727, 0.01052002, -0.026433893, 0.009087905, -0.0049320958, 0.015726494, 0.028213998, -0.009877576, -0.03257726, -0.018818254, -0.018952098, -0.017064918, -0.010720784, -0.024372717, 0.0042662295, 0.014468374, 0.013698779, 0.0071338047, 0.008954063, -0.001985888, 0.014521911, -0.027344022, -0.03281818, -0.0074884873, 0.0036639383, 0.005474158, 0.0036237855, -0.0070601916, -0.012179667, 0.008164392, 0.0081577, 0.014428221, -0.019661462, 0.030810542, -0.019045787, 0.014106999, 0.017051533, 0.031827744, -0.011791524, -0.009583122, 0.010787705, 0.022699688, -0.01074086, 0.024934856, -0.01798843, -0.036940526, 0.0017633749, -0.010051571, -0.0117781395, -0.009281977, -0.0015659572, 0.0040487354, -0.0064746304, -0.00954297, 0.00472464, 0.0163154, 0.021495104, -0.014762827, 0.017814435, -0.03348739, -0.004674449, -0.028481683, 0.026808651, -0.020692049, -0.013056335, -0.010908163, 0.023690121, 0.033326782, 0.005310201, -0.036244545, 0.027892776, 0.024292413, -0.016168173, -0.014468374, 0.007575485, -6.947262E-4, 0.016141405, -0.01499036, 0.025737911, 0.01499036, -0.01773413, 0.05254656, -0.032871716, 0.009389051, -0.019460699, -0.01833642, 0.028481683, 0.038412794, -0.022539075, -0.013718856, -0.020812508, -0.0058689932, 0.02560407, -0.0072274944, 0.007040115, 0.021160498, 0.02271307, 0.03338032, 0.011008545, 0.0123938145, 0.016837386, 0.0021632293, -4.4251673E-4, 0.0013618474, 0.0017299142, -0.027103106, -1.0958354E-4, -0.0028123653, 3.4046185E-4, -0.018563954, -0.011349844, 0.021214034, 0.009636659, -0.021468336, -0.014454989, 0.0052901246, -0.0013827602, 0.02378381, -0.03351416, 0.0214148, 0.016904308, 0.013518091, -0.009435896, -0.013210254, -0.028990284, -0.022739839, 9.979631E-4, 0.008994215, 0.045024615, 0.039885063, -0.0124071995, 0.014602216, 0.022579229, -0.011209309, 0.010125184, -0.0058355327, 0.0022836875, 0.017787667, 0.004092234, -0.0031904704, -0.6184594, -0.013210254, -0.008211237, -0.014521911, 0.041437637, 0.014695906, 0.005942607, -0.0068426975, -0.033995993, -0.011791524, -0.028535219, 0.011798216, 0.031078227, -0.011978903, -0.009656736, -0.019126093, 0.008097471, -0.015124202, 0.013651934, 0.017841205, -0.015084049, 0.022217853, 0.015672956, -0.004082196, 0.012929184, -0.0026935802, -0.01817581, -0.027129874, 0.016609853, -0.008197852, -0.020477902, 0.016342169, 0.009609891, 0.007890015, 0.042990208, 5.6004716E-4, -0.008927294, 0.053644072, 0.02718341, 0.036860224, -0.027571553, -0.0048183296, 2.5722853E-4, 0.0120659005, -0.031292375, 0.028187228, -0.010339333, 0.012621347, -0.009141442, -0.011262846, -0.010908163, -0.0064010173, 0.0015860335, -0.009288669, -0.01533835, -0.0015751588, 0.015365118, -0.038787555, 0.023261825, 0.0041591553, -0.023797195, 0.027544785, -0.0039684298, 0.008144315, 0.007428258, 0.028106924, 0.0079636285, -0.010031495, 0.008023857, -0.032657567, 0.008826912, 0.009489433, -0.02283353, -0.0013585013, 0.0068393513, 0.013384249, 0.020250369, -0.0037375516, -0.009081213, 0.011918674, 0.0039048546, 8.8419695E-4, 0.008733222, 0.01703815, 0.030355478, 8.2480436E-4, -0.053376388, 0.0034163296, 0.008612764, -0.006384287, 0.0047547547, 0.021615563, 0.016168173, 0.00922844, -0.022659535, -0.0029211123, 4.5631925E-4, 0.0066820863, 0.0155926505, -0.055732016, -0.0026935802, -0.015204507, 0.045559984, -0.016114635, 0.022900451, 0.016609853, -0.0126615, -0.011517147, 0.015057281, -0.0044904156, -0.014602216, -0.0020176757, -0.016877538, -0.0089206025, -0.019728383, -0.026072517, 0.0077227117, 0.024078265, -0.017627057, -0.0020160025, 0.010151953, 0.010325949, 0.011028621, -0.012996106, 0.0117647555, 0.038252186, -0.013016182, -0.007695943, 0.0031938164, 0.014200688, 0.01499036, -0.0137054715, 0.018751333, -0.02627328, 0.013397633, 0.009549662, 0.008238005, -0.008619457, 0.0059961434, 0.001101691, -0.01959454, -0.014602216, -0.0149368225, -0.019955916, -0.011771447, -0.004895289, -0.03846633, 0.0032540455, -0.007194034, -0.003392907, -0.0023690122, 0.020799123, -0.0023004177, 0.014401453, 0.0033510814, -0.0013576648, -0.017131839, -0.008552535, 0.01225328, -0.031078227, 0.006277213, 0.030703468, 0.0028642293, -0.014428221, 0.019701615, 0.0054072365, -0.010265719, 0.006906273, 0.0058121104, -0.0092485165, 0.020906197, -0.017118454, 0.011162464, 0.009402435, -0.011985595, 0.03134591, -0.0063775945, 0.036458693, 0.01269496, -0.006548244, 1.1868065E-4, -0.019487467, -0.030034255, -0.024867935, 0.03099792, 0.026701577, 0.019273318, -0.0114368405, -0.01470929, -0.008224621, -0.017225528, -0.02343582, 0.0042227306, -0.0082915425, -4.960537E-4, 0.02548361, 0.010091724, 0.00153166, 0.005062592, -0.020089759, 0.035575334, 0.01766721, 0.012862263, -0.0017332602, 0.022699688, -0.024841167, 0.010988468, -0.019259935, 0.008037242, -0.007568793, 0.025590684, -0.036860224, -0.030917617, 0.009737042, 0.0016914345, 0.023984574, -0.008519075, 0.008739915, 0.005477504, 0.0043699574, 0.007863247, -0.006859428, 0.005099399, 0.018818254, -0.025684373, 0.004831714, 0.012909109, -0.02453333, -0.0016261863, 0.0018637567, -0.014829748, 0.0046342965, 0.0029361697, 0.0117781395, -0.009964573, -0.017051533, 0.013919619, -0.005581232, 0.036244545, -0.0133374045, -0.0020595014, 0.00998465, 0.01624848, 0.0043264586, 0.005096053, -0.011804908, 0.019554388, 0.022739839, -0.008365156, 0.04510492, 0.0028056733, 0.030703468, 0.0054540816, -0.0062035997, 0.008304927, -0.0072676474, 0.0019624655, 0.028267534, 0.027946312, 0.03083731, 0.019648077, -0.017801052, 0.022980755, 0.0067590456, -0.0018938712, 4.1428435E-4, -0.023676736, 8.084923E-4, -0.011249461, -0.040714886, -0.028053386, -7.3874784E-5, 0.0026785228, -1.6583921E-4, -0.01225328, -0.013444479, 0.005096053, 0.016342169, 0.0029746494, 0.024814399, 0.001129296, -0.03996537, 0.023449205, 0.038974933, -0.02185648, -0.029793339, 2.8755222E-4, -0.019126093, -0.03619101, -0.008391924, -0.0036304777, 0.04122349, -0.027732164, 0.0055276947, -0.010238951, 0.012226512, 0.028588757, -0.017238913, 0.01319687, 0.0143613, -0.012875648, 0.0022318235, -0.0045339144, -0.011550607, 0.020116527, -0.013243714, -0.015003744, -0.006651972, -0.008371848, -5.479177E-4, 0.0024409525, -0.004038697, -0.040233053, 0.009121366, -0.014963591, 0.008311619, -0.0061467164, 0.020825893, 0.005062592, -0.028187228, -0.023529511, -0.03723498, -0.031613596, 0.005417275, 0.091548264, 0.042668987, 0.004731332, 0.004687833, -0.013745624, -0.008826912, -0.004985633, -0.01647601, -0.009000908, -0.02434595, 0.023997959, -0.0021548641, 0.01934024, 0.010727475, 0.011236077, -0.008980831, -0.01959454, -0.012280049, -0.010975084, 0.0035802866, -0.020143295, -0.025818218, 0.009081213, 0.037529435, 0.01845688, -0.017934894, 0.01354486, 0.016114635, 0.017453061, 0.013042951, -0.0033126017, 0.0015500634, -0.0058689932, 0.023074446, 0.0076424065, 0.007916783, 0.03495966, 0.009154826, 0.028240766, -0.0077160196, -0.007729404, 0.0082647735, 0.020397596, 0.00441011, 0.015378502, -0.016235095, -0.0101385685, 0.033648003, 0.040233053, -0.039108776, 0.0114636095, 0.026126055, -0.012179667, -0.013658626, 0.0127083445, -2.1435712E-4, -0.009382359, 0.004025313, -0.021562025, 0.007756172, -0.004821676, -0.021347877, 0.00448707, -0.018724564, -0.0078097093, -0.01260127, -0.016890923, -3.364884E-4, -0.013558244, 0.001474777, 0.0040353513, -0.010995161, 0.007629022, 0.0063274037, 0.022043858, 0.014147151, 0.022498922, -0.006160101, 0.0114234565, 0.01124277, -0.04170532, -0.02692911, 0.0081577, -0.015485576, -0.0012313509, 0.002947881, -0.01310318, 0.015084049, -0.019420546, 0.0098909605, -0.0038981626, -0.0025346421, -0.026755115, -0.011530531, 0.03249696, 0.017894741, 0.013163409, 0.013645242, 0.004500454, 0.011055389, 0.0015534094, -0.03669961, -0.012273356, -0.019500852, -0.009603199, -0.016194941, 0.0038011267, -4.885251E-4, -0.014147151, -0.031185301, -0.020879429, -0.01408023, -0.017265681, -0.0111089265, 0.0019875611, 7.490997E-4, 0.020103142, 0.025537148, -0.012085977, 0.023382284, 0.0045372606, -0.008994215, 0.015177739, 0.02488132, -0.01719876, 0.03870725, -0.010673938, -0.01524466, -0.011838368, 0.026514199, 0.012674884, 0.011202617, -0.013524784, -0.02255246, -0.0055210027, -0.018657643, 0.002574795, 0.0010096743, -0.020986503, 0.008164392, -0.018938713, 0.0060965256, 0.0143613, 0.017225528, -0.010024803, -0.027330637, 0.014883285, -0.020477902, 0.015284813, 0.019300088, 0.011517147, 0.0037977807, -0.021709252, -0.014133767, -0.005534387, -0.022873681, -0.006611819, 0.0013534823, 0.02576468, 0.025323, 0.033621233, -0.0014270956, 0.02280676, 0.020491285, 0.017867973, 0.0142809935, -0.025349768, -0.0065783584, -0.029338274, -0.0037174753, 0.0072208024, 0.013056335, 0.010359409, 0.01959454, -2.338061E-4, 0.021026656, 0.0021030002, 0.013558244, -0.0012079285, -0.0182695, -0.024948241, -2.041098E-4, -0.031667132, -0.0010991815, -0.02110696, -8.3986163E-4, 0.027196795, 0.007869938, 0.0021682484, -0.0013133294, 0.023422437, -0.006123294, 0.013317328, -0.029605959, 0.009556354, -0.021802941, 0.0032540455, -0.024399487, -0.016596468, 0.009904345, -0.012340277, 0.027705396, 0.011302998, -0.025189158, -0.0070601916, 0.041598246, -0.018055351, -0.023141367, 0.029820107, -0.023194904, -0.004657719, -0.03335355, -0.007521948, -0.02104004, -0.011001853, -0.0027755587, -0.012835495, 0.0014187305, -0.019112708, -0.020678665, 0.019380393, -0.004774831, 0.027156642, 0.013464555, 0.04210685, 0.021508489, 0.011162464, -0.01880487, 0.008304927, -0.008398617, -0.002034406, 0.02066528, 0.038546637, -0.021910015, -0.007629022, -0.004015275, -0.0042227306, -0.030730236, -0.027598321, 0.037288517, 0.014066846, 0.031961586, -0.023743657, -3.1578462E-4, -0.033460625, 0.015017128, -0.011550607, 2.9194393E-4, 0.016114635, -0.02371689, -0.017439676, 0.005845571, 3.3460624E-4, 0.012025748, 0.013645242, -0.03214897, 0.007568793, -0.02746448, -4.1804867E-4, -0.01373224, -0.012427275, 0.029445348, -0.034799047, 0.012085977, 0.013002798, 0.017091686, 0.013464555, -0.009650044, 0.0031386064, 0.03222927, -0.029739803, 0.015043896, 0.014548679, 0.006387633, 0.011697833, 0.01647601, -0.015860336, -0.023248442, -0.01782782, -0.008117547, 0.026099285, -0.00916821, 0.0031787592, 0.01594064, -0.008572612, -0.00273206, 0.011851753, -0.008304927, 0.0045807594, -0.024546713, 0.008017166, 0.0012765228, 0.007823094, -0.009462664, 0.0035669024, -0.0070668836, -0.00622033, -0.0010816146, -0.0029160932, -0.014789595, -0.016824001, -0.009663428, -0.03795773, -0.021441568, -0.019888995, -0.008846989, 0.0012204762, -0.019233165, -0.0011418437, 9.1493894E-5, 0.001207092, -0.0066252034, -0.0010657208, -0.029472116, 0.0010054917, 0.0073412606, -0.0021966898, -0.0019775229, -7.732541E-5, 0.021347877, -0.014294378, -0.0059861057, -0.0015684667, 0.018309653, 0.038439564, -0.019460699, 0.01896548, 0.012681576, -0.014347916, -0.008987524, 0.012681576, 0.02113373, 0.025456842, -0.008217929, -0.024760861, -0.0155792665, -0.004978941, 0.036619306, -0.011269538, 0.012628039, 0.028776135, 0.020919582, 0.04280283, 0.031265605, -0.018215964, -0.021013271, -0.0056046546, -0.0043197665, -0.020370828, -0.0050759767, 0.010319256, -3.4569006E-4, 0.014762827, -0.020866044, -0.025416689, -0.0052901246, -0.020892814, -0.034290448, -0.009322129, 0.02113373, 0.021093577, 0.016422475, 0.005216511, 0.0047045634, 0.012360354, 5.2517495E-5, -0.011704526, -0.008833605, 0.021374647, 0.017051533, 0.025938675, 0.020129912, -0.024319181, -0.011129003, 0.011443533, 0.023315363, 0.008746607, 0.02129434, -0.005310201, -0.023797195, -0.019621309, 0.0029779954, -0.006608473, -0.004995671, 0.030917617, -0.020638512, -0.0021264227, 0.013216946, 0.023061061, -0.015980793, 0.020464517, 0.018162426, -0.012266665, -0.0015442078, -0.020263754, -0.028669061, 0.007287724, -0.024225492, 0.021093577, 0.008994215, 0.0037375516, 0.037743583, 0.015485576, -0.001775086, 0.012460736, -0.0025128927, 0.010861319, -0.009014292, -0.0022786683, -0.0036204394, 0.022565844, -0.031131763, 0.001474777, -0.035013195, 0.0017884703, -0.008686378, -0.013444479, 0.0040119286, 0.030409014, -0.00166132, -0.047674697, 0.016168173, -0.014053462, 0.0065248213, -0.009964573, -2.8546093E-4, -0.013745624, -0.007689251, 0.0011368247, 0.006293943, -0.022539075, -0.03316617, 0.0056180386, 0.0026015635, -0.0064144013, 0.015753262, 0.19872934, -0.0035234035, 0.001718203, 0.031640366, 0.020491285, -0.005959337, 0.021321109, 0.030061023, -0.0010924893, 0.022980755, 0.0037910887, 0.015003744, 7.808873E-4, 0.004727986, 0.023596432, -0.02998072, -0.02453333, -0.01987561, -0.018229347, -0.02957919, 0.002149845, 0.004242807, -0.008840296, -0.027571553, 0.006340788, 0.005808764, -0.0060329502, 0.015913872, 0.005336969, 0.002907728, -0.011001853, -0.01703815, 0.00112595, 0.0028307687, -0.019152861, -0.005256664, -0.0056146923, 0.011269538, 0.015472192, -0.0027538093, 0.010914856, -1.4680848E-4, -0.016743695, -0.004988979, 0.0127351135, 0.0035066733, -0.025296232, 0.0057686116, -0.021548642, 0.015672956, -0.04668426, 0.0019273319, 0.022324927, 0.0182695, -0.022913834, -0.009415819, 0.018095504, 0.0063508265, 0.003225604, -8.4989984E-4, 0.014856516, 0.033246476, -0.015753262, 0.014160535, -0.00118116, 0.018711181, -0.03975122, -0.013718856, 0.0066553177, -0.020718819, -0.01936701, -0.035227343, -0.007033423, 0.0013685395, -0.008391924, -0.012895724, 0.008632841, 0.0022636112, 0.02085266, 0.02148172, -0.03908201, -0.011202617, 0.019915763, -7.185669E-4, -0.028106924, -0.024988394, 0.01398654, -0.017412908, -6.905436E-4, -0.031238837, -0.005808764, -0.04191947, -5.738497E-4, -9.770502E-4, -0.0077026356, 0.006815929, 0.026099285, 0.019500852, -0.007856554, -0.0046108738, -0.03257726, 0.028401377, -8.9507166E-4, -0.010085031, -0.018537186, -0.01685077, -0.015713109, 0.010325949, 0.02434595, -0.01323033, -0.03190805, -0.035039965, -0.009328822, -0.010439714, 0.015351734, 0.024332564, 0.0025513726, -0.017131839, 0.033567697, -0.013498016, 4.7137652E-4, -0.031238837, 0.02201709, 0.005962683, 0.0068527358, -0.040554274, -0.03916231, -0.0011451899, -0.008271466, -0.03584302, 0.032363113, -0.007629022, 0.007635714, -0.007816401, 0.0085659195, -0.011483686, 0.0120792845, -0.009154826, 0.0034665205, 0.005380468, -0.009509509, -0.010238951, 0.012025748, 0.021521872, -0.0016604834, -0.031238837, 0.00803055, -0.0074751033, -0.02765186, -0.034451056, -0.029793339, -0.002363993, -0.0011075466, 0.021147113, 0.034451056, -0.004778177, -0.013143333, -0.04245484, -0.0012740132, 0.046122123, -0.022124164, 0.012922493, 0.025068698, -0.007890015, -0.009462664, 8.574285E-4, -0.1691769, 0.016502779, -0.002896017, -0.030275172, -0.0028826327, 0.016663391, 0.04028659, 0.009141442, 0.00601622, -0.018858407, 0.039001703, -1.4565827E-4, -0.038546637, 0.0038245493, -0.0109617, 0.0063073277, -0.005203127, 0.029017052, 0.0345849, -1.3802508E-4, 0.043659423, -0.003332678, -0.012400507, -0.004995671, 0.0064779767, 0.0064177476, 0.026500814, 0.01007834, 0.01408023, -0.0042829597, -0.036860224, -0.0052399337, 0.011851753, -0.008733222, -0.026487429, 0.0044469167, -0.016074484, -0.01889856, 0.0052365875, -0.017279066, 0.03782389, -0.0023422437, 0.021869862, 0.010118493, 0.02255246, 0.01323033, 0.03137268, -0.01408023, 0.020103142, -0.0202236, -0.016609853, -0.037074372, 0.0428296, -0.008632841, -0.0034230216, 0.025791448, 0.012909109, 0.015378502, -0.0017867973, -0.0044536088, -0.032925252, -0.006069757, 0.0067456616, -0.0029679572, -0.0041591553, -0.020129912, -0.011831677, -0.0014823056, -0.028294303, 0.0056648836, -0.024292413, 0.017225528, 0.0053403154, -6.2780496E-4, 0.0063575185, -0.02236508, -0.04440894, 0.008826912, -0.00998465, 0.002374031, -0.006658664, 0.033085864, -0.01055348, 0.009308745, -0.0039450075, -0.015699724, 9.7454066E-4, 0.002568103, -0.0037810504, 0.006009528, 0.012454044, -0.021936785, -0.04098257, -7.6039264E-4, -0.0013016183, 5.675758E-4, -0.022579229, 0.0165697, 0.022793377, -0.014240841, -0.00784317, -0.013163409, -0.022097396, 0.021562025, 0.013243714, 0.008719838, -0.0018319691, 0.013839314, 0.016583085, 0.011162464, -0.009288669, 0.0033494083, 0.027892776, -0.0023606468, -0.016904308, 0.015806798, -0.023034293, -0.02718341, -0.009061136, 0.02834784, 0.050217703, -0.0052332412, 0.017747514, -0.016877538, 0.0035602103, 0.0014162209, -0.088014826, -0.010486559, 0.005517657, 0.04261545, -0.026099285, 0.049682334, -0.005216511, 0.016743695, -0.02655435, 0.03977799, 0.006009528, -0.027732164, 0.02611267, -0.0065582823, 0.011142387, 0.0035836326, -0.015846951, -0.004791561, -0.004082196, 0.0258316, -0.01596741, -0.013069719, -0.0038546638, -0.016609853, -0.01873795, 0.034156606, -0.016395705, 0.017693978, 0.015043896, 0.013277175, 0.0066787405, -0.015043896, 0.0160611, -0.035602104, -0.023850732, -0.031667132, -0.00749518, -0.029472116, 3.5368925E-5, -0.049682334, 0.0014772866, 0.020544823, 0.0062537906, -0.016141405, -0.013946388, -0.011309691, -0.02998072, 0.029498884, -0.013317328, -0.009650044, -0.01612802, -0.011523838, -0.030275172, -0.007849862, 3.6513904E-4, 0.017760899, 0.027518017, 0.0095630465, -0.01382593, -0.022003707, -0.022003707, 0.0036672843, -0.034799047, 0.028454915, 0.007247571, 0.016502779, 0.008110855, -0.010747552, 0.014521911, -0.017747514, -0.027317252, 0.026567735, -0.03758297, 0.0024041457, -0.0033962533, 7.030913E-4, -0.037984498, -0.009422512, 0.023409052, -0.038573407, 0.0031770861, -0.034451056, 0.024707325, -0.010419638, 0.0041089645, 0.00948274, 0.012761882, 0.0043030363, -0.014695906, -0.05578555, -8.235496E-4, 0.034691975, -0.0025463535, 0.0060965256, -0.014347916, 0.008980831, -0.0018821601, 0.0029897066, -0.0022769955, 0.009101289, -0.017908126, -0.00387474, -0.07361337, 0.03193482, -0.024479792, -0.014053462, -0.003332678, -0.011577375, 0.0079234755, 0.007943552, -0.0160611, 0.014548679, 0.0038881244, 0.008753299, -0.010004726, 0.006106564, 0.0019106016, 0.019701615, 6.164074E-5, -0.0051194755, 0.0107810125, 0.0056849597, -0.009643352, 0.003814511, 0.022779992, -0.0064712847, 0.0016286959, 0.01896548, 0.012842187, 0.006912965, -0.016837386, -0.010794397, 0.041464403, -0.018443495, 5.4540817E-4, -0.0038948166, 8.8587E-4, -0.036592536, -0.0014346242, 0.0026266589, 0.016904308, 0.007682559, -0.0066553177, -0.026942493, 0.004948826, 0.0022519, -0.0062069455, 0.015793415, -0.017961662, 0.020424364, 0.0074014897, 0.014869901, 0.023047676, 0.005547771, -0.0018001816, -0.016824001, 0.009710273, -0.014441605, 0.04689841, 0.003162029, -0.0059225303, -0.026822036, 0.025751296, 0.002847499, 0.022217853, -0.019300088, 0.0016864154, 0.005628077, 0.015057281, -0.01861749, -0.0042160386, -0.029472116, -0.016837386, -0.025242694, 0.0067523536, 0.032898486, 0.025885139, 0.014682521, 0.0058121104, 0.0036070552, -7.52864E-4, 0.014093614, 0.0219234, -0.004507146, -0.033433855, 0.032871716, -0.0109617, 0.01917963, -0.0020126565, -0.004142425, 0.0039684298, -0.0038513178, -0.009556354, 0.015980793, 0.025309615, -0.0034631744, 0.012969337, 0.014575448, -0.021307725, -0.01924655, -0.0016989631, 0.022980755, -0.007408182, 0.0013392614, -0.014682521, -0.029017052, -0.018470263, -0.0016044369, -0.0231146, -0.02781247, 0.009288669, 0.022057243, 0.038653713, 0.0047079097, -0.023020908, 0.0025965443, -0.048531286, 0.010151953, -0.01007834, -0.0010230585, -0.016034331, 0.02708972, 0.0062102918, 0.0013367519, 0.032871716, 0.001155228, 0.07088298, -0.0033276589, 0.0028809595, -0.021910015, -0.0039583915, -0.003429714, -0.0071204207, -0.0020293868, -0.011644297, 0.014334531, -0.01836319, -0.0044234945, 0.011911982, 0.039992135, -0.02003622, 0.06756369, 0.011724602, -0.0073947976, 0.019313471, -0.0060061817, 0.015485576, 0.02907059, 0.014214072, -0.01092824, -0.005159628, -0.008110855, 4.0299137E-4, -0.005805418, -0.039537072, 0.008130931, -8.632841E-4, 0.02441287, -8.1434794E-4, -0.014294378, -0.0059827594, -0.012326893, 0.0013743951, 0.0043231123, 0.016047714, -0.0025647567, -0.009188287, 0.017493214, -0.010406254, -0.005972721, -0.02434595, 0.01515097, -0.026888957, 7.085287E-4, 4.5276407E-5, 0.02145495, -0.005621385, -0.0036639383, 0.015418655, 0.024118418, 0.016355552, -0.030757004, -0.0027521362, -0.018791486, -0.026661424, 0.032309577, -0.010827858, 0.0029445349, -0.020384211, -0.0034146565 ], + "id" : "5b6d70ab-1e47-4c1d-a3a4-7c483cdd07cf", + "metadata" : { + "source" : "movies.csv" + } + }, + "f32be448-6885-4e5a-856c-511252948641" : { + "text" : "954,19277,Ed Asner-Christopher Plummer-Jordan Nagai-Bob Peterson-Delroy Lindo-Jerome Ranft-John Ratzenberger-David Kaye-Elie Docter-Jeremy Leary-Mickie McGowan-Danny Mann-Donald Fullilove-Jess Harnell-Josh Cooley-Pete Docter-Mark Andrews-Bob Bergen-Brenda Chapman-Emma Coats-John Cygan-Paul Eiding-Tony Fucile-Teresa Ganzel-Sherry Lynn-Laraine Newman-Teddy Newton-Jeff Pidgeon-Valerie LaPointe-Jan Rabson-Bob Scott,central and south america-age difference-balloon-travel-dog-duringcreditsstinger-pets-exploring-senior,/vpbaStTMt8qqXaEgnOR2EE4DNJk.jpg,/hGGC9gKo7CFE3fW07RA587e5kol.jpg,12-10681-2062-585-862-9806-10193-863-150540-920-62177-425-808-62211-8587-38757-20352-49013-9502-10191-950\r\n385128,F9,Action-Adventure-Crime,en,Dominic Toretto and his crew battle the most skilled assassin and high-performance driver they've ever encountered: his forsaken brother.,63.178,Original Film-One Race-Perfect Storm Entertainment-Universal Pictures-Roth-Kirschenbaum Films,5/19/21,200000000,726229501,143,Released,Justice is coming.,7.1,6718,Vin Diesel-Michelle Rodriguez-Tyrese Gibson-Ludacris-John Cena-Nathalie Emmanuel-Jordana Brewster-Sung Kang-Michael Rooker-Helen Mirren-Kurt Russell-Charlize Theron-Finn Cole-Thue Ersted Rasmussen-Anna Sawai-Lucas Black-Shad Moss-Don Omar-Shea Whigham-Vinnie Bennett-J. D. Pardo-Jim Parrack-Siena Agudong-Isaac Holtane-Immanuel Holtane-Azia Dinea Hale-Zhang Juju-Karson Kern-Igby Rigney-Sophia Tatum-Francis Ngannou-Martyn Ford-Bad Bunny-Jimmy Lin-Jason Tobin-Cardi B-Cered-Ozuna-Oqwe Lin-Bill Simmons-Vincent Sinclair Diesel-Luka Hays-Robert Bastens-Jason Statham-Gal Gadot-Demitra Sealy,speed-family relationships-sequel-duringcreditsstinger-fast car-brother brother relationship,/bOFaAXmWWXC3Rbv4u4uM9ZSzRXP.jpg,/xXHZeb1yhJvnSHPzZDqee0zfMb6.jpg,451048-436969-337339-497698-384018-168259-13804-9615-51497-550988-637649-584-82992-9799-379686-588228-450519-512195-617502-788106-566525\r\n49047,Gravity,Science Fiction-Thriller-Drama,en,Dr. Ryan Stone a brilliant medical engineer on her first Shuttle mission with veteran astronaut Matt Kowalsky in command of his last flight before retiring. But on a seemingly routine spacewalk disaster strikes. The Shuttle is destroyed leaving Stone and Kowalsky completely alone-tethered to nothing but each other and spiraling out into the blackness of space. The deafening silence tells them they have lost any link to Earth and any chance for rescue. As fear turns to panic every gulp of air eats away at what little oxygen is left.", + "embedding" : [ 0.011614702, -0.03289919, -0.0058176233, -0.047664106, -0.008676785, 0.039062653, 0.012635097, -0.0065469663, -0.027310986, -0.03550154, 0.002162348, 0.03106385, -2.6472926E-4, -5.64556E-4, 0.015408656, 0.013361016, 0.0130939325, -0.012409104, 0.0057902304, -0.018052096, -0.00159822, 0.0042425166, -0.007738569, 0.010388858, 0.021654297, 0.005362212, 0.031146029, -0.0038932536, -0.004016523, -0.0184356, 0.015025151, -0.007868687, 0.006228521, -0.034077097, -0.008005653, -0.014121177, 0.011005204, -0.03919962, 0.025598912, 0.0015340173, 0.0053998777, 0.015449745, -0.01591543, -0.021818656, -0.0027102113, 0.010758665, 0.008368612, -0.03322791, -7.76425E-4, 0.025831755, 0.010464189, 0.030187268, -0.018243847, -0.031885643, -0.006464787, -9.1595895E-4, -0.017285086, -0.0030286568, 0.0047424417, 0.008402853, -0.0037494395, -0.010957266, -0.022818506, 6.511227E-5, -0.020873591, -0.0040678848, 4.5755145E-4, -0.011375012, 0.0015853794, 0.014011604, 0.019421754, -0.0011299681, 0.01951763, 0.011073687, 0.011279136, -0.031118635, -0.019230003, 0.009272587, 0.004184306, 0.002891691, 0.021914532, -0.0025235952, -0.0106080035, 0.0023660846, 0.007889232, 0.009751966, -0.017545322, 0.008170011, -0.020476392, 0.01807949, 0.005533419, 0.04267855, -0.0019397784, 0.012354317, 0.015093634, 0.0065264213, -0.009450641, 0.015888035, -0.024037503, -0.025913933, 0.0024807935, 1.387849E-4, -0.004194578, -0.00977936, -0.0048109246, -0.004564386, 0.007711176, 0.0014449895, 0.014162267, 0.0016290373, 0.008300129, 0.0074646375, 0.016381113, -0.030598165, -0.02328419, -0.015805855, 0.018668441, -0.005896379, -0.018230151, -0.029721584, 0.045993123, 0.02159951, 0.009334221, -0.040048808, 0.029639404, 0.02496887, 0.012107779, -0.027393164, -0.009026048, 0.00897811, 0.005242367, -0.0014441333, 0.01205984, -0.0028334805, -0.021311883, 0.043555133, -0.015093634, -0.0073482166, -0.013511678, -0.01105999, 0.029885942, 0.032378722, -0.040870603, -0.02411968, -0.035090644, 0.011375012, 0.021969318, -0.001506624, 0.0216406, 0.001340553, 0.025968721, 0.03878872, 0.0030543378, -0.0023575244, 0.010094381, 0.00861515, 0.003855588, 0.00973827, 0.0015793871, -0.018846497, -0.004944466, 8.3078333E-4, 0.0032854676, -0.005975134, 8.7572524E-4, 0.026324831, -0.007272885, -0.018846497, -0.012984361, -0.006368911, -0.0019072491, 0.036131583, -0.009512276, 0.02064075, 0.0062696105, 0.0035302942, -0.0024876418, 1.9795842E-4, -0.038733937, -0.026653549, 0.016901582, 0.00639288, 0.015134724, 0.05823787, -0.009943719, 0.011416102, 0.026187865, -0.003691229, 0.018257543, -0.013381561, -0.0031313812, 0.024147075, -0.007526272, -0.016559169, -0.6355214, -0.029392866, 3.4177254E-4, 0.0051396424, 0.025598912, 0.013991059, -0.013580161, 0.01318296, -0.03763821, 0.0046602623, -0.023092438, 0.008341218, 0.018134275, -0.00555054, -0.029557224, 0.0066668116, 0.006184007, -0.017887736, 0.017860344, -0.0031570622, -0.03289919, 0.020366818, 0.0046123243, 0.0013722264, 0.007827597, 0.0093547655, -0.0034600992, -0.033118337, 0.01205984, 6.34323E-4, -0.014669039, 0.019188913, 0.006023072, 0.0052047013, 0.038323037, 5.3973094E-4, -0.004447965, 0.052156586, 0.019010857, 0.017805558, -0.014888185, -0.009121924, 0.033720985, -0.006214824, -0.009478035, 0.0144361975, 0.0015331612, -0.0059237718, -0.0071633128, -0.0028403287, 0.0036980773, 0.014134873, -0.0049102246, -0.0066702357, -0.013840397, -0.00833437, 0.015299083, -0.026023507, 0.012162565, -0.0081357695, -0.010484734, 0.02155842, 0.0038384672, 0.021339275, -0.0131144775, 0.022873292, -0.02480451, 0.009183559, 0.0143403215, -0.029721584, 0.018504083, 0.006235369, -0.014833399, -0.0144361975, 0.012998057, 0.0156004075, 0.047828466, -0.0017283375, -0.010888783, 0.012532373, -0.0071907057, -0.010087533, 0.0051122494, 0.009471186, 0.022791114, 0.0021366668, -0.030132482, 0.003547415, 0.0013722264, -0.0038453154, 0.007622148, 0.025722181, 0.0027718458, 0.009998505, -0.003103988, -0.010471038, -0.010827148, -0.011491433, 0.04188415, -0.061744194, -0.0013756505, -0.020325728, 0.024215559, -0.018613655, 0.020503784, 0.0076016034, -0.01595652, -0.017024852, 0.023229403, -0.0027153476, -9.142469E-4, -0.0012900468, -0.012676187, -0.017161818, -0.005975134, -0.02657137, 0.0106080035, 0.012320076, -0.0059648617, -0.00512937, -0.0011385285, -0.0106011545, 0.0012746382, -0.012347469, 0.0119160265, 0.0168331, 0.004780107, 0.004536993, 0.007950866, 0.013039147, -0.0014287247, 0.007026347, 0.012073537, -0.014997758, 0.01579216, 0.023270493, 0.023434853, -0.016285237, 0.016312629, -0.008450791, -0.026201563, -0.0071838573, -0.005235519, -0.0011376723, -0.004828045, -0.027242502, -0.012107779, -0.00757421, -1.9025408E-4, -0.020448998, -0.01599761, -2.4397037E-4, -0.006752415, 0.012895333, 0.0012352605, 0.008190556, -0.015079937, -0.031173421, 0.01086139, -0.024297737, 0.012299531, 0.005317698, -0.0015716829, -0.015805855, 0.016175663, -0.0044993274, -0.011950268, 0.013765065, 0.0033967525, -0.01001905, 0.0010683334, -0.005827896, 0.008450791, 0.006584632, -0.0131144775, 0.012717277, -0.013813003, 0.029118935, 0.011121625, 0.007704328, 0.010751817, 0.012498131, -0.023955323, -0.009279435, 0.032762226, 0.021284489, 0.014682736, -0.006300428, -0.023147224, 0.018257543, -0.008012501, 0.0068380185, -0.003080019, 0.007197554, 0.010114926, 0.012436497, 0.014217053, -0.01510733, 0.0029533256, 0.0028779944, 0.03895308, 0.0130939325, 0.02007919, -0.011251742, -0.0030423533, -0.021969318, -0.0027598613, -0.016983762, 0.022859596, 0.008142618, 0.013313078, -1.6382396E-4, -0.024941476, -0.0034874922, 0.0049924045, 0.015805855, -0.028105387, 0.018284937, -0.0093547655, 0.009567062, -0.009409552, 0.0045712343, 0.0264481, 0.008437095, -0.017572716, 0.011347619, 0.0093684625, -0.011826999, -0.002278769, -0.008820599, -0.001972308, 0.007731721, 0.010238196, 0.029748976, -0.00691335, -0.0019688837, 0.018641049, -0.008498729, 0.040952783, -0.011210653, -0.003057762, 0.014751219, 0.024571668, 0.0051567634, -0.0046191723, -0.004982132, 0.02264045, 0.027804062, 0.0046089, 0.039144833, -0.017285086, 0.012737822, -0.01274467, 0.008306977, 0.010087533, -0.007957715, -0.01214202, 0.003759712, 0.025776967, 0.020448998, 0.041856755, -0.011553067, 0.027256198, 0.0118612405, 0.015641497, -0.007546817, -0.021544725, 0.0081220735, 0.01322405, -0.025516734, -0.021380365, -0.018641049, -0.009669787, -0.011655792, 0.001081174, 0.0037528635, -0.014641646, 0.0047116242, 0.029146327, 0.025256498, 0.013778762, -0.0376656, 0.02821496, 0.009580759, -0.02705075, -0.014860792, -0.0045678103, 0.001859311, -0.025297588, -0.006512725, 0.001997989, 0.02440731, -0.027790366, 0.012148868, -0.014299232, -0.018668441, 1.0732556E-4, -0.027297288, 0.016641347, 5.525715E-4, -0.0074714855, 0.022133676, 0.0055197226, -0.019627202, 0.013456892, -0.021969318, -0.008190556, -0.018983463, -0.0058415923, 0.008875385, 0.008532971, -0.0064236973, -0.05138958, 0.010443644, -0.0057251714, 0.0056806575, -0.010443644, -0.0046191723, 0.020572267, -0.0067866566, -0.029475044, -0.026763123, -0.02569479, -0.012607704, 0.0877677, 0.048020218, 0.022147374, 0.0051807323, 0.005533419, 0.010518976, -0.013840397, -0.0020613356, -0.007759114, -0.016244147, 0.020832501, -0.033529233, 0.019640898, -0.013217202, 0.012265289, 0.0037323188, 0.018408207, -0.008080984, 0.0034481147, -0.012539221, -0.025393464, -0.0061052516, 0.023859447, 0.049143337, 0.012861091, -0.016764617, 0.022298036, -0.00837546, 0.013018602, 0.012429648, -0.009046593, 0.011190108, 0.0040507643, 0.0055882055, -0.0011488008, 0.013723976, 0.032406114, 0.019490236, 0.02613308, 0.002912236, 2.2813371E-4, 0.0052560633, 0.0057936544, -0.008204252, 0.009854691, -0.042623766, -0.020092886, 0.031365175, 0.019243699, -0.032460902, 0.0284615, 0.014134873, -0.002727332, -0.014217053, 0.0078070518, -0.0071290713, -0.0122242, -0.01410748, 0.0012763502, 0.007046892, -0.0055128746, -0.030269448, 0.018490387, -0.01931218, -0.010327223, -0.009868388, -0.029748976, 0.0019586112, -0.018202757, -0.0019432026, 9.921462E-4, -0.022256946, -6.257626E-4, 1.9539031E-4, 0.011368163, -0.0065503907, 0.03347445, -0.013018602, 0.01747684, -0.0019534752, -0.020284638, -0.021147523, 0.008971262, -0.01270358, 0.0040336433, 0.01675092, -0.0016855357, 0.025708485, -0.007320823, 0.01282685, 0.009012351, -0.011087383, -0.013340471, -0.0041055507, 0.036734235, 0.010245044, 0.036460303, 0.03161171, 0.0057662614, -0.0094232485, -0.004845166, -0.042048506, 0.002609199, -0.011628399, -0.028708037, -0.005218398, -4.9783866E-5, 9.40784E-4, -0.0130596915, -0.02837932, -0.023147224, -0.037336882, 0.0023969018, -0.007635845, 0.0040541883, 0.006844867, 0.020791411, 0.022571968, -0.0052800323, -0.0025492765, -0.0023866296, -0.023612907, 0.026612459, 0.031556927, -0.0131007815, 0.019147823, -0.0016632787, -0.023969019, -7.079421E-4, 0.03782996, 0.012552918, 0.012292683, -0.004095278, -0.007944018, -0.014806005, -0.020147672, 0.0062114, 0.018175365, 0.0037973775, 0.012244744, -0.025297588, 0.012443345, 0.012943271, 6.82689E-4, -0.0019500509, -0.024722332, -0.013628099, -0.019093037, 0.01670983, 0.026804212, 5.628439E-4, 0.027365772, -0.016025001, -0.010970962, -0.01570998, -0.018613655, -0.011580461, -0.013285685, 0.02909154, 0.00841655, 0.03593983, -0.0061703105, 0.018367117, 0.019010857, 0.0038590122, 0.03626855, -0.018723229, -0.0059648617, -0.019079339, 0.003148502, 0.010635396, 0.02969419, -0.010375161, -0.012203655, 0.0054067257, 0.022626754, 0.0011607853, -0.0010529248, -0.0038418914, -0.025146926, -0.02440731, 0.004869135, -0.03218697, 9.476323E-4, -0.024585366, 0.0032358177, 0.015299083, -0.0065812077, -0.01787404, -0.0056292955, 0.020298336, -0.0027632855, 0.02505105, -0.02020246, -0.007498879, -0.022613058, -0.018627351, -0.017682288, -0.0038281947, -0.027297288, -0.017778164, 0.013539072, 4.3550853E-4, -0.010135471, 0.0011702018, 0.033447053, -0.008026198, -0.017202908, 0.027543828, -0.006680508, -0.0105669135, -0.030926883, -0.021887138, -0.03021466, -0.017627502, 0.0060367687, -0.0025578367, 0.011169563, -0.02384575, -0.03626855, 0.008382308, -0.002278769, 0.038295645, 0.01855887, 0.03593983, 0.02216107, 0.0081289215, -0.007875535, 1.082351E-4, 5.863849E-4, 0.0118406955, 0.030707737, 0.024585366, -0.02068184, -6.463075E-4, 0.014038997, -0.0032460901, -0.033693593, -0.045089148, 0.013765065, 0.01675092, 0.0094164, -0.02220216, -0.008861689, -0.02488669, 0.012306379, -0.01073812, 0.013018602, 0.008498729, -0.027995814, -0.026256349, 8.6031656E-4, -0.0072180987, 0.006536694, 0.016066091, -0.017682288, 0.019777864, -0.025379768, 0.0117859095, -0.008950717, -0.010190257, 0.030762523, -0.027598614, 0.0055676606, -0.0014184524, 0.021709083, 0.0053005773, -0.011539371, -6.754127E-4, 0.030159874, -0.012772063, 0.013840397, -0.00793717, -0.012881636, 0.029995516, 0.016778313, -0.027078144, -0.020832501, -0.009135621, -0.010868238, 0.037282098, 0.006324397, -0.0014689584, 0.009772511, -0.020983165, -0.015805855, 6.514437E-4, -0.0037528635, -0.00428703, -0.03374838, 0.012943271, -0.0143540185, 0.0039788573, -0.008690481, -0.024064895, 0.0015177525, -2.3712208E-4, 8.868537E-4, -0.007567362, 0.0045746583, -0.0208462, -0.004626021, -0.055608124, -0.02692748, -0.023106134, 0.0046089, 0.0030988518, -0.018750621, -0.015641497, 0.0016658468, 1.5344452E-4, 0.0045712343, 0.014751219, -0.00829328, -0.0042459406, 0.011998206, -0.005670385, -0.015216903, -0.008019349, 0.03867915, -0.005670385, 0.0044548134, -0.0093753105, 0.012333772, 0.01599761, -0.026174169, 0.008676785, -0.009553366, -0.019791562, 0.011258591, -0.0012540934, 0.019093037, 0.0043863305, -0.01847669, -0.039857056, -0.023640301, -0.011073687, 0.053361885, 0.0014826551, 0.0073002786, 0.03347445, 0.024694938, 0.033885345, 0.026475493, 0.0021794687, -0.032844406, 0.019887438, -0.0035611114, -0.017449446, -0.01390888, 0.007779659, 0.023914233, 0.006461363, 0.004626021, -0.0067147496, -0.011457191, -0.028981969, -0.019120429, -0.02420186, 0.018421903, 0.028927183, 0.008409701, 0.0011753379, -0.0044274204, 0.00925889, 0.0017377539, -0.014792309, -0.01414857, 0.022613058, -0.004283606, 0.02068184, 0.008950717, -0.028488891, -0.013230898, 0.011162715, 0.017285086, 0.013813003, 0.0130870845, -0.023749873, -0.01995592, -0.0024088863, 0.008553516, 0.0044959034, 0.0024739453, 0.0061052516, -0.03317312, -0.0040678848, 0.0021246823, 0.014532074, -0.0016589985, -0.002398614, 0.01675092, -0.017065942, -0.008649392, -0.004752714, -0.00797826, -0.0033025884, -0.036597267, 0.023653997, 0.014271839, -0.0014287247, 0.028077994, 0.02653028, -7.267749E-4, -0.0027393166, -0.006324397, 8.8514166E-4, -0.008190556, -0.005036918, 0.016025001, 0.009745118, -0.029502438, 0.020654446, -0.03098167, 0.009991657, -0.015121027, -0.0015785311, 0.004581507, 0.045500048, 0.01270358, -0.050869107, 0.0144361975, -0.015257993, 0.009443793, -0.022695238, -0.006047041, -0.026201563, -0.029146327, -0.011224349, 0.0065264213, -0.037966926, -0.03089949, 0.001926082, -0.008170011, -0.0072386437, 0.010560065, 0.17805557, -0.010265589, 0.012265289, 0.029831156, -3.3941845E-4, 0.016778313, 0.02900936, 0.012415952, -0.0046876553, 0.009847843, -0.0068311705, 0.009306828, 0.0080467425, 0.0014467015, 0.01687419, -0.020229852, -0.0244484, -0.026941178, -0.013895183, -0.029557224, -0.019818954, -0.0093547655, 0.006118948, -0.018462993, 0.016052395, 0.003691229, -0.0071770092, 0.00865624, 0.018298633, 0.018545173, -0.009895781, -0.036515087, -0.018011006, -0.0039001019, -0.021585815, -0.01927109, 2.4803655E-4, -0.0010786059, 0.017682288, 0.005762837, -0.0035200217, 0.005242367, 0.0051773083, -0.007553665, -0.0027153476, 0.035200216, -0.022448698, 0.012792608, -0.03859697, -0.0031810312, -0.060210176, 0.004139792, 0.0012284123, 0.025886541, -0.010464189, -0.010553217, 0.005615599, 0.0025903662, -0.016435899, 0.011587309, 0.017202908, 0.03583026, -0.026941178, 0.008368612, -0.0011214077, 0.024475792, -0.027338378, -0.016983762, 0.013497982, -0.028434105, 0.0024534003, -0.025626305, -0.0070811333, 0.0055368436, -0.013319926, -0.032241754, -4.2031388E-4, 0.0034892044, -0.0031656227, 0.015121027, -0.031118635, -0.008601454, 0.0028882667, -0.015942821, -0.02380466, -0.020942075, 0.018257543, -0.016175663, -0.0072044022, -0.0064921803, 0.0014809429, -0.030159874, -0.013593858, -0.016449595, -0.004102126, 0.0032118487, 0.03298137, 0.025133228, -0.033912737, 0.010190257, -0.037336882, 0.014655343, 0.028406711, -0.0036741083, -0.0260509, -0.019586112, -0.006050465, 0.014175963, 0.0130939325, -0.0023626604, -0.023571819, -0.010512127, 0.01579216, -0.021818656, -0.011648944, 0.042048506, 0.0023215706, -0.0075331205, 0.039281797, -0.029968122, 0.0071085263, -0.020668143, 0.013217202, 0.012258441, -0.007964563, -0.038487397, -0.024475792, -0.0052834568, -0.0026793939, -0.030844703, 0.0028625857, -0.026078293, 0.020010706, -0.01787404, -0.0024619608, 0.003151926, 0.025982417, 0.004126095, 0.0052937292, -0.014025301, 0.016052395, -0.019449146, 0.028981969, -5.264624E-4, -7.75997E-4, -0.027242502, 0.0014141721, -0.012368014, -0.014942971, -0.030351626, -0.016367417, -0.0074440925, 0.028516285, 0.0119160265, 0.036405515, -0.006320973, -0.0033573748, -0.039309192, -0.018367117, 0.027420558, -0.04596573, 0.016422203, 0.019339575, -0.0063380934, -0.0143266255, -0.021531027, -0.17597368, 0.0071359193, -0.0118543925, -0.024571668, 0.01650438, 0.0041123987, 0.023900537, 0.0021691963, -0.004040492, -0.026338529, 0.015641497, 0.007437244, -0.03615898, -0.009868388, 0.0094027035, 0.016901582, -0.011066838, 0.029913336, 0.03495368, 0.0017129289, 0.050786927, -0.019736776, -0.015422352, -0.0066428427, 0.017463142, 0.006094979, 0.023790963, 0.0029772946, -0.0053793327, -0.005461512, -0.051362183, -0.008491881, 0.014874488, 0.009525973, -8.252191E-4, 0.007923473, -0.0019312181, -0.021489937, -0.018572565, -1.17919015E-4, 0.025544126, 0.014490984, 0.033994917, 0.005242367, 0.020106584, 0.016901582, 0.032652654, -0.018216455, 0.033282693, -0.0062661865, -0.0012558054, -0.037884746, 0.0014038997, 0.0030971398, -0.012888484, 0.017490536, 0.005601902, 0.005639568, 0.005810775, -0.009430097, -0.028434105, -9.339357E-4, -0.0014064678, -0.020777715, -0.0068277465, -0.035720687, -0.018613655, 0.010395706, -0.04656838, 0.016340023, -0.016572865, 0.007115375, -0.006485332, 0.0052731843, 0.011943419, -0.011012052, -0.044842612, 0.0248456, -0.0043349685, 0.015340173, -0.0069236225, 0.04684231, -0.008663088, 0.017969916, -0.01010123, -0.006701053, 0.0022736327, -0.0029088117, -0.0055642365, -0.01666874, 0.0073071267, -0.022585664, -0.017422052, 0.006437394, -0.0068311705, 0.008183708, 0.0042014266, 0.0071907057, 0.008026198, -0.003995978, 0.002235967, -0.014299232, -0.011539371, 0.01654547, 0.029310687, 0.023119831, 0.011327074, 0.031228207, 0.019010857, 0.012436497, -0.0028043753, 0.007313975, 0.022517182, 0.040870603, -0.019490236, 0.008560364, -0.017490536, -0.027037054, 0.01666874, 0.017257694, 0.040843207, -0.0012857667, -0.0081015285, 0.004102126, 0.0068791085, -0.011121625, -0.08486403, -7.76425E-4, 0.0059922547, 0.027420558, -0.018216455, 0.03602201, 0.0018730076, 0.022654148, -0.026105685, 0.030159874, -0.002727332, -0.028598463, 0.006985257, -0.0020065494, 0.015737373, -0.00993687, -0.018421903, -0.029639404, -0.017709682, 0.022914382, 0.0063346694, 0.003127957, 0.013176112, 0.0013508254, -0.020421604, 0.020791411, -0.021284489, 0.023571819, 0.008231646, 0.0025800937, 0.013621251, -0.018983463, 0.013991059, -0.035364576, -0.024708634, -0.01306654, -0.02985855, -0.011450343, 0.008485033, -0.05081432, 0.015079937, 0.0168331, -0.024681242, -0.010347768, -0.011601006, -0.009012351, -0.024544276, 0.030269448, -0.016422203, -0.0045198724, -0.016230451, -0.01851778, -0.03451539, -0.016367417, 0.01001905, 0.029529832, 0.021448849, -0.004485631, -0.012388559, -0.028790217, 0.0012626537, 0.012189958, -0.02961201, 0.020654446, -0.002472233, 0.0026263196, -0.01010123, -0.013943121, 0.01743575, -0.010429948, -0.032159574, 0.04440432, -0.026023507, -0.0124228, -0.019545022, 0.020106584, -0.030762523, -0.010491583, 0.029803764, -0.020270942, 0.0030235206, -0.021544725, 0.009957415, -0.005827896, 0.017161818, 0.025886541, 0.012963816, 0.008971262, 0.0018832801, -0.040377524, -0.0051088254, 0.0021931652, 0.009594456, 0.011128473, -0.006978409, 0.0093821585, 0.005615599, 0.0033299816, -0.00897811, -0.009334221, -0.0118543925, 0.02155842, -0.07209881, 0.032515686, -0.021174917, 0.008519274, -0.011498281, -0.003691229, 0.016408505, -0.010395706, -0.009772511, 0.023092438, -0.0063175485, 0.0062490655, 3.4712275E-4, 0.01110108, -0.011676337, 0.015257993, -0.00512937, -0.011909178, 9.7588147E-4, -0.0013439772, -0.031200815, 0.01739466, 0.015162117, 0.024338827, 0.00965609, 0.0030680345, 0.0066531147, 0.006255914, -0.012717277, -0.002326707, 0.019230003, -0.026639853, -0.0027786943, 0.0013568177, -0.0184356, -0.018312331, -0.008532971, -0.00277527, -0.0045061754, 0.002797527, -0.008026198, -0.035090644, 0.011210653, -0.016764617, -0.010457341, -0.0025253075, -0.0044137235, 0.0061018276, 0.00861515, 0.006067586, 0.040295344, 0.0051807323, -0.0068517155, -0.011696882, 0.017243998, -0.010491583, 0.046677954, 0.01010123, -0.008642543, -0.013614403, 0.01951763, -0.0052492153, 0.019188913, -0.020832501, 0.0118954815, -0.007430396, 0.013237746, -3.4161203E-5, 0.0011179835, -0.03495368, -0.024256647, 0.012402255, 0.0020390786, 0.036597267, 0.018024702, 0.0033094366, -0.0049273456, 3.3663632E-4, -0.008820599, 0.016490685, 0.03106385, 0.007923473, -0.03158432, 0.010094381, -0.003550839, 0.015162117, -0.0030440653, 0.02909154, 0.0014312929, 0.010162864, -0.0060812826, 0.0143266255, 0.0172303, 0.0044993274, 0.021887138, 0.023886839, -0.015422352, -0.0093410695, 0.013018602, 0.032515686, -0.012429648, -0.008950717, -0.017120728, -0.01718921, -0.012326924, 0.010114926, -0.013956818, -0.0067181736, 0.025201712, 0.00793717, 0.032652654, 0.011183259, -0.014901882, 0.0106011545, -0.020654446, 0.0047082, -0.0030218086, -0.028269745, -0.0022976017, 0.029283293, 0.010532672, -0.012333772, 0.026900088, -0.011792758, 0.050649963, 0.0020339424, 0.03106385, -0.023695087, 0.0071907057, -0.003944616, 0.005461512, -0.034323636, -0.018065792, 0.014956668, -0.016449595, -0.0046773828, 0.0033008764, 0.028488891, -0.009854691, 0.07746787, 0.013381561, -7.875535E-4, 0.019188913, -0.016463293, 0.009676635, 0.019572416, 0.022818506, -0.025872843, 7.832733E-4, 0.0143403215, -0.023736177, 0.022311732, -0.019161519, 0.013052843, -0.036898594, 0.019230003, 0.008847992, 7.5202796E-4, -0.01566889, 3.6830967E-4, -0.018230151, 0.01599761, 0.00347722, -0.0106285475, -0.0029944154, 0.012477587, -0.016915279, -0.0042493646, -0.041418467, 7.7471294E-4, -0.0124228, -0.018682139, -0.0072797337, 0.029502438, -0.009142469, -0.005485481, 0.0188328, 0.016230451, -0.012498131, -0.012641946, 7.76425E-4, -0.025133228, -0.002376357, 0.031639107, -0.011053142, -0.014121177, -0.038076498, -0.019846348 ], + "id" : "f32be448-6885-4e5a-856c-511252948641", + "metadata" : { + "source" : "movies.csv" + } + }, + "a4812f02-34b5-4a23-9357-1acd429da4d5" : { + "text" : "Chris Hemsworth-Mark Ruffalo-Chris Evans-Scarlett Johansson-Benedict Cumberbatch-Tom Holland-Chadwick Boseman-Don Cheadle-Zoe Salda��a-Karen Gillan-Elizabeth Olsen-Paul Bettany-Anthony Mackie-Sebastian Stan-Tom Hiddleston-Idris Elba-Danai Gurira-Peter Dinklage-Benedict Wong-Pom Klementieff-Dave Bautista-Vin Diesel-Bradley Cooper-Gwyneth Paltrow-Benicio del Toro-Josh Brolin-Chris Pratt-Sean Gunn-William Hurt-Letitia Wright-Terry Notary-Tom Vaughan-Lawlor-Carrie Coon-Michael James Shaw-Stan Lee-Winston Duke-Florence Kasumba-Kerry Condon-Monique Ganderton-Jacob Batalon-Tiffany Espensen-Isabella Amara-Ethan Dizon-Ariana Greenblatt-Ameenah Kaplan-Ross Marquand-Michael Anthony Rogers-Stephen McFeely-Aaron Lazar-Robert Pralgo-Olaniyan Thurmon-Blair Jasin-Matthew Zuk-Laura Miller-Kenneth Branagh-Samuel L. Jackson-Cobie Smulders-Harrison Osterfield-Gary Peebles-Marija Abney-Zola Williams-Marie Mouroum-James Siderits-Precious Jenkins-Bobby James,magic-sacrifice-superhero-based on comic-space-battlefield-genocide-magical object-super power-aftercreditsstinger-marvel cinematic universe (mcu)-cosmic,/7WsyChQLEftFiDOVTGkv3hFpyyt.jpg,/mDfJG3LC3Dqb67AZ52x3Z0jU0uB.jpg,1073776-299534-284054-284053-99861-271110-315635-363088-24428-283995-284052-383498-429617-299537-102899-118340-76338-100402-10195-1726-10138\r\n634649,Spider-Man: No Way Home,Action-Adventure-Science Fiction,en,Peter Parker is unmasked and no longer able to separate his normal life from the high-stakes of being a super-hero. When he asks for help from Doctor Strange the stakes become even more dangerous forcing him to discover what it truly means to be Spider-Man.,215.904,Marvel Studios-Pascal Pictures-Columbia Pictures,12/15/21,200000000,1921847111,148,Released,The Multiverse unleashed.,7.992,18149,Tom Holland-Zendaya-Benedict Cumberbatch-Jacob Batalon-Jon Favreau-Jamie Foxx-Willem Dafoe-Alfred Molina-Benedict Wong-Tony Revolori-Marisa Tomei-Andrew Garfield-Tobey Maguire-Angourie Rice-Arian Moayed-Paula Newsome-Hannibal Buress-Martin Starr-J.B. Smoove-J.K. Simmons-Rhys Ifans-Charlie Cox-Thomas Haden Church-Emily Fong-Mary Rivera-Rudy Eisenzopf-Kathleen Cardoso-Jonathan Sam-Andrew Dunlap-Ben VanderMey-Zany Dunlap-B. Clutch Dunlap-Minnah Dunlap-Gary Weeks-Gregory Konow-Carol Anne Dines-Anisa Nyell Johnson-Willie Burton-Mallory Hoff-Greg Clarkson-Regina Ting Chen-Robert Mitchel Owenby-Glenn Keogh-Paris Benjamin-Jwaundace Candece-Taylor St. Clair-Gabriella Cila-Darnell Appling-Rolando Fernandez-Edward Force-Michael Le-Dean Meminger-Frederick A.", + "embedding" : [ 0.0035035138, -0.02447806, -0.008376522, -0.036670554, -0.0066613294, 0.050072987, -0.0044508586, -0.009420264, -0.023666998, -0.029703414, 0.026552245, 0.015423438, 0.01439964, 0.010949311, 0.010503893, 0.009180934, 0.0189336, 0.0036564183, 0.007844679, -0.028905649, 5.2379233E-5, -0.011201937, -0.0023068676, 0.025967218, -0.019797843, 0.0056142644, 0.03850541, -0.004151697, -0.0036497703, 0.0074325013, 0.015410142, -0.01545003, 0.00760535, -0.059885487, -0.0153968455, 0.010118307, -0.0035001896, -0.029623637, 0.03153827, 0.0023367838, 0.007352725, 0.0152107, -0.015197405, -0.002542873, -0.007306189, -3.3058386E-5, 0.009699481, -0.0050824215, -0.012498303, 0.010982552, 0.023600519, 0.02991615, -0.025834259, -0.013429028, -0.02485035, 0.005368287, -0.020409463, 0.0168993, -0.0052386504, 0.0019927481, 0.00478326, -0.01358858, -0.03475592, -0.011753723, -0.022869235, -0.021805549, -0.00638876, -0.022895828, -0.004514015, 0.016580196, 0.028746096, 0.01917293, 0.007592054, -0.009626352, 0.008961549, -0.02528912, -0.025515152, -0.0034569774, -0.008236913, -0.012278918, 0.011753723, -0.0068275305, 0.0017301507, 0.016487123, 0.024730684, 0.010816351, -8.322507E-4, 0.019797843, -0.024105769, -0.0069073066, 9.6084856E-5, 0.022669794, -0.0085028345, -0.0023068676, 0.008296746, 0.027203754, -0.010636854, 0.035899382, -0.019398961, -0.04063278, 0.006089599, -0.009214174, -0.027123976, -0.009107806, -0.0065815533, 0.008150489, -0.0018631114, -0.006780994, 0.024265323, 0.010164843, 0.016580196, -0.00834993, -9.182596E-4, -0.048078578, -0.0033539329, -0.006182671, 0.008423058, -0.029862966, -0.023347894, -0.014200199, 0.030953243, 0.030128887, 0.0036996307, -0.02965023, 0.025688002, 0.027256938, -0.011793612, -0.017112039, 0.017949691, 0.010916071, 0.031591456, -0.0030797014, 0.024730684, -0.0016163031, -0.01463897, 0.05023254, -0.04520663, 0.017830025, -0.023374485, -0.023268117, 0.030208664, 0.029012019, -0.014213496, -0.023467558, -0.021845438, -0.0040918645, 0.031751007, 0.006481833, 0.022217728, 0.01494478, 0.00997205, 0.032681733, 0.0098124975, 0.007592054, 0.023813255, -0.022151247, 0.011720483, -0.017351367, 0.019664884, -0.02244376, 0.005767169, -0.011381433, 0.009539928, -0.017923098, -0.0052386504, 0.020688681, 0.027097385, -0.016114833, -0.012006348, 0.016168017, -0.002778878, 0.03090006, -0.015144221, 0.014904891, -0.006584877, 0.0042447695, -0.003390497, -0.008396466, -0.051322818, -0.013335955, -0.0026492414, 0.01007177, 0.02988956, 0.030607546, -8.767094E-4, 0.0103443405, 0.028054701, -0.013668356, 0.014997964, -0.031591456, 0.011029088, 0.024424875, 0.01305009, -0.017843321, -0.61906487, -0.0060197944, 0.0050159413, 0.0019412257, 0.0122988615, 0.009440208, 0.007864623, -0.01849483, -0.03252218, -8.050353E-5, -0.00838317, 0.0096462965, 0.01382791, -0.023081971, -0.01578243, -0.010111659, -0.0013229586, -0.028985426, 0.017125335, 0.011328249, -0.021366779, 0.012611319, 0.0055211917, -0.015250589, -0.0037794071, 0.01189998, 0.008708924, -0.018388461, 0.0038724795, 0.0015207377, -0.029198162, 0.010457356, 0.011441265, 0.013063386, 0.045020483, 0.007871272, -0.022802755, 0.049886845, 0.020728568, 0.029012019, -0.023520742, 0.0011276727, 0.013129866, -0.004407646, -0.014625673, 0.022935715, -7.641083E-4, 7.0469157E-4, 0.0020575663, 0.010218027, -7.0552254E-4, 0.009180934, -0.016154721, 0.006299012, -0.019917509, -0.008522779, 0.01981114, -0.04382384, 0.025834259, -0.0028686265, -0.029118387, 0.035686642, -0.010889479, 0.0033339888, 0.004397674, 0.023786664, -0.0072330604, -0.003576642, 0.007844679, -0.02149974, 0.004158345, 0.003809323, -0.01477193, 0.0100651225, 0.026578838, 0.0028653024, 0.03353268, 0.0047167796, -0.0032242963, 0.033931565, -4.2921366E-4, -0.0048663607, 0.008775404, 0.0046602716, 0.023268117, 0.0016728115, -0.0412444, 0.005976582, 0.0049494607, 8.172926E-4, 0.01139473, 0.007924456, 0.007897864, 0.014213496, -0.005331723, -0.01027786, 0.012624616, 0.009313894, 0.007718367, -0.05616259, -0.018880416, -0.03927658, 0.05257265, -0.0038192952, 0.026379397, 0.020170134, -0.013920982, -0.026618727, 0.026020404, -0.018215612, -0.018268796, 0.0030580955, -0.026791574, -9.90557E-4, -0.0018548013, -0.025608225, -0.008097305, 0.0139741665, 0.0026608754, -0.017683769, 0.004580495, 0.015144221, 0.012764224, -0.011068976, 0.029490676, 0.026179956, -0.006299012, -0.012983609, 0.0019495358, 0.021393372, 0.0013088316, -0.01189998, 0.014878299, -0.02528912, 0.022204433, 0.009686185, 0.00359991, -0.008290098, 0.016420642, -0.018135834, -0.011620763, -0.016181314, -0.012092773, -0.013854502, -0.010184787, -0.0066978936, -0.038532004, -0.004331194, 0.009679536, -0.016168017, -0.013788021, 0.015609583, -0.0052120583, 0.016500419, 0.012757576, 0.0066978936, -0.026791574, -0.004939489, 0.014319864, -0.02373348, -0.004946137, 0.025781075, 0.010297804, -0.0239994, 0.016673269, 0.0063721403, -0.035739828, 0.0042082053, -0.0012290552, -0.0040553003, 0.00959976, -0.019212816, -0.002152301, 0.019212816, -0.01626109, 0.016513715, -0.020569015, 0.0361653, 2.3122692E-4, -0.002991615, -5.201567E-5, -0.025634818, -0.020263206, -0.010570373, 0.020781752, 0.036590777, 0.016035058, -0.008143841, -0.0018830554, 0.007811439, -0.01832198, -0.026884647, -0.004317898, 0.0015282166, 0.012039589, 0.019545218, 0.021127451, -0.004135077, -0.011986405, -0.0072064684, 0.01230551, 0.03236263, 0.02336119, -0.023028787, 0.016992373, -0.019731363, -0.0016960795, -0.003952256, 0.0062890397, -0.00632228, 0.026432581, -0.011886684, -0.017524216, 3.0186228E-4, -0.004736724, 0.032203075, -0.008695628, -0.0034902175, -0.009486744, 0.00747239, 0.0121858455, -0.018308684, 0.012378639, 0.016566899, -0.02191192, 0.0034137652, 0.020396167, -0.009958754, 0.007545518, -0.0016138101, -0.016128128, 0.010889479, 0.003209338, 0.004188261, -0.0085560195, -0.0074524456, 0.02511627, -0.02007706, 0.0375215, -0.022098063, 0.0020509183, 0.012651208, 0.014279976, 0.012824057, 0.014665562, -0.017736953, 0.025461968, 0.0066214413, 0.006571581, 0.044541825, -0.011760371, 0.027110681, -0.00635552, 0.0031046316, 0.023028787, -0.017683769, -0.0059001297, 0.013681653, 0.031219166, 0.02443817, 0.026286324, -0.03148509, 0.029304532, 0.002782202, 0.019904213, 0.0032957627, -0.026259732, 9.6396485E-4, -0.0046768915, -0.035819605, -0.0246775, -0.0074657416, 0.009706129, 0.0054380912, -0.0117670195, -0.0070070275, -0.0030697295, 0.006166051, 0.0066314135, 0.018614493, 0.0056574764, -0.029224755, -0.0021506387, 0.0375215, -0.026326213, -0.02768241, -0.0054447395, 0.0025162806, -0.027336713, -0.0066447095, -0.0048597124, 0.03276151, -0.023467558, -0.0012830704, -0.017431144, 0.006531693, 0.027230345, -0.017949691, 0.02691124, 0.013655061, -0.013196346, -7.159101E-4, -0.00676105, -0.007884568, 0.015104332, 0.0032392542, -0.0026991016, -0.004972729, -0.02126041, 0.004826472, 0.01305009, 8.256027E-4, -0.03191056, 0.015263885, -0.006741106, -0.020223318, -0.011368137, 6.4859877E-4, -4.341997E-4, -0.029570453, -0.018574605, -0.030953243, -0.032575365, -0.009519984, 0.08679672, 0.037787423, -0.0025245908, 0.01305009, -0.013628469, 0.015290477, 0.0024281943, 0.005620912, -0.008343282, -0.030341625, 0.021925215, -0.0062458273, 0.01463897, 0.01906656, -0.0011492788, -0.014240088, -0.0134157315, -0.0074590934, 0.0064884806, -0.0032425784, -0.02305538, -0.012012997, 0.015915392, 0.031378716, 0.021021081, 0.0117670195, 0.013867798, -0.008675683, 0.01595528, 0.0064984527, -0.0066613294, 8.2103215E-4, 0.0077781994, 0.0089482535, 0.012245677, 0.0016337542, 0.025089677, 0.013595228, 0.007592054, 0.004148373, -0.019531922, 0.008981493, 0.0074790376, -3.853782E-4, -0.0027406518, -0.016314274, -0.0076385904, 0.0317776, 0.020156838, -0.037707645, 0.018175723, 0.0026326212, -0.019385666, -0.011727131, 0.010457356, -0.0052452986, -6.585708E-4, 0.0015157516, -0.021632701, 1.446986E-4, 6.552468E-4, -0.020170134, 0.0056042923, 0.0040120883, -0.01545003, -0.012012997, -0.00872222, -0.016979078, -0.015622878, 1.8583331E-4, 0.007565462, -0.014306568, 0.003965552, 0.0050126174, 0.02342767, -0.009699481, 0.017657178, -0.0029500648, 0.003948932, 7.8654545E-4, -0.02829403, -0.022935715, 0.020608904, -0.028639728, 0.008416411, 0.0023168398, 0.007525574, 0.017484328, -0.024903534, 0.0064352965, -1.9248134E-4, -0.0024215463, -0.028426992, -0.001387777, 0.029065203, 0.031245757, 0.002946741, 0.011886684, -0.0016420643, -0.0017451087, -0.0059001297, -0.030953243, -0.0034902175, -0.01781673, -0.015104332, -0.007366021, -0.008276802, 0.0020442703, -0.018135834, -0.03292106, -0.013369195, -0.026432581, 0.0020725245, -0.009247415, 0.013063386, -0.0049627568, 0.025581634, -0.0013811289, -0.017058853, 0.0018398432, -0.013655061, -0.030767098, 0.016832821, 0.029357716, -0.010477301, 0.034702733, -0.021393372, -0.0341443, -0.0015182446, 0.025156159, -0.01663338, 0.01389439, -0.011275065, -0.0012764224, -0.010676742, -0.019385666, 0.0064419443, 0.0030830256, -0.010656797, 0.013216291, -0.022284208, 0.00513893, 0.0042713615, 0.0055876723, -0.0111554, -0.036245078, 0.015091036, -0.0012739294, 0.011554282, 0.0086690355, 0.012265622, 0.017045557, -0.037681054, 1.8624881E-4, -0.019305889, -0.044993892, -0.012252326, -0.01967818, 0.0388777, 0.017657178, 0.030580955, -0.006611469, 0.04299948, 0.012478359, 0.0038259432, 0.022337392, -0.030288441, -0.018627789, -0.024252025, 0.010829646, 0.0096462965, 0.026804872, -0.010723278, -0.0056308843, 0.00518879, 0.013316011, 0.008934957, 0.02038287, 0.0055909962, -0.031751007, -0.035819605, 0.010457356, -0.017178519, 0.0056807445, -0.020289797, -0.006561609, 0.016314274, 0.02193851, -0.006741106, -0.019252704, 0.01876075, -0.0057837893, 0.007385965, -0.032468997, 0.018348573, -0.041802835, 0.0025860851, -0.020475943, -0.01707215, 0.0062956875, -0.009380375, 0.02397281, 1.7679614E-4, -0.016168017, -0.021340188, 0.018095948, -0.018667677, -0.011467857, 0.028559951, -0.021513036, -0.012531543, -0.034463406, -0.009054622, -0.037707645, -0.019279297, -0.002614339, -0.0085294265, 0.004986025, -0.021978399, -0.02572789, 0.01950533, 0.020276502, 0.03151168, 0.014040647, 0.036351446, 0.01781673, 0.025541745, -0.01646053, 0.0027423138, -0.014107127, -0.005687393, 0.02778878, 0.015902096, -0.028852465, -0.011441265, -0.002183879, -0.008243562, -0.023480855, -0.031937152, 0.015503214, 0.02169918, 0.030634139, -0.012012997, -0.00882194, -0.023627112, -0.005773817, -0.0035101618, 0.002177231, 0.005893482, -0.041297585, -0.04065937, -0.010164843, -0.015875503, 0.01731148, 0.016447235, -0.02954386, 0.015184108, -0.015037851, 0.0039589037, -0.020662088, -0.019851027, 0.031458493, -0.017391255, 0.016912596, 0.011082272, 0.008443003, 0.0056275604, -0.0034004692, 0.009779258, 0.028267438, -0.024863645, 0.016300978, 0.011062328, -0.0071133957, 0.011580874, 0.009686185, -0.009652944, -0.012804112, -0.03363905, -0.0070668594, 0.034596365, -0.008496187, -0.0020791725, 3.2949317E-4, -0.011108864, -0.01731148, -0.0023484179, -0.006335576, -0.007771551, -0.028666321, -0.0019229436, 0.0028486825, 0.0072995406, 0.014612378, -0.0047533438, -0.0017517569, -0.008103953, -0.003772759, -0.014439529, 0.011687242, -0.017258296, -0.018335277, -0.030634139, -0.036830105, -0.009878978, -0.01494478, -0.003352271, -0.013369195, -0.009034677, 0.004946137, -0.0056175883, -0.011826851, -0.014160311, -0.031751007, 0.011780315, 0.0135553405, -0.011507746, -0.011381433, -0.0067743463, 0.027841965, -0.0072795968, -0.006953843, -0.0068275305, 0.02430521, 0.029012019, -0.0054214713, 0.03978183, 6.103726E-4, -0.015503214, 0.0029400927, 0.024464764, 0.026791574, 0.015037851, -0.0066746254, -0.038797922, -0.008037472, -0.002758934, 0.017524216, -0.0072663007, -0.0062425034, 0.017550807, 0.014904891, 0.03940954, 0.0199441, -0.016739748, -0.015197405, 0.0018365192, 0.009679536, -0.02014354, -0.0022320773, 0.009426911, 0.021167338, 0.026432581, -0.0044641546, -0.027443083, -4.6286933E-4, -0.035925973, -0.028905649, -0.015144221, 0.023613814, 0.03156486, 0.005361639, 0.0074790376, 0.015317069, 0.0033240167, -0.0013611849, -0.015277181, -0.012352047, 0.015011259, 3.637721E-4, 0.016340867, 0.018880416, -0.024717389, -0.0054513873, 0.012046237, 0.0075721103, 0.012046237, 0.023640407, -0.010610261, 0.008801997, -0.0099521065, 0.0042181774, -0.019026672, -0.026764983, 0.03839904, -0.013309363, -0.0063056597, 0.008070713, 0.015024556, 0.009274007, 0.01849483, 0.022696387, -0.0044375625, -0.0014467783, -0.0050624777, -0.025993811, -0.0058336495, -0.039196804, 0.01687271, 0.011654003, -0.007339429, 0.043105848, 0.015476622, -5.979075E-4, 0.0054480634, -1.9487049E-4, 0.02167259, -0.0056774206, -0.0023700239, 3.9077972E-4, 0.019957397, -0.017590696, 0.0029966012, -0.016713155, -0.005959962, -0.013788021, -6.610638E-4, -0.002602705, 0.03563346, -0.0034337093, -0.044834338, 0.0036630665, -0.023573928, 0.025063086, -0.021765662, -0.009639649, -0.014838411, -4.167486E-4, 0.0056475042, 0.0041949092, -0.030634139, -0.024198841, -0.004138401, 0.0010902775, 0.007751607, 0.01900008, 0.19624995, -0.014466121, -0.0056175883, 0.04390361, -0.0031860701, 0.007366021, 0.025209343, 0.010949311, 0.0011010806, 0.015410142, 0.0015506538, -0.0055112196, 0.0016628393, -5.3142715E-4, 0.015795728, -0.015330365, -0.01602176, -0.018335277, -0.012737632, -0.013282771, -0.003962228, 0.015636174, -0.019731363, -0.026871352, 0.01626109, -0.003156154, 6.336407E-4, 0.005567728, 0.022762867, -0.003174436, -0.010497245, -0.0028802606, -0.0027605959, 0.014958075, -0.012012997, 0.0055909962, 0.0022703034, 0.0048597124, 0.014213496, 0.0068940106, -0.0132761225, 0.022031583, -5.355822E-4, 0.007990936, 0.009633001, 0.014014055, -0.018162427, 0.0067244857, -0.010450709, 0.015170813, -0.048743382, -0.012937074, 0.020369574, 0.027469674, -0.0044043222, -0.008469595, 0.0031278997, 0.009107806, -0.012179198, 0.005281863, 0.007764903, 0.02717716, -0.02816107, 0.0112950085, 0.005996526, 0.010051827, -0.03842563, 0.008635796, 0.010158195, -0.030049112, -0.015410142, -0.03698966, -0.0036830106, 0.0022919097, -0.007917807, -0.006548313, -0.0011376448, -0.0121592535, 0.0062790676, 0.032734916, -0.02498331, -0.0050624777, 0.008595907, -0.0063721403, -0.020648792, 0.0039987923, 0.0136949485, -0.009732721, -0.018614493, -0.009413616, 0.0032525505, -0.017085446, -0.008988141, -0.002371686, -0.003176098, -0.012976961, 0.02511627, 0.0010952635, -0.013734837, -0.00797764, -0.044302493, 0.018734159, 0.021991694, 0.0054048514, -0.027017608, -0.026658615, -0.0044176183, 0.0043079257, 0.017298182, -0.009978699, -0.0072330604, -0.032734916, -0.005551108, -0.010098363, 0.01917293, 0.04151032, -0.012770873, -0.0034270613, 0.04116462, -0.020928008, 0.01345562, -0.026419286, 0.014306568, -0.0030846875, 5.1979313E-4, -0.020329686, -0.02038287, 0.014851707, 0.008462947, -0.024278618, 0.024597723, -0.017830025, 0.01731148, -0.008988141, 0.012657856, -0.002973333, 0.017843321, -0.022975603, 0.008443003, -0.015423438, -0.0072197644, -0.016566899, 0.014971372, 0.00439435, -0.002353404, -0.026445877, 0.0063023358, -0.0012988595, -0.014865003, -0.042201716, -0.033825193, -0.0026292973, 0.012830704, -0.0014575813, 0.038558595, -0.00439435, -0.002770568, -0.035793014, -0.013628469, 0.043105848, -0.012378639, 0.024704093, 0.019292593, -0.017244998, -0.033612456, -0.008569315, -0.16763681, 0.029703414, 0.011162048, -0.031352125, 8.634133E-4, 0.013442324, 0.022656498, 3.646031E-4, 0.0026675235, -0.017151926, 0.030580955, -0.009420264, -0.052386504, 0.003962228, 0.0060763024, 0.023148453, -0.011434617, 0.03252218, 0.03512821, -0.012465063, 0.046828747, -0.020848233, 1.5347608E-5, 0.006382112, 0.013708245, -0.021606108, 0.032176483, 0.019212816, 0.010583669, -6.357182E-4, -0.043451548, -0.02079505, 0.026804872, -0.003176098, -0.019970693, 0.021287004, 0.00640538, -0.02305538, -0.015317069, -0.011002495, 0.05946001, 0.023281414, 0.01818902, 0.019292593, 0.025900738, 0.020715272, 0.027496267, -0.017005669, 0.01545003, -0.01189998, -0.0017367988, -0.035580274, 0.037069436, -0.0070003793, -0.01687271, 0.019558515, 0.007552166, 0.0074325013, 0.0068042623, -0.0060763024, -0.015875503, -0.0089216605, 0.016886005, -0.020608904, -0.007937752, -0.0022088091, -0.012844001, 0.0068940106, -0.027549451, 0.010982552, -0.018813934, 0.012358694, 0.0043079257, -0.004032032, 0.012937074, -0.01639405, -0.040180713, -0.008070713, -0.015223997, 0.014891595, -0.0052552703, 0.026166659, -0.014891595, 0.011806907, -3.3281717E-4, -0.004946137, 0.0058502695, 0.0020376223, -0.0018498154, -0.007292893, 0.00912775, -0.018774046, -0.03563346, -0.0012431822, 0.00395558, 0.010729926, -0.011760371, 0.0072397087, 0.004769964, -0.005830325, -8.3931425E-4, -1.21949866E-4, -0.021712478, -0.0039057196, 0.02075516, 0.016992373, 0.007851328, 0.015064443, 0.023879737, 0.005022589, -0.010703334, 0.0051090135, 0.034968656, -0.0043378416, -0.015649471, 0.017550807, -0.024823757, -0.015809024, -0.009300599, -2.7900966E-4, 0.070096865, -8.8751246E-4, 7.6036886E-5, -0.010271212, -0.0048962766, -0.018441645, -0.09466799, -3.785224E-4, 0.028506767, 0.04111144, -0.013176402, 0.02143326, -0.013063386, 0.010051827, -0.008423058, 0.03427726, -0.0076385904, -0.031219166, 0.025169455, 0.0076252944, 0.006993731, -0.0053416947, -0.013934278, -0.010430764, -0.017338071, 0.023706887, -0.011481154, -0.0087887, 3.008235E-4, -0.0010636854, -0.018468237, 0.024863645, -0.008549371, 0.023148453, 0.012917129, 0.004002116, -0.008303394, -0.017258296, 0.019664884, -0.034729328, -0.01805606, -0.025448672, -0.010822998, -0.02816107, -0.0030647435, -0.034064524, 0.016300978, 0.013528748, -0.006780994, -0.034809105, -0.014599081, -0.008934957, -0.033452906, 0.03390497, 0.0030697295, -0.023002196, 4.94032E-4, -0.030979836, -0.045153443, -0.007226412, 0.0082502095, 0.0199441, 0.028347215, 0.0071931724, -0.0037195748, -0.03241581, -0.0066280896, -0.005923398, -0.017231703, 0.017776841, 0.015091036, 0.020635497, 0.0032625224, -0.018627789, 0.015622878, -0.018215612, -0.018335277, 0.008137193, -0.036431223, -0.02149974, -0.023680296, 0.0038059992, -0.02211136, -0.016992373, 0.021978399, -0.032176483, 0.006195967, -0.026179956, 0.012817409, -0.018135834, 0.020595608, 0.021805549, 0.014279976, 0.019585107, -0.020675384, -0.0520674, -0.012890537, 0.025608225, -0.005411499, 0.008190378, 0.011062328, 0.013601877, 0.016314274, -0.005411499, 0.0070136753, 0.021247115, -0.010011938, -0.006717838, -0.066001676, 0.028932242, -0.03201693, 0.0063987323, -0.0126046715, -0.026126772, -0.016088242, -0.007578758, 0.0029966012, 0.034463406, -0.0025528448, 0.017165223, -5.218706E-4, -0.0064552403, -0.0048430925, 0.015184108, -0.004201557, -0.008895068, 0.011248473, 0.015184108, -0.018840527, 0.014532601, 0.018867118, 0.002170583, 0.00512231, 0.011973108, 0.003579966, 0.0032708324, -0.027336713, -0.012784168, 0.03526117, -0.028134478, -0.013189699, -4.874359E-5, 0.0049062488, -0.036776923, -0.0103709325, 9.4734476E-4, 0.019930804, -0.0030547713, 0.0033040727, -0.0260337, 0.0103111, -0.0035633459, -0.01950533, 0.016234498, -0.023254821, 0.014599081, 0.0022287532, 0.03153827, 0.036218487, 0.0037029546, 0.02281605, -0.025063086, 0.034037933, -0.017258296, 0.041403953, 0.0060862745, -0.004630355, -0.02441158, 0.017923098, 0.01669986, 0.026512358, -0.028506767, 0.00476664, 0.002752286, 0.014160311, -0.016646676, -0.0028121183, -0.027203754, -0.006731134, -0.0034503294, 0.018282091, 0.040313676, 0.02169918, 0.02149974, 0.00821697, -0.003982172, -0.0060297665, 0.025089677, 0.010723278, -0.004387702, -0.02988956, 0.02717716, -0.0068674185, 0.025820961, -0.0013969181, 9.2075265E-4, 0.020409463, -8.085671E-4, -0.019824436, 0.022949012, 0.012086125, -0.0035367538, 0.019212816, 0.021898622, -0.0057073366, -0.0027123976, 0.0085028345, 0.041270994, -0.025382191, -0.0050757737, -0.010809703, -0.016128128, -0.026366102, 0.008589259, -0.020156838, -0.0010503893, 0.009154342, 0.027443083, 0.030049112, 0.0014501023, -0.021765662, 0.014093831, -0.042574007, 0.0049228687, -0.017005669, -0.005178818, -0.008376522, 0.034809105, 0.017776841, 0.016287683, 0.025541745, 0.006764374, 0.05299812, 0.0011417997, 0.0014293272, -0.02167259, 0.0030364892, 0.015981872, -0.0026309593, -0.004148373, -0.022324096, -0.0036730384, -0.019239409, 0.011381433, 0.012478359, 0.036404632, -0.02126041, 0.07530893, 0.024424875, -0.0019611698, 0.0117670195, -0.0029267967, 0.014865003, 0.012564783, 0.016886005, -0.015596286, -0.010450709, -0.013548693, 0.0050624777, 0.010563726, -0.03627167, -0.0064984527, 4.184106E-4, 0.021380076, 0.008855181, -0.008336634, -0.009912218, -0.01142797, -0.023254821, 0.025820961, 0.004228149, -0.0071266918, -0.018867118, 0.02649906, 0.00279716, 0.0033240167, -0.034170892, 0.011288361, -0.023919625, -0.013202994, 0.0023567278, 0.019412259, 0.009353783, 0.0016171342, 0.009387023, 0.017098742, 0.011713835, -0.024903534, -0.0015622879, -0.023693591, -0.009526632, 0.021645997, -0.02441158, -0.008569315, -0.030926652, -0.0040852167 ], + "id" : "a4812f02-34b5-4a23-9357-1acd429da4d5", + "metadata" : { + "source" : "movies.csv" + } + }, + "79498e51-f03b-4e52-8ddd-8731b5ceeafe" : { + "text" : "6,216,Wu Jing-Frank Grillo-Celina Jade-Zhang Han-Wu Gang-Chunyu Shanshan-Ann James-Qian Yu-Nwachukwu Kennedy Chukwuebuka-Diana Sylla-Song Duyu-Yu Nan-ېinh H�_�i Phong-Gao Ming-Zhou Guanting-Du Jianqiao-Guo Qiucheng-Wei Qing-Cheng Su-Sun Shuaihang-Zhang Xinyue-Chen Yunzhi-Wang Sen-Zhang Yongda-Zhuang Xiaolong-Oleg Prudius-Heidi Moneymaker-Aaron Toney-Aaron Ly-Pierre Bourdaud-Norbert DuBois-Daniel Hargrave-Paul Allica-Thayr Harris-Clay Donahue Fontenot-Austin Priester-Trevor Jones-Sylvesta Stuart-Shi Zhaoqi-Guan Hailong,china-special forces,/ophb3WpBZz5oNLoUbOTelvIzeku.jpg,/dpbjivY5OdZjAr1gmRZVCsEkYRC.jpg,335462-535167-504075-878539-344556-460555-495975-972370-612845-673121-799379-10395-520946-199534-896485-284298-508935-415214-457837-51533-11824\r\n101299,The Hunger Games: Catching Fire,Adventure-Action-Science Fiction,en,\"Katniss Everdeen has returned home safe after winning the 74th Annual Hunger Games along with fellow tribute Peeta Mellark. Winning means that they must turn around and leave their family and close friends embarking on a \"\"Victor's Tour\"\" of the districts. Along the way Katniss senses that a rebellion is simmering but the Capitol is still very much in control as President Snow prepares the 75th Annual Hunger Games (The Quarter Quell) - a competition that could change Panem forever.\",152.338,Lionsgate-Color Force,11/15/13,130000000,865011746,146,Released,Every revolution begins with a spark.,7.425,16445,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Donald Sutherland-Lenny Kravitz-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Toby Jones-Willow Shields-Sam Claflin-Lynn Cohen-Jena Malone-Bobby Jordan-Amanda Plummer-Jack Quaid-Taylor St. Clair-Sandra Ellis Lafferty-Paula Malcomson-Bruce Bundy-Nelson Ascencio-Afemo Omilami-Kimberley Drummond-Deena Beasley-Leon Lamar-Mandy Neuhaus-Erika Bierman-Wilbur Fitzgerald-Patrick St. Esprit-Jill Jane Clements-James Sutton-Alan Ritchson-Stephanie Leigh Schlund-Meta Golding-Megan Hayes-Stef Dawson-James Logan-E. Roger Mitchell-Bruno Gunn-Maria Howell-Judd Lormand-Elena Sanchez-John Casino-Marian Green-Daniel Bernhardt-Ravi Naidu-Franco Castan-Jared Allman-Laura Avnaim-No�lle Ren��e Bercy-Jackson Spidell-Nickolas Wolf-Moses J. Moseley,rebellion-based on novel or book-propaganda-dystopia-games-uprising-sequel-president-survival-murder-conspiracy-female protagonist-tournament-based on young adult novel,/vrQHDXjVmbYzadOXQ0UaObunoy2.jpg,/oDYQhS5LtFXUP0x6bCZije5HRr9.", + "embedding" : [ -0.0025902174, -0.021259429, -0.0137455575, -0.020556295, -0.021273216, 0.025629882, -0.012242784, -0.013911, -0.03239926, -0.03432943, 0.026057277, 0.024485568, 0.011560331, 0.005842207, 0.0049908645, 0.007203665, 0.024526928, -0.013773132, 0.007162304, -0.039982066, -0.0068279714, -0.006328196, -0.012911449, 0.0121049145, -0.008761587, 0.020804461, 0.02564367, -0.015965251, -0.0031003333, -0.0034346662, -0.0018267668, -0.008761587, -0.006531553, -0.018722635, -0.0144624775, 0.009637056, 0.008203217, -0.03333677, 0.024209829, -0.007055456, 0.026856918, 0.02250025, -0.0045324494, 0.0032761164, -0.01462792, -0.0017302583, 0.009892114, -0.01181539, 0.0033088606, 0.026981, 0.027284311, 0.035983857, -0.02299658, -0.023286106, -0.01785406, -0.0052562626, -0.0099334745, 0.015882531, -0.006466065, 0.005804293, 0.012118702, 0.0030762062, -0.03253713, -0.013518074, -0.023782434, -0.0037259148, -0.014269461, -0.01924654, -0.0018112564, -0.007176091, 0.022128005, 0.013138933, 0.017233647, 0.007162304, 0.024706159, -0.031792633, -0.03333677, 0.004229137, -0.008354872, -0.008995964, 0.016227202, -0.018405536, -0.008065348, 0.0016492602, 0.016502941, 0.022569185, -0.02048736, 0.030634534, -0.00928549, -0.013628369, 0.0038258699, 0.016337499, 0.0027056828, -0.002507496, -0.009981729, 0.0076310593, -0.025878046, 0.009444039, -0.029062824, -0.02514734, 0.01241512, -0.0022662247, -0.0028883594, -0.010416017, -0.011939472, 0.00182849, -0.0068762256, -0.017757552, 0.022762204, 0.013421565, -0.004236031, -0.0017750658, 0.014889872, -0.046241324, -0.005125287, -0.024623437, 0.020804461, -0.02707751, -0.0045738104, -0.01847447, 0.025850473, 0.036783498, 0.0186537, -0.03154447, 0.0390997, 0.03261985, -0.0014321161, -0.008196323, 0.007548338, -0.006528106, 0.023658352, 4.653085E-4, 0.038134616, 0.019618785, -0.030992992, 0.043566663, -0.017936781, 0.0046461914, -0.02702236, -0.0063178553, 0.031158436, 0.030689681, -0.013400885, -0.022886286, -0.018639915, 0.0039499523, 0.00878916, 0.007065796, 0.01731637, 0.01753696, 0.014545199, 0.019370621, 0.023148237, 0.032151096, 0.0186537, -0.006807291, 0.001893978, -6.682347E-4, 0.0056698704, -0.023865156, 0.007107157, -0.01861234, -0.02245889, -0.016847614, -8.2936935E-4, 0.019770442, 0.026898278, -0.00932685, -0.015013955, 0.0016501219, 0.005077033, 0.0053631114, -0.024623437, 0.013449139, 0.009974835, 0.010719329, 0.020873396, -0.0072105583, -0.029145546, -0.010643501, -0.0027074062, 0.0058870143, 0.035101496, 0.029834893, -0.02648467, 0.0065694666, 0.009885221, -0.016268564, 0.0032416494, -0.011091576, -0.00928549, 0.016489156, 0.007382895, -0.0026315781, -0.63838947, -0.0076724202, 0.0030434623, 0.001020232, -0.0018646808, 0.0032623296, 0.011174298, 0.0073897885, -0.011946365, -0.0015725704, -0.013931681, 0.008499635, 0.011146723, -0.0061282855, -0.014958806, -0.018005716, -8.81932E-4, -0.010815837, -0.0044083674, 0.0070933695, -0.0062179, 0.016268564, 0.004411814, -0.0017836826, 0.014241887, 0.018722635, -0.01695791, -0.014696855, 0.00255575, 0.012690859, -0.023658352, 0.028924955, 0.023286106, 0.0070933695, 0.041195314, 0.00910626, -0.023906518, 0.053851705, 0.028166674, 0.025340356, -0.031241158, 0.017950568, -0.0023075854, 0.0041360757, -0.024085747, 0.021741971, 0.018846719, 0.0065074256, 1.5736475E-4, -0.0028108081, -0.0051597543, 0.0044841953, -0.006059351, -0.014834724, -0.0056939973, -5.178711E-4, -0.0019474023, -0.03807947, 0.016820041, 0.0029624642, -0.023479123, 0.031709913, 0.012173849, 9.8393364E-5, -0.0062282407, 0.037390124, -0.013449139, 0.008596144, 0.008458274, -0.013780025, 0.005700891, 0.0031951184, -0.011456929, -0.005135627, 0.014614134, 0.017164715, 0.01870885, -0.008334192, -0.01313204, 0.022679482, -0.012091127, -0.008423807, 0.015689513, 0.020694165, 0.0037465952, -0.02058387, -0.028345905, 0.007014095, 0.0055802553, 0.005163201, 6.2084215E-4, 0.006379897, 0.005690551, 0.019963458, -0.0068727788, 0.012615031, -0.017385304, -0.0022455445, 0.033033457, -0.056360923, -0.011263913, -0.018529618, 0.007520764, -0.008782268, 0.0062937285, 0.029366137, -0.016516728, -0.01771619, 0.03650776, -0.013021745, -0.011525864, -0.0028659557, -0.023920303, -0.004804741, -0.0035742586, -0.025174914, 0.032095946, 0.026153784, 0.010250574, -0.0056836572, 0.0018215966, 0.015730875, -0.0030882698, -0.023548057, 0.008444488, 0.043732107, -0.014931233, -0.004398027, -6.419534E-4, 0.014752003, 0.008754693, -0.009168301, 0.02626408, -0.018763997, 0.013655943, -0.008003307, 0.0013562881, 0.0013692133, 0.029200694, -0.001657877, -0.017509386, -0.007961946, -0.0088856695, -0.034770608, 0.006348876, -8.659908E-4, -0.027890936, -0.0024937089, -0.010533206, -0.0075069773, -0.011615479, 0.015537857, -0.008478955, 0.01512425, -0.004821975, 0.0040878216, -0.0052217953, -0.0074518295, 0.0036466399, -0.026705261, 0.010691755, 0.015744662, -0.0054217055, -0.0120221935, 0.026898278, -0.005383792, -0.011567225, 0.016902762, -0.0248716, -0.018777784, 0.021328364, -0.008995964, 0.005752592, 0.016144482, -0.010864092, 0.022486465, -0.014069551, 0.028869808, 0.01440733, -0.004587597, 0.0055147675, -0.022279661, -0.042629153, -0.020321919, 0.0017268115, 0.027215376, -0.0035639184, -0.007624166, 0.0016613237, 0.0013666283, -0.029834893, -0.011801602, -0.017523173, -0.0074518295, 0.0029021464, 0.023810009, 0.013221655, 4.2287065E-4, -0.0025798772, -0.0025230062, 0.034660313, 0.0033329877, 7.393235E-4, -0.0051494143, 0.012008406, -0.03493605, 0.0035708118, -0.018240094, 0.0013269909, 0.0046978923, 0.019536063, -0.0026350247, -0.020473573, -0.0053010704, -8.771927E-4, 0.035873562, -0.014110912, 0.0033933055, -0.01167752, 0.0063454295, 0.0028883594, -0.015179398, 0.007534551, 0.022569185, -0.035101496, 0.007927478, 0.012566776, -0.005077033, 4.3148748E-4, -7.694824E-4, -0.016254777, -0.0068279714, -0.0040119933, -0.0074931905, -0.0065108724, -0.014310822, 0.030551812, -0.015813597, 0.035790842, -0.010195427, -0.0028125313, 0.0057319114, 0.030276073, 0.0038568906, 0.004236031, -0.011167404, -0.0026298547, 0.018763997, -0.002088718, 0.043676957, -0.017054418, 0.05029468, -0.009540548, 4.9805245E-4, 0.010967494, -0.013621476, 2.7853885E-4, 0.008761587, 0.024154682, 0.014338396, 0.0033071372, -0.026360588, 0.010788264, 0.014696855, 0.006986521, 0.0013063105, -5.842207E-4, 0.008644398, -0.012966597, -0.031213583, -0.009616376, -0.026594967, 0.0063454295, 0.010478058, -0.0061524124, -0.012346186, 0.0060455636, 0.002645365, -0.0022334808, 0.016130695, 0.0034708567, -0.02008754, 0.00602833, 0.026594967, -0.019715294, -0.03033122, -0.015069102, -0.006631508, -0.039485734, -0.003684554, -0.013635263, 0.012580563, 9.1122914E-5, 2.300692E-4, -0.016764892, 0.018832931, 0.0077068876, -0.014324608, 0.019122455, 0.021728184, -0.0027332567, 0.008451381, -0.017440451, 0.0026143445, 0.024706159, -8.539273E-4, 4.933132E-5, 0.0054630665, 0.009292383, -0.013959255, -0.0016320265, -0.0066728685, -0.03485333, 0.0137869185, 0.003027952, -0.005077033, -0.022900071, 0.014297035, 0.014310822, -0.022569185, -0.022472678, -0.032868013, -0.031158436, -0.003684554, 0.08156341, 0.033226475, 2.7616922E-4, 0.003008995, -0.016861401, 0.0062144534, -0.016930336, -0.022775989, -0.005759485, -0.007058902, 0.0059387153, -0.012291038, 0.014862298, 0.010967494, 0.0255058, -0.01024368, -0.004690999, -0.024719944, -0.014448691, 0.0040464606, -0.027491115, 0.0017130247, 0.015730875, 0.009912794, -8.4875716E-4, 0.001386447, 0.025933195, 0.0012546096, -0.0020232303, 0.0019973798, -0.013807599, -0.0036190662, 0.01727501, 0.008120495, -0.011670627, 0.0028366586, 0.023947878, -0.005914588, 0.031930503, -0.012794261, -0.003008995, 0.021866053, 0.005993863, -0.018267667, 0.017302582, -0.019411981, -0.021797119, 0.008678866, 0.021797119, -0.0240306, 0.021866053, -0.004487642, -0.020294344, -0.02245889, 0.007955052, -0.0058801207, -0.020128902, -0.005862887, -0.020680377, 0.0087478, 3.9895895E-4, -0.027298098, 0.013587008, -0.010353976, 0.009499187, -0.016861401, -0.011505184, -0.020997478, -0.0073897885, 0.008913243, 0.0051700943, -0.016516728, 0.020832034, 0.0027987445, 0.0015691237, -0.008540996, 0.04764759, -0.0021249088, 0.024416633, 0.0044290475, -0.025574734, -0.042270694, 0.0075000837, -0.026250293, -0.002927997, 0.006803844, -8.1730576E-4, 0.011774029, -0.006438491, -0.0038189765, 0.0036638735, -0.001147761, -0.010450484, -0.004339433, 0.041691642, 0.013014851, -0.0016104844, 0.0013192358, 0.007520764, 0.0026143445, 0.025354143, -0.035652973, -0.013497394, -0.012449588, -0.010498739, -0.01440733, 0.006117945, 0.0069210334, -0.029310988, -0.011070896, -0.020735526, -0.028070167, 0.015634365, 0.004663425, 0.019701507, -0.0022558845, 0.0137248775, 0.010912346, -0.018143585, 0.0053527714, -0.006938267, -0.011918792, 0.017991928, 0.04298761, -0.005918035, 0.03449487, -0.01910867, -0.017523173, -0.0034691335, 0.018336602, -0.013642156, 0.02594698, -0.009650843, -0.009795606, -9.245852E-4, -0.008327299, -9.1165997E-4, 0.00731396, 0.0038603372, 0.026815556, -0.023768649, -0.010857198, 0.012870088, 0.01566194, -0.007679314, -0.028787086, 0.00890635, -0.0023437762, 0.012677072, 0.0046599787, -0.0022731181, -0.011415568, -0.01462792, -0.003736255, -0.023024155, -0.028649217, -0.0374177, -0.019756654, 0.0248716, 0.01221521, 0.036590483, -5.5320014E-4, 0.040643837, -0.0025488567, 0.0031951184, 0.029807318, -0.024940535, -0.020997478, -0.033529785, 0.005759485, 0.012373759, 0.024154682, 0.006528106, 0.009140727, 0.009140727, 0.02407196, -0.0048495485, 0.003500154, 0.007265706, -0.03333677, -0.026015915, 0.019439556, -0.025023257, -0.00856857, -0.02500947, -0.023810009, 0.036755927, -0.012656392, -0.01004377, -0.0129872775, 0.0189708, -0.017247435, -0.0021766098, -0.026167572, 0.030717256, -0.034467295, 0.005890461, -0.018446896, -5.9714593E-4, 0.009857647, -0.014297035, 0.012187636, -0.0137248775, -0.029145546, -0.010326402, 0.027242951, -0.02201771, -0.014021296, 0.016172055, -0.023079302, -0.012339292, -0.025257636, 0.013325057, -0.028152889, -4.067141E-4, -0.0076517398, -0.012111808, 0.0071416236, -0.01857098, -0.033226475, 0.029586727, 0.008058454, 0.042270694, 0.018943226, 0.04182951, 0.017219862, 0.01494502, -0.02072174, 0.007893011, 0.008734013, -0.008017093, 0.026815556, 0.024651011, -0.029090399, -0.004866782, -0.009113153, 0.0018905313, -0.03852065, -0.027298098, 0.010429804, 0.030606959, 0.016916549, -0.018184945, -0.010036876, -0.021673037, -0.0060869246, -0.019536063, 0.0083135115, -0.007679314, -0.025781538, -0.016075548, 0.0037397016, 0.0012029087, 0.0040947148, -0.0041981167, -0.039844196, 0.007410469, -0.02349291, -0.012704645, -0.0017819592, -0.0071829846, 0.041774362, -0.022913858, 0.0035604718, 0.019701507, 0.008940817, -0.0025729837, -0.0022317574, 0.001115017, 0.029697023, -0.0067659304, 0.019053522, 0.010850305, -0.0067900573, 0.013159614, 0.020432213, -0.022183152, -0.018047076, -0.018198732, -0.007727568, 0.011146723, -0.006628061, -0.008113601, -0.0047323597, -0.023782434, -0.0098093925, -0.013056212, -0.011649947, 0.019991033, -0.04312548, 0.0045565767, 0.011512077, -0.0042256904, 0.0020301237, -0.0013269909, -0.012173849, -1.9958719E-4, 0.01548271, -0.016820041, 0.0060903714, -0.019522278, -0.02022541, -0.02711887, -0.008478955, -0.008141176, -0.010374656, 0.016227202, -0.019398194, 0.009182088, -0.0017621405, 0.003974079, 0.002867679, 0.012394439, -2.9878836E-4, 0.013028638, 0.024719944, 3.0912855E-5, -0.0071485173, 0.0026712155, 0.040919576, 0.001296832, -0.0020611444, -0.007824076, -0.0023351593, 0.036397465, -0.018929439, 0.014117804, 0.016516728, -0.02925584, -0.012187636, 0.010829625, 0.024802666, 0.0012839067, -0.0060110968, -0.03132388, 3.567365E-4, -0.003443283, 0.043373644, -0.0061524124, 0.0055802553, 0.041471053, 0.014641708, 0.02215558, 0.02116292, -0.0122083165, -0.023244744, 0.0051459675, -0.0058249733, -0.03126873, 0.010036876, 0.007837864, 0.005535448, 0.017013058, 0.0042119035, -0.03628717, 0.0068900124, -0.01713714, -0.026912065, -9.556058E-4, 0.015882531, 0.0106297145, 0.010367763, -0.008306619, 0.011339741, 0.008809841, -0.0015734321, -0.016985483, -0.0035432382, 0.014696855, -0.0039499523, 0.02245889, 0.021631675, -0.030910272, -0.004690999, -0.0011374208, 0.027504902, -0.008347979, 0.021176707, -0.0050529055, -0.0055526816, -0.021107772, -0.012077341, -0.008444488, -0.008989071, 0.025188701, -0.025381718, -0.005690551, 0.017826486, 0.01074001, 0.002588494, 0.0030710362, 0.017909206, -0.014793363, 0.0023162023, -0.010278148, -0.035652973, 7.966254E-4, -0.0076517398, 0.030110631, -0.009650843, -0.0022989686, 0.045496833, 0.012890769, -0.017440451, -0.0047978475, -0.025092192, 0.0018353836, -0.009016645, 0.0063971304, 0.010029984, 0.022334808, -0.0331989, 0.019853164, -0.03206837, 0.010829625, -0.011250125, -0.0067762705, -0.006886566, 0.033640083, 0.01131906, -0.049191725, 0.016365072, -0.0074656163, -0.0058801207, 0.004587597, -8.2667655E-5, -0.029724596, -0.007127837, -0.0013778302, -0.0013209592, -0.0013683516, -0.015275906, -0.024223616, -0.01131906, 0.00365698, 0.01753696, 0.21011265, 0.010333296, 0.012125595, 0.04398027, 7.8154594E-4, 0.013359524, 0.031930503, 0.013518074, -0.0077206744, 0.014545199, -0.0113673145, 0.004349773, 0.0056802104, -0.0025471332, -0.00347258, -0.009499187, -0.03526694, -0.010009303, 0.004222244, -0.013628369, -0.0129872775, 0.002612621, 0.0047495933, -0.025174914, 2.9232577E-4, -1.0372502E-4, -0.0072932797, 7.750833E-4, 0.0171785, 0.0012528863, -0.01619963, -0.0060110968, -0.0012459927, 0.013931681, -0.025560947, -0.0023610098, 0.0021076752, 0.019853164, 0.012401333, -0.0044187075, -0.0025591967, -0.00805156, -0.0036121728, -0.017343944, 0.007734461, 0.022472678, -0.028042592, -0.010388443, -0.015758447, 0.012697752, -0.035735693, 0.0024678584, 0.017164715, 0.030303648, -0.01610312, 2.6432108E-4, 0.022707054, 0.005494087, -0.009478507, -7.3199923E-4, 0.005338984, 0.03311618, -0.018281454, 0.025588522, 0.010236787, 0.018184945, -0.030799976, -0.0031227372, 0.015331053, -0.025092192, -0.03220624, -0.028235609, -0.005021885, -0.0021283557, -0.0045738104, -0.011484503, 0.010112705, 0.0011710264, 0.008113601, 0.020404639, -0.015551644, -0.01990831, 0.024389058, -0.0033898586, -0.013780025, -0.0189708, 0.025974555, -0.007741355, -0.022072857, -7.057179E-4, -0.007824076, -0.004487642, -0.012001513, -0.016971696, 0.0026315781, -0.005687104, 0.038823962, 0.007203665, -0.005239029, -0.0189708, -0.02590562, 0.028345905, 0.02152138, 0.0027091296, -0.022803564, -0.021355936, -0.009637056, 0.00237652, 0.039761472, 0.004611724, -0.016709745, -0.023506695, -0.0047116796, -0.017785124, -0.0011365591, 0.019756654, 0.006541893, -0.011670627, 0.032013226, -0.01331127, -0.0057043377, -0.03328162, 0.016875189, 0.016516728, -0.006690102, -0.029669449, -0.011422462, 9.107983E-4, -0.0035397913, -0.023851369, 0.020818247, -0.042022526, 0.001348533, -0.0055699153, 0.0067211227, 0.0124358, 0.017192287, -0.007048562, 0.010250574, -0.0120842345, -0.009195874, -0.027201591, 0.032564703, 0.013800706, 0.027008574, -0.017164715, -0.0104642715, -0.015317267, -0.007637953, -0.04618618, -0.025671242, -1.2622301E-7, 0.011505184, 0.022348596, 0.035763267, -0.008699546, -0.024692371, -0.031737488, -0.009333744, 0.050349828, -0.030165778, 0.02644331, 0.021314576, -0.015758447, -0.019425768, -0.015082889, -0.1777961, 0.028083954, 0.0071829846, -0.040864427, 0.0035466847, -0.004539343, 0.029117972, 0.006783164, 0.0015320714, -0.012366866, 0.038189765, 0.0070864763, -0.03634232, -0.0015829105, 0.004690999, 0.016930336, -0.025395503, 0.029724596, 0.032564703, 0.001277875, 0.04102987, -0.0023454996, -0.003722468, 0.014655494, 0.010974388, -0.0075690183, 0.034246705, 3.0482016E-4, 0.0014553816, 3.909884E-4, -0.022045283, -0.01203598, 0.009885221, 0.0054803, -0.018460684, 0.013187188, -0.012911449, -0.007858544, -0.018777784, 0.007065796, 0.035818413, 0.003410539, 0.0047978475, 0.019935884, 0.017964356, 0.019398194, 0.0060627973, -0.016888976, 0.015730875, -0.03427428, -0.003529451, -0.02411332, 0.04196738, -0.011374208, 0.01512425, 0.023437763, 0.009754245, 0.009568121, 0.013297483, 0.008864989, -0.017164715, -1.6038064E-4, 0.008699546, -0.010071344, -0.0025988342, -0.0062523675, -0.018695062, 0.015923891, -0.033005882, 0.013028638, -0.028428627, 0.0034708567, 0.031654764, -0.0012278975, 0.010484952, -0.008561676, -0.0072725997, 0.0060248836, -0.0056422963, 0.009161407, -0.026608752, 0.021617888, -0.007038222, 0.012311718, 0.0071416236, 4.82973E-4, 0.004170543, 6.9063844E-4, -9.737011E-4, -0.022927646, 0.012518522, -0.014889872, -0.049522612, 0.0011598245, -5.415674E-4, -0.0053872387, -3.7935568E-4, -0.006335089, 0.008410021, -0.020459788, -8.4186374E-4, -0.028111527, -0.00347258, 0.021907413, 0.02787715, -0.010767584, 0.015689513, 0.023561845, 0.022128005, -0.007327747, -0.0106297145, 0.006379897, 0.024168469, 0.008775374, 0.0055182143, 0.03306103, -0.020390853, -0.02831833, -2.1369723E-4, 0.020914756, 0.063695565, 0.016020399, 0.0024730286, 0.0046599787, -4.6934765E-5, -0.012070447, -0.09336501, 0.008575464, 0.02809774, 0.03526694, -0.028842233, 0.03421913, -0.009678417, 0.025092192, -0.021300789, 0.025533373, -0.0077551417, -0.033502214, 0.014097124, 0.0094854, 0.01619963, 0.004501429, -0.011739561, -0.012690859, 0.004446281, 0.030413942, -0.004446281, -0.011829176, -0.006055904, -0.0331989, -0.0144624775, 0.016461581, -0.025023257, 0.024154682, 0.016806254, -0.0052114553, 0.012449588, -0.015772235, 0.022610547, -0.041553773, -0.016709745, -0.03708681, -0.026705261, -0.021093985, 0.003581152, -0.04734428, 0.0025764303, 0.008961497, 1.7974156E-5, -0.0051700943, -0.009437146, 0.01811601, -0.037721008, 0.025340356, 0.010746903, -0.03159962, -0.009471613, -0.024044387, -0.025878046, -4.963291E-4, -0.0023937537, 0.013021745, 0.028511347, 6.2773563E-4, -0.0067693773, -0.01664081, 0.016806254, 0.0011107087, -0.02711887, 0.002121462, 0.016902762, 0.029283416, 0.006131732, -0.014159165, 0.0058318665, -0.032730144, -0.017729977, 0.033309195, -0.03239926, -0.0137455575, -0.015593005, -0.009161407, -0.005073586, -0.012842515, 0.025354143, -0.034246705, -0.008265258, -0.02773928, 0.015593005, -0.033033457, 0.023548057, 0.006693549, 0.012532309, -0.0017578321, -0.0068831192, -0.03951331, -0.015951464, 0.016751107, -0.0051425206, -0.0057284646, 0.0010521142, 0.03033122, 0.020735526, -0.01494502, -0.007968839, 0.0018732976, -0.0019577425, 0.01753696, -0.0748354, 0.027863363, -0.018088438, -0.005180435, -0.021893626, -0.0152207585, -0.009836966, -0.0041395226, -0.0073001734, 0.021411086, -0.010112705, 0.02680177, -0.012422014, 0.0033760718, -0.01076069, -0.0060248836, 0.0128631955, -0.0037534887, 0.011132937, -0.0024196042, -0.022872498, 0.028263183, 0.027174016, -0.00675559, -2.4277902E-4, 0.012111808, 0.002612621, 0.007968839, -0.023810009, -0.019866949, 0.031075714, -0.01664081, -0.004649638, -0.0044428348, 0.008878776, -0.04927445, 7.5224874E-4, -9.366488E-4, 0.02148002, 0.0130699985, -0.0065212124, -0.004804741, -0.010808944, -0.009195874, 0.004859889, 0.023341253, -0.013862747, 0.013676623, 0.009733564, 0.009961049, 0.017219862, 0.011663733, 0.0038810177, -0.010491845, 0.01673732, -0.012422014, 0.058346238, 0.009988623, -0.010802051, -0.020873396, 0.030579386, 0.0075552315, 0.018198732, -0.030606959, 0.0025764303, -0.012277251, 0.013297483, -0.011070896, 0.0059456085, -0.03234411, 0.0032364791, -0.003367455, -0.0019542957, 0.028221823, 0.005418259, 0.01847447, 0.012194529, 0.004973631, -0.009575015, 0.0061903265, -1.4271615E-4, 0.0035397913, -0.02496811, 0.020252984, -0.004821975, 0.008782268, -0.0073001734, 0.011512077, 0.008382446, 0.0010684863, -9.3837216E-4, 0.0050942665, 0.0058594407, 0.0044945353, 0.010815837, 0.010774477, -0.0255058, 0.008720226, 0.012739113, 0.030551812, 0.016627023, 3.7160053E-4, 0.006803844, -0.0048736758, -0.022858711, 0.00602833, -0.020156475, -0.015027741, 0.006962394, 0.009388892, 0.016116908, 0.017661043, -0.006910693, 0.011408675, -0.026181359, 0.020749312, -0.00838934, -0.024333911, -0.012001513, 0.042077675, 0.016254777, 0.008396233, 0.0057146777, -0.027174016, 0.042353414, 0.0019336153, 0.024278764, -0.007741355, -1.2171264E-5, 0.0019353387, 0.002805638, -0.004656532, -0.036176875, -0.0012442694, -0.0068176314, -0.008196323, 0.0011512077, 0.012559883, -0.02604349, 0.05884257, 0.023010368, -0.01147761, 0.014172953, -0.0066108275, 0.024389058, 0.004639298, 0.008506529, -0.023162024, -0.0056216163, -0.007927478, -0.032868013, -0.008161856, -0.037472844, -0.009554335, 0.009064899, 0.010098918, 0.019315474, -0.0049667372, -0.0063006217, 0.003708681, 0.005538895, 0.03512907, 0.0021249088, -0.011001961, 0.005380345, 0.020666592, -0.017426666, -0.0017586938, -0.023010368, 2.2425284E-4, -0.014035083, 0.0037052345, -0.0059835226, 0.032840442, -0.011270806, 0.0015027742, 0.012422014, 0.017054418, 0.017688617, -0.01825388, -0.013717984, -0.018529618, -0.015868744, 0.026153784, -0.008430701, -0.01655809, -0.016806254, -0.020170262 ], + "id" : "79498e51-f03b-4e52-8ddd-8731b5ceeafe", + "metadata" : { + "source" : "movies.csv" + } + }, + "9e5ddbf0-3b1f-4db1-88b4-9caa1675708e" : { + "text" : "419,Universal Pictures-Amblin Entertainment,11/22/89,40000000,332000000,108,Released,\"Roads? Where we're going, we don't need roads!\",7.749,11328,Michael J. Fox-Christopher Lloyd-Lea Thompson-Thomas F. Wilson-Elisabeth Shue-James Tolkan-Jeffrey Weissman-Casey Siemaszko-Billy Zane-J.J. Cohen-Charles Fleischer-E. Casanova Evans-Jay Koch-Charles Gherardi-Ricky Dean Logan-Darlene Vogel-Jason Scott Lee-Elijah Wood-John Thornton-Theo Schwartz-Lindsey Whitney Barry-Judy Ovitz-Stephanie Williams-Marty Levy-Flea-Jim Ishida-Nikki Birdsong-Al White-Junior Fann-Shaun Hunter-George Buck Flower-Neil Ross-Tamara Carrera-Tracy Dali-Jennifer Brown-Irina Cashen-Angela Greenblatt-Cameron Moore-Justin Mosley Spink-Lisa Freeman-John Erwin-Harry Waters Jr.-David Harold Brown-Tommy Thomas-Lloyd L. Tolbert-Granville 'Danny' Young-Wesley Mann-Joe Flaherty-Marc McClure-Crispin Glover-Stephanie E. Williams-Mary Ellen Trainor,skateboarding-flying car-car race-lightning-guitar-inventor-time travel-sequel-car crash-diner-alternate history-thunderstorm-tunnel-high school dance-hoverboard-2010s,/hQq8xZe5uLjFzSBt4LanNP7SQjl.jpg,/iGkZLNllCJH9QqKIAIkg5NSy8I6.jpg,196-105-89-85-87-329-607-218-601-280-1891-558-620-562-608-863-1894-1892-217-1895-36658\r\n311324,The Great Wall,Action-Adventure-Fantasy,en,European mercenaries searching for black powder become embroiled in the defense of the Great Wall of China against a horde of monstrous creatures.,37.049,Legendary East-Universal Pictures-Atlas Entertainment-Le Vision Pictures-Kava Productions-China Film Group Corporation-dentsu-Fuji Television Network-Legendary Pictures,12/16/16,150000000,331957105,103,Released,1700 years to build. 5500 miles long. What were they trying to keep out?,6,4813,Matt Damon-Jing Tian-Willem Dafoe-Andy Lau-Pedro Pascal-Zhang Hanyu-Han Lu-Lin Gengxin-Eddie Peng-Huang Xuan-Ryan Zheng Kai-Karry Wang-Chen Xuedong-Pilou Asb�_k-Numan Acar-Johnny Cicco-Yu Xintian-Liu Enjia-Stephen Chang-Li Heng-Li Jingmu-Kenny Lin,monster-china-archer-female soldier-historical fiction-explosion-period drama-british soldier-great wall of china-15th century-female general-war,/p70dq1YxabemdZDm5K6Q8G10wSn.jpg,/jmg9qYhzPZdYuNaOZr5xrQPK6cQ.jpg,940609-927575-154634-588361-37634-43205-79544-86184-24212-52795-293167-244971-121856-289339-282035-105444-115969-25627-68735-462677-648457", + "embedding" : [ 0.016273733, -0.028931081, -0.006763855, -0.024572529, -0.0061532524, 0.018945541, -0.008332529, -0.01856771, -0.011888192, -0.04517783, 0.017744577, 0.028067468, 0.023857348, 0.0031795178, -0.00175253, 0.01966072, 0.020456865, -0.014303613, -0.0017390361, -0.018176384, -0.01003277, -0.020240963, -0.030226504, -0.0022669877, 0.010970602, 0.014371083, 0.038619757, -0.015113252, 0.0040616863, -0.0284453, 0.0072867465, -0.005471807, -0.012448192, -0.003078313, -0.009094939, -0.0017162649, 0.007624096, -0.02817542, 0.034004815, 0.0047161444, 0.016408673, 0.033734936, -0.011955662, -0.0015838552, -0.001479277, 0.018554216, 0.021981684, -0.0010989156, -0.012090602, 0.025975902, 0.028526263, 0.017501686, -0.03133301, -0.018905059, -0.012434698, -0.0049927705, -0.011726264, 0.009911325, 0.0030159033, -0.01003277, 0.009101686, -0.0029754215, -0.027878553, -0.017272288, -0.036784574, -0.004658795, -0.01921542, -0.015153734, 0.012245783, 0.0090207225, 0.014047228, 0.008676626, 0.02526072, 0.0072395178, 0.023654938, -0.0344906, -0.0025807228, -0.020173492, -0.010747951, 0.028094456, 0.016003855, -0.0063556624, 0.008096385, 0.007624096, 0.012333493, 0.011294457, -0.0021438552, 0.027959516, -0.02947084, 0.007091084, -0.008548433, 0.029362889, -0.0058530117, 0.0017879517, 0.024451083, 0.021468913, -0.027082408, 0.031926744, -0.017002407, -0.022494456, -0.012448192, -0.015423614, -0.0061127706, -0.017542167, 0.006558072, -0.010160963, -0.008480963, -0.010963854, 0.03119807, -0.006210602, -0.01023518, -0.0047195177, 0.0112, -0.029956624, -0.004864578, -0.029686745, 0.008703614, -0.004891566, 0.00855518, -0.02987566, 0.03619084, 0.030631322, 0.01149012, -0.024977347, 0.03886265, 0.019336866, 0.007576867, -0.003026024, 0.0028421686, -0.007347469, 0.005734939, 0.002913012, 0.037000477, 0.015369637, -0.03486843, 0.04223614, -0.014438553, 0.0070843366, -0.020875178, -0.011611565, 0.03597494, 0.031899758, -0.023304095, -0.007522891, -0.03497638, 0.025139276, -0.0025081926, -0.011638553, 0.028715178, 0.0043416866, 0.025854455, 0.0035489155, 0.028877106, 0.029389877, 0.03208867, -0.01115277, 4.600602E-4, 0.008798071, -0.012164818, -0.016003855, -0.022184094, -3.7277106E-4, 0.0089195175, -0.024221685, 0.010639999, 0.013790842, 0.019444818, -0.009169156, -0.0093985535, -0.010876143, -0.024397107, 0.015504577, -0.006291566, 0.010680481, -0.005006265, 0.0125763845, 0.014640963, -0.01263036, -0.033546023, -0.0022703612, 0.018351806, -3.5906624E-4, 0.024019275, 0.042991806, -0.013554698, 0.0016049397, 0.016476143, -0.045501683, 0.009283855, -0.0064399997, -0.012023131, 0.0049725296, -0.0072125294, -0.016368192, -0.63864285, -0.011631806, -0.006534457, -0.007941204, 0.002857349, 0.017717589, -0.010808674, -5.1614456E-4, -0.02719036, -0.021752287, -0.03910554, 0.014586987, 0.019971082, -0.01122024, -0.016961927, 9.471084E-4, 8.8807225E-4, -0.013649155, 0.00308506, -0.0071787946, -0.028742166, 0.02277783, 0.009931565, 0.0056202407, 0.013568192, 0.012232288, -0.0011714457, -0.023479516, 0.006429879, 0.006298313, -0.025935419, 0.0117937345, 0.008480963, -0.001009518, 0.0421012, -0.005377349, -0.027122889, 0.04253301, 0.024302648, 0.037324335, -0.031440962, -0.017501686, 5.8445777E-4, -0.0012102409, -0.0154506015, 0.019741686, 0.024639998, -0.015180722, 0.007826505, -0.025840962, 0.009533493, 0.009189397, 0.00610265, -0.0028556625, -0.0055595175, 0.01847325, 0.006284819, -0.020106023, 0.031845782, -0.01325783, -0.018945541, 0.025139276, -0.0013249397, 0.019323371, -0.013311806, 0.023277106, -0.0015020481, 0.0036433733, 0.011544095, -0.014249638, -0.0024643373, 0.014236144, -0.012772047, -0.0049759033, -9.0662645E-5, 0.0036737346, 0.035057347, -0.002513253, -0.01473542, 0.011726264, 8.976656E-5, 0.0015416866, 0.008278553, 0.022211082, 0.018824095, -0.008852048, -0.02566554, 0.01565301, 0.013082408, -0.0020493974, 0.0025773493, 9.28765E-5, 0.0084404815, 2.2897588E-4, 0.002931566, 0.007819759, -0.006176867, 1.740512E-4, 0.021563372, -0.059913248, -0.022656383, -0.026164817, 0.01744771, 0.008561927, 0.0119084325, 0.02322313, -0.0016698794, -0.015315661, 0.02322313, -0.011881445, 0.0032132529, 0.0224, -0.017123854, 0.0041662646, -0.0038390358, -0.027460238, 0.0119084325, 0.0027814456, 0.006075662, -0.011146023, -0.0039031322, -0.0029821685, 0.016449155, -0.021131564, 8.06265E-4, 0.026812527, 6.915662E-4, 0.010228433, 0.004550843, 0.010889637, 0.012684336, 0.0013299999, 0.037999034, -0.0095874695, 0.0024086745, 0.015180722, 0.021684818, -0.018257348, 0.006068915, 0.0039031322, -0.034841444, -0.0053942166, -0.009546987, -0.0133253, 0.002739277, -0.017299276, -0.02111807, -6.019578E-5, -0.003211566, -0.027662648, -0.0036669876, -0.01541012, 0.0047498792, -0.0063995174, -0.005718072, 0.006929156, -0.009378312, -0.017326264, 0.008332529, -0.02369542, -0.001422771, 0.009945059, -8.9060236E-4, -0.018864578, 0.0396453, -0.0036534937, -0.0026346985, 0.023708913, -0.002752771, -0.028067468, 0.0040549394, 1.7078313E-4, -0.0038963852, 0.030739274, -0.011436144, 0.026232287, 0.0037142166, 0.011699276, 0.009553734, -0.0030412045, 0.0027949396, 0.009189397, -0.018446263, -0.023142166, 0.025827467, 0.015180722, 0.026839515, -0.018594697, -0.008561927, 0.0026819275, -0.003331325, -4.4530118E-4, -0.012940722, -0.0046081925, 0.006655903, 0.028931081, 0.019971082, 0.007583614, 0.015126746, 0.011867951, 0.02828337, 0.014317107, 0.010241927, -0.016503131, 0.01122024, -0.02526072, -0.005289638, -0.028877106, 0.006929156, -0.004112289, 0.015180722, -0.010943614, -0.02468048, -0.0016648192, -4.6649093E-5, 0.032439515, -0.019633733, 0.014006746, -0.01883759, 0.0070775896, -0.0021910842, 0.007037108, 0.02020048, 0.007489156, -0.02468048, 0.018351806, 0.002870843, 0.0023597588, -0.005583132, -0.001486024, -0.011928674, -0.0035725299, -1.6519577E-4, 5.772891E-4, -0.008798071, 0.009324336, 0.029821685, -0.009486265, 0.040562887, -0.0044934936, 0.011969156, 0.018851083, 0.03397783, -0.009533493, -0.002019036, -0.014236144, 0.012562891, 0.025206745, -0.0022146986, 0.033141203, -0.003338072, 0.029039035, -0.004668915, -0.008561927, -0.0033026503, 0.0032486746, 0.004250602, 0.005411084, 0.026583131, 0.024586022, 0.013662649, -0.011301204, 0.026758552, 0.004786988, -0.0035151804, 0.0029602407, -0.03252048, 0.0012971084, -0.008750843, -0.029659757, -0.0050872285, -0.019228915, 0.016759517, 0.017420722, 0.0045744576, 0.0053807227, -0.0016116867, 0.018446263, 0.014384577, 0.026137829, -0.023938311, -0.01789301, 0.011753252, 0.013318554, -0.018945541, -0.016246745, -0.0104578305, -0.017366746, -0.037108433, -0.011233734, -0.014802891, 0.01346024, -0.023371564, 0.0072395178, -0.023938311, -0.0010331324, 0.03252048, -0.0064804815, -0.002911325, 0.019836143, -0.01823036, 0.016961927, 0.0025824094, -0.0060250596, 0.007374457, -0.019674215, 0.008177348, -0.006929156, 0.010289156, 0.0079614455, 0.0019498793, -0.0011115662, -0.038484816, 0.014533011, -0.015909396, 0.0010213252, -0.011193252, -0.0030462649, 0.014303613, -0.0070640957, -0.0021134939, -0.042559996, -0.03886265, -0.017204817, 0.07837301, 0.018999517, 0.012495421, 0.002466024, -0.0067672282, -0.0057889153, -0.034841444, -0.027352287, -1.8185239E-4, 0.007030361, 0.014182168, -0.010113734, 0.014964818, 0.0020156626, 0.004078554, -0.0103701195, 0.0049489154, -0.009088192, -0.012940722, -0.013844818, -0.03200771, -0.021401444, 0.032142647, 0.05478554, -0.0010491565, 9.791566E-4, 0.020551324, -0.0068380716, 0.007455421, 0.006635662, -0.00862265, 0.003559036, 0.006996626, 0.022561926, -0.0142901195, -0.003326265, 0.021765782, 0.018135902, 0.04382843, 0.013136385, -0.0036534937, 0.01234024, 0.008548433, -0.0154371075, 0.011476626, -0.028931081, -0.0018706023, 0.015369637, 0.040454935, -0.0172453, 0.03422072, -0.004884819, -0.0113281915, -0.012353734, 0.024343131, -0.005960963, 0.0033751805, -0.015464095, -0.008460722, -0.0022467468, 0.010613011, -0.06045301, 0.012319999, -0.014182168, -0.0036298793, -0.031440962, -0.0019127709, 0.01101783, -0.008217831, 0.013311806, 0.0040616863, -0.030469395, -0.0146814445, -0.012913734, 0.022089638, -0.0019043372, 0.024491565, -0.0029771081, 0.0046554212, 0.019930601, -0.038673732, -0.034814455, -0.014748914, -0.006079036, -0.007475662, 0.004918554, -0.0070708427, 0.020213975, -0.0035893973, -0.0043416866, -0.0011453012, -0.004857831, 7.5692765E-4, -0.009668433, 0.03489542, -0.014762408, 0.013237589, 0.03438265, 0.014236144, -0.007576867, -0.0066053006, -0.0071855416, -0.012326746, -0.023546986, -0.0049893972, -0.00933783, -0.001992048, -0.00813012, -0.020294938, -0.01122024, -0.02223807, -0.026353734, 0.0054313247, -0.0045204815, 0.005623614, 2.6123493E-4, 0.032547466, 0.021333974, -0.0070843366, -0.017542167, 0.010613011, 0.004304578, 0.026933974, 0.012778794, -0.007529638, 0.03489542, -0.0020797588, -0.030145539, 2.694578E-4, 0.015895903, -0.0026228915, 0.017501686, 5.5504515E-5, 0.01115277, -0.012286264, -0.020956144, 0.0133320475, -0.0071585537, -6.278915E-4, 0.021954697, -0.0049522887, -0.0023901204, 0.016179277, -0.0030799997, -0.014897348, -0.027541203, 0.015086264, -0.028985059, 0.024963854, 0.03171084, 2.4331323E-4, 0.0038424092, -0.031036142, 0.001375542, -0.016003855, -0.052869394, -0.0315759, 0.0068481923, 0.023101686, 0.0020831323, 0.046122406, -0.010579276, 0.022170601, 0.015342649, -0.003791807, 0.015032288, -0.020159999, -0.006723373, -0.049145058, 0.0038592769, 0.026083853, 0.02607036, 0.020227468, 0.0057821684, -0.0076645776, 0.024801927, 0.0094997585, 0.03133301, -0.007097831, -0.020173492, -0.023034215, 0.0019127709, -0.013588433, -0.0077725295, -0.02909301, -0.021064095, 0.017501686, -0.0139122885, -0.011065059, -0.015221204, 0.045609634, -0.008602409, 0.0033549394, -0.03028048, 0.021064095, -0.02084819, -0.0013907228, -0.028418312, -0.01325783, 0.014384577, -0.004358554, 0.014114697, 0.0031424095, -0.02882313, -0.0053604813, 0.0050332528, -0.0060081924, -0.012279517, 0.009573976, -0.010187951, -0.0016589155, -0.0300106, 0.024437588, -0.05092626, 0.0077725295, -0.009837108, -0.007563373, 0.008906024, -0.017663613, -0.042856865, 0.029200962, 0.0072395178, 0.037000477, 0.0048746984, 0.046932045, 0.025112288, -9.5975894E-4, -0.03557012, 0.0020881926, -0.008710361, -0.0018216866, 0.025436142, 0.036892526, -0.008663132, -0.0031609635, -0.02203566, 0.008939758, -0.022831805, -0.036028914, 0.022008672, 0.044314213, 0.018729636, -0.013021686, -0.011301204, -0.019984577, 0.017623132, -0.006541204, -0.0018368673, 0.011962409, -0.035624094, -0.015679998, 0.005596626, -0.007091084, 0.01646265, 0.001109036, -0.0396453, 0.021509396, -0.018459758, -0.0046284334, 0.0028151805, -0.0064062644, 0.038106985, -0.022615902, 0.02586795, 0.017879516, 0.008042409, 0.0023074697, -0.0022956624, 0.0077995174, 0.030739274, -0.030145539, 0.024626505, -0.0034004818, 0.0059204814, 0.011301204, 0.006989879, -0.028310359, -0.026164817, -0.021644335, -0.0030833732, 0.013804336, 0.0116453, -0.007887228, -0.003444337, -0.021401444, -0.017569155, 0.006537831, -0.0011739758, 0.006757108, -0.043153733, 0.008926264, 7.8897586E-4, 0.015221204, 0.009364818, -0.009857349, 5.5957824E-4, -0.007576867, 0.021468913, -0.014263132, 0.004351807, -0.0077792765, -0.006311807, -0.03686554, -0.024801927, -0.013082408, -0.011253975, 0.00974265, -0.019890118, 0.011368674, -0.0081638545, -0.009175903, 2.0167168E-4, 0.00421012, -0.0172453, -0.0067942166, 0.0086428905, -0.008865542, -0.020079035, -0.006325301, 0.030172529, -0.008609156, 0.019728191, 0.0020662649, 0.004675662, 0.02828337, -0.012839518, 0.014762408, -0.014168673, -0.01565301, -0.004044819, 9.2349394E-4, 0.014398071, 0.0056809634, -0.011975903, -0.04976578, -0.01520771, 0.0018284336, 0.029012047, -0.017339759, -0.007118072, 0.028661203, 0.0064265057, 0.02804048, 0.037000477, -0.0044665057, -0.032358553, 0.007839999, -0.0025233733, -0.014344095, -0.008157108, 0.01897253, 0.016341204, -0.008366264, 0.0119084325, -0.017636625, -0.009263614, -0.027568191, -0.025719516, 0.001662289, -0.0010069879, 0.043369636, 2.0746986E-4, -0.0088318065, 0.0012650602, 0.005751807, 0.025759999, -0.015477589, -0.018459758, 0.0194853, -3.8436745E-4, 0.016934939, 0.022899276, -0.034004815, -0.010977348, -6.5867463E-4, 0.0071653007, 0.0073137344, 0.03092819, -0.012036625, -0.008501204, -0.0051850597, -0.01135518, 0.004453012, -0.012724819, 0.0029534937, -0.034409635, 0.0051918067, -0.0064399997, 0.013554698, 0.0033532528, 0.016381685, 0.0023057829, -0.016813492, 0.0025385541, -0.0048477105, -0.029983612, -0.0032756624, -0.036028914, 0.035866987, 0.0061667464, 0.0077927704, 0.039537348, 0.010309397, -0.0024862648, 0.0034291563, -0.024801927, 0.012198553, 0.0016884336, -0.0040549394, 0.010498312, 0.020429878, -0.017069878, 0.02640771, -0.030469395, 0.0088453, 0.001519759, 0.018324818, -0.005023132, 0.037810117, 0.015693493, -0.048740238, -0.006183614, -0.022737348, 0.005235662, 0.0037175901, 0.008359518, -0.04288385, -0.009904577, 0.001885783, 0.010336385, -0.01339277, -0.015585541, 0.0031693974, -0.0083527705, -0.0106467465, -0.0068549393, 0.1921542, -0.011800481, 0.028229395, 0.0405359, 4.1451803E-4, 0.027473733, 0.016719036, 0.019228915, -0.025962407, 0.018338311, -0.01856771, 0.009992288, 0.0013156625, 0.003936867, 0.009290602, -0.014492529, -0.026745059, -0.014209156, -0.024545541, -0.011557589, -0.0056674695, -0.009924819, 0.01135518, -0.027014937, 0.002972048, -0.005232289, -0.011166264, 0.009344578, 0.020375902, 0.0030209636, -0.026394214, -0.013095902, -0.008346023, 0.011550843, -0.014249638, -0.0028371082, -0.01639518, 0.0020291565, 0.008150361, 0.013885301, -8.3620474E-4, -0.013183613, -0.008852048, 6.6753005E-4, 0.016098311, 0.00378506, -0.033141203, -0.0036804816, -0.010005782, 0.011665542, -0.0338159, 0.0036332528, 0.012650602, 0.036136866, -0.02006554, -0.015342649, 0.013993252, -0.001519759, 0.0029889154, -0.0084, 0.0037277106, 0.033896863, -0.033546023, 0.016705541, -0.010599517, 0.0076443367, -0.027622167, -0.00421012, 0.015369637, -0.04091373, -0.00813012, -0.020510841, -0.01802795, -0.004243855, -0.002111807, -0.014438553, 0.011294457, 0.009229879, 0.015342649, 0.0016681927, -0.03713542, -0.031359997, -0.0025756625, -0.0061127706, -0.015059276, -0.007893975, 0.01541012, -0.019741686, -0.002272048, -0.014371083, -0.015976867, -0.015909396, -0.015288673, -0.0029501203, -0.0064838547, 0.006082409, 0.0077995174, -0.0032554215, -0.0132443365, -0.0057012043, -0.03238554, 0.012704577, 0.026029877, -0.007455421, -0.01897253, -0.0228453, -0.004318072, 0.015949879, 0.022993734, -0.027014937, 0.0035893973, -0.022872288, 9.268674E-4, -0.014586987, -0.0021404817, 8.7710837E-4, 0.0017879517, -0.026367227, 0.029254938, -0.020227468, -0.015868915, -0.023533491, 0.002459277, 0.0038221683, -0.0046486743, -0.017798552, -0.033788912, 0.015693493, 0.0172453, -0.032979276, 0.008136867, -0.02868819, -0.002012289, 0.0056674695, -0.003936867, 0.027460238, 0.009776385, 0.007563373, -0.009250119, 0.006892048, -0.0016791566, 0.0023546987, 0.009472771, -0.0036062647, 0.028580239, -0.016003855, -0.014411565, -0.0033667467, -0.009506505, -0.033357106, -0.0074149393, 0.0029534937, 0.015801445, 0.02186024, 0.0450159, -0.0059980717, -0.04161542, -0.040454935, -0.018054938, 0.03697349, -0.02882313, 0.0019768672, 0.025840962, 0.0037614454, -0.037216384, -0.010943614, -0.17261493, 0.015626023, 0.0041392767, -0.001992048, 0.012805782, 0.019134456, 0.014775903, -0.0047937348, -0.008150361, -0.011503614, 0.031818792, 0.02559807, -0.041453492, 0.00938506, 0.0039199996, 0.018621685, -0.0076308427, 0.02522024, 0.008602409, -0.0065783127, 0.029281925, 0.0016133734, -0.012333493, -0.006409638, 0.008393252, 0.016570602, 0.017555661, 0.0042202407, 7.501807E-4, -0.009425541, -0.039267465, -0.0041730115, 0.005616867, 3.1162647E-4, -0.012637108, 5.5188248E-5, -0.011368674, -0.016651565, -0.00442265, 0.004571084, 0.02362795, 0.012920481, 0.023236625, -9.28765E-5, 0.003265542, 0.0021202408, -0.0022568672, -0.020106023, 0.006757108, -0.025773492, -0.023061203, -0.033761926, 0.005063614, -0.0028775902, 8.6445775E-4, 0.030955179, -6.1829815E-5, 0.0036467467, 0.0084, -0.0054684333, -0.047714695, 0.0029872288, 0.006682891, -0.014465541, -0.007529638, -0.044125296, -0.019363854, 0.005623614, -0.01263036, 0.016084818, -0.02627277, -0.012812529, 0.026933974, -9.5048186E-4, 0.008406746, -0.0010719276, -0.005242409, 0.013291566, 0.0018334938, 0.007887228, -0.030064575, 0.040319998, -0.012266023, 0.011503614, 0.0038221683, -0.010403855, 0.0019380721, 0.0103701195, 0.010855903, -0.013136385, -0.0038727708, -0.011510361, -0.038916625, -0.008561927, 0.0063556624, 0.006885301, 4.908433E-4, 7.1265054E-4, 0.0013308433, -0.018257348, -0.006271325, -0.009621204, -0.025044817, 0.01213783, 0.03395084, 0.012097348, 0.013439999, 0.027878553, 0.015126746, 0.0012448191, -0.024936866, 0.009567228, 0.012387469, 0.02461301, -0.009202891, 0.007900722, -0.006149879, -0.012468433, 0.004685783, 0.026826022, 0.028202407, -0.006095903, -0.00245759, -0.0239653, -0.0025621685, -0.0034527709, -0.07524241, 0.014425059, 0.011652048, 0.034706503, -0.047417827, 0.02882313, -0.014047228, 0.03697349, -0.010376867, 0.025503613, 0.0062814453, -0.01999807, 0.017623132, -0.0021168673, 0.036379755, 0.0051985537, -0.0037074697, -0.011638553, -0.020834697, 0.022858793, -0.011348433, -0.022561926, 0.01928289, -0.013770602, -0.017191324, -0.0014902408, -0.033411082, 0.013426505, 0.0053233732, 0.012643854, 0.0076510836, -0.019323371, 0.016489638, -0.040104095, 1.9471384E-4, -0.050980236, -0.032682408, -0.0051007224, 0.011334939, -0.05130409, 0.021671323, 0.02152289, 0.019566264, -0.010073252, -0.006203855, -0.0114159025, -0.026259275, 0.027136384, -0.01619277, -0.015679998, -0.012050119, -0.015531565, -0.010828915, -0.0052795177, 0.024505058, 0.027662648, 0.012144578, 0.010295902, -0.006871807, -0.0048881923, -0.00889253, -0.008170602, -0.022265058, 0.012427951, 0.020159999, 0.022143614, -0.002631325, -0.010397107, 0.020551324, -0.019026505, -0.032169636, 0.03130602, -0.03276337, -0.0072057825, -0.02488289, -0.005937349, -0.027176866, -0.0022636142, 0.0210506, -0.033222165, -0.010511806, -0.019188432, 0.015491083, -0.019714698, 0.02121253, 0.017528674, 0.016746024, 0.010410601, 1.8100902E-4, -0.03567807, 0.012772047, 0.022804817, 0.011894939, -0.014074216, 3.9912647E-4, 0.023816865, 0.009432289, 0.02047036, -0.020146504, 0.002265301, -0.009263614, 0.014506023, -0.070870355, 0.0266506, -0.0055730115, -0.007954698, -0.0047330116, 0.0029079516, 0.010282408, -0.014168673, 0.0016066264, 0.0052862647, -0.02322313, 0.021873733, 0.0066187945, 0.009546987, -0.0060149394, 0.003484819, -2.7873492E-4, -0.009034216, -0.009695421, -0.0040616863, -0.0068077105, -3.1731927E-4, 0.024329636, -0.0078602405, -0.0046351803, 0.021671323, -0.0068414453, 0.034841444, -0.015626023, -0.012535903, 0.02318265, -0.018554216, 1.089006E-4, -0.003758072, 0.00119253, -0.012387469, -0.015369637, 0.004830843, 0.020456865, 0.017083373, -0.013858312, -0.024693973, -0.0033009637, -0.0049556624, -0.0011874698, 0.020389397, -0.029335901, 0.0069426503, 0.0055865054, 0.010943614, 0.029254938, 0.024262168, -0.0109368665, -0.008096385, 0.030955179, -0.017353252, 0.03716241, 0.015342649, -0.013979758, -0.010329638, 0.03683855, 0.0059137344, 0.017906504, -0.034031805, 0.013790842, -0.0026971083, -5.2584335E-4, -0.015180722, -0.0016589155, -0.0176906, -0.014559999, -0.0020898795, 0.0064534936, 0.028148431, 0.004442891, 0.018446263, 0.0023597588, -0.006935903, -0.00819759, 0.02729831, 0.03370795, 0.0035961443, -0.038646743, 0.013804336, 0.003943614, 0.0065884334, 0.009304096, 0.0057754214, 8.189156E-4, 0.0089195175, -0.010262168, 0.005492048, 0.013170119, -0.0019650601, -0.019147951, 0.022359516, -0.021279998, -0.012279517, -0.0022366263, 0.020686263, -0.0077185538, -0.0014396384, -0.013993252, -0.011813975, -0.021091083, 0.0063455417, -0.016422167, -0.031117106, 0.005269397, 0.0284453, 0.022561926, 0.020213975, -0.0014683132, 0.0011680722, -0.024005782, 0.008325783, 0.0050467467, -0.028472288, -0.017339759, 0.037081443, 0.023439035, 0.023803372, 0.012158072, -0.0045542167, 0.039807227, 0.0031322888, 0.014425059, -0.022804817, 0.007522891, 0.013574938, -0.012562891, -0.012589878, -0.011388915, 0.009776385, -0.014613975, 0.0021371082, -0.0015087951, 0.033060238, -0.02268337, 0.06574265, 0.028850118, 0.0068515656, 0.022426987, -0.01605783, 0.01408771, 0.0030546985, 0.01408771, 0.0081638545, -0.01381783, 0.0017086746, -0.00869012, 0.006790843, -0.041561443, 0.0030901202, -0.006149879, 0.018257348, 0.0068144575, -0.028310359, -0.016422167, -0.0011975903, -0.019228915, 0.020524336, 0.008696867, -0.023479516, -0.017623132, 0.018891566, -0.006881927, 0.0052289153, -0.02763566, -0.0022551806, -0.012252529, 0.0063624093, -0.008359518, 0.03616385, 0.012286264, -0.005471807, 0.014074216, 0.04342361, -0.01883759, 0.0020156626, 0.011301204, -0.019741686, -0.009290602, 0.019066986, 0.0028674696, -0.008852048, -0.009553734, -0.020227468 ], + "id" : "9e5ddbf0-3b1f-4db1-88b4-9caa1675708e", + "metadata" : { + "source" : "movies.csv" + } + }, + "22261f4b-4705-463e-997c-17e872206373" : { + "text" : "Wood Harris-Hayley Atwell-John Slattery-Martin Donovan-Garrett Morris-Gregg Turkington-Rod Hallett-Joe Chrest-Joe Bucaro III-Jean Louisa Kelly-Dax Griffin-Hayley Lovitt-Anna Akana-Stan Lee-Tom Kenny-Norma Alvarez-Darcie Isabella Cottrell-Teddy Williams-Carol Anne Watts-Chuck David Willis-Diana Chiritescu-Neko Parham-Onira Tares-Zamani Wilder-Kylen Davis-Jim R. Coleman-Desmond Phillips-Aaron Saxton-Michael A. Cook-Ricki Lander-Rus Blackwell-Johnny Pemberton-Nicholas Barrera-Carlos Aviles-Lyndsi LaRose-Robert Crayton-Ajani Perkins-Jessejames Locorriere-Kevin Lacz-Michael Trisler-Daniel Stevens-Clay Donahue Fontenot-Michael Jamorski-Casey Pieretti-Antal Kalik-Adam Hart-Reuben Langdon-Todd Schneider-Zack Duhame-Alex Chansky-Kevin Buttimer-Danny Vasquez-Rick Avery-Erik Betts-Raul Colon-Patrick Constantine Bertagnolli Jr.-Chris Evans-Hayley Gagner-Tim Halpin-Christina July Kim-Jordi Moll��-Vanessa Ross-Sebastian Stan-Sam Medina-Sophia Slaysman,ant-shrinking-superhero-based on comic-heist-miniaturization-miniature people-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/cj2gWN7TdH1iUG6pUQyqv9N2AXc.jpg,/a7sAqMKv5tkAdMzFfIhPqIBmQ9g.jpg,99861-271110-100402-76338-363088-118340-284052-10195-283995-1771-68721-10138-24428-315635-1726-284053-284054-1724-293660-299536-127585\r\n693,Meet the Fockers,Comedy-Romance,en,Hard-to-crack ex-CIA man Jack Byrnes and his wife Dina head for the warmer climes of Florida to meet the parents of their son-in-law-to-be Greg Focker. Unlike their happily matched offspring the future in-laws find themselves in a situation of opposites that definitely do not attract.,26.255,Universal Pictures-Everyman Pictures-Tribeca Productions-DreamWorks Pictures,12/22/04,80000000,516642939,115,Released,Misery loves family.,6.2,4461,Ben Stiller-Robert De Niro-Dustin Hoffman-Barbra Streisand-Blythe Danner-Teri Polo-Owen Wilson-Spencer Pickren-Bradley Pickren-Alanna Ubach-Ray Santiago-Tim Blake Nelson-Shelley Berman-Kali Rocha-Dorie Barton-Jack Plotnick-Wayne Thomas Yorke-B.J. Hansen-J.P. Manoux-Myra Turley-Vahe Bejan-Kathleen Gati-Angelo Tiffe-Kyle T. McNamee-Cedric Yarbrough-Max Hoffman-Benjamin Trueblood-Roberto Garcia-Bruno Coon-Rock Deadrick-David Sutton-Bernadette P��rez-Linda O'Neil-Tiffany Turner-David Zimmerman,florida-cia-nurse-parent child relationship-anti-authoritarian upbringing-parents-in-law-orderly-just married-sex therapy-bad father-in-law-family-illegitimate son-meddling father,/59fXm6N2x7QSbvt6BaBxTNBXGL8.", + "embedding" : [ -0.0072987187, -0.024306046, -0.010033149, -0.049413085, -0.03336557, 0.035796177, 0.01119321, -0.0037287683, -0.01632372, -0.03333795, 0.022124026, 0.019210063, 0.010799618, 0.010040054, 0.0026515685, 3.1261883E-5, 0.010709851, -0.00321261, 0.02775861, -0.040657386, 0.002004213, -4.712749E-4, -0.016710406, 0.020080108, -3.269146E-4, 0.008824752, 0.04474522, -0.009729323, -0.017704744, -0.014818402, 0.0169728, -0.006760119, 7.8243716E-4, -0.038641088, -0.00600746, -0.029222496, 0.003321366, -0.026046138, 0.03325509, 0.012864251, 0.0076646907, -0.011158684, -0.017898088, -0.01799476, -0.01253971, 0.00681536, -0.0044054706, -0.01142108, -0.01965199, 0.026129, 0.03493994, 0.020743, -0.016199427, -0.030796865, 0.010267924, 0.008217101, -0.014887453, 0.020798242, 0.0010150536, -0.0124154175, 9.321921E-4, -0.006369979, -0.023256466, -0.016461821, 4.3696506E-4, -0.009308111, -0.0033610703, -0.01033007, -0.01334761, 0.0014509397, 0.028200537, 0.0077199317, 0.012974733, 0.013527143, 0.011282977, -0.019942006, -0.024181753, -0.0033748806, -0.009342636, 3.0145195E-4, 0.0057726856, 0.0032592197, -0.013057594, 0.011013677, 0.00790637, 0.0040740245, -0.0076094493, 0.048888296, -0.025769932, 0.011055107, 0.008983569, 0.053639024, -0.0013076584, -0.01530176, 0.034277048, 0.02502418, -0.018920047, 0.024306046, -0.013009259, -0.027399542, -4.3998603E-4, -0.010820333, -0.006863696, -0.010226493, 0.006338906, -0.0066289217, -0.0027206198, -0.02077062, 0.020798242, 0.020867292, -0.0068982216, -0.01688994, 0.021364462, -0.03985639, -0.012739958, -0.028780568, 0.020604897, -0.023366949, -0.01687613, -0.0044330913, 0.036956236, 0.026432825, -0.005258254, -0.04195555, 0.009176914, 0.025852794, -6.867364E-5, -0.0055586267, 0.012235885, 0.0046540555, 0.02401603, -0.026819512, 0.010261018, -0.0017418182, -0.027427163, 0.031487375, -0.027068095, -0.0087626055, -0.017621882, -0.023339327, 0.024154132, 0.03168072, -0.027744798, -0.017690934, -0.03424943, 0.0150117455, 0.018630031, 0.010309354, -0.004395113, 0.0043191565, 0.013188791, 0.032481715, -0.00696382, 0.0040360466, 0.011207021, 0.011911344, -0.019679612, -0.0025359078, -0.010765092, -0.04104407, -0.010620085, -0.015495104, -0.008617598, -0.008548547, -0.0017055663, 0.017276626, 8.1609964E-4, -0.01854717, 0.009045715, -0.008541642, 3.590666E-4, 0.01961056, -0.03698386, 0.008617598, 0.0060454383, 0.011006772, -0.004719654, -0.010682231, -0.03991163, 6.0635644E-5, 0.0042639156, 0.011959679, 0.03209503, 0.037895333, -0.0067083305, 5.0925306E-4, 0.025341814, -0.023159795, -0.0020939796, -0.0048128734, 0.0020232021, 0.027164768, 0.010571749, -0.00787875, -0.61560583, -0.007947801, 0.010323164, -0.0040740245, 0.022869779, 0.018933857, 0.0033783333, -0.0015372538, -0.041679345, -0.012063256, -0.027606696, 0.031404514, 0.034691356, 6.2146137E-4, -0.0023891737, -0.001593358, -0.0022890496, -0.015163658, 0.013969071, 0.010419836, -0.019790092, 0.031956926, 0.016724216, -0.016240858, 0.023905547, 0.009397877, 0.014279801, -0.017690934, 0.0043916604, -0.017028043, -0.0073884856, 0.033034127, 0.013789537, -0.007091565, 0.04955119, 0.0083413925, -0.008665934, 0.05344568, 0.016503252, 0.03223313, -0.016047515, -0.013506427, 0.024181753, -0.012408513, -0.02675046, 0.014638868, -0.010854859, 0.005133962, -0.013527143, -0.002446141, -0.004505595, 0.002758598, -0.0024426884, -0.011628233, -0.006038533, -0.0049820486, 0.013824063, -0.041182175, 0.010399121, 0.019541508, -0.028670086, 0.013755012, -0.014086458, 0.014583628, 0.004712749, 0.024167944, 0.0017970592, 0.011462511, 0.0071744267, -0.019527698, -1.3324736E-4, 0.021972112, -0.021930682, -0.013513333, 0.0019748663, 4.5401207E-4, 0.028973911, 0.0059591243, -0.0036424543, 0.027482403, 0.0019834975, 0.0072987187, 0.012222074, 0.01959675, 0.028145296, -0.008679744, -0.037260063, 0.024140323, 0.019127201, -0.023905547, 0.021033015, 0.015895601, -6.5080816E-4, 0.010281733, -0.0072780033, -0.014569817, -0.009094052, 0.002371911, 0.037950575, -0.06573681, -0.0022597027, -0.025107041, 0.03377988, 0.0022700604, 0.016033703, -2.085564E-4, -0.018201914, -0.011427985, 0.025977086, -0.009121672, -0.005693277, 0.009397877, -0.009770754, 0.0019196252, -0.02188925, -0.015315571, 0.019541508, 8.959402E-4, -0.0060765115, -0.028973911, 0.01579893, 0.007464442, 0.0058382847, -0.006901674, 0.029360598, 0.02777242, -0.012118497, -0.0026463897, 0.009487644, 0.020383934, 0.009839806, 0.0020180233, 0.025148472, -0.024803214, 0.017097093, 0.005203013, 0.008555451, -0.012173738, 0.02509323, -0.005344568, -0.035022803, -0.0025220974, -0.011144875, -0.009363351, -0.0016529147, -0.0120287305, -0.031183552, 0.008804036, -0.004875019, -0.006887864, -0.0038323454, 0.012988543, 0.0071399007, 0.009204534, 0.0026204956, 0.009066431, -0.030934967, -0.011289882, 0.0041361707, -0.0028828904, 0.015080797, 0.027026666, -0.010171251, -0.017290438, 0.015232709, 0.015577965, 0.012125403, -3.6812955E-4, 0.011110349, -0.0012092603, 0.012912586, -0.019182442, -0.0038323454, 0.012090877, -0.013768822, 0.01089629, -6.887864E-4, 0.043999467, -0.003169453, 0.002812113, -0.0122566, -0.013941451, -0.032454096, -0.009964097, 0.027510025, 0.017083284, 0.026419014, 0.0034542896, -0.012228979, 0.00225625, -0.0051443195, -0.0103715, -0.002157852, 0.00641141, -0.016116565, 0.0033265448, 0.01584036, 0.006169731, -0.00736777, 0.009632652, 0.029415838, 0.015495104, 0.03709434, -0.010986056, 0.007105375, -0.02672284, -0.0021526732, -0.022262128, 0.0076854057, -0.01033007, 0.014431715, -0.0117456205, -0.0045090476, 0.008976664, 0.003904849, 0.026653789, -0.013478807, 0.008555451, -0.009487644, 0.011690379, 0.012705433, 0.010205777, 0.015923223, 0.018781945, -0.029747285, -0.0060488908, 0.008949044, -0.014804591, 0.013485712, -0.0074575366, -0.014611248, 0.0035561402, -0.0053100423, 0.033393193, -0.014500766, -0.019914385, 0.008831657, -0.010440552, 0.032785542, -0.016517064, 0.010171251, 0.018699083, 0.021516375, 0.0048957346, 0.01285044, -0.012947112, 0.01745616, 7.090702E-4, -0.014984124, 0.023656964, 0.009964097, 0.037398167, 0.004816326, 0.0035492352, 0.028725326, -0.00899738, 9.857068E-4, 7.649585E-5, 0.035326626, 0.022469282, 0.020977775, -0.009384067, 0.021474944, 0.0021388629, -2.945468E-4, -0.0043778503, -0.03325509, 0.0063768844, -0.020370124, -0.017166145, -0.015080797, -0.01200111, -0.00490264, 0.002352922, 0.0043191565, -0.0040049735, -0.0016710407, 0.011586802, -0.0041050976, 0.0064701037, -0.020936344, -0.028531983, 0.019306734, 0.032260753, -0.008672839, -0.012974733, -0.0037805568, -0.008210195, -0.02071538, -0.013437376, 0.008804036, 0.037039097, -0.009211439, 0.014321232, 0.0018246797, 0.0071191853, 0.0059004305, -0.018768134, 0.022483092, 0.008306867, -0.007012156, 0.0019040887, -0.016337529, -0.010254113, 0.012056351, -0.011469415, -0.030382557, -0.0049544284, -0.004308799, -0.006459746, 0.007264193, -4.1473916E-4, -0.03438753, 0.018353827, -0.024444148, 0.0072780033, -0.018850995, 0.011586802, 0.012187548, -0.030382557, -0.023104554, -0.025825173, -0.028062435, -0.0035078044, 0.10534461, 0.04601576, 0.0030071826, 0.026543306, -0.00845878, 0.0022389872, -0.014542197, -0.013782633, 0.018340016, -0.016738027, 0.03706672, -0.017235195, 0.018464308, -0.0069085793, 0.020052487, -0.0071191853, -0.006300928, -0.0058382847, -5.3903146E-4, -0.0059798397, -0.021571616, -0.02133684, -2.0823273E-4, 0.03971829, -1.1069781E-4, -0.009632652, 0.013195697, 0.0018177746, 0.01392764, 0.006269855, -0.010992962, -0.001268817, 0.005551722, 0.019444836, 0.01119321, 0.006152468, 0.038889673, 0.013623815, 0.031266414, -8.1739435E-4, -0.0060661538, 2.1600099E-4, 0.007374675, -0.009529075, 0.026280912, -0.018160483, -0.02567326, 0.021930682, 0.029277736, -0.025493728, 0.018353827, 0.023063123, 0.0038944914, -0.020936344, 0.012035635, -0.016461821, 0.0012429227, -0.0035699503, -0.010247208, 0.019541508, -0.010799618, -0.023201225, 0.0064804615, -0.017083284, -0.0038219877, -0.04184507, -0.019955816, -0.01201492, -0.008313772, -0.0149426935, 0.009073337, -6.093774E-4, 0.01849193, 0.01474935, 0.009736229, -0.012111592, 0.013271653, -0.0062767603, 0.021143498, 0.0042086747, -0.024734164, -0.010647705, 0.01066842, -0.014666488, 0.008569262, 0.01585417, -0.0032678512, 0.017773796, -0.004357135, 0.019403405, -0.010005528, 0.0044503543, -0.024112701, -0.023366949, 0.032039788, 0.018726703, 0.0091838185, 0.0149426935, 0.004988954, 0.0045194053, -0.0034698262, -0.025908034, -0.011717999, -0.017801417, -0.008845467, -0.01473554, -0.015743688, 0.004664413, -0.025852794, -0.02407127, -0.009204534, -0.017193764, -0.014680299, -0.009128577, -0.0037253157, -0.0028569961, 0.009273585, 0.017262816, -0.023063123, 0.010475077, 0.01741473, -0.019168632, 0.02728906, 0.01962437, -0.025949465, 0.018201914, -0.0071191853, -0.029885387, -0.0058313794, 0.020936344, -0.0022251771, 9.68444E-4, -0.0109101, -0.009908857, 0.0018678367, -0.00980528, -0.012601856, 0.0076439753, -0.013216413, 0.012367082, -0.013140456, 0.010116011, 0.010116011, -3.3576178E-4, 0.002292502, -0.032371234, -0.0011928607, 0.0070846598, 0.015743688, 0.016503252, -0.017511401, 0.007885654, -0.03709434, -0.007046682, -0.009611936, -0.027440973, -0.0073953904, 0.014832212, 0.03424943, -0.010992962, 0.027081907, -0.00381163, 0.016296098, 0.017608073, 0.011207021, 0.025189903, -0.005551722, -0.0021975564, -0.020480605, 0.010267924, 0.012974733, 0.025355624, 0.006925842, 0.020812051, 0.010033149, 0.023933169, -0.002838007, 0.0029622994, -0.008293057, -0.022179266, -0.02296645, 0.0014233192, -0.020936344, -0.0025652545, -0.018188104, -0.007747552, 0.014321232, 0.004792158, 0.005133962, -0.012767579, 0.02938822, -0.017345678, 0.01803619, -0.011048202, 0.010903195, -0.009667177, -0.012815915, -0.021033015, -0.021682097, -0.0041085505, 0.0036424543, 0.02889105, 0.0077682673, -0.017124714, -0.016668975, 0.035299007, -0.019016718, -0.013278559, 0.02615662, -0.027592886, -0.0028397334, -0.02619805, -0.006798097, -0.031846445, -0.016765647, 0.0071675214, 0.004332967, 0.0021664836, -0.009163103, -0.03231599, 0.007864939, -0.0031849896, 0.045463353, 0.0095359795, 0.03822678, 0.01748378, 0.007077755, -0.019886764, 0.00615592, 3.1698847E-4, 0.002610138, 0.02129541, 0.028642464, -0.012898777, 0.004339872, 0.0017236922, -0.0034163115, -0.02557659, -0.031956926, 0.0104819825, 0.009756944, 0.002028381, -0.02288359, -0.010136725, -0.03656955, -0.0072849086, -3.58635E-4, 0.0024478673, 0.0071813315, -0.025300384, -0.03386274, 0.0196658, -5.0838996E-4, 0.01201492, 0.003414585, -0.018229535, 0.0074299164, -0.02237261, 7.690585E-4, -0.01746997, -8.009947E-4, 0.034691356, -0.03284078, 0.008127334, 0.01035769, -0.007333244, 0.0044917846, -0.0042259376, 0.004761085, 0.02889105, -0.009756944, 0.029581562, 0.019306734, 0.008507116, 0.022317369, 0.013471902, -0.0066082063, -0.026639977, -0.010323164, 0.0061869933, 0.026170429, 0.011835387, 0.0129402075, 0.009605031, -0.01693137, -0.012974733, 0.0153984325, -0.020011056, 0.0037253157, -0.031515, 0.009397877, -0.0068395277, 0.0060523436, -0.020080108, -0.008859278, -0.006000555, -0.011579897, -1.2461595E-4, -0.0040187836, 0.00793399, -0.03993925, -0.021046827, -0.054246675, -0.024085082, -0.003523341, -1.5266803E-4, 0.024747973, -0.0057899486, -0.004101645, -0.013216413, 0.008127334, 0.0015795477, -1.6464411E-4, -0.0061075846, -0.012712338, 0.019458646, -0.004301894, -0.008804036, 0.012463753, 0.026515687, -0.01748378, -0.007858034, -0.007795888, -0.0013672151, 0.034028463, -0.01336142, 0.01586798, -0.010599369, -0.038641088, 0.006618564, 0.018478118, 0.033420812, 0.0056863716, -0.009176914, -0.039497323, -0.020908723, -0.006625469, 0.0391935, 0.0062180664, 0.018478118, 0.030520659, 0.020080108, 0.04844637, 0.014859833, 0.0019420668, -0.015743688, -0.0092183435, -0.01008839, -0.050407425, -0.011821576, 0.010475077, 0.01418313, 0.0011566087, -0.017911898, -0.03830964, 0.0068533383, -0.012118497, -0.021626856, -0.013824063, 0.014956504, 0.028835809, -1.7241237E-4, 0.006632374, 0.004460712, 0.00787875, 0.0084104445, -0.026584737, -0.017235195, 0.012325651, 0.008141144, 0.024167944, 0.011186305, -0.038530607, -0.0063216435, 0.017000422, 0.0137481075, -3.9596585E-4, 0.027910521, -0.003039982, -0.005192655, -0.024844645, 0.010267924, -0.017552832, -0.012636381, 0.019500077, -0.019886764, -0.0012109865, 0.010827239, 0.012291125, -0.01632372, 0.008562357, 0.015315571, -0.0022873231, 3.8150823E-4, 0.004467617, -0.015287951, -0.0052237283, -0.0284215, 0.024982749, -0.0030745077, -0.001685714, 0.028131485, 0.03598952, -0.010716757, 0.013036879, -0.010951531, 0.01364453, 0.008631408, -0.009874331, -0.003942827, 0.019251494, -0.023145985, 0.0061041317, -0.04203841, -0.016641354, -0.014051933, -0.014224561, 0.01640658, 0.045546215, -0.0058451896, -0.05827927, 0.011517751, -0.0050580055, 0.0017677124, -0.019569129, -0.011517751, -0.022262128, -0.02400222, 0.005120151, -0.0021250527, -0.028642464, -0.0084104445, 0.014404094, 0.005092531, 0.009991718, 0.02731668, 0.20185067, -0.012021826, 0.006135205, 0.02507942, -0.010281733, 0.012215169, 0.019334354, 0.027344301, 8.1868906E-4, 0.0060212705, 0.0028569961, 0.006632374, -0.015163658, 0.00448488, 0.022427851, -0.033531293, -0.014045027, -0.044386152, -0.00820329, -0.017497592, 0.0022959546, 0.009163103, -0.0157575, -0.045518596, 0.027537644, 0.0064010522, -0.0113244075, -3.67698E-4, 0.0027050832, 0.0169728, -0.010316259, -0.02293883, -0.001427635, -0.004174149, -0.009715513, -0.00957741, -0.024140323, 0.012125403, 0.029112013, 0.0052720644, 0.016240858, -0.01089629, -0.0044641644, -0.004357135, 0.0019334354, 0.018257154, -0.011918249, 0.003942827, -0.025521347, 0.005382546, -0.038282022, -0.011952774, 0.013168076, 0.028200537, -0.0038357978, 0.002206188, 0.0032402307, 0.010875574, -0.009888141, 9.8559896E-5, 0.017359488, 0.03607238, -0.037260063, 0.021198738, -7.919317E-4, 0.014265992, -0.027344301, -0.010274828, 0.009791469, -0.013050689, -0.0029864672, -0.017787606, -0.011317503, 0.015329381, -0.0076025445, -0.0099571925, 0.009259774, 0.0067532137, 0.007291814, 0.017621882, -0.026860943, 0.0071675214, -0.0111794, -0.0039566373, -0.026847132, -0.033034127, 0.022510713, -0.017249007, -0.010129821, -0.029305357, -0.004761085, -0.010350784, 0.0015907686, 0.0019765925, -6.050617E-4, 0.003787462, 0.024596062, 0.020287262, -0.010191967, 0.013188791, -0.0405469, 0.012788295, 0.0173733, -0.004761085, -0.029222496, -0.02122636, 0.009432403, 0.011635139, 0.0268057, -0.013547858, -0.023256466, -0.02731668, -0.0020180233, -0.007961611, 0.005638036, 0.019361975, 0.006038533, -0.0092528695, 0.023173604, -0.01421075, 0.0059798397, -0.026225671, 0.011552277, 0.016088946, -0.0072987187, -0.03220551, -0.032536957, -0.006473556, 0.0052375384, -0.05236848, 0.023159795, -0.019790092, 0.019306734, -0.006501177, -0.008589977, -0.011897533, 0.015439863, -0.013568574, -0.0024599514, 0.009867426, -0.0030986755, -0.005368736, 0.014086458, -5.4081165E-6, 0.012767579, -0.032785542, 0.011904438, -0.0050234795, -0.014058838, -0.04245272, -0.024306046, 0.0048991875, 0.008265437, 0.009370257, 0.021488754, -0.0067808344, -0.02947108, -0.049882635, -0.0030071826, 0.04096121, -0.037840094, 0.011441795, 0.035188526, -0.0065115346, -0.025189903, -0.01364453, -0.17666076, 0.023615533, -3.8496082E-4, -0.027026666, 0.018188104, 0.01970723, 0.032426473, 0.010364595, -0.0062905704, -0.01637896, 0.027592886, 0.010019339, -0.021557806, -0.00668071, 2.0715379E-5, 0.022234507, -0.017911898, 0.03543711, 0.02177877, -0.0031729056, 0.050296944, -0.015066986, 0.0095359795, -0.004098193, 0.021654477, -0.005928051, 0.030796865, -0.017166145, 0.0015303487, 0.010281733, -0.034028463, -0.016185617, 0.01469411, 0.0069948933, -0.017746175, 0.0034922678, -0.011345123, -0.032481715, -0.007795888, -0.0012515542, 0.02347743, 0.007740647, 0.015149848, 0.010226493, 0.012843535, 0.014901263, 0.019969625, -0.017497592, 0.01116559, -0.01742854, -0.011780146, -0.043750882, 0.03438753, -0.0078511285, -0.009315016, 0.02731668, 0.022414042, 0.0036562646, 0.009977908, 0.0035457825, -0.029029151, -3.342513E-4, -0.0037771042, -0.012788295, 0.006687615, -0.024941318, -0.006256045, 0.0034335742, -0.029194875, 0.0034853627, -0.02676427, 0.006183541, 0.009004285, -0.0012325651, 0.022165457, -0.028670086, -0.04085073, -0.005517196, 0.0104474565, 0.013071405, -0.0010409479, 0.029857768, -0.008009947, 4.4883322E-4, -0.017690934, -0.013050689, 0.0024495937, 0.0017435445, 0.008272341, -0.00300373, 0.008790226, -0.022303559, -0.0114487, -0.007892559, -0.011559182, 0.016641354, 0.008224006, 0.005154677, 0.031266414, -0.008983569, 0.008507116, -0.016958991, -0.02891867, 0.010019339, -0.0031798107, 0.0032074314, -0.015660828, 0.01282282, 0.023587912, -0.0013715308, -0.015163658, 0.013264748, 0.038282022, 0.015577965, -0.015053176, 0.014038122, -0.024761785, -0.024444148, 0.011269166, 0.005952219, 0.05789258, 0.0068084546, -8.000236E-5, -0.023670774, 0.0052548014, -0.02994063, -0.10578654, -0.01228422, 0.022041164, 0.02730287, -0.02452701, 0.03819916, -0.008009947, 0.008755701, -0.015163658, 0.031238792, -0.008610693, -0.02831102, 0.003400775, -0.022717867, 0.010785808, 0.0018056906, -0.017677125, -0.021613047, 6.460609E-4, 0.040243078, -0.008141144, -0.024098892, -0.0119942045, -0.014970315, -0.012477564, 0.018864807, -0.02618424, 0.017525211, 0.01632372, 0.018975288, -0.013368325, -0.020535847, 0.030133972, -0.037784852, -0.027371923, -0.021516375, -0.009556695, -0.012291125, 0.0024012579, -0.03375226, -0.0035768556, 0.007160616, 0.00793399, -0.035658073, -0.0077130264, 0.0024634039, -0.027496215, 0.031791203, -0.0011436616, -0.0023736372, -0.021447323, -0.016668975, -0.0348847, -0.0055758897, 0.008845467, 0.018395258, 0.024195563, 0.007581829, -0.0010012434, -0.038447745, 0.0028897955, -9.606757E-4, -0.027330492, 0.022165457, 0.022662625, 0.0127952, 0.010461267, -0.019776283, 0.009473833, -0.018850995, -0.03607238, 0.03941446, -0.03104545, -0.013948356, -0.013278559, 0.013520238, -0.03618286, -0.013706677, 0.008589977, -0.040022112, 0.0062008034, -0.027565265, 0.027896712, -0.017580451, 0.029968249, 0.027054286, 0.0054032616, 0.01753902, -0.0024375096, -0.042728923, 0.0066220164, 0.015426053, 0.001348226, -0.0016149365, 0.0070708496, 0.009052621, -0.012608761, 0.00820329, -0.005755423, 0.005682919, -0.02296645, -0.0083413925, -0.072752416, 0.042397477, -0.024457958, 0.005779591, -0.02456844, -0.010537223, 0.005251349, 0.012380892, -0.014859833, 0.02621186, -0.0019437931, 0.017235195, -0.0018074169, 0.0055724373, 0.0014259086, 0.010709851, 0.0017487233, -0.00736777, 0.012698527, 0.010965341, -0.006497724, 0.021502564, 0.018326206, -4.3070727E-4, 0.006742856, 0.019582938, -0.009204534, 0.0020318334, -0.016047515, -0.026681408, 0.021640666, -0.0060488908, -0.009190723, -9.278764E-4, -0.0018868259, -0.033420812, -0.008313772, 5.3169474E-4, 0.025949465, -0.004143076, -0.018132862, -0.0339456, -0.005534459, -0.010461267, -0.008527831, 0.0070087034, -0.009901951, 0.011593708, 0.022621194, 4.1042347E-4, 0.023118364, 0.008306867, -0.011200115, -0.018312396, 0.0058003063, -0.0061938986, 0.038944915, -4.695486E-4, -0.01742854, -0.027938142, 0.012726149, 0.003911754, 0.008935234, -0.015370811, 0.013285464, -0.0036700747, 0.022082595, 0.0067394036, 0.014079553, -0.031404514, -0.02344981, -0.003095223, 0.003114212, 0.039773528, 0.013112836, 0.01693137, 0.0020922534, 0.014265992, -0.012622572, 0.012429228, 0.023891738, -0.0032160627, -0.030161593, 0.035050422, 1.6205468E-4, 0.020342503, -0.012712338, 0.008569262, 0.018850995, 0.012788295, 0.0039566373, 0.019762473, 0.017718555, 0.004384755, 0.0024806666, 0.036431447, -0.012933302, -0.021364462, 0.0074368212, 0.025162281, -0.0063527166, 0.0022079141, 0.0011678295, -0.029609183, -0.006697973, 0.01142108, -0.025783742, -0.013174982, 0.010475077, -8.5709884E-4, 0.004578099, 0.0074437265, -0.019168632, 0.0218202, -0.044358533, 0.015357002, -0.010882479, -0.023546482, -0.020259641, 0.032978885, 0.015771309, 0.0014673393, 0.038972534, -0.005700182, 0.06479771, 0.007940896, 0.02346362, -0.009025, -0.0071191853, -0.0092943, 0.010475077, -0.007347055, -0.029360598, 0.004156886, -0.010475077, 0.0062042563, 0.002996825, 0.020591088, -0.030769244, 0.058224026, 0.02889105, -0.0029398575, 0.010661515, -0.0020922534, 0.025562778, 0.0071191853, 0.010682231, -0.026902374, -0.019127201, 0.0030883178, -0.01391383, 0.023090743, -0.037370544, 0.012077066, -0.0071813315, 0.009204534, 0.01256733, -0.00575197, -0.011227736, -0.015950842, -3.4633526E-4, 0.016793268, 0.011738715, -0.004118908, -0.019375784, 0.023864118, -0.021723527, -0.007257288, -0.042507958, 0.004975144, -0.013285464, 0.005582795, 0.00449869, 0.016544683, 0.0024979296, -0.012436133, 0.0141693195, 0.011006772, 0.028559603, -0.018119052, -0.018574791, -0.018906236, -0.034056086, 0.021171117, -0.010150536, -0.0035026255, -0.014569817, -0.004674771 ], + "id" : "22261f4b-4705-463e-997c-17e872206373", + "metadata" : { + "source" : "movies.csv" + } + }, + "80cbebfd-fba1-4348-99c8-db07d66cbd43" : { + "text" : "549,11219,Chris Pratt-Bryce Dallas Howard-Rafe Spall-Justice Smith-Daniella Pineda-James Cromwell-Toby Jones-Ted Levine-Jeff Goldblum-BD Wong-Geraldine Chaplin-Isabella Sermon-Robert Emms-Peter Jason-Kevin Layne-John Schwab-Sam Redford-Charlie Rawes-Patrick Crowley-Alex Dower-Honey Holmes-Neil Bishop-Philippa Thomas-Ronan Summers-Cory Peterson-Jeremy Gilbert-Victor Gardener-Daryl Kwan-Eric Kofi Abrefa-Ben Peel-Mark Griffin-Paul Sockett-Doug Robson-Gil Kolirin-Nathan Florence-Bryan Phillips-Mitchell L. Johnson-Ian Copley-Johnson-Michael Papajohn-Daniel Stisen,tyrannosaurus rex-volcano-rescue mission-sequel-wild animal-prehistoric creature-dinosaur-genetic engineering-aftercreditsstinger-monster island,/c9XxwwhPHdaImA2f1WEfEsbhaFB.jpg,/3s9O5af2xWKWR5JzP2iJZpZeQQg.jpg,135397-331-330-383498-363088-329-348350-260513-299536-427641-284054-333339-353081-284053-345940-447200-338970-335983-507086-268896-141052\r\n109445,Frozen,Animation-Family-Adventure-Fantasy,en,Young princess Anna of Arendelle dreams about finding true love at her sister Elsa��s coronation. Fate takes her on a dangerous journey in an attempt to end the eternal winter that has fallen over the kingdom. She's accompanied by ice delivery man Kristoff his reindeer Sven and snowman Olaf. On an adventure where she will find out what friendship courage family and true love really means.,97.537,Walt Disney Pictures-Walt Disney Animation Studios,11/20/13,150000000,1274219009,102,Released,Only the act of true love will thaw a frozen heart.,7.25,14984,Kristen Bell-Idina Menzel-Jonathan Groff-Frank Welker-Josh Gad-Santino Fontana-Alan Tudyk-Ciar��n Hinds-Chris Williams-Stephen J. Anderson-Maia Wilson-Edie McClurg-Robert Pine-Maurice LaMarche-Spencer Lacey Ganus-Livvy Stubenrauch-Eva Bella-Jesse Corti-Jeffrey Marcus-Tucker Gilmore-Ava Acres-Stephen Apostolina-Annaleigh Ashford-Kirk Baily-Jenica Bergere-David Boat-Paul Briggs-Tyree Brown-Woody Buck-June Christopher-Lewis Cleale-Wendy Cutler-Terri Douglas-Eddie Frierson-Jean Gilpin-Jackie Gonneau-Nicholas Guest-Bridget Hoffman-Nick Jameson-Daniel Kaz-John Lavelle-Jennifer Lee-Patricia Lentz-Annie Lopez-Katie Lowes-Mona Marshall-Dara McGarry-Scott Menville-Adam Overett-Paul Pape-Courtney Peldon-Jennifer Perry-Raymond S. Persi-Jean-Michel Richaud-Lynwood Robinson-Carter Sand-Jadon Sand-Katie Silverman-Pepper Sweeney-Fred Tatasciore-Jack Whitehall,queen-magic-musical-cartoon-princess-betrayal-snowman-reindeer-curse-snow-troll-based on children's book-mountain climbing-aftercreditsstinger-frozen-woman director-sister sister relationship-magic land,/kgwjIb2JDHRhNk13lmSxiClFjVk.", + "embedding" : [ 0.0056837327, -0.029141199, -0.027036853, -0.041181255, -0.021709394, 0.03926337, -0.0021676098, -0.0063396757, -0.010748148, -0.030552976, 0.019405268, 0.030925898, 0.008230924, -0.005700381, 0.020257661, 0.014903566, 0.011946826, -0.007924595, 0.03100581, -0.034761667, -0.003582716, -0.0046681855, -0.027303226, 0.0068924, 0.006023358, 0.0026404217, 0.026504107, -0.010355248, -0.021323154, 0.010461797, 0.015502905, -0.0056171394, -0.0077980678, -0.035986982, -0.014783698, -0.009762568, -0.0019661651, -0.025398659, 0.02983377, 0.0074850796, -0.0040122424, 0.008517275, -0.0052908324, -0.0021476317, -0.012939066, 0.0013934635, 0.010608302, 0.001781369, -0.01289245, 0.023467455, 0.024266575, 0.028528541, -0.024173344, -0.027835973, -0.0019744893, -0.009935711, -0.017567296, 0.0076315845, -0.003779166, 0.012186562, 0.019605048, -0.014224315, -0.027969157, -0.015556179, -0.016674945, -0.018832566, -6.019404E-5, -0.017780393, 0.0021209945, 0.009962347, 0.017007912, 0.016781494, 0.017607251, 0.0069989488, 0.009662678, -0.0304997, -0.0017597262, -0.002322439, -0.0034362108, -4.3909912E-4, 0.003159849, -0.005893501, 0.0041953735, 0.009010064, 0.012193221, 0.022961346, -0.018739335, 0.018486282, -0.034095734, 0.015036752, 0.011553926, 0.03976948, -0.0028901463, 0.0034861558, 0.014916885, 0.017340878, -0.006083292, 0.019325357, -0.029780494, -0.046881635, 0.004251978, -0.0046482077, -0.005197602, -0.008444022, -0.0054406673, 0.020510716, 0.011394102, -0.012526187, 0.014530644, 0.0018612809, 0.005783622, -0.014024535, 0.0053274585, -0.046002604, -0.018659424, -0.022481875, 0.019645004, -0.019152215, -0.017900262, -0.015036752, 0.042965956, 0.03326998, 0.005434008, -0.043871623, 0.02932766, 0.020257661, 0.0031814917, -0.008417385, 0.005660425, -0.0017630559, 0.022428602, -0.014037854, 0.018353095, -0.002380708, -0.035294414, 0.040382136, -0.031059084, -0.008257561, -0.0056437766, -0.004638219, 0.02489255, 0.032124575, -0.027942521, -0.016794814, -0.021030143, -0.0049345586, 0.010561687, 0.0026637292, 0.012273133, -0.0072852997, 0.015383037, 0.025531845, 0.01013549, 0.027116764, 0.016381936, -0.004831339, 0.0039389897, -0.018246546, -0.0015782596, -0.039396558, -0.003482826, -0.007551673, -0.0054972717, 2.0529445E-4, 2.8010778E-4, 0.02598468, 0.012572803, -0.019445224, 0.00339459, 0.00797121, -0.014504006, 0.01731424, -0.024439717, 0.008683758, 0.0044850544, 2.0009186E-4, -0.01644853, -0.016928, -0.025518527, -4.398795E-5, 0.0020194398, -0.01082806, 0.024932507, 0.04744102, -0.0113541465, -0.011240938, 0.025025737, -0.023214402, 0.017447427, -0.0063829613, 0.012745945, 0.014330864, 0.01723433, -0.00659273, -0.6299187, -0.012193221, 0.024386441, -0.019565092, 0.022002405, 0.036439817, -8.4406923E-4, -0.030659525, -0.032710597, -0.0075649912, -0.022401964, 0.013558382, 0.01897907, -0.016395254, -0.030446427, -0.011560585, 0.015489587, -0.030552976, 0.03374945, 0.012166584, -0.025451934, 0.025225516, 0.015236532, 0.0019112258, 0.0068724216, 0.0030849315, -0.0051709646, -0.014743742, 0.0036925948, 0.004891273, -0.028208895, 0.009183207, 0.015343081, 0.016368616, 0.037558585, 0.010448478, -0.015489587, 0.054553177, 0.020643903, 0.032231126, -0.043445427, -0.0016340314, 0.012000101, 0.016928, -4.316074E-4, 0.020191068, 8.9401414E-4, 0.01723433, -0.0027136742, 0.017074505, -0.013238735, 0.008284198, -0.012339726, 9.847474E-4, -0.02874164, -3.1402873E-4, 0.020151112, -0.031112358, 0.029487483, 0.0055272384, -0.026144503, 0.013518427, 0.011187663, 0.0062464452, -0.014983478, 0.03329662, -0.010055578, -0.013158823, 0.022002405, -0.028581817, 0.019858101, 0.015729321, -0.009402964, 2.4368962E-4, -0.0012894114, 3.6293312E-4, 0.02065722, 0.011580563, 0.0026254382, 0.02037753, 0.0020793737, -0.008004507, 0.008637142, 0.01810004, 0.027516324, 0.004241989, -0.028874826, 0.005047767, 0.02076377, -0.011061136, 0.0072852997, 0.023400862, -0.0020427473, 0.005097712, -0.0041687363, -0.01977819, -0.0012644391, -0.009382986, 0.0187127, -0.06893732, -0.0061965003, -0.021083418, 0.022348689, -0.008990087, 0.022068998, 0.0060766325, -0.018539555, -0.010708192, 0.026397558, -8.773659E-4, -0.014677148, -8.1618334E-4, -0.016395254, -0.011846936, -0.005756985, -0.02352073, 0.0129590435, 0.027729422, -0.0015999024, 0.0022658347, 0.0074051674, 0.020324254, -0.003602694, -0.004914581, 0.013758162, 0.037292212, -0.011041158, -0.010388545, 0.0153564, 0.01466383, 0.013944623, -4.5616366E-4, 0.019058984, -0.022694973, 0.01515662, 0.015929101, 0.010401863, 0.002125989, 0.021482978, -0.0018979071, -0.025598438, -0.013238735, -0.018433006, -0.005720359, -0.014210996, 0.0023690544, -0.028288806, 0.020191068, -0.011593882, -0.021136692, -0.0043052523, 0.020870319, 0.0064229174, 0.016541759, 9.389646E-4, 0.009396305, -0.017673844, -0.0056337877, 0.013325306, -0.025358703, 0.016315343, 0.015209895, -0.008190968, -0.026530745, 0.023094533, -0.0050244597, -0.013238735, -0.0069856304, 0.007511717, -0.016262067, 0.017900262, -0.01239966, -0.0043951534, 0.016155519, -0.013012318, 0.026916984, -0.008750351, 0.02697026, -8.6737686E-4, -3.2859598E-4, -0.007824705, -0.0013102219, -0.02117665, -0.0049678553, 0.038117968, 0.011407421, 0.008277539, 0.009982326, -0.0107015325, 0.008144353, -0.023853697, -8.848576E-4, -0.0026820425, -0.0095627885, -0.009502854, 0.02370719, 0.0037425398, 0.0024373124, -0.009556129, -0.0047447677, 0.025372023, 0.022295415, 0.020164432, -0.012532847, 0.016488485, -0.03590707, 0.004741438, -0.028315444, 0.0063130385, -0.008424044, 0.009236482, -0.009143251, -0.0077581117, -0.0072187064, 0.0032031345, 0.020510716, -0.019045664, 0.014637193, -0.01308557, 0.008890197, 0.0055572055, -0.0090966355, 0.029860405, 0.020310936, -0.027516324, -3.1943942E-4, 0.017780393, -0.027036853, 0.009143251, -5.67083E-5, -0.011507311, 0.012373023, -0.0056437766, -5.406538E-4, -0.019831466, -0.0033313264, 0.021349791, -0.016501803, 0.021296516, -0.01829982, 0.0015333092, 0.014597237, 0.021815943, 5.51059E-4, 1.9083124E-4, -0.01102118, 0.010301974, 0.0071188165, -0.01603565, 0.05101042, -0.008144353, 0.026344283, -0.0074251457, 0.011127729, -6.4387335E-4, -0.0022025711, 0.011567244, 0.0046115816, 0.038011417, 0.023480775, 0.0135250855, -0.028182257, 0.019871421, 0.01141408, 0.029860405, -0.011187663, -0.017367516, -0.0057170293, 0.012393001, -0.027995795, -0.038091328, -0.013318647, -0.0017880283, 0.015489587, -0.016781494, -0.017540658, 5.452321E-4, 0.020417485, 0.011707091, 0.00806444, 0.013971261, -0.044324458, 0.0144640505, 0.019005708, -0.020111157, -0.01318546, -0.0045449883, -0.002262505, -0.037745044, -0.007178751, -0.015343081, 0.026117867, -0.0079645505, 0.021669438, -0.011287553, -0.005127679, 0.016315343, -0.023254357, 0.022575106, 0.007618266, -0.012839176, 0.027889246, 1.2548662E-4, -0.008417385, 0.026703887, -0.023107853, -0.0022092306, -0.011247598, -0.008590527, -0.0030133438, -0.002224214, -0.004278615, -0.028874826, -0.0055671944, -0.012233177, -0.014570599, -0.013664932, 0.014250952, 0.0012561149, -0.01869938, -0.026504107, -0.022362009, -0.0304997, 0.002184258, 0.07080193, 0.05109033, 0.0071121575, 0.019405268, -0.025478572, 0.021909174, -0.014530644, -0.007438464, -0.013325306, -0.019125577, 0.025678352, -0.009509514, 0.019272082, 0.004881284, 0.0069523337, -0.0051343385, -0.009536151, -0.004604922, 0.0053807334, -0.01239966, -0.025132287, -0.020310936, 0.020883638, 0.035454236, 0.012998999, -0.01495684, 0.021775987, 0.012945725, -0.011014521, 0.013112208, -0.00954947, 0.008430704, 0.0012411313, 0.008144353, 0.025318747, 6.6135405E-4, 0.03374945, 0.0065028295, 0.030153416, 0.005287503, -0.0054939417, 0.022375327, 0.012293111, -0.011207641, 0.010308633, -0.015369718, -0.017767075, 0.01957841, 0.021349791, -0.033483077, 0.023081215, 0.0053707445, -0.017487383, -0.0067492244, 0.023467455, -0.0019345335, -0.014783698, -0.002432318, -0.009556129, -0.0027103445, -0.002204236, -0.029567396, 0.006526137, -0.019698279, -0.020164432, 0.005570524, -0.016848087, -0.010115513, -0.016155519, 0.00876367, 0.0035760566, -0.01691468, -0.0053774035, -0.016595034, 0.012386342, 0.007957892, 0.02589145, -0.007038905, 0.007684859, 0.009909073, -0.011567244, -0.028874826, 0.01367825, -0.02156289, -0.019565092, 0.0025055704, -0.00747842, 0.029407572, -0.022428602, 0.006582741, 4.811361E-4, 0.0072453436, -0.012506209, -0.0073851896, 0.029594034, 0.028315444, 0.012566144, 0.021269878, 0.01762057, 0.0031914806, 0.016941318, -0.025172243, -0.0023890322, -0.026197778, -0.01957841, -0.009289756, -0.0020427473, 0.005770304, -0.012266474, -0.0322844, -0.031112358, -0.024519628, -0.0031348765, 0.0030632888, 0.014117765, -0.00826422, 0.019804828, 0.01791358, -0.011793662, 0.004914581, 0.01712778, -0.023014622, 0.020484079, 0.024546266, -0.0068258066, 0.018086722, -0.01937863, -0.026251053, 0.0019611707, 0.028128982, -0.0069323555, 0.011793662, -0.010748148, 0.0014916884, -0.025332065, -0.01929872, -0.005796941, 0.00600338, -0.018579513, 0.021962449, -0.016714903, 0.010654917, 0.012472913, 0.0029384263, 0.0056171394, -0.029354297, 0.016022332, -0.024865914, 0.0031049096, 0.03473503, -0.008310836, 0.014597237, -0.030153416, -0.0047081416, 0.0026420865, -0.03345644, -0.0057736333, -0.0029151188, 0.034921493, 0.014810335, 0.040488686, -0.0018512919, 0.0149435215, 0.0131521635, 0.021216605, 0.016568396, -0.029407572, -0.0074184863, -0.025665032, 0.0034095736, 0.0071321353, 0.015542861, -0.0033679528, 8.0067955E-5, -0.0015974052, 0.02530543, -0.004142099, 7.7414635E-4, 0.004368516, -0.013105548, -0.030872623, -0.0046315594, -0.026317647, -4.8196854E-4, -0.0194985, -0.0013093895, 0.040781695, -0.0029484155, -0.001579092, -0.0058701937, 0.035880435, -0.012899109, 0.024093432, -0.036386542, 0.017194374, -0.022974666, 0.0018479623, -0.023547368, -0.026211096, -0.0018346435, -0.012173243, 0.036892653, 0.0141843585, -5.581345E-4, -0.02117665, 0.025411978, -0.019858101, -0.014717105, 0.03572061, -0.022335371, -0.02116333, -0.020830363, 0.007724815, -0.041101344, -0.015995694, -0.0023074555, -0.0031565193, 0.012159924, -0.0140911285, -0.03140537, 0.008330814, -0.00866378, 0.038730625, 0.031059084, 0.04656199, 0.019418586, 0.010688214, -0.02165612, 0.010028941, -0.029194474, -0.0072386847, 0.030366514, 0.019058984, -0.02302794, -0.019058984, -0.006013369, -0.0011528954, -0.032604046, -0.03524114, 0.016781494, 0.015036752, 0.01811336, -0.014037854, -0.004278615, -0.024199981, 0.007178751, -0.010461797, -0.0061498852, 0.012852494, -0.019858101, -0.02304126, 0.005420689, -0.0029584044, 0.019831466, 0.0034561888, -0.00915657, 0.01711446, -0.010548368, 0.017407471, -0.012133287, -0.00669262, 0.033110157, -0.028821552, 0.010941268, 0.011267575, -0.005933457, 0.0023174444, 0.0027203336, 0.0041587474, 0.02697026, -0.013864711, 0.010388545, -0.0131521635, 0.015183257, -0.0075716507, 0.0079645505, -0.017873624, -0.0051343385, -0.026663931, -0.010561687, 0.035773885, -0.012080013, -0.00836411, -0.004172066, -0.018805929, -0.00875701, 0.024732728, -0.0049079214, -0.006802499, -0.03747867, 0.0037425398, -0.0034428702, 0.015396356, -0.02292139, 0.0018213249, -0.009882436, -0.0021293187, 0.0014034524, -0.006436236, -0.0025655043, -0.02529211, -0.027862608, -0.0387839, -0.02724995, -0.01407781, -0.0015657734, -3.2204072E-5, -0.008137694, -0.007371871, 0.00974259, -0.0015974052, -0.008131034, -0.012313089, -0.026517427, 0.010128831, 0.016555078, -0.010308633, 0.0011470685, 0.0045849443, 0.039316647, 0.0032231126, -0.0063529946, 0.012779241, 0.018259864, 0.028874826, -0.030233327, 0.010648258, -0.0032231126, -0.015556179, 0.0033995847, 0.0073052775, 0.019991288, 0.026144503, -0.011347487, -0.034495294, 0.0021043462, 0.0021726042, 0.034495294, -0.01594242, -0.01259944, 0.04131444, 0.022348689, 0.040568598, 0.019538455, -0.009636041, -0.03257741, -0.010048919, -0.013305328, -0.02943421, -0.018126678, 0.009702634, 0.0107015325, 0.013511767, -0.022322051, -0.03188484, 0.0024639496, -0.024626179, -0.043045867, -0.015795914, 0.013591679, 0.03060625, 0.010461797, 0.0010863021, 0.006852444, 0.005833567, 0.0055039306, -0.009682656, -0.018885842, 0.014104447, 0.014290908, 0.021669438, 0.02244192, -0.016288705, -0.01259278, 0.024346486, 0.024626179, 0.0028968058, 0.021802625, -0.021429703, 0.0021892525, -0.011047818, 0.013165482, -0.005334118, 0.0025655043, 0.038331065, -0.0155961355, -0.019165533, 0.013957942, 0.01899239, -0.009862458, -6.688458E-4, 0.010794763, -0.010248698, 0.0016323667, -0.017567296, -0.0062131486, -7.2669866E-4, -0.026717205, 0.01959173, -0.0024672793, 0.0010272006, 0.031458642, 0.009023383, -0.011600541, 0.008390747, -0.0069723115, 0.009869117, -0.007511717, -9.15657E-4, -0.006819147, 0.021189967, -0.019125577, 0.018273184, -0.027782697, 2.4431394E-4, -0.008723713, 0.010268677, -0.017873624, 0.03305688, 7.6332496E-4, -0.033616263, -0.0046815043, -0.028182257, 0.00866378, -0.027835973, 0.0013160488, -0.03188484, -0.004704812, 0.001362664, 0.008737032, -0.03590707, -0.039423194, 0.003809133, 0.008444022, -0.019045664, 0.025758263, 0.18187945, -0.019338675, 0.012326407, 0.04280613, 0.012932406, 6.854941E-4, 0.01968496, 0.009709293, -0.017553976, 0.004415131, 0.011467355, -0.002578823, -0.007818046, 0.0063729724, 0.01751402, -0.01437082, -0.013471811, -0.027915884, -0.008230924, -0.030180054, 0.006093281, 0.0050078114, -0.004764746, -0.019844783, 0.009422943, 0.011567244, -0.010262017, 0.0024772682, 0.019618366, 9.914067E-4, -0.0016098914, -0.0018446326, -0.00954947, 0.014570599, -0.023880333, -0.0085305935, 0.005623799, 0.0152232135, 0.011860255, -4.977844E-4, -0.0038757261, -0.0018429677, -0.0060566547, -0.009815843, 0.0058302376, 0.033163432, -0.023081215, -0.01052839, -0.028182257, 0.031645104, -0.033856, 0.0056038206, 0.010748148, 0.037771683, -0.003968957, -0.0046249, -0.003682606, 0.0018429677, -0.007411827, -0.003276387, 0.014770379, 0.037638497, -0.032364313, 0.0153564, 0.0022558458, 0.019418586, -0.03798478, -0.0037159023, 0.008384088, -0.033190068, -0.015076708, -0.028581817, -0.012925747, 0.012199881, -0.014290908, -0.014450732, -0.00265707, 0.008011166, 0.011187663, 0.013218757, -0.03201803, -0.0046681855, 0.012799219, -0.013405218, -0.017487383, -0.03572061, 0.027276589, -0.016541759, -9.231487E-4, -0.038331065, -0.012279793, -0.027809335, -0.013824755, -0.0030499701, -0.0027469709, -0.01437082, 0.016501803, 0.017660525, -0.01891248, -0.009616063, -0.043871623, 0.013212098, 0.020111157, 0.0028418663, -0.040169038, -0.011840277, -0.009389646, 0.010102194, 0.023294313, -0.007884639, -0.019138895, -0.016701583, 7.1847855E-5, -0.021549571, 0.004202033, 0.016861407, 0.0016023997, -0.024639497, 0.05452654, -0.013798118, -0.0044750655, -0.023187764, 0.025718307, -0.0011911865, -0.010987883, -0.029141199, -0.021043463, 0.024719408, 0.0060966103, -0.029940318, 0.008097737, -0.0049545364, 0.017460747, 0.0050211297, -0.005264195, 0.014597237, 0.026890349, -0.0052608657, 0.004251978, -0.010535049, -0.003059959, -0.011727069, 0.0070921793, 0.014983478, 0.002707015, -0.018539555, 0.009203185, -0.017833669, -0.015502905, -0.025665032, -0.020510716, -0.004232, 0.013744843, 0.015143301, 0.046721812, 0.012173243, -0.01917885, -0.03510795, -0.012266474, 0.036839377, -0.027130084, 0.02479932, 0.009902414, -0.014011216, -0.010668236, -0.008324155, -0.16856079, 0.008011166, -0.005420689, -0.026544062, 0.024279892, 0.0070522237, 0.029727219, -0.008197627, 0.026450833, -0.021336472, 0.027969157, 0.0063030496, -0.04144763, 0.0015641085, 0.0012977356, 0.02617114, -0.011960145, 0.01879261, 0.034042463, -0.012073353, 0.04360525, -0.0011795326, -0.0072719813, -0.0011861919, 0.017154418, -5.027789E-4, 0.027942521, -0.009476217, 0.016355298, -0.010794763, -0.044617467, -0.00561048, 0.015542861, -0.0021676098, -0.0043718456, -0.0043485384, -0.013471811, -0.02509233, 8.2950195E-4, -4.5283398E-4, 0.034894854, 0.0039223414, 0.017607251, -0.0021376428, 0.02430653, -0.0039889347, 0.022495195, -0.01948518, 0.025878131, -0.023387544, -0.009509514, -0.034974765, 0.016475165, -0.0048579765, -0.0052941623, 0.028794914, -0.0049545364, 0.005107701, -3.0695318E-4, 0.004278615, -0.028794914, -0.012346386, 0.020923594, -0.013038956, 4.2786152E-4, -0.012153265, -0.008930152, 0.003809133, -0.027702786, 0.0032314367, -0.019671641, 0.009089977, 0.021616165, 0.010168787, 0.0108879935, -0.018526237, -0.034521934, -0.0021676098, -7.4168213E-4, -0.0018662753, -0.026330965, 0.038490888, -0.018686062, 0.016155519, 0.0041287807, -0.008157671, -0.0012969032, -0.0058202487, -0.003682606, -0.0021243242, 0.0074850796, -0.007951232, -0.04232666, 0.005127679, -0.0035993643, 2.0924842E-4, -0.0122997705, 0.013944623, 0.019525137, 0.008084418, -0.013012318, -0.016874725, -0.010588325, 0.014970159, 0.023787104, 0.010748148, 0.015023434, 0.02097687, 0.012666033, 0.002232538, -0.0010163792, 0.010594984, 0.017181054, 0.016515123, -0.013851393, 0.016421892, -0.018646106, -0.022455238, 0.006476192, 0.0194985, 0.05657761, 7.591629E-4, 0.0050211297, -0.0038657372, -0.0051443274, -0.010288655, -0.09360345, -0.003179827, 0.013005659, 0.050131388, -0.023067895, 0.028368717, -0.0016814792, 0.018273184, -0.028981375, 0.028794914, 0.00373921, -0.020404167, 0.023280995, -0.0056937216, 0.01583587, 0.009622722, -0.026717205, -0.018606149, -0.01319212, 0.026810436, 0.012093332, -0.007931254, 0.0038990339, -0.011234279, -0.025411978, 0.020750452, -0.019858101, 0.01800681, 0.011653816, 0.015076708, 0.0075849695, -0.025238836, 0.015609454, -0.03534769, -0.036066897, -0.008823603, -0.021549571, -0.036253355, 0.013072251, -0.046029244, 0.0011687112, 0.015982376, 0.008084418, -0.019631686, -0.012286452, -0.005374074, -0.03462848, 0.019471861, -0.0032331015, -0.037292212, -0.0042586373, -0.015143301, -0.026517427, 6.9673173E-4, 0.02194913, 0.013638294, 0.03923673, -0.0016764847, 6.068308E-4, -0.034202285, -0.0037758364, -0.0015499576, -0.01603565, 0.024519628, -0.0036925948, 0.019605048, 0.0019278742, -0.018686062, 0.019205488, -0.015169939, -0.012046716, 0.026517427, -0.031538557, -0.008896856, -0.02764951, -0.001530812, -0.033882637, -0.023374226, 0.02637092, -0.053567596, 0.009036702, -0.036892653, 0.010515071, -0.02036421, 0.022908073, 0.013758162, 0.020524034, -0.0016590039, -0.013358602, -0.0367861, -0.0011012856, 0.012839176, -0.007897957, -0.005297492, -0.00797121, 0.023347588, 0.0016581715, 0.004045539, 8.7819825E-4, 0.0038557483, -0.014237633, 0.0041187913, -0.077887446, 0.031059084, -0.011067796, -0.007178751, -0.0038457592, -0.011647156, 0.01239966, -0.007931254, 0.0049445475, 0.006919037, -0.004105473, 0.022694973, 0.0023107852, -0.0043651867, -0.006506159, 0.013891349, 0.015303125, -0.0047714054, 0.0031531896, 0.013798118, -0.008683758, 0.010481775, 0.020630583, 0.0077314745, 0.021349791, 0.0031315468, 0.017673844, 0.006742565, -0.014717105, -0.009129932, 0.027130084, -0.01475706, -0.004192044, 0.0021393076, -0.0071987286, -0.03201803, -0.011707091, -0.003562738, 0.01968496, 0.0063130385, -0.010987883, -0.02726327, -0.0015907459, -0.021895856, -0.010188765, 0.009922392, -0.027183358, 0.024186663, -5.252541E-4, 0.015023434, 0.027023533, 0.008796967, 0.004075506, -0.020510716, 0.011467355, 0.0014375814, 0.049971562, 0.014264271, 0.0029700582, -0.012579462, 0.0383577, -0.0033712825, 0.024093432, -0.03886381, -0.002284148, -0.004105473, 0.009289756, -0.006965652, -0.008510616, -0.029940318, -0.023534048, 0.003396255, 0.019871421, 0.047680754, 0.023560686, 0.015209895, -0.01191353, 4.266129E-4, -0.0075649912, 0.025012419, 0.025425296, 0.0074184863, -0.039103545, 0.021602845, 0.003995594, 0.009216503, -0.007784749, 0.01495684, 0.0014234304, 0.01161386, -0.011707091, 0.017966855, 0.013365262, 0.00905002, 0.01711446, 0.020310936, -0.008870219, -0.019218808, -0.003209794, 0.008810285, -0.0089035155, -0.007897957, -0.0025022407, -0.008996746, -0.022974666, -0.00492124, -0.015436311, -0.020550672, 0.01723433, 0.008344132, 0.021935811, 0.010734829, -0.026797118, 0.015383037, -0.04813359, -0.00659606, 0.004891273, -0.004874625, -0.012193221, 0.02519888, 0.00737853, -0.0053207995, 0.035693973, 0.003366288, 0.053967156, 0.0058901715, 0.009662678, -0.031938113, 0.0014417435, 0.011240938, -0.00531081, 0.008577209, -0.02184258, -0.00944958, -0.0057636444, 0.008503956, 0.007937914, 0.022801524, -0.010748148, 0.07490407, 0.008610505, -0.019138895, 0.009382986, 6.9298584E-4, 0.014783698, 0.03654637, 0.014317545, -0.017167736, -0.013012318, 7.0505583E-4, 0.005956765, 0.006406269, -0.018446326, -3.2797168E-4, -0.0031814917, 0.023587324, -8.773659E-4, -0.019951332, -0.029274385, -6.7550514E-4, -0.008577209, 0.034921493, 0.0019645004, -0.012233177, -0.0138114365, 0.015556179, -0.015076708, 0.0127725825, -0.016794814, 0.018193271, -0.030233327, -0.012126628, 0.0075050574, 0.024572903, -7.2420144E-4, 0.004378505, 0.0020693848, 0.015050071, -0.0019528465, -0.01897907, -0.004301923, -0.018805929, -0.00561048, 0.024279892, 0.005720359, 0.0033912605, -0.028821552, -0.011154367 ], + "id" : "80cbebfd-fba1-4348-99c8-db07d66cbd43", + "metadata" : { + "source" : "movies.csv" + } + }, + "822df494-25e0-4d2b-bc8e-b92aac34b0eb" : { + "text" : "William Fichtner-Cillian Murphy-Patrick Leahy-Matt Skiba-David Dastmalchian-Michael Vieau-Michael Stoyanov-William Smillie-Danny Goldring-Matthew O'Neill-Olumiji Olawumi-Greg Beam-Erik Hellman-Beatrice Rosen-Vincenzo Nicoli-Edison Chen-Andy Luther-James Farruggio-Tom McElroy-Will Zahrn-James Fierro-Sam Derence-Jennifer Knox-Patrick Clear-Sarah Jayne Dunn-Charles Venn-Winston Ellis-Sophia Hinshelwood-Keith Kupferer-Joseph Luis Caballero-Richard Dillane-Daryl Satcher-Chris Petschler-Aidan Feore-Philip Bulcock-Paul Birchard-Walter Lewis-Vincent Riotta-Nancy Crane-K. Todd Freeman-Matt Shallenberger-Michael Andrew Gorman-Lanny Lutz-Peter DeFaria-Matt Rippy-Andrew Bicknell-Ariyon Bakare-Doug Ballard-Helene Maksoud-Tommy Campbell-Craig Heaney-Lorna Gayle-Lisa McAllister-Peter Brooke-Joshua Rollins-Dale Rivera-Matthew Leitch-Thomas Gaitsch-William Armstrong-Adam Kalesperis-Tristan Tait-Bronson Webb-David Ajala-Gertrude Kyles-Jonathan Ryland-James Scales-Nigel Carrington-Ian Pirie-Lateef Lovejoy-Grahame Edwards-Roger Monk-Ronan Summers-Wai Wong-Michael Corey Foster-Hannah Gunn-Jon Lee Brody-Debbi Burns-Maritza Cabrera-Shirin Caiola-Laura Chernicky-Henry Milton Chu-Kelli Clevenger-Richard Divizio-Tony Domino-David Fultz-Natalie Hallam-Jordon Hodges-Erron Jay-Nicky Katt-Thomas Kosik-Don Kress-Tim Krueger-Dan Latham-Tom McComas-James Mellor-Joseph Oliveira-Buster Reeves-Peter Rnic-Amit Shah-Michelle Shields-Sofiya Smirnova-Bruce Spielbauer-Robert Patrick Stern-Robert Stone-Richard Strobel-Tom Townsend-John Turk-John Warman-Chris Wilson-Kevin Zaideman-Rob Clark-Brandon Lambdin-Craig Braginsky-Mike Whyte-Tina Simmons,joker-sadism-chaos-secret identity-crime fighter-superhero-anti hero-scarecrow-based on comic-vigilante-organized crime-tragic hero-anti villain-criminal mastermind-district attorney-super power-super villain-neo-noir,/qJ2tW6WMUDux911r6m7haRef0WH.jpg,/nMKdUUepR0i5zn0y1T4CsSB5chy.jpg,49026-272-27205-122-120-680-278-121-238-550-603-1726-68718-1891-24428-13-11-807-240-19995-16869\r\n507086,Jurassic World Dominion,Adventure-Action-Science Fiction,en,Four years after the destruction of Isla Nublar Biosyn operatives attempt to track down Maisie Lockwood while Dr Ellie Sattler investigates a genetically engineered swarm of giant insects.,326.317,Amblin Entertainment-Universal Pictures,6/1/22,165000000,1001978080,147,Released,The epic conclusion of the Jurassic era.,6.", + "embedding" : [ 0.010276788, -0.030082349, -0.029516282, -0.029192816, -0.033290055, 0.046606075, -0.015553329, -0.018194968, -0.013073422, -0.018693645, 0.028653705, 0.030756235, 0.023033483, 0.0036693187, 0.020930953, 0.0144077195, 0.024542991, -0.01518943, 0.011712168, -0.013632748, -0.00852468, 7.909757E-4, -0.010815898, 0.01128088, 0.013693399, 0.024583424, 0.0026787037, -0.011867163, -0.013039728, -0.0055292486, 0.004734061, -0.004100607, 0.01086307, -0.02935455, -0.043640967, 0.011476308, 0.010499171, -0.030756235, 0.03787249, 0.006314328, 0.008154041, 0.02341086, -0.014919874, -0.007635148, -0.012170413, 0.00504068, 0.006799527, 3.135684E-4, -0.012379318, 0.032319654, 0.031187523, 0.030917969, -0.009575944, -0.024879934, -0.019610133, -0.009764633, 8.8532E-4, 0.0035379105, 7.379071E-4, 0.004670042, 0.00912444, -0.012466923, -0.029300638, -0.0064086723, -0.012763433, -0.015742017, -0.0017655859, 0.0023788237, -0.008335991, 0.005138394, 0.025405567, 0.015027696, 0.02328956, -0.0062806336, 0.017062837, -0.034610875, -0.019246234, -0.003103253, -0.003470522, -0.0017209408, 0.008747063, -0.004626239, -0.008585329, 0.0034250345, 0.011260664, -0.005300127, -0.012985816, 0.010559821, -0.022602195, 0.009393995, 0.0063817166, 0.043667924, -0.012925167, -0.0027410383, 0.0033963942, 0.025176445, -0.021577885, 0.014987263, -0.0039759376, -0.04164626, 0.007675581, -7.2569284E-4, -0.009960061, -0.02209004, -0.008612285, -0.007951875, -0.005755001, 0.0016358624, 0.018558867, 0.0032969958, 0.017521081, -0.014717708, 0.004949705, -0.05245542, 0.0056741345, -0.025661645, 0.030891012, -0.013693399, -0.011193275, -0.024475602, 0.049085982, 0.021860918, 0.0060481424, -0.031376213, 0.034422185, 0.041214973, 0.0032161293, -0.0018717231, 0.008214692, 0.004969922, 0.010155488, -0.008915534, 0.027656352, -0.0024512666, -0.028518928, 0.023990404, -0.021914829, -0.023073915, -0.012076068, -6.0902606E-4, 0.031106658, 0.024516035, -0.039867196, -0.012682567, -0.026497265, 0.0099128885, 0.015539851, 0.015162474, 0.020243587, -0.004316251, 0.019717954, 0.016887626, 0.017035881, 0.01621374, 0.01663155, -0.0074329814, -0.009434428, 0.005293388, -9.476546E-4, -0.023613026, -0.024529513, -0.011193275, 0.004895794, -0.010876548, 0.016483294, 0.02179353, 0.030055393, -0.02695551, -0.006742247, -0.0019778605, -0.01320146, 0.027602442, -0.027454186, 0.007702537, -0.01566115, 0.031052746, 0.0032868874, -0.017089793, -0.043479238, -0.027454186, 0.019974032, 0.008470769, 0.027400276, 0.021914829, 7.164269E-4, 0.0013317706, 0.033155277, -0.02671291, 0.021523975, -0.009407473, 0.0018194969, 0.013497971, 0.010492432, 0.0032346612, -0.64477575, -0.01913841, 0.007864269, -2.838752E-4, 0.010916981, 0.035338674, -0.0032481388, -0.01218389, -0.012386057, -0.0075542815, -0.026901597, -5.0667935E-4, 0.007527326, -0.012143456, -0.019151889, -0.020661397, -0.0039691986, -0.02071531, -9.232262E-4, 0.009252478, -0.022858271, 0.028006773, 0.026025545, -0.010815898, -0.0034284038, 0.024125181, -0.005310235, -0.01260844, 0.008861624, -0.013342977, -0.0313223, 0.011341531, -0.010162227, -0.016065484, 0.044045303, 0.0054753376, -0.009832022, 0.04175408, 0.01074177, 0.029516282, -0.022885228, -0.010465477, 0.02676682, 0.019111456, -0.016254172, 0.029084994, -0.006374978, -9.6113235E-4, 0.014272942, 0.008895318, -0.012399534, 0.011051759, -0.010795682, -0.01314755, -7.054762E-4, -0.0027932646, 0.02485298, -0.030702325, 0.02394997, 0.0068028965, -0.030567547, 0.014663797, 0.008026003, 0.028653705, -0.0083022965, 0.015378118, 0.0102296155, 9.215415E-4, 0.012406273, -0.04124193, 0.0074464595, 0.02725202, -0.0049126414, 0.0022895336, 0.017197615, 0.0048654694, 0.020189676, 9.99881E-4, 0.010714815, 0.021739619, -8.402538E-4, -0.014016865, 0.006337914, 0.029327594, 0.020027943, 0.0026012065, -0.038088135, 0.00378051, 0.020095332, -0.006637794, 0.008767279, 0.008201214, 4.9362273E-4, 0.005175458, -0.01140218, -0.01200194, -0.009400734, 0.0010217823, 0.018707123, -0.07137819, -0.008531419, -0.00762167, 0.033532653, -0.022885228, 0.017736726, 0.01878799, -0.01897668, -0.007891226, 0.03013626, -0.008531419, -0.008497724, -0.0011649834, -0.010458738, 0.008093392, -0.0031201001, -0.027238542, 0.017507603, 0.026780298, -0.016348517, -0.013935998, 0.007756448, 0.0069477824, 0.02490689, -0.021564407, 0.023249127, 0.026551176, -0.014771619, -0.019071022, 0.009090746, 0.016806759, -0.006115531, 0.004387009, 0.026160322, -0.015688106, 0.0015103508, 0.013127333, 0.020203155, 0.004831775, 0.0065030167, 0.007668842, -0.023693893, -0.011927812, -0.015216385, -0.023734326, -0.01524334, -0.012298451, -0.022642627, 0.009515295, -0.013578838, -0.016914582, -0.0023484987, 0.019475356, -0.0050878525, 0.024165614, -0.0066310554, -0.007931658, -0.03161881, -0.031376213, 0.0034974774, -0.028950216, 0.01861278, 0.013187983, -0.0019407966, -0.036524713, 0.019812299, -0.005185566, -0.0058965175, 0.008100131, -0.008470769, -0.020284021, 0.010916981, -0.019704478, 0.005054158, 0.0148390075, -0.007675581, 0.017723247, -0.0047677555, 0.028626751, -0.007837314, 0.0033997635, -0.019556222, -0.026753342, -0.012770172, -0.019071022, 0.0031841195, 0.010317221, 0.016833715, 0.0047306917, -0.004885686, 0.011664997, -2.1469641E-4, -0.0036524716, -4.5013596E-5, -0.0050912215, -0.0049362276, 0.012392796, -6.9410435E-4, -0.001623227, -0.0043297284, 0.0043297284, 0.033721343, 0.019947076, 0.024879934, -0.012682567, 0.021281375, -0.028384151, 0.00756102, -0.043829657, 0.009292912, 0.00207052, 0.02640292, -0.0020182938, -0.010357655, 0.013464277, 0.0047138445, 0.026173798, -0.02671291, -3.9611963E-4, -0.02358607, 0.0039860457, 0.017561514, -0.005829129, 0.027871996, 0.012500618, -0.031780545, 0.013450799, 0.0051249163, -0.014785097, 0.014124687, 1.9921806E-4, -0.011058497, 0.008585329, 0.0028050577, 0.0014277996, -0.0012584854, -0.012790389, 0.012332145, -0.017790636, 0.038384646, -0.01344406, 7.1726926E-4, 0.026133366, 0.0102296155, 0.0021918197, 0.01260844, -0.018680168, 0.01614635, 0.007918181, -0.011307836, 0.030891012, 0.0015777396, 0.021254418, -0.016254172, 0.013612532, 0.0052226298, -0.011793035, 0.0066647497, 0.0038276822, 0.029327594, 0.019165367, 0.010559821, -0.023842148, 0.041134108, 0.0064356276, 0.022063084, 0.0013578838, -0.030163215, 0.009656811, 9.666077E-5, -0.032616165, -0.028249374, -0.006260417, 0.01104502, 0.017359348, -0.019057544, -0.013828176, -6.271368E-4, 0.02106573, -0.0042522317, 0.019246234, 0.0042185374, -0.037845533, 0.011927812, 0.034125675, -0.019556222, -0.02214395, -0.0014202184, -0.014906396, -0.030028436, -0.019394489, -0.014960308, 0.020863565, -0.03175359, 0.010000493, -0.008046219, 0.010701337, 0.025594255, -0.025836855, 0.009643333, 0.011348269, -0.0023956709, 0.0079788305, 0.009616378, -0.0036592104, 0.015822884, -0.010991109, -0.008416858, -0.0012685936, -0.005300127, -0.005613485, 0.0046060225, 6.9705263E-4, -0.031564903, 2.6913392E-4, -0.0253247, -0.022359595, -0.006590622, 0.007594715, -0.003121785, -0.016523726, -0.021807007, -0.022373073, -0.031106658, -0.027090287, 0.07968049, 0.0582239, 0.0145155415, 0.021146597, -0.0060784672, 0.010088099, -0.00888184, -0.0072173374, -0.013949476, -0.032858767, 0.021254418, 0.0059234733, 0.014313376, 0.006651272, 0.011503263, -0.0049193804, -0.006627686, 0.0025456108, -0.013140811, -0.0012896527, -0.023329994, -0.030621458, 0.023801714, 0.02803373, 0.023437815, -0.00989941, 0.027898952, 0.0058257594, -0.004545373, 0.0194484, 0.0017689553, 0.011968246, 0.0097242, 0.019259712, -0.005054158, -0.013497971, 0.020917475, -0.009730939, 0.02911195, 0.0042219064, 0.0011178113, 0.005360777, 0.0073318984, -0.012379318, 0.019731432, -0.017507603, -0.02353216, 0.020257065, 0.023073915, -0.026092933, 0.01086307, 0.010458738, -0.004100607, -0.01248714, 0.006135748, 0.016725894, -0.004194951, 2.3754542E-4, -0.016388949, 0.007965353, -0.004477984, -0.03479956, 6.6083117E-4, -0.0190845, -0.005647179, -0.010633948, -0.013666443, -0.003300365, -0.00846403, -0.008120347, 0.0032009666, -0.018141057, -0.0017318914, -0.009636595, 0.008861624, -0.0037299686, 0.030001482, -0.0026517482, 0.024637336, -0.0010925404, -0.0260525, -0.010249833, 0.0036592104, -0.03242748, -0.015539851, 0.006941044, -0.012284974, 0.0054652295, -0.0066243163, 0.013962953, 0.0017318914, 0.003878224, -0.014758141, -0.013316021, 0.028842395, 0.010849592, 0.013538404, 0.005377624, 0.004477984, -0.005509032, 0.008349469, -0.036956, 0.0024950693, -0.021928307, -0.021537451, -0.026510743, -0.003911918, 0.006708552, -0.014542497, -0.017022405, -0.023545638, -0.01597114, 0.007210599, 0.012756695, 0.011442614, 0.0072240764, 0.024179092, 0.012493879, -0.014987263, 0.008800974, 0.018356701, -0.02382867, 0.01938101, 0.02377476, -0.004134301, 0.011038281, 9.156449E-4, -0.026968988, -0.0015010849, 0.024421692, -0.008241647, 0.020634443, -0.013194721, 0.005246216, -0.019044068, -0.016887626, -4.9193803E-4, 0.0064861695, -0.021079209, 0.011213492, -0.015270296, 0.0025675122, 0.012271496, -0.0011068606, -0.017628903, -0.031969234, 0.0081944745, -0.011833468, 0.021308329, 0.021510497, -0.022224817, 0.001674611, -0.023181738, -0.006519864, -0.006890502, -0.03444914, -0.012790389, 0.0019172105, 0.043020993, 0.015310729, 0.031376213, -0.010701337, 0.027440708, 0.022197861, 0.0043735313, 0.014717708, -0.012898211, 0.00228111, -0.026092933, -0.010822637, 0.020674875, 0.002892663, 0.019583177, 0.0118402075, -0.0029128797, 0.024071269, -9.69556E-4, 0.011220231, -0.0024057792, -0.022831317, -0.027413752, 0.008834668, -0.029435417, -0.008275341, -0.019623611, -0.015593762, 0.035365626, -0.008679674, 0.0023636613, -0.0048587304, 0.022197861, -0.014555975, 0.0068736547, -0.046282608, 0.018262357, -0.02640292, 0.00230975, -0.0125882225, -0.010256571, 0.008915534, -0.0011540328, 0.026753342, 0.017831068, -0.01122697, -0.01764238, 0.019071022, -0.007304943, -0.010216138, 0.031484034, -0.012318668, -0.011139364, -0.014448153, -0.010714815, -0.031915322, -0.008019264, -0.009616378, -0.011098931, 0.009495078, -0.0025371872, -0.03824987, 0.030864058, 0.0034839995, 0.039543733, 0.0054416433, 0.045393076, 0.034179587, 0.0060750977, -0.016537204, 0.008005786, -0.018936245, 0.007594715, 0.03396394, 0.006567036, -0.016725894, -0.015027696, -5.984965E-4, -0.007837314, -0.03547345, -0.04706432, 0.012473661, 0.026793776, 0.020122288, -0.023666937, 7.9645106E-4, -0.023963448, 0.001890255, -0.01146283, 0.0085179405, 0.00624357, -0.02382867, -0.023747804, 0.0025776206, -0.011085453, 0.021227464, 0.015283774, -0.013639487, 0.007695798, -0.020027943, 0.0055258796, -0.007210599, -0.012089546, 0.03140317, -0.02497428, 0.009703984, 0.005936951, 0.009292912, 0.012642134, 8.979554E-4, -0.006230092, 0.03312832, -0.022036128, 0.035123028, -0.008389902, 0.00834273, 0.0050339415, 0.003945613, -0.010593515, -0.01673937, -0.009340084, 0.003895071, 0.027049853, -0.003864746, -0.004188212, 0.015539851, -0.019461878, -0.010209399, 0.014097732, 4.4982004E-4, 0.01637547, -0.037495114, 0.011617824, 0.0022339378, 0.005148502, -0.022642627, 0.011557175, -0.02334347, -0.011004587, 0.008989662, 0.0033829163, -7.6907437E-4, -0.016361995, -0.020513142, -0.051215466, -0.020674875, -0.006284003, -0.019300144, 0.006277264, -0.033613518, -0.013720354, 0.013329499, -0.012224323, -0.001683877, -0.0073251594, -0.019219277, 0.0035850827, 0.035069115, -0.006914088, 0.003965829, -0.013302544, 0.030540591, 0.008288819, 0.0018397135, 0.0046127615, 0.010526126, 0.031295344, -0.01861278, 0.008032742, -0.0024192568, -0.019583177, -0.004777864, 0.006007709, 0.03121448, 0.015822884, 0.006051512, -0.030055393, -0.0072240764, -0.013949476, 0.0188419, -0.0073655928, -0.0012113132, 0.029839749, 0.01692806, 0.040541086, 0.021995695, -0.00396246, -0.043829657, 0.01020266, -0.015526373, -0.027898952, 0.0074195038, -0.0027292452, 0.0085179405, 0.01584984, -0.010290266, -0.044961788, -9.122755E-4, -0.012204107, -0.021753095, -0.0053034965, 0.004798081, 0.031187523, 0.0080866525, 0.0021631797, 0.011098931, 0.0023602918, 0.0011220231, -0.0030712434, -0.009885933, 0.022588717, 0.0065030167, 0.017844547, 0.029300638, -0.023195215, -0.0017040935, 0.01266235, 0.017197615, 0.016132873, 0.005155241, -0.030998835, 0.0015735278, -0.010532865, 0.0038849628, -0.0072577707, 0.008969446, 0.020270543, -0.019623611, -0.014124687, 0.002976899, 0.013214938, -0.0046666726, 0.011435875, 0.013316021, -0.008834668, 0.008039481, 0.0142998975, -0.013140811, 0.0069275657, -0.02659161, 0.028599795, 0.003992785, 0.0033357441, 0.013558621, 0.018033236, -0.0047509084, 0.0019845993, -0.014771619, 0.00696126, -0.008861624, 0.008187735, 0.003470522, 0.03571605, -0.021321807, 0.016335038, -0.032858767, 0.002028402, -0.01663155, -7.0084323E-4, -0.0033963942, 0.033721343, 0.006890502, -0.05054158, -0.0052731712, -0.02035141, 0.007635148, -0.01637547, -0.008315775, -0.027265497, -0.0056876126, -0.007426243, 0.01254105, -0.032912675, -0.020796176, 0.023006527, -0.013107116, -0.027144197, 0.013369933, 0.16960406, -0.008841407, 0.004248862, 0.052078042, 0.011206753, 0.022022652, 0.030297993, 0.003510955, -0.0054045795, 0.010054405, 0.012709523, 0.01320146, 0.007756448, 0.005613485, 0.024259958, -0.02563469, -0.015620718, -0.035554316, -0.024542991, -0.016308082, 0.0040365877, -4.5592715E-5, -0.005316974, -0.011496524, 0.00918509, -0.009980277, -0.026429877, 0.01770977, 0.020081853, 0.005792065, -0.010694598, -0.009009879, 0.014488586, -0.001576055, -0.008774018, -0.009677027, -0.01692806, 0.015445506, 0.014448153, 0.0148390075, -6.262944E-4, -0.0020570422, -0.01098437, -0.0017858024, 0.008214692, 0.008531419, -0.015310729, 0.0021412782, -0.0026921814, 0.01224454, -0.0452583, 0.0022878489, 0.006941044, 0.043856613, -0.007945136, -0.017804114, 0.004831775, -0.0016990395, -0.0016594485, -0.018801467, -0.006583883, 0.034071762, -0.02905804, 0.021537451, -0.012507356, 0.016833715, -0.041511483, 0.008214692, -0.003726599, -0.024462124, -0.022966094, -0.03752207, -0.025648167, 0.009495078, -0.004285926, -0.010101577, 0.0020031312, 0.011590869, -0.004387009, 0.010371132, -0.026510743, -0.0029196185, 0.005148502, -0.013019511, -0.006284003, -0.032373566, 0.021348763, -0.012911689, -0.014960308, -0.026605088, -0.022103518, -0.021106163, -0.007756448, -0.0011658258, 0.010411565, -0.011328053, 0.033236142, 0.021389196, -0.013828176, 0.013046467, -0.037926402, 0.02363998, 0.01770977, -0.001206259, -0.021874396, -0.014650319, -0.011267403, 0.0054888157, 0.029273683, -0.014016865, -0.012082807, -0.02287175, 0.001206259, -0.005202413, 0.0056101154, 0.021200508, -0.008490985, -0.020863565, 0.049436405, -0.0193271, 0.002928042, -0.015863316, 0.016941538, 0.002304696, -1.9142622E-4, -0.04644434, -0.025365135, 0.022373073, 0.005569682, -0.03795336, 0.01729196, -0.02071531, 0.028761528, -0.0019424814, -0.0038377906, -2.6955508E-4, 0.03293963, -0.0024883305, 0.020337932, -1.9268977E-4, -0.016604593, -0.012992555, 0.008713368, 0.00912444, 0.0029398352, -0.026079455, 0.002255839, 0.001590375, -0.015674628, -0.035796914, -0.016186783, -0.0031655876, 0.0055730515, 0.010856331, 0.035365626, 0.007587976, -0.018383658, -0.0325353, -0.020607486, 0.023046961, -0.030082349, 0.010876548, 0.01458293, -0.022521328, -0.021537451, -0.005845976, -0.17229961, 0.015027696, 0.0061323782, -0.031187523, 0.022777405, 0.01181999, 0.022912182, -0.012466923, -0.0036625797, -0.02935455, 0.019623611, 0.003222868, -0.038923755, 0.0011750917, 0.013720354, 0.019583177, -0.009677027, 0.026982464, 0.012749956, -0.0028673923, 0.040648907, 0.004494831, -0.018814946, -0.0029179337, 0.015391596, 0.015054652, 0.028734572, 0.0035884522, 0.0014850801, -0.0060245562, -0.03283181, -0.012413012, 0.01398991, -0.011213492, -0.0031352625, 0.0073251594, -0.0012281603, -0.028572839, -0.0031234697, 0.0012391111, 0.025863811, 0.004693628, 0.021618318, -2.9903767E-4, 0.014542497, 0.0017908566, 0.027319409, -0.013935998, 0.023613026, -0.021766573, -0.009623117, -0.03590474, 0.0050002467, -0.0063716085, -0.001974491, 0.019475356, 0.010640687, 0.006806266, -0.0036019299, -0.0047913417, -0.021955263, -0.012729739, 0.009117701, -7.05055E-4, -0.009872455, -0.0066883354, -0.025553823, 0.013356455, -0.029893659, 0.004454398, -0.018882334, -0.007102777, 0.017844547, 0.009865716, 0.0048452527, -0.036470804, -0.013794482, 0.0029549976, -4.1444096E-4, 0.007594715, -0.02466429, 0.037737712, -0.0029213033, 0.0115234805, 0.009191829, -0.012082807, 0.01242649, 0.00762167, -0.003925396, -0.019920122, 0.015768973, -0.012534312, -0.04531221, 0.01614635, 0.014609886, 0.004491462, -0.0069006104, 0.029812792, 0.007048866, -0.0035614967, 0.0028623382, -0.0063109584, -0.021173552, 0.017251525, 0.012770172, 0.0031504252, 0.009441167, 0.027548531, 0.01656416, 0.003672688, 0.0031588487, 0.0026382704, 0.014758141, 0.007587976, -0.017521081, 0.0047138445, -0.019071022, -0.020378364, 0.006038034, 0.016415905, 0.055258792, -3.922237E-5, -0.0033930247, -0.006162703, -0.0061728116, -0.01687415, -0.08733585, 0.0014269573, 0.009447906, 0.035365626, -0.0322927, 0.032130968, -0.002623108, 0.014084253, -0.024125181, 0.033586565, 0.014151642, -0.028761528, 0.010721554, 0.01200194, -0.0081944745, -0.0019761757, -0.024219524, -0.009636595, -0.007459937, 0.01866669, 0.012278235, 0.0021109532, 0.009414212, -0.015081608, -0.017574992, 0.009191829, -0.0149468295, 0.030405814, 0.015135518, 0.0093603, 0.009333345, -0.027588964, 0.008268602, -0.03169968, -0.028842395, -0.0122647565, -0.010472215, -0.027467664, 0.008349469, -0.05221282, 0.0013587262, -0.0045049395, -0.0076014535, -0.010054405, -0.02118703, -7.4717304E-4, -0.026308578, 0.013471016, -0.0052596936, -0.018653212, -0.022966094, -0.009832022, -0.03377525, 0.0011253925, 0.014933352, 0.025580779, 0.03013626, 0.0048284056, -0.016308082, -0.014798574, -0.005862823, 0.008180997, -0.020836608, 0.009885933, 0.002496754, 0.007972091, -0.008834668, -0.0029246728, 0.011368486, -0.027346363, -0.0059571676, 0.026092933, -0.02388258, -0.012837561, -0.016901104, 0.0041477787, -0.035958648, -0.010249833, 0.01739978, -0.045420032, -0.0047846027, -0.025338179, 0.005067636, -0.024057792, 0.030837102, 0.027562007, -6.6293706E-4, -0.0079788305, 0.011867163, -0.02209004, -0.014636842, 0.01986621, 0.0123725785, -0.014245987, -0.0020435646, 0.009683766, 0.011658258, 0.004296034, -0.010418304, 0.005893148, -0.015768973, 0.0036154077, -0.07833271, 0.047819074, -0.026173798, -0.004754278, -0.02016272, -0.004771125, 0.005148502, 0.009838761, 0.007951875, 0.03242748, 5.1004876E-4, 0.015768973, 0.014124687, -0.00780362, -0.015634196, 0.009414212, 0.0029078256, 0.0053304518, 0.010997848, 0.0051586106, -0.0071432097, 0.008066436, 0.018410612, 0.011974985, 0.001140555, 0.01878799, -0.0060346643, 0.0065805134, -0.013107116, -0.015998095, 0.02803373, 0.0019795452, -0.0054416433, -0.0018296052, -0.0046835197, -0.04002893, -0.01602505, 0.008639241, -0.015081608, -0.001154875, 0.005121547, -0.023208693, 0.0021463323, 0.005077744, -0.009892671, 0.0042994036, -0.023262605, 0.023181738, 0.008720107, 0.007722753, 0.011563913, 0.0035850827, -0.014892919, -0.009084007, 0.017696291, 0.00303081, 0.039462864, -0.002124431, 0.0020620965, -0.015310729, 0.01795237, -0.0041848426, 0.017184136, -0.023276081, 0.01008136, -0.006253678, -0.0043061427, 0.0023080655, -3.426298E-4, -0.024475602, -0.037279468, 1.835291E-4, 0.017184136, 0.036686447, 0.01512204, 0.011772819, 0.003072928, 0.020513142, -0.005391102, 0.023073915, 0.028518928, 0.009110962, -0.032211833, 0.028438061, 0.016456338, 0.008592068, 0.0038445294, 0.011294358, 0.0023316515, 0.012635395, -0.011173058, 0.023613026, 0.02148354, -0.0012854409, -0.0021985588, 0.013706876, -0.019124934, -0.020890519, -6.620947E-4, 0.023936491, -0.00942095, 0.002028402, 0.0063244365, -0.0104452595, -0.027683308, -0.0031942278, -0.011725646, -0.007689059, 0.014219031, 0.0056707654, 0.022939138, 0.020594008, -0.02502819, 0.013113855, -0.04310186, 0.0026214232, 0.009508556, -0.006799527, -0.017898457, 0.033640474, 0.014057298, 0.0055292486, 0.0452583, -0.015890272, 0.057630878, 0.006762463, 0.00726451, -0.021200508, 0.00948834, 0.021025296, -0.0033559608, 0.0041983207, -0.016038528, 1.5720537E-4, 0.0019054175, 0.009427689, -0.0016046951, 0.02916586, -0.01536464, 0.07423547, 8.768964E-4, -0.018828424, 0.0041208235, -0.026416399, 0.010115054, 0.008383163, 0.015054652, -0.020688353, -0.013727093, -8.8616234E-4, -0.01770977, 0.016388949, -0.025769467, -0.005094591, 0.001890255, 0.0106609035, 0.020149242, -0.001950905, -0.03097188, -0.0027696786, 0.0023602918, 0.022898706, 0.0061020534, -0.020014465, -0.020203155, 0.018774511, -0.019933598, -9.5776294E-4, -0.02328956, 0.022359595, -0.027871996, -0.0032616167, 0.0025978372, 0.02490689, -0.0033593304, -0.0037906184, 0.012493879, 0.027952863, 0.009427689, -0.020432277, -0.0015373064, -0.018275835, -0.004700367, 0.024462124, -0.0077699255, -0.013882088, -0.028168507, -0.012116501 ], + "id" : "822df494-25e0-4d2b-bc8e-b92aac34b0eb", + "metadata" : { + "source" : "movies.csv" + } + }, + "6b26bae6-f183-4a22-8e56-3d6ca70fcff1" : { + "text" : "It's up to Master Shifu and the Furious Five -- Tigress Crane Mantis Viper and Monkey -- to give it a try.\",276.804,DreamWorks Animation,6/4/08,130000000,631700000,90,Released,Prepare for awesomeness.,7.272,11018,Jack Black-Angelina Jolie-Dustin Hoffman-Ian McShane-Jackie Chan-Lucy Liu-Seth Rogen-David Cross-Randall Duk Kim-James Hong-Dan Fogler-Michael Clarke Duncan-Wayne Knight-Kyle Gass-JR Reed-Laura Kightlinger-Tanya Haden-Stephen Kearin-Mark Osborne-John Stevenson-Jeremy Shipp-Melissa Cobb-Kent Osborne-Emily Burns-Stephanie Harvey-Riley Osborne,martial arts-kung fu-strong woman-china-tiger-bravery-restaurant-shop-panda-sensei-anthropomorphism-fighting-master-destiny-crane-aftercreditsstinger-wuxia-monkey warrior-viper-lighthearted-dramatic-intense-awestruck-earnest,/wWt4JYXTg5Wr3xBW2phBrMKgp3x.jpg,/d1RHScaZc7I8j0lDke1c4AxI435.jpg,49444-140300-12-425-953-38757-1734-2062-675-10527-1726-809-10681-9806-1724-10555-12405-14160-20352-217-10191\r\n9806,The Incredibles,Action-Adventure-Animation-Family,en,Bob Parr has given up his superhero days to log in time as an insurance adjuster and raise his three children with his formerly heroic wife in suburbia. But when he receives a mysterious assignment it's time to get back into costume.,65.374,Pixar-Walt Disney Pictures,10/27/04,92000000,631442092,115,Released,\"No gut, no glory\",7.7,16024,Craig T. Nelson-Holly Hunter-Sarah Vowell-Spencer Fox-Jason Lee-Samuel L. Jackson-Elizabeth Pe��a-Eli Fucile-Maeve Andrews-Brad Bird-Teddy Newton-Jean Sincere-Bud Luckey-Wallace Shawn-Lou Romano-Michael Bird-Dominique Louis-Bret 'Brook' Parker-Kimberly Adair Clark-John Ratzenberger-Wayne Canney-Mark Andrews-Nicholas Bird-Louis Martin Braga III-Emmy Clarke-Pete Docter-Louis Gonzales-Elizabeth Greenberg-Juliet Greenberg-Billy Guardino-Dennis 'D.J.' Jennings-Ollie Johnston-Brad Lewis-Ted Mathot-Jazzie Mahannah-Randy Nelson-Bob Peterson-Jeff Pidgeon-Juliet Pokorny-Joe Ranft-Lori Richardson-A.J. Riebli III-Katherine Ringgold-Stephen Schaffer-Bob Scott-Peter Sohn-Andrew Stanton-Frank Thomas-Pamela Gaye Walker-Patrick Walker-Deirdre Warin-Jack Angel-Bob Bergen-Rodger Bumpass-Philip L. Clarke-Bill Farmer-Mickie McGowan-Patrick Pinney-Phil Proctor-John Walker,secret identity-hero-island-wretch-cartoon-lawsuit-superhero-family relationships-super power-1950s-1960s-superhero family,/2LqaLgk4Z226KkgPJuiOQ58wvrm.jpg,/se5Hxz7PArQZOG3Nx2bpfOhLhtV.", + "embedding" : [ 0.005200551, -0.041550443, -0.0341577, -0.02576667, -0.004977959, 0.019088922, -0.011453353, -0.027560895, -0.012073912, -0.040201403, 0.025982518, 0.024808852, 0.03637013, 9.999762E-4, 0.0024350178, -0.0055479286, 0.017942237, -0.013342009, 0.009571441, -0.03580353, 0.015878206, -2.2638583E-4, -0.025483374, -0.00916673, 0.007149914, 0.014502184, 0.024080371, -0.012606782, -0.012471878, -0.019588066, 0.009733327, -0.007939103, -0.009146494, -0.013530875, -0.024363669, 5.0251756E-4, 0.009524225, -0.02471442, 0.034832224, -5.299199E-4, 0.012127873, 0.016633667, -0.007149914, 0.01403002, -0.016174994, -5.0773455E-5, 0.014839444, 2.6011185E-4, -0.014110962, 0.026832413, 0.017631957, 0.0129305525, -0.02176002, -0.02138229, -0.015986128, -0.0065259826, -0.02339236, 0.01539255, 0.015972639, 0.004684543, 0.018657228, 0.0050589014, -0.010165019, -0.024997719, -0.022313127, -8.6338585E-4, -0.00400665, -0.016633667, 0.017766861, 0.001863362, 0.040201403, 0.008863195, 0.0293821, 0.00918022, 0.012573056, -0.018279497, -0.027844194, -0.013935587, -0.01269447, 0.006246057, 0.022016339, -0.0029206725, -0.0053455727, 0.004546266, 0.025334978, 9.679365E-4, -0.012937297, 0.012552821, -0.028761541, 0.022299638, -0.0053455727, 0.025321487, -0.013578092, 0.013989549, 0.009429792, 0.028248906, -0.01836044, -0.009713091, -0.039580844, -0.045219835, 0.0048902715, -0.0013338637, -0.009584932, -0.0074062315, -0.014569636, 0.011554531, -0.004539521, -0.01469105, 0.028518714, 0.005112863, -0.022475014, -0.0060470733, 0.006576572, -0.061246432, 5.012528E-4, -0.03496713, 0.03607334, 6.0285244E-4, -0.011804103, -0.009342104, 0.025753181, 0.020856164, 0.013632053, -0.009274652, 0.044977006, 0.022286147, 0.010522515, -0.017915256, -0.0056187534, -0.0069610486, 0.036909744, 0.005146589, 0.03208018, 0.006067309, -0.03167547, 0.035938434, -0.027506933, -0.013989549, -0.02706175, -0.00953097, 0.023878016, 0.029624926, -0.013503894, -0.007878396, -0.03774615, -1.728458E-4, 0.00543326, -0.0064855115, 0.010495534, -0.023958957, 0.013085691, 0.010063841, 0.011662454, 0.025537334, 0.03734144, 0.012465133, -3.99864E-4, -0.012107638, -0.002726748, -0.016174994, 0.004472069, -0.014758502, -0.0057098134, -0.011999714, -0.0018599894, 0.01906194, 0.013659034, -0.019399201, -0.008047026, 0.009186965, 0.0036727625, 0.020761732, -6.235096E-4, 0.023999428, -0.0011795672, 0.023810564, 0.0070352457, -0.017861295, -0.025186583, -0.0013009808, 0.006829517, 0.015864715, 0.015460003, 0.010475298, -0.009294888, 0.0041820253, 0.017551016, -0.031216795, 0.0041213185, -0.013409462, 0.011561276, 0.014839444, 0.0027014534, -3.945943E-4, -0.63070333, -0.017240737, 0.0035378584, -0.0015935539, 0.024822343, 0.007824434, 6.572356E-4, -0.014110962, -0.020856164, -0.016444802, -0.02675147, 0.011001424, 0.007453448, -0.019642027, -0.009058806, -0.01470454, 0.012121128, -0.021328328, -0.015554436, -3.7035375E-4, -0.03167547, 0.01904845, -0.004013395, 0.0037402145, -0.015756791, -0.019466653, -0.0028835738, -0.0074601932, 0.016836025, 0.017119322, -0.025132623, 0.02339236, 0.015756791, -0.01837393, 0.02873456, -0.0073994864, -0.024552535, 0.042332888, 0.025550826, 0.030488312, -0.026818924, -5.269689E-4, 0.01702489, 0.004606973, -0.008208911, 0.005942523, 0.016809043, -0.010097567, 0.01537906, 0.0071634045, 0.0055580465, -0.0023523893, -0.0031044793, -0.014205395, -0.015163214, -0.012815883, 0.021503704, -0.027250616, 0.015095762, -8.7518996E-4, 5.640675E-4, 0.02873456, 0.004320302, 0.0073117986, -0.003148323, 0.029705869, -0.0040336307, 0.0018110867, 0.017551016, -0.035506744, 0.026265817, -3.5981435E-4, -0.031594526, 0.0024771753, -0.00150418, 0.036505032, 0.017847804, -0.016836025, 0.0012790589, 0.037287477, 0.016485274, -0.010859775, -0.0014232376, 0.015325098, 0.010299923, -0.014070491, -0.038285766, -0.0026002754, 0.015635379, -0.0011939007, 0.024862815, -0.0044248523, 0.02003325, 0.0049914494, -0.0035041324, -0.0055580465, 0.006974539, -0.02439065, 0.019736461, -0.06820748, -0.017874785, -0.0035783297, 0.012013204, -0.026913356, 0.009726581, -0.0015471807, -0.024943756, 0.006704731, 0.023594717, 0.010326904, -0.017577996, -2.306016E-4, 0.0026727864, -0.018198555, 0.007662549, -0.02443112, 0.007817689, 0.017497053, 0.008006555, 0.008404521, -0.010987934, 0.007905377, 0.002957771, -0.0042663403, 0.011763632, 0.013395971, -0.012256032, -0.0011551158, -0.005220786, 0.0125460755, 0.009611913, 0.009537715, 0.006549591, -0.012060421, 0.013342009, 0.010036861, 0.029328138, 0.0065124924, 0.025550826, -0.013645544, -0.027156183, -0.012141364, -0.006913832, -0.013234086, -0.018400911, -0.015136233, -0.012087402, -5.560576E-4, 3.117548E-4, -0.015594907, -0.0024957247, -0.0072915633, 0.014515675, 0.0077367467, 0.010185255, -0.0018195182, -0.016296407, -0.024107352, -0.0044754413, -0.016903477, 0.0036795076, 0.016201975, -0.0065226103, -0.026238834, -0.003434994, -0.009294888, -0.030299447, 0.01836044, -0.0065529635, -0.035533722, -0.017658938, -0.043681927, 0.008573151, 0.03404978, -0.01083954, 0.014205395, -0.002155092, -0.0012006459, -0.026994297, -0.016525745, 0.005382671, 0.0078986315, -0.015338589, -0.014164924, 0.03407676, -0.0031618134, 0.016094051, -0.0071229334, -0.016417822, 0.01935873, -0.02973285, -0.0029780066, -0.0038582555, 0.0010615261, -9.519166E-4, 0.014987838, -0.006836262, 0.024134332, 8.692879E-4, 0.002340585, 0.035048068, 0.020950597, -0.0050150575, -0.003075812, 0.023945468, -0.012181834, 0.003844765, -0.02838381, 0.010691145, -0.017294697, 0.021463232, -0.0011264487, -0.018063651, -0.011365665, 0.014798973, 0.0030842435, 0.006886851, -0.0036997432, -0.017200265, 0.0024282727, -0.009874975, -0.013530875, 0.012856355, 0.019561086, -0.0021837591, 0.018657228, -0.0039661787, -0.003406327, -8.8868034E-4, -4.4792355E-6, -0.019776931, -0.008532681, 0.0062426846, -0.014218885, 0.026495153, -0.009638893, 0.02975983, -0.013045221, 0.031351697, -0.018279497, -0.0029223587, 0.015972639, 0.039230093, -0.002328781, 0.015406041, -0.006927322, 0.0043135565, -0.005423142, -0.0029004368, 0.03210716, -0.022299638, 0.011831084, -0.0032629913, 0.021665588, 0.023243966, -0.009807523, 0.0048396825, -0.0032410696, 0.04279156, 0.012013204, 0.019682499, -0.0047385045, 0.02607695, 0.02003325, 0.021827474, 0.00968611, -0.005763775, 0.014569636, 0.008195421, -0.016498763, -0.013949078, -0.01966901, 0.022893215, 0.0015412787, 0.01404351, -0.030164544, -0.014475203, 0.0109407175, -0.01200646, 0.026468173, -0.0025749807, -0.06577921, 0.009240926, 0.0042157513, -0.017955728, -0.011648964, -0.008107733, -0.007986319, -0.029139273, 0.010165019, 0.0066136704, 0.023958957, 0.0069340677, 0.0072376016, -0.017577996, -0.00735227, 0.008485464, -0.023432832, 1.2921277E-4, 0.0069677937, 0.00434391, 0.025942046, -0.0098884655, -0.002676159, 0.010765342, -0.002031992, 0.0011180172, -0.0073994864, 0.02505168, 0.013841154, 0.008991354, -0.015095762, -0.041010827, 0.003428249, -0.004320302, -0.029328138, -0.017240737, -0.002037051, 0.032943565, -0.01637735, -0.022461522, -0.025240546, -0.023931976, 0.0018481853, 0.06793767, 0.030515293, 0.01071138, -0.008154949, -0.009571441, -3.7520187E-4, -0.018131103, -0.015729811, -0.007723256, -0.008640604, 0.011702925, -0.021881435, 0.013112673, 0.005180315, 0.029975677, 0.004549639, -0.01632339, -0.016836025, -0.018967507, -0.0048059565, -0.03011058, -0.0018819113, 0.04098385, 0.025334978, -3.0711747E-4, -0.0055411835, 0.014272847, 0.008047026, 0.0048531727, 9.6119125E-4, -0.009719836, -0.009578187, 0.0014519047, 0.0039526885, -0.018266007, -0.012620273, 0.011972734, 0.011082367, 0.035236936, 0.0038481376, -0.001111272, 0.036693897, 0.013254322, -0.010050351, 0.01837393, -0.013557856, -0.0133555, 0.010576476, 0.01937222, -0.01972297, 0.027466463, -0.0028093767, -0.016498763, -0.0056996956, 0.012519095, -0.003058949, -0.02205681, -0.021625116, 0.011352175, -0.0071296785, -0.0010286433, -0.012748431, 0.01119029, -0.01867072, -0.011304959, -0.018198555, -0.005389416, -0.024161313, -0.0073252893, -0.007412977, 4.8565454E-4, -0.030353408, 0.0026677274, 0.0017891648, -0.005284866, -0.012876591, 0.028923426, 0.0031297738, 0.019088922, 0.0106844, -0.030299447, -0.05007638, -0.006724966, -0.03108189, -0.014596617, 0.027115712, -0.0078041987, 0.02073475, 0.016647158, -7.9382595E-4, 0.018859584, 0.012714705, 0.011250997, 0.008161695, 0.028221924, -0.01036063, 0.010225726, 0.013726486, 0.009706345, 0.0021618372, 0.008310089, -0.041658368, 0.003972924, -0.013476914, -0.0021905042, -0.008573151, 0.012296503, 0.007480429, -0.03075812, -0.03075812, -0.011750142, -0.010293178, -4.5445797E-4, 0.0016449861, 0.021436252, 0.0029982422, 0.013038475, 0.011554531, -0.013132908, -0.0011188603, 0.0032731092, 0.0017301443, 0.010819304, 0.047998857, -8.726605E-4, 0.026562605, -0.0050993725, -0.008795743, -0.0017942237, 0.021962378, -0.0055917725, 0.011999714, 0.01085303, -0.0098547395, -0.013409462, -0.02000627, -0.0077974536, 0.0066743772, -0.005305101, -0.0051364712, -0.023230474, -0.0040268856, 0.013004749, -0.019318258, 0.0058548353, -0.021827474, -0.005797501, 0.00609429, 2.5210192E-4, 0.013827664, -0.024876304, -0.0041516717, -0.014232376, -0.002177014, -0.01674159, -0.0400665, -0.037287477, 0.008094242, 0.03172943, 0.011352175, 0.040552154, 0.004478814, 0.025294507, 0.021314839, 5.4172403E-4, 0.023500284, -0.03305149, 0.010138039, -0.049860533, -0.011203781, 0.009490499, 0.012728196, 0.012154854, 0.008930648, -0.0053118463, 0.009112768, -0.0032747956, 0.010165019, 0.0027655328, -0.018805623, -0.007008265, 0.020181645, -0.024997719, 0.0019206962, -0.02171955, -0.009106022, 0.029193234, -0.01436728, -0.015783772, 0.008620368, 0.027452972, 0.007682785, 0.0052781203, -0.026576096, 0.020559376, -0.014097472, -0.0059290323, -0.021813983, -0.018522324, 0.004647444, -0.021503704, 0.025523843, 0.0054703588, -0.004893644, 6.618729E-4, 0.012917061, -0.0028650246, -0.028599655, -0.0018330086, 0.0056018904, -0.019547595, -0.032296028, -0.00675532, -0.037530303, 0.001897088, -3.8342256E-4, -0.025820633, 0.009928937, -0.002316977, -0.031756412, 0.038636517, -0.01469105, 0.055229712, 0.020613337, 0.04238685, 0.04449135, 0.0157433, -0.012761922, 0.014515675, -0.0013549424, -0.010063841, 0.019830894, 0.035830513, -0.008950883, -0.0056221257, -0.0015008075, 7.4112904E-4, -0.0580627, -0.030650197, 0.02405339, 0.016647158, 0.018940527, -0.02267737, -0.00818193, -0.019925326, 0.011028405, -0.008681075, 0.019925326, -5.176942E-4, -0.028140983, -0.03310545, 0.0087350365, -0.0042461045, 0.015756791, 0.005200551, -0.023109062, -0.012134618, -0.0047519947, 0.005089255, -0.0072645824, -0.0054973396, 0.038636517, -0.006809281, -0.001498278, 0.0018414401, 0.012249286, -0.008249382, -0.005989739, 0.006795791, 0.03172943, -0.0056760875, 0.01871119, -0.008215656, 0.005423142, -0.0076355687, 0.011338685, -0.006070682, -0.017915256, -0.021179933, 0.0073590153, 0.015729811, 0.01668763, -0.015945658, 2.1921906E-4, -0.026090441, -0.009079042, 0.017011398, -0.021989359, 0.007412977, -0.05687554, 0.019493634, 0.012256032, -0.006660887, -0.003895354, -0.003148323, -0.014137943, -0.0043169293, 0.025847614, -0.0065462184, 0.0152711375, -0.017645448, -0.0010842913, -0.054285385, -0.017631957, -0.0032461283, -0.015513964, 0.010144784, -0.027898155, 0.0021399152, 0.0012132932, 0.015878206, -0.004671052, -0.015567926, -0.013267812, 0.0041010827, 0.016552726, 0.0024704302, -0.018171573, 0.00342319, 0.019938817, 5.058901E-4, -0.0065866895, 0.008391031, -0.009301634, 0.024997719, -0.024781872, 0.012950787, 0.0065428456, -0.005335455, -4.641542E-4, -0.01037412, 0.034319587, 1.1593316E-4, -0.016930457, -0.038987268, -0.023459813, -0.019601557, 0.0414695, -0.018886566, -0.009146494, 0.042359866, 0.03313243, 0.015851224, 0.0056996956, 0.0065293554, -0.02843777, 0.01666065, -0.02134182, -0.033348277, -0.01836044, -0.00918022, 0.01668763, 0.00868782, 0.0043506552, -0.039634805, -0.0072915633, -0.03806992, -0.01501482, -0.015163214, 0.021827474, 0.014448223, -0.0048363097, -0.004394499, 0.023797072, 9.940742E-4, 0.01838742, -0.019844385, 0.0063269995, 0.0071431687, 0.018441383, 0.029166253, 0.03210716, -0.02636025, -0.00768953, 0.013962568, 0.021948887, -4.57409E-4, 0.035587687, -0.022218695, 0.011129583, -0.014380771, -8.1701257E-4, 0.012917061, 9.788974E-4, 0.019938817, -0.028248906, -0.0032191477, 0.011615237, 0.015527455, 0.01119029, -0.0018262634, 0.008600133, 0.002610393, 0.0036525268, -0.0042157513, -0.014218885, -0.0013608445, -0.02437716, 0.008364051, -0.0016626923, 0.0034198174, 0.023554245, 0.018198555, -0.019763442, -0.004293321, 0.005763775, -0.0031736174, -0.010185255, -0.00767604, -0.008505699, 0.021125972, -0.022933686, 0.02008721, -0.028167963, 0.0031685587, -0.0012428034, 0.0027655328, -0.017631957, 0.03709861, 0.007756982, -0.051884092, -0.010495534, -0.008094242, -0.010266197, -0.02542941, 0.001998266, -0.025267527, -0.00643155, -8.61278E-4, 0.0039931596, 5.290768E-4, -0.024646968, -0.014758502, 9.106023E-4, -0.034130722, 0.009537715, 0.20419075, 0.0027301204, 0.022582935, 0.049509782, 0.011831084, 0.008451738, 0.02975983, 0.02170606, -0.0032191477, 0.0083168335, -8.6159416E-5, 0.019736461, 0.008249382, -8.321893E-4, 0.008815979, 6.1212707E-4, -0.04365495, -0.004225869, -0.009267908, -0.020276077, -0.008708056, -0.013153144, -0.0247414, -0.031216795, -0.0014544341, 0.004047121, 0.002328781, -0.007790708, 0.021962378, 4.1419757E-4, -0.032538854, -0.009976153, -1.7379434E-4, 0.012397681, -0.02437716, -0.0038009214, -0.008161695, 0.026778452, 0.0048734085, 0.018009689, -0.0024670577, -0.0064855115, 0.011257742, -0.0010311727, -0.007008265, 0.019129392, -0.023190005, 0.011824339, -0.013800683, 0.0156218875, -0.033618085, -0.002446822, 0.015567926, 0.03011058, -0.02236709, 7.2089344E-4, 0.010893501, -0.008141459, 0.013024985, 0.0035277405, 0.010326904, 0.037368417, -0.021854455, 0.0072038756, -0.0050690193, 0.0025125877, -0.029813793, 0.01833346, 0.012397681, -0.033456203, -0.022137752, -0.028977387, -0.008175185, -0.012235796, -0.014879915, -0.024444612, 0.008977864, 0.0024586262, 0.022987649, 0.017267717, -0.01637735, -0.03178339, 0.008060516, -0.0027571013, -0.012748431, 0.0048868987, 0.020869656, -0.012309994, -0.0032140887, -0.0034940145, -0.016485274, -0.038393687, -0.008890176, 0.0033978955, -0.0072106207, 0.022663878, 0.019453162, 0.012957533, -0.008040281, -0.01966901, -0.04009348, 0.010084077, 0.018576287, -0.008471973, -0.021436252, -0.016242446, 0.009409557, -0.0022579564, 0.018495344, -0.018252516, -0.008087497, -0.024835834, -0.0020404237, -0.022110771, 0.0014148061, 0.020181645, 0.0022916824, -0.006650769, 0.033510163, -0.0133555, 3.8658438E-4, -0.023109062, 0.004691288, 9.4685773E-4, 0.009571441, -0.03469732, -0.016107542, 0.0074669383, 0.02808702, -0.010549496, 0.0058278544, -0.03769219, -0.0047688577, -0.014771992, -0.013234086, 0.0133555, 0.029678889, -0.005952641, 0.016795553, -0.002979693, 0.004725014, -0.006033583, 0.022623407, 0.010050351, 0.01269447, -0.008175185, 0.016188484, -0.0032056572, -0.006667632, -0.021584647, -0.023419341, 7.3269755E-4, 0.004994822, 0.01966901, 0.045381717, -0.008627113, -0.028707579, -0.008114478, -0.005247767, 0.03477826, -0.04508493, 0.013342009, 0.009733327, -0.02100456, -0.030245485, -0.012876591, -0.1723534, 0.019857874, 0.024471592, -0.022866234, 0.033618085, 0.009591677, 0.03440053, 0.0059020515, 0.003446798, -0.022825763, 0.016539235, 0.017888276, -0.050939765, -0.012687725, 0.006896969, 0.03132472, -0.017092342, 0.019709479, 0.023770092, 0.0019072058, 0.013078947, -0.006161742, -0.014448223, 0.0022883099, 0.006151624, 0.002251211, 0.0072173662, -0.009045316, 0.0055580465, -0.027925136, -0.016768571, -0.011338685, -0.0072376016, -0.001930814, 0.020815693, -0.013746722, -0.003087616, -0.011089112, -0.0033017762, -0.0050386656, 0.027399011, 0.01637735, 0.026333269, -0.0044585783, 0.026711, 0.012417917, 0.023203494, -0.00735227, 0.0032275792, -0.016121032, -0.013301538, -0.018859584, 0.034913164, -0.007743492, 0.02437716, 0.021274367, 0.0013777075, -0.007473684, 0.018643739, -0.009355595, -0.013288048, 9.923879E-4, 0.004775603, -0.021517195, -0.0144347325, -0.020384, -0.01666065, 0.03245791, -0.019399201, 0.019156374, -0.026495153, 0.019129392, 0.0157433, -0.004714896, 0.0038650008, -0.016107542, -0.03108189, 0.010819304, 0.012768667, -0.0034670339, -0.0461102, 0.043007407, -0.010144784, 0.0054467507, 0.029813793, -0.0070959525, 0.029463042, -0.022582935, 0.013159889, -0.021098992, 0.009982899, -0.021301348, -0.03234999, -0.022501994, -0.0034147585, 0.008202165, 0.001762184, 0.0054703588, 0.012309994, 0.0076018427, -0.011615237, -0.0074669383, -0.010030115, 0.016903477, 0.008330325, 0.015864715, 0.005527693, 0.019250806, 0.0213688, 8.16591E-4, 0.0048531727, 0.010482044, 0.030569255, 0.015540945, -0.006566454, 0.005440005, -0.022515483, -0.0012478624, -0.0012335288, 0.013517384, 0.045894355, 0.010286433, -0.004977959, -0.0032073434, -0.0071364236, -0.0022124262, -0.08374843, -0.002682904, 0.010509024, 0.04511191, -0.037881054, 0.03477826, -0.018131103, 0.040956866, -0.025888085, 0.026872884, 0.01436728, -0.0314866, 0.012363955, -0.0011753514, 0.010772088, 4.4976794E-5, -0.012600037, -0.0045260303, -0.009976153, 0.053826712, 0.019911837, 0.017146302, 0.0047553675, -0.019642027, -0.013085691, 0.0049374877, -0.027304577, 0.01088001, 0.012296503, 0.0018515579, 0.021179933, -0.009490499, 0.022866234, -0.038447652, -0.02335189, -0.005011685, -0.03208018, -0.013254322, 0.02270435, -0.053907655, 0.017227245, -0.009234182, 0.014839444, -0.030946987, -7.609431E-4, -0.010637184, -0.013881626, 0.016943946, 0.0010362316, -0.03512901, -0.01088001, -0.008262873, -0.03143264, 4.6668365E-4, 0.01002337, 0.007547881, 0.017159794, 0.0076355687, 0.0057502845, 0.009584932, -0.003895354, -0.008762017, -0.030596236, 0.01568934, 0.0064619035, 0.01135892, 0.009605167, -0.014610107, 0.034292605, -0.024498573, -0.014974348, 0.030515293, -0.025159603, -0.008775508, -0.02100456, 0.015298118, -0.026562605, -0.013976058, 0.025011208, -0.027304577, 0.0029156136, -0.03202622, -0.011972734, -0.04675774, 0.015527455, -0.008917157, 0.023581225, -6.2603905E-4, 0.018994488, -0.029624926, -0.003160127, 0.007837924, -7.512469E-4, -0.004664307, -0.001094409, 0.0118783, 0.024781872, -0.00868782, -0.0012664116, 0.026994297, -0.008114478, -0.004640699, -0.07090556, 0.024485083, 0.0018161456, -0.0179962, -0.009740071, -0.017456582, 0.007251092, -0.018980999, 0.00951748, 0.0049914494, -0.010589967, 0.018279497, -0.004370891, 0.014448223, 0.0021854455, -0.0026812179, 0.009814269, -0.009159984, -0.0014670814, -5.101059E-4, -0.00767604, 0.011547785, 0.032188103, -0.006778928, -0.0010311727, 0.03143264, 0.025699219, 0.039526884, -0.023527265, -0.0010547809, 0.014974348, -0.023446321, -0.0077704727, 0.0043810084, -1.08028624E-4, -0.037314456, -0.005898679, 0.004519285, 0.011871555, 0.0016180053, -0.0022292892, -0.011487079, 0.008235891, -0.018819114, 0.010016625, 0.016566215, -0.014798973, 0.010812558, 0.015284628, -7.2384445E-4, 0.033591107, -0.0064753937, -0.018562796, -0.0040370035, 0.0240399, -0.016107542, 0.0448421, 0.0039999047, 0.0012959219, -0.016579706, 0.008485464, -0.0027402383, 0.024539044, -0.02238058, -0.0028009452, 0.022002848, -0.015756791, 0.002699767, -0.006313509, -0.014448223, -0.011466843, 0.0056052627, 0.0058514625, 0.017159794, 0.01403002, 0.023527265, 0.007588352, 0.008444993, -0.0070419908, 0.018549304, -7.0065784E-4, -0.003507505, -0.040660076, 9.974467E-4, 0.015918676, 0.028599655, -0.006805909, 0.022191714, 0.0072443467, -4.16727E-4, -4.831251E-4, 7.609431E-4, -0.0079323575, 0.0072106207, 0.01703838, 0.037719168, -0.035048068, -0.007986319, 0.017294697, 0.016903477, 0.010549496, -0.0020926988, -0.011466843, -0.023837544, -0.022663878, -0.010522515, -0.0079323575, -0.019345239, -0.003878491, 0.013632053, 0.014906896, 0.008660839, -0.0010994679, 0.0029392217, -0.028923426, 0.014974348, -0.013288048, -0.016417822, -0.009369086, 0.047621127, 0.009213946, 0.0025328232, 0.029543985, -0.024835834, 0.025361959, 0.035641648, 0.022879725, -0.01436728, 0.0022748194, 0.008215656, 0.002003325, 0.012701215, -0.034211665, 0.0011719788, -0.014906896, -0.012950787, -0.0050926274, 0.032997526, -0.0056929504, 0.07112141, 0.0011871555, -0.004620463, 0.012640508, -0.021247385, 0.0041719074, -8.020466E-5, 0.024525555, -0.026859393, 0.008768762, 0.0057233036, -0.010799068, 0.005595145, -0.0071296785, -0.0012090774, 0.0036727625, 0.002391174, 0.015837735, -0.017186774, -0.031972256, -9.3642375E-5, 0.0041887704, 0.037935015, -0.002357448, -0.018738171, -0.006913832, 0.01871119, 0.0040774746, -0.025820633, -0.043789852, -0.0047115237, -0.018846095, -0.012485369, -0.008782253, 0.025807142, 0.009962663, -0.003736842, 0.02270435, 0.014987838, 0.0022748194, -0.01234372, -8.842538E-5, -0.010947463, -0.007541136, 0.017847804, 0.004040376, -0.0028936916, -0.014407751, -0.026886376 ], + "id" : "6b26bae6-f183-4a22-8e56-3d6ca70fcff1", + "metadata" : { + "source" : "movies.csv" + } + }, + "7eadf63f-cf75-4b60-ae0d-f97366efd5f5" : { + "text" : "Miller-Kristen Wiig-Djimon Hounsou-Kit Harington-Kieron Elliott-Philip McGrade-Andrew Ableson-Gideon Emery-Simon Kassianides-Randy Thom-Julian Stone,loss of loved one-parent child relationship-husband wife relationship-sacrifice-viking-sequel-rescue-death of father-dragon-death of husband-warrior-mother son relationship,/d13Uj86LdbDLrfDoHR5aDOFYyJC.jpg,/sKTFNMsuSgyAcwbD0xXVUXvvbY.jpg,10191-166428-177572-109445-38757-950-9502-62177-137106-270946-93456-82690-8355-127585-102651-9806-62211-425-49519-150540-81188\r\n263115,Logan,Action-Drama-Science Fiction,en,In the near future a weary Logan cares for an ailing Professor X in a hideout on the Mexican border. But Logan's attempts to hide from the world and his legacy are upended when a young mutant arrives pursued by dark forces.,68.993,Hutch Parker Entertainment-The Donners' Company-Genre Films-20th Century Fox,2/28/17,97000000,619021436,137,Released,His time has come.,7.815,17552,Hugh Jackman-Dafne Keen-Patrick Stewart-Elizabeth Rodriguez-Boyd Holbrook-Stephen Merchant-Richard E. Grant-Stephen Dunlevy-Eriq La Salle-Elise Neal-Quincy Fouse-Al Coronel-Frank Gallegos-Anthony Escobar-Reynaldo Gallegos-Krzysztof Soszynski-Daniel Bernhardt-Ryan Sturz-Jef Groff-Brandon Melendy-Oren Hawxhurst-Jeremy Fitzgerald-Chris Palermo-Paul Andrew O'Connor-Clinton Roberts-Rocky Abou-Sakher-Keith Jardine-Jean Claude Leuyer-Andrew Arrabito-Sebastian James-Aaron Matthews-Garrett Hammond-Matt McClain-Maureen Brennan-Jason Genao-Hannah Westerfield-Bryant Tardy-Ashlyn Casalegno-Alison Fernandez-Parker Lovein-Jimmy Gonzales-Dave Davis-Lennie Loftin-Mark Ashworth-James Handy-Bryce Romero-Phi Vu-Chester Rushing-David Simpson-Lauren Gros-John Raymond-Vanessa Cloke-Doris Morgado-Katie Anne Mitchell-Lara Grice-James Moses Black-Ned Yousef-Michael Lehr-Baxter Humby-Bryan Sloyer-Daniel Hern��ndez-John Bernecker-Evan Dane Taylor-Joe Nin Williams-Toby Holguin-Robert Wu-Panuvat Anthony Nanakornpanom-Victor Winters-Junco-Eyad Elbitar-Craig Henningsen-Han Soto-Rissa Rose Kilar-Salef Celiz-Aidan Kennedy-Nayah Murphy-Chase Cubia-Emma Teo-Vincenzo Lucatorto-Noell Jellison-Haley Glass-Ella Rowbotham-Hudson Wright-Sebeon Jackson-Kelton DuMont-Damon Carney-Cynthia Woods-Mali O'Connor-David Kallaway-Robert Vargas-David Paris-Gonzalo Robles-Tim Connolly-Mary Peyton Stewart,cyborg-experiment-self-destruction-mutant-future-dystopia-immortality-road trip-sequel-superhero-based on comic-super power-neo-western-troubled past-aging superhero-life on the margin,/fnbjcRDYn6YviCcePDnGdyAkYsB.", + "embedding" : [ 0.0054942705, -0.035350256, -0.018128688, -0.03128195, -0.023090368, 0.04670302, 0.007559347, -0.003142283, -0.013964175, -0.03320615, 0.03128195, 0.029165335, 0.029852547, -0.0015359218, 0.0038896275, 0.017922524, 0.016795494, -0.015489789, 0.017565172, -0.023021648, -0.0123148635, 0.0034721454, -3.8355094E-4, -0.00288286, 0.008205327, 0.020960007, 0.028368168, -0.021193659, -0.016135769, -0.008727609, 0.012060594, -0.006233025, -0.010885459, -0.02399749, -0.02106996, 0.0043638046, 0.018733436, -0.0064082644, 0.038538925, -0.014445225, 0.01204685, 0.0051163035, 0.0028210108, 3.5455913E-4, -0.021688454, 0.018018734, 0.010899204, -0.01320824, -0.016822983, 0.0318867, 0.026485203, 0.027268626, -0.017345265, -0.014129106, 0.0055320673, -0.0021956465, -0.0063051824, -0.002530663, 0.015970837, -4.677346E-4, 0.018953344, -0.0154623, -0.014266549, -0.011613905, -0.010940436, -0.007930442, 3.3243946E-4, -0.016424399, -0.018307364, 0.007250101, 0.03598249, 0.011057262, 0.017317776, 0.0023657319, 0.006964907, -0.02454726, -0.022815483, -0.004514992, -0.007071425, 0.010548725, 0.013606824, -0.013118903, 2.1915663E-4, 0.012184293, 0.013421277, 1.9467465E-4, 0.009909617, 0.015091205, -0.01848604, 0.0060646576, 0.002523791, 0.03881381, -0.0045871492, 0.006844645, 0.016204491, 0.01349687, -0.0065182187, 0.015434812, -0.028038304, -0.026210317, -0.016355678, 0.004796749, 0.0019001449, -0.01401228, -0.0037934177, -0.017991245, -0.014239061, -0.016644306, 0.020437725, 0.02164722, 0.0038896275, -1.902722E-4, 0.008074757, -0.02812077, -0.009937105, -0.030704692, 0.026966251, -0.01632819, -0.008755098, -0.014541434, 0.03653226, 0.029082868, 0.0047761328, -0.026004152, 0.039061207, 0.045411058, -0.008741354, 5.3817395E-4, -0.0013821578, -0.0023141908, 0.035295278, -0.013325066, 0.009916488, 0.012995204, -0.02802456, 0.04392668, -0.033013728, 0.0071332743, -0.0059100348, -0.004326008, 0.033700943, 0.033123683, -0.021083705, -0.010129524, -0.016548097, 0.0071264026, 0.01304331, -0.0040030177, 0.017056635, 0.0072913337, 0.019351928, 0.03826404, 0.020176584, 0.0021715942, 0.025674291, -0.0050200936, -0.011668882, -0.0058481856, -0.0148712965, -0.025330683, -0.0067553073, -0.024629727, -0.009023111, -0.009071216, 0.0043466245, 0.016218236, 0.022939181, -0.008693249, -0.006545707, 0.0078067435, -0.02080882, 0.028230725, -0.03397583, 0.0145826675, -0.013524358, 0.012569132, -0.0032539552, 0.0043603685, -0.046235714, -0.011009158, -0.0065113464, -3.2814438E-4, 0.029495196, 0.03897874, -0.016122025, 0.009497289, 0.025852965, -0.014403991, 0.0062570777, -0.0032883158, 0.003807162, 0.030979577, 0.0044497065, -0.001133043, -0.63685435, -0.0049513723, 0.010974797, 0.0051747165, 0.014802575, 0.01565472, 0.0050097853, 0.013744267, -0.04645562, -0.009346101, -0.02322781, 0.02963264, 0.013057053, -0.026031641, -0.0114695905, -0.015833395, -6.378199E-4, -0.027213648, 0.018857135, -0.010995413, -0.015531021, 0.01162765, 0.019901698, -0.0066694054, -0.0016020661, 0.00618492, 0.0047658244, -0.0051815887, 0.0076074516, 0.002774624, -0.017867547, 0.034855463, 0.00834277, 0.005631713, 0.052393146, 0.0011631086, 0.0057210512, 0.047692604, 0.023818815, 0.024066212, -0.021317357, -0.001807371, 0.010232607, 5.557838E-4, -0.012156804, 0.024354842, -0.001239561, -0.0022248533, -0.003290034, 0.0056214053, 0.005308723, 0.03202414, -0.012527899, 0.008542062, -0.0026200009, -0.010961053, 0.013393788, -0.022623064, 0.023750093, 0.010638063, -0.016410654, 0.028010815, -0.018705947, 0.010012698, 0.0071195303, 0.011538312, 8.7791507E-4, -0.0077861273, -0.0017489579, -0.03543272, 0.010754889, 0.019063298, -0.008789458, 0.01723531, 0.005717615, 0.015709696, 0.026553923, -0.00149383, 0.007263845, 0.025083287, -0.001700853, -0.012548516, -0.004380985, 0.026402736, 0.05159598, -0.010713656, -0.016630562, 0.013407532, 0.021908361, -0.01143523, -1.9864761E-4, 0.017029146, 0.0012266758, -0.007978547, -0.0070233205, -0.0034360667, -0.013613696, 0.008246561, 0.035487697, -0.07141521, -0.011284043, -0.028533097, 0.034965415, -0.020657632, 0.00843898, 0.0027625978, -0.016713029, -0.010720528, 0.026677622, -0.012218653, -0.027584743, -2.5340993E-4, -0.012644726, 8.25515E-4, -0.011167217, -0.026966251, 0.002977352, 0.020245304, -0.0064185727, -0.014733854, 0.005253746, 0.006181484, 0.015146182, -0.0076280683, 0.025000822, 0.024657214, -0.011957512, -0.010253223, 0.0067106383, 0.022664296, -0.0034807357, -0.019668046, 0.009414823, -0.021014985, 4.527018E-4, -0.00504071, 0.016905447, -0.009662219, 0.021688454, -0.004233234, -0.026581412, 0.0068755695, -0.011771965, -0.00960037, -0.016713029, -0.01816992, -0.024822146, -0.011332148, 0.006793104, -0.011174089, -7.2501006E-4, 0.02045147, 0.0031079224, 0.017194077, 3.0344765E-4, 1.5569678E-4, -0.015957095, -0.015022484, 0.010328816, -0.021592243, 0.012892122, 0.02612785, -0.0069133663, -0.025619313, 5.051018E-4, 0.014472713, -0.005006349, 0.0017970629, 2.1733122E-4, 3.7689356E-4, 0.005463346, -0.019654302, -0.015627231, 0.015572255, -0.001961994, 0.01555851, -0.0025907943, 0.034250714, -0.0034996339, 0.0023657319, -0.010486876, -0.009675964, -0.011167217, -0.003954913, 0.021014985, 0.017771337, 0.016864216, -0.0060543497, 5.072493E-4, 0.009517904, -0.024162421, -0.014307782, -0.009840895, -0.015008739, -0.014857553, 0.0140878735, 0.004796749, 0.0025340992, -0.0061127627, -2.0680827E-4, 0.03111702, 0.00898875, 0.024822146, -0.02335151, 0.011050391, -0.025234474, 0.0052812346, -0.021193659, -0.010706784, -0.0059478316, 0.017950013, -0.011943768, -0.019365672, -0.0044497065, 0.0143490145, 0.01491253, -0.011579545, 0.018128688, -0.01572344, -0.0064666774, 0.0028811418, -0.0075662187, 0.017675128, 0.0052296934, -0.034855463, 0.0016656333, 0.0022952927, -0.023846302, 0.0031543092, -0.004380985, -0.017056635, 0.0061127627, -0.010431899, 0.010995413, -0.010356305, -0.0017034301, 0.018815901, -0.017276544, 0.040518098, -0.010617446, -0.009139937, 0.009772174, 0.028615564, 0.0053843167, 0.005291543, -0.017029146, 0.015929606, -3.068837E-4, -0.0057485397, 0.03056725, -0.020891286, 0.034250714, -0.0013898889, 0.004923884, 0.02557808, -0.025852965, 0.008768843, 0.005714179, 0.033673454, 0.007250101, 0.0040408145, -0.023722604, 0.019544348, 0.00154623, 0.006903058, -0.0063704676, -0.023200322, 0.0057622837, -0.031611815, -0.0092017865, -0.0179775, -0.012892122, 0.0042091818, 0.00843898, -0.0039583487, 0.002159568, 0.009119321, 0.008981878, 0.0033570372, 0.027186159, -0.0080678845, -0.039830886, 0.0057416675, 0.028230725, -0.020217817, -0.025358172, -0.010095164, -0.0017867547, -0.03579007, -0.0115589285, 0.0069855237, 0.03710952, -0.008590166, -0.003035765, -0.0043157, 0.006597248, 0.03053976, -0.03262889, 0.015503533, 0.022334434, -0.0018726564, 0.0050269654, -0.013180752, -0.006703766, 0.022430643, -0.022623064, -0.0031852338, -0.0134487655, 0.014692621, -0.011909408, 0.0014062104, -0.007263845, -0.042387318, 0.010988541, -0.017194077, -0.011393997, 0.0022952927, 0.015159926, -0.007476881, -0.017688872, -0.015764674, -0.0137373945, -0.033096194, -0.00975843, 0.08818322, 0.03840148, 0.009524777, 0.016438143, -0.017249055, 0.0070439368, 0.0010093446, -0.02473968, -0.0010754889, -0.011799453, 0.02390128, 0.0049204477, -0.0024481975, -0.008074757, 0.012417945, -0.004583713, 6.472691E-4, -0.004892959, -0.009421695, -0.022334434, -0.02351644, -0.027186159, 0.01687796, 0.024382329, -0.0038277784, -0.015668465, 0.022265712, 0.018431062, -0.009153682, 0.009119321, -0.0115864165, 0.005875674, -0.0029498632, 0.01227363, -0.0011424922, -2.5469845E-4, 0.029110357, 0.013668673, 0.024409818, -0.013620568, -0.01175822, 0.010205118, 0.009675964, -0.0049307556, 0.007655557, -0.031721767, -0.02164722, 0.018760925, 0.025248218, -0.02502831, 0.015572255, -5.5277726E-4, -0.016864216, -0.018376084, 0.010363177, 0.013290706, 0.0081847105, 0.003248801, -0.021509778, 0.025660546, -4.305821E-5, -0.032683868, 0.0062055364, -0.013373172, -0.01443148, -0.0378792, -0.011998745, -0.0011751348, -0.02174343, -0.011098496, 0.0101913735, -0.017895035, 0.01658933, -0.003697208, 0.004576841, -0.008377131, 0.03147437, -0.01697417, 0.01980549, 0.015283625, -0.039501023, -0.013627441, 0.012005617, -0.018307364, -0.0013529513, 0.011455846, -0.012088083, 0.021578498, -0.0061711757, -0.006081838, -0.005360264, 6.601543E-4, -0.038346503, -0.009785918, 0.027364835, 0.010390665, 0.012548516, 0.007511242, -0.0013563874, -0.004154205, 0.002118335, -0.035460208, -0.021152427, -0.017922524, -0.020025397, -0.026375249, 0.002530663, 7.9029537E-4, -0.035350256, -0.022595575, -0.018664714, -0.029935014, -0.010328816, -0.0074493927, 0.0027711878, 0.0063017462, 0.016438143, 0.010658679, -0.009586626, -0.0019121711, 5.5277726E-4, -0.030402318, 0.023337765, 0.035542674, -7.576527E-4, 0.016493121, -0.013057053, -0.028478121, 0.0031560273, 0.0137855, -0.019956676, 0.034965415, -0.012163676, 0.015187415, -0.0047245915, -0.01733152, 0.004679923, 0.007353183, 0.004858598, 0.016822983, -0.024533516, 0.019090787, 0.011290915, 0.0013340529, -0.004741772, -0.032161586, 0.0035941259, -6.524232E-4, 0.014940018, 0.0072363564, -0.011600161, 0.007882337, -0.037384406, -0.014541434, -0.015627231, -0.049891688, -0.010218862, -0.0061093266, 0.017991245, 0.028725518, 0.044146586, -0.009779046, 0.032931264, 0.012301119, 0.011084751, 0.024959588, -0.008920029, -0.015393578, -0.031611815, -0.0029653255, 0.005868802, 0.015008739, 0.002217981, 0.0025495614, -0.0055733, 0.021276126, 0.005631713, 0.012892122, 0.020259049, -0.03394834, -0.0047726966, 0.008947518, -0.021702198, -0.0025839221, -0.03276633, -0.02016284, 0.020341516, 0.0030082765, -0.0012438562, -0.011778837, 0.028780496, -8.701839E-4, 0.0145826675, -0.009256763, 0.022691784, -0.014046641, -1.04585284E-4, -0.01555851, -0.006954599, 3.9235587E-4, -0.008796331, 0.02045147, -0.005088815, -0.00956601, -0.008012908, 0.031721767, -0.025990408, -0.03469053, 0.032271538, -0.02052019, -0.014280293, -0.022155758, -0.0023846303, -0.027172416, -0.01565472, -0.0074012876, -0.022045804, -0.006947727, -0.011174089, -0.045466036, 0.002523791, -0.017661383, 0.050166573, 0.013510615, 0.03919865, 0.03579007, 0.018582249, -0.01632819, 0.0037109521, 0.008493957, -0.0036250504, 0.0057863365, 0.029357754, -0.025385661, 0.006195228, -0.0018571941, -0.004174821, -0.039116185, -0.040820472, 0.010699912, 0.03771427, 0.02287046, -0.021372335, -0.0046249456, -0.027749674, -7.0439366E-4, -0.0076418123, -0.0037453128, 0.018417317, -0.03243647, -0.024313608, 0.0013666955, -0.0034223225, 0.010040187, 0.014802575, -0.017702615, 0.013489998, -0.021564756, 0.022073293, -0.010122652, -0.009091833, 0.041535176, -0.027612232, 0.008837564, 0.00960037, 0.0117032435, 0.012335479, -0.0131876245, -0.0017429448, 0.027144928, -0.004862034, 0.029495196, 0.010108909, -0.017757593, 0.021317357, 0.0055870446, -0.005463346, -0.021179914, -0.024024978, -0.0035735094, 0.025261963, 3.753903E-4, 0.008143478, 0.0041610766, -0.02006663, 0.0010230888, 0.016493121, -0.021399824, 0.005648894, -0.025743011, 0.0023622958, -0.0044497065, 0.017029146, -0.006906494, -0.0051541002, -0.0055836085, 9.011085E-4, -0.0054770904, -0.014678877, 0.0058035166, -0.009160554, -0.020561423, -0.035157833, -0.023928769, -0.008006035, -0.026017897, 0.01307767, -0.010995413, -0.015256137, 0.0077517666, -0.008095373, -0.009078088, -0.008734481, -0.018692203, -0.0049101394, 0.01111224, -0.0124591775, -0.008432108, 0.003291752, 0.017840058, -0.010225735, -0.01275468, -0.0062570777, 0.009648476, 0.02425863, -0.017743848, 0.02016284, -0.011668882, -0.02944022, 0.020080375, 0.01816992, 0.020795075, 0.010163886, 0.01017763, -0.029357754, -0.021207403, -0.020877542, 0.03394834, 0.0019791743, 0.013462509, 0.037466872, 0.0045630964, 0.04101289, 0.0179775, -0.018527271, -0.02979757, -0.0018159612, -9.337511E-4, -0.025344428, -0.0041816933, 0.0071264026, 0.022650551, 0.018252386, -0.009167426, -0.035020392, -0.0032676994, -0.01320824, -0.023076624, -0.013359427, 0.018527271, 0.02831319, 0.017455218, -0.006129943, 0.024615983, 0.010507492, 0.009998954, -0.010796121, -0.011407741, 0.03658724, 0.017537685, 0.03543272, 0.018898366, -0.03829153, -0.017537685, 0.016273212, 0.010720528, 0.013909198, 0.026773833, -0.0062536416, 6.7690515E-4, -0.022513108, -0.003975529, -0.016520608, -0.01288525, 0.010095164, -0.015379835, 0.006129943, 0.011771965, 0.0080403965, -0.009126193, 0.011098496, 0.02586671, -0.0016888268, 0.012720319, -0.008088501, -0.017386498, 0.007470009, -0.045053706, 0.02699374, -0.002473968, 0.0025959485, 0.03752185, 0.026004152, -0.0101913735, 0.0034360667, 0.003087306, 0.014211572, -0.01568221, -0.00763494, -0.009016239, 0.02795584, -0.03056725, 0.0034721454, -0.03837399, -0.0074356482, -0.010253223, 0.016575586, -0.002633745, 0.028340679, 0.015407323, -0.034195736, 0.011290915, -0.012438562, 0.015503533, -0.0118200695, -0.013270089, -0.011930023, -0.017207822, -0.0074287765, -0.009401078, -0.015187415, -0.029495196, 9.5093146E-4, -0.023433976, 0.0067759235, 0.009263636, 0.19725771, -0.015338602, -0.0062605133, 0.038181573, -0.002011817, -0.0015290497, 0.025042053, 0.024052467, 0.005514887, 0.013036437, 0.0044668866, 0.021908361, -0.018431062, 1.3980496E-4, 0.009428567, -0.043596815, -0.030457295, -0.0081847105, -0.007456265, -0.0062914384, 0.0012576004, 0.015998326, -0.0023588599, -0.03639482, 0.018156176, -0.0019740204, -0.011071007, 0.0054942705, 0.0126034925, 0.021344846, -0.017207822, -0.011428358, 0.0034291947, 1.08182416E-4, -0.020630145, -0.010157013, -0.010864843, 0.010184501, 0.013867965, 0.012108699, -5.072493E-4, -0.008260304, 7.473445E-5, 0.0077448944, 0.016369421, 0.0189396, -0.014445225, 0.0018400138, -0.019255718, -2.8970337E-4, -0.04216741, -0.008102246, 0.011352764, 0.034608062, 0.002735109, -0.0032762897, -0.0055458117, -8.5901667E-4, 0.00185204, -0.0034979158, 0.005617969, 0.016795494, -0.02042398, 0.024780912, 0.0189396, 0.02138608, -0.03592751, 0.006521655, 0.023818815, -0.01069304, -0.019324439, -0.024698447, -0.022884205, 0.009978338, -0.011139728, -0.008542062, 0.012720319, -0.0030958962, 0.0012567414, 0.024945844, -0.02454726, -0.009222403, 0.010273839, 0.0043019555, -0.030044967, -0.007813616, 0.01288525, -0.0049204477, -0.027199904, 0.0027024664, -0.0052228216, -0.0029051944, 0.0070439368, 0.0063464153, -0.020300282, 9.6725277E-4, 0.026017897, 0.008246561, -0.009119321, -0.013599952, -0.03897874, 0.013957303, -0.009064344, -0.012108699, -0.032134097, -0.013469381, -0.019750511, 0.006545707, 0.011428358, -0.012727191, -0.010294456, -0.027227392, -0.0017334956, -0.0026543615, 0.0035322765, 0.02831319, -0.0044565788, -0.013620568, 0.018224899, -0.0120812105, -0.002520355, -0.018073712, 0.015297369, 3.247083E-4, -0.011771965, -0.024629727, -0.018307364, 8.2121993E-4, -0.006885878, -0.022361923, 0.01987421, -0.018623482, 0.012644726, -0.0037899816, 0.011284043, 0.015764674, 0.02428612, -0.019654302, 0.0048311097, 0.006583504, 0.0037934177, 0.015352346, -0.008177839, -0.013050182, 0.02078133, -0.028230725, 0.017757593, 0.009765302, -0.020506445, -0.025330683, -0.03694459, 0.0068961857, -0.0022385975, -0.006686586, 0.0402707, -5.4762315E-4, -0.020588912, -0.041315265, -0.0028021124, 0.043624304, -0.032408983, 0.037329428, 0.0023640138, -0.010246351, -0.029082868, 2.4396073E-4, -0.1766963, 0.022348179, 0.009930233, -0.03389336, 0.0039858376, -0.006380776, 0.03405829, -0.00843898, 0.0028003943, -0.01694668, 0.027337346, -0.011936896, -0.037246965, 0.0014964071, -0.001599489, 0.020121606, -0.0038002897, 0.040408146, 0.017606406, 3.59928E-4, 0.04477882, -0.009387334, -0.0043603685, 0.011861302, 0.016094536, -0.0050578904, 0.025097031, 0.01368929, 0.013668673, -0.0020100991, -0.04277216, -0.014458968, 0.012266758, -0.0033295488, -0.013696162, 0.003948041, -0.009256763, 1.73414E-4, -0.009504161, 0.0019516859, 0.046840463, 0.019819234, 0.0148712965, 0.012857761, 0.0172628, 0.011284043, 0.02702123, -0.0016158103, 0.0022557778, -0.019118275, -0.006841209, -0.025000822, 0.025784245, -0.0016321316, 0.0058516217, 0.009270508, 0.015517278, -0.0067209466, -7.19856E-4, 0.0033398569, -0.018307364, 0.0025134827, 0.00566951, -0.013304451, 0.008830692, -0.013991663, -0.021949595, 0.015929606, -0.045988318, 0.00555612, -0.024134932, 0.019269463, 0.016122025, 2.0090252E-4, 0.008095373, -0.012761552, -0.021399824, 0.006123071, 0.006968343, 0.011311532, -0.0044428343, 0.015132437, 0.0034068602, 0.014376503, -0.0052812346, -0.0033089323, 0.010218862, -0.0031543092, -0.0048139296, 0.010672423, 0.008061012, -0.024176165, -0.024107443, 0.002418991, -0.0068240287, 0.002522073, -0.023475207, 0.005188461, 0.018238641, -0.0041370243, 3.5327062E-4, -0.010157013, -0.0043397523, -0.0038861914, 0.033508524, 7.99315E-4, 0.014129106, 0.028093282, 0.017097868, -0.007937314, -0.015324858, -0.00805414, 0.0104525145, 0.011689499, -0.012617237, 5.1970506E-4, -0.020657632, -0.020478958, 0.002575332, 0.026072875, 0.072624706, 0.012129315, 0.001595194, -0.016699284, -0.002997968, -0.007112658, -0.09137189, -0.0073050777, 0.011930023, 0.049451873, -0.020685121, 0.028038304, -0.0045012473, 0.010816738, -0.014994995, 0.03147437, -0.028230725, -0.028340679, 0.0063704676, 0.0022970105, 0.008521445, 0.004068303, -0.0120812105, -0.030099945, -0.007415032, 0.03323364, -0.012328607, -0.0018314236, -0.0014714956, 0.0015745775, -0.023736348, 0.010122652, -0.0240937, 0.018376084, 0.0074631367, 0.02200457, 2.2141155E-4, -0.017936269, 0.03144688, -0.031831723, -0.02596292, -0.025358172, -0.013338811, -0.04029819, 0.006789668, -0.022210736, 0.0075456025, 0.017125357, 0.007373799, -0.024629727, -0.009806534, 0.009188042, -0.02612785, 0.019461881, 0.0021904926, -0.019241974, -0.013160136, -0.029962502, -0.039803397, 0.009538521, 0.013455637, -0.0031714896, 0.035955, -0.0034687093, -0.0072844615, -0.038593903, -0.0035632013, -0.0032762897, -0.02174343, 0.025907943, 0.0020942828, 1.789976E-4, 5.93151E-4, -0.0036525389, 0.019077042, -0.016548097, -0.020410236, 0.019736767, -0.025811734, -0.013125774, -0.029082868, 8.5171504E-4, -0.013153263, -0.009847768, 0.02792835, -0.030704692, 0.006851517, -0.035377745, 0.0017627022, -0.017578917, 0.016644306, 0.02519324, 0.0060612215, 0.013922943, -0.0019757384, -0.04106787, -0.004923884, 0.0240937, 0.0057038707, 0.0018400138, -2.4629619E-5, -0.0071882517, 0.015737185, 0.004253851, 0.0025186369, 0.012898995, -0.009868383, 0.006294874, -0.068886265, 0.045026217, -0.018733436, -0.001908735, -0.012630981, -0.016575586, 2.6822794E-4, -0.0019001449, -0.0018864006, 0.044146586, 0.0126928305, 0.014541434, -0.012617237, -0.0074012876, -0.007655557, 0.0033381388, 0.0067175105, -0.00526749, 0.0073806713, 0.014362759, -0.02380507, 0.010143269, 0.026952507, -0.002114899, -1.335771E-4, 0.021482289, 0.0049685524, -0.01191628, -0.015778419, -0.0022523417, 0.033481035, -0.026553923, -0.004116408, 0.015159926, -0.0026406173, -0.034580577, -0.0042504147, 0.014307782, 0.019929187, 0.017578917, -0.008782586, -0.02102873, 0.0065525793, -8.0532813E-4, 7.6881994E-4, 0.016548097, -0.01819741, 0.020149095, 0.013909198, 0.0179775, 0.029110357, 0.004576841, -0.0022214171, -0.0024877123, 0.007415032, -0.013153263, 0.043734256, 0.006336107, -0.0044119097, -0.00721574, 0.01800499, -0.012933355, 0.016699284, -0.032711357, 0.012170549, -0.013572464, 0.013008948, -0.005611097, -0.005954704, -0.024794657, -0.016960425, 0.0040476867, 0.01733152, 0.036999565, 0.011242811, 0.019695535, 0.007208868, -0.011861302, 0.0026663877, 0.0010162167, 0.022733018, 0.005143792, -0.018994577, 0.018733436, -0.022059549, 0.012094955, -0.003405142, -9.835741E-4, 0.018692203, 0.018527271, -0.0056832545, 0.02944022, 0.012424817, 0.0013572463, 6.751871E-4, 0.023970002, -0.013524358, -0.012404201, -0.007559347, 0.020039141, -0.014692621, -0.012307991, -2.0197629E-4, -0.009071216, -0.03221656, 0.0014328398, -0.017510196, -0.036834635, 0.008528317, 0.022444388, 0.021633476, 0.013407532, -0.021509778, 0.010376922, -0.03144688, 0.010555597, 0.00149383, -0.0012318299, -0.01790878, 0.037219476, 0.01819741, 0.0036009979, 0.019887954, -0.016932936, 0.045988318, 0.007834232, 0.009380463, -0.023296533, -0.0013331939, -2.1443203E-4, 0.010163886, -0.018527271, -0.02850561, 0.020478958, -0.0029928142, -0.0044084736, 0.0020496137, 0.030842135, -0.020891286, 0.06982087, 0.018637225, -0.0031113585, 0.013524358, -0.0151049495, 0.019090787, 0.0070233205, 0.022705529, -0.012019361, -0.011407741, -0.0042985193, -0.031034555, 0.013641185, -0.03694459, -0.010521236, 0.0021870565, 0.012878378, 0.023090368, -0.011998745, -0.027337346, -0.02102873, -6.386789E-4, 0.027763419, 0.0050785067, -0.011607033, -0.013118903, 0.016561842, -0.011607033, -0.0118200695, -0.023667628, 0.0031457192, -0.024492284, -0.014307782, 0.0033158043, 0.02100124, -0.014026024, -0.010438771, 0.0010471414, 0.018664714, 0.015984582, -0.010576214, -0.015984582, -0.020822564, -0.020300282, 0.009215531, -0.002824447, -0.008816947, -0.027804652, -0.009806534 ], + "id" : "7eadf63f-cf75-4b60-ae0d-f97366efd5f5", + "metadata" : { + "source" : "movies.csv" + } + }, + "f67a5741-bf52-4326-aeb6-0b7773e143ab" : { + "text" : ",/kwTfPnP9f8ZyXmSniDcwonJWixY.jpg,1593-181533-32657-10527-810-8355-950-2454-88751-953-10192-1979-809-10140-9738-10555-411-310-80321-425-27022\r\n268,Batman,Fantasy-Action-Crime,en,\"Batman must face his most ruthless nemesis when a deformed madman calling himself \"\"The Joker\"\" seizes control of Gotham's criminal underworld.\",56.752,The Guber-Peters Company-Warner Bros. Pictures-Polygram Pictures,6/21/89,35000000,411348924,126,Released,Have you ever danced with the devil in the pale moonlight?,7.22,7256,Michael Keaton-Jack Nicholson-Kim Basinger-Michael Gough-Jerry Hall-Robert Wuhl-Pat Hingle-Billy Dee Williams-Jack Palance-Tracey Walter-Lee Wallace-William Hootkins-Richard Strange-Carl Chase-Mac McDonald-George Lane Cooper-Terence Plummer-Philip Tan-John Sterland-Edwin Craig-Vincent Wong-Joel Cutrara-John Dair-Christopher Fairbank-George Roth-Kate Harper-Bruce McGuire-Richard Durden-Kit Hollerbach-Lachele Carl-Del Baker-Jazzer Jeyes-Wayne Michaels-Valentino Musetti-Rocky Taylor-Keith Edwards-Leon Herbert-Steve Plytas-Anthony Wellington-Amir M. Korangy-Hugo Blick-Charles Roskilly-Philip O'Brien-Michael Balfour-Garrick Hagon-Liza Ross-Adrian Meyers-David Baxt-Sharon Holm-Clyde Gatell-Jon Soresi-Elliott Stein-Sam Douglas-Denis Lill-Paul Birchard-Paul Michael-Pat Gorman-Chris Andrews-Stephanie English,dual identity-double life-chemical-crime fighter-superhero-villain-based on comic-mobster-organized crime-criminal-super power-madness-good versus evil,/cij4dd21v2Rk2YtUQbV5kW69WB2.jpg,/92PG1J4gvxjTRLXTqDzPqjpe6fp.jpg,364-414-415-456456-123321-730392-604643-562334-2661-125249-57400-272-1924-286-89-4011-87-5548-1573-196-8536\r\n619,The Bodyguard,Thriller-Action-Drama-Music-Romance,en,A former Secret Service agent grudgingly takes an assignment to protect a pop idol who's threatened by a crazed fan. At first the safety-obsessed bodyguard and the self-indulgent diva totally clash. But before long all that tension sparks fireworks of another sort and the love-averse tough guy is torn between duty and romance.,26.534,Kasdan Pictures-Tig Productions-Warner Bros. Pictures,11/25/92,25000000,411006740,129,Released,Never let her out of your sight. Never let your guard down. Never fall in love.,6.", + "embedding" : [ -0.0030965102, -0.036196034, -0.01458606, -0.026010014, -0.015985461, 0.03296665, -0.0011731754, -0.009311397, -0.020008737, -0.024812449, 0.024960464, 0.023520695, 0.023709076, 0.0022319767, 2.6932574E-4, 0.0107511645, 0.022942096, -0.020937186, 0.0068590813, -0.036626622, -9.6797483E-4, 0.004918086, -0.025471782, 0.0044740452, -0.007118105, 0.01710229, 0.017479053, -0.011982368, -0.01366434, -0.0075621456, 0.0024624069, -0.01114811, -0.029495059, -0.0097958045, -0.01646987, -9.915225E-4, 0.0041578347, -0.017505964, 0.03455443, -0.008793349, 0.011989096, 0.010017824, -6.063509E-4, -0.0017072015, -0.005577419, 0.009856355, 0.011740164, -0.019457052, -0.009304669, 0.03159416, 0.014155475, 0.04128232, -0.008806805, -0.04182055, -0.0039391783, -0.011908361, 0.010744437, 0.0018232575, 0.020869907, -0.012480232, -4.115575E-5, -0.027207578, -0.014935911, -0.019806901, -0.010340763, -0.029010652, -0.023143934, -0.005281392, -0.0051165586, 0.0062232963, 0.032374594, 0.019847268, 0.007111377, -0.0035220492, 0.013819081, -0.036680445, -0.024543334, 0.0045547797, -0.0012127018, -0.0014607926, 0.009762165, 8.1785885E-4, -0.013677795, -0.0077034314, 0.011222117, 0.019457052, -0.022874817, 0.01105392, -0.0056480616, 0.014101652, 0.023372682, 0.018003827, 0.013489415, -0.005671609, -0.0010789849, 0.022444233, -0.017627066, 0.016712073, -0.017559787, -0.024516422, 0.018420957, -0.004622059, -0.012386041, -0.010852083, -0.0028980377, -0.017734712, 0.003220976, 3.818602E-5, 0.014868632, -0.00276348, 0.0035018655, -0.001856897, 0.030006379, -0.03840278, -0.0011454229, -0.014007462, 0.012587878, -0.020964097, -0.0072122957, -0.018528603, 0.008248391, 0.041228496, 0.015460686, -0.03210548, 0.035334866, 0.0137787135, -1.8186322E-4, -0.017586699, -0.002815621, -0.012749347, 0.054765005, -2.911914E-4, 0.020856451, 0.0011883131, -0.030140936, 0.04112085, -0.02497392, 0.00670434, -0.019255215, -0.02812257, 0.023830177, 0.03436605, -0.017452141, -0.023655253, -0.0035556885, 0.013724891, 0.009856355, -0.0012421362, 0.023843633, 9.738617E-4, 0.047794912, 0.016806263, 0.016725529, 0.0010234799, 0.01847478, 0.0050627356, -0.008288758, 1.8070686E-4, -0.0028997196, -0.0055908747, -0.014747529, 0.0123994965, 0.0032630255, -0.017721256, -0.0018350313, 0.01296464, 0.008403132, -0.0076899757, 0.0029653164, 0.0068456256, 5.474819E-4, 0.025404504, -0.010394586, 0.02621185, -0.008826989, 0.024274219, 8.6705654E-4, -0.015326128, -0.032751355, -0.015339584, -0.0047498886, 0.01067043, 0.024287675, 0.041013204, -0.024314586, 0.0027718898, 0.017936548, -0.023857089, 0.0029266311, -0.010791532, -0.012978096, 0.016214209, -0.0048440793, -0.015030101, -0.6497525, -0.0056514256, -0.016079651, -0.013489415, 0.017532876, 0.002460725, 0.006596694, 0.020694982, -0.032993563, -0.019322494, -0.01684663, 0.012789714, 0.030140936, -0.009176839, -0.027288312, -0.01270898, 0.01519157, -0.013159748, 0.0021260125, 0.009143199, -0.021744533, 0.012285123, 0.00286608, -5.1342195E-4, -0.0041174674, 7.7412755E-4, -0.011571967, -0.023076655, 0.012352401, 0.009015369, -0.02257879, 0.01614693, 0.019591609, 0.0056547895, 0.030490788, -0.005822987, -0.016106563, 0.03783764, 0.04391965, 0.032778267, -0.016779352, -0.009567056, 0.017492509, 0.012083286, -0.02283445, 0.0073266695, 0.02082954, -0.008975002, 0.006963364, 0.005913813, -0.009398859, 5.336056E-4, 0.00767652, -0.019954914, -0.006583238, 0.014639883, 0.0058532623, -0.03627677, 0.0064621363, -0.010744437, -0.007205568, 0.014370768, 0.012137109, -0.0011201933, 0.0033689898, 0.03245533, 0.020560425, -0.008699159, 0.0040400964, -0.021906001, 0.0103811305, -0.009351764, -0.012735891, -0.0079927305, 0.009836172, 0.006058463, 0.032536063, -0.0103811305, 0.011645974, -9.923634E-4, 0.010051464, -0.0023278492, -0.011908361, 0.009708342, 0.026871184, -0.00552696, -0.030813726, 0.012412952, 0.011968913, 5.6598353E-4, 0.010038008, 0.009829444, 0.013341401, 0.0076899757, -0.021757988, 0.02395128, -0.0048878104, -0.00742086, 0.029441236, -0.055276323, 7.564669E-4, -0.0013506234, 0.02019712, 0.008322397, 0.019470507, 0.021569608, -0.0026373318, -0.005278028, 0.016765896, -0.021744533, -0.008779894, 0.010051464, 0.0034009472, 0.0013102561, 0.0059541804, -0.030679168, 0.026050381, 0.015877815, 0.010138927, 0.0057220683, 0.0042823004, 0.013435592, -0.0023598066, -0.011827626, 0.012224572, 0.029629618, -0.0047936197, -0.0021327403, 0.011457592, -0.0036229675, 0.010085104, 0.015151203, 0.024058927, -0.01614693, -0.009822716, 0.0026877911, 0.007622697, -0.006949908, 0.01388636, -0.0070979213, -0.013018463, 0.004016549, -0.01605274, 0.00793218, 0.0014532238, -0.031890187, -0.00962088, 0.007481411, -0.0051266504, 0.0054294053, -0.02968344, -0.0030813725, -0.0058801738, 0.0064621363, 0.009876539, -0.007427588, -0.02029131, -0.014020918, 0.00525448, -0.008833717, 0.0034043111, 0.024529878, -0.015743257, -0.02315739, 0.03363944, -0.013576877, -0.003656607, 0.017640522, 0.007441044, -0.035496335, 0.013913272, -0.02570053, -0.0076428805, 0.006963364, -0.012608062, 0.020493146, -0.014128564, 0.017411774, 0.010239845, -0.008477138, 0.01439768, 0.0049382695, -0.02898374, -0.00383826, 0.03310121, 0.019066833, 0.011726708, -0.015931638, -0.016025828, -9.839536E-4, -0.019914547, -0.008941363, -0.0054092216, -0.0019981826, 0.0024994102, 0.031271223, 0.00466579, 0.014720618, 0.009708342, 0.026104204, 0.04803712, 0.018878452, 0.0041712904, -0.002623876, 0.0011050556, -0.03369326, 0.006583238, -0.028068747, 0.019510875, -0.0217849, 0.026131116, -0.018622793, -0.005809531, 0.008073465, 0.005267936, 0.025862, -0.025942735, 0.008692431, -0.036653534, -0.0027315223, 0.018945731, -6.946544E-4, 0.012083286, 0.0049920925, -0.006596694, 0.009681431, 0.015595243, -0.013267394, -0.0015432092, -0.022861362, 4.5287094E-4, 0.0023295311, 0.008396404, -0.010993368, -0.011195205, -0.010495504, 0.019995281, -0.013314489, 0.045238316, -0.012621517, -0.016039284, 0.012029463, 0.014612972, -0.0046960656, 0.0028458964, -0.012116926, 0.007844717, 0.02073535, -0.0019224939, 0.025121933, -0.02162343, 0.004480773, 0.005452953, 0.013967095, 0.018609338, -0.010495504, -1.18473894E-4, 0.019174479, 0.022027103, 0.023722531, 0.02448951, -0.016537149, 0.018447869, 2.1781537E-4, 0.019510875, -0.010360947, -0.016644794, 1.2047124E-4, -0.0033488062, -0.024718259, -0.021112112, -0.014451503, 0.0055471435, 0.0046422426, 2.1045674E-4, -0.010266757, -0.016523693, 0.018595882, 0.011639246, 0.018649705, -0.014760985, -0.036734268, 0.0066774283, 0.014989734, 0.003892083, -0.009829444, -0.013260666, -0.013079014, -0.015043557, 0.0034329046, -0.0048205317, 0.024153117, -0.0041208314, -0.019416684, -0.018367134, -0.0075015947, 0.015433774, -0.010818443, 0.0049954564, 0.016187297, 0.011430681, 0.014411136, -0.012944456, -0.0039694537, 0.01525885, -0.008329125, 0.01200928, 2.8614549E-4, 0.0015289125, -0.021287037, 0.0046052393, 0.02073535, -0.043435242, 0.010421498, -0.0068456256, -0.0015339584, 0.0034362685, -0.016765896, 0.009950546, -0.0024758626, -0.004611967, -0.031540338, -0.023587974, -0.009748709, 0.07605204, 0.021031376, 0.014464959, 0.0036599708, -0.007064282, -0.009519961, -0.0118141705, -0.007306486, -0.0054260413, 0.010354219, 0.027961101, -0.021502329, 0.014007462, 0.0077976217, 0.020049104, -0.022565335, -0.009203751, -0.008813533, 0.0014128564, -0.0079927305, -0.0067850747, -0.01952433, 0.017088834, 0.041901283, -0.0010075012, -0.025713986, 0.014505326, 0.013314489, 0.0013338038, 0.011450864, -0.01003128, 0.0047566164, 0.0035489607, 0.02812257, -0.008874084, 0.0067850747, 0.019631976, 0.0014834992, 0.028176393, 0.017680889, 0.016160386, 0.01232549, 0.0035085934, -0.00837622, 0.026252218, -0.035657804, -0.011854538, 0.029791087, 0.03194401, -0.030302405, 0.0068388977, 0.0028273948, -0.010771348, 0.006640425, 0.025983103, -0.008968274, 0.0029585885, -0.009096104, -0.034500606, 0.0018451231, 0.014505326, -0.041093938, 0.02143505, -0.0057994393, -2.3841952E-4, -0.0062199323, -0.02283445, -0.010307124, -0.0044572256, 0.021219758, 0.01519157, -0.022807539, -0.004611967, -0.0023043016, 0.0138325365, -0.006963364, 0.030356228, -0.00155246, 0.016362222, 0.002761798, -0.03955998, -0.030356228, -0.0051905653, -0.02257879, -0.024987375, 0.014828265, 0.0041780183, 0.010313852, -0.018649705, 0.025660163, -0.0026070564, 0.0059508164, -0.0021916095, -0.018340223, 0.037810728, -0.009607423, 0.009580512, 0.02860698, 0.01710229, -0.0042890282, 0.007541962, -0.01891882, -0.0078850845, -0.02073535, -0.004770072, -0.002813939, -9.831126E-4, 0.014034374, -0.010683886, -0.019349406, -0.028956829, -0.03229386, -0.008880812, -0.0012404543, 0.0072728465, -0.014599516, 0.017505964, -0.0013851039, 0.0075217783, 0.009311397, -0.0127157075, 0.009997641, 0.0075756013, 0.024543334, 4.3941516E-4, 0.02401856, -4.797825E-4, -0.030732991, -0.010468593, 0.020694982, 0.016738985, -0.010186022, -0.021313949, -0.013765258, -0.02134086, -0.031190487, 0.019497419, 1.1500483E-4, -0.017061923, -0.0042789364, -0.023318859, 0.0014271531, 0.011679613, -0.007360309, -0.003116694, -0.033262677, 0.004625423, -0.012890632, 0.016160386, 0.028499331, -0.018649705, 0.0050055482, -0.0244626, 0.009405587, -0.010905906, -0.025121933, -0.013502871, 0.0020469597, 0.045588166, 0.0058936295, 0.046018753, 0.005691793, 0.03089446, 0.0073804925, 0.012513871, 0.017828902, -0.01570289, 0.017277215, -0.029360501, 0.012729163, 0.0036431511, 0.02828404, -0.0013851039, 0.021139024, 0.007306486, 0.0049483613, 0.014922455, 0.022094384, -5.1804737E-4, -0.006727888, -0.016120018, 0.0043529435, -0.036734268, 0.01032058, -0.032885917, -0.010603151, 0.034931194, -0.009923634, -4.2806185E-4, -0.024260763, 0.025821634, -0.012836809, -0.0019023102, -0.016860086, 0.016308399, -0.020775717, -0.011948728, -0.021367772, -0.0050761914, -0.0030729626, -0.0045581437, 0.02627913, -0.0017080425, -0.019820357, 0.0032159302, 0.03697647, -0.0251623, -0.036222946, 0.017371407, -0.008699159, -0.0060180956, -0.034527518, -0.0057792556, -0.03210548, -0.015137747, -0.0068624453, -0.007817806, 0.016093107, -0.0028593522, -0.04182055, 0.0196858, -0.01675244, 0.03818749, 0.012661885, 0.05468427, 0.028822271, 0.0053520347, -0.008012914, 0.016268032, -0.015689434, -6.425133E-4, 0.0066572446, 0.012621517, -7.2913483E-4, -0.01258115, -0.013819081, 0.012123654, -0.035361778, -0.039156307, 0.03840278, 0.021381227, 0.026534788, -0.011524872, -0.0023194393, -0.028553154, -6.0256646E-4, -0.0050593717, 0.020856451, 0.01219766, -0.03746088, -0.01614693, -0.0093719475, -0.011942, 0.01184781, 0.013771986, -0.021636887, 0.018703528, -0.014908999, -0.00383826, -0.010044736, -0.008537689, 0.03385473, -0.015675979, 0.024583701, 0.021367772, 0.0035893281, 0.006344398, 0.0070239147, 0.005631242, 0.02914521, -0.018394046, 0.022269309, 0.001438927, -0.0056110583, -0.011000096, 0.039882917, -0.016214209, -0.016254576, -0.021179391, -0.008867356, 0.012190932, 0.011161566, -0.018071106, -0.011693069, -0.02029131, -0.02257879, 0.007360309, 0.0015381633, 0.0035859642, -0.050755184, 0.007905268, -0.011585423, -0.01067043, 0.0037507974, 0.0075756013, -0.004295756, -0.0068624453, 0.020102927, 0.0038584436, 0.010845355, -0.008154199, 0.0050660996, -0.04529214, -0.018582426, -0.0074141324, -0.020802628, 0.0064116768, -0.013704707, 0.018447869, -0.024785537, -0.011235572, -0.008591512, 0.014814809, -0.01245332, -0.012083286, 0.005563963, -0.012951184, 0.005156926, -0.0029417688, 0.019443596, -0.010784804, 0.0107511645, 0.03226695, -0.009573784, 0.021906001, -0.023614885, 0.015110835, 0.0013539874, -0.021354316, -0.014855176, -0.010280212, 0.017048467, 0.01414202, -0.009197023, -0.02860698, 0.003409357, -0.022067472, 0.02707302, -0.0051300144, 0.0063645816, 0.026292585, 0.017209936, 0.022013647, 0.030679168, -0.020506602, -0.026898095, -0.016590971, -0.009768893, -0.017156113, -0.003528777, -0.0078110774, -7.320783E-4, 0.0028929918, -0.012318762, -0.033208854, -0.016886998, -0.0203855, -0.025539061, -0.014195843, 0.02325158, 0.043515977, 0.013926728, -0.008322397, 0.021919457, 0.003999729, 0.02847242, -0.020035649, 0.01200928, 0.0203855, 0.0067884387, 0.02716721, 0.020224031, -0.036653534, -0.017021555, -0.0072122957, 0.010172566, 0.010905906, 0.032616798, -0.013872905, -0.0333165, -0.010394586, -0.0046556983, 0.005496684, 0.020143295, 0.022672981, -0.030571522, 0.020964097, 0.0062670275, 0.020533513, -0.00444377, 0.013206843, 0.011888177, -0.020991009, -0.00549332, -0.021946369, -0.02334577, -0.004245297, -0.021219758, 0.017142657, 0.021475418, 1.9058844E-4, 0.023978192, 0.015568332, 0.001498637, 0.016886998, -0.0011656065, -0.009089376, -0.021165935, -0.016523693, -0.004622059, 0.024233852, -0.044646263, 0.02299592, -0.012971368, 0.019631976, -0.0048238956, 0.00793218, -0.0066168774, 0.04187437, 0.01484172, -0.050432246, -0.0060248235, 0.0042722085, -0.008551145, -0.009324852, -0.01200928, -0.025014287, -0.003770981, -0.005570691, 0.012049647, -0.016967732, -0.013792169, -0.0217849, -0.016954277, -0.011127926, 0.007965819, 0.18041503, -0.010300396, 0.018515147, 0.04787565, 0.001740841, 0.026494421, 0.009203751, 0.012190932, -0.0054092216, 0.003646515, -0.018690072, 0.0050055482, -0.008073465, 0.004003093, 0.012137109, 0.006472228, -0.022632614, -0.02723449, -0.02029131, -0.02047969, -0.00274666, -0.001977999, 7.854809E-4, -0.01875735, 0.008430043, 0.00574898, 0.0049315416, 0.0030258675, 0.032024745, -0.004067008, -0.028176393, -0.015245394, 0.0074141324, 0.014801353, -0.020049104, -0.011255756, -0.01856897, 0.0026121023, 0.005910449, 0.002748342, -0.0041275593, -0.021112112, -0.014989734, -0.011343218, 0.0031402416, 0.019120656, -0.021919457, -0.013805625, -0.008147472, -0.0063242144, -0.041174673, -0.010784804, 0.032562975, 0.01882463, -0.0075621456, -4.1166262E-4, 0.016442958, -0.008793349, -0.011551783, -0.0048810826, -0.002151242, 0.026696257, -0.032778267, 0.0010377767, -3.237796E-4, 0.025485238, -0.019766534, -0.0065159593, 0.015877815, -0.029064475, -0.014101652, -0.015770169, -0.035496335, -0.011787259, -3.3933783E-4, -0.016389133, -0.002146196, 0.032885917, 0.014518782, 0.021139024, -0.015850903, -0.004813804, 0.01665825, -0.018986098, -0.026090749, -0.016738985, 0.01901301, -0.011524872, 0.0016331947, -0.019672344, 6.2359107E-4, -0.016362222, -0.011578695, 0.0059037213, 0.001977999, 0.016093107, 0.023964737, 0.0170081, -0.0055605993, -0.0096343355, -0.018609338, 0.017061923, 0.042789366, -0.011181749, -0.009641063, -0.023884, -0.009143199, 0.012560966, 0.032616798, -0.049840193, 0.006341034, -0.025337225, -0.006149289, -0.012392769, 0.015110835, 0.010387858, 0.005486592, 0.011329763, 0.022457689, -0.02162343, -0.0033134846, -0.022269309, 0.014088197, -0.0068960846, 0.0037238859, -0.034258403, -0.033881642, -0.0071382886, 0.008719343, -0.028445508, 0.01873044, -0.05067445, 0.00492145, -0.002881218, 8.296326E-4, 0.0067514353, 0.030329317, 0.010038008, 0.01175362, 0.010953001, 0.0032697534, -0.008652063, -5.4075394E-4, -0.00299391, 0.01882463, -0.033773996, 0.0029434508, -0.007252663, -0.0018989462, -0.017653977, -0.013899816, 0.0014582697, 0.0046859737, -0.0024119478, 0.040232766, -4.680087E-4, -0.011215389, -0.033235766, -0.013179932, 0.033935465, -0.040878646, 0.024260763, 0.015110835, -0.029925644, -0.025041198, -0.006771619, -0.17266451, 0.024287675, 0.00812056, -0.029199032, 0.007185384, 0.012318762, 0.0042688446, 0.0033471242, -0.013052102, -0.012392769, 0.020937186, 0.022686437, -0.041766725, -0.00837622, 0.0044605895, -0.005991184, -0.018999554, 0.02812257, 0.028041836, 0.0074006766, 0.04599184, 0.0068523535, -0.013859449, -0.008147472, 0.0055505075, 0.013516326, 0.0056547895, 0.014357313, -0.015393407, -0.026144572, -0.04394656, -0.009964001, 0.0018333493, 0.0023698984, -0.014343857, 0.009681431, -0.014639883, -0.011726708, -0.015393407, -0.007541962, 0.03958689, 0.010179294, 0.01847478, 0.012621517, 0.002221885, 0.017788535, 0.029764175, -0.017277215, -0.0059003574, -0.0103811305, -0.013092469, -0.0414707, 0.010138927, -0.014168931, 0.004770072, 0.019403229, -0.012251483, -0.0051266504, 0.013240483, -0.007474683, -0.021542696, -0.020816084, 0.0058431705, 0.0035725082, -0.00898173, -0.021986736, -0.008234935, 0.021206303, -0.017950004, 3.9652488E-4, -0.025754353, 0.016792808, 0.018111473, -0.0057960753, 0.016671706, -0.021475418, -0.034500606, 0.0071786563, 0.0066707004, 0.027382502, -3.7550024E-4, 0.053419426, -0.01554142, -0.0022437505, 0.036330592, -0.008140744, 0.008261846, -0.010495504, 0.02197328, -0.0095872395, 0.013980551, -0.010495504, -0.03746088, -2.491421E-4, 0.001855215, 0.013469231, 0.011114471, -0.0056009665, 0.005735524, -0.016833175, 0.0051872013, -0.014316945, -0.014168931, 0.028956829, 0.017452141, 0.028687714, 0.015218481, 0.016200753, 0.018770806, -0.005574055, -0.0075554177, 0.0037440695, 0.008551145, -0.007353581, -0.019928003, -0.0018417592, 1.7334823E-4, -0.022565335, 0.006341034, -0.0035085934, 0.026615523, -0.0014448139, -0.0020721895, -0.01423621, -0.01423621, -0.02793419, -0.085794024, 8.2332524E-4, 0.015003189, 0.0070979213, -0.029629618, 0.030410051, -0.013327945, 0.029495059, 0.001974635, 0.024516422, -0.004790256, -0.0108588105, 0.026682802, -0.014747529, 0.022000192, 0.008234935, -0.0022807538, -0.011114471, -0.0022622522, 0.030759903, 0.0047633443, -0.001498637, 0.0063847653, -0.022794083, -0.018447869, -0.012850265, -0.027826544, 0.031432692, -0.010939545, 0.013509599, 0.018501692, -0.022713348, -0.00789854, -0.04012512, -0.022686437, -0.024529878, -0.027194122, -0.01971271, 0.019995281, -0.054899562, 0.008927907, -0.0015844175, 0.022807539, -0.013200115, -0.0063645816, -0.006573146, -0.02742287, 0.022430778, -0.0026020105, -0.0137787135, -0.007387221, 0.0023598066, -0.014532237, -0.014088197, 0.029764175, 0.031513426, 0.0191072, 0.00888754, -0.005822987, 0.0020620977, 0.0035052295, -0.015366496, -0.017748168, 0.0033303043, 0.009694886, 0.012164021, -0.01646987, 0.0021176026, 0.024893185, -0.01742523, -0.012379313, 0.023386138, -0.029952556, -0.015205026, -0.02325158, 0.0027079748, -0.019605065, 0.0042755725, 0.013940183, -0.029091386, -0.0019864088, -0.023238124, -7.110536E-4, -0.012264939, 0.011430681, 0.0036902463, 0.017438686, 0.009129743, 0.009257574, -0.028041836, 0.0022891639, 0.02879536, 0.0048171678, -0.019053377, -0.00549332, 0.02535068, 0.018340223, 0.0036229675, 0.0013699661, 0.028230216, 5.4916384E-4, 0.0023244852, -0.07368383, 0.012998279, -0.0052443882, -0.006714432, -0.002642378, -2.7410886E-5, 0.010408042, -0.013751802, 0.0045211404, 0.008584784, -0.0100110965, 0.009573784, -0.018851541, -0.008134016, -0.022067472, 0.0025549154, -0.01032058, 0.01484172, -0.012446593, -0.0035153213, -0.021892546, -0.00609883, 0.022054017, 0.0014641566, -0.01137013, 0.022336587, -0.0032495698, 0.025983103, -0.011343218, -0.020991009, 0.03232077, -0.009223934, -0.009822716, 0.0027802996, 0.0036969744, -0.01996837, -0.026911551, -0.004194838, 0.018178752, 0.011807443, -0.013253938, -0.02952197, -0.0023816722, -0.022336587, -0.008719343, 0.009277757, -0.026386775, -0.0104887765, 0.018972643, 0.007911996, 0.03038314, 0.012372585, -0.0097958045, -0.014572605, 0.018111473, -0.016994644, 0.045211405, 0.015043557, 0.0043193037, -0.012412952, 0.028337862, 0.011666157, 0.014639883, -0.031701807, 0.019187935, 0.015285761, -0.005738888, -0.0011050556, 0.005325123, -0.027880367, -0.009641063, -0.011598879, 0.003363944, 0.024032015, 0.014451503, 0.013731618, -7.896858E-4, 0.016106563, -0.0050627356, 0.01210347, 0.03105593, -0.02665589, -0.02497392, 0.0064184046, 0.0011084195, 0.031325046, -0.008248391, 0.006233388, 0.009412315, 0.015608699, -0.029575795, -0.0068422616, 0.023749443, 0.008436771, 0.007239207, 0.026992286, -0.015918182, 0.0054697725, -0.011121199, 0.013085742, 0.013119381, -0.008356037, -0.029118298, -2.4619864E-4, -0.021327404, -0.008389676, -0.012655157, -0.03883337, 0.011114471, 0.025794722, 0.025202667, 0.0052208407, -0.015218481, 0.002862716, -0.047337417, 0.027718898, -0.0019897728, -0.01430349, -0.009600695, 0.05331178, 0.0065025035, 0.006828806, 0.042251136, -0.01344232, 0.03942542, 0.015877815, 0.016765896, -0.015030101, -8.9649105E-4, 0.0067346157, -0.005029096, 0.005022368, -0.02465098, 0.0123456735, -0.009815988, -0.011343218, 0.01050896, 0.042224225, -2.6154664E-4, 0.06927033, 0.012379313, -0.0048238956, 0.02774581, -0.028095659, -0.012446593, 0.0022975737, 0.018555515, -0.010717525, -0.01197564, 0.002573417, -0.007965819, -0.015474142, -0.029495059, 0.001735795, 0.013072286, 0.002395128, 0.007629425, 0.00585999, -0.014518782, 6.3368294E-4, 0.0037541613, 0.008517506, 0.007367037, -0.015406863, -0.0036095118, 0.013819081, -9.091058E-4, -0.025552517, -0.01656406, -0.003592692, -0.029925644, 0.0054024938, -0.001556665, 0.03958689, 0.0049853646, -2.1634364E-4, -0.010461865, 0.019053377, 0.008234935, -0.008672247, 0.014855176, -0.022363499, -0.0061997483, -0.0047095213, -0.012069831, -0.00719884, -0.023493784, -0.022498056 ], + "id" : "f67a5741-bf52-4326-aeb6-0b7773e143ab", + "metadata" : { + "source" : "movies.csv" + } + }, + "09fe817d-148b-4088-b170-a6ea6cef854d" : { + "text" : ",776182-505026-353486-141052-343668-316029-181808-399055-259316-359940-166426-406997-284053-118-374720-399404-904551-446354-754721-723567-354912\r\n710,GoldenEye,Adventure-Action-Thriller,en,When a powerful satellite system falls into the hands of Alec Trevelyan AKA Agent 006 a former ally-turned-enemy only James Bond can save the world from a dangerous space weapon that -- in one short pulse -- could destroy the earth! As Bond squares off against his former compatriot he also battles Xenia Onatopp an assassin who uses pleasure as her ultimate weapon,22.872,Eon Productions-United Artists,11/16/95,58000000,352194034,130,Released,No limits. No fears. No substitutes.,6.9,3377,Pierce Brosnan-Sean Bean-Izabella Scorupco-Famke Janssen-Joe Don Baker-Judi Dench-Robbie Coltrane-Tch��ky Karyo-Gottfried John-Alan Cumming-Desmond Llewelyn-Samantha Bond-Michael Kitchen-Serena Gordon-Simon Kunz-Pavel Douglas-Olivier Lajous-Billy J. Mitchell-Constantine Gregory-Minnie Driver-Michelle Arthur-Ravil Isyanov-Vladimir Milanovich-Trevor Byfield-Peter Majer-Kate Gayson-Simone Bechtel,cuba-falsely accused-secret identity-computer virus-secret base-secret intelligence service-kgb-satellite-special car-cossack-electromagnetic pulse-time bomb-st. petersburg russia-red army,/z0ljRnNxIO7CRBhLEO0DvLgAFPR.jpg,/5jVWJiPpmk216Q7vjjlwNXXE6ee.jpg,714-36669-36643-709-708-700-698-681-699-682-658-253-646-707-691-657-660-667-668-36670-10764\r\n640,Catch Me If You Can,Drama-Crime,en,A true story about Frank Abagnale Jr. who before his 19th birthday successfully conned millions of dollars worth of checks as a Pan Am pilot doctor and legal prosecutor. An FBI agent makes it his mission to put him behind bars. But Frank not only eludes capture he revels in the pursuit.,68.168,Parkes/MacDonald Productions-Kemp Company-Splendid Pictures,12/16/02,52000000,352114312,141,Released,The true story of a real fake.,7.966,14082,Leonardo DiCaprio-Tom Hanks-Christopher Walken-Martin Sheen-Nathalie Baye-Amy Adams-James Brolin-Jennifer Garner-Chris Ellis-Brian Howe-Steve Eastin-John Finn-Elizabeth Banks-Ellen Pompeo-Guy Thauvette-Kitty Carlisle-Kelly McNair-Sarah Rush-Jasmine Jessica Anthony-Celine du Tertre-Frank John Hughes-Nancy Lenehan-Candice Azzara-Kaitlin Doubleday-Matthew Kimbrough-Joshua Boyd-Jonathan Dankner-Maggie Mellin-Thomas Kopache-Margaret Travolta-Jimmie F. Skaggs-Alex Hyde-White-Lilyan Chauvin-Eugene Fleming-Robert Ruth-Jennifer Manley-James Morrison-Robert Symonds-Jennifer Kan-Robert Curtis Brown-Kelly Hutchinson-Steve Witting-Wendy Worthington-Jane Bodle-J.", + "embedding" : [ -0.0027102244, -0.029475188, -0.02296928, -0.03415944, -0.005680685, 0.030105233, -0.005262937, -0.015175886, -0.0330911, -0.03739185, 0.019613601, 0.04213089, 0.0032170003, 0.002426019, 0.006142947, 0.0076975166, 0.011532578, -0.021490041, 0.013956885, -0.03615915, -0.00557796, -0.004650012, -0.0021914637, 0.005601929, 0.0068722935, -0.0059957076, 0.01683318, -0.01577854, -0.008286472, -0.006060767, 0.008998698, -0.020229949, -0.0058210758, -0.005030094, -0.013011816, -0.0018267905, 0.001308886, -0.03563868, 0.013189873, -0.007608488, 0.0142856045, 0.032269303, -0.012374922, 0.0035303112, 8.6567095E-5, 0.02014777, 0.0074852183, -0.001247251, -4.01269E-4, 0.03196798, 0.019969713, 0.03317328, -0.030762672, -0.031146178, -0.014449964, -0.0018285025, -0.0047630095, -0.001499783, -0.0024893659, -0.015025224, 0.0076564266, -0.013956885, -0.030653099, -0.0027718593, -0.010861442, 8.6160476E-4, -0.00833441, -0.007533157, -0.01794261, -6.523029E-4, 0.014477357, 0.021558525, 0.020544972, 0.012977574, 0.00793036, -0.029201254, -0.018600048, 0.0041124187, 0.0030372317, 0.009457536, 0.018613745, -0.0042014467, -0.015312853, 0.009875284, 0.020271039, 0.0038761515, -0.006862021, 0.026982397, -0.013840463, 0.005540294, 0.0026776947, 0.02925604, 0.0032392573, 0.015764842, -0.017066024, 0.015710056, -0.010628599, 0.02750287, -0.025352497, -0.0290095, -2.956015E-5, -0.013251508, 2.1508018E-5, -0.0022770679, -0.005430721, 0.013080299, -0.0037015192, -0.0071085603, 0.0241061, -3.295756E-4, 0.0034566915, 0.00211442, 0.011799662, -0.0298313, -0.005098577, -0.010464239, 0.01475129, -0.029228648, -0.0032871957, -0.017271474, 0.0037528817, 0.019627297, 0.003612491, -0.03237888, 0.037830144, 0.019764263, 0.007978298, -0.014477357, 0.010745021, -0.0015776827, 0.025160743, 0.012326984, 0.015970292, 0.012957029, -0.028461635, 0.047226045, -0.01503892, 0.004232264, -0.021544827, -0.032680202, 0.036350906, 0.032680202, -0.0273796, -0.0099848565, -0.017833035, 0.012046202, -0.0039754524, -0.013792525, 0.020284737, 0.012333832, 0.018421993, 0.029639548, 0.0027068001, 0.0028369182, 0.014093851, 0.008875428, -0.030023053, 0.010128671, -0.005358814, -0.015052617, -0.0054170243, 6.244816E-4, -0.014312997, -0.019325972, 0.0013636725, 0.04829438, -0.0024140342, -0.021503737, -0.010984712, -0.0011710634, 0.004653436, 0.019435544, -0.003210152, 0.019764263, 0.010272486, 0.035282567, 0.010354666, -0.015723752, -0.020503882, -0.027228937, 0.004629467, 0.004632891, 0.036843985, 0.026790645, 0.0033659514, 0.029064288, 0.010943622, -0.026242778, 0.012237955, -0.0048040994, 0.0014775259, 0.01590181, 0.0022616591, -0.0045815287, -0.6390308, -0.018750712, -0.0035577044, -0.009779407, 0.02892732, 0.012614613, 0.0029892935, 0.018600048, -0.02909168, -0.0018850012, -0.027064577, 0.008615192, 0.0077659995, -0.007430432, -0.03158447, -0.012642006, -0.014189728, -0.018134363, 0.017476924, 0.025804486, -0.03558389, 0.02958476, 0.009978008, 0.015449819, 0.0322967, -0.0046602846, -0.022257054, -0.030762672, 0.017956305, 0.0021195563, 0.0071291053, 0.018873982, 0.016326405, -0.00870422, 0.03254324, -0.012874849, -0.005297179, 0.029858693, 0.023763685, 0.03747403, -0.011964022, -0.0029447793, 0.023626719, -0.0151347965, -0.033008922, 0.01491565, 0.020627152, 0.0015271762, -0.013991126, -0.013251508, 0.0040576323, -0.006324427, 6.407463E-4, -0.008361803, -0.013778828, 0.008656282, 0.007533157, -0.028489029, 0.011874994, 0.005601929, -0.003487509, 0.03125575, 6.180613E-4, 0.0039377864, -0.015175886, 0.014176031, -0.01728517, 0.0033745118, 0.0071291053, -0.01802479, 0.021010658, 0.0021486618, -0.010929925, -0.011265493, 0.0062182783, 0.015258066, 0.042843115, 0.00283007, -0.018723318, 0.015490909, -0.0051430915, -0.012203714, -0.025420979, 0.01156682, 0.036789197, -0.013902098, -0.036843985, 0.007115409, 0.03374854, 0.0032426815, 0.016244225, 0.03429641, 0.0041398117, 0.012950181, -0.023914348, -0.008170051, -0.0050848806, -0.0060984325, 0.026023632, -0.050211914, -0.007183892, -0.0013054617, 0.03424162, -0.010957318, -0.0015151917, 0.009882132, -0.005985435, 0.0018832892, 0.03317328, -0.018216543, -0.006786689, -0.012669399, -0.014518447, -0.016408585, -0.023284303, -0.022736436, 0.018545263, 0.019010948, 0.0053485413, 0.0063894866, 0.0036022186, -3.4370026E-4, -0.004314444, -0.018038485, -0.0037665784, 0.037857536, 0.0037700024, -0.015929202, -0.0040781773, -0.0041809017, 8.6117676E-4, 0.008601495, 0.0066017844, -0.002621196, 0.0029430673, -0.009450687, 0.010916228, -0.004667133, 0.003715216, -0.0064785145, -0.024092404, -0.0142993005, -0.024790933, -0.00143558, -0.0068996865, -0.0028334942, -0.024215674, 0.0030269593, -0.004331565, -0.015477213, -0.012635158, 0.01662773, 0.009313721, 0.013203569, -0.003804244, -0.01152573, -0.015970292, -0.021120232, 8.758365E-5, -0.011101133, -0.00899185, 0.003845334, -0.006382638, -0.0076769716, 0.039117627, -6.839764E-4, -0.0062764892, 0.01606617, -0.0179837, -0.029612154, 0.024544394, -0.0010649144, -0.015052617, 0.016614035, -0.004650012, 0.016326405, -0.018887678, 0.018312419, 0.0151347965, -0.008348107, 0.0068722935, 0.006399759, -0.030625707, -0.008882277, 0.031146178, 0.028050736, 0.020558668, 0.0048006754, -0.016120955, 0.0013217266, -0.008848035, -0.006570967, -0.006067615, 0.012374922, 0.0015793948, 0.025859272, 0.014901954, -0.0040644803, 0.002831782, 0.017627586, 0.04771912, 0.019380758, -0.0052321195, -0.014408874, 0.015847022, -0.023380179, 0.011121678, -0.030653099, 0.011333977, -0.009738317, 0.021175018, 0.011012105, -0.020312129, 0.010327273, 0.013600772, 0.012354377, -0.02169549, 0.005297179, -0.011053195, -0.010142368, -0.010094429, 9.853026E-4, 0.023613023, 0.0024979264, -0.015792236, 0.012573523, 0.020298433, -0.008834338, 0.0029122499, -0.008793248, -0.0062011573, -0.007731758, 0.013319991, 0.009190451, 0.007389342, -0.015833326, 0.038049288, -0.0090945745, 0.037528817, -0.015381336, -0.005879286, 0.002304461, 0.017970003, -0.005197878, 3.2187122E-4, -0.005057487, 0.01483347, 0.019819051, -0.018202845, 0.045500267, -0.02488681, 0.029968267, -0.01679209, 0.011580517, 0.020120377, -0.0010623463, 0.005437569, 0.01144355, 0.02721524, 0.03413205, 0.038624547, -0.015340246, 0.019065734, 0.006485363, 0.006002556, 0.0039377864, -0.01666882, 0.018189149, 0.0071017123, -0.01099156, -0.0035748251, -0.023037763, -0.009621896, 0.0067490237, 0.007916663, -0.020681938, 0.0015639861, 0.0070880153, 0.020462792, 0.006543574, -0.021640705, -0.029310828, 0.025284013, 0.023311695, -0.008587798, -0.03457034, -0.0151074035, -0.016244225, -0.03457034, -0.004831493, -0.010327273, 0.026996095, -0.032269303, -0.011292887, -0.015682662, -0.023722595, 0.0075947917, -0.0074441284, 0.02185985, 0.010306728, -0.0041329637, -0.007991995, 0.0091219675, -0.015244369, 0.031228358, -0.008396045, 0.015545696, -0.0081974445, 0.0015716904, -0.018682228, 0.006365517, 0.013059754, -0.046979506, 0.008820642, -0.011512033, -0.0066189053, -0.021750277, 0.0039617554, 0.0019945744, -0.018983554, 0.002638317, -0.034433372, -0.019819051, 0.01005334, 0.062456716, 0.019010948, 0.02276383, 0.0029619003, 0.0019363636, 0.00287116, -0.021955727, -0.009368507, -0.0075263083, -0.0053485413, 0.012018809, 0.0012095852, 0.003992573, 0.012498192, 0.011423005, -0.0026674222, 0.009019243, -0.004612346, 0.0061532194, -0.015093707, -0.02222966, 0.0050609116, 0.016299011, 0.028598601, 0.004838341, -0.013032361, 0.022462504, 0.008382348, 0.00727292, 0.020257343, 0.0034053293, 0.002071618, 0.005680685, -0.0027787075, -0.002326718, -0.011388763, 0.016449675, 0.0046397396, 0.019394454, -0.006800386, 0.013258356, -0.01197087, 0.017175596, -0.004653436, 0.013244659, -0.017504316, -0.011703786, 0.020996962, 0.030296987, -0.02950258, 0.023845864, 3.5932302E-4, -0.016435979, -0.01581963, 0.00866313, 0.0043795034, -0.0030783217, -0.017887823, -0.016340101, 0.013765131, 0.005636171, -0.025092259, 0.024982687, -0.0031399566, 0.0010152641, -0.019380758, -0.004495925, -0.010690234, -0.00396518, 0.008402893, 0.002619484, -0.0175728, -0.009998553, -0.011922932, 0.02317473, 0.0010272487, 0.03180362, -0.0032272728, 0.006605209, -0.0034721002, -0.035611287, -0.026133206, 0.0022770679, -0.036953557, -0.011703786, 0.012142079, 0.002448276, 0.008567253, -0.003526887, 0.0073208585, -0.0014407162, 0.0029978538, -3.0047022E-4, -0.009669834, 0.037172705, 0.016216831, 0.005745744, 0.03221452, 0.019394454, 0.016942754, -0.0037049435, -0.0017857006, -0.013785676, -0.026311262, -0.015285459, 4.4086087E-4, -0.0025886665, 0.01703863, -0.019695781, -0.021257197, -0.027365904, -0.029694334, 0.01728517, -0.009758862, 0.010121823, 0.0020887388, 0.03158447, 0.010429998, -0.013299446, 0.0021794792, -0.011779117, -0.0037289124, 0.017723463, 0.016846877, 0.004471956, 0.026694767, -0.014723897, -0.020243647, 0.004694526, 0.021599615, -0.004872583, 0.014888257, -0.0151211, -0.023188425, -0.012840608, -0.009306872, 0.017257776, 0.00809472, -0.007985146, 0.02309255, -0.020818906, 0.010032795, 0.019586207, 0.012244804, -0.012354377, -0.019449241, 0.004571256, 4.609778E-4, 0.0011539427, 0.0355565, -0.002405474, 0.0049650352, -0.030954426, -0.020010803, -0.0042802026, -0.022572076, -0.029119074, 0.010334121, 0.038405403, 0.015340246, 0.018791802, -2.0962293E-4, 0.026982397, 0.015203279, 0.017928913, 0.012833759, -0.023380179, -0.0108272005, -0.015463516, 0.0075810947, 0.030296987, 8.693091E-4, 0.018175453, 0.006365517, -0.0034549795, 0.010429998, 0.006303882, 0.0045746807, 0.004584953, -0.013093996, -0.009731469, -0.0026109235, -0.02700979, 0.0054889317, -0.033529393, -0.012991271, 0.021380467, -0.0067490237, -0.003252954, -0.004293899, 0.035940006, -0.0048006754, 4.691102E-4, -0.012717338, 0.0012344104, -0.019860141, -0.011292887, -0.015874416, -0.010957318, -0.0062662167, -0.02406501, 0.013991126, -0.010005401, -0.011539427, 0.009669834, 0.019079432, -0.026133206, 0.0036501568, 0.010238244, -0.013847311, -0.018230239, -0.03155708, -0.015847022, -0.015299156, -0.010881987, -0.0077249096, 0.015340246, 0.011738027, -0.02974912, -0.04262397, 0.030324379, 0.00833441, 0.037994504, 0.0059957076, 0.057032842, 0.021627007, 0.022257054, -0.034762092, -0.005321148, -0.02169549, -0.004571256, 0.02301037, 0.03796711, -0.014723897, 0.002556137, -0.021161322, -0.003335134, -0.026859127, -0.03125575, 0.027064577, 0.002388353, 0.025256619, -0.027187847, -0.009772559, -0.03273499, 0.0077796965, -0.0040918738, -2.197884E-4, 0.0034156018, -0.030132627, -0.010875138, 0.018326115, -0.007909815, 0.02692761, -0.014943044, -0.025859272, 0.02398283, -0.023202123, 0.005492356, -0.020202557, -0.004670557, 0.039857246, -0.030927032, -0.0074030384, -0.0019141067, 0.019586207, 0.0014467085, -6.9638895E-4, 0.029119074, 0.029721728, -0.015203279, 0.008505618, 0.013388474, 0.007711213, 0.013943188, 0.038186256, -0.032187123, -0.018750712, 0.0044651073, -0.011429853, 0.017476924, 0.013641862, -0.008738462, -0.006444273, -0.01450475, -0.01581963, 0.0059032557, -0.011272342, 0.012676248, -0.039008055, -0.003968604, -0.020558668, -0.00367755, 0.014367784, 0.0068585966, 0.008163203, 0.013093996, 0.025722306, -0.0033454064, -0.011909236, -0.008279623, -0.0061806124, -0.02917386, -0.016257921, -0.010251941, 0.0047253435, 0.013361081, -0.025284013, 0.0058108033, -0.018189149, -0.009820497, 3.1095673E-4, 0.040870797, -0.014491054, 0.012826911, 0.025845576, -0.013737738, -0.011512033, -0.003698095, 0.014860864, 0.0021640705, 0.008238534, 0.0022993248, 0.016299011, 0.018545263, -0.025448373, 0.015805932, -0.0042356886, -0.015230673, -0.010655993, 0.007416735, 0.016751, 0.025612732, -0.0056087775, -0.027886376, -0.0059443456, 6.7327585E-4, 0.028461635, -0.0030731854, 0.01364871, 0.022914493, 0.011450398, 0.04229525, 0.018668532, -0.018148059, -0.013367929, -0.021435255, -0.007293465, -0.027270027, -0.0051088496, 0.009847891, 0.0034310105, 0.0107998075, -0.011327128, -0.03380333, -0.020859996, -0.02406501, -0.01602508, -0.012203714, 0.010340969, 0.04771912, 0.03604958, 0.014326694, 0.02422937, 0.005721775, -5.816795E-4, -0.016805787, -0.0063312757, 0.02807813, -0.0023934892, 0.023078853, 0.014806077, -0.037857536, -0.009423294, 0.004273354, -7.905534E-4, -0.012347529, 0.023599325, -0.012895394, -0.014408874, -0.010258789, -0.0015793948, 0.010464239, -0.005365662, 0.010067036, -0.05643019, -0.0050163977, 0.012498192, 0.028817749, -0.01691536, 0.0013225826, 0.023996528, -0.025366193, -0.007211285, -0.024201978, -0.021229805, 0.00829332, -0.023393875, 0.01994232, 0.019394454, 0.0055505666, 0.03205016, 0.019189004, -0.012244804, 0.009306872, -0.0133747775, -0.003211864, 0.010395756, -0.0037220642, 0.012320135, 0.026078418, -0.02892732, 0.015216976, -0.040350325, 0.008772703, -0.008697372, -0.0011333977, -0.017134506, 0.029283434, 0.010060188, -0.04569202, -0.006166916, -0.008341258, 0.011512033, -0.012231107, -0.0036193393, -0.020640848, -0.009436991, 7.036653E-4, 9.839116E-5, -0.01765498, -0.02402392, 0.010032795, -0.012114685, -0.0026314685, 0.009779407, 0.17268734, -0.0021418133, 0.0070024114, 0.04478804, -0.013272053, -1.6866674E-5, 0.03396769, 0.021298287, -0.0052903304, 0.027475476, -0.009526019, 0.0049513383, 0.011450398, -0.0031468049, 0.010073885, -0.0025475766, -0.0142719075, -0.014203425, 0.005557415, -0.019736871, -0.015326549, -0.0065196045, 5.128218E-5, -0.019599903, 0.0024962141, -0.003273499, -0.015573089, 0.00751946, 0.03517299, 0.0052321195, -0.011601062, -0.014888257, 0.002217145, 0.021339377, -0.01229959, 0.00342245, -0.0032478177, 6.180613E-4, 0.0125666745, -0.0069989874, -0.01695645, -0.001732626, -0.008546708, -0.012758428, 0.002889993, 0.023558235, -0.02892732, -0.0056293225, -0.025818182, 0.0017565951, -0.051061105, -0.0075263083, 0.012868001, 0.010491633, -0.022503594, -0.005478659, 0.011806511, -0.010724476, -0.010758718, -0.009567109, -6.0051243E-4, 0.040788617, -0.033940293, 0.009498626, -0.011601062, 0.037583604, -0.019408152, -0.009628744, 0.026393441, -0.038487583, -0.0015965155, -0.0107998075, -0.007183892, -0.005855317, -0.013600772, -0.0099643115, 0.006786689, 0.01107374, 0.006105281, 0.010354666, -0.01483347, -0.0099643115, 0.003314589, 0.0018113818, -0.02402392, -0.024612878, 0.015436123, -0.02443482, -0.0035200387, -0.0010683385, -0.009806801, -0.038158864, -0.032844562, -0.0014492766, -0.01749062, 0.0013183024, 0.013046058, 0.008320713, -0.015545696, -0.011450398, -0.043664914, 0.026776947, 0.018682228, 0.0023695203, -0.009402749, -0.017997395, -0.010594358, 0.011012105, 0.037035737, -0.01720299, -0.017463226, -0.026859127, -9.5705333E-4, -0.021531131, -0.027270027, 0.031858403, 0.015888112, -0.008902822, 0.037857536, -0.021969425, -0.004513046, -0.01720299, 0.009272631, -0.0044411384, -0.0031964553, -0.020627152, -0.03706313, 5.050639E-4, -0.0010495057, -0.049335327, 0.026489317, -0.01610726, 0.020449096, -0.0019723175, -0.0038110923, -0.0026896794, 0.040049, 0.007368797, 0.0033077407, -0.012251652, 0.028625995, -0.03506342, 0.022667954, 0.0054683867, 0.023613023, -0.028297275, -0.008060478, 0.0022736436, -0.007937208, -0.018969858, -0.0065333014, -0.009758862, 0.012347529, 0.012977574, 0.024338944, -0.008882277, -0.01491565, -0.021791367, -0.01998341, 0.040733833, -0.046760358, 0.031529684, 0.029612154, -0.01765498, -0.017928913, -0.0020596336, -0.17597453, 0.016052471, -9.972872E-4, -0.04645903, 0.020051893, 0.017723463, 0.020079287, 0.0116695445, 0.0019312274, -0.016531855, 0.01577854, 0.010703931, -0.042021316, -0.017093416, 0.0076975166, 0.011101133, -0.038542368, 0.022284446, 0.03133793, -5.49578E-4, 0.035940006, -0.019490331, -0.011135375, -0.0061737644, 0.015888112, -0.0024825176, 0.010299879, -0.010457391, -0.002283916, -7.9740176E-4, -0.019709477, -0.017956305, 0.023024065, 0.010313576, -0.009621896, 0.0015057753, -0.0224762, -0.019531421, -0.014655414, -0.0013576803, 0.02958476, 0.013087148, 0.018709622, 0.012292742, 0.019640993, 0.0030047023, 0.029201254, -0.016490765, 0.013662407, -0.00853986, -0.0075947917, -0.04336359, 0.008081023, -0.010471088, 0.0073619485, 0.002977309, 0.0026674222, 0.009368507, 0.012059899, 0.01192978, -0.042350035, -0.012628309, 0.0014398602, -0.018558959, 0.0015828189, -0.014682807, -0.017709766, 0.0070674703, -0.033693753, 0.02276383, -0.02692761, 0.0053348443, 0.015929202, 0.0058484687, 0.0048280684, 0.0041089947, -0.041363876, -0.010546419, -0.013587075, 0.019052038, -0.024503304, 0.03413205, 0.011025802, 0.021202412, 0.020449096, -0.037200097, 0.027146757, -0.009573957, 0.018641138, -0.010162913, 0.0016658548, -0.011286038, -0.024653967, -0.0033539669, -9.818785E-4, 0.0064305766, 0.012272197, 0.008505618, -9.4335666E-4, -0.012402315, -0.0042562336, -0.011066892, -6.8954064E-4, 0.015874416, 0.025379889, 0.0044445624, 0.007731758, 0.021407861, 0.01364871, 0.0031827586, -0.013847311, 0.002852327, 0.012820063, 0.018791802, -0.011553123, 0.0026657102, -0.008307017, -0.03196798, -0.0037015192, 0.009662986, 0.045828987, -0.013470653, -0.0074441284, -0.0024859416, -0.008608343, 0.0071428022, -0.0960409, -2.026676E-4, 0.021120232, 0.029283434, -0.013135086, 0.042432215, 0.014984134, 0.022243356, -0.020229949, 0.013046058, 0.002405474, -0.028269881, 0.0021520858, -0.012594068, 0.008491922, -0.006591512, -0.009813649, -0.011758572, 0.0038693033, 0.03007784, 0.008889125, 0.0015571377, -0.0045952257, -0.01740844, -0.015805932, 0.011546275, -0.03498124, 0.019682083, 0.013840463, 0.0035885219, 0.027612442, -0.015874416, 0.010532723, -0.041007765, -0.03604958, -0.017586496, -0.013785676, -0.005656716, 0.004369231, -0.036843985, 0.001078611, 0.016682517, 0.00498558, -0.025927756, 0.0069647455, -0.004855462, -0.0343238, 0.022736436, -0.01495674, -0.02390065, -0.02991348, -0.023695203, -0.023339089, -0.020668242, 0.010251941, 0.039117627, 0.015751146, -0.0033043164, -0.00801254, -0.008937063, -0.0040610563, -0.0091014225, -0.015066314, 0.0018661683, 0.0076838196, 0.025462069, -0.020873692, 0.009820497, 0.015189583, -0.027187847, -0.025722306, 0.024256764, -0.041391272, -0.01590181, -0.02218857, -0.026461925, -0.011210707, -0.028105522, 0.03706313, -0.017230384, -0.0053348443, -0.023955438, 0.010087581, -0.010724476, 0.0030149748, 0.031283144, 0.018572655, 0.025311407, -0.0020219677, -0.037610997, -0.003951483, 0.020257343, -0.0134295635, -0.0021315408, -0.019106824, 0.028598601, 0.009409597, 0.016299011, 2.6665663E-4, -0.018819194, -0.017887823, 0.008443983, -0.0756055, 0.039555922, -0.022900796, -0.011224403, -0.01217632, -0.012963878, 8.282192E-4, -0.011416157, 0.011375067, 0.015312853, -0.006303882, 0.0061771884, 0.0024328672, -0.009491777, -0.0017257776, 0.018586352, 0.018709622, 0.006550422, 0.0034532675, 0.018600048, -0.032104943, 0.026872825, 0.020846298, -1.2680101E-4, -0.005807379, 0.020736726, 0.0015990837, 0.003824789, -0.025475767, -0.019271184, 0.012121534, -0.011765421, -0.019230094, 0.005540294, -0.014477357, -0.02958476, -0.004790403, -0.009875284, 0.020134073, 0.020175163, -0.002891705, -0.020791512, -1.0791461E-4, 0.0045609837, -0.009361659, 0.019339668, -0.016559247, 0.004050784, 0.0099369185, 0.020736726, 0.0142993005, -0.002258235, 0.0030355197, -6.647155E-4, 0.012251652, -0.017271474, 0.055964503, 0.018271329, -0.0011659272, -0.028215095, 0.025174439, -0.0021863275, 0.007875573, -0.036104366, 0.0200245, 0.003591946, -0.0032854835, -0.0133747775, 0.0054170243, -0.017750856, -0.0028780082, 0.0016581505, 0.01654555, 0.028954715, 0.020558668, -0.002893417, 0.0068996865, 8.342115E-4, 0.008861732, -0.0015999398, 0.030379167, -0.016819485, -0.023845864, 0.0034087533, 0.0040918738, 0.0298313, 8.466241E-4, -0.0043589585, 0.004355534, 0.012614613, 0.002811237, 0.012813214, 0.029776514, 0.011080588, 0.00829332, 0.005718351, -0.019408152, -0.0066017844, -4.5584157E-4, 0.036761805, 0.012820063, -0.0048075235, -0.0022496744, -0.020654546, -0.020901086, 0.020503882, -0.032351483, -0.044075813, 0.017353654, -5.958042E-4, 0.02488681, 0.015723752, -0.0058861347, 0.0074441284, -0.042021316, 0.008717917, -0.010142368, -0.030762672, -0.014518447, 0.042240463, 0.01458693, 0.002537304, 0.025023777, -0.017970003, 0.05949824, 0.0023078853, 0.028708175, -0.017791945, -0.002848903, -0.01786043, -0.0024174585, -0.0042596576, -0.009601351, -0.0021264045, -0.02309255, 0.00866313, 0.0066599953, 0.020695636, -0.017970003, 0.07538635, 0.028489029, 5.8039546E-4, -0.009286327, -0.024790933, -0.0012078732, 0.011614758, 0.020449096, -0.02218857, -0.025722306, -0.011964022, 0.0041363877, 0.020627152, -0.031776223, 0.004629467, 0.0019997107, -0.0010109838, 0.01662773, -0.030324379, -0.015052617, 0.007793393, -0.0053930553, 0.02181876, -3.6852545E-4, -0.019490331, 0.0016127804, 0.025284013, -0.016394889, -0.0046774056, -0.027489174, 0.010258789, -0.028050736, 0.0010486497, -0.0058621657, 0.022037907, -0.015764842, -0.002999566, -0.01590181, 0.025777092, 0.018695924, -0.0063073067, 0.0035440077, -0.026407138, -0.025379889, 0.02713306, 0.0029276586, -0.00853986, -0.022941886, -0.015833326 ], + "id" : "09fe817d-148b-4088-b170-a6ea6cef854d", + "metadata" : { + "source" : "movies.csv" + } + }, + "048cfdb8-a84f-4eaa-a2b3-4d0894d72d2b" : { + "text" : "Wilson-Michael Herne-Julian Ferro-Ross Donnelly,based on novel or book-forgiveness-poison-spy-mi6-family-british secret service-parents-global threat-nanobots,/iUgygt3fscRoKWCV1d0C7FbM9TP.jpg,/r2GAjd4rNOHJh6i6Y0FntmYuPQW.jpg,370712-94605-438631-512195-566525-580489-550988-524434-624860-617653-206647-497698-36557-565770-476669-522402-646380-634649-414906-10764-425909\r\n118340,Guardians of the Galaxy,Action-Science Fiction-Adventure,en,Light years from Earth 26 years after being abducted Peter Quill finds himself the prime target of a manhunt after discovering an orb wanted by Ronan the Accuser.,226.317,Marvel Studios,7/30/14,170000000,772776600,121,Released,All heroes start somewhere.,7.904,25891,Chris Pratt-Zoe Salda��a-Dave Bautista-Vin Diesel-Bradley Cooper-Lee Pace-Michael Rooker-Karen Gillan-Djimon Hounsou-John C. Reilly-Glenn Close-Benicio del Toro-Laura Haddock-Sean Gunn-Peter Serafinowicz-Christopher Fairbank-Krystian Godlewski-Wyatt Oleff-Gregg Henry-Janis Ahern-Solomon Mousley-Lindsay Morton-Robert Firth-Melia Kreiling-Tom Proctor-Nick Holmes-Max Wrottesley-Stan Lee-Nicole Alexandra Shipley-Sharif Atkins-Brendan Fehr-Tomas Arana-Mikaela Hoover-Emmett Scanlan-Dominic Grant-Spencer Wilding-Alison Lintott-Alexis Rodney-Nathan Fillion-Keeley Forsyth-Frank Gilhooley-Alexis Denisof-Enzo Cilenti-Richard Katz-Ene Frost-Ronan Summers-Ophelia Lovibond-Laura Ortiz-Marama Corlett-Rosie Jones-Abidemi Sobande-Alex Rose-Ekaterina Zalitko-Emily Redding-Stephen Blackehart-Jennifer Moylan-Taylor-Bruce Mackinnon-Ralph Ineson-Rob Zombie-Naomi Ryan-John Brotherton-Graham Shiels-James Gunn-Douglas Robson-Rachel Cullen-Isabella Poynton-Imogen Poynton-David Yarovesky-Miriam Lucia-Josh Brolin-Lloyd Kaufman-Tyler Bates-Seth Green-Jozef Aoki,spacecraft-based on comic-space-orphan-adventurer-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu),/r7vmZjiyZw9rpJMQJdXpjgiCOk9.jpg,/uLtVbjvS1O7gXL8lUOwsFOH4man.jpg,283995-100402-99861-76338-271110-102899-24428-1726-10195-1771-284052-68721-10138-127585-315635-284053-293660-284054-299536-1724-177572\r\n414906,The Batman,Crime-Mystery-Thriller,en,In his second year of fighting crime Batman uncovers corruption in Gotham City that connects to his own family while facing a serial killer known as the Riddler.,165.673,6th & Idaho-Dylan Clark Productions-DC Films-Warner Bros.", + "embedding" : [ 0.017073285, -0.034200557, -0.02880189, -0.039032366, -0.02289035, 0.028208036, 0.0016913012, -0.012383193, -0.028423984, -0.02544122, 0.033768665, 0.021810615, 0.013064775, 0.0011893939, 0.006458156, 0.01989409, 0.018503932, -0.014441435, 0.0020008811, -0.030205544, 0.00516585, 0.0072004725, -0.014886825, 0.010115753, 0.0011531216, 0.0036845903, 0.030691424, -0.015399698, -0.003961272, -0.015507672, 0.016249988, -0.010648872, 0.008617623, -0.019327229, -0.017046291, 0.0111414995, 0.010810832, -0.015885578, 0.033363763, -0.0029760154, 0.016276982, 0.009285708, -0.010959295, -0.0067145927, -0.013982548, -0.0025221899, 0.019394713, -0.014454932, -0.0076053725, 0.0041907155, 0.023754137, 0.04102987, -0.017046291, -0.02807307, -0.008718847, -0.011188738, -0.006279325, 0.015143262, 0.008111497, -0.0014002793, -0.0015639265, -0.008880808, -0.029989596, -7.191194E-4, -0.0194487, -0.010041521, -0.0026892112, -0.010277713, -0.014535911, 0.006697722, 0.04038203, 0.019705135, 0.014616892, -0.0063839243, 0.022552934, -0.033606704, -0.021000816, 0.00476095, -0.022741886, -0.0062995697, 0.008037266, -0.0014061842, -0.005510015, 0.010891811, 0.016074533, 0.009555642, -0.0194487, 0.0202585, -0.027479216, 0.008793079, 0.008239716, 0.027857123, 0.004571996, -0.0032763162, 0.0066875992, 0.03325579, -0.027047323, 0.024280507, -0.0151297655, -0.033525724, 0.01247767, -0.014319965, -0.015399698, -0.015021792, -0.0059452825, -0.004845304, -0.004075994, 7.4400386E-4, 0.019259745, 2.564367E-4, 0.002523877, 0.007882054, 0.010763593, -0.03706185, -3.4437593E-4, -0.013982548, 0.017775113, -0.0251173, -0.008421921, -0.011931055, 0.025535697, 0.022431463, 0.0074434127, -0.033525724, 0.02953071, 0.014994798, -0.006458156, -0.012200988, 0.0033353642, 0.0044943905, 0.039302297, -0.010972791, 0.013861079, -0.0011742101, -0.0247124, 0.044700965, -0.03147423, 0.010561143, -0.027411733, -0.022431463, 0.018247496, 0.033984613, -0.015804598, -0.013267225, -0.025549194, -0.0019654522, 0.0056179883, 0.0018929078, 0.022458456, -0.0038128088, 0.032230046, 0.033147816, 0.018436449, 0.0077065974, 0.0043965396, -0.011033527, -0.026547946, 0.0052232104, 0.001474511, -0.028127057, 0.001636471, 0.001071298, -5.862615E-4, -0.018220503, 0.002847797, 0.01320649, 0.013503416, -0.0087593375, -0.0010696109, 0.0045686224, -0.005594369, 0.02297133, -0.02710131, 0.016371459, -5.276354E-4, 0.0105139045, 0.004848678, -0.016169008, -0.021729635, -0.008685106, 0.0033707928, 0.018328475, 0.033228796, 0.032230046, -0.0050949925, 0.0071802274, 0.03422755, -0.02450995, 0.026480462, -0.017248742, -0.006161229, 0.011532903, -0.0032189554, -0.004966774, -0.64049786, -0.012160498, -2.7140958E-4, -0.010297958, -8.6125615E-4, 0.022782376, 0.010709606, 1.1145296E-4, -0.039032366, -0.012221233, -0.026264517, 0.015804598, 0.013010789, -0.019826606, -0.02212104, -0.006701096, -0.0041940897, -0.013786847, 0.02199957, -0.001010563, -0.034713432, 0.022917343, 0.0094611645, -0.020501439, 0.0087053515, 0.005830561, 0.0017149204, -0.02568416, 1.2969454E-4, -0.0048992904, -0.02191859, 0.015696626, 0.032203052, 0.02920679, 0.03503735, 0.0074231676, -0.0072004725, 0.04974872, 0.03225704, 0.018355468, -0.033147816, 0.0074569094, 0.0063738017, 0.007612121, -0.030637437, 0.019435203, 0.017869588, -0.012929808, 0.0042716954, 0.002464829, -0.009501655, 0.0015335589, 0.0067078443, -0.0063872985, -0.009292456, 0.010399183, 0.014279475, -0.030259531, 0.009602879, 0.016371459, -0.011485665, 0.027884116, 0.008948291, 0.0027853749, 0.0149273155, 0.024482956, -0.006923791, 0.002041371, 0.0073421877, -0.02839699, 0.020366473, 0.0037082096, -0.016965313, -0.014441435, 0.011890565, 0.017154265, 0.045645732, 0.010493659, 0.013672125, 0.031933118, 0.0037959379, -0.0014761981, -0.016371459, 0.011809585, 0.03779067, 0.0028191167, -0.03711584, 0.014360455, 0.010918804, -0.011526154, 0.011553148, 0.009353192, 0.0027938103, 0.002260692, -0.008421921, -0.0010299645, -0.0070182676, 0.0036913387, 0.028936857, -0.055876207, -0.009852568, -0.007753836, 0.02791111, -0.016384955, 0.020137029, 0.008502901, -0.001242537, -0.009420674, 0.011114506, -0.021689147, -0.008158736, 0.008725596, -0.0020717385, 0.018072039, -0.0063704276, -0.025792133, 0.004845304, 0.018247496, -0.009420674, -0.0012695304, -0.0012821835, 0.010547646, -0.008901053, -0.0037419512, 0.016034042, 0.028585944, -0.0063096923, -0.017275736, 0.002626789, 0.0086311195, -0.0050443797, 0.015386201, 0.025508704, -0.015386201, 0.0095353965, 0.01697881, 0.014940812, -0.0131727485, 0.004322308, 0.0025964216, -0.028693916, 0.004241328, -0.014063529, 0.0032645066, -0.012835331, -0.013780098, -0.02191859, -0.012450676, -0.010068514, -0.0107163545, -0.009670363, 0.017329723, 0.009299205, 0.0018810981, 0.00826671, -1.4406111E-5, -0.015669633, -0.028909864, 0.010419428, -0.016344465, 0.003897163, 0.02406456, 0.008975284, -0.042244572, 0.02293084, -0.008138491, 8.8571885E-4, 0.018166516, 0.016479433, -0.020757876, 0.010270964, -0.022053557, -0.015777605, 0.0070655057, -0.0018844723, 0.008934794, -0.018328475, 0.032068085, 0.0018676015, -0.007551386, -0.007045261, -0.0019485815, -0.022512443, -0.005952031, 0.026143046, 0.03290488, 0.021797119, 0.0018945949, 3.983626E-4, 0.011850075, -0.025630172, -0.0202585, -0.0081317425, -0.0056483555, -0.011114506, 0.014036535, 0.011087513, 4.7870995E-5, 0.0029338382, 0.011755598, 0.028181044, 0.030367503, 0.0210683, -0.011944551, 0.001393531, -0.024213023, -0.0032645066, -0.02446946, 0.0062725767, -0.017680636, 0.036629956, -0.015008295, -0.012740855, -0.010594885, 0.01170836, 0.002424339, -0.025252266, 0.011208983, -0.031150311, -0.0037520737, 0.005979024, 0.002022813, 0.012039028, 0.013807092, -0.034200557, 0.014346958, 0.015453685, -0.010284461, 0.0049060388, -0.024280507, 0.0022455081, 0.0103317, -0.0058238124, -0.0011927681, -0.0138745755, -0.0065053944, 0.018126026, -0.007072254, 0.03600911, -0.0126733715, 0.009771588, 0.011856823, 0.021095293, 0.009663614, 0.014846335, -0.02697984, 0.016681882, 0.009063013, -0.0059857722, 0.028208036, -0.040867914, 0.019151771, -0.009920051, 0.0023484202, 0.020919835, -0.02418603, -0.009170986, -0.0039207824, 0.03252697, 0.009110251, 0.03638702, -0.030394496, 0.015399698, 1.745077E-4, 0.012686868, -0.0020295614, -0.015939565, -0.011168493, -0.009366687, -0.027938103, -0.001627192, -0.026912356, 0.0020633033, 0.007699849, 4.2113822E-4, -0.009150741, -0.0076458626, 0.013719363, 0.009170986, 0.02665592, -0.006805695, -0.031825144, -0.0099605415, 0.022026563, -0.0077268425, -0.01997507, -0.016573908, -0.008806576, -0.024294004, -0.011350698, -0.009056265, 0.037601717, -0.01158689, -0.00333199, -0.015008295, -0.0042750696, 0.009488158, -0.01819351, 0.020325983, 0.012295465, -0.014346958, 0.0037217063, -0.011796088, -0.010702858, 0.017140768, 0.009825574, -0.001818676, -0.0018068665, 0.014211992, -0.027047323, -0.0073826774, 0.009994283, -0.045105867, 0.009548893, -0.016169008, -0.015858585, -0.015035288, -0.009731098, 0.006984526, -0.015777605, -0.017869588, -0.024051063, -0.029152803, -0.010993036, 0.07288201, 0.051908188, 0.003109295, 0.010284461, -9.0343325E-4, 0.007052009, -0.014036535, -0.01730273, -0.0037284547, -0.020460948, 0.011512658, 0.0034652697, 0.0015504297, 0.0035327529, 0.009110251, -0.007072254, 0.008118246, -0.010601633, -3.504916E-4, -0.017464688, -0.021432709, -0.019138277, 0.03228403, 0.019313732, 0.012585644, -0.02204006, 0.02503632, 0.0056179883, -0.0059486567, -0.0054020416, -0.01344943, 0.011850075, 0.0020245002, 0.0045281323, -0.0017241994, 3.5133515E-4, 0.036441006, 0.017680636, 0.02455044, 0.009123748, -0.007092499, 0.0034787662, -0.004609112, -0.0070182676, 0.012767849, -0.041164838, -0.012990544, 0.015939565, 0.013759853, -0.037520736, 0.0034618955, 0.0044100364, -0.004281818, -0.015764108, 0.021284247, -0.010567891, 0.0023062432, -0.0034855145, -0.0251173, -0.0051219855, 0.0021560928, -0.029908616, 0.013888071, -0.003212207, -0.007551386, -0.019192262, -0.00593516, -0.011316956, 4.1481166E-4, 0.0016735869, 0.002687524, -0.0138745755, 0.0061106165, -0.006397421, 0.022822866, 2.9924643E-4, 0.034092583, -0.0057462067, 0.021432709, 0.004302063, -0.043648224, -0.027884116, 0.017289232, -0.020150525, -0.005614614, 0.014535911, -0.0043121856, 0.034578465, -0.009380184, 0.019624155, -0.0050376314, -0.008300451, -0.017410703, -0.007416419, 0.04046301, 0.01097954, 5.8162207E-4, 0.025171287, 0.0107366, 0.008604126, 2.7773614E-4, -0.026224026, -0.021311238, -0.02163516, -0.01770763, 0.004214335, -0.01012925, 0.004261573, -0.028855877, -0.02612955, -0.02540073, -0.027965097, -0.009339695, -0.011823081, 0.0027499462, -0.016789855, 0.0130242845, -0.008259961, 0.004541629, -0.0012906189, -0.0035395012, -0.012848828, 0.016371459, 0.035820156, 0.004970148, 0.032203052, -0.008550139, -0.017910078, -0.0062084673, 0.023322243, 0.005354803, 0.017410703, -0.011904062, -0.014724866, -0.016654888, -0.019772619, 0.0014078713, 0.008286954, -0.0020278743, 0.005202966, -0.021500193, 0.005071373, 0.013132258, 0.0019333977, 0.0051962174, -0.02621053, 0.013415689, -0.0057428326, 0.01997507, 0.012997292, -0.008084504, 0.008462411, -0.03050247, -0.010581388, -0.026588436, -0.035712186, -0.021135783, -0.007949538, 0.038546484, 0.003674468, 0.020852353, -0.004143477, 0.034038596, 0.0012087954, 0.011431678, 0.015021792, -0.013071523, -0.00666398, -0.02256643, 0.0024361487, 0.0052468297, 0.02329525, 0.009488158, 0.0041940897, 0.0075918757, 0.014765355, 0.007632366, 0.014373952, 0.0067078443, -0.02062291, -0.021986073, 0.002584612, -0.013253728, 0.0010999785, -0.022687899, -0.011661122, 0.031339265, 0.0021442831, -0.0036947129, -0.02370015, 0.012943305, -0.0023889104, 0.034983363, -0.016438942, 0.02661543, -0.018463442, 0.001857479, -0.0061646034, -0.016115023, 0.0011733666, -0.018517429, 0.01855792, 4.3231517E-4, -0.0052771973, -0.0119715445, 0.017370213, -0.017950568, -0.030529464, 0.02531975, -0.011998538, -0.012794842, -0.014238985, 9.1355573E-4, -0.034092583, -0.02685837, -0.008732344, -0.008158736, 0.009359939, -0.016155511, -0.04378319, 0.02406456, -0.0023281754, 0.053500794, 0.024280507, 0.043324307, 0.032796904, 0.009454416, -0.013348205, 0.0011320331, -0.0049161613, 0.003876918, 0.024199527, 0.017491682, -0.028262023, -0.01564264, -0.0014382388, -0.0047305822, -0.028127057, -0.035631206, 0.030934364, 0.025387233, 0.03978818, -0.027722158, -0.0105139045, -0.023943089, 6.2632974E-4, 0.0042480766, 0.0030654308, 0.0016381581, -0.028612938, -0.031582203, -0.0033100578, -0.012403438, 0.011937804, 0.0060937456, -0.019192262, 0.024347989, -0.012335955, 0.01564264, -0.024887856, -0.010230474, 0.043135352, -0.017464688, 0.023848614, 0.014117515, 0.007801074, -0.008145239, -0.0010476789, 0.020029055, 0.02783013, -0.018827852, 0.01612852, -0.0039039112, 0.0030738662, 0.015696626, 0.018395958, -0.008502901, -0.02791111, -0.018868342, 2.0719494E-4, 0.023632666, 0.0091844825, -0.0011134752, 0.0022961206, -0.020973822, -0.014306469, 0.015251235, -0.0028731034, 0.013341457, -0.037736684, -0.0041299807, -0.004912787, 3.8317885E-4, -0.0035462496, -0.0070790024, -2.549605E-4, -0.010905308, 0.01247767, -0.009366687, -0.0058710505, -0.014387448, -0.003698087, -0.037439756, -0.017977562, -0.014387448, -0.0139285615, 0.0037689446, -0.028289016, 0.005833935, -0.013321212, -0.0032695679, -0.021419212, 8.5956906E-4, -0.016074533, -0.0016913012, 0.019016806, -0.01146542, -0.009224973, -6.0355413E-4, 0.02406456, -0.0039241565, 0.0046664733, -0.011370943, 0.0032948742, 0.02580563, -0.00403213, 0.013456178, -1.3707553E-4, -0.013314463, 0.009400429, 0.013746357, 0.024658414, 0.011600386, -0.009677111, -0.038546484, 6.503707E-4, -0.016142014, 0.020717386, 7.254459E-4, 5.24683E-4, 0.038222566, 0.015858585, 0.058035675, 0.029827638, -0.012484418, -0.02904483, 6.655545E-4, -0.0030957982, -0.022647409, -0.013145755, 0.0218781, 0.008550139, 0.022863356, -5.1202986E-4, -0.030691424, -0.019610658, -0.008219471, -0.014414442, -0.008597378, 0.024617923, 0.03557722, -0.0054863957, -0.0025542446, 0.018099032, -2.2058617E-4, 0.008502901, -0.0130985165, -0.0021645282, 0.020757876, 0.011836578, 0.028181044, 0.004204212, -0.028127057, -0.007990028, 0.012133505, 0.008239716, 0.010419428, 0.026466966, -0.0073219426, -0.0154806785, -0.006441285, 0.008901053, -0.007207221, -0.0072342143, 0.04059798, -0.023848614, -0.004362798, 0.0015209058, 0.02556269, -0.0072679557, 0.0065053944, 0.031015344, -0.014751858, -5.6137703E-4, 5.027509E-4, -0.026466966, 0.009501655, -0.026507456, 0.02649396, 0.011242725, -0.0017495056, 0.024334492, 0.023349237, -0.020056048, 0.013469675, -4.5888673E-4, 0.007193724, -0.0031143562, -0.0023669782, -0.015386201, 0.02212104, -0.027938103, 0.007801074, -0.035712186, 0.0052164625, -0.015912572, 0.008050763, -0.0033218674, 0.03630604, 0.009974038, -0.050585512, 0.0050038896, 8.52399E-4, 0.014211992, -0.014846335, -0.013395444, -0.02746572, -0.004659725, -6.216903E-4, 0.009211476, -0.012653126, -0.018031549, 0.0042750696, -0.011877068, 0.006984526, 0.014387448, 0.19294837, -0.016303975, 0.013031033, 0.050936427, -0.01170836, 0.003914034, 0.024563937, 0.016965313, -0.0032257037, 0.0053817965, -0.0020261873, 0.0046293573, 0.00160526, -4.504513E-4, 0.011303459, -0.0066538574, -0.01142493, -0.027371243, -0.01138444, -0.010264216, -0.00540879, 0.00621859, -0.0103856865, -0.021567676, -0.0038802922, 0.0056213625, -0.016749365, -0.013915065, 0.02398358, 0.007814571, -0.016614398, -0.008550139, 0.007713346, 0.022134537, -0.010561143, 0.0029422736, -0.01344943, 0.005914915, 0.0024327745, 0.0057192133, -0.021932086, 0.0036575971, -9.3127013E-4, 0.016438942, -0.004504513, 0.024320995, -0.021567676, 0.0022050182, -0.01336845, 0.0034686439, -0.050288588, -6.9043896E-4, 0.016762862, 0.02564367, -0.014333461, -8.865624E-4, -0.003961272, 8.949978E-4, -0.010635375, 3.3425342E-4, 0.0019333977, 0.03557722, -0.035523232, 0.018355468, 0.0026942724, 0.016303975, -0.038573477, -0.0044741454, 0.02912581, -0.016196001, -0.015872082, -0.024928346, -0.022836363, 0.014158005, -0.018395958, -0.0099268, -0.004362798, 0.014454932, 0.002889974, 0.02823503, -0.016803352, 0.0032965613, 0.008448915, -0.016249988, -0.020285493, -0.02414554, 0.009994283, -0.008772834, -0.022903847, -0.01361139, -0.01097954, -0.02726327, -0.0060431333, 0.012362949, -0.027033826, -0.003860047, 0.02576514, 0.020204512, -0.027884116, -0.017289232, -0.038465504, 0.026682913, 0.028262023, 0.00605663, -0.025792133, -0.008273458, 0.0034416504, 0.015818095, 0.026224026, 1.6480697E-4, -0.016236492, -0.013361702, 0.001444987, -0.0076661077, 0.0072409627, 0.018449945, 2.0403166E-4, -0.0025356866, 0.0372778, -0.022053557, 0.024442466, -0.019340726, 0.012025531, 0.0040523745, 0.0036575971, -0.022687899, -0.03406559, 0.0077065974, 0.02422652, -0.030529464, 0.007841565, -0.034281537, 0.020083042, -0.02382162, 0.008867311, 0.016695378, 0.017964065, -0.0030232538, -8.0600416E-4, -0.017127272, 2.2902159E-4, -0.013550655, 0.01093905, 0.0051219855, 0.008104749, -0.0149813015, 0.016762862, -0.006397421, -0.008799828, -0.032230046, -0.031825144, 0.0054425313, 0.0030316892, -0.016722372, 0.038546484, -0.015993552, -0.0062455833, -0.044134106, -0.00891455, 0.031393252, -0.040975884, 0.018625403, 0.0072612073, -0.024725897, -0.03306684, -0.016061036, -0.17264938, 0.014023039, 0.008030518, -0.028343003, 0.022148034, 0.017518675, 0.035982117, 0.014886825, 0.010230474, -0.01348992, 0.022903847, -1.4139869E-4, -0.04302738, -9.726037E-4, 0.0038026862, 0.027317258, -0.0074434127, 0.03851949, 0.019637652, -0.002424339, 0.041380785, -0.013678873, -0.0021240383, 0.0024159036, 0.014144508, -0.01081758, 0.013996045, 0.012990544, -0.0044471524, 0.0034433375, -0.032661937, -0.024739394, 0.023038812, 0.007720094, 0.0036913387, 0.0014298033, -0.015170255, -0.017964065, -0.005111863, -1.2231356E-4, 0.034578465, 0.010500408, 0.023727143, 0.013604642, 0.015561659, 0.0097580915, 0.018287985, -0.015345712, 0.0023922846, -0.018800858, -0.0026369116, -0.025913604, 0.020487942, -0.0043088114, -0.0060498817, 0.013861079, -0.0077470876, 0.004659725, 0.008071007, -0.002262379, -0.04273045, -0.010041521, 0.0039511495, -0.014657382, -0.0072342143, -0.008496153, -0.01255865, 0.027330752, -0.031042337, 0.010507156, -0.01859841, 1.1198017E-4, 0.002830926, -0.0017680635, 0.003941027, -0.024037566, -0.038924392, -0.008502901, 0.00634006, 0.027492713, 0.0018051794, 0.02195908, -0.012160498, 0.002766817, 0.003492263, -0.008286954, -0.0027533204, -0.0012939931, 0.007416419, -0.0033083707, -0.0070182676, -0.005999269, -0.016330969, -0.012956802, 0.0017866215, 0.005250204, 0.013807092, 0.01369237, 0.019475693, -0.0040355036, 0.011256222, -0.008610874, -0.02042046, 0.006822566, 0.021783622, 0.01041268, 0.009103503, 0.015413195, 0.0048014396, 5.461933E-4, -0.006603245, 0.0023889104, 0.010662368, 0.012950053, -0.021297744, 0.011033527, -0.020204512, -0.014859832, -0.006464904, 0.009211476, 0.061490823, 0.007126241, 0.008037266, -0.021162776, -0.005756329, -0.013078271, -0.097014055, -0.005030883, 0.022269502, 0.026763894, -0.017316226, 0.02171614, -0.008104749, 0.015237738, -0.016290478, 0.029449731, 0.004740705, -0.034740426, 0.009899806, -0.0017933698, 1.6775937E-4, -0.0025761765, -0.013064775, -0.019745626, -0.0021223512, 0.036926884, 2.754164E-4, -0.001250129, 0.0016330968, -0.0031076078, -0.030043583, -0.0038195571, -0.036441006, 0.026358994, 0.0130242845, 0.01867939, 0.0123966895, -0.02503632, 0.00484193, -0.03325579, -0.0251173, -0.029584697, -0.008563636, -0.03609009, -0.0044505266, -0.02896385, 0.003151472, 0.016546916, 0.008658113, -0.024374982, -0.0033404254, 0.0053649256, -0.02244496, 0.029179797, 0.009231721, -0.017923575, -0.0041097356, -0.039275303, -0.034254543, -0.016843842, 0.013969052, 0.018004555, 0.020906338, 0.0070587574, -0.0054830215, -0.027371243, 0.0033016226, -0.003735203, -0.030529464, 0.018665893, 0.014036535, 0.0041535995, -0.009933548, -0.019516183, 0.019313732, -0.018787362, -0.007828068, 0.009488158, -0.022256006, -0.02313329, -0.02564367, 0.0023113044, -0.021851106, -0.004983645, 0.024887856, -0.032068085, 6.870648E-4, -0.03001659, 0.02483387, -0.027803136, 0.018180013, 0.03187913, 0.0049364064, 0.023470705, -0.008037266, -0.033849645, -0.013058026, 0.028612938, 0.009251966, -0.011573393, 0.0074636578, 0.017194755, 0.018868342, 0.0031261658, 0.009434171, 0.017572662, -0.004848678, -0.009339695, -0.076067224, 0.036333032, -0.02155418, -0.012362949, -0.010176488, -0.022674402, -7.8154146E-4, -0.005027509, 6.634456E-4, 0.025468213, -0.0048351814, 0.019151771, -0.01102003, -0.007348936, -0.0076053725, 0.002338298, -0.008826821, -0.006343434, -0.0099605415, 0.007571631, -0.018584913, 0.01730273, 0.028909864, -0.008151988, -0.009704105, 0.033228796, -3.5998144E-4, 0.00585418, -0.016803352, -0.019313732, 0.02839699, -0.0053615514, -0.0073016975, 0.017532172, -0.0034990113, -0.025171287, -0.015035288, -0.0072207176, 0.02446946, 0.012538405, -0.003917408, -0.04140778, -0.005779948, -0.01207277, -0.008745841, 0.01243718, -0.009285708, 0.016263485, 0.0065863742, 0.02244496, 0.033147816, 0.0037858156, -0.0064716525, -0.036629956, 0.029800644, -0.007193724, 0.04408012, 0.018139523, -0.0019131528, -0.016425446, 0.04075994, 0.0071667307, 0.02507681, -0.03204109, 0.006923791, 0.0062354608, 0.01948919, -0.0041907155, 0.0054425313, -0.02888287, -0.015089275, -2.2016441E-4, 0.01166787, 0.044619985, 0.00476095, 0.014279475, 0.0072004725, 0.007517644, -0.022633912, 0.01774812, 0.03260795, -0.014576402, -0.012781345, 0.00887406, -0.0017579411, 0.030475477, -6.5838435E-4, 1.6541328E-5, 0.017113775, 0.018476939, -0.008178981, 0.014238985, 0.023403224, 0.007834816, 0.008617623, 0.02325476, -0.0086311195, -5.8162207E-4, -0.0062152157, 0.015318719, -0.012005286, -0.018341972, -0.0037048354, -0.010918804, -0.018395958, 0.01778861, -0.012788094, -0.01981311, 0.017761616, 0.015669633, 0.008455663, 0.013273973, -0.016614398, 0.016789855, -0.04408012, 0.024294004, -0.010432925, -0.019016806, -0.017194755, 0.051152375, 0.018139523, -6.183161E-4, 0.045915667, -0.014819342, 0.03625205, 0.016803352, 0.017964065, -0.018571416, 0.009656866, 0.0014188372, 0.014751858, -0.013550655, -0.01568313, 0.019246249, -0.01263963, 0.011107758, -1.0997676E-4, 0.039032366, -0.008590629, 0.070668556, 0.017545668, -0.006805695, 0.017464688, -0.02244496, -0.005982398, 0.0036036104, 0.018611906, -0.018895335, -0.026345497, -0.0075581344, -0.008084504, 0.006275951, -0.023106296, -0.011445175, 0.0042919405, 0.02070389, -0.0013564152, 1.7925263E-4, -0.02783013, 7.305072E-4, -0.008286954, 0.015008295, 0.009710853, -0.008509649, -0.009150741, 0.036629956, -0.006805695, -0.0018895336, -0.029341757, -0.008489405, -0.022067053, -0.012943305, -0.016600901, 0.032014098, -0.010034773, -0.0022455081, 0.0064547816, 0.008799828, 0.018719878, -0.0043088114, 5.6432944E-4, -0.014562905, -0.017032795, 0.021081796, -0.013476423, 0.007510896, -0.034335524, -0.015048785 ], + "id" : "048cfdb8-a84f-4eaa-a2b3-4d0894d72d2b", + "metadata" : { + "source" : "movies.csv" + } + }, + "3773fc12-06de-40df-b9b9-095aac76ad1f" : { + "text" : "Pictures-Village Roadshow Pictures-The Zanuck Company-Plan B Entertainment-Theobald Film Productions,7/13/05,150000000,475000000,115,Released,Prepare for a taste of adventure.,7.049,14453,Johnny Depp-Freddie Highmore-David Kelly-Helena Bonham Carter-Noah Taylor-Missi Pyle-James Fox-Deep Roy-Christopher Lee-Adam Godley-Franziska Troegner-AnnaSophia Robb-Julia Winter-Jordan Fry-Philip Wiegratz-Blair Dunlop-Liz Smith-Eileen Essell-David Morris-Nitin Ganatra-Shelley Conn-Chris Cresswell-Philip Philmar-Tony Kirwood-Todd Boyce-Nayef Rashed-Menis Yousry-Harry Taylor-Hubertus Geller-Francesca Hunt-Garrick Hagon-Kevin Eldon-Mark Heap-Roger Frost-Oscar James-Colette Appleby-D��bora Monteiro-Annette Badland-Steve Hope Wynne-Geoffrey Holder-Elena Buda-Rene Costa-Danny Elfman-Aiko Horiuchi-Brigitte Millar-Valery Richardson-John Warman-Tracy Yarkoni-Jynine James,factory worker-london england-based on novel or book-chocolate-candy-overweight child-parent child relationship-grandparent grandchild relationship-teacher-candy bar,/wfGfxtBkhBzQfOZw4S8IQZgrH0a.jpg,/bSvUW4JQ6g4QiKvwejcfcPRd4Ke.jpg,12155-162-3933-425-1593-285-809-58-411-808-2062-62213-675-950-953-767-674-1865-310-12444-22\r\n89,Indiana Jones and the Last Crusade,Adventure-Action,en,In 1938 an art collector appeals to eminent archaeologist Dr. Indiana Jones to embark on a search for the Holy Grail. Indy learns that a medieval historian has vanished while searching for it and the missing man is his own father Dr. Henry Jones Sr.. He sets out to rescue his father by following clues in the old man's notebook which his father had mailed to him before he went missing. Indy arrives in Venice where he enlists the help of a beautiful academic Dr. Elsa Schneider along with Marcus Brody and Sallah. Together they must stop the Nazis from recovering the power of eternal life and taking over the world!,45.213,Paramount-Lucasfilm Ltd.,5/24/89,48000000,474171806,127,Released,\"The man with the hat is back. And this time, he's bringing his Dad.\",7.838,8802,Harrison Ford-Sean Connery-Denholm Elliott-Alison Doody-John Rhys-Davies-Julian Glover-River Phoenix-Michael Byrne-Kevork Malikyan-Robert Eddison-Richard Young-Alexei Sayle-Alex Hyde-White-Paul Maxwell-Isla Blair-Vernon Dobtcheff-J.J. Hardy-Bradley Gregg-Jeff O'Haco-Vince Deadrick Sr.-Marc Miles-Ted Grossman-Tim Hiser-Larry Sanders-Will Miles-David Murray-Frederick Jaeger-Jerry Harte-Billy J.", + "embedding" : [ 0.008663059, -0.02689856, -0.020402974, -0.03552743, -0.023862727, 0.034570187, -0.0053263796, -0.012498873, -0.0118971765, -0.021223469, 0.012840746, 0.047151107, 0.022741385, 0.0015845809, 0.018871384, 0.006646009, 0.015452655, -0.007377617, 0.012546735, -0.019773928, 0.008888695, 0.008054526, -0.011220268, -5.8246596E-4, 0.014290287, 0.009839102, 0.029701917, -0.009052794, 0.0026067807, -0.004628959, 0.024765272, -0.0051280935, 0.0038905134, -0.020238874, -0.016068026, -0.013264668, -0.003921282, -0.01936368, 0.02940107, 0.006157131, -0.0034255665, 8.704938E-4, -0.010796346, -0.019035483, 0.0012221956, 0.0064237914, 0.017996188, -0.010433961, 0.0059451694, 0.027746404, 0.012915958, 0.030330963, -0.019637179, -0.016150076, -0.0044819536, 0.0041024745, -0.00809555, 0.007049419, -0.017203044, 0.0024990907, 0.015220181, -0.018187638, -0.025079796, -0.003757183, -0.028854072, 0.009497229, 0.0073571047, -0.023903752, 0.0054768035, 0.015849227, 0.020813221, 0.022809759, 0.008088713, 0.009292105, 0.022549937, -0.033859093, -0.012806558, -0.002452938, -8.2263164E-4, 0.009216893, 0.019883327, -2.613191E-4, -0.025681492, 0.02116877, 0.02531227, 0.021346543, -0.016478274, 0.030221563, -0.022221738, -4.100338E-4, -0.0018837196, 0.04720581, -0.011719403, 0.011596329, 0.0130868945, 0.023261031, -0.0012529641, 0.0327104, -0.0054802224, -0.019295307, -0.005507572, -0.0012392892, 0.009825427, -0.009798077, 0.008731433, -0.004933226, 0.007322917, -0.013777478, 0.012061276, -5.734918E-4, -0.004297342, -0.00468024, 0.015165482, -0.03093266, -0.013223643, -0.013237318, 0.0089844195, -0.010249349, 0.0021862772, -0.03517188, 0.023001209, 0.009435692, 0.007199843, -0.043978527, 0.018816683, 0.029455768, 0.0012042472, -0.019814953, 0.016779121, -0.009818589, 0.023493504, -6.03833E-4, 0.026078064, 0.0108373705, -0.032300152, 0.045537468, -0.019773928, 0.006847714, -0.036457326, -0.0203346, 0.042939235, 0.029072871, -0.031424955, -0.014044139, -0.026720785, 0.008054526, 0.009880126, -0.011992901, 0.01785944, -0.013230481, 0.012881771, 0.019801278, 0.014891983, 0.022372162, 0.0406145, -0.0020444, -0.01167154, -0.00769214, 0.008909208, -0.013825339, 0.0022597797, 0.009346805, -0.007828889, -0.004334948, 0.002167474, 0.02097732, 0.012143325, -0.02528492, -0.0074870163, -0.012847583, -0.014905658, 0.030330963, -0.024833648, 0.01705262, -0.001390568, 0.017517567, 8.888695E-4, -0.009408342, -0.038645312, -0.022208063, -0.0040033315, 0.018857708, 0.030276263, 0.039520506, -0.007582741, 0.0026204558, 0.01729877, -0.037824817, -0.0042563174, -0.009900639, 0.0021161933, 0.023903752, 0.0029025008, -0.01377064, -0.64064246, -0.009216893, -0.007425479, -0.014139863, 0.017517567, 0.027746404, -0.007008394, 0.0018358574, -0.022399511, -0.014303962, -0.026611386, 0.0202799, 0.015903927, -0.0129227955, -0.0135860285, 0.0021555086, -0.002907629, -0.01944573, 0.009203218, -0.01374329, -0.024464425, 0.022440536, 0.0017811578, -0.015575729, 0.007753677, 0.015739828, 0.0036922272, -0.0129227955, -0.0015965464, -0.009531416, -0.010980957, 0.006529772, 0.0058186767, 0.010420286, 0.038180366, 0.012136487, -0.012703997, 0.046549413, 0.015931277, 0.036949623, -0.033749692, -0.021346543, 0.018132938, -0.006680196, -0.0066152406, 0.019432055, 0.012546735, 0.007418642, -0.01336723, -0.014372337, -0.005736627, 0.010454473, -0.012286912, -0.0076989774, -0.002119612, 7.064483E-6, 0.016779121, -0.03268305, 0.02587294, -0.006734896, -0.016095376, 0.023083258, 0.0027315645, 0.014126188, -0.017435517, 0.031342905, 0.0019384193, -0.014126188, 0.018037213, -0.04400588, 3.0319853E-4, -0.0016905614, 0.0012803139, -0.0033589012, 0.01465951, -0.0012187768, 0.030330963, -0.0012469813, -0.016724423, 0.019719228, 0.008697246, -0.01694322, 6.619514E-4, 0.026488312, 0.024478098, 0.0048956196, -0.031616405, -0.0022854202, 0.004334948, 0.012286912, 0.004198199, 0.02737718, 0.01062541, 0.013428767, -0.0203346, -0.0060067065, -0.017982515, 0.0071451436, 0.034816336, -0.041134145, -0.0053810794, -0.021373892, 0.004577678, -0.0072066807, 0.02350718, 0.020457674, -4.3289654E-4, -0.008642547, 0.028607924, -0.024751598, 0.004704171, 0.004389648, -0.018160287, 0.016847497, -0.004656309, -0.03262835, 0.02751393, 0.006317811, 0.009517741, -0.0066665215, 0.006095594, 0.0026717365, 0.004396485, -0.024683222, 0.008758783, 0.029537817, -0.00629388, -0.011192919, -3.352491E-4, 0.015097107, 0.0057981643, -0.0076237656, 0.012375799, -0.012765533, -0.0038358138, 0.014317636, 0.018679935, 5.333217E-4, -0.004560584, -0.0054357788, -0.01702527, 0.005572528, -0.009565604, -0.011582654, 9.298943E-4, -0.014358661, -0.02670711, -0.0062870425, -0.0045810966, 0.0010683528, -0.017011596, 0.011138218, 0.014454386, 0.0135176545, 0.012307424, 0.00847161, -0.020717498, -0.017175695, 0.009121168, -0.023849053, 0.019254282, 0.016396224, -0.0029161759, -0.019500429, 0.024573823, -0.012245887, -8.21777E-4, 0.01866626, -0.0019572224, -0.0107074585, 0.009244243, -0.010283536, -4.151619E-4, 0.02047135, -0.0154389795, 0.014987707, -0.0123279365, 0.010249349, 0.021278169, -0.0018632072, 0.009907477, 0.0014247553, -0.02003375, -0.0040546125, 0.03383174, 0.01844746, 0.0011085229, 0.007999825, -0.017230393, 0.011951876, -0.006369092, -0.015151806, 0.0019298724, 0.008430585, -0.013209969, 0.02670711, 0.012608272, -0.01872096, -0.0036135965, 0.015138132, 0.030358313, 0.027500255, 0.022946509, 6.918653E-4, 0.002697377, -0.045810968, 0.0024990907, -0.009668165, 0.00890237, -0.009538254, 0.024409724, -0.02248156, -0.01844746, 0.0014512504, 0.010392936, 0.030604461, -1.9540172E-4, -0.0025674654, -0.011110869, 0.006881901, 3.7627385E-4, -0.0034153103, 0.014085163, 0.017244069, -0.026625061, -0.010652759, 0.011575816, -0.020813221, 0.003049506, -0.011056169, -0.004126406, 1.8856427E-4, -0.012416824, 0.010105763, -0.006269949, -0.0015401373, 0.03079591, -0.015261206, 0.039356407, -0.0021555086, 0.0045708404, 0.026925908, 0.02270036, 0.021209795, -0.010502336, -0.0077263275, 0.008717759, 0.030139513, -0.016683398, 0.038481213, -0.009873289, 0.028936122, -0.0022375581, 0.012950145, 0.015042407, -0.008622034, 0.007733165, -0.0032255708, 0.017380817, 0.026337888, 0.0018324387, -0.007466504, 0.036457326, 0.018365411, 0.0063417424, -0.008628872, -0.026310537, 0.004399904, -0.0024837065, -0.016519299, -0.008683572, -0.013360392, 5.956067E-5, 0.009558766, -0.0057058586, -0.023096932, 0.005763977, 0.008300674, 0.016286824, 0.0043212734, -0.007151981, -0.02283711, 0.018297037, 0.038453862, -0.015151806, -0.02248156, -1.3327701E-5, -0.010365586, -0.031178808, -0.019760253, -0.02350718, 0.03580093, -0.028334426, -0.0020033752, -0.014481735, -0.0046904963, 0.025243895, -0.007418642, 0.007275055, 0.002940107, -0.016095376, 0.007951964, -0.0046836585, -0.014126188, 0.029920716, -0.027062658, 0.012204862, 0.007999825, -0.0035999215, 0.007275055, 0.009298943, 0.009572441, -0.04203669, 0.011179243, -0.009531416, 1.7969694E-4, -0.028772023, 0.004099056, 0.004981088, -0.015315905, -0.015110781, -0.027842129, -0.02896347, 0.008485286, 0.08992624, 0.028225025, 0.0072818925, 0.011623679, 0.003996494, 0.0068579703, -0.014221912, -0.010557035, 0.0032101865, 0.007945126, 0.0322728, -0.008218625, 0.015165482, 0.009517741, -0.012088626, -0.018187638, -0.016751772, -0.01616375, -0.0055520157, -0.014358661, -0.031042058, -0.009271593, 0.018201312, 0.026255839, 0.0062460178, -0.020416649, 0.029893365, 0.018515836, -3.7670118E-4, 0.021073045, 0.0035486405, 0.008779296, 0.005712696, 0.0067143836, -0.00774684, -0.004793058, 0.01686117, 0.0011221977, 0.021579016, 0.008998094, 0.004413579, 0.008895532, 0.008273324, -0.0033076203, 0.0029486537, -0.024956722, -0.022631986, 0.01852951, 0.032655697, -0.02926432, 0.031643756, 0.0029862598, -0.016560324, -0.0076100905, 0.020238874, -0.02676181, -0.003157196, -0.013114244, -0.019199582, 0.012259562, -0.00524433, -0.04592037, 0.040341, -0.010228837, 0.016478274, -0.023370432, -0.029948065, -0.015890252, -0.012567247, 0.0041024745, 0.016792797, -0.011910851, -0.021606367, -0.010392936, 0.009463042, -0.005141768, 0.017654316, -0.0068032704, 0.007931451, 0.002875151, -0.03424199, -0.036101777, 0.01207495, -0.0076511153, -0.024081526, 0.014249262, -0.0034683004, 0.0047007524, -0.0015503935, 0.011083519, 0.008170762, -0.0016478273, -0.004454604, -0.013996276, 0.016464598, 0.0044340915, 0.008957069, 0.019801278, 0.008423748, 0.008895532, -8.5596426E-4, -0.0038529076, 0.0036990647, -0.020526048, -0.0068579703, -0.007644278, -0.014016788, 0.0024221693, -0.010468148, -0.0070836064, -0.025886616, -0.017380817, 1.1976235E-4, 0.0062904614, 0.026023364, 0.013244156, 0.016341524, 0.007951964, 0.0030973684, -0.007302405, -1.2040336E-4, -4.627303E-6, 0.013927901, 0.014891983, -0.02178414, 0.030084815, -0.0017478252, -0.033749692, -0.0045810966, 0.03705902, -0.0032563393, 0.013592866, -0.0056545776, 0.01100147, -0.0145774605, -0.010119437, 0.018953433, -0.005069975, -0.0062323427, 0.009804915, -0.01713467, -0.011514279, 0.026433611, -0.0060819187, 0.011548466, -0.028279725, 0.008567335, -0.013955251, 0.0038631638, 0.020361949, 7.5340236E-4, -0.007904101, -0.019254282, 8.589556E-4, -0.0029606193, -0.04712376, -0.005678509, -0.0108715575, 0.012348449, 0.011124544, 0.027336156, -0.00930578, 0.025886616, -0.0078015393, 0.006218668, 0.029510468, -0.009551928, -0.023575554, -0.037879515, 0.008143412, 0.011480092, 0.029428419, 0.007616928, -0.0049571567, 0.010269862, 0.031370256, -2.7841274E-4, 0.020690147, -0.003504197, -0.016751772, -0.012300586, -0.0027589141, -0.03063181, 2.8973728E-4, -0.022016615, -0.002170893, 0.031835202, -0.013982601, -0.009627141, -0.01705262, 0.0323275, -0.013271506, 0.019432055, -0.02528492, 0.009169031, -0.01463216, 0.0053024488, -0.023931103, -0.008669896, -0.0033418075, -0.004242643, 0.0125262225, -0.001852951, -0.015821878, 0.0030409594, 0.011739915, -0.013777478, -0.0018478229, 0.025599442, -0.0015290265, -0.013531329, -0.04241959, -0.0057981643, -0.027951527, 0.0035212908, -0.0072340304, -0.009832264, 0.0020820058, -0.027076334, -0.04712376, 0.019801278, -0.004290505, 0.03580093, 0.0043691355, 0.039438456, 0.017613292, 0.0131210815, -0.022631986, 0.01054336, -0.005736627, -0.0056819273, 0.018857708, 0.024765272, -0.0015119328, 0.0039452133, -0.012115975, -0.002813614, -0.038344465, -0.034953084, 0.032956548, 0.015917601, 0.012669809, -0.005726371, 0.001258947, -0.020102127, 0.0052750986, 0.0078015393, -0.007986151, 0.008013501, -0.043267433, -0.022686685, -0.019049158, -8.803227E-4, 0.01091942, 0.002377726, -0.037879515, 0.00968184, -0.016204774, 0.010372424, -7.2306115E-4, -0.0077605145, 0.036101777, -0.01947308, 0.028799372, 0.014727884, 0.0036717148, -0.015671453, -0.0041776868, 0.010905745, 0.03054976, -0.0045742593, 0.02501142, -0.012355287, 0.0023691792, 0.0029794222, 0.006416954, -0.028689973, -0.021442268, -0.033120647, -0.0016221869, 0.022549937, 0.009880126, -0.0141808875, -0.007808377, -0.012368961, -0.008451098, -1.269203E-4, -0.0011204884, 0.016040675, -0.039766654, 0.016587673, -0.0011803162, -0.001611076, -0.0075553907, -0.017380817, 0.005134931, 0.005473385, 0.01766799, -0.022768734, 0.007910939, -0.01775004, -0.008957069, -0.03889146, -0.01766799, 6.243454E-4, 0.009675003, 0.0064340476, -0.014153537, 0.003423857, 0.0061468747, -0.008512635, -0.003278561, 0.0059451694, -0.013298855, -0.005521247, 0.0325463, -0.02116877, -0.0137159405, -0.013545004, 0.036730822, 0.019226931, -0.010898908, 0.009948501, 0.017462866, 0.024833648, -0.04370503, 0.012239049, -0.0015486842, -0.016068026, -0.01866626, 5.247749E-4, 0.03396849, 0.012348449, -0.0028512198, -0.045263972, -0.02119612, -5.380225E-4, 0.047397256, -0.00849896, -0.0050392062, 0.018994458, 0.023001209, 0.032601, 0.026201138, -0.0019144882, -0.023493504, 0.0068169455, -0.017285094, -0.01794149, 0.007008394, 0.0116647035, 0.022508912, 0.005305867, -0.013223643, -0.02248156, -0.0020341438, -0.028553223, -0.03372234, -0.015698804, 0.004396485, 0.038207714, 0.0067656646, -0.005637484, 0.028553223, 0.0021349962, 0.01705262, -0.019760253, -0.011056169, 0.01694322, 0.011986064, 0.026966933, 0.011603166, -0.04529132, -0.013223643, 0.01452276, 0.0148099335, 0.014837284, 0.018515836, -0.004663146, -0.009408342, -0.0053639854, -0.01013995, 0.005350311, 0.002875151, 0.04233754, -0.017408168, -0.02595499, 0.016751772, 0.021907214, 0.0044169975, -0.013654403, -0.012710834, -0.020854246, 0.0032289894, -0.012321099, -0.019049158, -0.0042836675, -0.020156825, 0.016464598, 0.013914227, -0.0059554256, 0.02920962, 0.012471523, -0.012150163, 0.007151981, -0.012833908, -0.011384367, -0.016491948, -0.016738096, 0.011958714, 0.011534791, -0.020772196, 0.019240607, -0.020539723, 0.0101673, -0.0023691792, 0.005196468, -0.003911026, 0.0484639, 0.005258005, -0.058036342, 0.002888826, -0.009524579, -0.0047486145, -0.014030463, 0.0081229, -0.028772023, -0.004721265, -0.004864851, -0.0034358224, -0.031807855, -0.027349832, 0.0032289894, -0.003287108, -0.010263024, 0.012122813, 0.195606, -0.0014743268, 0.019938027, 0.03432404, 0.0020016658, 0.015220181, 0.025189195, 0.019568805, -2.1943967E-4, 0.006365673, -0.011958714, 0.009531416, 0.0069913007, 4.0298267E-4, 0.01872096, -0.020881597, -0.011938201, -0.018707285, -0.0328745, -0.039711956, -0.009784402, -0.015944952, -0.009969014, -0.025394319, 0.00387342, -0.007828889, -0.018050889, 0.012430498, 0.03440609, -0.011363855, -0.015069757, -0.023192657, -0.014098838, 0.0065024225, -0.01605435, -0.010727971, -0.007151981, 0.011986064, 0.019021807, -0.007575903, 0.008211787, 0.004461441, -0.030002765, -0.027144708, 0.0019572224, 0.015151806, -0.017490217, -0.016628698, -0.022221738, 0.0036170152, -0.038153015, -0.007951964, 0.015726153, 0.019787602, -0.015958626, -0.0021879864, 0.0051520243, 0.0068648076, -0.0011187791, -0.013640729, 0.022549937, 0.035390683, -0.020785872, 0.018543186, -0.015985977, 0.022344813, -0.03106941, -0.018201312, 0.016601348, -0.036375277, 0.005722952, -0.026625061, -0.031725805, 0.007979313, 0.007815214, -0.020758523, 0.0048956196, -0.008560497, 0.019322656, 0.011493767, -0.019719228, -0.027363507, 0.002030725, -0.0038631638, -0.02025255, -0.010201487, 0.024409724, -0.014194562, -0.018173963, -0.032026652, -0.004916132, -0.0069776257, -0.019568805, -0.006167387, -0.010092088, 0.018009864, 0.021223469, 0.0076853028, -0.01936368, -0.006943438, -0.019185906, 0.024478098, 0.015808202, -1.371765E-4, -0.033038598, -0.020184176, -0.007849402, 0.0243687, 0.022741385, -0.019951701, 0.0060477313, -0.017626965, -0.005285355, -0.016984245, 0.0043930667, 0.026857534, -0.009777565, -0.010933095, 0.017914139, -0.02094997, 4.348196E-5, -0.024177251, 0.019842302, 0.0041811056, -0.016450923, -0.028936122, -0.027568629, 0.020676473, 0.0081776, -0.042009342, 0.019158557, -0.02926432, 0.0029042102, 0.006796433, 0.00672464, 0.0067793396, 0.006837458, 0.0024238788, -0.0038050453, 0.0072408677, 0.004488791, 2.5386733E-5, 0.0031076246, 0.0054255226, 0.0011307446, -0.039739303, 0.017873114, -0.016450923, -0.003931538, -0.014139863, -0.0143449865, -0.015753502, 0.009039119, 0.0040648687, 0.036840223, 0.0071177934, -0.011254456, -0.04411528, 0.014153537, 0.023220006, -0.03082326, 0.018338062, 0.01960983, 0.0026050715, -0.039684605, 0.0020785872, -0.17591411, 0.020430325, 0.007582741, -0.024095202, 0.019910676, 0.002700796, 0.018433787, 0.015042407, 0.014891983, -0.017271418, 0.019432055, 3.8076093E-4, -0.03777012, -0.011596329, 0.0073912917, 0.0073365923, -0.0032956547, 0.038207714, 0.036074426, -0.0075006913, 0.045017824, -0.00809555, -2.4593482E-4, -0.0162458, 0.01091942, -0.002630712, 0.0090186065, 0.0075348783, -0.005346892, -0.002941816, -0.033941142, -0.005975938, 0.015985977, -0.0018820103, -0.009599791, 0.00263584, -0.014714209, -0.006116106, -0.006974207, -0.0061331997, 0.027199408, 0.009490391, 0.030440362, 0.013729615, 0.01008525, 0.012341611, 0.02689856, -0.029948065, 0.019350005, -0.003504197, -0.0052169804, -0.036676124, 0.0049879253, -0.0042050364, -0.017996188, 0.025325945, 0.0069160885, -0.007528041, 0.00879297, -0.019144882, -0.030413013, -0.0033178765, 0.003794789, -0.014891983, -0.00502895, -0.032573648, -0.017640641, -0.011439067, -0.018816683, 0.0162458, -0.023931103, 0.0019298724, 0.025695166, 0.010071576, -0.0021264495, -0.010201487, -0.019760253, -0.0016820147, -0.0062118303, 0.009565604, -0.018652584, 0.05185528, -0.015083432, 0.010816858, 0.016642373, -0.02047135, -0.0067519895, -0.0049469005, 0.0028512198, 0.004338367, 0.0042187115, -0.014440711, -0.033093296, 0.009729702, 0.015220181, 0.008813483, 0.0047007524, 0.006444304, 0.007910939, -0.018392762, -0.008669896, -0.0028529293, -0.0202252, 0.014098838, 0.025025096, 0.011363855, 0.0018033795, 0.0319993, 0.039329056, 0.0044272537, -0.011801452, 0.008054526, 0.007104119, 0.016068026, -0.013456117, 0.017449193, -0.018091913, -0.018953433, 0.021004671, 0.011370692, 0.0485733, -0.0156030785, -0.008286999, -0.0052033053, -0.010180974, -0.0101673, -0.091786034, -0.0076989774, 0.008628872, 0.02651566, -0.02364393, 0.028115626, -0.010632247, 0.017927814, -0.010290374, 0.019062832, -0.0022768734, -0.015890252, 0.014768909, 0.002218755, 0.0324916, 5.046899E-4, -0.0153706055, 0.0033469356, -0.031096758, 0.014495411, -0.0046392153, -0.017531242, 0.008628872, -0.01861156, -0.028197676, 0.011035657, -0.032929197, 0.011288643, 0.0020854247, 0.01874831, 0.014850958, -0.024560148, 0.006345161, -0.033312093, -0.023739653, -0.009969014, -0.02517552, -0.019828627, 0.0021896958, -0.053250123, 0.018214988, 0.0076647904, -0.0061708055, -0.008410073, -0.0074938536, 0.0058220956, -0.031260855, 0.025271244, -0.014823608, -0.011192919, -0.02094997, -0.009900639, -0.011767264, -0.013469792, 0.017339792, 0.010433961, 0.0319993, 0.003475138, 0.0010392936, -0.008047688, -0.006201574, -0.02192089, -0.026146438, 0.026447287, 0.010345073, 0.010310886, -0.0015956917, -0.0135176545, 0.023876403, -0.026050715, -0.044826373, 0.046166517, -0.041243546, -6.914379E-4, -0.022030288, 0.011692053, -0.024888346, -0.0100442255, 0.02406785, -0.02445075, 0.0044306726, -0.022659335, 0.01089207, -0.017968839, 0.020649122, 0.03090531, 0.01952778, 0.023028558, -0.010680109, -0.033312093, -0.022235412, 0.022508912, -0.002603362, 0.0023982383, -0.0026717365, 0.022946509, 0.007616928, 0.020443998, -0.0010589513, 0.008307511, -0.0122117, -0.009175869, -0.07444624, 0.027035309, -0.020963646, 0.0037264144, -0.006102431, 8.8716013E-4, 0.008758783, -0.002410204, -0.013039032, 0.019131208, -0.022604635, 0.018119263, 0.0032939452, 0.0033178765, -0.010105763, -0.014645834, -0.0032289894, -0.0012922796, 6.021236E-4, -0.005411848, -0.020703822, 0.015507354, 0.017927814, -0.01549368, -0.0017102192, 4.7862204E-4, 0.025107145, 0.025052445, -0.012601435, -0.023657603, 0.038918808, -0.029072871, 0.004550328, -0.002170893, -0.022139689, -0.016697071, -0.022823434, -0.011521117, 0.03076856, 0.010666435, -0.0070425817, -0.017339792, 4.3802464E-4, -0.019979052, -0.010577547, 0.0075006913, -0.009722865, 0.0044922098, 0.012348449, 0.01460481, 0.029565167, 0.010782671, 0.0062733674, -0.014235587, 0.010857883, -0.0129227955, 0.040723898, 0.011692053, 0.008936557, -0.024683222, 0.022577286, -0.0013572354, 0.015534705, -0.014891983, 0.0042939237, -0.008991257, 0.009463042, -9.298943E-4, 0.006269949, -0.015521029, -0.017367143, -0.007528041, 0.015329581, 0.018652584, 0.009948501, 0.0161364, -0.0021401243, 0.0041708495, -0.008280162, 0.019719228, 0.01599965, -0.006317811, -0.03757867, 0.021004671, 0.013271506, 0.016656047, -5.3887715E-4, 0.012539898, -0.0023196077, 0.028580574, -0.013278343, 0.014495411, 0.014878308, -0.008635709, -0.0014144991, 0.019226931, -0.012745021, -0.021989264, -0.0069195074, 0.03191725, 0.0029059197, 0.010174138, -0.017996188, -0.018474812, -0.02334308, -0.0011059588, -0.0069126696, -0.022440536, 0.013483467, 0.02920962, 0.028990822, 0.014509086, -0.019267956, 0.009661328, -0.036183827, 0.015001383, -0.016478274, -0.0062323427, -0.012307424, 0.031753153, 0.022549937, 8.034013E-4, 0.0321087, -3.1687343E-4, 0.055903055, 1.7371416E-4, 0.017709015, -0.023411455, -0.006984463, 0.010632247, -0.038344465, -4.252044E-4, -0.01013995, 0.004553747, -0.0038529076, -0.018050889, 0.008204949, 0.014139863, -0.020211525, 0.063506305, -0.006140037, -0.007473341, 0.0073502674, -0.020908946, -0.002049528, 0.007589578, 0.008204949, -4.1131582E-4, -0.014946682, 0.03555478, -3.976409E-4, 0.017914139, -0.02926432, 0.0021230306, -0.010878395, 0.0039452133, 0.005548597, -0.02931902, -0.0072340304, -0.0027452393, -0.02423195, 0.008827158, 4.4229804E-4, -0.011869826, -0.011945039, 0.029920716, -0.018009864, 0.005928076, -0.044252027, 0.009298943, -0.026269512, 0.018310713, 0.0015529576, 0.039000858, -0.0060682436, -0.005815258, 0.013989438, 0.009264755, 0.009886964, -0.007104119, 0.019185906, -0.027910503, -0.02523022, 0.0029777128, 0.0065639596, -0.0019777347, -0.019924352, -0.019760253 ], + "id" : "3773fc12-06de-40df-b9b9-095aac76ad1f", + "metadata" : { + "source" : "movies.csv" + } + }, + "5e3f1e1c-f000-48de-876a-3f59be3766fc" : { + "text" : "Bouffard-Jill Brooks-Gene Bryant-Josh Canning-Dominique Chionchio-Rob Coleman-Fay David-Caroline de Souza Correa-Eliana Dona-Malcolm Eager-Nina Fallon-Tim Gibbons-Roger Guyett-Chantal Harrison-Philip Harvey-Pablo Hidalgo-Ali Keshavji-Shaun R.L. King-Goran D. Kleut-John Knoll-Gervais Koffi-John M. Levin-Janet Lewin-Bai Ling-Dean Mitchell-Paul James Nicholson-Blake Nickle-Denise Ream-Anthony Reyna-Christopher Rodriguez-Hamish Roxburgh-Mike Savva-Jacqui Louez Schoorl-Lisa Shaunessy-Orli Shoshan-John Sigurdson-Christian Simpson-Paul Spence-Suzie Steen-Richard Stride-Marty Wetherill-Aaliyah Williams-Masa Yamaguchi-Matt Sloan-Paul Davies-Marton Csokas-Lawrence Foster,showdown-vision-cult figure-hatred-dream sequence-expectant mother-space opera-chancel-galactic war,/xfSAoBEm9MNBjmlNcDYLvLSMlnq.jpg,/5vDuLrjJXFS9PTF7Q1xzobmYKR9.jpg,1894-1893-1892-1891-11-140607-330459-181808-12180-89-87-217-558-348350-85-121-285-557-181812-36658-559\r\n8373,Transformers: Revenge of the Fallen,Science Fiction-Action-Adventure,en,Sam Witwicky leaves the Autobots behind for a normal life. But when his mind is filled with cryptic symbols the Decepticons target him and he is dragged back into the Transformers' war.,17.592,DreamWorks Pictures-Paramount-di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions,6/19/09,200000000,836300000,149,Released,Revenge is coming.,6.177,8087,Shia LaBeouf-Megan Fox-Josh Duhamel-Tyrese Gibson-John Turturro-Ram�_n Rodr�_guez-Kevin Dunn-Julie White-Isabel Lucas-John Benjamin Hickey-Matthew Marsden-Andrew Howard-Michael Papajohn-Glenn Morshower-John Eric Bentley-Erin Naas-Spencer Garrett-Rainn Wilson-Katie Lowes-Jonathon Trent-Walker Howard-America Olivo-Aaron Hill-Jareb Dauplaise-John Sanderford-Christopher Curry-Cas Anvar-Michael Benyaer-Deep Roy-Ruben Martinez-Ralph Meyering Jr.-Aaron Norvell-Eric Pierpoint-Annie Korzen-Sean T.", + "embedding" : [ -0.011466184, -0.03598533, -0.009541355, -0.02660265, -0.018917132, 0.025402218, 0.009030826, -0.00794078, -0.025967939, -0.043243103, 0.029362261, 0.025333228, 0.027775483, -0.0010900464, 0.0057848343, 0.0025008975, 0.015426225, -0.004801723, 0.0034564128, -0.03880013, 0.0047637783, 0.003283937, -0.016336897, 0.015274446, 0.005291554, 0.0054295347, 0.028079042, -0.017799491, -0.011714549, -0.009341283, 0.010341642, -0.005491626, 0.003552999, -0.023208328, -0.02355328, -0.011500679, 0.013156445, -0.019400066, 0.03753071, 0.0035840448, 0.008920442, 0.020752273, -0.0142947845, -0.0018903335, -0.00879626, -0.0015315841, 0.007968376, -0.010500319, -0.0028096288, 0.027637504, 0.02972101, 0.032177065, -0.028893126, -0.013397912, -6.105639E-4, -0.014901899, -0.016185118, 0.011528275, 0.003468486, 0.005984906, 0.002688896, -0.0022818532, -0.019524248, -0.017192377, -0.010555512, -0.0106452, -0.0018109947, -0.008589289, -0.0137497615, -0.0018920583, 0.009044625, 0.020227948, 0.011045343, 0.0061746296, 0.022449436, -0.038468976, -0.020407323, -0.014032622, -0.0074854447, -0.0024715764, 0.010872867, 0.0073543633, -0.011818034, 0.0137221655, 0.0077131125, 0.012701109, -0.005019042, 0.0060159517, -0.04307753, -0.0031149108, 0.0045844037, 0.043988198, 0.011956015, 5.0923444E-4, 0.010672796, 0.024022413, -0.015564206, 0.03501946, -0.009989792, -0.03937965, 0.013487599, -0.009734527, 0.0025302183, -0.012314764, -4.8050646E-5, 0.015591802, -0.0028492983, -0.0063022613, 0.01922069, 0.002028314, 0.011335102, 2.6604373E-4, 0.01802026, -0.042994738, -0.00808566, -0.024284577, 0.01766151, -0.021455975, -0.011576568, -0.022435637, 0.02106963, 0.017247569, 8.1408524E-4, -0.036785614, 0.037613496, 0.032535814, -0.0024526042, -0.014211996, 0.005877971, -0.0019300029, 0.00652648, -0.002383614, 0.016985405, 0.008568592, -0.018668767, 0.04006955, -0.034301963, -0.0014237867, -0.019372469, -0.011983611, 0.030162547, 0.03413639, -0.029279472, -0.014970889, -0.027913464, 0.0055675153, 0.013108152, 0.001574703, 0.011831832, 0.016764637, 0.014998485, 0.019206893, 0.0015824644, 0.011010848, 0.020200351, -0.009803518, -0.002901041, 0.0070404573, 0.0010969454, -0.019634632, 7.532876E-4, -0.017206173, -3.9690966E-4, -0.004622348, 0.009382677, 0.01517786, 0.008692774, -0.00901013, -0.01127991, -0.0092791915, 0.0022076888, 0.024781305, -0.036150903, 0.018254826, -0.010113974, 0.011721447, 0.0018903335, -0.019096507, -0.03482629, -0.011383395, 0.014363775, -0.0031183604, 0.030714469, 0.03581975, 0.011928419, 0.024698518, 0.0290863, -0.028975915, 0.0074647474, -0.017564924, 0.0025509153, 0.036399268, 0.018379008, -0.009086019, -0.6419959, -0.019165497, -0.005363994, -0.0065713236, -0.0014349977, 0.008858351, 6.9680176E-4, -0.009120514, -0.011956015, 0.008051164, -0.03993157, 0.016157523, 0.006198776, -0.013301325, -0.019344872, -0.029886587, 0.0027389138, -0.024229385, 0.034412347, 0.009203303, -0.016543867, 0.017909875, 0.006250519, -0.0017713252, 0.013246132, -0.0011728347, -0.00674035, -0.008313328, 0.025926545, -0.009382677, -0.02603693, 0.011052242, 0.008713472, -0.019648429, 0.039986763, 0.009624143, -0.0041532144, 0.044512525, 0.020848861, 0.02376025, -0.024353566, -0.012259572, 0.011335102, 5.316563E-4, -0.015826369, 0.028092839, -0.002007617, 0.0019420763, -0.0060263006, -0.008665178, -0.0029424352, 0.012542432, -0.001592813, -0.019620834, -0.0028130785, -0.010507219, 0.023870634, -0.034715906, 0.027623706, 0.0016868121, -0.025760967, 0.02588515, -0.0031097366, 0.020490112, 0.0036185398, 0.014736323, -0.010341642, -0.0048051723, -0.0075406367, -0.02369126, 0.013701469, 0.005056987, -0.015026081, 0.0023146237, 0.016143724, 0.013577286, 0.011983611, 0.013170243, 9.0894685E-4, 0.017261367, 0.007975276, -6.0150895E-4, 0.008906644, 0.014446563, 0.03143197, 4.911245E-4, -0.036206096, 0.0057779355, 0.003946244, -0.0081891455, 0.020338332, 0.039765995, -0.0020748824, -0.0028217023, -0.01639209, -0.005043189, -0.006716203, 0.014018823, 0.02177333, -0.060380287, -1.6881057E-4, -0.00901013, 0.04495406, -0.00907912, 0.0023404951, 0.0036771817, -0.016019542, -0.009444769, 0.020904053, -0.023249723, -0.021524966, 0.00133065, -0.026561255, -0.005929714, -0.021787127, -0.031514756, 0.008741068, 0.014998485, -0.01681983, -0.015205456, 0.0014082639, -0.008106357, -0.005305352, -0.028037647, 0.005653753, 0.02305655, 0.01149378, -0.008071862, 0.0067196526, 0.027347744, -1.563061E-4, 0.002837225, 0.020089967, -0.016695647, -0.0022249364, 0.0042946446, 0.009603446, 0.0031718279, 0.013729065, -0.014736323, -0.009762124, 0.002668199, -0.0021283498, -0.005215665, -0.010065681, -0.016930213, -0.035378214, 0.001287531, -0.007775204, -0.010700392, -0.007506142, 0.028534377, -0.008906644, 0.01730276, 0.0049707494, -0.0029303618, -0.032894563, -0.011314405, 0.0012340635, -0.013770458, 0.004646495, 0.008382319, -8.041679E-4, -0.018682566, 0.02369126, 0.007333666, -0.0061608315, 0.00538814, -0.010093277, -0.013356517, 0.03234264, -0.028644761, 0.0034909078, 0.009458566, -0.019593237, 0.027927263, -0.016543867, 0.03179072, 0.0030459205, -0.0048258696, 0.0066541117, -0.015426225, -0.028313609, -0.0011383395, 0.028893126, 0.026147313, 0.00964484, -0.011590366, -0.011645558, 0.004077325, -0.017854683, -0.023373906, -0.010817675, -0.006078043, -0.0030372967, 0.020572899, 0.00823054, 0.003304634, 0.0026440523, -1.5716847E-4, 0.03957282, 0.026423275, 0.0064540403, -0.006378151, 0.017647712, -0.027996253, -2.7315837E-4, -0.033004947, 0.010610704, -0.017771894, 0.017799491, -0.007361262, -0.011528275, 0.01524685, 0.017013002, 0.015936753, -0.0059262644, 0.008941139, -0.0060607954, 0.011900823, 0.0062436196, -0.0046982374, 0.02014516, 0.012107793, -0.030742066, 0.019331075, 0.0104244305, -0.027623706, 0.0077545065, -0.0044360748, -0.007002513, 0.0052501597, 0.0069542197, 0.0050121434, -0.0010383036, -0.020089967, 0.023953423, -7.575994E-4, 0.046278674, -0.0037496213, 0.0019524248, 0.014032622, 0.01865497, 0.008803159, 0.004356736, -0.0041773613, 0.0037358233, 0.0060297498, -0.019634632, 0.0234015, -0.016474877, 0.025967939, -0.0062746652, -0.0025560895, 0.007989074, -0.0076441225, -0.0058193295, 0.009299889, 0.04155974, 0.007285373, 0.010458926, -0.026230102, 0.018999921, 0.016102329, 0.013342719, -0.0040738755, -0.012852888, 0.008527198, -0.006226372, -0.025733372, -0.024657125, -0.0052950033, -0.008099458, 7.162053E-4, -0.0013228885, -0.007105998, -0.01099015, 0.010955655, 0.015619398, 0.015012284, 0.01141789, -0.028782742, 0.020655688, 0.03170793, -0.013673872, -0.0234015, -0.010279551, -0.013867045, -0.03532302, -0.00751994, 0.0029407104, 0.036564846, -0.012273369, 0.01588156, -0.004353286, 0.013735963, 0.010134671, -0.01581257, 0.020531505, 0.0038703543, -5.407113E-4, 0.008196045, 0.0011202296, -0.008071862, 0.028561974, -0.0088997455, -0.0070542553, -0.004463671, -0.0062401704, -0.024105202, 0.0044084783, 0.00680934, -0.03361206, 0.0016574913, -0.008706572, -0.010086378, -0.0030528195, -0.0012185407, -0.0055640657, -0.021124821, -0.015343437, -0.019538045, -0.0120043075, -9.856985E-4, 0.08063583, 0.050970014, -0.002178368, 0.016709445, -0.009582749, 0.010017388, -0.013936035, -0.018710162, -0.0040048854, -0.0136945695, 0.0059331637, -0.004843117, 0.022739194, 4.629894E-5, 0.00794768, -0.016833628, -0.0074509494, -0.015384831, -0.0074578486, -0.012811494, -0.034053598, -0.014970889, 0.016474877, 0.030714469, 0.011611063, -0.011583467, 0.0141844, 0.01750973, -0.0022646058, 0.016005743, -0.0038117126, 0.0059331637, 0.009320586, 0.009458566, 0.00503629, -0.0018713612, 0.04142176, 0.020448716, 0.024229385, -0.0037116767, -0.0068921284, 0.013397912, 0.011072939, -0.0011003949, 0.0073405653, -0.019731218, -0.012494138, 0.029113896, 0.02972101, -0.032646198, 0.014805312, -0.008175347, -0.0115420725, -0.0099621955, 0.014432766, -0.016074734, -0.006143584, -0.006836936, -0.017923674, 0.017468337, 0.0016031615, -0.018241027, 0.01574358, -0.009444769, 0.008396116, -0.015867762, 1.0197625E-4, -0.019565642, -0.0141844, -0.0015143366, -0.0011236791, -0.014377573, -0.0032649648, -0.0028855181, 0.015315841, 0.0021731935, 0.027609907, -0.002700969, 0.008837654, 4.1006095E-4, -0.03717196, -0.0312112, 0.026713034, -0.030604085, -0.005829678, 0.0071887863, -0.019137902, 0.022601213, -0.011307506, 0.013597983, -0.007637223, -0.013218536, -0.016157523, -0.00617118, 0.040179934, 0.0074164546, 0.019165497, 0.0017971966, 0.01624031, 4.6029447E-5, 0.00147208, -0.019869199, -0.0068921284, -0.020503908, -0.012073298, -0.003915198, -0.0014617314, 0.006567874, -0.0137497615, -0.02206309, -0.031597544, -0.02567818, -0.012466542, -0.0070473566, 0.0071542915, -0.0025077965, 0.019827805, 0.007319868, -0.014067117, 0.016571464, 0.011686953, -0.022394244, 0.016212715, 0.018323816, -0.00794768, 0.032315046, -0.012176783, -0.038634554, 0.0025940342, 0.04023513, -0.001677326, 0.022435637, -0.014060218, -0.003935895, -0.020931648, -0.007333666, 0.017206173, 0.0060056034, 7.459573E-4, 5.7649997E-4, -0.017965067, 0.0014367225, 0.018779153, 0.006716203, 0.0027371892, -0.026685437, 0.006184978, -0.0045430097, 0.011176424, 0.02163535, -0.018103048, 0.013501396, -0.025512604, -0.0087893605, -0.007057705, -0.034660712, -0.024298374, -0.0054640295, 0.042994738, 0.022463232, 0.037254747, -0.0039393445, 0.016005743, 0.012376855, 0.02795486, 0.01800646, -0.018199634, -0.008223641, -0.03951763, -0.0020352132, 0.009969095, 0.028755145, 0.00865828, 0.008030468, 0.011424789, 0.025429815, 0.006605819, 0.0061401343, 0.001829967, -0.018047856, -0.019303478, 6.4117834E-4, -0.017744299, -0.019896794, -0.028782742, -0.012335461, 0.044843677, 0.011790438, -0.0154400235, -0.00957585, 0.031597544, -0.0032304695, 0.0058607236, -0.022849578, 0.014653534, -0.017923674, -0.021676743, -0.027789282, -0.020062372, 0.0065575256, -0.017758096, 0.019496651, -0.011059141, -0.02255982, 0.002964857, 0.02206309, -0.0163093, -0.026519861, 0.022546021, -0.008209842, -0.005029391, -0.024974478, -0.01708199, -0.032149468, -0.023456693, 0.006354004, -0.022739194, 0.022159675, -0.015495216, -0.04575435, 0.029886587, 0.0077545065, 0.029776203, 0.0127701, 0.05149434, 0.028396396, 0.017150981, -0.018282423, 0.009127413, -0.014336179, -0.0078028, 0.01886194, 0.02113862, -0.01978641, 0.0022456334, 0.011210919, -0.00985871, -0.03179072, -0.027775483, 0.03035572, 0.022780588, 0.019413862, -0.016060935, 0.004518863, -0.022518426, 0.008092559, -0.0070335586, 0.007105998, 0.004453322, -0.022449436, -0.024422556, 0.010527915, -0.0031442316, 0.005574414, 0.008568592, -0.026988994, 0.019951988, -0.017716702, 0.007623425, -0.009851811, -0.006836936, 0.037641093, -0.003887602, 0.018668767, 7.1879243E-4, 0.01922069, -0.003659934, -1.0871358E-4, -0.0010538264, 0.03148716, -0.009955296, 0.024877893, -0.010203661, 0.0012495863, 0.026188707, 0.018337615, -0.01730276, -0.014694928, -0.020807467, -0.0031476812, 0.026368083, -0.001998993, 0.0068196887, 0.0045361104, -0.01901372, -0.014046419, 0.024505345, 0.0029872789, 0.0042049573, -0.033032544, 0.025485007, -0.0032735884, 0.010859069, 0.009458566, -0.00368753, 0.0027182167, 0.0042153057, 0.0025129707, -0.0055019744, -0.0011297157, -0.025195248, -0.024008615, -0.031238796, -0.01971742, -0.0030493701, -0.004505065, 0.010017388, -0.013584184, 0.005695147, 0.011686953, -0.01035544, -0.0098242145, -0.0020869558, -0.014667332, -0.0014729423, 0.007506142, -0.006395398, -0.013294426, -4.115701E-4, 0.030107355, 0.0044947164, 7.933882E-4, -1.6094137E-4, 0.005001795, 0.039352052, -0.0290863, 0.010679694, 0.005553717, -0.022946166, -0.0048534656, 0.02220107, 0.027333947, 0.018461797, 0.0064298934, -0.036840808, -0.007616526, -0.0046361466, 0.03176312, 0.009755225, 0.010562411, 0.019110305, 0.011286809, 0.021097226, 0.021842321, -0.0028165278, -0.032646198, 0.0059607597, -0.0022094136, -0.015660793, -0.007926983, 0.015729783, 0.010369238, -0.0015410703, -0.021925109, -0.023235925, -0.003659934, -0.013494497, -0.01680603, -0.0077407085, 0.028865531, 0.022918569, 0.0071611903, -0.0033132578, 0.014025723, 0.007105998, 0.007609627, -0.0153572345, 2.6970886E-4, 0.02240804, 0.019758815, 0.027996253, 0.011321303, -0.038055036, -0.01567459, 0.006723102, 0.009975994, 0.02233905, 0.02249083, -0.014253391, -0.002616456, -0.008858351, 0.0032597904, -0.0013358241, -0.006485086, 0.030935239, -0.036840808, -0.0098242145, 0.0076855165, 0.026519861, -0.0074992427, -0.004856915, 0.009541355, -0.0039393445, -0.0041394164, -0.010769382, -0.022890972, 0.0016290328, -0.029251875, 0.021842321, 0.012680412, -0.013632478, 0.027057985, 0.029196683, -0.0054433327, -0.0032114973, -0.015522812, 0.011997408, -0.0063609034, -0.002390513, -0.0022818532, 0.02312554, -0.034384754, 0.017054396, -0.035902537, 0.0015807396, -0.012383754, 0.009982892, 9.037726E-4, 0.03170793, 0.0036357874, -0.07125315, 0.010403734, -0.020034775, 0.005008694, -0.002461228, 0.0109418575, -0.022007897, -0.019413862, 0.0038772533, -0.0017609767, -0.021925109, -0.021152418, 0.002978655, -0.010831473, -0.016005743, 0.013784257, 0.18997161, -0.02290477, 0.001574703, 0.040400703, 0.0012401001, -0.005822779, 0.029113896, 0.012507937, -0.0130667575, 0.001943801, 4.311892E-4, 0.010955655, 0.0061815283, -0.0011598989, 0.024353566, 0.0023749901, -0.03234264, -0.023318712, -0.01709579, -0.013101253, -0.0012021555, 0.0010978078, -0.010672796, -0.03162514, 0.018765355, 7.312969E-4, -0.001823068, 0.014722524, 0.017468337, 0.011804236, -0.013384113, 0.0045706057, 0.0030700671, 0.0072370796, -0.01234236, 0.013322022, -0.008120155, -0.0074578486, 0.008575491, 0.004391231, 0.009141211, 0.0017764996, -0.0010771106, -0.008492703, -0.0051432247, 0.021690542, -0.04001436, -0.008058064, -0.024160394, 0.011342001, -0.04431935, -0.008727269, 0.008879048, 0.029803798, -0.0010555512, -4.5016155E-4, 0.010376137, 0.01000359, 0.009203303, 0.005467479, 0.0074509494, 0.030990431, -0.032232255, 0.02148357, 0.0011900822, 0.016585262, -0.01865497, -0.0029665818, 0.016585262, -0.038827725, -0.011693851, -0.026340486, -0.007982175, 0.0074992427, -0.0130943535, -0.017040597, -0.007388858, 0.0019282781, 0.0078028, 0.02064189, -0.029776203, -0.010486522, 0.0029182886, -0.010272652, -0.0058848704, -0.023677463, 0.017716702, -0.017840885, -0.0041221688, -0.019745016, -0.005802082, -0.018613575, -0.018075451, -0.008127054, -0.0071197962, -0.012728705, 0.028189426, 0.018185835, -0.015978148, 0.005084583, -0.035626575, 0.031045623, 0.019400066, -0.010727988, -0.03085245, -0.022808185, 0.0069266236, -0.0077545065, 0.03717196, -0.009237798, -0.026506063, -0.008637582, 0.004498166, -0.011604164, 0.014101611, 0.02709938, 0.00865138, 4.7818883E-4, 0.034577925, -0.02177333, 0.0060400986, -0.013825651, 0.022532223, -0.012093995, -0.011252314, -0.031128412, -0.032728985, 0.014722524, -0.0109694535, -0.024022413, 0.018668767, -0.013466901, 0.0163093, -0.0067610466, 0.0019300029, -0.006419545, 0.01908271, 0.013466901, 0.0010270927, 0.009865609, -0.014005026, -0.004818971, 0.018779153, 8.438373E-4, 3.1929562E-4, -0.02958303, 0.012259572, -0.014211996, -0.014515554, -0.033308502, -0.014129208, 0.006726552, -0.003894501, 0.016157523, 0.035598982, 0.0082719335, -0.019413862, -0.039986763, -0.008837654, 0.035378214, -0.04561637, 0.02220107, 0.014122309, -0.009051524, -0.025857555, -0.017040597, -0.17782933, 0.008002872, 0.016488675, -0.03283937, 0.021262802, 0.011535173, 0.021235207, 0.010810776, -0.0023128989, -0.016640455, 0.028079042, 0.009844912, -0.036785614, 0.0040462795, -0.0035064307, 0.009582749, -0.021193812, 0.037944652, 0.017371751, 0.0014117134, 0.031735525, -0.0126873115, -0.007913184, -0.012176783, 8.187205E-5, 0.0069611184, 0.028092839, 0.02745813, 0.0017592519, -0.008485803, -0.037061576, -0.019413862, 0.0060400986, -0.0023577425, -0.022890972, 0.0018334165, -0.017965067, -0.010238157, -0.013632478, 0.001964498, 0.025774766, 0.004339488, 0.014211996, 0.0134738, 0.018751556, 0.015840167, 0.035709366, -0.015122668, 0.014087814, -0.012797696, -0.0018765355, -0.029555432, 0.022615012, -0.003880703, 0.011638659, 0.020227948, 0.009196403, 0.012432047, 0.005495075, 0.0010538264, -0.03057649, -0.011866327, 0.0071197962, -0.013287527, -0.0104796225, -0.01589536, -0.024105202, -0.011093636, -0.035212636, 0.0060849423, -0.010907362, 3.6866678E-4, 0.016047137, 7.4811326E-4, 0.01901372, -0.0104244305, -0.03857936, 0.004391231, 0.005094932, 0.009534456, -0.015122668, 0.038551766, -0.010258853, 0.021193812, 0.0127632, -0.013411709, 0.0047775763, 0.009065322, 0.007561334, -0.0073405653, -0.005998704, -0.015274446, -0.021580158, 0.007319868, -0.0073543633, 0.0018196185, -0.0035564485, 0.013170243, 0.009155009, -1.1275598E-4, -0.0051570227, -0.011521376, -0.009527557, 0.010824574, 0.014570746, 0.0069059264, -0.0021593955, 0.019179296, 0.031873506, -0.009589648, -0.0012642468, -0.0061677303, 0.013446204, 0.021759532, -0.018889537, 0.007078402, -0.018668767, -0.024657125, 0.021262802, 0.006816239, 0.052377414, 0.0055813133, 0.006333307, -0.023015155, -0.011031545, -0.024270779, -0.09415793, -0.0030269483, 0.019469054, 0.034660712, -0.016723242, 0.040621474, -0.01000359, 0.028258417, -0.024381163, 0.025374623, -0.0042566997, -0.027913464, 0.008816957, -0.0028699953, 0.0074716466, 0.0015531435, -0.008837654, 0.0016549042, -0.005150124, 0.026092121, -0.008885947, -0.0027682348, -0.004225654, -0.013715266, -0.016723242, 0.015564206, -0.030024568, 0.025816161, 0.004291195, 9.0204785E-4, 0.016419685, -0.02950024, 0.018903336, -0.037254747, -0.031018026, -0.033363696, -0.027582312, -0.040124744, -0.01177664, -0.037834264, -0.0073543633, 0.005163922, -0.002050736, -0.018627374, -0.015757378, -0.0023439445, -0.023746451, 0.036620036, -0.011445486, -0.029472645, -0.0051294267, -0.021193812, -0.030300528, -0.007789002, 0.020186555, 0.0219803, 0.02687861, 0.010238157, -0.019234488, -0.019896794, -0.014211996, 0.013956732, -0.03283937, 0.015729783, 0.010700392, 0.007906285, -7.192236E-4, -0.015550408, 0.020821264, -0.032728985, -0.019896794, 0.031045623, -0.03256341, -0.0068058907, -0.024546739, -0.010148469, -0.030190144, -0.006305711, 0.037475515, -0.04310512, 0.015067476, -0.025802363, 0.018103048, -0.014625938, 0.0071611903, 0.013135748, 0.0014030897, -0.007105998, -0.009479264, -0.04142176, -0.0015436574, 0.018185835, -0.0016074734, -0.012956373, -0.00985871, 0.008768664, 0.014901899, -1.2482928E-4, -0.009230899, 0.0043015433, -0.0036633834, 0.0027389138, -0.07931122, 0.030272933, -0.024919286, -0.006115988, -0.012590725, -0.011176424, 0.003997986, -0.0063643525, -0.010155369, 0.03228745, 0.002554365, 0.02247703, -0.005612359, -0.018668767, -0.010748684, 0.012321663, 0.0063609034, -0.007071503, -0.0028613715, 2.3629169E-4, -0.017909875, 0.016157523, 0.025319431, 0.009368879, -0.0025647134, 0.023028953, 0.0027251157, 0.010845271, -0.013411709, -0.018848144, 0.030024568, -0.025926545, -0.010465824, -0.0022352848, -0.011956015, -0.024036212, -0.016695647, 8.524611E-4, 0.012880484, 0.008030468, -0.009210202, -0.03328091, -0.0023491187, -0.0054778275, 0.0051432247, 0.01241825, -0.027582312, 0.011976711, 0.0059331637, 0.0060814926, 0.013591084, 0.01085217, 0.0043774326, -0.022228666, 0.028755145, -0.011093636, 0.058338176, 0.003987638, -0.0035978428, -0.021028236, 0.030604085, 0.011079838, 0.019993382, -0.018751556, 0.014108511, 3.83974E-4, 0.009368879, -0.00539159, -0.003659934, -0.041007817, -0.01454315, -0.0076303245, 0.015991945, 0.03179072, 0.01624031, 0.021814724, -0.005891769, 0.008609986, 0.0023542931, 0.007747608, 0.0071542915, -0.017620116, -0.01957944, 0.03184591, 0.0021352489, 0.0212766, -0.008823856, -0.0012090545, -0.0019093058, 0.010700392, -0.0025164203, 0.010934958, 0.015909158, -0.011107434, 0.0062436196, 0.03518504, -0.01879295, -8.856626E-4, -0.0055364696, 0.034936674, -0.011617962, 0.003987638, 3.1433694E-4, -0.024877893, -0.028396396, 0.010534815, -0.02021415, -0.015771177, 0.006426444, 0.01709579, 0.024450153, 0.023318712, -0.012066399, 0.007561334, -0.033943214, 0.0077338098, -0.019455258, -0.022449436, -0.017468337, 0.03446754, 0.021580158, -5.7736237E-4, 0.030466104, 0.0021180015, 0.06065625, 0.016571464, 0.014777716, -0.029941779, -0.009989792, 0.016695647, 0.018075451, -0.005943512, -0.020931648, 0.008320227, -0.010410632, -5.851238E-4, 0.011238515, 0.036206096, -0.01978641, 0.06496124, 0.013604882, 0.0053708926, 0.020835062, -0.021856118, 0.010176065, 0.015660793, 0.025153853, -0.008451308, 2.3370454E-4, 0.010652098, 0.0064367927, -6.8084773E-4, -0.04445733, -1.12324786E-4, 0.0063816, 0.00397039, -0.0032718638, 0.009286091, -0.016447281, -0.010148469, -0.024491547, 0.016792232, 0.014681131, -0.016129926, -0.008037367, 0.0011047068, -0.005043189, -0.0020421122, -0.012162985, 0.0027389138, -0.031404372, -0.012618321, 0.004725834, 0.029555432, 0.004284296, -0.020158958, 0.013867045, 0.013542791, 0.009665538, -0.0099621955, -0.001843765, -0.012521734, -0.027347744, 0.0319287, -0.014722524, -0.012611422, -0.03397081, -0.0121146925 ], + "id" : "5e3f1e1c-f000-48de-876a-3f59be3766fc", + "metadata" : { + "source" : "movies.csv" + } + }, + "0e0b25c0-20c5-4b19-8f09-a3793acddfca" : { + "text" : ",98-13-424-197-807-16869-497-603-280-121-1422-329-85-680-105-120-122-278-274-89-1891\r\n315162,Puss in Boots: The Last Wish,Animation-Family-Fantasy-Adventure-Comedy,en,Puss in Boots discovers that his passion for adventure has taken its toll: He has burned through eight of his nine lives leaving him with only one life left. Puss sets out on an epic journey to find the mythical Last Wish and restore his nine lives.,904.25,DreamWorks Animation-Universal Pictures,12/7/22,90000000,480000000,103,Released,Say hola to his little friends.,8.284,5759,Antonio Banderas-Salma Hayek Pinault-Harvey Guill��n-Wagner Moura-Florence Pugh-Olivia Colman-Ray Winstone-Samson Kayo-John Mulaney-Da'Vine Joy Randolph-Anthony Mendez-Kevin McCann-Bernardo de Paula-Betsy Sodaro-Artemis Pebdani-Conrad Vernon-Cody Cameron-Kailey Crawford-Al Rodrigo-Bob Persichetti-Miguel Matrai-Pilar Uribe-Heidi Gardner-Joel Crawford-Januel Mercado-James Ryan-Natalia Cronembold-Paul Fisher-Aydrea Walden,fairy tale-talking dog-spin off-aftercreditsstinger-talking cat-fear of death,/kuf6dutpsT0vSVehic3EZIqkOBt.jpg,/jr8tSoJGj33XLgFBy6lmZhpGQNu.jpg,943822-1033456-505642-1011679-1058949-100088-135195-1078862-1047431-646389-10841-197158-631842-837925-536554\r\n771,Home Alone,Comedy-Family,en,Eight-year-old Kevin McCallister makes the most of the situation after his family unwittingly leaves him behind when they go on Christmas vacation. But when a pair of bungling burglars set their sights on Kevin's house the plucky kid stands ready to defend his territory. By planting booby traps galore adorably mischievous Kevin stands his ground as his frantic mother attempts to race home before Christmas Day.,9.975,Hughes Entertainment-20th Century Fox,11/16/90,18000000,476684675,103,Released,A family comedy without the family.,7.427,10519,Macaulay Culkin-Joe Pesci-Daniel Stern-Roberts Blossom-Catherine O'Hara-John Heard-Devin Ratray-John Candy-Michael C. Maronna-Hillary Wolf-Gerry Bamman-Angela Goethals-Terrie Snell-Kieran Culkin-Diana Rein-Kristin Minter-Ralph Foody-Michael Guido-Larry Hankin-Ken Hudson Campbell-Hope Davis-Billie Bird-Bill Erwin-Jeffrey Wiseman-Virginia Smith-Ray Toler-Clarke Devereux-D. Danny Warhol-Matt Doherty-Jedidiah Cohen-Senta Moses-Anna Slotky-Gerry Becker-Victor Cole-Porscha Radcliffe-Brittany Radcliffe-Peter Siragusa-Alan Wilder-Dianne B. Shaw-James Ryan-Mark Beltzman-Ann Whitney-Jim Ortlieb-Monica Devereux-Lynn Mansbach-Tracy J. Connor-Sandra Macat-Richard J.", + "embedding" : [ 0.0013177724, -0.04520224, -0.008314862, -0.038451966, -0.0051105316, 0.019963868, -0.0017080654, -0.024514154, -0.017695557, -0.04522957, 0.037686754, 0.031428404, 0.022027211, 0.0061353706, 0.0052403444, 0.015755195, 0.017777544, -0.010057089, 0.015017311, -0.031974982, -0.0055033867, 0.0048133284, -0.040255684, -0.0024664465, 0.016178796, -0.004410225, 0.027014762, -0.010186902, -0.0043623988, -0.014074459, 0.005428232, -0.021849573, -0.011765154, -0.002170951, -0.017203635, -0.006917665, 0.02305205, -0.03610167, 0.021726592, -0.015030975, 0.0101185795, 0.02165827, -0.01658873, -0.008226043, 0.00981796, 0.009708644, -0.0026850787, -0.01081547, -0.011573851, 0.027055755, 0.016903015, 0.032056972, -0.015604885, -0.026632154, -0.0042155054, -0.0058620805, -0.012776329, -0.011184412, 9.812836E-4, -0.008799952, 0.019594926, -0.014948988, -0.027547678, -0.022833418, -0.018624745, -8.8221574E-4, -0.019403623, -0.021193676, 0.00558879, 0.009995598, 0.03407932, 0.014580046, 0.011040934, 0.003815818, 0.024254529, -0.005930403, -0.02637253, 0.0068937517, 0.0021829074, 0.020852063, 0.021876901, -0.01621979, -0.0089570945, 0.008697469, 0.01519495, 0.01703966, -0.0028507612, 0.03347808, -0.059140056, 0.0041198535, 0.004003705, 0.034051992, 0.0014305047, 0.009408024, 0.008984424, 0.016684383, -0.011710497, 0.022491805, -0.013862658, -0.03437994, 0.0013228966, -0.01519495, 0.0016687799, -0.01383533, 0.004410225, 0.01601482, -0.016547738, -0.023557637, 0.015782524, 0.018105492, -0.008164552, 0.013165768, 0.02365329, -0.03787806, 0.011054599, -0.027902955, 0.01534526, -0.006535058, -0.020196164, -0.024377508, 0.018255802, 0.031319086, 0.007440333, -0.03834265, 0.026112903, 0.026563833, -0.015973827, -0.022177521, -0.016233454, -0.020537779, 0.0452569, -0.018419776, 0.008936598, -0.0015124918, -0.038725257, 0.049164955, -0.036566265, 0.0061797807, -0.014880666, -0.035117824, 0.025197381, 0.0280396, -0.013165768, -0.001882288, -0.01102727, -0.0037679921, 0.009940941, -0.009237218, 0.017244628, 0.0056844414, 0.028722826, 0.014976317, 0.0015176161, 0.020988706, 0.021986218, 0.0022307334, 0.0024339932, -0.004317989, 0.007652133, -0.016875686, -0.013664523, -0.010111747, 0.0047381734, -0.012366394, -0.0010367957, 0.03033524, 0.027697988, -0.0036176825, 0.0017610154, 0.0050353766, -0.002353714, 0.036456946, -0.023188695, 0.021972554, -8.463464E-4, 0.019977532, -0.0036484275, -8.040718E-4, -0.035691734, -0.013568872, 0.0042872443, -0.004106189, 0.021945223, 0.043617155, -0.0049431412, 0.003031816, 0.011881303, -0.03757744, 8.177363E-4, -0.017900525, -0.0072695264, 0.015782524, -8.595839E-4, -0.01057634, -0.63315934, -0.02477378, -0.0115875155, -0.017900525, 0.02030548, 0.031947654, 0.008909269, -0.0027619416, -0.04296126, -0.0071875392, -0.022150192, 0.02552533, 0.034817204, -0.0074061714, -0.021876901, -0.0052505927, 0.009230386, -0.026208555, 0.020729082, 0.0044512185, -0.0060533835, 0.010473857, 0.005049041, 0.011778818, 0.0036996696, -0.015864512, 0.009148398, -0.010514851, 0.014921659, -0.011040934, -0.0066682873, 0.0063027614, 0.013548374, -0.008150888, 0.04331654, -5.2651117E-4, -0.027424697, 0.044846963, 0.037085515, 0.038588613, -0.037085515, 0.003265821, 0.0108906245, 0.00864281, -0.025661973, 0.01138938, 0.024268193, 0.011218573, -0.0037304147, -0.022614785, -0.007440333, -0.002900295, 1.221667E-5, -0.00894343, -0.015973827, 0.0015210322, 0.008615482, -0.042551324, 0.033696715, -0.009298708, -0.0017217299, 0.01990921, 0.021193676, 0.011860806, -0.005674193, 0.036511604, -0.005722019, -0.019594926, 0.012667012, -0.019540267, 0.015058304, 0.010665161, -0.02517005, -0.00558879, 0.008813618, 0.008041572, 0.016602395, -0.004031034, -0.018324126, 0.024063224, 0.0058415835, -0.0046527702, -0.006108042, 0.005435064, 0.025648309, -0.007939088, -0.02948804, 0.0069620744, -0.0011384255, 0.0090732435, 0.019526603, 0.0259216, 0.008567655, -0.013104278, -0.016096808, -3.6552598E-4, -0.0114782, 3.424671E-4, 0.0134458905, -0.062091593, -0.017668229, -0.014566381, 0.0089570945, -4.863716E-4, 0.020168835, 0.0030471885, -0.0046698507, -0.0032214113, 0.017326616, -0.017012332, 6.319842E-4, 0.006500897, -0.0028080596, -0.018665738, -0.006261768, -0.029925305, 0.023666954, 0.0031872499, 0.0035356954, 0.011471367, -0.0011170747, 0.015823517, 2.792687E-4, -0.02752035, 0.0023178447, 0.031182442, -0.012776329, 0.0022085286, 0.0059884773, 0.0038568117, 0.0020462624, -0.0076453006, 0.013814833, -0.016698048, 0.005127612, 0.009059579, 0.020742746, -7.737536E-4, 0.018747725, 0.0014305047, -0.034434598, -0.006183197, -0.014498059, -7.2507374E-4, -0.0033870935, -0.014539053, -0.022300502, 0.0010077585, 0.0050080474, 0.010432864, -0.018091828, -0.0011469659, 0.004314573, -0.0055785417, 0.015249607, 0.0062890965, -0.013924149, -0.005879161, 0.01776388, -0.021945223, 0.0016030193, 0.037686754, -0.010494353, -0.0025808867, 0.005804006, 0.017859532, -0.008444675, 0.0056092865, 0.0024681545, -0.031619705, 0.005595622, -0.008963927, 0.0011589223, 0.01332291, -0.013220426, 0.02305205, -0.018132823, 0.008062068, -0.008068901, -0.010439696, 0.015153956, -0.0042120893, -0.021029701, -0.006265184, 0.016233454, 0.031018468, 0.016260782, -0.007378842, -0.025416013, 0.0070167324, -0.0070372294, -0.013466387, -0.01945828, 0.0020052688, -0.014511723, 0.02020983, -1.9226411E-4, 0.011423541, 0.0295427, 0.013404897, 0.032494236, 0.013083781, -0.012181922, -0.016028486, 0.0013758467, -0.050613392, 9.4712223E-4, -0.034024663, 0.031018468, -0.013486885, 0.021972554, -0.015071969, -0.020947713, -0.010296218, 0.007877598, 0.024445832, -0.013295581, 0.004263331, -0.010596838, -3.7385282E-4, -0.011273231, -0.013227258, 0.012680678, 0.018269468, 0.0042872443, 0.004468299, -0.0020548026, -0.0076248036, -0.011724161, -0.005807422, -0.019157661, 0.008396849, 0.010439696, 0.0034451678, 6.482108E-4, -0.009674482, 0.03836998, -0.00198648, 0.04320722, -0.0045058765, -0.014429736, 0.020811068, 0.012639684, 0.008601817, -0.019881882, -0.010562676, 0.014006136, 0.019212319, -0.009360198, 0.026481846, -0.018529093, 0.013459555, -0.0053940704, 0.015563891, -0.0024152044, -0.021261998, 5.4017565E-4, 0.02075641, 0.032548893, 0.015973827, 0.0031206354, -0.033396095, 0.012694342, 0.010022928, 0.013377568, -0.0043794797, -0.027178736, -0.00873163, -0.019717906, -0.034051992, -0.025552658, -0.01030305, -0.009626657, 0.0031445483, -0.0031411322, -0.013965143, -0.0044375537, 0.0015996032, 0.0133297425, 0.02078374, -0.009551502, -0.022040876, 0.024527818, 0.017271956, -0.011758322, -0.0067400257, -0.009947773, -0.02075641, -0.030116608, -0.004762086, -0.009018585, 0.02335267, -0.009811128, 0.008178217, -0.0018447106, -0.017176306, 0.01130056, -0.027684323, 0.00882045, 0.026809795, -0.008827282, -0.0029139596, -0.014730356, -0.013924149, 0.024186205, -0.008772624, 0.0043794797, -0.0127489995, -0.0035493597, 0.015235943, -0.0060841287, 0.010084418, -0.038779914, 0.019103004, -0.026399858, 0.0023280932, -0.008492501, 0.008936598, 0.026044581, -0.0044580507, -0.019062009, -0.021794913, -0.01893903, 0.012940303, 0.07515488, 0.029952634, 0.01758624, 0.012093103, -0.005219848, 0.0030215676, -0.02163094, -0.015591221, -0.0125372, -0.010979444, 0.02048312, -0.010883792, 0.026030917, 0.0012400554, 0.021466965, -0.0083763525, -0.00836952, 0.005885993, -0.013930981, -0.0071260487, -0.02275143, -0.0214533, 0.016124137, 0.041157544, -0.011491864, -0.017162642, 0.026659485, 0.014880666, -0.0022290254, 0.012161425, -0.008977592, -1.932249E-4, 0.0056912736, 0.011888135, 0.005223264, 0.010145908, 0.020674422, 0.031455733, 0.014907994, 0.011321058, 0.0095378375, 0.005571709, -0.0028610094, 0.0012058942, 0.016055815, -0.025566323, -0.023844592, 0.021726592, 0.0401737, -0.038861904, 0.03148306, -6.7810196E-4, -0.013842162, -0.004232586, 0.027465692, -0.0017798041, -0.0055477964, -7.391653E-4, -0.005284754, -0.0050832024, 0.0039319666, -0.031373743, 0.008533495, -0.008390017, -0.0054965545, -0.022970064, -0.027479356, -0.01332291, -0.031127783, 0.011771986, -0.0041164374, -0.023393663, -0.019062009, -0.014306756, 0.013268252, 0.0015594637, 0.024978748, -0.00873163, -6.473568E-4, 0.014457066, -0.028504195, -0.037960045, 0.012072606, -0.018515429, 0.0076384684, 0.0133844, -0.01734028, 0.024254529, -0.013623529, 0.0030950145, 0.011573851, -0.0036142664, -0.023489315, -0.0014629579, 0.03427062, -0.0052710897, 0.024377508, 0.025484335, 0.0039148857, 0.002744861, 0.0058142543, -0.013889988, -0.016233454, -0.018501764, -0.009776966, -0.021234669, -0.012318567, 0.008963927, -0.024418503, -0.021425972, -0.01978623, -0.018624745, -0.008403681, 0.0011947918, 0.011034102, 0.009920443, 0.002199988, 0.02836755, -0.0079527525, 0.008253372, 0.0015799605, -0.007085055, 0.0035835211, 0.027424697, -0.011273231, 0.035063166, -0.01818748, -0.021439636, -0.010917954, 0.025129057, 0.013630361, 0.014798678, -0.006507729, -0.015878176, -0.028695498, -0.020510448, 0.016301775, 6.8621524E-4, -0.0011486739, 0.0045297896, -0.016670719, 0.009059579, 0.011047767, -0.007317352, 0.0063130097, -0.02864084, 7.05004E-4, -0.016780034, 0.01534526, 0.025784954, 0.005667361, 0.01072665, -0.010104915, -0.0025791787, -0.0051822704, -0.020442126, -0.017381273, -0.008540327, 0.03836998, 0.015235943, 0.03894389, 0.010344044, 0.021986218, 0.0023981237, 0.008137223, 0.0143750785, -0.020401133, -0.006661455, -0.03265821, 0.007378842, 0.0036757567, 0.026454516, 0.0046117767, 0.00361085, -0.015987491, 0.013582536, 0.014580046, 0.016848357, -0.013240923, -0.018310461, -0.008273869, 0.0024784028, -0.027110413, 0.009790631, -0.01978623, -0.003949047, 0.023065714, 0.001725146, -0.017832203, -0.0077272877, 0.036128998, -0.012154593, 0.03151039, -0.019048344, -7.3233305E-4, -0.007597475, -0.01918499, -0.016793698, 0.0045878636, -0.002609924, -0.01718997, 0.013370736, -0.01534526, -0.014525387, 0.011689999, 0.024609806, -0.020537779, -0.034844533, 0.016288111, -0.002608216, -0.017681893, -0.035555087, -0.013514213, -0.025047071, 0.003788489, -0.0050285445, -0.014347749, 0.004181344, -0.024582477, -0.030307911, 0.0048816507, -0.019007351, 0.029952634, 0.007317352, 0.055696595, 0.030963808, 0.009606159, -0.022560127, 0.011771986, 0.002872966, 0.0026065079, 0.021576282, 0.038779914, -3.6766106E-4, 0.0013946354, -0.003658676, -0.0010154449, -0.03815135, -0.049137626, 0.020373804, 0.030581202, 0.01713531, -0.01576886, -0.0019813557, -0.009565166, 0.014757684, -0.012550864, -0.0043009087, -0.0021572865, -0.024514154, -0.012701174, -0.0016875686, 9.3260367E-4, 0.009756469, 0.009387528, -0.031346414, 0.018419776, -0.026017252, 0.009011753, -0.007850269, -0.021098023, 0.023120373, -0.035555087, 0.015440911, -0.0023964157, -5.5213214E-4, 0.013206761, 0.0025467256, 0.002538185, 0.036183655, -0.01591917, 0.0046527702, -0.009483179, 0.0015295725, -8.992964E-4, 0.017203635, -0.02105703, -0.033614725, -0.0229564, -0.008485668, 0.0337787, 0.013377568, 0.01060367, -0.0057732607, -0.0093055405, -0.0048918994, 0.0038773085, -0.008171385, 0.012366394, -0.01878872, 0.013316077, -0.022573791, 0.0038089857, -0.007822939, 9.3431177E-4, 0.018433442, 0.0016781742, 0.018870706, -0.00794592, -0.008068901, -0.02552533, -0.018993687, -0.043398526, -0.027561342, -0.020770075, -0.0121136, 0.012557697, -0.005571709, 0.004109605, -0.0062276064, -0.012079438, -0.014716691, 0.005674193, -0.0043555666, 3.185542E-4, 0.015960163, -0.013288748, -0.020168835, 0.0025586819, 0.04063829, 1.4721388E-4, -0.0047962475, 0.0021248334, 0.005301835, 0.039763764, -0.038014702, 0.029870648, -0.0012554281, -0.02435018, -0.021849573, 0.0021077527, 0.023680618, 0.022396153, -0.014197439, -0.034489255, 0.008635978, -0.007030397, 0.024855766, -0.008697469, 0.0023929996, 0.0312371, 0.019731572, 0.020278152, 0.024664463, -0.009387528, -0.019676913, -0.0042018406, -0.0019130332, -0.013623529, -0.005961148, 0.0058518318, 0.026126567, 0.0010308174, -0.0021453302, -0.03440727, 0.008512998, -0.013336575, -0.033040818, -0.0053428286, 0.024158876, 0.054548774, -0.006685368, 0.005889409, 0.022683108, -0.0051002833, 0.016670719, -0.0354731, -0.015085633, 0.019567598, 0.014921659, 0.014662033, 0.011375715, -0.01619246, -0.009107404, 0.007986913, 0.033286776, 0.007816107, 0.04984818, -0.021562617, -0.017599905, -0.012755832, 0.009196224, 0.008663308, 0.004099357, 0.02404956, -0.03560975, -0.020961378, 0.011081928, 0.009469515, -0.009858953, -0.012544032, 0.0069825714, -0.022833418, -0.010139076, -0.012735335, -0.0044512185, -0.0050046314, -0.024363844, 0.0075086555, 0.012263909, -0.0014176943, 0.02864084, 0.012298071, -0.009339701, -0.0013758467, -0.001307524, -0.017394938, -0.013609865, -0.00836952, 0.005284754, 0.018624745, -0.03260355, 0.014716691, -0.018406112, -0.004365815, -0.014197439, 0.021111688, -0.009346534, 0.035035837, 0.008676972, -0.05534132, -0.0029276242, 0.0018634993, 0.010958947, -0.009141566, 0.0030523129, -0.034461927, 0.0033102308, -0.008984424, 0.0061524515, -0.029160092, -0.014648369, 0.006784436, -0.011505528, -0.013992472, 0.020387469, 0.19556665, -0.0141427815, 0.022218514, 0.044027094, 0.008444675, -0.006063632, 0.019895546, 0.026891781, 0.0047108443, 0.013541542, -0.0057015223, 0.0049294764, 0.0073310165, 0.005513635, 0.0138694905, -0.008390017, -0.027233394, -0.021712927, -0.030471886, -0.028750157, -0.00397296, -0.0079117585, 0.0023981237, -0.018132823, 0.019950204, 0.005540964, -0.015358924, 0.00996827, 0.012796826, 0.0043487344, -0.026604826, -0.0033461, -0.0141427815, 0.009162063, -0.018091828, -0.0055238833, -4.0651957E-4, 0.004242834, 0.026290542, 0.0068937517, 0.0047894153, 0.0063813324, -0.01015274, -0.013787503, 0.009250882, 0.028230904, -0.020934049, 0.0036655082, -0.02407689, 0.013664523, -0.028695498, 0.0011623385, 0.035090495, 0.013739678, -0.022983728, -0.0014458774, 0.007228533, -0.0014569798, -0.0047415895, 0.010316715, 0.024104219, 0.040583633, -0.043152563, 0.015276937, -0.0029395805, 0.019007351, -0.03577372, -0.018119158, 0.010945283, -0.04211406, -0.012626019, -0.002013809, -0.019840887, 0.008137223, -0.0054009026, -0.019403623, -0.013090613, 0.014224769, 0.011635342, 0.01631544, -0.035965025, -0.022150192, -8.864859E-4, -0.013370736, -0.026563833, -0.015782524, 0.009100572, -0.01574153, -0.0010060505, -0.0197589, -0.0113962125, -0.013541542, -0.009428521, 0.005199351, -0.005295003, 0.020387469, 0.013302413, 0.021029701, -0.00894343, -0.013309245, -0.02836755, 0.013767007, 0.034844533, -0.004751838, -0.026960103, 1.2991972E-4, 5.666507E-4, 0.008232875, 0.025579987, -0.018720396, -5.043063E-4, -0.030034622, -0.0044512185, -0.01591917, 0.0072012036, 0.011314225, 0.01561855, 0.004024202, 0.0070167324, -0.015386253, -0.0051344447, -0.024240864, 0.020018525, 0.0062583517, -0.0019386542, -0.021343986, -0.034844533, 0.008970759, 7.4898667E-4, -0.0337787, 0.02522471, -0.022368824, -0.007153378, 0.0031718775, -0.015686871, 0.017476926, 0.02667315, 0.010829135, 0.00501488, 0.004857738, -0.0072626937, -0.0033768453, 0.006562387, 0.013582536, 0.014634704, -0.040310342, 0.027820969, -0.006036303, -0.010829135, -0.03574639, -0.01561855, -0.014457066, 0.003942215, -0.0010478981, 0.04033767, 0.00407886, -0.028394878, -0.019362628, -0.0109316185, 0.043453183, -0.040365, 0.005281338, 0.015809853, -0.002978866, -0.021029701, -0.015358924, -0.17545247, 0.010508019, 0.01009125, -0.019212319, 0.023967573, 0.007392507, 0.026304206, 0.015495569, 0.013145271, -0.031264428, 0.013240923, 0.022696773, -0.032193616, -0.008472004, 0.005568293, 0.024486825, -0.010740315, 0.041430835, 0.031729024, -0.0070918873, 0.041758783, 0.013575704, -0.0067571066, -0.0027021593, 0.004164263, 0.0100775855, 0.016711712, 9.154163E-5, -0.0060738805, -0.027411032, -0.049328927, -0.016452085, 0.006856174, 0.021439636, -0.02332534, -0.006716113, -0.002608216, -0.004328238, 0.0109316185, -0.0014168402, 0.038424637, 0.019772565, 0.025907936, 0.011990619, 0.007980081, -9.539545E-4, 0.02697377, -0.0044033923, 3.8089856E-4, -0.016028486, -0.011280064, -0.021972554, 0.01477135, -0.011054599, -0.009763301, 0.01616513, -0.009633489, 0.008663308, 0.013623529, 3.8751733E-4, -0.018993687, -0.011642174, 0.007980081, -0.019348964, 0.0019779396, -0.020360138, -0.007242197, 0.025252039, -0.03033524, 0.0037987374, -0.013466387, 0.011580683, 0.019840887, 0.012619187, 0.0023349253, -0.0124415485, -0.038998548, -0.011942793, -0.0022375656, 0.02048312, -0.010542179, 0.05072271, -0.009250882, -6.0764427E-4, 0.012796826, 0.0011589223, 0.015864512, -0.0034127147, 0.016752705, -0.013582536, 0.008321694, -0.012017948, -0.022560127, -0.0068049324, 0.0010265473, 0.017777544, -0.010624167, 0.00845834, 0.0076248036, -0.004598112, -0.0042701634, -0.020742746, -0.009018585, 0.020168835, 0.017681893, 0.008622314, 0.0040549473, 0.01081547, 0.021781249, 0.0053701573, 0.009776966, 0.009742805, 0.027902955, 0.013056451, -0.01803717, 5.5255916E-4, -0.0069552423, -0.012031612, 0.01130056, -0.011245903, 0.029815989, -0.0010060505, -0.0015611717, -0.009503676, -0.01688935, 0.0025723465, -0.09297341, -0.012783161, -0.0049738865, 0.023694282, -0.038124017, 0.026755136, -0.012530368, 0.019130332, -0.002119709, 0.012619187, 0.00845834, -0.013541542, -0.0060499674, -0.009742805, 0.019745236, 6.469298E-5, -0.0019728155, -0.0130974455, -0.018283132, 0.026700478, -0.016998667, -0.007925423, 0.0031940823, -0.023885585, -0.038807247, 0.00758381, -0.03093648, 0.016370099, 0.017353944, 0.019048344, 0.021412307, -0.0091893915, 0.010173237, -0.03834265, -0.0143340845, -0.023967573, -0.020141507, -0.024951419, 0.0061012097, -0.047962476, 0.03263088, 0.010166405, 8.6855126E-4, -0.018843377, 0.0017575993, -0.0051891026, -0.03183834, 0.034161307, -0.020715417, -0.036292974, 6.503459E-4, -0.020729082, -0.021384979, -0.013425394, 0.01858375, 0.01208627, 0.0124005545, 0.010289386, -0.005831335, -0.025429677, 0.0063574193, -0.007850269, -0.034844533, 0.0280396, 0.01060367, 0.005899658, 0.0057083545, -0.011956458, 0.025457006, -0.020004861, -0.034024663, 0.025839614, -0.03864327, 0.009483179, -0.0066580386, -0.014689363, -0.008178217, -0.00882045, 0.019007351, -0.020428462, 0.013527878, -0.02894146, 0.0034929938, -0.0038124018, 0.0038602278, 0.015481904, 0.03574639, 0.016260782, -0.004495628, -0.029406054, -0.0027516934, 0.020045856, 0.0033888016, 0.00407886, -0.0045058765, 0.0103508765, 0.0022922237, 0.0059372354, 0.017258292, 0.016862022, -0.010924786, -3.3627538E-4, -0.07832505, 0.02280609, -0.0090732435, -0.009797463, -0.009838456, -0.016274447, 0.003576689, -0.016793698, -0.0010000722, 0.02105703, -0.012079438, 0.031892996, -0.0072695264, 0.0019540268, -0.0028422207, 0.0065897163, 0.002847345, -0.012988129, -0.004338486, 2.0678266E-4, -0.015030975, -0.002717532, 0.028777486, 7.3788426E-4, -0.0017712638, 0.016028486, 0.018515429, 0.016561402, -0.0024134964, -0.008738463, 0.020947713, -0.02492409, 1.3824654E-4, -5.935527E-4, -0.012414219, -0.021945223, -0.0193353, 0.0019813557, 0.024090555, 0.0096129915, -0.009039082, -0.0271924, -0.009039082, -0.009674482, 0.00909374, 0.010788141, -0.0214533, 0.016247118, 0.007501823, 0.011485032, 0.03987308, 0.0024613221, 0.0031343, -0.015454575, 0.033396095, -0.009469515, 0.052799717, -5.4572686E-4, -0.021016037, -0.016206125, 0.016643388, 0.010460192, 0.024063224, -0.027984943, -0.0045366217, 0.0014287967, 0.007003068, -0.004522957, -0.0011597764, -0.014798678, 0.0031530887, 0.0026628738, 0.012270741, 0.03008928, 0.014006136, 0.013268252, -0.02205454, 0.011847141, -0.008390017, 0.023298012, 0.025416013, -0.023953909, -0.020496784, 0.0242272, -0.004700596, 0.030171266, -0.0106993215, 0.0051036994, 0.0045297896, 0.013090613, -0.0337787, -0.002165827, 0.013808001, -0.004598112, -0.005981645, 0.029515369, 8.967343E-4, -0.011259567, -0.0037679921, 0.01779121, -0.0030403563, 0.00361085, -0.022546463, -0.0337787, -0.019430952, 0.0014680822, -0.02063343, -0.01634277, 0.013104278, 0.016479414, 0.031647034, 0.006172948, -0.0051310286, 0.009223553, -0.026509175, 0.018652074, -0.003945631, -0.019171325, -0.013350239, 0.047361236, 0.010501185, 0.026932774, 0.013808001, -0.012352728, 0.04003705, 0.010016095, 0.025757626, -0.041950084, 0.017750215, 0.003317063, -0.010145908, -0.0025142722, -0.018050835, -0.002381043, 0.005458977, -4.517833E-4, 0.024732787, 0.03806936, -0.009694979, 0.06957975, 0.018529093, 0.009011753, 0.008936598, -0.0059748124, 0.0011862514, 0.013671355, 0.0039080535, -0.017121647, 0.0015022435, 0.01688935, -6.324112E-4, 0.019307971, -0.03233026, 0.01561855, -0.0068356777, -0.0022273173, -0.010432864, -8.876602E-5, -0.006186613, 0.009257714, -0.00788443, 0.012052109, 0.013712348, -0.021808578, -0.010596838, 0.018570086, -1.4934897E-4, -0.0011546522, -0.043890446, 0.008403681, -0.012216084, 0.0027397368, -0.008062068, 0.031127783, -0.010637831, -0.006699032, 0.012263909, 0.02419987, 0.011423541, -0.0119359605, 0.0069040004, -0.022163857, 0.0037679921, 0.009674482, -0.006951826, -0.00339905, -0.023298012, -0.009660818 ], + "id" : "0e0b25c0-20c5-4b19-8f09-a3793acddfca", + "metadata" : { + "source" : "movies.csv" + } + }, + "a95559b9-22a9-4c12-9d86-10fc447e9664" : { + "text" : "646,10779,Johnny Depp-Javier Bardem-Geoffrey Rush-Brenton Thwaites-Kaya Scodelario-Kevin McNally-Golshifteh Farahani-David Wenham-Stephen Graham-Angus Barnett-Martin Klebba-Adam Brown-Giles New-Orlando Bloom-Keira Knightley-Paul McCartney-Delroy Atkinson-Danny Kirrane-Juan Carlos Vellido-Rodney Afif-Rupert Raineri-Stephen Lopez-Nico Cortez-Mahesh Jadu-Bruce Spence-Justin Smith-John Leary-Anthony De La Torre-Finn Ireland-James Mackay-Bryan Probets-Will Ward-Lewis McGowan-Alexander Scheer-Richard Piper-Michael Dorman-Rohan Nichol-Paul Armstrong-Robert Morgan-Andreas Sobik-Goran D. Kleut-Scott G. Anderson-Travis Jeffery-Andrew Fraser-Akos Armont-Sean Lynch-Ben O'Toole-Dakota Askew-Jamie Carter-Joe Klocek-Derani Scarr-Zoe Ventoura-Lenny Firth-Akshay Caplash-Jordan Fulleylove-Mivon Prince-Leyva-Rafael Torrijos-James Fraser-Ken Radley-Hannah Walters-Jonathan Elsom-K. Todd Freeman-Matthew Walker-Darcy Laurie-James Lawson-Brooke Chamberlain-Jessica Green-Haley Madison-Kiara Freeman-Piper Nairn-Suzanne Dervish-Ali-Donnie Baxter-Winnie Mzembe-Christie-Lee Britten-Mollie McGregor-Sophia McGregor-Garreth Hadfield,sea-ship-sequel-artifact-treasure map-pirate-period drama-monkey-swashbuckler-ghost-caribbean sea-trident-c����_p bi��n-h�_�i t�_�c,/qwoGfcg6YUS55nUweKGujHE54Wy.jpg,/7C921eWK06n12c1miRXnYoEu5Yv.jpg,1865-285-58-22-297762-283995-259316-335988-315635-282035-337339-118-122917-321612-263115-339846-324852-284052-57158-12445-12444\r\n601,E.T. the Extra-Terrestrial,Science Fiction-Adventure-Family-Fantasy,en,An alien is left behind on Earth and saved by the 10-year-old Elliot who decides to keep him hidden in his home. While a task force hunts for the extra-terrestrial Elliot his brother and his little sister Gertie form an emotional bond with their new friend and try to help him find his way home.,42.835,Universal Pictures-Amblin Entertainment,6/11/82,10500000,792965500,115,Released,He is afraid. He is alone. He is three million light years from home.,7.507,10051,Henry Thomas-Drew Barrymore-Robert MacNaughton-Peter Coyote-Dee Wallace-Erika Eleniak-K.C. Martel-C. Thomas Howell-Sean Frye-David M. O'Dell-Richard Swingler-Frank Toth-Robert Barton-Michael Darrell-David Berkson-David Carlberg-Milt Kogan-Alexander Lampone-Rhoda Makoff-Robert Murphy-Richard Pesavento-Tom Sherry-Susan Cameron-Will Fowler Jr.", + "embedding" : [ 0.01000189, -0.024531662, -0.014164839, -0.04354877, -0.020057844, 0.039412852, -0.010589839, -0.0033232633, -0.025923818, -0.023599055, 0.01075879, 0.028978448, 0.005021219, 2.3822069E-4, 0.010454678, 0.01897656, 0.017895274, -0.012549669, 0.020598488, -0.015016351, -1.6831727E-4, -0.008508365, -0.012765926, 0.011704914, 0.0012662866, 0.018327788, 0.035331, -0.009103072, -0.011921172, -0.007825803, 0.0069337427, -0.017138373, 0.002069648, -0.025802173, -0.03224934, 0.008143431, 0.0011682952, -0.035547256, 0.03722325, -8.6587307E-4, 0.01392155, 0.010218147, -0.011590028, -0.0135431, 0.00288737, 0.01481361, 0.012015784, -0.015597542, -0.011894139, 0.024693856, 0.026586106, 0.03495255, -0.02732949, -0.030465217, -0.014489224, -0.004642769, -0.02309896, 0.0011640714, -0.00622077, 0.009650473, 0.0070891776, -0.016354442, -0.030059734, -0.017516823, -0.02354499, -0.0042913514, -0.00759603, -0.022085255, 0.004139296, 0.011475141, 0.011907656, 0.019922683, 0.024450567, 0.014164839, 0.031951983, -0.026450945, -0.018773818, -0.0059200376, -0.008379962, -0.0057105385, 0.010177599, -0.01024518, -0.014070227, 0.003220203, 0.017543856, 0.0105222585, -0.0122793475, 0.031438373, -0.025166918, 0.010975047, -0.0073324665, 0.042575613, -0.0017655364, 0.0033536742, 0.0056699906, 0.01931446, -0.009413941, 0.035844613, -0.018327788, -0.056389034, -0.009927552, -0.0017351252, -0.0025207466, -0.0158138, 0.019882135, 0.0028164105, -0.004369069, 0.005751087, 0.01079258, 0.009089556, 0.024247825, -0.015827315, 0.014691966, -0.02797826, -0.033898298, -0.01632741, 0.025085822, -0.022855671, -0.0131105855, -0.031330246, 0.03189792, 0.019611815, 0.006328899, -0.047630623, 0.04276484, 0.042034972, 0.010022164, -0.025288563, 0.01075879, -3.8225128E-4, 0.013462003, -0.0042913514, 0.027451133, 0.011623818, -0.025653496, 0.047252174, -0.024977693, 0.0019361767, -0.0069337427, -0.02835671, 0.02550482, 0.0323034, -0.028924385, -0.014327032, -0.02773497, 0.013935066, 0.011434593, -0.0041021267, 0.008812476, 0.019949716, 0.02120671, 0.033303592, 0.016057089, 0.011752221, 0.02873516, -0.012725377, -0.0150569, -0.016503118, -0.008393478, -0.027707938, -0.012117155, -0.009258507, 5.254371E-4, -0.00519017, 0.01474603, 0.03468223, 0.005193549, -0.016313894, -0.0076433364, 0.01089395, -0.0095558595, 0.024531662, -0.032492626, 0.019098204, 0.007170274, 0.01897656, -3.7433172E-5, -0.009197684, -0.03722325, -0.019300945, -0.003980482, 0.0022149456, 0.019125236, 0.04419754, -0.0051259687, 0.00219974, 0.015962476, -0.01240775, 0.015624574, -0.009724811, 0.0019395557, 0.02900548, 0.007548724, 0.004652906, -0.6262805, -0.03151947, 0.0036392012, -0.007981238, 0.012678072, 0.016449055, 0.0045109876, -0.0054875235, -0.019449621, -0.007366257, -0.03592571, 0.019503687, 0.015840832, -0.013448487, -0.01708431, -0.003585137, 0.0016134806, -0.026910491, 0.020409262, -0.003933176, -0.03497958, 0.026248204, 0.008096125, -0.004994187, 0.00381491, 0.008211011, 0.0014631143, -0.022666445, -8.401081E-4, 0.0030377363, -0.009907277, 0.00247513, 0.0053016776, 0.010123535, 0.03722325, 0.0011716741, -0.02044981, 0.036466353, 0.014718998, 0.034601133, -0.026545556, -0.012225283, 0.019828072, -0.011211578, -0.02334225, 0.023180056, 0.011076418, 0.008515122, -0.007406805, -0.008089366, -0.007548724, 0.009596408, -0.0105019845, -0.016854536, -0.006322141, -0.012076607, 0.004338658, -0.0391155, 0.020355199, 0.0019716565, -0.026045462, 0.035222873, 0.0021456757, 0.02949206, -0.004389343, 0.036979962, 0.0036155481, -0.005933554, 0.014259451, -0.036925897, 0.01701673, 0.008042061, -0.01742221, -0.009076039, 0.008778686, 0.007048629, 0.04025085, -9.4105623E-4, -0.010664177, 0.012184735, 0.0043724477, -0.0028299268, -0.0075352076, 0.018746786, 0.03971021, 0.0021591918, -0.026599621, 0.008069092, 0.011900898, 0.004024409, 0.004558294, 0.027653875, 0.0041021267, 0.008379962, -0.016273346, -0.015165028, -0.0132457465, 0.0034381498, 0.036898866, -0.073959924, -0.0037270556, -0.015029867, 0.040440075, -0.0066634216, 0.021247258, 0.005196928, -0.0015796904, -0.009035491, 0.023639603, -0.0042879726, -0.008778686, 0.008704348, -0.0122388, 0.0042237714, -0.008312382, -0.030005671, 0.008792202, 0.0038757324, -0.007933931, -0.009035491, -0.0015459002, 0.0034128071, 0.0052881613, -0.020328166, 0.008258318, 0.024991209, -0.015016351, -0.009393667, 0.0095558595, 0.032708883, -0.00271504, 0.006967533, 0.018990075, -0.019233365, 0.03214121, 0.009373393, 0.014178355, -0.010164083, -0.0082988655, -0.0141918715, -0.014408128, -0.0016920427, -0.00725137, -0.020057844, -0.013218714, -0.02234206, -0.020963421, -0.009049008, -0.005926796, -0.020530907, 0.00398724, 0.015854347, 0.0025342626, 9.5541705E-4, 0.007345983, -0.0019294186, -0.024220793, -0.012698346, 0.013015973, -0.019111719, 0.011461626, 0.016016541, -0.013306568, -0.021274291, 0.022706993, -0.003764225, -0.015665123, 0.004186602, 0.002581569, -0.010461437, 0.011096692, -0.004382585, 0.011562996, -0.003286094, -0.025667012, 0.01398913, -0.007352741, 0.034276746, 0.0059572067, -0.0028924386, 7.256439E-4, -0.0041325376, -0.014002646, -0.020071361, 0.03479036, 0.021463515, 0.017570889, -0.0074135633, -0.0022977316, 0.0066634216, -0.018206144, -0.010069471, 0.004967155, 0.00810964, 0.0016920427, 0.0046664225, 0.013049764, -0.0062883506, 0.0012738894, -0.0014622696, 0.04595463, 0.018368335, 0.012556427, -0.003063079, 0.0048150993, -0.0278431, -0.017408695, -0.015597542, 0.009711294, -0.005335468, 0.0114683835, -0.019071171, -0.015354253, 0.013495794, 0.014448676, 0.024193762, -0.009954584, -0.0015247813, -0.017827693, 2.3843188E-4, -0.005578757, -0.01962533, 0.01721947, 0.028897353, -0.022504253, -0.0019209711, 0.010738516, -0.024382986, -0.011590028, -0.017476276, -0.009407183, -0.01240775, 0.006562051, 0.0092652645, -0.003289473, -0.0012265831, 0.010508743, -0.014340548, 0.034763325, -0.018800851, -0.015975991, 0.02797826, 0.028654063, 0.0043082465, 0.017354632, -0.0026407018, 0.006764792, 0.024707371, -0.014854158, 0.037628733, -0.0083191395, 0.022923252, 0.0014284794, 0.011813044, 0.0035040407, -0.003595274, 0.0062917294, 0.013015973, 0.023788279, 0.017165406, 0.020436294, -0.022328544, 0.031384308, 0.0114683835, 0.021666257, -6.4243557E-4, -0.019436106, 0.0055213138, -0.00807585, -0.021152645, -0.0058659734, -0.01653015, -3.6071005E-4, 0.011083175, -0.00914362, -0.015097448, -0.014475709, -0.00168444, 0.014083742, 0.016854536, 0.0072108223, -0.030221928, 0.02044981, 0.04176465, -0.016543668, -0.037277315, -0.007197306, -0.0048049623, -0.022639414, -0.010887193, -0.009393667, 0.03798015, -0.019895652, -6.035769E-4, -0.0049435017, -0.013401181, 0.015435349, -0.0071026934, 0.010948014, 0.006778308, 0.003272578, 0.011562996, 0.0045177457, -0.0173276, 0.030357089, -0.016205765, -0.015137996, -0.01292136, 0.0065012285, 0.011454867, -0.0076906425, 0.007589272, -0.0316276, 0.004585326, -0.01120482, 0.0025832586, -0.0011269022, 0.0037371928, 0.0040818523, -0.0075216917, -0.00890033, -0.025991399, -0.018652173, -0.012847022, 0.085475616, 0.0421431, 0.00842051, 0.017354632, -0.008846266, 7.4296136E-4, -0.021112097, -0.0021541233, -0.0061160205, -0.021179678, 0.029465027, -0.017516823, 0.02612656, 0.008400236, 2.3040672E-4, -0.020544423, -0.021017486, -0.005345605, 0.005703781, -0.0084340265, -0.026734782, -0.023004347, 0.012955151, 0.035844613, -5.330399E-4, -0.024910113, 0.018571077, -0.002000378, 0.0032049976, 0.023720698, -0.0033097472, -0.0049097114, 0.006034924, 0.0124145085, -0.0044873343, 0.008183979, 0.026721265, 0.01161706, 0.02962722, -1.2681873E-4, -0.008616493, 0.0072851605, 0.010589839, -0.01753034, 0.0016751477, -0.017300567, -0.028708128, 0.031032892, 0.029140642, -0.029924573, 0.013732325, 0.013597164, -0.0092112, -0.003561484, 0.016678827, 0.004179844, -0.0042778356, -0.0064978497, -0.01955775, 0.011867108, 8.692521E-4, -0.037169185, 0.0153137045, -0.010495227, -0.005342226, -0.02247722, -0.016408507, 0.005355742, -0.022774573, -0.0076703685, 0.014489224, -0.0135160675, -0.0030225306, -0.008129914, 0.0074608694, -0.005419943, 0.018881947, -0.007751465, 0.01763847, 0.015840832, -0.029546125, -0.01969291, 0.020706616, -0.0072851605, -2.9650875E-4, -0.0010145499, -0.015908413, 0.024423534, 6.4454746E-4, 0.0064573013, -0.011346739, 5.089644E-4, -0.020017296, -0.01192793, 0.029194707, 0.01797637, 0.02715378, 0.005612547, 0.0072784023, 0.005963965, -0.0050887996, -0.023004347, -0.004440028, -0.010339792, -0.009305812, -0.007967722, -0.007920416, 8.527794E-4, -0.02759981, -0.021923061, -0.025302079, -0.016665312, 0.003575, -0.0037101605, 0.016976181, -0.008089366, 0.013975614, 0.009015217, -0.008150189, 0.016354442, 0.0033502954, -0.01038034, 0.011461626, 0.023044895, -0.005970723, 0.040791493, -0.0031999291, -0.020949906, -0.0027217981, 0.028410774, -0.0041055055, 0.007859593, -0.01621928, -0.0029296076, -0.018679205, -0.018692723, 0.001656563, 0.0035074195, -0.024410019, 0.017787145, -0.025018241, 0.0010297555, 0.021733837, 0.0029819824, -0.0026694234, -0.028924385, 0.008163705, -0.014489224, 0.010853402, 0.024923628, -0.019963233, 0.015989508, -0.01557051, -0.015137996, -0.024585728, -0.035114743, -0.012975425, -0.011258884, 0.029519092, 0.0094004255, 0.02949206, -0.011840075, 0.03414159, 0.0054233223, 0.016435537, 0.02107155, -0.01563809, -0.011461626, -0.0323034, 0.0015602611, 0.006754655, 0.017057277, 0.0017959476, 0.005011082, 0.006589083, 0.025180435, 0.004848889, 0.032573722, -0.007501418, -0.016962664, -0.02272051, -0.0037101605, -0.031411342, 0.0026136695, -0.009528828, -9.4950374E-4, 0.027924197, 0.006396479, -0.0034212547, -0.01955775, 0.02258535, 0.0021439863, 0.025302079, -0.024410019, 0.013211956, -0.013935066, 0.0049130907, -0.023193572, -0.018489981, -0.0058592153, -0.014786578, 0.036871832, 0.0026187382, -0.01302949, -0.00405482, 0.026383365, -0.008940879, 0.0038757324, 0.035033647, -0.018476464, -0.014610869, -0.027545746, -0.00990052, -0.030897731, -0.016881568, -0.009569376, -0.009907277, 0.012110396, -0.017989887, -0.044251606, 0.020666068, 0.0027403827, 0.035655387, 0.015867863, 0.041440263, 0.01550293, 0.0071026934, -0.0103668235, 0.00323034, -0.006967533, 0.0017004902, 0.022950282, 0.027870132, -0.004385964, 0.0065485346, -0.0041088844, -0.010197873, -0.03719622, -0.043873157, 0.030330056, 0.022220416, 0.016665312, -0.021571644, 0.0016768371, -0.03770983, 0.014610869, -9.013528E-4, -0.01323223, 5.6978676E-4, -0.029600188, -0.02653204, -0.015110964, -0.0071162097, 0.0018212901, 0.006126158, -0.018854914, 0.016651796, -0.02113913, 0.00278431, -0.015719187, -0.0022284617, 0.023882892, -0.020301133, 0.018827882, 0.0069540166, 0.006524882, 0.0066499054, -0.0017993265, 0.00879896, 0.032195274, -0.024126181, 0.020774197, -0.005974102, 0.0073189507, 0.019760491, 0.012515878, -0.020774197, -0.008217769, -0.025964366, -2.5511577E-4, 0.03368204, 0.0028316162, -0.007812287, 0.016489603, -0.011394045, -0.0145973535, 0.004534641, 6.3483283E-4, -1.6451589E-4, -0.029600188, 0.002106817, -0.0033486057, 0.01100208, 0.012225283, -0.0072784023, 0.0074743857, -0.008758412, 0.0058186674, -5.2501477E-4, -0.011326465, -0.014867675, -0.016651796, -0.03497958, -0.03357391, 3.933387E-5, -0.0083191395, 0.0115832705, -0.032168243, 0.010657419, 1.256572E-4, -0.01302949, -0.019976748, 0.0033401581, -0.0176655, -0.013157892, 0.011786011, -0.01904414, -0.011813044, -0.0062951087, 0.030059734, 0.011542722, -0.0030444942, 0.0021710184, 0.0109277405, 0.033627976, -0.033330623, 0.013151134, -0.009299055, -0.016070604, -0.012117155, 0.0052814037, 0.022517769, 0.012455056, -0.0057916353, -0.029978639, -0.009305812, -0.010062712, 0.03227637, -0.019571265, 0.00550104, 0.027315972, 0.020260585, 0.03303327, 0.016070604, 0.0027555884, -0.03341172, 9.064213E-4, -4.650372E-4, -0.023517959, 0.0035006616, 0.0046326322, 0.004602221, -0.004237287, -0.015043383, -0.036952928, -0.0014732514, -0.022531284, -0.025112854, -0.008758412, 0.02574811, 0.032114178, 0.014218903, 0.011637335, 0.018233176, 0.012637523, 0.012738894, -0.01227259, -0.028437806, 0.025072306, 0.012096881, 0.021612192, 0.0086638, -0.03492552, -0.0019142131, 0.018895462, 0.019463137, 0.008102883, 0.025369659, -0.007224338, -0.02247722, -0.008893573, 0.0050887996, -0.011225094, 0.0016312205, 0.011400803, -0.02089584, -0.012056332, 0.015462382, 0.023747731, -0.0068762996, 0.014678449, 0.025612948, -0.014029678, 0.006129537, -0.021287806, -0.025599433, 0.009015217, -0.035709452, 0.024288373, 0.017205954, -0.0015644848, 0.03971021, 0.026221171, -0.0018669069, 0.011725189, -0.012556427, 0.011644092, 0.006592462, 0.0019953095, 0.005548346, 0.010765548, -0.0278431, 0.00443327, -0.034384876, 0.0048522684, -0.008792202, 0.015516446, 0.0014200319, 0.032600757, 0.016692344, -0.052523438, -0.0014360822, -0.015151512, 0.007190548, -0.01621928, 0.0043183835, -0.02726191, 0.0048793005, -0.0041156425, 0.0061599477, -0.02247722, -0.038574856, 0.014637901, -0.004990808, -0.010846645, 0.015246124, 0.18662986, -0.01563809, 0.012826748, 0.032222304, 0.0039297966, -0.0031272802, 0.030275991, 0.016205765, -0.011346739, 0.0055888942, 0.0076163043, 0.009089556, -0.0069067106, 0.0072581284, 0.018638657, -0.0132457465, -0.026653687, -0.031411342, -0.011319707, -0.03316843, -0.0048455102, -0.0033384687, -0.011076418, -0.033276558, 0.016962664, -0.006960775, -0.0052881613, 0.011596786, 0.024072116, 0.007812287, 0.0013693466, -0.017273534, -0.008880056, 0.00958965, -0.01873327, 0.0014749409, -0.012833506, 0.013455246, 0.0035479679, 0.00268125, -0.005605789, 0.011799527, -0.009941068, -0.014570321, 0.0041325376, 0.019327978, -0.019774007, -0.011948204, -0.025004726, 0.016922116, -0.039953496, -0.007325709, 0.009197684, 0.01632741, -0.011522448, -0.008467817, 0.009988374, 0.0019142131, -8.1138645E-4, 0.006524882, 0.020125424, 0.040440075, -0.032357465, 0.01639499, -0.012596975, 0.029924573, -0.027518714, -0.0076433364, 0.012346928, -0.03643932, -0.013070038, -0.036358222, -0.017449243, 0.013367391, -0.0025443998, -0.02176087, 3.5189292E-5, -0.0084340265, 0.0053287097, 0.012482089, -0.018571077, -0.012103639, 0.0066701793, -0.011488657, -0.021112097, -0.019503687, 0.013752599, -0.03076257, -0.0131105855, -0.026437428, -0.0035006616, -0.023436861, -0.015773252, -0.014083742, -0.0022554938, 0.012096881, 0.024031568, 0.013867485, -0.02732949, -8.5151225E-4, -0.03543913, 0.023423346, 0.009907277, -0.0011539343, -0.036952928, -0.015935443, -0.010765548, 0.0056429585, 0.03014083, -0.004585326, -0.018841399, -0.01443516, 0.011150756, -0.01646257, 0.012428024, 0.020395746, 0.010360066, 0.0072378544, 0.040440075, -0.02416673, 0.008954395, -0.009839698, 0.03403346, -0.0022808365, -0.0040852316, -0.030032702, -0.044440832, -0.003096869, -0.0012037748, -0.03660151, 0.009217958, -0.02234206, 0.0118738655, 5.820357E-4, 0.0077244327, 0.015151512, 0.030303024, -0.0025089202, 0.00271504, -2.5743886E-4, -0.0012629076, -0.0060788514, 0.005575378, 0.011758979, -0.003980482, -0.024774952, 0.016935633, -0.00653164, -0.005565241, -0.028789224, -0.02488308, 2.7074374E-4, 0.0011463315, 0.01821966, 0.05076635, 0.0045177457, -0.012657798, -0.03949395, -0.009772117, 0.02677533, -0.039520983, 0.011887382, 0.0032016186, -0.018517014, -0.029762382, 0.0037236768, -0.17192438, 0.008231285, 0.0046056, -0.029978639, 0.022639414, 0.013360633, 0.01742221, 0.016057089, 0.008082609, -0.022423156, 0.027005102, 0.011089934, -0.038682986, -0.010360066, 0.004821857, 0.019760491, 0.0078933835, 0.0368448, 0.028789224, -0.014178355, 0.043089222, 7.6661445E-4, -4.6123582E-4, -0.01742221, 0.020165972, -0.003399291, 0.019787524, 0.011022354, 3.6049887E-4, -0.006960775, -0.04327845, -0.02200416, 0.02145, 0.0071297255, -0.018138563, 0.005676748, 0.0019547613, -0.022436673, -0.007758223, -0.010731758, 0.038926274, 0.02327467, 0.015665123, 0.017881759, 0.006960775, 0.0020713373, 0.034087524, -0.020138942, 0.019774007, -0.0063052457, -0.02454518, -0.03351985, 0.01227259, -0.014245936, -0.003581758, 0.021679772, 0.012664556, 0.0043555526, -0.0010314449, -0.001584759, -0.032222304, -0.00962344, -0.0056835064, -0.020125424, 2.0569765E-4, -0.018692723, -0.021328354, 0.007163516, -0.03708809, 0.0110426275, -0.02884329, -0.011596786, 0.01237396, 0.014583837, -3.079129E-4, -0.0161517, -0.039980527, 0.016813988, -0.0037067817, 0.0131105855, -0.014827127, 0.03719622, -0.005200307, 0.029762382, 0.0099681, -0.017273534, -0.00873138, -0.006987807, 0.007886626, -0.015421833, 0.014394612, -0.015624574, -0.04544102, 0.008440784, 0.005419943, 0.0021439863, -0.007589272, 0.018138563, 0.016949149, -9.233164E-4, 0.01034655, -0.011508931, 5.4909027E-4, 0.01443516, 0.021058034, 0.01038034, 0.0034702504, 0.01653015, 0.019841587, 0.0023247637, -0.014624385, -0.019206332, 0.019368526, 0.021395935, -0.02457221, 0.01450274, -0.01773308, -0.020233553, 0.0068425094, 0.015489413, 0.038764082, -0.009650473, 0.009582892, -0.012637523, -0.0010686141, -0.011245368, -0.093747444, -0.005906522, 0.015692154, 0.038926274, -0.03670964, 0.03670964, -0.0016244624, 0.011914413, -0.03149244, 0.027789036, 0.0027454512, -0.01770605, 0.009299055, -0.0096910205, 0.014664933, -0.006328899, -0.013894518, -0.018719753, -0.012988941, 0.013043005, 0.0056463373, -0.015732704, 0.004156191, -0.004392722, -0.014448676, 0.016949149, -0.022855671, 0.021909546, 0.0069337427, 0.011292675, 0.013840454, -0.021260774, 0.013529584, -0.038196407, -0.029167674, -0.021747353, -0.019382041, -0.016651796, -0.0042609405, -0.0466845, 0.007143242, 0.0169086, -0.0017351252, -0.020801228, -0.022139318, -0.008393478, -0.034222685, 0.021990642, -0.021977127, -0.028627032, -0.0263293, -0.0064910916, -0.029437996, -0.003970345, 0.020720132, 0.016367959, 0.02884329, 0.01859811, -0.019341493, -0.026680717, -0.008812476, -0.0040311674, -0.011049385, 0.0248155, 1.3178166E-4, 0.023166541, -0.015016351, -0.0044096173, 0.017300567, -0.016746407, -0.03127618, 0.050198674, -0.0199362, -0.013529584, -0.015773252, 0.023707183, -0.01574622, -0.0026254961, 0.0338172, -0.02574811, -0.004619116, -0.02973535, 0.019449621, -0.021490548, 0.02574811, 0.02773497, 0.00271504, 0.009332845, -0.013745841, -0.03927769, -0.0018550802, 0.006605978, 0.002667734, 0.008771928, -0.0028333056, 0.021058034, 0.004663043, 0.0051462427, 0.012286105, -0.002688008, -0.00378112, 0.0060856096, -0.07379773, 0.029681284, -0.024355954, -0.014394612, -0.008690831, -0.0054402174, 0.019368526, -0.0044873343, -0.008616493, 0.025653496, -0.009846455, 0.016665312, 0.006568809, -0.009163894, -0.0060788514, 0.021017486, 0.009346361, -0.0020122046, 0.0013076796, 0.0024480978, -0.009082798, 0.017651984, 0.03227637, 0.0026322543, -0.005943691, 0.0019378662, 0.0049063326, -0.0029988775, -0.01924688, -0.026978072, 0.033465784, -0.023288185, -0.006801961, -0.005011082, -0.020530907, -0.03100586, 0.007575756, 0.0011590028, 0.014637901, 0.009413941, -0.012421266, -0.014164839, 0.030897731, -0.01271862, -0.011029111, 0.011562996, -0.011745463, 0.0079069, 0.004946881, 0.012421266, 0.031438373, 0.010846645, -0.00577474, -0.0045278827, 0.0149082225, -0.01753034, 0.050063513, 0.019030623, -0.008197495, -0.0150569, 0.021287806, 0.008494848, 0.024410019, -0.030438185, 0.004663043, -0.0019040761, 0.0047779297, -0.014205387, 0.018098015, -0.035844613, -0.0053084358, -0.010718241, 0.014651418, 0.026991587, 0.025802173, 0.008542155, -0.001344004, 0.012596975, -0.014259451, 0.01931446, 0.029329866, -0.011880623, -0.030708507, 0.016962664, -0.0012113776, 0.009346361, 0.004010893, 0.0076433364, 0.01443516, 0.02461276, -0.008393478, 0.019679395, 0.02058497, 9.984995E-4, 0.011819801, 0.022423156, -0.02000378, -0.012387476, 0.0012806475, 0.030600378, -0.014691966, 0.001900697, -0.009832939, -0.013549858, -0.018395368, -0.0133809075, -0.014218903, -0.021747353, 0.014218903, 0.022152836, 0.026342817, 0.00584232, -0.022842154, 0.004855647, -0.04481928, 0.0056260633, -0.008704348, -0.01292136, -0.016665312, 0.040440075, 0.028140454, 0.011860349, 0.029654253, -0.01367826, 0.07909603, 0.009055765, 0.022085255, -0.020044329, 0.0024244445, 0.00622077, -1.994412E-5, -0.012644282, -0.011860349, 0.006734381, -6.7622575E-4, -0.0050516305, 0.0022149456, 0.030924764, -0.008738138, 0.06579622, 0.0072784023, -0.01350931, 0.021936579, -0.019517202, 0.015219092, 0.02653204, 0.01921985, -0.008744895, -0.0075216917, 0.015529962, -0.0051293476, 0.021814933, -0.032871075, 0.011434593, -0.013556616, 0.019503687, 0.0053118146, -0.024072116, -0.009907277, 4.489869E-4, -0.008339413, 0.022071738, 0.0096910205, -0.02732949, -0.007204064, 0.014340548, -0.0024497872, 0.0057105385, -0.02423431, 0.014773062, -0.021990642, -0.015624574, 0.007197306, 0.021598676, -0.011576512, -0.013705293, -2.7158848E-4, 0.026626654, 0.0038588373, -0.011725189, 0.009887003, -0.032195274, -0.02169329, 0.018192627, -0.012103639, -0.016719377, -0.037763894, -0.012313138 ], + "id" : "a95559b9-22a9-4c12-9d86-10fc447e9664", + "metadata" : { + "source" : "movies.csv" + } + }, + "df5255da-10c1-48da-a887-3a435f8f65e3" : { + "text" : "261,5323,Julia Roberts-Hugh Grant-Gina McKee-Tim McInnerny-Rhys Ifans-Emma Chambers-Hugh Bonneville-Richard McCabe-James Dreyfus-Dylan Moran-Roger Frost-Henry Goodman-Julian Rhind-Tutt-Lorelei King-John Shrapnel-Emily Mortimer-Dorian Lough-Sanjeev Bhaskar-Paul Chahidi-Matthew Whittle-Mischa Barton-Clarke Peters-Ann Beach-Samuel West-Tony Armatrading-Andy de la Tour-Rupert Procter-Maureen Hibbert-David Sternberg-Arturo Venegas-Phillip Manikum-Patrick Barlow-Yolanda Vazquez-Melissa Wilson-Emma Bernard-September Buckley-Dennis Matsuki-Alec Baldwin-Simon Callow-Omid Djalili-Matthew Modine-Taylor Murphy,london england-england-bookshop-movie business-roommate-birthday-new love-paparazzi-press conference-wheelchair-bath tub-cohabitant-interview-friendship-fame-falling in love-celebration-group of friends-movie star-dinner party-famous actor,/fQqfLeD7h4nCXK0N5HEa4dAExk1.jpg,/egyi9TQjLhNEQuEsK1dXovdHOHL.jpg,114-634-4806-8874-712-508-462-9801-594084-245-350-9441-1581-11631-11820-11172-88-788-1934-2642-4348\r\n9487,A Bug's Life,Adventure-Animation-Comedy-Family,en,\"On behalf of \"\"oppressed bugs everywhere\"\" an inventive ant named Flik hires a troupe of warrior bugs to defend his bustling colony from a horde of freeloading grasshoppers led by the evil-minded Hopper.\",74.571,Pixar-Walt Disney Pictures,11/25/98,120000000,363258859,95,Released,An epic presentation of miniature proportions.,6.967,8283,Dave Foley-Kevin Spacey-Julia Louis-Dreyfus-Hayden Panettiere-Phyllis Diller-Richard Kind-David Hyde Pierce-Joe Ranft-Denis Leary-Jonathan Harris-Madeline Kahn-Bonnie Hunt-Michael McShane-John Ratzenberger-Brad Garrett-Roddy McDowall-Edie McClurg-Alex Rocco-David Ossman-Carlos Alazraqui-Jack Angel-Bob Bergen-Kimberly J. Brown-Rodger Bumpass-Anthony Burch-Jennifer Darling-Rachel Davey-Debi Derryberry-Paul Eiding-Jessica Evans-Bill Farmer-Sam Gifaldi-Brad Hall-Jess Harnell-Brenden Hickey-Kate Charlotte Hodges-Denise Johnson-David L. Lander-John Lasseter-Sherry Lynn-Mickie McGowan-Courtland Mead-Christina Milian-Kelsey Mulrooney-Ryan O'Donohue-Jeff Pidgeon-Phil Proctor-Jan Rabson-Jordan Ranft-Brian M. Rosen-Rebecca Schneider-Francesca Marie Smith-Andrew Stanton-Hannah Swanson-Russi Taylor-Travis Tedford-Ashley Tisdale-Lee Unkrich-Jordan Warkol-Pat Fry-Kath Soucie,winter-fight-ant-invention-collector-ant-hill-grass-duringcreditsstinger,/Ah3J9OJVc2CNCuH2zMydXy9fmIC.jpg,/hwwFyowfcbLRVmRBOkvnABBNIOs.", + "embedding" : [ 0.010189986, -0.01814233, -0.014310198, -0.03982201, -0.012662113, 0.03542712, 0.007885347, 0.004595878, -0.020661352, -0.057455175, 0.013412461, 0.02226924, 0.01839691, -0.009727718, -0.002897547, 0.010384273, 0.023006188, -0.0055773593, 0.022215644, -0.027923644, 6.1761297E-4, 0.009044366, -0.019495634, 0.007503474, 0.0067765755, 0.010377573, 0.03156819, -0.01241423, -0.014243202, -0.0032325236, 0.010679052, -0.013533052, -0.0063846526, -0.034623176, -0.025069643, -0.003935974, 0.005051446, -0.019254452, 0.026798123, 0.015261531, 0.015154338, 0.003627796, -0.007972442, -0.00528593, -0.015569709, 0.008340916, 0.015864488, 0.010096192, -0.020286178, 0.034167606, 0.030871438, 0.03735658, -0.01883908, -0.031862967, -0.011034127, 0.0015325176, -0.019348245, 0.008675892, -0.01055846, 0.011871568, 0.0068033733, -0.005198836, -0.036070272, -0.023367964, -0.011154719, -0.0061736177, -0.005148589, -0.02555201, 0.008019338, 0.008923775, 0.025418019, 0.009010869, 0.021358104, 0.013760836, 0.026329156, -0.021090122, -0.021505494, -0.005821892, -6.448298E-4, 0.005620906, 0.007510174, -0.0015048821, -0.0076441644, 0.0029461186, 0.014645174, 0.009352545, -0.017874347, 0.0328009, -0.026664132, 0.02456048, 0.008126531, 0.045315627, -0.0026295658, 5.518738E-4, 0.017860949, 0.02969232, -0.018222723, 0.027655663, -0.016909616, -0.038401708, -0.0077580563, -0.013512953, 0.0036981408, -0.01057186, 0.0034536081, 0.0019629626, 0.015743896, -0.011161418, 0.017405381, 0.0044317394, 0.012032357, -0.02098293, 0.012729108, -0.04236783, 2.6819058E-4, -0.026530141, 0.038750086, -0.017217794, -0.021183915, -0.028298818, 0.028566798, 0.023676142, 0.004458538, -0.036901016, 0.04595878, 0.0371154, 0.008662493, -0.01771356, -0.006093223, -0.0033045434, 0.023716338, -0.0018741937, 0.022376433, 0.015529512, -0.023622544, 0.041456696, -0.02939754, 0.013137779, -0.004582479, -0.013760836, 0.017954743, 0.041483495, -0.029183155, -0.014939954, -0.031139418, 0.004827012, 0.006947413, -0.0012586743, 0.016253062, 0.008253822, 0.017780554, 0.020889137, 0.014618376, 0.019602826, 0.027896846, -0.0042039556, 2.4453286E-4, -0.006056376, -0.020875737, -0.022470227, 6.464E-5, -5.6066696E-4, 0.0068167723, -0.0055304626, -8.047811E-4, 0.015234733, 0.025337625, -0.01341916, -0.007818352, 0.007335986, -4.6771098E-4, 0.011362404, -0.032774106, 0.0064047514, 0.010156488, 0.0073292865, 0.009922005, -0.010940334, -0.02840601, -0.006645934, 0.0046461243, 0.010076094, 0.014591577, 0.038857277, -0.003795284, 0.0076843617, 0.021157118, -0.0185577, 0.007610667, -0.016212864, 0.0011699055, 0.04038477, 0.016387053, -0.0073761833, -0.63758093, -0.025444817, 0.0016179367, -0.01313108, 0.03467677, 0.020393372, 0.0025273978, -0.004441789, -0.021291109, -0.020312976, -0.033819232, 0.026999108, 0.036177464, -0.0070010093, -0.01370054, -0.018236123, 0.0030365624, -0.026047776, 1.5796236E-4, 0.007624066, -0.023609146, 0.018812282, 0.0149533525, -8.885253E-4, 0.008434709, -0.0015651778, -0.010076094, -0.01912046, 0.01627986, 0.0062707607, -0.021800272, 0.007155099, 0.012682212, -0.017566169, 0.039500434, 7.348548E-4, -0.023434957, 0.052015156, 0.022188846, 0.020728348, -0.046039175, -0.00264129, 0.014176207, -0.0017971491, -0.015663503, 0.027655663, -0.011020728, 0.024640873, 0.01056516, -0.009627226, -0.004053216, 0.020058395, -0.011931865, 0.0015802518, -0.004682972, -0.0024805013, 0.0011598562, -0.040572356, 0.023783334, 0.007168498, -0.028941972, 0.021894066, -0.004237453, 0.020956133, -0.00685027, 0.034248002, -0.008488305, -7.742145E-4, 0.013037287, -0.036204264, 0.01114132, 0.012876498, -0.021103522, -0.007858549, 7.7463326E-4, 0.012769305, 0.011302108, 0.0068167723, -0.0052055353, 0.020366574, -0.008863479, 6.063075E-4, 0.011489695, 0.024962451, 0.0371422, -0.0064583477, -0.052792303, 0.010223484, 0.010725949, -0.005383073, 0.004880608, 0.028620396, 0.008635695, 0.018772084, -0.007208695, -0.01197876, -0.012353934, 0.008314118, 0.023810131, -0.06790644, -0.008957272, -0.022577418, 0.031139418, -0.018932873, 0.027025906, -0.003224149, -0.0023448358, -0.0089304745, 0.01070585, -0.005681202, -0.017512573, 0.0037584368, -0.022443427, -0.010384273, -0.007905446, -0.024707869, 0.011637085, 0.0028556748, -0.01585109, 7.9033525E-5, 0.007985841, -0.0030047395, 0.0114093, -0.007892047, 0.004237453, 0.030710649, -0.006893817, -0.015944883, -0.0016397102, 0.017057005, 0.012039057, 6.092386E-4, 0.02299279, -0.02354215, 0.015368723, 0.006381303, 0.020647954, 2.3029637E-4, 0.019200854, -0.0043446454, -0.008508404, -0.020018198, -0.0091180615, -0.018946273, -0.0026798123, -0.01199216, -0.023635944, -0.0033765635, -0.0024235551, -0.01427, 0.0013976896, 0.021907466, 9.873434E-4, 0.015864488, 0.016775625, 0.0032911445, -0.031193014, -0.016949812, 0.0034703568, -0.015114141, 0.010411071, 0.0064181504, -0.0021421749, -0.015154338, 0.01256162, 0.003755087, -0.012742507, 0.004210655, -0.015650103, -0.014042216, 0.016614836, -0.009252052, 0.007181897, 0.020232582, -0.009922005, 0.032747306, -0.019013269, 0.029290348, 0.0071416995, -0.0038756784, -9.1448595E-4, -0.011295409, -0.01672203, -0.009399441, 0.04110832, 0.011784474, 0.018169127, -0.0046762726, -0.02027278, -0.0018105481, -6.8209594E-4, -0.017284788, -0.0041034627, -0.004455188, -0.01113462, 0.012930094, 5.853715E-4, -9.4965845E-4, 9.6201074E-5, -0.0051217913, 0.035132337, 0.02098293, 0.0072890893, -0.018825682, 0.02411831, -0.028566798, 0.0076307654, -0.022456827, 0.012206545, -0.0057280986, 0.013801034, -7.101502E-4, -0.0106187565, -0.005185437, 0.01126861, 0.017592968, -0.008320817, 0.0064750966, -0.013573249, 0.002870749, 0.0053060283, 9.605452E-4, 0.02182707, 0.021371502, -0.014430789, 0.006495195, 0.011335606, -0.026208565, -0.005838641, -0.007737958, -0.011081024, 0.0074967747, 0.010605357, 0.013204775, -0.009955502, -0.008515104, 0.013057386, -0.0051452396, 0.043412957, -0.0085686995, -0.0075704698, 0.006980911, 0.012213244, 0.013660343, 0.0026948862, -0.00614012, 0.0149533525, 0.0143905915, -0.016923014, 0.040625952, -0.007865249, 0.03365844, -3.3099868E-4, 0.0081868265, 0.0071952958, -0.0089371735, 0.014591577, 0.021331305, 0.038910873, 0.035561107, 0.0028506503, -0.027736057, 0.017726958, -3.6386825E-4, 0.011215014, -0.0027183346, -0.025217034, -0.007650864, -0.011737578, -0.033792432, -0.029906705, -9.940428E-4, -0.003751737, 0.010035897, -0.0017041931, -0.018946273, 0.008153329, 0.005014599, -8.876878E-4, 0.018195925, -0.0028606995, -0.03226494, 0.021438498, 0.024346095, -0.028807981, -0.016373653, -0.011416, -0.014591577, -0.02939754, -0.019951202, -0.004723169, 0.033819232, -0.0067196293, 0.01725799, -0.0033949872, 0.00299804, 0.009466437, -0.004207305, -6.125883E-4, 0.01498015, -0.008729489, 0.0054735164, 0.0036713427, 0.0057013007, 0.03068385, -0.023032986, -0.008079634, -0.016065475, -0.0028908474, 0.0041168616, -0.0018825681, -0.009272151, -0.029558329, 0.023930723, -0.013787634, 0.00149902, -0.003969472, 0.0113825025, -0.0036813922, -0.022363033, -0.015248132, -0.023354564, -0.030013897, 0.011322207, 0.07444519, 0.041027926, -0.003356465, 0.0061501693, -0.016494244, 0.004066615, -0.008387812, -0.01841031, -0.0018741937, -0.02385033, 0.03411401, -0.00784515, 0.02784325, 0.0042307535, 0.012514723, 4.8320365E-4, -0.01984401, -0.007335986, -3.15506E-4, 0.004167108, -0.013231573, -0.016748827, 0.004183857, 0.03127341, -0.0074431784, -0.015810892, 0.03770496, 0.006243963, 0.020714948, 0.0147657655, -0.0048906575, 1.5000667E-4, 0.0012988715, 0.015100742, 0.00413696, -0.002170648, 0.02870079, 0.010752747, 0.029987099, -0.0037048406, -0.0130707845, 0.010672352, 0.0018289719, -0.013760836, 0.0074163806, -0.010029198, -0.009640625, 0.026355954, 0.015462517, -0.02870079, 0.019870808, 0.018061934, -0.013325366, -0.0113825025, 0.013184676, -0.0018155728, -0.013144479, -0.006039627, -0.021009728, 1.5879981E-4, -1.5534536E-4, -0.034301598, 0.0013507928, -0.01941524, 0.007490075, -0.013332066, -0.017070403, -0.0055170637, -0.012119451, 0.002085229, 0.011469596, -0.026556939, 0.015073944, 3.6407763E-4, 0.0136469435, 0.0051753875, 0.030496264, -0.0077178595, 0.013043987, -5.8830256E-4, -0.016025277, -0.039768413, 0.013466056, -7.2815525E-4, 0.004193906, 0.01611907, -0.012755906, 0.031514592, -0.018222723, 0.007811653, 0.006592338, -0.003909176, -0.023917325, -0.014913156, 0.033068884, 0.019308047, 0.014350395, 0.010900136, 0.00149902, -0.008675892, 0.0035306527, -0.024359493, -0.007952343, -0.019817213, -0.02111692, -0.016936414, -0.0041470095, -0.0031722279, -0.014310198, -0.032881297, -0.026891915, -0.016856018, 0.006893817, -0.0034536081, 0.0020249332, 0.0023883826, 0.021384902, 0.010330676, -0.014095812, 0.013633545, 0.018329917, -0.012213244, 0.009359244, 0.020205785, -0.0119452635, 0.033310067, -0.012152948, -0.033899624, -0.009989, 0.014149409, -0.007094803, 0.013633545, -0.01069915, -0.0091180615, -0.019026667, -0.030898236, -0.00585539, 0.0010861614, -0.027655663, 0.01540892, -0.02827202, 0.0014981825, 0.015542911, -0.0021656232, -0.002557546, -0.023448357, 0.012032357, -0.015810892, 0.025726197, 0.030764244, -0.0068603195, 0.013801034, -0.029022368, -0.0027350835, 0.0012569994, -0.018276319, -0.026798123, 2.6860932E-4, 0.029745916, 0.02342156, 0.038750086, -0.008294019, 0.03258652, 0.0035808992, 0.020915935, 0.023046385, -0.011737578, -0.0046863216, -0.0314074, 0.0012360634, 0.014484385, 0.017499175, 0.0031035575, -0.010578559, -5.543862E-4, 0.01613247, -0.0049174554, 0.020299578, -0.0051753875, -0.018463906, -0.024748066, 0.005366324, -0.02354215, 0.019388441, -0.014189606, -0.022255842, 0.030308677, 9.6808217E-4, -0.01012969, 0.0053629745, 0.036552638, -0.0096875215, 0.017485775, -0.023287568, 0.009392742, -0.024975851, -0.0017234542, -0.02068815, -0.015261531, -0.0061836666, -0.013512953, 0.014792563, -0.001597838, -0.010920235, 8.9271244E-4, 0.038053334, -0.013760836, -0.036338255, 0.028004037, -0.007047906, -0.020286178, -0.022363033, -0.009185056, -0.031970162, -0.012032357, -0.004622676, 0.0026446397, 0.0074766763, -0.024439888, -0.030174686, 0.016078874, -0.008434709, 0.03920565, 0.014283399, 0.04520843, 0.023032986, 0.030469466, -0.01969662, 0.0045489813, -0.020487165, -0.0037416879, 0.037946142, 0.027441278, -0.024426488, -0.002440304, 9.178357E-4, 0.007764756, -0.028191624, -0.024761464, 0.027789652, 0.029719118, 0.011094423, -0.016199466, -0.0030750846, -0.034703568, 0.011449498, 0.0055941083, 0.0073426855, 0.006093223, -0.021478696, -0.020085193, 0.013747437, 6.28081E-4, 0.016628236, 0.0055472115, -0.019803813, 0.0033916375, -0.018892676, 3.3372038E-4, -0.0019529132, -0.01540892, 0.033149276, -0.027253691, 0.016105672, 1.1535754E-4, 0.011121221, 0.008220324, -0.004026418, 0.00956023, 0.028941972, -0.011449498, 0.016320057, -0.014336996, 0.007409681, 0.024104912, 0.010330676, -0.0048605097, -0.012253442, -0.0043613943, -0.012300339, 0.026181765, 0.014470986, 0.0061200215, 0.024493484, -0.01585109, 9.756191E-4, 0.03258652, -0.006096573, 0.011730879, -0.03639185, 0.0108130425, 3.9652848E-4, 0.011261911, -0.010772846, 7.838451E-4, -0.01398862, -0.011697381, 0.007778155, -0.02084894, -0.0057615964, -0.02512324, -0.016480846, -0.035614707, -0.02896877, -0.0046729227, -0.012869799, 0.0016145869, -0.017767156, -4.063684E-4, 0.0026731128, 9.3123474E-4, -0.015382122, -0.0075637703, -0.01540892, 0.0014563105, 0.018718489, -0.010759446, -0.0070278076, -0.0050078994, 0.02738768, -0.008367714, -0.011804573, -0.008441408, 0.0075704698, 0.027870048, -0.025940582, 0.0128497, -0.0015509414, -0.021585887, -0.006867019, 0.01670863, 0.028325615, 0.025297428, -0.0029561678, -0.033283267, -0.003038237, -0.007858549, 0.038080133, -0.008736188, 0.008066235, 0.02255062, 0.020889137, 0.032291736, 0.007825051, 0.002110352, -0.035909485, -0.007871948, -0.0074431784, -0.025364423, -0.0020098593, 0.0041805073, 0.012112752, 0.006749777, -0.015904685, -0.022456827, -0.0035708498, -0.027494874, -0.029370742, -0.011737578, 0.0085553005, 0.034194406, 0.0034938052, 0.010210085, 0.0026781373, 0.0050614956, -0.0062707607, -0.0028724237, -0.0022577418, 0.021626085, 0.005436669, 0.026650732, 0.017780554, -0.033283267, -0.016802423, 0.009607127, 0.02581999, 0.013399062, 0.017365184, -0.014792563, -0.00771116, -0.023099981, -0.0051753875, -0.004867209, -0.006478446, 0.01913386, -0.0032944942, -0.02327417, 0.014162808, 0.013854629, -0.030308677, 1.6120746E-4, 0.015502714, -0.01398862, 0.0138278315, -0.007255592, -0.012943493, -0.0042843497, -0.034167606, 0.025605606, 0.015073944, 0.0029343944, 0.024721269, 0.025793193, -1.8800558E-4, 7.838451E-4, -0.007523573, 0.0075637703, -0.013345465, -0.0018490704, 0.009097963, 0.025203634, -0.039956, 0.017324986, -0.031728975, 6.0253905E-4, -0.0037316387, 7.59978E-4, -0.0015643404, 0.039768413, 0.006733028, -0.04413651, 0.003381588, -0.015663503, 0.001941189, -0.022363033, -0.0012946842, -0.028647194, -0.002699911, -6.929827E-4, 0.010980531, -0.010042597, -0.034623176, -0.0063210074, -0.0036445446, -0.015341925, 0.019937804, 0.18372793, -0.01126861, 0.012253442, 0.0399828, -5.7469413E-5, -0.0052189343, 0.027334085, 0.013673742, 0.002341486, 0.010913535, -0.002624541, 0.011349005, 0.009647324, 0.005182087, 0.019911004, -0.018946273, -0.030871438, -0.027655663, -0.01972342, -0.014966751, -8.0059393E-4, 0.01427, 2.8640495E-4, -0.026342554, 0.017512573, 0.0010216784, -0.021317907, 0.003483756, 0.010806343, -8.148304E-4, -0.009406141, -0.011462897, -0.0026077924, 9.823187E-4, -0.017820751, 3.9281233E-5, -4.8111004E-4, 0.018664893, 0.009627226, 0.004823662, 0.015676903, 0.010464667, -0.0044183405, -0.013720639, 0.013774235, 0.008970671, -0.015636705, -0.012467827, -0.028807981, 0.01670863, -0.040786743, -0.0028992218, 0.015207934, 0.029504733, -0.010826441, -0.015743896, -9.731068E-4, 0.0035373522, -0.008608897, 0.010518263, 0.007610667, 0.04510124, -0.035748694, 0.011931865, -0.001392665, 0.02182707, -0.0413763, -0.009526732, 0.010806343, -0.02969232, -0.0052557816, -0.031434197, -0.010310577, 0.005969282, -0.002768581, -0.016172666, -0.005955883, 0.012467827, 0.00385558, 0.013445958, -0.028057635, -0.010183287, 0.00656554, -0.0022259192, -0.019187456, -0.025485015, 0.030308677, -0.006079824, -0.007965742, -0.03068385, -0.015221334, -0.035132337, -0.0072421925, 0.0010560135, -0.015449118, -5.0581456E-4, 0.024801662, 0.02299279, -0.01542232, -0.0051418897, -0.035319924, 0.037329786, 0.019790413, -0.007168498, -0.037168995, -0.0076575633, -0.013030587, 0.011121221, 0.029906705, -0.012635315, -0.020527363, -0.025391221, -0.0015048821, -0.0117576765, -0.0042609014, 0.017298188, 0.006796674, -0.014819362, 0.04094753, -0.002755182, -0.004950953, -0.021706479, 0.02167968, -6.4566726E-4, -0.024078114, -0.03269371, -0.039366443, 0.012909995, 0.002740108, -0.04794184, 0.0126889115, -0.027494874, -0.0016706955, -0.006954113, -0.0060027796, 0.008468207, 0.027494874, -7.114064E-4, 0.011724179, -0.0036880916, -0.013198076, -0.0091247605, 0.011643784, 0.0066727325, 0.007108202, -0.015730498, -0.0034083861, -0.011838071, -0.0024654274, -0.035051946, -0.0123338355, -0.006009479, 0.011362404, 0.013486155, 0.043466553, -0.010746047, -0.01784755, -0.032881297, -0.016320057, 0.042099852, -0.0399828, 0.023595747, 0.026235363, -0.014002019, -0.020875737, -0.005038047, -0.17065044, 0.016253062, 0.010102892, -0.025002649, 0.011288709, 0.0130774835, 0.02326077, 0.0024754766, -6.988448E-4, -0.01527493, 0.024292499, 0.002011534, -0.037329786, -0.016025277, -0.0013558175, 0.02096953, -0.020862339, 0.03154139, 0.03352445, -0.011416, 0.03955403, -0.016789025, 0.0016187741, -0.0023783334, 0.022068255, -6.067263E-4, 0.03127341, 8.55865E-4, 0.0130774835, -0.011905066, -0.03770496, -0.0057180496, 0.019937804, 8.835006E-4, -0.012092653, 0.0017150799, -0.008294019, -0.008059535, 3.4209478E-4, -0.0013600048, 0.036016677, 0.009821512, 0.022443427, 0.019308047, 0.011864869, 9.9864876E-5, 0.034703568, -0.014122611, 0.016641634, -0.0052624815, -0.00371154, -0.02870079, 0.030362273, -0.0025709448, -0.007389582, 0.011905066, 0.005738148, 0.016936414, 0.006391352, -0.008200225, -0.011342306, -0.018544301, 0.013948423, -0.005014599, -0.0020333074, -0.026195165, -0.017646564, -0.007135, -0.017606366, 0.014470986, -0.015234733, 0.008950573, 0.014926555, -0.001055176, 0.0037718357, -0.023394762, -0.04839741, 0.0076977606, -0.0048035635, 5.652729E-4, -0.018638095, 0.034623176, -0.004723169, 0.015301728, -0.0040465165, -0.023917325, 0.021652883, 0.0027015856, -0.0041604084, -0.0071149017, 0.023113381, -0.030764244, -0.041483495, 0.008166728, -2.3343677E-4, -0.0018641445, -0.0044451384, 0.011630385, 0.012487926, -0.014055615, 0.002311338, -0.011784474, -0.013734038, 0.022724807, 0.032291736, 2.8389262E-4, 0.0051184413, 0.017030207, 0.014738968, 0.007590568, -0.0023532102, 0.0039761714, 0.021237513, 0.0056477045, -0.030362273, 0.02084894, -0.0062138145, -0.03081784, 0.01228694, 0.016668431, 0.04727189, -0.0045523313, 0.0027032606, -0.01171078, -0.0053730235, 0.0034150858, -0.0941686, -0.0038991268, 0.016856018, 0.034355193, -0.037168995, 0.036097072, -0.0051016924, 0.010484765, -0.029585127, 0.026623935, -0.0034569579, -0.025431419, 0.014377193, -0.004528883, 0.008267221, 0.0048571597, -0.01796814, -0.010551761, -0.012869799, 0.025042845, 0.015207934, -0.016239662, 0.007335986, -0.008689291, -0.018356714, 0.021009728, -0.021706479, 0.021250911, 0.015006948, 0.019978, 0.0016196115, -0.022805203, 0.021237513, -0.045047645, -0.026891915, -0.022631014, -0.0072421925, -0.029370742, -0.0014429115, -0.051184416, -7.151749E-4, 0.019884206, 0.00986171, -0.025377823, -0.0061300704, -0.01255492, -0.0371154, 0.02043357, -0.022309437, -0.027870048, -0.010531662, -0.009989, -0.014296798, -0.0071416995, 0.0076843617, 0.027468076, 0.031648584, 0.012065855, -0.0025927185, -0.015489315, -0.017874347, 0.0048069134, -0.038187325, 0.018021738, 6.276623E-4, 0.020353174, 0.008240423, -0.013117681, 0.026329156, -0.018195925, -0.022644414, 0.024761464, -0.039607625, 9.597078E-4, -0.0144039905, 0.0063545047, -0.021652883, -0.02157249, 0.018115532, -0.039795212, 0.0036177465, -0.03395322, 0.025525212, -0.0053127278, 0.019924404, 0.0081868265, 0.00928555, 0.02182707, -0.010739348, -0.034810763, 0.001584439, 0.013184676, 0.008816582, 0.008963972, -0.008669193, 0.013961822, 0.0012142899, 0.003694791, 0.0014831086, -0.0067598266, -0.018209325, 0.0049342043, -0.07165818, 0.026047776, -0.01641385, -0.0045020846, 0.00442839, -0.02212185, 0.0046327254, -0.008729489, -0.009252052, 0.019616226, 4.8697213E-4, 0.018249521, -0.011523193, 0.017298188, 0.0052457326, 0.013680441, 0.006766526, -0.013613447, 0.005507014, 0.009459738, 0.0011749301, 0.0074967747, 0.024600677, 0.012709009, 0.02212185, 0.0108130425, -0.001967987, 0.003641195, -0.02327417, -0.0085620005, 0.018195925, -0.019602826, -0.005185437, -0.0038019835, -0.015167737, -0.020634554, -0.01127531, 0.0053562745, 0.01798154, 0.0036981408, -0.0066693826, -0.024212103, 0.011871568, -0.01128201, -0.009064465, 0.0013357189, -0.022657814, 0.022965992, 0.007248892, 0.007959043, 0.020058395, 0.010906836, -9.2034804E-4, -0.020661352, 0.023354564, -0.012126151, 0.039500434, 0.0023247371, -0.010390972, -0.023997718, 0.027628865, -0.0017971491, 0.0256994, -0.02383693, -0.00928555, 0.0021907466, 0.0067598266, -0.01613247, -0.0049208053, -0.032720506, -0.01184477, -0.007811653, 0.014832761, 0.03778535, 0.020205785, 0.021518892, 0.0037885846, 0.0085620005, 0.0047030705, 0.025444817, 0.023367964, -4.8362237E-4, -0.026436348, 0.017284788, 0.0021019778, 0.0185711, -0.0010702501, 0.01613247, -0.0012796103, 0.006438249, -0.007831751, 0.013660343, 0.027521672, 2.4369542E-4, 0.0031420798, 0.028513202, -0.013439259, -0.008334216, -0.0046896716, 0.020058395, -0.00986171, -0.007885347, -0.022041457, -0.040599156, -0.029183155, -0.0040900633, -0.020339776, -0.020111991, 0.01498015, 0.007155099, 0.026061174, 0.013144479, -0.01656124, 0.007449878, -0.048317015, 0.0021857219, -0.003299519, -0.017499175, -0.0185577, 0.01898647, 0.013814433, 0.001576902, 0.028164826, -0.004508784, 0.046575136, 0.008896977, 0.011536592, -0.026235363, 0.006327707, -0.0041436595, -0.014993549, -0.0022074953, -0.02854, 0.0037182395, -0.0072890893, -0.014752367, 0.010752747, 0.037517373, -0.020460367, 0.07455238, 0.011590188, 0.0034435587, 0.020339776, -0.015449118, 0.012380732, 0.033068884, 0.010672352, -0.014296798, -0.0023582347, 0.0030030645, -0.0071015023, 0.0123137375, -0.03365844, 0.006361204, 0.0022644415, 0.0060027796, -0.0077848546, -0.02042017, -0.015114141, -0.005366324, -0.015824292, 0.0058855377, -0.006578939, -0.012494625, 0.005470167, -0.0021304507, -0.01198546, -0.011288709, -0.029075963, 0.0044149905, -0.019160658, -0.0076709627, 0.003299519, 0.021947663, -0.0041872067, -0.010940334, 0.009386042, 0.025793193, -0.0049208053, -0.015609906, -0.014203005, -0.019066865, -0.014296798, 0.027012508, -3.3864035E-5, -0.014859559, -0.03783895, -0.026047776 ], + "id" : "df5255da-10c1-48da-a887-3a435f8f65e3", + "metadata" : { + "source" : "movies.csv" + } + }, + "4a72a82c-f2ec-4d2c-8221-8c299cb058a0" : { + "text" : "Quinn-Gerardo Davila-Dee Bradley Baker-Hanna Pak-Jennifer Holland-Nathan Fillion-Kyle Mclean-Benjamin Byron Davis-Tiffany Smith-Joe Daru-Daniela Melchior-Jonathan Mercedes-Jonathan Fritschi-Diego Ward-Max Bickelhaup-Brandon Morales-Renae Moneymaker-Alexis Hadesty-Tara Warren-Candi VandiZandi-Grecia Balboa-Caleb Spillyards-Darla Delgado-Michelle Civile-Ken Lyle-Elodie Clarke-John William Wright-Autumn Griffin-Skylar Huntley-Randy Havens-Dane DiLiegro-Kai Zen-Sarah Anne-Yael Ocasio-Adelynn Spoon-Henry Heffernan-Brooklyn Skye Oliver-Scarlett Blum-Baby Dro-Emery Grilliot-Amelia Waters-Lloyd Kaufman-Christopher Fairbank-Rhett Miller-Natalia Safran-Murphy Weed-Michael Rooker-James Gunn-Jessica Fontaine-Karen Abercrombie-Gregg Henry-Adriana Leonard-Bonnie Discepolo-Clare Grant-Grace Gunn-Will Gunn-Seth Green-Pete Davidson,hero-sequel-superhero-based on comic-mad scientist-superhero team-space opera-raccoon-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-cosmic-outer space-chosen family,/r2J02Z2OpNTctfOSN1Ydgii51I3.jpg,/5YZbUmjbMa3ClvSW1Wj3D6XGolb.jpg,493529-640146-502356-385687-420808-713704-603692-552688-31806-758323-594767-1053651-868759-840326-569094-1037644-964980-868985-798286-747355-916224\r\n50620,The Twilight Saga: Breaking Dawn - Part 2,Adventure-Fantasy-Drama-Romance,en,After the birth of Renesmee the Cullens gather other vampire clans in order to protect the child from a false allegation that puts the family in front of the Volturi.,93.525,Summit Entertainment-Lionsgate-Sunswept Entertainment-Temple Hill Entertainment,11/13/12,120000000,829747654,115,Released,The epic finale that will live forever,6.474,8094,Robert Pattinson-Kristen Stewart-Taylor Lautner-Peter Facinelli-Elizabeth Reaser-Ashley Greene-Jackson Rathbone-Nikki Reed-Kellan Lutz-Billy Burke-Dakota Fanning-Jamie Campbell Bower-Maggie Grace-Mackenzie Foy-Michael Sheen-Cameron Bright-Chaske Spencer-MyAnna Buring-Christopher Heyerdahl-Julia Jones-Booboo Stewart-Andrea Powell-Christian Camargo-Daniel Cudmore-Guri Weinberg-Lee Pace-Rami Malek-Casey LaBow-Joe Anderson-Angela Sarafyan-Valorie Curry-Noel Fisher-Tyson Houseman-Lateef Crowder-Charlie Bewley-Billy Wagenseller-M�_a Maestro-Wendell Pierce-Omar Metwally-Andrea Gabriel-Judi Shekoni-Tracey Heggins-Patrick Brennan-Marlane Barnes-Toni Trucks-Erik Odom-Amadou Ly-Janelle Froehlich-Masami Kosaka-Alex Rice-Marisa Quinn-Bill Tangradi-J. D.", + "embedding" : [ 6.913978E-5, -0.023840524, -0.001022878, -0.029758977, -0.031620648, 0.044874646, -0.011614615, -0.020339468, -0.022506788, -0.036844447, 0.033260033, 0.034454837, 0.020158859, -6.0261233E-4, 0.00967653, 0.008308061, 0.015073991, -0.02214557, 0.01583811, -0.03459377, 4.3285626E-4, 0.01421262, -0.0070055854, 0.022451216, -0.012510718, 0.011642401, 0.015560249, -0.0066026864, -0.012239804, 0.00639429, 0.0125732375, -0.003733765, -0.0029227566, -0.03184294, -0.011892476, -0.013552699, 0.0010437176, -0.019144664, 0.019561457, 0.0066756248, 0.01150347, 0.0020492293, -0.009815461, -0.02463243, -0.018797336, 0.0037789177, 0.008613709, -0.009176379, -0.011163089, 0.022340072, 0.03298217, 0.022909688, -0.03153729, -0.01633826, -0.006293565, -0.0060921153, -0.009301417, -0.0018998786, 0.0075508887, 0.016532766, 0.0039734207, 6.132492E-5, -0.023145871, -0.018839017, -0.019686494, -0.005894139, 0.0018304132, -0.0075647817, -0.0055294456, -0.013552699, 0.028536385, 0.008856839, 0.017852608, -5.7612866E-4, 0.010433703, -0.03414919, -0.017644212, -0.012503772, -0.0164633, -0.010378131, 0.016630016, -0.006894441, -0.020144965, 0.014532161, -0.0048347916, 0.0027647228, -0.015574142, 0.0127469, -0.036427654, -4.979258E-5, -0.005967078, 0.036844447, 3.5774682E-4, 0.01728299, -0.005612804, 0.020533971, -0.007800964, 0.043096334, -0.02332648, -0.01353186, 0.0052620037, 0.0055745984, -0.0138514, -0.018394437, -0.007627301, -0.004765326, 0.003429854, -0.007439744, 0.015754752, 0.017296884, 0.0057482617, -0.009502866, 0.008363634, -0.056266975, -0.0196726, -0.011350646, 0.011427058, -0.034677126, 0.0032023548, -0.02422953, 0.03901177, 0.036788873, -0.0010923434, -0.03970642, 0.03487163, 0.049959514, 0.0064776484, -0.0047618533, 0.008071879, -0.00712715, 0.010857441, 0.0014344605, 0.024243424, 0.006199787, -0.020283896, 0.04362427, -0.030981569, -0.0032787668, -0.02133977, -0.007974627, 0.026369065, 0.03517728, -0.030370273, -0.016282689, -0.005967078, 0.005623224, 0.0137402555, -0.0104684355, 0.0104962215, 0.011656294, 0.009905766, 0.01799154, 0.0067763496, 0.020672902, 0.016310476, -0.0040151, -8.9697196E-4, 0.0017774459, 0.00237398, -0.013677737, -0.0164633, -0.018158255, -0.015254602, -0.016893985, -0.0022993046, 0.024521286, 0.014879488, -0.030203555, -0.009072181, -0.007787071, -0.012170338, 0.03598308, -0.03812261, 0.027813945, -0.018783445, 0.0075717284, -0.0038414365, -0.007474477, -0.042735115, -0.012878885, 0.009211112, -0.01754696, 0.029119896, 0.03662216, -0.014698878, 0.0066165794, 0.022228928, -0.014559948, 0.011406219, -0.005057081, -0.0051682256, 0.025368763, 0.024799148, 6.785901E-4, -0.6232991, -0.015060099, 0.007474477, -7.745392E-4, -0.0036017809, 0.017408028, 0.020019928, -2.8914973E-4, -0.011017213, -0.011871637, -0.017102381, 0.025382657, 0.016199332, -0.013302624, -0.020033821, -0.019839318, 0.005866353, -0.024646323, 0.013045602, 0.004178344, -0.022173354, 0.020659009, 0.018352758, -0.0077801244, 0.01845001, 0.009919659, -0.00728692, -0.012100873, 0.011447898, -0.0019467678, -0.02873089, 0.025535481, -0.002259362, 0.009739049, 0.037150096, -0.011677134, -0.00800936, 0.04079008, 0.015018419, 0.025966166, -0.04606945, 0.006960433, 0.010899121, 0.011260341, -0.017213525, 0.02477136, 0.005932345, 0.018741764, -0.0129066715, -0.0059288717, -6.451599E-4, -0.002940123, -0.010350345, -0.011711867, -0.0012807683, 0.0061060083, 0.021895494, -0.03364904, 0.022979153, -0.0027143604, -0.033815756, 0.019102985, 0.014011171, 0.0077037127, -0.0012755584, 0.021367557, -6.4255495E-4, 0.006366504, -0.0026813643, -0.036260936, -9.1260165E-4, -0.002907127, -0.005498186, 0.0010133265, 0.022673506, -1.2709998E-4, 0.04620838, 0.007064631, 0.0050397147, 0.02070069, -0.0050605545, -0.01953367, 0.011510417, 0.01574086, 0.028980965, -0.02029779, -0.03284324, 0.003534052, 0.011308967, 0.003810177, 0.011128357, 0.0069430666, 0.009683477, 0.010266986, -0.010711565, 0.009211112, -0.00949592, 6.8987824E-4, 0.021075802, -0.061518557, 0.0016289636, -0.0130733885, 0.02873089, -0.025007544, 0.016213223, 0.02165931, -0.002335774, -0.0061546345, 0.035205062, -0.025452122, -0.025618838, 0.004358954, -0.030981569, -9.32573E-4, -0.0024052395, -0.03153729, 0.013677737, 0.011225608, -0.0053210496, -0.01601872, -0.005814254, 0.011732706, -0.0013684684, -0.024590751, 0.019283595, 0.029203253, 0.002382663, -0.004529144, 0.004400633, 0.01881123, -0.0038622762, 0.0010115899, 0.029758977, -0.016991237, -0.001227801, 0.0066061593, 0.015810324, -0.0011722286, 0.0026917842, -0.0068423417, -0.0063769235, -0.019644815, -0.017602531, -3.8119138E-4, 0.014837809, -0.005657957, -0.030620348, 0.0059427647, -0.0017487914, -0.015629714, -0.0060365433, 0.027313795, -0.01840833, 0.020756261, 3.1069485E-5, -9.1260165E-4, -0.023395946, -0.017102381, 0.015421319, -0.02517426, 0.010440649, 0.025535481, -0.005678796, -0.025202047, 0.019867104, -6.703411E-4, -0.01041981, -2.778616E-5, 0.0033586521, -0.018672299, 0.024729682, -0.011392325, 0.011447898, 0.008092719, -0.005133493, 0.01776925, -0.008092719, 0.029286612, -0.0024156591, 0.006119902, -4.2938298E-4, -0.01096164, -0.032370877, -0.0074189045, 0.020047715, 0.027452726, 0.016310476, -0.011149197, 0.012726061, -0.01736635, -0.019283595, -0.01624101, -0.004591663, -0.011642401, 0.0030477943, 0.013385982, 0.01076019, 0.0023861364, -0.018922376, -0.015212922, 0.03364904, 0.01736635, 0.013316517, -5.070974E-4, 0.00787043, -0.042012673, 0.0074953167, -0.02873089, 0.011920262, -0.008731801, 0.0337324, -0.0127955265, -0.014434909, 0.00899577, 0.007759285, 0.034121405, -0.007919055, -1.4978477E-4, -0.019158557, 0.020408934, 0.0059636044, -0.007655087, 0.023395946, 0.020144965, -0.030342486, -0.007120203, 0.002445182, -0.02318755, -0.0030182716, -0.0028480813, -0.010405917, 0.009148593, -0.008120505, 0.013559646, -0.020450613, -0.008613709, 0.0168662, -0.012691328, 0.036094222, -0.016768947, -0.007898216, 0.025771663, 0.019519776, 0.016685588, 0.0101905735, -0.014810023, 0.0024243423, 0.01242736, -0.0019346114, 0.04326305, -0.012844152, 0.030509204, -0.0027543032, 0.005692689, 0.016532766, -0.02070069, 0.006922227, 0.0028984437, 0.025604947, 0.013198426, 0.011961942, -0.007078524, -0.007759285, -0.0125732375, 0.011218661, 0.0010836602, -0.013969491, 0.0058732997, -0.015310174, -0.024146173, -0.02282633, -0.02133977, -7.4979215E-4, 0.00439716, -0.023354268, -0.0100794295, -0.0069639063, 0.0021482175, 0.0041123517, 0.015393532, 0.0051786453, -0.025007544, 0.014879488, 0.029508902, -0.009843247, -0.018866802, 0.0013554436, 3.232312E-4, -0.020103287, -0.0101072155, 0.0052064317, 0.029481115, -0.014282086, 0.01260797, 4.593942E-5, 0.014782237, 0.015852004, -0.020117179, 0.004178344, 0.023868311, -0.005272424, 0.019700387, -0.004709754, -0.0012946613, 0.009468134, -0.016115973, -0.0040324666, -0.0015169507, 0.0018477796, -0.014726665, 0.0047028074, 8.023254E-4, -0.049931727, 0.010405917, 0.0071896687, -0.019505884, 0.0049702493, 0.00601223, -7.324258E-4, -0.022979153, -0.022117782, -0.027424939, -0.012614916, 0.004077619, 0.0911386, 0.049181502, 2.9066927E-4, 0.0200755, -0.0178665, 0.0222845, -0.015199029, 0.002259362, -2.2267595E-6, -0.023437625, 0.027619442, -0.0060678027, 0.017019022, 0.012698275, 0.0023427205, -0.010030803, -0.0025754296, -0.0093847755, -0.0065366942, -0.00621368, -0.035482924, -0.025271513, 0.011565989, 0.040762294, 0.009044395, -0.01353186, 0.017449709, 0.0015612348, 0.007891269, 0.02517426, 0.0056093307, 0.0053210496, 0.0032978698, 0.026980361, 0.008440046, 0.00823165, 0.036733303, -0.013997278, 0.032954384, 0.0021777402, -6.742485E-4, 0.0057447883, 0.0034645868, -0.0016124656, 0.014587734, -0.027272116, -0.016699482, 0.024382355, 0.039039552, -0.030981569, 0.031203857, -9.803304E-4, -0.031565078, -0.021298092, 0.024646323, -9.777255E-4, 2.7851283E-4, -0.0016871409, -0.022353966, 0.011267288, -0.010489275, -0.044846863, 0.021437023, -0.0098015675, 0.0024799148, -0.012781633, -0.01845001, -0.006901387, -0.019964356, -0.008342794, -0.0037407116, -0.008203863, -0.01899184, -0.009336149, 0.016004829, -0.001936348, 0.029981267, 0.0012599287, 0.026494103, 0.008912411, -0.03167622, -0.026202349, 0.018061003, -0.024243424, 0.0042026564, 0.0033239194, -0.0037650247, 0.014282086, -0.013580485, 0.0067173042, -0.008961037, 0.008419206, -0.025327085, -0.013997278, 0.029925693, 0.031009354, 0.022201141, 0.008912411, 0.006519328, 0.0010810553, -0.0026674713, -0.02873089, -0.008877678, -0.016852306, -0.006974326, -0.0044596787, -0.0042617023, 0.0024625484, -0.020422827, -0.034649342, -0.026230134, -0.022076104, -0.011170036, 0.016935663, 0.014393231, -0.0026709447, 0.016199332, 0.0070194784, -0.0016063873, 0.004466625, 0.005932345, -0.018130468, 0.03559407, 0.022228928, -0.004553457, 0.03748353, -0.0069708526, -0.013615218, -6.5948715E-4, 0.02025611, -0.01039897, 0.015073991, -0.017533066, 5.062291E-4, -0.018297186, -0.0030113251, 0.007453637, 0.014490482, -0.0014596417, 0.014698878, -0.011565989, 0.017922074, 0.007120203, 0.012726061, -0.012073087, -0.034927204, 0.02359045, -0.013177586, 0.009141646, 0.031203857, -0.013615218, -0.0015334487, -0.018658405, -0.018283293, -0.014823916, -0.034677126, -0.023562662, -0.014379337, 0.01863062, 0.016143758, 0.028300203, 0.0026674713, 0.00619284, 0.0050084554, 0.007800964, 0.030231342, -0.01353186, -0.008203863, -0.025202047, 0.0039282683, 0.0023809266, 0.033954687, -0.0134901805, -0.0132123185, -0.0049494095, 0.026646927, -0.011510417, 0.010287826, 0.002116958, -0.023826633, -0.025771663, 0.005390515, -0.030231342, -0.008217757, -0.018019324, -0.005494713, 0.03167622, 0.0015430002, -0.0035948344, -0.022451216, 0.027800053, 0.005018875, 0.017699784, -0.02165931, 0.02525762, -0.017074594, -0.015115671, -0.017199632, -0.014921168, 0.0058906656, -0.012823313, 0.013288731, 0.005498186, -0.027591657, -0.005171699, 0.020867405, -0.011913316, -0.018755658, 0.029203253, -0.017824821, -0.013135907, -0.03170401, -0.010913014, -0.018366652, -0.010225306, -0.005737842, -0.024965864, 0.007794018, -0.01674116, -0.034538195, 0.024646323, -0.0017088488, 0.041707024, 0.017310778, 0.03595529, 0.03059256, 0.016379941, -0.0033794916, -0.0017496598, -0.012733008, -0.01369163, 0.014191781, 0.027049826, -0.010489275, -0.001534317, 0.012198124, -0.016115973, -0.034454837, -0.043151904, 0.025146475, 0.020756261, 0.011044999, -0.026702499, -0.0014665882, -0.021089695, 1.0110471E-4, -0.0031676223, 0.009822408, 0.0014170941, -0.027327688, -0.012073087, 0.0055745984, -0.014587734, 0.017296884, 0.007425851, -0.039734207, 0.009225005, -0.013448501, 6.8119506E-4, -0.012232857, -0.030398058, 0.048959214, -0.028786462, 0.012517665, 0.012601024, 0.0030130616, 0.0132678915, 0.014045903, 0.009683477, 0.029814549, -0.01728299, 0.025410444, -0.0030460577, -0.004310328, 0.01569918, 0.024701895, -0.012601024, -0.0057760477, -0.03487163, -0.008717908, 0.023493199, 0.0016211488, 0.005070974, 0.00787043, -0.01696345, -0.009301417, 0.0032996065, -0.00585246, 0.009905766, -0.032759883, 0.01587979, -0.0032978698, 0.004181817, -0.007245241, 0.0021725304, -0.002907127, -0.008863785, -0.015171243, -0.0048347916, -0.009120807, -0.022228928, -0.033009958, -0.04367984, -0.035899717, -0.0037163987, -0.0013676, 0.009620958, -0.009099967, 0.00493899, 0.011649347, -0.011927209, -0.002125641, -0.0033951213, -0.01333041, 9.073918E-4, 0.017616425, -0.009697369, 0.0076759267, 0.0018443064, 0.033037744, -0.0069777993, -0.007745392, -0.012601024, 0.0044457857, 0.023562662, -0.01624101, 0.013913919, -1.2178153E-4, -0.02260404, -0.0036365136, 0.018964054, 0.024562964, 0.009329203, -0.0054078815, -0.024090601, -0.0032388242, -0.009099967, 0.034954987, -0.009648744, 0.0098571405, 0.02142313, 0.01060042, 0.024507392, 0.037150096, -0.0044284193, -0.028244631, -0.0020683322, -0.0059358184, -0.024688004, -0.007967682, 0.0091624865, 7.8235404E-4, 0.006019177, -0.019005733, -0.017713677, 7.510946E-4, 0.0035080027, -0.01800543, -0.005803834, 0.011732706, 0.03648323, 0.00857203, 0.0068041356, 0.015601928, 0.0058628796, 0.009975231, -0.01003775, -0.00911386, 0.02061733, 0.025980059, 0.029092109, 0.00875264, -0.03334339, 0.0052446374, 0.004244336, 0.009502866, 0.005585018, 0.012913617, -0.018797336, -0.008071879, -0.0047931126, 0.0037476583, -0.018755658, -0.0066617317, 0.03059256, -0.023993349, -0.005418301, -7.914714E-4, 0.019464204, -0.0031311528, -0.0027369368, 0.021298092, -0.013205373, 0.018839017, -0.007696766, -0.019366954, 0.00639429, -0.031009354, 0.020381147, 0.0033916482, 3.9508444E-4, 0.04254061, 0.021381449, -0.003796284, 0.017963752, -0.0030564775, 0.012205071, -0.014684985, 0.006321351, -0.00893325, 0.026674714, -0.029703405, 0.002092645, -0.016254904, 0.016532766, -0.006446389, 0.0039074286, 0.0038692227, 0.03428812, 0.0053592557, -0.051987905, 0.005585018, -0.018964054, 0.011892476, 0.0077245524, -0.0027369368, -0.03545514, -0.003320446, 0.0046229223, -0.006522801, -0.02395167, -0.018255508, 0.018477796, -0.0064776484, -0.0012234594, 0.01800543, 0.19672601, 0.002483388, 0.0024521286, 0.050765313, 0.009537599, 0.009919659, 0.019228023, 0.011170036, -0.0028515547, 9.3604624E-4, 0.0041609774, -0.004345061, -8.045504E-6, -0.003249244, 0.023020834, -0.017435815, -0.020117179, -0.013900027, -0.012719114, -0.02579945, -0.009433401, 7.5587037E-4, -0.015393532, -0.020575652, 0.023493199, 0.011434005, -0.014921168, 0.012684382, 0.016393835, 0.021826029, -0.009426455, -0.016518872, 0.0068110824, 0.0054078815, -0.013934759, -0.01351102, -0.0014700615, 0.008634549, 0.0131289605, 0.015490784, -0.0030703705, 0.0038275435, -0.03278767, -0.011496523, -0.016991237, 0.023451518, -0.026744178, -0.010885228, -0.024729682, 0.012253696, -0.036594372, -0.0013476288, 0.010829655, 0.026327386, -1.4272968E-4, 0.0018026271, 0.004296435, 0.012399574, -0.016796734, 0.014032011, 0.008544244, 0.026105097, -0.029620046, 0.022117782, -0.0050258217, 0.004810479, -0.023159765, 0.0037754443, 0.006769403, -0.028147379, -0.006085169, -0.03587193, -0.016518872, 0.012892778, -0.014657199, -0.014921168, -0.011878584, 0.0033030796, 0.008044093, 0.026507996, -0.027508298, -0.0059636044, 0.009148593, -0.028314097, -0.02332648, -0.023701593, 0.019992141, -0.017130168, -0.010544848, -0.020200538, -0.007932949, -0.023520984, -0.013837507, 0.0046020825, -0.0013953862, 0.0027699328, 0.011565989, 0.0050744475, 0.0023705068, -0.019366954, -0.021937173, 0.020825727, 0.02083962, -0.002997432, -0.03676109, -0.008349741, -0.018519476, 0.0039178487, 0.029814549, -0.020992443, -0.006185894, -0.00805104, -0.004150558, -0.0069639063, 0.0060886424, 0.024173958, 0.0025302772, -0.014351551, 0.030953782, -0.02477136, -8.4443873E-4, -0.022492897, 0.023868311, -0.0025476434, -0.005699636, -0.041484736, -0.019811532, 0.008641495, -0.017671997, -0.020144965, 0.011176983, -0.027411046, 0.014726665, -0.013358196, 0.027633335, 0.0064498624, 0.023896096, -0.0050883405, 9.455977E-4, 0.002321881, -0.015073991, 0.0018182568, 0.025618838, 5.8654847E-4, 0.0016089923, -0.04529144, 0.01592147, -0.024340676, -0.008710961, -0.03342675, -0.027855625, 0.0041227713, 0.0025632733, 0.0099960705, 0.0339269, 0.011691026, -0.021367557, -0.05151554, -0.012010568, 0.043568697, -0.024326783, 0.026202349, 0.012670489, -0.007926002, -0.02499365, -0.008106612, -0.17860943, 0.019408632, 0.008940197, -0.034843843, 0.015504677, 0.008349741, 0.01799154, 0.004390213, -0.0024903344, -0.0196726, 0.027911197, -0.015226816, -0.025674412, 0.003339549, 0.0073285997, -0.001912035, -0.0025476434, 0.039678637, 0.025868915, -0.0069048605, 0.04920929, 8.978403E-4, -0.015782539, -0.013601325, 0.020158859, -0.0042929617, 0.022103889, 0.021728776, -0.0010280879, 0.0030217448, -0.030620348, -0.012086979, 0.015282388, 0.018019324, 2.169437E-5, -0.0019606608, -0.014823916, -0.014684985, -0.0022437323, -0.003983841, 0.035288423, 0.005018875, 0.01997825, 0.02174267, 0.016699482, 0.019436419, 0.027147077, -0.018477796, 0.01975596, -0.029064322, -0.006866655, -0.041012373, 0.028008448, -0.016213223, -0.005866353, 0.02192328, 0.003935215, 0.013768042, 0.001591626, 2.1555982E-4, -0.020659009, -5.7222124E-4, 0.005557232, 0.0057760477, -7.3416246E-4, -0.010030803, -0.02445182, 0.005713529, -0.03328782, 0.0077314987, -0.028897606, 0.0072174547, 0.0062449393, 0.025549375, 0.017310778, -0.028369669, -0.040401075, 8.9523534E-4, 0.0021464808, -0.006303985, -0.0042547556, 0.040234357, -0.0029331765, 0.015018419, 0.004598609, -0.007168829, -0.004049833, 0.011656294, 0.017380243, 0.0016402517, 0.008120505, -0.02593838, -0.021173054, 0.0046784948, -0.013997278, 0.007800964, -0.00421655, 0.010378131, 0.014643306, -0.0066235256, -0.008988823, -0.011614615, -0.022423431, 0.009565385, 0.012837206, -0.005376622, -0.0030113251, 0.027633335, 0.019269701, -0.002978329, -0.0030512677, 0.005723949, 0.014532161, -0.0038275435, -0.008509511, 0.016366048, -0.03698338, -0.017296884, -0.008655389, 0.015574142, 0.069798835, -0.005751735, 0.00949592, -0.012475986, -0.0038136505, -0.030120198, -0.09252791, 0.0055676517, 0.013941705, 0.034788273, -0.023479305, 0.0419571, -0.007446691, 0.024743576, -0.01682452, 0.03220416, -0.013865294, -0.030925995, 0.018047111, -0.0132956775, 3.2040916E-4, 0.008099666, -0.015824217, -0.014962846, -0.012844152, 0.02987012, -0.013976438, -6.414695E-5, 0.0029435963, -0.010899121, -0.018713979, 0.014309872, -0.02684143, 0.028842034, 0.00118699, -5.3792266E-4, 0.009037448, -0.023159765, 0.018936267, -0.029092109, -0.040151, -0.030536989, -0.0080302, -0.022520682, -0.0016663013, -0.055794608, 0.016046507, 0.010892174, 0.002302778, -0.014782237, -0.006626999, 0.020422827, -0.02987012, 0.025438229, -0.005484293, -0.02684143, -0.013247051, -0.014337658, -0.029425543, -0.010996372, 0.006932647, 6.7294604E-4, 0.0339269, 0.0026761545, -0.014948954, -0.016991237, 0.009266684, 0.0077662314, -0.019658707, 0.004178344, 0.008842945, 0.0024747048, -0.0012000147, -0.016435513, 0.014879488, -0.020422827, -0.019505884, 0.019936569, -0.036399867, -0.02165931, -0.02390999, 0.009898819, -0.020825727, -0.02111748, 0.014518268, -0.03545514, -0.0067103575, -0.02973119, 0.015852004, -0.010253093, 0.026563568, 0.014337658, 0.018130468, 0.0033308659, -0.01003775, -0.037928108, -0.016796734, 0.01885291, 0.009273631, -0.007279974, -0.009009662, 0.012163391, 0.007075051, 4.8148204E-4, -0.007641194, 0.0040220465, -0.0065505872, -0.001296398, -0.080302, 0.030536989, -0.03667773, -0.0113437, -0.022353966, -0.024035027, -0.01055874, 0.016227117, -0.01278858, 0.03067592, -0.0016254904, 0.018352758, -0.016574444, -0.012295376, -0.022312285, -1.4099306E-4, 0.005498186, -0.0063699773, 0.013163693, 0.0054009347, -0.026007846, 0.023145871, 0.032398663, 0.021853814, 0.0061060083, 0.021381449, 0.007231348, -0.007279974, -0.009225005, -0.012837206, 0.028439134, -0.012503772, 0.004324221, 0.009572332, -0.010621259, -0.03951192, -0.023173656, 0.008641495, 0.011829957, -0.0037650247, -0.0044944114, -0.026924789, 0.003544472, -0.014184834, -0.013962545, 0.012038354, -0.020575652, 0.015546356, 0.0029366498, 0.019686494, 0.020950764, 0.010440649, -9.811987E-4, -0.018297186, 0.01790818, -0.012712168, 0.05193233, 0.007974627, 8.765665E-4, -0.017102381, 0.030231342, -0.0034906364, 0.022617934, -0.030842638, 0.012177285, 6.48199E-4, 0.017171847, -0.014219567, 0.016227117, -0.03217637, -0.020575652, -0.0071479897, 0.013795828, 0.033954687, 0.006265779, 0.006484595, 0.010260039, 0.012149498, -0.005605858, 0.013913919, 0.020992443, 0.0130733885, -0.022020532, 0.036566585, -0.0069951657, 0.011788278, 0.005772575, 0.008704014, 0.019422526, 0.013747202, -0.00530021, 0.028175166, 0.03017577, 0.0045221974, 0.003820597, 0.00800936, -0.017296884, -3.905258E-4, 6.2866183E-4, 0.028758675, -0.012086979, 0.005713529, -0.0054287207, -0.016796734, -0.022173354, 0.0016315685, -0.01985321, -0.001917245, 0.010704618, 0.02463243, 0.028050128, 0.007321653, 0.0014223041, 0.015046205, -0.03428812, -0.002283675, -0.016046507, -0.014434909, -0.014726665, 0.032370877, 0.010530954, 0.009697369, 0.026785858, -0.006331771, 0.05974024, 0.0025945327, 0.019436419, -0.019269701, 0.012128659, 0.011579882, 0.008780426, -0.024326783, -0.012170338, 0.011468737, -0.007627301, 0.010405917, 0.003454167, 0.02720265, -0.0050362414, 0.0829139, 0.036233153, -0.00841226, 0.024590751, -0.009669583, 0.009850194, 0.017060703, 0.016115973, -0.018519476, -0.015018419, -8.878546E-4, -0.015990935, 0.01186469, -0.040762294, -0.007842643, 0.0025337504, 0.014379337, 7.463189E-4, -0.019380847, -0.011538203, -0.029036537, 0.0017296884, 0.022951368, 2.685272E-4, -0.009204165, -0.022770757, 0.031648435, 7.0681045E-4, -0.0043693734, -0.016657803, 0.015810324, -0.02818906, 0.0074050114, -0.011975835, 0.029397756, -0.0056683766, -0.0056301705, 0.014066744, 0.007842643, 0.015462997, -0.014122316, -0.015073991, -0.019436419, -0.013858347, 0.026146777, -0.015421319, -0.0049633025, -0.03537178, -0.0058698263 ], + "id" : "4a72a82c-f2ec-4d2c-8221-8c299cb058a0", + "metadata" : { + "source" : "movies.csv" + } + }, + "da583d47-a61c-4138-9f7b-c5de6e0c9496" : { + "text" : "Kong,Action-Fantasy-Science Fiction,en,In a time when monsters walk the Earth humanity��s fight for its future sets Godzilla and Kong on a collision course that will see the two most powerful forces of nature on the planet collide in a spectacular battle for the ages.,80.388,Legendary Pictures,3/24/21,200000000,470116094,114,Released,One Will Fall,7.676,8925,Alexander Skarsg��rd-Millie Bobby Brown-Rebecca Hall-Brian Tyree Henry-Shun Oguri-Eiza Gonz��lez-Julian Dennison-Lance Reddick-Kyle Chandler-Demi��n Bichir-Kaylee Hottle-Hakeem Kae-Kazim-Ronny Chieng-John Pirruccello-Chris Chalk-Conlan Casal-Brad McMurray-Benjamin Rigby-Nick Turello-Daniel Nelson-Priscilla Doueihy-Kei Kudo-Bradd Buckley-John Walton-Daniel Tuiara-David Castillo-Kofi Yiadom-Jim Palmer-Drew Walton-Tara Wraith-Jason Virgil-Grisel Toledo-Jason Szabo-Jason Speer-Sen Shao-Scott M. Schewe-Charles Sans-Tasneem Roc-Jon Quested-Joel Pierce-Sofia Nolan-Shawn McBride-Victoria Liu-Sonny Le-Santi Lawson-Garreth Hadfield,giant monster-dinosaur-creature feature-kaiju-sign languages-giant ape-monsterverse-robot dinosaur-king kong,/pgqgaUx1cJb5oZQQ5v0tNARCeBp.jpg,/inJjDhCjfhh3RtrJWBmmDqeuSYC.jpg,1133698-791373-460465-513980-373571-893345-926680-458576-436969-615457-464052-497698-527774-566525-124905-412656-503736-451048-588228-580489-524434\r\n18785,The Hangover,Comedy,en,When three friends finally come to after a raucous night of bachelor-party revelry they find a baby in the closet and a tiger in the bathroom. But they can't seem to locate their best friend Doug ��� who's supposed to be tying the knot. Launching a frantic search for Doug the trio perseveres through a nasty hangover to try to make it to the church on time.,121.193,Legendary Pictures-Green Hat Films-Warner Bros. Pictures,6/2/09,35000000,469310836,100,Released,Some guys just can't handle Vegas.,7.314,16005,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Heather Graham-Sasha Barrese-Jeffrey Tambor-Ken Jeong-Rachael Harris-Mike Tyson-Mike Epps-Jernard Burks-Rob Riggle-Cleo King-Bryan Callen-Matt Walsh-Ian Anthony Dale-Michael Li-Sondra Currie-Gillian Vigman-Nathalie Fay-Chuck Pacheco-Jesse Erwin-Dan Finnerty-Keith Lyle-Brody Stevens-Todd Phillips-Mike Vallely-James Martin Kelly-Murray Gershenz-Andrew Astor-Casey Margolis-Ken Flaherty-Joe Alexander-Constance Broge-Sue Pierce-Floyd Levine-Robert A.", + "embedding" : [ 0.0029604468, -0.042167, -0.0030177021, -0.01836218, -0.013209183, 0.019332154, -0.0122863585, -0.0035936253, -0.008419928, -0.024235921, 0.020382961, 0.033060003, 0.045723576, -0.0055605206, -7.1821985E-4, 0.009969194, 0.031578097, -0.029961472, 0.004600649, -0.029692033, 0.0051866756, -0.0068033016, -0.021420296, -0.0015610546, 0.00139855, 0.015048095, 0.034838293, -0.013707642, -0.010770772, 0.0038091755, 0.0037081363, -0.005631248, 9.1440417E-4, -9.666077E-4, -0.01450922, -0.008083131, -0.005267507, -0.0070323236, 0.023319833, -0.0148190735, -0.004556865, 0.012016921, 0.0075779352, -0.014334085, 0.0069380207, 0.0014995892, 0.013364109, -0.01764817, -0.01851037, 0.025475334, 0.014495748, 0.027294038, -0.020827534, -0.0018843799, -0.018052325, -0.009915307, -0.007389329, -0.005510001, 0.014401444, -0.023521911, -0.002431675, -0.018766336, -0.01694763, -0.008291945, -0.0115858205, -0.009383168, -0.018469954, -0.008473815, -0.017931078, 0.0028358316, 0.020935308, 0.025892962, 0.016166262, 0.01930521, 0.003974206, -0.037182402, -0.03758656, -0.0030917975, -0.0034488025, 0.016759025, 9.497679E-4, -0.008386248, -0.011767691, 0.004226804, 0.01339779, 0.029260933, -0.01751345, 0.010561958, -0.022673182, 0.004172916, 0.006877397, 0.03052729, -0.002684273, 0.018106213, -6.529654E-4, 0.014953792, -0.010265576, 0.019628536, -0.029503427, -0.041358687, 0.0034488025, -0.0054695853, -0.0029520267, -0.009167617, -0.0038967426, 0.004294163, 0.014967264, -0.020652398, 0.022498047, 0.0024805109, -0.0022784325, -0.0035330018, 0.024842156, -0.032278635, -0.010124121, -0.021177802, 0.02179751, -0.019844087, 0.00768571, -0.012225735, 0.025071178, 0.011154721, 0.014387973, -0.014590051, 0.033140834, 0.03680519, -0.013902985, -0.020935308, 1.517692E-4, -0.009821004, 0.038394872, 0.0035969932, 0.026741691, 0.0055571524, -0.022201667, 0.054992232, -0.040334824, -0.0029469747, -0.01809274, -0.0073960647, 0.04437639, 0.039688174, -0.0160046, -0.033706654, -0.0328714, 0.005031749, 0.019911446, -0.0012503593, 0.016678194, 0.008817349, 0.02222861, 0.017998438, 0.009551566, 0.011767691, 0.01922438, -0.011929354, -0.0014827494, 8.3483587E-4, 0.023265945, -0.0072613456, -0.009719965, -0.0040078857, 0.0065843835, -0.022888731, -0.010110649, 0.026714748, 0.027967632, -0.018860638, -0.0044423537, -0.025259783, -0.013983816, 0.03710157, -0.011808107, 0.022430688, -0.007759806, 0.036131594, 0.016826384, -0.010467654, -0.017675113, -0.011073889, 0.018577728, 0.011033474, 0.03182059, 0.024707437, 0.009888363, 0.025044234, 0.034218587, -0.049118493, 0.021474184, -0.02387218, 0.01809274, 0.01628751, -0.011121041, -0.006419353, -0.64233947, -0.0056447196, 0.01140395, -0.015748633, -1.1987872E-4, 0.017540393, 0.008224586, 7.7842234E-4, -0.02494993, 0.009410111, -0.021703206, 0.016206678, 0.010716884, -0.021123916, -0.046100788, -0.005695239, -0.004785887, -0.020841006, -0.0033090317, 0.018927999, -0.014374501, 0.011969769, 0.019426458, -0.014670882, -0.0025546062, 0.0022818004, -0.020342546, -0.011861995, 0.03257502, 0.014158951, -0.024276337, 0.022026531, 0.0079686195, 0.0017218753, 0.03793683, -0.0059276293, -0.0032383043, 0.03917624, 0.033140834, 0.04125091, -0.031928368, 0.0021706575, 0.011363534, -0.009618926, -0.020652398, 0.0065641757, 0.010595637, -0.022983035, 0.012508645, 0.011666652, -0.023521911, 0.003042962, -0.008009035, -0.011457838, -0.01565433, 0.0030766416, 0.0067123664, -0.0345958, 0.00163094, -0.015964184, -0.015250173, 0.012751139, -5.1108963E-4, 0.014199367, -0.013835626, 0.028398734, -0.0066146953, -0.0094168475, -0.0039169504, -0.032063086, 0.0029806546, 6.5928034E-4, -0.010265576, -0.0021470815, -7.8978925E-4, 0.026054624, 0.018618144, -4.67306E-4, -0.01029252, 0.014118535, 0.008857764, -0.0030867455, -0.001177948, 0.0104541825, 0.01372785, -0.022161251, -0.042167, 0.014778658, 0.004752207, -0.009645869, 0.0102116885, 0.017001519, -0.0013362425, 0.012522117, 0.0076587666, 0.0066180634, -0.008534439, 0.01737873, 0.018106213, -0.05846798, -0.021568486, -0.023953011, 0.015331005, -0.012986897, -0.008716309, 0.014212838, -0.014522691, 0.0034589064, 0.029907584, -0.015034623, -0.008352568, -0.0052843466, -0.011377007, 1.1693175E-4, -0.0013109827, -0.025340615, 0.015411836, 0.012858914, -0.004526553, 0.0037620238, 0.0049980693, 0.009773852, 0.018672032, -0.01233351, 0.014347557, 0.020261714, -0.0070996834, -0.0027684723, -0.002217809, -0.004752207, 0.0013320326, -0.013593132, 0.010676469, -0.0025832339, 0.018335234, 0.01837565, 0.02715932, -0.0028947713, 0.013054256, -0.0080427155, -0.024788268, -0.0024872466, -0.0122863585, -0.012192056, -0.004950918, -0.0026303856, -0.021851396, -0.0012200476, -0.007988827, -0.007550991, -0.014590051, -0.007672238, 0.00768571, 0.01737873, -0.021029612, -0.0028577235, -0.0223768, -0.023818292, 0.018806752, -0.027213207, 0.013916457, -2.102877E-4, -0.009740173, -0.021137387, 0.019749783, -0.005823222, -0.0257313, 0.0028004681, -0.002317164, -0.022430688, 0.0018288083, -0.033113893, -0.010285784, 0.022929147, 0.018402595, 0.011983241, -0.010023083, 0.013775002, 0.011377007, -3.014334E-4, 0.009713229, -0.021191275, -0.010737092, -0.0011442682, 0.0358891, 0.01004329, 0.017499978, -0.004657904, -0.01444186, 0.0023036923, 0.0016326241, -0.006543968, -0.010144329, -0.021716679, -0.0043985704, 0.01779636, -0.011747483, 0.010993058, -0.0066921585, 0.01104021, 0.057066903, 0.02709196, -0.012488437, -0.014711298, 0.012266151, -0.010460919, 0.0072074584, -0.028210126, 0.007975356, -0.0029486588, 0.023521911, 0.0020393066, -0.018402595, 0.008992483, 0.01651653, 0.029718978, -0.013599868, 0.0036542488, -0.013721115, 0.0027971, -0.0033208195, -0.019426458, 0.02294262, 0.011963033, -0.031847537, 0.015075039, 7.792643E-4, 0.016785968, -7.00959E-4, 0.0036374088, -0.02129905, -0.009268656, -0.00327872, 0.002088142, 0.0042604837, -0.0051058442, 0.029260933, 0.008480552, 0.021851396, -0.005472953, -0.0021369776, 0.011451102, 0.039634284, -0.004078613, -0.0045838086, -0.004543393, 9.893415E-4, 0.0024350432, -0.015937239, 0.029584259, -0.026108513, 0.014320614, -0.02251152, 0.0037653917, 0.024559246, -0.011181665, 0.0033258714, 0.010144329, 0.030419515, 0.028317902, 5.401384E-4, -0.039903723, 0.019170491, 0.0156139145, 0.020558096, -0.004321107, -0.016610833, -0.014428388, -2.1491866E-4, -0.018537313, -0.019749783, -0.014051176, 2.115507E-4, 0.0042773234, -0.0076520303, -0.0012124697, 0.0026606973, 0.006426089, 0.004513081, 0.022040004, 0.021245163, -0.027576948, -0.0042335396, 0.018927999, 1.18720985E-4, -0.029072328, -0.010305991, -0.020234771, -0.035781324, 0.005004805, -0.012488437, 0.01958812, -0.012953217, -0.008527703, -0.021406826, -0.0030564338, 0.011100833, 0.0016932475, 0.016637778, 0.017850246, 0.008864501, 0.022066947, -0.0031002176, -0.001990471, 0.02858734, -0.0060017244, 0.011525197, 8.984063E-4, 0.0034690103, -0.0030244382, 0.022120835, 0.0029604468, -0.043083087, 0.014037704, -0.01573516, -7.093789E-4, -0.026000738, -0.0011333223, -0.0046376963, -0.02080059, -0.0016679877, -0.023292888, -0.010272312, -0.0074162725, 0.08061576, 0.013680699, 0.014172423, 0.012959953, -0.006153283, 0.01708235, -0.010050026, -0.009632397, 3.1701027E-4, -0.009241713, 0.0125760045, -0.007887788, 0.018981885, 0.01472477, 0.013316958, -0.020787118, -0.02501729, -0.017203597, -0.003741816, -0.012441286, -0.01758081, -0.0031254773, 0.03702074, 0.0469091, -0.0016949315, -0.027752083, 0.010285784, 0.010029818, -0.011377007, 0.014832545, -0.01558697, -0.0030867455, 0.0021420296, 0.003256828, 0.0012512013, 0.00281394, 0.007874317, 9.35454E-4, 0.022780957, 0.016408756, -3.062749E-4, 0.020638928, 0.010447446, -0.0033679712, 0.021972643, -0.022767484, -0.005254035, 0.023104282, 0.032628905, -0.020989196, 0.034622744, -0.0063856733, -0.019844087, 0.0010971166, 0.01908966, -0.008871236, -0.016503058, -0.0097267, -0.017432619, 0.009261921, 0.004674744, -0.038017657, 9.447159E-4, -0.017823303, -0.008675894, -0.031605043, 0.0046309605, -0.024464943, -0.020315602, 0.0080898665, 0.011107569, -0.029260933, -0.0055133686, -0.0074162725, 0.017432619, -0.0068403496, 0.024545774, -0.010764035, 0.0018102844, 0.012825234, -0.029287877, -0.014051176, -0.01751345, -0.03537717, -0.014603523, 0.02259235, -0.0030917975, 0.019170491, 0.01354598, -0.0036576167, 0.009591982, 2.3154802E-4, -0.022107363, -0.002928451, 0.031685874, -0.0059983567, 0.024680493, 0.016610833, 0.0053180265, -0.005136156, -0.0027785762, -0.020409904, -0.0043918346, -0.021352937, -0.014643938, -0.012037129, 0.008392984, -0.0012764611, -0.021474184, -0.011565613, -0.021137387, -0.0210835, 0.012131432, -0.008298681, 0.013997288, 0.0069380207, 0.02944954, 0.0083795125, -0.010642789, 0.0020123627, -0.0027886801, 0.008473815, 0.006799934, 0.02000575, 0.009639134, 0.02909927, -0.0054695853, -0.02516548, 6.0918176E-4, 0.018119685, -0.015762106, 0.018779807, -0.008345832, 0.015007679, -0.009059843, 0.0049778614, 7.9778815E-4, 0.009201298, -0.011006529, 0.010831395, -0.041331742, 0.0029621306, 0.017176652, 0.0126501, -0.0070525315, -0.031012278, -0.0034723782, 0.0012259415, 0.005048589, 0.025461862, 0.0067393105, -0.003957366, -0.024343695, 0.0043008993, -0.017176652, -0.036212426, -0.02901844, -0.0013884461, 0.034326363, 0.025758244, 0.03974206, 0.005149628, 0.034353305, 0.014738242, 8.756725E-4, 0.010460919, -0.01766164, -0.016705137, -0.044915263, -0.008979011, 0.0069784364, 0.018038854, 0.0030143342, 0.008520967, -0.0028880353, 0.008345832, 0.011154721, 0.013862569, -0.010231896, -0.016247094, 0.005048589, 0.028749002, -0.017001519, -0.010245368, -0.013822153, -0.011329855, 0.041708954, -0.016395284, -0.0065203924, -0.0022868523, 0.023979954, 0.006874029, -0.006153283, -0.019412985, 0.004688216, -0.015236702, -9.986034E-4, -0.024774795, -0.011518462, 0.016354868, 0.0026741691, 0.008635478, -0.008999219, -0.0118283145, -0.0020460426, 0.020463793, -0.015533083, -0.0017025095, 0.011767691, -0.016974574, -0.013343901, -0.03537717, 0.011356799, -0.042544212, -0.008999219, 8.1378606E-4, 0.002202653, -0.0030631698, -0.010433975, -0.045157757, 0.04273282, 0.015357949, 0.040927585, -0.0014785393, 0.036616582, 0.016503058, 0.01943993, -0.0129128015, 0.008918388, -0.008945331, -0.016839856, 0.027725138, 0.026903354, -0.009699757, -0.0014726454, -0.0066854227, 0.006675319, -0.03610465, -0.035781324, 0.023939539, 0.03346416, 0.018025381, -0.022969563, 9.565038E-4, -0.0061802273, 0.008985747, 0.005375282, -0.018981885, 0.012683779, -0.014172423, -0.027469173, -0.0069784364, -0.003836119, 0.011760956, 0.0074028005, -0.022484576, 0.012589476, -0.007813693, -0.00932928, -0.010878547, -0.0059983567, 0.03117394, -0.017257484, -0.003721608, -0.019857557, 0.0072748177, 0.0037014002, -4.5172914E-4, -0.004172916, 0.03295223, -0.017324844, 0.020773645, 0.0043884665, -0.013822153, -0.009490943, 0.009659342, -0.027536532, -0.013970344, -0.023252472, 0.006190331, 0.030473404, 8.14207E-4, -0.0017050355, -0.017419146, -0.017095821, -0.019399514, 0.0020308867, -0.00839972, 0.0024838788, -0.038152378, 0.018065797, -1.4913797E-4, -0.007928204, 0.0059074215, 0.0044726655, 0.0064833444, 0.006173491, 0.020140467, -0.0029873904, -0.002928451, -0.018038854, -0.024505358, -0.042409495, -0.020477265, -0.0033006116, -0.030123133, 0.015007679, -0.021123916, -0.010838131, -0.021581959, -0.026135456, -0.0069717, -0.0061499155, -0.030904504, 0.020827534, 0.018389123, -0.015250173, -0.01372785, -0.007342177, 0.039149296, 0.029207045, -0.008864501, 7.119049E-4, 0.0029099272, 0.022632767, -0.018469954, 0.023818292, -0.0019702632, -0.018604673, -0.01029252, 0.014266726, 0.03817932, 0.0014398077, 0.007550991, -0.026647387, -0.023117755, -0.010130857, 0.029826753, -0.0160046, 0.0041661803, 0.032116972, 0.01147131, 0.03324861, 0.014266726, 1.3050888E-4, -0.019817142, 0.007362385, -0.006688791, -0.016476115, 0.0023626317, 0.013902985, 0.022888731, 7.847373E-4, -0.0050856364, -0.03917624, -0.005041853, -0.013168767, -0.029880641, -0.0025259783, 0.015829464, 0.044511106, 0.032278635, -0.0072815535, 0.023764405, -0.005375282, 0.020463793, -0.030042302, -0.0033544993, 0.004011254, 0.0063317856, 0.018065797, 0.01887411, -0.021258634, 0.0019348995, 0.021784037, 0.014051176, 0.01233351, 0.034892183, -0.012670307, -0.0030126502, -0.00861527, 0.007018852, -0.008258265, -7.123259E-4, 0.021285579, -0.026889881, 0.01125576, 0.020288657, 0.038152378, 0.004085349, 0.001167002, 0.0020494105, -0.024101201, 0.0035228978, 0.013188975, -0.022915676, -1.75345E-4, -0.026175871, 0.019709367, 0.0021858134, 0.0066012233, 0.030931447, 0.013188975, -0.021891812, -0.002455251, -0.008979011, 0.006624799, -2.565973E-4, 0.0038293833, 0.016893743, 0.015196286, -0.018954942, 0.024249392, -0.02344108, 0.006163387, 0.0030682217, -1.8450167E-4, -0.018146629, 0.028749002, 0.0078069572, -0.045912184, 0.0011139564, -0.0015745265, 0.011444366, -0.005823222, -0.00163094, -0.019884503, -0.014024232, -4.769889E-4, 0.012569268, -0.019318683, -0.026270175, 7.148519E-4, -0.014630467, -0.026957242, 0.0044861375, 0.18925303, -0.02901844, 0.01450922, 0.043945286, 0.003970838, 0.027698195, 0.009214769, 0.020140467, -0.013822153, 0.00786758, 0.0011181664, 0.012171848, 0.004684848, -0.0048599825, 0.002081406, -0.015694745, -0.030042302, -0.012811762, -0.0148190735, -0.02173015, -0.0023087442, -0.0022716965, -0.015506139, -0.011747483, 0.010380087, -0.023791349, 0.00586027, 0.0076116147, 0.024640078, 0.022969563, -0.01723054, -0.005358442, 0.0012680411, 0.00861527, -0.051166218, -0.006301474, -0.0010617529, 4.188914E-4, -4.0815602E-4, 0.010373351, 0.010582166, -0.009915307, 0.01025884, 0.0014827494, -6.226537E-4, 0.0088847075, -0.00868263, 4.5215013E-4, -0.009821004, 0.019062717, -0.047717415, -0.0070996834, -0.0015400049, 0.033060003, -0.0043547866, -0.020908365, 0.0044895057, -0.01701499, -0.0037754956, 0.0026135456, 0.004284059, 0.037909884, -0.022430688, 5.7971204E-4, -0.004438986, 0.015991127, -0.038691252, 0.0148190735, 0.023777876, -0.025758244, -0.026755163, -0.018065797, -0.029072328, -0.02236333, 0.007342177, -0.01311488, 0.0017378731, 0.0066146953, 0.028506508, 0.009807532, -0.018779807, -0.0050822683, 0.01723054, -0.013849097, -0.016893743, -0.008453608, 0.015546555, -0.0022447528, -0.008628742, -0.004553497, -0.0135123, -0.015236702, -0.012468229, 0.0074364804, -0.006543968, 1.8555416E-4, 0.010804451, 5.86448E-4, -3.4858502E-4, -0.0120438645, -0.039499566, 0.021272106, 0.029692033, -0.0011855259, -0.023993427, -0.017971493, -0.0062576905, 0.015694745, 0.011855259, -0.033302497, -0.009517887, -0.030931447, 0.0038832708, -0.016354868, 0.0011560561, 0.015128926, 0.014374501, -0.0042234357, 0.019291738, -0.019237852, -0.0164357, -0.019682424, 0.012299831, -0.0038327512, -0.006742678, -0.030904504, -0.011754219, 0.019116605, 0.00305475, -0.022929147, 0.022269025, -0.025704356, 0.0053180265, -0.005014909, 0.008635478, 0.014199367, 0.006503552, 0.002222861, 0.02279443, -0.014711298, 0.013532508, -0.009652605, 0.010238633, 0.0143610295, 0.013808682, -0.017553866, -0.00586027, 0.015304061, -0.019857557, -0.013700907, -0.023481496, -0.011680124, 7.809483E-5, 0.0143610295, 0.03195531, 0.0027230047, -0.009645869, -0.027280567, -0.0018237564, 0.042274773, -0.03831404, 0.016395284, 0.016395284, -0.046855215, -0.031497266, -0.014105063, -0.17233235, 0.012589476, 0.0042705876, -0.021837926, 0.015775576, 0.019197436, 0.018065797, -0.016530002, 0.017459562, -0.016031543, 0.013242862, 0.004459194, -0.049765144, -0.0062644263, 0.02259235, 0.0010171273, -0.011861995, 0.016260564, 0.015640859, -0.0011038525, 0.026539613, 0.0015610546, -0.027199736, 9.282971E-5, -0.0038664308, 0.0044928733, 0.0036710885, 0.0059141573, 0.007443216, -0.009154146, -0.037829053, -0.008756725, -0.010878547, -0.009073314, -0.008857764, -0.01025884, -0.009706493, -0.0064429287, -0.02144724, -0.01651653, 0.02652614, 0.023670102, 0.015128926, -0.004085349, 0.016354868, 0.013808682, 0.0142397825, -0.007113155, 0.012690515, -0.0076520303, -0.008110074, -0.029988416, 0.0070862113, -0.0030025463, 0.0047252635, 0.023575798, -0.0027651044, -0.007854109, -0.0022430688, -0.004438986, -0.030446459, -0.013007104, -0.0033629192, -0.019426458, -0.008770197, -0.018106213, -0.02129905, 0.018618144, -0.025744772, 0.009625661, -0.022457631, 0.0069245487, 0.019507289, -0.0030294901, 0.012010185, -0.02080059, -0.023535382, 0.011168192, 0.0039135823, 0.008877972, -0.02051768, 0.03109311, -0.019197436, 0.0129128015, 0.016637778, -0.019695895, -0.0067595183, -0.010393559, -0.0139434, -0.009086786, 0.006183595, -0.0075038397, -0.029207045, -0.005870374, -0.016624305, 0.005937733, -0.013162031, 0.008076395, 5.397174E-4, 0.006304842, -0.019695895, -0.0063991453, -0.02152807, 0.02458619, 0.029207045, 0.025785187, 0.01822746, 0.04011927, 0.02480174, 8.537807E-4, -0.001285723, 0.008770197, 0.019992277, 0.01671861, -0.0095852455, 0.0072613456, -0.016691664, -0.017958023, 0.009490943, 0.0075173117, 0.06083903, -0.019978805, -0.015856408, -0.016812911, -0.018995358, -0.01572169, -0.07883747, 0.019534232, 7.493736E-4, 0.052136194, -0.035700493, 0.039418735, 0.0059175254, 0.03182059, -0.010777508, 0.022174722, -0.015196286, -0.00864895, 0.007618351, -0.008770197, 0.014886432, -0.011572349, -0.013404525, 0.0057524946, -0.008446871, 0.025125064, -0.010467654, -0.0057524946, -0.0039304225, -0.016772496, -0.047555752, 0.034999955, -0.0328714, 0.02866817, 0.007887788, 0.002810572, 0.021608902, -0.028695114, 0.019035773, -0.026997657, -0.021851396, -0.038664307, -0.01450922, -0.019574648, 0.013862569, -0.05216314, 0.002818992, 0.004994701, 0.010151065, -0.0149403205, 0.00256471, -0.0052843466, -0.028102351, 0.043406412, 0.003970838, -0.02051768, -0.024195505, -0.027617363, -0.04739409, -0.0031237933, 0.030500347, 0.019076189, 0.023993427, 0.015115455, -0.019210907, 0.007948412, 0.0019652112, -0.0038327512, -0.027617363, 0.011734012, 0.0030092823, 0.016139317, -0.010481127, -0.0034218587, 0.008931859, -0.023198586, -0.0031002176, 0.022929147, -0.022673182, -0.012245943, -0.023346776, 0.003987678, -0.019116605, -0.016812911, 0.03702074, -0.01987103, -0.0050014374, -0.022269025, -0.0043985704, -0.020463793, 0.011989977, 0.020409904, -0.001874276, 0.0010878547, -0.006294738, -0.038367927, 0.005712079, 0.023171641, -0.008877972, 6.824352E-4, -0.011666652, 0.029880641, 0.009221505, 0.008318889, -0.01165318, 0.01807927, -0.008709573, -1.0072339E-4, -0.07792138, 0.0075307833, 0.0039001107, -0.007355649, -0.021703206, -0.0063216817, 0.014590051, -0.0057861744, 0.0011341643, 0.01764817, -0.004691584, 0.01764817, -0.0019450034, 0.006991908, -0.013788474, 0.011006529, 9.709229E-5, -0.0029688666, -0.0022447528, 0.0011240604, -0.0077665416, 0.0042234357, 0.027078489, 0.0046174885, 9.5313584E-4, 0.029314822, 0.012212263, 0.017109293, -0.018914526, -0.0054156976, 0.02388565, -0.023050394, 0.002229597, 0.01035988, -4.1231335E-5, -0.02208042, -0.01004329, 0.019170491, 0.008642214, 0.012771347, -0.0017850248, -0.012023657, 0.0012284674, -0.0074028005, -0.0190223, 0.044322502, -0.025044234, 0.01651653, 0.028937608, 8.7904045E-4, 0.021406826, 0.014832545, -0.021608902, -0.008702838, 0.016812911, -0.022013059, 0.06407228, 0.011956298, 0.0043446827, 0.013808682, 0.014980736, 0.0059714126, 0.037694335, -0.031712815, -0.0021538176, 6.0328783E-4, -0.0030800097, -0.011713804, -0.011983241, -0.018348707, 0.0063620973, -0.008675894, 1.0072339E-4, 0.00700538, 0.013424733, 0.00468148, -0.004098821, -0.008480552, 0.012010185, 0.0070457957, 0.01558697, -0.01879328, -0.028775945, 0.00979406, -0.007133363, 0.022134306, 0.0037653917, 0.01357966, -0.0024131513, 0.015304061, -0.026916826, 0.014711298, 0.0052270913, 0.008716309, 0.023831764, 0.019318683, -0.025569636, -0.007362385, 0.017850246, 0.023562327, 0.0049913335, -0.009288864, -0.009450527, 0.0032500923, -0.012858914, -0.0019635272, -0.017567338, -0.024384111, 0.013290014, 0.015977655, 0.027725138, 0.0062374827, -0.027859857, 0.007456688, -0.030338684, 0.0066921585, -0.004762311, -0.013222654, -0.024788268, 0.051004555, 0.013182239, 0.015236702, 0.027644306, -0.029907584, 0.059869055, 0.012710723, 0.023427607, -0.013283278, -0.008534439, -0.0010297572, 0.0016924056, 0.016907215, -0.050438736, 0.010784243, -0.0010112333, 0.0047454713, 0.0077463337, 0.04954959, -0.012306566, 0.0627251, 0.00818417, -0.00725461, 0.023414135, -0.023292888, 0.01714971, 0.012360455, 0.017715529, -0.022834845, -0.0045737047, -0.0136133395, -0.006065716, -0.010743828, -0.030904504, -0.0047252635, 0.001966895, 0.024653548, -0.018591201, 0.0029587627, -0.012414342, 0.019049244, -0.0073287054, 0.039284017, 0.016395284, -0.025071178, -0.009814268, 0.023131225, 0.0021656055, 0.002086458, -0.027967632, 0.0020611985, -0.03130866, -0.005708711, 0.0012032076, 0.022767484, 0.012340247, -1.0703834E-4, -0.0068571893, 0.00793494, 0.007907996, -0.008871236, 0.0075779352, -0.012138168, -0.014805601, 0.006062348, 0.010245368, 0.0056750313, -0.019103132, -0.017351788 ], + "id" : "da583d47-a61c-4138-9f7b-c5de6e0c9496", + "metadata" : { + "source" : "movies.csv" + } + }, + "0d449455-a5a8-4c2b-ba7a-69ddfe4f6cb3" : { + "text" : "Armijo-Ari Atken-Mikiah Aubert-Terri Battee-Gregory Scott Bedford-Patrick Constantine Bertagnolli Jr.-David Cleveland Brown-Carter Burch-Lori Campbell-Kyle Clements-Christopher De Stefano-Gillian Alaire Espina-Matthew Gallagher-Justin Goldsmith-Victoria Greene-Shawntae Hughes-Lizeth Hutchings-Jeffrey Johnson-Sergio Kato-Kevin Lapham-Mark Lavell-Justin Lebrun-Starlette Miariaunii-Mahal Montoya-Grinnell Morris-Bill Rainey-Gus Rhodes-Samantha Sadoff-William Schaff-Giovanni Silva-Nathan O'Neil Smith-Hannah Spiros-Todd T Taylor-Erica Teeple-Dennis Thomas IV-Joseph Velez-Edgar Leza,saving the world-artificial intelligence-cyborg-killer robot-future-time travel-dystopia-sequel-robot-duringcreditsstinger-terminator,/oZRVDpNtmHk8M1VYy1aeOWUXgbC.jpg,/g4a5YLWwi6OCp8TcvxsUNrXMbN5.jpg,534-296-500476-280-218-135397-290859-177677-49106-102899-254128-76341-99861-198184-127585-140607-246655-168259-206647-158852-91314\r\n296,Terminator 3: Rise of the Machines,Action-Thriller-Science Fiction,en,It's been 10 years since John Connor saved Earth from Judgment Day and he's now living under the radar steering clear of using anything Skynet can trace. That is until he encounters T-X a robotic assassin ordered to finish what T-1000 started. Good thing Connor's former nemesis the Terminator is back to aid the now-adult Connor ��_ just like he promised.,50.774,Columbia Pictures-Intermedia Films-C-2 Pictures-IMF Internationale Medien und Film GmbH & Co. 3. Produktions KG-Mostow/Lieberman Productions-Warner Bros. Pictures-Senator International,7/2/03,200000000,435000000,109,Released,The Machines Will Rise.,6.129,5793,Arnold Schwarzenegger-Nick Stahl-Claire Danes-Kristanna Loken-Earl Boen-David Andrews-Carolyn Hennesy-Jay Acovone-Mark Famiglietti-Moira Sinise-Chopper Bernet-Christopher Lawford-M.C. Gainey-Susan Merson-Elizabeth Morehead-Billy D. Lucas-Brian Sites-Alana Curry-Larry McCormick-Robert Alonzo-Michael Papajohn-Timothy Dowling-Jon Foster-Mark Hicks-Kim Robillard-Matt Gerald-William O'Leary-Rick Zieff-Rebecca Tilney-Chris Hardwick-Helen Eigenberg-Kiki Gorton-Walter von Huene-Jerry Katell-George A. Sack Jr.-Eric Ritter,saving the world-artificial intelligence-man vs machine-cyborg-killer robot-leather jacket-nanotechnology-rocket launcher-veterinarian-fire engine-villain-time travel-dystopia-psychiatrist-urban setting-firefighter-action hero-2030s-good versus evil-terminator,/qAnafzrd9Y5pVTWAP0tSDDMPzTR.jpg,/kbXMOnz2RhTSAbLtHX5hy5AXtwv.", + "embedding" : [ -0.012291765, -0.048151325, -0.02860529, -0.03497422, 0.004536492, 0.028522933, -5.880796E-4, -2.6959012E-4, -0.03373887, -0.034013394, 0.03505658, 0.029401407, 0.009917141, -8.2485564E-4, 0.008949447, 0.012312354, 0.024556078, 0.00756997, 0.015428189, -0.0155517245, 0.009896552, 0.009272012, -0.009374958, 0.0057649817, 0.011152495, 0.012833947, 0.014632073, -0.02518748, -0.007919987, -0.021042183, 0.014467359, -0.011077001, -0.004563944, -0.016375294, -0.033958487, 0.008599431, 0.0058576334, -0.0131771015, 0.022250084, -0.003356043, 0.031981923, 0.00969066, -0.00529143, -0.008681788, -0.014412454, 0.01065149, 0.013410445, -0.009285739, -0.022208907, 0.027987614, 0.013781052, 0.036895882, -0.04233144, -0.026107132, -0.007892534, 0.010109307, -0.018351858, 0.016251758, 0.021522598, 9.7209006E-5, 0.011838802, -0.010219117, -0.024377637, -0.0064444263, 9.762722E-4, -0.0032633916, -0.022950118, 6.691497E-4, -0.010932876, -0.0036889021, 0.01442618, 0.017843992, 0.02554436, 0.0036031136, 0.016114498, -0.02596987, -0.0074327085, -0.00580616, -0.011790761, 0.010239705, -1.7350708E-4, 0.006770422, -0.0033989372, -0.012408437, 0.015002679, -0.003201624, -0.0043889354, 9.230834E-4, -0.022812856, -0.009724976, 0.020685304, 0.024281554, 0.007919987, 0.0040183295, -0.009985772, 0.026848344, -0.022881487, 0.014371276, -0.015634082, -0.037197858, -0.002621694, -0.005562521, 0.013842819, -0.01453599, -0.0069591566, 0.007576833, 0.0032428023, 0.008839639, 0.035578173, -0.0052502514, 0.021687312, 0.00783763, 0.0045982595, -0.032970205, -0.010129897, -0.018598929, 0.016938066, -0.027177772, -0.00466689, -0.020548042, 0.02465216, 0.04227653, -0.0035276199, -0.03362906, 0.032503515, 0.04870037, 0.0064341314, 5.074385E-4, -0.008455306, -0.0032256446, 0.012305491, -0.0016488534, 0.014700703, 0.020534316, -0.011083864, 0.036209576, -0.04463743, 0.006681202, -0.009402411, -0.009594576, 0.031268165, 0.02244225, -0.026409106, -0.009855374, -0.022401072, 0.011227989, 0.010370105, 0.009450452, 0.009409274, 0.033903584, 0.0024707064, 0.013431035, 0.003364622, 0.0146869775, 0.025393372, -0.026409106, 0.002268246, 0.0025376214, -0.0014729871, -0.009217108, -0.0037438066, -0.012689823, 0.0047286577, -0.02518748, 0.025640443, 0.015290928, 0.02429528, -0.0155517245, 0.0027074825, 0.0054733013, -0.012744728, 0.01049364, -0.032119185, 0.0030557835, -0.008372949, 0.026793439, 0.008777871, -0.012655508, -0.037554737, -0.016471377, 0.01717141, -0.011941748, 0.03744493, 0.039778374, -0.006437563, 0.01478306, 0.014220288, -0.022689322, 0.017432207, -0.014261466, 6.837337E-4, 0.014261466, -5.061517E-4, -0.011488785, -0.64216405, -0.02732876, -0.012943757, 0.0082219625, 0.007981755, 0.025832608, -4.1800409E-4, -0.015592903, -0.012991798, -0.0053223134, -0.03791162, 0.025750251, 0.009752427, -0.015798796, -0.015798796, -0.023910949, 0.013986944, -0.01909307, -0.002451833, 0.024803149, -0.019683294, 0.02069903, 0.010342652, -0.0074532977, 0.00408696, -0.004303147, -0.017693004, -0.011406428, 0.0076660533, -0.005689488, -0.012429026, 0.009683797, 0.0027246403, -0.022099096, 0.04238634, -0.0070483764, -0.020644125, 0.04227653, 0.012319217, 0.02237362, -0.026944427, -0.006540509, 0.011090727, -0.0067155175, 0.0053223134, 0.020438233, 0.0028481756, -0.0147556085, -0.016526282, -0.013938902, 0.018804822, 0.021426516, 0.0051884837, -0.005095832, -9.5225143E-4, 0.0054492806, 0.02112454, -0.02507767, 0.025022766, -0.012998661, -0.019532308, 0.020204889, -0.0055110482, 0.0058576334, -0.019395046, 0.022744225, 0.006125293, -0.016114498, -0.0057066455, -0.04200201, 0.010486776, 0.009148477, -0.015290928, -0.001859893, -0.0039428356, 0.021220623, 0.020424508, 0.004563944, -0.0016256905, 0.012401574, -0.015208571, -0.008290593, 0.0034486945, 0.009972046, 0.02967593, -0.010143623, -0.0248306, 0.006334617, 0.0057890024, 0.012298628, 0.011728993, 0.02201674, -0.004392367, -0.013142786, -0.0025238954, -0.01252511, -0.0070621027, -0.005466438, 0.012868263, -0.054026116, -0.011468196, 0.0041487277, 0.043484434, 0.005229662, 0.016045867, -0.0031844662, 0.0060532307, -9.3080435E-4, 0.023581522, -0.03467225, -0.026422834, 0.008043522, -0.0141104795, 0.0077003683, 0.004395799, -0.025146302, 0.009292602, 0.007549381, -0.009018078, -0.006701791, -8.673209E-4, 0.003266823, 0.0071444595, -0.0200539, 0.011777034, 0.009175929, 0.0071170074, -0.014261466, -0.011324071, -0.0025873787, -0.0054183966, 0.0030798044, 0.011941748, -0.012916304, 0.011152495, 0.0015124498, 0.009079847, -9.496778E-4, 0.018832274, 0.009189655, -0.011077001, -0.008125879, -0.0030128893, -0.003378348, -0.001911366, -0.03242116, -0.017020423, 6.74297E-4, -0.002273393, -0.010733847, -0.009814195, 0.01820087, 0.0087984605, 0.023389354, -0.0075356546, -0.009354369, -0.046394378, -0.027438568, 0.007357215, -0.015537999, 0.011605457, 0.010445598, -0.017542016, -0.018722465, 0.013877135, -0.004069803, -0.010843656, 0.012442753, -0.024226649, -0.018283227, 0.034507535, -0.021810848, 0.0023660446, 0.008812186, -0.022579512, 0.026216941, -0.024350185, 0.026834618, 0.01259374, -0.007158186, -0.005946853, 0.0077140946, -0.008276867, -0.0024140861, 0.023499163, 0.027452294, 0.040739205, -0.016965518, -0.013568296, 0.010994644, -0.018873453, -0.009807332, -0.0042791264, -0.0069522937, 0.0038707734, 0.010198527, 0.00933378, -0.0011641488, -0.011859391, -4.932834E-4, 0.03969602, 0.021069637, 7.5536704E-4, -0.014920322, -0.0070483764, -0.03146033, 0.0062213764, -0.03780181, 0.005106127, -0.015826248, 0.016718447, 5.7992974E-4, 0.0023969284, -0.011358387, 0.023059927, 0.020561768, -0.007672916, 0.0036477235, -0.03365651, 0.008599431, 0.013698695, -2.0020873E-4, 0.01927151, -0.0070621027, -0.02978574, 0.022634417, 0.018996987, -0.0128888525, 0.0029459742, -0.020328423, -0.0012996945, 0.01214764, 0.009841647, 4.1693173E-4, 0.018406764, 0.0023574657, 0.009196519, -0.0067223804, 0.047574826, -0.0137535995, -0.016608639, 0.0052605458, 0.027918983, -0.004412956, 0.0044266824, -0.011118179, 0.029456312, 0.005562521, -0.008304319, 0.030444594, -0.027177772, 0.0069111153, -0.017912623, 0.010301474, 0.011248577, -0.016704721, 0.0070621027, -0.010074992, 0.037417475, 0.02728758, 0.014947774, -0.01688316, 0.019189153, 0.0039599934, 0.013966355, -0.0020280383, -0.007494476, -0.0071238703, -0.0019045029, -0.024075663, -0.013472213, -0.0069660195, 0.0025427688, 0.011385839, 0.0061218617, -0.014769334, -0.00660914, 0.020438233, 8.4514995E-6, 0.026271846, -0.0034366841, -0.04235889, 0.018983262, 0.018804822, -0.015085036, -0.011996653, -0.0054733013, -0.012072146, -0.033217277, -0.007439572, -0.007679779, 0.035687983, -0.0063003013, 0.014673252, -0.009917141, 0.0023917812, 0.013945766, -0.01820087, 0.021618681, -0.007672916, 0.0030420574, 0.008503349, 0.009985772, -0.011626046, 0.0248306, -0.018996987, 0.008345498, -0.0026525778, 0.0012799632, -0.019697022, 0.011982926, 0.010706395, -0.025571812, 0.015757617, 0.0012387848, -0.013636927, -0.001815283, 6.3955266E-4, -0.011536826, 0.0012087588, -0.013582023, -0.018598929, -0.030060261, 0.002918522, 0.07390158, 0.047794443, -0.0027829763, 0.016251758, -0.009711249, 0.0074052564, -0.0038536158, -0.0128888525, -0.0063963844, -0.0068939575, 0.012133914, -0.009615166, 0.022003014, 5.3574867E-4, 0.019902913, -0.017185137, 0.0082974555, 0.0071238703, 0.008949447, -0.024981588, -0.018104788, -0.003719786, 0.017116506, 0.014247741, 0.008633747, -0.021673586, 0.027589556, -0.0017586626, -0.0033680534, 0.010980918, -8.4844744E-4, 0.0045742383, 0.005867928, 0.0038982257, -0.008304319, 0.004797288, 0.033491798, 0.02301875, 0.03338199, -0.0056105624, 0.0058747907, 0.010507366, 0.005432123, -0.01927151, 0.018818548, -0.026175762, -0.0051747574, 0.018598929, 0.02116572, -0.044829596, 0.009560262, -0.005126716, -0.024707064, -0.01681453, 0.0062179444, 0.009972046, -0.016334115, -0.0010569133, -0.02896217, 0.016951792, 3.1913293E-4, -0.034809507, 0.015071309, -0.010891697, 0.005816455, -0.02155005, -0.0032496653, -0.0043511884, -0.0070552398, 0.011406428, 0.020822566, -0.01355457, -0.015757617, -0.0031278457, 0.014508537, 0.007364078, 0.02478942, -0.019834282, 0.0077003683, 0.018036157, -0.044692334, -0.033574156, 0.01610077, -0.028138602, 0.010754436, 0.0010354662, -0.021289254, 5.880796E-4, 0.00222192, 0.021728491, 0.0065816874, -0.004917392, 0.0045879646, -0.0065748245, 0.03497422, 0.003911952, 0.02333445, 0.0016908897, 0.010610311, -0.013032977, -0.0030574992, -0.020973552, -0.01364379, -0.03626448, -0.007576833, -0.005414965, 0.0040183295, 0.0095877135, -0.0170616, -0.01920288, -0.02909943, -0.0025685052, 0.011797624, -0.010301474, 0.0047217947, -0.007446435, 0.0346997, -0.005150737, -3.2234998E-4, 0.019051893, 0.0075836964, -0.018324407, 0.02344426, 0.029648477, 0.0071719117, 0.013225143, 0.0035310513, -0.015537999, -0.008702377, 0.026367929, -0.022771679, 0.0147556085, -0.012991798, 3.948412E-4, -0.015730165, -0.033354536, -0.00475611, 0.0044850186, -0.0047904253, 0.0036031136, -0.012758453, 0.017638098, 0.0068081687, 0.01621058, -0.010912287, -0.022648143, 0.027424842, 0.0089769, 0.015414463, 0.028275862, -0.0146869775, 0.020959826, -0.022318715, -0.0029665635, -0.009031805, -0.03791162, -0.015867425, -0.00638609, 0.034260463, 0.02596987, 0.03771945, -0.017047875, 0.032448612, 0.008592568, 0.010658354, 0.018324407, -0.0029476902, -0.007597422, -0.026313024, 8.209952E-4, 0.012044694, 0.0052948613, 0.010109307, -0.0030798044, -4.726942E-4, 0.017308671, 0.003416095, 0.011159358, 0.0129643455, -0.032530967, -0.017377302, 0.0073434887, -0.014920322, -5.970874E-4, -0.018736191, -0.015016405, 0.03675862, 0.007871945, -0.0016797372, 0.00580616, 0.023705056, 0.006235102, 0.00924456, -0.016773352, 0.011605457, -0.02159123, 6.391237E-4, -0.027150318, 6.51992E-4, 0.012319217, -0.011639773, 0.0075219288, -1.0235631E-4, -0.0143300975, -0.00699004, 0.026313024, -0.0091553405, -0.025214933, 0.011337797, -0.012758453, -0.018804822, -0.034425177, 0.005150737, -0.02967593, -0.018900905, -0.004992886, -0.005263977, 0.0035516405, -0.028522933, -0.03588015, 0.03651155, -0.00240036, 0.042990293, 0.011344661, 0.042221628, 0.030252429, 0.025352193, 0.0037575327, -0.0011143916, -0.012586877, 0.010109307, 0.018434215, 0.03601741, -0.008427855, -0.014769334, -0.0011143916, -0.012497657, -0.03733512, -0.04762973, 0.019710748, 0.028934717, 0.008331771, -0.022579512, -0.010212254, -0.021948108, -0.0056414464, -0.006214513, 0.0015244602, 0.018969536, -0.026299298, -0.012051557, -0.012181955, -0.014522264, 0.026765987, 0.011049548, -0.03184466, 0.011578005, -0.024007032, 0.003362906, -0.009718112, -0.005658604, 0.0278229, -0.0078650825, 0.017624373, 0.010054403, -0.005140442, -0.0026628724, 2.2948401E-5, 0.010013225, 0.032119185, -0.0065370775, 0.019285237, -0.0073778043, -0.008565116, 0.025571812, 0.0085102115, -0.013499666, 0.005401239, -0.010335789, -0.008057249, 0.02130298, 0.025365919, 9.642618E-4, -1.566711E-4, -0.023087379, -0.018585203, 0.028330768, 0.008331771, 0.0053429026, -0.039064616, 0.005075243, 0.0035310513, 0.009985772, -0.010747573, 0.0014601189, -0.0013657516, -0.011873118, 0.019285237, -0.009807332, -0.004546786, -0.0227305, -0.023705056, -0.01710278, -0.017336125, -0.0029065115, -0.0050821058, 0.005133579, -0.026752261, 0.016114498, -0.0020194594, -0.015524272, 0.0027641028, -0.0026182625, -0.02885236, 0.007494476, 0.0140418485, -0.014137931, -0.014906595, -0.0040389188, 0.029154336, 0.0068253265, -0.011790761, 0.005830181, -0.015455642, 0.022181453, -0.028495481, 0.0011950327, 0.006578256, -0.028495481, -0.013149649, 0.03269568, 0.047821898, 0.01082993, 0.0012061852, -0.02244225, 0.005215936, -0.016526282, 0.022675594, -0.009965183, -0.002110395, 0.019422498, 0.018695012, 0.021810848, 0.016540008, -0.014563442, -0.027342485, 0.029236693, -0.009855374, -0.03593505, -0.006718949, -0.0158537, 0.013678106, -0.006149314, -0.010967191, -0.03239371, 0.0044335453, -0.01049364, -0.020575494, -0.0016582902, 0.020438233, 0.027850352, 0.0042482424, 0.011948611, 0.02454235, 0.0055076163, 0.011948611, -0.008517074, -3.7510987E-4, 0.020836292, 0.012140777, 0.013986944, -0.0018307249, -0.048782725, -0.013129059, -9.1021514E-4, 0.012641781, 0.02116572, 0.021989288, -0.018777369, 0.001229348, -0.0016994686, -0.0066571813, -0.01681453, 0.009937731, 0.0143987285, -0.03316237, -0.014563442, -0.004646301, 0.022359893, 0.008599431, -0.0046703215, 0.019216606, -0.0020503432, -0.002851607, 0.0016557164, -0.025063945, 0.0026474306, -0.032476064, 0.045323737, 0.0073983935, -0.005909106, 2.9060827E-4, 0.03280549, -8.450159E-4, 0.006056662, -0.001393204, 0.018598929, -0.014673252, -0.010507366, 0.012216271, 0.042166725, -0.02351289, 0.030554403, -0.02824841, 0.0030574992, -0.0052330936, 0.00975929, 0.008311182, 0.00933378, 0.022840308, -0.036237027, 0.0018324406, 5.876507E-5, 0.018159693, -0.014741882, 7.55796E-4, -0.02087747, -0.00638609, -0.010850519, -0.0077964514, -0.026464012, -0.041645132, 0.005644878, -0.028660195, -0.018736191, 0.006839053, 0.18535788, -0.0346997, -0.01752829, 0.044829596, -0.005730666, 0.014453633, 0.018091062, 0.011831939, -0.008057249, 0.0031655927, -0.005517911, 0.017185137, 0.014275193, 4.6111277E-4, 0.027644461, -0.020259794, -0.009628892, -0.010040676, -0.016553733, 0.005579679, -0.0041075493, 0.005740961, -0.012271175, -0.020808838, 0.023828592, 0.013595749, -0.014343823, 0.01931269, 0.010404419, 0.0063689323, -0.018434215, -0.010129897, 0.016059592, -0.010548544, -0.010569133, -0.008743555, -0.010713258, 0.008482759, 0.0057512554, -0.0040457817, -0.0027812605, 0.012250586, -0.010239705, -0.019285237, -0.008400402, 0.014563442, -0.020891195, -0.014096753, -0.028934717, -0.0036786075, -0.031158354, -0.011914296, 0.020465685, 0.022167727, -0.009306327, -0.0073778043, -0.0033285907, 0.017130231, 0.011605457, 0.0019062187, 0.008702377, 0.040794108, -0.021001006, 0.026930701, -0.006935136, 0.015373285, -0.020904923, -6.117787E-5, 0.021316707, -0.037005693, 0.0010500503, -0.030197524, -0.02226381, 0.0016582902, -0.009930868, -0.018447941, -0.0065816874, 0.017843992, -0.0042242217, 0.0024655592, -0.009821058, -0.014494811, 0.02116572, -0.03003281, -0.01205842, -0.0158537, 0.01891463, -0.019079344, 0.008057249, -0.011825075, -0.02411684, -0.045543358, -0.0039016574, -0.009024941, -0.0054458487, -0.004069803, 0.02643656, -7.206227E-4, -0.0067807166, -0.0021996151, -0.038817544, 0.008359224, 0.024240376, 0.0023952127, -0.020589221, -0.0062042186, -0.0078650825, 0.013760462, 0.026367929, -0.019930366, -0.012072146, -0.020493137, 0.007652327, -0.0021601524, 0.0015124498, 0.01837931, -0.007817041, -0.013513392, 0.028770003, -0.015387011, 0.028166054, -0.012806496, 0.009800469, 0.0026903248, -0.0063380483, -0.027836626, -0.033793774, 7.8925345E-4, -0.0043546204, -0.01998527, 0.014741882, -0.029950453, 0.015359558, 0.0021361317, 0.0010766446, -0.011317208, 0.030911284, 8.3386345E-4, -0.001400067, 0.0032702545, -0.016540008, 0.008517074, 5.623431E-4, -0.0021893205, 0.011976063, -0.014083027, 0.008777871, 0.0029665635, -0.003141572, -0.034727152, -0.023087379, 0.0016986107, -0.0033903583, 0.017377302, 0.03181721, 0.016540008, -0.029181788, -0.011207399, -0.0248306, 0.027452294, -0.050072983, 0.029456312, 0.0077964514, -0.018173419, -0.0341232, -0.017006697, -0.17690258, 0.00308152, 0.013259458, -0.049880818, 0.037390023, 0.020465685, 0.020149983, 0.0070106294, -0.01002695, -0.027164046, 0.03448008, 0.01699297, -0.014137931, -0.018036157, 0.012127051, 0.017898895, -0.020465685, 0.04894744, 0.02746602, 0.0023368765, 0.03695079, -0.016018413, -0.026093405, -0.013973217, 0.019449951, 0.011557416, 0.0073503517, 0.03277804, 0.014577168, -0.0026765987, -0.040272515, -0.012188818, 0.013890861, 0.0050340644, -0.014961501, 0.0039016574, -8.733261E-4, -0.007961165, -0.023279546, -0.0015236023, 0.024322733, 0.012634918, 0.026615, 0.006887094, 0.019861735, 0.017075326, 0.029648477, -0.03969602, 0.024720792, -0.028907266, 0.0040732343, -0.020149983, 4.7955726E-4, -0.003369769, 8.793313E-4, 0.012483931, -0.003340601, -0.0019353867, -0.010074992, 0.01596351, -0.018145967, -0.0013305784, 0.012456479, -0.008722967, -0.014741882, -0.01319769, -0.009827921, 0.007364078, -0.03362906, 0.0052879984, -0.022908939, 0.014034986, 0.012785906, 0.0038604788, 0.013081018, -0.015016405, -0.020314697, 0.016828256, 0.0042619687, 0.003579093, -0.003392074, 0.022854036, 0.0065679615, 0.008036659, 0.018008705, -0.008901406, 0.017981254, 0.0021138266, -0.015730165, -0.023348177, 0.018736191, -0.012875126, -0.050731838, 0.016526282, -0.0046634586, 0.0037403752, -3.1891844E-4, -0.0033303064, 0.006156177, -0.017816538, -0.0026851776, -0.0020057333, -0.0073297624, 0.019436223, 0.007995481, 0.024171745, -0.00969066, 0.02771309, 0.023910949, -0.007961165, -0.007947439, -0.008771008, 0.009409274, 0.023499163, -0.007192501, 0.007576833, -0.004450703, -0.026697356, -0.0042516743, 0.007281721, 0.041672584, 0.0038261635, 0.004423251, -0.0038536158, -0.010788752, -0.030060261, -0.085157014, 0.01638902, 0.011248577, 0.039805826, -0.02119317, 0.03782926, -0.0045811017, 0.033299632, -0.028275862, 0.021934383, -0.0035585037, -0.043484434, 0.0101642115, -0.011337797, -0.010466187, -0.0025444846, -0.021852026, -0.014371276, -0.009477905, 0.024610981, -6.459868E-4, 0.0069522937, 0.013348678, -0.013774188, -0.011557416, 0.002259667, -0.03316237, 0.017761635, 0.016869435, 0.0062179444, 0.0064718784, -0.0239384, 0.015126214, -0.032476064, -0.02436391, -0.043347172, -0.023005022, -0.029291598, -0.0018272933, -0.0496612, 0.0039668563, -0.0054767327, 0.0080847, -0.025063945, -0.016979244, -0.006664044, -0.020506864, 0.029703382, -0.015222297, -0.023554068, -0.01931269, -0.039421495, -0.031021092, -7.570828E-4, 0.011646636, 0.0150438575, 0.030170072, 0.0032942754, -0.015510546, -0.013877135, 5.460433E-4, 0.014879144, -0.021069637, 0.008681788, 0.0069969036, -0.0061149984, 0.0029888686, -0.016279211, 0.011227989, -0.0042516743, 0.0011684382, 0.032009374, -0.028330768, -0.011564279, -0.01681453, -0.013794778, -0.02041078, -0.015524272, 0.03420556, -0.023499163, -0.007281721, -0.017789086, 0.017583195, -0.005178189, 0.008771008, 0.016938066, -0.011015233, -0.010816203, -4.8041515E-4, -0.03288785, 0.0108093405, 0.026560094, 2.7237824E-4, 0.0022253515, -0.011825075, 0.010884834, 0.014137931, 0.0115985945, 0.0055076163, 0.0050100437, -0.01065149, -0.0014549716, -0.08114898, 0.027067961, -0.029511217, -0.010678942, -0.018969536, -0.012291765, 0.010527954, -5.623431E-4, -8.698946E-4, 0.018612655, -9.668355E-4, 0.0045982595, -0.001147849, -0.009814195, -0.012875126, 0.021646135, 0.010479913, -0.0013202837, 0.006317459, -0.011509375, -0.019065619, 0.023828592, 0.009539672, 0.01065149, -0.006852779, 0.021399064, -0.009903415, 0.004189906, -0.013211417, -0.010720121, 0.02550318, -8.154189E-4, -0.010219117, 0.006245397, -0.0077209575, -0.015510546, -0.017157683, 0.013362404, 0.009992635, 0.0124633415, -0.013623201, -0.04054704, 0.0015647807, -0.0051438734, -0.0031655927, -0.002319719, -0.0051438734, 0.010692668, 0.0025736527, 0.009148477, 0.005524774, 0.0064444263, -0.031872112, -0.03865283, 0.004883077, -0.028385673, 0.061218616, 0.0024810012, -0.0072199535, -0.0068562105, 0.027013058, 0.018296953, 0.010678942, -0.024981588, 0.01592233, 0.016787078, 0.0058267494, 0.002148142, 0.0072542685, -0.03876264, -0.018393038, -0.00739153, 0.006924841, 0.02458353, 0.013156512, 0.0049414127, 0.010157349, 0.036237027, -0.0026645884, 0.010905424, 0.020973552, -0.012545698, -0.01824205, 0.011385839, 0.003332022, 0.015085036, 0.010569133, 8.8104705E-4, -0.0025067376, 0.010342652, -0.0050821058, 0.021275528, 0.007439572, -0.0021515735, -0.0042551057, 0.02023234, -0.019477403, -0.006348343, -0.0017080475, 0.030060261, 0.0068356213, -0.00828373, -0.009038668, -0.00783763, -0.02796016, 0.012655508, -0.01998527, -0.008448443, 0.015057583, 0.013451624, 0.03088383, 0.01638902, 0.011200536, 0.015414463, -0.033903584, 0.02596987, -0.017734181, -0.013403582, -0.027973888, 0.036621362, 0.024240376, -0.0041315705, 0.040245064, -0.011077001, 0.028577838, 0.026985604, 0.02365015, -0.044472717, -0.0010200243, 0.011413291, 0.0129643455, -0.012621192, -0.008784734, -8.1799255E-4, -0.025269836, -0.0015459073, 0.0044644293, 0.032366253, -0.007357215, 0.08285102, 0.027507199, -0.0015587755, 0.017226314, -0.018283227, 0.0141104795, 0.014934048, 0.02824841, -0.027740544, -0.0041830433, -0.007954302, -0.0076111485, 0.006550804, -0.033464346, 0.0028824909, 0.009285739, 0.006506194, 0.0136094745, 0.0042242217, -0.02529729, -0.016430197, -0.015441915, 0.02458353, -0.002431244, -0.012785906, -0.0016359851, 0.018516572, 0.0033457484, 0.0022202043, -0.026656177, 0.00739153, -0.03398594, -0.014288919, 0.0066983597, 0.024556078, -0.0013211416, -0.018530298, 0.005377218, 0.020548042, -0.014165384, -0.0018564614, -0.002089806, -0.020122532, -0.028907266, 0.017912623, 0.003874205, -0.006259123, -0.036621362, -0.013856545 ], + "id" : "0d449455-a5a8-4c2b-ba7a-69ddfe4f6cb3", + "metadata" : { + "source" : "movies.csv" + } + }, + "5d053189-3558-4c28-87e3-4d20ca3d1102" : { + "text" : ",515001-496243-475557-359724-466272-492188-546554-331482-2768-398978-473033-884669-181812-488621-551332-503919-501907-522627-495764-292011-525661\r\n8966,Twilight,Fantasy-Drama-Romance,en,When Bella Swan moves to a small town in the Pacific Northwest she falls in love with Edward Cullen a mysterious classmate who reveals himself to be a 108-year-old vampire. Despite Edward's repeated cautions Bella can't stay away from him a fatal move that endangers her own life.,91.896,Summit Entertainment-Temple Hill Entertainment-Maverick Films-Imprint Entertainment-Goldcrest-Twilight Productions,11/20/08,37000000,393616788,122,Released,\"When you can live forever, what do you live for?\",6.288,12735,Kristen Stewart-Robert Pattinson-Billy Burke-Peter Facinelli-Elizabeth Reaser-Cam Gigandet-Ashley Greene-Anna Kendrick-Nikki Reed-Taylor Lautner-Kellan Lutz-Jackson Rathbone-Michael Welch-Gil Birmingham-Justin Chon-Christian Serratos-Jos�� Z�_��iga-Rachelle Lefevre-Edi Gathegi-Sarah Clarke-Matt Bushell-Gregory Tyree Boyce-Trish Egan-Ayanna Berkshire-Ned Bellamy-Bryce Flint-Sommerville-Solomon Trimble-Alexander Mendeluk-Hunter Jackson-Gavin Bristol-Sean McGrath-Katie Powers-Catherine Grimme-William Joseph Elk III-Victoria Geil-Stephenie Meyer-Rick Mora-Rana Morrison-Edward Stiner-Robert Zorn-Humberto Amor-Kristopher Hyatt-Sherry Nelson-Tyler Nordby-Trip Ross-Josh Turner-Maggie-Jo Turner,soulmates-based on novel or book-vampire-forbidden love-immortality-high school-teen movie-trust-desire-washington state-duringcreditsstinger-woman director-interspecies romance-based on young adult novel-supernatural power-good versus evil-high school romance-vampire human love,/3Gkb6jm6962ADUPaCBqzz9CTbn9.jpg,/mfFhgR9ILPWbYtvbdyAGUo6fbpT.jpg,18239-24021-50619-50620-602729-1116005-817479-599414-1104004-675-12444-597-672-767-674-341626-58595-12445-673-38757\r\n436270,Black Adam,Action-Adventure-Science Fiction,en,Nearly 5000 years after he was bestowed with the almighty powers of the Egyptian gods���and imprisoned just as quickly���Black Adam is freed from his earthly tomb ready to unleash his unique form of justice on the modern world.,257.264,New Line Cinema-Flynn Picture Company-DC Films-Seven Bucks Productions,10/19/22,200000000,393252111,124,Released,The world needed a hero. It got Black Adam.,7.054,5217,Dwayne Johnson-Aldis Hodge-Noah Centineo-Sarah Shahi-Quintessa Swindell-Marwan Kenzari-Mo Amer-Bodhi Sabongui-Pierce Brosnan-James Cusati-Moyer-Jalon Christian-Benjamin Patterson-Odelya Halevi-Uli Latukefu-Jennifer Holland-Henry Winkler-Chaim Jeraffi-Sharon Gee-Stephan Jones-A. Manuel Miranda-Djimon Hounsou-Raj Kala-E.", + "embedding" : [ 0.0044451496, -0.04726215, -0.0055943504, -0.035156783, -0.022930095, 0.030762186, -0.015596779, -0.024844307, -0.024830827, -0.043298922, 0.025397003, 0.04879891, 0.009854144, -0.025949696, 8.3704625E-4, 0.018211968, 0.013554504, -0.0416004, 0.010743848, -0.020314906, -0.005850477, 0.014329624, -0.009719341, 0.012401933, -0.013237716, 0.01752447, 0.02159554, -0.012125585, -0.010231595, -0.0062245573, 0.025868814, -0.008782456, -0.026461951, -0.017349226, -0.030977871, 0.0068412838, -0.0020085739, -0.029548954, 0.028254839, -0.0023759138, 0.013230976, 0.0050180648, -0.018050205, -0.013156833, -0.012172767, 0.010939314, -0.00297916, -0.011990782, -0.0060627926, 0.029899443, 0.004323826, 0.027769545, -0.024278132, -0.017039178, -0.01486884, -0.008897039, -0.009079024, 0.00409803, 0.0057325237, 0.017443588, 0.026138421, -0.020220542, -0.018387213, -0.029980324, -0.025774453, -0.021339413, -0.012051444, -0.0015039028, -0.004650725, -0.00558761, 0.01976221, 0.013217495, 0.02527568, 0.012011003, 0.005388775, -0.017443588, -0.018427655, -0.0025612689, 0.007953414, 0.017767116, 0.008647652, -0.011107818, -0.018131087, 0.0064907945, 0.006177376, 0.0022192046, -0.020409267, 5.446909E-4, -0.050686162, 0.017645793, 0.013871293, 0.018333292, 0.0044114483, 0.012516516, 0.009975468, 0.009955247, -0.0186029, 0.03952442, -0.023658035, -0.02272789, 0.00894422, -0.009132945, -0.009186867, -0.007987115, -0.004064329, -0.007623145, -6.575889E-4, -0.0110471565, 0.015084525, 0.00854655, 7.756474E-5, -0.013979135, 0.01600119, -0.047154307, -0.00895096, -0.0011770041, 0.00781187, -0.01676957, -0.010258555, -0.017794078, 0.022849213, 0.049392045, 0.012213208, -0.03208326, 0.030330814, 0.025909256, -0.0046136538, -0.006184116, -3.8587535E-4, -0.018306332, 0.0029976955, -0.0073130964, 0.0156507, 0.009449733, -0.035830803, 0.054487623, -0.017295305, 0.0020995664, -0.030303854, -0.011950341, 0.043811176, 0.052681256, -0.025868814, -0.012974848, -0.011067377, 0.0024079296, 0.015408054, -0.012091884, 0.017308785, 0.0012562012, 0.021757305, 0.020085739, 0.01269176, 0.034536686, 0.002755049, 0.0019917234, 0.0051663485, 0.0016673523, 0.0013825797, -0.005311263, -0.020571033, 0.00596843, -0.013709528, -0.020031817, 3.3090077E-4, 0.023253625, 0.004172172, -0.03650482, -0.0037408005, -0.018966869, -0.015920307, 0.0186029, -0.020759758, 0.027877389, -0.010346178, 0.029333267, 0.0045866934, -0.004212613, -0.014585752, -0.021999951, 0.01636516, -0.0010329328, 0.044916566, 0.0431102, -0.01606859, 0.012995069, 0.027594302, -0.020207062, 0.011148259, -0.015232809, 0.003021286, 0.03011513, 0.010393359, -0.0017254864, -0.631528, -0.010595565, 0.004991104, -0.0055775, -8.610581E-4, 0.0074479, 0.020260984, 0.00893748, -0.020638434, -0.027378615, -0.01339274, 0.025100434, 0.011336984, -0.016216876, -0.024844307, -0.006261628, 0.003049932, -0.0054561766, 0.011653773, 0.0073467973, -0.021379855, 0.0030263413, -0.0039295256, 0.004249684, 0.0027584191, 0.0027466237, -0.010683187, -0.0030431917, 6.5927394E-4, -0.011303283, -0.0064705736, 0.024790386, 0.018764663, 0.007144592, 0.02871317, -0.013345558, -0.004792269, 0.03467149, 0.02156858, 0.02973768, -0.03235287, -0.010561864, 0.01749751, 0.018158048, -0.0201127, 0.01902079, 0.010393359, 0.010009169, 0.0023658036, -0.014599232, 0.014814918, 0.005469657, 5.1688764E-4, -0.011377426, -0.0016833602, -0.0012258705, 0.020220542, -0.032972965, 0.026987685, -0.016095553, -0.011977302, 0.007265915, 0.01492276, 0.014073498, -0.0041822824, 0.018036725, -0.003429067, 0.007185033, 0.006780622, -0.02909062, 0.009941767, 0.013817371, -0.015785504, -0.010170933, 0.0049776235, -0.009132945, 0.0409803, 0.013898253, -0.008357825, 0.0043676374, -0.016230356, -0.0033060587, 0.001320233, 0.004620394, 0.008135399, 0.002490497, -0.028659249, 0.0075422623, 0.010501202, 0.0069491267, 0.0062245573, 0.007185033, 0.011215661, -0.012819824, -0.024790386, 0.009449733, -0.0041822824, -0.007784909, 0.024803866, -0.053409193, -0.008027555, -0.021811226, 0.010231595, -0.005772965, 0.029602874, 0.0086139515, 0.0028510964, -0.017403148, 0.037906777, -0.01671565, -0.0031173336, 0.0082095405, -0.028632289, 0.0042294636, -0.0047450876, -0.031031793, 0.013965655, -1.587102E-4, 0.009173387, -0.014302664, 0.004172172, 0.028767092, 2.3211498E-4, -0.021757305, 0.009389072, 0.029926404, -0.009658679, 0.0044047083, 0.0046136538, -0.008317383, -0.003838533, 0.010467501, 0.030303854, -0.016216876, -0.002940404, -0.016823491, 0.032460712, 0.0012705241, 7.654318E-4, 0.0071243714, -0.02081368, -0.008317383, -0.024830827, 0.0031072234, 0.0025258828, -0.020611474, -0.030708265, 0.0063863215, 6.285219E-4, -0.011734655, -0.017618833, 0.017578391, -0.02344235, 0.012536736, -0.009011622, -0.011815538, -0.014262223, -0.028227879, 0.012496295, -0.009854144, -5.038285E-4, 0.033404335, -0.0030617272, -0.0072052535, 0.022094313, -0.00484619, -0.02047667, 0.016863933, 0.013048991, -0.021352893, 0.018481577, 0.0050180648, 0.0038756041, 0.008755495, -0.026192343, 0.027338173, -0.026394548, 0.02310534, -0.0070434893, 2.1558048E-4, 0.006514385, 0.012826565, -0.018063685, -0.0018956759, 0.02984552, 0.02756734, 0.00746138, -0.025882294, 0.0019984636, -0.013574724, -0.015192368, -0.007151332, -0.0048664105, -0.0018956759, 0.014046537, 0.024412936, 0.011721175, 0.0027348285, -0.010379879, 0.0010868541, 0.041762162, 0.0068682446, -1.7893074E-4, 0.001117185, -5.75443E-4, -0.024709504, -0.0042699045, -0.021811226, 0.013109652, -0.01155941, 0.028173957, -0.00634588, -0.012226689, 8.8043616E-4, 0.007677066, 0.035480313, -0.028551407, 0.01341296, 0.0024096146, 0.005358444, 0.0077512083, -0.008391526, 0.032946005, 0.005702193, -0.020058779, -0.0048091193, 0.026502391, -0.017389666, -0.0065716766, -0.017780598, 0.002301772, -0.009732821, 6.925536E-4, 0.008775716, -0.0063829515, -0.0032201214, 0.042328335, -0.020705836, 0.042247456, -0.007158072, -0.009490175, 0.01865682, 0.021662941, -0.0032740429, 0.0013564614, -0.012496295, 0.010265295, 0.03089699, -0.0024416305, 0.042894512, -0.024399456, 0.03273032, 9.889109E-5, 0.009901326, 0.0063020694, -0.01377693, 0.008795937, 0.0074007185, 0.030222971, 0.024682542, 0.00632903, -0.007973634, 0.0019125263, 0.0056280512, 0.015340652, 0.014356585, -0.0245747, -1.5755172E-4, -0.002943774, -0.022673968, -0.02345583, -0.015071045, 0.0067233304, 0.0043743774, -0.015394573, -0.005291042, -0.01865682, 0.012887226, 0.025221758, 0.02793131, -0.019317359, -0.03615433, 0.01605511, 0.021474216, -0.00558424, -0.03159797, 0.015461975, -0.016702168, -0.030681305, -0.010865171, -0.0034391773, 0.02121809, -0.023536712, -0.003868864, -0.014774477, 0.00204733, 0.017915402, -0.013979135, -0.0034374923, 0.023658035, -5.291042E-4, 0.017537951, -0.0017086358, -0.005766225, 0.020355346, -0.013615166, 0.016095553, -0.009463214, -2.4285715E-4, -0.004175542, -0.014248743, 0.0042564245, -0.048367538, 0.008452187, -0.0067604017, -0.015556337, 0.0034223269, 0.012011003, 0.0064233923, -0.023401909, -0.0334313, -0.027324693, -0.021083286, -0.019047752, 0.079534136, 0.0349411, 0.011208921, 0.0019816132, -0.0122603895, 0.0170931, -0.02236392, -0.0049371826, -0.005476397, 0.005992021, 0.037906777, -0.014289184, 0.0104405405, 0.014248743, 0.009719341, -0.0041890224, 0.0054123653, -0.015178887, -0.008155619, 1.456511E-4, -0.023941122, -0.004991104, 0.014316144, 0.047612637, 0.003309429, -0.015354132, 0.019694809, 4.4780076E-4, -0.0032908933, 0.01825241, -0.00969238, -0.0031662001, 0.0086274315, 0.014585752, 0.0028443565, 0.012449115, 0.005334853, -0.0033802008, 0.027014645, -0.0017229588, 0.015017123, 0.010197894, 0.004576583, 0.0054662866, 0.0077781687, -0.032541595, -0.01453183, 0.013008549, 0.052169003, -0.025990138, 0.016297758, -0.0050854664, -0.026542833, 0.0015241235, 0.014599232, 0.019330839, -0.0039699664, -0.0033549252, -0.034536686, -0.007892752, -0.005446066, -0.04583323, 0.02309186, -0.0049675135, -6.487424E-5, -0.007481601, -0.015165407, -0.0053854045, -0.01902079, 0.0035655557, 0.003986817, -0.0200453, -0.012927667, 0.0019816132, 0.02197299, -0.0062481477, 0.02158206, -0.023334507, -0.006409912, 0.0064672036, -0.041115105, -0.03914697, 0.02754038, -0.022202156, -0.007791649, 0.0030246563, -0.002945459, 0.0065683066, 0.0013168629, 0.018791625, 0.00204396, 0.0040104077, -0.007980375, -0.019047752, 0.032865122, 6.7654566E-4, 0.02015314, 0.01597423, 0.0023068269, 0.007414199, -0.009604758, -0.025248718, 0.0015679346, -0.023253625, -0.002269756, -0.003430752, 0.01454531, 0.015057565, -0.026596755, -0.025814893, -0.031813655, -0.014370066, 0.005183199, 0.018144567, 0.021892108, 0.0067604017, 0.009975468, 0.0076096645, -0.0042934953, 0.0055303187, -0.015367612, 0.0036396978, 0.028227879, 0.021433776, -0.003946376, 0.027405577, -0.020328386, -0.0032453972, 0.0078186095, 0.03391659, -0.004020518, -0.0032892083, -0.009854144, -0.004515921, -0.03957834, -0.013150093, 0.023267105, -0.008634171, -0.0014921075, 0.01192338, 0.0032302318, 0.002532623, -0.010002429, -0.01040684, -0.0145048695, -0.0297916, 0.012219948, -0.010009169, 0.013062471, 0.03577688, -0.0010152397, -0.0066929995, -0.010622526, -0.00670311, 0.0015856276, -0.03202934, -0.037718054, 7.523727E-4, 0.04060285, 0.009449733, 0.03987491, 0.0034071615, 0.00371721, 0.009375592, 8.416801E-4, 0.019196035, -0.024561219, 0.011498748, -0.020287944, 0.007407459, 0.006042572, 0.02421073, 0.010359658, 0.018144567, 0.0010051295, 0.030249933, 0.014976682, 0.011512229, -0.011653773, -0.02272789, -0.02755386, -0.0015426589, -0.02607102, 0.003922785, -0.03348522, -0.022444803, 0.036720507, -0.0043710074, -0.0054191053, -0.019236477, 0.026758518, -0.0036666584, 0.018090645, -0.016985256, 0.0068345433, -0.018185008, -0.009119465, -0.019627407, -0.003686879, 0.016270798, -0.008472407, 0.0033448148, -0.0021315822, -0.042301375, 0.006591897, 0.016823491, -0.019182555, -0.018319812, 0.030276893, -0.008088217, -0.010609045, -0.04049501, -0.01675609, -0.021393334, -0.007299616, -0.006096494, -0.017605353, 0.0075759636, -0.027661704, -0.034887176, 0.026367588, -0.009409293, 0.034833256, 0.017430108, 0.057642028, 0.02938719, 0.008155619, -0.023927642, 0.011822278, -0.02271441, -0.0060830135, 0.012071664, 0.02462862, -0.018872507, 0.0020405897, 0.014437468, -0.012570438, -0.025868814, -0.043056276, 0.025477884, 0.0136825675, 0.027688663, -0.023550192, -4.046215E-4, -0.028551407, 0.017362706, -0.0065817866, 0.01492276, 0.025329601, -0.036585703, -0.015583298, -0.0063020694, 0.0058336267, 0.018939909, 0.011087597, -0.03087003, 0.022417841, -0.02049015, -0.0012410359, -0.0193578, -0.011370685, 0.037340604, -0.020571033, 0.0074007185, 0.006595267, 0.010507942, 0.014801437, -0.009840664, -0.011680733, 0.030816108, -0.015475456, 0.0136758275, -0.012577178, -2.0115227E-4, -0.0024770165, 0.02936023, -0.021137208, -0.008782456, -0.027324693, -0.0023000867, 0.027796507, 0.023428869, 0.0033229091, -0.0010101846, -0.02272789, -0.02386024, -0.009840664, 0.0043373066, 0.009085764, -0.02830876, 0.0075827036, -0.01006983, 0.0047518276, 0.0053752945, -0.013217495, 0.0025983397, -0.008344344, 0.0055437987, -0.006561566, -0.022229116, 0.0077175074, -2.6097137E-4, -0.039794028, -0.02387372, -0.00409803, -0.0065480857, 0.0011694214, 0.0035352248, 0.0060897535, -0.0072389543, -0.017376186, -0.006672779, -0.0023270475, -0.02421073, 0.010905613, 0.03353914, -0.011943601, -0.012779383, -0.01229409, 0.020260984, -0.0046136538, -0.0045125512, 0.01006309, 0.007683806, 0.036666583, -0.013648867, 0.017403148, 0.0012174452, -0.010352918, -0.023644555, 0.0021063066, 0.028928857, 0.006676149, -0.003391996, -0.013729748, -0.0033734606, -7.856524E-4, 0.023401909, -0.011006716, 0.015879866, 0.013426441, 0.01790192, 0.012004263, 0.028955817, -0.010770809, -0.015178887, -2.92566E-4, -0.022997497, -0.014693595, -3.311114E-4, 0.009119465, 0.006622228, 0.0019411722, -0.0096317185, -0.01747055, -0.0013236031, -0.017066138, -0.03534551, 0.010615785, 0.041492555, 0.043999903, 0.024871267, 0.004984364, 0.0070097884, -0.01192338, 0.0136893075, -0.016216876, 0.0021551729, 0.014464429, 0.018360253, 0.009409293, 0.026475431, -0.03580384, 0.0013177054, 0.010838211, 0.009914806, 0.01230083, 0.019169075, -0.033620022, -0.0028628919, 0.010737108, -0.0066357083, -0.006430133, -0.0057931854, 0.019964416, -0.058235165, 0.010015909, 0.009598018, 0.011033677, -0.0061975964, -0.0012705241, 0.016567364, -0.012907446, 0.0030313963, -0.018872507, -0.03278424, -0.004394598, -0.031517085, 0.015866386, 0.01900731, 1.4049065E-4, 0.034132276, 0.017403148, -0.019613927, 0.024507297, -0.01042706, 0.00746138, -0.011876198, 0.0018687152, -0.0066087474, 0.024763426, -0.034159236, 0.008020815, -0.025059992, 0.019937456, -0.004020518, -0.0047585675, -0.005449436, 0.028039154, 0.020881081, -0.05319351, 0.0048158593, -0.010541643, 0.014801437, -0.002682592, 0.0044788504, -0.033323456, 0.0024399455, -0.005739264, -0.0034947838, -0.016284278, -0.013655607, 9.67216E-4, -0.016270798, -0.0059279893, -0.0042260936, 0.18689173, -0.001043043, 4.5032834E-4, 0.06691652, 0.01637864, 7.886012E-4, 0.017807558, 0.009038582, -0.014558791, 0.011330244, -0.016985256, -0.01231431, -0.004441779, -0.0029353488, 0.01864334, -3.738694E-4, -0.029899443, -0.0051326477, -0.019303879, -0.022390882, -0.010999976, 0.002940404, -0.02527568, -0.015435015, 0.022161715, -0.003386941, -0.010959534, 0.0060055014, 0.023577154, 0.013197274, -0.012765903, -0.016904375, -2.5928635E-4, 0.015003643, -0.015772024, -0.0075085615, 0.016230356, 0.0072524347, 0.008506108, 0.010157453, -0.011680733, 0.004280015, -0.033700906, -0.020193582, 0.0029538844, 0.021824706, -0.026286706, -0.011101078, -0.030600421, 0.0066592987, -0.03496806, -0.016446041, 1.971503E-4, 0.011903159, 0.005617941, -0.01488232, 0.008310643, 0.008000595, -0.007299616, -0.0035925165, 0.019101674, 0.021474216, -0.02682592, 0.007265915, -0.0053854045, 0.02082716, -0.017066138, 0.00932841, 0.024129847, -0.04052197, 0.010986495, -0.013062471, -0.018009763, 0.00670311, -0.018319812, -0.016675208, -1.9430678E-4, 0.022256078, 0.012105365, 0.022997497, -0.03170581, -0.02309186, 0.024399456, -0.01416786, -0.01193686, -0.028012192, 0.008135399, -0.024696022, -0.012422154, 0.007164812, -0.006615488, -0.011640293, -0.008101697, -0.0012823194, 0.009955247, -0.0028763723, 0.009456474, 0.0029707348, 0.005041655, -0.005992021, -0.015569818, 0.024534259, 0.02643499, -0.006669409, -0.011316764, -0.01605511, 0.0021484327, 0.004694536, 0.030843068, -0.026192343, -0.0012899021, -0.022444803, 0.0020052039, -0.003240342, 0.0052371207, 0.013608426, -0.007939933, -0.022943577, 0.025235238, -0.022148235, 0.006564936, -0.026893321, 0.023010978, -0.0019260067, 0.009988948, -0.039039128, -0.021002404, -0.011235882, -0.008081477, -0.022121275, 0.011283063, -0.019937456, 0.012590658, 0.006585157, 0.017214423, 0.015569818, 0.034132276, 0.003868864, 0.0054258457, 0.00408455, 0.007596184, -0.017403148, 0.015421534, 0.011289803, -0.006443613, -0.050524395, 0.01079103, -0.009180127, -0.014370066, -0.035534233, -0.020018337, -0.020328386, 0.014356585, 0.012738942, 0.03351218, 0.020409267, -0.030007286, -0.041492555, -0.007859051, 0.022552645, -0.037879817, 0.031786695, 0.013992616, -0.02349627, -0.019479124, 0.0061167143, -0.17190157, 0.0024045596, -0.0033566102, -0.031220518, 0.034024432, 0.0044586295, 0.0029471442, 0.006669409, 0.0014727295, -0.010339438, 0.020611474, 0.005914509, -0.03766413, 0.003164515, 0.00932841, -0.003646438, -7.2372693E-4, 0.047585677, 0.019870054, -0.005921249, 0.038850404, 0.0027836948, -0.014194821, -0.016324718, 0.026017098, 0.010919093, 0.013244456, 0.016109033, 0.0027634741, -0.004280015, -0.02981856, 2.3169372E-4, 0.009240788, 0.010231595, 0.004603544, -0.013487102, -0.018009763, -0.0030583572, 0.015084525, -0.009119465, 0.050039105, 0.010467501, 0.008910519, 0.017457068, 0.010669706, 0.025073472, 0.02231, -0.014397027, 0.0062043364, -0.02310534, -0.0023961344, -0.018535499, 0.020773238, -0.016419081, 0.0076905466, 0.033943553, -0.0017810928, 0.010737108, -0.014963202, -0.02944111, -0.03574992, -9.4868045E-4, -0.0029623096, -0.0038857143, -0.009335151, -0.0066323383, -0.014626193, 0.025208278, -0.031840615, 0.005560649, -0.021635981, 9.798538E-4, 0.0092205675, 0.008249981, -3.8713915E-4, -0.016526924, -0.042544022, 0.013574724, 0.00371721, 0.0057561146, -0.014343105, 0.050066065, -0.0027061827, 0.008903779, 0.016594326, -0.007987115, 0.0058673276, -0.0025764343, 0.021083286, -2.3885517E-4, 0.0033414448, -0.0186029, -0.015205848, -0.0017945732, 0.008586991, 0.0057561146, 0.007906232, -0.006969347, 0.0059010284, -0.006298699, -0.008998142, -0.017659275, -0.015340652, 0.018373733, 0.03345826, 0.0058167763, -0.006888465, 0.026111461, 0.035669036, 0.0018181638, -0.005857217, 0.007993855, 0.016216876, -0.0049001114, -0.02123157, 0.019856574, -0.022943577, -0.029683758, -0.009496915, 0.023806319, 0.024884747, 0.003351555, 0.007987115, 0.0016892579, -0.0069356463, -0.019897014, -0.08853902, 0.011835758, -0.0020001486, 0.012610879, -0.030384736, 0.032595515, -0.020692356, 0.027594302, -0.01525977, 0.026650677, 0.001695998, -0.022579607, 0.010534903, -0.0100496095, 0.01747055, 0.007191773, -0.01524629, -0.0041789124, -0.015798984, 0.039389618, 0.0037374303, -0.015017123, -0.003761021, -0.002086086, -0.027419057, 0.007299616, -0.035561197, 0.022242596, 0.013756709, 0.0098339245, 0.0060088714, -0.028767092, 0.008398266, -0.028740132, -0.03912001, -0.021272011, -0.036262173, -0.022013431, 0.0050248047, -0.05855869, 0.0140869785, 0.013581465, 0.0045125512, -0.030816108, -0.0024298353, -0.0060897535, -0.028955817, 0.028443564, -0.010359658, -0.027284253, 0.012489555, -0.0033835708, -0.045671467, -0.008863338, 0.014194821, 0.004681056, 0.029036699, 0.012711981, -0.010770809, 1.3206543E-4, 0.00783209, -0.0034037915, -0.027041607, 0.008654392, 0.010541643, -0.0017010532, -0.005890918, 6.80337E-4, 0.016634766, -0.010919093, -0.028093074, 0.026124941, -0.03580384, -0.01941172, -0.019155594, 0.0038924546, -0.01671565, -0.010629266, 0.016162954, -0.03313473, -0.010103531, -0.034860216, 0.0024281503, -9.832239E-4, -0.00409466, 0.011984042, 0.018131087, 0.0021467477, -6.356833E-4, -0.025585728, 0.0151114855, 0.026529353, 0.019290399, -0.0022006691, -0.018373733, 0.031786695, 0.01903427, 0.011444828, 0.022107793, -0.0029269236, -0.019964416, -0.0067570317, -0.070151806, 0.026367588, -0.02272789, -0.019209515, -0.0014238632, 0.0030364515, 0.0074007185, -0.0014819973, -0.016324718, 0.014990162, -0.00483945, 0.008647652, -0.02830876, 0.0024180398, -0.01453183, 0.0062818485, -0.0053483336, -0.0011584687, 0.002193929, 0.0018147937, -0.01748403, -0.013992616, 0.02046319, 0.018306332, 0.0022478504, 0.009746302, 0.010588825, 0.0051629785, -0.019088192, -0.010090051, 0.024696022, -0.017254863, 0.006430133, 0.00743442, -0.013763449, -0.032541595, -0.019249957, 0.0094295135, 0.023900682, 8.0545165E-4, -0.01525977, -0.007036749, -0.019303879, -0.032595515, -0.004920332, 0.01606859, -0.027850429, 0.015435015, 0.019222995, 0.01752447, 0.02565313, 0.013871293, -0.005395515, -0.022498725, 0.022053871, -0.0334313, 0.04095334, 0.010292256, -0.0040104077, -0.005469657, 0.035507273, 0.0132848965, 0.02271441, -0.02868621, 0.015178887, -0.0052775615, 0.0027466237, -0.005392145, 0.0096789, -0.033646982, 0.004175542, -0.0062414077, 0.020665394, 0.019586965, 0.0094295135, 0.0065447157, -0.0106494855, 0.017416628, 2.4075084E-4, 0.025356561, 0.026569793, -0.021420294, -0.024561219, 0.0147070745, 0.0051191673, 0.013648867, 0.0044215587, 0.013062471, 0.011276322, 0.009719341, -0.0070974105, 0.010629266, 0.023671515, 0.0027971752, -0.01077755, 0.007677066, -0.011155, -0.006450353, -0.006969347, 0.011984042, -0.009267749, -0.0031459795, -0.0141004585, -0.013979135, -0.017605353, 0.014572271, -0.0043373066, -0.02566661, 0.0028460415, 0.022134755, 0.030654343, 0.014127419, 8.745385E-4, 0.009921546, -0.035075903, 0.010359658, -0.00856677, -0.003130814, -0.019101674, 0.04726215, 0.0027786396, 0.011687473, 0.0372058, -0.008438706, 0.046453327, -4.0146202E-4, 0.016432561, -0.005058506, 0.017052658, 0.012442374, -0.010015909, -8.821212E-4, -0.022903135, 0.009503655, -0.015637219, 0.0086072115, 0.005371924, 0.02489823, 0.003798092, 0.070151806, 0.024682542, 0.0015030603, 0.018495057, -0.019600445, 0.009618239, 0.02461514, 0.0075355223, -0.013871293, -0.0066491887, -0.005446066, -0.013554504, -4.6760007E-4, -0.042247456, -0.012617619, 0.0170931, 0.003798092, 0.006740181, -0.020287944, -0.0064233923, -0.0040508485, -0.0054662866, 0.02119113, 0.009840664, -0.019438682, -0.025397003, 0.03693619, 0.0031459795, -0.007636625, -0.030007286, 0.0043979683, -0.019061232, 0.008330864, 0.003872234, 0.025181316, 0.004583323, -0.022215636, -8.735906E-5, 0.020975443, 0.004280015, -0.008411746, 0.009948507, -0.01636516, -0.0012519886, 0.016135992, -0.008667872, 0.014289184, -0.02053059, -0.017767116 ], + "id" : "5d053189-3558-4c28-87e3-4d20ca3d1102", + "metadata" : { + "source" : "movies.csv" + } + }, + "ccc21a1b-a7b9-4914-b0b8-7b7d8be997c4" : { + "text" : "079,1365,Jason Statham-Wu Jing-Shuya Sophia Cai-Sergio Peris-Mencheta-Skyler Samuels-Cliff Curtis-Page Kennedy-Sienna Guillory-Melissanthi Mahut-Kiran Sonia Sawar-Felix Mayr-Whoopie van Raam-Guo Tao-Robin Hill-Dai Lele-Sui Fong Ivy Tsui-Stewart Alexander-Li Xin-Billy Clements-Ron Smoorenburg-Rui Shang-Sara Dee-Jonny James-Bai Narisu-Kenneth Won-Able Wanamakok,based on novel or book-sequel-kaiju,/4m1Au3YkjqsxF8iwQy0fPYSxE0h.jpg,/qlxy8yo5bcgUw2KAmmojUKp4rHd.jpg,1006462-298618-569094-1061181-346698-1076487-616747-1083862-614930-1003581-980489-614479-1040148-872585-57084-667538-1149381-457332-724209-884605\r\n75656,Now You See Me,Thriller-Crime,en,An FBI agent and an Interpol detective track a team of illusionists who pull off bank heists during their performances and reward their audiences with the money.,54.155,Summit Entertainment-K/O Paper Products-SOIXAN7E QUIN5E-See Me Louisiana,5/29/13,75000000,351723989,116,Released,4 amazing magicians. 3 impossible heists. 1 billion dollars. This is no illusion.,7.3,14308,Woody Harrelson-Morgan Freeman-Jesse Eisenberg-Isla Fisher-Mark Ruffalo-M��lanie Laurent-Dave Franco-Michael Caine-Michael Kelly-Justine Wachsberger-Common-David Warshofsky-Kerry Cahill-Jos�� Garcia-Caitr�_ona Balfe-Jessica Lindsey-Stephanie Honor��-Elias Koteas-Odessa Feaster-Diego Mir�_-Conan O'Brien-Joe Chrest-David Joseph Martinez-Anthony Molinari,paris france-new york city-bank-fbi-vault-magic-new orleans louisiana-investigation-heist-conspiracy-money-escape-las vegas-magician,/tWsNYbrqy1p1w6K9zRk0mSchztT.jpg,/xEY0MV2jSQBz9iOJfCFvLTiPGMA.jpg,291805-101299-70160-131631-207703-18785-240832-198663-72105-157350-12444-72190-49521-6479-131634-10528-12445-767-118-68721-1865\r\n9740,Hannibal,Crime-Drama-Thriller,en,After having successfully eluded the authorities for years Hannibal peacefully lives in Italy in disguise as an art scholar. Trouble strikes again when he's discovered leaving a deserving few dead in the process. He returns to America to make contact with now disgraced Agent Clarice Starling who is suffering the wrath of a malicious FBI rival as well as the media.,6.614,Dino De Laurentiis Company-Universal Pictures-Scott Free Productions-Metro-Goldwyn-Mayer,2/8/01,87000000,351692268,131,Released,\"His genius undeniable. His evil, unspeakable.\",6.", + "embedding" : [ 0.01032144, -0.018780472, -0.017373001, -0.03312528, -0.02661396, 0.030111307, -0.016036617, -0.0041086725, -0.024154443, -0.035286244, 0.034461666, 0.031788897, 0.022604806, 0.0024026493, 0.012716981, 0.0022800288, 0.022818059, -0.015681196, -0.0043006, -0.021424808, -0.0058537917, -0.00509319, -0.014671799, 0.0101224035, -0.012752523, 0.0322154, 0.03164673, -0.008693609, -0.03241444, 0.0070551164, 0.008473248, -0.001140903, -0.012063005, -0.018595653, -0.017572038, -0.0029926489, 0.0047910814, -0.020685531, 0.022434205, -0.005349093, 0.013662402, 0.01280939, -0.0010804813, -0.013342522, -0.01471445, -0.0014270173, 0.017600471, -0.01036409, -0.010740837, 0.025547696, 0.02806408, 0.031675164, -0.02095565, -0.01869517, -0.020429626, -0.006308731, 0.0033871667, 8.0502965E-4, -0.0018766255, -0.01167915, 0.007279032, -0.02313083, -0.04205347, -0.016150352, -0.013619752, -0.021879746, -0.016178787, -0.01946288, 0.0020596676, 0.010541801, 0.008366622, 0.03258504, 0.0131008355, -0.0096674645, 0.021254204, -0.030992754, -0.023031313, -0.0031899079, -0.011536981, 0.0043077082, 0.011984812, -0.0141671, -0.0042579495, 0.007861923, 0.018666737, 0.010527585, -0.027765526, 0.0295142, -0.015652763, 0.0106484275, 0.017216617, 0.03557058, -0.016633725, 0.0064437916, 0.0073003573, 0.022206735, -0.02974167, 0.018382398, -0.0344901, -0.020671314, 0.0041939737, -0.019206977, -0.011174452, -0.0061914423, -0.0045955996, -0.007293249, 3.589757E-4, -0.015880233, 0.020216374, 0.009823849, -6.646382E-4, -0.0047057807, 0.016889628, -0.05300045, 0.0021893964, -0.02765179, 0.025448179, -0.012958667, 5.87334E-4, -0.03258504, 0.02145324, 0.035058774, 0.0078121643, -0.023415167, 0.042650577, 0.034205765, -0.0030530705, -0.014614931, 0.013086619, -0.01865252, 0.021197338, -0.023514686, 0.031788897, 0.01616457, -0.02851902, 0.04771178, -0.011863969, 0.0017078002, -0.025988419, -0.017358785, 0.027267937, 0.033750825, -0.012916016, -0.026827214, -0.0137405945, 0.00959638, 0.005459274, -0.003538221, 0.0098593915, -0.008231562, 0.026059503, 0.016946496, 0.013726378, 0.033182148, 0.02914456, 0.011309512, -0.0068916227, -0.0017255713, -0.0017078002, -0.027466971, -0.007869031, -0.013541559, -0.0040411423, -0.02331565, 0.005868009, 0.020770831, 0.016576858, -0.024111794, -0.0015558576, -0.0030050885, -0.009823849, 0.020898784, -0.015169389, 0.008032526, 4.7715334E-4, 0.02222095, 0.022718541, -0.006632165, -0.026429141, -0.021495892, 0.01801276, 0.006649936, 0.034376364, 0.016861195, 0.0070408997, 0.025277575, 0.026756128, -0.031532995, 0.015880233, -0.023870107, -0.009830958, 0.021467458, -3.0499607E-4, 0.0045849374, -0.62872636, -0.016846979, -0.022974445, 0.0027882815, 0.02878914, 0.0098949345, 0.007940116, 0.0044712024, -0.005558792, -0.008068068, -0.01624987, 0.005807587, 0.029400464, -0.009411561, -0.031447694, -0.016633725, -0.0071404176, -0.018268663, -0.015354208, 0.010705295, -0.017273484, 0.027950345, -5.673415E-4, -1.4452881E-5, 0.010627102, 0.016861195, -0.009319151, -0.02783661, 0.013769028, 0.011878186, -0.017188182, 0.03241444, 0.010669753, 0.008629634, 0.036281426, -0.005029214, -0.0010280566, 0.050953224, 0.027282152, 0.02512119, -0.017259268, -0.0017904358, 0.007925899, 0.0032805402, -0.010811921, 0.020244807, 0.009582163, -0.0010422735, 0.014472763, -0.0031330404, -0.008515899, 0.0016838093, 0.005356202, -0.008842886, 0.0020596676, 0.006404695, 0.010811921, -0.038584556, 0.023116613, 0.014110233, -0.016918063, 0.013157703, 1.3128381E-4, 0.0038136726, -0.00805385, 0.040205278, -0.005956864, -0.018624086, 0.01479975, -0.020017337, 0.0019903602, 0.008665176, -0.012297584, -0.02286071, 0.006635719, 0.02806408, 0.043617323, -0.0020081315, 0.0011293518, 0.021211553, -0.0046204794, 5.797813E-4, 4.642693E-4, 0.0019743664, 0.0061096954, -0.006564635, -0.041115157, 0.011551199, 0.0071724057, -0.0057827076, 0.013719269, 0.0063762614, 0.019093242, 0.019391796, -0.019391796, 0.008252887, -8.041411E-4, 0.0017824387, 0.034546968, -0.06562502, -0.015240473, -0.016591074, 0.016548425, -0.013413607, 0.0013506017, 0.024325047, -0.009809633, -0.023301432, 0.043930095, -0.015411075, -4.2939358E-4, -0.014252402, -0.012844932, 0.0037496965, -0.0025074985, -0.02920143, 0.008323971, 0.017003363, 0.0016376044, -0.008906863, 0.0056618643, 0.008935296, 0.013484691, -0.007463851, 0.014742883, 0.04290648, -0.0075704777, -0.0062802974, 0.00968879, 0.016264087, -0.002269366, -0.0029713237, 0.03915323, -0.022107216, 0.009020598, -0.0014421226, 0.002994426, 0.004055359, 0.020614445, -0.004403672, -0.020259025, -0.008459032, -0.020244807, -0.030480945, -0.00787614, -0.005146503, -0.016989147, 7.1306434E-4, 0.0057755993, -0.004151323, -0.013648185, 0.0111389095, 0.005647647, 0.017827941, 0.0039274073, -0.0045245155, -0.021396372, -0.015482159, 0.0058182497, -0.01471445, 0.007065779, 0.012752523, 0.003074396, -0.0065610805, 0.022505289, -0.0062163216, 0.017714206, 0.021467458, -0.01389698, -0.023841674, 0.014842401, -0.004766202, 1.2672997E-4, 0.012375776, 0.012930234, 0.026272755, -0.008842886, 0.020074205, -0.004414335, 5.300223E-4, -5.473491E-4, -0.0150983045, -0.0233583, -0.02041541, 0.020216374, 0.015482159, 0.008124935, -0.013051077, 0.0026852093, 0.0019477097, -0.0033640643, -0.00905614, 0.0026727696, -0.0020721073, 0.0014518967, 0.026230106, 0.0019281616, -0.016363606, -0.00258036, 0.02385589, 0.050640453, 0.04120046, -0.005178491, 0.0033302994, 0.0118568605, -0.0247089, -0.002265812, -0.023287216, 0.00409801, -2.3502245E-4, 0.025874684, -0.0117431255, -0.010029994, -0.0051251776, 0.011444571, 0.025931552, -0.015169389, 0.0115156565, -0.009070356, 0.0034351486, 0.0077339713, -0.025405528, 0.011885295, 0.0060990327, -0.02416866, -4.122889E-4, 0.017444087, -0.003721263, -0.0049474672, -0.0059959604, -0.012361559, 0.007819273, -0.0024168661, 0.013221679, -0.0017317912, -0.020301675, 0.03531468, -0.004847949, 0.035229377, 0.0021467458, 0.0025679201, 0.020102639, 0.028391069, -0.016932279, 0.011600957, -0.006177225, 0.017685773, 0.0060599362, -0.0022444867, 0.057663582, -0.026144804, 0.033836126, 4.725995E-5, 0.012290475, 9.800748E-4, -0.032528173, 0.0043077082, 0.021979265, 0.030168176, 0.0037674678, 0.011366379, -0.026585527, 0.022803843, -0.007996983, 0.018524569, 5.322437E-4, -0.019761434, 0.012589029, -0.014614931, -0.03784528, -0.018126495, -0.021168904, 0.0023724383, 0.013456257, 0.0062980684, -0.014231076, 0.0031223777, 0.0054130694, 0.009937584, 0.017756857, -0.008515899, -0.030338777, 0.013918305, 0.021566976, -0.0044712024, -0.025746733, -0.0056263222, -0.019533964, -0.050185513, -0.00522825, -0.009681681, 0.0246236, -0.02657131, 7.8770285E-4, -0.02810673, -0.0042330697, 0.009930477, -0.020173723, 0.017046014, 0.014671799, -0.002001023, 0.0031223777, 0.005391744, -0.0039451784, 0.028319983, -0.002793613, 0.0018446374, 0.008992163, 0.008608309, -0.011423246, 0.0038812025, 0.0013497131, -0.04211034, 0.012411318, -0.003991383, -0.010470717, -0.009674572, -0.004812407, 0.021723362, -0.011878186, -0.022533722, -0.040574916, -0.016676376, 0.005395298, 0.071766704, 0.051095393, 0.010755054, 0.0025608118, -0.0029855405, 0.0011613397, -0.014188426, -0.008494574, -0.012951558, -0.025988419, 0.025249142, -0.0067458996, 0.014138667, 0.0064722253, 0.021936614, -0.014970353, -0.0048870454, -0.0065966225, 0.0013417162, -0.009511079, -0.02657131, 0.004361022, 0.02087035, 0.03349492, -0.0022604805, 0.0034138234, 0.03793058, 0.010527585, 0.0081604775, 0.010826139, -0.0034955703, -8.6456275E-4, 0.021851312, -0.0031312632, -0.010506259, -0.0020952097, 0.02168071, 0.0061559, 0.023486251, -0.0010955867, -0.014344811, 0.0096319225, 0.006038611, 0.0022196071, 0.01819758, -0.03915323, 0.00344048, 0.018311314, 0.031618293, -0.022476854, 0.020969868, 2.4879503E-4, -0.014024932, -0.019576615, 0.032698777, -0.0028042756, -0.01457228, -0.0031010525, -0.026286973, 0.008018308, -6.3664874E-4, -0.042934917, 0.023201915, -0.0057862615, -0.009795416, -0.025178058, -0.01036409, -0.011750234, -0.009319151, 0.017131316, 0.014188426, -0.023457818, -0.017046014, 0.0056014424, 0.0134775825, -0.0044072266, 0.023884324, -0.003739034, 0.00823867, 0.014899269, -0.044555638, -0.03255661, -0.002594577, -0.020898784, -0.0031881307, 0.0065504177, -0.0035524378, 0.0021289748, 0.01439457, 0.0072008395, 0.0081604775, 0.005356202, -0.008800236, -0.0065397555, 0.042707447, -0.012446861, 0.014323486, 0.009624814, 0.017301917, 9.09879E-4, 0.009475537, -0.021325288, -0.014337703, -0.011117584, -0.014586498, -0.024680467, 0.010115296, 0.0011231318, -0.020059988, -0.007033791, -0.015325774, -0.011487222, 0.0062980684, 0.012752523, 0.014159991, 0.0032787633, 0.008267104, 0.02493637, -0.014337703, 0.019334929, 0.008039634, 0.008643851, 0.007591803, 0.028646972, 6.4908847E-4, 0.011337945, -0.0016998033, -0.031362392, -5.2158104E-4, 0.026699262, -0.009646139, 0.015439509, -0.01633517, -0.017714206, -0.0160224, -0.00995891, 0.006308731, 0.001381701, -0.0106128855, -0.005409515, -0.03164673, -0.010534693, 0.00572584, 0.01344204, -0.019221194, -0.02806408, 5.0114427E-4, -0.008537224, 0.011785776, 0.02050071, 0.013186137, 0.0020401194, -0.021965047, -0.017046014, -0.0026265648, -0.046091057, -0.02190818, 0.0035328895, 0.0295995, 0.01425951, 0.03539998, 0.0030210826, 0.037276603, 0.008295537, -0.001785993, 0.021040952, -0.022562156, -0.0046275877, -0.022661673, 0.00665349, 0.006976924, 0.0057755993, 0.00545572, 0.0117218, -0.014465654, 0.022391554, 0.012887583, 0.021481674, -0.005480599, -0.03326745, -0.0054059606, 0.0018570772, -0.029713236, -0.011863969, -0.017870592, -0.022419987, 0.018538784, -0.011842644, 0.00850879, -0.010740837, 0.03380769, -0.007463851, -0.003621745, -0.031931065, 0.034774438, -0.019036375, 0.0059426473, -0.020799264, 0.0032183416, 0.003028191, -0.0029197875, 0.023727939, -0.0031845765, -0.021538543, 0.0030566247, 0.017358785, -0.009319151, -0.027040467, 0.0073216828, -0.009084573, -0.01643469, -0.023073962, 0.0037674678, -0.031703595, -0.012880474, -0.008124935, -0.016448906, 0.010548909, -0.01697493, -0.03244287, 0.041996602, -0.01303686, 0.0320448, 0.013328305, 0.05337009, 0.036992267, -0.0036021967, -0.023756372, 0.009710114, -0.007996983, -0.010783488, 0.022377336, 0.024438782, -0.011871077, -0.0077410797, -0.011231319, -0.0022320468, -0.05228961, -0.025547696, 0.018752037, 0.031589862, 0.033409618, -0.033637088, -0.005359756, -0.023955408, 0.007996983, -0.011380596, 0.012148307, -0.0013390505, -0.03164673, -0.010946982, 0.005903551, -0.0012697432, 0.0059639723, 0.01403204, -0.040119976, 0.0074212006, -0.017003363, -0.009290718, -0.0068738516, -0.01639204, 0.039778773, -0.022775408, 0.017529387, 0.0054201777, 0.018481918, 0.0059284302, -0.008899754, 4.607151E-4, 0.031618293, -0.016406255, 0.023372516, 0.0017229057, -0.011259752, -0.0036164136, 0.016463123, -0.019007942, -0.025959985, -0.006987586, 0.013861438, 0.013889872, 0.010207705, 0.0039984914, -0.008956621, -0.020443844, -0.018353965, 0.010022886, -0.0054343943, 0.016406255, -0.032016367, 0.010072645, -0.009994452, 0.0013745925, 0.0031117152, 0.0077339713, -0.008039634, -0.005242467, 0.024922155, -0.006614394, -0.003307197, -0.010641319, -0.020202156, -0.03517251, -0.01570963, -0.002400872, -0.010143729, 0.014970353, -0.021197338, -0.008167585, -0.01204168, 0.007833489, -0.004158431, 0.01457228, -0.010264573, 0.016008183, 0.020472277, -0.020486495, -0.0029979802, 0.012660113, 0.030708415, -0.0013363848, -0.0015407521, -0.0023706614, 0.0029819862, 0.02679878, -0.01647734, 0.021566976, -7.086216E-4, -0.020244807, -0.01724505, -9.6496934E-4, 0.029770104, 0.002614125, -0.004158431, -0.032243837, 0.0024293058, -0.012567704, 0.025689865, -0.0037461424, -7.486065E-4, 0.02186553, 0.021396372, 0.029485766, 0.028248899, -0.0048586116, -0.028234683, 0.011494331, -0.024054926, -0.03323902, -0.0047271056, -0.0016998033, 0.01905059, -0.002763402, 4.7271058E-4, -0.027495407, 0.008252887, -0.023756372, -0.020941434, 0.0073074657, 0.027097333, 0.037361905, 0.0038669857, -8.716712E-4, 0.016761677, 0.0025270467, 0.0034173776, -0.011245536, 0.0028433718, 0.012724089, -0.0063584903, 0.01575228, 0.029343598, -0.03210167, -0.008430597, 0.010115296, 0.017870592, 0.0031206007, 0.021837097, -0.02775131, -0.025760949, 0.0031650283, -0.012148307, -0.005146503, -0.0072292727, 0.01801276, -0.0294289, -4.4138904E-4, 0.0050896355, 0.027779743, -0.011821318, 0.013840113, 0.0020418963, -0.019747218, -0.0021698482, -2.2813617E-4, -0.022050349, 0.014885052, -0.02362842, 0.021296855, 0.006482888, 0.0023226794, 0.04188287, 0.023344083, -0.011899511, -0.0141173415, -0.008906863, 0.0117218, -0.010072645, 0.024069143, 0.0073430077, 0.028917091, -0.024154443, 0.012859149, -0.01194927, 0.0035293354, -0.006010177, 0.006667707, -0.010165054, 0.031333957, 0.0144585455, -0.057464544, -0.0075704777, -0.0031614741, -0.0071901768, -0.0022942456, -0.0041726483, -0.029684803, -0.0095181875, -0.007442526, 0.003721263, -0.009439995, -0.014323486, -0.009532404, -0.016406255, -0.02526336, 0.013193245, 0.1770852, -0.008636742, 0.016349388, 0.04029058, 0.011473006, 0.021439023, 0.022917578, 0.027623357, -0.0034191546, 0.0030050885, 0.0061807795, -0.0049901176, 0.008586983, -0.0019423784, 0.008729151, -0.029770104, -0.031134922, -0.02136794, -0.010634211, -0.032300703, -0.021296855, 0.0147571, -0.013449149, -0.022249386, 0.005224696, -0.0057222857, -0.0053704185, 0.003689275, 0.0131008355, 0.0043894555, -0.024865286, -0.0121198725, -0.0032787633, 0.011572523, -0.03210167, -0.00932626, -0.023742154, 0.0054237316, 0.016448906, 0.010435175, -0.004915479, 0.0061559, -0.012887583, -0.016804328, -0.004282829, 0.0033853897, -0.028490586, 0.0034173776, -0.021495892, 0.016690593, -0.046915635, 0.01131662, 0.026727695, 0.025362877, -0.014742883, -0.021083603, 0.0069129476, 0.009951802, -0.0021929506, -0.007677104, 0.0074354173, 0.038641423, -0.028220465, 0.007989875, -0.007691321, 0.025334444, -0.039977808, -0.017401436, 0.017387219, -0.029997572, -0.019548181, -0.02982697, -0.01887999, -0.0066819238, -0.015766498, -0.018524569, 0.010356982, 0.005050539, 0.005341985, 0.023784805, -0.018396616, -0.032983113, 0.0031046066, -0.0064260205, -0.0012146529, -0.02648601, 0.021623842, -0.019022157, -0.007925899, -0.017401436, -0.0018499688, -0.018538784, -0.018766254, -0.010051319, -0.0068702972, 0.0012226499, 0.022647457, 0.022192517, -0.018098062, -0.007755297, -0.029485766, 0.047910817, 0.024239745, -0.011579632, -0.02072818, -0.025135407, -0.0013301648, 0.01797011, 0.030964319, -0.013349631, -0.009205417, -0.023713721, -0.0013630413, -0.02037276, -0.0071084294, 0.0101224035, 0.0026070166, 0.0012031017, 0.04594889, -0.015894448, 0.009994452, -0.024609383, -0.0053348765, 0.0069271647, 0.0026336731, -0.027239503, -0.01389698, -0.0023244566, 0.002184065, -0.024609383, 0.020543361, -0.014742883, 0.017827941, -0.0077126464, 0.0022551494, 0.0034209318, 0.022121433, 0.0016589297, 0.012560595, -0.018851556, -0.018154928, -0.01991782, 0.004396564, 0.010150838, 0.028078297, -0.024026493, -0.014223968, 7.7037606E-4, -0.009567946, -0.030850586, -0.012475294, -0.0074212006, 0.004943913, 0.012375776, 0.045408648, -0.0026994261, -0.030651549, -0.032983113, -0.010136621, 0.032130104, -0.041570097, 0.009724332, 0.017856374, -0.011302403, -0.041086722, -0.027225286, -0.1845917, 0.014451438, 0.0049403585, -0.024765769, 0.02286071, 0.0144940885, 0.032243837, 0.017145533, 0.006717466, -0.017842159, 0.020386977, 0.0046133706, -0.038044315, -0.03335275, 0.0048408406, 0.01833975, -0.020045772, 0.043304555, 0.025661431, -0.0081604775, 0.032357574, 0.0031401487, -0.024296613, 0.0041797566, 0.023912758, 0.014373245, 0.018723603, -0.010527585, 4.989229E-4, -0.01108915, -0.026727695, -0.007613128, -0.0016402701, 0.0016704809, -0.011181559, 0.0041015637, -6.7485654E-4, -0.024566732, -0.009084573, -0.009212525, 0.032130104, 0.019420229, 0.012055897, 0.010627102, 0.014238184, 0.0084234895, 0.031760465, -0.015894448, 0.007136863, -0.011920837, -0.021467458, -0.045692984, 0.024794202, -0.0035044558, 0.011288187, 0.02095565, -0.008544332, -0.0030228598, 0.011693367, 0.0073003573, -0.036338292, -0.019391796, 0.0021893964, -0.013378064, -0.00336051, -0.0108758975, -0.011899511, 0.014771317, -0.035058774, 0.017955894, -0.029713236, 0.01457228, 0.009361802, 0.0023422276, -0.004119335, -0.011551199, -0.02829155, 0.0052495752, -0.01036409, 0.02018794, -0.017572038, 0.039750338, -0.016832761, 0.0066215023, 0.016861195, -0.012916016, 0.018808905, -0.010776379, 0.015169389, -0.020401193, 0.011018066, -4.740434E-4, -0.032300703, 0.0059781894, 0.005647647, 2.1425252E-4, -0.003209456, 0.0043219253, 0.017117098, -0.0031650283, -0.0018659628, -0.013456257, -0.026955165, 0.010925656, 0.012667222, 0.00315792, 0.020230591, 0.033637088, 0.017173966, 0.006123912, -0.012916016, 0.015467943, 0.026372274, 0.010214813, -0.014870835, 0.013427824, -0.03539998, -0.02118312, 0.012347342, 0.016193002, 0.040944554, -0.0035471064, -0.0012670776, -0.0131008355, -0.019036375, -0.019590832, -0.082742125, 0.0117431255, 0.015595894, 0.05137973, -0.026869863, 0.031106489, 0.0036963834, 0.0100442115, -0.034376364, 0.025092756, -1.2439751E-4, -0.035001907, 0.0018410833, 0.0024399685, -0.0014625594, 0.008224453, -0.010939873, 0.009120115, 0.0048905998, 0.027211068, 0.0034600282, -0.010278789, 0.007833489, -0.0133638475, -0.015965533, 0.023386734, -0.018823123, 0.026898298, 0.004268612, -0.0031881307, 0.015794931, -0.018638302, 0.0077695134, -0.027538056, -2.023681E-4, -0.025959985, -0.015155172, -0.014828185, 0.008579874, -0.051095393, 0.011323729, 0.010001561, 0.009091682, -0.024509866, -0.02679878, 0.013392282, -0.04594889, 0.014856618, -0.0056831897, -0.025007455, -0.02114047, -0.016576858, -0.023784805, -0.0066108396, 0.028945526, 0.020543361, 0.025234925, 0.015723847, -0.019804085, -0.006802767, 0.0074567427, -0.019491315, -0.03557058, 0.013228788, 0.007854815, 0.012802281, -0.0015247582, -0.0050540934, 0.022619024, -0.014785534, -0.01797011, 0.03485974, -0.029571068, -0.016804328, -0.030480945, 0.004631142, -0.02263324, -0.017173966, 0.017415652, -0.043787926, -0.010193489, -0.035513714, -0.0047093346, -0.020941434, 0.010278789, 0.01091144, 0.0110465, 0.009830958, 0.0012031017, -0.031248657, 0.0012732975, 0.018851556, 0.007641562, 0.008245778, 0.0033143053, 0.017415652, 0.018055411, 0.0052993344, -0.006934273, 0.0051322863, -0.011636499, -0.014195534, -0.074098274, 0.023116613, -0.021126254, -0.02652866, -0.011807102, -0.016377822, 0.003492016, -0.008729151, 0.01633517, 0.021808662, -0.009887826, 0.021097818, -0.0161077, -0.002265812, -0.003788793, 0.014074691, 0.001405692, -0.009176983, 3.2987556E-4, 8.391279E-5, -0.027367454, 0.009560838, 0.021282637, -3.132152E-4, 0.0034351486, 0.02041541, -0.0078974655, 0.015467943, -0.019406013, -0.010691078, 0.019206977, -0.010740837, -0.005910659, 0.0014421226, -0.0047519854, -0.04168383, -0.0044783107, 8.1913546E-5, 0.014295052, 0.005576563, -0.0055481293, -0.02458095, -0.013484691, -0.0012395324, -0.009482645, 0.024680467, -0.0141671, 0.011935053, 0.012326017, 0.0045707203, 0.034802873, 0.01575228, -0.010406741, -0.01643469, 0.008139152, -0.02060023, 0.041769132, -0.002198282, 0.012944451, -0.012553487, 0.026414925, -0.008913971, 0.026812997, -0.03992094, 0.01204168, 0.001746008, -0.0015869569, 2.5745845E-4, 0.014529631, -0.022946011, -0.0038634315, -0.0057009608, 0.008437706, 0.021794446, -0.0017868815, 0.020998301, 0.016363606, -0.002034788, -0.0010946982, 0.018624086, 0.019733, -0.025476612, -0.012070114, 5.700072E-4, 0.0049581295, 0.018680952, 0.012951558, 0.022547938, 0.00595331, 0.0050860816, -0.004993672, 0.00828132, 0.034006726, -0.011117584, 0.010243247, 0.027865045, -0.015325774, -0.016121918, 0.0026514442, 0.03494504, 0.015467943, -0.0123118, -0.010527585, -0.0038527688, -0.03557058, 4.242844E-4, 0.0019992457, -0.016832761, 0.022946011, 0.014700232, 0.013633968, 0.017216617, -0.013335414, 0.009347585, -0.031362392, 0.0075349356, -0.0037603593, -0.025988419, -0.02408336, 0.05490551, 0.0038776484, 0.013904088, 0.016846979, -0.020386977, 0.042025037, 0.012610354, 0.021808662, -0.034802873, -1.3694834E-4, -0.012020354, -0.0019956916, 0.01643469, -0.01927806, 0.011060717, -0.013328305, 0.0020596676, 0.0070871045, 0.035911787, 1.5449728E-4, 0.06369153, 0.01865252, 0.00416554, 0.005541021, -0.017728424, 0.0025341553, 0.012397101, 0.014828185, -0.013747703, -0.0018588543, 0.0014981015, -0.008444814, -0.011131801, -0.025718298, 0.0058182497, 0.0015611888, 0.005754274, 0.006287406, -0.013577101, -0.018837338, -0.006010177, 0.009973126, 0.030168176, 0.008444814, -0.018126495, 0.005210479, 0.02756649, -0.010492042, -0.0033178595, -0.053625993, -0.00828132, -0.022149866, 0.0048941537, -0.016363606, 0.027666008, -0.008558549, -0.0069733695, 0.013186137, 0.021723362, 0.006372707, -0.018226014, -0.005693852, -0.017572038, -0.02244842, 0.021794446, -0.017102882, -0.014728666, -0.026400708, -0.018439267 ], + "id" : "ccc21a1b-a7b9-4914-b0b8-7b7d8be997c4", + "metadata" : { + "source" : "movies.csv" + } + }, + "28eb915e-d3ef-424a-ba1e-09912230c0db" : { + "text" : "9,6042,Jack Black-Angelina Jolie-Dustin Hoffman-Gary Oldman-Jackie Chan-Lucy Liu-Seth Rogen-David Cross-Michelle Yeoh-James Hong-Danny McBride-Dennis Haysbert-Jean-Claude Van Damme-Victor Garber-Mike Bell-Jason Bertsch-Michael DeMaio-Shane Glick-Lena Golia-April Hong-Joseph Izzo-Alexandra Gold Jourden-Stephen Kearin-Liam Knight-Paul Mazursky-Dan O'Connor-Jeremy Shipp-Maury Sterling-Fred Tatasciore-Lauren Tom-Romy Rosemont-Conrad Vernon,martial arts-kung fu-hope-fleet-panda-friends-mission-woman director,/wQ0gqQdoFu6YKApiR34ktNjgjH2.jpg,/7BdxZXbSkUiVeCRXKD3hi9KYeWm.jpg,9502-140300-10527-80321-8355-953-46195-38055-950-810-57800-10192-13053-22794-49013-425-809-15512-10191-38757-9836\r\n950,Ice Age: The Meltdown,Animation-Family-Comedy-Adventure,en,Diego Manny and Sid return in this sequel to the hit animated movie Ice Age. This time around the deep freeze is over and the ice-covered earth is starting to melt which will destroy the trio's cherished valley. The impending disaster prompts them to reunite and warn all the other beasts about the desperate situation.,59.271,20th Century Fox Animation-Blue Sky Studios-20th Century Fox,3/29/06,80000000,660998756,91,Released,Kiss Your Nuts Goodbye,6.7,8761,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Seann William Scott-Josh Peck-Jay Leno-Will Arnett-Chris Wedge-Peter Ackerman-Caitlin Rose Anderson-Connor Anderson-Joseph Bologna-Jack Crocicchia-Peter DeS��ve-Ariel Winter-Clea Lewis-Stephen Root-Nicole DeFelice-Debi Derryberry-Marshall Efron-Tom Fahn-Jason Fricchione-James Edmund Godwin-George Jacobs-Brian Scott McFadden-Jansen Panettiere-Gregory Romano-Matt Romano-Carlos Saldanha-Manoela Scarpa Saldanha-Sofia Scarpa Saldanha-Reyna Shaskan-James Sie-Cindy Slattery-Mindy Sterling-Alex Sullivan-Ren��e Taylor-Alan Tudyk-Claudia Besso-Madeleine Martin-Sherry Lynn-Mickie McGowan-Emily Anderson-Jack Angel-Shane Baumel-Bob Bergen-Kyle J. Bogert-Rodger Bumpass-Paul Butcher-Blanca Camacho-John Cygan-Jennifer Darling-Olivia DeLaurentis-Harrison Fahn-Bill Farmer-Crispin Freeman-Tim Kirkpatrick-David H. Kramer-Danny Mann-Laura Marano-Matt McCarthy-Laraine Newman-Jan Rabson-Zack Shada-Thomas Sharkey-Ross Simanteris-Rachel Stand-Spencer Lacey Ganus-Jess Harnell,mammoth-sloth-ice age-barrier ice-ice melting-iceberg-flooding-lovers-deluge-sequel-saber-toothed tiger,/vdluBXie4qDvh0dFX2Fpq8v16it.jpg,/wRTZaxAiDP0ZEeQsO0HiiSqYCSp.", + "embedding" : [ 0.010915497, -0.039631654, -0.010525898, -0.042560365, -0.029824497, 0.031194812, 0.0037582899, -0.011667827, -0.01699459, -0.03646112, 0.040491458, 0.027365992, 0.011768586, -0.0026465883, 0.004923729, 0.010398271, 0.02271767, 0.012225357, 0.024262631, -0.026318105, 2.2796597E-4, 0.009471294, -0.015382455, 0.007744965, 0.009907913, 0.014965987, 0.03232331, -0.009619072, -0.0041546063, -0.0030345083, 0.011687979, -0.008416688, -0.015113765, -0.0053569903, -0.020635327, 0.0076912274, -0.0057499483, -0.043366432, 0.014643559, -0.013266528, 0.011157318, -0.008618205, -0.0014828284, -0.010284078, 2.30275E-4, 0.013682996, 0.0059749754, -0.01389123, -0.016054178, 0.012205206, 0.020541286, 0.020044211, -0.013427741, -0.019184407, -0.01158722, 0.0070799594, -0.012480612, -5.663464E-4, 0.003835538, 0.002523999, 0.016779639, -0.016658729, -0.034096655, -0.019439662, -0.026506187, -0.027701853, -0.018794807, -0.02218029, 0.015610841, 0.0048565567, 0.024276067, 0.011049842, 0.022610193, 0.0053099697, 0.017464796, -0.0194934, -0.021105533, -0.0010226981, 4.3242162E-5, 0.008705529, 0.016766204, -0.0046382467, 0.0037582899, 0.007274759, 0.01919784, 0.019936737, -0.028669134, 0.014092747, -0.022757972, 0.01886198, 0.00467855, 0.02715104, 0.00918917, 0.011889496, -0.013058294, 0.016766204, -0.009659376, 0.011956668, -0.033451803, -0.03597748, -0.010136299, -0.012541067, -0.0069590495, -0.01265526, -0.019506834, 0.00875255, -5.3611887E-4, -0.0052595907, 0.018351471, 0.006629905, -0.0021125686, -0.006918746, 0.027728721, -0.045059174, -0.012688846, -0.028131755, 0.02600911, -0.014321133, -0.011506613, -0.010001955, 0.024450714, 0.03651486, -0.0061193956, -0.030711172, 0.025592644, 0.022731103, 0.0036004349, -0.017343886, -0.004601302, -0.014603256, 0.014321133, -0.010593071, 0.012077578, 0.010250492, -0.026828613, 0.045220386, -0.018539554, -0.0040941513, -0.008577902, -0.013004555, 0.023402827, 0.037025366, -0.022905752, -0.019788958, -0.027728721, 0.017397624, 0.018754505, 0.0032091562, -1.0876139E-5, 9.89112E-4, 0.019090366, 0.023026662, 0.0050076945, 0.02359091, 0.018781373, 0.003042905, -0.012829908, -0.012614956, -0.009504879, -0.018875415, 5.5291195E-4, -0.011002822, 0.0037952345, -0.021978773, -0.014294264, 0.024276067, 0.014804773, -0.03001258, -0.0041713994, -0.00783229, -0.02392677, 0.016188523, -0.0223012, 0.019291881, 0.010868477, 0.020366639, 0.005393935, -0.01127151, -0.022287767, -0.012688846, 0.0049472395, 0.0013342097, 0.03272634, 0.029824497, -0.011520048, 0.005178984, 0.024571624, -0.040464588, 0.014549518, -0.008927197, 0.013541934, 0.018996324, 0.0029203154, -0.0029740531, -0.6388354, -0.00855775, 0.0020789825, -0.0048431223, 0.019735219, 0.016981155, -0.0047524394, -0.011580504, -0.021683216, 0.0029858083, -0.019305317, 0.024249198, 0.0131389005, -0.011311814, -0.017773788, -0.010868477, 0.021481698, -0.011426006, -0.010700546, 0.00511517, -0.026237497, 0.01425396, 0.023644647, -0.008826439, 0.0065828846, 0.0048330463, -0.0053637074, -0.01810965, 0.015315282, 0.011358835, -0.025471734, 0.012923949, 0.008967501, -0.004060565, 0.038556896, -0.002179741, -0.005790252, 0.0565322, 0.02218029, 0.034634035, -0.028373577, 0.004285592, 0.014562953, -0.0039598066, -0.011143884, 0.003939655, 0.0034056352, 0.013877796, -0.001199865, -2.2124873E-4, -0.0044669574, 0.009229473, -0.0025609436, -0.005182342, -0.017666312, -0.0040975097, 0.006075734, -0.027204778, 0.03372049, 0.009518314, -0.003677683, 0.034069788, 0.006414954, 0.017639443, -0.013353852, 0.024947789, -0.00943099, -0.011835758, 0.019600876, -0.030254401, 0.019815827, 0.010048975, -0.025444863, -0.0029572602, 0.012735867, 0.007388952, 0.016269129, -0.0014232129, -0.0137703195, 0.023604343, 0.007597186, 0.0017364038, 0.02133392, 0.008759267, 0.019157538, -0.0068045533, -0.018781373, 0.0016230505, 0.001541604, -0.005027846, 0.022381809, 0.025874767, 0.0054577487, -0.014240526, -0.013017991, -0.0072613247, -0.011667827, -0.008020372, 0.021145837, -0.06228215, -0.018915717, -0.013286679, 0.035520706, -0.0051453975, 0.014374871, 0.005481259, -0.021199575, -0.013985272, 0.040330242, -0.0029001636, -0.0067273052, 0.01202384, -0.012917232, -0.008289061, -0.01612135, -0.024195459, 0.0059749754, 0.013797189, 0.0028732948, -7.435133E-4, -0.0039598066, 0.014468912, 0.0022821787, -0.019936737, 0.016537819, 0.035950612, -0.0067844014, 0.004883426, -7.6282537E-4, -0.012312681, 1.6436221E-4, 0.004728929, 0.014186788, -0.036595464, 0.03251139, 0.016134785, 0.01762601, -0.009471294, 0.020554721, 0.0055349967, -0.027003262, 0.0036138694, -0.0155436685, -0.013125466, -0.007872593, -0.004984184, -0.032538258, 0.010364684, -0.012796322, -0.012756018, -0.0033283872, 0.0131389005, 0.0058372724, 0.008530881, 0.0012779528, -0.0028363501, -0.024087984, -0.01548993, 0.012064144, -0.021078665, 0.0010462084, 0.0122522265, -0.006213437, -0.0210921, 0.023429696, 0.0012611598, -0.023389392, 0.0018505966, -0.0045341295, -0.016806507, -0.0033619732, -0.014186788, 0.0067373808, 0.006918746, -0.01364941, 0.02085028, -0.009027956, 0.011701413, -0.0020084516, -0.0082689095, 0.0143614365, -0.009578769, -0.0131590525, -0.009363818, 0.03675668, 0.012453743, 0.020769672, -0.0061193956, -0.01663186, 0.012151468, -0.021145837, 0.0033401423, 0.007583752, -0.018002175, 0.0064082365, 0.0040269787, -0.008718964, 0.004577792, 0.014925683, 0.0024467506, 0.050218005, 0.0068851598, 0.0030261117, -0.0024601852, 0.0155839715, -0.021951905, 0.0013510027, -0.029045299, 0.011513331, -0.0036709658, 0.028292969, -0.018727636, -0.019520268, -0.0101631675, 0.007288194, 0.021226445, -0.003754931, 0.008497295, -0.0020873789, 0.0054443143, -0.0022301201, -0.0056021693, 0.029072167, 0.004540847, -0.023375958, -7.9935027E-4, -0.005158832, -0.010022106, -5.6844554E-4, -0.008692095, 0.0028178776, 0.0057297964, 0.0017884623, 0.01023034, 0.003835538, -0.0077919858, 0.028212363, -0.00632763, 0.035063937, -0.013609107, -0.013669562, 0.0128433425, 0.037079107, 0.0048397635, 0.0064619747, 0.006388085, 0.019842695, 0.006371292, -0.014052443, 0.045542814, -0.011446158, 0.020796541, 0.002334237, 0.011990254, 0.008369667, -0.0110296905, 0.006300761, 0.010633374, 0.0369985, 0.018418642, 0.015395889, -0.0137501685, 0.0029824497, 0.0076912274, 0.031436633, -4.244449E-4, -0.016228825, 0.0021612686, -0.008403254, -0.016457211, -0.0246791, -0.019547137, 0.009195887, 0.013340417, -0.011567068, -0.007093394, -4.210863E-4, 0.021387657, 6.701486E-5, 0.0064619747, 0.012661977, -0.05435582, 0.00768451, 0.013958402, -0.010935649, -0.013931533, -0.0028934465, -0.013353852, -0.043769464, -0.0059984857, -6.293204E-4, 0.033935443, -0.008181585, 0.0068045533, -0.020447245, 9.823948E-4, 0.015960136, -0.025592644, 0.006465333, 0.02341626, -0.011761868, 0.015718317, -0.0043023853, -0.01413305, 0.025283651, -0.013944968, 0.0053771418, 0.0016742693, -0.0074628415, 0.0013300114, 0.004433371, 1.0338236E-4, -0.03320998, 0.005713003, -0.002235158, -0.014643559, -0.012245509, -0.0032175528, 0.0113454005, -0.012198488, -0.018526118, -0.036299907, -0.029367726, -0.016981155, 0.07168627, 0.03823447, 0.017330451, 0.016430343, -0.009820589, 0.001398863, -0.0059481063, -0.008611488, -0.02778246, -0.028884085, 0.0033636526, -0.017088631, 0.01369643, 0.0035433385, 0.01413305, -0.008551033, -9.966689E-4, -0.016672162, -0.018243995, -0.0019815827, -0.031839665, -0.0076979445, 0.018700765, 0.05384531, 0.021118969, -0.0050513563, 0.033693623, 0.0037515725, -0.007415821, 0.011036407, -0.009934782, -0.0010663602, 0.0016616746, 0.016201956, -1.3612885E-4, 0.0021075306, 0.022019077, 0.011849192, 0.041593082, -0.0049472395, -0.0022771407, 0.019748654, 0.0053066113, -0.020930886, 0.003990034, -0.020353204, -0.016900549, 0.03541323, 0.03124855, -0.03208149, 0.030576827, 0.007946482, -0.031436633, -0.006065658, 0.012037274, 0.008933915, -0.01309188, -0.006673567, -0.007234456, 0.0059716166, 8.6064497E-4, -0.024195459, 0.01600044, -0.032618865, -0.010499029, -0.00768451, -0.014146484, -3.7075955E-5, -0.010525898, 0.0056794174, 0.00904139, -0.023644647, -0.011788737, -0.0017464795, -0.004268799, -0.0012007047, 0.02877661, -0.017558837, 0.010552767, 0.014818207, -0.023362523, -0.03600435, 0.0058372724, -0.027621247, 0.0028313121, 0.008396536, -0.014804773, 0.016940853, -0.011217773, 0.010740849, 0.008933915, 0.010512464, -0.013004555, -0.002661702, 0.029609546, 0.009907913, 0.018284298, 0.01566458, 0.013447893, 0.0046180952, -0.0055349967, -0.028696002, 0.0012468856, -0.03968539, -0.040733278, -0.00962579, 0.0045878678, 0.00458115, -0.0073688, -0.02654649, -0.025753858, -0.022153422, 0.005847348, -0.009121997, 0.0041881925, 0.0012661977, 0.029206512, 0.023899902, -0.021817561, 0.009343666, 0.015409323, -0.01425396, 3.2116752E-4, 0.038100123, -0.0033955593, 0.026734572, -0.0072613247, -0.025270216, -0.0013207752, 0.0322427, -0.0076106205, 0.0091623, -0.0074762763, -0.0047893845, -0.017330451, -0.01849925, 0.0041109445, 0.002136079, -0.0067508155, 0.0032595354, -2.7015858E-4, -1.0621619E-4, 0.015221241, 4.3268403E-5, 0.0049875425, -0.03248452, 0.0052058524, -0.014374871, 0.019184407, 0.016672162, -0.017222976, -8.325166E-4, -0.01253435, -0.007509862, -0.008047241, -0.03576253, -0.013783755, -0.0048666326, 0.030818647, 0.028454183, 0.037320927, -0.0149928555, 0.025028396, 0.015194372, 0.0028565016, 0.01575862, -0.02347, -0.014562953, -0.041297525, -0.0037414967, 0.002305689, 0.020393508, 0.014509215, 0.009659376, -0.0030848875, 0.005393935, 0.018942587, -0.0022200441, -0.0060958853, -0.029367726, -0.015892964, 0.0053905766, -0.024235763, -0.011909648, -0.011063277, -0.014227091, 0.038959928, -0.013421024, -6.289006E-4, 0.0052226456, 0.02247585, 0.014710732, 0.012823191, -0.02341626, -8.908725E-4, -0.020500984, -0.007301628, -0.020299466, -0.004487109, -0.0029690154, -0.017693182, 0.025216479, 0.004886784, -0.024074549, 0.0101631675, 0.027621247, -0.01265526, -0.025928505, 0.024705969, -0.02082341, -0.018445512, -0.034096655, -0.008181585, -0.033371195, 0.002443392, -0.011990254, -0.03173219, 0.010848325, -0.006028713, -0.023698384, 0.041378133, 0.002283858, 0.049143247, 0.017343886, 0.050916597, 0.024061115, 0.017222976, -0.02676144, 0.006619829, -0.0072814766, -0.0022502718, 0.028373577, 0.03124855, -0.0125880875, -0.003694476, -0.0067239464, -0.016349737, -0.029045299, -0.030926123, 0.016551252, 0.034392215, 0.019063497, -0.022865448, -0.0067407396, -0.026922654, 0.0034492973, -0.014509215, 0.009034674, 4.445966E-4, -0.028454183, -0.01202384, 0.016309433, 0.0040739994, 0.010364684, 0.018700765, -0.01798874, 0.01600044, -0.024182025, 0.007993503, 0.005706286, -0.010048975, 0.024571624, -0.041028835, 0.0051991353, -0.0014164957, 0.0031654942, 0.015019724, 0.002891767, 0.0019731862, 0.025565775, -0.022113118, 0.02877661, -0.009316797, -0.006703795, 0.0010478877, 0.020783108, -0.009209321, -0.0110296905, -0.021629479, -0.0026684194, 0.028615396, -1.9280547E-4, -0.010055692, 0.017491665, -0.024302935, -0.009874327, 0.012964252, -0.012876929, 0.0046852673, -0.03740153, 0.01958744, -0.0026784951, 0.007086677, -0.023093835, 0.0104385745, -0.015221241, -0.0083495155, 0.007207587, -0.011036407, 0.0080136545, -0.017088631, -0.018149953, -0.03844942, -0.023255048, -0.014576388, -0.00521257, 0.0076912274, -0.013850926, -0.003754931, -0.015987005, 0.008369667, -0.0065761674, 0.004524054, -0.01757227, -0.00744269, 0.010687112, 6.9397374E-4, -0.011076711, 0.0013182563, 0.039631654, -0.008880177, -0.001032774, 0.007926331, 0.0048330463, 0.036944762, -0.018297732, 0.017263278, 0.0020621894, -0.015301848, -0.009807155, 0.00700607, 0.032699473, 0.024195459, -0.010902063, -0.036702942, -0.006361216, -0.019802392, 0.033371195, -0.012816473, 0.0149525525, 0.04433371, 0.030415613, 0.013011273, 0.020904018, -0.003754931, -0.03890619, 0.013058294, -0.006848215, -0.022852013, -0.012238791, 0.008517447, 0.0082689095, -0.0018892207, -0.014240526, -0.038610633, -4.0303374E-4, -0.02618376, -0.03226957, -0.0017750278, 0.018915717, 0.014200223, 0.01428083, -0.016349737, 0.015315282, 0.0038556897, 0.017155804, -0.020205425, -0.010727415, -0.0020302825, 0.012729149, 0.020191992, 0.019896433, 0.003098322, -0.006314195, 0.006562733, 0.038798716, -0.0014005423, 0.03471464, -0.012010406, -0.011043125, -0.0077718343, -6.8935566E-4, -0.010297513, 0.0049909013, 0.022919185, -0.03546697, 0.002480337, 0.0155436685, 0.016255695, -0.011009539, 0.010102713, 0.0026499468, -0.010646808, -0.0054611075, -0.009995237, -0.021307051, -0.006001844, -0.028292969, 0.02594194, 0.009229473, -0.0022485924, 0.036111824, 0.0039598066, 0.002775895, 0.008947349, -0.009894479, 0.004964032, -0.012574653, 0.0068650083, 1.5145252E-4, 0.033129375, -0.031060468, 0.024249198, -0.0318128, 0.008786135, 0.0021024928, -0.0062839678, -0.010317664, 0.029663283, 0.023644647, -0.040518325, -0.0060354304, -0.017518533, 0.0029740531, -0.019426227, 0.008080827, -0.041539345, -0.013461327, -0.007032939, 0.009068259, -0.012803039, -0.029582677, -0.009652658, -0.01476447, -0.01723641, 0.014079313, 0.18303107, -0.019721786, 0.010411705, 0.042479757, 0.0035702074, 0.011721565, 0.01575862, 0.015086897, -0.0032494597, 0.0250687, -5.084103E-4, 0.0058876514, 0.01190293, -0.004453523, 0.012910514, -0.020165121, -0.024020812, -7.0320995E-4, -0.006021996, -0.026586793, -0.010371402, 0.005360349, -0.009410838, -0.020635327, 0.008685377, 0.0039060689, -0.001808614, 0.0098273065, 0.012091013, -0.005880934, 0.005723079, -0.022798276, -0.009316797, 0.0028867293, -0.017733485, -0.014227091, -0.0012452063, 0.0075636003, 0.0155436685, 0.0064115953, -0.023281917, -0.0056424728, -0.005047998, 0.0038456137, 0.005269666, 0.020595025, -0.02383273, -0.005047998, -0.019936737, 0.023886466, -0.031866536, -0.0046751914, 0.014979421, 0.029233381, -0.02075624, -0.0036037934, 0.02271767, -0.0011973461, 0.0079733515, 1.847238E-4, 0.023093835, 0.038879324, -0.030926123, 0.005326763, 0.0011839117, 0.008336081, -0.037294056, -0.0069590495, 0.006831422, -0.03073804, -7.9809077E-4, -0.024141721, -0.020447245, -4.3745956E-4, -0.00962579, -0.029045299, 0.010478877, 0.011217773, 0.002021886, 0.022274332, -0.03173219, -0.0029102396, 0.023322219, -0.0019060138, -0.01886198, -0.02591507, 0.015194372, -0.011049842, -7.7038223E-4, -0.013118749, -0.011184187, -0.050889727, -0.0037683656, 0.003316632, -0.006021996, -0.001032774, 0.0056626243, -0.0031319081, -0.01937249, -0.008033806, -0.028158626, 0.009249625, 0.03372049, -0.011016256, -0.013877796, -0.030899255, -0.007926331, 1.495633E-4, 0.02703013, -0.025444863, -0.012756018, -0.033693623, -0.0028296327, -0.018015608, -0.012608239, 0.017464796, -0.0012687166, -0.00608581, 0.036111824, -0.021508567, -0.0057533067, -0.028884085, 0.025122438, 0.010398271, -1.612135E-4, -0.032941293, -0.020232294, 0.01723641, -0.0011872703, -0.018767938, 0.02431637, -0.018445512, 0.006196644, -7.4393314E-4, 0.0033418215, 0.020554721, 0.022637062, 0.0060589407, 0.002863219, -0.00564919, -0.015154069, 7.268252E-5, 0.03076491, 0.011043125, 0.02196534, -0.026976392, 0.003343501, -9.0514665E-4, -0.02434324, -0.024638796, -0.030039448, 0.0010814739, 0.013293397, 0.025391126, 0.04962689, 0.013810623, -0.028400445, -0.029985711, -0.014455478, 0.050728515, -0.021468265, 0.021871299, 0.017343886, -0.015409323, -0.025955373, -0.004295668, -0.1713162, 0.0032561768, 0.006912029, -0.029555809, 0.01849925, 0.0025491884, 0.03232331, -2.3657242E-4, 0.015637709, -0.019238144, 0.023161007, 0.013360569, -0.03922862, 1.9196581E-4, 0.0016087764, 0.028884085, -0.016833376, 0.027540639, 0.035681922, 0.0013274924, 0.038073257, 7.7563E-5, -0.0036911175, -0.007839006, 0.01340759, 0.01262839, 0.029233381, -0.0018556346, 0.019211276, -0.012648542, -0.04516665, -0.0011864306, 0.015436193, 0.0035265454, -0.012064144, -0.0019479964, -0.013468045, -0.0059078033, 8.5056917E-4, -0.015180938, 0.03667607, 0.011352117, 0.021830995, 0.0068616495, 0.027674984, 0.012285812, 0.029367726, -0.030845517, 0.02678831, -0.025001528, -0.005951465, -0.04290966, 0.026130022, -0.010955801, 0.010935649, 0.016766204, 0.008954067, 0.0050614323, -9.5552584E-4, -0.0030731324, -0.024182025, -0.0062974025, 0.0012930667, -0.011056559, -0.007825572, -0.025109002, -0.0155436685, 0.017800657, -0.02926025, 0.0056156036, -0.01578549, 0.007153849, 0.012789604, 0.01086176, 0.004594585, -0.019721786, -0.030361876, 0.0065325056, 0.002065548, -0.0043964265, -0.025095569, 0.033344325, -0.022637062, 0.021427961, 0.010357968, 0.0052763834, -4.2549448E-4, -0.008611488, -0.0033535766, -0.011963385, 0.00904139, -0.016322866, -0.039819736, 0.012352984, 0.009142149, 0.0014307698, -0.011714848, 0.0021612686, 0.019923301, 0.010646808, -0.015718317, -0.016148219, -0.0155436685, 0.0116208065, 0.013837492, 0.001912731, 0.009404121, 0.018472381, 0.0091623, -0.0044501643, -0.0031319081, 0.0026852123, 0.022247463, 0.010492312, -0.015704881, 0.020621894, -0.01886198, -0.02218029, 0.005568583, 0.017008025, 0.03815386, -2.9324903E-4, 0.0023745405, -0.006404878, -0.0034173904, -0.004923729, -0.08807631, -0.0028178776, 0.015933268, 0.041969247, -0.032108355, 0.03866437, 0.008933915, 0.045462206, -0.03299503, 0.030442482, 3.1277098E-4, -0.030469352, 0.02392677, -0.004880067, 0.009263059, 0.001054605, -0.020568157, -0.0089204805, -0.023134137, 0.023241613, 0.0057566655, -0.007274759, 0.0074897106, -0.01575862, -0.014898814, 0.0152884135, -0.028131755, 0.0294752, 0.008322647, 0.012782888, 0.012225357, -0.018418642, 0.0134344585, -0.040813886, -0.021118969, -0.03275321, -0.014777904, -0.026277801, 0.0026936089, -0.043017134, 0.014119616, 0.025135871, -6.209239E-4, -0.021562306, -0.0061361887, -0.021360788, -0.016094482, 0.016672162, -0.020796541, -0.029340858, -0.01413305, -0.013165769, -0.031839665, 0.010472161, 0.006176492, 0.029233381, 0.03130229, 0.0012695563, -0.0159064, -0.026210628, -0.007214304, 7.41834E-4, -0.029905105, 0.024007376, 0.008403254, -2.4349955E-4, -0.003721345, -0.006535864, 0.011204339, -0.017169237, -0.014200223, 0.04535473, -0.033021897, -0.015960136, -0.013548652, 0.017222976, -0.026868917, -0.017599141, 0.03646112, -0.03447282, 0.0037314207, -0.040464588, -0.010902063, -0.015274979, 0.02805115, 3.1424037E-4, 0.012433591, -0.00305466, -0.009417555, -0.047047473, 0.0043158196, 0.024517886, -0.0058204792, -7.0195046E-4, -0.008658509, 0.02356404, 0.00521257, 0.0049976185, 0.0070262216, 0.015409323, -0.018794807, 0.012205206, -0.06921433, 0.035332624, -0.018754505, 0.0041713994, -0.0016515987, 0.0023208028, 0.014200223, -0.014092747, 0.006797836, 0.019238144, -0.0025676608, 0.0310336, -0.009363818, -0.006525788, -0.0015315283, 0.0041075856, 0.009404121, 0.0036978347, 0.0032931217, -0.005776817, -0.0031789287, 0.020017343, 0.013011273, 0.0045475643, 0.0033535766, 0.03073804, 0.013172487, 0.025901636, -0.019009758, -0.00521257, 0.030066319, -0.016940853, 0.0035802831, 0.001781745, -0.021186141, -0.04282905, 0.0030294703, 0.0012930667, 0.016524384, -0.001631447, -0.004278875, -0.01675277, 9.6644135E-4, -0.010183319, -0.002749026, 0.011258076, -0.02295949, 0.015449627, 0.0073284972, -0.009954934, 0.03764335, 0.0011788737, -0.012541067, -0.009074977, 0.009410838, -0.016672162, 0.04489796, 0.018781373, 0.0015130559, 0.0018741069, 0.012151468, 0.006465333, 0.029502071, -0.0374284, -0.008537598, 0.0062604574, -0.00610932, -0.012420157, -0.005289818, -0.031624716, -0.018633595, 0.0064183124, 0.019748654, 0.025579209, 0.021172706, 0.0073956694, -0.0019043345, -0.0012955855, 0.002295613, 0.011399138, 0.022193726, -1.7937101E-4, -0.023899902, 0.016013874, 1.6026889E-4, 0.022059381, -0.0019933379, 0.01575862, 0.0016272488, -0.0020034136, -0.010485595, 0.01573175, 0.017935002, -0.0037515725, 0.009834023, 0.03546697, -0.01862016, -0.015570537, 0.007435973, 0.024665665, 4.4501643E-4, -0.006089168, -0.024947789, -0.012715715, -0.022972925, 0.013447893, -0.0020202068, -0.017290149, 0.0073284972, 0.015503365, 0.019291881, 0.017921567, -0.021132404, 0.017330451, -0.044978566, 0.015100331, -0.01035125, -0.011506613, -0.016819943, 0.023066966, 0.01859329, 0.005098377, 0.029878236, -0.019157538, 0.04465614, 0.0028044432, 0.016645294, -0.019063497, 0.0073956694, -0.0024887335, 0.002890088, 0.008389819, -0.012111165, -0.007503145, -0.018647028, 0.0047020605, 0.014925683, 0.040706407, -0.012447026, 0.0636256, 0.0044400883, -7.61146E-4, 0.010485595, -0.016551252, 0.017894698, 0.008517447, 0.01820369, -0.013689714, -0.012923949, -0.005289818, -0.0134546105, 0.009027956, -0.031167943, 0.022220595, 2.3594267E-4, 0.015436193, 0.008698812, -0.015395889, -0.016201956, -0.0029942049, -0.0075770346, 0.026331538, 0.017021459, -0.017343886, -0.015180938, 0.0049170116, -0.016295997, -0.012245509, -0.018096216, 9.563655E-4, -0.020138253, -0.005326763, 7.586271E-4, 0.030361876, -0.011231207, -0.007435973, 0.0020185274, 0.017303582, 0.010875194, -0.034687772, -0.004487109, -0.029448332, -0.015476496, 0.022059381, -0.005941389, 0.0023846163, -0.032135226, -0.018002175 ], + "id" : "28eb915e-d3ef-424a-ba1e-09912230c0db", + "metadata" : { + "source" : "movies.csv" + } + }, + "6fa1943f-5c08-47f8-89a1-e4a593af0943" : { + "text" : "Tony Elias-Sean Gerace-Randy Pausch-Tim Griffin-Freda Foh Shen-Kasia Kowalczyk-Jason Brooks-Sonita Henry-Kelvin Yu-Marta Martin-Tavarus Conley-Jeff Castle-Billy Brown-Jimmy Bennett-Greg Grunberg-Spencer Daniels-Jeremy Fitzgerald-Zoe Chernov-Max Chernov-Jacob Kogan-Lorenzo James Henrie-Colby Paul-Cody Klop-Akiva Goldsman-Anna Katarina-Douglas Tait-Tony Guma-Gerald W. Abrams-James McGrath-Jason Matthew Smith-Marcus Young-Bob Clendenin-Darlena Tejeiro-Reggie Lee-Jeffrey Byron-Jonathan Dixon-Tyler Perry-Ben Binswagner-Margot Farley-Paul McGillion-Lisa Vidal-Alex Nevil-Kimberly Arland-Sufe Bradshaw-Jeff Chase-Charles Haugk-Nana Hill-John Blackman-Jack Millard-Shaela Luter-Sabrina Morris-Michelle Parylak-Oz Perkins-Amanda Foreman-Michael Berry Jr.-Lucia Rijker-Pasha D. Lychnikoff-Matthew Beisner-Neville Page-Jesper Inglis-Greg Ellis-Marlene Forte-Leonard O. Turner-Mark Bramhall-Ronald F. Hoiseck-Irene Roseen-Jeff O'Haco-Scottie Thompson-Deep Roy-Majel Barrett-Ronnie Steadman-Arne Starr-Rico E. Anderson-Richard Arnold-Tad Atkinson-Leslie Augustine-Johnny Baca-Diora Baird-Sala Baker-Leo Baligaya-Corey Becker-Larry Blackman-Jessica Boss-Neil S. Bulk-Etalvia Cashin-James Cawley-Brad Champagne-Zachary Culbertson-Jeffrey De Serrano-T.C. De Witt-Calvin Dean-Christopher Doohan-Claire Dor��-Etienne Eckert-Ken Edling-Aliza Finley-Ian Fisher-Anna Florence-Mathew Thomas Foss-Massi Furlan-Tommy Germanovich Jr.-Mary Grace-Wyatt Gray-Nancy Guerriero-Jarrell Hall-Justin Rodgers Hall-Jeffery Hauser-Brad William Henke-Ryan T. Husk-Elizabeth Ingalls-Sierra Kane-Christopher Karl Johnson-Jolene Kay-Lauren Mary Kim-Sarah Klaren-Makiko Konishi-Tashana Landray-Daniel D. Lee-Anne Leighton-James Lew-Jill Lover-Steve Luna-Aaron Lynch-Justin Malachi-Nav Mann-Paul Marshall-Owen Martin-Taylor McCluskey-Matthew McGregor-Caitlin McKenna-Andrew Mew-Patrizia Milano-Heidi Moneymaker-Kevin Moser-Jonathan Dunkerley Newkerk-Westley Nguyen-Jim Nieb-Andres Perez-Molina-Mark Phelan-Damion Poitier-Rahvaunia-Bertrand Roberson Jr.-Deborah Rombaut-Leonard Jonathan Ruebe-Darth Schuhe-Ramona Seymour-William Morgan Sheppard-Katie Soo-Joseph Stephens Jr.-Joseph Steven-T.J. Storm-Kaitlin Sullivan-Paul Townsend-Scott Trimble-Errik Tustenuggee-Ravi Valleti-Jason Vaughn-A.J.", + "embedding" : [ 0.013800377, -0.024496011, -0.006018004, -0.057827547, -0.009239004, 0.042755183, -0.012911353, 0.005511944, -0.021295527, -0.03471294, 0.014621014, 0.037202206, 0.028558163, -0.002108011, 0.011174339, 0.0016985474, 0.008438882, 0.0041886675, 0.009136424, -0.03813226, -0.016494801, -0.007960178, -0.014579982, 0.015359587, 0.0027081016, 0.0043938267, 0.031129492, -0.010175898, -0.0062505174, -0.020269731, 0.009526227, -0.0071668955, 0.0044280197, -0.019175548, -0.024988392, -0.005922263, 0.007884952, -0.015236491, 0.026957922, 0.021117723, -0.0070574773, 0.0044280197, -0.009751902, -0.026547603, -0.009136424, 0.0047220816, 0.022430742, -0.020775791, -0.0060043265, 0.033427276, 0.040977135, 0.014005536, -0.023579633, -0.018984066, -0.0014677433, -0.0016173385, -0.0092048105, 0.0059154243, -0.0046468563, 0.013321672, 0.019955153, -0.012569422, -0.024714848, -0.0078781145, -0.011557302, -0.007707148, -0.0026533925, -0.017821498, -0.0070438, 0.0036689306, 0.016002418, 0.0057820706, -0.005518783, 0.012418971, 0.016795702, -0.020666372, -0.0064419997, -0.0014446628, -0.013567863, -8.710719E-4, 0.0063565164, -0.009389454, -0.019134516, 0.0047904677, 0.010552023, 4.0775395E-4, -0.017233374, 0.032004837, -0.041633643, 0.014730432, 0.012925031, 0.046201855, 0.0011856493, -0.0012386488, -0.0017831755, 0.02254016, -0.022800028, 0.020064572, -0.019681608, -0.040183853, 0.0040006046, -0.0102989925, 0.007782373, -0.009916029, -0.009574097, 0.011940267, 0.006503547, -0.002928648, 0.02102198, 0.003597125, -0.006554837, -0.0057171034, 0.008876556, -0.030773884, -0.014566305, -0.012870322, 0.008500431, -0.032934893, -0.023976274, -0.021856295, 0.027012631, 0.019079808, 0.009068037, -0.02973441, 0.03517797, 0.024167756, -0.016918797, -0.020215021, 0.0033492243, 0.010086995, 0.029624991, -0.0072079273, 0.0069241235, 0.01604345, -0.025152521, 0.036764532, -0.028065782, 0.010921309, -0.021979392, -0.01362941, 0.030609755, 0.020009862, -0.023306087, -0.014621014, -0.029953247, 0.013294318, 0.006113745, -0.002183236, 0.01152311, 0.026588636, 0.0011454723, 0.021869972, -0.004571631, 0.018245494, 0.018204462, -0.010080156, -0.0073720547, -0.0040108627, -0.016713638, -0.02319667, 0.0015592101, 0.010223768, 0.009546743, 0.001619903, -0.0018019818, 0.02671173, 0.012583098, -0.021158755, -0.005518783, 3.186379E-4, -0.0035184806, 0.023415506, -0.04467, 0.0117693, -0.01393715, 0.014675722, 5.00503E-4, -0.009061199, -0.032223675, -0.021145077, 0.011331627, -4.2821644E-5, 0.0302815, 0.043603174, -0.0035834478, 0.0047870483, 0.019490127, -0.0105657, -0.004910144, -0.015359587, 0.002309751, 0.020639017, 0.022293968, -0.0064830314, -0.6319998, -0.013909795, 0.015181783, -0.019845735, 0.01338322, 0.008281594, -0.0015156138, -0.005262334, -0.028311972, -0.0019114001, -0.03361876, 0.023689052, 0.021363914, -0.017151311, -0.021528041, -0.011509432, 0.0109965345, -0.008637203, 0.01635803, 0.0030278082, -0.016166547, 0.020693727, 0.02329241, -0.008965458, 0.024113048, 0.0089244265, -0.010634086, -0.018478008, -0.0026773277, 0.010100672, -0.0152091365, 0.033591405, 0.0014061955, -0.006746319, 0.044642646, 0.007843921, -0.01579726, 0.05112568, 0.013342188, 0.034986485, -0.0293788, 0.0013557605, 0.011338466, 7.484037E-4, -0.007454118, 0.0293788, -0.01483985, 0.018341234, -0.020433858, -0.014484241, 1.120896E-4, -0.013718314, -0.01046312, -0.009772417, -0.0022670093, 7.2147656E-4, 0.007522505, -0.018300202, 0.015455328, 0.007331023, -0.011687237, 0.027491335, 0.015660487, 0.014867205, 0.0028346165, 0.016111838, 0.010244284, 0.0067052874, 0.0147441095, -0.024523366, 0.013041288, 0.0073515386, -0.0015780163, -0.009280035, 0.0143474685, 0.020228699, 0.023853179, -0.010599893, -1.6573018E-4, 0.016727315, -0.013000255, -0.0030859367, 0.0320869, 0.011283757, 0.017848853, -0.002338815, -0.031567164, -0.0064283223, 0.0149766235, -0.0039561535, 0.0046605337, 0.008958619, 0.02188365, 0.005604266, -0.004793887, -0.0033680305, 0.004472471, 0.0077686957, 0.022266613, -0.06455677, -8.454269E-4, -0.020461213, 0.048882604, -0.02288209, 0.005881231, -0.0014369694, -0.011687237, -0.010141704, 0.044642646, -0.008042241, -0.007857598, -0.022225583, -0.02254016, -0.0139986975, -0.0068386407, -0.026670698, 0.009177456, 0.01801298, -0.013711475, -3.3658935E-4, 5.069142E-4, -0.010196413, 0.011584657, -0.011276918, 0.0030072923, 0.038296387, -0.00860301, 2.8209394E-4, -8.232014E-4, 0.014374822, -0.006821544, -0.02560387, 0.01604345, -0.01801298, 0.019148193, -0.002973099, 0.017794143, -0.0044040848, 0.01579726, -0.007160057, -0.0040108627, -0.010422088, -0.0038159615, -0.020064572, -0.0034928357, -0.007830244, -0.035287388, 0.006284711, -0.007119025, -0.012145426, -0.008616687, 0.01157098, -0.003058582, 0.018833617, 0.007276314, -0.0062778722, -0.029953247, -0.026397154, -0.006831802, -0.025138844, 0.007789212, 0.0075088274, -0.010545184, -0.0220341, 0.024181433, -0.0111675, -0.0086235255, -0.0018960132, -0.0023815567, 0.002535426, 0.022704287, -0.018409621, 0.022211906, 0.0051529156, -0.0067223837, 0.026629666, 0.008308948, 0.038214326, -0.0019045614, -0.0065890304, 2.4376013E-6, -0.016262287, -0.02259487, -0.010887116, 0.024564397, 0.021719523, 0.008090112, 0.0069514783, -3.4770212E-4, 0.0062368405, -0.01861478, -0.013253286, -0.009779256, 0.0035560932, 0.011714592, 0.027723849, -0.004034798, 0.013198577, -0.01669996, -0.021172432, 0.02600051, -0.0015549359, 0.010839245, -0.0054606544, 0.005474332, -0.026287735, 2.9726716E-4, -0.033892304, 0.0078781145, 3.868106E-4, 0.013109674, -0.0065445793, -0.010976018, 0.020597985, 0.010688796, 0.012131749, 0.006558256, -0.004814403, -0.0152091365, 0.004096346, 0.009341584, -0.010237445, 0.020461213, 0.01297974, -0.023935242, 0.00684206, 0.012131749, -0.0065069664, 0.008938103, -0.004951176, -0.0050332397, 0.019914122, -0.0037236398, 0.019462772, -0.009792933, -0.023456538, 0.024933685, -0.014333791, 0.051180385, -0.021528041, -0.007331023, 0.010757182, 0.024126723, -2.9961794E-4, 0.016891442, -0.009184294, 0.016467446, 0.008514107, -0.019640576, 0.03980089, -0.0022362354, 0.033181086, -0.006253937, -0.0066881906, 0.019284967, -0.012747226, -0.0036347376, 0.012343747, 0.010333186, 0.020844176, 0.005443558, -0.008773976, 0.018300202, -0.012165941, -0.0026482637, -0.0070301224, -0.013663604, 0.008165337, -0.021104045, -0.034466747, -0.02500207, -0.010504152, 0.0023627502, 0.01876523, -0.0026995535, 0.002550813, 0.004342537, -0.004195506, 0.0073720547, 0.0032910958, -0.0047631133, -0.027559722, 0.0102989925, 0.028585518, -0.024947362, -0.033536695, 0.0029457444, -0.012200135, -0.037557814, -0.008042241, -0.0010728118, 0.028995836, -0.022909446, 0.02530297, -0.008726105, 0.007460957, 0.008842362, -0.008370496, 0.014456887, 0.013950827, -0.0037509943, 0.010579377, -0.015113396, -0.008213207, 0.026137285, -0.0076592774, -0.0140465675, -0.003747575, -0.010490475, -0.019408062, 0.01846433, -0.0143474685, -0.04357582, 0.009868158, 0.011092275, -0.018970389, 0.0056316205, 0.001931916, 0.005368333, -0.019914122, -0.016727315, -0.027600754, -0.039773535, 0.023675375, 0.09513917, 0.04975795, -0.0037851876, 0.011454723, -0.01942174, 0.022745319, -0.009115908, -0.021569073, 5.287124E-4, -0.027012631, 0.021213463, 0.0016045161, 0.011441045, -0.00633942, 0.010196413, -0.0016660638, -0.008466237, -0.015359587, 0.010442604, -0.0072831525, -0.015920356, -0.018628458, 0.016782025, 0.028503455, -0.005306785, -0.0052999463, 0.028284619, 0.011105953, 0.0025730385, 0.017096601, -0.0038296387, 0.0019045614, 0.023210347, 0.016768347, -0.004301505, 8.569672E-4, 0.032688703, 0.012630969, 0.031074783, -0.008541462, 0.0044143423, 0.012938708, 0.014880882, -0.0019096904, 0.016686283, -0.021719523, -0.012357424, 0.026998954, 0.029597636, -0.030609755, 0.026780117, 0.0076182457, -0.022252936, -0.026274057, 0.018436976, -0.008254239, -0.010004931, -0.0022225583, -0.018026657, 0.026451861, -3.7698005E-4, -0.037147496, 0.0064283223, -0.016221255, 0.007064316, -0.012877161, -0.01730176, 0.007385732, -0.024769556, -0.01846433, 0.011878719, -0.004899886, -0.013437929, -0.0044861482, 0.028503455, -0.0010557151, 0.022663254, -0.009498872, 0.0041373777, -0.005973553, -0.020338118, -0.0137867, 0.018450653, -0.016918797, -0.002680747, 0.004557954, 0.0027833267, 0.022526482, -0.009362099, 0.006134261, -0.008828685, 0.0018498523, -0.01981838, -0.012877161, 0.035396803, 0.015934033, 0.012699355, 0.019996185, 0.005966714, 0.0041989256, -0.0028192296, -0.023771115, -0.007064316, -0.026424507, -0.016440092, 1.419018E-4, 0.0051187226, 0.01594771, -0.023921564, -0.037612524, -0.02485162, -0.02062534, 0.0095535815, -0.010401572, 0.015564746, 0.0143474685, 0.009827127, 0.017917238, -0.018683167, 0.0030773883, 0.011885557, -0.023018865, 0.02731353, 0.01790356, -0.009314229, 0.019996185, 0.0032893862, -0.01906613, 0.0050434973, 0.011687237, -0.012473681, 0.027039986, -0.011461562, -0.006859157, -0.007269475, -0.015920356, -0.004315182, 0.012316392, -7.667826E-4, 0.018136075, -0.02002354, 0.01514075, 0.017082924, 0.0147441095, 0.0018635296, -0.028530808, 0.007960178, -0.023401828, 0.013137029, 0.011488916, -0.017588984, 0.008172176, -0.013266963, -0.004581889, -0.014880882, -0.022458095, -0.008425205, -0.0044964063, 0.025084134, 0.014306436, 0.036463633, -0.0052452376, 0.015769904, 0.016932474, 0.01343109, 0.03219632, -0.02118611, -0.013554186, -0.023278734, 0.014880882, 0.020816822, 0.009888674, 0.009560419, -0.012733549, 0.005211044, 0.014060245, -0.006168454, 0.0039458955, 0.004438278, -0.024961038, -0.026930567, 2.407549E-6, -0.017397502, -0.007577214, -0.023114605, -0.012152265, 0.024468657, -8.2063687E-4, -0.0064283223, -0.011338466, 0.029050546, -0.018026657, 0.006664255, -0.029761763, 0.015605778, -0.023333441, -0.012001814, -0.038405806, -0.017575307, 0.019339675, -0.011516271, 0.008438882, -0.006257356, -0.018970389, -0.0029662603, 0.019038776, -0.024632784, -0.01624861, 0.019284967, -0.011584657, -0.023333441, -0.02485162, 0.00467763, -0.021268172, -0.0036586728, 0.005614524, -0.001856691, 0.0045511154, -0.0050195623, -0.034247912, 0.023333441, 0.0020464633, 0.04598302, 0.01570152, 0.02913261, 0.014073922, 0.010032286, -0.015510037, 0.0021952037, 0.013841408, -5.1904215E-5, 0.00819953, 0.025932126, -0.0302815, 0.004130539, 0.0076182457, -1.6922964E-5, -0.0296797, -0.024236143, 0.023757437, 0.01615287, 0.0106477635, -0.02364802, 0.006308646, -0.018519038, 0.015742552, 2.4106208E-4, 0.0044622133, 3.7056883E-4, -0.02973441, -0.015277524, 0.016782025, -0.0049477564, 0.019298645, 0.023278734, -0.031156847, -2.7418675E-4, -0.018436976, -0.002051592, -0.011680398, -0.01765737, 0.025179874, -3.977097E-4, 0.012548906, 0.012815612, 0.014634691, 0.0018088204, 0.002073818, -0.0034671908, 0.026328767, -0.0042570536, 0.013841408, -0.0018977228, -0.0111606615, 0.013225931, 0.010285315, -0.0017147892, -0.016672606, -0.011782978, -0.011892396, 0.03370082, -0.0066779326, 0.0059496174, 0.010271639, -0.012918192, -0.010846084, 0.027094694, -0.013540508, 0.006147938, -0.037038077, 0.0051426576, -0.019462772, 0.013376381, -0.021760555, -0.008698751, -0.011639367, -0.0028465842, -0.0035902862, 0.0067941896, -0.011317951, -0.032278385, -0.040539462, -0.03873406, -0.029624991, -0.008391012, -0.003154323, 0.0085756555, -0.0010745215, 0.0034141913, 0.006435161, -2.8850517E-4, 0.0055256216, -0.004216022, -0.006524063, 0.0059838104, 0.014128632, -0.0024072016, -0.0042433767, -0.0035868671, 0.02676644, -0.015427973, -0.02560387, -0.0038057035, 0.020994626, 0.025439743, -0.007864437, 0.025795352, 0.0047357585, -0.025097812, 0.008001209, 0.022868413, 0.020693727, 0.03638157, -0.01504501, -0.018943034, -0.014429532, 0.0045853085, 0.02842139, 0.002369589, 0.013273802, 0.008336303, 0.018833617, 0.032770768, 0.030773884, -0.0063018072, -0.027381917, -1.890243E-4, -8.296126E-4, -0.03591654, -0.011352143, 0.01850536, 0.01549636, 0.0023029123, -0.010223768, -0.018956712, -0.0057478775, -0.023319764, -0.017520597, 0.0014874043, 0.016385384, 0.02238971, 0.01780782, 0.012569422, 0.0037099626, 0.014908236, -0.008698751, -0.0021319462, -0.015810937, 0.031074783, 0.012966063, 0.028886419, -0.0063496777, -0.0152091365, -0.0046365983, 0.024810588, 0.025029425, 0.003115001, 0.0059427787, -0.011105953, -0.021746878, 0.0038467355, -0.0020669792, -0.028913774, 0.0040553138, 0.0293788, -0.04215338, -0.01091447, 0.01570152, 0.010039125, -0.009820288, 0.015523714, 0.009820288, -0.011817171, 0.0011813751, 4.5989858E-4, -0.011625689, 0.0016190482, -0.028667582, 0.02379847, 0.012398455, 0.00819953, 0.037256915, 0.025467098, -0.003279128, -0.0012258263, -0.022348678, 0.010743504, -0.012870322, -0.0030158404, -0.0089722965, 0.021842618, -0.01504501, 0.010976018, -0.028941127, -0.0024174594, -0.009567258, -0.009375776, -0.0034552233, 0.026205672, 0.017547952, -0.050250333, 0.01358154, -0.012220651, -0.007932823, -0.017000861, -0.0016686283, -0.021719523, -0.018491684, -0.01780782, -0.008917588, -0.024878975, -0.017917238, -0.014073922, -0.006907027, -0.015427973, 0.018354911, 0.19596809, -0.011071759, -0.01061357, 0.03063711, -0.016440092, 3.029304E-5, 0.028284619, 0.024030983, -0.0041613127, 0.022376033, -0.0046126633, -0.0074746343, 0.024865298, 0.0013625992, 0.013458445, -0.0413601, -0.03134833, -0.013677281, -0.017547952, -0.01690512, -0.017630016, 0.008917588, 0.0050332397, -0.018997744, 0.016987184, 0.012644647, -0.014224373, 0.01695983, 0.011256402, -0.004219441, 6.569369E-4, -0.014703077, 0.009539904, 8.5440266E-4, -0.012890838, -0.0062505174, 0.002791875, 0.0031628713, 0.0413601, -0.005368333, -0.0028465842, -0.003390256, -0.01816343, -0.020652695, -0.005371752, 0.031184202, -0.034193203, -0.004342537, -0.025248261, 0.0046468563, -0.033947013, -0.013061804, 0.0140465675, 0.017164988, -0.005368333, 0.008384174, 0.006141099, 0.005060594, -0.013294318, 0.009847643, 0.0126720015, 0.03003531, -0.032168966, 0.03405643, -0.006780512, -0.002077237, -0.0073583773, -0.0016156288, 0.012131749, -0.03189542, -0.00578549, -0.03309902, 0.008315787, 0.004889628, -0.015332232, -0.019804703, 0.0044622133, 0.018067688, 0.0020464633, 0.03129362, -0.035588287, 0.008172176, 0.015455328, 0.0048417575, -0.018532716, -0.025617547, 0.01981838, -0.0299806, 9.522807E-4, -0.03482236, -0.012863483, -0.023511246, -0.008698751, 0.0075019887, 0.002102882, -0.007543021, 0.025152521, 0.015072364, -0.0054914285, -0.0038809285, -0.024154078, 0.03476765, 0.012330069, -0.004920402, -0.034439396, -0.023278734, -0.00940997, 0.011899235, 0.047378104, -0.016508479, -0.022512805, -0.006000907, -0.007289991, -0.012131749, 0.011372659, 0.030199436, 0.007269475, -0.015851969, 0.032743413, -0.0070506386, -0.004482729, -0.01942174, 0.011133307, 0.0058196834, 0.0045408574, -0.018751552, -0.0290779, -0.0026910051, -0.009375776, -0.024824265, 0.015592101, -0.0014856947, 0.011632528, -0.009991254, -0.008336303, -0.02319667, 0.021445977, -0.008582494, -0.002781617, -0.00201227, -0.014101277, -0.009136424, 8.9928124E-4, 0.009444163, -2.8273504E-4, -0.029652346, 0.0059872298, -0.007727664, -0.01594771, -0.04729604, -0.026670698, -5.2144635E-4, 0.0069959294, 0.023579633, 0.035943896, -0.0053649135, -0.011940267, -0.036490988, -0.016686283, 0.03889819, -0.036709823, 0.031156847, 0.04070359, -0.009471517, -0.02419511, -0.0051802704, -0.1750692, 0.027245145, -0.0034877067, -0.034138493, 0.012747226, 0.0067121256, 0.032333095, 0.0048622736, 7.082267E-4, -0.005847038, 0.033892304, 0.0035458351, -0.027299853, 0.007994371, 0.0012258263, 0.012548906, -0.015592101, 0.015523714, 0.05468177, -0.0070848316, 0.028257264, -0.020871531, 0.007864437, -5.4538157E-4, 0.012330069, 0.0105315065, 0.026356122, 9.6510316E-4, 0.0124394875, -0.00684206, -0.04231751, -0.014402177, 0.0029200995, 0.0032739993, -0.017137634, 0.0012070201, -0.016057128, -0.013335349, -0.019640576, -0.0062197438, 0.033536695, 0.004359633, 0.020146636, 0.009683515, 0.016070805, 0.02092624, 0.027067339, -0.023565955, 0.019654253, -0.008117466, -0.014073922, -0.048827894, 0.029214673, -0.00422628, -0.004154474, 0.01866949, 0.0018293364, -0.0021114303, 0.0094373245, 0.009327906, -0.029351445, 0.0073788934, 0.016426414, -0.007980694, -0.0076524387, -0.02193836, -0.025767999, -0.014032891, -0.028558163, 0.01735647, -0.0105657, 0.014826173, 0.013362704, -1.8338776E-5, 0.021445977, -0.021541718, -0.04215338, 0.012412133, 9.146682E-4, 0.012494196, -0.014798818, 0.030172084, -0.0022755577, 0.00865088, -0.0063428394, 0.0053649135, 0.009649322, 0.0050982065, -0.0035526739, -0.009936545, -0.0011249564, -0.028859064, -0.029214673, 0.014361145, -0.0041681514, -0.006862576, -0.015961388, 0.0032432254, 0.012494196, -0.019052453, 0.004516922, -0.017821498, -0.014716755, 0.0211314, 0.022006746, 0.017588984, -0.010784537, 0.025207229, 0.008890233, 0.005105045, -0.026438184, 0.01821814, 0.014402177, 0.018327557, -0.010955502, 0.0072010886, -0.0032380964, -0.030965365, -0.003159452, 0.030254146, 0.07380261, -0.0032842571, 0.014073922, -0.010579377, -0.0070232837, -0.015783582, -0.08824582, 0.0043083434, 0.011058082, 0.053450815, -0.009922868, 0.0443691, -0.0026875858, 0.015537391, -0.04839022, 0.035396803, -0.004205764, -0.026725408, 0.0067668348, -0.008910749, 0.0055324603, 0.007303668, -0.02002354, -0.020132959, -0.026137285, 0.021008303, -0.001016393, 0.0030226791, 0.010353702, -0.016590543, -0.01358154, 0.016481124, -0.02248545, 0.015906679, 0.009669838, -0.009403131, 0.0018242074, -0.012111233, 0.02791533, -0.031375684, -0.013041288, -0.025850061, -0.03140304, -0.01976367, 0.011010212, -0.036983367, 0.007522505, 0.01514075, 0.010340025, -0.017575307, -0.012795096, -0.0021798166, -0.042755183, 0.025070457, 2.1253213E-4, -0.020953596, -0.007556698, -0.02102198, -0.035287388, -0.014073922, 0.01816343, 0.022157196, 0.025439743, 0.001916529, -0.010476798, -0.0413601, -0.008397851, -0.008657719, -0.018806262, 0.009225327, 0.011796655, 0.01308232, 0.008746621, -0.023552278, 0.014032891, -0.022964155, -0.029296737, 0.027983718, -0.052712243, -0.011413692, -0.0126036145, 0.008356819, -0.032059547, -0.02128185, 0.028886419, -0.030746529, 1.731031E-4, -0.034849714, 0.010086995, -0.014771464, 0.022512805, 0.0068728337, 0.0066676745, 0.006524063, -0.0024465236, -0.038214326, -0.0039561535, 0.020556955, -0.01172143, 0.01881994, -0.01061357, -0.013492638, -0.0051973667, -0.0066779326, -0.010039125, 0.012309553, -0.01695983, 2.9224504E-5, -0.07713987, 0.021158755, -0.015154428, 0.0054640737, -0.01579726, -0.005549557, 8.0225803E-4, 0.0020242375, -0.011762462, 0.011058082, -0.007802889, 0.00417499, -0.007119025, -0.015250169, 0.0038775092, 0.0051426576, -0.0010198123, -0.010962341, 0.019298645, 0.008144821, -0.0035458351, 0.02842139, 0.018149752, 0.0134858, 0.032278385, 0.008821847, 0.008890233, -0.005016143, -0.01675467, -0.0037168013, 0.029789118, -0.015879324, 0.0028294877, -0.0015694681, 8.509834E-4, -0.031129492, 0.0036176408, 0.010223768, 0.014826173, 0.0018772068, -0.009492033, -0.00960829, 0.0064009675, -0.015824614, -0.013376381, 0.024222465, -0.011030727, 0.012993418, 0.0033389663, 0.017438533, -0.009081715, 0.0108666, -4.432294E-4, -0.007365216, 0.030062664, 0.005176851, 0.05498267, 5.287124E-4, 0.0012548906, -0.028859064, 0.02616464, -0.002043044, 0.0103673795, -0.016508479, 0.0095535815, -0.0025439744, 0.017329115, -0.009642484, 0.0017763369, -0.02571329, -0.02913261, 0.0052076248, 0.008514107, 0.035533577, 0.012097555, 0.0199278, 0.0078097275, -0.0038398968, -0.003980089, 0.024961038, 0.017178666, -8.137982E-4, -0.026739085, 0.032524575, -0.013178061, 0.0044109235, 0.016864087, 0.0021285268, 0.011981298, 0.011714592, 0.0018720779, 0.0149766235, 0.011632528, -8.6551544E-4, 0.01780782, 0.017438533, -0.020994626, -0.0047186622, 0.0030773883, 0.03441204, -0.01187188, -0.0024089112, 0.009943384, -0.012049685, -0.03356405, 0.00548459, -0.02721779, -0.019243935, 0.0044280197, 0.010579377, 0.042974018, 0.0126036145, -0.023059897, 0.005467493, -0.035150614, 0.009594613, -0.015099718, -0.018423298, -0.007543021, 0.019517481, 0.009498872, -0.0039766696, 0.03536945, -0.0029696797, 0.05892173, 0.0066676745, 0.011625689, -0.0302815, 0.0014164534, 4.3339885E-4, 0.013868763, -0.014826173, -0.02725882, -0.002540555, -0.008500431, 0.009334745, 0.015523714, 0.025234584, -0.013000255, 0.07385732, 0.015181783, -0.0011540207, 0.0073788934, 0.0029850667, 0.018833617, 0.011358982, 0.015414296, -0.0128361285, -0.024058338, -0.013246447, -0.021049336, 0.002610651, -0.032907538, 0.015304877, -0.008507269, 0.021254495, 0.01921658, -0.015236491, 0.0026944245, -0.018368589, -7.3344423E-4, 0.018655812, 0.007686632, 0.008821847, 0.006913866, 0.0058094254, -0.0035184806, 0.022827383, -0.040730942, 0.005412784, -0.03769459, -0.005710265, 7.8644365E-4, 0.01936703, -0.022649579, -0.002455072, 5.402526E-4, 0.024509689, 0.016207578, -0.019093486, -0.009191133, -0.017082924, -0.029351445, 0.023989951, -0.0022157195, -0.017479565, -0.019777348, -0.0217332 ], + "id" : "6fa1943f-5c08-47f8-89a1-e4a593af0943", + "metadata" : { + "source" : "movies.csv" + } + }, + "190272d8-edd5-4878-890e-b2b35f4c87e4" : { + "text" : "607,Men in Black,Action-Adventure-Comedy-Science Fiction,en,After a police chase with an otherworldly being a New York City cop is recruited as an agent in a top-secret organization established to monitor and police alien activity on Earth: the Men in Black. Agent Kay and new recruit Agent Jay find themselves in the middle of a deadly plot by an intergalactic terrorist who has arrived on Earth to assassinate two ambassadors from opposing galaxies.,44.031,Columbia Pictures-Amblin Entertainment-Parkes+MacDonald Image Nation,7/2/97,90000000,589390539,98,Released,Protecting the Earth from the scum of the universe.,7.178,12318,Tommy Lee Jones-Will Smith-Linda Fiorentino-Vincent D'Onofrio-Rip Torn-Tony Shalhoub-Siobhan Fallon Hogan-Mike Nussbaum-Jon Gries-Sergio Calder�_n-Carel Struycken-Fredric Lehne-Richard Hamilton-Kent Faulcon-John Alexander-Keith Campbell-Ken Thorley-Patrick Breen-Becky Ann Baker-Sean Whalen-Harsh Nayyar-Michael Willis-Willie C. Carpenter-Peter Linari-David Cross-Charles C. Stevenson Jr.-Boris Leskin-Steve Rankin-Andy Prosky-Michael Goldfinger-Alpheus Merchant-Norma Jean Groh-Bernard Gilkey-Sean Plummer-Michael Kaliski-Richard Arthur-Debbie Lee Carrington-Verne Troyer-Mykal Wayne Williams-Tim Blaney-Mark Setrakian-Brad Abrell-Thom Fountain-Carl J. Johnson-Drew Massey-Christina Benitan-Lowell Cunningham-Danny DeVito-John Elsen-Newt Gingrich-Karen Lynn Gorney-Adrian Lee-George Lucas-Patricia McPherson-Isaac Mizrahi-Fred Newman-Joe Paparone-Tony Robbins-Al Roker-Eliot Sash-Marshal Silverman-Barry Sonnenfeld-Chloe Sonnenfeld-Steven Spielberg-Dionne Warwick-Sylvester Stallone,new york city-secret identity-undercover-space marine-illegal immigration-deportation-new identity-giant cockroach-cannon-flying saucer-stay permit-superhero-based on comic-alien-buddy cop-fictional government agency,/uLOmOF5IzWoyrgIF5MfUnh5pa1X.jpg,/wM1aNIXSqB8GSeQY38LOUHYMYIw.jpg,608-41154-813257-2048-602-1858-558-557-6479-22-58-18-329-425-604-285-601-87-18785-953-36658\r\n49519,The Croods,Animation-Adventure-Family-Fantasy-Comedy-Action,en,The prehistoric Croods family live in a particularly dangerous moment in time. Patriarch Grug his mate Ugga teenage daughter Eep son Thunk and feisty Gran gather food by day and huddle together in a cave at night. When a more evolved caveman named Guy arrives on the scene Grug is distrustful but it soon becomes apparent that Guy is correct about the impending destruction of their world.,65.672,DreamWorks Animation,3/15/13,135000000,587204668,98,Released,Meet the first modern family.,6.", + "embedding" : [ 0.013019129, -0.052397314, -0.010379213, -0.048467517, -0.014355795, 0.016280595, -0.0019398369, -0.023311459, -0.010004947, -0.029968057, 0.03432559, 0.016534561, 0.018004894, -0.015077595, -0.0105730295, 0.016922195, 0.026813524, -0.0069707143, 0.0112480465, -0.009757663, 9.448559E-4, 0.0069907643, -0.012130246, 0.007505381, 0.02234906, 0.006272306, 0.024220392, -0.009182897, 0.004517932, -0.0067200894, 0.005664123, -0.012618129, 0.014850362, -0.018151928, -0.020397527, 0.002157045, -0.0013258058, -0.03250772, 0.028364057, -0.013874595, 0.009844547, 0.00439429, -0.008688331, 0.00585794, -0.004367557, 0.007859597, 0.007572214, -0.0027067491, -0.013092645, 0.010679963, 0.02014356, 0.03103739, -0.0037226155, -0.03079679, -0.0053600315, -0.006542981, -0.014502829, 0.014984028, 0.01005173, -0.02118616, -3.7322228E-4, -0.028230391, -0.023632258, -0.004287357, -0.001288212, -0.01137503, -0.014542929, -0.019876227, 9.89133E-4, -0.007886331, 0.016815262, 0.022161925, 0.015745929, 0.013807762, 0.027241258, -0.02935319, -0.032962188, -0.001089383, -0.0029958033, 0.015505328, 0.012898829, -4.7535193E-4, -0.015438495, 0.008474464, 0.013453546, 0.0136005785, -0.015024128, 0.029780924, -0.028497724, 0.018459361, 0.0106131295, 0.018994028, 0.01793806, 0.015732562, -0.01139508, 0.027080858, -0.024808526, 0.022683226, -0.010900513, -0.04181092, -0.0013216287, -0.012210446, -0.014088462, -0.008354164, 0.0022339034, 0.008334114, -0.0030943824, -0.0062288647, 0.022135193, -0.004688357, 0.0010576372, -0.0014277266, 0.021386659, -0.04199805, -0.012945612, -0.026479358, 0.022415893, -0.016628128, -0.018192027, -0.011669097, 0.013627312, 0.027294725, 0.013687463, -0.035662256, 0.021440126, 0.020691594, 0.011388396, -0.032427523, 0.00920963, -0.003776082, 0.009075964, -0.0053667147, 0.01749696, 0.013400079, -0.024100091, 0.05587265, -0.02270996, 0.016427629, -0.03467312, -0.025236258, 0.025249625, 0.032935455, -0.02066486, -0.005025865, -0.015224628, 0.024086725, 0.006125273, 0.0014728392, 0.007204631, 7.581404E-5, 0.039993055, 0.015318195, 0.005567215, 0.019488594, 0.013754295, -0.0108670965, -0.012150296, -0.009243047, -0.0015530391, -0.03584939, 0.0062589394, -0.0067401393, 0.0023592159, -0.01926136, 0.007017498, 0.027014025, 0.02074506, -0.033389922, -0.0011771017, 0.009343297, -0.010566346, 0.029540323, 0.0044911983, 0.02435406, -0.014435995, 0.022856992, 0.007151164, -0.013687463, -0.011562163, -0.008227181, 0.0032815156, 0.009764347, 0.019568793, 0.015425128, 0.008815314, 0.0075387973, 0.014970662, -0.036651388, 0.014195396, -0.008688331, 0.007124431, 0.015532061, -0.01029233, -0.004945665, -0.6433107, -0.010666597, 0.0065095644, -0.01982276, 0.014623129, 0.007171214, 0.013112696, 0.0015338245, -0.025436759, -0.01259808, -0.017563794, 0.02178766, 0.013286462, -0.017216261, -0.033389922, -0.010299013, 0.016534561, -0.0032046572, 0.011141113, 0.00545694, -0.058278646, 0.018392527, 0.007919747, -0.017844494, -0.0019064202, 0.01003168, -0.012878779, -0.010165347, -0.0039130906, 6.0985395E-4, -0.012517879, 0.018165294, 0.0077660307, -0.008227181, 0.030128457, -0.01625386, -0.013627312, 0.05501718, 0.03617019, 0.03451272, -0.015866227, -0.010800263, 0.02887199, 0.0017744245, -0.013613946, 0.015745929, 0.010486146, -0.007304881, 0.01701576, 0.005587265, -0.0019949744, 0.018445995, 0.006215498, 0.0052129985, -0.013186213, 0.0013826141, 0.018994028, -0.020651493, 0.020330694, 0.0047986316, -0.00888883, 0.028417524, 0.0038429154, 0.0065396396, -0.01793806, 0.043708984, -0.011989896, -0.009623997, 0.0065329564, -0.04004652, 0.015465228, -0.0021319827, -0.019796027, -0.012163662, 0.023525326, 0.011020813, 0.033657257, -0.010385897, 0.006392606, 0.01175598, 0.007953164, -0.010385897, -0.00543689, -0.0025346533, 0.02166736, -0.013660729, -0.029139323, 0.008634863, -0.005547165, -0.00511609, 0.026532825, -2.0175306E-4, -0.0012213788, 0.0051194318, -0.012979029, -0.00467499, 6.5956125E-4, -6.344988E-4, 0.027080858, -0.04301392, -0.02006336, -0.011401763, 0.014970662, 0.0019364952, 0.0028604658, -0.014743429, 0.0016892119, 0.0051929485, 0.028043257, -0.0034084988, -7.2514144E-4, 0.0019314827, -0.0054302067, -0.004477832, -0.007826181, -0.023939691, 0.012671595, -0.0020200368, 0.03216019, -0.0082605975, 0.007725931, -0.0061887647, -0.0100249965, -0.015024128, 0.022482727, 0.02126636, -0.01765736, -0.0056407317, -0.013426812, 0.0073182476, -0.009617314, 0.02750859, 0.029219523, 0.003268149, 0.003565557, 0.00896903, 0.014008262, -0.02090546, 0.028310591, 0.011341613, -0.02226886, -0.013072596, -0.009623997, 0.0020200368, -0.01083368, -0.021854492, -0.02403326, -0.007024181, -0.019167794, 5.1211024E-4, -0.004023365, 0.005309907, 0.0050124982, 0.017590528, 0.007625681, -0.007705881, -0.028069992, -0.016654862, 0.011809446, -0.009523747, 0.0083875805, 0.010746797, 0.011341613, -0.031171056, 0.013687463, -6.290685E-4, -0.018633127, 0.029219523, 0.0074184975, -0.028524457, -0.0084276805, -0.003916432, -0.006486173, 0.01649446, -0.004444415, 0.0075588473, -0.031090856, 0.007097698, 0.0024912118, 0.00292897, -0.0055037234, -0.0077192476, -0.006542981, -0.008735114, 0.03683852, 0.02411346, 0.015371662, -0.012785212, -0.014516195, 0.01031238, -8.9640176E-4, 0.0022422576, -0.0086816475, -0.013560479, 0.0053399815, 0.012878779, -0.0073917643, 0.013740929, 0.009162847, 0.018031627, 0.05084678, 0.007111064, 0.013740929, -0.021881226, 0.010038364, -0.029246258, -0.013620629, -0.015251362, 0.009517063, -0.012317379, 0.022175293, -0.006125273, 0.012417629, -0.00932993, 0.013834495, 0.01075348, -0.025984792, 0.0017710828, -0.016962294, -0.00888883, -0.0029557033, -0.0065095644, 0.023806026, 0.0026800158, -0.026840258, 0.007879647, 0.011408446, -0.0024845283, -0.019274727, -0.02026386, 0.0047518485, 0.0066465726, 0.00808683, 0.011368346, 0.0015772661, 0.008400947, 0.028524457, 0.0042205234, 0.03400479, -0.015371662, -0.011956479, 0.025797658, 0.020036627, -0.008153664, 0.0032564532, -0.023725826, 0.014449362, 0.0044410736, -0.0072580976, 0.05071312, -0.023565426, 0.020878727, -0.0048186816, 0.009222997, 0.009610631, -0.0067401393, -0.0018161952, -0.0013450204, 0.043441653, 0.031331457, 0.03232059, -0.023618892, 0.015625628, 0.012945612, 0.023739193, -0.001867991, -0.012210446, -0.0037259571, -1.8734213E-4, -0.016882094, -0.002726799, -0.023151059, 0.007866281, -0.0019314827, 0.0024628076, -0.0048053153, -0.0032631364, 0.008935614, 0.021386659, 4.095629E-4, -0.01109433, -0.024648124, 0.008280647, 0.024420893, -0.020531192, -0.019074228, -0.016975662, -0.013146113, -0.034459256, -0.0033199447, -0.012417629, 0.025543692, -0.026465992, -0.0017050848, -0.014222128, -0.01033243, 0.024407525, -1.7094708E-4, 0.029647257, 0.015598895, -0.00521634, 0.016962294, 0.013887962, -0.020397527, 0.029780924, 0.0021904618, 0.019555427, 0.0036490988, 0.005851256, -0.013547112, -0.0074318643, 0.0031678989, -0.03095719, 0.01765736, -0.024407525, -0.02519616, -0.01946186, -0.021092594, 0.014088462, -0.011234679, -0.015572161, -0.04702392, -0.029807657, -0.008487831, 0.07715237, 0.017764295, 0.012604763, 0.013019129, -0.009423497, 0.0036724904, -0.029379923, -0.0029005657, -0.01121463, -0.00967078, 0.014542929, -0.017764295, 0.006766873, 0.0088487305, 0.032748323, -0.008501197, -0.008634863, -0.01075348, -5.8520917E-4, -0.01013193, -0.01041263, -7.3809037E-4, 0.022335693, 0.040901985, 0.007632364, -0.023164425, 0.017897962, 0.007705881, 0.007752664, 0.00951038, -0.00949033, 0.007111064, 0.0023157743, -0.0019097619, 0.0056106565, 0.0072915144, 0.018392527, 0.0020133534, 0.025262991, -0.007886331, 0.023084225, 0.003776082, -0.001548862, -0.016681595, 0.0073783975, -0.03368399, -0.007037548, 0.020250494, 0.036758322, -0.036063254, 0.022335693, 0.008801947, -0.026920458, 0.005824523, 0.017109327, 0.0017577161, 0.0037927905, -0.012564663, -0.014382528, -0.008561348, 0.0032714906, -0.036785055, 0.022335693, -0.0068236813, 0.003166228, -0.014034996, -0.016788527, -0.0019799368, -0.01209683, 0.01942176, 0.0049723983, -0.03202652, -0.013266413, -8.7885803E-4, 0.0052129985, 0.00531659, 0.035421655, -0.036277123, 0.009704197, 0.011227996, -0.027281357, -0.031277988, 0.011568846, -0.021801027, 0.0038930404, 0.010466097, -5.050092E-4, 0.012664912, -0.019568793, 0.0074385474, -0.011067596, -0.015090962, -0.015211262, -0.0021821077, 0.016507829, -0.0072981976, 0.005086015, 0.022442626, 0.018806893, 0.006372556, -5.3967896E-4, -0.0109940795, -0.0036724904, -0.011849546, -0.014182028, -0.0016198724, -0.013700829, 0.02650609, -0.019247994, -0.029219523, -0.003826207, -0.015652362, 0.030288856, -0.015211262, 0.008614814, -0.002188791, 0.029968057, 0.007064281, -0.005664123, -0.008273964, 0.008721747, -0.011227996, 0.008461097, 0.032133456, 0.018472727, 0.025557058, -6.714659E-5, -0.025249625, -0.0068905144, 0.020892093, -0.0042104986, 0.014783529, -0.015211262, 0.00437424, -0.025984792, -0.010419313, -2.474921E-4, 0.009704197, -0.008307381, -0.004397632, -0.017764295, -0.0052096564, 0.012330746, -0.0065329564, -0.007792764, -0.031598788, 0.0011821142, -0.014195396, -0.023017392, 0.040019788, -0.02154706, 0.0016841994, -0.015759295, -0.0045947903, -9.640705E-4, -0.027094224, -0.036785055, -0.0114552295, 0.04785265, 0.014302328, 0.02887199, -0.010947296, 0.029219523, 0.006703381, 0.0037593737, 0.026840258, -0.0074786474, -0.004464465, -0.023725826, -0.0118361795, 0.012925562, 5.0208525E-4, 0.016280595, 0.01725636, -0.012197079, 0.020090094, 0.010085147, 0.025115957, 0.016641494, -0.032908723, -0.005687515, 0.008581397, -0.019328194, 0.00951038, -0.024848625, -0.025049126, 0.04199805, 0.01121463, -0.017897962, -0.0096908305, 0.023217892, 0.011562163, 0.01079358, -0.00886878, 0.0053700567, -0.027120957, 0.006716748, -0.022402527, -0.007070964, 0.0048387316, -0.006827023, 0.02050446, 0.0112881465, -0.012578029, 0.0025931324, 0.017202895, -0.0050492566, -0.016080095, 0.03314932, -0.0098178135, -0.011802763, -0.031572055, -0.0054101567, -0.05501718, -0.0042906986, -0.008835364, 0.0030325614, 0.017643994, -0.008040047, -0.033924587, 0.029005658, 0.0047317985, 0.04213172, 0.0027902909, 0.058171716, 0.030101724, 0.009122747, -0.017229628, 0.009764347, -0.017309828, -0.008815314, 0.030208657, 0.012150296, -0.008594763, -0.014676595, -0.008040047, -0.013239679, -0.025115957, -0.036758322, 0.02742839, 0.011642363, 0.023993159, -0.015866227, -0.0020317326, -0.0012297329, 0.007044231, 0.0052230232, 0.0013851203, 0.01217703, -0.015852861, -0.022295592, -0.0052397316, -0.01079358, 0.013273096, 0.011662412, -0.03015519, 0.022696592, -0.022576293, 0.025877858, -0.0026766742, 0.0017944744, 0.027535325, -0.008922247, 0.013139429, -0.0013174517, 0.008060098, 0.004544665, 0.0017643995, -0.0011654058, 0.030262124, -0.025236258, 0.0044744904, -0.001928141, 0.0136005785, 0.0033650573, 0.031465124, -0.022308959, -0.015732562, -0.034298856, -0.0035221155, 0.01910096, 0.037292987, -0.009069281, -0.0048721484, -0.012390896, -0.0068236813, 0.014609762, 0.0011896329, 0.010506197, -0.033710722, 0.008761847, -0.021680726, 0.008795264, -0.006472806, -0.007585581, 0.0033650573, -0.019114327, 0.030770056, 0.007532114, -0.01059308, -0.01117453, -0.0018897118, -0.025062492, -0.017697461, 0.004327457, -0.013994896, 6.261446E-4, -0.017897962, 0.0076590977, -0.016387528, -0.032133456, -0.005774398, -0.0026917115, -0.014609762, -0.013573846, 0.02790959, -0.0068570976, -0.019675726, -0.0023057493, 0.03667812, -0.004868807, -0.0024962241, 0.023070859, -3.262301E-4, 0.03633059, -0.023124326, 0.008420997, 0.004985765, -0.018432627, -0.011649046, 0.005894698, 0.033496857, 0.02927299, -0.017791027, -0.038549453, 0.0016424286, -0.0030643074, 0.02006336, 0.0075187474, 0.005206315, 0.03384439, 0.024995659, 0.032935455, 0.016654862, 0.0033617155, -0.024447626, -0.0053399815, -0.010606446, -0.0029306407, -0.017630627, 0.012029996, 0.024995659, 0.0025931324, -0.009156164, -0.022696592, 0.0011420142, -0.021306459, -0.04044752, -0.0016081765, 0.025410024, 0.042345587, 0.0031779238, -0.005513748, 0.02327136, -0.01159558, 0.018151928, -0.007866281, -0.0056106565, -0.008193764, 0.015906328, 0.02951359, 0.022496093, -0.017149428, -0.010907196, 0.0064193397, 0.002457795, -1.8546244E-4, 0.04012672, -0.02943339, 0.0029222865, -0.012230496, -0.006041731, 0.0033600447, -1.3575517E-4, 0.019889593, -0.037186053, -0.011401763, 0.0036624654, 0.017724194, 0.00503589, -0.0018262202, -0.0054703066, -0.023565426, 0.005383423, 0.0026967241, -0.028337324, 0.005507065, -0.025289726, 0.008855414, 0.016761795, -0.007050914, 0.013212945, 0.01882026, -0.01882026, 0.0026766742, -0.012557979, 0.01902076, -0.0030760032, -0.021306459, -0.0041503487, 0.03250772, -0.028738324, 0.014743429, -0.03571572, 0.0019548743, -0.014689961, -0.0031779238, -0.01033243, 0.0098178135, 0.01159558, -0.054134984, -0.012517879, 0.008594763, -0.0059214314, -0.027080858, 0.008060098, -0.024714958, -0.006903881, 0.004868807, 0.0027902909, -0.0051728985, -0.0112881465, 1.1904684E-4, -0.0136005785, -0.012237179, 0.009109381, 0.16991702, 6.7877583E-4, 0.016481094, 0.040634654, -0.007692514, 0.014034996, 0.01087378, 0.007485331, 0.007485331, 0.015692461, -0.018272227, 0.010399263, 0.002377595, 0.002497895, 0.00987128, -0.012103513, -0.018593026, -0.012818629, -0.012878779, -0.025396658, -0.011321563, 0.0052798316, -0.014970662, -0.026773425, 0.00892893, -0.0030325614, -0.006195448, 6.837883E-4, 0.014516195, 0.0073449807, -0.018192027, -0.043307986, -0.0017376661, 0.012350796, -0.003288199, -0.0066098147, -0.0019665703, 0.0037259571, -0.007552164, 9.740955E-4, -0.031572055, 0.0013692474, -0.011401763, -0.011308196, -0.001777766, 0.028604656, -0.016882094, 0.0019247994, -0.03055619, 0.0017476911, -0.03400479, 0.0016775161, 0.016588029, 0.033095855, -0.022536192, -0.020049993, 0.015090962, -0.0041503487, -0.0027635575, -0.006703381, 0.0024427576, 0.026653124, -0.032106724, 0.0128854625, -0.005884673, 0.039297987, -0.03256119, -0.012210446, 0.031545322, -0.02258966, -0.015786028, -0.021400027, -0.020210393, -0.011328246, 0.012858729, -0.009216313, 0.014476095, 0.042452518, 0.00589804, 0.012223813, -0.02927299, -0.004842073, 0.0033951323, -0.018312328, -0.012745112, -0.018806893, 2.660801E-4, -0.015438495, -0.016347429, -0.00569754, -0.008454414, -0.025156058, -0.0054402314, 0.012123562, -0.012644863, 0.015919695, 0.0069506643, 0.007131114, -0.022683226, -0.018379161, -0.039110854, 0.019515326, 0.019314827, -0.003996632, -0.012584712, -0.019876227, 0.0034686488, 0.006984081, 0.023538692, -0.024942191, 0.0028454282, -0.02162726, -0.0054335482, -0.017296461, -0.02234906, 0.029005658, 0.0060116565, 0.007532114, 0.029406657, -0.026693225, -0.0056574396, -0.0102789635, 0.0024360742, -0.0048253653, 0.005824523, -0.035501856, -0.018953927, 0.0017259703, 0.018085094, -0.02975419, 0.014382528, -0.02983439, 0.016828628, 0.006155348, 0.007953164, 0.03699892, 0.037774187, -0.004688357, 0.0026532824, -0.0030626366, -0.0025413367, -0.010760163, 0.012410946, 6.938133E-4, 0.0047652153, -0.021212893, 0.010733429, 0.0057810815, -0.014596395, -0.026679859, -0.024768425, -0.009222997, 7.489508E-4, 0.010693329, 0.04737145, -0.004167057, -0.029219523, -0.03087699, -0.031652257, 0.030262124, -0.044350587, 0.018753428, 0.013486962, -0.023445126, -0.026639758, -0.0015789369, -0.17045167, 0.009623997, 0.025142692, -0.013032496, 0.023832759, 0.00511609, 0.0045814235, 0.027455125, -8.838705E-4, -0.01693556, 0.009777714, 0.015679095, -0.042719852, -0.008781897, 3.1014835E-4, 0.008527931, -0.0067969477, 0.024086725, 0.017791027, -0.004862123, 0.020130193, 0.0023826077, -0.015278095, -0.014917195, 0.0112480465, 0.0063625313, 0.01725636, 0.0029456783, -0.0110341795, -0.015438495, -0.038816787, -0.0010300684, -6.862946E-4, 0.013273096, -0.0014828641, -0.0073583475, -0.013319879, -0.025690725, 0.004086857, -0.03095719, 0.022054993, 0.01717616, 0.01990296, 0.011749296, 0.007091014, -0.0031846073, 0.013199579, -8.897184E-5, 0.0077459808, -0.014302328, -7.842472E-5, -0.047959585, 0.015465228, 0.0018629786, 0.015505328, 0.013239679, -0.018111827, 2.1867025E-4, 0.0014202079, -0.01966236, -0.065389715, -0.009704197, -0.0055371397, -0.0072981976, -0.010980713, -0.019475227, -0.012524563, 0.030609656, -0.035127588, 0.019488594, -0.03673159, 0.0048821736, 0.00828733, -0.0035922904, -0.017109327, -0.016908828, -0.031946324, 0.00232747, -0.0037292987, 0.0025613867, -0.020798527, 0.032427523, -0.020517826, 0.015331562, 0.018004894, -0.024367426, -0.0130525455, -0.024995659, 0.00439429, -0.013232996, -0.0022422576, -0.022242125, -0.029085858, 0.005005815, 0.008608131, 0.006656598, 0.0015647348, -0.003976582, -6.1987893E-4, 0.0012063413, -0.0057944483, -0.015064228, -0.038415786, 0.003946507, 0.033069123, 0.02911259, 0.022910459, 0.011448546, 0.029059123, -0.018392527, 0.005309907, -0.0013199579, 0.01773756, 0.014329062, -0.016561294, 0.017911328, -0.010085147, -0.017710827, 5.342488E-4, 0.0041002235, 0.024621392, -0.0011570517, -0.0015806078, -0.019916328, 0.013533746, -0.019715827, -0.0860813, 0.019809393, -0.0037994736, 0.02951359, -0.015999895, 0.025383292, 2.1031608E-4, 0.024207026, 0.0015271412, 0.02935319, -8.364607E-5, -0.018165294, 0.008775214, -0.010058413, 0.020330694, -0.014101828, -0.013406762, -0.004076832, -0.021119326, 0.022014894, 0.0015129391, -0.007304881, -0.0069773975, -0.007405131, -0.020130193, 0.018512826, -0.024153559, 0.014863729, 0.02190796, 0.011167847, 0.0014878766, -0.014863729, 0.011742612, -0.030369056, -0.016267229, -0.012023313, -0.011301513, -0.022990659, 0.019301461, -0.048841786, 0.007492014, 0.014128562, 0.004103565, -0.025811024, 0.021359926, -0.010265596, -0.005079332, 0.035234522, -0.0036624654, -0.029166058, -0.0130124455, -0.007592264, -0.033657257, -0.0047986316, 0.03119779, 0.015010762, 0.013246362, 0.0035822655, -6.992435E-4, -0.0012347454, 0.0016892119, -5.4803316E-4, -0.02190796, 0.042505987, 0.0059013814, 0.0052530984, -0.021720827, 0.0068504144, 0.028978923, -0.023779292, 5.0626235E-4, 0.034780055, -0.031812657, -0.020116827, -0.011849546, 0.014984028, -0.03387112, -0.003218024, 0.023084225, -0.034272123, -0.0045279567, -0.033550322, 0.0029122615, -0.021319827, 0.012444363, 0.014810262, 0.016721694, 0.00485544, 0.0011787725, -0.030048257, 0.02106586, 0.015344928, -0.0010359163, -0.006522931, -0.007625681, 0.035421655, 0.009543797, -0.0049389815, 0.0030659782, -0.008441047, -0.018111827, -0.0017259703, -0.07854251, 0.017643994, -0.0010693329, -0.012785212, -0.009998264, -0.016146928, 0.008093514, -0.015959796, 0.014262228, 0.025811024, -0.0068704644, 0.028898723, 0.007144481, -0.0030793448, 0.007979898, 0.021199526, 0.0027201157, 0.0011186226, 0.0024160242, -0.018526195, -0.008601448, 0.016561294, 0.020771794, -0.0039531905, -0.007184581, 0.03191959, -0.012324062, 0.014529562, -0.020197026, -0.010900513, 0.020130193, -0.0055638733, -0.010225496, 0.011735929, -0.012444363, -0.025690725, -0.0077593476, 0.0018479411, 0.021466859, 0.013126062, -0.008501197, -0.029166058, -0.006088515, -0.0074385474, -0.0028153532, 0.028577924, -0.020638127, 0.014770161, 0.023124326, 0.013219629, 0.051247783, -6.010821E-4, -0.033790924, -0.009182897, 0.022696592, -0.032133456, 0.031465124, 0.009316564, -0.0072313645, 0.0010425997, 0.022054993, 0.0068971976, 0.031812657, -0.01946186, 0.00924973, 0.004023365, -0.001583114, -0.010900513, 0.0041135903, -0.027374925, 0.015826128, -0.016721694, 0.024928825, 0.020892093, 0.008060098, -0.0013090975, -0.0056039733, 0.0028738324, 0.006392606, 0.04357532, 0.013286462, -0.013613946, -0.028203657, 0.006125273, 0.0051896065, 0.044510987, -0.016227128, -0.0029172741, -0.0077459808, 0.019635627, -0.015385028, 0.004030049, 0.027535325, -0.0023341535, -0.00539679, 0.028176924, -7.7108934E-4, -0.014569662, -0.0038830154, 0.035501856, 0.0014945599, -0.005647415, -0.020851994, -0.022135193, -0.007986581, 0.01825886, -0.018379161, -0.019274727, -0.010847046, 0.02110596, 0.003238074, 0.006426023, -0.01942176, 0.011702512, -0.041917853, 0.013106013, -0.012618129, -0.023124326, -0.01163568, 0.05314585, 0.003836232, 0.018539561, 0.037587054, -0.01175598, 0.04584765, 0.012263913, 0.029166058, -0.021359926, 0.0026950534, -0.0044744904, 0.002058466, -0.010486146, -0.023364926, 0.010439363, -0.02618529, 0.017055862, 0.011154479, 0.037506856, -0.012892146, 0.07228691, 0.0073382976, -0.001958216, 0.025129326, -0.0072179977, 0.0016583016, 0.01163568, 0.013299829, -0.019956427, -2.3496085E-4, -0.023872858, -0.004925615, 0.012778529, -0.025182791, -0.002357545, 0.0052530984, 0.013887962, 0.022576293, -0.012477779, -0.02054456, 0.012083462, -0.01882026, 0.018913828, 0.01029233, -0.01886036, -0.019167794, 0.025142692, -0.001428562, 0.004197132, -0.023137692, 0.014489462, -0.011227996, 0.0045112483, -0.013273096, 0.017042495, -0.005774398, -0.004444415, 0.0017209578, 0.024567924, 0.008795264, -0.0029139323, 0.015131062, -0.01865986, 0.008735114, 0.02086536, -0.019194527, 0.00633914, -0.024394158, -0.024126826 ], + "id" : "190272d8-edd5-4878-890e-b2b35f4c87e4", + "metadata" : { + "source" : "movies.csv" + } + }, + "0aea5f0e-9486-4129-8955-df925fd3a8a6" : { + "text" : "For Whom the Bell Tolls / 14. Creeping Death / 15. Seek & Destroy / 16. Lords of Summer / 17. Nothing Else Matters / 18. Enter Sandman (with 'The Frayed Ends of Sanity' outro).,1.619,,6/8/20,0,426900000,150,Released,,10,1,James Hetfield-Lars Ulrich-Kirk Hammett-Robert Trujillo,england-concert-hardwired,/ehM3D3KKo2OUxVVBFif1OJbtqGP.jpg,/ddygUzXBHGqnlBPcUI70ih7QOW0.jpg,\r\n715904,\"Metallica: WorldWired Tour - Live in Manchester, England - June 18, 2019\",Music,en,Filmed at Etihad Stadium in Manchester England on June 18 2019. This concert is part of the WorldWired Tour by American heavy metal band Metallica in support of their tenth studio album Hardwired... to Self-Destruct which was released on November 18 2016. It is also their first worldwide tour after the World Magnetic Tour six years earlier. Set-List: 1. Hardwired / 2. The Memory Remains (with extended outro) / 3. Disposable Heroes / 4. The God That Failed / 5. The Unforgiven / 6. Here Comes Revenge / 7. Moth Into Flame / 8. Sad but True / 9. Welcome Home (Sanitarium) (followed by Kirk & Rob's solos incl. 'I Wanna Be Adored' 'ManUNkind' & 'Orion') / 10. St. Anger / 11. One / 12. Master of Puppets / 13. For Whom the Bell Tolls / 14. Creeping Death / 15. Seek & Destroy / 16. Lords of Summer / 17. Nothing Else Matters / 18. Enter Sandman (with 'The Frayed Ends of Sanity' outro).,1.244,,6/8/20,0,426900000,150,Released,,10,1,James Hetfield-Lars Ulrich-Kirk Hammett-Robert Trujillo,england-concert-hardwired,/ehM3D3KKo2OUxVVBFif1OJbtqGP.jpg,/ddygUzXBHGqnlBPcUI70ih7QOW0.jpg,\r\n77338,The Intouchables,Drama-Comedy,fr,A true story of two men who should never have met ��� a quadriplegic aristocrat who was injured in a paragliding accident and a young man from the projects.,62.777,Gaumont-Cin��Cin��ma-Quad Productions-Chaocorp-Ten Films-TF1-Canal+-TF1 Films Production,11/2/11,13000000,426588510,113,Released,Sometimes you have to reach into someone else's world to find out what's missing in your own.,8.", + "embedding" : [ -0.011595573, -0.027152624, 0.011629961, -0.03100406, -0.006488982, 0.02035759, -0.026478622, -0.01713889, -0.048638135, -0.019532282, 0.02515813, 0.028390586, -0.008858303, 0.0013462832, -7.6340965E-4, 0.022695962, 0.0065611964, -0.008383751, 1.03700775E-4, -0.017936688, -0.020165019, 0.009147161, 0.012448391, 0.011148532, -0.0036554255, -0.006389257, 0.011368614, -0.008541935, -0.003012373, -0.0061313487, 0.024387844, 0.004752397, -0.023163637, 0.0016256842, -0.020398855, -0.008287465, -2.845592E-4, -0.03314986, 0.049848586, -0.020756489, 0.00886518, 0.0089889765, -0.014786763, -0.033259902, -0.006031624, 0.017482769, -0.0012714897, -0.0148555385, -0.0032135418, 0.024305312, 0.026341071, 0.016863788, -0.024635436, 0.0012491376, -0.004752397, -0.026863767, 0.019023342, 0.033369943, 0.023988944, 0.0017726922, 3.453827E-4, -0.03601093, -0.016726237, 0.0075034224, 0.0029779854, 0.008039873, -0.028610667, -0.002532663, -0.016368603, -0.007214565, 0.041182853, 0.023727598, 0.013418128, 0.014525415, 0.018624444, -0.032819737, -0.011726247, -0.026341071, 0.0160935, 0.009862428, 0.03636856, 0.0028112044, -0.015598316, 0.019779876, 0.002022004, -0.013507537, -0.01090094, 0.030536385, -0.0063651856, 0.0024776426, 0.01067398, 0.019669835, 0.031471733, 0.02033008, -0.005178806, 0.026836256, -0.0038445585, 0.02030257, -0.03105908, -0.028940791, -0.011781268, 0.0017795698, 0.003072552, -0.014250313, -0.009704243, -0.027854135, -0.007276463, -0.009222814, -0.013493781, -0.0027579032, -0.007613464, 0.008596956, 0.031884387, -0.046877477, -0.014319089, -0.021774368, -8.9924154E-4, -0.016616195, -0.019147139, -0.057221334, 0.014209048, 0.02558454, -0.005333551, -0.04924336, 0.0049346522, 0.023287432, -0.010233816, -0.014360354, 0.0015912964, -0.013273699, 0.02572209, -0.0045254375, 0.020096242, 0.016905053, 0.0132186785, 0.033672556, -0.008184302, 0.030096222, -0.013933945, -0.029380955, 0.0069532176, 0.031884387, -0.014607946, -0.023314944, -0.0022524022, 0.01563958, -0.011712492, 0.01011002, 0.006138226, -0.01064647, -0.0089064455, 0.00807426, 0.012469024, -0.01024757, 0.034690436, -0.001996213, 0.00988306, 0.007558443, 0.0139477, -0.0043913247, -0.018005464, 0.006977289, 0.004497927, -0.0043294267, 0.010268204, 0.013239311, 0.02072898, -0.01979363, -0.0056052147, -0.010563939, -0.004865877, 0.018335586, -0.010729, 0.012895433, -0.02140298, 0.023067351, 0.008823915, -0.006629972, -0.041402936, -0.017441504, -0.0012138902, 0.01386517, 0.031801857, 0.06107277, -0.009195304, 0.01928469, 0.021953186, -0.0043053553, 0.006341114, -0.005639603, 0.001041951, 0.011451145, 0.01177439, 0.005763399, -0.6206314, -0.013521291, -0.003882385, 0.014731742, 0.015598316, 0.015158151, 0.020398855, 0.007826668, -0.019738609, 0.010295713, -0.0149380695, 0.03507558, 0.004408519, -0.029408464, -0.021086613, -0.0090302415, -0.022008207, -0.027042583, -0.010385122, -0.0015208015, -0.030728957, 0.016987585, 0.0052922857, -0.002114851, -0.004387886, -0.011086633, -0.005116908, -0.022682207, -0.012097635, -0.016684972, -0.026808746, 0.024374088, 0.014910559, 0.010825287, 0.042173225, -0.006709064, -0.0059215827, 0.02244837, 0.022035716, 0.047482703, -0.0038755075, -0.012358983, 0.010660225, -0.01284729, -0.006867248, 0.015350724, 0.020398855, 0.015694601, 0.011623084, -0.01332872, 0.016960073, -0.0046320395, -0.0139752105, 0.012365861, -0.004044008, 0.0118362885, 0.0286932, -0.013156781, 0.0018982077, -0.0074484022, -0.0058184196, 0.011341103, -0.0089064455, 0.008995854, -0.019889915, 3.3033802E-4, -0.023700086, -0.021361714, 0.019078363, -0.008706996, 0.0055020517, 0.015557051, -0.016753746, -0.027193889, 0.026065968, 0.030811489, 0.032462105, 0.0070632584, 0.0032737206, -0.0017305671, 4.9991295E-4, -0.019876162, -0.0048280503, 0.015447009, 0.019601058, -0.0013058776, -0.01601097, -0.0011640277, 0.016616195, 0.0054229596, -0.010577694, 0.013204924, -0.0043294267, -0.013720741, -0.0048383665, 0.012331473, 0.004026814, -0.01603848, 0.01883077, -0.02781287, -0.008321852, -0.023727598, 0.008122403, 1.9063748E-4, 0.006647166, 9.637187E-4, 8.4980903E-4, -0.027152624, 0.04932589, 0.013885803, 0.0042021917, 0.012111391, -0.024676701, 0.0027235155, -0.01872073, -0.018115504, 0.030838998, 0.012764759, 0.011808778, -0.0022369279, 0.014773008, 0.010632714, 0.0053610615, -0.02247588, 0.0103713665, 0.01307425, -0.00525102, -0.005051571, 0.006347992, -0.012826658, 4.7541162E-4, 0.016327338, 0.019958692, -0.014841784, 0.008521303, 0.010536429, 0.03094904, -0.0061829304, 0.014910559, -0.030811489, -0.016423624, -0.008590078, 0.0044944882, -0.012922944, -0.012517167, -0.02877573, -0.023301188, -0.010976593, -0.0045082434, 5.059308E-4, 0.006599023, 0.023713842, -0.008899569, -0.0036107213, -0.0040749568, -0.010515796, -0.033507492, -0.022118246, -0.035818353, -0.015447009, 8.048899E-5, 0.012365861, -0.022792248, -0.012867923, 0.029270913, -0.0077303825, 0.008005485, 0.009415385, 0.026327316, -0.01445664, -4.7756088E-4, -0.0037379563, -0.014181538, 0.009229692, -0.0029968987, 0.011451145, -0.01259282, 0.007950464, 0.007751015, -0.004119661, 0.0125378, 3.907316E-4, -8.3261513E-4, 0.0025085916, 0.023947679, 0.016850032, 0.017042605, -0.021609306, -0.021361714, 0.0063067265, -0.003693252, -0.026189765, -0.016189786, -0.0017159523, 0.010440143, 0.031251654, -0.009518549, -0.017524034, 0.0017658146, 0.031581774, 0.03823926, 0.019697344, 0.015364478, -0.0015560489, 0.014332844, -0.01149241, 3.0648147E-4, -0.026299806, 0.041045304, 0.0052854083, 0.013796394, -0.010054999, -0.005574266, -0.0012422601, -0.009085262, 0.04310857, -0.011182919, 0.016671216, -0.02298482, 0.0070151156, 6.585268E-4, 0.011698737, 0.030426344, 0.00268225, 0.0061966856, -0.0040336912, 0.034772966, 0.01877575, -0.0024415352, -3.498961E-4, -0.0068844417, -6.0264656E-4, 0.024167761, 0.0036829356, -0.009236569, -0.013149903, 0.018995833, -0.015323213, 0.046712417, -0.029821118, -0.015089376, 0.020756489, 0.022682207, -0.031169122, 0.0058803177, -0.006200124, 0.001598174, 0.0250756, -0.021609306, 0.021650573, -0.029546017, 0.01177439, -0.02352127, -0.004487611, 0.014552926, -0.02193943, -4.2769854E-4, -0.002685689, 0.017840402, 0.009642345, 0.0029246842, -3.1335902E-4, 0.025570784, -0.0033356186, -2.0729408E-4, 1.2916926E-4, -0.025515763, 0.03518562, -0.01036449, -0.0038273646, -0.010632714, -6.1683153E-4, 0.010584571, 0.0066230944, 0.01499309, 0.0023005453, 0.014126517, 0.012867923, 0.008968344, 0.02191192, -7.187055E-4, -0.02244837, 0.009876182, 0.014649212, -0.027372707, -0.011169164, 0.003521313, -0.020453876, -0.008356241, -0.00655088, -0.016107256, 0.03958726, -0.011141654, -0.016905053, 0.0057427664, -0.02411274, 0.007689117, -0.021636818, -0.0010514077, 0.025336947, -0.016217297, 0.0026960052, -0.0038755075, -0.023232412, 0.016781257, -0.018143015, -0.014841784, -0.013823904, -0.0074140145, 0.016492398, -0.002352127, 0.028363075, -0.027097603, -0.0055467556, -0.0010256168, -0.009587324, 0.0072833407, -0.010522674, 0.007104524, -0.0014743778, -0.017400237, -0.028390586, -0.029766098, -0.0040955897, 0.08792278, 0.039202116, 0.028142992, 0.013631333, -0.02143049, -0.009807407, -0.009305345, -0.013995843, -0.014662967, 0.01877575, 0.015804643, 0.0017374447, 0.016561175, 0.012097635, 0.01149241, -0.0108734295, 0.0045529474, -0.02628605, 0.0017898862, -0.014759253, -0.020233795, -0.023301188, 0.0029401588, 0.04162302, -0.01869322, -0.019656079, 0.022324573, 0.0059869196, 0.018225545, 0.003820487, -0.0074140145, 0.008438772, 0.008349363, 0.0030587967, -0.005244143, 0.038129218, 0.032572143, 0.021389225, 0.020907795, -0.010907817, -0.014786763, -0.009931203, 0.0014614824, -0.008982099, 0.0070495033, -0.028170504, -0.0052166325, 0.026107235, 0.030343814, -0.0075790756, 0.019614814, -6.533686E-4, -0.023301188, -0.027138868, 0.011072879, -0.012345228, 0.0012585942, -0.016781257, 8.764596E-4, 0.011946329, 0.028253034, -0.043218613, 0.0289683, 0.0053404286, 0.0023555658, -0.012166412, -0.007977975, -0.0062379506, -0.02891328, 0.018376851, -0.005577705, -0.027950421, -0.019422242, 0.008748262, 0.027042583, -0.025405722, 0.019023342, 0.0029745465, -0.0118019, 0.015488274, -0.028198013, -0.0047730296, 0.0021647133, -0.0033820423, -0.016492398, 0.013658843, 0.01818428, 0.018913303, 0.0057909093, 0.007434647, -0.010894062, -0.018954568, 0.010089387, -0.017221421, 0.036671173, 0.008913323, 0.034030188, 0.025199397, 0.02617601, -0.008253077, 0.022640942, -0.025955928, -0.021870654, -0.008803282, 0.029656058, -0.013803272, 0.015323213, 0.03730391, 0.0037826605, -0.035488233, -0.0098693045, -0.008830792, -0.0022661574, -0.0019360343, -0.009353488, 0.0041093444, 0.0046286006, 0.019050853, 0.0060866443, 0.017716605, 0.0053920103, -0.018294321, 0.013321842, -0.0048865094, -0.02180188, 0.011966961, -0.013762007, -0.021623062, 9.23313E-4, 0.019023342, 0.0068603703, 0.012290208, 0.017345218, -0.016836278, 0.0015947352, -0.025790866, 0.019463507, 0.009669855, -0.010804653, 0.002563612, -0.022145757, 0.012427758, -0.010543306, -0.0078129135, -0.018143015, -0.024346577, -0.010350734, 0.0095323045, -0.01773036, 0.029105851, -0.00587344, -1.3110357E-4, -0.015254438, 0.003552262, -0.007640974, -0.035818353, -0.017799137, -0.011939452, 0.02885826, -0.0049140197, 0.02363131, -0.0056774295, 0.024855517, 0.02132045, -0.0034181494, 0.010990348, -0.027771605, -0.0018036412, -0.013067372, 0.0018259933, 0.0095323045, 0.0052235103, -0.004656111, 0.0019360343, 0.014525415, 0.030728957, -1.8241664E-5, 0.011313593, -0.01855567, -0.034965537, -0.007916076, 0.01292982, -0.019779876, 1.6108545E-4, -0.029463485, -0.005302602, 0.008823915, -0.0018087995, -0.022929799, -0.0012422601, 0.023865148, -0.027854135, 0.02716638, -0.013569434, 1.42118415E-5, -0.009387875, -0.014800519, -0.035900887, 0.0019858966, -0.01654742, -0.019380976, 8.343345E-4, -0.020385101, -0.021788124, -0.018253056, 0.020288814, -0.024883028, -0.027455237, -0.013108637, 0.0044566616, -0.007826668, -0.019422242, -0.02083902, -0.010639592, 0.013906435, 8.6141494E-4, -0.01092845, -9.1127725E-4, -0.010742756, -0.042145714, 0.032572143, -0.003645109, 0.045391925, 0.018706976, 0.03735893, -0.0037001297, -0.0010496882, -0.031691816, 0.0075378106, -0.016024726, -0.005302602, 0.036065947, 0.031554267, -0.0268225, 0.02784038, -0.01256531, 0.006186369, -0.03526815, -0.029243404, 0.027207645, 0.017070115, 0.009415385, -0.007922954, -0.009690488, -0.024374088, 0.007592831, -0.0047283256, -0.009312222, 0.011141654, -0.019243425, 9.193369E-5, 0.010845919, -0.0136382105, 0.018019218, -0.009050875, -0.022819757, -0.007682239, -0.02883075, -0.017097624, -0.009903693, -0.026726214, 0.047152583, -0.025268171, 1.5367057E-5, 0.03199443, 1.2401109E-4, 0.023081105, -0.018885791, 0.005116908, 0.030563897, -0.014050864, 0.016863788, 0.010295713, -0.02151302, -0.0068431767, -0.0070495033, -0.002360724, -0.0047902237, -0.02134796, -0.013507537, 0.025818376, 0.012902311, 0.0043294267, -0.0126340855, -0.015268193, -0.02180188, -0.016561175, 0.004704254, 0.03237957, -0.029270913, 0.004858999, -0.009931203, -0.0019274374, 0.027400216, -0.01075651, 0.018624444, -0.010178795, 0.03636856, -0.032489613, 0.019463507, -0.0031361694, -0.0032823177, -0.030811489, -0.00341643, 0.0026169133, -0.0149793355, -0.003232455, -0.014883049, 0.0042056306, 0.014236558, 0.009023365, 0.005240704, 0.003314986, -0.013122393, -4.274836E-4, 0.0114580225, -0.013314964, -0.009057752, -0.009724876, 0.027482746, -0.009738631, -0.0025756478, 0.011595573, -0.007290218, 0.006781278, 0.0073383613, 0.012530922, -0.013335597, -0.021141633, -0.028019197, 0.013576312, 0.020151263, 0.01279227, -0.02309486, -0.028528137, 0.0070701363, -0.02239335, 0.03185688, 7.646992E-4, 0.007297096, -0.0020581111, 0.034690436, 0.006629972, 0.0046457946, -0.012297085, -0.007290218, -0.008920201, -0.008872058, -0.018679464, -0.017290197, 3.4898265E-5, 0.027028827, -0.019738609, 0.013569434, -0.028363075, 0.0040612016, -0.03185688, -0.0076616067, -0.013645087, 0.010907817, 0.03848685, 0.015969705, -0.0041093444, 0.0272214, -0.0011777829, 0.008817038, -0.011623084, 0.010735878, 0.033727575, -0.004604529, -0.0031241337, 0.016533665, -0.016822523, -0.0066230944, 0.0027768165, 0.002083902, -0.009793651, 0.025309436, -0.0054160818, -0.010949083, 0.013885803, -0.04189812, 0.008335608, -0.003402675, 0.016176032, -0.032544635, -0.0064958595, -0.012324595, 0.028418096, 0.0029401588, 0.0021268867, 0.013266821, -0.012063248, 0.0011176042, -0.03741395, -0.035790846, 0.011004103, -0.031334184, 0.026918788, 0.018982077, 0.004436029, 0.019243425, 0.024717966, -0.02628605, 0.024209026, -0.009270957, 0.008060506, -0.014951825, -0.006770962, -0.009786774, -0.0026736532, 0.01061896, 0.0218569, -0.011217307, 0.0059903585, -0.035708316, 0.008266833, -0.024305312, 0.013053617, 0.016478645, -0.043246124, -0.012943576, -0.012070125, -0.009965591, 0.011004103, -0.023480004, -0.010392, -0.0062379506, -0.017001338, 0.016781257, -0.009690488, -0.024154006, -0.019243425, -0.019532282, -0.007675362, -0.0012422601, 0.20896791, -0.026547398, -0.018032974, 0.03532317, 0.0031980674, 0.013961456, 0.023823883, -5.777154E-4, 7.1225775E-4, 0.007627219, 0.001470939, -0.008225567, -0.009360365, -3.140038E-4, 0.015061866, -0.009752386, -0.03312235, -0.020673959, -0.024291556, -0.027854135, -0.00886518, -0.0015887173, -0.006612778, -0.01499309, 0.0076340963, 0.02660242, -0.005938777, -0.004559825, 0.024387844, 0.016217297, -0.024497883, 0.0037757829, -0.015722113, 0.019009588, -0.022365838, 0.00640989, -0.009607958, -0.004872754, 0.019903671, 0.019546038, 0.019243425, -0.010818409, -0.0054745413, 0.010103142, 0.014635457, 0.021389225, -0.011451145, -0.0031069396, -0.014078374, 0.009174671, -0.016781257, -0.015144397, 0.03306733, 0.022462126, 0.015144397, -0.026492378, 0.0020202845, 0.013713864, -0.035955906, 0.0035797723, 0.010082509, 4.362955E-4, -0.02341123, 0.0017219702, 0.01061896, 0.013122393, -0.027152624, 0.0021440806, 0.017634075, -0.048940748, -0.0020013712, -0.02072898, -0.011217307, -0.0108734295, -0.010625836, -0.010784021, 0.0045048045, 0.0027940106, 0.026671194, 0.0375515, -0.0024982751, -0.036671173, 0.005653358, -0.010336979, -0.025955928, -8.38633E-4, 0.020522652, -0.012695984, -0.004704254, 0.014043986, -0.008466282, -0.020536408, -0.0065887067, 0.021389225, 0.0023160197, 0.020261304, 0.019697344, 0.0075721983, -0.015515785, -0.031471733, -0.020687714, 0.0074071367, 0.012049492, -0.0045151208, -0.01773036, -0.012345228, 0.016341092, 0.005969726, 0.016382359, -0.044731677, -0.0060488177, -0.025323192, 0.021746859, -0.0074071367, 0.007303973, 0.031719327, -0.026781235, -0.011733125, 0.02883075, -0.025942173, 0.010818409, -0.019986201, 0.014112762, -0.012909188, 0.0034387822, -0.023218658, -0.01713889, 0.018308077, 0.0018208352, -0.035708316, 0.005639603, -0.019504772, 0.011960085, 0.015130642, -0.0014219364, 0.014869294, 0.022792248, 0.0028352758, 0.0028920157, 0.0026753724, 0.008548812, -0.01499309, -0.008060506, 0.023988944, -0.0064167674, -0.034883007, 0.012833535, -0.015336968, -0.021059101, -0.04255837, 0.006898197, -0.020563917, 0.0045804577, 0.0077854027, 0.030701447, -0.025199397, -0.015185662, -0.027592788, -0.01654742, 0.015254438, -0.053947613, -0.0059731645, 0.025240662, -0.011788146, -0.027702829, -0.014690477, -0.1765058, 0.022104492, 0.003803293, -0.0076478515, 0.034580395, -0.0044119577, -0.0149793355, 0.026836256, -0.0026942857, 0.010942205, 0.01713889, 0.020591427, -0.03733142, -0.022049472, -0.019353466, -0.0025739283, -1.1423205E-4, 0.05339741, -4.390895E-4, -0.0032083837, 0.027689073, -0.027207645, -0.014050864, -0.011815655, 0.0066815536, -0.0070495033, 0.002250683, 0.008768895, -0.007950464, -0.013390617, -0.03634105, -0.027537767, 0.018390607, 0.012558432, -0.007090769, 0.008184302, -5.37847E-5, -0.011382369, -0.0057393275, 0.02515813, 0.04255837, 0.022682207, 0.013500659, 0.033892635, -0.0022627187, 0.035598274, 0.017358972, -0.015185662, 0.00220254, -0.030646427, -0.0028232401, -0.026313562, 3.574184E-4, 0.006186369, 0.013314964, -7.036608E-4, 0.008686364, 0.0029229647, 0.0012276452, -0.008081138, -0.050838955, -0.009174671, 0.005966287, -0.011856921, -0.0036554255, -0.015735867, -0.020109998, 0.015336968, -0.024401598, 0.019064609, -0.009931203, 1.9053003E-4, -0.0123383505, -0.0021389225, 0.010790898, 0.007895444, -0.024181517, 0.0012998596, -0.01762032, 0.017579054, -0.0031378886, 0.051829323, -0.01369323, 0.0065680738, 0.019174648, -0.007682239, 0.0063101654, 0.013569434, 0.011568063, 0.0024501323, 0.004810856, -0.022489635, -0.008480037, -0.02298482, 0.009807407, 0.018376851, -0.0058356132, -0.009236569, -0.030481365, -0.0086932415, -0.0013325281, -0.0067331353, -0.006207002, 0.03843183, 0.015089376, 0.032709695, 0.0073452387, 0.0043947636, 0.010708367, 0.0036829356, -0.005312918, 0.031334184, 0.01448415, 0.017317707, 0.0123383505, 0.008363118, 0.018541913, -0.023301188, 0.024745476, 0.023741351, 0.05240704, 0.0027063217, -0.02993116, 0.0011855202, -0.009800529, -0.031306673, -0.0874276, 0.035103086, -5.2817544E-5, 0.033755086, -0.022255799, 0.02041261, 0.0052475818, 0.02349376, -0.006210441, 0.018583179, -6.718521E-4, -0.028129239, -0.0020460754, -9.482442E-4, 0.012393371, -0.029298425, 0.011499288, -0.03185688, -0.015006845, 0.05254459, 0.0116712265, 0.0073452387, 0.008713874, -0.014951825, -0.016052235, -0.027799115, -0.03427778, 0.021114122, 0.0077578924, 0.003010654, 0.004590774, -0.006313604, -0.0015526102, 0.0076547293, -0.020880286, -0.005777154, 0.0031585214, -0.019958692, 0.031774346, -0.041265387, 0.01259282, 0.028473116, -0.0069532176, -0.007606586, 0.023328697, -0.027413972, -0.032709695, 0.042228244, -0.021017836, -0.026492378, -0.004212508, -0.027620299, -0.02188441, -0.012317718, 0.028019197, -0.0029126485, 0.01869322, -0.0027046022, -0.036891256, 0.0036966908, -0.006344553, -0.0044566616, -0.019738609, 0.002567051, 0.017524034, -0.0011984155, -0.0029401588, -0.005257898, 0.0037860991, 0.0053748167, -0.03653362, 0.015336968, -0.024676701, -0.005350745, -0.034525372, 0.007235198, -0.0062413896, -0.021994451, 0.015543295, -0.017936688, -0.014552926, -0.010735878, -0.0033751647, -0.022338329, 0.0123383505, 0.027180133, 0.0012070126, 0.006330798, 0.0069429013, -0.047675274, 0.0045391927, 0.027771605, 0.0278954, 0.016258562, -0.007888567, 0.018514402, -0.010447021, 4.5391923E-4, 0.008493792, 0.029490996, -0.0186382, 0.0048521217, -0.07147165, 0.02620352, -0.009298467, -0.008885813, 0.0014442885, -0.0045048045, -0.01933971, 0.020371346, 0.00906463, 0.035955906, -0.033590022, 0.017042605, -0.01442913, -0.008088016, -0.02397519, -0.0016592124, -0.006801911, 0.008548812, -0.007358994, 0.010763388, -0.01759281, -0.013390617, -0.0037482725, 0.0138926795, 0.025873397, 0.004157488, -0.0026134744, 0.022008207, -0.008968344, -0.012414004, 0.038211748, -0.027661564, 0.0059869196, 0.003806732, -0.026850011, -0.020660203, 0.0061691753, 0.003433624, 0.0135556795, 0.0035625782, -0.0023555658, -0.024442863, -0.0031877512, -0.010385122, -0.0041953144, 0.009291589, -0.011629961, 0.024305312, 0.008796405, 0.024814252, 0.032489613, 0.020563917, 0.0024123057, -0.008060506, -0.0053576226, -0.005192561, 0.012881678, 0.0048383665, 0.016629951, -0.0141402725, 0.018170524, 0.0132186785, -0.0030983428, -0.014099007, 7.5911114E-4, 0.004298478, -0.007090769, -0.014009599, -0.0042916, -0.02998618, 0.0138926795, 0.0036244765, 0.022283308, 0.036698684, -0.010281959, -0.0067778397, 0.009325977, 0.007496545, -0.01654742, 0.011733125, 0.03237957, 1.349722E-4, -0.046519846, 0.012881678, 0.0045048045, 0.006378941, -3.958898E-4, 0.035653293, -7.952184E-4, -0.0037585888, 0.004308794, 0.011657472, 0.008101771, -0.005433276, -0.006347992, 0.024772987, -0.027634053, 0.0013445638, 0.008184302, -0.005890634, -0.0064442777, 0.006279216, -0.026107235, 0.0022764737, -0.0160935, 0.018418116, 0.0030209702, -0.015598316, 0.015185662, 0.033947658, 0.016739992, 0.007242075, -6.6110585E-4, 0.008920201, -0.023204902, 0.019133383, -0.0048383665, -0.007847301, -0.026863767, 0.034883007, 0.029078342, 0.010288836, 0.017895423, 0.019518528, 0.032242022, 0.0032599655, 0.011121022, 0.004731764, 0.015433255, -0.013651965, -0.0018105188, 0.014786763, -0.02775785, 0.009085262, 0.005495174, -0.019504772, 0.006471788, 0.012083881, -0.026038459, 0.08638221, 0.038844485, 0.010309469, 0.031526756, -0.008920201, 0.030481365, -0.004040569, 0.015364478, -0.005935338, -0.034745455, 0.01547452, -0.031499244, 0.018913303, -0.032819737, -0.014759253, 0.012977964, 0.004676744, 0.02414025, 0.019380976, -0.014662967, -0.004814295, -0.0340577, 0.0019532284, -0.018817017, 0.0071939323, -0.013872047, 0.01563958, 0.0016368603, -0.0055330005, -0.037991665, -0.0013445638, -0.0040818346, -0.004604529, 0.006251706, 0.0063067265, -0.0071870545, -0.019133383, -0.037166357, 8.6700293E-4, -0.0028713832, -0.018294321, 0.009195304, -0.030178752, -0.009614835, 0.015625827, -5.265635E-4, 0.0021010959, -0.011788146, -0.020371346 ], + "id" : "0aea5f0e-9486-4129-8955-df925fd3a8a6", + "metadata" : { + "source" : "movies.csv" + } + }, + "8fc9c93f-935b-4328-890f-9f49e7797977" : { + "text" : "Michael Gray-David Richmond-Peck-Penelope Parkes-Aonika Laurent-Jason Schombing-Jason Diablo-Colin Lawrence-Paul Belsito-Dee Jay Jackson-Morgan Reynolds-Gina Holden-Donavon Stinson-Douglas Weston-Tony Alcantar-Brenda Crichlow-Peter Bryant-Lorena Gale-Danielle Dunn-Morris-Nicole Mu��oz-Daniel Bacon-Bobby Bysouth-Kenny Bartram-Ronnie Renner-Brian Deegan-Marlaina Mah-Tre Verhoeven-Juanita Mirehouse-Stefanie Singer-Jamie Little-Doug Abrahams-Ron Chartier-Stan Lee-Barbara Christabella-Sanja Banic-Ed Hodson-John Speredakos-Jason Kaufman-Preston Thomas Peet-Steven Fulani Hart-Bethann Schebece-Lou Torres-Peggy Gormley-Maurice Tyson-Jaimie McVittie-Jenni Squair-Lia Salmond-Ellen Ewusie-Ylenia Aurucci-Michelle Zembruski-Kathleen Mullan-Georgia Dewson-Sienna Rose-Hector A. Leguillow-Ben Mulroney-Terry David Mulligan-Lauren S��nchez-Mark S. Allen-Jon Brady-Taryn Winter Brill-Sara Edwards-Heidi Eng-Jim Ferguson-Sam Hallenbeck-Mike Waco-Marian Etoile Watson-Richard Ho-Dave Holmes-Andrew Hunsaker-Taylor Johnson-Bonnie Laufer-Krebs-Lisa Fuller Magee-Bret Martin-Liam Mayclem-Scott Patrick-Shaheem Reid-Sam Rubin-Maria Salas-Devon Soltendieck-Patrick Stoner-Lee Thomas-Tony Toscano-Jennifer Lothrop,flying-sibling relationship-fire-marriage proposal-radiation-dna-missile-mask-transformation-friendship-superhero-based on comic-space-laboratory-explosion-scientist-super power-space station-brooklyn bridge-fantastic four-superhuman strength-invisibility-elasticity,/8HLQLILZLhDQWO6JDpvY6XJLH75.jpg,/jkBEPKRq4HWlLwsMFMdDiYwaCle.jpg,1979-559-36658-36668-1593-558-1250-608-44912-36657-1734-557-1927-2080-564-950-8960-1724-1858-166424-953\r\n714,Tomorrow Never Dies,Adventure-Action-Thriller,en,A deranged media mogul is staging international incidents to pit the world's superpowers against each other. Now James Bond must take on this evil mastermind in an adrenaline-charged battle to end his reign of terror and prevent global pandemonium.,24.957,Eon Productions-United Artists-Danjaq,12/11/97,110000000,333011068,119,Released,Yesterday is a memory. Today is history. Tomorrow is in the hands of one man.,6.", + "embedding" : [ 0.008823569, -0.015742673, -0.016646951, -0.043706812, -0.020483285, 0.035294276, -0.011652866, -0.006377906, -0.036171153, -0.033869352, 0.015865983, 0.031156518, 0.020579195, 0.0057065478, 0.011659716, 0.014879498, 0.011371992, -0.022620672, 0.011632314, -0.028388875, -0.0045179687, 0.017304609, -0.004723487, 0.008350878, 0.0074054957, 0.0061141583, 0.011659716, -0.017386816, 2.1793463E-4, -0.00475774, 0.0024199735, -0.0049290047, -0.0022675477, -0.0043946584, -0.012673605, 0.0043980833, -0.006350504, -0.018400704, 0.028005242, -0.014057426, 0.0062237675, 0.012063902, -0.011132221, -0.009453825, -0.019579006, -0.005322914, 0.01672916, -0.03397896, -0.0037027479, 0.01926388, 0.029073935, 0.04439187, -0.025936361, -0.03737686, -0.0063368026, 0.0012510903, -0.012331075, 0.015523453, -0.0071314718, 0.0058778124, 0.005353742, -0.032882866, -0.022757685, -0.0035554601, -0.011954293, -0.008535844, -0.016592147, -0.012009097, -0.012447535, 0.010399207, 0.01857882, 0.002740239, 0.019770823, -0.0053605926, 0.0036136901, -0.03532168, -0.020031147, -0.0058880886, -0.01066638, 0.0065902746, 0.020729907, -0.008768764, -0.022278143, 0.007419197, 0.01663325, 0.0065971254, -0.013132595, 0.015235729, -0.023716768, 0.017071689, 0.0010301586, 0.045487966, -0.006343653, 0.0148109915, -0.0068060686, 0.026758432, -0.017688243, 0.032773256, -0.018893948, -0.044419274, 0.0015088441, -0.013125745, -0.013769701, -0.0082138665, 0.0028635496, 0.00579218, 0.003942519, 0.0016664078, 0.020510688, 0.004463164, 0.0035588853, -8.237843E-4, 0.027950438, -0.0378153, -2.3484704E-4, -0.024114102, 0.0012022798, -0.04096657, -0.011187025, -0.0055147307, 0.030937297, 0.03614375, 0.0013041825, -0.03362273, 0.040171903, 0.037541274, 6.7692465E-4, -0.011097968, 0.0031906657, 0.0138724595, 0.032663647, 0.002568974, 0.011488452, 0.013344964, -0.029046534, 0.05721619, -0.026128178, 0.011858384, -0.024264816, -0.027772322, 0.03151275, 0.02992341, -0.02970419, -0.017825255, -0.018291095, 0.017263506, 0.0051824767, -0.016646951, 0.01857882, 0.006066204, 0.021538278, 0.027388688, 0.01800337, 0.0054290984, 0.024963576, 0.011365141, -0.009700445, 0.003218068, -0.0039048404, -0.006860873, 0.010467713, 0.0026494686, -0.0023309158, -0.01227627, 0.007706922, 0.024936175, 0.018510314, -0.024689553, -1.619524E-4, -0.0047269124, -0.003531483, 0.028498486, -0.024675852, 0.0114130955, -0.0024336746, 0.028279265, 0.005470202, -0.014742485, -0.032608844, -0.013002434, 0.0034064595, 0.014125932, 0.034362596, 0.039843075, -0.0020671678, 0.014427358, 0.037212446, -0.014304047, 0.016304422, -0.014523267, 0.002202467, 2.0819394E-5, 0.021497175, -0.011769326, -0.64625794, -0.014221841, -0.01513982, -0.0076452666, 0.005172201, 0.019784525, 0.013523079, -0.0015713557, -0.030772883, -0.0078644855, -0.020634, 0.018729534, 0.004254221, -0.014893198, -0.011796729, -0.0077891294, -0.0014634589, -0.010529368, 0.018852845, 0.009782653, -0.039158013, 0.034718826, 0.0073712426, -0.0011937165, 0.012988732, 0.0026751582, -0.011872085, -0.026073374, 0.012331075, -0.0010318712, -0.013434022, 0.021373864, 0.019332387, -0.0015379591, 0.042720325, 3.3717783E-4, -0.006586849, 0.045597576, 0.031238724, 0.03600674, -0.013618988, 0.002813883, 0.0036273913, -0.003658219, -0.017249804, 0.026333697, 0.0031632634, -0.009330514, 4.8724873E-4, -0.012605099, 0.005562685, 0.0072890357, -0.023771573, -0.009823756, -0.017126493, 0.004470015, 0.010748588, -0.013057238, 0.010844496, -0.0042131175, -0.014728785, 0.0136395395, -2.5133128E-4, 0.0027625035, -6.580855E-4, 0.012940778, 0.0014026598, -0.0047303373, 0.0072273803, -0.019181672, 0.009159248, 0.013372366, -0.017962266, -0.0040863813, 0.008241269, 0.009837458, 0.03545869, 0.009953918, -0.011967993, 0.01755123, 0.0012699295, 0.0014035162, -0.010618426, 0.027100964, 0.038116723, -0.0012750675, -0.030252239, 0.0017606035, 0.02671733, -0.003101608, 0.005196178, 0.0062545952, 0.016715458, 0.014619174, -0.002012363, 0.004319302, -0.010789691, -0.010241643, 0.029649386, -0.043131363, -0.012358477, -0.013810804, 0.039267626, -0.0038568864, 0.011214428, 0.0081385095, -0.003404747, -0.011050014, 0.018400704, -0.016194813, 0.0037609779, 0.0016372928, -0.020538092, -0.011529556, -0.0068848506, -0.033869352, 0.025292406, 0.0050146375, -0.005357167, -0.010577322, 0.006203216, 0.010145735, 0.011604912, -0.015222027, -7.503545E-5, 0.026772134, 0.0022966627, -0.003795231, 4.0846688E-4, 0.013666942, -0.004370681, -0.013406619, 0.024593644, -0.020551791, 0.015879685, -0.0071314718, 0.013159998, -0.0047782916, 0.0030759182, 0.0043604053, -0.021538278, -6.332521E-4, -0.008782466, 0.006514918, -0.017770449, -0.011769326, -0.034115974, 0.0039048404, -0.007549358, -0.009556583, -0.015016509, 0.024908772, 0.012817468, 0.013372366, 0.004678958, -0.011104818, -0.030882493, -0.02442923, -9.411008E-4, -0.014194437, -0.009063341, 0.01983933, 0.001550804, -0.028580692, 0.031622358, -0.009720998, -0.008967432, 0.020784711, 0.0031033205, -0.016934676, 0.009755251, -0.017236102, -0.008576948, 0.0031290103, -0.010817093, 0.01193374, 0.003199229, 0.020044848, 0.014167035, 0.001316171, -8.5974997E-4, -0.008227567, -0.025374612, -9.1541104E-4, 0.0286903, 0.017277207, 0.016427733, -0.019058362, -0.0045967507, -0.0028532739, -0.008768764, 0.0018291095, -1.8293236E-4, 0.0020962828, -8.6231896E-4, 0.011173325, 0.021702692, 5.352029E-4, 0.0032557463, 0.01020739, 0.036774006, 0.010851346, 0.010618426, 0.0037575527, 0.018195186, -0.019537903, -0.0045316704, -0.023648262, 0.002334341, -0.013324412, 0.022086326, -0.018044474, -0.006997885, 0.0097758025, 0.0024627896, 0.016126307, -0.021127243, 0.0015782063, -0.025662338, -0.009755251, 0.0029440443, -0.0012245442, 0.0124680875, 0.007905589, -0.033102088, 4.945275E-4, 0.030581066, -0.0194968, 0.009912814, -0.017578634, 7.6084444E-4, -0.0039253924, 0.013694344, -0.0017931438, 0.01708539, -0.013940966, 0.02478546, -0.005343466, 0.03967866, -0.015550856, -0.013543631, 0.015564557, 0.032389626, 0.0088783745, 0.005055741, -0.016085202, 0.0114679, 0.025182797, -0.021086138, 0.054777376, -0.024470333, 0.02822446, -0.01698948, -0.009392169, 0.00601825, -0.014317748, -0.011556958, 0.005244132, 0.020085951, 0.008385131, 0.008755064, -0.025470521, 0.011036312, 0.0016869596, 0.013207952, -0.003716449, -0.026333697, -0.0055455584, 0.0019130294, -0.02615558, -0.02190821, -0.01043346, 0.008309775, 0.0021579382, -0.009049639, -0.010830794, -0.0056483177, 0.013262756, 0.008919477, 0.025265003, -0.019825628, -0.03543129, -0.0013983782, 0.03819893, -0.014043724, -0.038609967, 0.0010284459, -0.01124183, -0.026552916, -0.017578634, 0.0032814362, 0.027429791, -0.021565681, -0.008117958, -0.013947817, -0.001553373, 1.3230216E-4, -0.005011212, 0.015304235, 0.026580317, 0.0023377663, 0.023771573, 0.00141893, -0.0045350953, 0.030992102, -0.005192753, 0.0020774438, -0.0033533673, -0.011193876, -0.009364767, 0.011139072, 0.010138884, -0.053599074, 0.0194968, -0.0024456633, 0.0074123465, -0.0043432787, -0.008542695, 0.012426984, -0.015756374, -0.01570157, -0.03373234, -0.016646951, 0.013906713, 0.09086632, 0.051352076, 0.0019489949, 0.0069019767, -0.020784711, 0.0134819755, -0.01433145, -0.009810056, -0.009104444, -0.00590864, 0.028525887, -0.0017443333, 0.0023035135, 0.00481597, 0.018071875, -0.0036650696, -0.0112966355, 1.1860097E-4, -0.014413657, -0.015085015, -0.014948003, -0.012694157, 0.0072890357, 0.030909896, 0.0073643923, -0.008193314, -0.0066211023, -0.0037438516, -7.796836E-4, 0.010036125, -0.012988732, 0.008165912, 0.013214802, 0.0032523212, -3.2090768E-4, -0.015359039, 0.02257957, 0.0051550744, 0.025826752, -0.013235354, -0.0072616334, 0.014276645, 0.00418914, -0.016249618, 0.021579381, -0.029402765, -0.02131906, 0.014742485, 0.034225583, -0.034198184, 0.021921912, 0.008686557, -0.015263131, -0.021826003, 0.00418914, -0.0022692604, -0.008008349, -0.017975967, -0.02660772, 0.034115974, 0.0032300567, -0.0355683, 0.027155768, -0.010543069, 0.009378468, -0.01800337, -0.013660091, -0.009488077, -0.01387931, -0.0061210087, 0.017770449, -0.027621608, -0.01914057, 0.006326527, 0.025758246, 0.00510712, 0.019647513, 4.011881E-4, 0.013276458, 0.0035143564, -0.037459068, -0.021921912, 0.008165912, -0.018729534, -0.015304235, 0.011591211, 0.0032745856, 0.002618641, -0.012426984, 0.009529181, -0.0050831432, 0.006158687, -0.0150439115, -0.0069533563, 0.03129353, -5.326339E-4, 0.0075219558, 0.0286629, 0.005459926, 0.02246996, -1.3765419E-4, -0.012516041, -0.016112605, -0.019894134, 7.471433E-4, -0.0062237675, -0.0047508893, 0.01089245, -0.015057613, -0.030663274, -0.019592708, -0.027854528, 0.017838955, 0.0035554601, 0.0076178643, 0.0021356738, 0.02257957, 0.021634186, -0.016920976, -0.0032745856, 0.0016578445, -0.012337926, 0.014852095, 0.031457942, 0.001186866, 0.014961705, -0.0041343356, -0.03299248, -0.0019455696, 0.024155207, 0.0026272042, 0.015167222, -0.01409853, -0.0061312844, -0.011735073, -0.009926516, 0.0063710557, 0.0064738146, -0.0034013216, 0.010269046, -0.02133276, 0.004839947, 4.367256E-4, 0.018729534, 9.044929E-5, -0.028991727, -0.004826246, -0.004942706, 0.0015242579, 0.013153147, -0.020908022, 0.010995209, -0.01845551, -0.0019421444, -0.005994273, -0.045926403, -0.022223338, -0.016002996, 0.040089697, 0.010275896, 0.053736087, -0.010001872, 0.023182422, 0.017386816, 0.01537274, 0.015605661, -0.02419631, -0.015263131, -0.008385131, 0.0037644033, 0.0140300235, 0.024977278, 0.009652492, -0.0014566083, 0.008905777, 0.010954105, 0.006538895, 0.027854528, 0.017263506, -0.023360537, -0.02455254, -0.005322914, -0.020277768, -0.011084267, -0.03074548, -0.019346086, 0.022305544, 0.0014240679, -0.011577509, -0.021483473, 0.019291282, 0.0026991353, 0.015852282, -0.02581305, 0.0137559995, -0.017195, -0.0027710667, -0.018414406, -0.008528993, -0.008960581, -0.016797666, 0.022168534, 0.010810243, -0.0064875158, -0.0041651633, 0.021360163, -0.011419945, -0.015550856, 0.016605848, -0.012981882, -0.015605661, -0.01960641, -0.0048776255, -0.022442557, 0.009378468, 0.0015816317, -0.006812919, 0.004918729, -0.02545682, -0.05055741, 0.021826003, -0.0025586982, 0.045104332, 0.008070003, 0.052420773, 0.043898627, 0.009652492, -0.008515293, 0.008131659, -0.008398833, 0.0050146375, 0.014317748, 0.022113727, -0.020373676, 0.0035965636, -0.0045179687, -0.012166661, -0.023977092, -0.023319433, 0.032526635, 0.010063527, 0.025402015, -0.03304728, -0.003331103, -0.028936923, 0.008275522, -0.0050523155, 0.007282185, -0.0024901922, -0.040884364, -0.004908453, -0.0025295832, -0.016030397, 0.005435949, 0.022922099, -0.028251864, 0.01672916, -0.020346275, 0.010563621, -0.010796541, -0.0024542266, 0.034307793, -0.010488264, -2.932912E-5, 0.010899301, 0.016907275, -0.004709786, 0.002466215, 0.010317, 0.03406117, -0.00745345, 0.03132093, -0.0018256842, -0.01698948, 0.019825628, 0.025415717, -0.008220716, -0.026182983, -0.008981133, -0.00573395, 0.03244443, 9.676469E-4, 0.0030570792, 0.003204367, -0.0052475575, -0.01993524, 0.00533319, -0.001284487, 0.012228317, -0.036636993, -0.004209692, -0.005870962, 0.0086043505, 0.0054873284, -5.6003634E-4, -0.005322914, -0.0044974172, 0.0075630597, -0.0029817226, -0.0016878159, -0.01868843, -0.012481788, -0.043706812, -0.02042848, -0.015742673, -0.010899301, 0.012365328, -0.01434515, 0.008433085, -0.012687306, -0.01409853, -0.0054051215, 0.005179052, -0.012913376, 0.0073780934, 0.012166661, -0.015852282, 0.011036312, -0.014235541, 0.023977092, -0.006275147, -0.007700071, -0.010796541, -0.0045830496, 0.021921912, -0.027594207, 0.00533319, 5.733094E-4, -0.011714522, 0.002407985, 0.015331637, 0.023483848, 0.025141692, -0.0052681095, -0.030252239, -0.0119611425, -0.002139099, 0.038253736, 0.0014737347, 0.004110358, 0.024251115, 0.005411972, 0.04274773, 0.024059298, -0.0090359375, -0.030033018, 0.0072068283, -0.003863737, -0.025484223, -0.008302924, -0.0013564182, 0.00940587, 0.016564744, 0.003428724, -0.022949502, -0.014468461, -0.016578445, -0.019853031, -0.0024285368, 0.02775862, 0.05422933, 0.0070972187, 0.008405683, 0.008727661, 2.1172628E-4, -0.002423399, -0.013118894, -0.004761165, 0.025443118, -0.0030861942, 0.024511438, 0.0110637145, -0.028046345, -0.00335508, 8.040889E-4, 0.0138724595, 0.017441621, 0.013975219, -0.012502341, -0.009152398, -0.012694157, -0.007062966, 0.004254221, 0.0057031224, 0.01800337, -0.041596826, 0.010186838, 0.01583858, 0.019414593, -0.0030056995, 0.021031333, 0.0206477, -0.0077548763, -0.010734886, -0.005713398, -0.019770823, 0.018154083, -0.024182608, 0.02901913, 0.0076315654, 0.013324412, 0.03510246, 0.02283989, -0.006412159, -4.0161627E-4, -0.018195186, 0.0014583209, -0.018962454, 0.006305975, -0.0028755383, 0.026100775, -0.040308915, 0.02029147, -0.02601857, -0.0016535629, -0.0021579382, -0.01365324, -0.009145548, 0.020620298, 0.021990418, -0.059243966, 0.0015002808, -0.009508629, 7.7818506E-5, -0.011625464, -0.0073917946, -0.021647887, -0.029046534, -0.006305975, -0.0012682169, -0.0110226115, -0.022730282, 0.0046995096, -0.018071875, -0.006333377, 0.012796916, 0.1789924, -0.0148109915, 0.0037404262, 0.05491439, -0.008981133, 0.011269232, 0.017359413, 0.019633813, 5.27496E-4, 0.022785086, -0.011282934, 6.4053084E-4, 0.0015002808, 0.0070835175, 0.023387939, -0.010399207, -0.034198184, -0.020332573, -0.019387191, -0.042610716, -0.012885974, 0.010721185, -0.004853648, -0.015619362, 0.0016518503, -0.005713398, -0.012262569, 0.007816532, 0.00791929, 8.311701E-5, -0.013488826, -0.020908022, 0.013927264, 0.007158874, -0.01823629, -0.0075082546, -0.011721372, 6.6536426E-4, 0.020003743, -0.0035143564, -2.9115038E-4, 0.0063744807, -0.0026289166, -0.008001498, 0.0028447106, 0.0040418524, -0.01801707, -0.014605474, -0.023593457, -0.016277019, -0.050009362, -8.6916954E-4, 0.027429791, 0.024977278, -0.019428294, -0.006377906, 0.0071040695, 0.001289625, -0.009851159, -0.0121187065, -0.005367443, 0.037760492, -0.03770569, 0.0114541985, -0.0066348035, 0.02283989, -0.026333697, -0.0011406245, 0.011426796, -0.02075731, -0.019661214, -0.015331637, -8.811581E-4, 0.011988546, -0.011762476, 0.0029320556, 0.011317187, 0.01387931, 0.015153522, 0.01261195, -0.03806192, 0.0029166418, -6.5937E-4, 0.007398645, -0.022113727, -0.015167222, 0.015619362, -0.014975406, -0.009666193, -0.024730656, 5.865824E-4, -0.035157267, -0.014167035, 0.0025124566, -0.0149069, -0.0044597387, 0.024812864, 0.014742485, -0.012659904, -0.010022424, -0.029156143, 0.030553665, 0.015194625, 3.864165E-4, -0.021949314, -0.026169281, 0.006470389, -0.0016861033, 0.02730648, -0.021921912, -0.02603227, -0.01284487, 0.011406245, -0.012714709, -0.010810243, 0.03197859, -6.846316E-4, 0.002803607, 0.04310396, -0.025004681, 0.007953543, -0.018715832, 0.0044802907, 0.006607401, -0.0043946584, -0.028854717, -0.027662711, 0.007850785, -0.011228129, -0.032718454, 0.0047851424, -0.02578565, 0.019250179, -0.015865983, -0.008823569, 0.014632876, 0.020551791, -0.0020500412, 0.007213679, -0.005641467, 0.0036445179, -0.019236477, 0.013906713, 0.0066998843, 0.01021424, -0.041350204, 0.009083892, -0.011461049, -0.003481816, -0.02455254, -0.019250179, -0.009118145, 0.010481414, 0.017606035, 0.044885114, -0.0062819975, -0.0105567705, -0.036362972, -0.0044220607, 0.039048404, -0.042473704, 0.028772509, 0.02075731, -0.00951548, -0.031046906, -0.0113377385, -0.17669061, 0.01996264, 0.009453825, -0.028854717, 0.020606596, -0.00745345, 0.034417402, 0.007302737, -0.0039836224, -0.025936361, 0.021867108, 0.009090743, -0.048474826, -0.0030639297, 0.017743047, 0.007179426, -0.013022985, 0.021209449, 0.020113355, -0.008419384, 0.030033018, -0.00986486, -0.0090359375, -6.212635E-4, 0.023552354, 0.0024987555, 0.011056864, -0.0015901949, -0.0024371, -0.011317187, -0.01467398, -0.020743608, 0.017345712, 0.002289812, -0.008124809, 0.006470389, -0.0068779998, -0.007213679, -0.013461424, -0.0033225396, 0.03291027, 0.017071689, 0.020949127, 0.0063710557, 0.008693408, 0.017455323, 0.037541274, -0.0206477, 4.251652E-4, -0.008042601, 2.7209715E-4, -0.026676226, 0.03233482, -0.0034389999, 9.650779E-4, 0.0071314718, 0.008391982, 0.003692472, 0.019592708, 0.006490941, -0.04198046, -0.011865235, 0.0046036015, -0.012988732, -0.008803017, -0.016002996, -0.008111107, 0.014180737, -0.031129114, 0.016564744, -0.020579195, 0.022401454, 0.0071314718, -0.0061415606, 0.0041343356, -0.017386816, -0.035732716, -0.005627766, -0.0027522275, 0.015865983, -0.008563247, 0.03844555, -0.008885224, 0.013817655, -0.0029526073, -0.01123498, 0.010460862, 0.009583985, 0.005172201, -0.003980197, 0.006391607, -0.011509003, -0.022497362, 0.004918729, -0.003423586, 0.0128996745, -0.0110637145, 0.01124183, 0.005295512, -0.018880246, -0.015989294, -0.0019421444, -0.016208513, 0.014139633, 0.014660278, 0.010584173, 0.015098716, 0.023429044, 0.017838955, -0.001152613, -0.00963879, -0.01112537, 0.014167035, 0.009714147, -0.025607534, 0.008056303, 0.0015011372, -0.026292592, -0.00441521, 0.018661028, 0.053379856, 1.2320372E-4, 0.012173511, 0.0012827744, -0.0032266313, -0.010275896, -0.08215237, -2.1327836E-5, 0.012474937, 0.03855516, -0.0136395395, 0.034581814, 0.0055421335, 0.0032660223, -0.020592896, 0.04050073, 0.01066638, -0.02030517, 0.009282559, -0.01409853, 0.007775428, -0.010344402, -0.021003932, -0.005113971, -0.009762101, 0.01616741, -0.011344589, -0.011248681, -0.018743234, -0.014372554, -0.023387939, 0.012947629, -0.027361285, 0.021976717, 0.012420133, 0.006189515, 0.017907461, -0.017797852, 0.011885786, -0.041679036, -0.018359601, -0.021771198, -0.015865983, -0.027059859, -0.0028241589, -0.035184667, 0.011659716, 0.014687681, 0.012885974, -0.01960641, -0.01065953, -1.291846E-5, -0.03567791, 0.025593832, -0.01353678, -0.005220155, -0.0056380415, -0.009316812, -0.02099023, -0.017482724, 0.022415154, 0.021743797, 0.018181486, 0.021730095, -0.020113355, -0.021045035, -0.0120365, -0.0027727792, -0.018962454, 0.013153147, -0.0073712426, 0.011002059, -0.0074054957, -0.012009097, 0.02592266, -0.022963202, -0.026004868, 0.034115974, -0.023524951, -0.008001498, -0.021250553, -0.0053845695, -0.017921163, -0.008090556, 0.030361848, -0.025086887, 0.0023411918, -0.028032644, -0.0078233825, -0.010104631, 0.012817468, 0.019181672, 0.023881182, 0.02029147, 0.0041720136, -0.044364467, -0.0051105455, 0.019674916, 0.0036171153, -0.0010986646, -0.016674355, 0.016194813, 0.012433834, -0.0040213005, -0.016509939, 0.005884663, -0.013523079, -0.0098922625, -0.07541138, 0.03934983, -0.015783776, -0.0039767716, -0.016920976, -0.008727661, 0.0039767716, -0.0076658186, -0.0062443195, 0.023415342, -0.010686932, 0.0053605926, -1.5654685E-5, -0.015208326, -0.010995209, 0.008618051, 0.016208513, 8.25497E-4, 3.71859E-4, -0.012057051, -0.027059859, 0.024456633, 0.009083892, 0.0038842887, 4.863924E-4, 0.024182608, 5.6859956E-4, 0.027374987, -0.010995209, -0.026319996, 0.035595704, -0.027566804, -0.016153708, -0.0011860096, -0.009412721, -0.023908585, -0.008583798, 2.5882412E-4, 0.0052681095, 0.01652364, 0.002289812, -0.022100028, -0.013221653, -0.005953169, 0.0055421335, 0.012536593, -0.014235541, 0.013468275, 0.0062203426, 0.009255157, 0.027429791, -0.008864673, -0.012337926, -0.011735073, 0.011570659, -0.01755123, 0.042418897, 0.015961891, 0.012851721, -0.011851533, 0.02797784, 0.0031684013, 0.016263317, -0.02855329, 0.009590836, -0.0096593425, 0.010056677, -0.017838955, -0.0045248196, -0.011995396, -6.876287E-4, 0.003531483, 0.013461424, 0.046255235, 0.01158436, 0.006905402, 0.0069293794, 0.0036616442, 0.0056448923, 0.00824812, 0.021387564, -0.014057426, -0.016386628, 0.021277955, -0.0032745856, 0.024237413, -0.004045278, 0.013399769, 0.0016809653, 0.01811298, -0.002123685, 7.7818506E-5, 0.009686745, 0.006299124, 0.008755064, 0.007706922, -0.0041274847, -0.004768016, -0.010536219, 0.034828436, 0.0047440385, -0.0049153036, -0.010885599, -0.029293153, -0.02729278, 0.019441996, -0.017030586, -0.025319807, 7.7368936E-4, 0.0046618315, 0.022689179, 0.015660465, -0.015948191, 0.021757497, -0.04726912, 0.017934864, -0.012426984, -0.012454386, -0.0054290984, 0.034444805, 0.012831169, -0.0019352938, 0.03945944, -0.0078233825, 0.04874885, 0.02099023, 0.029430166, -0.037897505, 9.2568697E-4, -0.0058469847, -0.0019215925, -0.013242205, -0.014852095, 0.008501591, -0.008556396, -0.0020157883, 0.013947817, 0.0470225, -0.017441621, 0.07152024, 0.022086326, -0.0078028305, 0.01892135, -0.02707356, 0.007857636, 0.003795231, 0.018743234, -0.021346461, -0.013728597, 8.661724E-4, -0.011556958, -1.875351E-4, -0.0378701, -3.9305302E-4, -0.00289609, 0.0039390936, 0.028498486, -0.021168346, -0.01593449, -0.011029461, -0.011132221, 0.018852845, -0.0025586982, -0.023908585, 0.0012750675, 0.018852845, 0.0027076986, 0.006384757, -0.030252239, 0.009309961, -0.02373047, -0.006538895, -0.006275147, 0.025484223, -0.020085951, -0.015359039, 0.00499066, 0.016660653, 0.020620298, -0.008200165, -0.008768764, -0.019250179, -0.009015386, 0.017003182, -0.001846236, -0.020277768, -0.0366918, -0.019483099 ], + "id" : "8fc9c93f-935b-4328-890f-9f49e7797977", + "metadata" : { + "source" : "movies.csv" + } + }, + "ab1c0076-0d9f-4976-ac96-a123779b6c37" : { + "text" : "Germain-Peter Mensah-Arthur Holden-Michael Sinelnikoff-John Dunn-Hill-Dennis St John-Neil Napier-Dylan Smith-Maurizio Terrazzano-Robert Paradis-Kwasi Songui-Alexandra Beaton-Fr��d��ric Smith-Loucas Minchillo-Nicholas Minchillo-Tom Rack-David Francis-James Bradford-Andrew Shaver-Robin Wilcock-Kent McQuaid-Marcel Jeannin-Jere Gillis-Jeremy Thibodeau-Tyrone Benskin-Robert Maillet-Patrick Sabongui-Leon Laderach-Dave Lapommeray-Vervi Mauricio-Charles Papasoff-Isabelle Champeau-Veronique-Natale Szalankiewicz-Ma��va Nadon-David Thibodeau-David Schaap-Jean Michel Par��-Stewart Myiow-Andreanne Ross-Sara Giacalone-Ariadne Bourbonni��re-Isabelle Fournel-Sandrine Merette-Attiow-Elisabeth Etienne-Danielle Hubbard-Ruan Vibegaard-Genevi��ve Guilbault-Bonnie Mak-Am��lie Sorel-Caroline Aspirot-Gina Gagnon-Tania Trudel-St��phanie Aubry-Mercedes Leggett-Stephania Gambaroff-Chanelle Lamothe-Sabrina-Jasmine Guilbault-Manny Cortez Tuazon-Cindy-Atif Y. Siddiqi-Camille Rizkallah-Trudi Hanley-Neon Cobran-Gary A. Hecker,epic-army-narration-blood splatter-gore-based on comic-sword fight-massacre-ancient world-based on graphic novel-ancient greece-warrior-ancient warfare-sparta greece-5th century bc-war-male protagonist-bloody death-sparta-spartans-battle of thermopylae-god king-battle axe,/h7Lcio0c9ohxPhSZg42eTlKIVVY.jpg,/xojLztOWoPax76UY4lrmS1M2Bwu.jpg,53182-14161-98-6479-10528-36557-604-27578-607-272-18785-58-2048-49538-197-605-58574-8681-652-1858-2501\r\n161,Ocean's Eleven,Thriller-Crime,en,Less than 24 hours into his parole charismatic thief Danny Ocean is already rolling out his next plan: In one night Danny's hand-picked crew of specialists will attempt to steal more than $150 million from three Las Vegas casinos. But to score the cash Danny risks his chances of reconciling with ex-wife Tess.,38.898,Village Roadshow Pictures-NPV Entertainment-Jerry Weintraub Productions-Section Eight-Warner Bros. Pictures,12/7/01,85000000,450717150,116,Released,Are you in or out?,7.4,10310,George Clooney-Brad Pitt-Matt Damon-Andy Garc�_a-Julia Roberts-Bernie Mac-Elliott Gould-Casey Affleck-Scott Caan-Eddie Jemison-Don Cheadle-Shaobo Qin-Carl Reiner-Holly Marie Combs-Topher Grace-Joshua Jackson-Barry Watson-Shane West-Steven Soderbergh-Siegfried Fischbacher-Roy Horn-Wayne Newton-Henry Silva-Angie Dickinson-Wladimir Klitschko-Lennox Lewis-Jerry Weintraub-Michael Delano-Scott L.", + "embedding" : [ 0.009933641, -0.0135439765, -0.0050781216, -0.04666307, -0.03166522, 0.05022471, 0.009919728, -0.0013686582, -0.033612993, -0.031526092, 0.031859998, 0.035254687, 0.022983719, 0.011290126, 0.011860545, 0.011352733, 0.025905378, -0.007331973, 0.008034563, -0.022928068, -0.013022252, -0.007846742, -0.011290126, 0.004559875, 0.006170266, 0.008368466, 0.018740356, -8.560635E-4, -0.0030973065, -0.012222274, 0.008632807, -0.014900462, 0.0033877334, -0.015846523, -0.018016897, 0.010747531, 0.011603161, -0.017516041, 0.020298574, 0.011004916, -0.0020573349, 0.0046503074, -6.5519946E-4, -0.017209964, -0.015276103, 0.0023216757, 0.015665658, -0.027700111, -0.016736932, 0.028548783, 0.027588809, 0.037118983, -0.020409876, -0.020159448, -0.020215098, -5.356375E-4, -0.004059019, 0.0074641434, -0.0013547455, -0.004959864, 0.01230575, -0.030663507, -0.035560764, -0.0117840255, -0.013697016, 0.0047581308, -0.004351185, -0.01829515, -0.005794624, 0.0040242374, 0.019839456, 0.019936845, 0.0027425336, -0.0024451504, 0.030440906, -0.03333474, -0.023053281, -0.002669492, -0.018350802, 0.009683213, 0.0028381832, -0.011053611, -0.016291728, 0.005606803, 0.002580799, -0.0051476853, -0.009217138, 0.03480948, -0.014114396, 9.895382E-4, 0.0051337723, 0.04196059, -0.0061807004, -0.010204938, -0.008730195, 0.03784244, -0.022635901, 0.023846304, -0.0125353085, -0.02121681, 0.0017147356, -0.008111082, 0.0051337723, -0.015846523, 0.011415339, 0.0039129364, 0.007436318, -0.015957823, 0.012771824, 0.0031964341, 0.016542155, -0.005818971, 0.008611938, -0.052728992, -0.006340696, -0.013961357, 0.025321046, -0.03166522, -0.01708475, -0.020674216, 0.02832618, 0.020507265, 5.5041973E-4, -0.020187274, 0.04326838, 0.03965109, 0.0073597985, -0.020590741, 0.012883126, -0.003486861, 0.027755762, -0.0056415848, 0.025529735, 0.0125422655, -0.031080889, 0.047497828, -0.026294932, 0.004104235, -0.032110427, -0.014510907, 0.03798157, 0.03149827, -0.018698618, -0.015735222, -0.024694975, 0.01037189, -0.0063963467, -0.0068589426, 0.015776958, -0.005307681, 0.017794294, 0.018100373, 0.02330371, 0.008862366, 0.009794515, -0.0013625714, -0.009189313, 0.0057041915, -0.009384091, -0.014594383, -0.0036590302, -0.010121462, -0.006340696, -0.007860654, 0.0097527765, 0.030802634, 0.01541523, -0.011874457, -0.012354444, 0.0044624866, -0.0022155915, 0.021063771, -0.035087734, 0.016987361, -0.014844811, 0.018823832, 0.013210073, -0.0075476193, -0.046802197, -0.023178495, 0.0089875795, 0.0044659646, 0.027087953, 0.029383544, 0.01042754, 0.009933641, 0.022872416, -0.019352514, 0.008556288, -0.021982007, 0.0017590822, 0.0069389404, 0.0110188285, -0.009182357, -0.631301, -0.0145665575, -0.016959535, -0.0011225779, 0.017307352, 0.006177222, 0.0056172376, 0.012340532, -0.02622537, 0.015512618, -0.037063334, 0.017961247, 0.013502239, -0.015512618, -0.019102085, -0.026726224, -0.008368466, -0.023526313, 0.019129911, 0.01113013, -0.029856574, 0.015665658, 0.017836032, 0.004685089, 0.016263902, 0.013133553, -0.007770222, -0.032666933, 0.006111137, -0.0056276717, -0.011443165, 0.011957933, 0.0035825106, -0.0047581308, 0.038732853, -0.0066259056, -0.0070085037, 0.057041917, 0.021202898, 0.032416504, -0.013877881, -0.009258877, 0.0058920127, -0.0082432525, -7.7997864E-4, 0.017001273, 0.0037425063, -0.0046990016, -8.93019E-4, -0.0079858685, 0.007825873, -0.004281622, -0.015401317, -0.021035945, -0.012472702, 0.0052833334, 0.008500637, -0.036061622, 0.02523757, 4.556397E-4, -0.02330371, 0.015025675, 4.6042216E-4, 0.011220562, 0.003885111, 0.016917797, -0.010455366, -0.0070850234, 0.008382379, -0.033418216, 0.010413628, 0.00794413, -0.014441344, -0.017279526, 0.010907527, 0.010406671, 0.038760677, -0.0048381286, -0.006340696, 0.015345667, -0.009467566, -0.007707615, 0.002982527, 0.013175291, 0.027769674, -0.0038364166, -0.036200747, 0.0071093705, 0.00415293, -0.0041424953, 0.011637942, 0.017015185, 0.017947335, 0.0050816, -0.0031912168, 0.0031633917, -0.01541523, 0.01008668, 0.036479, -0.07023112, -0.0028086188, -0.014183959, 0.022246348, -0.015164802, 0.020590741, 0.003968587, -0.0012782259, -0.0017434305, 0.03391907, -0.01677867, -0.008354554, -0.0071650213, -0.017154314, 0.0013312679, -0.008034563, -0.032416504, 0.007651964, 0.009905816, 0.0016086516, -0.01624999, -0.0035390335, 3.293388E-4, 0.009940597, -0.019533377, 0.017098662, 0.034002546, -0.0016390856, -0.016472593, 0.0016069125, 0.013703972, -0.008111082, -0.010093637, 0.013641366, -0.0193386, 0.0012521396, 0.012806606, 0.008333685, 0.0014634382, 0.01619434, -0.018503841, -0.010740575, -0.01264661, -0.0049981237, -0.013335287, -0.0021860271, -0.025334958, -0.026865352, -0.008792803, -0.018030811, -0.014483081, -0.011450121, 0.019004697, -0.0050920346, 0.021689842, 0.014232653, -0.0050050803, -0.025112355, -0.02451411, -0.0076171826, -0.02424977, 0.013154422, 0.017682994, -0.010671012, -0.025613211, 0.018712532, -0.010594493, 0.006747641, 0.009231051, -0.009168444, -0.009571912, 0.028409656, -0.003777288, 0.011025785, 0.010949265, -0.0122918375, 0.039261535, -0.002206896, 0.028173141, 0.008973667, -0.008660632, 0.006928506, -0.02529322, -0.022385474, 8.9214946E-4, 0.030607857, 0.0171404, 0.017599517, 0.008862366, -0.007057198, 0.0092380075, -0.003525121, -0.018782094, -0.007909348, -0.0028468785, 0.016514331, 0.028117491, 0.027115779, -2.630363E-4, 0.0035059908, 0.009384091, 0.031804346, 0.030997412, -4.3585763E-4, -0.004459008, 0.023275884, -0.022246348, 0.009349309, -0.023651525, 0.01917165, -5.552022E-4, 0.0105110165, -0.010657099, -0.011255343, 0.005057253, -0.0035790324, 0.021940269, -0.025474085, 0.0033912114, -0.010893615, 0.024430634, 0.024068905, 0.007770222, 0.011749243, 0.015290016, -0.024054993, 0.0043442287, 0.0170291, -0.014211785, -0.004935517, -0.025641037, -0.01624999, 0.005126816, 0.0021199419, 0.0029442671, 0.0012043149, -0.012597916, 0.026072329, -0.002667753, 0.026002767, -0.027727935, 0.00559289, 0.01746039, 0.016903885, 1.0305424E-5, 0.0130500775, -0.02722708, 0.013043121, 0.011637942, -0.008298903, 0.05501067, -0.010483191, 0.030273953, -0.010239719, 0.001524306, -9.573651E-4, -0.0063059144, -0.007352842, 0.016277814, 0.015512618, 0.020660304, 0.00815282, -0.023178495, 0.014552644, -0.0014043094, 0.008438029, -0.008451942, -0.010594493, 0.010935352, 0.0020625521, -0.03915023, -0.009884947, -0.01410744, 0.0038120695, 0.007561532, -0.0033477345, -0.026601011, 9.0606214E-4, 0.008918016, 0.002476454, 0.007457187, -0.017682994, -0.03814852, 0.0032051296, 0.030607857, -0.016876059, -0.016736932, 0.0035999015, -0.003572076, -0.04040237, -0.0062467856, -0.018058635, 0.021411587, -0.030997412, -0.0014425692, -0.0077145714, -0.0112623, 0.012069235, -0.006865899, 0.019950759, 0.0045877006, 0.0071058925, 0.00470248, -0.004472921, -0.019783806, 0.03344604, -0.0056241937, -0.0020816822, 0.0014017008, 0.001395614, -0.029550495, 0.012194448, 0.013620497, -0.03286171, 0.019143824, -0.0055581084, -0.01327268, -0.012250099, -0.0034433838, 3.026004E-4, -0.013703972, -0.02027075, -0.038371123, -0.030162653, -0.004003369, 0.08336467, 0.050502963, -0.0017434305, 0.009154532, -0.004403358, 0.010900571, -5.421591E-4, -0.0150813265, -0.0014269174, -0.011505771, 0.026767962, -0.008827584, 0.008118038, 0.01598565, 0.015317841, -0.009377134, -0.014524819, -0.0037459843, -3.191217E-4, -0.0045181373, -0.03870503, -0.006027661, 0.020187274, 0.032333028, -0.0044242265, -0.0027894888, 0.03071916, 0.0054537635, 0.0038329384, 0.008389335, -0.011881414, -0.0021112466, 0.0122848805, 0.007839785, 0.009627562, -0.011957933, 0.025251482, 0.0070119817, 0.03578337, 8.6867186E-4, 0.0030312212, 0.009439741, -3.38469E-4, -0.007345886, 0.008959754, -0.009968422, -0.01499785, 0.027449682, 0.031804346, -0.03403037, 0.0017443, -3.8803284E-4, -0.013620497, -0.017112575, 0.008563244, -0.0051476853, -0.00820847, -0.0047929124, -0.0019616855, 0.007881523, -0.015192627, -0.030691333, 0.01949164, -0.0074154492, 0.0016773454, -0.023498487, -0.013133553, -0.0040416284, -0.017182138, 0.011004916, 0.019602941, -0.026767962, -0.013530064, -0.0047963904, 0.023387186, 0.0073389295, 0.022719378, -5.899838E-4, 0.013335287, 0.00820847, -0.029689621, -0.024319334, 0.007881523, -0.028089665, -0.008403248, 0.014538732, -0.0033129528, 0.0061215716, -0.003739028, 0.010051899, -9.4606105E-4, 0.003547729, -0.0139544, -0.005735495, 0.018740356, -0.0035616416, 0.002203418, 0.022719378, 0.011721418, 0.009850165, 7.7986995E-5, -0.028548783, -0.013703972, -0.014483081, -0.0062850453, -0.018489929, -0.0065806895, 0.0052833334, -0.029967874, -0.014900462, -0.024319334, -0.016152602, -0.0010964917, -4.0172812E-4, 0.01133882, 0.008006738, 0.028006189, 0.02603059, -0.00911975, -0.0038572857, 0.0023355882, -0.012493571, 0.026976652, 0.024736714, -0.0047789994, 0.023164583, 0.0063824337, -0.025752338, 0.0036694647, 0.018016897, 0.008180645, 0.011025785, -0.02398543, -0.019129911, -0.00642765, -0.022176784, 0.007895436, -0.008848453, -0.01478916, 0.0138083175, -0.018615142, -0.0059094033, 0.009676257, 0.023915866, -0.0024294986, -0.025529735, 0.012201405, -0.025376696, 0.009078012, 0.013940488, -0.010949265, 0.005238117, -0.023317622, -0.007220672, -0.013230942, -0.029856574, -0.020312486, 9.6779957E-4, 0.025613211, 0.001333007, 0.03814852, -0.006198091, 0.021439413, 0.015721308, 0.011881414, 0.015763046, -0.018378627, -0.012625741, -0.029494844, 0.010121462, 0.0145804705, 0.023484575, 0.01209706, -7.363929E-5, 0.018782094, 0.009947553, 0.022482863, 0.008792803, 0.010378846, -0.027101867, -0.02262199, 2.0716824E-4, -0.03046873, -0.015916085, -0.022455037, -0.013669191, 0.034308627, 0.005968532, -0.011930108, -0.012938776, 0.03035743, -0.003676421, 0.0015764786, -0.023108933, 0.026086243, -0.030496556, -0.007756309, -0.022274172, -0.013961357, 0.0071858903, -0.019408165, 0.018893395, 9.999726E-4, -0.025988853, 0.013383981, 0.03236085, -0.009850165, -0.019213386, 0.016528243, -0.0059789666, -0.008618894, -0.023053281, -0.0066119926, -0.025195831, -0.0068589426, 0.003589467, -0.006361565, 4.5172675E-4, -0.026851438, -0.042600572, 0.030969586, 0.0058746217, 0.03940066, 0.015011762, 0.049195174, 0.024500199, 0.015902173, -0.014636121, 0.023804566, -0.0017260397, -0.014149178, 0.031581745, 0.013752667, -0.021815054, 0.004552919, -0.014914374, 0.0024712367, -0.040680625, -0.02994005, 0.047943033, 0.018030811, 0.024013255, -0.02963397, 0.0047581308, -0.03773114, 0.028034015, -0.004907692, 0.0030399167, 0.0058537526, -0.037425064, -0.021926356, -0.004368576, -0.0044416175, 0.017043011, 0.02246895, -0.036395524, 0.009210182, -0.034308627, -0.0024347159, 0.0016921276, -0.00553724, 0.03709116, -0.029133115, 0.007728484, 0.008862366, 0.0125422655, 0.005885056, -0.008284991, 0.009731907, 0.029105289, -0.017488217, 0.022329824, 0.0036868555, -0.011178824, 0.01243792, 0.020757692, -0.018949047, -0.0214255, -0.009495392, 0.006973722, 0.01886557, 0.003888589, 0.006093746, 0.01526219, -0.024945404, -0.015248278, 0.011310995, -0.005272899, 0.012827475, -0.030107, 7.460665E-4, -0.024152381, 0.015470881, -0.0071719773, -0.008291947, -0.00166865, -2.6499273E-4, 0.0031460007, -0.005989401, 0.0044833557, -0.017251702, -0.01567957, -0.03480948, -0.01975598, -0.013251811, -0.0032903447, 0.010900571, -0.029049639, -0.0010034508, 0.001712127, -0.008952798, 0.0019982061, -0.0016660413, -0.01314051, 0.013634409, 0.011818807, -0.0050537745, 0.001596478, -0.0036207703, 0.0019964671, -0.010984047, -0.009377134, -0.0059754886, 0.012806606, 0.012104017, -0.02732447, 0.006424172, 0.012771824, -0.027936626, 0.004472921, 0.024750626, 0.02309502, 0.028799212, -0.010573624, -0.040012818, -0.0073389295, -0.0034572966, 0.0266984, 0.00491117, -0.009133663, 0.03224955, 0.02246895, 0.04232232, 0.013175291, -0.0046294383, -0.009551043, 0.009112794, 0.006344174, -0.019269038, -0.004243362, -0.008771934, 0.007846742, 0.0073597985, -0.018740356, -0.021411587, -0.008535419, -0.027783588, -0.023442836, -0.0051998575, 0.022357648, 0.052144658, 0.020312486, -0.0012225752, 0.03166522, 0.015846523, -0.0042085806, -0.006594602, -0.003111219, 0.016444767, 0.0090014925, 0.005185945, 0.0020434223, -0.039567612, 0.012138798, 0.0024451504, 0.018211676, 0.0069598095, 0.0122918375, -0.01782212, -0.0071371957, -0.01535958, 0.006531995, -0.0032051296, -0.007964999, 0.013390938, -0.038899805, -1.6793018E-4, -0.0016747367, 0.02246895, -0.008785847, 0.0097597325, 0.0029320936, -0.010253632, -0.0011677941, -0.0092658335, -0.016917797, 0.016917797, -0.016973449, 0.01865688, 0.020201186, 6.8911153E-4, 0.023373272, 0.025014967, -0.009961466, -0.005488545, -0.013314418, -0.0026973174, -0.011095348, -0.0017469086, -0.0011851849, 0.03319561, -0.017446479, 0.012187492, -0.022023745, 0.0115335975, -0.01478916, -0.0027668807, 0.008431073, 0.036312047, 0.0140587455, -0.046774372, 0.013975269, -0.026614923, 0.014636121, 6.308523E-4, 1.8273957E-5, -0.028548783, -0.021675928, -0.012973557, -5.056383E-4, -0.0145665575, -0.027588809, 0.0019234256, -0.01636129, -0.01071275, 0.015067413, 0.19110434, -0.0052415957, 0.004831172, 0.04780391, 4.6563943E-4, 0.025014967, 0.032054774, 0.02743577, 0.008890191, 0.022691552, 0.0016182165, 0.0022625467, 0.013787448, -0.002205157, 0.018364714, -0.032472152, -0.02372109, -0.023679351, -0.007554576, -0.008918016, -0.0042746654, 0.00276862, -0.004302491, -0.023888042, 0.0026381887, 0.013717885, -0.016236076, 0.0062502637, 0.019199474, 0.0014608295, -0.01173533, -0.012618785, -0.00940496, -0.0045285714, -0.017279526, -0.005481589, -0.0039129364, 0.0047129146, 0.0040659755, -0.0031216536, 0.0014886549, 0.003398168, -0.01389875, -0.017237788, -4.925952E-4, 0.004636395, -0.026712311, 0.0072415406, -0.02335936, 0.008758021, -0.03987369, 1.1005133E-4, 0.022580251, 0.02189853, -0.0059511415, -0.009168444, 0.0070050256, 0.003192956, -0.012389226, 0.0016712586, 0.0054955017, 0.030496556, -0.020284662, 0.010872746, -0.012201405, 0.030385254, -0.038371123, -0.0074641434, 0.0068554645, -0.03369647, -0.009467566, -0.037174635, -0.0064833006, 0.004079888, -0.014044832, -0.012924863, 0.010177112, -0.0010173634, 0.009481479, 0.015025675, -0.022580251, 0.006170266, 0.011651855, -7.8867405E-4, -0.026072329, -0.020159448, 0.00830586, -0.016848234, -0.012250099, -0.020034233, -0.016583893, -0.040096294, -0.008549331, -0.0012051844, -0.003272954, -0.003572076, 0.03564424, 0.0020242925, -0.02586364, -0.011464034, -0.029967874, 0.023526313, 0.025849726, -0.005210292, -0.026239282, -0.024541937, -0.0028068796, 0.018754268, 0.048833445, -0.01097709, -0.017418653, -0.0041111917, -0.008980623, -0.011457077, 0.0020260315, 0.033529516, 0.009050187, -0.0029929616, 0.024722802, -0.015749134, -0.0058085364, -0.024708888, 0.011199693, 0.0066328617, 0.004639873, -0.024792364, -0.02957832, 0.00432336, 0.0034607747, -0.018100373, 0.0127996495, -0.020187274, 0.0071580647, -0.009592781, 0.011011872, 0.0014982198, 0.01478916, 0.0030555686, 0.012403139, -0.015971737, -0.0125492215, -0.011811851, 0.004765087, 0.0076380516, 0.0027129692, -0.035727717, 0.013738754, -0.0020747257, -0.009648431, -0.033779945, -0.017849946, 3.665117E-4, 0.0112831695, 0.007304148, 0.040791925, -0.006514604, -0.02049335, -0.031442616, -0.009224095, 0.023261972, -0.040151943, 0.02603059, 0.03160957, -0.026823614, -0.01854558, -0.008611938, -0.1794177, 0.026294932, 0.007964999, -0.034837306, 0.035477288, 0.024319334, 0.03684073, 0.017126488, 0.0016043038, -0.01755778, 0.018837744, 0.010497103, -0.027449682, -0.0013564846, -0.005867665, 0.0027999233, -0.014044832, 0.033501692, 0.03172087, 0.007519794, 0.02957832, -0.003509469, -0.0112692565, 0.009432785, 0.019825544, -1.1173607E-4, 0.023874128, 0.002453846, -0.011950977, -0.011964889, -0.028938338, -0.00820847, 0.015721308, 0.010956221, -0.006403303, 0.0038051133, -0.0042677093, -0.020284662, -0.012917907, -0.020729868, 0.021049859, 0.016639544, 0.01970033, 0.0046711764, 0.008006738, 0.015916085, 0.048304763, -0.022023745, 0.007958042, 0.001888644, -0.013738754, -0.050280362, 0.03272258, -0.010309283, -0.0053250715, 0.017655168, 0.011561423, -0.0032190422, 1.9662504E-4, 0.017446479, -0.04243362, 0.0036590302, 0.014483081, -0.013425719, 0.007895436, -0.026781876, -0.019616853, 8.234557E-4, -0.028771386, 0.019978583, -0.02294198, 0.015804784, 0.016542155, 0.006323305, 0.010935352, -0.018893395, -0.041181482, -0.006998069, -0.009022362, 0.013787448, -0.01348137, 0.043991838, 0.004858997, 0.009036275, -0.0026086243, -0.020896818, 0.0042503183, -0.0030416558, 0.015039588, -0.010872746, -0.003335561, -0.010566667, -0.025961028, 0.013286592, 0.017168226, 0.00235124, 0.0031338271, 0.0070885015, 0.009606693, -0.0054989797, -0.011060567, -0.0068554645, -0.018573405, 0.01598565, 0.008681501, 0.004785956, 0.012194448, 0.01092144, 0.013794404, -0.0024051515, -0.014093527, 0.0029060075, 0.009224095, 0.024166295, -0.015234365, 0.008333685, -0.0052798553, -0.03249998, 0.0032503458, 0.02565495, 0.059768796, -0.008611938, 0.01238227, -0.005234639, 2.7651415E-4, -0.008848453, -0.10005987, 0.005902447, 0.014302217, 0.05642976, -0.017056923, 0.039706737, -0.001731257, 0.017098662, -0.018754268, 0.033946898, -0.0035859887, -0.040931053, 0.01416309, 0.0045459624, -0.0011973585, 0.0016677805, -0.0039164145, -0.012048366, -0.021411587, 0.017446479, -0.0024921056, 0.0067128595, 0.0065563424, -0.022385474, -0.020827256, 0.018517753, -0.02288633, 0.028715735, 0.0014208306, 0.013070947, 0.008598025, -0.01567957, 0.007450231, -0.041098006, -0.018935133, -0.039901517, -0.008055432, -0.033139963, 0.012180536, -0.0387885, 0.0029964396, 0.021383762, 0.016222164, -0.010803183, -4.3564025E-4, 0.0013338765, -0.029884398, 0.027463596, -0.013147466, -0.018670794, -0.008222383, -0.014705684, -0.021230724, -0.01306399, 0.014225697, 0.02487584, 0.017516041, 0.005332028, -0.0012964862, -0.02633667, -0.0069111153, -0.012375313, -0.011950977, 0.0035616416, 0.012667479, 0.012159667, -0.0020277705, -0.0076380516, 0.024472373, -0.011304039, -0.015429143, 0.033779945, -0.037536364, -0.013495282, -0.023512399, -0.007805004, -0.02963397, -0.012076191, 0.020409876, -0.021175072, 0.008417161, -0.02707404, -0.0016712586, -0.019115997, 0.0047372617, 0.022635901, 0.00836151, 0.032666933, -0.0016547373, -0.043240555, -0.013321375, 0.015735222, -0.0067789447, 0.0073597985, 0.002140811, 0.015373492, 0.013154422, -0.005109425, -0.015220453, -0.0071650213, -0.012319663, -0.008048475, -0.07707615, 0.032527804, -0.028409656, -0.0053494186, -0.0045633535, -0.00604853, -0.0092380075, 0.0012599655, -5.860709E-4, 0.013982226, -0.01277878, 0.024082819, 0.0049216044, -0.0052555082, -0.010608405, 0.0090014925, 0.008792803, 0.0049494295, 0.0049042134, 0.012952689, -0.017154314, 0.01708475, 0.032666933, -0.0023651526, 0.011443165, 0.017056923, 0.0065424293, 0.017112575, -0.015303928, -0.008041519, 0.022496775, -0.015693484, 0.0048242155, -0.0016303902, -0.011157955, -0.037425064, -0.0011243171, -0.007123283, 0.029160941, 0.008556288, -0.013683103, -0.02324806, -5.8259274E-4, 0.0015390883, -0.0011364906, 0.01719605, -0.016820408, 0.010399715, 0.015123064, -0.0022190697, 0.016403029, 0.0011164912, -0.01209706, -0.024500199, 0.025418434, -0.007624139, 0.044464868, 0.01078927, 0.0054050693, -0.027602723, 0.025028879, 4.3390115E-4, 0.020632477, -0.03119219, 0.0077423966, -7.386754E-4, 0.0025321045, -0.009662344, -0.011512728, -0.020451615, -0.022232434, -0.0064798226, 0.008340641, 0.04279535, 0.01734909, 0.0082432525, 0.01897687, 0.003839895, -0.006361565, 0.013084859, -6.1520055E-4, -0.0018016897, -0.018893395, 0.02413847, 0.006132006, 0.007098936, -0.006897202, 0.020646391, -5.2042055E-4, 0.019575115, 0.0070885015, 0.016444767, 0.016903885, -0.02299763, 0.00815282, 0.018573405, -0.011978802, -0.007519794, -0.0070919795, 0.027394032, 0.009349309, -0.0013164857, -0.008076301, -0.01389875, -0.023804566, 0.013091816, -0.020980295, -0.028256617, 0.0046990016, 0.001888644, 0.029272242, 0.006045052, -0.019435989, 0.005286812, -0.026879264, 0.011658811, -0.014427431, -0.019435989, -0.020131623, 0.020006409, 0.016973449, 0.007881523, 0.05089252, -0.008465855, 0.054676764, 0.0074919686, 0.028854862, -0.036562476, 0.0034677312, -0.012938776, 0.0043129255, -0.009634519, -0.007992825, 0.00563115, -0.0067859013, 0.0049007353, 0.018086461, 0.028173141, -0.02127246, 0.0817508, 0.009690169, -0.009279746, 0.017975159, -0.010093637, -0.0061285277, 0.0018312542, 0.021745492, -0.02299763, -0.00483465, 0.0018156024, -0.0082293395, -0.009244964, -0.04368576, -0.005585934, -0.0027894888, 0.01677867, 0.033167787, -0.019408165, -0.015178715, -0.008431073, 0.0036798993, 0.0140657015, 0.01209706, -0.0025703644, -0.0027842715, 0.025014967, -0.016291728, -0.014003094, -0.039567612, -0.009175401, -0.02732447, -9.756255E-4, 0.0012112712, 0.01319616, -0.010364934, 0.0010738836, 0.0019616855, 0.015290016, 0.019547291, -0.022065483, 0.008904104, -0.016291728, -0.038259823, 0.031915646, -0.02476454, -0.021063771, -0.012910951, -0.011227518 ], + "id" : "ab1c0076-0d9f-4976-ac96-a123779b6c37", + "metadata" : { + "source" : "movies.csv" + } + }, + "5dcb9312-4ba3-4270-881c-fad2f801ac27" : { + "text" : "694,18551,Daniel Radcliffe-Rupert Grint-Emma Watson-Jim Broadbent-Michael Gambon-Tom Felton-Alan Rickman-Bonnie Wright-Jessie Cave-Evanna Lynch-Freddie Stroma-Robbie Coltrane-Helena Bonham Carter-Maggie Smith-Timothy Spall-David Thewlis-Julie Walters-David Bradley-Warwick Davis-Gemma Jones-Helen McCrory-Natalia Tena-Mark Williams-Dave Legeno-Elarica Johnson-Geraldine Somerville-Oliver Phelps-James Phelps-Alfred Enoch-Robert Knox-Amber Evans-Ruby Evans-Louis Cordice-Scarlett Hefner-Jamie Waylett-Josh Herdman-Matthew Lewis-William Melling-Anna Shaffer-Devon Murray-Georgina Leonidas-Isabella Laughland-Afshan Azad-Shefali Chowdhury-Amelda Brown-Hero Fiennes Tiffin-Jack Pryor-Mark Lockyer-Paul Ritter-Frank Dillane-Joerg Stadler-Caroline Wildi-Ralph Ineson-Suzie Toase-Rod Hunt-Katie Leung-Nathan Clarke-Olivia Jewson-Freddie Rose,witch-dying and death-london england-magic-school of witchcraft-apparition-curse-teenage crush-school-werewolf-teenage love-luck-wizard-secret past-christmas-based on young adult novel,/z7uo9zmQdQwU5ZJHFpv2Upl30i1.jpg,/urDWNffjwmNi5IQaezw9GwqkUXa.jpg,675-12444-12445-674-672-671-673-63449-58-285-918078-1865-919590-22-483898-557-1082707-445033-1039274-319391-12\r\n809,Shrek 2,Animation-Family-Comedy-Fantasy-Adventure-Romance,en,Shrek Fiona and Donkey set off to Far Far Away to meet Fiona's mother and father. But not everyone is happy. Shrek and the King find it hard to get along and there's tension in the marriage. The fairy godmother discovers that Shrek has married Fiona instead of her Son Prince Charming and sets about destroying their marriage.,153.021,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/19/04,150000000,928760770,93,Released,Once upon another time...,7.2,10783,Mike Myers-Eddie Murphy-Cameron Diaz-Julie Andrews-Antonio Banderas-John Cleese-Rupert Everett-Jennifer Saunders-Aron Warner-Kelly Asbury-Cody Cameron-Conrad Vernon-Christopher Knights-David P. Smith-Mark Moseley-Kelly Cooney-Wendy Bilanski-Larry King-Guillaume Aretos-Chris Miller-Latifa Ouaou-Alina Phelan-Erika Thomas-Joan Rivers-Andrew Adamson,prison-magic-liberation-honeymoon-prince-fairy tale-parents-in-law-kingdom-enchantment-transformation-princess-sequel-anthropomorphism-dragon-ogre-cartoon donkey,/2yYP0PQjG8zVqturh1BAqu2Tixl.jpg,/l45UqyARB3WxpYNuACjMjndpe85.jpg,810-808-10192-953-425-950-8355-9502-10527-863-2062-38757-862-1593-10555-10193-585-9806-12-920-37135", + "embedding" : [ 0.011165888, -0.027699353, -0.025618589, -0.03403442, -0.016314788, 0.044955123, -0.0051621525, -0.0047910605, -0.017109985, -0.038540535, 0.018249765, 0.028839136, 0.014962953, 0.0063218144, 0.011086368, 0.025804134, 0.020847408, -0.012617122, 0.015029219, -0.026798131, 0.0011091338, -0.0036711583, -0.034405515, 0.009992973, -0.0019465754, 0.011609873, 0.035068177, -0.012743028, -0.0064874804, -0.0011174171, 0.0027931286, -0.011245407, -0.0062621743, -0.036075428, -0.024942672, -0.0013725427, 0.00326362, -0.027831886, 0.021814898, 0.006288681, 0.009396575, 0.012617122, -0.015373804, 0.0027069824, -0.0155460965, 0.013187013, -0.005188659, -0.0014918223, -0.0058778296, 0.029263241, 0.01471114, 0.03912368, -0.014088236, -0.031489793, -0.0029090948, 0.01214663, -0.026625838, 3.23877E-4, -0.007852568, 0.021549832, 0.01479066, -0.009376695, -0.029395774, -0.035174202, -0.0278849, -0.007759795, -0.0106291305, -0.026864396, 0.0138099175, -0.008813431, 0.026917411, 0.009708027, 0.012941827, 9.3518454E-4, 0.016115988, -0.025008937, -0.026082454, -0.0075344895, 9.335279E-4, -0.012610495, 0.022517322, -0.005549811, -0.0049269064, 0.00660676, 0.018369045, 0.0130876135, -0.020595595, 0.02727525, -0.029210228, 0.02481014, -0.0019813653, 0.043921366, -0.015055725, 0.0032950966, 0.015625617, 0.012902067, -0.010118878, 0.045935865, -0.031913895, -0.033795863, 0.0047678673, -0.011026729, -0.010774916, -0.010927329, 0.011404447, -0.007097131, -0.005725417, 3.667431E-4, 0.011550233, 0.0027483988, 0.002181821, -0.010105626, 0.015042472, -0.036181454, -0.0073158103, -0.014287035, 0.028149966, -0.022583589, -0.022225749, -0.023551077, 0.024399288, 0.024876405, 0.013955703, -0.045246694, 0.04628045, 0.041005645, 7.334862E-4, -0.018037714, -0.0023756502, 0.0016028185, 0.031304248, -0.0074881027, 0.023895662, 0.012239403, -0.02857407, 0.051581763, -0.018316032, 0.004681721, -0.017812407, -0.0151750045, 0.02663909, 0.030164463, -0.024200488, -0.015228018, -0.020582343, 0.005907649, 0.0155858565, -0.023325771, 0.025936667, 0.0025495996, 0.026533065, 0.012749655, 0.019893173, 0.02279564, 0.034087434, -0.009966466, -0.0066663995, -0.0025694796, -0.01210687, -0.016646119, -0.005447098, 0.0026026128, -0.010582743, -0.008296553, 0.0011845118, 0.013452078, 0.024067955, -0.005735357, 0.005072693, 0.009535735, -0.008376072, 0.017958194, -0.038195953, 0.01218639, 0.0025943294, 0.005917589, -0.013650877, -0.014724393, -0.03019097, -0.016526839, -0.009018857, 0.0049633533, 0.024280008, 0.04105866, -0.017322036, -0.0013302979, 0.010642383, -0.008588125, 0.003936224, -0.007845941, 3.1621495E-4, 0.025631843, 0.011682766, -0.012292417, -0.6370056, -0.023471558, 8.2004664E-4, -0.0098670665, 0.01944256, 0.023749877, -8.018234E-4, -0.0105893705, -0.027990926, -0.016632866, -0.023179986, 0.018422058, 0.025843894, -0.011550233, -0.0123454295, -0.010927329, -0.005225105, -0.008892951, 0.020595595, -0.0058248164, -0.02429326, 0.02033053, 0.004038937, -0.015413564, 0.0053145653, 0.010297798, -0.013299665, -0.019999199, 0.011749032, 0.005519991, -0.023405291, 0.012564109, 0.01705697, 0.0075079827, 0.031940404, 0.013717144, -0.02614872, 0.04789735, 0.01871363, 0.025539069, -0.030827127, -0.0066730264, 0.015201512, 0.0063251276, -0.024014942, 0.01390269, 0.0022861906, 0.014194262, -9.1364793E-4, -0.012232777, -0.012557482, -0.0042841225, -0.01228579, -0.0070507447, -0.0069977315, -0.0037771845, 0.010715276, -0.03480311, 0.024730619, -0.002884245, -0.022265509, 0.018276272, -0.0016931065, 0.023286011, -0.0130279735, 0.024770379, 8.279158E-4, 0.0039627305, 0.013206893, -0.028547565, 0.01390269, 0.01076829, -0.015121992, 0.0015498054, -0.0011869968, 0.0026589392, 0.023126973, -6.1420666E-4, -0.0030847008, 0.014697887, -0.0037307981, -0.0031725038, -0.0019366355, 0.013915943, 0.029766865, 0.00901223, -0.0278849, 0.0063218144, 0.008210407, -0.004028997, 0.0020045585, 0.015612363, 0.010973715, 0.015082232, -0.010761663, -0.013041227, -0.020224504, 0.0067823655, 0.021602845, -0.06875801, 0.0019962753, -0.035863373, 0.011795418, -0.016261773, 0.023126973, 0.022265509, -0.01571839, -0.0127562815, 0.028839136, -0.016076228, -0.0066432063, 0.006099822, -0.010171892, -0.010377318, 7.2996576E-5, -0.02849455, 0.023657104, 0.02453182, -0.0064874804, 5.5291026E-4, 0.005722103, 0.0048010005, 0.0051389593, -0.026652345, 0.006414587, 0.024902912, -0.011358061, 0.0013626028, 0.011961085, 0.019893173, 0.025194485, -0.008899577, 0.019614853, -0.031940404, 0.02376313, -0.0016550033, 0.029342761, 0.005407338, 0.0109604625, -0.007925461, -0.010847809, -0.022199243, -0.01919075, -0.024677606, -7.00353E-4, -0.009509228, -0.02958132, 0.0067061596, -5.9888256E-4, -0.01246471, -0.012033978, 0.013690637, -0.0024435734, 0.006238981, 0.0063648876, 0.01050985, -0.026440293, -0.023604091, 0.01575815, -0.018952189, 0.019946186, 0.021602845, -0.0071501443, -0.0181835, 0.01867387, -0.005831443, -0.019455815, 0.013359305, 0.0049964865, -0.018620858, 9.6086273E-4, -0.014618367, 0.0058281296, 0.019455815, -0.023869157, 0.034325995, -0.008647765, 0.019999199, -6.233183E-4, -0.005917589, 0.009502601, -0.008382699, -0.024704114, -0.025896909, 0.029051188, 0.010516477, 0.014671381, -0.019389547, -0.009555615, -0.0040555033, -0.022013698, -0.013611118, -6.933122E-4, -0.0041052033, -0.0026241494, 0.034379005, 0.0071501443, -0.005344385, 0.0034922392, 0.0042543025, 0.033080187, 0.016222013, 0.015996708, -0.0059209024, 0.020926928, -0.037904378, -0.0041681565, -0.018395552, 0.0061892816, -0.014989459, 0.006195908, -0.0039726705, -0.015784657, 0.0020608848, -0.005221792, 0.031542804, -0.0112917945, 0.0035816988, -0.017600356, -2.5864603E-4, 0.0069844783, -0.018978696, 0.020184744, 0.033610318, -0.01214663, -0.0017875361, 0.007826062, -0.0151750045, 0.003469046, -0.007819435, -0.010503224, -0.003843451, 0.010317678, -0.0015456637, -0.011729152, -0.0045624413, 0.037718832, -0.025843894, 0.043550275, -0.016341293, -0.008647765, 0.033159707, 0.009933333, 0.0014719423, 0.0014147876, -0.017109985, 0.010205025, 0.024187235, -6.4361235E-4, 0.045723815, -0.0071236375, 0.025751121, -0.0036512786, 0.0073356903, 0.009953213, -0.0035353124, 0.016858172, 0.01547983, 0.021669112, 0.018965444, 0.015347297, -0.027540315, 0.0311187, 0.0026092394, 0.0028163218, 0.010635757, -0.015334045, 0.0015912219, -0.016566599, -0.033239223, -0.016897932, -0.01544007, -0.003035001, 0.015373804, -0.0069645983, -0.011285167, -0.0073290635, 2.8929423E-4, 0.01487018, 0.03734774, -0.009708027, -0.035306737, 0.024823392, 0.02764634, -0.018156992, -0.020131731, -0.012530976, -0.009681521, -0.031542804, -0.022318523, 2.6299476E-4, 0.031622324, -0.007819435, 0.011344807, -0.012988213, 0.0020078719, 0.022822147, -0.023060706, 0.0018554591, 0.012497842, -0.0023126972, 0.011762286, -0.018806404, -0.0040753833, 0.018938936, -0.022371536, -0.016831664, -0.0062721143, -0.006079942, 0.018170247, -0.016685879, 0.0036645317, -0.04614792, 0.0052681784, -0.01956184, -0.0021884479, -0.005675717, 0.010377318, 0.014432821, -0.008939337, -0.024240248, -0.036632065, -0.030827127, 4.742189E-4, 0.07358221, 0.037692327, 0.007872448, -0.0027699354, -0.013432198, -0.0016177284, -3.1538663E-4, -0.010132132, -0.0064477203, -0.010602623, 0.039865863, -0.0030615076, 0.03119822, 0.0073489435, -0.002766622, -0.0036413386, -0.0194028, -0.005447098, -0.010152012, -0.0031774738, -0.029157214, -0.016818412, 0.016725639, 0.024054702, -0.001973082, -0.009933333, 0.016062975, 0.016791904, -0.010456838, 0.0064841667, -0.0034325994, -0.0025661662, 0.00820378, 0.006464287, 0.0025678228, -0.0063483207, 0.03289464, 0.009469468, 0.018978696, -0.0020774514, -0.01386293, 0.017706381, 0.012438202, -0.0026639092, 0.019084722, -0.02667885, -0.016858172, 0.021125728, 0.032523546, -0.027513808, 0.014127996, 0.012279163, -0.019429307, -0.0021437178, 0.0029488546, 6.92898E-4, -0.017282275, -0.014472581, -0.014459328, 0.008574871, 0.0018554591, -0.026917411, 0.012882188, -0.009774294, -0.007594129, -0.014074983, -0.023179986, 0.004694974, -0.011636379, 0.0056326436, -0.0019018456, -0.02279564, -0.0064709135, -0.0015324104, 0.014883433, 0.008601379, 0.02764634, -0.0068519455, 0.007117011, -0.005201912, -0.017746141, -0.03673809, 0.0035485656, -0.007560996, -0.02214623, 0.0044796085, -0.0053377585, 0.024664354, -0.026294507, -1.14309536E-4, -0.0025562262, 0.0020327216, -0.016169, -0.016182255, 0.03257656, 0.024505313, 0.012318923, 0.02727525, 0.011656259, 5.5622356E-4, 0.007826062, -0.015532844, -0.011894818, -0.022636602, -3.466561E-4, -0.006570313, 0.010861062, 0.008866444, -0.008866444, -0.04142975, -0.02530051, -0.015373804, 1.4392233E-4, -0.008356193, 0.018077472, -0.004685034, 0.010337558, 0.018912429, -0.008965843, 0.004048877, 0.005781743, -0.008661018, 0.01806422, 0.017931687, -0.02735477, 0.041085165, -0.01725577, -0.007998354, -0.004214543, 0.021364287, 9.1116293E-4, 0.009628507, -0.0066166995, -0.0037274847, -0.010595997, -0.019084722, 0.008535112, 0.0032271736, -0.014194262, 0.033451278, -0.018647363, 0.009992973, 0.010655637, -0.008707404, -0.0137701575, -0.028070446, 0.01806422, -0.023179986, 0.030641582, 0.033875383, 0.012060484, 0.004217856, -0.0295018, 0.0019366355, 0.0032139202, -0.044027396, -0.027434288, -0.0027318322, 0.025433043, 0.015453324, 0.043020144, 0.008793551, 0.022557082, 0.0018703691, 0.008926083, 0.020781143, -0.019985946, -0.011006849, -0.041323725, -5.761035E-4, 0.0058480096, 0.030535556, 0.016036468, -0.0069778515, 0.017282275, 0.030164463, 0.008435712, 0.0091447625, -0.006891705, -0.017838914, -0.02780538, 3.1600788E-4, -0.02549931, -5.181204E-4, -0.019972691, -0.008448966, 0.023100466, -2.5139813E-4, -0.0061594616, -0.016964197, 0.023259506, -0.0075146095, 0.022345029, -0.030429529, 0.00978092, -0.018528085, -0.005344385, -0.02210647, -0.02675837, -0.011212274, -0.012179764, 0.024545074, 0.008508605, -0.0123851895, 9.5506443E-4, 0.017865421, -0.011649633, -0.022252256, 0.035757348, -0.008402579, -0.01386293, -0.028123459, 0.0016831665, -0.028680097, -0.013637625, 0.0011290137, -0.014366555, 0.013246653, -0.02441254, -0.02727525, 0.010622503, -0.007223037, 0.046333466, 0.027089704, 0.03835499, 0.032311495, 0.012829174, -0.021138981, 0.012955081, -0.008541739, -0.012882188, 0.029395774, 0.03366333, -0.018395552, -0.004340449, -2.1867911E-4, -0.0065073604, -0.035412762, -0.042012896, 0.023365531, 0.021735378, 0.011185768, -0.011530353, -0.0036479651, -0.02849455, 0.0073290635, -0.008833311, 0.0020840783, -0.002927318, -0.033345252, -0.023020945, -0.0056525236, -0.008820058, 0.009383322, 0.0014818823, -0.02275588, 0.011490594, -0.024478806, -0.0018438625, -0.008740538, -0.014803913, 0.026480053, -0.023087213, 0.01386293, 0.0179847, 0.001729553, 0.0134785855, 0.0032354568, -2.6465143E-4, 0.028123459, -0.013836424, 0.012902067, -0.007103758, 0.004360329, 0.012033978, 0.019137735, -0.0131273735, -0.018316032, -0.02974036, -0.0060037356, 0.03480311, 0.00737545, 0.0052946853, 0.010774916, -0.019124482, -7.815293E-4, 0.020357037, -0.001069374, -0.0016210417, -0.038116433, 0.007408583, -0.0052880584, 0.017348543, -2.5471146E-4, -0.006113075, 0.0012035634, 2.5691172E-5, 0.015956948, -0.005191972, -0.0076670223, -0.01305448, -0.011331554, -0.0343525, -0.02526075, 4.2866074E-4, -0.015744897, -0.001812386, -0.02137754, -0.0048308205, 0.0026026128, 0.005235045, -0.012630375, -0.0013510062, -0.022981187, 0.010741783, 0.009489348, -0.0045326217, -0.002186791, 0.0020857349, 0.02780538, 9.6334773E-4, -0.007753168, 0.003039971, 0.015015965, 0.032550056, -0.019005202, 0.012796042, 0.008130887, -0.023988435, -0.01875339, 0.0068121855, 0.018700378, 0.015387057, 8.266733E-4, -0.036022414, -0.0035054924, -0.004340449, 0.03088014, -0.0069447183, 0.0026274626, 0.018819656, 0.01725577, 0.024982432, 0.032231975, -0.0061163884, -0.028786123, 0.0026721924, -0.008998977, -0.030933155, 0.002377307, 0.0010867689, 0.005056126, 0.013299665, -0.0066432063, -0.029289747, -0.003916344, -0.03204643, -0.039945383, -0.0068519455, 0.027434288, 0.04389486, 0.0130876135, 0.0031161774, 0.0012723148, 0.01145746, 0.011358061, -0.012113498, 0.0010933955, 0.019614853, 0.020966688, 0.029819878, 0.024319768, -0.015744897, -0.009568867, 0.010967089, 0.021059461, 0.009853813, 0.00978092, -0.025658349, -0.008316433, -0.0126568815, 0.005076006, -0.0060037356, -0.0033348564, 0.018952189, -0.02190767, -0.014485834, 0.0066730264, 0.016301533, -0.020502822, 0.006898332, 0.011146008, -0.012630375, 0.0076736487, -0.027699353, -0.0048507, -0.009237535, -0.02094018, 0.039759837, 0.01048997, -0.0040952633, 0.025896909, 0.015652124, -0.006898332, 0.019893173, -0.011596619, -0.0016624582, -0.030986167, -0.004423282, -0.012491216, 0.025645096, -0.0347501, 0.010622503, -0.035942893, 0.002708639, -0.00329841, 9.749444E-4, -0.006020302, 0.040502023, 0.0147509, -0.041244205, 0.0030664776, -0.020277517, 0.0012847398, -0.020953435, 0.003137714, -0.03520071, 0.009025483, -0.008621259, 0.0022232377, -0.024107715, -0.019840159, -0.009774294, -1.0830414E-4, -0.0067094727, 0.02214623, 0.18724233, -0.015068979, 0.016646119, 0.042330973, 0.0020194685, -0.0098074265, 0.016659372, 0.012829174, -0.0010188458, 0.009343562, -0.015029219, 0.018355792, -0.004817567, 0.0041317097, 0.019575093, -0.007057371, -0.03196691, -0.026890904, -0.020423304, -0.03257656, -0.013259906, -0.0025495996, -0.0074748495, -0.022000443, 0.008429086, 0.011987591, -0.024187235, -0.005705537, 0.02376313, -0.003469046, -0.0061197015, -0.008952591, -0.016076228, 0.017534088, -0.01709673, -0.009257415, 0.0022033576, 0.012663509, -0.0018753391, 0.00326859, -0.0038301977, 3.1745745E-4, -0.015784657, -0.007600756, 3.8827966E-5, 0.018422058, -0.022636602, -0.013412319, -0.016182255, 0.0134587055, -0.044928618, 0.0076537686, 0.017282275, 0.028441537, -0.0037838113, -0.006229041, 0.010582743, 0.0055895704, -0.010132132, 0.0068121855, 0.0074814763, 0.035227217, -0.032072935, 0.008786924, 0.002610896, 0.015254525, -0.041403245, -0.005705537, 0.012948454, -0.03936224, -0.012378563, -0.034485035, -0.01386293, 0.021510072, -0.014472581, -0.014909939, 0.0013319546, 0.02376313, 0.0105893705, 0.0115171, -0.026360773, -0.015506336, 0.0130478535, 0.009323682, -0.014353301, -0.013240026, 0.016222013, -0.007826062, 0.010595997, -0.02756682, -0.010383944, -0.015042472, -0.0071965307, -7.1277795E-4, -0.0087736705, 0.017534088, 0.014684633, 0.019707626, -0.014605114, -0.006401334, -0.04182735, 0.023060706, 0.015970202, -0.0017328663, -0.03225848, -0.015228018, -0.006056749, 0.0033431398, 0.028468044, -0.013611118, -0.012796042, -0.033027172, -0.0017593729, -0.0010751723, 0.01826302, 0.016659372, 0.007560996, -0.014923193, 0.02538003, -0.010556237, -0.0030515676, -0.018355792, 0.021669112, -0.002869335, -0.0053708917, -0.024796886, -0.02638728, 0.00575855, -3.8890092E-4, -0.036260974, 0.01814374, -0.022053458, 0.0076471423, 0.00574861, -5.7279016E-4, 0.003439226, 0.019694373, -0.005801623, 0.010861062, 0.005569691, -0.0036115185, -1.3563903E-4, 0.007865821, 0.009575495, -0.0051621525, -0.010410451, 0.00735557, -0.0019515454, -0.007103758, -0.035492282, -0.03403442, 9.650044E-4, 0.014485834, 0.0048341337, 0.049037132, -0.0032188902, -0.014101489, -0.039706826, 0.0017378363, 0.05261552, -0.044928618, 0.016500333, 0.009688147, 0.003132744, -0.019257015, 0.0084224595, -0.16805159, 0.011596619, 0.0048109405, -0.03241752, 0.017918434, 0.015625617, 0.033398263, 0.0054702912, 0.012259283, -0.028123459, 0.022742627, 0.0061826548, -0.049514253, -0.011112874, 0.008018234, 0.02942228, -0.00822366, 0.0371887, 0.033477783, -0.0067989323, 0.037374247, -4.51854E-4, 0.0016210417, 0.0039759837, 0.023232998, -0.008727284, 0.015506336, 0.010132132, 0.0031791304, -0.003843451, -0.03904416, -0.0071633975, 0.017189503, 0.001054464, -0.016646119, 0.004350389, -0.014962953, -0.012027351, 0.0026440292, -0.011464086, 0.043391235, 0.015691882, 0.020383544, 0.019058216, -0.0049799196, 0.020012451, 0.04044901, -0.026745118, 0.019031709, -0.019084722, -0.006726039, -0.02634752, 0.04137674, -0.013240026, 0.0018786524, 0.03050905, 0.011106248, 0.0032835, -0.0014653157, -0.005771803, -0.019787146, -0.016831664, 0.0098074265, -0.0028627084, -0.0014197576, -0.02060885, -0.021735378, 0.004525995, -0.030827127, 0.0069248383, -0.023895662, -0.001212675, 0.01579791, 0.008813431, 0.006938092, -0.01624852, -0.040952634, 0.0072362907, 0.00911163, 0.009562241, -7.7200355E-4, 0.044265952, 0.0018703691, 0.016884677, 0.0038169445, -0.020542582, 0.0038467643, 0.0031426838, 0.005056126, 0.0066962196, 0.019879919, -0.019204002, -0.035730843, -0.0027401156, 0.0034756726, 0.003614832, -0.0073688235, 0.008892951, 0.019787146, -0.021231754, 0.0047910605, -0.008985723, -0.0053510116, 0.011815298, 0.035730843, 0.004549188, 0.015996708, 0.010980342, 0.021483567, 0.014803913, 0.002123838, -4.4646984E-4, 0.020661863, -0.0053311316, -0.035757348, 0.014194262, -0.007819435, -0.018938936, -0.002952168, 0.018170247, 0.042861104, -0.0031923836, 0.008316433, -0.0071700243, -0.005417278, 0.0039428505, -0.090334356, -0.022437802, 0.008859817, 0.048931107, -0.032974157, 0.03019097, -0.008190527, 0.014949699, -0.024187235, 0.027911406, -0.00492028, -0.029316254, 0.017401556, -0.0020625417, 0.011503846, 0.0069447183, -0.022172736, -0.0123454295, 4.932705E-4, 0.019575093, 0.00411183, -0.005761863, 0.011530353, -0.011450834, -0.021960683, 0.006464287, -0.021629352, 0.021589592, 0.014856926, 0.01390269, 0.020622103, -0.03249704, 0.01976064, -0.03965381, -0.028521057, -0.011841805, -0.018090727, -0.02287516, -1.448542E-4, -0.04336473, 0.021231754, 0.009694774, 0.003371303, -0.012935201, -0.009628507, -0.0026953856, -0.038567044, 0.021351034, -0.01919075, -0.018316032, -0.0061925948, -0.002605926, -0.016632866, -0.0050925724, 0.016195508, 0.017679874, 0.033133198, 0.0038169445, 0.007521236, -0.016844919, -0.0029654212, -0.010019479, -0.024425793, 0.02735477, 0.0068254387, 0.013929197, 1.1244579E-4, -0.0034756726, 0.025327018, -0.019084722, -0.02441254, 0.023166733, -0.033689838, -0.009177896, -0.01218639, 0.024266755, -0.01390269, -0.014499088, 0.01733529, -0.027434288, 0.010907449, -0.033795863, 0.016765399, -0.0035452521, 0.025008937, 0.011000222, 0.02421374, 0.012153258, -0.013505092, -0.03496215, -0.00897247, 0.012053858, 0.013876184, -0.0065438068, -0.015943695, 0.023126973, 0.013041227, 0.012974961, 0.01640756, 2.1950743E-4, -0.015453324, 0.007746542, -0.06960622, 0.028202979, -0.017308783, -0.014697887, -7.641344E-4, -0.016526839, 0.008190527, -8.419974E-4, 0.0042708693, 0.014035223, -0.01214663, 0.008263419, -0.010304425, 0.0068453187, -1.4123025E-4, 0.008892951, 0.020052211, -4.079525E-4, 0.002693729, 0.0028974982, -0.0031923836, 0.010118878, 0.02772586, 0.0050925724, 0.010496598, 0.009933333, 0.001548977, 0.0049136532, -0.027831886, -0.0063317544, 0.023232998, -0.033292238, -0.0041283965, -0.0011745719, -0.006570313, -0.025936667, -0.008276673, 0.0022050145, 0.020582343, 0.009641761, -0.017865421, -0.017772648, 2.8349593E-4, -0.00901223, -0.010125506, 0.0051290193, -0.033027172, 0.013061107, 0.026811384, 0.010887569, 0.035333242, 0.01923051, 0.0014967922, -0.012617122, 0.013352679, -0.0043570157, 0.0432322, 0.0031741604, 0.0029223482, -0.025565576, 0.017732888, -0.004380209, 0.016076228, -0.033636823, -0.008680898, -0.0013220146, 0.008263419, -0.01216651, 0.003687725, -0.029713852, -0.02149682, -0.0024502, 0.019124482, 0.04113818, 0.012610495, 0.026016187, -0.009098376, 0.0033298864, -0.007302557, 0.02974036, 0.024598086, -0.024359528, -0.02396193, 0.021523327, -0.002786502, 0.009926707, -0.0027583388, 0.015267778, 0.004525995, 0.021245006, -0.007448343, 0.0072561703, 0.01567863, -0.0015017622, 0.003015121, 0.016738892, -0.02182815, -0.008342939, 0.004174783, 0.016884677, -0.0032172336, -0.00820378, -0.019853413, -0.032947652, -0.023286011, -0.0032371136, -0.017732888, -0.026016187, 0.007845941, 0.025512563, 0.026016187, 8.2004664E-4, -0.027487302, 0.008217033, -0.0456708, 0.0098670665, -0.0052648652, -0.00911163, -0.0058579496, 0.03512119, 0.020820903, 0.007229664, 0.029634332, -0.005026306, 0.05269504, 0.0059308424, 0.0031459972, -0.027699353, 0.007839315, 0.0046982877, -0.014883433, -0.010496598, -0.016699132, 0.0039726705, -0.005500111, -0.012530976, 0.0041814097, 0.020264264, -0.0152147645, 0.06382779, 0.007189904, -5.927736E-5, 0.015108738, -0.014247275, 0.021695618, 0.026652345, 0.017640116, -0.011662886, -0.0155460965, 0.0038401377, -0.011411074, 0.009953213, -0.030456036, -0.0035088058, 2.2364908E-4, 0.01248459, 0.011749032, -0.011192394, -0.014008717, -0.0027169222, -0.019932931, 0.016659372, 0.0039295973, -0.003361363, -0.029236734, 0.020171491, -0.0017229263, -0.0015117022, -0.016036468, 0.015652124, -0.024584834, 0.0020426617, 0.0024568266, 0.026175227, -0.007739915, -0.0033597064, 0.0047579273, 0.016275028, 0.0034723592, -0.0126568815, -0.003717545, -0.022610094, -0.012868934, 0.018938936, -0.013968957, 0.007262797, -0.03119822, -0.0052681784 ], + "id" : "5dcb9312-4ba3-4270-881c-fad2f801ac27", + "metadata" : { + "source" : "movies.csv" + } + }, + "61368c62-ff2e-47d4-ac11-8b292e5d4b6b" : { + "text" : "202,8088,John David Washington-Robert Pattinson-Elizabeth Debicki-Kenneth Branagh-Dimple Kapadia-Himesh Patel-Aaron Taylor-Johnson-Michael Caine-Cl��mence Po��sy-Martin Donovan-Andrew Howard-Yuri Kolokolnikov-Mark Krenik-Anthony Molinari-Rich Ceraulo Ko-Denzil Smith-Jonathan Camp-Julia-Maria Arnolds-Laurie Shepherd-Wes Chatham-Fiona Dourif-Kenneth Wolf Andersen Haugen-Marcel Sabat-Marek Angelstok-Klaus Peeter R�_�_tli-Daniel Olesk-Bern Colla�_o-Ingrid Margus-Carina Velva-Glenn Lawrence-Katie McCabe-Ronald Pelin-Schezaad Ausman-Anterro Ahonen-Aleksei Podlesnov-Lisa Marie-Trent Buxton-Jess Weber-Jeremy Theobald-Jefferson Hall-Adam Cropper-Josh Stewart-Juhan Ulfsak-Jan Uusp��ld-Jack Cutmore-Scott-Kaspar Velberg-Sergo Vares-Rain Tolk-Henrik Kalmet-Sean Avery-John Orantes-Seb Carrington-Matthew Marsden-Ivo Uukkivi-Sander Rebane-Loora-Eliise Kaarelson-Martin T��numaa-Andres Oja-Anton Klink-Tony Christian-Tom Nolan-Viktoria Jelizarova,spy-assassin-mumbai (bombay) india-time travel-arms dealer-espionage-terrorism-terrorist attack-nuclear weapons-terrorist plot-backwards-alternate timeline-oslo norway-time paradox-kiev russia-spy thriller-shot on film,/aCIFMriQh8rvhxpN1IWGgvH0Tlg.jpg,/yY76zq9XSuJ4nWyPDuwkdV7Wt0c.jpg,703363-464052-508442-340102-790331-496243-475557-788106-1023076-337401-466272-530915-157336-524047-1124-499932-374720-754721-539885-546554-438631\r\n163,Ocean's Twelve,Thriller-Crime,en,Danny Ocean reunites with his old flame and the rest of his merry band of thieves in carrying out three huge heists in Rome Paris and Amsterdam ��� but a Europol agent is hot on their heels.,25.641,Village Roadshow Pictures-Jerry Weintraub Productions-Section Eight-WV Films III-Warner Bros. Pictures,12/9/04,110000000,362744280,125,Released,Twelve is the new eleven.,6.", + "embedding" : [ 0.015043317, -0.0077388906, -0.025334684, -0.049637515, -0.026828153, 0.04779104, -0.006279363, -0.0059229666, -0.029978018, -0.038259987, 0.019863153, 0.024207793, 0.0051762317, 0.015369165, 0.002511745, 0.012837054, 0.01933365, -0.032611955, 0.01253836, -0.025864188, -0.0016860937, -0.004582238, -0.01163549, 0.0045245355, 0.012708073, 0.012945671, 0.019170726, -0.009979095, -0.008954032, -0.004395554, 0.0055428105, -0.022388475, -5.7744683E-4, -0.026950346, -0.015423473, 0.0025949043, 0.008152989, -0.024316408, 0.018709106, 0.0051490776, 0.01574932, 0.01543705, -0.008091892, -0.013502328, -0.012205724, 0.010854812, 0.017731562, -0.018505452, -0.011370738, 0.034322657, 0.018247489, 0.035381664, -0.010569695, -0.024737295, -0.0174736, -0.004816441, -0.017269945, -5.9356954E-4, -0.0053425496, 0.0051762317, 0.021546701, -0.035110123, -0.032992113, -0.014432352, -0.024275677, -0.0022520851, -0.008383798, -0.010685099, 0.0026288468, 0.016414594, 0.024384294, 0.024411447, 0.005376492, 0.0017955584, 0.019849576, -0.038015604, -0.0363049, -0.008451683, -0.012850631, 0.005400252, 0.008621396, -0.0023267586, -0.0060824966, -0.0025626589, 0.0025932072, 0.0034757121, -0.012422956, 0.022917977, -0.01648248, 0.011262123, 0.010814081, 0.04097539, -0.013373346, 0.0033823703, -0.008125835, 0.031037023, -0.01421512, 0.027316926, -0.038531527, -0.02775139, 0.0054172236, -0.0037065214, -0.004015398, -0.013108594, -0.0057838024, -0.01421512, -0.0028155306, -0.003743858, 0.026447998, 0.012456899, 0.01625167, -0.013651675, 0.017161328, -0.04306625, -0.003957696, -0.011201026, 0.01353627, -0.023922676, -0.014296582, -0.026963923, 0.0281587, 0.029027628, -9.317217E-4, -0.031362873, 0.03725529, 0.017813025, 0.018505452, -0.025646955, 0.024913797, -0.0024625286, 0.03893884, -0.01389606, 0.02829447, 0.009123744, -0.02924486, 0.05346623, -0.03046679, 0.004711219, -0.0240856, -0.0134480195, 0.03793414, 0.030548252, -0.021682471, -0.020772811, -0.025280375, 0.007799987, 0.00355378, 0.0065339315, 0.026420843, -9.6566416E-4, 0.018274643, 0.008363432, 0.027914314, 0.013570213, 0.011934184, 0.0049284515, 0.00977544, -0.009503901, 0.008383798, -0.021913279, -0.007664217, -0.013868907, -0.012904939, -0.012823477, 0.013522693, 0.02856601, 0.01358379, -0.0099994615, -0.0030073058, 0.00531879, -0.013210421, 0.015817206, -0.01937438, 0.0096464595, 0.006262392, 0.0019635737, 0.017079867, -0.018681953, -0.039427612, -0.032829188, 0.008947244, 0.021356622, 0.026203612, 0.032340415, 0.0014501935, 0.016957674, 0.023026593, -0.025063144, 0.020922158, -0.007718525, -0.005451166, 0.018193182, 0.0048334124, -0.0010276092, -0.63692427, -0.021288738, -0.017432868, -0.009938365, 0.025633378, 0.012002069, 0.0041172253, 0.011275699, -0.02802293, -0.008119047, -0.025782725, 0.0059229666, 0.009503901, -0.010983794, -0.02249709, -0.021207275, 0.014106504, -0.015382742, 0.010854812, 0.007983277, -0.027941467, 0.019360803, 0.009809383, -0.007983277, 0.021641739, 0.0042665727, 0.008288759, -0.031851646, -2.808742E-4, 0.0024353745, -0.011350373, 0.012436532, 0.008309125, -0.0044125253, 0.039672, -0.001051369, -0.018736262, 0.049827594, 0.02249709, 0.040052153, -0.01964592, -0.011757683, 0.005451166, 7.323095E-4, -0.024574371, 0.026543036, 0.012002069, -0.001350063, 0.011920607, -0.0023114844, 0.011845933, 0.008404164, -0.0076574287, -0.012192147, -0.0035130489, -0.0030548251, 0.0032330235, -0.025293952, 0.015382742, 0.004354823, -0.028864704, 0.012911728, 0.0028596558, -0.0030022142, -0.011526873, 0.034784276, 9.6566416E-4, 0.004137591, 0.009001551, -0.040160768, 0.0040731, 0.007956123, -0.007446985, -0.022062626, 0.0052271453, 0.0020535213, 0.058381103, -0.006958213, 0.0057600425, 0.017432868, 0.0068462025, -0.008641761, -0.0065475088, 0.015762897, 0.01991746, 0.007637063, -0.031308565, 0.0060010343, 0.015966553, -0.0033484278, 4.8198353E-4, 0.016577518, 0.02009396, 0.009110168, -0.015246972, 0.0030056087, -0.0018956887, 0.0036657902, 0.028403087, -0.058055256, -0.020786388, -0.012803112, 0.026325805, 4.202506E-4, 0.021723201, 0.021750355, -0.0071415026, -0.0073587345, 0.019903883, -0.008709646, 5.282302E-4, -0.009008341, -0.014568122, 0.0010191236, -0.006262392, -0.035680357, 0.02032477, 0.030792639, 1.6324222E-4, -0.0026016927, 0.0017251277, 0.009137321, 0.0017667073, -0.028620318, 0.006374402, 0.034485582, -0.010291367, -0.0012847238, 0.004286938, 0.01036604, 0.009924788, 0.003906782, 0.010528964, -0.021492392, 1.589994E-4, 0.0141200805, -6.504232E-4, -0.007664217, 0.0058279275, -0.005400252, -0.011133141, -0.0025151395, -0.00778641, -0.024968104, 0.0064932005, -0.018233912, -0.038993146, -0.0051015583, -0.0071143485, -0.022822939, -0.010888754, 0.024995258, 0.008845416, 0.010814081, 0.004653517, -0.0029529978, -0.012918516, -0.014989009, -0.0024727113, -0.02367829, 0.00832949, 0.015518512, -7.900117E-4, -0.026746692, 0.029136244, -0.0018889003, 0.00683602, -0.0039271475, -0.002985243, -0.016170207, 0.009307034, -3.973394E-4, 0.011696586, 0.011221391, -0.014744623, 0.033100728, -0.013047498, 0.03771691, 0.008926878, 0.0031973836, 0.005797379, -0.010080923, -0.032014567, -0.0076710056, 0.025103875, 0.02924486, 0.024058446, -0.0040764944, -0.0019907278, 0.0042597842, -0.0018074382, -0.012864209, 0.0081462, 0.004694248, 0.008098681, 0.0295164, 0.01733783, -0.014880393, 0.011750895, 0.009558208, 0.048225507, 0.026855309, 0.009137321, 0.00191266, 0.00810547, -0.025579069, 0.0070600403, -0.025429722, 0.015355588, 5.5920274E-4, 0.023121633, -0.0229044, -0.014866816, 0.013332615, -0.009632882, 0.030412482, -0.026081419, 0.0134005, -0.013597366, 0.0072704838, 0.012918516, -0.007847507, 0.027805697, 0.019985346, -0.030846946, -0.0034519525, 0.01974096, -0.0028036507, 0.0044023427, -0.010732619, -0.005020096, 0.0043616113, 0.004487199, 0.01018275, -0.0035605684, -0.012015645, 0.018396836, -0.0059908517, 0.03812422, -0.015504935, -0.004711219, 0.022008318, 0.020990044, -0.01407935, 0.012748804, -0.012151415, 0.022687169, 0.021166544, -0.0047044307, 0.03481143, -1.8424414E-4, 0.03489289, -0.0072772726, 4.883477E-4, -3.4600138E-4, -0.013984311, -0.011560816, 0.025429722, 0.025131028, 0.020202577, 0.014513814, -0.020026077, 0.023162363, 0.007813564, 0.016536787, -0.002034853, -0.01621094, 0.012708073, -0.007637063, -0.041817162, -0.008458472, -0.00837701, 0.010807293, 0.006499989, -0.020446964, -0.020446964, 0.0011353767, 0.021519547, 0.0056310613, 0.013495539, -0.0054851086, -0.028593164, 0.0011964733, 0.029081935, -0.012300763, -0.030086635, -0.0028613529, -0.017310675, -0.03391535, -0.009789018, -0.024587948, 0.035381664, -0.025959225, 3.2330235E-4, -0.022320589, 0.002213051, 0.019482996, -0.0060315826, 0.024316408, 0.015599974, -4.7477076E-4, 0.009388496, 9.945154E-4, -0.019768113, 0.026339382, -0.0066730957, -0.0027968623, -0.0059229666, -0.0017819813, -0.008526357, 0.009748287, 0.0039101765, -0.04377225, 0.016048014, -0.008641761, 0.0018328951, -0.013705983, 0.007827141, 0.0081665665, -0.0019092658, -0.01987673, -0.03481143, -0.015545666, -0.011119564, 0.06484376, 0.042441703, 0.009374919, 0.011418258, -0.019849576, -0.0038185315, -0.013841752, -0.012409379, -0.0064049503, -0.013190056, 0.026855309, -0.01353627, 0.023108056, 0.012755592, 0.005128712, -0.007915392, -0.006795289, -0.009184841, -0.010026615, -0.016401017, -0.023569673, -0.017622948, 0.021886125, 0.033888195, 1.6897001E-4, -0.0041274084, 0.032992113, 0.0022028685, 0.009931576, 0.01353627, -0.00191266, 0.0045516896, 0.011642278, 0.011099198, -0.0016190574, -0.016305977, 0.02771066, 0.010576484, 0.035055816, 0.0015698407, -0.017500754, -0.0033789761, 0.004052735, -0.020623464, 0.009578574, -0.02856601, -0.009103379, 0.036766518, 0.030548252, -0.03399681, 0.006998944, 0.018437568, -0.028783241, -0.015518512, 0.020161847, -0.0027391599, -0.016509634, -0.023379596, -0.023623982, 0.008533145, 0.0021502576, -0.037038058, 0.010393194, -0.007732102, 0.0010420348, -0.018166028, -0.010596849, -0.0088386275, -0.013997888, 0.0046840655, 0.013984311, -0.021125814, -0.01720206, -0.0044159195, 0.018247489, -0.0015723864, 0.022157665, -0.011764471, 0.009273091, 0.010929486, -0.03964484, -0.028457394, 0.020528425, -0.021166544, -0.01435089, 0.0073315804, -0.014025042, 0.011404681, 0.009829748, 0.0026526065, -0.015477781, 0.0061266217, 0.0010148808, -0.015097625, 0.037363905, 0.014269428, 0.007446985, 0.0038965992, 0.01004698, 0.002211354, 0.00287493, -0.029815095, -0.006211478, -0.011099198, -0.010026615, -0.015409896, -0.008818262, 0.005668398, -0.019808844, -0.007433408, -0.019998923, -0.03196026, 0.0022520851, 0.0021112235, 3.8758095E-4, 0.004290332, 0.014405198, 0.0136991935, -0.0045075645, 0.015287703, 0.010304944, -7.2509673E-4, 0.012945671, 0.023488212, -0.008098681, 0.021601008, -0.007501293, -0.023108056, -0.0020450358, 0.028647471, -0.003540203, 0.0073791, -0.02358325, -0.018519029, -0.018627645, -0.016224517, 0.01389606, -0.0045381123, -0.015477781, 0.011744106, -0.012232878, -0.015097625, 0.00941565, 0.0055190506, -0.005834716, -0.025484031, 0.009693978, -0.02938063, 0.013251153, 0.018138872, 0.00507101, -0.0021231035, -0.027724236, -0.01502974, -0.013957157, -0.037961293, -0.029760785, -0.00824124, 0.019007802, 0.0036250593, 0.04540149, -0.0042394185, 0.025063144, 0.01733783, 0.0076981597, 0.018315375, -0.014690315, -0.0016436657, -0.024017714, 0.009592151, 0.00629294, 0.00683602, 0.0069921557, 0.017025558, 0.011296065, 0.01991746, 0.017500754, 0.025022414, 0.0040663118, -0.0047451616, -0.029190551, -0.0017870727, -0.028620318, -0.0056785806, -0.029896555, -0.0053357612, 0.028321624, 0.007460562, 0.003526626, -0.0062454203, 0.042903323, -0.0023029987, 0.001301695, -0.02870178, 0.024927374, -0.031851646, 0.010508599, -0.029815095, -0.008017219, 0.008539934, -0.009015129, 0.021926856, 0.005780408, -0.01543705, -0.0034247984, 0.03581613, -0.024981681, -0.012911728, 0.029462092, -0.007847507, -0.0044159195, -0.03467566, -0.0049284515, -0.021926856, -0.01448666, 0.0038049545, -0.010325309, 0.008750377, -0.031172793, -0.035517436, 0.029217705, -0.004541507, 0.038775913, 0.0153148575, 0.048415586, 0.018573336, 0.013162903, -0.01706629, 0.018003102, -0.021913279, -0.009761863, 0.026828153, 0.023936253, -0.018709106, -0.0020552184, -0.026705962, 0.003988244, -0.034431275, -0.022103358, 0.036114823, 0.020935735, 0.022442782, -0.02331171, 7.989216E-4, -0.03758114, 0.020066807, -0.016903367, 0.012619822, 0.012687707, -0.050696522, -0.029190551, -0.0053629153, 0.0031821097, 0.005468137, 0.008356644, -0.029054781, 0.018953493, -0.029081935, 0.007759256, -0.013868907, -0.01376029, 0.022660015, -0.031905953, 0.0075080814, 0.02046054, 0.021071505, 0.0043921596, -0.0065305373, -0.003458741, 0.031824492, -0.01502974, 0.017514331, 0.009266303, 0.0049895477, 0.011072044, 0.016604671, -0.022388475, -0.011764471, -0.007012521, 1.1264668E-4, 0.02422137, -0.001431525, 0.0046772766, -8.7147375E-4, -0.027045386, -0.011323219, -0.0072229644, 4.9937906E-4, 0.010148808, -0.034023963, 6.2369346E-4, -0.0033314566, -0.0021400747, 0.0053493385, 0.0012117473, -0.0054545603, 0.0027459485, 0.006048554, 0.0011862904, -0.011038101, -0.025606224, -0.011533663, -0.03910176, -0.026515882, -0.0044362852, -0.002779891, 0.010345675, -0.022660015, 0.0023946436, 0.0019516939, -0.0046976423, -0.020297617, 0.0053459443, -0.010053769, 0.007827141, 0.02371902, -0.01435089, 6.368462E-4, -0.0122193005, 0.032666266, -0.0026067842, 0.006350642, 7.1745965E-4, -0.0023131815, 0.015138356, -0.038531527, 0.021234429, 2.1998984E-4, -0.014798931, -0.012619822, 0.023338864, 0.031824492, 0.00991121, 3.683292E-5, -0.03128141, 0.0015392925, 0.0038287144, 0.034023963, -0.0088725705, -0.0057600425, 0.032557648, 0.011180661, 0.05020775, 0.01634671, -0.013169691, -0.0335895, 0.0016131174, -0.015246972, -0.016998405, -0.002211354, 0.0012261729, -0.0027425543, 0.0013729742, -0.01253836, -0.029760785, -0.016849058, -0.020637041, -0.033345114, -0.00946317, 0.013529481, 0.04385371, 0.009856903, -0.008227662, 0.010970217, 0.014975432, -0.0023539125, -0.015396319, 0.013665251, 0.024343563, -0.012436532, 0.015776476, 0.006510172, -0.040513773, 0.0027764966, 0.0015129871, 0.019808844, -0.0024659229, 0.016984828, -0.01054933, -0.010114865, -0.009028706, 0.0058686584, -0.0036318477, 0.003188898, 0.0047417674, -0.033562347, 3.387886E-4, 0.01652321, 0.02327098, -0.0055903303, 0.015111202, 0.0018362894, -0.016645404, -0.010827658, -0.037689753, -0.030385328, 0.012008857, -0.03717383, 0.025293952, 0.011058467, 0.0039984267, 0.035245895, 0.031525794, 9.741498E-4, 2.8426846E-4, -0.012409379, -0.0060214, -0.01675402, 0.007433408, 0.0069921557, 0.030412482, -0.029407784, 0.009673613, -0.023732597, -0.0018379865, -0.010922697, 0.0027103089, 0.006917482, 0.03929184, 0.015966553, -0.056806173, 0.007820353, -0.019523727, -0.0052135685, -0.0062080836, 0.0013322432, -0.023623982, -0.01362452, -0.0036012996, 0.0030853734, -0.008322702, -0.018016681, 5.914481E-4, -2.7684352E-4, -0.025674108, 0.01574932, 0.17878194, 0.0039814557, 0.014853239, 0.04727512, 0.0051864143, 0.018953493, 0.029597862, 0.014187966, -0.0026661835, 0.0048605665, -0.0015876605, 0.0021672288, 0.008288759, 0.0021672288, 0.013902849, -0.01380781, -0.024682987, -0.03521874, -0.013352981, -0.02082712, -0.015396319, 0.0059433323, -0.0026237555, -0.013203633, -6.270877E-4, -0.0065305373, -0.016550364, 0.009626093, 0.019971767, 0.010895543, -0.013692405, -0.005481714, -0.0070193093, 0.004290332, -0.014649584, -0.012898151, -0.006510172, -0.0016742139, 0.006632365, 0.003390856, 0.0043514287, -8.481383E-4, -0.002104435, -0.011187449, 0.0033195766, 0.008091892, -0.017867332, -0.001978848, -0.006153776, 0.004205476, -0.042224474, 7.200053E-4, 0.025972802, 0.01543705, -0.01231434, -0.016319554, 0.010624004, 0.018899186, -0.021166544, -0.0033059998, 0.0034553467, 0.036766518, -0.025375415, 3.5894196E-4, 0.0016258459, 0.025429722, -0.03168872, -0.0070600403, 0.009130533, -0.036657903, -0.013352981, -0.03100987, -0.013984311, 0.012144627, -0.011078833, -0.02086785, 0.005671792, 0.002021276, 0.004205476, 0.01706629, -0.019347226, -0.016401017, 0.017677255, -0.0014909244, -0.016305977, -0.013889272, 0.01991746, -0.008797897, -0.0012041102, -0.008186932, -0.006401556, -0.023515366, -0.017853756, 0.0017140964, 0.005400252, 0.006211478, 0.012911728, 0.016197363, -0.016468901, -0.019754536, -0.03812422, 0.033019267, 0.024452178, -0.014500237, -0.022402052, -0.00828197, 0.0028172277, 0.0041681393, 0.034702815, -0.014839662, -0.010393194, -0.009938365, 0.00656448, -0.0013161205, -0.00588563, 0.022130512, 0.0013305461, -0.019754536, 0.032992113, -0.023841213, -0.0067783175, -0.025484031, 0.014608853, 0.013549847, 0.0036793672, -0.026787423, -0.042251628, 0.014255851, 0.0017208848, -0.036549285, 0.02363756, -0.012443322, 0.00694803, 0.0114454115, 0.0100945, 0.009028706, 0.032720573, -0.0028986896, 0.006886934, -0.009809383, 0.0013237576, -0.020216154, 0.0041851103, 0.004738373, 9.902725E-4, -0.02399056, 0.008112258, -0.0063845846, -0.012877786, -0.040133614, -0.014839662, -0.009850115, 0.0073451577, 0.0115472395, 0.05984742, -0.011289276, -0.023963407, -0.045102797, -0.0017395533, 0.03250334, -0.031743027, 0.01181878, 0.0067613465, -0.008702857, -0.025782725, 0.0041749277, -0.173677, 0.02385479, 0.00298694, -0.03231326, 0.01566786, 0.014595276, 0.025891341, 0.0020178817, 0.0019466025, -0.023596827, 0.013814598, 0.015328434, -0.034648508, 0.004487199, -4.6289086E-4, -0.0012304157, -0.0033059998, 0.023610404, 0.029543554, -0.007962911, 0.04844274, 9.393587E-4, -0.008227662, 0.0075216587, 0.018600492, -0.0064762295, 0.023786906, 0.0028494732, -0.008567087, -0.014038619, -0.04192578, -0.0077524674, 0.021478815, 0.013522693, -0.011167083, 0.010990582, -0.008621396, -0.026013535, -0.017215637, -0.011533663, 0.032829188, 0.0033450336, 0.024696564, 0.006591634, 0.014961855, 0.008220874, 0.03912892, -0.021981165, 0.0057057347, -0.012769169, -0.009517478, -0.047329426, 0.025144605, -0.007555601, -0.0011336795, 0.017025558, 0.009123744, -0.0054070405, 0.011038101, 0.0029784546, -0.030819792, -0.006635759, 0.002944512, -0.019482996, 7.4206793E-4, -0.018912762, -0.014255851, 0.018478299, -0.027995776, 0.021193698, -0.022374898, 0.0013687314, 0.01638744, -0.0043514287, 0.0038015603, -0.018247489, -0.029434938, 0.0045245355, 0.006092679, 0.03196026, -0.010155597, 0.03771691, -0.010209905, 0.021370199, 0.002496471, -0.016808327, 0.006754558, -0.006595028, 0.008777531, -0.023800483, 0.011438623, -0.013875695, -0.035028663, 0.017717985, 0.00991121, 0.0072908495, 0.0031685326, 0.009490323, 2.0460965E-4, -0.0069650016, -0.010250635, 8.2183286E-4, -0.013665251, 0.025999956, 0.013230788, 0.005312002, 0.015382742, 0.0076710056, 0.00488772, 0.0031379843, -0.009171264, -0.0069106934, 0.020609887, 0.006038371, -0.0174736, 0.012755592, -0.008173355, -0.023230249, -0.005142289, 0.026882462, 0.04192578, -0.00724333, -0.006808866, -0.014636007, -0.009096591, -0.01656394, -0.08732727, 0.012036012, 0.0085195685, 0.04282186, -0.027276196, 0.042903323, -0.004870749, 0.02422137, -0.013665251, 0.019143572, 0.0040086093, -0.022116935, 0.01642817, -7.6497917E-4, 0.016984828, -0.007542024, -0.019971767, -0.018546183, -0.006279363, 0.014690315, -0.00355378, -0.005712523, 0.016821904, -0.020066807, -0.01027779, 0.0059059956, -0.021397354, 0.034512736, 0.011418258, 0.0051015583, 0.0053934637, -0.030140942, -0.0046840655, -0.030548252, -0.011411469, -0.022795785, -0.024479333, -0.020908581, 0.015328434, -0.051945604, 0.007962911, 0.014391621, 0.00479947, -4.1028E-4, -0.01580363, -0.006218266, -0.027466273, 0.027276196, -0.011255334, -0.011839145, -0.003675973, -0.009042283, -0.024886644, -0.0036522131, 0.007949334, 0.020161847, 0.029815095, 0.009469958, -0.0012592669, -0.022130512, -0.021560278, -0.02009396, -0.01669971, 0.021845395, 0.006808866, 0.012409379, 0.0024761055, 0.008207297, 0.0074130427, -0.014744623, -0.026896039, 0.01955088, -0.029434938, -0.005953515, -0.029054781, 0.0056378497, -0.017242791, -0.011778048, 0.017935218, -0.026651653, -1.3173933E-4, -0.029842248, 0.012484052, -0.019034956, 0.0092595145, 0.016496057, 0.00488772, 0.015817206, -0.0089065125, -0.03462135, -0.007895026, 0.011207814, -0.011234968, 0.0019160543, -8.197114E-4, 0.02449291, 0.015993707, -0.0043480345, -0.006819049, -0.0028155306, -0.027276196, 0.0020925552, -0.07782337, 0.027126849, -0.020161847, -0.012816689, -0.018478299, 0.0016708197, -0.0020942525, 0.006771529, -0.0019635737, 0.027534157, -0.012212512, 0.015382742, -0.006622182, -0.007433408, -0.0017853756, 5.299273E-4, 0.0012363556, -0.013549847, 0.004894509, 7.272181E-4, -0.02507672, 0.012409379, 0.02779212, -0.0055665704, 0.002481197, 0.022008318, 0.0093613425, 0.01385533, -0.019903883, -0.003390856, 0.027466273, -0.020990044, -0.009660036, -0.0014943187, -0.010983794, -0.034051117, -0.008981186, 0.0051932028, 0.016536787, -0.004042552, -0.012416167, -0.025388991, 0.011350373, -0.008505991, -0.014744623, 6.2242063E-4, -0.014065773, 0.01570859, -0.0035469914, 0.005373098, 0.023596827, 0.010983794, -0.0071007716, -0.018084565, 0.01982242, -0.022714322, 0.04385371, 0.008472049, 0.014364467, -0.009347765, 0.03196026, 0.003105739, 0.022741476, -0.039047454, 0.010040192, -1.0925243E-4, 0.0076981597, -0.0035639626, -0.0024302832, -0.018519029, -0.010786927, -0.018233912, 0.009809383, 0.04779104, 0.013638098, 0.01661825, 0.023976984, 0.004381977, 3.659426E-5, 0.019279342, 0.012008857, -0.009619305, -0.025429722, 0.015002586, 0.0034485583, 0.021899702, 0.0069514243, 0.013454808, -7.887389E-4, 0.022266282, 0.0025456876, 0.0074673505, 0.014269428, -0.0076845824, 0.011153506, 0.006931059, -0.02304017, -0.007745679, 0.003066705, 0.04078531, -0.0015588094, 7.5988774E-4, -0.023691867, -0.01982242, -0.021981165, 0.007915392, -0.010291367, -0.022062626, 0.008675704, 0.02521249, 0.030548252, 0.002902084, -0.006347248, 0.0031939894, -0.040052153, 0.0020161846, -1.0389588E-4, -0.013984311, -0.01385533, 0.03581613, 0.0023793695, 0.011886665, 0.026787423, -0.013481962, 0.059467264, 0.011072044, 0.022782208, -0.038097065, 0.004005215, 0.007202599, 1.0587144E-5, 0.0016971251, -0.017432868, 0.015219818, -0.016468901, 0.0063031227, 4.7222507E-4, 0.032476187, -0.0133801345, 0.070980564, 0.014255851, -0.014798931, 0.022972286, -0.006306517, 0.0061435928, 0.015328434, 0.02317594, -0.015559243, -0.008397375, -0.0038626567, -0.004405737, 0.004381977, -0.027968623, -0.0036861557, -4.0200652E-4, 0.019401534, 0.025904918, -0.0070464634, -0.014160812, -0.006130016, 0.003608088, 0.01987673, 0.010522176, 0.0036012996, -0.010943063, 0.024425024, -0.011778048, -0.012477264, -0.04504849, -0.002046733, -0.020949312, 0.0034468612, -0.0035334146, 0.025185337, -0.01385533, 0.0049861534, -0.006574663, 0.032177493, 0.0049182684, -0.025850609, 0.004758739, -0.023474634, -0.015898667, 0.019157149, -0.011207814, -0.0064490754, -0.023936253, -0.017310675 ], + "id" : "61368c62-ff2e-47d4-ac11-8b292e5d4b6b", + "metadata" : { + "source" : "movies.csv" + } + }, + "d5450282-d063-4acf-b031-d78a512e7b46" : { + "text" : "1,188,Wang Qian-Yuan-Zhang Yi-Huang Zhizhong-Jiang Wu-Oho Ou-Du Chun-Vision Wei-Tang Yixin-Li Jiuxiao-Jerry Lee-Liang Jing-Hou Yong-Xin Baiqing-Yu Haoming-Liu Xiaoqing-Yao Chen-Ryan Zheng Kai-Yu Ailei-Huang Xiaoming-Augusta Xu-Holland-Ethan Juan-Song Yang-Gao Shuang-Huang Miyi-Pang Guochang-Thomas Fiquet,siege-second sino-japanese war (1937-45),/skGBLKakvPhyXaTPwZzx2zyOKz5.jpg,/IRN1JuNwr1VKp88Dscgja2uR8H.jpg,612845-51533-344556-284298-390841-33106-362682-457837-535167-574037-238811-568160-452557-20342-16411-351694-111966-312408-620249-13688-284427\r\n6637,National Treasure: Book of Secrets,Action-Adventure-Mystery-Thriller,en,Benjamin Franklin Gates and Dr. Abigail Chase re-team with Riley Poole and now armed with a stack of long-lost pages from John Wilkes Booth's diary Ben must follow a clue left there to prove his ancestor's innocence in the assassination of Abraham Lincoln.,29.113,Walt Disney Pictures-Jerry Bruckheimer Films-Saturn Films-Junction Entertainment-Sparkler Entertainment-NT2 Productions,12/13/07,130000000,459242249,124,Released,The Greatest Adventure History Has Ever Revealed,6.3,4556,Nicolas Cage-Jon Voight-Harvey Keitel-Ed Harris-Diane Kruger-Justin Bartha-Helen Mirren-Bruce Greenwood-Ty Burrell-Albert Hall-Joel Gretsch-Randy Travis-Christian Camargo-Michael Maize-Timothy V. Murphy-Alicia Coppola-Armando Riesco-Brent Briscoe-William Brent-Michael Manuel-Brad Rowe-Troy Winbush-Billy Devlin-Richard Cutting-Zachary Gordon-Peter Woodward-Oliver Muirhead-Larry Cedar-Alicia Leigh Willis-Rachel Cora Wood-Lisa Marie Sheldon-Natalie Dreyfuss-Michael Stone Forrest-David E. Goodman-Susan Lynskey-Patricia DiZebba-Grant Thompson-Frank Herzog-Eric Carlson-Emerson Brooks-Tim Talman-Stephen Hibbert-Emily Joyce-Glenn Beck-Susan Beresford-Demetri Goritsas-C.C. Smiff-David Ury-Peter Miles-Ben Homewood-Michael McCafferty-Hans Georg Struhar-Eddy Shalita,paris france-london england-assassination-riddle-assassin-usa president-parent child relationship-husband wife relationship-gold-treasure-family history-palace-treasure hunt-archaeologist-american civil war-archeology-secret formula,/xxoIBbvmTj1ZttzV439jAvoovTw.jpg,/knk3sl4aJLtKY8jV5ADJ4oZxijF.jpg,2059-1250-1735-9679-217-1734-27022-1979-61880-564-13811-956-18360-13448-9738-71676-1996-8960-1593-955-1701\r\n240832,Lucy,Action-Science Fiction,en,A woman accidentally caught in a dark deal turns the tables on her captors and transforms into a merciless warrior evolved beyond human logic.,57.", + "embedding" : [ 0.0041605206, -0.032625075, -0.004726928, -0.023535091, -0.02175005, 0.015886873, -0.0073324027, -0.007888512, -0.016312538, -0.032789845, 0.022601377, 0.030510485, 0.010854428, 0.0075452346, -0.0022759284, 0.015873142, 0.014692268, -0.01068279, 0.013408411, -0.039902553, -0.014623612, -0.018839058, -0.018262351, 0.0077306046, -6.977111E-4, 0.01119084, 0.026075343, -0.0104150325, -0.0049225963, -0.01069652, 0.008135672, 0.005059907, -0.005073638, -0.008787898, -0.006045113, 0.004823046, 0.008760436, -0.033174317, 0.018784134, -0.010229663, 0.011740083, 0.017328637, -0.008472083, 0.020912452, -0.0122412685, -7.6979934E-4, 0.009508781, -0.018468319, 0.011554713, 0.02427657, 0.015584789, 0.030483024, -0.02415299, -0.029137377, -0.019992469, -0.00906252, -0.011540983, 5.3508347E-4, -0.003522025, -0.009577436, 0.016655814, -0.0011396806, -0.03987509, -0.0048745377, -0.010826966, -0.009117445, -0.010449361, -0.011163377, 0.013284831, 0.0094263945, 0.020967377, 0.021173343, 0.011836201, 0.014829579, 0.041550282, -0.0334764, -0.04418665, -0.0031186743, -0.017520873, 0.009337142, 0.010154142, -0.005468407, -0.0036387392, -0.019305915, 0.015145394, 0.0242903, -0.017836688, 0.031251963, -0.03193852, -0.0014958308, 0.017973999, 0.021461695, 0.0062030205, 0.009714747, 0.0034207583, 0.018262351, -0.018646823, 0.009508781, -0.02299958, -0.03215822, 0.0020836932, 0.005142294, -0.019525612, -0.0120696295, -0.011767546, -8.045561E-4, 0.0054958696, -0.020308284, 0.031965982, 0.0031856133, -0.012357983, 0.008602529, 0.019086218, -0.036057845, 0.004115895, -0.03248776, 0.020170974, -0.009975638, -0.005413483, -0.015351361, 0.024482537, 0.028025158, 0.017905343, -0.019347109, 0.035233982, 0.021049764, -0.0074147894, -0.011616504, -0.003508294, -0.014321528, 0.02754457, 0.002095708, 0.03193852, 0.013758554, -0.03130689, 0.05072265, -0.030290788, 0.011554713, -0.019717848, -0.014129293, 0.043472636, 0.04237415, -0.021283193, -0.02993378, -0.015667176, 0.008197461, 0.0018897415, 8.254746E-5, 0.011904856, 0.012948419, 0.027695611, 0.015790755, 0.019841427, 0.030126015, 0.02087126, 0.014829579, 2.4608691E-4, -5.848587E-4, -0.0011276659, -0.016875511, -0.0063231676, -0.016697008, -0.012186344, -0.0141704865, -6.0373894E-4, 0.019058755, 0.023892099, -0.021187074, -0.012660067, 0.002741069, -0.0054958696, 0.012969016, -0.017836688, 0.008897747, 0.00418455, 0.010909352, 0.016614622, -0.012612008, -0.03688171, -0.007648218, 7.3118065E-4, -9.63751E-4, 0.0314442, 0.018578166, -0.01282484, 0.009234159, 0.010895621, -0.027503377, 0.01214515, -0.024798352, -0.00924789, 0.020926183, -0.0010907636, -0.003401878, -0.6423954, -0.018276082, -0.023315394, -0.002727338, 0.006213319, 3.0358584E-4, 0.003104943, 0.01459615, -0.015159125, -0.016902974, -0.018468319, 0.016147764, 0.022711225, -0.019196065, -0.020212166, -0.01989635, -0.003752021, -0.005149159, 0.013827209, 0.00812194, -0.020308284, 0.019141141, 0.01886652, 0.010106083, 0.013161251, 0.0077580665, -0.011788142, -0.015145394, 0.0022330189, 0.014953159, -0.0314442, 0.02376852, 0.02440015, -0.0062339157, 0.033091933, -8.367384E-4, -0.02111842, 0.04891015, 0.033805948, 0.029219763, -0.011163377, -0.0064776423, 0.0045587225, 0.0018931743, -0.024111796, 0.012055898, 0.0053310962, 0.006292273, 0.011012335, -0.007366731, 6.152173E-5, 0.005969592, -0.0023222708, -0.009646092, -0.012275596, 0.0081905965, 0.0021111553, -0.04866299, 0.019347109, -0.0017464232, -0.019923814, 0.030400638, 0.01112905, 0.009488184, -0.01986889, 0.0397927, -0.011424269, -7.3804615E-5, 0.012591411, -0.020212166, -0.003580382, 0.0077306046, -0.013765419, -0.007936571, 0.0034499369, 0.023590015, 0.035645913, 0.0066286842, -0.012900361, 0.017369831, -0.008472083, -0.013580049, 0.008094478, 0.01364184, 0.013154386, -1.8976798E-4, -0.037293646, 0.0018931743, 0.016202688, -0.0020716784, 0.003985449, 2.6882903E-4, 0.013628108, 0.0072912094, -0.007847318, 0.00924789, -0.013868403, -0.010202201, 0.04012225, -0.05519899, -0.00904879, -0.0074079237, 0.008266117, -0.01283857, 0.0033297897, 0.024304032, -0.0040438063, -0.018536974, 0.036634553, -0.013346621, -0.00892521, 0.0053173653, -0.011170243, -0.004802449, -0.0033778485, -0.027489645, 0.02943946, 0.019580537, 0.009076252, 0.004929462, 0.0027187562, 0.0060073524, 0.002167796, -0.02014351, 0.0053551258, 0.035426218, -0.008478949, 0.0038206761, 0.011554713, 0.013511394, 0.0038344073, -0.016010452, 0.021544082, -0.01785042, -0.0026861448, -0.008272983, 0.021420503, -0.006618386, 0.00798463, 0.010895621, -0.03561845, -0.0033915797, -0.0051766215, -0.010772041, 0.0076756803, -0.009220428, -0.020349478, 0.0034413547, -0.018605629, -0.008307311, -0.01684805, -0.0023445839, 0.004853941, 0.016422385, -0.0014203098, 0.011733218, -0.018578166, -0.011472327, 0.017932806, -0.019607998, 0.004761256, 0.01188426, 0.0026415188, -0.006985693, 0.0400124, -0.004668571, -0.005399752, 0.014445108, -0.029631695, -0.025869377, 0.019607998, -0.011122184, -0.007888512, 0.016545966, -0.009989369, 0.021914823, -0.020033663, 0.012866033, 0.023301663, -0.012124554, 0.0069444994, -0.00779926, -0.024084335, -0.013401546, 0.012646335, 0.016683277, 0.0065222685, -0.014074369, -0.004397382, -0.006827785, -0.025992956, -0.0047028987, -0.0068071885, -0.0072912094, 0.014554957, 0.036936637, 0.0012709842, 0.012028436, 0.023150621, 0.0104150325, 0.035810687, 0.021942284, 0.0038927644, -0.005815117, 0.024139259, -0.031773746, -7.616465E-4, -0.027434722, 0.0087329745, -0.0030894957, 0.031114653, -0.005959294, -0.01282484, -0.013174983, 0.0077923946, 0.022079594, 0.0020733948, -0.004249773, -0.010531748, -5.157205E-5, 0.0032851635, -0.014266605, 0.008355369, 0.013882133, -0.029357074, 0.003779483, 0.014554957, -0.012502159, -0.013497663, -0.008403428, -0.004685735, -0.017054016, -0.007510907, -6.5523054E-4, -0.013888999, -0.0019309347, 0.03561845, -0.0067488314, 0.036909174, -0.004936327, -0.0070852432, 0.0125639485, 0.023576284, -0.0062030205, -9.81773E-4, -1.3741819E-4, 0.01760326, 0.013058268, -0.011705755, 0.044104267, -0.021241998, 0.032872234, -0.013435873, 0.006093172, 0.005324231, -0.018385932, 0.0051731886, 0.01624388, 0.036057845, 0.019882621, 0.02012978, -0.02754457, 0.0064467476, 0.008334773, 0.020212166, -0.00861626, -0.013511394, 0.0051045334, -0.006292273, -0.025443712, -0.006364361, -0.023933293, 0.017795494, 0.0042909663, 0.0012761333, -0.015790755, 0.0026415188, 0.0076001594, -0.0014683686, 0.022052133, -0.012522755, -0.0291923, 0.0075177727, 0.023356587, -0.016916705, -0.019676654, -0.026912939, -0.0062682433, -0.044076804, -0.0060416805, -0.0042223106, 0.011369344, -0.0062339157, -1.6992226E-4, -0.024358956, -0.0026809957, 0.015502403, -0.015516133, 0.021983478, 0.032405376, -0.006148096, 2.817019E-4, -0.0080670165, -0.0069410666, 0.02943946, -0.0024904767, 0.0042188778, 0.012378579, 0.019278452, -9.894968E-4, -0.010380705, -0.008774168, -0.040946115, 0.009199832, -9.577436E-4, 0.0015842246, -0.018207427, -0.009467588, 0.021447966, -0.013751688, -0.014760924, -0.03397072, -0.028093813, 0.01037384, 0.07030319, 0.04166013, -0.0036764997, -0.009906983, -0.004321861, 0.010511151, -0.011678293, -0.02401568, -0.009275353, -0.0060554114, 0.003074048, -0.0015567625, 0.02515536, 0.011026067, 0.025608486, -0.012117689, -0.005008416, -0.020596636, -0.009199832, -0.013731091, -0.030428099, -0.003153002, 0.025841914, 0.02905499, -0.0027548003, -0.016573427, 0.038694218, 0.020184705, 0.0047131972, 0.0075932937, -0.010552344, 0.012172612, 4.823046E-4, 0.0077923946, -0.023864638, 0.0018279515, 0.027009057, 0.01698536, 0.0154062845, -0.0024990586, 0.0034327728, 0.019305915, 0.010195335, -0.016957898, 0.011369344, -0.02415299, -0.010607269, 0.0069925585, 0.027585763, -0.026844284, 0.023178082, -0.0037039618, -0.013943924, -0.025320133, 0.025992956, 7.9039595E-4, -0.01624388, 0.0015567625, -0.0088565545, -7.4276625E-4, 0.007092109, -0.044076804, 0.017177595, -0.013168117, 0.010325781, -0.02238168, -0.016930437, -0.018001461, -0.005169756, 0.01875667, -0.004256638, -0.0056606424, -0.0043596216, 5.157741E-4, 0.0091861, 5.784222E-4, 0.042181913, -0.0019755608, 0.0136006465, 0.011019201, -0.03311939, -0.036222618, 3.597975E-4, -0.02515536, 0.008362235, 0.015378823, 0.011561579, 0.011019201, -0.005337962, -0.0074010585, 0.004109029, 5.474334E-6, -0.0093508735, -0.01057294, 0.040698957, 0.0012254999, -0.0022004074, 0.017246252, 0.002305107, 0.006958231, 0.008636856, -0.022738688, -0.013161251, -0.018399663, -0.009144907, -0.0149119655, 0.0074010585, 0.0031512855, -0.019951276, -0.0037588864, -0.016916705, -0.022230638, 0.015749563, 0.008321041, 0.009172369, 0.0031718821, 0.01308573, 0.021269461, -0.006563462, -0.003038004, -0.005801386, -0.007867916, 0.003992315, 0.027846653, -0.011740083, 0.046932872, -0.029988704, -0.021557814, 0.0053070667, 0.020473057, 0.0034087435, 0.014527495, -0.015008084, 0.0065909238, -0.009089983, -0.009405797, 0.013154386, -4.823046E-4, -0.0038000797, 0.0072019575, -0.020363208, -7.170204E-4, 0.012399176, 0.0052967686, -0.0038756006, -0.030235864, 0.007977764, -0.015008084, 0.024619848, 0.01760326, -0.0031324052, 0.0012340818, -0.026020419, -0.014637344, -0.0121932095, -0.042566385, -0.03460235, 0.005653777, 0.028025158, -0.0054649743, 0.03888645, 0.008128806, 0.035947997, 0.008396562, 0.006027949, 0.025979225, -0.021338116, -0.010023697, -0.042950854, -0.0027290545, 0.013834075, 0.023617478, 0.017397294, 0.011122184, -0.0018416827, 0.02515536, 0.006971962, 0.024358956, 0.009913848, -0.037540805, -0.0265422, 0.0067248023, -0.026748165, -0.00534826, -0.025869377, -0.020541713, 0.044818282, -0.016944166, 0.006089739, -0.015227781, 0.030730182, -0.007181361, 7.097258E-4, -0.022340486, 0.02842336, -0.028890217, 0.004170819, -0.017658183, -0.0056606424, 0.0088084955, 0.001994441, 0.0093508735, -0.004335592, -0.022862267, 0.0026089074, 0.006494806, -0.024221646, -0.031279426, 0.005804819, -0.017012823, -0.013463335, -0.035261445, 0.009591168, -0.037787963, 0.004442008, 0.00355292, -0.007929705, 0.004112462, -0.018331008, -0.04490067, 0.02766815, 0.008465218, 0.04402188, 0.015708368, 0.06667818, 0.03688171, 0.013614377, -0.022148252, 6.731453E-5, -0.0076550837, -0.008307311, 0.025704604, 0.022930924, -0.01812504, 0.0038069452, 0.007998361, -0.0012409474, -0.035179056, -0.022903461, 0.014541226, 0.01823489, 0.022436604, -0.022299293, -0.007359865, -0.021695124, 0.01861936, -0.014376453, -0.009481318, 0.0053104996, -0.023837175, -0.012632605, 0.0047818525, -0.009900117, 0.008224924, -8.757862E-4, -0.03625008, 0.019470688, -0.016298806, -0.006422718, -0.008842823, -0.018880252, 0.037046485, -0.026253847, 0.020692755, -1.4825288E-4, 0.026363695, 0.0041536554, -0.0076001594, 0.003549487, 0.035783224, -0.009364604, 0.020541713, -0.0072156885, 2.4136684E-4, 0.014705999, 0.029384537, -0.030208401, -0.011547848, -0.025718335, -0.0060348148, 0.017191326, 0.0038584368, 0.0066595795, -0.005073638, -0.024867008, -0.017905343, 0.0073941927, -0.004411113, 0.009501915, -0.0455323, 0.014802117, 0.012797377, 3.0229858E-4, -9.114012E-4, -0.0054512434, -0.00710584, -0.004311563, 0.012625739, -0.007867916, 0.004517529, -0.009103714, -0.013593781, -0.035233982, -0.02703652, -0.0074010585, -0.01068279, 0.01787788, -0.030345712, 0.015145394, -0.015186587, 0.01226873, 0.0042257435, 0.015296436, -0.006347197, 0.0074079237, 0.023246737, -0.012612008, -0.0038653023, 0.0035288904, 0.033146854, 0.011740083, 0.012625739, -0.011781276, 0.0022862267, 0.03951808, -0.016642082, 0.010950546, 0.013243638, -0.021969747, -0.01886652, 0.0028354705, 0.010875025, 0.005564525, 0.0068106214, -0.027366066, -0.0040129116, -0.015323898, 0.024688503, -0.012357983, 0.012756184, 0.028862754, 0.0013344905, 0.030620335, 0.034629814, -0.006333466, -0.024427611, 0.006707638, -0.013991983, -0.0222581, 0.0034413547, 0.011286957, 0.00657376, 9.843477E-4, 0.012254999, -0.04100104, -0.0069479323, -0.017754301, -0.03171882, 0.0046342434, 0.013168117, 0.033888333, 0.016312538, -0.008952672, 0.007710008, -0.0072912094, 0.010964276, -0.01911368, -0.0060348148, 0.0041570878, -0.006244214, 0.0100442935, 0.034657273, -0.02188736, -0.01012668, -0.0069891256, 0.008533874, -0.0011765829, 0.033915795, -0.022491528, -0.021667663, -0.015584789, 0.011486058, 6.599506E-4, -0.014513764, 0.01937457, -0.040396873, 0.008046419, 0.0051594577, 0.019594267, -0.0057670586, 0.0041021635, -0.0026878612, -0.016010452, 0.0013645273, 0.0059764576, -0.022848537, 0.0061755585, -0.010916218, 0.024853276, -0.0069753947, -0.0025780124, 0.03432773, 0.014829579, -0.0030259893, -0.007174495, -0.019978737, 0.008945806, -0.00974221, -0.0022364515, 0.013442739, 0.026624586, -0.041605208, 0.021983478, -0.0139233265, 0.006079441, 4.8659556E-4, 0.014239142, -0.026830552, 0.030537948, 0.018193696, -0.05459482, -0.002030485, -0.013827209, -0.012289327, 5.119123E-4, 0.0011010619, -0.02415299, -0.017534604, -0.002095708, 0.010339512, 3.3962997E-4, -0.024345225, -0.0122412685, -0.002615773, -0.0047509577, 0.006137798, 0.18839058, -7.449117E-4, 0.027434722, 0.036689475, 0.007771798, 0.017919075, 0.0232742, 0.037211258, -0.0046514072, 0.01296215, -0.0070509156, 0.0068415166, 0.0062373485, 0.0012666932, -0.0059867557, -0.021846166, -0.01875667, -0.019058755, -0.024194183, -0.029576771, -0.005142294, 0.0036318738, -0.006889575, -0.019168604, -0.01100547, -0.008080747, 0.010531748, -0.0014580702, 0.021090956, -0.001016959, -0.019566806, -0.008032689, -0.004740659, 0.016408654, -0.037760504, -0.008815361, -5.204942E-4, 0.008513276, 0.014898234, -7.6979934E-4, -0.007256882, -0.016793124, -0.009577436, -0.012399176, 0.015818218, 0.01787788, -0.024098067, -0.005210949, -0.021187074, 0.016202688, -0.032048367, 0.010593537, 0.008877151, 0.033751022, -0.0054031843, 0.001421168, 0.008060151, 0.012014705, 0.0029779305, 0.005272739, 0.006910172, 0.027269948, -0.02251899, 0.013511394, 0.008705512, 0.019319646, -0.042429075, -0.022834806, 0.011170243, -0.03896884, -0.020239629, -0.028148739, -0.020363208, -0.0048917015, -0.0038309745, -0.005938697, 0.02603415, 0.0026552498, 0.006419285, 0.005612584, -0.022230638, -0.026858015, 0.0067316676, -0.018015193, -0.0030311386, -0.018784134, 0.010991739, -0.0075452346, -0.009151773, -0.00553363, -0.020212166, -0.023178082, -0.0173561, 0.0055130334, -0.005636613, 0.0045690206, 0.026006687, 0.0088565545, -0.008781033, -0.006347197, -0.019264722, 0.029604234, 0.02766815, -0.0093508735, -0.013092596, -0.0242903, -0.0052693062, -0.013291697, 0.01973158, -0.005200651, -0.0050461763, -0.02993378, -0.0029195733, -0.0124541, -0.018523242, 0.014829579, 0.010545478, -0.010476823, 0.037266184, -0.00616526, -0.005032445, -0.036305007, 0.006755697, 0.008060151, -0.0045106634, -0.0281762, -0.015928065, 0.0068106214, -0.0052418443, -0.026775628, 0.027022788, -0.033366553, 0.00446947, 3.926234E-4, 0.006937634, 0.010490554, 0.010085487, 0.008478949, 0.005743029, -0.0016975062, -0.0020545146, -0.026020419, 0.009392067, 0.0069204704, 0.032103293, -0.0068380837, -0.008822226, -0.009707882, -0.0019378003, -0.032460302, -0.015625982, -0.016999092, 0.0065909238, 0.022203175, 0.044571124, 0.0051011005, -0.026363695, -0.02641862, -0.012749319, 0.0467681, -0.028203662, 0.004932895, 0.029164838, -0.012399176, -0.028080082, -0.020692755, -0.17718601, 0.02540252, 0.0050530415, -0.026267579, 0.008760436, 0.024001949, 0.02213452, 0.0014048623, 0.0123167895, -0.01559852, 0.029137377, 0.009316546, -0.0412482, 0.0059181005, -0.007256882, 0.013696764, -0.027887847, 0.03158151, 0.02779173, 6.6681614E-4, 0.034931898, 0.009790269, -0.018179966, 0.001874294, 0.009845193, 0.0030723317, 0.019662922, 0.0023119724, -0.004551857, -0.011273226, -0.017411023, -0.012042168, 0.016834319, -0.009501915, -0.0038412728, 0.0041330587, -0.019154873, -0.010675924, -0.010449361, -0.0017884747, 0.02954931, 0.016065378, 0.024358956, 0.016010452, 0.008575067, 0.027160099, 0.005609151, -0.019319646, 0.0024664474, -0.02376852, -0.02629504, -0.0379802, 0.03682679, -0.0024973422, 0.0056434786, 0.013003344, 0.007710008, 0.0061858566, 0.0048608063, 0.0027530838, -0.01583195, -0.008904613, 0.009728478, -0.01786415, -0.0069307685, -0.017685646, -0.017397294, 0.018550705, -0.016902974, 0.006834651, -0.015625982, 0.011520386, 0.025883108, -0.00361471, 0.0021489158, -0.0028749474, -0.017891612, 0.0016914988, -0.0073324027, 0.012447234, -0.0314442, 0.029878855, -0.0049054325, 0.007195092, 0.012598276, -0.0013688182, 0.0035872476, -8.461785E-4, 0.010826966, -0.02867052, -0.0045621553, -0.009790269, -0.042841006, -0.0020287689, 0.0040232097, -0.003978584, -0.007572697, 0.0036833654, -0.002411523, -0.01749341, 3.6044116E-4, -0.020912452, -0.017369831, 0.020527981, 0.019676654, -0.001674335, 0.010531748, 0.03221314, 0.023741057, -0.008101344, -0.018111309, 0.011891126, 0.019841427, 0.025361326, -0.015255243, 0.017136402, -0.026624586, -0.019168604, 0.007304941, 0.021722587, 0.025224015, 0.012110823, -2.1154463E-4, -0.0055576595, -0.0032611343, -0.0033812814, -0.07667442, 0.01151352, 0.018179966, 0.03506921, -0.03333909, 0.041055962, -0.011959781, 0.021049764, -0.018358469, 0.030180939, 0.005458109, -0.030180939, 0.0059215333, -0.0040197773, 0.024496267, 0.0018313844, -0.006906739, -0.0040849997, -0.008348504, 0.03193852, -0.0055713905, -0.011589041, 0.0018725776, -0.0314442, -0.0035941133, -4.93032E-4, -0.036414854, 0.03825482, 0.0073941927, -0.0069616633, 0.014431377, -0.023233008, 5.7584763E-4, -0.039902553, -0.008396562, -0.018427124, -0.018111309, -0.026967864, 0.005004983, -0.050338183, 0.015667176, 0.01848205, 0.012536487, -0.016834319, -0.005228113, 0.016587159, -0.022724956, 0.032460302, -0.011815605, -0.028203662, -0.0076688146, -0.01214515, -0.018839058, 0.0068689785, 0.015571058, 0.020102318, 0.017905343, 0.0105386125, -0.019182336, -0.019058755, 0.009522512, -0.015982991, -0.035179056, -0.0048436425, 0.025306402, 0.021557814, 0.008327907, -0.0114036715, -0.0026037581, -0.012062764, -0.026020419, 0.034876972, -0.029878855, -0.007284344, -0.030483024, -0.0167382, -0.011238898, -0.006542865, 0.037128873, -0.03811751, 0.0052967686, -0.029164838, 0.0055233315, -0.026748165, 0.014280335, 0.020019932, 0.01660089, 0.015172856, -0.0075315037, -0.035151593, -0.0055233315, 0.026116537, 0.0024063739, -0.020967377, 0.010497419, 0.031883594, 0.02390583, 0.0010246827, -0.010751445, 0.0109574115, -0.017081479, -0.010778907, -0.0779926, 0.017026553, -0.012900361, -0.014623612, -0.0012872898, -0.00349113, 0.012509025, -0.00569497, 0.0026140565, 0.004520962, -0.0033194914, 0.01937457, -0.012433504, 6.3184474E-5, -0.009254755, -0.00904879, 0.008472083, -0.0045724534, 0.01314752, 2.9200024E-4, -0.012357983, 0.0056572095, 0.023013309, -0.007936571, -0.014486302, 0.029494384, 0.005365424, 0.026198924, -0.021022301, -0.013991983, 0.026143998, -0.016312538, -0.001016959, -7.5778464E-4, -0.009467588, -0.033146854, -8.157127E-4, -0.0064021214, 0.021200806, 0.019951276, -0.009357739, -0.017534604, -0.01951188, 0.0014486301, -0.008073882, 0.030510485, -0.01559852, 0.024839545, 0.020473057, -0.0011036365, 0.027846653, 0.010964276, -0.015694637, -0.012200075, 0.023699865, -0.022683764, 0.054100502, -0.0011079274, 0.0015790756, -0.0012975881, 0.020733949, 0.005018714, 0.030098552, -0.029384537, 0.005262441, -0.0154062845, 0.0083141755, -0.013806612, 0.0025522667, -0.024619848, 0.002154065, -0.014321528, 0.0010495703, 0.021832436, 0.006556596, 0.026143998, 0.011788142, -0.003407027, -4.30813E-4, 0.0027290545, 0.009323412, -0.015914336, -0.035920534, 0.013195579, -0.0019069053, 0.014705999, -0.0075383694, 0.0035597854, -0.0014417646, 0.0062957057, -0.0012109106, 0.0047646887, 0.009639226, -0.006196155, -0.0010212499, 0.009666689, -0.02014351, -0.009906983, 0.0094263945, 0.014060638, 0.008849689, 0.0027342036, -0.0077031422, -0.024880737, -0.021269461, -0.001398855, -0.02791531, -0.01447257, 0.021846166, 0.013353487, 0.00867805, 0.022724956, -0.011843067, 0.0031306888, -0.023013309, 0.011870529, -0.012399176, -0.028505746, -0.023191813, 0.052864704, 0.0043149954, 0.008410294, 0.024001949, -0.023548823, 0.043335326, 0.009975638, 0.022285562, -0.034300268, 0.0049740877, -0.0028886783, 0.002811441, 0.004579319, -0.02842336, 0.015584789, -0.0142940665, 0.009364604, 0.008355369, 0.027750537, -0.025704604, 0.065085374, 0.030400638, -0.007915975, 0.02363121, -0.016930437, 0.016573427, 0.015612251, 0.014733462, -0.0061137686, -0.0051011005, 0.0018639957, -0.018893981, -0.006082874, -0.025182823, -0.0146648055, -0.0040781344, 0.008355369, 0.014692268, -0.014101831, -0.019594267, 0.0035735166, -7.260315E-4, 0.025704604, -3.6945217E-4, -0.018674284, -0.014554957, 0.019607998, -0.016285075, -0.002696443, -0.030126015, -0.004685735, -0.015763294, -6.462195E-4, -0.010394436, 0.021818705, -0.0059764576, -0.0062682433, -0.007812991, 0.027352335, 0.018015193, -0.00843089, -0.0021815272, -0.009694151, -0.009206697, 0.007524638, -0.014143025, 0.00328688, -0.026267579, -0.021214537 ], + "id" : "d5450282-d063-4acf-b031-d78a512e7b46", + "metadata" : { + "source" : "movies.csv" + } + }, + "bb8321a5-c629-4070-877a-a7fc5eec20da" : { + "text" : ",1726-68721-1771-10195-76338-24428-1724-100402-99861-271110-102899-1930-49538-557-118340-559-284052-1865-315635-558-283995\r\n2062,Ratatouille,Animation-Comedy-Family-Fantasy,en,Remy a resident of Paris appreciates good food and has quite a sophisticated palate. He would love to become a chef so he can create and enjoy culinary masterpieces to his heart's delight. The only problem is Remy is a rat. When he winds up in the sewer beneath one of Paris' finest restaurants the rodent gourmet finds himself ideally placed to realize his dream.,111.323,Pixar-Walt Disney Pictures,6/28/07,150000000,623726000,111,Released,He's dying to become a chef.,7.814,16116,Patton Oswalt-Lou Romano-Ian Holm-Brian Dennehy-Peter Sohn-Peter O'Toole-Brad Garrett-Janeane Garofalo-Will Arnett-Julius Callahan-James Remar-John Ratzenberger-Teddy Newton-Tony Fucile-Jake Steinfeld-Brad Bird-St��phane Roux-Andrea Boerries-Marco Boerries-Lindsey Collins-Thomas Keller-Brad Lewis-Lori Richardson-Jack Bird-Jamie Oliver-Bill Farmer-Michael Giacchino,work-sibling relationship-paris france-expensive restaurant-river-confidence-evacuation-mouse-leaving one's family-restaurant critic-spice-cookbook-food-chef-sewer-unlikely friendship-rat-french cuisine,/t3vaWRPSf6WjDSamIkKDs1iQWna.jpg,/xgDj56UWyeWQcxQ44f5A3RTWuSs.jpg,12-585-9806-14160-862-863-10193-920-10681-808-62211-425-38757-62177-9487-953-809-9502-49013-150540-950\r\n363088,Ant-Man and the Wasp,Action-Adventure-Science Fiction,en,Just when his time under house arrest is about to end Scott Lang once again puts his freedom at risk to help Hope van Dyne and Dr. Hank Pym dive into the quantum realm and try to accomplish against time and any chance of success a very dangerous rescue mission.,51.359,Marvel Studios,7/4/18,140000000,622674139,119,Released,Real heroes. Not actual size.,6.953,12294,Paul Rudd-Evangeline Lilly-Michael Pe��a-Walton Goggins-Bobby Cannavale-Judy Greer-T.I.", + "embedding" : [ 0.005128534, -0.023810565, -0.009119664, -0.030839313, -0.0067154514, 0.013730577, 0.01324701, -0.015841926, -0.037214223, -0.039175734, 0.0397206, 0.018035004, 0.009712204, -0.017435655, -0.0070151263, 0.01170777, 0.028986774, -0.018784193, 0.020555, -0.025431536, 0.0050195614, -0.004965075, -0.015269819, 0.0026119428, 0.01162604, -1.8559437E-4, 0.030648611, -0.02164473, -0.007709828, -0.011762256, 0.025022889, -0.0181576, -0.01197339, -0.0259764, -0.0127362, -9.305259E-4, 0.019301813, -0.022434782, 0.022802567, -0.014656846, 0.0044883187, 0.009262691, -0.011952958, -0.0043827514, -0.007832423, 0.008002693, -0.0029950503, -0.021767324, -0.009133286, 0.024137484, 0.027352182, 0.025758455, -0.023075, -0.040537897, -0.006129722, -0.005407777, -0.018865922, 0.021699216, -0.0043657245, -0.00721264, 0.024246456, 0.0013127822, -0.04143692, -0.014643225, -0.002337808, -0.0247777, -0.007839234, -0.033509146, 0.0012242417, 0.012443336, 0.033836067, 0.013533064, 0.014166469, -0.007961828, 0.027284075, -0.015038252, -0.04100103, 0.006385127, 0.015079116, 0.009242259, 0.012286687, -0.019247327, 0.0020108894, 0.0088880975, 0.023742458, 0.019996516, -0.009719015, 0.018811436, -0.034108497, 0.007239883, 0.021331433, 0.028305694, 0.005898155, 0.0061161006, 0.012593173, 0.011980201, -0.033046015, 0.01578744, -0.011026689, -0.04582308, 0.0056768036, -3.7964903E-5, -0.0109790135, -0.01706787, -0.0021743486, -7.436545E-4, 0.0012974578, -0.017367546, 0.016168846, 0.0046585887, -0.010822365, 0.008874476, 0.02928645, -0.035252713, -0.004416805, -0.033618122, 0.014302685, -0.00568702, -0.0104409605, -0.026180724, 0.022353053, 0.05162588, 0.018361922, -0.018511761, 0.04879259, 0.021086244, -0.003230023, -0.015882792, -0.011360418, -0.0047641564, 0.028741587, -0.008711016, 0.028632613, 0.01476582, -0.030648611, 0.05966263, -0.01800776, -8.1303954E-4, -0.018293815, -0.026371427, 0.021181595, 0.022012513, -0.009439772, -0.0022254298, -0.029177478, -0.007825612, 0.00856799, 0.0024535917, 0.014057497, -0.015692089, 0.02944991, 0.008384097, 0.0077370717, 0.015433278, 0.027147857, 0.017299438, 0.0034939416, -0.017013384, 0.00500594, -0.024900293, 0.00924907, -0.0047062645, -0.0038719412, 0.0018644572, -7.151342E-5, 0.0296951, 0.031084502, -0.01383274, -0.023292944, 0.002211808, -0.0012863904, 0.009998258, -0.012933713, 0.026630238, 0.012491012, 0.01731306, -0.009984637, 0.0012353093, -0.01909749, 0.013512632, -0.0016975926, 0.0048390753, 0.033618122, 0.037486658, 0.0022867268, 0.0106112305, 0.035007525, -0.0017657005, -0.0021692405, -0.018920409, 0.0034275362, 0.020950029, -0.008499881, -0.013587551, -0.63945264, -0.0025727807, -0.0035143741, -0.013390037, 0.038058765, 0.01638679, 0.010025501, -0.004195454, -0.03318223, -0.01111523, -0.021658352, 0.002065376, 0.039775085, -0.032882553, -0.029504396, -0.015882792, 0.012926903, -0.01917922, 0.0034275362, 0.014752198, -0.0322832, 0.010454582, -0.0022390513, 0.013696523, 0.008390908, -0.0025455374, -0.0059458306, -0.007621288, -0.002576186, -0.010284312, -0.010461393, -0.0029712126, 0.005540588, 0.0034139147, 0.034489904, 0.00747145, -0.010822365, 0.055494417, 0.033727095, 0.036342442, -0.025050132, -0.0057176687, 0.02020084, 0.027542885, -0.017095113, 0.005778966, 0.015487765, 0.008431774, -0.010876851, -0.01170777, -0.00831599, 0.003970698, -0.008193395, 0.009051557, 0.0058777225, -4.405738E-4, 0.015692089, -0.03658763, 0.021167973, -5.567831E-4, -0.012756633, 0.0088608535, 0.01247739, 0.017449277, 0.0025097807, 0.026766453, -0.003293023, -0.022135109, 0.0030580503, -0.018920409, 0.020350678, 0.0048867506, -0.01943803, -0.0064566405, 0.004014968, 0.0072262613, 0.028496398, -0.0026681318, -0.003844698, 0.0105567435, -0.009882474, -0.010195771, -0.011530688, 0.020745704, 0.009725826, -0.002945672, -0.030648611, 0.0068380455, 0.030076504, 0.0043521025, 0.0076689636, 0.0049514533, 0.006756316, -9.305259E-4, -0.018184843, 0.013778253, -0.024750456, 0.008547557, 0.016904412, -0.05868187, -0.028305694, -0.024423538, 0.022284945, 0.0030869963, 0.040483408, -3.6161105E-4, 0.0147385765, 0.013172092, 0.019151976, 0.007880098, -0.021494891, 0.0068005864, -0.0077370717, -0.017953275, -0.008956205, -0.032746337, 0.02589467, 0.01638679, -0.0030393205, -0.011721391, 5.7083037E-4, -0.010910906, 0.009555556, 8.4368815E-4, 0.014030253, 0.028823316, 0.00873826, 0.0055542095, -0.0047164806, 0.0073965313, 0.0065213433, 0.010897283, 0.0030205909, -0.026180724, 0.01418009, 0.010243447, 0.020473272, -0.006858478, 0.017585492, -0.0017018493, -0.025390672, -0.02325208, -0.02130419, -0.011809931, -0.010495447, -0.0155286295, -0.022203216, 4.2806958E-5, -0.0045394, 0.009739447, -0.019928407, 0.022870675, -0.011074365, 0.011360418, 0.029776828, 0.0030699691, -0.0086905835, -0.023224836, 0.017885167, -0.020391542, -0.008840421, 0.002632375, 0.012790686, -0.022734458, 0.006255722, -2.2800225E-5, 0.0022032945, 0.0045189676, -0.010420527, -0.024709592, 0.022993268, -0.019329058, -0.01672733, 0.006773343, -0.015310684, 0.051298965, -0.028550884, 0.012913281, -0.0072466936, -0.010209393, 0.0051898314, 0.0026068345, -0.023633484, -0.012184526, 0.028714342, 0.014997387, 0.009514691, -3.6906035E-4, -0.025145482, 0.013199335, -0.015433278, -0.016482143, -0.0130426865, 0.0031142393, -0.0014302685, 0.029940287, 0.005966263, 0.011530688, 0.0017691059, 0.018825058, 0.032228716, 0.022530135, -0.008336422, -0.010897283, 0.0155286295, -0.036478657, 0.005271561, -0.016277818, 0.007587234, 2.6881386E-4, 0.0049071833, -0.007062802, -0.023143107, -0.007989071, 0.0113195535, 0.023224836, -0.017435655, 0.01358074, -0.018961273, 4.5887782E-4, 0.008588422, -0.0072671263, -6.065871E-4, 0.010195771, -0.017340302, 0.013887226, 0.009269502, 0.0025540509, -0.014697712, -0.021971649, -0.008922151, 5.6231685E-4, 0.0026970778, 0.003725509, 0.020323435, -0.0067801536, 0.012130039, -0.0102775, 0.023456404, 0.0028792666, 0.0029950503, 0.014207334, 0.017217709, 0.0026953751, -0.01604625, -0.011101608, 0.019301813, 0.032637365, -0.015732953, 0.058245983, -0.012429714, 0.036941793, -0.009099232, 0.030212719, -0.0024859428, 0.0048186425, -0.004559832, 0.006630316, 0.05184383, 0.021998892, 0.0143707935, -0.02360624, 0.00691637, 0.011251446, 0.018035004, -0.014820306, -0.019805813, -0.006776748, 0.0031023205, -0.027147857, -0.028223965, -0.025731212, -0.010740635, 0.0055814525, -0.015337927, -0.012790686, -0.02784256, 0.0021862676, 0.013962145, 0.041218977, -0.027461154, -0.019792192, 0.015732953, 0.024546131, -0.0081525305, -0.015038252, -0.022107864, 0.005748317, -0.025172725, -0.014207334, 0.014561496, 0.04111, 7.538707E-4, 0.0036199414, -0.012661282, -0.007444207, 0.011087987, -0.012960957, 0.0045291837, 0.03435369, 0.0029150234, 0.0064396136, 6.337239E-5, -0.0076689636, 0.030512394, -0.0018678625, 0.018947652, -0.014806684, -0.010890473, 3.041449E-4, 0.0064668567, 0.011755445, -0.027297696, 0.0064975056, -0.01672733, -0.027011642, -0.0106112305, -0.0032572662, 0.012034688, -0.0049037775, -0.02011911, -0.021685595, -0.029776828, 0.0106112305, 0.06309527, 0.04557789, 0.016100736, -0.002826483, -0.008901719, 0.004008157, -0.022026135, -0.01528344, -0.0074918824, -0.0027345372, 0.024137484, 6.138236E-4, 0.037541144, 0.008928962, 0.024518888, -0.015147225, 0.00823426, -0.018961273, 3.501178E-4, -0.005635939, -0.013546686, -0.0074646394, 0.011837174, 0.03369985, 0.0018184843, -0.0047743726, 0.030076504, 0.008772314, 0.0027260236, -0.0151063595, -0.010761068, 0.0011391067, -0.00610929, 0.0032215095, 0.0023752674, -0.0020381326, 0.024668727, 0.021249704, 0.025431536, 0.019315436, 0.0059288037, 0.0074986937, -0.01087004, 0.0030052667, 0.003701671, -0.01951976, -0.015692089, 0.021236083, 0.018021382, -0.041300707, 0.0052409125, -0.0057517225, -0.02021446, -0.0020483488, 0.034489904, 0.0086633405, -0.0061501544, -0.02002376, -0.025853805, -0.013199335, 0.0072194505, -0.033972282, 0.0054758852, -0.013785064, -0.0151063595, -0.0051932367, -0.018375546, -0.015923657, -0.024886671, 0.022502892, 0.016836304, -0.027052507, -0.009773501, 0.0039162114, 0.0036710226, -0.004406589, 0.021263326, -0.017095113, -0.013873604, 0.010468204, -0.033154987, -0.02758375, 0.009998258, -0.033209473, -0.0010139582, 0.027297696, -3.2585431E-4, 0.012790686, -0.01468409, -0.00180316, 0.02070484, -0.01800776, 0.0013323632, -0.0070287483, 0.037541144, -0.0020296192, 0.011789499, 0.021685595, 0.002661321, -0.020473272, -0.005853885, -0.008411341, -0.018171221, -0.0041648056, -9.679853E-4, -0.023905916, 1.6526837E-4, -0.0122798765, -0.021685595, -0.018729707, -0.021236083, -0.005016156, -0.01069296, 0.0052681556, -0.0044440487, -7.504653E-4, 0.015079116, 0.012361607, 0.0079550175, 0.0016175655, -0.01442528, -0.0075531797, -0.0069742617, 0.02359262, -0.008438584, 0.019165598, -0.018825058, -0.027978776, 0.0019632138, 0.009126475, 0.011251446, 0.026207967, -0.016836304, -0.029804071, -0.012497823, -0.035879306, 0.007110478, -0.018661598, -0.0124501465, 0.0032181041, -0.022339432, -0.002746456, 0.006061614, 0.006671181, -0.0083228005, -0.031002773, 0.013539875, -0.009569177, 0.026684724, 0.029041262, 0.009521502, 1.5366873E-4, -0.029095748, -0.004338481, -0.012545498, -0.017871546, -0.022393918, -0.0033509147, 0.037977032, 0.01672733, 0.029940287, 0.0040796706, 0.026180724, 2.537024E-4, 0.021958027, 0.018852301, -0.013124417, -0.0053635067, -0.021903541, 0.012960957, 0.019151976, 0.025486022, 0.006596262, 0.021181595, 0.0030801853, 0.014248199, 0.0366966, 0.016495764, 0.010372852, -0.025526887, -0.001837214, 0.008261504, -0.022339432, -0.003997941, -0.0040354, -0.01094496, 0.040456165, -0.002923537, -0.010148096, 0.023824187, 0.03786806, -0.003555239, 0.0105839865, -0.030512394, 0.0109517705, -0.025390672, -0.0019802407, -0.016945276, -0.0077438825, -0.007403342, -0.009126475, -8.155936E-4, -0.0068005864, -0.026875427, 0.0051251287, 0.024913915, -0.025949158, -0.046749346, 0.0020551595, 0.005404372, -0.018198464, -0.036560386, -0.013110795, -0.02742029, -0.021631109, -0.002359943, -0.02114073, 0.0077438825, -0.029395424, -0.03928471, 0.011666904, -0.009868853, 0.026017265, 0.01349901, 0.038576383, 0.025840184, 0.015351549, -0.020078246, 0.010801933, -0.0159509, -0.01426182, 0.031166231, 0.010434149, -0.014615982, -0.024804942, -0.004031995, 0.010284312, -0.028796073, -0.05203453, 0.028196722, 0.007451018, 0.01747652, -0.030185476, -0.005060426, -0.041709352, 0.032392178, 0.0047641564, -0.0056836144, 0.0034105093, -0.025186347, -0.032828066, 0.017599113, -0.0027600776, 0.010223014, 0.016686466, -0.02445078, 0.021930784, -0.02120884, -0.010842797, -0.0043180487, 0.0070832344, 0.024682349, -0.020555, 0.023075, 0.002070484, 0.022679972, 0.0064464244, -0.0032061853, 0.013260632, 0.032201473, -0.015664846, -0.0036880495, -0.009215016, -0.005898155, 0.00764172, 0.020432407, -0.031847313, -0.020051003, -0.021290569, -0.009262691, 0.028278451, -0.0048697237, 0.0041648056, 8.998773E-4, -0.014724955, -0.015256197, -0.008547557, -0.0079550175, 0.0039536706, -0.024764078, 0.020500515, -0.005455453, 0.0038004278, -0.0039094007, -2.7690167E-4, 0.008785935, -0.003383266, 0.02070484, -0.021998892, 0.014779441, -0.013396848, -4.8356698E-4, -0.027011642, -0.017939653, -0.01638679, -0.0043725353, 0.0060650194, -0.021195218, -0.010890473, -0.0031721313, 0.006698424, -0.017939653, -0.0030376178, -0.007090045, 0.011809931, 0.0298858, -0.008329611, -0.010972203, 0.0017384574, 0.021563001, -0.012089174, 0.0068448563, 0.021862676, 0.01231393, 0.036533143, -0.0077370717, -3.6282156E-6, 0.008057179, -0.016427655, -0.01953338, 0.0059151817, 0.027774451, -0.0033202663, -0.019260949, -0.04525097, -0.003521185, -0.0067358837, 0.030348936, -0.014466144, -0.018184843, 0.033481903, 0.0066916132, 0.014220956, 0.01349901, -0.011339986, -0.01663198, -0.008588422, -0.0038889681, -0.007914152, -0.0068039917, -0.006017344, 1.0450325E-4, 0.011135662, -0.006722262, -0.016700087, -0.002024511, -0.013621605, -0.026820939, -0.011108419, 0.020255327, 0.034898553, -0.0011927418, -0.0033185636, 4.4270215E-4, -0.01740841, 0.004437238, -0.008390908, 1.892126E-4, 0.018021382, 0.012204958, 0.0029524828, 0.040783085, -0.029831314, -0.004730102, 0.014466144, 0.0237697, 0.012954147, 0.022067, -0.026875427, 5.7519355E-5, -0.015256197, 0.010079987, 0.010086798, -0.0073216124, 0.03013099, -0.011135662, -0.00993015, 0.008118477, 0.020990893, -0.014452523, -0.013117606, 0.0073148017, -0.019601488, -0.008615665, -0.012259444, -0.02138592, 2.877564E-4, -0.02375608, 0.01578744, -0.0027192128, -0.0041920487, 0.006712046, 0.013430903, -0.008622476, -0.006773343, -0.007880098, 0.0012480796, -0.001353647, -1.9328312E-5, 0.008132098, 0.023361051, -0.034299202, 0.034244716, -0.016999763, 0.0036812387, -0.0111492835, 0.015596737, -0.0023412134, 0.020228082, 0.014561496, -0.024941158, 4.610062E-4, -0.010985824, -0.00320278, -0.011551121, -0.010420527, -0.027215967, -0.020909164, -0.007342045, 0.010127664, -0.022353053, -0.017340302, 0.005520155, -0.019764949, -0.0012191336, 0.019574245, 0.1777347, -0.013791875, 0.017585492, 0.04252665, 0.008547557, 0.011489823, 0.008874476, 0.030621368, -0.007423775, 0.012300309, -0.0017861329, 0.009855231, 0.008159341, 9.645799E-4, 0.0051081018, 0.004014968, -0.0319018, -0.021712838, -0.017163223, -0.012960957, -0.0073148017, -0.001956403, -0.013008633, -0.021494891, 0.00505021, 0.009535124, -0.01052269, -0.00856799, 0.02699802, 0.0012480796, -0.018389167, -0.01104031, -0.01833468, 0.022543756, -0.015596737, -1.5452008E-4, 0.012075553, 0.015446899, 0.015269819, -0.01306993, 0.0025523482, -0.0124501465, -0.004719886, -0.017163223, 0.0155286295, 0.017244952, -0.031193474, 0.0017418627, -0.013512632, 0.017272195, -0.02503651, -0.0035995091, 0.028932288, 0.01468409, 0.0014839036, -0.008036747, 0.026616616, -0.006851667, -0.010168528, 0.028033262, 0.012429714, 0.03301877, -0.04132795, 0.009541934, -0.0036029145, 0.02876883, -0.041545894, -0.008050368, 0.01629144, -0.029504396, -0.0061603705, -0.030267205, -0.015937278, -7.3556666E-4, -0.010733824, -0.011047121, -0.01120377, 0.00713091, -0.008806367, 0.02707975, -0.02130419, -0.010509068, -0.0031857528, -0.016441276, -0.014534253, -0.023905916, 0.027978776, -0.00556102, -0.004685832, -0.011244635, -0.005853885, -0.03838568, -0.02758375, 0.010495447, -8.6412055E-4, -0.005271561, 0.023075, 0.020159975, -0.004747129, -0.0077711255, -0.033618122, 0.016305061, 0.029340936, 0.0071240994, -0.028659856, -0.023715215, -0.005942425, 0.022993268, 0.024682349, -0.008424963, -0.010822365, -0.032800823, -0.006007128, 0.0022679972, 0.0057074525, 0.018566247, -0.0020960243, -0.022639107, 0.035170984, -0.018688843, 0.00598329, -0.016305061, 0.002075592, 0.0050944802, -0.010638474, -0.02920472, -0.035007525, 0.0015996873, 0.008002693, -0.038249467, 0.0033389959, -0.02214873, -0.0061603705, -4.1609746E-4, -0.0138054965, 0.004607508, 0.016754573, 0.021195218, 0.012273066, -0.0064668567, 0.0039059953, -0.029831314, 0.008928962, -1.308951E-4, 0.02232581, -0.022816189, 0.0127362, 0.0054690745, -0.005755128, -0.0353072, 0.006017344, -0.029640611, 0.015555873, -4.1157466E-5, 0.033154987, -0.006773343, -0.021072622, -0.037323195, -0.010917717, 0.0237697, -0.033400174, 0.009950582, 0.034571633, 0.002422943, -0.019029383, -0.005022967, -0.17468347, 0.016754573, 0.015051873, -0.04743043, 0.017299438, 0.03522547, 0.028414669, 0.0068550725, 0.015596737, -0.006882316, 0.018484518, -4.1269205E-4, -0.03609725, -0.0077643148, 0.013723766, 0.01841641, -0.004931021, 0.03895779, 0.02139954, 0.005823236, 0.052415933, -0.0030512395, 0.00313978, 0.00917415, 0.016877169, 0.009283124, 0.0071853967, -0.009303556, 0.01187804, -0.01953338, -0.013294687, -0.007423775, 0.008390908, 0.013144849, -0.010454582, 0.0044099945, -0.012123228, -0.008479449, -3.3117528E-4, -0.005043399, 0.040946543, 0.031002773, 0.02487305, -0.001555417, 0.0064021545, 0.0049923183, 0.030675855, -0.018647976, 0.0016082007, -0.017735329, -0.009950582, -0.029504396, 0.026752831, -0.007825612, 0.00632383, 0.016918033, -0.021808188, -4.2950624E-4, 0.008036747, 0.0021726459, -0.024586996, -0.006317019, 0.029994775, -1.546265E-4, -0.016100736, -0.026780074, -0.017176844, 0.0068380455, -0.020078246, 0.00627956, -0.004559832, 0.02852364, 0.0062421006, 0.0051149125, -0.00517621, -0.01187804, -0.042635623, -0.0011152689, 0.0073965313, 0.011830363, -0.008418152, 0.037078008, -0.0076757744, 0.017830681, 0.018579869, -0.015583116, 0.011837174, -0.014152847, 0.012470579, -0.0136079835, 0.0056972364, -0.0050093452, -0.020595867, -0.02409662, 0.010509068, 0.009698583, -0.014479766, 0.0033287797, 0.010400095, -0.019655976, -0.0060309656, -0.034408174, -0.021004515, 0.017844303, 0.029150235, 0.010897283, -0.014888414, 0.01934268, 0.023020511, 1.5111468E-4, -0.0011952958, 0.019955652, 0.007689396, 0.0032862122, -0.019955652, 0.011775877, -0.01231393, -0.021767324, 0.011735013, 0.012014256, 0.019819435, -0.0055473987, 8.564584E-4, 0.0048390753, -6.312762E-4, -0.011244635, -0.088540435, 0.003241942, 0.009160529, 0.03691455, -0.038058765, 0.021917162, -0.01111523, 0.022434782, -0.019260949, 0.018525383, 0.009065178, -0.027229588, 0.018770572, 0.0040183733, 0.0066337218, 0.023143107, -0.002531916, -0.013103983, -2.1305041E-4, 0.032800823, 0.0016345925, -0.011782688, 0.012838363, -0.0033083472, -0.018579869, 0.010590797, -0.016740952, 0.01086323, -0.008247882, 0.008533935, 0.016849926, -0.022598242, 0.02054138, -0.04789356, -0.022189595, -0.021535758, -0.012164093, -0.02639867, 0.017326681, -0.042063516, 0.01807587, 0.020377921, 0.0057074525, -0.028060505, 0.009153718, -0.020786569, -0.027624615, 0.030757584, -0.0077438825, -0.04743043, 0.0030699691, 0.0035688605, -0.009480637, -0.010706581, 0.02393316, 0.0066166944, 0.018743329, 0.0015290251, -0.012102796, -0.023524512, -7.6621526E-4, -0.012293498, -0.031847313, 0.008261504, 0.01578744, 0.0017052547, 0.004920805, -0.014289063, 0.03623347, -0.004423616, -4.942088E-4, 0.017585492, -0.039121248, -0.02062311, -0.014234577, -0.0055371826, -0.00738291, -9.364853E-4, 0.014970143, -0.031629365, 0.004556427, -0.030267205, -0.0033968878, -0.01672733, 0.00627956, 0.020064624, 0.027733587, 0.020350678, -0.010325177, -0.046122752, -0.011087987, 0.018198464, 0.008520314, -0.003298131, 0.005101291, 0.03615174, 0.030267205, 0.0038038332, 0.0052170744, -0.004045617, -0.024900293, -0.0061229113, -0.07034197, 0.014152847, -0.018062249, -0.007818801, 0.0062965867, -0.010420527, 0.019397166, -0.012443336, -0.0019700245, 0.007519126, -0.0017248357, 0.024845807, -0.013424092, 0.006425992, -0.00382086, 0.02394678, 0.0010284311, -0.0060990737, -0.006364695, -0.0045291837, -0.012252633, -0.009684961, 0.023292944, 0.008295557, -0.0016371466, 0.021930784, 0.0055235606, 0.008561179, -0.005319237, 0.005060426, 0.021072622, -0.011775877, -0.0039741034, 0.010263879, -0.015011009, -0.027297696, -0.011108419, -0.0057721552, 0.025526887, 0.0034207255, -0.004157995, -0.02622159, -0.005033183, -0.01757187, 0.006967451, 0.0203643, -0.016373169, 0.009943771, 0.021808188, 0.0032385367, 0.026466778, 0.018539004, -0.007852855, -0.0139757665, 0.015215333, -0.02240754, 0.039938547, -0.004750535, -0.0024144296, -0.0057619386, 0.033836067, -0.0029712126, 0.033481903, -0.033209473, -0.021563001, 0.0031295638, 0.013730577, -0.0050944802, -0.0017929437, -0.030893799, -0.002860537, -0.0048118317, 0.016495764, 0.01919284, 0.034489904, 0.017435655, -0.019642355, -7.2705315E-4, 0.008506692, 0.01909749, 0.018171221, -0.013723766, -0.031765584, 0.020650353, -6.989586E-4, 0.032201473, -0.020241704, -0.0038753466, -0.011299121, 0.015051873, -0.019056626, 0.0043521025, 0.029177478, -0.008527124, 0.003895779, 0.012858795, 6.070128E-4, -0.007662153, -5.755128E-4, 0.018116735, -0.006443019, -0.015228954, -0.03130245, -0.014030253, -0.023905916, 7.628099E-4, -0.016400412, -0.0054111825, 0.022761703, 0.012429714, 0.029776828, 0.010747446, -0.010257068, 0.009323988, -0.026412291, 0.001271066, -0.012777065, -0.026425913, -0.01536517, 0.039202977, 0.013798686, 0.014316306, 0.03073034, -0.0075327475, 0.023619862, 0.0053328583, 0.02852364, -0.0320925, 0.018212086, 0.0021419975, -0.0060820463, -0.0041920487, -0.022734458, 0.0040694545, -0.01366247, 0.0018985112, 0.02750202, 0.039094005, -0.024232835, 0.074319474, 0.0128724165, -0.0027515641, 0.011142473, -0.0069708563, -0.002041538, 0.0322832, 0.008956205, -0.023442782, -0.01663198, 0.0017503762, -0.025840184, 0.0074578286, -0.020732082, -0.01392128, -0.0052238856, -0.0054213987, -0.006385127, 0.0012983092, -0.019764949, 0.005833452, -7.483369E-4, 0.026534887, 0.013928091, -0.032310445, -0.006007128, 0.024314564, -0.015637603, -0.008840421, -0.03345466, -0.007791558, -0.019669598, -0.02002376, 0.0067324783, 0.032882553, 0.001438782, -0.0069129644, 0.005615507, 0.026289698, 8.811476E-4, 0.0019206463, 0.0043657245, -0.0176536, -9.024313E-4, 0.012681714, -0.0030291043, 0.006221668, -0.026289698, -0.022966025 ], + "id" : "bb8321a5-c629-4070-877a-a7fc5eec20da", + "metadata" : { + "source" : "movies.csv" + } + }, + "7f44909f-bf6d-4a62-94f5-b45841097b68" : { + "text" : "Novak-Omar Doom-August Diehl-Denis M��nochet-Sylvester Groth-Martin Wuttke-Mike Myers-Julie Dreyfus-L��a Seydoux-Richard Sammel-Alexander Fehling-Rod Taylor-Samm Levine-Paul Rust-Michael Bacall-Arndt Schwering-Sohnrey-Petra Hartung-Volker Michalowski-Ken Duken-Christian Berkel-Tina Rodriguez-Lena Friedrich-Ludger Pistor-Jana Pallaske-Wolfgang Lindner-Michael Kranz-Rainer Bock-Andr�� Penvern-Sebastian H�_lk-Buddy Joe Hooker-S�_nke M�_hring-Carlos Fidel-Hilmar Eichhorn-Patrick Elias-Eva L�_bau-Salvadore Brandt-Jasper Linnewedel-Wilfried Hochholdinger-Olivier Girard-Michael Scheel-Leo Plank-Andreas Tietz-Bo Svenson-Enzo G. Castellari-Christian Br�_ckner-Samuel L. Jackson-Bela B.-Noemi Besedes-H��l��ne Cardona-Jake Garber-Sabrina Rattey-Alex Boden-Guido F�_hrwei��er-Harvey Keitel-Andrew Napier-Gregory Nicotero-Quentin Tarantino-Vitus Wieser-Bea-Marie R�_ck-Daniela Schwerdt-Anne-Sophie Franck,paris france-guerrilla warfare-self sacrifice-dynamite-mexican standoff-world war ii-jew persecution-nazi-masochism-sadism-anti-semitism-swastika-german occupation of france-british politics-adolf hitler,/7sfbEnaARXDDhKm0CZ7D7uc2sbo.jpg,/8pEnePgGyfUqj8Qa6d91OZQ6Aih.jpg,68718-24-500-680-393-550-807-11324-1422-857-273248-106646-98-13-27205-155-185-603-769-77-1124", + "embedding" : [ -0.004017409, -0.03266343, -0.012276374, -0.038153317, -0.031118538, 0.040856875, 0.002646662, -0.011800492, -0.027366659, -0.04151897, 0.028414978, 0.01841456, 0.024014795, 0.010786656, -0.00946936, 0.013628155, 0.03495318, -0.008814161, 0.0056692017, -0.038042966, -0.006245088, 4.2631087E-4, -0.010917697, 0.016966226, 0.0010905627, 0.007476174, 0.016304128, -0.016248953, -0.0074830707, -0.012717771, -0.006086461, -0.014648886, 0.0043691476, -0.027877025, -0.019021483, 0.0050105536, 4.075601E-4, -0.023532016, 0.019655991, -0.009565916, 0.0019931865, 0.010600442, -5.3364295E-4, -0.014938554, -0.007214094, 0.007131332, 0.016304128, -0.012062572, -0.0014173004, 0.02932536, 0.042870753, 0.035642866, -0.008938304, -0.012552247, -0.01492476, 0.009690059, -0.008186548, 0.0056554084, -0.004789855, -0.020897424, -2.0841387E-4, -0.014193695, -0.030511618, 0.0030052979, -0.019242182, -0.020111183, -0.010814244, -0.006641656, -0.012014294, -8.524062E-5, 0.021490552, 0.023076825, 7.8753283E-4, 1.4911721E-5, 0.025766592, -0.026966643, -0.031201301, 0.004420874, 6.362334E-4, -0.0058450713, 0.027932199, -0.02035947, -0.016166192, 0.0021449171, 0.023449253, 0.0031208198, -0.005993353, 0.01492476, -0.014855792, -0.0076348013, -8.513286E-4, 0.031725463, 0.011386681, 0.0012578111, 0.0022880265, 0.03018057, -0.02197333, 0.0390637, -0.0054760906, -0.0436432, 0.0030035735, -0.01239362, -0.0070968475, -0.016842082, -0.0063623344, 0.00942798, -0.0062312945, -0.01211085, 0.015945492, 0.0049415855, 0.0057554124, 0.00931763, 0.010083179, -0.060581837, 0.0018724919, -0.031918574, 0.011945326, -0.038649887, -0.015476507, -0.018524911, 0.014993729, 0.0364429, 0.0075865234, -0.027283896, 0.040581003, 0.03707741, 0.0047691646, -0.009862481, 0.0015543752, 0.008538287, 0.03517388, 0.014593712, 0.01424887, -0.003820849, -0.0043381117, 0.050043467, -0.030815078, 0.014090243, -0.030152982, -0.0074554835, 0.030842666, 0.038870588, -0.026497656, -0.0318634, -0.029132249, 0.01758694, 0.008986582, -0.0012095332, 0.021794012, -0.0025001043, 0.009634885, 0.01653862, 0.015407539, 0.0036622216, 0.021490552, 0.0014810963, -0.008262414, 0.007841706, -0.005200217, -0.005365741, -0.009931449, -0.00772446, -0.004141552, -0.0034777313, -3.6122196E-4, 0.021780219, 0.02103536, -0.017297274, 4.741577E-4, -0.0012034985, 0.00412431, 0.022621633, -0.031146126, 0.012517763, -0.009827996, 0.02343546, 0.017242098, -0.008490009, -0.037629154, -0.013635051, -0.0041553457, 0.016773114, 0.036249787, 0.0318634, -1.2144903E-4, 0.030015044, 0.025173463, -0.0069416687, 1.06038904E-4, 0.0043277666, 0.0019931865, 0.0062312945, 0.005210562, -0.012234993, -0.6417923, -0.009793512, -0.007683079, -0.003779468, 0.012331549, 0.023642365, -0.0026656284, 0.006548549, -0.03613944, 0.0051071094, -0.031918574, 0.012600525, 0.012635009, -0.02546313, -0.0094762575, -0.025076907, 0.001996635, -0.01075907, 0.011772905, 0.0071106413, -0.0051278, 0.00971075, 7.108055E-4, 7.0649496E-4, 0.007420999, 0.0017017951, -0.0029311567, -0.021214677, 0.013166066, 0.010483196, -0.013938513, 0.0030018494, -0.00811758, 0.00458295, 0.047008857, 0.00678649, -0.012214302, 0.04278799, 0.028966725, 0.03318759, -0.014166108, -0.0062416396, -0.004076032, 0.004396735, -0.0038242973, 0.028111517, 0.013124685, -0.010165941, -0.014648886, -0.007083054, 0.017504178, -0.00798654, 0.006686486, -0.0056623053, 8.8883017E-4, 0.0052140104, 0.012207406, -0.030815078, 0.016414478, 0.0056485115, -0.04011202, 0.030980602, 0.0063485405, 0.009517638, -0.0050071054, 0.02245611, -0.022566458, -2.4591543E-4, 0.0069554625, -0.021725044, -9.965933E-4, 0.021462964, -0.02155952, -0.020911217, 0.016207572, 0.02631834, 0.026649388, -0.0056347176, -0.005800242, 0.0133040035, -0.014166108, -0.0024845863, -0.011262539, 0.024001, 0.027849438, -0.009062447, -0.04165691, 0.014979935, 0.014221283, -0.0071934033, 0.01104184, 0.029380536, 0.008883129, 0.009683162, -0.005462297, 0.015131665, -0.009345218, 0.0011776353, 0.022773363, -0.063230224, -0.0077451505, -0.021435376, 0.027463214, -0.020180153, 0.010586648, 0.017931782, -0.010290084, 0.0019052519, 0.020373264, -0.00645889, -0.017793845, -3.3966935E-4, -0.020235326, -3.1445277E-4, 0.0033811755, -0.032966893, 0.021628488, 0.021145709, 5.582129E-4, 0.0047795097, 0.0051140063, -0.008917613, 0.003336346, -0.025904529, 0.007131332, 0.020635344, -9.879722E-4, -0.009827996, -0.008234826, -0.0032742745, -0.0034053144, -0.0010965974, 0.011931532, -0.014483362, 0.0054691937, -0.0042898343, 0.003910508, -0.005234701, 0.011600484, -0.009352114, -0.020318089, -0.0010371122, -0.008745193, -0.011931532, -2.6919227E-4, -0.0071451254, -0.040332716, -0.015683413, -0.003565666, -0.011414269, -0.0032484112, 0.01713175, -0.006003699, 0.013407456, 0.0057209283, -0.002406997, -0.027132167, -0.024607923, -0.0037277418, -0.0205112, 0.021807807, 0.0043001794, -0.003689809, -0.020414645, 0.02932536, -0.0096762655, 0.0012724668, 0.0116556585, 0.0051140063, -0.016069636, 0.026511451, -0.0146350935, -0.00772446, 0.008800367, -0.01601446, 0.025435543, -0.02452516, 0.013483321, 0.0097590275, -0.008607255, 0.0110073555, -0.032111686, -0.025670037, -0.00824862, 0.026635593, 0.011441857, 0.018166276, 0.009834893, -8.7977806E-4, 0.019021483, -0.0099245515, -0.006058873, -0.009131416, -0.0068140775, -0.011834976, 0.034318674, -0.0012466037, 0.012655701, 0.002351822, 0.025035527, 0.028001167, 0.026718356, 0.009331424, 0.01372471, 0.016883463, -0.02493897, 0.0043277666, -0.029490884, 0.023035444, 0.0058140354, 0.021794012, -0.015352365, -0.018869752, 0.0031501313, -0.005396777, 0.024428604, -0.007869294, 0.004703644, -0.012303961, 0.0057450673, 0.016980018, 0.0048381328, 0.013324694, 0.019324943, -0.022373347, -0.001487993, 0.017807638, -0.01492476, 0.008683121, -0.024663098, -0.017724877, -0.0044105286, -0.0030915083, -7.467984E-5, -1.8686125E-4, -0.014428188, 0.016262747, -0.0012457416, 0.038125727, -0.014028171, -0.006845113, 0.017076574, 0.021531932, 0.018483529, -0.007283062, -0.016414478, 0.0103245685, 0.016511034, -0.015200634, 0.02666318, -0.029352948, 0.0290219, 0.012614319, -0.006079564, 0.0032242723, -0.0019862896, 0.008283104, 0.010979768, 0.031808224, 0.013697123, 0.023876857, -0.023849271, 0.019918071, 0.0047622677, 0.0014724752, -0.008000334, -0.015642032, 0.0056692017, 0.0040553417, -0.022221616, -0.031090952, -0.011124602, -0.009724543, 0.0069451174, -0.010303878, -0.01889734, -0.0055278167, 0.024552748, 0.010476299, 0.01822145, 0.0038794721, -0.020745693, 0.013648845, 0.026828704, -0.005414019, -0.019904278, -0.0119384285, -0.01197981, -0.033408288, -0.00787619, 0.0011983259, 0.036277376, -0.018028338, 0.006179568, -0.01800075, -0.016593795, 0.0015948941, -0.027959786, 0.01675932, 0.02223541, -0.0074072056, 0.011159086, -0.008131374, -0.011097015, 0.020538788, -0.0015060973, -0.0049553793, -0.009041756, -0.0039725793, 0.008779677, 0.015214427, 0.016097223, -0.042622466, 0.005496781, 0.0025018284, 0.0016052393, -0.015269603, 0.004617434, 0.009986623, -0.017945576, 0.0022311276, -0.014566124, -0.023421666, -0.0049588275, 0.07492726, 0.047422666, 0.012703978, 0.0057554124, -0.008869335, 1.4677337E-4, -0.006017492, -0.012497073, 0.0047795097, -0.021242265, 0.015338571, -0.004479497, 0.026511451, 0.012366033, 0.025890734, -0.029215012, 0.005889901, 0.0060692187, -0.0031897882, -0.004051893, -0.028028755, -0.025656242, 0.008034818, 0.020221533, 0.0025156222, -0.004438116, 0.02197333, 0.008503803, 0.0013500563, 0.015117872, -0.01893872, 0.01597308, 0.013324694, 0.0069899466, -0.007434793, 0.002703561, 0.024814827, 0.019407706, 0.023794096, -0.006079564, 0.004272592, -0.012462589, -0.0068175257, -0.0143178385, 0.013876441, -0.010786656, -0.021890568, 0.023159586, 0.02778047, -0.036580835, 0.012186715, -0.0028949482, -0.03018057, -0.02391824, 0.0070382245, 0.0034708343, -0.006434751, 0.0056347176, -0.012152231, 0.032001335, 0.011414269, -0.02354581, 0.007303753, -0.014083346, -0.0035018702, -0.0068727005, -0.018566292, 0.008552081, -0.01806972, 1.6444651E-4, 0.014676474, -0.015490301, -0.014386807, 0.009234868, 0.028028755, -0.0026759736, 0.023683745, -0.006745109, 0.020207739, -0.0069382205, -0.04623641, -0.017573146, -0.001504373, -0.024925178, 0.004672609, 0.009352114, -0.007372721, 0.010152147, -0.020497406, 0.024883796, 2.2242307E-4, -0.005331257, -0.02838739, -0.0057795513, 0.038180903, 0.014786824, 0.015076491, 0.0124212075, 0.0070899506, 0.007917572, 0.0063899215, -0.023449253, -0.035780802, -0.019352531, -0.020952597, -0.0070244307, -0.015462714, -0.0061588776, -0.0013345385, -0.011593587, -0.0041208616, -0.02227679, -0.017283479, -0.0024432053, 0.019669786, 0.0056898925, 0.012193612, 0.021987123, -0.010772863, 0.0015733414, 9.871101E-4, -0.020938804, 0.013476424, 0.024235493, 0.004620882, 0.03671877, -0.014883379, -0.03026333, -0.0026845946, 0.013972997, -0.009572813, 0.021062948, -0.0055898884, -0.014745442, 0.011807389, -0.0072347843, 0.010207322, -0.0019121487, -0.004682954, 0.0028966726, -0.008365866, 0.0013207447, 0.0071382285, 0.01544892, -0.009331424, -0.022469902, -0.003024264, -0.0229113, 0.020676725, 0.013731607, -0.029297773, 0.0071451254, -0.019104244, 0.0027018369, -0.005207114, -0.025876941, -0.03371175, 0.0058554164, 0.0242217, 0.0063830246, 0.022097474, 0.0055416105, 0.029739171, 0.012910883, 0.007848603, 0.020318089, 0.0014181626, 9.6986804E-4, -0.026083846, -0.006003699, 0.024111351, 0.026773531, 0.0024018243, -0.0063795764, 0.012731565, 0.0051657325, 0.01411783, 0.022897506, 0.002210437, -0.017835226, -0.011703936, 0.02954606, -0.024069969, -0.012869502, -0.021228472, -0.014428188, 0.033132415, -0.0048795138, -0.010662514, -0.009400392, 0.012490176, -0.0077175633, 0.020938804, -0.0056829955, 0.019007688, -0.038015377, 7.812826E-5, -0.0102418065, -0.0059692143, 8.0994755E-4, -0.008290001, 0.008200342, 0.0017604183, -0.019242182, -2.0087045E-4, 0.035615277, -0.0071451254, -0.028332217, 0.02066293, -0.020193946, 0.0046795057, -0.015324777, -0.010290084, -0.019324943, -0.011710833, -0.008545184, -0.019959453, 0.0031811672, -0.020111183, -0.050788324, 0.027339071, 0.0037967102, 0.04979518, 0.012855709, 0.035366993, 0.02009739, 0.0029466746, -0.02932536, 0.0073589277, 0.0026673526, 0.002358719, 0.027808057, 0.019724961, -0.03078749, -0.011097015, 0.014855792, -0.010965975, -0.02546313, -0.022966474, 0.03663601, 0.021104328, 0.025007939, -0.028180486, -0.0037863648, -0.0218216, 0.021628488, -0.024028588, 0.014786824, 5.00883E-4, -0.04968483, -0.018249037, 0.005245046, -0.011303919, 0.012807431, 0.005834726, -0.03070473, 0.022345759, -0.039946493, -0.005269185, 0.007241681, -0.022249203, 0.034594547, -0.014938554, 0.0035156638, 0.0034277292, 0.013317796, 0.0042277626, 0.0034708343, 0.011731524, 0.026594212, -0.010414228, 0.031559937, 6.0778396E-4, -0.02635972, 0.025476925, 0.022745777, -0.021835394, -0.02125606, -0.013738504, -0.016124811, 0.013621258, -0.0079796435, 0.004396735, 0.0041036196, -0.018649053, -0.018428355, 0.009986623, -0.0019673235, 0.011283229, -0.04060859, -0.006517513, -0.01012456, 0.008048612, -0.020304294, -0.010110767, -0.014414394, 0.0015060973, 0.006534755, -0.015159253, 0.01064872, 0.0024880348, -0.011069427, -0.02511829, -0.03007022, -0.0038794721, -0.010096973, 0.010000417, -0.019076658, -0.005972663, 0.0012422932, -0.004272592, 0.0042932825, 0.008669327, -0.020414645, 0.006548549, 0.032194447, 0.0023449254, -0.0031035778, 0.007683079, 0.026373513, 4.207072E-4, -0.0075313486, -0.0044519096, -0.0052622883, 0.024980351, -0.015959287, 0.009172796, 0.009386598, -0.029877108, -0.008586565, 0.018014545, 0.015766175, 0.024194112, 0.001100908, -0.033766925, 0.005103661, -0.001956978, 0.023752715, 0.009234868, -0.0043346635, 0.020938804, 0.019187007, 0.021987123, 0.022704395, -0.0020397403, -0.022373347, -4.504498E-5, -0.012310858, -0.015573063, -0.0031466829, 0.0019431845, 6.5132027E-4, 3.9225773E-4, 0.0077037695, -0.029215012, 0.0029121905, -0.007289959, -0.0047933036, -0.009945243, 0.013359178, 0.042539705, 0.02448378, -0.010855625, 0.018800784, 7.521865E-4, 0.015738588, -0.0050036567, -0.00678649, 0.015559269, 0.017421417, 0.025407957, 0.008317588, -0.029215012, 0.0030208156, 0.009110725, 0.008972788, 5.2502187E-4, 0.02151814, -0.012483279, -0.01926977, -0.006351989, -0.0012362584, -0.007172713, 0.0074968645, 0.02088363, -0.029794347, 0.007510658, 0.002398376, 0.03602909, -0.0057967934, 0.010117663, 0.017573146, -0.018193861, -0.011097015, 0.0020966392, -0.010007313, 0.002908742, -0.03487042, 0.02317338, 0.008021024, -0.002588039, 0.030870253, 0.013883337, 0.00798654, 0.0028483947, -0.017186923, 0.0071865064, -0.007338237, 0.005282979, 0.0017500729, 0.029683996, -0.041049987, 0.026870087, -0.01197981, 0.009103828, -0.02280095, -0.0019069761, -0.0012293616, 0.031725463, 0.015697205, -0.040967226, 0.02755977, -0.015242015, 0.00813827, -0.007931366, -8.642602E-4, -0.023669953, -0.01080045, -0.009069344, -0.011552206, -0.016069636, -0.030428855, -0.006514065, -0.026083846, -0.013883337, 0.016221367, 0.17843503, -0.017766258, 0.0067416606, 0.034484196, -0.007393412, 0.008986582, 0.019090451, 0.010821141, 0.0045726043, 0.014193695, 0.0039725793, 0.015835144, 0.014097139, -0.0032897925, 0.02609764, -0.013979893, -0.01979393, -0.027104579, -0.016635176, -0.008310691, -0.0096004, 0.010179735, -3.4893697E-4, -0.012166024, -0.011903944, 0.0017811088, -0.0026311441, 0.0042346595, 0.02343546, -0.0063381954, -0.014938554, -0.018538704, -0.006838216, -0.0013052268, -0.017255891, -0.007303753, -0.0041208616, -0.0045139813, 0.015807556, 0.012400517, -3.4419537E-4, -0.011283229, -0.015117872, -0.014276457, 0.015697205, 0.028414978, -0.02520105, -0.011234951, -0.014000583, -7.909813E-4, -0.028442565, -0.0056243725, 0.00796585, 0.02572521, 0.007510658, -0.0063795764, 0.013766091, -6.9744285E-4, -0.008917613, 0.010883212, 0.017559353, 0.030346094, -0.029159836, 0.020193946, 0.0069416687, 0.014386807, -0.04391907, -0.015173047, 0.012959161, -0.03351864, -2.7414935E-4, -0.03528423, -0.012924677, 0.0048002, -7.4011704E-4, -0.0120005, 0.00412431, 0.01224189, 0.0062761237, 0.023628572, -0.029159836, -0.01012456, 0.014386807, -0.00903486, -0.029104661, -0.020607756, 0.018235244, -0.0048588235, -0.020483613, -0.009248662, -0.017724877, -0.026263164, -0.015986873, 0.0148006175, -0.0059278333, -0.0024759653, 0.030346094, 0.025559686, -0.010986665, -0.01885596, -0.025270019, 0.030042632, 0.033435877, 0.007379618, -0.03978097, -0.016980018, -0.005496781, 0.018290417, 0.028773613, -0.0055760946, -0.020718105, -0.017145542, -0.012159128, -0.012366033, -0.0039484403, 0.02365616, -2.8815857E-4, -0.014331632, 0.023614777, -0.024345843, 0.002210437, -0.022345759, 0.016980018, 0.0046139853, -0.010400434, -0.025007939, -0.047450256, 0.012214302, 0.006172671, -0.02302165, 0.025490718, -0.024276875, 0.015904112, -0.008034818, 0.00366567, 0.002688043, 0.009352114, -0.0091934865, 0.015904112, -0.009703853, -0.0011405648, -0.027683914, 0.01038664, 0.0014750615, 0.012910883, -0.009131416, 0.014910967, -0.007938262, -0.030732317, -0.038236078, -0.013559186, -0.009807305, 0.01329021, 0.0040725837, 0.030953014, -0.009434876, -0.03329794, -0.028746026, -0.025807973, 0.044663932, -0.02782185, 0.018580085, 0.029132249, -0.02099398, -0.017655909, -0.016000668, -0.17777292, 0.025449337, 0.0029863315, -0.024732066, 0.012331549, 0.031559937, 0.032856543, 0.00366567, 0.0025518306, -0.010793554, 0.024318255, 0.012028088, -0.028442565, 0.005020899, -9.603849E-4, 0.00418983, -0.012172922, 0.033960037, 0.0143178385, 0.011324611, 0.04300869, -0.011207364, 5.0777977E-4, 0.004024306, -0.004727783, 0.010814244, 0.016428271, 0.013904029, 0.002310441, 0.0022259548, -0.025394162, -0.0043725963, 0.018704228, 0.007814119, -0.024111351, -0.008938304, -0.023614777, -0.013228138, -0.010007313, -0.0058036903, 0.041215513, 5.223817E-5, 0.0146350935, -0.0067175217, 0.014048861, 0.02744942, 0.036304962, -0.03487042, -0.002555279, -0.011834976, 0.011048737, -0.035753217, 0.013917821, -0.018786991, -0.010165941, 0.011097015, 0.011269435, -0.005334705, 0.0062071555, 0.015766175, -0.029877108, -0.016345508, 0.014007481, -0.009821099, -0.008352072, -0.017324861, -0.028014962, 0.010303878, -0.029601235, -0.002103536, -0.01660759, 0.03255308, 0.012586731, 7.2934077E-4, 0.006003699, -0.021835394, -0.043450087, -0.0096004, -0.017159337, 0.022345759, -0.007172713, 0.03602909, -0.0033501396, 0.003229445, -0.00538988, -0.009372804, 3.844988E-4, 0.0094762575, 7.3548326E-5, -0.015807556, -0.006614069, -0.009103828, -0.04331215, 0.005269185, 0.0038967142, -6.383887E-4, 0.004044996, 0.009800409, 0.0051622842, -0.016883463, 7.164092E-4, -0.012710875, -0.042374182, 0.024718272, 0.01926977, 0.009290042, -2.95702E-4, 0.0205112, 0.01806972, 0.009883171, -0.016993811, 0.011759111, 0.01224189, -0.0025604516, -0.017793845, 0.009862481, 0.0042760405, -0.03133924, -3.9161116E-4, 0.026690768, 0.053409126, -0.0102556, -0.017655909, -0.019104244, -0.006596827, -0.014704062, -0.09810064, 0.013862647, 0.029904695, 0.037049823, -0.03442902, 0.036939472, -0.01077976, 0.028663265, -0.016580002, 0.020124977, 0.0063140565, -0.028525328, 0.017255891, 0.006034734, 0.017545559, 0.019559436, -0.031725463, -0.012159128, -0.024607923, 0.017242098, -0.009110725, -0.008841748, -0.0038760237, -0.01957323, -0.0051002125, 0.010200425, -0.020842249, 0.018607672, 0.0110901175, -0.0097590275, 0.006120945, -0.024332048, 0.027849438, -0.04731232, -0.022111267, -0.0085106995, -0.011076324, -0.03768433, 0.0058312775, -0.042346593, 0.0026242475, 0.028635677, 0.00525884, -0.011531515, 0.003713948, 0.003969131, -0.03727052, 0.031808224, -0.010076283, -0.0159317, -0.005207114, -0.020593962, -0.039698206, -0.0030035735, 0.008014128, 0.01346263, 0.012538454, 0.005841623, -0.021752631, -0.019090451, 0.0013535047, -0.0010664238, -0.009407288, 0.004117413, 0.009683162, 0.013959203, -0.0051381453, -0.0068658036, 0.009510742, -0.015297189, -0.023600984, 0.0129867485, -0.023187174, -0.01953185, -0.0142350765, -0.00837966, -0.03716017, -0.010545268, 0.031173714, -0.034594547, 0.0031828913, -0.025739005, 0.015517889, -0.013131582, 0.017614529, 0.028690852, 0.012766049, 0.020028422, -0.0043829414, -0.046263997, -0.013400558, 0.034842834, -0.0021638833, -0.009717647, -0.00639337, 0.023669953, 0.01106253, -0.003624289, -0.008214136, 0.0087107085, -0.023297524, -0.00933832, -0.07255475, 0.032304797, -0.02212506, 0.001717313, -0.020842249, -0.01544892, -6.349403E-4, 0.0038311942, 0.012290168, 0.025559686, 0.0031639251, 0.01062803, -0.004665712, 0.0066761407, -0.026525244, -5.314877E-4, 0.0016776562, -0.005438158, 0.0055933367, -0.0074003087, -0.020538788, 0.01315917, 0.015379951, 0.015214427, 2.4763963E-4, 0.018166276, -0.007938262, 0.009848687, -0.02024912, -0.0057898965, 0.025104495, -0.02871844, -0.008779677, 0.00149489, -0.017421417, -0.013552289, -0.01093149, 0.0048036487, 0.00944867, 0.039698206, -0.0010845279, -0.026290752, 0.0061174966, -0.004403632, -0.0050726254, 0.009290042, -0.00892451, 0.01889734, 0.0069830497, -0.009565916, 0.020814661, 0.010400434, -0.017117955, -0.027325278, 0.019021483, -0.011897048, 0.03798779, 0.019724961, -0.004396735, -0.010945284, 0.03671877, 0.009745234, 0.021531932, -0.032332383, -0.004741577, 0.018042132, 0.01627654, -0.0043174215, 0.014455775, -0.02718734, -0.0119384285, 0.0026259716, 0.010945284, 0.029490884, 0.0011138396, 0.010786656, 0.010145251, 0.002351822, 0.0056416146, -0.0024501022, 0.007255475, 0.0030915083, -0.025145877, 0.036498073, 0.0045312233, 0.01806972, -0.013407456, 0.013297106, -0.011503928, 0.0059692143, -0.014028171, 0.0033328976, 0.019504262, -9.747174E-5, 0.008841748, 0.02275957, -0.016442064, -0.008821057, 0.014124727, 0.029739171, 0.0034984217, -0.005776103, -5.6812714E-4, -0.02493897, -0.02005601, 0.0069244266, -0.03674636, -0.010593546, 0.014566124, 0.027132167, 0.022138854, 0.010379743, -0.020180153, -0.004676057, -0.022262998, 0.011269435, -0.015145459, -0.022152647, -0.014910967, 0.037629154, 0.020538788, 0.01053837, 0.03018057, -0.003986373, 0.029408123, -0.0041794847, 0.0142350765, -0.029628823, 0.005265737, 0.007931366, 0.0074830707, -0.012221199, -0.014759236, 3.336346E-4, -0.026428688, 0.008641739, 0.022745777, 0.027214928, -0.023242349, 0.07547901, 0.034732483, 0.0017380036, 0.006727867, -0.020842249, 0.01837318, 0.011772905, 0.01435922, -0.0044415644, -0.034373846, 0.0109108, -0.0071106413, 0.0082279295, -0.03558769, 0.0028156347, -0.0050484864, 0.011807389, 0.009855583, -0.0038415396, -0.0022414727, 0.0085106995, -0.014993729, 0.01171773, 0.032635845, 8.681397E-4, -0.014524744, 0.02129744, -0.0183318, -0.008365866, -0.020524994, -0.016152399, -0.029463297, -0.0019155971, -0.0061933617, 0.033408288, -0.0051243515, -0.0120005, 0.001306951, 0.007207197, 0.011676349, -0.020456025, 0.0062416396, -0.01983531, -0.027049404, 0.030401267, -0.0183318, 0.011331507, -0.01195912, -0.015876524 ], + "id" : "7f44909f-bf6d-4a62-94f5-b45841097b68", + "metadata" : { + "source" : "movies.csv" + } + }, + "43d8158a-6a43-4872-baf6-6edf9d4cc944" : { + "text" : "35,The Simpsons Movie,Animation-Comedy-Family,en,After Homer accidentally pollutes the town's water supply Springfield is encased in a gigantic dome by the EPA and the Simpsons are declared fugitives.,70.516,Gracie Films-Film Roman-20th Century Fox Animation-The Curiosity Company-20th Century Fox,7/25/07,75000000,527068851,87,Released,See our family. And feel better about yours.,6.995,7151,Dan Castellaneta-Julie Kavner-Nancy Cartwright-Yeardley Smith-Hank Azaria-Harry Shearer-Pamela Hayden-Tress MacNeille-Albert Brooks-Marcia Wallace-Joe Mantegna-Tom Hanks-Billie Joe Armstrong-Mike Dirnt-Tre Cool-Russi Taylor-Karl Wiedergott-Maggie Roswell-Philip Rosenthal,parent child relationship-garbage-pollution-environmental protection agency-quarantine-dysfunctional family-dysfunctional marriage-ecology-first love-duringcreditsstinger,/gzb6P78zeFTnv9eoFYnaJ2YrZ5q.jpg,/yajM2akz8QKOx0RdvN6OYaxe3GN.jpg,810-809-953-425-8355-9502-950-1593-10527-10192-808-10555-863-2062-13053-10193-6477-22794-37135-7518-11836\r\n374720,Dunkirk,War-Action-Drama,en,The story of the miraculous evacuation of Allied soldiers from Belgium Britain Canada and France who were cut off and surrounded by the German army from the beaches and harbour of Dunkirk between May 26th and June 4th 1940 during World War II.,33.516,Warner Bros. Pictures-Syncopy,7/19/17,0,527000000,107,Released,Survival is Victory,7.459,14999,Fionn Whitehead-Tom Hardy-Mark Rylance-Kenneth Branagh-Cillian Murphy-Barry Keoghan-Harry Styles-Aneurin Barnard-Damien Bonnard-Lee Armstrong-James Bloor-Tom Glynn-Carney-Jack Lowden-Luke Thompson-Michel Biel-Constantin Balsan-Billy Howle-Mikey Collins-Callum Blake-Dean Ridge-Bobby Lockwood-Will Attenborough-Tom Nolan-James D'Arcy-Matthew Marsh-Adam Long-Miranda Nolan-Bradley Hall-Jack Cutmore-Scott-Brett Lorenzini-Michael Fox-Brian Vernel-Elliott Tittensor-Kevin Guthrie-Harry Richardson-Jochum ten Haaf-Johnny Gibbon-Richard Sanderson-Kim Hartman-Calam Lynch-Charley Palmer Rothwell-Tom Gill-John Nolan-Bill Milner-Jack Riddiford-Harry Collett-Eric Richard-Michael Caine-Johnny Otto,france-beach-europe-world war ii-evacuation-pilot-british army-allies-army-royal navy-based on true story-survival-rescue mission-military officer-historical fiction-soldier-private-military-dunkirk-1940s-royal air force-raf,/ebSnODDg9lbsMIaWg2uAbjn7TO5.jpg,/eXYbyOx6GFvmpOJl6AS8QxXeIYE.", + "embedding" : [ 0.024785865, -0.028483205, -0.010427865, -0.02900357, -0.01658325, 0.028264103, 0.0049434793, -0.005929436, -0.009736326, -0.04551835, 0.021088526, 0.027743736, 0.008846226, 0.0144743975, -0.011858872, 0.008051983, 0.021649973, -0.011941035, 0.0047106836, -0.031167198, -0.0015927657, -0.0025693083, -0.013604838, 0.007661708, 0.012002658, 0.0014027635, 0.016542168, -0.027072737, -2.4220994E-4, -0.005255014, -0.0030126467, -0.023786215, -0.015775314, -0.016158741, -0.008387482, -0.0042793276, -0.0055699726, -0.025963536, 0.02479956, -0.019842386, 0.0013334384, 0.011037242, -0.007757565, 0.004659332, -0.015953332, 0.022362053, 0.006319711, -0.013241951, 0.0014746563, 0.021170689, 0.019938244, 0.019732835, -0.013303573, -0.032290094, 0.007209811, 0.009770561, -0.010831834, -0.017076228, 0.0045326636, -0.019814998, 0.011276884, -0.007490535, -0.025936149, -0.0026446243, -0.018856429, 0.005059877, -0.014898906, -0.017815696, 1.795178E-4, 0.0013548351, 0.040451627, 0.017487044, 0.015789008, 0.0013959167, 0.028154552, -0.011537067, -0.026374351, 0.0116877, -1.355477E-4, 0.023252154, 0.0154055795, -0.023361705, 0.0020027254, 0.0023570536, 0.027374003, 0.023115216, -0.014241602, 0.03982171, -0.033111725, 0.017938942, 0.011338506, 0.01900706, 0.015857477, 0.010605886, 0.005898625, 0.028236715, -0.011249497, 0.01789786, -0.012735278, -0.05239266, -0.0062580886, 0.0033549927, -0.002259485, -0.0068058427, 0.0014994764, 0.017350106, 0.0059705176, -0.003683645, 0.0076069324, -0.006069798, 0.012694197, -0.006172502, 0.011591842, -0.03924657, 0.0013753759, -0.019869773, 0.02633327, -0.00870244, -0.02519668, -0.015501436, 0.025278844, 0.012228606, 0.013385736, -0.035111025, 0.033686865, 0.03174234, -0.012413474, -0.0085107265, 0.007921891, -0.011448057, 0.030865934, -0.004193741, 0.024142254, 0.0059602475, -0.031441074, 0.054008536, -0.024991272, 0.022444217, -0.024197029, -0.0173638, 0.040068198, 0.023676664, -0.009161185, -0.011578148, -0.020376446, 0.009352898, 0.025292538, -0.017281637, 0.014844132, 0.021513036, 0.024607845, 0.02010257, -0.004847622, 0.03330344, 0.022115564, -0.0024409285, -0.0057822275, -0.015282335, 0.008298472, -0.012796901, -0.0052139326, -7.685672E-4, -0.010824987, -0.026127862, -0.018924898, 0.009989662, 0.016268292, -0.010982466, -0.005963671, -0.0012059145, -0.005357718, 0.016884515, -0.01604919, 0.015419273, -0.0040259915, 0.041875787, -7.839728E-4, 0.0023057016, -0.022567462, -0.009380286, -0.007120801, 0.022444217, 0.019144, 0.036288697, -0.006631246, 0.0017476773, 0.026593452, -0.016994065, 0.003404633, -0.017870473, 0.0064874603, 0.009818489, -0.007873963, -0.005162581, -0.645035, -0.012796901, -0.007422066, -0.017281637, 0.01740488, 0.023156296, 0.006254665, 0.0035809414, -0.03196144, -0.009818489, -0.026538678, 0.014515479, 0.016665414, -0.02615525, -0.027688961, -0.008962624, 0.0044778883, -0.017144699, 0.018130654, -0.011194721, -0.017035147, 0.022827646, -0.006881159, -0.0010655526, 0.019445265, 0.0105921915, 8.113605E-4, -0.037302043, 0.0092981225, 0.0014772238, -0.012180678, 0.023977928, 0.015597293, -7.0052594E-4, 0.044395454, 0.01204374, -0.011934188, 0.028127164, 0.0420675, 0.03426201, -0.012365545, -0.002004437, 0.024621539, 0.005658983, -0.010003356, 0.004830505, 0.014529173, 0.0047825766, 0.016952984, -0.015542517, 0.005669253, 0.015884863, -0.008462798, 0.007552157, 0.017035147, 0.019897161, 0.011222108, -0.032399643, 0.022512686, 0.0021773218, -0.011208415, 0.027688961, 0.003711033, 0.018336063, -0.017966328, 0.036316086, -0.009763714, -0.019144, 0.00914749, -0.027771125, 0.0062307008, 0.0033738217, -0.008394329, -0.013344655, 0.0144743975, 0.013461052, 0.008935236, -0.00939398, 0.0059397067, 0.020458609, 0.002411829, -0.020047793, 0.0029150778, 0.0019120035, 0.025114518, -0.012618881, -0.030126465, 0.018952286, 0.010961926, 0.013419971, 0.012701044, 0.026771473, 0.018021105, 0.00292706, -0.026470209, -0.018760571, -0.018842734, 0.010900303, 0.014186827, -0.055432696, -0.020006713, -0.013378889, 0.014652417, -0.011817791, 0.0058952016, -0.0063162874, -0.0039677927, -3.2672664E-4, 0.03754853, -0.0049605966, 0.008873614, 0.005905472, -0.023211073, -0.007915044, 0.0027969684, -0.024881722, 0.03557662, -0.0065490827, 0.0087298285, 0.010475794, 0.0113111185, -0.0024683161, 0.0029321953, -8.1820745E-4, 0.0068298066, 0.026703004, 0.010400478, -0.009530919, -0.01284483, -1.2666809E-4, 0.014104663, 0.023183685, 0.005816462, -0.008339553, -1.2570525E-5, 0.01900706, 0.023293236, -0.025826598, 0.026922105, 8.7897386E-4, -0.01832237, -0.011516526, -0.01932202, -0.030290792, -0.004563475, -0.018212818, -0.016295679, -0.010852375, -0.005611054, -0.0044573476, -0.0048887036, 0.015008458, 0.009996509, 0.010482641, 0.0057445695, 0.009174879, -0.024717396, -0.026127862, 0.009934886, -0.00796982, 0.011406976, 0.023567112, -0.0038616653, -0.021307629, 0.017514432, -0.0069393576, -0.024142254, -0.0041458127, 0.0061451145, -0.04447762, 0.003882206, -0.015186477, -0.0016740729, 0.018979674, -0.013844481, 0.033960745, -0.01515909, 0.004556628, 0.018596245, -0.012837983, 0.003940405, -0.0049058213, -0.018651022, -0.0020848883, 0.03604221, -0.006364216, 0.02900357, -0.00274904, -0.029743038, 0.02132132, 0.0019120035, 0.004371761, 0.0059910584, -4.942623E-4, 0.004809964, 0.015296028, -0.014241602, 0.014748274, 0.0065970114, 0.01693929, 0.036096983, 0.016172435, 0.019239856, -0.028483205, 0.022252504, -0.02690841, 0.003950675, -0.017007759, 0.013173481, -0.0028414736, 0.018883817, -0.004967443, -0.025607497, -0.0010741112, -0.0064189914, 0.009181725, -0.0073330556, 0.0032026488, -0.02067771, 0.0038616653, -0.0017973175, -0.0015054675, 0.02316999, 0.003683645, -0.025046049, -0.0037555378, 0.0010433, 0.0035261658, -0.010147141, -0.024717396, 0.0017254249, -0.0044710413, 0.004032838, -0.001304339, 0.023868376, 0.010770212, 0.028154552, 2.3472111E-4, 0.03163279, -0.0034440027, -0.0017750651, -0.006528542, 0.033495154, -0.005860967, -0.019979324, -0.024183337, 0.021841688, 0.0010783905, -0.022266198, 0.02729184, -0.020910505, 0.010544263, -0.008421716, 0.02551164, 0.01239978, 7.433192E-4, 0.012221759, -0.00736729, 0.03661735, 0.029441774, 0.013022849, -0.028674917, 0.003786349, 0.0015953333, 0.005741146, -0.013139247, -0.030619444, -0.00718927, -0.007298821, -0.03292001, -0.028866632, -0.024498295, -0.0024666043, 0.001412178, 0.0063436753, -0.020910505, -0.01676127, 0.026524983, 0.006189619, 0.015556212, -5.9225893E-4, -0.041547135, 0.006703139, 0.009332358, -0.011858872, -0.0019256974, -0.009003705, -0.0058712373, -0.02388207, -0.009962275, -0.00841487, 0.023635581, -0.010633273, 0.012125903, -0.0067099854, -0.0038787825, 0.019034449, -0.006367639, 0.0038513949, 0.028045, -0.006186196, 0.006593588, -0.010605886, -0.002959583, 0.02526515, -0.010044438, -0.0043546436, -0.027017962, -0.008716134, 0.006364216, -0.005039336, 0.0020472303, -0.030838545, 0.030181242, -0.011324813, -0.010222457, -0.016254598, -0.0015979009, 0.0121738305, -0.004584016, -0.012112209, -0.04113632, -0.018993367, 0.015925946, 0.08084848, 0.02152673, 0.015747925, 0.00602187, 7.775538E-4, -0.009613082, -0.007066026, -0.0032129192, -0.0064258385, -0.0017733533, 0.0147619685, 0.0053748353, 0.03700078, -7.326209E-4, 0.024881722, -0.01473458, -0.006141691, -0.008401176, 0.0038068898, -0.024238111, -0.005385106, -0.0036288698, 0.004303292, 0.043190397, -0.00398491, -0.026785167, 0.016679106, 0.018664716, 0.0066791745, 2.2723229E-4, -0.025402088, -0.0015414138, 0.0021824571, 0.01676127, -0.0075384635, -0.005124923, 0.04245093, 0.028154552, 0.029660875, 7.531617E-4, 0.010263539, -4.8827127E-4, -0.0028500322, -0.024142254, 0.030099079, -0.022690706, -0.015912252, 0.0313863, 0.018568859, -0.03242703, 0.027990226, -0.009195419, -0.021910157, -0.005946554, 0.027374003, 0.0018520929, 0.013659613, -0.00532006, -0.017925248, -0.00550835, 0.0034217504, -0.024785865, 0.023457563, -0.0026942645, -0.0037931958, -0.011735627, -0.0061759255, -0.002493992, -0.0030845392, 0.011845179, 0.0088667665, -0.04587439, -0.020883119, 0.006189619, 0.029332222, -0.015131703, 0.01242032, -0.0164737, -0.0020369599, -0.011968424, -0.022594849, -0.022937195, -5.199383E-4, -0.019705448, -0.010701742, 0.030865934, -0.015186477, 0.025675965, -0.014529173, 0.001412178, 0.008695593, -0.0012803748, -0.01850039, -0.0022235387, 0.025717046, 0.003926711, 0.024347661, 0.03152324, 0.020280588, -0.004967443, 0.028455816, -0.0110167, -0.010852375, -0.012050587, 0.0010398766, -0.02170475, -0.008483339, 0.0032043604, -0.01878796, -0.02925006, 5.0838414E-4, -0.012831136, 0.014214214, -0.008298472, 0.015624681, 0.0144743975, 0.023909459, 0.008962624, -0.0016150182, 0.0040841904, -0.008154687, -0.014871519, 0.005809615, 0.040588565, -0.016432617, 0.011345353, -0.0030622869, -0.018130654, -0.015528824, 0.0051214993, -0.011612384, 0.02818194, -0.017254248, -0.018212818, -0.011591842, -0.020732487, 0.0022817375, 0.009667857, -0.02408748, 0.0065011545, -0.010708589, 0.016213516, 0.0029510243, 0.016158741, 0.006045834, -0.023621889, 0.013399431, -0.011543914, 0.016391536, 0.0028260679, -0.0077096364, -0.014214214, -0.009428214, 0.0011057783, -0.008339553, -0.03245442, -0.01900706, 3.7123167E-4, 0.028729694, 0.003622023, 0.034207232, 0.02199232, 0.022498993, -0.0013034831, 0.0033241815, 0.027237063, -0.006206737, -0.019541122, -0.026182638, -0.015898557, 0.010352549, 0.025593802, 0.0067099854, 0.0016432618, 0.024197029, 0.024333969, 0.018993367, 0.008051983, 0.0012178966, -0.025237761, -0.005593937, 0.0058883545, -0.011920495, 0.01019507, -0.015925946, -0.019349407, 0.011906801, 0.018062185, -0.015076927, -0.003252289, 0.035111025, -0.01010606, 0.022649625, -0.002692553, 0.011913648, -0.027908063, -0.012139596, -0.024457213, -0.031441074, 0.009921193, -0.01593964, -9.808219E-4, -0.009558306, -0.008544961, 0.004984561, 0.019198775, -0.00930497, -0.04436807, 0.0015354228, 0.008490186, -0.010201917, -0.027949143, 8.9865876E-4, -0.02573074, 0.006453226, 0.004087614, -0.0018503813, -0.0033104878, -0.0158027, -0.05006471, 0.024155948, -0.018746879, 0.039629996, 0.027483553, 0.05778804, 0.025840292, -0.004584016, -0.008483339, 0.013461052, 0.008599737, -0.01651478, 0.03281046, 0.006439532, 0.006573047, -0.013974572, -0.027675267, 0.007490535, -0.016816046, -0.038616654, 0.034453724, 0.013741776, 0.020485997, -0.03292001, -0.0071824235, -0.018856429, 0.030646833, -0.0033053525, -0.0014113223, 0.019979324, -0.017596595, -0.023074133, 0.023635581, 0.0058027683, 0.010941384, 0.0018058763, -0.027127514, 0.012974921, -0.026566066, -0.005816462, -0.004238246, 0.0018435343, 0.03470021, -0.023621889, 0.021088526, 0.010037591, 0.0054878094, 0.0042211288, -0.009414521, -0.01322141, 0.026059393, 0.0012384374, -6.793432E-5, -0.0068777353, -0.005703488, 0.022868726, -0.007449453, -0.027593104, -0.0093734395, -0.011715087, -0.0089420825, 0.03209838, 0.025744434, 0.004358067, -0.013899256, -0.014720887, 0.010859221, 0.0064634965, -0.02455307, -0.003748691, -0.033221275, 0.008572349, -0.013748623, 0.018486695, -0.0032505773, -0.006179349, 0.004207435, 0.017267942, 0.02156781, -0.013050238, -0.0075316164, -0.018829042, -0.0039061701, -0.027894368, -0.015186477, -0.011092017, -0.027223371, 0.010838681, -0.015843783, -0.007579545, -0.0114549035, 0.003462832, 0.012454554, -0.0015482607, -0.006186196, 0.0020797532, 0.019445265, -0.001508035, -0.021376098, -0.0043375264, 0.033714253, 0.0059157424, -0.0035877882, 0.021595199, 0.0055665495, 0.028264103, -0.017952634, 0.0066962917, -0.0035809414, -0.01665172, -0.0113522, 0.0013094742, 0.022115564, 0.020992668, -0.013906103, -0.04020514, -0.011338506, -0.012550412, 0.028510591, -0.011160486, -0.0050085247, 0.025374701, 0.027004268, 0.04020514, 0.02067771, -0.0029749884, -0.029551324, -0.015296028, -6.6800305E-4, -0.0069153933, -3.0468812E-4, 0.024607845, 0.015200172, 0.0037589613, 0.0036151758, -0.03612437, 0.0027199406, -0.026976882, -0.015734231, 0.0088667665, 0.013680154, 0.041684072, 0.0148304375, -0.011235802, 0.024046397, -0.008353247, 0.013118707, -0.020978976, -0.006076645, -0.0023724593, 0.016569557, 0.012742125, 0.010359396, -0.014145745, -0.008250544, 0.017843084, 0.020869425, 0.012666809, 0.017281637, -0.025922455, -0.014967376, -0.0014361424, -0.004015721, 0.0015422696, -0.0021174112, 0.025114518, -0.023060441, -0.00701125, 0.014871519, 0.017199473, -0.010701742, -0.010564804, 0.0030622869, -0.0076206266, 0.017528126, -0.014885213, -0.025990924, -0.0063060173, -0.03754853, 0.012694197, 0.0031547202, 3.94554E-4, 0.014720887, 0.023621889, -0.017445963, -0.0056213248, -0.019157693, -0.0090858685, -0.023211073, -0.01275582, 0.007483688, 0.02818194, -0.02900357, 0.027319226, -0.019801304, 0.0035227425, -0.014912601, -0.002533362, -0.012837983, 0.021047445, 0.01896598, -0.04683296, -3.804322E-4, -0.0056042075, 0.011564455, -0.010249846, 0.014515479, -0.0331665, -0.0053371773, 0.009099562, 0.0056761, -0.021718442, -0.032646134, 0.0049708667, 0.004193741, -0.01311186, 0.025539028, 0.18886556, -0.018158043, 0.023690358, 0.046504308, -0.0072851274, 0.015378191, 0.0039986037, 0.024114866, -0.012639422, 0.026210025, -0.0058678137, 0.024238111, 0.0038513949, 0.0060047526, 0.006268359, -0.018445613, -0.03579572, -0.025032355, -0.038370162, -0.009537765, -0.007839728, -0.003029764, -0.005946554, -0.013878715, -0.0034388676, -4.0867578E-4, -0.020362752, -0.0023211073, 0.039493058, 0.012940686, -0.022608543, -0.032783072, -0.009647316, -7.865404E-4, -0.0075453105, -0.004573745, -0.002634354, 0.005949977, 0.0028808434, -3.4855123E-4, 0.0022115565, -0.008045136, -0.017076228, -0.0031958017, 6.167581E-5, 0.014611336, -0.009496683, -7.668555E-4, -0.0087298285, 9.748308E-4, -0.030756382, -0.00533033, 0.017267942, 0.030153854, -0.0055973604, -0.010619579, 0.014898906, -0.019828692, -0.0047380715, 0.017322717, 0.014104663, 0.048804875, -0.030482506, 0.027921757, -0.014433316, 0.02223881, -0.041875787, 0.0028431853, 0.0077164834, -0.040095586, -0.002493992, -0.028401041, -0.029414386, 0.0080109015, 0.0028585908, -0.004405996, -0.014748274, 0.021499341, 0.0014233043, 0.010078672, -0.038671426, 0.0031581437, -0.015254946, -9.92804E-4, -0.009195419, -0.025210375, 0.03245442, -0.0046490612, -0.016295679, -0.025566414, -0.010872915, -0.028127164, -0.008428563, 0.015186477, 0.0026103898, -0.0024922804, 0.013865021, 0.02633327, -0.010927691, -0.010167683, -0.022937195, 0.018404532, 0.025388394, -0.018746879, -0.01921247, -0.023964234, -0.0057103345, 0.025607497, 0.028483205, -0.029332222, -0.013173481, -0.041218482, -0.0039164405, -0.009524072, -0.0023176838, 0.028866632, 0.009407674, -0.0013257357, 0.014282684, -0.007209811, -0.020335365, -0.0220334, 0.0012264553, 9.602811E-4, -0.0038171601, -0.02014365, -0.031934053, 0.02245791, 0.0046490612, -0.026949493, 0.008195768, -0.025059743, -0.0028842667, -0.0076890956, -9.876688E-4, 0.009181725, 0.004512123, -0.0014575389, -0.008216308, 0.016487394, -0.008140992, -0.019883467, 0.008497032, -0.009366592, 0.010681202, -0.01320087, 0.027730042, 0.013967725, -0.008188921, -0.02786698, -0.008832532, 8.3018956E-4, 0.007394678, -0.007962973, 0.040971994, -0.027976532, -0.024881722, -0.033686865, -0.00879145, 0.031331524, -0.053871598, 0.02021212, 0.024511987, -0.024443518, -0.028483205, -0.007031791, -0.17615767, 0.013591144, -0.0043306793, -0.01161923, 0.017350106, 0.015145396, 0.03207099, 0.009975968, 0.0095856935, -0.024388744, 0.018911203, 0.013707542, -0.04957173, -0.013502134, 0.003034899, 0.00930497, -0.023936847, 0.024470907, 0.009428214, -0.008127299, 0.03007169, -0.0043820315, 6.521695E-4, 7.2876946E-4, 0.008640818, 0.012790054, 0.012502483, 0.017802002, 0.0010390207, -0.008976317, -0.02996214, -0.006980439, 0.014638724, -0.0072371988, -0.022225115, -0.00629917, -0.023813602, -0.007086566, -0.005070147, 0.013125554, 0.026319576, 0.006011599, 0.022047095, 0.007784953, 7.8097725E-4, 0.014789356, 0.026305882, -0.019171387, -0.0067681842, -0.017747227, -0.021266546, -0.039602607, -0.008277931, -0.010688049, -0.026990574, 0.0012144732, -0.007113954, -0.0053234836, 0.012653116, 0.009476143, -0.035111025, -0.020020407, 0.014049889, -0.0056863707, -0.011256343, -0.032892622, -0.014392234, 0.025278844, -0.024046397, 0.004957173, -0.018801654, 0.004741495, 0.01682974, -0.00796982, -0.0030143582, -0.023361705, -0.0271549, -3.098233E-4, -0.01066066, 0.006319711, -0.015652068, 0.04182101, -0.016610637, -0.012160137, 0.0107359765, -0.0058678137, -0.005302943, -0.004994831, 7.31765E-4, -0.0060252934, 0.006247818, -0.019664366, -0.028236715, 0.0012427167, 0.00665521, 0.013077625, -0.013207717, 0.011304271, 0.02014365, -0.009914346, -0.0060150228, -0.021855382, -0.01437854, 0.017802002, 0.024470907, 0.008873614, -0.008640818, 0.019280938, 0.024443518, 0.0019547967, -0.009120103, -7.5273373E-4, 0.031194586, 3.035648E-5, -0.016158741, 0.0022766022, 0.0014900619, -0.018678408, -0.009715785, 0.0060184463, 0.045354024, -0.012536718, -0.0043067154, -0.019472651, 0.005580243, 0.0030194935, -0.100567624, -0.0022766022, 0.010297773, 0.04398464, -0.0069701686, 0.034891926, 6.337684E-4, 0.030016916, -0.018692102, 0.016336761, -0.008086218, -0.02526515, 0.008613431, -0.0011913648, 0.03480976, 0.011735627, -0.0147619685, -0.01967806, -0.014200521, 0.025703354, -0.0012042028, -0.026648229, -0.024142254, -0.011776709, -0.020266896, 0.007757565, -0.014173132, 0.013330962, 0.016268292, 0.025497945, 0.022047095, -0.025936149, 6.205025E-4, -0.041054156, -0.0112426495, -0.021129608, -0.015104314, -0.027278146, 7.916756E-4, -0.04412158, 0.006980439, -3.607473E-4, 0.009640469, -0.023046747, 0.008736675, -0.025292538, -0.022608543, 0.040232524, -0.02132132, -0.019458959, -0.016199822, -0.0145428665, -0.0131050125, -0.01444701, 3.27636E-5, 0.025114518, 0.029551324, 0.0018640751, -0.015830088, -0.009647316, -0.0044402303, 9.902364E-4, -0.028976183, -0.0029544476, 0.014529173, -0.00452924, -0.010872915, -0.01462503, 0.010585344, -0.012105362, -0.031824503, 0.020595547, -0.030263405, 0.0050187954, -0.020088876, 0.0035398598, -0.022142952, -0.0020883118, 0.019198775, -0.01682974, 0.016542168, -0.035823107, -2.3985631E-4, -0.013118707, 0.008558655, 0.02408748, 0.027497247, 0.011660311, -0.0021396638, -0.02551164, 0.004282751, 0.021691056, 0.021800606, -0.002329666, -0.0061690784, 0.025497945, 0.005806192, -0.007134495, 0.010160835, -0.0026993998, -0.011899954, 3.62887E-4, -0.06983863, 0.0065696235, 0.007648014, 0.0017990293, 0.008517574, -0.014885213, -0.0068058427, -7.4246334E-4, 0.011359047, 0.0014900619, -0.009941733, 0.01426899, 4.96402E-4, 0.0074083717, -0.01480305, -6.560209E-4, -0.0042211288, 0.008962624, -0.0037623849, 0.017487044, -0.025333619, 0.006675751, 0.0118862605, -5.60164E-4, -1.8850437E-4, 0.020951588, 0.014173132, 0.012694197, -0.020554466, -0.011208415, 0.011749322, -0.0020609242, -0.013358349, 2.9570152E-4, -0.0126051875, -0.017076228, -0.009558306, -0.01689821, 0.037658084, 0.017350106, -0.0060732216, -0.018623633, -0.00788081, -0.014282684, -0.004799694, 0.02014365, -0.016555863, 0.01357745, 0.020513384, 0.002983547, 0.030893322, 0.01090715, 0.007600086, -6.021014E-4, 0.020362752, -0.020896813, 0.042259216, 0.013522675, 0.019171387, -0.0013360061, 0.013960878, 0.016213516, 0.03187928, -0.015569906, -0.011537067, 0.008839379, -0.0060800686, -0.010900303, 0.0033618398, -0.025306232, -0.0031975135, 0.0042553633, 0.025990924, 0.02800392, 0.020239508, 0.018048491, -0.010167683, 3.69092E-4, 0.00602187, 0.008195768, 0.009756867, -0.014570255, -0.031797115, 0.031824503, 0.014529173, 0.025895067, -0.015583599, 0.019458959, -0.019897161, 0.011941035, -0.01871949, -0.006275206, 0.0032728298, -0.004977714, 0.017089922, 0.023265848, -0.0054638456, 0.0071550356, -0.0042930213, 0.017637676, -0.0016398383, 0.0026377775, -0.019513734, -0.022855032, -0.022047095, -0.0013514117, -0.019171387, -0.03152324, -3.3186184E-4, 0.009825336, 0.01277636, -0.0011477156, -0.0038958997, 0.010646967, -0.022868726, 0.024648927, -0.013892409, -0.023991622, -0.009722632, 0.02900357, 0.011009854, 0.0028876902, 0.032235317, -0.01687082, 0.050585076, 0.009715785, 0.02971565, -0.029332222, -0.004313562, -0.003957522, -0.0044505005, -0.010085519, -0.018979674, -0.0022440793, -0.004358067, 0.0038205837, 0.013995113, 0.040068198, -0.012728432, 0.057349835, 0.026963187, 0.0076343203, 0.016446311, -0.015583599, 0.018144349, 0.010338855, 0.017089922, -0.01921247, -0.023991622, 0.006881159, -0.016008109, 0.0094487555, -0.026552372, 7.5444544E-4, -0.003964369, 0.008586043, 0.018486695, -0.0164737, -0.023580806, -0.0035912117, -0.016446311, 0.01871949, 0.0014087546, -0.012824289, -0.008880461, 0.016090272, -0.0090858685, -0.007942432, -0.03661735, 0.005162581, -0.017007759, -0.006665481, -0.0012957804, 0.021499341, 0.009578846, -0.02395054, -0.010249846, 0.036918614, -0.0023570536, 0.009133797, 0.005785651, -0.019294633, -0.013330962, 0.0115986895, 0.0072303517, 0.013173481, -0.01832237, -0.023813602 ], + "id" : "43d8158a-6a43-4872-baf6-6edf9d4cc944", + "metadata" : { + "source" : "movies.csv" + } + }, + "0f094274-a4ef-4b69-a694-28861b15f465" : { + "text" : "Horne-Michael Tadross-Elvis Duran-John McTiernan Sr.-Greg A. Skoric-Sven Toorvald-T. Alloy Langenfeld-Timothy Adams-John C. Vennema-Gerrit Vooren-Willis Sparks-Tony Travis-Danny Dutton-James Saito-Patrick Borriello-V�_ctor Rojas-Jeffrey Dreisbach-Joe Zaloom-John Doman-Patricia Mauceri-Franchelle Stewart Dorn-Kharisma-Gerry Becker-Richard Council-John Robert Tillotson-Ray Aranha-Phil Theis-Flip-Dory Binyon-David Vitt-John Glenn Hoyt-Bray Poor-Shari-Lyn Safir-Ivan Skoric-Faisal Hassan-Richard Russell Ramos-Angela Amato Velez-Richard V. Allen-Shirley J. Hatcher-David P. Martin-James Patrick Whalen Sr.-Paul Simon-Carl Brewer-Vernon Campbell-Ali A. Wahhab-David Sontag-Ralph A. Villani-Carlo Giuliano-Jeannie Epper-Keith Schwabinger-Michael Luggio-Drew Nelson,new york city-bomb-taxi-riddle-robbery-detective-helicopter-gold-fbi-fistfight-police-sequel-revenge-deception-flashback-shootout-explosion-cargo ship-simon says-dump truck-aqueduct-bomb threat-action hero-federal reserve bank-nyc subway,/lwTE6cUhGxRaJvQ5VPdletIGDPh.jpg,/qk0A79253qOG8bStPIEN7VEXSij.jpg,1573-1571-562-514759-47964-27578-87-954-89-941-280-2501-296-95-85-39514-36557-955-2503-604-10764\r\n287947,Shazam!,Action-Comedy-Fantasy,en,A boy is given the ability to become an adult superhero in times of need with a single magic word.,99.043,New Line Cinema-The Safran Company-Seven Bucks Productions-DC Films-Warner Bros. Pictures,3/29/19,80000000,366080049,132,Released,Just say the word.,7.04,8575,Zachary Levi-Mark Strong-Asher Angel-Jack Dylan Grazer-Adam Brody-Djimon Hounsou-Faithe Herman-Meagan Good-Grace Caroline Currey-Michelle Borth-Ian Chen-Ross Butler-Jovan Armand-D.J. Cotrona-Marta Milans-Cooper Andrews-Ethan Pugiotto-John Glover-Landon Doak-Wayne Ward-Paul Braunstein-Nadine Roden-David Kohlsmith-Caroline Palmer-Emily Nixon-Michael Xavier-Keisha T.", + "embedding" : [ 0.009683438, -0.035207566, -0.015366015, -0.041554693, -0.015406702, 0.03593993, -0.0019139707, -0.013650391, -0.026839668, -0.029457178, 0.023435546, 0.031138897, 0.024846017, -0.008259403, 0.0028514604, 0.017590221, 0.014335285, -0.021916576, -0.012721378, -0.01509477, -0.011087129, -0.022337005, -0.01958387, 0.016179748, 0.00939863, 0.026975289, 0.01933975, -0.006401376, -0.019963613, -0.008198372, -0.005041762, -0.001758005, 0.0035092288, -0.01788859, -0.02625649, 0.0032295077, 0.005824981, -0.02297443, 0.023788163, 0.0011824575, 0.008503523, 0.0061809896, -0.0054350663, -0.0104836095, -0.026934603, 0.004143263, 0.017115543, -0.019326188, 0.0035973834, 0.031681385, 0.025239322, 0.043155037, -0.008991763, -0.02218782, -0.0070116767, 0.0034159885, -0.0074592303, 0.0034058169, -0.005363865, 0.01764447, 0.008300089, -0.014023353, -0.026934603, -0.014877774, -0.022337005, -0.005713092, -0.018905759, -0.026053058, -0.010598889, 0.01588138, 0.02267606, 0.012416228, 0.007255797, -0.005038371, 0.019678807, -0.023150738, -0.02358473, 0.00357704, -0.011182064, -0.002358134, 0.0097037805, -0.009263008, -0.01764447, -0.0012087343, 0.009113823, 0.0034159885, -0.010022493, 0.020465415, -0.034963448, 0.013196057, 0.0057639508, 0.04261255, -0.010253051, 0.0037906452, 0.02419503, 0.019407561, -0.014362409, 0.018024214, -0.02601237, -0.03789289, -0.003926268, -0.0057334355, -0.0024039065, -0.011616056, 0.0047942507, -7.24732E-5, 0.0070116767, -0.009764811, 0.015162581, -4.7637356E-4, 0.008489961, -0.0019377046, 0.015528762, -0.035804305, -0.0023530482, -0.01103288, 0.012172108, -0.022459064, -0.0053740363, -0.025130825, 0.029511428, 0.030026793, 0.008537428, -0.039249115, 0.03764877, 0.041853063, 0.004038156, -0.018932883, 0.0040890146, 0.0021665674, 0.02606662, -0.017373227, 0.0153117655, 0.0115279015, -0.026907478, 0.0594026, -0.031138897, 0.009934339, -0.021794515, -0.01218567, 0.041880187, 0.031301644, -0.013385928, -0.016695114, -0.024262842, 0.013202838, 0.0068658823, 0.005431676, 0.029267307, -0.0062250667, 0.022554, 0.02103503, 0.025307134, 0.012606099, 0.02631074, 0.0032023832, -0.011995799, -0.012273825, 0.0010485305, -0.020221295, 0.0031549153, -0.010917601, 0.011222751, -0.011324468, -7.5270416E-4, 0.023978036, 0.013969104, -0.02381529, -0.01533889, 0.003000645, -0.011114254, 0.0373504, -0.032413747, 0.024832455, -0.009147729, 0.0069303033, -0.0069133504, -0.016220436, -0.03097615, -0.02018061, 0.0064793588, 0.014172538, 0.029809797, 0.044402763, 0.006509874, 0.015474512, 0.03406834, -0.020207733, 0.004336525, -0.012945156, -0.017318977, 0.015691508, 4.8569762E-4, -0.010042837, -0.6401376, -0.024113657, -0.0053333496, -0.008584896, 0.010720949, 0.0077575995, 0.010164897, 0.01782078, -0.03298336, -0.0041364823, -0.038055636, 0.021848764, 0.027965333, -0.008842578, -0.028399324, -0.010110647, -0.0022615031, -0.010632793, 0.024425589, 0.012212794, -0.031410143, 0.017658032, 0.01776653, -0.006733651, 0.018878633, 0.010042837, -0.01563726, -0.027355032, 0.022852369, -0.0013435091, -0.009412193, 0.014443782, 0.0054282853, 0.006333565, 0.03862525, 0.010158116, -0.017929278, 0.049529288, 0.012117859, 0.0283722, -0.023625417, -0.010286957, 0.009263008, -0.0020021251, -0.014945585, 0.022825245, 0.0012036485, -0.008110218, -5.0985534E-4, 9.993673E-4, -0.00594026, -0.0055435644, -0.0024174687, -0.025415633, -0.0078796595, -0.007703351, 0.0028056877, -0.031735636, 0.0232728, 0.0043975553, -0.02557838, 0.02650061, 0.009900433, 0.021563957, 6.857406E-4, 0.022838807, 0.00909348, 0.0025073185, 0.008150904, -0.028833317, 2.0523478E-4, -6.04791E-4, -0.013101121, -0.007669445, 0.010517515, 0.009439317, 0.040117096, -0.014118289, 0.001334185, 0.013026529, 7.6329964E-4, 6.281011E-4, -5.1282207E-4, 0.015420264, 0.039330486, -0.0066590584, -0.03976448, -0.0036041646, 0.00703202, 0.0066353246, 0.009527472, 0.026188679, 0.020139921, 0.007723694, -0.005452019, -0.0034888855, -0.016206874, 0.014728589, 0.034583703, -0.05576792, -0.0014240349, -0.014864212, 0.029267307, -0.014728589, 0.01860739, 0.0026344645, -0.006601419, -0.0068285866, 0.031030398, -0.029375805, -0.017739406, -0.0037092718, -0.0076558827, -0.0024784987, 0.0069269123, -0.03382422, 0.017712282, 0.013467302, -0.008076312, -0.013202838, 0.002103842, 0.008720518, 0.009439317, -0.029511428, -0.003461761, 0.020058548, -0.0046179416, -0.0010442922, 0.007900003, 0.016328933, -0.0018970179, -0.0067133075, 0.019977175, -0.008612021, 0.0042415895, 0.0048654526, 0.016979922, 0.004248371, 0.006299659, 0.0039669545, -0.019366875, -0.008110218, -0.014131851, -0.015664384, -0.0014503117, -0.01933975, -0.009256227, -0.0044416324, -0.008022063, -0.020723099, -0.009303695, 0.005824981, 0.0010154725, 0.010958288, -0.0070523634, -0.00266837, -0.017969964, -0.022214944, 0.01170421, -0.02631074, 0.014253912, 0.028507823, 0.0030057307, -0.031681385, 0.018403955, -0.012884125, -0.011697429, 0.009988587, 0.0027785634, -0.007703351, 0.020899408, -0.01661374, 0.002037726, 0.009615626, -0.00994112, 0.02213357, -0.01188052, 0.026175117, 0.018200522, -0.008781549, 0.013182495, -0.018593827, -0.015420264, -0.004109358, 0.029511428, 0.01769872, 0.023069365, 0.0036957096, -0.004336525, 0.005051933, -0.009364725, -0.016383182, -0.0055333925, -0.0011265134, 0.0047433926, 0.021794515, 0.007377857, 0.010069961, 2.4094162E-4, 0.0054994873, 0.038272634, 0.03176276, 0.0174546, -0.0017495286, 0.003327834, -0.026636234, 0.0020885845, -0.023598293, 0.016979922, -0.004862062, 0.0140097905, -0.021563957, -0.010897257, 0.015325328, 0.012741722, 0.019516058, -0.010714168, -0.007554166, -0.01115494, 0.011466871, 0.02437134, 0.0024462885, 0.024886705, 0.008293308, -0.029375805, 0.017902153, 0.019624557, -0.02831795, -0.013623267, -0.01995005, -0.009486785, -5.5605173E-4, 0.0034566752, 0.002049593, -0.007920346, -8.408587E-4, 0.035858557, -0.009791935, 0.034149714, -0.014443782, 6.238629E-4, 0.02533426, 0.01394198, 0.011629619, 0.010449704, -0.017658032, 0.009310476, 0.01297906, -0.010409017, 0.044918127, 0.0015020177, 0.025917435, -0.0075270417, 0.0038923621, 0.0075202603, -0.0070794877, -0.007710132, 0.015447388, 0.01691211, 0.01600344, 0.006760775, -0.017237604, 0.025076576, 0.0033295292, 0.0107480725, 0.009839403, -0.009324038, 0.0013748718, -0.0016698504, -0.036211174, -0.0297013, -0.02164533, 0.0049197017, 0.011290562, -0.006893007, -0.015243954, -0.012511164, 0.006191161, 0.0026819324, 0.007777943, -0.008191591, -0.032712117, 0.0074117626, 0.022703186, -0.01546095, -0.033091858, -0.0012926507, -0.012823096, -0.037757266, 0.0016537453, -0.014633654, 0.03037941, -0.008544209, -0.006943865, -0.01666799, 0.00812378, 0.010280176, -0.012375541, 0.016098375, 0.02479177, 0.0074795736, 0.02188945, -0.011060004, -0.023286361, 0.040035725, -0.015759319, 0.0042958385, -0.016627302, 0.0023327048, -0.01133803, 0.007737256, 0.011792365, -0.051292382, 0.014932023, -0.009500347, 0.0018885415, -0.009995368, 0.003624508, 0.0125789745, -0.016654426, -0.02302868, -0.03200688, -0.020899408, -0.0015859341, 0.06412226, 0.02782971, 0.008998544, 0.0061369124, -0.012083953, 0.0030328552, -0.0017173183, -0.014592967, -0.00612335, -0.006716698, 0.020804472, -0.015298204, 0.014172538, -0.004675581, 0.00781863, -0.020031424, -0.013243524, 0.0012638309, 9.230798E-4, -0.020506103, -0.03184413, -0.008218716, 0.040605336, 0.0373504, 0.008130562, -0.014755714, 0.013779233, 0.014443782, 0.009269789, 0.018078461, -0.010544639, 0.0075406036, 0.014118289, 0.019719493, -0.006208114, -0.0052485857, 0.026215805, 0.021658892, 0.015189705, -3.3137418E-5, 0.0054655815, 0.01188052, 0.015474512, -0.0063878135, 0.0065810755, -0.031057524, -0.023177864, 0.025320696, 0.025632627, -0.035126194, 0.011175283, 4.00086E-4, -0.009229102, -0.014321722, 0.005930088, -0.008639145, -0.0066488865, -0.0022784558, -0.019651681, 0.0134876445, -0.004268714, -0.03298336, 0.011677086, -0.012755284, 0.0112702185, -0.014999834, -0.0149184605, -0.013270649, -0.017807217, -0.0027107522, 0.01740035, -0.025374945, -0.016939234, 0.008937514, 0.02302868, -0.001073112, 0.020899408, -0.01018524, 0.016600179, 0.0082797455, -0.037675895, -0.023232112, 0.0053265686, -0.030352287, -0.0033295292, 0.018376831, -0.0035058383, 0.015759319, -0.01121597, 0.017413912, -0.008761205, 0.006360689, -0.007208329, -0.016884984, 0.033010487, 3.5622064E-4, 0.013046872, 0.018634513, 0.015705071, 0.0035973834, -0.005123135, -0.016559491, -0.007547385, -0.019678807, -0.011039661, -0.007255797, 0.0043907743, 0.0017986917, -0.014932023, -0.030270914, -0.031084647, -0.004275495, 0.009486785, -0.002024164, 0.019380437, -0.010388673, 0.01455228, 0.014647216, -0.018444642, 0.0018868463, -0.0024157735, -0.012748503, 0.020560352, 0.027192285, -0.005713092, 0.036401045, -0.005424895, -0.022757433, -0.003388864, 0.02395091, -0.0062589725, 0.012626443, -0.019678807, -0.008483179, -0.010781978, -0.01963812, 0.0067370413, -0.0038109885, -0.01933975, 0.006631934, -0.02509014, 0.0015469426, 9.976721E-4, -0.001430816, -0.008645926, -0.025307134, 0.007927127, -0.00927657, 0.008300089, 0.021848764, -0.012273825, 0.015284641, -0.010910819, -0.005058714, -0.0033363104, -0.023449108, -0.026215805, -0.0054113325, 0.03263074, 0.0028022972, 0.051970493, -0.0076558827, 0.028806191, 0.018715886, 0.012470477, 0.030596407, -0.029972544, -0.011127816, -0.019380437, 0.0030345505, 0.011853395, 0.030026793, 0.008401806, 0.001312994, 0.0055503454, 0.00981906, 0.008605239, 0.0141861, 0.005231633, -0.017020607, -0.026568422, 0.0041500446, -0.025659753, -0.018905759, -0.020207733, -0.01958387, 0.039357614, -0.0027056662, -0.009412193, 0.0012740026, 0.018783698, -0.008259403, 0.01649168, -0.01813271, 0.02964705, -0.02121134, 0.0013257087, -0.0180649, -0.02037048, 0.0049671694, -0.014620092, 0.012470477, 0.0040720617, -0.01097185, 0.0055266116, 0.025361383, -0.0065573417, -0.03819126, 0.023896663, -0.009737686, -0.011548244, -0.028100954, -0.0021496145, -0.023855975, -0.0039500017, 0.007282921, 0.0010290347, 0.005584251, -0.02443915, -0.04079521, 0.027965333, -0.0032328982, 0.037133407, 0.016654426, 0.04079521, 0.028155204, 0.0030345505, -0.023828851, 0.0055198306, 0.002831117, -0.0027175331, 0.021930138, 0.012334854, -0.015135457, 0.0023123615, 0.008110218, -0.015705071, -0.040768083, -0.028779067, 0.0283722, 0.025239322, 0.018281896, -0.028779067, 0.0044789286, -0.0180649, 0.018905759, -0.010890476, 0.018349707, 0.011100691, -0.02782971, -0.019597432, 0.0075948527, -0.005984337, 0.0037058813, 0.009683438, -0.037920013, 0.016044127, -0.0335801, 0.0047400016, -0.0022208162, -0.008286526, 0.037513148, -0.01297906, 0.01916344, 7.255797E-4, 0.01727829, 0.0035363534, -4.0559564E-4, -0.0038516754, 0.02788396, -0.009120604, 0.020804472, 0.011989018, -0.01000215, 0.008767987, 0.023476232, -0.021414772, -0.014633654, -0.028100954, -0.0034278554, 0.027911084, -2.5916588E-4, -6.7429745E-4, -0.002765001, -0.019204129, -0.009988587, 0.01036833, -0.0017096895, 0.014864212, -0.035451688, 0.0076830075, -0.0025666533, 0.013711422, -0.010090305, -0.0128298765, -9.510519E-4, 0.0024598509, 0.00884936, 0.0059029637, 0.001275698, -0.016111938, -0.015935628, -0.032169625, -0.025659753, -0.0067472127, -0.013657173, 0.007676226, -0.0104836095, 0.009852965, -0.010056399, -0.002953177, 7.853383E-4, -0.0035600872, -0.011961893, -0.008089874, 0.024330653, 0.0031905163, -0.0059029637, -0.005679187, 0.039981473, 0.0031006665, -0.004760345, -0.014701465, 0.009730905, 0.010164897, -0.023204988, 0.0073846383, -0.006601419, -0.025076576, -0.0015164276, 0.010253051, 0.02419503, 0.025483444, 0.0067404318, -0.036699414, 0.0052418048, 5.6579956E-5, 0.036401045, -0.005557127, 4.4797765E-4, 0.010198803, 0.019190565, 0.038896497, 0.027138036, 0.0017715673, -0.02625649, 0.013331679, -0.0046823625, -0.022160696, -0.010809103, 0.009140948, 0.008462836, 0.002588692, -0.007560947, -0.026812542, 0.0011163417, -0.027165161, -0.022526875, -0.0031125334, 0.021184213, 0.035695806, 0.018770136, 1.7969964E-4, 0.0014494641, 0.0039500017, 0.010510733, -0.012897687, -0.014837087, 0.022174258, 0.019434685, 0.016057689, 0.009541034, -0.042097185, -0.013114683, 0.016762925, 0.018905759, 0.014484469, 0.029131684, -0.019678807, -0.012931593, -0.00812378, -0.0020699364, -0.001197715, -0.009473222, 0.030813403, -0.033498727, 0.001012082, 0.005177384, 0.014023353, -0.004831547, 0.011168502, 0.014281035, -0.008774768, -0.0028345075, 0.007716913, -0.023137176, 0.005523221, -0.029674174, 0.015800007, 0.009066355, 0.0020106016, 0.020560352, 0.016871423, -0.008456055, 0.008829016, -0.008286526, 0.0062047234, -0.015542324, -0.0069269123, 0.006977771, 0.02049254, -0.03553306, 0.016464556, -0.031817008, 0.009683438, -0.0024412028, -0.0048790146, -0.010598889, 0.032712117, 0.008571334, -0.06471899, -0.0010892171, -0.004038156, 0.009493566, -0.009588501, 0.00351601, -0.02297443, -0.005218071, -0.0029633488, 0.004662019, -0.01315537, -0.02891469, 2.7145667E-4, -0.012863782, -0.017196916, 0.014932023, 0.18705037, -0.0047264397, 0.014742152, 0.045813236, -0.0022394643, 0.011432966, 0.029321557, 0.020044986, -0.012619661, 0.016830737, -0.0138809495, 3.1659348E-4, 0.0065878564, 0.0019953442, 0.019299064, -0.030053917, -0.02763984, -0.025808938, -0.018593827, -0.021794515, -0.007038801, 1.5988605E-4, -0.004075452, -0.013263868, -0.003716053, -0.0060351957, -0.01000215, 0.012918031, 0.01976018, 0.004675581, -0.006855711, -0.027260097, -0.00110617, 5.895335E-4, -0.020872284, -0.020641726, -3.5219433E-4, 0.0052214614, 0.0174546, -0.004048328, 0.0069201314, -0.02302868, -0.005231633, -0.025795374, 0.010904038, 0.015705071, -0.030026793, -0.006330174, -0.016695114, -0.00448571, -0.04839006, -8.133104E-4, 0.01976018, 0.027761899, -0.0048044226, -0.007045582, 0.0046654097, -0.0052994443, -0.008964639, 0.009812279, 0.013982667, 0.029213058, -0.01624756, 0.0070794877, -0.011975455, 0.009737686, -0.026446363, -0.005485925, 0.009113823, -0.046220105, -0.010354768, -0.029782673, -0.009778373, 0.013501207, 6.111483E-4, -0.012131421, 0.011351593, 0.005713092, 0.019068506, 0.012890906, -0.0321425, -0.01249082, 0.015013397, -0.01509477, -0.019407561, -0.017902153, 0.022526875, -0.020167047, -0.0011205799, -0.015108332, -0.01443022, -0.017563097, -4.810356E-4, -0.0015935629, -0.010788759, -0.0022259022, 0.022323443, 0.017142668, -0.01170421, -0.0046789716, -0.025551254, 0.032576494, 0.027748337, -0.013704641, -0.024900267, -0.0283722, 0.0036143363, -0.0042449804, 0.03808276, -0.025903873, -0.015610135, -0.00703202, -0.0036482417, -0.016817175, -2.1975063E-4, 0.01891932, 0.001339271, -0.010795541, 0.03922199, -0.01018524, 0.013196057, -0.018214084, 0.022743871, 0.018770136, -0.0038415038, -0.03176276, -0.04456551, 0.01218567, 0.0038516754, -0.028751943, 0.016681552, -0.028399324, 0.0075066984, 0.008862922, 0.004699315, 0.0020512883, 0.02091297, 0.0030871043, 0.0024479837, -0.01146009, -0.0037669113, -0.005407942, 0.01588138, 0.0023920396, -0.015108332, -0.027612714, 0.010266613, -0.005930088, -0.010965069, -0.03843538, -0.021740265, -5.1833177E-4, 0.0129587175, 0.0055605173, 0.042639673, -8.7222137E-4, -0.022120008, -0.03292911, -0.009134167, 0.02302868, -0.033498727, 0.01813271, 0.014172538, -0.019258376, -0.0283722, -0.008150904, -0.17403063, 0.02321855, 9.773287E-4, -0.030325161, 0.013867388, 0.013630048, 0.023720352, 0.011256657, 0.0025530912, -0.022554, 0.024778208, 0.003400731, -0.054954186, -0.02121134, 0.0058826203, -0.009629188, -0.01588138, 0.027748337, 0.038109887, -0.008028844, 0.04079521, -0.006133522, -0.008544209, -0.0031684777, 0.015040521, 0.0034295507, 0.022879494, -4.8442616E-4, 0.0022411598, -0.003563478, -0.032034002, -0.0048891865, -0.004648457, -0.009954682, -0.02121134, 0.0011392279, -0.013772451, -0.0129587175, -0.004862062, -0.01146009, 0.0321425, 0.003438027, 0.025144387, 0.009866527, 0.0064522345, 0.02479177, 0.033986967, -0.029077437, 0.0053265686, -0.00721511, -0.007676226, -0.036943533, 0.018037776, 0.006069101, -0.0100970855, 0.004014422, 0.0033719111, 0.006238629, 0.013914855, 0.0031667824, -0.03873375, -0.009296914, 0.00618438, -0.014701465, -0.002873499, -0.029619927, -0.024167906, 0.002242855, -0.03455658, 0.019204129, -0.019868677, 0.023937348, 0.020139921, -0.0049264827, -1.4134395E-4, -0.014592967, -0.03515332, -0.0015350757, -0.011548244, 0.030406535, -0.019990737, 0.047739074, 0.0027310955, -1.3509259E-4, -0.004953607, -0.010049618, 0.002927748, -0.006208114, 0.014131851, -0.009107042, 8.628973E-4, -0.030813403, -0.038842246, 0.007771162, 0.001915666, 7.62452E-4, -0.0015257517, 0.0200043, 0.004638285, -0.010870133, 0.0060894443, -0.0068591014, -0.019800866, 0.028290827, 0.02419503, 0.008069531, 0.0036991, 0.01830902, 0.013426615, 0.008890047, -0.025849624, 0.011473653, 0.020831596, 0.011961893, -0.0066353246, 0.004055109, -0.014158975, -0.036401045, 0.0032125548, 0.027138036, 0.051970493, -0.011853395, -7.6711405E-4, -0.02248619, -0.0021326619, -0.0091816345, -0.083489135, 0.017441036, 0.019516058, 0.038598128, -0.0075948527, 0.04019847, -0.0070116767, 0.013440177, -0.02164533, 0.030325161, -0.004065281, -0.018512454, 0.018363269, 0.0029023187, 0.011853395, 0.0013765671, -0.0047739074, -0.013826701, -0.020695973, 0.015243954, -0.0018631123, -0.005892792, -0.0078864405, -0.018932883, -0.020885846, 0.019922927, -0.030026793, 0.024561211, 0.01291125, 0.0023293141, 9.374896E-4, -0.025185075, 0.002564958, -0.032657865, -0.029511428, -0.023611855, -0.023394858, -0.015528762, 0.0039194864, -0.046165854, 0.009378287, 0.014633654, 0.010578545, -0.026581984, -0.002298799, 0.0074117626, -0.035370313, 0.02188945, -0.0035906022, -0.015149019, -0.004702706, -0.014375972, -0.025415633, -0.010456485, 0.011290562, 0.010734511, 0.02424928, 0.00715408, -0.012999404, -0.016979922, -0.007845754, -0.0072897025, -0.016762925, 0.013623267, 0.011738116, 0.023394858, -0.0065573417, -0.012382322, 0.008218716, -0.03037941, -0.03390559, 0.03363435, -0.040659588, -0.0052892724, -0.01327743, 0.0022767605, -0.036455292, -0.011127816, 0.022092884, -0.033688597, 0.012043267, -0.026975289, 0.017956402, -0.014091164, 0.01485065, 0.015854254, 8.150057E-4, 0.015677946, 0.004892577, -0.046952464, 7.2430825E-4, 0.026351426, -0.0044416324, 0.02224207, -0.008191591, 0.018810824, 0.018051337, -0.001221449, -0.0071133934, 1.6200516E-4, -9.391849E-4, -0.010463266, -0.07312758, 0.023042241, -0.021740265, -0.011548244, -0.017183354, -0.013114683, -0.00497056, -0.0053875986, 0.0011765241, 0.01794284, -0.013446958, 0.014945585, -0.012477258, -0.004082233, -0.007310046, 0.003134572, 0.0013960628, 0.0017936059, -0.0012434876, -0.0028531556, -0.0055706888, 0.018227646, 0.010883695, 0.015135457, 0.008890047, 0.023042241, 0.0014562452, 0.0044891005, -0.021726703, -0.02066885, 0.039601732, -0.022214944, -0.008096656, -0.004075452, -0.00715408, -0.02049254, -0.002826031, -0.003097276, 0.017441036, 0.007255797, -8.968029E-4, -0.027327908, -0.0048722336, 5.323178E-4, 0.0027751727, 0.010754854, -0.011602494, 0.0065980284, 0.01497271, 0.012694254, 0.027734775, 0.008327213, -0.012165327, -0.017725844, 0.03170851, -0.013040091, 0.059077106, 0.0041669975, 0.017495286, -0.023733916, 0.033661474, 0.01394198, 0.01872945, -0.03279349, 0.009825841, -8.069531E-4, 0.0057029207, -0.0069574276, 0.011616056, -0.021563957, -0.009927558, -0.009785154, 0.011683867, 0.031247394, 0.016383182, 0.018051337, -0.008218716, 0.008096656, 0.0033685206, 0.015542324, 0.023910224, -0.013684297, -0.025008766, 0.0258225, -0.004065281, 0.01558301, -0.002115709, 0.011989018, 0.006943865, 0.009507128, -0.011839833, 0.003449894, 0.013162151, -0.0030481128, 0.018051337, 0.010219146, -0.011887301, -0.0104836095, -2.6128496E-4, 0.03618405, -0.0034227695, 0.0023547434, -0.0038652376, -0.0053333496, -0.022689622, 0.011927987, -0.021862326, -0.020763785, 0.016017001, 0.012097515, 0.021672456, 0.011073567, -0.018349707, 0.007723694, -0.036211174, 0.0022411598, 5.920764E-4, -0.013284211, -0.010476829, 0.03279349, 0.012795971, 0.003899143, 0.048471436, -0.014091164, 0.057178393, 0.013318117, 0.008408587, -0.026351426, -0.0040279846, -0.0017529192, 0.0033091858, -0.0083679, -0.02777546, 0.0025022328, -0.010239489, -4.3950125E-4, 0.011670305, 0.023232112, -0.0027717822, 0.08826304, 0.01946181, -0.004387384, 0.024222156, -0.020451853, 0.016152624, 0.009852965, 0.017115543, -0.023611855, 5.374036E-4, 0.012104296, -0.007208329, 0.0054825344, -0.03892362, 0.011710992, -0.014172538, 0.01776653, 0.024900267, -0.009995368, -0.018878633, -0.005251976, -0.011080348, 0.009629188, 0.021360524, -0.0020580695, -0.010829446, 0.020546788, 9.222321E-4, 0.0021021469, -0.02552413, -0.0020258592, -0.0321425, 0.001546095, -0.0086594885, 0.024534088, -0.008130562, -0.018620951, 7.421087E-4, 0.027558466, 0.0060114614, -0.024642585, 0.013623267, -0.012239919, -0.0038415038, 0.020953657, -0.008340776, -0.009391849, -0.029077437, -0.01891932 ], + "id" : "0f094274-a4ef-4b69-a694-28861b15f465", + "metadata" : { + "source" : "movies.csv" + } + }, + "1e9f1c13-30a3-4e2f-b629-61fe593cc97c" : { + "text" : "4,6097,Travis Fimmel-Paula Patton-Ben Foster-Dominic Cooper-Ben Schnetzer-Toby Kebbell-Robert Kazinsky-Clancy Brown-Ryan Robbins-Daniel Wu-Anna Galvin-Callum Keith Rennie-Ruth Negga-Burkely Duffield-Dean Redman-Glenn Ennis-Terry Notary-Elena Wurlitzer-Michael Adamthwaite-Anna Van Hooft-Callan Mulvey-Adrian Glynn McMorran-Kyle Rideout-Michael Antonakos-Elisabeth Rosen-Patrick Sabongui-Kent O'Connor-Wesley MacInnes-Mackenzie Gray-Christian Sloan-Val��rie Wiseman-Dan Payne-Eugene Lipinski-Christina Jastrzembska-Travis MacDonald-Frank C. Turner-Tommy Rieder-Dylan Schombing-Donavon Stinson-Meelah Robbins-One Take Charlie-Glenn Close-Trevor Mack-Joel Sturrock-Raj Lal-Donnie MacNeil-G. Michael Gray-Michael Patric-Jill Morrison,video game-elves-orcs-magic-chase-based on comic-world of warcraft-sorcerer-fictional war-based on video game-wizard-fictional language-live action and animation-muscles-orc-sword and sorcery,/nZIIOs06YigBnvmlJ2hxZeA8eTO.jpg,/riaO9lEYnzlmkILiLG3Y6HtJaM3.jpg,246655-308531-47933-121856-278927-205584-290595-258489-188927-297761-291805-271110-153518-209112-37141-311324-257344-9543-43074-330459-302699\r\n316029,The Greatest Showman,Drama,en,The story of American showman P.T. Barnum founder of the circus that became the famous traveling Ringling Bros. and Barnum & Bailey Circus.,47.741,Chernin Entertainment-20th Century Fox-TSG Entertainment,12/20/17,84000000,432800000,105,Released,The impossible comes true.,7.9,9033,Hugh Jackman-Zac Efron-Michelle Williams-Rebecca Ferguson-Zendaya-Keala Settle-Yahya Abdul-Mateen II-Natasha Liu Bordizzo-Paul Sparks-Sam Humphrey-Austyn Johnson-Cameron Seely-Eric Anderson-Ellis Rubin-Skylar Dunn-Daniel Everidge-Radu Spinghel-Yusaku Komori-Danial Son-Will Swenson-Linda Marie Larson-Byron Jennings-Betsy Aidem-Damian Young-Tina Benko-Fredric Lehne-Kathryn Meisle-Timothy Hughes-Gayle Rankin-Arnie Burton-Carly Adams-Sawyer Niehaus-Shuler Hensley-Will Erat-James Andrew O'Connor-Jamie Jackson-Morgan Weed-Henry Stram-Michael Barra-Luciano Acuna Jr.", + "embedding" : [ 0.008918078, -0.03334468, -0.0041579353, -0.040679425, -0.029880295, 0.050964307, -0.013938725, -0.00870832, -0.014913082, -0.02437247, 0.022965064, 0.037377436, 0.024588993, 0.0103999125, 0.018796979, 0.01588744, 0.011096849, -0.0063671554, -0.0036572237, -0.027282009, -0.0059171915, 0.0035794105, -0.015440859, 0.014642428, -0.007118223, 0.0183098, 0.025603948, -0.0067291562, -0.013661304, -0.0050612455, 0.009087237, -0.01993373, -0.004706011, -0.039786264, -0.009276695, -0.009560883, 0.012044141, -0.02353344, 0.030069754, 0.006235211, 0.009560883, 0.014520633, -0.0023952955, -0.012619282, -1.0101981E-4, 0.0022498185, 0.005998388, -0.0056397705, -2.8994958E-5, 0.027133148, 0.021571191, 0.02176065, -0.008850413, -0.026632437, 0.0019470233, 3.7056456E-5, -0.016740002, -0.004323711, -0.008518862, 0.0075309714, 0.00603222, -0.014615362, -0.024643125, -0.012050907, -0.026050529, -0.013099695, -0.005697285, -0.012247132, -0.006671642, 0.02028558, 0.025130304, 0.005375882, 0.016496412, -0.00495975, 0.035401653, -0.03602416, -0.02545509, -0.00648895, -0.005159358, 0.0021618556, -5.5188214E-4, -0.009296994, -0.01320119, 0.020664498, 0.008721853, 0.007896355, -0.009662379, 0.03004269, -0.044928703, 0.0053521995, 0.013113228, 0.0457948, -0.0042560473, 0.0038365326, 0.022044837, 0.017768491, -0.008410599, 0.022518484, -0.026605371, -0.03499567, 0.002950138, 4.0682807E-4, -0.0074024103, -0.016009234, -0.00619123, -0.013586873, 5.201648E-4, -0.0019301074, 0.02028558, 0.020299114, 0.013160592, -0.010183388, 0.012003543, -0.028229302, -0.019771338, -0.008938377, 0.030665195, -0.029176593, -0.019554812, -0.031260636, 0.03483328, 0.029230723, 0.0079301875, -0.03751276, 0.034860346, 0.048934396, -0.0059307246, -0.018715782, 0.016699404, -7.4303214E-4, 0.018296268, -0.0111780455, 0.016131029, 0.013952257, -0.02265381, 0.04238455, -0.024440132, 0.0063874545, -0.028472891, -6.708223E-5, 0.03902843, 0.02709255, -0.027173746, -0.018296268, -0.02403415, 0.017768491, 0.01609043, -0.0038602147, 0.009073704, 0.0148048205, 0.017335443, 0.026388848, 0.027769187, 0.02101635, 0.011577262, -0.008011384, -0.0020654348, -0.009797705, 0.0050206473, -0.024629591, -0.014006388, 0.00855946, -0.01253132, -0.016496412, -0.00366399, 0.018607521, 0.020447973, -0.013532743, -0.011868215, 0.002691324, -0.004025991, 0.026226455, -0.029609641, 0.023668766, -0.0142229125, 0.012260665, -0.0072264844, -0.02812104, -0.04341304, -0.007903121, 0.010846493, 0.002999194, 0.030854654, 0.042546943, -0.003917729, 0.00725355, 0.01948715, -0.020556236, -1.0942491E-4, -0.0076054013, 0.007747495, 0.003917729, 0.014128183, -0.0067663714, -0.62705314, -0.0063637723, 9.895818E-4, 0.004306795, 0.008897779, 0.01558972, 0.016699404, -0.017795557, -0.043115318, -0.016306955, -0.028039843, 0.01801208, 0.026686568, -0.024656657, -0.011475766, -0.023276318, 0.007016727, -0.026172323, 0.002513707, -0.0051864237, -0.03350707, 0.023628168, 0.018580455, -0.0012137179, 0.015806243, 0.0070099607, -0.011881748, -0.0075783357, 0.014439437, -0.00732798, -0.016983591, 0.032884564, 0.004611282, 0.008769217, 0.03626775, -0.006326557, -0.012050907, 0.05442869, 0.013322985, 0.035158064, -0.03307402, 0.0071520545, 0.003718121, -0.0067934366, -0.013600406, 0.028093973, -0.0036098592, 0.008288804, -0.0062994915, -0.008315871, 0.013092929, -0.0037824016, -0.02239669, -0.013586873, -0.0023733047, -0.0013321294, 0.013613939, -0.045388818, 0.022247829, -0.0010724699, -0.033940118, 0.013444779, 0.0029805866, 0.007118223, -0.004283113, 0.02487318, -0.0022836502, 0.0021161826, 0.009662379, -0.021503529, 0.0033155219, 0.005521359, -0.007903121, 0.0030753158, 0.016198693, 0.007361812, 0.022329025, -0.0059171915, -0.015630318, 0.01573858, -0.0063840714, -0.005971323, 0.019879598, 0.016076898, 0.025685145, 0.016496412, -0.041572586, 0.017592566, 0.0051695076, -0.0028401844, 0.010575838, 0.02086749, 0.012233599, 0.02146293, -0.0074497745, -0.0021804632, 7.416577E-5, 0.0074294754, 0.016888862, -0.05640447, -0.00641452, -0.017132452, 0.040652357, -0.01573858, 0.031504225, 0.017673763, -0.01549499, -0.002571221, 0.038703643, -0.013539509, -0.001977472, 0.0047499924, -0.015224336, 0.0050409464, 0.005683752, -0.03272217, 0.013377116, 0.02239669, -0.011293073, -0.0066039786, 0.008532394, 0.0037857848, 0.010163089, -0.01751137, 0.0075309714, 0.03483328, -0.009966865, -0.006559997, 0.014344707, 0.018769914, 0.0041274866, -0.00481089, 0.018052679, -0.012057673, 0.00786929, 0.013255321, 0.024927313, -0.006357006, 0.0021195658, 0.002342856, -0.017687295, -0.012544853, -0.009384957, -0.015332597, 0.0038737475, -0.011029185, -0.031017046, 0.0020113038, -0.008525628, -0.011117148, -0.00855946, 0.016712938, 0.0053894147, 0.0012433208, 0.010440511, 0.00259152, -0.014967213, -0.023546971, 0.012558385, -0.041085407, 0.016509946, 0.015725046, -6.9651334E-4, -0.021205807, 0.014209379, -0.0072197183, -0.022017771, -3.0891392E-6, -0.0013862603, -0.0017457238, 0.029961493, -0.020772759, 0.0072873817, 0.011293073, -0.014101118, 0.017484304, -0.012348628, 0.030259212, -0.003917729, 0.007916654, -0.010433745, -0.0183098, -0.027769187, -0.011435168, 0.03266804, 0.022694409, 0.013032031, -0.010102192, -0.008505329, 0.0067934366, -0.02278914, -0.006593829, -0.0068408013, -0.012585451, 0.0037485696, 0.028743545, -3.9118083E-4, 0.005592406, -0.001707663, -0.022423754, 0.026916625, 0.020299114, 0.019649543, -0.0049834326, 0.0117396545, -0.025644546, 0.009878902, -0.027593262, 0.016591143, -0.004371076, 0.02550922, -0.012186235, -0.018445129, 0.017091854, 0.009060171, 0.020028459, -0.003095615, 0.008958676, -0.0068441844, 0.0059374906, 0.0079301875, -0.017538434, 0.020637432, 0.021178743, -0.032992825, 0.002513707, 0.011962945, -0.01122541, 0.004536852, -0.0074024103, -0.01090739, 0.010102192, 0.005213489, 0.0125042545, -0.0037891679, -0.02467019, 0.015914505, -0.024643125, 0.04268227, -0.014669493, 0.0019520981, 0.01885111, 0.022301959, -1.5964407E-4, 0.012788442, -0.007828692, -0.008478263, 0.021449396, 0.003290148, 0.03004269, -0.0050781616, 0.04671503, -0.0025746042, 0.0053691156, 0.009878902, -0.0056769857, -0.010873559, -0.0012247132, 0.022356091, 0.029880295, 0.022098968, -0.021449396, 0.029988557, -0.0058968924, 0.019663075, 0.0019960795, -0.012768143, -0.016063366, -0.0037248873, -0.033940118, -0.014750689, -6.584657E-6, 0.011956178, 0.01465596, -0.010244286, -0.023560505, -0.00550106, 0.010278118, 0.009012806, 0.020272048, -6.969362E-4, -0.02724141, 0.01885111, 0.030421605, -0.0058461446, -0.016645273, 0.0020299114, -0.0060254536, -0.058840364, -0.028554088, -0.008214375, 0.03218086, -0.022721475, 0.0031937272, -0.002114491, 0.012558385, 0.018133875, -0.012747844, 0.019839, 0.016103964, -0.0153596625, 0.015170204, -0.012991433, -0.0029822781, 0.014710091, -0.027295541, -0.019893132, 4.5292397E-4, -0.015846841, 4.4488892E-4, 0.00986537, -0.0020908087, -0.04671503, 0.013735734, -0.009838304, -0.0026811745, -0.0063908375, -2.7657542E-4, 0.019081168, -0.016171627, -0.019284159, -0.018675184, -0.023357514, -0.008600058, 0.06392868, 0.042465746, 0.012788442, 0.013749266, -0.02353344, 0.008370001, -4.8464135E-4, -0.010467577, -0.0020874254, -0.021422332, 0.031071177, -0.030123886, 0.022234296, -0.0014894474, 0.016807666, -0.015968636, -0.0031260636, -0.0070640915, -0.013681603, 0.0046721795, -0.018607521, -0.013525976, 0.015089008, 0.03753983, 0.01337035, -0.012822273, 0.010717932, 0.017754959, 0.004722927, 0.0151837375, -0.0043812254, -0.004080122, 0.014087585, 0.023208654, -0.0048548714, 0.0011063017, 0.017213648, 0.00747684, 0.028499955, 0.0041816174, -0.018323334, 0.009818004, 0.013119994, -0.008593291, 0.015237868, -0.015278466, -0.02634825, 0.033669464, 0.031368896, -0.02531976, 0.021043414, 0.01954128, -0.010440511, -0.010454044, 0.019013504, -0.010677334, -0.0056194714, -5.7091255E-4, -0.017633164, 0.00801815, -0.0017913968, -0.032099664, -0.0019994627, -0.010379613, -0.00632994, -0.009493219, -0.02448073, -0.01014279, -0.0043270946, 0.0034051763, 0.011049484, -0.026077595, -0.0042222156, -0.00122133, 0.016225759, -0.011935879, 0.026361782, -0.0111645125, 0.015170204, 0.014439437, -0.02112461, -0.023993552, 0.006962596, -0.018824045, 0.001786322, 0.0029315304, -0.003427167, 0.021963641, -0.011083316, 0.004618048, -0.004597749, 0.0067223897, -0.021801248, -0.008403833, 0.054455757, 0.022721475, 0.008769217, 0.0236823, 0.009161667, 0.00794372, 0.013641004, -0.03640308, -0.008775984, -0.015711514, -0.020488571, -0.013309453, 0.005291302, 0.0027640627, -0.0213682, -0.035807636, -0.024196543, -0.014777754, 0.0024071366, 0.003041484, 0.023574037, -0.0057717147, 0.010677334, 0.007909888, -0.009675911, 0.0013617323, -0.005301452, -0.013728967, 0.02073216, 0.01820154, -0.015413794, 0.022775605, -0.010149557, -0.016645273, -0.0019267242, 0.033046957, 0.0067663714, 0.011881748, -0.016970059, -0.0012999891, -0.018661652, -0.02250495, 1.5139756E-4, 0.00397186, -0.018566923, 0.031314768, -0.02640238, 0.0049259183, 0.010772063, 0.010196921, 4.8210396E-4, -0.031098243, 0.016740002, -0.012355394, -9.574415E-4, 0.026916625, -0.0012044141, 0.0206239, -0.0206239, 0.0098315375, -0.016469348, -0.036836125, -0.010765296, -0.016740002, 0.035455786, 0.010650269, 0.032992825, 0.0013101386, 0.012686946, 0.014831886, 0.010914157, 0.03572644, -0.0320726, -0.021503529, -0.02906833, -0.003829766, 0.005504443, 0.03675493, 0.002288725, 0.0030634745, 0.010880325, 0.023763496, -0.0024172862, 0.021422332, -0.006468651, -0.010839727, -0.024358936, -0.007598635, -0.029772034, 6.922844E-4, -0.018593987, -0.0033205966, 0.027769187, 0.012395992, -0.008403833, -0.016361086, 0.017213648, -0.012917003, 0.0106841, -0.02092162, 0.022883868, -0.019839, -0.01717305, -0.021625323, -0.010420212, 0.0071520545, -0.005071395, 0.020393843, -0.002928147, -0.02379056, -0.026618905, 0.03832473, -0.0058596777, -0.038243532, 0.031504225, -0.017145984, -0.011881748, -0.025671612, -0.0066276607, -0.019649543, -0.015210803, 6.9143856E-4, -0.0084917955, 0.0031226804, -0.010602904, -0.046525568, 0.025346827, -0.0032427835, 0.03237032, 0.03242445, 0.049232118, 0.012375693, 0.01228773, -0.017132452, 0.0011139138, -9.5659576E-4, -0.00404629, 0.025766341, 0.016861796, -0.012686946, 0.0058258455, 0.008451197, -1.7687718E-4, -0.04850135, -0.033480003, 0.033615332, 0.028364629, 0.019947262, -0.025225032, -0.0012754609, -0.029934427, 3.7193898E-4, -0.009337592, 0.0021500145, 0.018810512, -0.031639554, -0.04081475, -0.010562305, -0.009425555, 0.007382111, 0.01732191, -0.03943441, 0.010054828, -0.015752112, -0.0063637723, -0.0039820094, -0.00732798, 0.033967182, -0.019433018, 0.012761376, 0.01627989, 0.015251401, 0.017497836, -0.006817119, 0.0067291562, 0.031368896, -0.008667721, 0.017010657, 0.0043304777, -0.0075174384, 0.014466502, 0.0049428344, -0.01129984, -0.013546275, -0.021801248, -0.0086880205, 0.041085407, -0.010332249, 0.006600595, 0.014723624, -0.008985741, -0.008755685, 0.0060592853, -0.012003543, 0.013004965, -0.035103936, -0.0020671263, -0.0055822562, 0.006685175, -0.0029450632, -0.0061506317, -8.496025E-4, 0.008816582, 0.00263381, -0.0072873817, 0.0027082402, -0.01609043, -0.014926615, -0.051153768, -0.019825468, -0.022383155, -0.010068361, 0.009966865, -0.010426978, -0.0069964277, 0.00427973, 0.0022616596, 9.5913315E-4, 0.0034001016, -0.026767764, -0.0071520545, 0.024223609, -0.008275272, -0.008586525, 0.0071317554, 0.026564773, 0.01359364, -0.019121766, -0.012395992, 0.012010309, 0.026091127, -0.024331871, 0.018837577, 0.013627471, -0.021774182, -0.004733077, 0.033588268, 0.011915579, 0.014263511, -0.00969621, -0.03123357, -0.00550106, -7.6121674E-4, 0.044035543, -0.001217101, 0.014236446, 0.022680877, 0.02008259, 0.038866036, 0.019189429, -0.008918078, -0.026713634, -0.0043575433, -0.0018015463, -0.017579032, -0.0038703643, -0.0077880933, 0.015170204, 0.013715435, -0.013911659, -0.032451518, 0.013113228, -0.023831159, -0.02798571, 0.005467228, 0.009181966, 0.025779875, 0.0114487, -6.9016987E-4, 0.008674488, 9.2107226E-4, -0.0100277625, -0.016117496, -0.026036996, 0.022477886, 0.008356469, 0.02038031, 0.008525628, -0.026023464, -0.008911311, 0.025631014, 0.02092162, 0.024805518, 0.022193698, -0.023668766, -0.010616437, -0.011266008, 0.010284884, -0.011184812, -0.013011732, 0.037566893, -0.02086749, -0.012206534, 0.010947988, 0.019690141, -0.004137636, 0.0125110205, 0.021544127, -0.0042492812, -0.007673065, 0.0051492085, -0.03193727, -0.008254973, -0.035564046, 0.03015095, 0.002334398, 0.001727962, 0.03266804, 0.024629591, -0.011083316, 2.4380081E-4, -0.0040902714, 0.0019233411, -0.014317642, 3.6136652E-4, 0.0142229125, 0.030638129, -0.02304626, 0.008830114, -0.016712938, -0.011902047, -0.0049665165, -0.005064629, 0.00473646, 0.034562625, -0.0020586685, -0.040408768, -0.0024849498, -0.028878873, 0.010244286, -0.0064077536, 0.0069050817, -0.029988557, -3.9118083E-4, -0.0096488455, 0.0052946857, -0.030719325, -0.03093585, -0.004144402, -0.0059645562, -0.01558972, 0.017091854, 0.18566923, -0.015725046, 0.005998388, 0.04603839, -0.004936068, 0.023709364, 0.01885111, 0.020637432, -0.011401336, 0.004303412, 0.0027285393, 0.010318716, 8.940068E-4, 0.0067460723, 0.012132104, -0.017524902, -0.025942268, -0.032586843, -0.020948686, -0.024237141, 0.002762371, -0.005487527, 0.0016636816, -0.022883868, 0.012389226, 0.005382648, -0.012571918, 0.012856105, 0.015305532, 0.016685871, -0.0043304777, -0.020244982, -0.0038365326, -0.0021753884, -0.021395266, -0.0083023375, 0.012869638, 0.0031734281, 0.023844693, 0.014534165, 0.0024325105, -0.011935879, -0.008363235, -0.004756759, 0.018580455, 0.008911311, -0.021584725, -0.006194613, -0.0137425, 0.0021889212, -0.040787686, -0.0035997096, 0.02896007, 0.017700827, -0.012653114, -0.00641452, 0.0055112094, 0.007490373, -0.013133527, 0.015305532, 0.010900624, 0.029772034, -0.009872136, 0.03261391, -0.016361086, 0.0052574705, -0.02531976, -0.007842224, -6.203917E-4, -0.021544127, -0.024467198, -0.021868913, -0.007185886, 0.006593829, -0.0035218962, -0.017348977, 0.0011172971, -0.0019876217, 0.012517787, 0.024805518, -0.030611064, -0.02467019, 0.013580107, -0.008065514, -0.0102172205, -0.018350398, 0.017497836, -0.012220066, -0.008972208, -0.014967213, -0.012375693, -0.013255321, -0.0054198634, -0.011800552, -0.009080471, -0.01396579, 0.031639554, 0.024155945, -0.022707943, 0.0047195437, -0.034968607, 0.03404838, 0.018336866, -2.2730778E-4, -0.0320726, -0.024007086, -0.002434202, 0.0074700736, 0.02812104, -0.014209379, -0.02092162, -0.020028459, -0.008816582, -0.009073704, 0.007801626, 0.025915202, 0.007821925, -0.012429824, 0.029744968, -0.012849339, 0.0023733047, -0.028093973, 0.029717902, -0.004996965, -0.0062216786, -0.029284855, -0.03142303, 0.008836881, -0.0074294754, -0.031450093, -0.0019047335, -0.022071904, -0.004367693, -0.01275461, 0.001803238, 0.0030008857, 0.008572992, -0.016361086, 0.009953332, 5.556882E-4, -0.009601481, -0.020407375, 0.016658805, 6.072818E-4, -0.009384957, -0.024656657, 0.010379613, -8.821657E-4, -0.020069057, -0.048582546, -0.020840423, 0.00550106, 0.011651691, 0.021232873, 0.056133814, -4.98597E-4, -0.00962178, -0.056566864, -0.016401684, 0.02817517, -0.038649514, 0.0069896616, 0.012700479, -0.0011849607, -0.022017771, 0.0019673225, -0.17202823, 0.02634825, -6.4153655E-4, -0.032532714, 0.00893161, 0.0018675184, 0.035699375, -0.0021077245, 0.0016712938, -0.025793407, 0.029799098, 0.012328329, -0.03829766, 0.010731465, 0.0013735733, 0.015779179, -0.018566923, 0.031206504, 0.033128154, -0.0015435785, 0.041166604, -0.0051864237, -0.011387803, -0.011320139, 0.0044759545, 0.0031598953, 0.030529868, -0.0035658777, 0.015562654, -0.0034982138, -0.0427364, -0.009209031, 0.007991085, -0.0015190503, -0.02467019, 0.0025306228, -0.0104134455, -0.035158064, -0.012483955, -0.006847568, 0.032018468, 0.0035557281, 0.020799825, 0.0032867647, 0.024304805, 0.01864812, 0.021422332, -0.02418301, 0.021287004, -0.014561231, -0.0183098, -0.035834704, 0.031152373, -0.0075512705, -0.02170652, 0.02457546, 0.017822621, -0.003186961, 0.0019182663, 0.009026339, -0.028364629, -0.015061943, 0.0062927254, -0.0049901986, -0.012551619, -0.017768491, -0.010176622, 0.006925381, -0.03158542, 0.011482532, -0.02812104, 0.011455467, 0.008566226, -0.0012348627, 0.012761376, -0.023073327, -0.029717902, 0.0014480035, -0.0056397705, 0.011137447, -0.015576187, 0.04149139, -0.006289342, 0.013546275, 0.0077001303, -0.006306258, 0.008728619, 0.008978975, -0.004100421, 1.4061366E-4, 0.017836155, -0.020840423, -0.037350368, 0.010961521, 0.00588336, 0.004685712, -0.015319064, 0.02161179, 0.02190951, -0.0236823, -0.013309453, -0.020190852, -0.016888862, 0.02793158, 0.029609641, 0.0057142004, 0.010196921, 0.023601104, 0.021638855, 0.0035794105, -0.009114302, 0.004097038, 0.01751137, -8.821657E-4, -0.011807318, 0.012091505, -0.008586525, -0.028093973, -0.0029602875, 0.020610366, 0.057757746, -0.0032004935, 0.0017795557, -0.011577262, -0.010386379, -0.0072197183, -0.094675064, -0.0018793596, 0.012741077, 0.036727864, -0.023127457, 0.0312877, -0.005064629, 0.013695136, -0.03182901, 0.027660925, 0.01914883, -0.027958646, 0.023208654, 0.010176622, 0.017579032, 0.0074497745, -0.017727893, -0.017782023, -0.010291651, 0.021895977, -0.007118223, -0.0037993174, -0.00473646, -0.01206444, -0.0206239, 0.023100391, -0.013045563, 0.024047684, 5.973437E-5, 0.008485029, 0.003410251, -0.025766341, 0.021151677, -0.040138114, -0.016821198, -0.029041266, -0.013194424, -0.034427296, -0.004594366, -0.047148075, 0.0017135835, 0.004228982, -0.003027951, -0.019202963, -0.019974329, -0.0070640915, -0.034968607, 0.020204384, -0.004232365, -0.021341136, 0.0036200087, -0.019378887, -0.03104411, -0.013553042, -5.2523956E-4, 0.022423754, 0.03320935, 0.019866066, -0.009459387, -0.019108232, -0.008985741, 0.0057784813, -0.020637432, 0.01948715, 0.009073704, 0.014168781, -0.003224176, -0.00932406, 0.010947988, -0.019324757, -0.020366777, 0.027498532, -0.02698429, -0.009290228, -0.023858225, 0.009520284, -0.024981443, -0.00511876, 0.019162364, -0.03477915, 0.0054435455, -0.030719325, 0.013600406, 0.0033679614, 0.0144123705, 0.014858951, 0.01648288, -2.0341403E-4, -0.011543429, -0.042465746, -0.018242138, 0.016942993, 0.007070858, -0.0025306228, -0.010115725, 0.012686946, 0.008004617, -0.0031497458, -0.012632815, -0.007984318, -0.017917352, 0.0030600913, -0.07275202, 0.03334468, -0.011198345, 0.0034626904, -0.0167806, 0.0047669085, 0.0030786989, 0.0032935312, -0.017822621, 0.015833309, -0.0073550455, 0.02284327, -0.005595789, -0.0014386997, -0.008674488, 0.004124103, 0.009540584, -0.0075918688, 0.007388877, 0.012774909, -0.017335443, 0.014277044, 0.012057673, -0.0096488455, 6.943988E-4, 0.009053404, 7.159667E-4, 0.005450312, -0.019960795, -0.017524902, 0.029176593, -0.016834732, -0.014764222, -3.9942734E-4, -0.014385305, -0.034860346, 0.0013701902, -0.0065870625, 0.0067020906, 0.003401793, -4.319905E-4, -0.016618207, -4.8760162E-4, -0.006343473, -0.010068361, -0.018147407, -0.018336866, 0.01199001, 0.009763874, 0.019622477, 0.01894584, 0.015968636, -0.008545927, -0.012991433, 0.022978596, -0.016063366, 0.051099636, 0.013410948, 0.01152313, -0.020258516, 0.022829738, 0.0034948308, 0.027390271, -0.023492841, 0.009953332, 0.0066987076, 0.012680179, 2.8778223E-4, 0.0057547987, -0.025915202, -0.015156671, 0.008139945, 0.014019921, 0.03404838, 0.01046081, 0.021422332, -0.00488532, 0.002160164, 3.9287243E-4, 0.025170902, 0.028256366, -0.0037451866, -0.035293393, 0.033128154, -0.0025323145, 0.0046518804, -0.0036944386, 0.011922346, 0.007598635, 0.0063705384, -0.01801208, 0.014777754, 0.006214912, 0.0057784813, 0.0091549, 0.019811936, -0.014574763, -0.001914883, 0.0059510237, 0.021300538, -0.005379265, -0.012490721, -0.0015638776, -0.0183098, -0.021977173, -0.011272774, -0.012646348, -0.012132104, 0.005595789, 0.02565808, 0.024548395, 0.008451197, -0.02265381, 0.0028029692, -0.039109625, 0.010988587, 3.2774612E-4, -0.002667642, -0.015562654, 0.02038031, 0.017687295, -0.0013152134, 0.024196543, -0.013925192, 0.054915868, -0.008715087, 0.017159518, -0.029826164, -0.00526762, 0.0050341804, -0.0018624436, -0.012626049, -0.027904514, 0.00419515, -0.0117464205, -0.0075715696, 0.020150254, 0.023546971, -0.011110381, 0.07702837, 0.019771338, 0.0018489109, 0.020772759, -2.0373121E-4, 0.01167199, 0.019365355, 0.022247829, -0.02437247, -0.001250087, -0.00619123, -0.010000696, 0.0052608536, -0.02649711, -0.0029636705, -0.0064788004, 0.009784173, 0.0045875995, -0.017240714, -0.008945143, -0.020759227, -0.009709743, 0.022816204, 0.01761963, -9.5469266E-5, -0.01504841, 0.02205837, -7.1300636E-4, -0.0036233917, -0.019297691, 0.0025898286, -0.032938696, -0.0060795844, 0.003992159, 0.029799098, -0.0073753446, -0.017470771, 0.011827617, 0.013032031, 0.0032884565, -0.019514214, -0.015034877, -0.016834732, -0.018363932, 0.035834704, 0.008701554, -0.0069219978, -0.033425875, -0.010332249 ], + "id" : "1e9f1c13-30a3-4e2f-b629-61fe593cc97c", + "metadata" : { + "source" : "movies.csv" + } + }, + "97e88f3d-f653-4a02-81d9-f9c95fd739b2" : { + "text" : ",88-595931-114-621-2005-245729-788-619-162-771-1033569-796-1824-10020-9354-634-380-879-795-856-9602\r\n812,Aladdin,Animation-Family-Adventure-Fantasy-Romance,en,Princess Jasmine grows tired of being forced to remain in the palace so she sneaks out into the marketplace in disguise where she meets street-urchin Aladdin. The couple falls in love although Jasmine may only marry a prince. After being thrown in jail Aladdin becomes embroiled in a plot to find a mysterious lamp with which the evil Jafar hopes to rule the land.,67.412,Walt Disney Pictures-Walt Disney Feature Animation,11/25/92,28000000,504050219,90,Released,Wish granted!,7.645,10174,Scott Weinger-Robin Williams-Linda Larkin-Jonathan Freeman-Gilbert Gottfried-Frank Welker-Douglas Seale-Brad Kane-Lea Salonga-Bruce Adler-Charlie Adler-Jack Angel-Corey Burton-Philip L. Clarke-Jim Cummings-Jennifer Darling-Debi Derryberry-Bruce Gooch-Jerry Houser-Vera Lockwood-Sherry Lynn-Mickie McGowan-Patrick Pinney-Phil Proctor-Hal Smith-Teddy Newton,magic-parrot-musical-tiger-sultan-flying carpet-wish-cartoon-princess-love-monkey-arab-aftercreditsstinger-genie-arabian nights-animal sidekick-magic lamp,/fhyun1mja3WwQsYr1a3x1x9BttP.jpg,/5OeY4U2rzePxWq2rkqMajUx2gz7.jpg,10020-10144-408-8587-11224-12092-9325-38757-11970-10882-12230-3170-10674-12-37135-425-10693-10530-953-808-10340\r\n635302,Demon Slayer -Kimetsu no Yaiba- The Movie: Mugen Train,Animation-Action-Adventure-Fantasy-Thriller,ja,Tanjiro Kamado joined with Inosuke Hashibira a boy raised by boars who wears a boar's head and Zenitsu Agatsuma a scared boy who reveals his true power when he sleeps boards the Infinity Train on a new mission with the Fire Hashira Kyojuro Rengoku to defeat a demon who has been tormenting the people and killing the demon slayers who oppose it!,438.335,ufotable-Aniplex-Shueisha-STUDIO MAUSU-TOHO,10/16/20,15800000,503063688,117,Released,\"With your blade, bring an end to the nightmare.\",8.", + "embedding" : [ 0.004522878, -0.039582036, -0.013061523, -0.016762061, -0.017077291, 0.022340277, -0.008216562, -0.03494951, -0.011087905, -0.035579976, 0.029878408, 0.025300706, 0.017762575, -0.0029227387, 0.004043179, 0.016076775, 0.024313897, -0.018913854, 0.019558022, -0.01666612, -0.005581643, -0.017680341, -0.03486728, 3.2807997E-4, -0.012465326, 0.010998817, 0.024368718, -0.016049365, -0.007366809, -0.012204918, 0.004392674, 0.0051738983, -0.006986476, -0.006636981, -0.021463113, -0.0070721367, 0.006335456, -0.039335333, 0.032208376, -0.0049648867, 0.006030504, -7.957867E-4, -0.024670245, -0.00703102, -0.0030735012, 0.023505261, 0.013541223, 0.007853361, -0.015898602, 0.04108966, 0.00257667, 0.030015463, -0.017488463, -0.04221353, -0.006606143, -0.0077094515, -0.018667152, 0.002374511, -0.005276691, 0.01892756, 0.019297613, -0.0058934474, -0.021476818, -0.029110888, -0.022559568, -0.013006701, -0.0118006, -0.012273447, -0.0040740166, -0.01372625, 0.036265258, 0.01021074, 0.0064725126, -0.015788956, 0.018530095, -0.025629643, -0.0303444, 0.0010887459, 0.0012146669, 0.0092650475, 0.010484854, -0.02283368, 0.0039438126, -0.010758968, 0.00903205, 0.028699718, -0.012198065, 0.013794778, -0.02815149, 0.006287486, 0.013993511, 0.025465174, -0.0024224808, 0.014569149, 0.008408441, -0.0024653112, -0.022970738, 0.028562661, -0.026328633, -0.034373872, 0.009429515, 0.001855408, -0.013095788, -0.0077368626, 0.0034966646, -0.0028970405, 0.0056433184, -0.012479031, 0.015857484, -0.0031471692, 0.0036148762, 0.0028165195, 0.030207343, -0.049888715, -0.017872222, -0.040102854, 0.015555959, -0.010601352, -0.003015252, -0.02834337, 0.009443222, 0.059811637, 0.012492738, -0.007449043, 0.039390158, 0.025273295, -0.0054103215, -0.00847697, -0.014171685, -0.01476103, 0.03670384, -0.0018399891, 0.02020219, 0.0076546287, -0.02875454, 0.047860272, -0.025204767, -0.011752631, -0.026013402, -0.02538294, 0.026547924, 0.02589005, -0.0039026956, -0.0075038658, -0.031413443, -4.065531E-6, 0.0073462506, -0.0063902787, 0.021860577, -0.0041459715, 0.03648455, 0.004694199, -0.01914685, 0.0036080233, 0.02140829, 0.0063080443, 0.010375208, -0.008497529, 4.9597473E-4, -3.6148762E-4, 0.0074284845, 0.0064622336, -0.008833318, -0.011478516, 0.0024259074, 0.022751447, 0.014116862, -0.0141031565, -0.0011264365, -0.0011538479, -0.013993511, 0.022573274, -0.02112047, 0.014582856, -0.0037176688, 0.015089966, 0.0134864, -0.01408945, -0.028562661, 0.003484672, -0.0046325237, -0.0010998817, 0.022052458, 0.023656024, -0.0202296, -0.007003608, 0.024108311, -0.0023316806, -0.0039849295, -0.021504229, 0.0010896025, 0.020065133, -0.0019907516, -0.011512781, -0.6319968, -0.03368859, -0.009833833, -0.013657722, 0.020942297, 0.016296066, -0.0068083024, -0.0029775614, -0.03470281, -0.012513296, -0.024738772, 0.021778343, 0.024272779, -0.02121641, -0.009758452, -0.008010977, 0.0129792895, -0.026040813, 0.027521027, 0.0021432275, -0.015446314, 0.0019068043, 0.0039609447, 0.013781073, -0.011266078, 0.0012009612, -0.009402105, -0.009121138, 9.6625125E-4, 0.002237454, -0.021243822, 0.024656538, 0.02789108, 0.013733103, 0.0361282, -0.006784317, -0.007120107, 0.05674156, 0.036895722, 0.034593165, -0.0346754, -0.019886957, 0.017310288, 0.010882319, -0.010971406, 4.8526714E-4, 0.03330483, -0.0014716486, 0.0042898813, -0.012492738, -0.0050334153, -0.002657191, -6.129014E-4, -0.020298129, -0.014637678, -0.0031505958, 0.014226507, -0.021860577, 0.035717033, -0.0063423086, -0.00787392, 0.021956518, 0.012595531, 0.010587647, -0.0054719974, 0.014843264, -0.0037176688, -0.0042042206, 0.008065799, -0.0042042206, 0.019982899, 0.0040328996, -0.016707238, 0.009011492, 0.0029861275, 0.012465326, 0.023368204, 0.0092719, -0.017707754, -2.2828543E-4, 0.003356181, 0.007640923, 0.002431047, -0.0020352951, 0.020380363, 0.00739422, -0.024601717, 0.0072160466, 0.004738743, -0.006222384, 0.021956518, 0.0069179474, 0.0036251554, -0.0074764546, 0.001012508, 0.0109577, -0.021613875, 0.0010955987, 0.0055576577, -0.06063398, -0.017927045, -0.019571727, 0.007497013, -0.0070515783, 0.030042876, -0.00393696, -0.0034007246, 0.0051190755, 0.030837806, -0.011314048, -0.0072845747, -5.983391E-4, -0.0063971314, -0.033003304, 0.0074421903, -0.03366118, 0.03311295, 0.013753661, 0.01784481, 0.0035189362, -0.0058214925, 8.437566E-4, 0.012636648, -0.01765293, -0.004591407, 0.033167772, -0.0014562297, 0.0014613693, 0.0072297524, 0.015501137, 0.01666612, -0.0021500804, 0.0020781255, -0.016981352, 0.011341459, -0.019804724, 0.013575487, 0.007407926, 0.028781952, -0.010820643, -0.028069256, -0.029850995, -0.016734648, -6.719001E-5, -9.739607E-4, -0.010183329, -0.013952394, 0.022271749, -0.0018759664, -0.007757421, -0.020065133, 5.323804E-4, -0.008339914, 0.026739804, -0.011540192, -0.0062189572, -0.0144457985, -0.0031300373, 0.017666636, -0.010553382, 0.017776283, 0.013808484, -0.018187452, -0.0024207677, 0.028041845, 0.00515334, 0.006784317, 0.027397677, 0.003210558, -0.0370876, 0.006678098, -0.017310288, -0.01695394, 0.016885411, -0.021243822, 0.019516904, -0.01367828, 0.0077642743, -0.0055165407, -0.010299827, 0.010943995, 9.08002E-4, -0.026424572, -0.0074764546, 0.029631704, 0.013904423, 0.014432093, -0.0068768305, -0.010197034, 0.0081411805, -0.04065108, -0.0036354347, -0.004546863, 0.004464629, -0.00646566, 0.018708268, 0.0073599564, 0.012095273, 0.008970375, 0.009737894, 0.033606354, 0.017639225, -0.0013020406, -0.0030255313, 1.4305316E-4, -0.045365836, 0.0046393764, -0.030892627, 0.026561629, -0.008387883, 0.023546377, -0.008531793, -0.008648291, -0.016296066, 0.013493253, 0.01914685, -0.012280299, 0.0112523725, -0.017858516, -0.006198399, 0.0016618151, -0.005235574, 0.020380363, 2.664044E-4, -0.010594499, -0.0066335546, 0.030810393, 0.0030460898, -0.010902877, -0.015734134, -8.38617E-4, -0.008956669, -0.0062600747, 7.058431E-4, 0.0041768095, -0.004026047, 0.032975893, -0.022957033, 0.06425228, -0.0047695804, -0.010471148, 0.023066679, 0.024738772, 0.012431062, -0.005088238, -2.66217E-5, 0.013931835, 0.016241245, -0.010978259, 0.040925194, -0.004958034, 0.0126777645, 9.576852E-4, 0.0155696655, -0.0011058779, -0.009881804, 0.0034401284, 0.019969191, 0.04278917, 0.025287, 0.004115134, -0.022285454, 0.0034743927, 0.011862276, 0.014253919, -0.008874435, -0.0059037264, 0.0014545164, -8.9343975E-4, -0.017515874, -0.019585432, -0.0026143605, -0.009038904, 0.0013482973, -0.0063388823, -0.023135208, -0.007716304, -5.002577E-4, 0.024409836, 0.031276386, -0.0067294943, -0.044927254, 0.03366118, 0.0021260954, -0.011396282, -0.03429164, -0.01695394, 0.0056467447, -0.023190029, -0.016268656, -0.016679827, 0.026589042, 0.005509688, 0.0069385064, -0.010361503, -0.0072023408, 0.016117893, -0.021613875, -0.0054822764, 0.024546893, -9.663583E-5, 9.6967764E-4, -0.011663543, -0.008134328, 0.0281789, -0.026164165, 5.8206357E-4, -0.016487947, -0.011307196, 0.004886079, -0.011026229, 0.00196848, -0.0428714, 0.0060065193, -0.013986658, -0.017310288, -0.0018005852, -0.0025749567, 0.014829558, -0.0076340702, -0.023299675, -0.018393038, -0.031002274, 0.02290221, 0.07165335, 0.027013918, 0.008764789, -9.0971525E-4, -0.023587495, 0.0032208376, -0.02357379, -0.02280627, -0.013308226, -9.114285E-4, 0.018667152, -0.008250826, 0.035388093, 0.009758452, 0.01825598, -0.015295551, -0.0054685706, 0.008058947, 0.008648291, -0.010101095, -0.004738743, -0.010313532, 0.020476302, 0.03094745, 0.004868947, -0.018022984, 6.6601095E-4, 0.025629643, -0.0024944358, 0.005434307, 0.004272749, 0.003282513, 0.012424209, 0.018461566, -0.007688893, 0.013685132, 0.015926013, 0.010286122, 0.006863125, 0.013794778, 0.0037827708, 0.01367828, -0.0022306012, -0.0141442735, 0.020051427, -0.013760514, -0.017735165, 0.010388914, 0.027918493, -0.026410867, 0.009114285, -0.007510719, -0.024163134, -0.015254434, 0.033167772, 0.022271749, -0.008470117, -0.00768204, -0.02451948, -0.011903393, 0.02477989, -0.035415508, 0.02952206, -0.014432093, -0.020695593, -0.015185906, -0.0081206225, -0.019695079, -0.013719397, 0.020791534, 4.634237E-4, -0.017447345, -0.021421995, 0.0028490706, 0.008826465, 0.0012026745, 0.027987022, -0.009710482, 0.013109494, 0.020654477, -0.023011856, -0.03670384, -0.005842051, -0.038978986, -0.028535249, 0.010806938, 0.0033304829, 0.030673336, -0.016597591, 0.008209709, 0.019270202, -0.0073736617, -0.008134328, -0.017803693, 0.041994236, -0.008250826, 0.022066163, 0.02398496, 0.0028353648, -0.0086825555, 0.019996604, -0.020873768, 0.0015093392, -0.013904423, -0.001340588, -0.016337184, -7.7351497E-4, 0.0015144789, -0.009758452, -0.031797204, -0.02891901, -0.011725219, -0.0141031565, 0.0112523725, 7.409639E-4, 0.0037073896, -0.0060956064, 0.012321416, 0.0017646077, 0.008675703, 0.008237121, 0.0016455395, 0.013438431, 0.029110888, -0.008093211, 0.024834713, -0.014733618, -0.022614392, 0.0032859396, 0.032016493, 0.016652415, 0.008449559, -0.01466509, -0.019201674, -0.01408945, -0.032646958, 3.3000734E-4, -0.0047867126, -0.0042761755, 3.6298667E-4, -0.014843264, -0.0023042692, 0.013794778, -0.006143576, 0.0016181282, -0.033606354, 0.0073531033, -0.015939718, 0.017090997, 0.020914884, -0.008127475, 0.014829558, -0.01663871, -9.0714544E-4, -0.008634586, -0.029056065, -0.04281658, -0.009059462, 0.033195183, 0.01040262, 0.049779072, 0.011622426, 0.014336153, 0.003799903, 0.0060099456, 0.019187968, -0.018680857, 0.016460536, -0.035799265, 4.655652E-4, 0.02615046, 0.029604293, 0.016926529, 0.0121363895, -0.010758968, 0.017488463, 0.0133219315, 0.012108978, -0.011485369, -0.02547888, -0.01507626, 0.0075655417, -0.02974135, 0.0011401422, -0.024163134, -0.013493253, 0.047887687, -0.0056844354, 0.008429, 0.0010681873, 0.031166742, -0.007880772, 0.01717323, -0.007716304, 0.01283538, -0.02897383, -0.002569817, -0.015980836, 0.0017380529, -0.0037485065, -0.009278753, 0.011382577, -5.3109555E-4, -0.024574304, 0.0092650475, 0.023162618, -0.012170654, -0.03157791, 0.013273962, -0.004546863, -0.0063080443, -0.050272476, -0.006801449, -0.026068226, -0.012986142, 0.0066643925, -0.007462749, 0.0055131144, -0.023203736, -0.03547033, 0.011430547, -0.019311318, 0.029850995, 0.020188482, 0.046078533, 0.04278917, 0.0023470996, -0.016405713, -3.702678E-4, -0.006993329, -0.0076957457, 0.020736711, 0.027616968, -0.024368718, -0.015788956, 0.009299312, 0.013143758, -0.035991143, -0.035251036, 0.024039783, 0.020147366, 0.015391491, -0.012753146, 0.0018571211, -0.016679827, 0.016090482, -0.023025561, -0.0028439309, 0.016446829, -0.016926529, -0.021079354, 0.00562276, -0.0017731738, 0.007236605, 0.021559052, -0.015309257, 0.027000211, -0.013575487, -0.0031711543, -0.018872736, -0.015638193, 0.032646958, -0.022532156, 0.021504229, 0.022751447, 0.024450954, -0.0039026956, -0.0016335471, 0.00604421, 0.030782983, -0.016899118, -0.008394736, -0.0033767398, 0.016474241, -0.014500622, 0.016117893, -0.025519997, -0.019393554, -0.0426247, 2.944582E-4, 0.031386033, -0.0025629643, 0.013328785, -0.020969708, -0.018968677, -0.02251845, 0.003981503, -0.007716304, 0.013445283, -0.04775063, 0.008243973, -0.0024755904, -0.006493071, 0.0039506657, -0.012081567, 0.0065444675, 0.008970375, 0.0052252947, -0.015706722, -0.00801783, -0.008346766, -0.006825434, -0.03390788, -0.015610782, 2.848214E-4, -0.021764638, 0.006571879, -0.020243306, -0.0038889898, 0.0061709876, 7.14195E-5, -0.006160708, -0.009210224, 0.004084296, 0.0056741564, 0.008744231, -0.007469602, -0.013404166, 0.0038924164, 0.026890567, -0.0019102307, -0.0040397523, 0.02891901, -0.0053246613, 0.033250008, -0.017570697, 0.0040020617, -0.006698657, -0.017529579, -0.019092027, -0.008113769, -0.0011786894, 0.002091831, 0.007000182, -0.024505775, -8.561774E-4, -0.0069110948, 0.01466509, -0.022819975, -0.0026691833, 0.031276386, 0.023217442, 0.017063586, 0.034757633, -0.016858, -0.014569149, -0.006619849, -0.03193426, -0.029631704, -0.004238485, 0.002235741, 0.013013554, -1.776386E-4, -0.0012240895, -0.027013918, 0.0041356925, -0.021161588, -0.0315505, -0.008614027, 0.031989083, 0.022052458, 7.4139226E-4, 0.0038547257, 0.031084508, -0.009018345, 0.0031334637, -0.026726099, 0.006126444, 0.0044851876, 0.010628764, 0.01606307, 0.033222597, -0.020887474, -0.020407774, 0.01803669, 0.021737227, 0.005177325, 0.020723006, -0.025341824, -0.01803669, 0.0030563693, 0.008072652, -0.01156075, -0.012520149, 0.025465174, -0.043118104, -0.01683059, 0.013198581, 0.022285454, -0.0021500804, -0.0023436733, 0.013150611, -0.017680341, -0.004677067, -0.011773189, -0.0069556385, 5.450154E-5, -0.0109577, 0.017529579, -5.700711E-4, 0.004560569, 0.024382425, 0.008675703, -0.008271385, 0.008566057, 0.0019787592, 0.012479031, -0.017392522, 0.01057394, 0.010704145, 0.011231814, -0.040376965, 0.013829042, -0.015624488, 0.009217077, 0.0055165407, 0.016172716, -0.015309257, 0.03703278, 0.014007216, -0.03706019, -0.0014390976, 0.0039986353, -3.2486772E-4, -0.017639225, -0.010800085, -0.01654277, -0.0024241942, -0.00936784, 4.2873115E-4, -0.016981352, -0.01704988, -0.010806938, -0.012554414, -0.025122533, 0.004951181, 0.19812948, -0.009957185, 0.021613875, 0.0414186, -0.004954607, 0.006869978, 0.03610079, 0.022025045, -0.009950331, 0.022737741, -0.0075038658, 0.013424724, 0.0012292292, -0.0015521696, 0.014637678, -0.005259559, -0.02386161, -0.024355013, -0.025163649, -0.014870675, 5.991957E-4, -0.019420965, -0.022655508, -0.009655659, -0.0015804375, 0.010902877, 0.0017680342, -0.004954607, 0.029823584, 0.0056022014, -0.012520149, 0.0032688074, -0.0141442735, 0.014719913, -0.022888504, -0.010676733, 0.023368204, 0.019201674, 2.4177696E-4, -0.0027993876, 0.00669523, -0.01803669, -0.013253404, -0.019928075, -0.0024653112, 0.008764789, -0.024958063, -7.8465085E-4, -0.0219154, -0.011951363, -0.030371811, -0.008004123, 0.022216925, 0.008202856, 0.0024978623, -0.0060339305, 0.011423694, 0.0053931894, 0.005307529, -0.0060407836, 0.02458801, 0.03730689, -0.033578943, 0.013609751, -7.957867E-4, 0.0156519, -0.046846054, -0.019078322, 0.014240214, -0.031194154, -0.013472695, -0.011060493, -0.0046393764, 0.009100579, -0.010224446, -0.009785864, 0.016625004, 0.026314927, 0.008161739, 0.011814306, -0.012574972, -0.009902362, 0.0049648867, -8.1977167E-4, -0.013164316, -0.025917463, 0.02538294, -0.022628097, 0.0013791352, -0.026123047, -0.011786895, -0.019105734, -0.015720427, -0.0063491613, -0.0026520512, 0.014596561, 0.0325099, 3.3493282E-4, 0.007161224, -0.009546014, -0.01437727, 0.019832136, 0.0274525, -0.00818915, -0.0303444, -0.008922405, 0.00646566, -0.00941581, 0.028480427, -0.011396282, -0.004851815, -0.021778343, 0.012444768, -0.013034113, -0.008196004, 0.0027856817, -4.488614E-4, -0.024725066, 0.02277886, -0.01603566, -0.015322963, -0.020818945, 0.009964038, -0.0027993876, -0.008915552, -0.03311295, -0.0063594407, 0.0013500106, -0.008888141, -0.01991437, 0.011882834, -0.026767215, 0.01466509, 0.0013979805, -0.0030769277, 0.012061008, 0.031961672, 0.026808333, 0.00327566, -0.0070721367, 0.0068494193, -0.018776797, 0.014829558, 0.007462749, 0.010395767, -0.020723006, 0.0101148, -0.0023214014, -0.0067534796, -0.034044936, -0.015788956, -0.012992995, 0.016446829, 0.010525971, 0.048847083, 0.021531641, -0.036539372, -0.03730689, 0.011183844, 0.029056065, -0.031084508, 0.0051019434, 0.0066472604, 0.006027078, -0.011176991, -0.0075244247, -0.17641966, 0.015185906, 0.004149398, -0.03366118, 0.028315958, 0.0010279268, 0.023560083, -0.010327239, 0.010279268, -0.023518967, 0.028590072, 3.8386643E-5, -0.046708997, -0.0013748521, 0.008004123, 0.026986506, -0.0087031135, 0.029988052, 0.036429726, -0.007976713, 0.04004803, 0.007627217, -0.006863125, -0.003638861, 0.006825434, 0.015144789, 0.019256497, -0.009600837, -0.0036799782, -0.021819461, -0.03253731, -0.015089966, -0.013691986, 0.015542254, -0.010642469, 0.0033407623, -0.020654477, 0.004954607, 0.012410504, 0.009532308, 0.04229576, 0.014637678, 0.016734648, 0.00384102, -0.0016266942, 0.022504745, 0.023354499, -0.007921889, 0.0069076684, -0.02280627, -0.004077443, -0.030508868, 0.023354499, -2.6426287E-4, 0.010642469, 0.037526183, -0.0126777645, -0.0024858697, 0.013212286, -0.011547045, -0.016501652, -0.016871706, 0.015912307, -0.014856969, -0.012945025, -0.0043652626, -0.009402105, 0.036950544, -0.02608193, 0.0068596983, -0.01994178, 0.0034058644, 0.020133661, -5.5807864E-4, -2.7368552E-4, -0.029850995, -0.029302768, 0.0034761059, 0.0041939416, 0.021586463, -0.030645926, 0.0481618, 1.8706128E-4, 0.0023847902, 0.013383607, 9.9741024E-5, 0.03327742, -0.022532156, -4.8441053E-4, 0.0016361169, 0.011142727, 0.011985627, -0.020065133, -0.009833833, 0.008312502, 0.004101428, 0.015638193, -4.0860093E-4, 0.016967645, -0.013506959, -5.293823E-4, -0.027205797, -0.010251857, 0.039664272, 0.02251845, 0.008154886, 0.0075312774, 0.013877013, 0.013993511, -1.1178704E-4, 2.4220526E-4, 0.016995057, 0.023902725, 0.002300843, -0.020147366, 0.0081206225, -0.007819097, -0.02229916, 0.010539677, 0.0034007246, 0.03092004, -0.0044920403, -0.0041939416, 0.0101148, -0.019311318, -0.016268656, -0.08261791, -0.002148367, -0.0016926528, 0.029220534, -0.027562145, 0.038759694, -0.004516025, 0.023902725, -0.02636975, 0.02251845, 0.0058626095, -0.015158495, -0.0022991297, -0.013267109, 0.033469297, 0.009648806, -0.02280627, 0.0072023408, -0.0112934895, 0.036402315, -0.002867916, -0.017132115, 0.0064142635, -0.021956518, -0.019215379, 0.0028627762, -0.032838836, 0.017707754, 0.0029672822, 0.012465326, 0.02080524, -0.015583371, 0.028425604, -0.04202165, -0.039335333, -0.019133145, -0.025012886, -0.015734134, 0.027178386, -0.065184265, 0.01994178, 7.4267713E-4, -0.008600322, -0.027754026, -0.00871682, -4.8783695E-4, -0.019050911, 0.03393529, -0.025012886, -0.054767944, -0.015706722, -0.0022254616, -0.016803177, -0.01119755, 0.02894642, 0.026232693, 0.0112523725, 0.010621911, -0.011690955, -0.021010825, 0.00886073, -0.025698172, -0.025807817, 0.009662513, 0.0155696655, 0.002544119, -0.012670912, -0.011588162, 0.02121641, -0.009539161, -0.013835895, 0.012451621, -0.046270415, -0.0055405255, -0.018996088, 0.004440644, -0.016926529, -0.019503199, 0.016789472, -0.033606354, 0.0022425938, -0.031440854, -0.0010219306, -0.009799569, 0.0064382483, 0.01546002, 0.020503715, 6.59051E-5, 0.004755875, -0.025903756, -0.009100579, 0.009676218, 0.008278238, 0.004241911, -0.012527002, 0.030536281, 0.029083477, 0.002374511, 0.007894478, 0.019585432, -0.017735165, -0.009765305, -0.071763, 0.01447321, 0.0017106415, -0.001236082, -0.0067055095, -0.010388914, 0.021517936, -0.020407774, 0.01478844, -0.0118348645, -0.0047695804, 0.007983565, -0.014870675, -0.0033270565, -0.002643485, 0.015048849, 0.016323479, 0.0041459715, -0.0045845537, -0.0026349192, -0.01040262, -0.0017371963, 0.020997118, 0.010608205, 0.010224446, 0.02338191, 0.012280299, 0.026794627, -0.009991449, -0.010135359, 0.03409976, -0.018845325, -0.023683434, -0.008641439, -0.02509512, -0.02789108, -0.015665606, -3.240111E-4, 0.017077291, 0.010512265, -0.011238667, -0.018091513, -0.007551836, -0.014829558, -0.0038512992, 0.016090482, -0.023135208, 0.022367688, 0.009758452, 0.0056604506, 0.026232693, 0.0081411805, -0.013479548, -0.00238993, 0.021463113, -0.02894642, 0.04953237, -0.0031248976, -0.008148033, -0.0155285485, 0.02897383, -0.0031146184, 0.02051742, -0.03311295, -0.010868614, 0.0027856817, -0.01885903, 0.0046428028, 0.0031865733, -0.017269172, -0.010738409, -0.007983565, 0.004896358, 0.036621608, 0.00818915, 0.033414476, -0.012849086, 0.011355165, -0.0124173565, 0.01914685, 0.026246399, -0.027507322, -0.03314036, 0.0036902574, -0.0017611813, 0.007421632, -0.009450074, 0.0055233934, -8.9857937E-4, 0.022148397, -0.025972284, -0.004951181, 0.022326572, 0.026301222, 0.005492556, 0.020558536, 0.009909214, -0.011930805, 0.011170139, 0.016734648, -0.0015221883, -0.012657206, -0.007935596, -0.019544316, -0.013739956, -0.0069830497, -0.034593165, -0.024067193, 0.028699718, 0.020942297, 0.020352952, 0.014171685, -0.017954456, 0.0017560417, -0.026068226, 0.011238667, -0.0041939416, -0.015322963, -0.015158495, 0.057125323, 0.0017731738, 0.020215895, 0.027521027, -0.023847902, 0.026835743, 0.012842232, 0.027534734, -0.032043908, 0.012047303, -0.0039849295, -0.006636981, 0.009813275, -0.023683434, -0.0038821371, -0.0072434577, 0.0033887322, 0.02249104, 0.015240729, -6.638694E-5, 0.07335286, 0.01953061, -0.003145456, 0.021202704, -0.011362018, 0.008593468, 0.01825598, 0.017228054, -0.014130568, -0.0010733269, -8.424717E-4, -0.0115333395, 0.0032054186, -0.010628764, -0.0026075079, 0.0073873675, 0.008566057, 0.011122168, -0.018050395, -0.014295036, 0.010484854, 0.0040568844, 0.02636975, 0.025519997, -0.025903756, -0.015487432, 0.029028654, -0.003662846, 0.011129022, -0.026808333, 0.007723157, -0.016241245, -0.0013260256, -8.7802083E-4, 0.02952206, -0.0062429425, -0.0053452197, 0.005811213, 0.007908184, 0.005023136, -0.0038478728, 0.019804724, -0.026342338, -0.0012249461, 0.005931138, -0.004749022, -0.004139119, -0.014637678, -0.0035908911 ], + "id" : "97e88f3d-f653-4a02-81d9-f9c95fd739b2", + "metadata" : { + "source" : "movies.csv" + } + }, + "bef986fe-372f-4e4f-9004-13f531ecc639" : { + "text" : "Ren Colley-Jennifer Kim-Ari Groover-Louis Gonzalez-Stewart Steinberg-Andy Powers-Omar Capra-Nitin Nohria-Vince Foster-Brian Schaeffer-Chris Adams-Maiya Boyd-Rebeca Donovan-Elli-Nickolas Wolf-Jaine Ye-Gina Cordan-Friday Chamberlain-Dante Brattelli-Melissa Kay Glaze-Donald K. Overstreet-Hallie Ricardo-Doug Scroggins III-Marmee Regine Cosico-Harrison Osterfield-Chris Silcox,new york city-washington dc usa-high school-superhero-based on comic-reboot-marvel cinematic universe (mcu),/c24sv2weTHPsmDa7jEMN0m2P3RT.jpg,/fn4n6uOYcB6Uh89nbNPoU2w80RV.jpg,284053-283995-271110-429617-99861-284052-102899-76338-299536-284054-100402-10195-118340-10138-1726-24428-363088-68721-1771-297762-557\r\n57800,Ice Age: Continental Drift,Animation-Comedy-Adventure-Family,en,Manny Diego and Sid embark upon another adventure after their continent is set adrift. Using an iceberg as a ship they encounter sea creatures and battle pirates as they explore a new world.,62.849,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/27/12,95000000,877244782,88,Released,The End of the World is Just the Tip of the Iceberg.,6.3,6787,Ray Romano-John Leguizamo-Denis Leary-Seann William Scott-Josh Peck-Queen Latifah-Jennifer Lopez-Peter Dinklage-Wanda Sykes-Keke Palmer-Josh Gad-Nick Frost-Aziz Ansari-Alain Chabat-Kunal Nayyar-Drake-Nicki Minaj-Rebel Wilson-Alan Tudyk-Ester Dean-Eddie 'Piolin' Sotelo-Joy Behar-Heather Morris-Chris Wedge-Christopher Campbell-Karen Disher-Marieve Herington-Lucas Leguizamo-Allegra Leguizamo-Jason Fricchione-Ben Gleib-George Jacobs-James Palumbo-Simon Pegg-Alexandra Romano-Patrick Stewart-Brian Scott McFadden-Ashley Albert-Edita Brychta-Dennis T. Carnegie-Aim��e Castle-Jim Conroy-Jason Harris-Sondra James-Alexa Kahn-Bill Lobley-Chris Phillips-Tara Sands-Keith Silverstein-Ariel Winter-Fred Tatasciore,sequel-seal (animal)-prehistoric times-melting ice-floating ice-land bridge-era-glaciale-deriva,/veS3B9N5Kn2Zv8W5KemjhyPjNsd.jpg,/kyTlMMVWo1GffYoQctZwLqJcwaj.jpg,8355-950-425-278154-80321-953-10527-46195-20352-9502-810-49444-10192-76492-93456-82690-809-49519-49013-62177-13053\r\n672,Harry Potter and the Chamber of Secrets,Adventure-Fantasy,en,Cars fly trees fight back and a mysterious house-elf comes to warn Harry Potter at the start of his second year at Hogwarts. Adventure and danger await when bloody writing on a wall announces: The Chamber Of Secrets Has Been Opened. To save Hogwarts will require all of Harry Ron and Hermione��s magical abilities and courage.,231.706,Warner Bros.", + "embedding" : [ 0.014678049, -0.034975145, -0.017473867, -0.04799489, -0.008188734, 0.02453194, -0.013280139, 0.0028763358, -0.012821022, -0.039552614, 0.037798375, 0.034344714, 0.022517305, -0.0035941347, 0.0020317654, -0.002646777, 0.01133403, -0.017843902, 0.015253658, -0.039223693, -0.008593031, -0.005667015, -1.14029834E-4, 0.009545528, 0.008771196, -0.005101684, 0.042321023, -0.009949826, 0.0016565912, -0.0059719514, 0.027245529, 0.003515331, -0.010806388, -0.015993727, -0.01366388, 0.0029876886, 0.006698316, -0.02614913, 0.030507317, -0.007304762, 0.0057355403, -0.0068696286, -0.018583972, -0.0013696429, -0.019981882, 0.0033851336, 0.008099652, 1.1670659E-4, -0.012430429, 0.019584436, 0.038565855, 0.031795587, -0.0134925665, -0.030863646, -0.019639257, -0.010580256, -0.031274796, 0.0029671313, 6.7754067E-4, 1.1585003E-4, 0.014308014, -0.018076887, -0.024710104, -0.006078165, -0.009346806, -0.02039303, -0.015664808, -0.013794077, -5.293554E-4, 0.005595064, 0.025655748, 0.019474797, 0.010628223, 0.0010038909, 0.010450058, -0.026327293, -0.021023462, -0.012108362, -0.0017105546, 0.006345412, 0.008572474, -0.016884552, -0.018186528, 0.009244018, 0.018364692, 0.014170964, -0.014678049, 0.006523577, -0.030123577, 0.018213937, 0.003364576, 0.040210452, -0.011018815, 0.0029876886, -0.0072430894, 0.013657027, -0.013156794, 0.020064112, -0.017227178, -0.033111267, 2.2634654E-4, -0.021722415, -0.013855749, -0.017076423, -0.022215795, 6.111571E-4, 0.013691289, -0.004214286, 0.026299885, 0.004008711, 0.0011829123, -0.009381069, 0.022065042, -0.027218118, -0.015705923, -0.018529152, 0.008524506, -0.00993612, -0.009374216, -0.018871777, 0.023175145, 0.038812544, -0.0017199768, -0.026820675, 0.028807897, 0.021640185, -0.007455517, -0.018008363, 0.011286063, -0.008771196, 0.015623693, -0.018268757, 0.020886412, 0.008394309, -0.026491754, 0.04777561, -0.015609988, 0.0053826366, -0.0066229384, -0.021900581, 0.021612776, 0.029219048, -0.031137748, -0.019748896, -0.034043204, 0.010991406, 0.009031591, 0.017103832, 0.027368873, -0.009278281, 0.016939374, 0.01182741, -0.002814663, 0.02554611, 0.018008363, 0.010532288, -0.0025731127, -0.006574971, -0.01023763, -0.02307921, -4.638284E-4, -0.0129717775, 0.009949826, -0.017446458, 0.0020214866, 0.013739257, 0.010552846, -0.021900581, -0.003923055, 0.0076610916, -0.014321719, 0.020735657, -0.033385366, 0.009942973, 0.0032138212, 0.015445529, -3.7110553E-4, -0.009963531, -0.030123577, -0.023695935, -0.0028677701, -0.009264576, 0.02592985, 0.037496865, -0.012416725, -0.012615447, 0.02510755, -0.019680372, 0.014376539, -0.017213473, 0.010491173, 0.018858071, 0.0044712545, 0.008764344, -0.641613, -0.023394424, 0.0042382693, -0.028670847, 0.010703601, 0.011580721, 0.008387457, 0.007530894, -0.028259698, -0.0054751453, -0.02261324, 0.013848897, 0.012951219, -0.017391637, -0.022380255, -0.0071745645, 0.017405342, -0.016816027, 0.011190128, 0.0088465735, -0.028807897, 0.02083159, 0.021585366, -0.011265505, 0.020105226, 0.0127113825, -0.005344948, -0.012505807, 0.0017353949, 5.24912E-5, -0.020064112, 0.0115601625, 0.012259117, 0.00592741, 0.031411845, 0.015130314, -0.025806503, 0.056848317, 0.030205807, 0.031055517, -0.024244135, -0.013766667, 0.015514053, 0.017665738, -0.011546457, 0.010957143, 0.008524506, -0.0014424507, 0.009531824, -0.0015255371, -0.007914634, -0.0031675668, -0.007482927, 0.006479036, -0.012505807, -0.013156794, 0.012827874, -0.026642509, 0.027368873, 0.013842044, -0.013965389, 0.04314332, 0.0016454558, -7.6319685E-4, 0.0033251743, 0.029273868, -0.013067712, -0.0071334494, 0.007900929, -0.027177004, 0.010539141, 0.009072706, -0.015856678, -0.004601452, 0.0011186701, 0.013211614, 0.033823926, -0.0019118467, -2.3898084E-4, 0.019515911, 0.009682578, -0.003947038, 0.015884088, 0.005111963, 0.022215795, -0.006520151, -0.028259698, 0.002547416, 0.0039264807, -0.0057972125, 0.008826016, 0.021338675, -0.004341057, -0.0038956446, 0.0010792683, -0.013451451, -0.013800929, 0.013657027, 0.024340069, -0.04780302, -0.009751104, -0.028287109, 0.009963531, -0.009052149, 3.1628556E-4, -0.0089767715, -0.005348374, -0.01160813, 0.035221834, -0.014431359, 0.0038065622, -0.012889547, -0.027190708, -0.007530894, -0.0023966609, -0.029081998, 0.015102903, 0.0057698027, 0.006626365, -0.01144367, 0.005690999, 0.012540069, -3.6125508E-4, -0.005550523, 0.0111490125, 0.027670383, -0.0029397213, 1.3608631E-4, -0.008147619, -0.0012043264, 0.008051684, -8.805459E-4, 0.014047619, -0.017569803, 0.021023462, 0.018227642, 0.014033915, -0.007181417, 0.018899187, 0.0024069396, -0.022901045, -5.002323E-4, -0.02203763, -0.0076131243, -0.019186992, -0.018186528, -0.029493148, 0.0052592917, -0.008346342, -0.030041348, -0.020434147, 0.008113356, -0.0035530198, 0.017199768, -0.0038099885, 3.302047E-4, -0.015938908, -0.013266434, 0.004519222, -0.018926596, 0.004865273, 0.017939838, 0.0013567944, -0.019008826, 0.027177004, 0.0070512197, -0.012437282, 0.004604878, 0.006273461, -0.018337281, 0.008120209, -0.009757956, 0.0065304297, 0.018063182, -0.013204762, 0.025875028, -0.019228106, 0.024710104, 3.914489E-4, -0.009257724, 6.132985E-4, -0.009511266, -0.016089663, -0.0037791522, 0.02658769, 0.0141435545, 0.04182764, -0.0045637633, -0.011327177, 0.016624158, -0.01325273, -0.0084354235, 0.009134378, -0.008147619, -0.0044541233, 0.027958188, -0.002384669, -0.0015101191, 0.0070786295, 0.011512195, 0.039086644, 0.010874913, 0.0048481417, -0.018899187, 0.02053008, -0.027601859, -9.968242E-5, -0.0406216, 0.01292381, -0.018858071, 0.030479908, -0.010498025, -0.020242276, -0.010333566, 0.0069552846, 0.029273868, -0.019995587, 0.009490709, -0.019296631, 0.0077775843, -0.007640534, -0.007695354, 0.033988386, 0.010395238, -0.019940767, 0.0068353657, 0.005557375, -0.019186992, -0.006304297, -0.0058828685, 0.0010227351, 0.0055162604, -0.011889082, 0.013732404, -0.008202439, -0.0023041521, 0.032535657, -0.01026504, 0.031932637, -0.010525435, 0.01218374, 0.021023462, 0.033714287, 0.001695993, 0.0061706738, -0.019419977, 0.015130314, 0.0067188735, -0.02061231, 0.04064901, -0.02151684, 0.018967712, 0.002107143, -0.0031778456, 0.016308943, -0.018570267, 0.009805923, 0.019598141, 0.027793728, 0.013156794, -0.002771835, -0.028862718, -0.0016737224, 0.009559234, 0.013794077, -0.0054100463, -0.0126017425, 0.006753136, -0.01037468, -0.0104089435, -0.02288734, -0.021640185, 0.019940767, 0.005375784, -0.012848432, -0.013088269, -0.0032086817, 0.013506272, 0.0060713124, 0.02310662, 0.01141626, -0.032508247, 0.009154936, 0.024436004, -0.01270453, -0.025422765, -0.009154936, -0.0062460513, -0.025737979, -0.0046117306, -0.0035667247, 0.026039489, -0.0020934378, 0.012231708, -0.009675726, 2.8138066E-4, 0.015829269, -0.013280139, 5.7089864E-4, 0.030013938, -0.0032617885, 0.017144948, -0.001232593, 0.008531359, 0.028616028, 0.0029739838, 0.006893612, 2.9551395E-4, -0.009703136, -2.4711818E-4, 0.008380604, 0.0059068524, -0.040374912, 0.01056655, -0.014403949, -0.016816027, -0.014801394, -0.02406597, 0.0044986643, -0.0013345238, -0.0080653895, -0.02488827, -0.041855052, -0.0017456736, 0.08902764, 0.038209524, -0.0032326656, 0.02165389, 0.0013156794, -3.6789343E-4, -0.021982811, -0.013184205, -2.6853223E-4, -0.029575378, 0.02039303, -0.008085947, 0.014979559, 0.0052181766, 0.009244018, -0.0014921313, -0.008565621, -0.012519512, -0.007873519, -0.028944949, -0.037277583, -0.010539141, 0.015568874, 0.038702905, 0.014266899, -0.0120741, 0.02562834, 0.014924739, -0.0036181186, 0.024271544, -0.015308479, 0.008085947, 0.0029105982, 0.008332636, -0.007366434, -0.01311568, 0.034152847, 0.0054545878, 0.024216725, 0.013232172, 0.0025851044, 0.0092371665, 0.0057149827, -0.018515447, 0.0010647067, -0.027177004, 3.835257E-4, 0.020626016, 0.027574448, -0.033933565, 0.014088734, -0.0014373113, -0.027958188, -0.0073527293, 0.011546457, 0.0018279036, -0.009230314, 0.0031812717, -0.010244483, 0.011895935, -0.005170209, -0.02598467, 0.013074565, -0.020927526, -0.017460162, 0.0030973286, -0.0054751453, -0.0034142567, -0.02329849, 0.020187456, 0.004495238, -0.026711034, -0.02083159, 3.496915E-4, 0.0075171893, 0.0024823172, 0.029164229, -0.011950755, 0.009291986, -5.473432E-4, -0.0114094075, -0.032069687, 0.006715447, -0.026299885, -0.019365156, 0.010443206, -0.013239024, 0.020228572, 0.0010441493, 0.011587572, 0.0120809525, -0.002149971, -0.020776771, -0.0057595237, 0.029027177, 0.014376539, 0.010559698, 0.014568409, 0.007914634, -0.012588037, 0.0074486644, -0.026190244, -0.006424216, -0.010929733, -0.029493148, -0.012279674, -0.009031591, 0.004577468, -0.02513496, -0.025299419, -0.020297097, -0.011813705, 0.009483856, -0.011731475, 0.009182346, -0.012683972, 0.021804646, 0.012656562, -0.008092799, -0.007291057, 0.0017071284, -0.017556097, 0.0155551685, 0.033330545, -0.0052627176, 0.030616958, -0.014993263, -0.019365156, -0.0059479675, 0.030534727, -0.003198403, 0.02173612, -0.024298955, 0.0027821139, -0.025779095, -0.028506389, 0.0030288037, -0.0064824624, -0.008168177, 0.015829269, -0.018255053, -2.1614811E-5, 0.02165389, 7.4092625E-4, -0.0029037457, -0.026930314, 0.0059, -0.0046905344, 0.008394309, 0.015048084, -0.002744425, 0.014308014, -0.028095238, -0.009908711, -0.007112892, -0.030808827, -0.015952613, 5.6404615E-4, 0.02203763, 0.0056327526, 0.041032754, -0.0013559379, 0.022942161, 0.007304762, 0.011916492, 0.027012544, -0.010717305, -0.014047619, -0.033988386, 0.01089547, 0.010121138, 0.019995587, 0.0039744484, 0.006547561, 0.009230314, 0.0022133566, 0.015925203, 0.011238095, 0.0014467335, -0.028314518, -0.017528689, 0.0038236934, -0.026724739, -0.003655807, -0.018912893, -0.019091057, 0.035358883, -0.015212543, -0.005057143, -0.021475727, 0.03212451, -0.009456446, 0.025737979, -0.02253101, 0.011546457, -0.018022068, -0.005889721, -0.02225691, -0.020338211, -0.0045089433, -0.0021311266, 0.018145412, -0.005392915, -0.018721022, 0.0074623693, 0.02017375, -0.013704994, -0.017062718, 0.031329617, -0.015747039, 3.1136035E-4, -0.029712427, 0.010957143, -0.033549827, -0.018721022, -0.0059205573, -0.022065042, 0.01075842, -0.019735191, -0.031521488, 0.024052264, -0.008284669, 0.055697095, 0.02039303, 0.036400463, 0.029356098, 0.016596748, -0.020022996, 0.020804182, -0.007798142, -0.013286992, 0.034235075, 0.022421371, -0.0017114112, -0.013040302, -0.008339489, -0.012875842, -0.01210151, -0.038757723, 0.030123577, 0.02636841, 0.026793264, -0.025655748, -0.009929269, -0.028314518, 0.015705923, -0.0045706155, 4.6950314E-5, 0.007154007, -0.032727525, -0.009812776, 0.006821661, 1.3640751E-4, 0.011046225, 0.0056327526, -0.029547967, 0.018638792, -0.009113821, 0.0067873984, -0.014883623, -0.0045089433, 0.02373705, -0.030041348, 0.013711846, 0.011059931, -0.0044438443, 0.003738037, 7.846109E-4, 0.004063531, 0.027492218, -0.031302206, 0.018296167, 0.010100581, 0.0044301394, 0.0031384437, 0.018460628, -0.017213473, -0.015966319, -0.027917074, -0.011231243, 0.035961904, -6.7068817E-4, -0.007633682, -0.0015974884, -0.016199304, 0.0017336818, 0.0050537167, 9.927555E-4, -0.009422184, -0.04018304, 0.012396167, -0.008949361, 0.009031591, -0.015308479, -0.004049826, -0.0074897795, -0.021078281, 0.012779907, -0.018912893, 0.0011572154, -0.027396284, -0.020488966, -0.04511684, -0.022901045, -0.008867132, -0.0111490125, 0.013677584, -0.01166295, 0.0070066783, -0.0039744484, -0.0011529326, 0.0022304878, -0.006509872, 0.0018792973, -0.0031932637, 0.014568409, -0.018611383, -0.0086958185, 0.010799536, 0.032508247, -0.008613589, 0.0012437282, 0.0030099594, 0.007476074, 0.026779559, -0.013588502, 0.011841115, -0.009833333, -0.038099885, -0.008476539, 0.032590475, 0.019186992, 0.017830197, -0.006369396, -0.029109407, -0.017295703, -0.006211789, 0.020680835, -0.009134378, 0.0060815914, 0.040265273, 0.027725203, 0.036071546, 0.02554611, -0.012197445, -0.025833914, 0.0030819105, -0.005667015, -0.030096168, 0.008483391, 0.019091057, 0.012999187, 0.007291057, -0.018981418, -0.042896632, -0.003847677, -0.01995447, -0.033960976, -0.016692683, 0.029081998, 0.036893845, -7.2636467E-4, -0.0026913183, 0.012245412, 2.1810214E-4, 0.019241812, -0.013574797, 0.0019221255, 0.0227777, 0.010066318, 0.018707316, 0.022928456, -0.014911034, -0.008668409, 0.014499884, 0.036811616, 0.001371356, 0.030150987, -0.010306155, -0.00666748, -6.736861E-4, 0.0075034844, 0.0017576655, 0.0021602497, 0.028026713, -0.037387226, 0.0033457316, -8.364329E-4, 0.0074486644, 0.00548885, 0.0022955865, -0.0034656504, -0.01127921, 0.008826016, -0.0026690476, -0.009504413, 0.016445993, -0.02261324, 0.025395354, 0.0030527874, 0.010319861, 0.025861325, 0.031932637, -0.0017610918, -0.003998432, -0.0013216754, 0.0036900698, -0.015239954, -0.0045260745, -0.003957317, 0.018145412, -0.032261558, 0.009429036, -0.027149593, 0.007887224, -0.006564692, 0.0044061556, -0.013670731, 0.040265273, 0.0023264228, -0.044705693, -0.006054181, -0.022654355, -0.0034844948, -0.015198839, -0.010038909, -0.024189314, -0.0065921023, -0.011656097, 0.017268293, -0.02143461, -0.033111267, 0.0067223, -0.0059616724, -0.0020437574, 0.0058211964, 0.19165064, 0.008798607, 0.0123413475, 0.04138908, -0.010189664, 0.0068353657, 0.029493148, 0.037880603, -0.016144482, 0.007688502, -0.0061124275, 0.011238095, -0.01037468, 0.003542741, 0.006410511, -0.020982346, -0.037058305, -0.026478048, 0.0010749855, -0.024655284, -0.0010638501, 0.007373287, -0.010217073, -0.019118467, 0.0029996806, -0.008037979, -0.0079351915, 0.009257724, 0.025436468, 0.004577468, -0.0050982577, -0.025203485, 0.0029020326, -0.0047213705, -0.013067712, -0.019118467, -0.0016206156, 0.015061788, 0.010134843, 0.013485714, -0.011806852, -0.005721835, 0.013026597, -0.003899071, -0.001130662, 0.026793264, -0.015966319, -0.007044367, -0.025395354, 0.010367828, -0.04347224, -0.0042656795, 0.019529616, 0.04670662, -0.013307549, 9.1052556E-4, 0.007085482, 0.016555633, -0.0131019745, -0.0072704996, 0.0071334494, 0.040237863, -0.023284785, 0.0033714285, 0.011059931, 0.013780371, -0.034481764, -0.008723229, 0.0025868176, -0.024107086, -0.015966319, -0.027012544, -0.016089663, -0.0047761905, -0.015185134, -0.014856214, 1.6207761E-5, 0.010703601, 0.011032521, 0.025875028, -0.026108013, -0.002233914, 0.005889721, -0.0058211964, -0.017885018, -0.031247387, 0.011847967, -0.013643322, 0.0034536584, -0.009257724, -0.006150116, -0.014020209, -0.012430429, 0.016939374, 0.0036969222, 0.009072706, 0.015061788, 0.019625552, 8.544207E-4, -0.00150241, -0.04341742, 0.023504065, 0.035523344, -0.009305691, -0.036044136, -0.026765853, -0.005913705, 0.00537921, 0.02335331, -0.023257375, 0.0048001744, -0.015404413, 0.001248011, -0.01163554, -0.0046254355, 0.027588153, 0.0044301394, -0.015897794, 0.032097097, -0.014883623, -0.016692683, -0.008990476, 0.005804065, 0.0059479675, -0.009853891, -0.02513496, -0.028807897, 0.013787224, 0.0036215447, -0.029438328, 0.013725552, 5.7603803E-4, 0.022202091, -0.0034211092, 0.0041937283, 0.013177352, 0.027492218, -0.007421254, -0.0059788036, -0.012978629, -0.012526365, -0.0074075493, 0.02165389, 0.013711846, 0.009312544, -0.020502672, -0.0019272648, -0.015349594, -0.011155865, -0.02302439, -0.011066783, -0.004615157, 0.0076610916, 0.0016934234, 0.04451382, 2.2805967E-4, -0.016528223, -0.039497793, -0.027560743, 0.058657374, -0.032508247, 0.04887201, 0.017377933, -0.017843902, -0.031548895, -0.0054066204, -0.17684925, 0.022846226, 0.019049942, -0.031302206, 0.016637864, 0.012553775, 0.02187317, 0.0041834493, 0.0088465735, -0.008942509, 0.018172823, 0.0025576944, -0.035550755, -0.010593961, 0.011073635, 0.005745819, -0.012245412, 0.026340999, 0.020543786, -0.017391637, 0.04180023, -0.01995447, -0.008867132, -0.0075994194, 0.005886295, -0.0052318815, 0.0203108, 0.0034690767, 0.0016583042, -0.010792683, -0.031603716, -0.014897329, 0.020214867, 0.0138626015, -0.0014021922, -0.010511731, -0.018063182, -0.00592741, -0.002275029, 0.002357259, 0.032837167, 0.013992799, 0.026478048, 0.011107897, 0.017734263, 3.4262484E-4, 0.029602788, -0.012416725, 0.015637398, -0.015390708, -0.006204936, -0.033960976, 0.016555633, -0.0035119047, 0.016884552, 0.0152947735, 0.008366899, 0.0077707316, -9.6106273E-4, -0.002384669, -0.021941695, -0.0033525843, 0.007907782, -0.02099605, -0.0034896343, -0.030397678, -0.0020643147, 0.0027872531, -0.024326365, 0.019118467, -0.008750639, 0.009387921, 0.0126223, 0.011628687, 0.004865273, -0.018967712, -0.031740766, 0.014362834, 6.741144E-4, 0.017199768, -0.019049942, 0.028835308, -0.032864574, 0.016048549, 0.009922416, -0.011532753, -0.017501278, -0.01240302, 0.0011477933, 0.0014158972, 0.011875377, -0.030891057, -0.030671777, 0.0057184086, 0.0018758711, 0.0087163765, -0.0037037747, 0.0027632695, 0.014883623, 4.1136396E-4, 0.0014998403, -0.010244483, -0.010806388, 0.015911499, 0.02409338, 0.016678978, 0.007263647, 0.030644367, 0.032069687, 0.0016463124, -0.003116173, -0.004755633, 0.032782346, 0.018638792, -0.015815563, 0.0047487803, -0.019680372, -0.020626016, -8.870772E-5, 0.013458304, 0.052517537, 0.0052969805, -0.011018815, -0.008243554, 0.0022938733, -0.0084354235, -0.07943415, 0.0064824624, -1.2359924E-5, 0.035907086, -0.032563068, 0.040265273, -0.0035358886, 0.017843902, -0.019721488, 0.037880603, -0.0037860046, -0.02623136, 0.01174518, 0.0035324623, 0.0032189605, -0.0029808362, -0.031713355, -0.017035307, -0.015349594, 0.028026713, -0.012053543, -0.009778514, 0.0050537167, -0.014116144, -0.020502672, 0.0053518005, -0.037935425, 0.026423229, 0.010545993, 0.0084559815, 0.017652033, -0.014979559, 0.012464692, -0.027149593, -0.020845296, -0.024107086, -0.008778049, -0.020817887, 0.008318932, -0.058547735, 0.017597213, 0.025559815, -0.0071060397, -0.02247619, -0.0131019745, 6.745427E-4, -0.025093844, 0.0230518, -0.019844832, -0.013060859, -0.0017610918, -0.01292381, -0.024627876, -0.003707201, 0.015267364, 0.02505273, 0.02105087, 0.0034108304, -0.014650639, -0.032261558, 0.016432287, -0.0015495209, -0.02121533, 0.01569222, 0.01292381, 0.016528223, -0.007455517, -0.008092799, 0.019694077, -0.019831127, -0.016418584, 0.02335331, -0.036701974, -0.008908247, -0.020763066, 0.002842073, -0.028780488, -0.018707316, 0.028643439, -0.035084784, 0.015020674, -0.033303134, 0.018186528, -0.02461417, 0.026272474, 0.032590475, 0.016774913, 0.004368467, 0.01215633, -0.031494077, 0.023394424, 0.02121533, -0.0036146923, -9.0452965E-4, -0.0021859466, 0.02236655, 0.0035187572, 0.011320326, 0.0044986643, 0.018255053, -0.008229849, 0.007791289, -0.08031127, 0.036373056, -0.028643439, -0.0028335075, 0.0017765099, -0.016377468, -0.004080662, -0.0027033102, 0.0070512197, 0.029164229, -0.008092799, 0.033522416, -5.726118E-4, 0.0039607435, 0.00330633, 0.007695354, 0.0097373985, -0.00554367, 1.19169206E-4, 0.0058109174, -0.011580721, 0.015253658, 0.02121533, 0.0056978515, 0.002756417, 0.027272938, 0.008476539, 0.024997909, -0.0044061556, -0.014184669, 0.030233217, -0.02083159, -8.06025E-4, 0.020886412, -0.004755633, -0.028917538, -0.0027067363, 0.002881475, 0.036153775, 0.0048036003, -0.014540999, -0.028040418, 0.008531359, -0.0039607435, -0.0060952962, 0.012032985, -0.024216725, 0.012649709, 0.005331243, 0.007962601, 0.04018304, 0.018775841, -0.0078118467, -0.032179326, 0.009984088, -0.011018815, 0.05227085, 0.012978629, -6.479893E-4, -0.018090593, 0.032014865, 1.4111861E-4, 0.015061788, -0.031219976, -0.010703601, -0.0068970383, 0.0041457606, -0.018131707, -0.009291986, -0.026724739, -0.013286992, -0.0043067946, 0.0071882694, 0.04193728, 0.008079094, 0.010244483, -0.0042177117, 0.013122532, -0.008353194, 0.02047526, 0.016528223, -0.011135308, -0.02053008, 0.024997909, -0.009250871, 0.018981418, 0.0040703835, 0.016213007, -4.0344076E-4, -0.010360976, -0.0022373402, 0.0096277585, 0.0123482, -0.013472009, 0.009840186, 0.015212543, -0.009881301, -0.02261324, 0.0022133566, 0.013060859, -0.0046185832, -0.0011606417, -0.010340418, -0.013293845, -0.028506389, 0.0084354235, 0.0031881244, -0.017295703, 0.011450523, 0.007112892, 0.01229338, 0.015870383, -0.019324042, 0.015390708, -0.038538445, 0.0070066783, -0.015747039, -0.013780371, -0.010333566, 0.037606504, 0.008209292, 0.003710627, 0.019200698, -0.0015589431, 0.04640511, 0.02491568, 0.01218374, -0.016363762, 0.007633682, 6.355691E-4, 0.0018810105, 0.0015974884, -0.004176597, -0.0034502323, -5.5034115E-4, 0.0059102788, 0.0016814314, 0.008332636, -0.017569803, 0.07789919, 0.01256748, -0.022763995, 0.018008363, -0.014965854, 0.017624622, 0.011354588, 0.009730546, -0.008826016, -0.026464343, -0.0012625726, -0.006115854, 0.0058211964, -0.030891057, -4.4284263E-4, -0.014403949, 0.020351917, 0.012656562, -0.010655633, -0.022215795, -0.0059479675, -0.015829269, 0.028369337, 0.0044541233, -0.021160511, -0.011011963, 0.016528223, -0.021996515, -0.015157724, -0.017076423, 0.0015358159, -0.027039954, -0.019091057, -0.0023675377, 0.014719164, -0.0024000872, 9.3536585E-4, -0.0015169715, 0.013081417, 0.015842974, -0.013979094, 9.4864256E-5, -0.017213473, -0.017186062, 0.021324972, -0.01075842, 0.007030662, -0.024463415, -0.029438328 ], + "id" : "bef986fe-372f-4e4f-9004-13f531ecc639", + "metadata" : { + "source" : "movies.csv" + } + }, + "a0331287-ec27-4033-b554-5530a79e0948" : { + "text" : "Laur-Adrian Lee-David Michael Lewin-Maynor Lopez-Jon Lucero-Eder L�_pez-Julie Mabry-Les Mahoney-Gary Mandarino-Albert Marrero Jr.-Stephen Marrero-Carina Aviles Marshall-Debbie McAlister-Sandra McCurdy-Anthony Molinari-Elsa Morales Myers-Mary E. Morales-Sauvion Morkunas-William Myers-Manuel Nardi-Justin Orton-Sarita Ospina-Dale Pavinski-Amelia Pawlak-David Pearl-David Pryor-Lawrence Ravettina-Paul Richard-Louis Riviere-Jarrod Robbins-Bertrand Roberson Jr.-John Robert-Adriana Roze-Franklin Ruehl-Kelly Ryan-Dylan Saccoccio-Frank Scozzari-James Seaman-Keith Shawn-Jutta Speidel-Arne Starr-Matthew Thane-GJ Tiari-Nico Toffoli-Devin Toft-James Tumminia-Julian Vada-Ryan Van de Kamp Buchanan-Ernie Ventry-Damon Viola-Shannon Watson-Denise Winsor-Jon Morgan Woodward-Allan Yates-Alfred Molina\",based on novel or book-rome italy-vatican-symbolism-illuminati-quantum mechanics-prequel-anti matter-conspiracy-investigator-catholicism-cern,/hrvNVd0GDeytbDhduWa3SFKmg4A.jpg,/cj0VkGBTywa7WTIPPW9xgqmUVWl.jpg,591-207932-6637-2059-8960-10528-594-18823-298-568-8358-14161-10764-95-58574-1735-1271-310-285-6479-87\r\n98566,Teenage Mutant Ninja Turtles,Science Fiction-Action-Adventure-Comedy,en,When a kingpin threatens New York City a group of mutated turtle warriors must emerge from the shadows to protect their home.,95.214,Paramount-Nickelodeon Movies-Platinum Dunes-Mirage Studios,8/7/14,125000000,485004754,101,Released,Mysterious. Dangerous. Reptilious. You've never seen heroes like this.,5.9,6147,Megan Fox-Will Arnett-William Fichtner-Johnny Knoxville-Pete Ploszek-Jeremy Howard-Alan Ritchson-Noel Fisher-Tony Shalhoub-Danny Woodburn-Tohoru Masamune-Whoopi Goldberg-Minae Noji-Abby Elliott-Madison Mason-Derek Mears-Malina Weissman-Taran Killam-K. Todd Freeman-Paul Fitzgerald-Venida Evans-Mikal Vega-Harley Pasternak-Braeson Herold-Chance Kelly-Rick Chambers-Leyna Nguyen-Chris Wylde-Rick Bolander-Chris Brewster-Greg Duncan-Kevin Kent,new york city-martial arts-terrorist-hero-experiment-mutation-van-turtle-vigilante-superhero-based on comic-ninja-sewer-reboot,/azL2ThbJMIkts3ZMt3j1YgBUeDB.jpg,/gWuiOPAz3WImzFZUzHTT6c4omrD.jpg,308531-91314-127585-119450-184315-102382-198663-138103-118340-168259-240832-76338-100402-49017-122917-124905-82702-49521-177572-102651-137113", + "embedding" : [ 0.0069948006, -0.03160588, -0.019305512, -0.044926684, -0.017595595, 0.032653894, -0.0030975004, -0.01501693, -0.02575907, -0.042610023, 0.034170758, 0.025896966, 0.025524644, 0.01208663, 0.002466624, -0.016037365, 0.027151823, -0.023566514, 0.019264143, -0.025455697, 0.008356529, -0.0019719203, -0.01617526, -0.007811838, 0.009935444, 0.0106594, 0.01860224, -0.019512357, -0.010107814, -0.02694498, 0.022490922, 4.546276E-4, 4.07495E-5, -0.016313158, -0.035715196, 0.016451055, 0.02253229, -0.017857598, 0.01781623, -0.00968723, 0.012658901, 9.014985E-4, -0.010238816, -0.019140037, -0.03160588, -2.3614778E-4, 0.005515861, -0.013548332, -0.012100419, 0.034391392, 0.041451693, 0.030750923, -0.019622674, -0.021111956, -0.014410186, -0.004595401, -0.009370068, -0.011183407, 0.0052021462, 0.0014289527, 0.01581673, -0.0041644746, -0.026807083, -0.008073841, -0.01048703, -0.011535044, 0.0026407184, -0.006505268, 0.0044299257, -0.004174817, 0.025979703, 0.015499569, 0.011135143, -0.006270844, 0.019843308, -0.028130889, -0.028737634, -0.0013651755, -0.0049953014, -0.0039369455, 0.008963274, -0.008887431, -0.015154827, -0.0063260025, 0.019388251, -0.0022356473, -0.010831771, 0.016037365, -0.035715196, 0.0075843083, -0.004360977, 0.036266785, 0.008356529, -0.0060984734, -0.0063915034, 0.030171758, -0.033839803, 0.015982207, -0.021649754, -0.034887817, 0.0018098918, -0.021236064, -0.0052021462, -0.020863743, -0.007487781, -0.0034146626, 0.0075774137, -0.011017932, 0.020491423, -0.005736495, 0.0016280407, 0.008825377, 0.010169868, -0.037535433, 0.005626178, -0.018271288, 0.022821873, -0.025069587, -0.013348383, -0.0130588, 0.020339737, 0.027400037, -0.011528148, -0.031909253, 0.046250492, 0.03290211, 0.010245712, -0.009190802, -0.0123762125, -7.933359E-4, 0.03403286, -0.013286329, 0.029592592, 0.018491922, -0.015485778, 0.056758206, -0.021029219, -6.149323E-4, -0.029840806, -0.021249853, 0.03924535, 0.025000637, -0.021884177, -0.0049022213, -0.02497306, -0.0030440656, 0.0062087905, -0.007625677, 0.021346381, 0.0050918288, 0.024255997, 0.009425227, 0.012665795, 0.023401039, 0.024200838, -0.0032078177, -0.020725846, 0.0069017205, -0.0013832744, -0.020325946, -0.0037542325, -0.015168617, -0.008721954, -0.01404476, 0.008777114, 0.024007784, 0.03207473, -0.0065604267, -0.004685034, 0.008066946, -0.014368817, 0.025938334, -0.03174378, 0.0150582995, -0.007163724, 0.008011787, -0.002044316, -0.01088693, -0.030364813, -0.01464461, 0.0062087905, 6.601796E-4, 0.019967416, 0.04192054, -1.2572284E-4, 0.0071568293, 0.02458695, -0.011907364, 0.003881787, -0.015003141, 6.709527E-4, 0.028213628, 0.020353526, -0.008970168, -0.63366205, -0.014630821, -0.0014617031, -0.008391003, 7.989379E-4, 0.01862982, -0.0052504097, 0.010493925, -0.024780003, -0.006960327, -0.0349154, 0.015982207, 0.019457199, -0.021622173, -0.023607884, -0.027924044, 0.013665545, -0.01780244, 0.012334843, 0.016354527, -0.016161472, 0.0013712085, 0.02293219, -0.0041541327, 0.0035439404, 0.012541688, -0.0057227053, -0.006460452, 0.022642609, 0.0029130639, -0.027910255, 0.007846312, 0.0110041415, -0.01268648, 0.03690111, 0.008294475, -0.016051155, 0.057034, 0.016464844, 0.034143176, -0.030833662, -0.009928549, 0.0075429394, 0.010162973, -0.010755928, 0.021939335, 0.019843308, -0.008790903, -0.011279935, 0.009404542, 0.0068672467, -0.0021115404, -0.006270844, -0.018147182, -3.7038143E-4, -0.0064880312, -0.0051125134, -0.02970291, 0.027951624, -0.003881787, -0.021704912, 0.017664544, -0.0014461897, 0.015154827, 0.0048780893, 0.025607383, -0.002976841, -0.0069327476, -0.0026252049, -0.033067584, 0.02728972, 0.019760571, -0.013886179, 0.0033457142, 0.0130243255, 0.029509854, 0.0379767, -0.0046746917, 0.0046746917, 0.012500319, 0.0013539714, 0.009239066, -0.010728349, 0.022353025, 0.025772858, -0.00712925, -0.040486418, 0.013155327, 0.012783007, -7.1878557E-4, 0.015651254, 0.0028992742, 0.0043988987, -0.003699074, -0.0035853095, -0.01621663, -0.014796296, 0.0063915034, 0.029923543, -0.06674191, -0.007818732, -0.019484777, 0.022297867, -0.028572159, 0.012038366, 0.0010135394, -0.0058330228, 0.0067638243, 0.024518, -0.01700264, -0.022642609, -0.0031492116, -0.008356529, -0.016189052, 0.0017590424, -0.03133009, 0.013079485, 0.008163474, -0.008287581, -1.9143915E-4, -0.0022270288, 0.0038300757, 0.0032974505, -0.02530401, 0.016437264, 0.015540937, -0.0044885315, -0.0017245683, 9.170118E-4, 0.019567516, -0.0034215574, -0.00851511, 0.01981573, -0.021291222, 0.012107315, 0.008487531, 0.027262142, -0.0013427673, 0.006201896, 0.006770719, -0.018271288, -0.0141757615, -0.02417326, -0.01621663, -0.0099630235, -0.031385247, -0.03474992, -0.01147299, -0.016961271, -0.006019183, -0.012038366, 9.230448E-4, 0.008142789, 0.022270286, 0.007094776, 0.0071361447, -0.03163346, -0.017636964, 0.012700269, -0.0053572794, -9.213211E-4, 0.009811337, -0.012259, -0.030309655, 0.0150582995, 0.0045850594, 0.009859601, 0.013713809, 0.014410186, -0.02567633, 0.007922155, -0.024904111, 0.0019098667, 0.016492423, -0.018450554, 0.025124745, -0.013782756, 0.015375461, 0.0064156353, -0.0064156353, 0.010176763, -0.022752926, -0.015113458, -0.013982707, 0.016064944, 0.020643108, 0.026476132, -0.007598098, -0.0044126883, 0.012810586, -0.016354527, -0.017678333, -0.0021046456, -0.0137965465, 0.011169618, 0.019801939, 0.012548583, 0.0119349435, -0.0021270537, 0.010521504, 0.018933192, 0.011410937, -0.002237371, -6.0933025E-4, 0.012162473, -0.041286215, -0.0011066195, -0.034529287, 0.008777114, -7.898885E-4, 0.02928922, -0.010880035, -0.020325946, -0.008784008, 0.0071499343, 0.016354527, -0.0108938245, -0.0012195223, -0.0018116154, 0.006012288, 0.010824877, -0.0073360945, 0.0011617781, 0.019801939, -0.022297867, 0.014741138, 0.017126746, -0.015940838, -0.011921153, -0.01820234, -0.006088131, -0.0011996997, 0.0047712196, 0.008156579, -0.004891879, 0.009011538, 0.015927048, -0.008597848, 0.027413826, -0.014313659, 0.0058743916, 0.027400037, 0.012148683, 0.011293724, 0.018298868, -0.02058795, 0.018478133, 0.017319802, -0.007935945, 0.037783645, -0.021567015, 0.019691622, -0.007029275, -0.0014668741, 0.013431121, -0.013941337, 0.0028768661, 0.01738875, 0.03866618, 0.008370318, 0.02177386, -0.031578302, 0.018271288, 0.02334588, 0.018023076, -0.011176513, -0.016933693, -0.0012953654, -0.008108315, -0.041258637, -0.018836664, -0.022091022, 0.0065087155, 0.0020012232, -0.01384481, -0.020422474, -0.016919902, 0.01263132, 0.00160908, 0.023897465, 3.3073616E-4, -0.033508852, 0.014313659, 0.026103811, -0.0075705186, -0.026352024, -0.012121104, -0.0013763796, -0.029041005, -0.010880035, 0.008080736, 0.031771358, 4.2597097E-4, 0.025055798, -0.02377336, -0.010611136, 0.014341238, -0.021939335, 0.010149184, 2.2515915E-4, 0.005643415, 0.014286079, -0.00950107, -0.0048711943, 0.029068585, 0.005209041, 0.0038059438, 6.472518E-4, 0.00672935, -0.009976813, 0.003447413, 0.009039117, -0.04986338, 0.019429618, 0.007356779, -0.017967915, -0.008142789, 0.0032560814, -0.015127248, -0.006243265, -0.014989351, -0.04602986, -0.021580804, 0.012321054, 0.0798145, 0.040127885, 0.011376463, 0.0027079429, -0.011052405, 0.0038990239, -0.0052021462, -0.0025097167, 0.005371069, -0.031192191, 0.015375461, 0.006336345, 0.020808585, 0.018795295, 0.022835663, -0.0016297644, -0.00434374, -0.0058330228, -0.0019426171, -0.022284077, -0.029675331, -0.01701643, 0.030309655, 0.028048152, 0.002654508, -0.013382857, 0.029206483, 0.0021356724, 0.0036508103, 0.012155578, 0.0017805888, 0.014451555, 0.0031319747, 0.014099918, -0.0044195834, -0.00375768, 0.03990725, 0.019181406, 0.025869386, 0.0018116154, 0.017154327, 0.01663032, 0.0106731905, -0.0076877307, 0.0067879558, -0.026793294, -0.02180144, 0.020932691, 0.03193683, -0.03841797, 0.017898967, -0.0075705186, -0.029868385, -0.009707915, 0.032571156, 0.0091425385, 1.0051363E-4, -0.011100669, -0.01743012, 0.0116039915, 0.0022115153, -0.029123744, 0.009818232, -0.024159469, 0.004426478, -0.013286329, -0.010576663, 0.017926548, -0.021043008, 4.9125636E-4, 0.017526647, -0.027151823, -0.015003141, -0.0025545328, 0.0058985236, 0.0063294503, 0.02136017, -0.0057296003, 0.0136862295, 0.005553782, -0.028958268, -0.031054296, 0.007287831, -0.021953125, 0.003840418, 0.0019408935, -0.008846061, 0.013865495, -0.0075291498, 0.01981573, -0.0036232308, -0.013431121, -0.025014428, -0.0018857348, 0.030806081, 0.0055882563, 0.005026328, 0.011583308, 0.003723206, -0.0034715447, -0.0050125383, -0.021456698, -0.014685979, -0.013651755, -0.028130889, -0.0064087408, -0.0064880312, 0.014796296, -0.019539936, -0.017319802, -0.028061941, -0.02493169, 0.0049539325, -0.0014263671, 0.0040024463, 0.0054158857, 0.018891823, 0.008604743, -0.005371069, 0.014975562, 0.004409241, -0.008735744, 0.014313659, 0.026324445, 0.0069775637, 0.03334338, -0.0045643747, -0.022228919, 0.007556729, 0.017650753, 0.0042851344, 0.01820234, -0.02098785, -0.009390753, -0.009776863, -0.015403041, 0.0010264672, -0.0025700463, -0.017595595, 0.011162723, -0.017223274, 0.010555978, 0.012417581, 0.0014203341, -0.0112247765, -0.021332592, 0.003006144, -0.008004893, 0.015265144, 0.022022074, -0.019622674, 0.012996746, -0.014548083, -0.0104525555, -0.006546637, -0.021470487, -0.022725346, -0.002271845, 0.031964414, 0.0044437153, 0.037700906, -0.016492423, 0.025731489, 0.010680085, 0.015292724, 0.024945479, -0.0067845085, -0.011707414, -0.021842808, -0.007811838, 0.011969417, 0.036542576, 0.0075498344, -0.006019183, 0.002271845, 0.035411824, 0.013886179, 0.027000139, 0.0035956516, -0.032984845, -0.02294598, 0.014851455, -0.02417326, -0.0104525555, -0.015292724, -0.014975562, 0.041589588, -0.011148933, -0.017540436, -0.014782506, 0.012279685, -0.007991103, 0.0040127886, -0.014437765, 0.030557867, -0.017967915, 0.0048401677, -0.015513358, -0.02294598, -0.0019512357, -0.023952626, 0.008673691, -0.005060802, -0.010266395, 0.0061157104, 0.015251354, -0.012114209, -0.017650753, 0.02338725, -0.0026958769, -0.0048056934, -0.026476132, -0.0057813115, -0.034115598, -0.012231421, -0.022297867, -0.0034250047, 0.004802246, -0.03759059, -0.029206483, 0.036156468, -0.0060053933, 0.038252495, 0.0129760625, 0.039052293, 0.029592592, 0.0147273475, -0.011162723, 0.021663543, -0.0021098168, -0.010983458, 0.01857466, 0.018878033, -0.010107814, -0.0016194222, 0.00868748, -0.01384481, -0.035687618, -0.04147927, 0.03880408, 0.030226916, 0.01974678, -0.03634952, -0.0088115875, -0.026614027, 0.0011445411, -0.01365865, 0.0029354722, -0.0017374961, -0.025690122, -0.0029096166, -0.0017142261, 0.0019874335, 0.011107564, -0.004360977, -0.026352024, 0.02022942, -0.025428118, -0.010811087, -0.0076601515, -0.009156329, 0.031826515, -0.0057330476, 0.012555478, 0.0042403177, 0.004685034, 0.0016254552, 0.006084684, 0.0011660875, 0.031164613, -0.016878534, 0.023925046, -0.006670744, -0.018891823, 0.0047298507, 0.022077233, -0.021180905, -0.02375957, -0.029895965, -0.0039679725, 0.021980705, 0.008935695, -0.0014573938, 0.0056916787, -0.018533291, -0.010121604, 0.016299369, -0.008073841, 0.010466346, -0.036652893, 0.017926548, -0.011707414, 0.018767716, -0.009625177, 0.005767522, 0.0026993244, -0.014589451, 0.0053400425, -0.007163724, 0.002683811, -0.025883175, -0.0147273475, -0.027138034, -0.02053279, 0.0044678473, -0.009025327, 0.00631566, -0.026172759, 0.010569768, -0.0046988237, -0.010128499, -0.009480385, -0.001098001, -0.007005143, -7.0025574E-4, 0.009204593, -0.0067914035, -0.0011652255, 0.0026924296, 0.040017568, -0.006846562, -0.010790402, -0.010307765, 0.012327949, 0.022325447, -0.020312157, 0.0053469376, 0.0038300757, -0.02414568, 0.004092079, 0.002988907, 0.01937446, 0.012141788, 0.007935945, -0.035494562, 0.001332425, -0.019512357, 0.027165614, -0.0016064944, 0.007997998, 0.021553226, 0.023483777, 0.024738634, 0.02653129, -0.0011945285, -0.035797935, 0.014699768, 0.0049470374, -0.02575907, -0.01207284, 0.002652784, 0.009066696, 0.009494175, -0.0064880312, -0.02964775, 0.0046884813, -0.020408684, -0.021470487, -0.012900219, 0.021429118, 0.044871528, 0.0043988987, 0.0023735438, 0.014030971, 0.0018426422, 0.013582807, -0.011231671, 0.0010187106, 0.028958268, 0.01263132, 0.03044755, 0.0281171, -0.039521143, 3.9903805E-4, 0.008859851, 0.012210736, 0.0043092663, 0.030557867, -0.03792154, -0.006012288, -0.00931491, 0.0029975255, -0.0038679973, -0.005946787, 0.018271288, -0.03913503, -0.004767772, 0.0014168867, 0.023083877, -6.334621E-4, 0.010880035, 0.011941838, -7.317134E-4, 0.0057985485, 0.0024235314, -0.0091425385, 0.020546582, -0.018919403, 0.044816367, 0.01128683, 0.009611387, 0.029868385, 0.019277932, 6.847424E-4, 5.001442E-5, -0.0093287, 0.0026027968, -0.014699768, -0.0046022963, -0.010259501, 0.023456197, -0.030557867, 0.029923543, -0.035439406, 0.0062639494, 0.0065156105, 0.012348633, 0.0065983483, 0.020146681, 0.012810586, -0.048953265, 0.0036128887, -0.0029234062, -3.458186E-5, -0.007370569, -0.0062501593, -0.023097666, -0.007563624, -0.0025459144, -0.0046298755, -0.018354027, -0.029482275, 0.0014332619, -0.025152324, -0.016685478, 0.0119349435, 0.18489164, -0.006774166, 0.008597848, 0.040844947, -0.004498874, 0.015527148, 0.030171758, 0.03400528, -0.014120603, 0.017650753, -0.0020253551, 0.008273791, 0.0079428395, -0.0014884205, 0.02421463, -0.0062742913, -0.013610386, -0.02773099, -0.009308015, -0.028544579, -0.016933693, 0.008846061, -0.0046712444, -0.024752425, -0.014099918, 0.021236064, -0.0025321248, 0.004774667, 0.019319301, -0.006019183, -0.009583808, -0.020339737, 0.0050228806, -0.004767772, -0.008018683, -0.008466846, -0.0065983483, 0.0032388445, 0.0122658955, -7.426751E-6, -0.0114936745, -0.010356029, -0.0032750422, -0.02137396, -0.0028872082, 0.028737634, -0.03174378, -0.0018185104, -0.01817476, 0.0096941255, -0.03725964, 0.00554344, 0.022270286, 0.020891322, 0.00306475, -0.00465056, 0.009135644, 0.005726153, -0.010307765, 0.007908365, 0.024283577, 0.03367433, -0.032212626, -7.3947007E-4, 0.004323056, 0.0064190826, -0.025938334, -9.937168E-4, 0.007984208, -0.035549723, -0.0030561315, -0.039714195, -0.006381161, 0.015499569, -0.009376963, -0.02181523, 0.0136862295, 0.014741138, 0.007598098, 0.02057416, -0.02766204, -0.008170368, 0.014741138, -0.010769718, -0.02053279, -0.01424471, 0.009266646, -0.02137396, -0.0069913534, 0.0011833245, -0.022284077, -0.039465982, -0.0105146095, 0.01325875, -0.0054986235, 0.008935695, 0.02375957, -0.0026751924, -0.014796296, -0.009342489, -0.03326064, 0.015609886, 0.045423113, 2.7406932E-4, -0.028048152, -0.018119602, -2.1018446E-4, 0.016561372, 0.034667183, -0.015085879, -0.008466846, -0.00831516, -0.0042713447, -8.243626E-4, 0.009190802, 0.013713809, 0.0052055935, -0.0034267283, 0.01936067, -1.4576093E-4, 0.011748783, -0.019553727, 0.0017926547, 0.0013824126, -0.011610887, -0.024021573, -0.037811223, 0.0078807855, 0.008522005, -0.017237065, 0.006798298, -0.03998999, 0.011914259, -1.650449E-4, -0.008618533, -0.0063087656, 0.021167114, -0.00682243, 0.018643608, 0.004385109, -0.021111956, -0.011307514, 0.007191303, -0.0061398423, 0.009039117, -0.01738875, 0.0017874836, 0.008928799, -0.0049470374, -0.028296364, -0.02217376, 0.007439517, 0.010528399, 0.003892129, 0.028241206, -0.0026510605, -0.02848942, -0.03400528, -0.023938835, 0.047657035, -0.040100306, 0.027441407, 0.012900219, -0.009735494, -0.031219771, -0.022877032, -0.17739008, 0.015375461, 0.013424226, -0.03127493, 0.021180905, 0.029565012, 0.031081874, 0.0028613526, 0.007391253, -0.0100733405, 0.027620671, 0.016078733, -0.032957267, -0.010880035, 0.0023097666, 0.013837915, -0.008342739, 0.031412825, 0.025855597, -0.0020115655, 0.04514732, -0.018905612, -0.0026372708, -0.004809141, -1.6200147E-5, 0.011714309, 0.0106731905, 0.012796797, 0.009645862, -0.009466596, -0.022904612, -0.0056399675, 0.018891823, 0.0037025216, -0.005829575, 0.014713558, -0.0010359476, -0.0039610774, -0.0049125636, -0.0057571796, 0.030916398, 0.017540436, 0.02137396, 0.0075774137, 0.005553782, 0.013417331, 0.03880408, -0.021663543, 0.0031440405, -0.014299869, -0.002166699, -0.034308653, 0.03204715, -0.020905111, 0.0021167116, 0.024518, -0.006219133, -0.0040300256, 0.007763574, -0.0050125383, -0.01783002, 0.005795101, 0.007997998, -0.012286579, 0.0029078927, -0.033122744, -0.01857466, -0.001961578, -0.035770357, 0.015306513, -0.030392392, 0.025097165, 0.021539437, 0.0016978509, 0.0016642386, -0.013624175, -0.025621172, 0.010293975, -0.010259501, 0.0014642887, -0.01207284, 0.02688982, -0.003006144, 0.01781623, 0.010390502, -0.008894325, 0.002537296, -0.00662248, 0.011624676, -0.012017681, -0.009383858, -0.015458199, -0.037811223, -0.006501821, 0.0048539573, 0.006353582, 0.013010536, 0.008846061, 0.0050125383, -0.027786149, 0.009066696, -0.02613139, -0.008852956, 0.016395895, 0.010838666, 0.008122105, -3.410784E-4, 0.025497066, 0.014768717, 1.2281409E-4, -0.017650753, -0.004733298, 0.015168617, 0.0065845586, -0.02177386, 0.0025183351, -0.024297366, -0.015209986, 0.011466095, 0.023166616, 0.058743916, -0.0030319996, 0.018643608, -0.0149479825, 0.009073591, -0.024421472, -0.0894121, 0.0034439655, 0.013148433, 0.041258637, -0.037700906, 0.031219771, -0.019912258, 0.025083376, -0.019967416, 0.02964775, 0.009563124, -0.028213628, 0.004388557, -0.0031991992, -0.006070894, -0.0024907559, -0.010597347, -0.009666545, -0.013927548, 0.024228418, -4.3652864E-4, -0.0036680473, 0.009004642, -0.008356529, -0.027758569, 0.014313659, -0.036542576, 0.024393894, 0.01227279, 0.004778114, 0.0072464617, -0.020463843, 0.015003141, -0.035411824, -0.018312657, -0.019967416, -0.025662541, -0.018285077, 0.0066259275, -0.042113595, 0.021567015, 0.008425477, 0.01047324, -0.022118602, -0.00691551, -0.0021891072, -0.030502709, 0.031964414, -0.017774861, -0.025193693, -0.0073843584, -0.012514109, -0.028213628, 0.0069741164, 0.009411437, 0.007887681, 0.010418082, 0.015706412, -0.02653129, -0.0141757615, -0.0019650254, -0.0130863795, -0.030640606, 0.011928049, 0.0056813364, 0.019608885, -0.008170368, -0.0068258774, 0.025538435, -0.020215629, -0.013120853, 0.021429118, -0.037618168, -0.017057799, -0.016644109, -0.0019943283, -0.016382106, -0.010831771, 0.030282075, -0.044678472, 0.01464461, -0.028572159, 0.00872885, -0.023111455, 0.0153892515, 0.023966415, 0.022821873, 0.013079485, -0.0021408433, -0.032405682, -0.0054331226, 0.021580804, 3.8740304E-4, -9.773416E-4, -0.0034043202, 0.024876531, 0.015527148, 0.0061501847, 0.0047470876, 0.0036921792, -0.007811838, -0.008397898, -0.077553004, 0.031716198, -0.033922542, -0.019043509, -0.0045712693, -0.03014418, 2.9152186E-4, 0.007604993, 4.7875947E-4, 0.025552224, 0.0014996246, 0.026724344, -0.0023683726, -0.008363424, -0.014355027, 0.00851511, 8.2306983E-4, -0.0011884955, 0.006312213, -0.0023683726, -0.00355773, 0.017885178, 0.02688982, 0.005736495, -0.0023856098, 0.021980705, -9.023603E-4, 0.013720703, -0.024421472, -0.020546582, 0.02810331, -0.018285077, 0.011714309, 0.012596847, -7.997998E-4, -0.03281937, -0.005009091, 0.0059847087, 0.006384609, 0.011748783, -0.013438015, -0.036790792, -0.0029337483, -0.0014823875, -0.0037680224, 0.010121604, -0.011011037, 0.0071499343, 0.0029130639, 0.008563373, 0.026186548, 0.0045609274, -0.018643608, -0.027551724, 0.03527393, -0.021470487, 0.056537572, -0.0037887068, 0.008225528, -0.0019271038, 0.029758068, 0.0027803385, 0.014382606, -0.02493169, -0.0018529844, 0.00870127, 0.004319608, -0.011590202, 0.010597347, -0.025386749, -0.02137396, -0.010211237, 0.0057744165, 0.035136033, 0.008184158, 0.0025941783, 0.006905168, 0.006939642, -0.012927799, 0.011597097, 0.013010536, -0.0085909525, -0.021553226, 0.028199837, -0.0016952653, 0.019636463, -0.0010169868, 0.0106594, 0.0010299146, 0.010707664, -0.010624927, 0.004791904, 0.017361172, -0.010280185, -0.0011816007, 0.015623676, -0.023787148, -0.017154327, 0.011279935, 0.016726848, 0.011838416, -0.014492923, -0.0028630765, -0.020243209, -0.026021073, 0.015223775, -0.029096166, -0.021236064, 0.026765713, 0.02410431, 0.017443908, 0.008528899, -0.017650753, 0.0052538575, -0.030530289, 0.013968917, -0.023704411, -0.021484276, -0.015127248, 0.04318919, 0.016382106, 0.0068431147, 0.04553343, -0.004785009, 0.038087018, 0.023676831, 0.021925546, -0.030613026, 0.0070603015, 0.0026562316, 0.008080736, -0.0016987127, -0.027358668, 0.008142789, -0.019677833, 0.006629375, 0.0036783896, 0.01660274, -0.0129760625, 0.07308515, 0.014768717, -0.009666545, 0.019388251, -0.024283577, 0.02724835, 0.008308265, 0.021718701, -0.006588006, -0.0153892515, -1.4425268E-4, -0.012555478, 0.0030078678, -0.035466984, -0.009549334, 0.0071844086, 0.009480385, 0.032267783, -0.017223274, -0.020505212, -0.007122355, 0.0078325225, 0.025207482, 0.001022158, -0.02181523, -2.4864465E-4, 0.028792793, -0.017209485, 0.0018288526, -0.023401039, -0.0058881813, -0.012031471, -0.003206094, 8.0454E-4, 0.029923543, -0.006670744, -0.0016780283, 0.006095026, 0.025166115, 0.0147273475, -0.00565031, -0.0062742913, -0.015306513, -0.01778865, 0.025221273, -0.014906613, -0.006687981, -0.03086124, -0.029041005 ], + "id" : "a0331287-ec27-4033-b554-5530a79e0948", + "metadata" : { + "source" : "movies.csv" + } + }, + "45ddd497-fed3-47d6-8fcb-b13ae22c89d7" : { + "text" : ",127380-269149-412117-335797-277834-278154-136799-332210-153518-211672-223702-295693-140300-278927-159824-105864-38757-297761-150540-324852-283366\r\n209112,Batman v Superman: Dawn of Justice,Action-Adventure-Fantasy,en,Fearing the actions of a god-like Super Hero left unchecked Gotham City��s own formidable forceful vigilante takes on Metropolis��s most revered modern-day savior while the world wrestles with what sort of hero it really needs. And with Batman and Superman at war with one another a new threat quickly arises putting mankind in greater danger than it��s ever known before.,82.25,Warner Bros. Pictures-RatPac Entertainment-Atlas Entertainment-Cruel & Unusual Films-DC Entertainment,3/23/16,250000000,873637528,152,Released,Who will win?,5.951,17019,Ben Affleck-Henry Cavill-Jesse Eisenberg-Gal Gadot-Amy Adams-Diane Lane-Jeremy Irons-Holly Hunter-Laurence Fishburne-Callan Mulvey-Scoot McNairy-Tao Okamoto-Jena Malone-Lauren Cohan-Brandon Spink-Hugh Maguire-Michael Cassidy-Alan D. Purwin-Dan Amboyer-Rebecca Buller-Harry Lennix-Christina Wren-Jade Chynoweth-Chad Krowchuk-Kevin Costner-Ezra Miller-Charlie Rose-Vikram Gandhi-Andrew Sullivan-Neil deGrasse Tyson-Jon Stewart-Soledad O'Brien-Erika R. Erickson-Dana Bash-Nancy Grace-Anderson Cooper-Brooke Baldwin-Jason Momoa-Joe Morton-Ray Fisher-Joseph Cranford-Emily Peterson-Patrick Wilson-Carla Gugino-Sammi Rotibi-Hanna Dworkin-Tiffany L. Addison-Owais Ahmed-Anish Jethmalani-Tiffany Bedwell-Natalee Arteaga-Keith D. Gallagher-Jeff Dumas-Miriam Lee-Alicia Regan-Stephanie Koenig-Ripley Sobo-Richard Burden-Julius Tennon-Wunmi Mosaku-Dennis North-Kiff VandenHeuvel-Mason Heidger-Ahney Her-Kristine Cabanban-Sebastian Sozzi-Kent Shocknek-Ralph Lister-Sammy A. Publes-Jay R. Adams-David Midura-Jay Towers-Michael Ellison-Kirill Ostapenko-Rashontae Wawrzyniak-Tom Luginbill-Dave Pasch-Danny Mooney-Henry Frost III-Nicole Forester-Debbie Stabenow-Milica Govich-John Lepard-Sandra Love Aldridge-Graham W.J. Beal-Henri Franklin-Jonathan West-T.J. Martinelli-Chris Newman-Lulu Dahl-Sam Logan Khaleghi-Anne Marie Damman-Connie Craig-Henrietta Hermelin-Patrick Leahy-Albert Valladares-David Paris-Abigail Kuklis-Greg Violand-Tiren Jhames-Steve Jasgur-Jonathan Stanley-Jesse Nagy-Duvale Murchison-Thomas J. Fentress-Coburn Goss-Jeff Hanlin-Gary A.", + "embedding" : [ 0.0058686407, -0.034841053, -0.014872167, -0.029178033, -0.038966965, 0.020764405, -0.006101229, -0.011845149, -0.037214126, -0.030391537, 0.029825235, 0.03136234, 0.020036303, -0.0061450503, 0.004500078, 0.022409376, 0.012553026, -0.025065603, 0.0040247887, -0.03826583, 0.0052888556, 0.0021202613, -0.012371001, 0.009114765, -0.0030152206, 0.01651714, 0.024526266, -0.024431884, -0.011400198, -0.0040146764, 0.012539543, -0.006890007, -0.021816108, -0.016395789, -0.014103615, 0.0055585233, 0.007827102, -0.007651818, 0.03303428, -0.013335062, 0.009081056, 0.009445108, -0.003933776, -0.010126018, -0.013476638, -0.008076544, 0.010840637, -0.017339626, 7.432713E-4, 0.021573408, 0.02629259, 0.039155733, -0.025416171, -0.018243013, -0.013355288, -0.021694757, 0.0032781467, 0.0048304205, 0.008629363, -0.0067450604, 0.016625008, -0.008069803, -0.03163201, 0.0022197014, -0.016854225, -0.028180264, -0.010577711, -0.01564072, -0.0072203497, 0.01141368, 0.041447908, 0.031578075, 0.015236218, 0.004395582, -0.0013584505, -0.028395997, -0.030418504, 0.0014511488, 0.0045708655, 0.002071384, 0.012418193, -0.0120608825, -0.020319453, -0.0055214437, 0.020777889, 0.019820567, -0.007321475, 0.0046214284, -0.035461288, 0.021438573, 0.007941711, 0.021492507, 0.018890215, 0.016827257, 0.005022559, 0.021789141, -0.021910492, 0.02071047, -0.021492507, -0.04293108, 0.023906032, -1.3062023E-4, -0.007105741, -0.006691127, -0.006930457, 0.0023511644, 0.0011705259, -0.0037719754, 0.013092361, 9.497355E-4, -0.0076990095, -0.0034247783, 0.02079137, -0.0290432, -0.005754032, -0.007604626, 0.007672043, -0.02213971, -0.0067214645, -0.015033968, 0.011265364, 0.029151067, 0.0061180834, -0.013193487, 0.04177151, 0.018944148, -0.0026781363, -0.01005186, 3.1443662E-5, -0.012451901, 0.04220298, 0.0011612561, 0.024270084, -0.006391122, -0.02338018, 0.060351606, -0.026144274, 0.010584453, -0.026117306, -0.009943992, 0.019213816, 0.031389307, -0.0127148265, -0.018782347, -0.025672354, 0.0016298034, 0.0120474, -0.017326143, 0.018377846, 0.018971115, 0.023488047, 0.02170824, 0.0055787484, 0.029474668, 0.0071327076, 0.008460821, 0.0039405175, -0.012162008, 0.020157652, -0.013564279, 0.012883369, -0.005649536, 0.009640616, -0.017177826, -0.009883317, 0.021168906, 0.022908261, -0.020616088, -0.0294477, -0.009714775, -0.005036042, 0.017258726, -0.016422756, 0.026858892, -0.012162008, 0.02062957, -0.0021725094, -0.015101385, -0.026440907, -0.023973448, 0.0026022922, 0.0015868252, 0.033330914, 0.045142356, -0.00881813, 0.01216875, 0.032441013, -0.03195561, 0.0023966706, -0.011575481, 0.0030539855, 0.030472437, -0.0058618993, -0.008359695, -0.6377099, -0.015977805, -0.0067989943, -0.0241757, 0.026939793, 0.0075709177, 0.008629363, 0.011110305, -0.031038739, -0.024324017, -0.032225277, 0.016193539, 0.014265415, -0.024593685, -0.023798164, -0.012842919, 0.0039540012, -0.027721828, 0.007672043, 0.017609295, -0.0244993, 0.018499197, -3.3160686E-4, -0.007867552, -0.010227144, 0.008595655, -0.0036169165, -0.022625111, 0.019416066, -0.00514728, -0.02633304, 0.021923974, 0.026238656, 0.010308044, 0.03130841, 0.00889903, -0.0052214386, 0.0390209, 0.040719807, 0.032818545, -0.03012187, 0.009546232, 0.006667531, 0.01584297, -0.027506094, 0.02242286, 0.019173365, -0.017150858, 0.01576207, -0.006057408, -0.0029612873, -0.0048978375, -6.2908395E-4, -0.011514806, 0.0063574133, 0.017649744, 0.012330551, -0.046382826, 0.009964217, 0.010308044, -0.0051776175, 0.021034071, 0.006957424, 0.0018691334, -0.007038324, 0.038724266, 0.015249702, -0.009182181, 0.003008479, -0.018296946, 0.006081004, 8.5535186E-4, -0.008629363, -0.012997977, 0.019416066, 0.0047461498, 0.01576207, -0.0018455376, 0.007024841, 0.02087227, 0.009236115, -1.7286114E-4, -0.013375512, 0.0033725302, 0.02234196, -0.0067046103, -0.033303946, -6.573147E-4, -0.003183763, 0.006977649, 0.007294508, 0.01456205, 0.022813879, 0.0010997382, -0.01472385, 0.008265312, 0.005689986, 0.002398356, 0.013982264, -0.05981227, -0.005760774, -0.008508013, 0.020305969, -0.0045068194, 0.021559924, 0.008400145, 0.0054000933, -0.012681118, 0.021411607, -0.009735, -0.006937199, -0.0013019888, -0.02437795, 0.010152984, 0.008959706, -0.02054867, 0.0062866258, 0.0034416327, -0.0060237, 0.0047461498, 0.0048708706, 0.021371156, 0.0075304676, -0.0045337863, 0.018863248, 0.041313075, 0.00438884, 0.003203988, -0.0014511488, -0.008764197, 0.0058147074, 0.005389981, 0.011130529, -0.0155598195, 0.0072270916, 0.007193383, 0.0055989735, -0.008521495, 0.0071866415, 0.009141731, -0.0290432, 0.0046382826, -0.027748795, -0.008096769, -0.015033968, -0.02521392, -0.04142094, -5.195315E-4, -0.01663849, 0.0077327183, -0.029744335, 0.016692424, 0.0014646321, 9.2613965E-4, -0.012546285, -0.003043873, -0.015020485, -0.016099155, 0.015829487, -0.023407146, 0.0062697716, 8.713634E-4, 8.705207E-4, -0.03575792, 0.025645388, -0.0042978274, -0.026090339, 0.002693305, 0.008319245, -0.025052119, 0.01763626, -0.024822902, -0.0074563087, 0.016153088, -0.0063574133, 0.02861173, -0.026885858, 0.026481356, 0.0068495567, -0.00837992, 0.0138339475, -0.0046079447, -0.028584765, 0.005339418, 0.030849973, 0.022732979, 0.0104765855, -0.010746254, -0.013355288, 0.0051405383, -0.014359799, -0.021088006, -0.00730125, -0.016031738, 0.0027303842, 0.026548775, 0.0048843543, 0.012229425, 0.010874346, 0.014386766, 0.03969507, 0.03351968, -0.0035663538, -0.002059586, 0.012923819, -0.0289623, -0.0024421772, -0.024216149, 0.0055753775, -0.030391537, 0.029205, -0.016463207, -0.037591662, 0.0069237156, 0.012472126, 0.019025048, -0.031658974, 0.010820412, -0.0028787015, -0.007018099, 0.012944045, -0.015546337, 0.014144065, 0.0062697716, -0.018795831, 0.0018961002, 0.02046777, -0.009579941, 0.0024624022, -0.01332832, -0.008622621, 0.009451849, -0.0030101645, -0.010901312, -2.2352915E-4, -0.0072270916, 0.030364571, -0.012438417, 0.04018047, -0.0021253177, -1.9182214E-4, 0.0017494685, 0.0387782, -0.007213608, -0.008784422, -0.020238552, 0.01663849, 0.024634134, -0.013065395, 0.03643209, -0.023541981, 0.012303583, -5.4249536E-5, 0.008919256, 0.022759944, -0.006296738, -7.6433906E-4, 0.010409169, 0.027694862, 0.011791215, 0.01148784, -0.018202562, 0.018687963, 0.015276669, 0.012236167, -0.00889903, -0.027694862, -9.118135E-4, -0.008811388, -0.02828813, -0.017757611, 0.0015446896, 0.0071259663, 0.004500078, -0.008743972, -0.012815952, -0.0131800035, 0.01759581, 0.020144168, 0.022935228, -0.0029528602, -0.03327698, 0.0031989317, 0.032225277, -0.007213608, -0.009815901, -0.014103615, -0.023730747, -0.031146606, -0.004041643, -9.573199E-4, 0.024566717, -0.020130686, -0.0137867555, -0.0070922575, 0.009141731, 0.0026242028, 8.8990305E-4, -0.0038360215, 0.03435565, -0.0010584453, 0.01871493, 0.005757403, 0.0022197014, 0.024040865, -0.00829902, 0.017258726, -0.010766478, -0.0032848883, -0.021249807, 0.001677838, 0.0131328115, -0.048459265, 0.029663434, -0.003227584, -0.01967225, 0.0024253228, -0.010112534, -0.0036202874, -0.01448115, -0.024836386, -0.03343878, -0.008400145, 5.2922266E-4, 0.075938396, 0.02729036, 0.005652907, 0.013078878, -0.014238449, 0.0028382514, -0.014413733, 0.005056267, -6.5352255E-4, -0.009209149, 0.032737646, -0.010766478, 0.0190655, 0.005909091, 0.028692631, -0.0101462435, -0.007712493, -0.0145216, 0.005929316, -0.01137323, -0.03028367, -0.0064922473, 0.028395997, 0.0384546, 0.009546232, -0.015519369, 0.008669813, 0.015708137, -0.004129285, 0.014090132, -0.0068562985, -0.0029865685, 0.002378131, 0.014508116, 9.2024065E-4, 1.936129E-4, 0.013173262, 0.009276565, 0.035488255, 0.0061956127, 0.0039742263, 0.008487787, 0.006734948, -0.00534616, 0.018175596, -0.027195977, -0.003822538, 0.004998963, 0.04560079, -0.044225484, 0.016247472, -0.0034888245, -0.024822902, -0.005403464, 0.01951045, 0.0011831665, 0.004092206, 0.003502308, -0.036378156, -0.0045304154, 0.006519214, -0.027640928, 0.009856351, 0.002209589, -0.004132656, -0.014305865, -0.007011357, -0.010800187, -0.009013639, 0.022085775, 0.008743972, -0.021802625, -0.015060935, -0.009472074, 0.022935228, -0.020966655, 0.03136234, -0.009465332, -0.0052079554, 0.012485609, -0.043874916, -0.039802935, 0.015384536, -0.017730644, -0.0011738967, 0.010072084, -0.010490069, 0.021775657, -0.016166572, 0.017757611, -0.004176477, -3.8891123E-4, 1.8539646E-4, -0.018189078, 0.039802935, 0.00566639, 0.0033657886, 0.015344086, 0.02134419, -6.236063E-4, 0.012067624, -0.018944148, -0.0149530675, -0.013860914, -0.010442877, -0.0069034905, -0.0023949852, 0.0121080745, -0.029474668, -0.021681273, -0.032063477, -0.022908261, 0.005325935, -2.2479321E-4, 0.008352954, -0.012296842, 0.024809418, 0.0037011877, -0.0011494581, -0.0014191257, -0.013011461, -0.00574392, 0.0016264326, 0.023892548, -8.837934E-5, 0.029205, -0.010011409, -0.018809315, 0.0061787586, 0.028989267, -9.901857E-4, 0.0050326716, -0.019402582, -0.013732822, -0.01759581, -0.02617124, 0.01651714, -0.004756262, -0.022962196, 0.013382254, -0.027222943, 0.003279832, 0.003502308, -0.0029275788, -0.01831043, -0.026400456, 0.014845201, -0.0063978634, -0.004105689, 0.016139606, -0.005518073, 0.011393456, -0.032575846, -0.0043989527, -0.011433906, -0.025443137, -0.013928331, -0.007240575, 0.049376134, 0.016072188, 0.034059018, -0.0014789582, 0.024148732, 1.8234164E-4, 0.0049416586, 0.018984599, -0.021586891, -8.418685E-4, -0.02633304, 0.0055753775, 0.008447337, 0.036324225, 0.004193331, 0.010867604, 0.030175803, 0.023852099, 0.003411295, 0.015141835, -0.002366333, -0.009640616, -0.009269823, -0.008831614, -0.017811544, -0.0042540063, -0.038562465, -0.025780221, 0.04495359, -0.003606804, -0.011723799, -0.016314888, 0.031551108, -0.013860914, 0.011069855, -0.014939585, 0.022328475, -0.02513302, 6.299266E-4, -0.0241757, -0.0017149174, 0.009660841, -0.010955246, 0.0148586845, 0.0016298034, -0.027937563, -0.0042978274, 0.022732979, -0.032009542, -0.037564695, 0.027061142, -0.0018927294, -0.011130529, -0.031227507, 6.525745E-5, -0.040450137, -0.003798942, -0.0030624126, -0.0030354457, 0.010233885, -0.017326143, -0.046409793, 0.023366697, -0.0071731578, 0.021991393, 0.009370949, 0.0488368, 0.022625111, 0.009424882, -0.01747446, 0.0049450295, -0.015128352, -9.059146E-4, 0.018364362, 0.011474356, -0.0055888607, -0.013537313, -0.016611524, -0.004129285, -0.042229943, -0.036539957, 0.040638905, 0.023852099, 0.02142509, -0.02274646, -0.015977805, -0.020723954, 0.012815952, 0.011366489, 0.0010786704, 0.006691127, -0.025079086, -0.01077322, 0.011238397, -0.0032562362, 0.009917025, 0.011757507, -0.026697092, 0.014386766, -0.0038798423, 0.011838407, -0.02561842, -0.0064180885, 0.03502982, -0.02087227, 0.013550797, 5.3849246E-4, 0.022800395, -0.005989991, -0.0048540165, 0.005079863, 0.028261164, -0.0068765236, 0.01851268, -0.0015590157, -0.004425919, 0.00333208, 0.020575637, -0.016287923, -0.016153088, -0.028584765, -0.0019584608, 0.018269978, 0.008251828, -0.006647306, -0.006539439, -0.018687963, -0.019496966, 0.005406835, -0.007361925, 0.011656381, -0.030661205, 0.014400249, -8.646217E-4, -0.017865477, 0.0154654365, 0.0042573772, 0.017096926, -8.410258E-4, 0.014548566, -0.011683349, 0.0072675417, -0.015505887, -0.004806825, -0.045385055, -0.022004874, 0.002410154, -0.022261059, 0.010658612, -0.0120136915, 0.009000156, -0.010719286, -0.0149530675, -0.012202458, -0.0020494736, -0.019132916, -0.0026242028, 0.023622882, -0.0058180783, -0.015033968, -0.007854069, 0.021357672, -0.00606415, -0.001173054, 0.013806981, 0.008905772, 0.03435565, -0.009708033, 0.02509257, 0.0077596847, -0.012263133, -0.011912566, 0.021681273, 0.023703782, 0.022234093, -0.013611471, -0.03311518, 0.016220506, -0.011474356, 0.013914848, -0.019631801, 0.0096338745, 0.029393768, 0.014966551, 0.025389204, 0.023474563, -0.010658612, -0.028234197, -0.008838356, -0.014197999, -0.014980035, -0.011386714, 0.0078608105, 0.009236115, -0.0031028627, -0.011703573, -0.022719495, -0.0195509, -0.0024843127, -0.023879064, -0.0022129596, 0.016099155, 0.043497384, 0.03236011, -0.007537209, 0.020117203, -0.003606804, 0.002836566, -0.017609295, 0.015317119, 0.01719131, 0.0241757, 0.013449671, 0.020022819, -0.03130841, -0.0024270082, 0.013800239, 0.007692268, 0.0037551213, 0.03794223, -0.014332833, -0.013092361, -0.0026865634, -0.0022112743, 0.004385469, -0.012964269, 0.02861173, -0.031605043, 0.005936058, 0.011218172, 0.019443033, -0.017568843, -0.0029713998, 0.001190751, -0.028395997, -0.012000208, -0.0024809418, -0.03419385, 0.003163538, -0.035353422, 0.020643054, 0.008036094, -0.0072473167, 0.026225174, 0.0154654365, -4.5211456E-4, 0.015816005, -0.00438884, 0.010800187, -0.014278899, -0.0058821244, 0.002241612, 0.020292487, -0.05199191, 0.020225069, -0.018768864, 0.0071394495, -0.0033489345, 0.0057675154, -0.020926205, 0.032494944, 0.016692424, -0.043011982, -7.495916E-4, 0.00329163, 0.010624903, 1.02442085E-4, -0.005150651, -0.021856558, 0.008116994, 0.016503656, 0.00570684, -0.017123891, -0.01743401, -0.013483379, -0.008663071, -0.0064956183, 0.002848364, 0.18272676, -0.01655759, 0.010914796, 0.047245763, 0.01759581, 0.008103511, 0.019577866, 0.0046247994, -0.012330551, 0.009593424, -0.006320334, 0.008892288, 7.698167E-4, -0.00119665, 0.02102059, 0.008245086, -0.02042732, -0.009667583, -0.022854328, -0.008278795, 0.001826998, 0.0078068767, -0.015411503, -0.024391433, -0.0037753463, -0.011770991, 0.0026157757, 0.005952912, 0.035515223, 0.010827154, -0.023973448, -0.0069439407, 0.010800187, 0.01627444, -0.024755485, -0.006455168, 0.011177721, 5.3554296E-4, 0.0037652338, 4.8750843E-4, -0.0033927553, 0.006707981, -0.027640928, -0.0049888506, 0.0035259037, 0.002106778, -0.020643054, -0.0049585127, -0.005649536, 0.021114971, -0.04360525, -0.0024185812, 0.02305658, 0.021802625, -0.012660894, -0.011757507, 0.014845201, 0.0029022975, -0.00730125, 0.00821812, 0.00506638, 0.031928644, -0.028342064, 0.017123891, -0.0043753567, 0.016139606, -0.027721828, 0.0034517453, 0.018135145, -0.024270084, -0.013874398, -0.025227403, -0.019766634, -3.861724E-4, -0.019496966, 0.003016906, 0.006674273, 0.022759944, 0.005063009, 0.027721828, -0.017663227, -0.015195768, 0.021721724, -0.014319349, -0.009735, -0.017231759, 0.011467614, -0.017231759, -0.018364362, -0.011514806, -0.008872064, -0.019456517, -0.0042270394, 0.01847223, -0.011872116, -0.016395789, 0.025443137, 0.020993622, 1.5042395E-4, -0.011427164, -0.028746566, 0.03268371, 0.0291241, 0.008622621, -0.013341804, -0.020319453, 0.0050293007, 0.012741794, 0.010584453, -0.01822953, -0.0027758908, -0.031092674, -0.005609086, -0.008481045, 0.0073821503, 0.018687963, 0.012600218, -0.014427216, 0.030984806, -0.02230151, 0.001835425, -0.036216356, 0.011791215, -0.001671939, 0.009202407, -0.025389204, -0.011615931, 0.010072084, 0.0035933207, -0.015020485, 0.009229373, -0.0386973, 0.0026511694, -0.015182286, 0.012202458, 0.0046180575, 0.019052016, 0.01568117, 0.020885754, 0.0011258622, -0.0014157549, -0.015303636, 0.008508013, 0.01643624, -2.420688E-4, -0.013530571, 0.02154644, -0.010341752, -0.016126122, -0.017285692, -0.008413629, -0.004082093, 0.014454183, 0.025483588, 0.042122077, 1.02389415E-4, -0.017771095, -0.049996372, 0.0014663176, 0.043820985, -0.03020277, 0.03203651, 0.023609398, -0.03751076, -0.026346523, 0.006600114, -0.17215578, 0.0131328115, 0.008979931, -0.028422965, 0.0043079397, 0.02613079, 0.01688119, -0.0017081756, 0.004432661, -0.009586683, 0.025672354, 0.0015042395, -0.040584974, 0.0067922524, 0.011750765, 0.0017241872, -0.018350879, 0.044468187, 0.009849609, 3.739531E-4, 0.036378156, 0.002206218, -0.01704299, -0.009404657, 0.021640824, -5.115257E-4, 0.014575534, 0.028018463, 0.004392211, -0.022193642, -0.03419385, 0.0023275684, 0.0049045794, -0.009526008, -0.015424986, -0.007901261, -0.016813774, -0.00885858, -0.0055753775, -0.0058416743, 0.048270497, 0.0026663383, 0.020953171, 0.008750713, 0.008406887, 0.005646165, 0.01456205, -0.015209252, -0.008366437, -0.010281077, -0.007867552, -0.03187471, 0.016045222, -0.01448115, -0.0013230566, 0.010901312, -0.0021050926, -0.007024841, 0.0065967436, -0.0061753877, -0.027883628, -0.01308562, 0.010260852, -0.0023629623, -0.013260904, -0.013517088, -0.01855313, 0.012074366, -0.03419385, 0.011615931, -0.017905928, 0.01688119, 0.030688172, -0.0032832029, 0.008204636, -0.01680029, -0.027802728, -0.01125188, 9.0338645E-4, 0.009923767, -0.019119432, 0.043740083, -0.0076383343, 0.01659804, 0.0066607893, -0.0064652804, 0.009863092, 0.010308044, -0.003502308, 0.0010500181, -0.0023039724, -0.019173365, -0.032764614, -0.015020485, 0.0039910804, 0.006991132, 0.0039506303, 0.0011637842, 0.007712493, -0.010908054, -0.0069237156, -0.020036303, -0.009148473, 0.021910492, 0.022045325, 0.021034071, -0.0052214386, 0.022517243, 0.014831717, 0.008090028, -0.016544107, -0.017757611, 0.008629363, -0.0079551935, -0.012445159, 0.0021758804, -0.018620547, -0.029474668, -0.008791164, 0.0073551834, 0.04036924, -0.0025433025, 0.0067282063, -0.01891718, -0.004122543, -0.021775657, -0.08839703, 0.008204636, 0.02266556, 0.020750921, -0.03268371, 0.028099364, -0.011744023, 0.022840844, -0.013618213, 0.042337812, -0.0014460925, -0.016207023, 0.027694862, -0.014090132, 0.033061247, 8.212221E-4, -0.016220506, -0.011986724, 0.006320334, 0.03575792, -0.0026579113, -0.0043820986, 0.0024640877, -0.03184774, -0.024957735, 0.002361277, -0.03252191, 0.022247575, 0.0044865943, 0.008575429, 0.0061821295, -0.029555568, 0.015816005, -0.030310636, -0.024054348, -0.027357778, -0.014737334, -0.04684126, 0.011137271, -0.049861535, 0.0023764456, 0.014818234, 0.0045809783, -0.019092465, 0.0014174402, -0.011588965, -0.030148836, 0.030796038, 0.0055315564, -0.031119639, -0.001216875, -0.010530519, -0.027560027, -0.006697869, 0.008986672, 0.020643054, 0.026697092, 9.000156E-4, -0.0192273, -0.002118576, -0.0074428255, 0.0036607375, -0.026683608, 0.008912514, 0.011845149, 0.007887777, -0.0018202562, -0.008346212, 0.026076855, -0.018350879, -0.006627081, 0.014696884, -0.04568169, -0.005932687, -0.030067936, -0.010564228, -0.020413836, -0.0015345771, 0.019699218, -0.029016232, -0.0043045687, -0.032225277, 0.0024809418, -0.0034214074, 0.0034854535, 0.009155215, 0.0077866516, 0.009997926, -0.0065360684, -0.04185241, 0.0053326767, 0.03268371, 0.010530519, -0.009741741, -0.015317119, 0.03729503, 0.02042732, 9.244542E-4, -0.006327076, 0.012135042, -0.01029456, -0.00570684, -0.07378105, 0.02266556, -0.015114868, -0.006320334, -0.005609086, -0.01659804, 0.005993362, -0.011029405, -9.724887E-4, 0.018094696, 5.684087E-4, 0.018054245, -0.01899808, -0.0063776383, -0.019941919, 0.015438469, -0.01125188, 0.0055281855, 0.0013028316, -3.6236583E-4, -0.014319349, -0.004146139, 0.0290432, 0.001998911, -0.012660894, 0.04549292, 0.0073754084, 7.917272E-4, -0.021748692, -0.0040719807, 0.021155423, -0.009620391, -0.023070062, 0.0021219468, 0.0027034176, -0.028935332, -0.023312762, -4.1166443E-4, 0.022517243, 0.0077462015, -0.010523777, -0.016031738, -0.0150474515, -0.0195509, -0.01021366, 0.025497071, -0.021856558, 0.011467614, 0.011615931, 0.015721621, 0.010901312, 0.014885651, 0.0013104159, -0.016490173, 0.027101593, -0.020980138, 0.032090444, 0.0068394444, -0.0040113055, 0.002182622, 0.030094903, 0.0047866, 0.015438469, -0.029339833, 0.010584453, 0.0071529327, 0.011096821, -0.022409376, -0.007287767, -0.028989267, -0.0044427738, -0.01711041, 0.016894674, 0.018539647, 0.01085412, 0.021640824, 0.0042472645, 0.007800135, -0.007874293, 0.0064585386, 0.019780118, -0.026683608, -0.025443137, 0.024054348, -3.2317976E-4, 0.027937563, -0.0052922266, 0.014966551, 0.0024792564, 0.011582223, -0.014103615, 9.969274E-4, 0.026899341, 0.0060911165, -0.0019567756, 0.014103615, -0.015478919, 2.382766E-4, 0.011204688, 0.014535083, -0.008663071, -0.008130478, -0.010301302, -0.009552974, -0.03020277, 8.9748745E-4, -0.01735311, -0.036243323, 0.007537209, 0.019254265, 0.025483588, 0.013409221, -0.019523934, 0.014130582, -0.041798476, 0.016732873, 0.007321475, -0.0038933258, -0.01747446, 0.031982575, 0.021532957, 0.013274387, 0.032387078, -0.002258466, 0.054284085, 0.011865374, 0.011555256, -0.015276669, -0.0020612716, 0.010348494, -0.007287767, -0.016490173, -0.027398227, 0.0051776175, -0.012330551, 0.015060935, 0.0010576026, 0.051884044, -0.022261059, 0.06795623, 0.035407353, -0.0030489292, 0.017339626, -0.02154644, 0.006711352, 0.013530571, 0.017407043, -0.012782244, -0.017784577, -0.0030624126, -0.003519162, -0.010375461, -0.0294477, -0.00869678, 0.011137271, 0.015249702, 0.005629311, -5.5366126E-4, -0.015735105, 0.003168594, -0.020737438, 0.013705855, 0.006040554, -0.0018505938, -0.014589016, 0.023595914, 0.0023073433, -0.0037618629, -0.03395115, -0.0011283903, -0.02596899, 0.00638438, -0.0049686255, 0.035677023, 0.017919412, -0.006020329, -0.016233988, 0.018364362, 0.0086091375, -0.012829436, 0.008663071, -0.016584557, -0.022207126, 0.015802521, 0.0037011877, -0.0016146346, -0.031146606, -0.019362133 ], + "id" : "45ddd497-fed3-47d6-8fcb-b13ae22c89d7", + "metadata" : { + "source" : "movies.csv" + } + }, + "3c87fcf8-6033-4a4e-9cff-b5133b42f65e" : { + "text" : "sadism-self-fulfilling prophecy-psychopath-detective-rain-investigation-pension-evisceration-pride and vanity-immoderateness-insomnia-murder-serial killer-religion-seven deadly sins-depravity-neo-noir,/6yoghtyTpznpBik8EngEmJskVUO.jpg,/dYjZ27hDw2QFaEIfzbNGwW0IkV9.jpg,550-594417-680-11324-274-77-16869-629-13-27205-1124-1422-278-769-857-603-101-155-500-424-694\r\n458156,John Wick: Chapter 3 - Parabellum,Action-Thriller-Crime,en,Super-assassin John Wick returns with a $14 million price tag on his head and an army of bounty-hunting killers on his trail. After killing a member of the shadowy international assassin��s guild the High Table John Wick is excommunicado but the world��s most ruthless hit men and women await his every turn.,84.255,Thunder Road-Lionsgate-87Eleven,5/15/19,55000000,326709727,131,Released,Every action has consequences.,7.446,9559,Keanu Reeves-Halle Berry-Ian McShane-Laurence Fishburne-Mark Dacascos-Asia Kate Dillon-Lance Reddick-Anjelica Huston-Sa��d Taghmaoui-Jerome Flynn-Randall Duk Kim-Margaret Daly-Robin Lord Taylor-Susan Blommaert-Unity Phelan-Jason Mantzoukas-Andrea Sooch-Sergio Delavicci-Cecep Arif Rahman-Yayan Ruhian-Tiler Peck-Baily Jones-India Bradley-Olivia MacKinnon-Sarah Villwock-Eliza Blutt-Harrison Coll-Boban Marjanoviۈ-Maxim Beloserkovsky-Charles Askegard-Stefaniya Makarova-Jeff G. Waxman-A��ssam Bouali-Mustapha Adidou-Alexey Golousenko,new york city-martial arts-casablanca morocco-morocco-secret society-secret organization-black humor-sahara desert-bratva (russian mafia)-sequel-organized crime-one man army-professional assassin-baba yaga-dog man friendship,/ziEuG1essDuWuC5lpWUaw1uXY2O.jpg,/vVpEOvdxVBP2aV166j5Xlvb5Cdc.jpg,324552-245891-603692-384018-320288-429617-299534-287947-373571-584249-447404-420817-299537-49679-458012-479455-475557-399579-456740-383498-299536\r\n350,The Devil Wears Prada,Comedy-Drama-Romance,en,Andy moves to New York to work in the fashion industry. Her boss is extremely demanding cruel and won't let her succeed if she doesn't fit into the high class elegant look of their magazine.,49.64,Fox 2000 Pictures-Dune Entertainment-Major Studio Partners-Peninsula Films,6/29/06,35000000,326551094,109,Released,Meet Andy Sachs. A million girls would kill to have her job. She's not one of them.,7.", + "embedding" : [ 0.00791777, -0.025675904, -0.01227978, -0.03908581, -0.027067887, 0.01965316, -0.012872406, -0.004975309, -0.011487314, -0.020907324, 0.03227749, 0.03473069, 0.035640303, 0.0018709092, 0.009633632, 0.033269797, 0.039609525, 9.681869E-4, 0.006029634, -0.03492364, -0.0018709092, 0.012300453, -0.03153326, -0.0064293123, -0.002957966, 0.024917891, 0.016400604, -0.0044791563, -0.01262433, -0.003147469, -0.0040036766, -0.022547385, 6.313888E-4, -0.00846216, -0.0058435765, -0.0058229035, -4.453315E-4, -0.008779147, 0.027178144, -0.0048409346, 0.019970147, 0.0022499147, -0.003562652, -0.03153326, -0.008028027, 0.007855752, -0.005443898, -0.009544048, -0.015449644, 0.01718618, 0.03098198, 0.037404403, -0.02701276, -0.018523036, -0.0024394174, 0.013857821, 0.02203745, 0.0040863687, 0.012334907, -0.006263928, 0.01726887, -0.03883773, -0.034206975, -0.009544048, -0.016758936, -0.012438273, -0.022823025, 3.5585606E-5, -0.015973361, -0.010267605, 0.038727477, 0.013223848, 0.0040277955, -0.008737801, 0.016290348, -0.049505014, -0.0204663, 0.0131273735, -0.011363275, 0.010805104, 0.02825314, -0.012321126, -0.011556224, 0.00818652, 0.0197772, 0.009702542, -0.0391685, 0.028280705, 0.0051820395, 0.030485827, 0.015876887, 0.025358917, 0.0027271172, 0.021610208, -0.0024876546, 0.03354544, -0.020631684, 0.03643966, -0.026254747, -0.015449644, 0.0072424514, -0.0032353292, -0.021541297, -0.0073664896, 0.006236364, -9.1133604E-4, -0.0037624915, -0.025744813, 0.03200185, 0.011900774, -0.018771112, -0.024297701, 0.028583908, -0.03547492, 0.012810388, -0.027688079, 0.031230057, -0.0080349175, -0.0211554, -0.03685312, 0.02490411, 0.03561274, 0.021596424, -0.03423454, 0.028611474, 0.014691633, 8.540545E-4, -0.018647073, 0.006739408, -0.021417258, 0.054190904, 0.0025565648, 0.042393494, 0.01528426, -0.03329736, 0.045728743, -0.030265316, 0.004927072, -0.027812116, -0.02156886, 0.033269797, 0.026557952, -0.025979107, -0.0033438625, -0.013368559, 3.484267E-4, 0.00928219, -0.014581377, 0.02312623, -0.0052922955, 0.0020087294, 0.015311824, 0.014140353, 0.011253019, 0.0059262686, 0.018330086, -0.00260997, -0.012190197, -0.0025307233, -0.0060847616, -0.0056678555, -4.9873686E-4, -0.03384864, -0.011287474, 4.5954422E-4, 0.010405425, 0.023525909, -0.008069373, 0.002360171, -0.0077110403, 0.009571613, 0.024104754, -0.012265998, 0.014030096, -2.1512872E-4, 0.01063972, 0.0072837975, -0.006367293, -0.013272085, -0.014484903, -0.0020828077, 0.019363739, 0.01692432, 0.025303788, -0.0059400504, 0.015587465, -0.0042620897, -0.048595402, 0.01521535, -0.006332838, -0.027674297, 0.024077188, 0.018853804, -0.008889403, -0.644337, -0.01521535, -0.01112209, -0.009799016, 0.0056678555, 0.03329736, 0.02388424, 0.020852197, -0.029052498, 0.0023997943, -0.019487776, 0.0043689003, 0.013664872, -0.0052922955, -0.0142781725, -0.025758596, -0.014360865, -0.020617902, -0.005481798, 0.0014074888, -0.013754456, 0.022519821, -0.0030940634, -0.0030509946, 0.012231543, 0.002177559, -0.002248192, -0.017144833, 0.014347083, 0.0063293925, -0.0016762381, 0.020548992, 0.024780072, 0.0069633657, 0.046169765, -0.01595958, 0.001955324, 0.026778465, 0.043523617, 0.03528197, -0.027605386, 0.0043826825, -0.0139680775, -0.008606872, -0.01951534, 0.011990357, 0.026998976, -0.0065946965, 0.008179629, 0.0011335711, 0.015918233, 0.019625597, 0.0053577605, -0.014829453, 0.01549099, 0.015063748, 0.005419779, -0.031064672, 0.01768233, 0.014374646, -0.007187323, 0.015987143, -1.6269243E-4, 8.9583127E-4, -0.011163436, 0.039609525, 0.0035798796, -0.017213743, -0.011459749, -0.03236018, -0.0029200655, 0.0028614919, -0.021513734, -0.010701738, 0.00838636, 0.013044681, 0.02462847, 0.011218565, -0.017861499, -0.007841969, -0.001963938, -0.0055886093, -0.013292758, 0.024862764, 0.012410709, -0.0030837269, -0.011218565, 0.021431042, 0.014815671, 0.0054955804, 4.4274738E-4, 0.011211673, 0.001963938, 0.0064637675, -0.0017296436, 0.023663728, -0.004927072, 0.008028027, 0.020480081, -0.045425538, -0.0123762535, 7.933275E-4, 0.011397731, 0.004651432, 0.02551052, 0.012603657, -0.0020983126, -0.01493971, 0.041235805, 0.005002873, -0.026985195, -2.625044E-4, -0.02039739, -0.0074560726, -0.0060330792, -0.029686471, 0.028831985, 0.017475601, 0.006680834, -0.0028235912, -0.0071804323, 0.012541638, 0.02156886, -0.02319514, 0.005126911, 0.013575289, -0.01187321, -0.003188815, 0.012493401, -0.0021120945, 0.012458946, -0.0068255453, 0.021265658, -0.022120142, -0.013396123, -0.008310558, 0.0069495835, -0.004523948, 0.013554617, -0.0122866705, -0.014526249, -0.010150458, -2.6185837E-4, 0.004796143, -0.006794536, -0.01398875, -0.024642251, -0.0015349725, -0.0077937325, 0.0070701763, -0.0056471825, 0.011308148, -0.020590337, 0.011149654, 0.005361206, -0.0072837975, -0.0144573385, -0.0072424514, -0.014608941, -0.010701738, -0.002603079, 0.014622723, -0.017544512, -0.006270819, 0.010377861, -0.021610208, 0.019212136, 0.02462847, -0.0047651334, -0.020893542, 0.0108257765, -0.008365686, -0.010240041, -0.0020207886, -0.015683938, 0.031009546, 0.0020483527, 0.011542441, 0.012038594, 0.0055886093, 0.001398875, -0.009792125, -0.008861839, -0.0052440586, 0.03677043, 0.0128172785, 0.015752848, 0.014388429, 0.004692778, 0.0065740235, -0.008641327, 0.010412316, -0.016097398, -0.008220975, -0.013754456, 0.023787767, 0.019680724, 0.002623752, 0.019143226, 0.013802693, 0.033490308, 0.030623648, -0.012403818, 0.016317911, 0.006425867, -0.032939028, 0.011204782, -0.03001724, 0.001753762, 0.011845646, 0.007704149, -0.016207656, -0.004041577, -0.0020276797, -0.009034114, 0.027412437, -0.0039830036, 0.0074767456, -0.03704607, -8.312281E-4, -0.0010551859, -0.0056919744, 0.0218445, 0.0045825215, -0.011521769, -5.6850835E-4, 0.002715058, -0.006091653, -0.0012481342, -0.017599639, -0.0069426927, 0.0050924565, 0.00886873, -0.0025910197, -0.010743084, -0.015918233, 0.0180131, 0.008441487, 0.023856677, -0.014209262, -0.005936605, 0.0029545205, 0.012645003, -0.016042272, -0.0022361327, -0.014319519, 0.027605386, 0.023484562, -0.010453662, 0.03329736, -0.024215009, 0.027522694, 0.0028804422, 0.019846108, -0.008724019, -0.029107627, -0.0026116928, 0.009978183, 0.038562093, 0.020176876, 0.0067979814, -0.03167108, 0.015628811, 0.0036350077, 0.012135069, 0.001190422, -0.010722412, 0.016276566, 8.691286E-4, -0.021072708, -0.007876424, -0.014650287, -6.094237E-4, 0.011900774, -0.01077754, -0.01821983, 0.013272085, 0.010212476, 0.006425867, 0.021100273, -0.021141618, -0.035171714, 0.0059676147, 0.023732638, -0.0021293222, -0.009978183, -0.007924661, -0.030651212, -0.022423346, 0.0035454247, -0.027646732, 0.036605045, -0.027260836, -0.010102221, -0.006250146, -0.0024411404, 0.015559901, -0.018633291, 0.012665676, 0.013148047, 0.020328479, -0.005419779, -0.008985877, -0.009103024, 0.0023773985, -0.0022585285, 0.0034851283, -3.7297592E-4, -0.0056713014, -0.0027719087, 0.002944184, 0.007511201, -0.053722315, 0.01733778, -0.019363739, 0.010267605, -0.008083154, 0.009330427, 0.0055713817, 0.007724822, -0.0131273735, -0.0048271525, -0.024463085, 0.0012334908, 0.081313916, 0.030210188, 0.008262321, 0.012920643, 0.00322327, 0.01092225, -0.0051338025, -0.01726887, 0.013272085, 0.007628348, 0.020369826, -0.014415992, 0.026681991, 0.0136442, 0.011659589, -0.013106701, -0.0071115224, -0.0039657764, -0.0035247516, -0.0144573385, -0.014595159, -0.017144833, 0.016042272, 0.02960378, -0.019391302, -0.015615028, 0.029769164, 0.013216957, -0.00948203, 0.0098059075, -0.0148983635, -3.695304E-4, 0.009082351, 0.0037418185, -0.002360171, 6.3225016E-4, 0.021789374, 0.011790518, 0.034289666, -0.01262433, 0.011507987, 0.0073389257, 0.010212476, -0.003445505, 0.012700131, -0.01861951, -0.022519821, 0.016896756, 0.02504193, -0.04129093, 0.03282877, 0.0057746666, -0.023581035, -0.010660392, 0.020548992, 0.006549905, -0.0034093272, -0.0028098093, -0.01602849, 0.027453784, 0.004255199, -0.044764, 0.011969685, 0.005164812, -5.362067E-4, -0.016621117, -0.0016719312, 0.0072286692, 0.005085565, -0.0052371677, 0.011721608, -0.012217761, -0.013664872, -0.0051889303, 0.018109575, -0.001708109, 0.015711503, -0.012589876, 0.013017118, 0.020259568, -0.038038377, -0.03343518, 0.0030716676, -0.03437236, -0.024862764, 0.017048359, -6.9900684E-4, 0.0026185839, -0.008179629, 0.008944531, 0.012665676, 0.009578504, -0.004961527, -0.028776858, 0.029328138, -0.025951544, 0.010226259, 0.016882975, 0.012989554, -4.399479E-4, 0.023098666, -0.008489724, -0.02243713, -0.03186403, -0.003752155, -0.014071442, -0.0068944553, 0.008310558, -0.031064672, -0.020907324, -0.02551052, -0.0061364444, 0.00825543, 0.017861499, 0.013403014, 9.914441E-4, 0.01677272, 0.0068462184, 0.0060434155, 0.014099007, -0.0036418987, -0.0054955804, 0.015739067, 0.03315954, -0.0045411754, 0.0017503165, 0.008827384, -0.024394175, 0.0052922955, 0.03098198, -0.010612155, 0.018357651, -0.022230398, -0.036191583, -0.020039057, -0.02790859, 0.004503275, 0.004296545, -0.019253481, -0.011556224, -0.015711503, -0.010708629, -0.012293561, -0.009557831, 0.027247053, -0.030899288, 0.0077592772, -0.00716665, 0.0034076045, 0.01827496, -0.01227978, 0.0021189856, -0.013265194, 0.01528426, -0.014002532, -0.024862764, -0.026461478, -0.01768233, 0.018867586, 0.01419548, 0.036742866, -0.0073389257, 0.023953151, 0.013912949, -0.0016994954, 0.012879298, -0.015615028, -0.012872406, -0.023636164, 0.020576555, 0.020149313, 0.0013764793, 0.021114055, -0.007704149, 0.007828187, 0.039196063, 0.01528426, -0.0030458265, 0.0036143346, -0.013216957, -0.0038348471, 0.006153672, -0.020631684, 0.009206389, -0.041373625, -0.013024009, 0.03247044, 0.003772828, -0.004803034, -0.014209262, 0.038644783, 0.005623064, 0.0073251436, -0.0076903673, 0.025593212, -0.023718856, -0.019501558, -0.0076696943, 0.0010155626, 0.0056402916, -0.0027805225, 0.013154938, -0.012458946, -0.018385215, 7.601645E-4, 0.042338364, -0.016138745, -0.031643517, 0.012596766, -0.018757328, 0.0014858741, -0.020617902, -0.021816937, -0.040353753, 0.015049966, -0.0024962684, -0.005574827, -7.506894E-4, -0.020204442, -0.034510177, 0.012961989, -0.00948203, 0.039196063, 5.2156334E-4, 0.042834517, 0.01590445, 0.0019380966, -0.022395782, 0.014209262, -0.010074656, 0.0011775013, 0.020025276, 0.02388424, -0.016469514, -0.0046445406, -0.008448378, -0.0012972326, -0.042751826, -0.038506962, 0.042614006, 0.02756404, 0.023980714, -0.024821417, 0.0040346864, -0.011383949, 0.014167916, -0.0057815574, -5.4266705E-4, 0.012665676, -0.041924905, -0.015628811, -0.0011964516, 0.003523029, 0.020907324, -0.002010452, -0.03459287, 0.0038520745, -0.024724944, 0.011466641, -0.0023205476, -0.005106238, 0.028073974, -0.017103488, 0.018991623, 0.007207996, 0.006091653, -0.0015892392, 0.0035523155, 0.0042586443, 0.033655692, 0.0021138173, 0.018550599, 1.8659563E-4, -0.03718389, -0.0041793976, 0.013706218, -0.015422081, -0.02450443, -0.010570809, 0.0042207437, 0.023553472, 0.0147191975, 0.0034058816, -0.0018278403, -0.030678777, -0.006112326, 0.0034041589, -0.0136579815, 0.025799941, -0.03172621, 0.0030010347, -0.0130860275, -0.0031629736, -0.004475711, 0.009109915, -0.005909041, 0.0071390863, 0.011604461, -0.008813602, -0.0019363738, -0.009371773, -0.00484438, -0.029328138, 0.0036108892, -0.03098198, 0.007056394, 0.0052543953, -0.0068806736, -0.0049822, -0.024104754, -0.005126911, 0.006160563, 0.0150775295, -0.011128981, 0.005064892, 0.020039057, -0.012362472, -0.017007012, -0.018647073, 0.0140576605, -0.008799819, -0.018578162, 0.015780414, 0.008930749, 0.020259568, -0.030127496, 0.0017916625, 0.0049890913, -0.01255542, -0.01951534, 6.167454E-4, 0.030044803, 0.008772256, 0.005037328, -0.007552547, -0.005657519, -0.010398534, 0.023456998, 0.012645003, 0.0024066851, 0.0197772, 0.018523036, 0.011590679, 0.010963596, 9.130588E-4, -0.02340187, 0.0067876447, -0.018729765, -0.027136797, -0.012011031, -0.020452518, 0.0139680775, 0.0074491818, -0.01726887, -0.03486851, -0.009247735, -0.025028149, -0.028804421, -0.028225577, 0.015022402, 0.05267488, 0.02511084, -0.01371311, 0.0055300356, 0.017751241, 0.0050580013, -0.027302181, 0.0012024812, 0.01017113, 0.009633632, 0.013788911, 0.011011834, -0.037404403, -0.007400945, 0.0034368911, 0.0052302764, 0.013802693, 0.012445164, -0.016731372, -0.014512467, -0.005106238, 0.0010362356, 0.0069909296, -0.006081316, 0.031615954, -0.01999771, 0.010929142, 0.0038968662, 0.035116587, 0.0028167004, 0.005657519, 0.018977841, -0.010929142, -0.021996103, -0.039802473, -0.014043878, -0.0069151283, -0.007855752, 0.021610208, 0.018936496, 0.0014548645, 0.038451836, 0.007724822, -0.020562774, -0.0025634556, -0.008854948, -0.0129964445, -0.011501095, -0.003237052, 0.0057092016, 0.029355703, -0.025427828, 0.013334104, 0.0017477324, -0.0039623305, -0.008930749, 0.006201909, -0.007745495, 0.020700594, 0.004692778, -0.05286783, 0.015201568, 0.0111772185, 5.5300357E-4, -0.011459749, -0.008675781, -0.01958425, -0.010047092, -0.019294828, -0.009530267, -0.0062604826, -0.024614688, -0.0082140835, -0.0139680775, -0.024463085, 0.014608941, 0.19570468, 0.004503275, 0.0060434155, 0.043881953, 0.0026427023, 0.021141618, 0.026158273, 0.011204782, -0.0062467004, 0.016758936, 0.009254626, -0.00590215, 0.005157921, 0.0071390863, 0.0075180917, -0.02006662, -0.02005284, -0.021775592, -0.007959116, -0.026144492, 0.006667052, 0.0144573385, -0.007469855, -0.010488117, 0.0094544655, 0.012038594, -0.03056852, 0.0033231894, 0.026902502, 0.0063397293, -0.015780414, -0.015546119, -0.0012145404, -0.0071804323, -0.035089023, -0.0043516727, -0.030678777, -0.0052164947, 0.017833933, 0.0042276345, 0.010529463, -9.270562E-5, -0.0035592066, -0.012837952, 0.014471121, -0.0031130137, -0.034951203, -0.005512808, -0.01084645, 6.2794326E-4, -0.035667866, -0.0069909296, 0.034069154, 0.02006662, -0.019418865, -0.0052716224, 0.010763758, 0.011066962, -0.015036183, -0.0042689806, 0.016014706, 0.026640644, -0.040160805, 4.7591038E-4, -0.010178022, 0.01896406, -0.03172621, -0.020700594, 0.009847254, -0.030733904, -0.004589413, -0.02203745, -0.013492597, -0.009447575, -0.0072631245, -0.019129444, 0.030127496, 0.02122431, -0.008469052, 0.02661308, -0.010184913, -0.030651212, 0.00679109, -0.00538877, -0.0118869925, -0.032635823, 0.01794419, -0.0102951685, -0.009785234, -0.019418865, -0.016979448, -0.015463427, -0.025648339, 0.006029634, -0.005047665, 0.0035350882, 0.037542224, 6.266512E-5, -0.010901578, -0.013154938, -0.020273352, 0.034014024, 0.032773644, 0.0016762381, -0.019391302, -0.0279775, 0.0066222604, 0.014498685, 0.03506146, -0.036963377, -0.0049305176, -0.044433232, -0.009426902, -0.006274265, 0.0035523155, 0.022574948, 0.006739408, -0.011625133, 0.018026883, -0.010495008, -0.0026340885, -0.019749634, 0.016469514, 0.003090618, -4.461929E-4, -0.030210188, -0.028005064, 8.9755404E-4, 0.016676243, -0.03362813, 0.022864372, -0.015532336, -6.955613E-4, -0.0064844405, -0.0014755375, 0.031367876, 0.019542905, -7.7308516E-4, 0.014105897, 0.007828187, 6.994375E-4, -0.0011103139, 0.013382342, 0.007001266, 0.03343518, -0.009537158, 0.0052027125, 0.011549333, -0.021665335, -0.012589876, -0.033655692, -0.012445164, -0.00873091, 0.009089242, 0.026254747, -7.9892646E-4, -0.025675904, -0.030182624, -0.0078144055, 0.021265658, -0.03903068, 0.024518214, 0.010936033, 0.004920181, -0.03153326, -0.015670156, -0.17806369, 0.01808201, 0.005909041, -0.025675904, 0.037624914, 0.019129444, 0.020921106, 0.01063972, 4.88831E-4, -0.017075922, 0.013389233, 0.001941542, -0.023898022, -0.00968876, -6.770417E-4, 0.010405425, -0.0019604922, 0.0496704, 0.023043538, 0.011418403, 0.028032629, 0.013499488, -0.007421618, -0.003731482, -0.012465837, 0.008358795, 0.008372577, 0.0080349175, -0.0047582425, -0.01733778, -0.025689686, -0.022519821, 0.006201909, 0.017296435, -0.0035523155, 0.015987143, -0.02305732, -0.011556224, -0.011211673, -0.009123697, 0.030513393, 0.015435862, 0.012169523, -0.010432989, 0.014884582, 0.025372699, 0.034647997, -0.0125071835, 0.0058987048, -0.0027185034, 0.0044929385, -0.03500633, 0.025028149, -0.009523376, 0.013795802, 0.017654767, 0.00336109, -0.0080349175, 0.004306881, -0.004020904, -0.033324923, -0.00839325, 0.013320322, -0.008331231, 0.008207193, -0.034399923, -0.014250608, 0.024008278, -0.018302523, 0.009103024, -0.018398996, 0.026778465, 0.009109915, -0.008717127, -0.004647986, -0.0153393885, -0.01930861, 0.021403477, -0.005089011, 0.027371092, -0.0018915823, 0.023966933, -0.002248192, -0.004627313, 0.012576093, -0.02034226, 0.018715983, -1.6991993E-6, 0.01849547, -0.016152527, 5.379295E-4, -0.0028787195, -0.013885385, -0.0029476294, 0.006394857, -0.0027891363, 0.0077937325, 0.018398996, -0.023415651, -0.013134265, -0.0054059974, 0.00279775, -0.011232346, 0.024380393, 0.01385093, 0.005116575, 0.032194797, 0.011900774, 0.0063087195, -0.0013135988, -0.023415651, 0.0068875644, 0.016965667, -0.00603997, -0.0028253142, 0.021610208, 0.0016417832, -0.019529123, -0.0024066851, -0.008813602, 0.069295995, -2.5927424E-4, -0.018523036, -0.0036074438, -0.01733778, -0.009957509, -0.093662605, 0.013478816, 0.009812798, 0.03616402, -0.02735731, 0.033793513, -0.0035660977, 0.037652478, -0.020245787, 0.01323763, 0.0022292417, -0.018757328, 6.378491E-4, 0.005998624, -0.0012093723, -0.0039451034, -0.008537961, -0.0039967857, -0.002492823, 0.037211455, 0.006153672, 0.00825543, -0.008179629, -0.022864372, -0.0248352, 0.02531757, -0.033821076, 0.03351787, -0.0065016677, 0.023732638, 0.0026788802, -0.028749293, -0.0065464596, -0.026916284, -0.0286666, -0.028528782, -0.009399338, -0.017778806, 0.009461356, -0.051544756, 0.017709896, 0.011308148, 0.015918233, 8.665445E-4, -0.010308951, 9.096133E-4, -0.021940976, 0.0021413814, 0.010543245, -0.009295972, -0.0050924565, -0.028831985, -0.016524643, 0.011928339, 0.021720463, 0.017379127, 0.03839671, -0.009495812, -0.008028027, -0.017696114, -0.0032008742, 0.0026633753, -0.011060071, 0.014732979, 0.0037556004, 0.004203516, -0.0023343295, -0.0058573587, 0.015794195, -0.015022402, -0.021665335, 0.01711727, -0.02450443, -0.002282647, -0.026489042, -0.0041656154, -0.014650287, -0.011838755, 0.023374306, -0.017241307, -0.021058926, -0.02899737, 0.00689101, -0.016359258, 0.0019656606, -0.006284601, -0.010350297, 0.007008157, -0.021803156, -0.030789033, -0.014691633, 0.025634557, 0.0023567255, -0.0074974187, -0.016841628, 0.01733778, 0.016042272, -1.8336547E-4, 9.879986E-4, 0.013974968, 0.002143104, 0.0036143346, -0.06664985, 0.010501899, -0.016882975, -0.008482833, -0.003326635, -0.012589876, -0.0058504674, 0.0035178605, 0.010246932, 0.0018364541, -0.009537158, 0.017599639, -0.017007012, -9.320091E-4, -0.029576214, 0.011342603, 0.0022016778, -0.015532336, -0.015780414, 0.0078144055, -0.011949011, -8.0667884E-4, 0.026971413, -0.0014979333, -0.01234869, 0.012100614, -0.0068186545, 0.010880904, -0.010067766, 0.0014970719, 0.028694166, -0.030458264, -0.0018743547, 0.0031267959, -0.009936837, -0.021734245, -0.023250267, -0.005499026, 0.014305737, 0.014705415, -0.011197891, -0.024201227, 0.0036935813, -0.034206975, 0.0036108892, 0.0056506284, -0.0036350077, 0.002325716, 0.0056196186, 0.009668087, 0.034206975, 0.032167234, -0.019501558, -0.015794195, 5.977951E-4, -0.029934548, 0.03732171, -0.002547951, 0.004878835, 0.0021999548, 0.012183306, 0.0024480312, 0.02217527, -0.02094867, 0.0025875743, 0.004344782, -0.0016004371, -0.010660392, -0.0010190081, -0.025868852, -0.013182502, -0.015091312, 0.005026992, 0.02319514, 0.017365346, 0.009606068, -0.0046135313, 0.01726887, -0.013788911, 0.027605386, 0.026323657, -0.012913752, -0.023305396, 0.004699669, 0.010729303, 0.01677272, -0.020838413, -0.001900196, 0.017889062, 0.014540031, -0.02825314, 0.011018725, 0.011914556, -0.0076903673, 0.002506605, 0.014746761, -0.028335832, -0.02319514, -0.011080744, 0.017365346, 0.024297701, -0.01535317, -0.01576663, -0.015628811, -0.00675319, 0.0011525215, -0.0061261076, -0.023553472, 0.017034577, 0.011273692, 0.029052498, -5.62048E-4, -0.013079137, 0.017654767, -0.030375572, 0.026433915, 0.0092752995, -0.024476867, -0.01768233, 0.04313772, -0.004830598, 0.007056394, 0.021527516, -0.0019828882, 0.042007595, 0.022767898, 0.0071942145, -0.022809243, -0.0042172982, -0.010074656, 0.0031905377, -0.008090045, -0.035805687, 0.0102055855, -0.017075922, -0.014498685, 0.015807977, 0.024463085, -0.012410709, 0.061302423, 0.021527516, -0.004496384, 0.015091312, -0.027577821, -0.0013962908, 0.0057539935, 0.003969222, -0.011563115, -0.028032629, -0.007511201, -0.011762954, 0.0056196186, -0.02573103, 0.0036625718, -0.007717931, -0.006387966, 0.01773746, 0.0012395204, -0.026103146, 0.0026254747, 0.023015974, 0.017475601, 0.008110719, 0.008992768, -0.014264391, 0.017420473, 0.018261176, -0.0010276219, -0.033380054, -0.009027223, -0.012431382, 0.0031974285, -0.0042586443, 0.032222364, -0.020659247, 0.0057023107, -0.0013239353, 0.020907324, 0.010880904, -0.008558635, 0.019556686, -0.019460212, -0.024780072, 0.018550599, -0.0014290232, -0.011818082, -0.030540956, -0.027508913 ], + "id" : "3c87fcf8-6033-4a4e-9cff-b5133b42f65e", + "metadata" : { + "source" : "movies.csv" + } + }, + "2ade4120-3a15-47df-b261-450b6b68fa24" : { + "text" : "Woo-Jingsheng Yu-Ben Wang-Eddie San Chan-Zhang Tianyu-Wu Gang-Teresa Daley-Peter Cullen-Frank Welker-John Goodman-Ken Watanabe-Robert Foxworth-John DiMaggio-Mark Ryan-Reno Wilson-Michael Bay,music video-sequel-alien-based on toy-giant robot-robot,/6lANYv3fDtvey3w5oFusyPK41Kl.jpg,/wxr4Z6E83h14CogsZOzDm1vuDX3.jpg,38356-8373-335988-1858-127585-98566-119450-102382-25565-124905-137113-100402-76338-76170-138103-97020-168259-49521-184315-68726-82702\r\n49026,The Dark Knight Rises,Action-Crime-Drama-Thriller,en,Following the death of District Attorney Harvey Dent Batman assumes responsibility for Dent's crimes to protect the late attorney's reputation and is subsequently hunted by the Gotham City Police Department. Eight years later Batman encounters the mysterious Selina Kyle and the villainous Bane a new terrorist leader who overwhelms Gotham's finest. The Dark Knight resurfaces to protect a city that has branded him an enemy.,116.568,Syncopy-Legendary Pictures-DC Entertainment-Warner Bros. Pictures,7/17/12,250000000,1081041287,165,Released,The Legend Ends,7.777,21642,Christian Bale-Michael Caine-Gary Oldman-Anne Hathaway-Tom Hardy-Marion Cotillard-Joseph Gordon-Levitt-Morgan Freeman-Matthew Modine-Juno Temple-Ben Mendelsohn-Burn Gorman-Daniel Sunjata-Cillian Murphy-Alon Abutbul-Liam Neeson-Nestor Carbonell-Josh Stewart-Aidan Gillen-Tom Conti-Joey King-Josh Pence-John Nolan-Warren Brown-Sam Kennard-Nick Julian-Miranda Nolan-Claire Julien-Brett Cullen-Reggie Lee-Joseph Lyle Taylor-Chris Ellis-Duane Henry-James Harvey Ward-Gonzalo Menendez-Cameron Jack-Lex Daniel-Tyler Dean Flores-Thomas Lennon-Trevor White-Rob Brown-Daina Griffith-Fredric Lehne-Courtney Munch-Chris Hill-Travis Guba-Jay Benedict-Will Estes-David Dayan Fisher-Glen Powell-Ben Cornish-Russ Fega-Andres Perez-Molina-Brent Briscoe-Oliver Cotton-Mark Killeen-Sarah Goldberg-John Macmillan-Robert Wisdom-Ronnie Gene Blevins-John Hollingworth-Ian Bohen-Uri Gavriel-Noel Gugliemi-Hector Atreyu Ruiz-Patrick Cox-Aramis Knight-William Devane-David Gyasi-Patrick Jordan-Joshua Elijah Reese-Desmond Harrington-Mychael Bates-Tomas Arana-Peter Holden-David Monahan-Jillian Armenante-Aja Evans-Aldous Davidson-Wade Williams-Jake Canuso-Julie Mun-Rory Nolan-Harry Coles-Massi Furlan-Todd Gearhart-Christopher Judge-Patrick Leahy-Kevin Kiely Jnr-Daniel Newman-Marc Abbink-Isiah Adams-Charlie Alejandro-Robert Arensen-Grant Babbitt-Fileena Bahris-Rick Bolander-Kyle Patrick Brennan-Scott Churchson-Bill Cowher-Graham Curry-Aaron Eckhart-Stephanie Domini-John Farrer-Frank Fata-Christopher Bryan Gomez-Vito Grassi-Michael Wren Gucciardo-Ed Heavey-John W.", + "embedding" : [ 0.011771859, -0.035887677, -0.014888137, -0.028510917, -0.03341081, 0.028699374, -0.008386356, -0.013642971, -0.019882258, -0.029991653, 0.028726296, 0.019316886, 0.02248028, 0.0044287494, -0.0041662552, 0.001817268, 0.015493892, 0.0053609405, 0.009604598, -0.02499753, 0.013797776, 0.014309303, -0.01297664, 9.389218E-4, -8.842355E-4, 0.007309456, 0.025347523, -0.023611022, -0.022372589, -0.012290116, 0.02161876, -0.0078815585, -0.01828037, -0.017405389, -0.008534429, 0.009167108, 0.007693101, -0.0077065625, 0.022345666, -0.004388366, 0.017163087, 0.010486309, -2.719592E-4, -0.012249732, -0.01566889, 0.009328643, 0.014053539, -0.004294137, -0.0015581391, 0.019101506, 0.01872459, 0.028187847, -0.035349227, -0.024472542, -0.015924653, 0.010304582, -0.0068282164, 5.5527635E-4, 0.004031643, -0.0048729707, 0.009119993, -0.0075854114, -0.023678329, -0.0035436726, -0.012512227, -0.013797776, -0.008716156, -0.012081467, -0.008211359, 0.004304233, 0.035349227, 0.010735342, 0.014443915, 4.755474E-6, 0.017984223, -0.026020586, -0.027232097, -0.009496908, -0.01849575, 0.0073700314, -0.0021218287, -0.010782457, -0.0138246985, -0.0015488844, 0.013494898, 0.0054619, -0.026262889, 0.016638098, -0.023624483, 0.016072726, 0.00735657, 0.033545423, 0.0066666813, 0.0017137848, 0.008971919, 0.028591683, -0.023772558, 0.0039071264, -0.022911038, -0.036695354, 0.01675925, -0.0014437184, -0.011973777, -0.011583401, -0.0074911825, 0.004152794, 0.0048494134, -0.008177706, 0.022345666, 0.011307445, 0.015816962, 0.008689233, 0.00584218, -0.047222044, -0.020932235, -0.0066229324, 0.01977457, -0.024714844, -0.01103149, -0.020716855, 0.021537991, 0.035860755, -0.002486965, -0.02974935, 0.045579772, 0.026693648, 0.002022552, -0.0066061057, 0.0074642603, -0.01428238, 0.014390071, -2.7742784E-4, 0.030153187, 0.013770853, -0.026141737, 0.054141127, -0.024162933, 0.009846901, -0.019707263, -0.021282228, 0.033249274, 0.022897577, -0.019532265, -0.0062796706, -0.018011145, 0.010095933, 0.007948865, 9.7594026E-4, 0.0068080244, 0.014780447, 0.010937261, 0.021766832, 0.001924958, 0.020636087, 0.024849458, 0.003570595, 0.005546033, 0.0031684404, 2.9341307E-5, -0.01265357, -0.0025929722, -0.018576518, -0.0013158367, -0.02703018, 0.0058556413, 0.009348834, 0.025643671, -0.014067001, -0.017580386, -0.0016279693, -0.0091873, 0.010708421, -0.019289963, 0.023112956, -0.0097459415, 0.0061383275, 0.00714119, -0.012498765, -0.046979744, -0.019599572, 0.01146898, -0.0048729707, 0.027595552, 0.034783855, -0.009503638, 0.0069123493, 0.024674462, -0.020811085, 0.017082319, -2.7469354E-4, 0.0088036535, 0.03125701, 0.0075854114, -0.0010381985, -0.63752455, -0.01471314, 0.013158367, -0.0019922643, 0.009880554, 0.019720724, 0.0024061974, 0.0068719652, -0.016355412, -0.021107232, -0.036937654, 0.0035436726, 0.029722428, -0.021255305, -0.019289963, -0.013690086, 0.015318897, -0.028699374, 0.0022110094, 0.01720347, -0.012478574, 0.022991806, -0.0025559538, -0.014538144, 0.0064109177, 0.017499618, -0.007396954, -0.022722581, 0.023005268, -0.006619567, -0.036964577, 0.021928368, 0.020366862, 0.0041595246, 0.036479972, 0.010048819, -0.016247721, 0.03731457, 0.013104522, 0.014901598, -0.024957148, 3.0077468E-5, 0.010250738, -2.5050534E-4, -0.02650519, 0.018414984, 0.006986386, -0.0029227727, -1.3093164E-4, -0.01709578, 0.0036177095, 0.0013309806, 1.5196484E-4, -0.016665021, 0.0022412972, 0.0064849546, 0.0060541946, -0.039926052, 0.013972772, 0.0070873452, -0.011341099, 0.025064837, -0.0037287648, 0.001673401, 0.008070016, 0.033330042, -0.006037368, -0.009066149, 0.0029480127, -0.023880247, 0.005599878, -0.004798934, -0.016772712, -0.015022749, 0.020959157, 0.014470838, 0.034810778, -0.0068214857, 0.008359433, 0.027312865, -0.0035941524, -0.0074575297, 0.0050546974, 0.01189301, 0.01838806, -0.001768471, -0.034272328, 0.0036580933, -0.004216735, -0.005731125, 4.4422108E-4, 0.0119603155, 0.004748454, -0.010856493, -0.024566771, 0.00313647, -0.013292979, 0.0011130767, 0.019693801, -0.054894954, -0.006124866, -0.006404187, 0.026087891, -0.0053912285, -7.0671533E-4, 0.010459387, 0.0042806757, -0.010042088, 0.023072572, -0.011374752, -0.021686066, 0.00800271, -0.01783615, 0.010567077, -0.008399816, -0.026087891, 0.004879701, 0.017580386, 0.0018677476, -7.7906955E-4, -0.0021336072, -0.0064008217, 0.0023237474, -0.018482288, 0.01772846, 0.037395336, -0.003668189, -0.012216079, -0.002535762, 0.0084402, 0.004051835, -0.0022194227, 0.01783615, -0.014363148, 0.01774192, 0.020259174, 0.008413278, -0.0020006774, -0.0029867135, 0.009799786, -0.016059265, 0.0032121895, -0.005939774, -0.01394585, -0.0021437032, -0.024351392, -0.017889993, -0.004314329, -0.005179214, 0.0071344594, -0.00240788, 0.0155477375, -0.004196543, 0.011603593, 0.008144053, -0.0031028169, -0.013017024, -0.015843885, 0.016180417, -0.03007242, 0.008796924, 0.015305435, -0.016840016, -0.034353096, 0.022736043, 0.01103149, -0.0029093116, 0.0046912436, -0.013414131, -0.024041783, 0.023853326, -0.023126418, 0.015332358, 0.010149779, -0.0123305, 0.021820677, -0.008251743, 0.025078299, 1.3009031E-4, -0.015816962, 0.011334368, -0.012189157, -0.017324623, -0.0051758485, 0.014403531, 0.024068706, 0.011765128, -0.012956448, -0.019155351, 0.0141746905, -0.04294137, -0.015453509, 0.0069056186, -0.010896877, 0.009483446, 0.021712987, 0.0067171613, 0.0027326327, 0.0033585806, 0.01211512, 0.02725902, 0.011583401, -0.011415135, -0.0057277596, 0.008049824, -0.028376304, -0.006034003, -0.038499158, 0.0015152313, -0.0032609864, 0.02152453, -0.0040552, -0.015399664, 0.0141746905, 0.018872665, 0.023126418, -0.019007277, -0.00345954, -0.021120694, 5.6873757E-4, -0.0035335766, -0.00995459, 0.037126113, 0.015493892, -0.025253294, -0.0021319245, 0.011818972, -0.0021352898, 0.016274644, -0.019209197, -0.014080462, 0.012727607, 0.0024482638, 0.0017020061, -0.0218476, -0.01806499, 0.028483994, -0.014941981, 0.04986045, -0.0066767773, -0.016072726, 0.0048696054, 0.02464754, -2.3557177E-4, 0.0074575297, -0.003249208, 0.0066801426, 0.006986386, -0.011381483, 0.042591378, -0.024149472, 0.014484299, -0.016449641, -0.0038263588, 0.023059111, -0.008258473, 0.008642119, 0.0110987965, 0.03373388, 0.016840016, 0.022426434, -0.02260143, 0.0155477375, 0.014040078, 0.012532419, -0.006023907, -0.0037186688, 0.0053373836, -0.009375757, -0.025468675, -0.009651712, 0.0062662093, 0.008581543, 0.019963026, 0.01428238, -0.017701536, -0.003547038, 0.025334062, 0.0029496953, 0.025105221, 0.0060945787, -0.035995368, 0.006777737, 0.02584559, -0.006131597, -0.014403531, -0.010836302, -0.01697463, -0.03634536, -0.012041084, -0.0050244094, 0.02802631, -0.0064176484, 0.011475711, -0.016490025, 0.003185267, 0.00789502, -0.024526387, 0.005266712, 0.013192019, 0.0048393174, 0.014834291, -0.028457072, -0.007309456, 0.0054114205, -0.017863072, -0.010129587, 0.009530561, 0.011394943, -0.019343808, 0.0025340794, -6.162726E-4, -0.042995214, 0.0056436267, 0.0013595857, -0.018132297, -0.007847905, -0.017863072, 0.014955442, -0.0063974564, -0.015803501, -0.034164637, -0.01394585, -1.6090395E-4, 0.08345972, 0.04891816, 0.016813094, 0.012343962, -0.01806499, 0.006037368, -0.020245712, -0.01741885, -0.014982365, -0.017795766, 0.019855335, -0.018509211, 0.024916764, 0.014322764, 0.014941981, -0.020851469, -0.0045061517, -0.015641967, 0.020164944, -0.011637246, -0.04175678, -0.007935404, 0.021457223, 0.021726448, 0.0024684558, -0.0071008066, 0.038229935, 0.01308433, -0.0047450885, -4.3538713E-4, 0.006320054, 0.0026787876, -0.0032424773, 0.030395491, -0.0037354953, 0.017863072, 0.02627635, 0.03139162, 0.024849458, -6.9830206E-4, -0.0048527787, 0.0151573615, 0.0047316276, -0.0214303, 0.008655581, -0.023261031, 0.002120146, 0.016315028, 0.030530103, -0.04837971, 0.001409224, 0.0019148621, -0.01697463, -0.009072878, 0.025401369, -0.005125369, -0.0052936343, 0.0035133848, -0.010829572, 0.012727607, 0.0046777823, -0.023193724, 0.0014546558, -0.014941981, -0.0046575908, -0.014120845, 8.013647E-4, -0.018078452, -0.01200743, 0.006946002, 0.018522672, 0.0023860056, -0.009140185, -0.010331505, 0.007040231, -0.009577676, 0.04197216, -0.009813247, 0.013205481, 0.00594987, -0.028995521, -0.04024912, 0.021712987, -0.019182274, -0.005818623, 0.012855489, -0.006757545, 0.019182274, -0.008588274, -0.0023321607, -1.0937261E-4, 0.0017053714, -0.012128581, 0.0011559844, 0.04802972, 0.01741885, 0.013292979, 0.020461092, 0.011603593, -0.010405542, -0.0022042787, -0.026909027, 0.008500776, -0.011112258, -0.009988244, -0.011193025, 0.014430454, 0.010748804, -0.02195529, -0.016140033, -0.026559036, -0.03556461, 0.004236927, -0.0037018422, 0.028107079, 8.4553444E-4, 0.02379948, 0.012209349, 6.4308995E-5, 0.024782151, 0.0073498394, -0.020057254, 0.006525338, 0.01926304, -0.0025525885, 0.036399204, -0.0015202793, -0.02000341, -0.006077752, 0.029372435, -0.010849763, 0.011718013, -0.008776732, -0.008345972, -0.013010293, -0.004183082, 0.014780447, -0.0020797623, -0.015413125, 0.008184437, -0.024068706, 0.0034561746, 0.023180263, 0.012189157, -0.003668189, -0.030368568, 0.0013814602, -0.020851469, 0.020932235, 0.019545726, 0.001257785, 0.02616866, -0.02140338, -0.0036513626, -0.020016871, -0.051771946, -0.007713293, -0.009873823, 0.01362951, 0.009456525, 0.047329735, -0.010964184, 0.034137715, -0.004132602, 0.003239112, 0.01818614, -0.01990918, -0.01168436, -0.04086834, -0.0012384345, 0.001116442, 0.032199297, -0.0028605144, 0.014901598, 0.0034460786, 0.01568235, 0.0097055575, 0.033491578, -0.011219948, -0.03720688, -0.03114932, 0.009052687, -0.024580233, -0.0014925154, -0.029237824, -0.007181574, 0.03755687, -0.010116125, -0.0056167045, -0.014120845, 0.017041937, -0.010553616, -0.0047753765, -0.030583948, 0.015453509, -0.013669894, -0.016638098, -0.028322458, -0.001876161, 0.009072878, 0.01904766, 0.03168777, -0.0015026114, -0.018966893, 0.0067743715, 0.02044763, -0.015265051, -0.024243701, 0.0062864013, -0.011590132, -0.031607002, -0.029614737, 0.0038364548, -0.02996473, -0.017916916, -0.012512227, -0.011092066, 0.020191867, -0.006878696, -0.03906453, 0.012014161, -0.009584406, 0.041891392, 0.022332205, 0.04296829, 0.042456765, 0.02499753, -0.0023338434, -0.00995459, -0.0172977, -0.0075854114, 0.012619917, 0.016395796, -0.01135456, 0.0037657833, -0.0047215316, -0.0093353735, -0.04781434, -0.0324416, 0.022130286, 0.018334216, 0.008642119, -0.012142043, 6.116453E-4, -0.018576518, -0.0036143442, 0.0020679836, -0.0020848103, 0.010304582, -0.034972314, -0.008251743, -0.006424379, -0.009914206, 0.007518105, 0.0048830663, -0.020568782, 0.0048325867, -0.0150765935, -0.01579004, -0.004172986, -0.0020276, 0.040383734, -0.01946496, 0.015870808, 0.012633378, 0.013319901, 0.008911344, -0.003688381, 0.0032710824, 0.0356723, -0.011065143, 0.023597563, 0.010203623, -0.019155351, 0.004586919, 0.026195582, -0.00886423, -0.014538144, -0.04339905, 0.0069796555, 0.015440048, -0.0032357466, 0.004947007, 0.01632849, -0.02390717, -0.007484452, 0.018199602, -0.012202619, 0.016099649, -0.038687617, 0.018697668, 0.0014159547, 0.005162387, -0.0037253995, -0.0052195974, -0.002638404, -0.004324425, 0.0077805994, -0.0046138414, 0.005700837, -0.017755382, -0.017782304, -0.041029874, -0.03233391, -0.005983523, -0.016732328, 0.011650708, -0.018939972, -7.285899E-4, -0.007168113, -0.008224821, -0.0027040276, 0.0032744478, -0.006444571, 0.0016885449, 0.009072878, -0.016961168, 5.4013246E-4, 2.7616584E-4, 0.023328338, -0.0010508184, 0.005364306, -0.008675772, 0.0029227727, 0.025926357, -0.014161229, 0.019182274, 0.0021336072, -0.0404645, -0.0035604993, 0.0077536767, 0.026478268, 0.015816962, 0.0032660344, -0.033895414, 0.009752672, -0.024028322, 0.032280065, -0.017082319, 0.019788029, 0.026653264, 0.017311161, 0.021336073, 0.0151169775, -0.011859356, -0.041595247, 0.007309456, 0.0035941524, -0.0263975, -0.009570945, 8.690916E-4, 0.016584253, 0.008500776, -0.015090055, -0.027999388, -0.0066700466, -0.002399467, -0.029022444, -0.0037253995, 0.01805153, 0.020178406, -0.0037994364, 0.0023691792, 0.013064138, 0.0054585347, 0.020245712, -0.015170823, 3.820154E-5, 0.019330347, 0.0027225367, 0.005169118, 0.013777584, -0.02704364, -0.0016035708, 0.0076392563, 0.009025765, -0.0030910382, 0.04067988, -0.013905466, -0.016745789, -0.016153494, 0.001827364, -0.019868797, -0.0015766483, 0.023516795, -0.035833832, 0.010674767, 0.0018795263, 0.016234262, -0.01872459, 0.0022614892, 0.025239835, -0.010519963, -4.2697386E-4, -0.009752672, -0.024849458, 0.014201613, -0.027555168, 0.029533971, 0.007396954, -0.0050277747, 0.024162933, 0.017620768, 0.0040955837, -0.016463103, -0.015009288, 0.0065690875, -0.019963026, -0.0016363825, -0.0040753917, 0.021578375, -0.013609318, 0.021241844, -0.026868645, 3.3484845E-4, -0.0097459415, 0.0123506915, -0.016718866, 0.026585959, 0.021511069, -0.039576057, 0.0039643366, -0.011516095, -0.0029682044, -0.011166102, -0.0046575908, -0.022022596, -0.0054450734, 0.014645834, 0.006293132, -0.019061122, -0.027272481, -0.006047464, -0.01860344, -0.016786171, 0.010553616, 0.19782645, -0.022184132, 0.002481917, 0.027070563, 0.010567077, 0.0020040427, 0.024122551, 0.00961806, -0.0053441143, -0.001573283, 0.009369026, 0.029022444, 0.0124314595, -0.001876161, 0.016611176, -0.02964166, -0.016059265, -0.011765128, -0.020568782, -0.013865082, 0.0019283233, -0.017661152, -0.010641114, -0.024607155, 0.0026215774, 0.0047215316, -0.020649549, 0.011818972, 0.023341797, 0.012256463, -0.029830119, -0.0027746991, 0.014080462, 0.012996832, -0.022776427, -0.0052162325, -0.0011711282, -0.0096449815, 0.013400669, -0.008615197, 0.0064277444, -0.0142554585, -0.016045803, 7.6476694E-4, 5.599036E-4, 0.011307445, -0.020689933, -0.010291122, -0.01697463, 0.019370731, -0.026357116, -0.013562204, 0.02910321, 0.021362996, -0.003762418, -0.0025441751, 0.0068315817, 0.008386356, -0.0025037916, -0.0010979328, 8.219773E-4, 0.024512926, -0.019868797, 0.021187998, -0.006252748, 0.011408404, -0.020528398, -0.0066431244, 0.021645682, -0.021699525, -0.0042537535, -0.026262889, -0.013622779, -0.010075741, -0.017553464, -0.027945545, 0.007820983, 0.015278513, 0.007733485, 0.03796071, -0.023664868, -0.010506501, 0.014336226, -0.018307293, -0.005609974, -0.013892004, 0.027649397, -0.019209197, -0.0022429798, -0.014201613, -0.01643618, -0.035860755, -0.0072488803, 0.0025912896, 0.004792203, 0.0026400867, 0.034622323, -0.0015816962, -0.009389218, -0.0065118773, -0.03755687, 0.01362951, 0.024607155, -0.0078815585, -0.013548743, -0.025374446, -0.0033939162, 0.006367169, 0.02346295, -0.009416141, -0.0037052075, -0.016086187, -0.003449444, -0.010755534, 0.015332358, 0.009510369, -0.0027763818, 0.020164944, 0.032791592, -0.034972314, 0.012189157, -0.020528398, 0.0190342, -0.0014487664, 0.008305588, -0.024284085, -0.023126418, 0.0016616224, 0.0045027863, -0.018536134, 0.022776427, -0.03645305, 0.0088036535, -0.0019518805, 0.019370731, 0.0030506547, 0.013905466, 0.0066599506, 0.011953585, 0.004640764, -0.0141746905, 0.0050782547, 0.013892004, 0.01080938, 0.009348834, -0.02379948, 9.027447E-4, -0.009766133, -0.006262844, -0.031122398, -0.023893708, 0.0051287343, 0.017674614, 0.016368873, 0.04512209, -7.5551233E-4, -0.011199756, -0.02650519, -0.012794913, 0.034649245, -0.043318287, 0.0023927363, 0.021699525, -0.031956993, -0.037368417, -0.025522519, -0.17198086, 0.015843885, 0.016032342, -0.049322, 0.017701536, 0.019007277, 0.01806499, 0.0018660651, 0.0014504491, 0.00254081, 0.027447477, 0.024270624, -0.041379865, 0.0041393326, 0.0119805075, 0.013690086, -0.019639956, 0.025374446, 0.030449335, -0.0017432312, 0.038203012, 7.08398E-4, -0.015763117, -0.006047464, 0.010324774, 0.011253601, 0.023086034, 0.0141746905, 0.0012897555, -0.0053441143, -0.05462573, -0.030260878, 0.016234262, 0.00887096, -0.012128581, 0.007746946, 0.018549595, -0.024082167, -0.011293984, -0.004284041, 0.043022137, 0.012606456, 0.027245559, 0.013192019, 0.017863072, 0.011738205, 0.034541555, -0.01871113, 0.004734993, -0.02261489, -0.01568235, -0.039764516, 0.013999694, -0.0066162017, 0.008043094, 0.015991958, -0.00616525, 0.0074575297, -0.0019316886, 0.0074171457, -0.006946002, -0.0036715544, 0.0030220493, -0.0045902845, -0.006414283, -0.016947707, -0.023166802, 0.012996832, -0.0061820764, -0.007504644, -0.010822841, 0.0029227727, 0.013918927, 0.0038667426, 0.016180417, -0.01655733, -0.034353096, -0.010580538, -0.0096247895, -0.0027343153, -0.011657438, 0.022197593, 0.0012199252, 0.010371889, 0.0077267545, -0.0036816504, 0.016840016, -0.009153646, 0.0083527025, -0.012249732, 0.008130591, -0.014645834, -0.039872207, 0.017378466, -0.013427592, -0.0016961169, -6.6254564E-5, 0.0033871857, 0.004236927, -0.006898888, 0.001673401, -0.015265051, -0.007948865, 0.019841874, 0.0058758333, 0.014470838, -0.0026552305, 0.030207032, 0.011273792, -0.0014033348, -0.013683355, 0.011374752, 0.012687223, 0.009362295, -0.006316689, 0.01352182, -0.027097486, -0.024634078, 0.013959311, 0.023718713, 0.0359146, 0.0047753765, 0.021174537, -0.010412273, -0.009422871, -0.018414984, -0.08502122, 0.012061276, 0.018805359, 0.041945238, -0.035887677, 0.037126113, -0.010143048, 0.024095628, -0.03537615, 0.03852608, 0.01016997, -0.04280676, 0.01611311, -0.009591137, 0.010291122, -0.014740063, -0.004041739, -0.0054013245, -0.014591989, 0.031203166, -0.004603746, 0.0023540352, 0.021470685, -0.029345512, -0.025212912, 0.0056806454, -0.037072267, 0.026774416, 0.0172977, 0.004798934, 0.018347677, -0.0263975, -0.0041225064, -0.036399204, -0.023934092, -0.03664151, -0.016476564, -0.034353096, 0.017997684, -0.04043758, 0.0067911977, 0.0036412666, 0.021605298, -0.025764823, -0.018078452, 0.007302725, -0.028941676, 0.031014707, -1.1557741E-4, -0.025495598, -0.004846048, -0.013434323, -0.018239986, -0.007868097, 0.012088197, 0.024809074, 0.034353096, 0.0042436575, -0.02260143, -6.54553E-4, -0.0069931163, -0.0061955377, -0.025441753, 0.007518105, 0.004566727, 0.005451804, -0.0015354232, -0.012189157, 0.010472848, -0.035214614, -4.9343874E-4, 0.027393633, -0.034218483, -0.023099495, -0.032387756, -0.0062796706, -0.009146916, -0.011872818, 0.023180263, -0.028995521, -0.009900745, -0.02888783, 0.008823846, -0.018670747, -0.0031448833, 0.030045498, 0.0050917156, -0.014982365, -0.0037927057, -0.031283934, -0.0075786808, 0.01806499, 9.077927E-4, -8.6825027E-4, -0.0062763053, 0.020649549, 0.00909307, 0.004341251, 9.498591E-4, -1.6342792E-4, 0.007282533, 4.6220444E-5, -0.073983, 0.029318592, -0.03222622, -0.0077604074, -0.006532069, -0.010896877, 0.0046979743, -0.0012502131, -0.0031617098, 0.01989572, -0.0084402, 0.019384192, -0.016476564, -0.0055763205, -0.021901445, 0.0019552459, 0.0013663163, -0.008911344, -0.015345819, -0.01566889, -0.0034763664, 0.019828413, 0.015345819, 0.011166102, -4.6230963E-4, 0.01923612, -0.013017024, 0.012478574, -0.02585905, -0.015776578, 0.034083873, -0.014430454, -9.204126E-4, -0.003967702, 0.004671052, -0.039306834, -0.0077604074, -0.0017381832, 0.007073884, 0.0026585958, -0.009443063, -0.027999388, -0.0014916742, -0.023543717, -0.017109241, -0.0031633924, -0.02346295, 0.015965035, 0.0040955837, 0.016234262, 0.025064837, 0.005825354, -0.014995826, -0.012377614, 0.029668583, -0.007410415, 0.059067942, -0.005276808, -5.1194796E-4, 0.01265357, 0.015816962, -0.0040922184, 0.024216779, -0.024055244, 0.009066149, 0.013696817, 0.010533424, -0.0048426827, 0.002007408, -0.03860685, -0.016382335, -0.00930172, 0.005761413, 0.032280065, 0.013616049, 0.018428443, 0.014793908, -0.003257621, -0.02585905, 0.017472696, 0.024526387, -0.0057546822, -0.035941523, 0.01958611, -0.002207644, 0.024284085, 0.0035167502, 0.010950723, 0.010836302, 0.0123708835, -0.016315028, 0.018549595, 0.029937807, 0.0076729096, -0.003043924, 0.036722276, -0.024620617, 0.0027612378, 0.01686694, 0.022574507, 0.014834291, -0.010425734, -0.0155881215, -0.008123861, -0.022722581, 0.0075450274, -0.019451499, -0.0072421497, 0.014888137, 0.030395491, 0.0302878, 0.016907323, -0.004529709, 0.014968904, -0.031633925, 0.0179573, -0.02044763, -0.021443762, -0.025334062, 0.031230088, 0.02032648, 0.0071748435, 0.025010992, -0.009045957, 0.059767924, 0.008601735, 0.028080156, -0.019343808, -6.2174123E-4, 0.0013570617, 0.013474706, -0.01211512, -0.033033893, 0.01146898, -0.021511069, 0.0083325105, 6.873648E-4, 0.042456765, -0.010560347, 0.059714083, 0.017580386, -0.008123861, 0.034756932, -0.019532265, -0.004899893, 0.008036363, 0.011657438, -0.017109241, 0.011179564, -0.0023220647, -0.008473854, 0.0128218355, -0.021268766, 0.0019720723, 0.005919582, 0.024687923, 0.017688075, 0.006834947, -0.015722733, -0.008635389, -0.012397806, 0.036533818, 0.013467975, -0.017257316, -0.012317039, 0.029318592, 0.005256616, -0.0105872685, -0.017607307, -0.0015690763, -0.02227836, -0.019532265, 0.0032054589, 0.023234108, -0.0076863705, -0.0013621097, 3.3863445E-4, 0.012054545, 0.014861214, -0.004021547, -0.012963179, -0.011724744, -0.015022749, 0.019289963, -0.005778239, -0.011415135, -0.03634536, -0.014107385 ], + "id" : "2ade4120-3a15-47df-b261-450b6b68fa24", + "metadata" : { + "source" : "movies.csv" + } + }, + "59786cef-2d0d-4907-b54b-287e0cd7b575" : { + "text" : "904,EuropaCorp-Canal+-Cin��+-TF1 Films Production,7/25/14,40000000,458863600,89,Released,The average person uses 10% of their brain capacity. Imagine what she could do with 100%.,6.427,14706,Scarlett Johansson-Morgan Freeman-Choi Min-sik-Amr Waked-Julian Rhind-Tutt-Pilou Asb�_k-Lio Tipton-Shin Yoo-ram-Seo Chong-ju-Nicolas Phongpheth-Paul Lef��vre-Jan Oliver Schroeder-Luca Angeletti-Pierre Poirot-Pierre Grammont-Bertrand Quoniam-Lo��c Brabant-Pascal Loison-Pierre G��rard-Isabelle Cagnat-Fr��d��ric Chau-Claire Tran-Fran�_ois Legrand-Bob Martet-Alexis Rangheard-Tonio Descanvelle-Julien Personnaz-Christophe Lavalle-Renaud Cestre-Thibault Segouin-Matthew Bravais-Claire Zaniolo-Alessandro Giallocosta-Wolfgang Pissors-Sifan Shao-Paul Chan-Chou Chung-Wei-Huan Jhih-Cyuan-I. Cheng-Sheng-Frank Ma-Tseng Sheng-En-Liu Hsieh-Min-Sandra Abouav-Abel Aboualiten-Ken Lin-Hsing Feng-Hao-Hsiang Hsu-Laura D'Arista-Eunyul Hong-Samuel Churin-Mason Lee-Mohammad Aslam Ansari-Kevin Dust-Diego Llano-Timothy Reevis-Jaysson Reyes De La Cruz-German Tintaya Mamani-Kanneti Sawe Han-C��dric Chevalme,artificial intelligence-telepathy-intelligence-drug mule-telekinesis-futuristic-drugs-super power-tough girl-surgery-brain capacity-synthetic drug-human brain,/kRbpUTRNm6QbLQFPFWUcNC4czEm.jpg,/ozVwXlfxqNsariipatGwa5px3Pm.jpg,198663-157350-127585-131631-137113-119450-102651-101299-75656-118340-262500-98566-207703-100402-91314-135397-49047-76338-72190-99861-177572\r\n954,Mission: Impossible,Adventure-Action-Thriller,en,When Ethan Hunt the leader of a crack espionage team whose perilous operation has gone awry with no explanation discovers that a mole has penetrated the CIA he's surprised to learn that he's the No. 1 suspect. To clear his name Hunt now must ferret out the real double agent and in the process even the score.,54.761,Paramount-Cruise/Wagner Productions,5/22/96,80000000,457700000,110,Released,Expect the impossible.,6.", + "embedding" : [ 0.011309778, -0.028746257, 0.005213849, -0.05374538, 0.0053608622, 0.006492524, -0.0046087005, -0.008424212, -0.03881155, -0.033368632, 0.022633232, 0.050928194, 0.02074599, -0.00416766, -0.008260105, 0.027392367, 0.016410803, -0.0070839967, -0.0073301587, -0.021375071, -0.011261914, 0.008643023, -0.014167993, 0.018092912, -0.0026376948, 0.0012607258, 0.0229888, -0.010202049, -0.0127320485, -0.022086207, 0.036623444, -0.0036343092, -0.011706373, -0.0055933488, -0.0023146071, 0.013190183, 0.0058976323, -0.007836158, 0.016191993, -0.007248105, 0.007248105, 0.0118568055, 0.0035043904, -0.0014350906, -0.0073506725, 0.019966478, -1.6421487E-4, -0.010024265, -0.010831131, 0.02368626, 0.023098206, 0.046223763, -0.015932156, 0.005128376, -0.024205934, -0.011296103, -0.014660317, 0.0024086272, 0.020376747, -0.020034855, 0.015262047, -0.028117176, -0.038264524, -0.0033300256, -0.012991886, 0.0025094855, -0.010161023, -0.009839645, 0.0055591594, -9.478948E-4, 0.0076241856, 0.02245545, 0.0022599043, -0.009388347, 0.021826368, -0.012574778, -0.03577555, 0.003353958, -0.0016077459, 0.015877452, 0.021293018, -0.012150832, -0.014222696, 0.018448478, 0.010489238, 0.013887642, -0.028117176, 0.022619557, -0.022318693, 0.016506532, 0.015603939, -0.005466849, -0.003965944, 0.013873966, 0.003458235, 0.013962858, -0.025600852, 0.030387338, -0.015179994, -0.038729496, -0.008048131, -0.0027043635, -0.019816045, -0.018366424, -1.0288804E-4, -0.014236372, 0.011090968, -0.012711535, 0.016014209, 0.015467182, 0.008656699, -0.021990476, 0.021361396, -0.03003177, 0.008800293, -0.021046855, 0.020322045, -0.006550646, 0.0016752696, -0.017162966, 0.031508744, 0.016725345, 0.030989068, -0.026038475, 0.032794256, 0.04250398, 0.002015452, -0.021498153, -0.0075558075, -0.0071318615, 0.020581882, -0.015945831, 0.030305283, 0.040124413, -0.021306694, 0.05700019, -0.0044411737, 0.015494534, -0.026284637, -3.4424223E-4, 0.023781989, 0.036131117, -0.01057813, -0.0052856463, -0.030496743, 0.028281284, 0.022004152, 0.0050634164, 0.03673285, 0.008410537, 0.013381642, 0.0076720505, 0.009176374, 0.029320635, 0.016014209, -0.008506266, 0.009559293, 0.007651537, -0.00517966, -0.010126833, -0.0068412535, -0.0045813494, -0.029730905, -0.012226049, 0.011610643, 0.022277666, 0.010530266, -0.0022496476, 0.0073301587, -0.013867129, -7.961804E-4, 0.030113824, -0.018612586, 0.0044480115, 0.0076310234, 0.025888043, 0.011453373, -0.012479048, -0.025341015, -0.026038475, 0.018120263, 0.03246604, 0.03263015, 0.013846615, -0.0015786851, 0.012875643, 0.034052417, -0.027583826, 4.9317884E-4, -0.0188861, -0.026134204, 0.0058189975, -0.01102259, -0.020075884, -0.6481173, -0.005008714, -0.006263457, 0.003369343, 0.010776428, 0.017792046, -0.0011932022, 1.191279E-4, -0.022414422, 0.004974525, -0.012684183, 4.7736635E-4, 0.00571643, -0.014578263, -0.02491707, -0.013914994, -0.013867129, -0.0204588, -0.005654889, -0.013798751, -0.039167117, 0.007501105, -0.013067102, 0.009723401, -0.013908156, -4.927515E-4, 0.0012906413, -0.016369777, -0.0043180925, 0.014277399, -0.013969696, 0.039714143, 0.00729597, 0.003593282, 0.039440632, -0.0020855395, -0.009374672, 0.04679814, 0.01746383, 0.024342692, -0.010372995, -0.0073780236, 0.012909832, -0.013867129, -0.0265855, 0.030879661, 0.008041293, -0.012554265, -0.0052856463, -0.02346745, -0.0073780236, 0.026681231, 0.001613729, 0.0050121327, -0.014181669, 0.007938726, 0.017245019, -0.02175799, 0.033013064, -0.0144825345, -0.01828437, -3.41037E-4, 0.002731715, 0.01329275, -0.013600454, 0.019269018, 0.0022479382, -0.020992152, 0.005497619, -0.046305817, 0.01310813, 0.010256752, -0.00571643, -0.012150832, 0.014126967, -0.004506133, 0.044227116, -0.0078019695, -0.014113291, 0.015111615, -3.1624985E-4, -0.014742372, 0.00833532, 0.0168621, 0.0018154451, -0.006796808, -0.035201173, 0.0030120662, 0.013060264, 0.00852678, 0.013901318, 0.020978477, 0.015658641, 0.006123281, 4.645454E-4, 0.0015556074, -0.016766371, -0.0022479382, 0.029375339, -0.04050733, -0.011897832, -0.022058856, 0.025341015, -2.4402523E-4, 0.028609501, 0.027146203, -9.547327E-4, -0.0010239658, 0.042011656, -0.013032913, -0.01297821, -0.0070224563, -0.013251724, 6.004474E-5, 0.0069027944, -0.024684584, 0.02696842, 0.0085609695, -0.0060685785, -0.020540856, 0.0023864044, -7.8549626E-4, 0.009429374, -0.00843105, 0.01288248, 0.007275456, -0.0077541047, -0.0026838502, 0.0098738335, -0.007877186, -0.018079234, -0.012540589, 0.012485886, -0.020609234, 0.0044104033, 0.01970664, 0.013197022, -0.02084172, -0.0025881205, -0.0017291175, -0.034818254, -0.021402422, -0.006489105, -0.014578263, -0.009538779, -0.005624119, -0.029019771, -0.0069267265, -0.0019504924, -0.022893071, -0.011679022, 0.007979753, 0.0021710126, 0.012526914, 0.0028479581, -0.012868805, -0.0188861, -0.03596701, 0.0035967012, -0.028609501, -0.0125064, 0.034353282, 0.009880671, -0.019036531, 0.008649861, -0.006417308, -0.015166317, 0.015781723, -0.009258429, -0.02204518, 0.0060172947, 0.001105165, 2.732997E-4, 0.026311988, -8.63704E-4, 0.037662793, 0.00401039, 0.017641613, 0.016793722, -0.015097939, -0.016191993, -0.01102259, -0.011282427, -0.01900918, 0.037061065, 0.015658641, 0.014386805, -0.015371453, -0.011569616, -0.005005295, 0.004300998, -0.0010983272, -0.015056912, -0.008738752, 0.009114834, 0.02494442, 0.003230877, -0.011330293, 0.006164308, 0.0120619405, 0.044145063, 0.031973716, 0.0033026743, -0.008485753, 0.009039617, -0.020062206, 6.910487E-4, -0.0026633367, 0.005883957, -0.01256794, 0.016014209, 0.0018291208, -0.0022376815, -0.002690688, 0.0018051884, 0.0135184, 0.0060890918, 0.0032719038, -0.012691021, 0.004386471, 0.00492666, -0.017395452, 0.0030428364, -0.007494267, 0.0018530532, 0.023289666, 0.019446801, 0.0076652127, 0.0020547693, -0.010967887, -0.010475563, 0.010277266, 0.0037915793, 0.011104643, 0.026298312, 0.009265266, 0.030168528, -1.0550565E-6, 0.04573144, 0.0058189975, 0.0042702276, 0.022728963, 0.021265667, -0.011986724, -0.0037779037, -0.005176241, 0.02633934, 0.014427831, -0.0023385396, 0.05393684, -0.032329284, 0.020513505, 0.0031847216, 0.0077130776, -0.010844806, 9.461854E-4, -5.602751E-4, 0.028253933, 0.029156527, 0.029074473, 0.015029561, -0.011555941, 0.018051883, 0.006212173, 0.006290808, -0.007952401, -0.027939392, -0.0022940936, 0.009593482, -0.027529122, -0.015480858, -0.013436345, 8.7396073E-4, 0.001904337, -0.009723401, 0.004215525, -0.014277399, 0.016205668, 0.0130124, 0.022879396, -0.025942745, -0.024028152, 0.010509752, 0.024370043, -0.0073848614, -0.017299723, 5.1112816E-4, -0.01108413, -0.03714312, -0.0064685917, -0.041574035, 0.03331393, -0.031891663, 0.012691021, -0.022605881, -0.0055933488, 0.019433126, -0.007822483, 0.001971006, -0.008266943, -0.009743915, -0.005128376, -0.00596943, -0.010831131, 0.00960032, 0.011610643, -0.007877186, -0.009538779, 0.0012744014, -0.00508393, 0.017887775, 0.001841087, -0.0265855, 0.022414422, 0.006485686, -0.0074737533, -0.012752562, 0.011384995, 0.022619557, -4.487329E-4, -0.0012120062, -0.031508744, -0.0357482, 0.0016299689, 0.0634004, 0.027310312, 2.4295681E-4, -0.0055249706, -0.013819264, -0.0040685115, -0.01531675, -0.00846524, 0.014660317, -0.01026359, 0.004393309, -0.018858748, 0.017286045, 4.5770756E-4, 0.023440098, -0.0053095785, 0.004954011, -0.0075831586, -0.019556208, -0.016725345, -0.008219077, -0.019405775, 0.014113291, 0.031016419, -0.0014709892, -0.023221286, 0.02921123, 0.02185372, 0.0064754295, 0.0078908615, 0.0035214848, 0.017573236, 0.008321645, 0.0065950914, -0.0010470435, -0.009798617, 0.025231611, 0.0026547892, 0.024999123, 0.013839778, -0.008820807, 0.014564588, -0.0032667755, -0.0039898767, 0.021511829, -0.02788469, -0.026708582, 0.009005428, 0.032028418, -0.031098472, 0.021498153, 0.007993429, -0.037389282, 0.005586511, 0.01307394, 0.021470802, 0.0027163299, 0.0035385794, -0.030113824, -0.0093473205, 0.007207078, -0.041628737, 0.025081178, -0.009429374, -0.007111348, -0.017518533, -0.01307394, -0.0032394242, -0.003849701, 0.003685593, -0.0032513905, -0.019269018, -0.024041828, -0.009559293, 0.01796983, -0.0038120928, 0.011918346, 0.004297579, -0.0011838002, -0.0027112016, -0.03041469, -0.03107112, -0.0037061065, -0.02940269, -0.014373128, 0.012396994, -0.012335454, -0.010619157, -9.769556E-4, -0.0046292143, 0.009996914, 0.0021026342, 0.0075968346, -0.0042668087, 0.045813493, -0.0034753296, 0.020294694, 0.023098206, 0.02769323, -0.012766237, -0.0013017528, -0.01708091, -0.015029561, -0.017573236, -0.020349396, -0.01067386, -0.009812293, -0.0071455375, -0.010974725, -0.029676203, 4.559447E-5, -0.017026208, 0.018653613, -0.0036103767, 0.022783665, -5.8121595E-4, 0.029238582, 0.0043283496, 0.0059762676, 0.0015718472, -0.010591806, -0.021115234, 0.010318292, 0.026927393, -0.0035522552, -0.0016060364, -0.004718106, -0.019077558, -3.352676E-4, 0.03678755, 0.0037539713, 0.017203992, -0.015248371, -0.0124995615, -0.022961449, -0.049314465, -0.0030120662, 0.003603539, 8.923374E-4, 0.018174965, -0.019775018, 0.019050207, -0.008137023, 0.0036103767, 0.0063079027, -0.023727287, -0.0031368567, -0.0024872625, 0.0025727353, 0.017094586, 7.9788984E-4, 0.006827578, -0.036623444, -0.010386671, -0.018721992, -0.0306335, -0.011125158, -0.018845072, 0.049916193, 0.006984848, 0.036049064, -0.011378157, 0.012020914, 0.020691289, 0.012670508, 0.012745724, 0.0062976456, -0.018776694, -0.026927393, 0.008390023, 0.018257018, 0.016602263, 0.024164908, 0.005504457, 0.0060993484, 0.02238707, -4.6411803E-4, 0.0067933886, 0.002023999, -0.02880096, -0.0072275912, 0.011617482, -0.03000442, -0.008711401, -0.025040152, -0.012014076, 0.019050207, 0.010249915, -0.0037026876, -0.003808674, 0.027857339, -0.011679022, -0.005750619, -0.0031590797, 0.025997447, -0.036431983, -0.008738752, -0.024164908, 0.0028428298, -0.0041779173, -0.012677345, 0.012014076, 0.007234429, -0.0017795465, -0.0115969675, 0.02390507, -0.02441107, -0.027187232, 0.019528857, -0.016219344, -7.1850685E-5, -0.029676203, 0.0027556475, -0.023781989, -0.003331735, 0.009572969, -0.01180894, 0.0083284825, -0.01967929, -0.01796983, 0.0409176, 6.1006307E-5, 0.052213706, 0.0011838002, 0.05497619, 0.027761608, 0.013279075, -8.2481385E-4, 0.012068778, 3.910387E-4, 0.0023795664, 0.052541923, 0.0129371835, -0.014072264, -0.0037847415, -0.009039617, 0.004666822, -0.04017912, -0.035283227, 0.009073807, 0.018954478, 0.025915394, -0.02798042, -0.0065472266, -0.020814369, 0.03128993, 0.011248238, 0.007118186, 0.0031385662, -0.029238582, -0.009354158, -0.003931755, 0.020855395, 0.009292617, -0.0029300123, -0.00833532, 0.0026650461, -0.014783399, 0.00596943, 0.0036103767, -0.0035214848, 0.022031503, -0.027747933, 0.023508476, -0.003935174, 0.003495843, 0.0038599577, -0.0031317284, 0.0034240459, 0.027953068, -0.018229667, -0.0056890785, 0.0041334713, -0.016342426, 0.012232887, 0.0024582015, -0.030141175, -0.03391566, -0.0050599976, -0.019583559, 0.021963125, 8.029114E-5, -0.004468525, -0.0010196922, -0.018079234, -0.014209021, -0.024739286, -0.015289399, 0.01348421, -0.027187232, 0.011993562, 3.241561E-4, 0.024438422, 0.006078835, -0.0051215384, -0.008130185, 0.007651537, 0.005254876, -0.014085939, -0.012595291, -8.619946E-4, -0.01440048, -0.03919447, -0.017245019, -0.0139286695, -0.0047659706, 0.011220887, -0.03886625, -0.0012778203, -0.002176141, 6.8848446E-4, -0.009983239, -0.0031112148, -0.022305017, 0.0056070243, 0.027118852, -0.013347453, -0.0056617274, -0.008383186, 0.0046736603, 0.005945497, 0.004837768, 0.0058600246, 0.010441374, 0.028746257, -0.021730639, 0.02132037, 0.0065062, -0.015508209, -0.009053294, 0.011173022, 0.029785609, -0.0048514437, 0.004885633, -0.029949715, -2.3056324E-4, -0.01139867, 0.033943012, 0.008301131, -0.005914727, 0.02267426, 0.014113291, 0.017395452, 0.023029827, -0.00720024, -0.020787017, -0.007446402, -0.026804313, -0.006988267, 0.007849834, 0.010530266, 0.02071864, 0.016397128, -0.004998457, -0.022934098, -0.019063883, -0.041163765, -0.023645233, -0.013176507, 0.024205934, 0.04017912, 0.022687936, -0.0115080755, 0.019036531, -0.004184755, 0.016602263, -0.0142500475, 0.017039884, 0.008458402, -0.006707916, 0.0039762007, 0.01440048, -0.026530799, -0.017354425, -0.0029436878, 0.014154318, -0.005945497, 0.03107112, -0.009805455, -0.0063147405, 0.012868805, 0.0062497808, 0.013183345, -0.009798617, 0.015617615, -0.034353282, 0.0071797264, -0.003145404, 0.009866996, 0.0030992485, -0.0046497276, -0.0013085906, -0.007207078, -0.025053827, -0.01297821, -0.01652021, 0.011056779, -0.0173681, 0.014154318, 0.0010795231, -0.0051078624, 0.022236638, 0.023987124, -0.017655289, -0.0026821408, -0.0033300256, -0.0055762543, -0.0037676468, -0.0070634834, -0.00480016, 0.013750886, -0.016656965, 0.014058588, -0.021607557, 0.0018752762, -0.001345344, 0.0076925643, 0.0035454172, 0.027556473, 0.013627805, -0.054593273, 0.006304484, -0.008930212, 0.0018342491, -0.0012769656, 0.002377857, -0.00442066, -0.039960306, -0.012643157, 0.006984848, -0.020923775, -0.030332634, -0.0058737, 0.009477239, -0.00480016, 0.018612586, 0.1795342, -0.0034343025, 0.0016718506, 0.056890786, -0.006755781, 0.029730905, 0.011405508, 0.0078019695, -0.002444526, 0.0056822407, -0.008793456, -4.790758E-4, -0.015056912, -0.0017949316, 0.009456726, -0.015986858, -0.01818864, -0.0306335, -0.015111615, -0.017942479, 0.0015453506, 0.0031607891, -0.026188906, -0.02624361, -0.0059284028, -0.014263723, 0.004396728, -0.008198564, 0.03304042, 3.495843E-4, -0.016096262, -0.009217401, -0.0144551825, 0.0059078895, -0.03268485, -0.005299322, -0.009887509, 0.011371319, -0.004755714, -0.0023128977, -0.015494534, 0.021771666, 0.009798617, 0.007234429, 0.009183212, 0.023754638, -0.011562779, -0.0074600778, -0.006786551, 0.0178741, -0.053198356, 0.009278942, 0.020691289, 0.032028418, -0.013450021, -0.0046531465, 0.008731915, 0.009593482, -0.0039454307, 0.02226399, 0.017067235, 0.037279874, -0.033614796, 0.027843663, -0.009894347, 0.017245019, -0.03287631, -0.021799017, 0.017313398, -0.030332634, -0.014838101, -0.024137557, -0.029566798, 9.3336444E-4, -0.010345644, -0.015275723, 0.021812692, 0.022961449, 0.0132585615, 0.016711669, -0.010885833, -0.03498236, -0.0056172814, -0.0045676734, -0.02276999, -0.02561453, -0.0040274845, 0.0041574035, -0.0010692665, -0.018079234, -0.011002076, -0.023891395, -0.023098206, -0.00919005, -0.014961182, -0.0035043904, 0.029484743, 0.011726887, -0.035310578, -0.009860158, -0.04411771, 0.03044204, 0.024479449, 0.015795399, -0.006796808, -0.010290941, -0.0044548493, 0.0168621, 0.0135799395, -0.014181669, -0.0063933753, -0.021334045, 2.369737E-4, -0.013703021, 0.0014410737, 0.006335254, -0.016356101, -0.00846524, 0.035064418, -0.0138124265, -0.0069472403, -0.023864044, -0.0032291675, 0.0114944, 0.008266943, -0.017696317, -0.027406042, 0.010345644, -7.4105035E-4, -0.031891663, -0.0067284293, -0.02318026, 0.004683917, 2.8569327E-4, -0.0076720505, 0.014509886, 0.012868805, -0.002276999, 0.002232553, 0.011152509, 0.0030684783, -0.032411337, 0.017176641, 0.008861834, 0.020732315, -0.01727237, 0.004971106, 0.0051249573, -0.012096129, -0.023522152, -0.013627805, -0.013285913, 5.252312E-4, 0.014605615, 0.027009448, 0.0068480917, -0.04209371, -0.024260638, -0.027583826, 0.020513505, -0.04595025, 0.018366424, 0.03186431, 0.001971006, -0.03897566, 0.0045847683, -0.17625202, 0.02194945, 0.012342292, -0.037498686, 0.025819665, -0.002061607, 0.010947374, -0.0015701378, -0.008478915, -0.010037942, 0.0039009848, -0.004277066, -0.03552939, -0.026544474, 1.985109E-4, 0.0043146736, -0.0019539113, 0.049560625, 0.021443449, 0.0020547693, 0.020704964, -0.008178051, 0.004618957, -0.007931888, 0.021812692, -0.009449888, 0.02286572, 0.004967687, 0.018694641, -0.032137822, -0.023563178, -0.017928803, 0.025245287, -0.0020103233, 0.0014009014, -0.004844606, -0.011829454, -0.015262047, -0.018653613, -0.0076720505, 0.023248639, 0.042121064, -4.7993052E-4, 0.006981429, 0.0107490765, 0.010024265, 0.03167285, -0.02279734, -0.012991886, -0.0054805246, -0.012014076, -0.02981296, 0.019282695, -3.1795932E-4, -0.007234429, 0.02093745, -4.3847616E-4, 0.0065472266, 0.008390023, -0.011521752, -0.033204526, -0.0032821607, 0.009053294, -0.008417374, -0.016561236, -0.014974858, -0.010878995, 0.01879037, -0.038127765, 0.024958096, -0.0173681, 0.003287289, 0.005675403, -0.0017299722, -0.008383186, 0.0034855863, -0.005422403, -0.0066839834, -0.0053711194, 0.04143728, -0.016369777, 0.02788469, -0.008711401, 0.015576588, -0.009607158, -0.027720582, 0.014879129, 5.7395076E-4, 0.013019238, -0.025874367, 0.014769723, -0.014728696, -0.015371453, 0.0042052683, 0.017422803, 0.0073780236, 0.011911508, 0.013620967, 0.012656832, -0.014865452, -0.0193921, 0.0020598976, -0.02008956, 0.012547427, 0.037799552, -0.0053642816, -0.0026171813, 0.021238314, 0.0029453973, -0.00770624, -0.0129371835, -0.010407184, 0.024342692, 0.012950859, -0.027734257, 0.022031503, -0.02132037, -0.008301131, -0.005340349, 0.013456859, 0.047290467, -0.0040787687, -0.019036531, -0.024616206, -0.010468725, -0.0018786951, -0.08659434, -0.0030667689, 0.006872024, 0.040972307, -0.0022496476, 0.03550204, -0.020404099, 0.028199231, -0.019104911, 0.033149824, -2.3398215E-4, -0.039495334, 0.003130019, 0.0029129176, 0.011384995, -0.004930079, -0.003085573, 0.010530266, -0.003100958, 0.037006363, 0.014332102, -0.012075616, 0.010537104, -0.015891127, -0.018680964, 0.002466749, -0.022072531, 0.009395185, 8.722513E-4, -0.0023385396, 0.006783132, -0.048056304, 0.016410803, -0.030141175, 0.0076652127, -0.007111348, -0.021675937, -0.024192259, 0.008861834, -0.04559468, 0.008848159, 0.013032913, 0.012150832, -0.0046018627, -4.4702346E-4, -0.0036274714, -0.028445393, 0.03126258, -0.01449621, -0.022523828, -0.026120529, -0.011802102, -0.023152908, 0.0039009848, 0.0025607692, 0.013798751, 0.042203117, -0.012971372, 0.00401039, -0.012725211, 0.00517966, -0.022564854, -0.031782255, 0.03000442, 0.024821341, -0.0037095253, -0.017409127, -0.015508209, 0.008390023, -0.005460011, -0.021689612, 0.029949715, -0.012773075, -0.0024103369, -0.018557884, -0.002456492, -0.009326806, -0.014797075, 0.020773342, -0.0183801, -0.0071455375, -0.022961449, -0.0018769857, -0.008348996, -0.0066566323, 0.010119995, -0.0054463353, 0.0122534, -0.0043215114, -0.031782255, -0.0029453973, 0.023823015, 0.0071045104, 0.006892537, -0.007254943, 0.021730639, 0.016438155, 0.0068891183, 6.265166E-4, 0.008601996, -0.017641613, -0.016055236, -0.05453857, 0.02662653, 0.008827644, -0.006998524, 0.006540389, 0.010837968, 0.0062292675, 0.0017556141, -0.005418984, -5.46172E-4, -0.0019846815, 0.0021009247, -0.020075884, 0.007234429, -0.024479449, 0.002870181, 0.0044514304, -0.014961182, -0.0055318084, 0.004256552, -0.007371186, 0.005203592, 0.015275723, -4.7608424E-4, -0.012273913, 0.001749631, -0.0038633766, 0.012390156, -0.015754372, -0.0068412535, 0.020554531, -0.0075831586, -0.006646375, -0.0018889519, 5.8175017E-5, -0.020404099, -0.008649861, 1.6560381E-4, 0.018065559, 0.0077609424, -0.007774618, -0.02580599, -0.007282294, -0.006936983, -0.022099882, 0.020472478, -0.027488096, 0.003275323, 0.015289399, 0.021990476, 0.04143728, 5.483089E-4, -0.00521043, -0.02305718, 0.0043659573, -0.027802637, 0.022195611, 0.011651671, 0.010605481, -0.012520076, 0.031727552, 0.0063147405, 0.015084264, -0.021881072, -0.0064754295, 0.011364481, 0.015863776, 0.022441775, 0.010024265, -0.016793722, -0.008800293, -0.007405375, 0.029840311, 0.027447069, 0.022482801, 0.012855129, 0.0068856995, 0.009634509, 0.017737344, 0.019337397, 0.016150966, -0.010393509, -0.027925717, 0.011008914, -0.006201916, 0.026708582, 0.008253266, 0.015453506, -0.003119762, 0.003918079, -0.011015751, 0.0051899166, 0.018311722, -0.010441374, 0.016342426, 0.022017827, -0.010277266, -0.014427831, 0.008567807, 0.022250315, 0.00729597, -0.012431184, -0.010605481, -0.0071797264, -0.018995505, -0.009996914, -0.008362672, -0.007740429, 0.0036308903, 0.022564854, 0.03454474, 0.02576496, -0.013942345, -0.0052753896, -0.033806253, 0.0022257152, -0.009832806, -0.007733591, -0.017600587, 0.05576938, 0.009162699, 0.0051864977, 0.034052417, -0.021593882, 0.06307219, 0.011815779, 0.017860424, -0.03334128, 0.0075147804, 0.009429374, -0.007248105, 0.0078088073, -0.02093745, 0.015111615, -0.0019026275, -0.0178741, -0.009176374, 0.034407984, -0.0132585615, 0.0898765, -0.004502714, -0.010701211, 0.014427831, 0.0025180327, -0.0061472133, 0.0037505524, 0.012171346, -0.022004152, -0.016780047, 0.012608968, -0.021867396, 0.029949715, -0.02257853, 0.0095251035, -0.0065472266, 0.0048343493, 0.028281284, -0.013880804, -0.007275456, -0.007842996, -0.0059078895, 0.0053950516, 7.017328E-4, -0.011555941, -0.005518133, 0.02940269, -0.006984848, -0.011672184, -0.0265855, 0.010844806, -0.030086473, -0.00558993, -0.0011265333, 0.022469126, 0.0044445926, 0.004557417, -0.0073985374, 0.016205668, 0.00653697, -9.422056E-6, 0.016356101, -0.013908156, -0.021210963, -0.0023881139, -0.025149556, -0.011227725, -0.028937716, -0.03306777 ], + "id" : "59786cef-2d0d-4907-b54b-287e0cd7b575", + "metadata" : { + "source" : "movies.csv" + } + }, + "ad0f1190-3ec4-4dc5-a271-d9e6c31a771f" : { + "text" : "But the only way home may be to go further out into the terrifying expanse of space.,25.848,Esperanto Filmoj-Warner Bros. Pictures-Heyday Films,10/3/13,105000000,723192705,91,Released,Don't let go.,7.2,14727,Sandra Bullock-George Clooney-Ed Harris-Orto Ignatiussen-Phaldut Sharma-Amy Warren-Basher Savage,space mission-loss-space-astronaut-space station-trapped in space,/kZ2nZw8D681aphje8NJi8EfbL1U.jpg,/a2n6bKD7qhCPCAEALgsAhWOAQcc.jpg,37724-274870-72190-194662-68724-286217-68726-157336-106646-101299-64690-181808-118340-75656-76338-77338-152601-146233-49521-109445-37165\r\n100402,Captain America: The Winter Soldier,Action-Adventure-Science Fiction,en,After the cataclysmic events in New York with The Avengers Steve Rogers aka Captain America is living quietly in Washington D.C. and trying to adjust to the modern world. But when a S.H.I.E.L.D. colleague comes under attack Steve becomes embroiled in a web of intrigue that threatens to put the world at risk. Joining forces with the Black Widow Captain America struggles to expose the ever-widening conspiracy while fighting off professional assassins sent to silence him at every turn. When the full scope of the villainous plot is revealed Captain America and the Black Widow enlist the help of a new ally the Falcon. However they soon find themselves up against an unexpected and formidable enemy���the Winter Soldier.,37.187,Marvel Studios,3/20/14,170000000,714766572,136,Released,In heroes we trust.,7.674,17566,Chris Evans-Scarlett Johansson-Sebastian Stan-Anthony Mackie-Cobie Smulders-Frank Grillo-Emily VanCamp-Hayley Atwell-Robert Redford-Samuel L. Jackson-Toby Jones-Jenny Agutter-Maximiliano Hern��ndez-Georges St-Pierre-Callan Mulvey-Alan Dale-Chin Han-Bernard White-Stan Lee-Garry Shandling-Salvator Xuereb-Brian Duffy-Zack Duhame-Adetokumboh M'Cormack-Christopher George Sarris-Aaron Himelstein-Allan Chanes-Joe Russo-Christopher Markus-Stephen McFeely-Pat Healy-Ed Brubaker-D.C. Pierson-Danny Pudi-Bernie Zilinskas-Branka Katiۈ-Angela Russo-Otstot-Jon Sklaroff-Chad Todhunter-Abigail Marlowe-Jeremy Maxwell-Emerson Brooks-Evan Parke-Ricardo Chacon-Griffin M. Allen-Ann Russo-Joe Rosalina-Michael Debeljak-Eddie J. Fernandez-Jody Hart-Steven Culp-Derek Hughes-Wendy Hoopes-Ethan Rains-Dominic Rains-Charles Wittman-Andy Martinez Jr.", + "embedding" : [ 9.639079E-4, -0.045484297, -0.018488124, -0.05374926, -0.0037914836, 0.013248247, -0.0025541028, -0.028846337, -0.019541502, -0.034086213, 0.031385247, 0.042324167, 0.0024376235, 0.011816734, -5.4103765E-4, -0.0031348108, 0.016948573, -0.019609027, -0.0061345734, -0.019987162, 0.011249531, -0.0043350533, -0.004328301, 0.014315129, -0.007994865, -0.0062257308, 0.031466275, -0.011121235, 0.0091967955, -0.02425469, 0.024106137, -0.032330584, -0.013693907, -0.016610952, -0.022228966, -0.006661262, 0.002817447, -0.026591029, 0.010283935, -0.022364013, -0.002689151, 0.021702277, -0.006630876, -0.0041459855, -0.024794884, -0.0022114173, 0.015503556, -0.004537626, 8.8625506E-4, 0.024727361, 0.018272048, 0.035841845, -0.031277206, -0.021580733, -0.0039771753, -0.01627333, -0.016259827, 0.012775578, 0.009338596, -0.0071710697, 0.011850497, -0.00566528, -0.01216786, 0.0096154455, -0.016881049, -0.012890369, -0.013781688, -0.03859683, -0.0054795886, 0.0013184099, 0.022958227, 0.01847462, 0.010229915, 0.0150714, 0.012708054, -0.019352434, -0.021202598, -0.010830881, -0.01651642, 0.011290045, 0.014814809, -0.010891653, -0.026915144, 0.0135048395, 0.021054044, 0.023093276, -0.003960294, 0.017272688, -0.049265653, 0.0046321596, 0.0033407595, 0.0107701095, -0.002668894, 0.0029660002, 0.012262394, 0.005729428, -0.0018383462, 0.020405812, -0.028252123, -0.037462424, 0.005293897, -0.008460782, -0.008980718, -0.0075221956, -0.0056247655, 0.008427019, 0.0013234742, -0.022985237, 0.01512542, -5.764878E-4, 0.015233459, -0.005455955, 0.029035404, -0.032330584, -0.01680002, -0.016746001, 7.928818E-5, -0.010466251, -0.0027752444, -0.014922847, 0.020419316, 0.035571747, 0.009412873, -0.014018023, 0.026820611, 0.01752928, -0.002380228, -0.015260468, 0.0026621413, -0.010412231, 0.024605816, 0.015192944, 0.017718349, 0.0042371433, -0.011755963, 0.03630101, -0.03959619, 0.018663688, -0.020351792, -0.016219312, 0.03387014, 0.028765308, -0.004135857, -0.01384246, -0.03775953, 0.012309661, 0.015017381, -0.0077855396, 0.018042466, 0.015017381, 0.015746642, 0.0051554726, 0.010803872, 0.012627024, 0.021945363, 0.01108072, -0.005152096, -0.0071508125, 0.0017978317, -0.010709338, 0.010128629, -0.004794218, 0.012998408, -0.002510212, -0.008501296, 0.031385247, 0.009818018, -0.037327375, -0.010986187, 0.0023920445, -0.015219954, 0.03462641, -0.016205806, 0.034086213, 0.008481039, 0.020270763, 0.0042270147, 0.0034336054, -0.029197462, -0.011728953, -0.0010314321, 6.490763E-4, 0.015003877, 0.020108705, -3.7518132E-4, 0.009696474, 0.027441833, -0.023322858, 0.012883617, -0.032465633, 0.010898405, 0.011945031, -0.011836992, 0.003075727, -0.6404535, -0.022472052, 0.009271072, -0.0153955165, 0.014072042, 0.00640467, 0.009750494, 0.008737631, -0.035571747, -0.0023768516, -0.021148577, 0.013336029, 0.011242779, -0.0061852164, -0.04275632, 0.0045983978, 0.016813524, -0.015057895, 0.015530565, -0.006448561, -0.041648924, 0.027239261, 0.010358212, 0.0017978317, 0.0036564353, -0.002751611, 0.017178155, -0.02760389, -0.028711287, 8.896313E-4, -0.022147937, 0.017515777, 0.004584893, 0.0062527405, 0.040028345, -0.0016197367, -0.01426111, 0.038974967, 0.021972373, 0.019149862, -0.014274615, -0.0020594879, 0.0068975966, -0.003025084, -0.016394874, 0.0097234845, 0.009338596, -0.01428812, -0.005682161, 0.0051115816, 0.006532966, 0.0073196227, -0.006583609, 0.0033019332, -0.017907416, 0.017758863, 0.021702277, -0.044755038, 0.011290045, -0.001931192, -0.006617371, 0.015841177, -0.014936352, -0.015422527, -0.0042776577, 0.03535567, -0.02941354, -0.010810624, 0.001948073, -0.0056889136, 0.017232174, 8.3181367E-4, -0.0069617447, -5.1951426E-4, 0.019555008, 0.011850497, 0.04113574, -0.008096151, -0.0017421242, 0.011404837, 0.016786516, -0.020527355, -0.010695833, -0.0017336837, 0.018623173, -2.042607E-4, -0.025159515, 0.010986187, 0.0074884333, -0.0052398774, 0.01135757, 0.028657269, 0.0060704253, -0.00283264, -0.010473003, -0.008427019, 0.008535058, -0.012573006, 0.029548587, -0.04602449, -0.0106620705, -0.028198104, 0.03135824, 4.1442976E-4, 0.012228631, 0.02020324, 0.0044836067, -0.005678785, 0.033762097, -0.025740223, -0.008778146, 0.014625741, -0.018731212, -0.00521962, -0.004429587, -0.023511926, 0.011647924, 0.00965596, 0.015111915, -0.021580733, -0.001706674, 0.01735372, -0.005408688, -0.007292613, 0.013099694, 0.020675909, 0.0013918425, -0.0062223547, -0.010749852, 0.0057395566, 0.008210942, -0.0125595005, -6.570948E-4, -0.0014711834, 0.015017381, 0.028387172, 0.009628951, -0.012464967, 0.021364655, -0.008305476, -0.03535567, 0.011269788, -0.004152738, 0.0015977913, -0.012762073, -0.014517702, -0.03338396, -0.020932501, -0.0013783376, 0.0020139092, -0.019217387, 0.002736418, 0.007306118, 0.01467976, 5.262667E-4, 0.0046254075, -0.019825105, -0.02101353, -0.0016957014, -0.028198104, 0.002121948, 0.0128768645, 0.0062696217, 0.0049123853, 0.016975584, 0.0072520985, -0.0111887595, -0.0064181746, -2.5453457E-5, -0.019946648, 0.00650258, -0.009939562, -0.014639245, 0.011445351, 0.0065093325, 0.019095842, -0.011161749, 0.03451837, 0.014193586, -0.008393258, 0.0061548306, -0.019109348, -0.022188451, 0.008015122, 0.02771193, 0.025888776, 0.014720275, -0.00438232, 7.1282866E-6, -0.0017775744, -0.027414823, -0.01721867, -0.013680402, -0.0057192994, -0.008784898, 0.0030706627, -0.010108372, 0.004041323, -4.1780597E-5, 0.014220595, 0.03268171, 0.023322858, 0.019865619, -0.025524147, -0.0049934145, -0.017394233, -0.008616087, -0.031385247, -0.0053040255, -0.02684762, 0.022701634, -0.018136999, -0.018109988, -0.008096151, 0.02179681, 0.011587152, -0.018839251, 0.0048819995, -0.012046317, 0.005405312, -0.0066984002, 0.0023143918, 0.007258851, 3.747593E-4, -0.033221904, 0.004591645, 0.03435631, -0.004601774, -0.0010035783, -0.020473337, -0.0035112582, 0.0013437315, 0.0034538626, 0.013882975, 0.014126061, 0.0075694625, 0.029980743, 0.002960936, 0.03470744, -0.016151788, -0.011999049, -0.0012745193, 0.032384604, 0.0064789467, -0.015881691, -0.0057024183, 0.021985877, 0.030899072, -0.0035956635, 0.034275282, -0.038974967, 0.020905491, -0.0035652774, 0.012843102, 0.017961437, -0.0042371433, 0.0021607743, -0.009743742, 0.020338288, 0.033113867, 0.017380727, -0.02179681, 0.02258009, 0.013241495, 0.015314488, -0.0028596497, -0.025726719, 0.0089874705, 0.0023464658, -0.0018164009, -0.008015122, -0.03435631, -0.0101421345, 0.008521553, -0.023511926, -0.0028697783, -0.025119001, 0.004986662, 0.0070562786, 0.0075019384, -0.011269788, -0.02433572, -2.298724E-5, 0.03303284, -0.010094867, -0.015368507, 3.2875844E-4, 0.009986829, -0.024322215, 0.012343423, -0.025726719, 0.017137641, -0.021648258, 6.43168E-4, -0.022053402, -0.0056686564, 0.014558217, -0.016205806, 0.026982669, 0.018001951, -0.0034285411, 0.0031837658, -0.012984903, -0.018299056, 0.03262769, 0.0101421345, 0.027050193, -0.015192944, 0.009169786, -0.0037138308, -0.008217694, -0.006613995, -0.03527464, 0.031601325, 0.009946314, -0.022620605, -0.012100336, -0.009899047, 0.010675576, -0.011168502, -0.014801304, -0.01133056, -0.01002059, -0.008919946, 0.06779429, 0.020405812, 0.020311277, 0.016854038, -0.0065430948, 0.020973016, -0.0103447065, 3.3044652E-4, 0.013275257, -0.003477496, 0.022485558, -0.01549005, 0.019582016, -0.010878148, 0.014612236, -0.006009653, 0.011782972, -0.014018023, -0.004389073, -0.017488766, -0.02059488, -0.00733988, 0.014585226, 0.03546371, 0.026199387, -0.012161108, 0.034923512, 0.0013926865, 0.005796952, 0.018933784, -0.0016121402, 0.013045674, -0.0025524145, -0.0032934926, 0.0016560309, 0.01211384, 0.0122421365, 0.025564661, 0.026293922, 0.0077652824, 0.0021607743, -0.0030520936, -0.0017944555, -0.014895838, -3.4690555E-4, -0.02020324, -0.009622198, 0.048968546, 0.017853398, -0.04961678, 0.029035404, 0.004267529, -0.017556291, -0.0091967955, -8.0564804E-4, 0.0040278183, 0.011999049, -0.00820419, -0.025389098, 0.0055437363, 0.012471719, -0.018771727, 0.01886626, -0.0012930883, 0.012984903, -0.037678503, -0.02601032, -0.0049799094, -0.010182649, 0.003524763, 0.01133056, -0.02397109, -0.0010744787, 0.0010364964, 0.01261352, -0.0064789467, 0.020365298, -0.026172379, 0.002738106, 0.018164009, -0.027414823, -0.021540219, -0.0077180155, -0.018218027, -0.012795835, 0.023741508, -0.010500013, 0.0056551513, -0.0063844128, 0.008980718, -0.0062561166, 0.011296798, -0.01761031, -0.0064384323, 0.048239287, 0.0040919664, 0.012984903, 0.015922206, 0.027617397, 0.004541002, 0.010088115, -0.013991013, -0.007177822, -0.004709813, -0.0062527405, -0.0025794243, -8.195749E-4, 0.0032782997, -0.014085547, -0.0143421395, -0.011958535, -0.018852755, 3.2390511E-4, -0.024727361, 0.010500013, -0.0020324783, 0.035652775, 9.639079E-4, 0.011614162, 0.0031719492, -0.01386947, -0.01752928, 0.018555649, 0.024457263, 0.006124445, 0.029953733, -0.009818018, -0.0047908416, -0.017313205, 0.01889327, -0.0034977533, 0.0073196227, -0.018272048, 0.0014112557, -0.022917712, -0.01721867, 0.0048651183, 0.003538268, -0.0030098911, 0.006566728, -0.009845028, -0.0017370599, 0.019122852, 0.004797594, -0.011796477, -0.02592929, 0.009426378, -0.016448895, 0.007285861, 0.021756295, 0.0010736347, 0.020419316, -0.032141518, -0.011263036, -0.008163676, -0.030358879, -0.014450178, -0.016921563, 0.02383604, 0.015152429, 0.029143443, -0.00692123, 0.027846979, -0.009777504, 0.008075894, 0.012383938, -0.0050474335, -0.022728644, -0.024727361, 0.018771727, 0.014450178, 0.038029626, 0.018690698, 0.006617371, 0.01750227, 0.018758222, 0.00904149, 0.012775578, -0.0034876247, -0.01627333, -0.0068807155, 5.650931E-4, -0.024443759, 0.003926532, -0.012627024, -0.017097127, 0.030412897, -0.0048212274, -0.0041628666, -0.012579758, 0.024551798, 0.0068807155, 0.027482348, -0.015760148, 0.022053402, -0.016705487, -0.0038792652, -0.018420601, -0.013680402, -0.0012829597, -0.022458548, 0.0036631876, -0.003121306, -0.00480097, -0.015368507, 0.033762097, -0.031628333, -0.011269788, 0.015409022, -0.011870754, -0.006029911, -0.035922874, -0.01135757, -0.019663045, -0.024416748, -0.0048144753, -0.0023414015, 0.010729595, -0.022742148, -0.03940712, 0.006934735, -0.005428945, 0.023268837, 0.022282984, 0.048941538, 0.020162724, 0.00960194, -0.019527998, 0.0028832832, -0.010310945, 0.009845028, 0.034977533, 0.018690698, -0.020243755, -8.5080485E-4, -0.007353385, -0.0018450987, -0.029548587, -0.03179039, 0.025362087, -0.007387147, 0.032249555, -0.021445684, -0.004811099, -0.027549872, 0.021513209, 0.0049495236, -0.0075762146, 0.014571722, -0.037057277, -0.014504197, 0.006546471, 0.006890844, 0.020108705, 0.002979505, -0.030899072, 0.0068469536, -0.013977509, 0.020689413, -0.020162724, 0.0012930883, 0.036598112, -0.025456622, 0.012154356, 0.0032175279, 0.014423168, 0.003155068, -0.011182006, 0.009379111, 0.035031553, -0.022701634, 0.009392615, 0.014193586, -0.01761031, 0.0072048316, 0.017691338, -0.032924797, -0.019122852, -0.01808298, -0.017367223, 0.02056787, 0.011620915, -0.012512233, -0.020095201, -0.0026351318, 0.0027921256, -0.0060602967, -0.01640838, -0.0014509262, -0.027563376, 0.0021844078, -0.012208374, 0.0035213868, 0.018461116, -0.013268504, 0.0032107756, -0.010432488, 0.00798136, -0.01936594, 0.013106447, -0.008312228, -0.0044194586, -0.032222547, -0.02854923, -0.014909343, -0.023228323, 0.009581683, -0.01640838, -0.0017758864, -0.013936994, -0.006580233, 0.0059927725, 0.014180081, -0.013882975, 0.0022941346, 0.020810958, -0.012073326, -0.022742148, 0.0012036188, 0.025010962, -0.008305476, 0.0032597305, 0.0076032244, -0.014247606, 0.026834115, -0.03135824, 0.015017381, 5.895706E-4, -0.020810958, 0.004456597, 0.018758222, 0.0034167243, 0.01669198, -0.017785873, -0.03435631, -0.0022620605, -0.010675576, 0.01149937, -0.006401294, -0.0032259685, 0.029170452, 0.02517302, 0.043350533, 0.008683612, -0.0040446995, -0.023214819, 9.689722E-4, -0.014625741, 0.001738748, -0.0063641556, 0.011627667, 0.0013715852, 0.003377898, -0.010013838, -0.01931192, 0.0021287003, -0.03524763, -0.007596472, -0.004267529, 0.024875913, 0.045619346, 0.022796169, -0.0052094916, 0.036409047, -0.002817447, 0.02216144, 0.0011377827, -0.018852755, 0.013774936, 0.005648399, 0.022377519, 0.003943413, -0.03797561, -0.0102434205, 0.00692123, 0.009865285, 0.010175896, 0.04615954, -0.016219312, -0.011816734, -0.014490693, 0.011647924, -0.0018265295, -0.024025109, 0.026712572, -0.022485558, 0.008190685, 0.019892627, 0.019298416, -0.0032445376, 0.0039062747, 0.012302908, -0.011337313, -0.005165601, -0.00692123, -0.043242496, 0.0024646332, -0.032168526, 0.008028626, 0.010108372, -0.0033677693, 0.0309801, 0.023457905, -0.015138925, -0.011843744, -0.011627667, -0.0074074045, 5.8324024E-4, -0.018731212, -0.0015733137, 0.008373001, -0.019649541, 0.026199387, -0.024160158, 0.01426111, -0.019406455, 0.002493331, -0.0077315206, 0.02271514, 0.0020206615, -0.03938011, -0.004034571, -0.021661762, 0.011634419, -0.017650824, -0.01512542, -0.023998098, -0.011121235, 0.002960936, -0.00640467, -0.018042466, -0.020338288, 0.009703227, 0.011688438, 0.0072183367, 0.009858533, 0.19760281, -0.013275257, 0.015476545, 0.052749902, -0.013687154, 0.024322215, 0.016151788, 0.020230249, -3.0728785E-5, 0.014099052, -0.02087848, 0.00605692, 0.0034977533, -0.0045173685, -0.0019024942, -0.00946014, -0.02104054, -0.017799377, 0.004969781, -0.009217053, -0.0029879457, 0.0037746024, -0.010749852, -0.030412897, 0.0046456647, -0.01197204, 0.0020223497, 5.899927E-4, 0.024376234, 0.005341164, -0.01598973, -0.029629618, -0.0021016905, 0.017556291, -0.02187784, -0.008102903, 0.011593904, 0.0066443807, 0.00834599, 0.018150505, -0.0077382727, -0.0071508125, -0.0074411663, -0.01149937, 4.3363194E-5, 0.026820611, -0.029521579, -0.0023532182, 0.0021033788, 2.7621616E-4, -0.040325448, -0.0036766925, 0.027982026, 0.03106113, -0.02095951, -0.012728311, 0.016219312, 2.3316948E-4, 0.0024696975, 0.018528638, 0.013092942, 0.029845694, -0.026861126, 0.020729927, 0.0010905158, 0.011533133, -0.005452579, 0.005118334, 0.020837966, -0.022566587, -0.0020881859, -0.009446635, -0.0096154455, -0.0017438123, -0.015652109, -0.008656602, -0.0016636273, 0.004490359, 0.018717706, 0.009176538, -0.031547304, -0.028225115, -9.80789E-4, -0.009676217, -0.026739582, -0.016394874, 0.010830881, -0.009250815, -0.013734422, -0.0044701016, -0.011816734, -0.004990038, -0.012383938, 0.0059117433, -0.009959819, -0.0012188117, 0.00968297, 0.008082646, -0.01721867, -0.01465275, -0.02449778, 0.012323165, 0.04286436, 0.006982002, -0.021688772, -0.020365298, -0.0026503247, 0.016138284, 0.016529923, -0.021351151, -0.0041763717, -0.020662405, 0.017367223, -0.023214819, -0.009872037, 0.027955018, -0.01554407, -0.013585868, 0.052236717, -0.020905491, 0.0047064363, -0.027077202, 0.004760456, 0.0071845744, -0.005098077, -0.036976248, -0.053911317, 0.022377519, -9.301458E-4, -0.025524147, 0.01836658, -0.024241187, 0.0137074115, -0.011195512, 0.006664638, 0.020230249, 0.016908059, 0.0013091253, -0.0089874705, -0.01708362, 0.008940203, -0.01582767, 0.01300516, 0.009271072, 0.002331273, -0.012275899, 0.019298416, 0.0056281416, -0.012984903, -0.02771193, -0.027509358, -0.010851138, 0.014855323, -0.0011453792, 0.021918355, 0.015571079, -0.013855965, -0.035814833, -0.017623816, 0.03946114, -0.032141518, 0.041405838, 0.01638137, -0.016624456, -0.042621274, -0.0038893938, -0.1727539, 0.02255308, -0.005685537, -0.01931192, 0.015841177, 0.011411589, 0.015192944, 0.024605816, -0.0012897121, -0.0077585303, -0.0042270147, 0.013545354, -0.039947316, -0.010148887, 0.004294539, 0.010425736, -0.019568512, 0.042324167, 0.027982026, -0.0027060322, 0.05034604, -0.018177513, 0.0027313537, -0.001833282, 0.01211384, -0.0089874705, 0.012714806, -1.4232834E-4, 0.007873321, -2.2240782E-4, -0.027928008, -0.011985545, 0.035112582, 0.008278467, -0.004618655, 0.011803229, -0.014558217, -0.0123501755, -0.0036969497, 0.009000976, 0.03954217, 0.023120284, 0.018663688, 0.014382654, 0.005796952, 0.021081055, 0.022539577, -0.007387147, 0.009122519, -0.032654703, 0.004132481, -0.047996197, 0.0040244423, 0.005499846, -0.0019868994, 0.011641172, -0.0025473502, 0.0035652774, 0.013639888, -0.01512542, -0.034788467, -0.0035619014, -0.0046760505, -0.03373509, -0.003875889, -0.021324141, -0.0071373074, 0.012566253, -0.03289779, 0.008528306, -0.0027110965, 0.026185883, 0.013626383, -1.3547041E-4, 0.00825821, -0.017380727, -0.026415465, 0.0025811123, -0.028090065, 0.033302933, -0.018542144, 0.027576882, -0.008555315, -0.011796477, 0.011377827, -0.023700994, -0.006448561, 1.7777855E-4, -0.005523479, -0.010797119, -0.007549205, -0.024551798, -0.014909343, -0.012552748, 5.266887E-4, 0.012053069, 0.010175896, -0.0032867403, 0.008359496, -0.005874605, -0.0031803895, -0.016840534, -0.026645048, -7.533168E-4, 0.04426886, 0.025159515, 0.008886185, 0.019068833, -0.011755963, -0.012863359, -0.015246963, -0.0043755677, 0.020432822, 0.0018045842, -0.0027566752, 0.008791651, -0.012174613, -0.022499062, -0.012735063, 0.006077178, 0.05796277, -0.008663354, -0.021769801, -0.027873987, -0.0099328095, -0.023160798, -0.094155736, 0.011249531, 0.02143218, 0.030493926, -0.0074141566, 0.026226398, -0.016070759, 0.02592929, 0.001721867, 0.023606459, -0.011391331, -0.04291838, 0.025956301, -0.007724768, 0.01970356, -0.0012635465, -0.008467535, -0.0047368226, -0.011263036, 0.025537651, -0.0033272547, -0.009622198, -0.004939395, -0.010783614, -0.024200672, 0.030034762, -0.02692865, 0.009527664, 0.014625741, -0.0015412398, -0.0061818403, -0.022323499, 0.02391707, -0.034086213, -0.013410306, -0.027955018, -0.008467535, -0.02522704, 0.010500013, -0.049670797, 0.008683612, 0.030439908, -0.0022299865, -0.036138948, -0.004878623, -0.016084263, -0.008264962, 0.040460497, -0.019109348, -0.028711287, -0.013518344, -0.03619297, -0.035814833, -0.021364655, 0.011958535, 0.019838609, 0.026415465, -0.0019514492, -0.009791008, -0.015746642, 0.0023464658, -0.009953067, -0.013855965, 0.02020324, 0.024119643, -3.9290643E-4, -0.0046254075, -0.010763356, 0.015355002, -0.009021233, -0.017340213, 0.016421884, -0.02380903, -0.023795526, -0.027387815, -0.0062527405, -0.024713855, -0.008433772, 0.022877198, -0.022309994, 0.0053310352, -0.025713215, 3.667408E-4, -0.018164009, 0.020513851, 0.027792959, 0.0072520985, 0.018933784, 0.01465275, -0.042567253, 0.0018788608, 0.022445044, -0.0018248414, -0.00923731, -4.8153193E-4, 0.019298416, 0.013045674, 0.0030504055, 0.012822845, -4.8068786E-4, -0.017205166, 0.00431142, -0.063256666, 0.029062415, -0.002910293, -0.015138925, -0.015881691, -0.014180081, -0.01177622, -0.004841485, -0.0053310352, 0.022309994, -0.012039565, 0.013720917, -0.0014382653, 1.3093364E-4, -4.9630285E-4, 0.024160158, 0.0051149577, -0.007096793, -0.011506123, 0.0068165674, -0.033005826, 0.0293055, 0.029899715, -2.8360164E-4, -7.254631E-4, 0.020378802, 0.021810316, 0.005199363, -0.00909551, -0.002991322, 0.0293055, -0.02017623, -0.018906774, 0.002415678, -5.8788253E-4, -0.013065932, -0.0069482396, 0.009547921, 0.022391023, 0.016921563, -0.017556291, -0.016475903, 0.0047739604, -0.011033454, -0.009372358, 0.02397109, -0.011728953, 2.2472897E-4, 0.013781688, 0.018852755, 0.030493926, 0.018879766, 0.008420267, -0.011087473, 0.017326709, -0.014612236, 0.049319673, 0.0098247705, 0.0010719466, 0.0047537033, 0.036273997, 0.004635536, 0.02464633, -0.021648258, 0.01593571, 0.013768183, 0.024538293, -0.0043519344, -0.0034065957, -0.027279776, 0.0071170502, 0.010533774, 0.029332511, 0.011992297, 0.025051476, 0.0042236387, -0.014166576, 0.004638912, 0.014112557, -0.0066713905, 0.02852222, -0.015571079, -0.031466275, 0.02266112, 0.00812316, 0.02726627, -0.005658528, 0.0075289477, -0.0013099693, 8.6008944E-4, -0.024146652, 0.00756271, 0.017677834, 0.00438232, 0.014639245, 0.029602608, -0.022228966, -0.01303217, -0.0059927725, 0.026496494, 0.0055133505, -0.003122994, -0.0072993655, -0.012039565, -0.026388455, 0.031277206, -0.008467535, -0.024619322, 0.011593904, 0.04648366, 0.02017623, -0.0053040255, -0.0067659244, 0.010209658, -0.039947316, 0.015017381, -0.010378469, -0.01386947, -0.008042132, 0.048050217, 0.015327993, 0.02213443, 0.016462399, -0.0129781505, 0.044809055, 0.004108847, 0.020473337, -0.024065623, 0.005516727, -0.0061109397, 0.012829597, -0.015152429, -0.020230249, 0.022769159, -0.019906133, 0.015314488, 0.032168526, 0.015165934, -0.030007754, 0.06541744, 0.036787182, -0.0012441333, 0.010398726, -0.011303551, 0.0040278183, 0.021553723, 0.012201622, -0.019879123, -0.026023826, -0.0131874755, -0.003377898, 0.011323808, -0.03170936, 0.0068638343, 1.2641004E-5, 0.01052027, 0.01384246, -0.016610952, -0.017421242, -0.0037779787, -0.006360779, 0.026942154, 0.0050643147, -0.0119247725, -0.01068908, 0.03025084, 0.0018467867, -0.0026148744, -0.040055353, -0.012930883, -0.018960794, -0.0066004903, -3.5471303E-4, 0.019230891, 0.0012458214, -0.011296798, -0.009757246, 0.010148887, 0.0103514595, -8.2295114E-4, 0.0032445376, -0.022674626, -0.022255976, -9.5799955E-4, 5.617169E-4, 0.0038421268, -0.02944055, -0.011843744 ], + "id" : "ad0f1190-3ec4-4dc5-a271-d9e6c31a771f", + "metadata" : { + "source" : "movies.csv" + } + }, + "ac3a3513-0c8f-47cc-9443-dc2626081098" : { + "text" : ",338953-526896-752623-818397-453395-985724-555876-507086-864116-438148-454626-335787-414906-639933-508947-629542-634649-688177-626735-978436-718789\r\n770,Gone with the Wind,Drama-War-Romance,en,The spoiled daughter of a Georgia plantation owner conducts a tumultuous romance with a cynical profiteer during the American Civil War and Reconstruction Era.,31.978,Selznick International Pictures-Metro-Goldwyn-Mayer,12/15/39,4000000,402352579,238,Released,The greatest romance of all time!,8,3691,Vivien Leigh-Clark Gable-Olivia de Havilland-Leslie Howard-Hattie McDaniel-Thomas Mitchell-Barbara O'Neil-Evelyn Keyes-Ann Rutherford-George Reeves-Fred Crane-Oscar Polk-Butterfly McQueen-Victor Jory-Everett Brown-Howard Hickman-Alicia Rhett-Rand Brooks-Carroll Nye-Laura Hope Crews-Eddie 'Rochester' Anderson-Harry Davenport-Leona Roberts-Jane Darwell-Ona Munson-Paul Hurst-Isabel Jewell-Cammie King-Eric Linden-J. M. Kerrigan-Ward Bond-Jackie Moran-Cliff Edwards-Lillian Kemble-Cooper-Yakima Canutt-Marcella Martin-Louis Jean Heydt-Mickey Kuhn-Olin Howland-Irving Bacon-Robert Elliott-William Bakewell-Mary Anderson-John Albright-Eric Alden-John Arledge-Roscoe Ates-Trevor Bardette-Lennie Bluett-Ralph Brooks-Daisy Bufford-Ann Bupp-James Bush-Ruth Byers-Gary Carlson-Horace B. Carpenter-Louise Carter-Shirley Chambers-Eddy Chandler-Wallis Clark-Richard Clucas-Frank Coghlan Jr.-Billy Cook-Gino Corrado-Martina Cortina-Luke Cosgrave-Kernan Cripps-Patrick Curtis-Ned Davenport-Yola d'Avril-Lester Dorr-Phyllis Douglas-Joan Drake-F. Driver-Edythe Elliott-Susan Falligant-Richard Farnsworth-Frank Faylen-Kelly Griffin-George Hackathorne-Chuck Hamilton-Evelyn Harding-Inez Hatchett-Jean Heker-William Hoehne Jr.-Ricky Holt-Shep Houghton-Jerry James-Si Jenks-Tommy Kelly-Emmett King-W. Kirby-Timothy J. Lonergan-Margaret Mann-William McClain-George Meeker-Charles Middleton-Alberto Morin-Adrian Morris-Lee Murray-H. Nellman-David Newell-Naomi Pharr-Lee Phelps-Spencer Quinn-Jolane Reynolds-Marjorie Reynolds-Suzanne Ridgway-Louisa Robert-Azarene Rogers-Scott Seaton-Tom Seidel-Terry Shero-William Stack-William Stelling-Harry Strang-Dirk Wayne Summers-Emerson Treacy-Phillip Trent-Julia Ann Tuck-Tom Tyler-Dale Van Sickel-E. Alyn Warren-Blue Washington-Rita Waterhouse-John Joseph Waterman Jr.", + "embedding" : [ -0.017958393, -0.044701803, -0.012668636, -0.027479958, -0.008396654, 0.03621141, 0.013010127, -0.013572582, -0.037684504, -0.04954963, -0.0035320853, 0.044862505, 0.018761901, -0.0013442012, -0.0049382234, 0.02592651, 0.00944791, -0.006910165, 0.01486489, -0.031122526, 0.0028758876, -0.0073989653, -0.019806461, 0.00232515, -0.01636477, 0.0077002808, 0.023194585, -0.020944763, 0.010733522, -0.0031002, -3.8271231E-4, -0.008530572, -0.0067795953, -0.028042413, -0.03114931, -0.010412118, -0.002582942, -0.022551779, 0.003692787, -0.0013015148, 0.002249821, 0.00810873, -0.012869513, 0.0036325238, -0.014463136, 0.007680193, 0.009749225, -0.015146118, -0.003870228, 0.030586854, 0.021868797, 0.027533526, -0.018105704, -0.022150025, -0.003481866, 0.0029612603, -0.010679955, 0.009668875, 0.0016915508, 0.01590945, 0.025685458, -0.0011826627, -0.03369375, -0.01972611, -0.011068317, -0.0016898769, -0.025002478, -0.023020491, 0.017837867, 0.014704188, 0.031336796, 0.018627984, 0.0074123573, 0.035381116, 0.00424185, -0.022431253, -0.03607749, -0.009133203, -0.002832364, 0.011838345, 0.016498689, -0.008631011, -0.013686412, 0.012353929, 0.019699328, 0.025819376, -0.005925868, 0.030533288, -0.04499642, -0.009247033, -0.0113964155, 0.024748033, -0.012146356, 0.019886812, 0.014463136, -0.0024373063, -0.0048043057, 0.028390601, -0.0031437234, -0.03085469, 0.0037898773, 0.0030298932, 0.021105465, -0.0077806315, -0.004777522, -0.0027721012, 0.018132487, -0.033961587, 0.02943516, 0.0038200088, 0.01740933, -0.0020204866, 0.022886574, -0.031256445, -0.0041280203, -0.028470952, -5.473895E-4, -0.012762379, -0.017061144, -0.011182147, 0.017369155, 0.024533764, 0.01621746, -0.034791876, 0.03428299, 0.02241786, -0.006923557, -0.002971304, -0.0024841775, 0.005949304, 0.03937187, 0.0083698705, 0.0068967734, -0.003105222, -0.027252298, 0.055763423, -0.050728112, 0.0033864495, -0.01569518, -0.017369155, 0.011476766, 0.055763423, -0.017489681, -0.02599347, -0.022739263, -0.005822082, 0.008644402, 0.004901396, 0.022699088, 0.012313753, 0.032167085, -2.1123461E-4, 0.0076400177, 0.012474455, 0.026917504, -0.009267121, -7.650062E-4, -0.013954248, -0.001357593, 0.00453647, 0.0132980505, 0.0013709848, -0.008021683, 0.003873576, -0.008537268, 0.01770395, 0.018721726, -0.019712718, -0.005182624, -0.00735879, -0.019900205, 0.0256185, -0.03972006, 0.0230071, -0.008684577, 0.023890957, 0.002778797, -0.0048210453, -0.017663775, 0.0031470712, -0.01643173, 0.009749225, 0.02897984, 0.03990754, -0.016632607, 0.020516226, 0.008490397, -0.029970832, 0.011999046, -0.0052596265, -0.0088118, 0.017020969, 0.01718167, -0.012702116, -0.6329497, -0.020194823, -0.019297574, 4.067757E-4, 0.019511841, 0.0014588684, 6.649862E-4, 0.016324595, -0.013190916, -0.0058522136, -0.035541818, 0.03010475, 0.016471906, -0.005226147, -0.0063644494, -0.018092312, 0.0070507787, -0.00414476, 8.482864E-4, 2.3239469E-5, -0.024239145, 0.012333841, 0.02031535, 0.018708335, 0.01644512, -0.0030516547, -0.006197052, -0.014998808, -0.001678996, 0.008711361, -0.02263213, 0.021453653, 0.015681788, 0.0012236751, 0.039104033, -0.011349544, -0.011691035, 0.035595383, 0.041139588, 0.035729304, -0.015507696, -0.010184458, 0.014530095, 0.0050687934, -0.012019134, 0.022993708, -0.0054504597, -0.011583901, -0.0018480674, 0.015119334, -0.0032726193, 0.0062372275, -0.0072851353, -0.021333126, -0.013010127, -0.0050353142, 0.038354095, -0.022658912, 0.010164371, -0.00698382, -0.008805104, 0.018293189, 0.009467998, 0.0051290565, -0.017663775, 0.043657243, -0.001485652, -0.0011031489, 0.010874135, -0.006997212, 0.010485774, 0.005105621, -0.0075061, 0.0013743327, 0.003947231, 0.004817697, 0.045103557, 0.023341894, -0.0142488675, 0.018507458, -0.0033998413, -0.011778082, 0.0126351565, 0.016177285, 0.029140541, -0.007291831, -0.04132707, 0.019578801, 0.0142488675, 3.9129145E-4, 0.012280274, 0.022016108, -0.0011985655, 0.0057283393, -0.0058723013, 0.01590945, -0.004466163, 0.0028273421, 0.01251463, -0.062245052, 0.0063577536, -0.016378162, 0.02099833, -0.008845279, 0.0054370677, -0.013927464, -5.8338E-4, -0.0035756086, 0.028658437, -0.02083763, -0.0031202878, -0.009568436, -0.02516318, -0.0037128746, -0.006290795, -0.025859552, 0.016645998, 0.02294014, 0.008905542, -0.020301959, -0.019163655, 0.014516703, -0.0066021536, -0.016163893, 0.0042920695, 0.022123242, 1.5641196E-4, 0.013164132, 0.024975693, 0.0041012364, 0.013505623, -0.016552256, 0.013860505, -0.015681788, -0.0044829026, -0.01251463, 0.033211645, -0.011563813, 0.015333602, -0.002909367, -0.031015392, 0.023181193, -0.006394581, 0.006341014, 0.0150255915, -0.014570271, -0.0316582, 0.0021159032, -0.015561263, -0.015440737, -0.018574417, -0.0035019538, -0.0060597863, 0.019110087, -0.006669113, 0.0041648475, -0.027479958, -0.008985893, 0.020114472, -0.0063711456, 0.020275174, 0.006089918, -0.011249105, -0.0028306902, 0.034470476, -0.02158757, -0.021600962, -0.001551774, -0.020784061, -0.016123718, 0.02070371, -0.012166443, -0.00933408, 0.027694227, -0.0019719414, 0.026020253, -0.018788686, 0.013780154, 0.010967879, 0.009434518, 0.010987966, -0.008048467, -0.02695768, 0.002720208, 0.027881712, 0.027774578, 0.014021207, -0.015454128, -0.0037831815, -0.018949386, -0.0339348, -0.010860744, -0.021092074, 6.6121976E-4, 0.007887766, 0.017342372, -0.0072583514, 0.019779678, 0.011389719, -0.004442727, 0.04376438, 0.01807892, 0.011932087, -0.009461301, 0.007231568, -0.014396178, 0.0064381044, -0.022458035, 0.024065051, -0.0065586306, 0.023542771, 0.013144044, -0.019900205, -0.015280035, 0.014637229, 0.022243768, -0.0026532488, 0.01986003, -0.010987966, 7.1227597E-4, 0.015199685, -5.0051825E-4, 0.010566125, 0.004191631, -0.03286346, 0.0100706285, 0.0038434444, -0.013519015, -0.0070708664, 2.2786972E-4, -0.010586212, 0.0057685147, -0.002127621, 6.679157E-4, -0.0051759277, -0.010659867, 0.01657904, -0.0077337604, 0.058013245, -0.020864412, 0.002397131, 0.013056998, 0.021574179, -0.007921245, -0.021292951, -0.004201675, -0.0022648869, 0.024225753, -0.008818495, 0.024440022, -0.0050219223, 0.03929152, -0.007921245, 0.013565886, 0.005604465, -0.015561263, 0.011175451, 0.003739658, 0.026569316, 0.019578801, -0.0015325233, -0.0186012, 4.1179764E-4, -2.4084302E-4, 0.0031922685, -0.005052054, -0.010291593, 0.0077069765, -0.01972611, -0.004215067, -0.012052613, -0.024145402, -0.0010202872, -0.008242648, -0.010479078, -0.020743886, 5.105621E-4, 0.013793547, 0.0028591477, 0.036023922, -0.012561502, -0.032381356, 0.03481866, 0.024413237, -0.025524758, -0.009749225, -0.0048243934, -0.012969951, -0.027801361, -5.0805113E-4, 0.023623122, 0.013465447, -0.0088118, 0.005627901, -0.005878997, 0.0038233567, 0.031631414, -0.019525234, 0.027131772, 0.021333126, 0.011175451, 0.013110565, -0.01434261, 0.0037128746, 0.012782466, -0.023114234, 0.0137065, 0.0029897178, 0.0041045845, -0.007104346, 0.019150263, 0.002197928, -0.024614114, -4.6076137E-4, -0.010914311, 0.012032526, -7.637507E-4, -0.014356002, 0.005182624, -0.041193154, -0.01710132, -0.019672543, -0.017904827, -0.014985416, 0.08426116, 0.0015392192, 0.0016697892, 0.013063693, 6.850739E-4, 0.0033178166, -0.010171067, -0.025805984, 0.0026113996, 0.005018574, 0.027332649, -0.018346757, 0.040684268, 0.010525949, 0.018587809, -0.009180074, 0.002962934, -0.009280512, -0.015494304, -0.011336152, -0.027908497, -0.00283906, 0.0083698705, 0.025792593, -0.0019836593, -0.026087211, 0.018186055, -0.0058388216, 0.01538717, 0.031417146, -0.007445837, 0.014007815, -0.00530315, 0.014998808, -0.006253967, -0.0012144682, 0.032970592, -1.19375276E-4, 0.034309775, 0.011282586, 0.002651575, 0.007820807, 0.0033764057, -0.006789639, 0.0050219223, -0.030185102, -0.006324274, 0.025337271, 0.023770433, -0.02390435, 0.030051183, 0.009327384, -0.011744603, -0.006786291, 0.018507458, 0.004710563, 0.007090954, -0.0068833814, -0.027158557, 0.018172663, 0.0033077728, -0.04183596, 0.018253013, -0.013318138, 0.009595219, -0.012648548, -0.0038233567, -0.02421236, 0.004901396, 0.0056982078, 0.0032458357, -0.0047306507, 0.010224634, 0.0030432849, 0.03270276, 0.002378717, 0.021600962, -0.0136998035, 0.008878758, 0.010599604, -0.029622646, -0.02994405, 0.015360386, -0.0041414117, -0.012454367, 0.020891197, -7.223198E-4, 0.019605584, -0.0056011174, 0.0264354, 0.012166443, 0.006715984, -0.011784778, -0.016846875, 0.035648953, 0.01688705, -0.017770909, 0.023596339, 0.018025354, -0.005169232, 0.015480912, -0.014891674, -0.02344903, -0.030426154, -0.00796142, 0.010191155, -0.008644402, 0.007921245, -0.03398837, -0.014664013, -0.027426392, -0.023489205, -1.735702E-4, 3.718315E-4, -0.0029244327, 0.0032173782, 0.015655005, 0.019043129, -0.010700042, -0.011403112, -0.0040409733, -0.009809488, 0.02038231, 0.014021207, -0.018440498, 0.02868522, -0.012648548, -0.02442663, 0.011048229, 0.031417146, 0.009682266, 0.0064113205, -0.02636844, -0.018038744, 0.0017258673, -0.024573939, 0.007867678, -0.01262846, -0.007773936, 0.032059953, -0.0014044642, -0.007057475, 0.008577444, 0.0051859715, -0.003168833, -0.024814991, 0.008979197, -0.0106063, 0.009133203, 0.023837391, -0.011463375, 8.6962956E-4, -0.01644512, 0.0058522136, -0.006796335, -0.029461944, -0.0422645, -0.008356479, 0.022324119, 0.009976885, 0.029354809, -0.0035923484, 0.04138064, 1.7092845E-5, 0.010619692, 0.02375704, -0.015735356, 0.016793309, -0.037229184, 0.016860267, 0.01986003, 0.03974684, 0.016418338, 0.013940856, -0.012769074, 0.0246409, 0.002909367, -0.004255242, -0.007927941, -0.025980078, -0.016846875, -0.0021728184, -0.024185577, 0.013981031, -0.011650859, -0.0066289376, 0.033104513, -0.008845279, -0.002013791, -0.014436352, 0.04004146, -0.012702116, 0.009534956, -0.022458035, 0.02465429, -0.037470236, 0.006264011, -0.021949148, -0.02591312, 0.008651098, -0.021574179, -0.002648227, 0.006572022, -0.029970832, -0.014141733, 0.01995377, -0.034925796, -0.017315587, 0.022725873, -0.0168067, -0.0037061786, -0.025578324, -0.014315827, -0.021895582, -0.02024839, -0.003943883, -0.0053399773, 0.009213554, -0.03289024, -0.033131294, 0.010566125, -9.562577E-5, 0.033452697, 0.001356756, 0.048638992, 0.013304746, 0.0073989653, -0.02584616, 0.007860982, -0.012682028, -0.006679157, 0.0176236, 0.020891197, -0.007814111, -0.0017961742, 0.008785016, -0.008128818, -0.047621217, -0.029676212, 0.022324119, 0.015306819, 0.018922603, -0.028363816, -0.003170507, -0.035220414, 0.03728275, -0.016257636, -6.7963346E-4, 0.008764928, -0.025832769, -0.013438664, 0.0067662033, -0.0017275412, 0.013766763, 0.0038032692, -0.047165893, 0.014516703, -0.024185577, 0.007372182, 0.0019284182, -0.016029976, 0.03278311, -0.03128323, -0.0111352755, 0.0037999211, 0.0127222035, 0.015561263, -0.006846554, 6.2439236E-4, 0.026047036, -2.475389E-4, 0.009816184, 0.0043188534, 0.012166443, 0.009233641, 0.023248153, -0.02486856, -0.011262498, -0.018440498, -0.017342372, 0.014905065, 0.0022230376, 0.017422723, 0.003749702, -0.022391077, 0.0015333602, 0.0093206875, -0.010264809, -0.0012973299, -0.032488488, -0.009441214, -0.014998808, -0.015641615, 0.017730733, -0.01732898, -0.00967557, 0.0022062978, 0.012045917, -0.013405184, 0.013371705, -0.022966925, -0.020234998, -0.02943516, -0.022766048, -0.013371705, -0.011028142, 0.0115972925, -0.014811323, -0.0032508576, 0.007385574, 0.0041548037, -0.020743886, -7.42826E-4, -0.022672305, -0.014704188, 0.03511328, -0.011516942, -0.010800481, 0.011932087, 0.023569556, 0.008644402, 0.0029545643, 0.011603989, -0.004630212, 0.026863936, -0.009180074, 0.0013442012, -7.8007195E-4, -0.008999284, 0.0062874467, 0.013606061, 0.0120860925, 0.018199446, 0.008637707, -0.02951551, -0.008932326, -0.005363413, 0.03069399, -0.0038434444, 0.0046737357, 0.008992589, 0.02165453, 0.012360625, 0.036961347, -0.0011558791, -0.012688723, -0.01770395, -0.003947231, -0.012876209, -0.009950102, 0.018561024, 0.018909212, -0.0022431253, -0.011563813, -0.037550587, -0.0071579134, -0.047031976, -0.029569078, 0.0010227981, 0.014155125, 0.040737834, 0.013050302, -0.0041045845, 0.013378401, -0.0021811882, 0.016512081, -0.012427583, 0.002845756, 0.0071579134, 0.0103585515, 0.02793528, 0.018400323, -0.03733632, -0.017168278, 0.007425749, 5.47808E-4, -0.0030131533, 0.017971786, -0.011603989, -0.012327145, -0.0063544055, -0.024453413, -0.012561502, 0.009628699, 0.014503311, -0.03639889, 0.006076526, 0.009916622, 0.015547872, -0.0056948597, 0.008617619, -0.004854525, -0.0021092074, 0.012976647, 0.0057651666, -0.014168517, -0.0032123562, -0.02070371, 0.013010127, 4.595582E-5, 0.001293145, 0.044862505, 0.007907853, 2.9252697E-4, 0.020127865, 0.00515584, -0.0026047037, -0.017395938, -0.0057852543, -9.432844E-4, 0.017087927, -0.033640184, 0.025444407, -0.006665765, 0.0064481483, 0.017020969, -0.022993708, -0.016498689, 0.033559833, 0.026113996, -0.046282034, 0.02486856, -0.009601915, 0.0056714243, -0.0128360335, -1.9815669E-4, -0.006518455, -0.011028142, -0.013231091, 0.011362936, -0.024172185, -0.00724496, 0.0022514951, 0.007921245, -0.014302434, 0.011905304, 0.19327036, 0.013318138, 0.021815231, 0.050594192, 0.008952414, 0.006829814, 0.021011723, 0.019244006, -0.012943167, 0.003682743, -0.0112223225, 0.010847352, -0.0045163822, 8.6460763E-4, -0.018534241, -0.012119573, -0.020596577, -0.013833722, -0.013110565, -0.016712958, -0.006997212, 0.0039037075, 1.373705E-4, -0.020261783, 0.01262846, -0.0041012364, -0.008389958, -0.00270849, 0.0041012364, 0.009735833, -0.016645998, -0.016043367, -0.017007576, 0.007372182, 0.005621205, -0.010238025, 0.004071105, 0.0120860925, 0.014088166, 0.019458275, 0.007151217, -3.396075E-4, 5.988642E-4, -1.4092769E-4, 0.008008292, 0.017864652, -0.021560786, 0.01292308, -0.020060906, 0.013385097, -0.04705876, 0.004526426, 0.009441214, 0.023221368, -0.004533122, 5.0009973E-4, 0.012882904, 7.792349E-4, -0.013405184, 0.0035421292, -0.004898048, 0.021828622, -0.010318376, 0.00735879, -0.012340537, 0.01635138, -0.04234485, -0.015882665, 0.010505862, -0.029328026, 0.0024339582, -0.0034785182, -0.010974574, 0.002132643, -0.014931849, -0.0021728184, -0.003364688, -0.0021711444, 0.0087448405, 0.0064849756, -0.03749702, -0.022578562, 0.0028574737, -0.013632845, -0.016538864, -0.023435637, 0.017154887, 0.0032843372, -0.010612995, -7.1353145E-4, -0.017034361, -0.0035890006, -0.012340537, 0.0035220415, -0.019136872, -0.005962696, -7.771425E-4, 0.0073788776, -0.0066222413, -0.0020355524, -0.032970592, 0.0019501798, 0.028953055, -0.0050955773, -0.027962063, -0.01732898, -0.0035053017, 0.0040844968, 0.024265928, -0.015521088, -0.007867678, -0.012340537, -0.0025293748, -0.018507458, -0.017262021, 0.028497735, 0.008242648, -0.028712004, 0.027908497, -0.0029227587, -8.793595E-5, -0.02868522, 0.005122361, 0.0029177368, -0.0067327237, -0.023770433, -0.011429895, 0.0020589882, -0.018092312, -0.022042891, 0.024373062, -0.030533288, -0.015976408, -0.0044226395, 1.18119795E-4, 0.0037061786, 0.022297334, -0.0021041855, 0.002259865, -0.009943406, 0.014597054, -0.036961347, 0.0148247145, 0.01173121, 0.01326457, -0.017395938, 0.016927226, -0.026837153, -0.015333602, -0.033131294, -0.02038231, -0.019257398, 0.024935517, 0.0132980505, 0.019793069, 0.005560942, -0.03937187, -0.02532388, -0.016163893, 0.028845921, -0.026930895, 0.024172185, 0.018574417, -0.013954248, -0.003286011, -0.0017911523, -0.17034361, 0.037014917, 0.015480912, -0.032461707, 0.030077966, 0.02652914, 0.024413237, 0.0021460347, 0.008758232, -0.016619215, 0.008597531, 0.008577444, -0.0460142, 0.00843683, -0.008430134, 0.022471428, -0.044514317, 0.027828146, 0.02831025, -0.0027185339, 0.030801123, -0.005641293, -0.022431253, -0.01935114, 0.0070239953, -0.001873177, 0.024359671, -0.0017894784, 0.0024841775, -0.020851022, -0.041059237, 0.005115665, 0.02614078, -0.015119334, 0.0060330024, 0.0022749307, -0.020676928, -0.014664013, -5.9467927E-4, -0.015521088, 0.039104033, 0.004278678, 0.02486856, -6.465725E-5, 0.0068130745, 0.02539084, 0.025631892, -0.009950102, -0.004121324, -0.017061144, 0.0040811487, -0.02210985, 0.026100604, -0.006890077, -0.011182147, 0.029756563, 2.3435637E-4, 0.020529618, 3.7402857E-5, -0.014771148, -0.021159032, -0.01307039, 0.02764066, -0.0052562784, -0.0018581112, -0.016860267, -0.0063711456, 0.010177762, -0.026542533, 0.019110087, -0.02614078, 0.0034450386, 0.011583901, 0.010827265, 0.015454128, -0.013666324, -0.043657243, 0.006207096, 0.0077002808, 0.0030951782, -0.03594357, 0.03733632, 0.0036961348, 0.0061033093, 0.016177285, -0.010251418, 0.004841133, 0.004251894, 0.005892389, 0.003498606, 0.021908972, -0.031068958, -0.03527398, -0.0072516557, -0.0030181753, 0.0014237149, 0.0032642495, -0.0031253097, 0.00956174, -0.013311442, -0.005828778, -0.014262259, 0.018132487, 0.0077337604, 0.04499642, 0.015253251, -0.005949304, 0.011824953, 0.0336134, 0.017878043, -0.025270313, -0.006441452, 0.039479006, 0.006243923, -0.032542057, 0.03331878, -5.4069364E-4, -0.025765808, 0.013485535, 0.00822256, 0.0424252, 0.0058723013, 0.0040443214, -0.007432445, -0.008503788, -0.0026850544, -0.07933298, 0.0077136727, 0.016324595, 0.018761901, -0.024105227, 0.05110308, -0.018467283, 0.010211242, -0.014235476, 0.027225515, -0.018360147, -0.022819614, 0.012554806, -0.011811561, 0.02703803, 0.0057752104, -0.019404707, -0.024466805, -0.024480198, 0.026234522, -0.012193227, -0.0134989275, -0.026341656, -0.015574655, 0.004851177, -6.214629E-5, -0.030881474, 0.00982288, 0.013472144, -0.014784539, -0.007352094, -0.015668398, 0.02038231, -0.028390601, -0.029140541, -0.03280989, -0.02046266, -0.02249821, 0.010110804, -0.047326595, 0.0021058593, 0.011155363, 0.026274698, -0.021868797, 0.004392508, 0.0037363102, -0.031336796, 0.026314873, -0.025980078, -0.024466805, -0.0020188128, -0.0057986462, -0.021159032, -0.0074525326, 0.03465796, 0.013371705, 0.025538148, -0.022819614, -0.008503788, -0.009367559, -0.004456119, -0.00633097, -0.035300765, 0.007298527, 0.012641853, 0.0069436445, 0.028337033, -0.018587809, -8.4954186E-4, -0.016592432, -0.01755664, 0.014021207, -0.031417146, -0.01710132, -0.020007338, 0.009052852, -0.037523802, 7.09765E-4, 0.007171305, -0.0039639706, 0.0137065, -0.028926272, 0.016471906, -0.017061144, 0.0038334006, 0.019993946, -1.8989143E-4, 0.014275651, -0.01326457, -0.046362385, -0.0059057805, 0.026756803, 0.0057651666, -0.004921484, 0.003031567, 0.01086744, -0.014222084, 0.014208692, 0.0063577536, -0.0047540865, -0.047621217, 0.011449982, -0.069905154, 0.023971308, 0.00822256, 0.0030416108, -0.0018514154, -0.0026616189, 0.015775532, 0.0011500202, -0.02315441, -0.0012228381, -0.011275889, 0.016940618, -0.008276128, -0.014208692, -0.019110087, 0.0018196098, 0.0022849746, 0.007198089, 0.0028641697, 0.0066155456, -0.02338207, 0.0045029903, 0.030881474, 0.027225515, 0.0023803911, 0.021092074, 0.014945241, 0.017020969, -0.016404945, -0.00810873, 0.013612757, -0.018212838, -0.019364532, -0.0037965733, -0.007117738, -0.011255802, -0.01382033, 0.021922365, 0.03548825, 0.0049984865, 0.0022514951, -0.013532407, -0.012943167, -0.012521327, -0.0083698705, 0.040309295, -0.03294381, 0.008651098, 0.010251418, 0.0046235165, 0.017047752, 0.012735595, -0.0061669205, -0.018011961, 0.031551063, -0.03047972, 0.04654987, -0.0017727385, -0.0017241933, -0.018333364, 0.025752418, 0.012648548, 0.008182385, -0.021078682, 0.009380951, -0.024667682, 0.009079635, -0.0046000807, 0.008396654, -0.012802553, -0.026716627, -0.0065653264, 0.020234998, 0.036345325, 0.017436113, 0.012822641, -0.00362248, 0.007693585, 0.021534003, 0.012862816, 0.014516703, -0.02002073, -0.040657483, 0.01994038, -0.005440416, 0.015105942, -0.008276128, 0.015360386, 0.005607813, 0.007633322, -0.0053768046, -0.009749225, 0.022605347, 0.00401419, 0.0035421292, 4.6285384E-4, -0.019578801, -0.02047605, -0.0057986462, 0.01995377, 8.9557614E-4, 0.0027587092, 0.0019568757, -0.03139036, -0.025765808, 0.011557117, -0.025337271, -0.025270313, 0.004067757, 0.024694465, 0.02592651, 0.008872063, -0.0075797546, 0.008068555, -0.033640184, -0.011496854, -3.1742733E-4, -0.022203593, -0.015226468, 0.041809175, 0.0038200088, 0.02106529, 0.040469997, -0.007747152, 0.03631854, 0.0059660436, 0.0100706285, -0.024011483, -0.0010755283, -0.0044092475, 0.0029612603, 0.0030081314, -0.014356002, 0.0039505786, -0.004961659, -0.0015994823, 0.008055164, 0.017650383, -0.032836676, 0.056781203, 0.041702043, 0.009883143, 0.010793785, -0.027104989, 0.025056044, 0.023542771, 0.008985893, -0.020663535, 0.0029378245, -0.011811561, -0.010171067, 0.0044326833, -0.02240447, 0.009488085, 0.01243428, -0.004767478, -6.5326836E-4, -0.025591716, -0.015105942, -0.013606061, -0.014730972, -0.002780471, -0.011570509, 0.011215626, -0.015199685, 0.016150502, -0.009976885, 0.0055274623, -0.030747555, 0.002532723, -0.02486856, 0.0062740548, 6.838184E-4, 0.027292473, 0.0033998413, -0.012327145, -0.011008054, 0.010546037, -0.0017626947, -0.031711765, -0.012333841, -0.021051899, -0.020221608, 0.020221608, 0.012072701, 0.005815386, -0.025859552, -0.015253251 ], + "id" : "ac3a3513-0c8f-47cc-9443-dc2626081098", + "metadata" : { + "source" : "movies.csv" + } + }, + "486f42df-63bf-41b8-8f39-2efdb1abf989" : { + "text" : "Beverley-Bruno Bilotta-Sharon Blynn-Luigi Boccanfuso-Paolo Braghetto-Dante Brattelli-Jeff Bridges-Graham Burton-Ken Byrd-Sokol Cahani-Gianni Calchetti-Darren Lee Campbell-H��l��ne Cardona-Dian Cathal-Jake Cerny-Daphne Cheung-Sam Chuck-Al Clark-Victoria Coburn-Kimberly Collison-Tiziana Coste-Jaylen Davis-Kristianne-Kaith Domingo-Andrew Dunkelberger-Charlie Esqu��r-Ria Fend-Ferroz Fernandez-Vincent Frattini-Massi Furlan-Cynthia Garbutt-Thomas Goodridge-Sonia Goswami-Nicholle Hembra-Michael Hennessy-Meagan Holder-Patrick Doran-Ruth Horrocks-Chris Hyacinthe-Michael Iacono-Roman Ibragimov-Theo Ip-Timothy Christian Jansen-Keon Kendrick-Camille Kinloch-Michal Kubal-Hannah Kurczeski-G��raldine Lamarre-Jimena Larraguivel-Rich Lawton-Kath Leroy-Gavin Lee Lewis-Patrick Loh-Joseph Long-Marian Lorencik-Ketan Majmudar-Tony Mardon-Anton�_n Ma��ek-Eustace Meade-Ben Mendelsohn-Bradley Wj Miller-Melissa Beth Miller-Anthony Molinari-Julia Mollin-Adrian Mozzi-Brendan Murphy-Amanda Musso-Emily Ng-Daniel Olson-Karen Parks-Hiten Patel-Clay Pel-is-Luigi Petrazzuolo-Aleksandrs Petukhovs-Annie Pisapia-Martin Polak-Jivan Xander Ramesh-Mike Ray-Sofia Renee-Daniel Rennis-Sawyer Reo-Cailan Robinson-Emmanuel Rodriguez-Ray Rosario-Daniel Ryves-Maurice Sardison-Susanne Schraps-Karen-J Sear-Ilya Tank Shilov-Davina Sitaram-Joakim Skarli-Paul Slim-Richard Stanley-Lucas Antoine Starrets-Faith Tarby-Emily Tebbutt-Oskar Ulvestad-Lesdy Vanessa-Jessica VanOss-Joe David Walters-Jo Wheatley-Dale Wilder-Rocco Wu-Jan Zalabak-Samantha Mishinski-Alessandro Sciarra-Aristou Meehan,venice italy-europe-school trip-sequel-superhero-based on comic-destruction-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-tower of london,/4q2NNj4S5dG2RLF9CpXsej7yXl.jpg,/ng6SSB3JhbcpKTwbPDsRwUYK8Cq.jpg,315635-299534-299537-299536-363088-284053-324857-271110-99861-301528-284054-559-10138-76338-284052-283995-102382-557-102899-1726-287947\r\n299537,Captain Marvel,Action-Adventure-Science Fiction,en,The story follows Carol Danvers as she becomes one of the universe��s most powerful heroes when Earth is caught in the middle of a galactic war between two alien races. Set in the 1990s Captain Marvel is an all-new adventure from a previously unseen period in the history of the Marvel Cinematic Universe.,57.765,Marvel Studios,3/6/19,152000000,1131416446,124,Released,Higher. Further. Faster.,6.9,13998,Brie Larson-Samuel L.", + "embedding" : [ -9.6076925E-4, -0.04289632, -0.008572497, -0.049905874, -0.014140899, 0.023856848, 0.006038638, -0.0015798565, -0.02373506, -0.043410532, 0.020189686, 0.029797379, 0.018362872, 0.0027537541, 0.012178766, 0.0011975786, 0.00660698, -0.008741647, 0.003108968, -0.025791919, -0.012151701, -0.0036502467, -0.020433262, 0.012895959, -1.2982225E-4, -0.00848454, 0.035561994, -0.018619979, -0.0037652683, -0.020379134, 0.017848657, -0.014181496, -0.0030446914, -0.01834934, -0.010094843, 0.0029245953, 0.011238294, -0.015439968, 0.014993413, 0.0040291413, 0.010081312, -0.0012576267, -0.010020417, -0.0103722485, -0.012341149, 0.0053789546, 0.03331569, -0.008139474, -0.007598196, 0.019188322, 0.018958278, 0.03705051, -0.027740521, -0.021718798, -0.004198291, -0.0071245776, -0.022246545, -0.008112411, 0.004225355, 0.003843077, 0.0017337826, -0.0104805045, -0.017429166, -0.0069351303, -0.009411479, -0.017496826, -0.008849903, -0.0072598974, -0.008572497, -8.102262E-4, 0.025791919, 0.0087890085, 0.011441274, 0.009512969, 0.024371063, -0.030879935, -0.02035207, -5.548104E-4, -0.009296457, 0.0018741767, 0.008295093, -0.0134304715, 0.00407312, 0.0012094191, 0.02346442, 0.007401983, -0.0043674405, 0.013159832, -0.03545374, 0.0060961484, 0.0014935902, 0.029147845, 0.011826934, 0.014776902, -0.0019570598, 0.022463055, -0.029905634, 0.037916556, -0.0071584075, -0.025074724, 0.007469643, -0.011610423, -0.024398126, -0.01531818, -0.0030531487, -0.003985163, -0.006224702, 4.533207E-4, 0.012192297, 0.0057104877, 0.002469583, -0.0029009143, 0.013897324, -0.036590423, -0.00489857, -0.0044351, 0.007645558, -0.023166718, 0.0025287853, 6.802982E-5, 0.035074845, 0.033369817, 0.0019824323, -0.0134237055, 0.028065288, 0.038106002, -0.0020433262, -0.011217996, -0.0018809426, 0.011204464, 0.01745623, -1.432485E-4, 0.018809427, 0.0043978873, -0.014262687, 0.04159725, -0.019567216, 0.016197758, -0.023491485, -0.016928483, 0.020365601, 0.034668885, -0.02193531, -0.025440088, -0.03737528, 0.006955428, 0.018809427, 0.0069013005, 0.0036637785, 0.0058255093, 0.0145874545, 0.0054702954, -7.586356E-4, 0.012517064, 0.019134194, -0.013031279, 0.003347469, 0.013071875, -5.9836643E-4, -0.02055505, -0.0047970805, -6.617975E-4, 0.0036908425, -0.019472493, -0.0048241443, 0.021651138, 0.028606566, -0.035507865, -0.016197758, 0.0011442965, -0.007334323, 0.03732115, -0.0345065, 0.022178885, -0.01587299, 0.01262532, -7.408749E-4, -0.017550955, -0.031367086, -0.019283045, 0.003931035, 0.0017278623, 0.029472612, 0.015859459, -0.0036908425, 0.0064479797, 0.030392785, -0.022652503, 0.022084162, -0.03144828, 0.0062483833, 0.029824443, 0.0039614816, -0.011305953, -0.6330793, -0.02483115, -0.022057097, -0.012063744, 0.014222091, 0.011813402, 0.021678202, -0.008044751, -0.032043684, -0.011062378, -0.03269322, 0.012429107, 0.027483413, 5.1294593E-4, -0.021353435, -0.009837736, 0.011989318, -0.021218115, 0.016820228, 0.003944567, -0.021028668, 0.02050092, 0.010751143, 0.009939225, -0.007415515, 0.010115141, 0.010981186, -0.02110986, 0.007780878, 0.0040426734, -0.026197877, 0.018647043, 0.016387206, -0.0025727642, 0.036671616, -0.0043539084, -0.030528106, 0.042382102, 0.02573779, 0.030852873, -0.022246545, -0.005223337, 0.0047531016, 0.003887056, -0.016238354, 0.029418483, 0.005717254, -0.0018623362, -0.010284291, -3.2540137E-4, 0.009303223, 0.011353316, -0.0039175027, 0.002241231, -0.00522672, -0.007821473, 0.010994718, -0.030798744, 0.007354621, 0.004299781, -0.018931214, 0.021366967, 0.013816132, 0.0027300732, 0.011975786, 0.02152935, -0.009621224, -0.0028992228, 0.018850023, -0.008640157, 0.010399313, 0.008281561, -0.009019053, 0.0034371181, 0.023491485, -7.6582446E-4, 0.025291236, 0.016441332, 0.002838329, 0.023748592, 0.0016940325, -0.0071381098, 0.00486474, 0.0053349757, -2.9093717E-4, 2.974917E-4, -0.050663665, 0.0102707585, 0.009066414, 0.006231468, 0.025954302, 0.008288327, -0.0042727166, 0.0022632205, -0.0057544666, 0.008105645, -0.009465607, 0.007401983, 0.008308624, -0.06982492, -0.006048787, -0.011461571, 0.042463295, -0.009357351, 0.028471246, 0.010527866, 3.8185503E-4, 8.3813583E-4, 0.022923142, -0.035237227, -0.01058876, 0.0065054903, -0.024344, -0.0039953114, -0.0054702954, -0.03152947, 0.0030091698, -0.002077156, 0.005358657, -0.018444063, -0.002127901, 0.017347975, 0.0053789546, -0.0057544666, 0.009715948, 0.030988192, -6.0100938E-5, -0.004177993, -7.1423384E-4, 0.010399313, 0.008599562, 0.010744377, 0.02090688, -0.018254615, 0.008389816, 0.018606447, 0.008951392, -0.0131124705, 0.025169449, -0.006498724, -0.010791739, -0.010027183, -0.007835005, -0.0079567935, -0.019404832, -0.018173425, -0.03134002, -0.0041475464, -0.0051421453, -0.017050272, -0.011779573, 0.0021448159, -9.286309E-4, 0.010676717, 0.009661821, -0.0051861242, -0.03166479, -0.032747347, 0.014181496, -0.01107591, -0.0016737345, 0.0050508045, 3.129266E-4, -0.024411658, 0.024276339, -0.00308867, -0.0056563597, -0.008010921, -0.011941956, -0.02545362, 0.017672742, -0.023816252, -0.006590065, 0.015900055, -0.014885157, 0.013714643, -0.016684908, 0.02636026, 0.0019570598, -0.0072193015, -0.011996084, -0.024154551, -0.016684908, -0.013031279, 0.033694584, 0.020473858, 0.046198115, -0.014019112, -0.006410767, -0.0019519854, -0.03063636, 6.0048077E-4, -0.007902665, -0.0054804445, 0.007320791, 0.031231767, 0.010081312, 0.0018657192, -0.015764736, -0.012287021, 0.029932698, 0.019824324, 0.021542883, -0.012435872, 0.003300107, -0.028687758, 0.0071178116, -0.02792997, 0.023762124, -0.011069144, 0.034100544, -0.012679447, -0.010216631, 0.0018014424, 0.005855956, 0.014140899, 0.00163483, -0.0024983385, -0.017632145, 0.0013777228, 0.010534632, 0.012889193, 0.005686807, 0.016454864, -0.032855604, 0.0024543596, 0.00261336, -0.019350706, -0.011015017, -0.011082676, 0.0054838276, 0.005899935, 0.012747108, 0.0025389344, 0.0017896019, -0.01683376, 0.018958278, -0.0065257885, 0.037348215, -0.011062378, 0.013545494, 0.026779752, 0.018416999, 0.011481869, 0.0036400976, -0.0132207265, 0.023031399, 0.020541517, 0.0074899406, 0.036833998, -0.014181496, 0.006738917, -0.016739037, -0.0025338598, 0.019580748, -0.019283045, -0.008863435, 0.011420975, 0.028823078, 0.010291057, 0.005179358, -0.016224822, 0.017212655, 0.005243635, 0.012923023, 0.0012407117, -0.03028453, 0.017077336, -0.011366848, -0.027266903, -0.019621344, -0.02001377, -0.0038126302, -0.002770669, -0.015818862, -0.017537422, -0.016684908, 0.017848657, 0.0047125057, 0.031935427, -0.011738976, -0.042869255, 0.0012686214, 0.02326144, -0.015358776, -0.009668587, -0.008883732, 0.00824773, -0.010960889, -0.0040798862, 0.001403941, 0.03309918, -0.018011041, 0.017063804, -0.0043640574, 1.467372E-4, 0.009445309, -0.020027302, 0.01732091, 0.0154535, -0.0093235215, 0.007719984, 9.5146603E-4, -0.010412844, 0.012219361, -0.02041973, 0.004594101, -0.0022327737, -0.0025338598, -0.0060995314, 0.011881062, 0.0011679775, -0.037483532, 0.020040834, 0.010216631, -0.011326252, 0.008186837, -0.009377649, -0.016536057, -0.014032644, -0.013491365, -0.032395516, -0.04056882, -0.0050677196, 0.079026654, 0.04002754, 0.013416939, 0.019553684, -0.012923023, 0.015209924, -0.020582113, -5.1040866E-4, -0.0025710727, -0.012050211, 0.019648409, -0.026752688, 0.029418483, 0.0075034727, 0.010494036, -0.008856669, 0.0035352248, -0.010013651, 0.017767465, -0.023274973, -0.019188322, -0.014398007, 0.024506383, 0.03794362, 0.010676717, -0.0095265005, 0.017564487, -1.2336021E-5, 0.012767405, 0.012720044, -0.008044751, 0.012808002, 8.446904E-5, 0.011508933, -0.0036434806, -0.005348508, 0.04070414, 0.016508993, 0.024181616, 0.018958278, 0.002405306, 0.008457476, 8.1107195E-4, 0.0065190224, 0.01925598, -0.034398247, -0.003528459, 0.026549708, 0.034831267, -0.03545374, 0.029418483, 0.005727403, -0.016319545, -0.023274973, 0.024980001, 5.0617993E-4, -0.002934744, -0.001236483, -0.016306013, 0.0027317647, -0.006718619, -0.026793284, 0.008646923, -0.019296577, -3.243442E-4, -0.0054736785, -0.026387325, 0.003454033, -0.015697075, 0.0013261322, -0.0057104877, -0.0120569775, -0.004901953, 0.0037382043, 0.025670132, -6.258532E-4, 0.024587573, -3.106008E-4, 0.027158646, 0.018958278, -0.03918856, -0.02511532, 0.023532081, -0.021366967, -3.7276326E-4, 0.01848466, -0.0025676896, 0.007023088, -0.014790433, 0.015751204, -0.0013388185, 0.0030649893, -0.016590185, -0.009668587, 0.033234496, 0.012029913, 0.013964985, 0.010764675, 0.0054296996, -0.008335688, 0.0070298538, -0.019634876, -0.0043539084, -0.012848597, -0.011035315, -0.004194908, -0.013687579, -0.012232893, -0.0110014845, -0.013484599, -0.017970445, -0.021637606, 0.017956913, -0.006180723, -0.0044351, -0.006288979, 0.0132207265, -0.0012491692, -0.011793104, 0.0102639925, 0.0031715534, -0.014465666, 0.020230282, 0.02952674, -0.0061029145, 0.03940507, -0.009303223, -0.01407324, -0.0059236162, 0.025034128, 0.0050237407, 0.017293846, -0.020636242, -0.009269394, -0.022233013, -0.020609178, 0.014438603, 0.0024577426, -0.015832394, 0.012848597, -0.019864919, 0.03215194, 0.00903935, 0.011069144, -0.008213901, -0.02373506, 0.011603657, -0.015778268, 0.0240057, 0.021096328, -0.008105645, 0.013613153, -0.026197877, -0.01393792, -0.018647043, -0.032179005, -0.029932698, -0.01856585, 0.03788949, 0.0071110455, 0.03918856, 0.0034912461, 0.02050092, 0.0068201087, 0.010649653, 0.024127487, -0.028471246, -0.023099057, -0.020108495, 0.00703662, 0.015886523, 0.04265274, 0.0015807023, -0.006004808, -0.0028095734, 0.009357351, 0.01025046, 0.016955547, -0.008565731, -0.014303283, -0.030013891, 0.0027351477, -0.03834958, -0.0021363583, -0.013491365, -0.00962799, 0.020961009, -0.0031783194, 0.002422221, 0.0011206155, 0.025697194, -0.010135439, 0.01725325, -0.010338418, 0.018822959, -0.033153307, -0.0017912934, -0.015034009, -0.008342454, -0.006370171, -0.029472612, 0.013098938, 0.012192297, -0.029878572, -0.029337293, 0.015954182, -0.017050272, -0.026928604, 0.01993258, -9.61615E-4, 2.750794E-4, -0.037618853, -0.0040189927, -0.028227672, -0.026833879, 0.013680813, -0.019675473, 0.016238354, -0.012205829, -0.044168323, 0.019269513, 0.0018301978, 0.046793524, 0.0142762195, 0.04159725, 0.009973056, 0.0086875195, 0.0069283643, 0.0010994718, -0.011028549, -0.008085347, 0.02553481, 0.035805568, -0.016238354, -0.012063744, 0.007706452, -0.0064648944, -0.038457833, -0.048119653, 0.02449285, 0.03166479, 0.021881182, -0.03794362, -0.010176035, -0.021488754, 0.0011172326, -0.007814707, -0.00572402, 0.009837736, -0.033234496, -0.011941956, 0.002650573, -0.018254615, 0.012510299, 0.0034066713, -0.041543122, 0.024235742, -0.006458129, 0.009722714, -0.018944746, -0.012178766, 0.038078938, -0.016251886, 0.019039469, 0.0035995017, 0.018159892, 0.0055548702, 0.0053755715, 0.018619979, 0.028092353, -0.013146301, 0.016360141, 0.009350586, -0.012997448, 0.02642792, 0.016048906, -0.010812037, -0.0051522944, -0.02470936, -0.005314678, 0.02075803, 5.755312E-4, -0.008504838, 0.0038836729, -0.0031952343, -0.01856585, -0.0016500535, 0.0039513325, 0.013173364, -0.026576772, 0.007835005, -0.018944746, 0.007780878, -0.0024120722, -0.0058018286, 0.0028992228, -0.010683483, 0.0074764085, -0.015642947, 0.0023697848, -0.021231648, -0.024384594, -0.03629272, -0.023302037, -0.012314085, -0.00536204, 0.009770076, -0.007334323, 0.0047767824, -0.0017050272, 0.00526055, 0.0026860943, 0.002985489, -0.018701172, 0.005859339, 0.008904031, -0.0038363112, -0.016711973, -0.0013540419, 0.014939286, -0.0069418964, -0.0070772157, -0.0040528225, 0.01456039, 0.031556536, -0.014912222, 0.0027960415, 0.0023004333, -0.030934064, 0.010737611, 0.023139654, 0.00969565, 0.013139535, -0.011258592, -0.03545374, -0.0029837976, 6.5291714E-4, 0.02483115, -0.012144935, -0.0030311593, 0.04297751, 0.02738869, 0.042165592, 0.031556536, -0.012320851, -0.03263909, 0.005663126, -0.0054229335, -0.013254556, -4.3386852E-4, 0.014506263, -0.002428987, 0.009573863, 0.005351891, -0.02710452, -0.018998874, -0.024993533, -0.016847292, -0.016725505, 0.030934064, 0.015142265, 0.0044148024, 0.00297534, 0.016806696, -1.2337342E-4, 3.7974067E-4, -0.016711973, 0.010500802, 0.03669868, 0.00772675, 0.031583596, 0.016454864, -0.036671616, -0.010778207, 0.0079567935, 0.031989556, 0.027063923, 0.027578138, -0.018782362, -0.013092172, -0.007895899, -4.808075E-4, -0.009986588, 0.0013751856, 0.044114195, -0.03504778, 0.004956081, -0.0018098998, 0.015169329, -0.0011578285, 0.009993354, 0.012253191, 0.0023291889, 0.012672682, 0.001152754, -0.028850142, 0.006911449, -0.041786697, 0.011962254, 0.009885098, 0.011089442, 0.042192657, 0.03139415, -2.8438262E-5, 0.004854591, 0.005612381, 0.011157102, -0.023775656, -0.0044283345, -3.4802512E-4, 0.020933945, -0.034723014, -0.0023917742, -0.01931011, -3.9094684E-4, -0.011738976, 0.011414209, -0.011339784, 0.020744497, 0.01058876, -0.059594758, 0.006224702, -0.010081312, 0.016360141, -0.024722893, -0.010609058, -0.0073004933, -0.0111097405, 0.004150929, 0.017347975, -0.021339903, -0.02075803, 0.022124756, -0.0025643066, -0.0011713604, 0.005355274, 0.19139606, -0.010697016, -0.00831539, 0.05215218, -0.002818031, 0.005497359, 0.015900055, 0.018200489, -0.009201733, 0.020027302, -0.001591697, -0.0073004933, 0.005940531, 0.0027131583, 0.021799989, -0.0024036146, -0.022747228, -0.028525375, -0.0013109087, -0.025169449, -0.0068437895, -0.0061942553, -0.018660575, -0.01456039, 0.003320405, -0.008937861, -0.0062077874, 0.009587395, 0.023369698, 0.016617248, -0.0016771174, -0.022990802, -0.01210434, 0.00914084, -0.01683376, 0.0014419997, 7.342146E-5, 0.0015697075, 0.018647043, 0.0046989736, -0.0050237407, 0.0068201087, -0.014019112, -0.009986588, 0.007902665, 0.026400857, -0.027902905, 0.004912102, -0.0029178292, -0.002148199, -0.050365962, 0.010893228, 0.02966206, 0.033342753, -0.009905396, -0.012611788, 0.011407443, 0.019905515, -0.018674107, 0.0026218174, 0.006738917, 0.03380284, -0.02387038, 0.016238354, 5.793371E-4, -0.006975726, -0.03152947, -0.009668587, 0.018186957, -0.024113955, -0.0022564547, -0.01786219, -0.018254615, 0.0040968014, -0.0018065169, -0.009032584, -0.0036197996, -0.00605217, 0.02759167, 0.019404832, -0.03326156, -0.0053654225, -0.003839694, -0.01669844, -0.022246545, -0.02627907, -2.8253255E-5, -0.032612026, -0.0074493447, -0.015439968, -0.01476337, -0.029607931, -0.0032459793, 0.008335688, -0.0043403767, -4.2456528E-4, -0.002087305, 0.02587311, -0.02048739, -5.6453653E-5, -0.03309918, 0.020338537, 0.016481929, -0.0061198296, -0.024966469, -0.028796013, -0.006914832, 0.005358657, 0.029147845, -0.013518429, -0.016711973, -0.03331569, 0.0023545614, -0.018592915, 1.01806865E-4, 0.03464182, 0.008951392, -0.010338418, 0.05437142, -0.018268147, 0.012780937, -0.022638971, 0.012158467, 4.7573302E-4, 0.010081312, -0.024235742, -0.025440088, 0.01531818, -0.015561756, -0.031827174, 0.015913587, -0.03361339, 0.0012102647, -0.012652384, -0.011184166, 0.014993413, 0.021881182, -0.015642947, 2.8147537E-5, -0.014506263, -0.005727403, -0.010927059, 0.0065122563, 0.005991276, -0.0065021073, -0.020988071, 0.01055493, -0.01035195, -0.008342454, -0.03069049, -0.01931011, -0.0021803372, 0.0012686214, 0.012205829, 0.04332934, -0.010277525, -0.00969565, -0.030040955, -0.021908246, 0.03588676, -0.031583596, 0.012875661, 0.019404832, -0.018200489, -0.030988192, -0.01786219, -0.17310084, 0.026238473, 0.010994718, -0.026373792, 0.015575288, 0.023640336, 0.008240964, 0.003525076, -0.0048748893, -0.019215384, 0.0361574, 0.008254496, -0.036833998, -0.012510299, -0.0023376464, 0.00221755, -0.012821534, 0.027713457, 0.027226306, -0.0034388097, 0.044899046, -0.018186957, -0.0125914905, 0.0053721885, 0.0033660755, -0.0040562055, 0.016400738, 0.019323641, -0.008065049, -0.008809307, -0.030852873, -0.013444004, 0.014506263, -0.009959524, -0.0022226246, 0.011190932, -0.031285893, -0.0050711026, -0.013816132, -0.006725385, 0.048958637, 0.012273489, 0.015399372, -0.0010191258, 0.015859459, 0.022097694, 0.043221086, -0.029391421, 0.0037551194, -0.021394031, -0.007327557, -0.034208797, 0.033640455, -0.0011713604, -0.02346442, 0.018092232, 0.0058762543, 0.018931214, 0.0064851926, 0.0034303523, -0.029580867, -0.010629356, 0.0062483833, -0.0023968488, -0.018322276, -0.015886523, -0.006975726, 0.014235623, -0.033748712, 0.00962799, -0.013538728, 0.005318061, 0.010196333, -0.0075643663, 0.002080539, -0.015642947, -0.031367086, -0.0075576003, -0.0108999945, 0.018958278, -0.0054838276, 0.046874713, -0.0010504185, 0.0039141197, 0.0030632978, -3.5965416E-4, 0.0026353495, -0.007787644, 0.0069013005, -0.019540152, -0.00500006, -0.026549708, -0.02545362, -0.013173364, -0.0042862487, 0.0043539084, -0.0068099597, -0.0013016055, 0.0084777735, -2.3998087E-4, 0.002315657, -0.004499377, -0.01649546, 0.029905634, 0.021908246, 0.011826934, 0.015521159, 0.02408689, 0.011996084, -0.004482462, -0.011840466, 2.6218174E-4, 0.027212774, -0.0014513029, -0.017361507, -0.004983145, -0.019837856, -0.02801116, -0.009485905, 0.0074967067, 0.048660934, -4.4444035E-4, 0.005581934, -0.023951571, -0.0015062764, -0.01772687, -0.07956793, 0.008153006, 0.0033390115, 0.04346466, -0.010155737, 0.04186789, -0.018430531, 0.0038092472, -0.0023866997, 0.038944986, 0.019147726, -0.03247671, 0.014154431, 0.002770669, 0.015074605, 0.005869488, -0.009973056, -0.006552852, -0.02146169, 0.027158646, 0.009370883, -0.01045344, -0.016035374, -0.014682178, -0.020270878, -4.7700165E-4, -0.031096447, 0.02062271, 0.022571312, 0.0015308032, -0.0013591164, -0.026779752, 0.016333077, -0.041651376, -0.015886523, -0.033017986, -0.004583952, -0.03423586, 0.0028028076, -0.051854476, 0.013491365, 0.010155737, -0.008369518, -0.028714823, -0.0037280554, -0.0037585022, -0.022950206, 0.03872847, -0.013782303, -0.023288505, 0.008761945, -0.01462805, -0.025426555, -0.0043166955, 0.010676717, 0.005534572, 0.024533447, -0.004492611, -0.01196902, -0.03207075, -0.012023148, -0.0044655474, -0.01863351, 0.019540152, 0.010081312, 4.1505063E-4, -0.006549469, -0.024885276, 0.02173233, -0.004908719, -0.020325007, 0.015737671, -0.036942255, -0.014032644, -0.007997389, -0.004665144, -0.030528106, -0.017199123, 0.02614375, -0.03799775, 0.00907318, -0.032801475, 0.015940651, -0.016603716, 0.018444063, 0.019039469, 0.0021837202, 0.018714702, 0.01600831, -0.0506366, 0.017199123, 0.030744616, 0.010534632, -0.009019053, 0.0036637785, 0.013301918, 0.010710548, -0.013342514, -0.0071584075, 0.005598849, -0.0020517837, 0.0022361567, -0.08411467, 0.027794648, -0.0032222983, 3.4020198E-4, -0.0011341475, -0.0036603955, -0.0015316489, -0.0024746575, -0.01752389, 0.02228714, 0.0016052289, 0.031150576, 0.0032628942, -0.0031783194, -0.005913467, 0.015602351, 0.011251826, -0.011400677, -4.9899105E-4, 0.0130042145, -0.023302037, 0.024925873, 0.022530716, 0.0043200785, 0.0023731678, 0.022503652, -0.0041373973, 0.005233486, -0.0078485375, -0.020040834, 0.04089359, -0.0066137463, -0.0010647962, 0.009255862, 0.0052842307, -0.03372165, -0.015372308, -6.749066E-4, 0.009194967, 0.0018894001, 0.0012728501, -0.027375158, -0.0050575705, -0.011366848, -0.010629356, 0.023193782, -0.012442638, 0.0011155411, 0.0037348215, 0.020582113, 0.015372308, 0.012422341, 0.012997448, -0.027361626, 0.030879935, -0.027239839, 0.033234496, 0.011407443, -0.0069351303, -0.021610543, 0.02207063, 0.003344086, 0.02912078, -0.02690154, -0.012760639, -0.004438483, 0.014749838, 0.008843137, 0.0046888245, -0.03588676, 7.556755E-4, 0.003873524, 0.0033982138, 0.02710452, 0.007286961, 1.3193663E-4, 0.0027402223, 0.013105704, -0.0035995017, 0.016306013, 0.023545614, 8.571652E-4, -0.022476587, 0.030663425, -0.0024712745, 0.007638792, 0.00903935, 0.015994778, 0.013626685, 0.0043268446, 0.0039513325, 0.016103035, 0.021001603, -0.0076252604, 0.024871744, 0.012097574, -0.012713278, -0.01945896, 0.003839694, 0.011190932, -0.015304648, 0.0010123599, -0.007936495, -0.022205949, -0.027199242, 0.01600831, -0.01993258, -0.020717433, 0.014952817, 0.014113836, 0.015115201, 0.015412904, -0.012469702, 0.014966349, -0.03372165, 0.020230282, -0.012605022, -0.013992048, -0.011576593, 0.047280673, 0.005175975, 0.018525256, 0.037429404, -5.734169E-4, 0.0473348, 0.015954182, 0.01580533, -0.021123393, 0.003521693, 0.008558965, 0.01235468, -0.02000024, -0.0180787, 0.0065021073, -0.013795835, 0.0043268446, 0.0047700163, 0.02428987, -0.007747048, 0.07128637, 0.026049025, -0.0064344476, 0.01252383, -0.0056597427, 0.019404832, 0.024235742, 0.0078417715, -0.015182861, -0.0011493709, -0.004201674, -0.004543356, 0.0061739576, -0.026103154, 0.00996629, 2.8279685E-5, 0.011224762, 0.0013354354, -0.0034218947, -0.03372165, -0.023247909, -0.022638971, 0.032449644, 0.007983857, -0.0033559264, -0.0031969259, 0.008166539, -0.0068336404, -0.012598256, -0.03677987, 0.006322809, -0.01600831, -0.008254496, -1.5963486E-4, 0.038755536, -0.0058830203, -0.0024645084, 0.0030514572, 0.012814768, 0.009161138, 0.0023799336, -9.134074E-4, -0.029986827, -0.016982611, 0.029391421, -0.014032644, -8.2544965E-4, -0.032936793, -0.0067659807 ], + "id" : "486f42df-63bf-41b8-8f39-2efdb1abf989", + "metadata" : { + "source" : "movies.csv" + } + }, + "b6881b9a-59ec-4684-9d57-79867b0bc08f" : { + "text" : "9,4493,Chris Pratt-Bryce Dallas Howard-Laura Dern-Jeff Goldblum-Sam Neill-DeWanda Wise-Mamoudou Athie-Isabella Sermon-Campbell Scott-BD Wong-Omar Sy-Justice Smith-Daniella Pineda-Scott Haze-Dichen Lachman-Caleb Hearon-Kristoffer Polaha-Freya Parker-Alexander Owen-Joel Elferink-Elva Trill-Lillia Langley-Glynis Davies-Dimitri Vegas-Adam Kiani-Enzo Squillino Jr.-Bastian Antonio Fuentes-Ross Donnelly-Manuela Mora-Teresa Cendon-Garcia-Metin Hassan-Cokey Falkow-Jasmine Chiu-Emilie Jumeaux-Eleanor Tata-Lynn Hunter-Cathleen Summers-Patrick Loungway-Michael Bendib-Ahir Shah,giant monster-dinosaur-child kidnapping-jurassic-animal sanctuary-shot on film,/kAVRgw7GgK1CfYEJq8ME6EvRIgU.jpg,/jauI01vUIkPA0xVsamGj0Gs1nNL.jpg,438148-616037-361743-756999-338953-419669-585511-718789-871693-748918-766507-453395-913612-73369-225145-990593-348966-985898-610150-919355-560057\r\n755152,Hamood Habibi,Drama-Music,en,The greatest musical since The Sound of Muisc - Roger Ebert,0.6,Universal Pictures,,10000000,1000000000,1,Released,Best Picture 2010,0,0,Jesus Christ,,/tgbf4ObcTbQP6NaB022xkr1UQnp.jpg,,\r\n693499,aflam Movie Title,,en,aflam Movie Title,0.6,,,10000000,1000000000,0,Released,aflam䋢 Movie Test,0,0,Tamer Altaher,,,,\r\n952101,7/4/21 1:33,,en,Made after watching Tetsuo: The Iron Man and some Peter Tscherkassky.,0.6,,4/7/21,0,1000000000,1,Released,,0,0,,,/mrOkM6yBqBI8UGgqfvimFgVOejl.jpg,,\r\n961658,La razon de cada parte(Jose curricular),,es,,0.6,,,500000,1000000000,0,Released,,0,0,Fran Vicentini,,/cAFWKZp4gBujdzik6RVVWR4aMMg.jpg,,\r\n671,Harry Potter and the Philosopher's Stone,Adventure-Fantasy,en,Harry Potter has lived under the stairs at his aunt and uncle's house his whole life. But on his 11th birthday he learns he's a powerful wizard���with a place waiting for him at the Hogwarts School of Witchcraft and Wizardry. As he learns to harness his newfound powers with the help of the school's kindly headmaster Harry uncovers the truth about his parents' deaths���and about the villain who's to blame.,215.424,Warner Bros. Pictures-Heyday Films-1492 Pictures,11/16/01,125000000,976475550,152,Released,Let the magic begin.,7.", + "embedding" : [ 0.015038258, -0.030076517, -0.014578455, -0.046440087, -0.017202036, 0.038893912, 0.001803712, -0.01931172, -0.015795581, -0.02994128, 0.023625752, 0.021664828, 0.013665611, -0.007843696, 0.010244138, 0.012340297, 0.014064558, -0.021394357, 0.012833909, -0.01774298, -6.478656E-4, -0.013388378, -0.030022422, 0.01759422, 0.0046724086, 0.011887256, 0.034133602, 9.6609315E-4, -0.010994698, -0.0015121091, 0.02117798, -0.0027368413, -0.006579238, -0.013395139, -0.012935336, -0.008026265, -8.1310724E-4, -0.008891776, 0.031834587, -5.337601E-4, 0.0026320333, 0.00946653, -0.014848928, -0.0070863734, -0.015538632, 7.987384E-4, 0.017012706, -0.008181786, -0.021015694, 0.021353785, 0.026371047, 0.033998363, -0.03475569, -0.021475498, -0.008614542, -0.0035161395, -0.0043850318, 0.019974377, 0.0078098867, 0.0070863734, 0.0072216094, -0.014686644, -0.036676038, -0.00804655, -0.017350797, -0.00117909, -0.006234386, -0.011109648, 0.008857966, 0.006677284, 0.023368804, 0.014456742, 0.010507847, -0.012367344, 0.015038258, -0.033998363, -0.017120894, 0.0060382932, -0.005186306, -0.00220773, 0.014186271, -0.008141215, -0.001979519, -8.4902934E-4, 0.00924339, 0.018730205, -0.0125499135, 0.021529593, -0.03483683, -0.0028940532, 0.00497669, 0.025045732, -0.0076340795, 0.0053756363, 0.0045304103, 0.020934554, -0.0062817186, 0.041733872, -0.0078098867, -0.04584505, -7.661972E-4, -0.009128439, -0.019365814, -0.008905299, 0.016566426, -0.0021063029, -0.008526638, -0.0013523613, 0.009520624, 0.006616428, 0.017770028, -0.009872238, 0.0068361866, -0.051119257, -0.020393608, -0.01893306, 0.017202036, -0.021353785, -0.011684402, -0.009067583, 0.041219972, 0.026262857, 0.025045732, -0.03521549, 0.029048722, 0.036757182, -0.0032287627, -0.01751308, 0.008668636, -0.0012221966, 0.023720417, -0.00782341, 0.036757182, -0.0077219834, -0.03288943, 0.048333395, -0.02807502, 7.9070876E-4, -0.026749708, -0.012198299, 0.042274814, 0.035810526, -0.021773018, -0.029995374, -0.030455178, 0.00377985, 0.014889498, 0.0129488595, 0.010724225, 0.011109648, 0.030969074, 0.026546853, 0.013875227, 0.026019432, 0.014132176, 5.100938E-4, 0.0017580697, -0.008377879, -0.008087121, -0.031645257, -0.015173494, 2.5652605E-4, -0.0030022422, -0.0053012567, -0.004033418, 0.02604648, 0.017120894, -0.027750455, -0.0033639988, 0.002552582, -0.025059255, 0.02761522, -0.017810598, 0.015214065, -0.009419196, 0.013388378, -0.0013988487, -0.010162995, -0.03518844, -0.012942098, 0.012739244, 0.012556675, 0.036108047, 0.034133602, -9.339746E-4, 0.0015087281, 0.026844373, -0.02638457, 0.009412435, -0.010467277, 0.0020302325, 0.014470266, 0.0015315493, -0.012455248, -0.632256, -0.013597993, 0.0019812093, -0.0011596498, 0.012888003, 0.031942774, -9.517243E-4, -0.0066908076, -0.026844373, -0.010758035, -0.018067548, 0.010108901, 0.016039006, -0.023125378, -0.014537885, 2.2385278E-5, 0.013388378, -0.027682837, 0.023490516, -0.002885601, -0.034458168, 0.025789531, 0.016255382, -0.007343322, 0.0089323465, 0.012698673, -0.016295955, -0.01605253, 0.010933842, 7.5098313E-4, -0.016350048, 0.014389125, 0.007235133, 0.022111109, 0.034079507, 0.0047805975, -0.013591232, 0.05696146, 0.0160931, 0.033673797, -0.032050963, -0.010156234, 0.0096964305, 0.007938361, -0.009743763, 0.028291399, 7.7972084E-4, 0.0023784656, 0.0052032103, -0.00187133, -0.0024731308, 0.008688922, -0.0017225703, -0.010839176, -0.015633296, 0.0043884125, 0.015700916, -0.033971317, 0.03042813, -0.007877504, -0.022854907, 0.023355281, 0.019244103, 0.01672871, -0.0013565875, 0.031023169, 0.0015087281, -0.008715969, 0.007688174, -0.028372541, 0.01201573, 0.019027725, -0.013117905, -0.0094597675, 7.898635E-4, -0.0020826363, 0.043329656, 0.009709954, 0.004435745, 0.023355281, 0.004550696, -0.013516852, 0.0022060394, 0.014510837, 0.019785047, 0.0026675328, -0.03716289, 0.013929321, 0.013462757, -4.885405E-4, 0.013611517, 0.02574896, 0.008817396, 0.009338055, 0.0032355245, -0.012969146, -0.004405317, -0.005037546, 0.025370298, -0.058367915, -0.0069511374, -0.025870671, 0.015930817, -0.007769316, 0.016174242, 0.013368092, -0.009263675, 0.0025390584, 0.029806044, -7.733816E-4, 9.1231566E-5, 0.005777964, -0.017242607, 0.004723122, 0.0012162799, -0.02735827, 0.00868216, 0.030806791, -0.003058027, 0.003271024, 0.015335778, 0.026208762, 0.0067043314, -0.016255382, 0.01680985, 0.038488206, -0.0010649846, -0.01680985, 0.009480053, 0.019690381, 0.013564184, -0.0022060394, 0.017945835, -0.020866936, 0.015565679, 0.010494324, 0.015430443, -0.006366241, 0.02106979, 0.005135592, -0.026154669, -0.005845582, -0.023247091, -0.008614542, -0.013002954, -0.0016126909, -0.0312125, 0.018256878, -0.008168262, -0.024518311, -0.013915799, 0.009588242, 0.003881277, 0.01343571, -0.016674615, 0.0071539916, -0.028156163, -0.014591979, 0.0016101552, -0.021096837, 0.014051034, 0.008844444, -3.7760465E-4, -0.03248372, 0.02477526, -0.013090857, -0.014023987, 0.0048515964, -0.004783978, -0.01691804, 0.012833909, -0.008736255, -0.0036141856, 0.017959358, -0.012928574, 0.017729457, -0.00965586, 0.027398841, 0.005734012, 9.84688E-4, -0.007241895, -0.009865476, -0.025667818, 0.005446635, 0.03589167, 0.017296702, 0.01736432, 3.6318297E-6, -0.004060465, 1.7633523E-4, -0.010609275, -0.005635966, -0.00419232, -0.005943628, -0.009148724, 0.029751949, -0.0022618244, -0.013313998, -0.0025762483, 0.01021709, 0.034512263, 0.038163636, 0.020853411, -0.015741486, 0.015579202, -0.027439412, -0.0017115823, -0.023463469, -0.0012517795, -0.006335813, 0.010399658, -0.021529593, -0.00636286, -0.002028542, 0.013334283, 0.016363572, -0.01818926, 0.0060619595, -0.014429696, 0.006826044, 0.005568348, -0.018500304, 0.03326809, 0.001818926, -0.023152426, 0.009906047, 0.012110395, -0.013631802, -3.237215E-4, -0.007113421, -0.008952632, -9.218244E-5, -0.0032321436, -0.0013092548, -0.014145699, -0.01639062, 0.019176483, -0.01920353, 0.028994627, -0.02780455, -0.0053790174, 0.021975871, 0.022002919, 0.0014554788, 0.0023260615, -0.021123884, 0.015214065, 0.004057084, -0.015335778, 0.035377774, -0.016863946, 0.026790278, 0.0040401793, 0.015281683, 0.010250899, -0.009939856, 0.0039286097, 0.008803872, 0.036351472, 0.023558134, 0.014199794, -0.022165202, 0.031672303, 0.012529627, 0.036946513, -0.0043850318, -0.0097505255, 0.007343322, 0.0067989966, -0.02807502, -0.033295136, -0.015903769, 0.010987936, 0.008817396, -0.0120765865, -0.01515997, -0.007167515, 0.017499555, 0.016120147, 0.009622051, -0.0043106517, -0.031726398, 0.016498808, 0.023923272, -0.012698673, -0.021380832, -0.004733265, 0.0013185523, -0.034052458, -0.010196804, -0.025586676, 0.029535571, -0.007992456, 0.011366597, -0.014794833, 0.007066088, 0.021029219, -0.008634827, 0.02043418, 0.01497064, -0.021948824, 0.021461975, 1.1579594E-4, -0.015132924, 0.025167445, -0.017039753, -5.726405E-4, -0.015281683, -0.008107406, -0.002222944, 3.3323027E-4, 0.005294495, -0.037974305, 0.024153173, -0.007519129, -0.0136588495, -0.010284708, 0.007309513, 0.00632567, -0.015849674, -0.02623581, -0.03832592, -0.021624258, -0.01133955, 0.072811134, 0.04719741, 3.9662223E-4, 0.018270401, -0.004925976, 0.017256131, -0.016323002, -5.130521E-4, -0.009060821, -0.0085334005, 0.020001424, -0.021570163, 0.025654295, 0.0015771914, 0.004956404, -0.010812129, -0.011481548, -0.010162995, 0.006930852, -0.008648351, -0.031537067, -0.018703157, 0.028102068, 0.02395032, 0.012833909, -0.014591979, 0.02189473, -0.0014563241, 0.0017022848, 0.019622764, -0.011481548, 0.01463255, 0.014456742, -2.0222028E-4, 0.0079518845, 0.0016591783, 0.03491797, 0.001250089, 0.031726398, -0.003671661, -0.0027706502, 0.018338019, 0.007816648, -0.00860778, 0.011048792, -0.018581444, -0.019974377, 0.0428969, 0.024504788, -0.02818321, 0.021718923, -0.0073027513, -0.005142354, -0.018797822, 0.021759493, -0.008837681, 0.0011326026, -0.003495854, -0.028210258, -0.0017715933, -0.008857966, -0.031510018, 0.012617531, -0.00651162, -0.028751202, 0.0025424394, -0.019866189, -0.0052302573, -0.021083314, 0.022138156, -0.009141963, -0.021732446, -0.014686644, -0.017147942, 0.022625005, 0.006295242, 0.022922525, -0.0020420656, 0.009764049, 0.0028281256, -0.028507777, -0.026627995, 0.018513827, -0.027412364, -0.004719741, 0.003982704, -0.0040029897, 0.02301719, -0.0125499135, 0.0017529983, 0.0030445035, 0.008749777, -0.017607745, -0.005676537, 0.03727108, 0.011670878, 0.02257091, 0.019487526, 0.009277198, -0.0019457099, 0.002268586, -0.031672303, -0.011907541, -0.011616784, -0.0064947153, -0.006403431, 0.0018155451, -0.0054128263, -0.0033741416, -0.034377024, -0.017797075, -0.01515997, -0.0031053596, -2.320145E-4, 0.010656607, 6.613892E-4, 0.016796328, 0.0028805297, -0.014835404, 0.005696822, 8.6804695E-4, -0.01931172, 0.023869177, 0.03031994, 7.776078E-4, 0.008364355, -0.012516105, -0.020609986, 0.0062648137, 0.019474003, -0.006717855, 0.016525855, -0.0129488595, -0.0022601339, -0.019365814, -0.030022422, -6.740676E-4, -0.001721725, -0.009480053, 0.027263604, -0.011481548, -0.0021079932, 0.0114545, 6.6720015E-5, -0.018446209, -0.032240294, 0.0068395673, -0.0118264, 0.016904516, 0.031185452, 0.0047062174, 0.0033014521, -0.029373288, 7.0534094E-4, -0.005703584, -0.029751949, -0.0066637606, -0.009162248, 0.033998363, -0.0013861704, 0.046467137, -0.010954127, 0.020542368, 0.026479235, 0.018148689, 0.02092103, -0.01736432, -0.012752768, -0.01882487, 0.0036141856, 0.017296702, 0.011569452, 0.0029160292, 0.0118264, 0.0073297983, 0.021353785, 0.0032727143, 0.017310224, -0.006484573, -0.015971387, -0.02043418, -0.007005232, -0.032321434, -0.0023717037, -0.026884943, -0.01328695, 0.03237553, -0.0027013419, -0.0012255774, -0.016363572, 0.041301116, -0.013618278, 0.019068295, -0.031266592, 0.02436955, -0.022841383, 0.0057238694, -0.024315458, -0.02428841, 0.0010320208, -0.01852735, 0.028129116, 0.009453006, -0.007891028, -0.0018239974, 0.016512332, -0.010724225, -0.022070536, 0.022503292, -0.0226791, -0.0051896865, -0.030644508, 0.006166768, -0.027912738, -0.023585182, -0.0055784904, -0.010426706, 0.008418449, -0.01897363, -0.030536318, 0.024748212, 0.005453397, 0.044465642, 0.013942845, 0.036757182, 0.02915691, 4.2007724E-4, -0.026222287, 0.01133955, -0.00939215, -0.0124214385, 0.03031994, 0.012881242, -0.021867683, -0.011948112, -0.004912453, -2.2440746E-4, -0.033700846, -0.05247162, 0.02301719, 0.023517564, 0.020664081, -0.020691128, 0.0029616714, -0.02189473, 0.006471049, -3.0576045E-4, 0.012563437, -3.0216825E-4, -0.028020928, -0.017986406, -0.015335778, -0.0018409019, 0.002062351, 0.0047772164, -0.019730952, 0.005493968, -0.017445462, 0.014957116, -0.013239617, -0.016647568, 0.041084737, -0.023328234, 0.014740739, 0.010913556, 0.007586747, 0.0031324069, -0.0028788392, 0.0031324069, 0.032429624, -0.020298943, 0.014781309, -5.527777E-4, 0.021029219, -0.002953219, 0.013794086, -0.024640024, -0.015809104, -0.018716682, -0.0060315314, 0.027020179, 0.0039996086, -0.0062141004, -0.0054736827, -0.020826364, -0.0041010357, 0.011907541, 0.0027537458, 0.010386135, -0.03061746, 0.012063063, 0.007106659, 0.0011275313, -0.007667889, -0.0041821776, 1.4928801E-4, -0.009371864, 0.0080600735, -0.0048380727, -0.011555928, -0.016945088, -0.031482972, -0.036811277, -0.021421403, -0.015633296, -0.007816648, 0.0042159865, -0.022178726, -0.0059571518, 4.843144E-4, -0.0070931353, -0.0102779465, -0.0035195204, -0.017039753, -0.0042903665, 0.03586462, -0.0035769958, -0.00377985, -0.0017394748, 0.04076017, 0.013036763, -0.010670131, 0.0020691128, 0.011697926, 0.026966086, -0.02668209, 0.017026229, -0.012036016, -0.019365814, -0.0065589524, 0.0071472297, 0.036838323, 0.01680985, -0.008898538, -0.03708175, 0.0031949535, -0.015241113, 0.03221325, -0.009256913, -0.0097505255, 0.03267305, 0.024599453, 0.033295136, 0.023463469, -0.00946653, -0.023463469, 0.0017082014, -0.007066088, -0.023301186, -0.002567796, 0.0037697072, 0.0065893806, 0.0014292769, -0.015105876, -0.024247838, -0.004435745, -0.015890246, -0.038948007, -0.009480053, 0.012806862, 0.026303427, 0.006318908, 9.6778356E-4, 0.0018121642, -0.002949838, 1.4062446E-4, -0.025721913, -0.014605503, 0.0128001, 0.007870743, 0.020745223, 0.012225347, -0.024153173, -0.013942845, 0.012299727, 0.019392861, 0.00782341, 0.01272572, -0.021015694, -8.976298E-4, -0.0015957864, 0.0037866118, -0.00931777, -0.0032372149, 0.028859392, -0.013084096, -0.014362077, 0.0023700132, 0.011292217, 0.0052404003, 0.0015535251, 0.0061701485, -0.024585929, 0.0023666325, -0.012117158, -0.018946582, 0.0036513756, -0.015849674, 0.029400336, 2.8209412E-4, -7.987384E-4, 0.04103064, 0.015335778, -0.011278694, -0.0033284994, -0.005517634, 0.012759529, -0.0037257555, -0.0031307165, -0.009081107, 0.01190078, -0.03618919, 0.014280936, -0.030996121, 0.0076476033, -0.010906794, -0.0042227483, -0.015227589, 0.048225205, 0.007985693, -0.04143635, -0.0011520428, -0.011346311, 0.007728745, -0.02350404, 0.0059537706, -0.023625752, -0.010683655, -0.00883092, 0.014416172, -0.025437918, -0.027033703, 0.0046047904, -6.4279424E-4, -0.01373323, 0.020975124, 0.18868145, -0.0074920817, 0.015322254, 0.04143635, 0.015322254, 0.013043525, 0.018243354, 0.012414677, -0.01403751, -0.004087512, -0.0067989966, -0.0111502195, -0.008147977, 0.005916581, 0.017350797, -0.025816578, -0.019663334, -0.028264351, -0.024017937, -0.030942027, -0.010872985, -0.0055413004, -0.024017937, -0.026560377, 0.0053012567, -0.0013667302, -0.0024934162, -0.0010531514, 0.028047973, 0.008783587, -0.00868216, -0.016890993, -0.011711449, 0.0076002707, -0.025884196, -0.014280936, -0.012225347, 0.01096765, 0.0037528027, -0.0022821098, -0.005737393, 0.0027300795, -0.01882487, -0.005561586, 0.005909819, 0.028291399, -0.008702445, -0.00325581, -0.01893306, 0.015498061, -0.03475569, 0.006890281, 0.013104381, 0.032618955, -0.011704687, -0.016485285, 0.0014495623, -0.008986441, -0.017540127, 0.0053316844, 0.016836898, 0.037298124, -0.04124702, 0.011961636, -0.0038102781, 0.0077828397, -0.04876615, -0.01014271, 0.006822663, -0.037676785, -0.020177232, -0.029481478, -0.020866936, 0.0040739886, -0.009283961, -0.0119143035, 5.4474804E-4, 0.0061126733, 0.0051592584, 0.014078082, -0.018987153, -0.015768534, 0.01448379, -0.023192996, -0.012712196, -0.026857896, 0.015673868, -0.027344747, -0.0015687392, -0.025275633, -0.007924837, -0.015322254, -0.011812876, -0.003379213, -3.528818E-4, -0.00797217, 0.012002207, 0.020664081, -0.015335778, -0.0016110004, -0.031185452, 0.022963095, 0.019974377, -0.004428983, -0.026952561, -0.02125912, -0.0018983772, 0.01680985, 0.026830848, -0.01006833, -0.013381615, -0.023544611, -0.009033774, -0.012218584, 6.0983043E-4, 0.023274139, -0.0016287502, -0.005906438, 0.047927685, -0.031239547, 0.004276843, -0.020975124, 0.021570163, 0.0063459557, 0.0046690274, -0.028372541, -0.02189473, 0.019135913, -0.0048448346, -0.03746041, 0.011596498, -0.0019845902, 0.016985659, 0.022787288, 2.3666324E-4, 0.0031712872, 0.01133955, 0.002777412, -0.0050950213, -0.0048583583, 8.75337E-5, -0.029589666, 0.0061295778, 0.008411688, 0.0102779465, -0.022097584, 0.007566462, -0.005294495, -0.0148759745, -0.029562619, -0.015389872, 5.7950798E-5, 0.001029485, 0.012056301, 0.046494182, 0.013009716, -0.023071285, -0.04468202, -0.016525855, 0.037487455, -0.030563366, 0.028426636, 0.009135201, -0.010386135, -0.023882702, -0.004344461, -0.17288588, 0.01238763, 0.0026202002, -0.037216984, 0.024261363, 0.012624294, 0.0292651, -0.001632131, 0.012029254, -0.02488345, 0.016214812, 0.013104381, -0.047278553, -0.001886544, -0.0053621125, 0.014226842, -7.5774494E-4, 0.027777502, 0.029535571, -0.023558134, 0.043329656, -0.0044323644, -0.020880459, 0.0041382257, 0.024437169, 0.0029295527, 0.03275419, 4.940345E-4, 0.0034603546, -0.001208673, -0.032835335, 0.0046690274, 0.0073297983, -0.0053485893, -0.008093882, 0.0036243284, -0.011102887, -0.025505535, 0.0019000677, 0.0076137944, 0.03567529, 0.007208086, 0.023084808, 0.010020997, 0.01755365, 0.008445497, 0.024166698, -0.023869177, 0.025559628, -0.018310973, -0.0056156805, -0.046196662, 0.017202036, 0.001545918, -0.013834656, 0.016999181, -0.004682551, 0.009311008, -0.0042734616, 0.004239653, -0.03294352, -0.016755758, 0.01223887, -0.0044830777, -0.0025999146, -0.020217802, -0.0088241575, 0.013557422, -0.025735436, 0.014619026, -0.018608492, -0.0032811668, 0.011380121, 0.008039788, 0.005324923, -0.015957864, -0.029860139, 0.004756931, 0.0070525645, 0.010974412, -0.025194492, 0.034377024, -0.0050307843, 0.021475498, 0.008912061, -0.014727215, -0.007032279, -0.0030275988, -0.006156625, -0.009311008, 0.010338803, -0.0025373679, -0.03597281, -0.008601018, 0.0064473827, 0.015024735, -0.015173494, 0.0068699955, 0.013969893, 0.0016828446, -0.0044999826, -0.008925585, -0.0148218805, 0.030509273, 0.02403146, -0.0016557974, 0.0060382932, 0.02140788, 0.021543115, -0.004479697, -0.0120765865, 0.0065217623, 0.021840636, 0.007836934, -0.009858714, 0.0031425497, -0.024761736, -0.027682837, 0.0018442827, 0.0059605325, 0.045682766, -0.006930852, -0.011109648, -0.02608705, 0.003813659, -0.012921813, -0.08438735, 0.0031121215, 0.0045337914, 0.047819495, -0.02807502, 0.030887933, -0.0079518845, 0.03221325, -0.040354464, 0.036676038, 0.012137443, -0.032267343, 0.008188548, -8.249404E-4, 0.015687391, 0.0024951068, -0.016958611, -0.00838464, -0.004472935, 0.028129116, 0.0031357878, -0.009074344, 0.008398164, -0.0094056735, -0.010913556, 0.011447739, -0.02496459, 0.031537067, 0.01785117, 0.002611748, 0.00995338, -0.03483683, 0.012502581, -0.03697356, -0.02549201, -0.017431937, -0.016120147, -0.03031994, 0.016863946, -0.051768392, 0.0047298837, 0.012671626, -0.0049158335, -0.013530375, -0.009412435, -0.007343322, -0.034160648, 0.016715186, -0.006197196, -0.029697856, -0.01647176, -0.018283926, -0.029968327, 0.0038373254, 0.001785117, 0.017756505, 0.026776755, 0.0134762805, 0.005706965, -0.025167445, -0.011427454, -0.0063459557, -0.015822629, 0.018432684, -0.001305874, 0.015416919, -0.005311399, -0.016444715, 0.0039725616, -0.011637069, -0.020028472, 0.029724902, -0.029670808, -0.018365066, -0.019825617, 0.010528133, -0.035377774, -0.013063811, 0.018013453, -0.057394214, 3.4844436E-4, -0.02496459, 0.011724973, -0.016377095, 0.027642265, 0.020082565, 0.021570163, 0.0044898395, 0.004094274, -0.048333395, -0.0034924732, 0.023869177, -0.0016236788, -0.0054770634, -0.0075056055, 0.013814371, 0.018256878, -7.843696E-4, 0.014429696, -0.010474038, -0.014564931, -0.0013870156, -0.07519129, 0.028615966, -0.018446209, -0.0049090716, -0.010108901, -0.015633296, 5.244626E-4, 0.003776469, 0.0023700132, 0.012434962, -0.008560447, 0.018013453, -0.0043309373, -0.0052268766, -0.011380121, 0.01141393, 0.012732482, 0.0053316844, -0.011630308, 0.0062377667, -0.014524361, 0.0026590806, 0.023111856, -0.007383893, -0.0013625041, 0.010724225, -9.922951E-4, 0.004094274, -0.016336525, -0.011096125, 0.024680594, -0.015917294, -0.0049935943, 0.004892167, 0.002611748, -0.036432613, -0.015822629, -0.011312502, 0.022990143, 0.0054804445, -0.012029254, -0.026344, -0.0064913346, -0.00887149, -0.0096964305, 0.019433433, -0.011724973, 0.02507278, 0.007992456, 0.022773765, 0.033592656, 0.014429696, 0.011495071, -0.015443967, 0.014199794, -0.02178654, 0.034890924, 0.006227624, 0.0017301773, -0.020555893, 0.024558881, -0.00419232, 0.020893984, -0.03810954, -6.516691E-4, -0.010724225, 0.02867006, -0.0018510446, -0.013956369, -0.017174989, 0.0012458629, -0.011380121, 0.016512332, 0.043654226, 0.026303427, 0.025938291, -0.0073297983, 0.0019507812, -0.004723122, 0.020799316, 0.021245597, 0.0051186876, -0.02043418, 0.02263853, -0.0027875549, 0.018310973, -0.0030563367, 0.0071607535, 0.010419944, 0.011515357, -0.018351544, 0.022746718, 0.0155115845, -3.4273908E-4, 0.021083314, 0.012928574, -0.0018628777, -0.018811347, 0.0024190363, 0.027439412, -0.0027148654, -0.0066265706, -0.0063087656, -0.006646856, -0.018987153, 6.7670895E-5, -0.01893306, -0.024599453, 0.023220044, 0.009121677, 0.024017937, 0.02320652, -0.030374035, 0.008404925, -0.046737608, 0.014659597, 0.015132924, -0.014578455, -0.013381615, 0.04027332, 0.008202071, 0.007451511, 0.03004947, -0.010264423, 0.06583295, 0.0033741416, 0.014686644, -0.02163778, 3.9429785E-4, -4.9445714E-4, -0.0037460409, 0.0030478844, -0.020123137, 0.0061735297, -0.0057576783, 0.002084327, 0.0034349978, 0.03042813, -0.0122050615, 0.07968113, 0.016863946, -0.00512883, 0.022002919, -0.0043917936, 0.01736432, 0.022787288, 0.009540909, -0.0038339444, -0.0034062602, -0.0016929874, 0.004084131, 0.007018755, -0.029860139, -0.0037899925, -0.016972134, 0.007424464, 0.005101783, -0.012975907, -0.019392861, 0.0072554187, -0.0016735472, 0.03129364, -0.0021316595, -0.015268159, -0.010115663, 0.023233568, -0.013861704, 0.007803125, -0.025803054, 0.0047062174, -0.01545749, 0.0028196734, 0.0056021567, 0.028994627, 0.0032304532, -0.0013819443, 0.0082967365, 0.019298196, -0.00819531, -0.007005232, 0.0039624185, -0.018770775, -0.015579202, 0.034458168, -0.0110420305, 0.002518773, -0.026073527, -0.011001459 ], + "id" : "b6881b9a-59ec-4684-9d57-79867b0bc08f", + "metadata" : { + "source" : "movies.csv" + } + }, + "08dbc830-8d63-44b5-a39b-117a35fb06e0" : { + "text" : "Simmons-Ella Olivia Stiller-Quinn Dempsey Stiller-Brian Hopkins-Christopher Knights-Mike Mitchell-Jasper Johannes Andrews-Jack Blessing-Stephen Kearin,saving the world-date-prison-secret identity-fish-gun-dna-mayor-anti hero-rain-museum-one-sided love-superhero-anthropomorphism-reporter-duringcreditsstinger-alien baby-stronger villain-invincible,/uZ9ytt3sPTx62XTfN56ILSuYWRe.jpg,/waIZRQ9mw497jmN0mAQOS5b4oR3.jpg,15512-10527-49444-22794-46195-13053-953-9502-810-10192-5559-44896-8355-80321-10555-809-950-7518-38757-425-81188\r\n259693,The Conjuring 2,Horror-Thriller,en,Lorraine and Ed Warren travel to north London to help a single mother raising four children alone in a house plagued by malicious spirits.,102.582,New Line Cinema-Dune Entertainment-The Safran Company-Evergreen Media Group-Atomic Monster,6/8/16,40000000,321834351,134,Released,The next true story from the case files of Ed and Lorraine Warren.,7.288,7448,Patrick Wilson-Vera Farmiga-Madison Wolfe-Frances O'Connor-Simon McBurney-Lauren Esposito-Benjamin Haigh-Sterling Jerins-Maria Doyle Kennedy-Patrick McAuley-Simon Delaney-Franka Potente-Bob Adrian-Steve Coulter-Chris Royds-Abhi Sinha-Daniel Wolfe-Annie Young-Elliot Joseph-Cory English-Emily Tasker-Kate Cook-Shannon Kook-Thomas Harrison-Jennifer Collins-Bonnie Aarons-Javier Botet-Joseph Bishara-Nancy DeMars-Robin Atkin Downes-Jason Liles-Emily Brobst,london england-england-1970s-spirit-single mother-demon-paranormal investigation-demonic possession-ghost-christmas-valak,/zEqyD0SBt6HL7W9JQoWwtd5Do1T.jpg,/4mfFtlGeInPrQVm1hpv7th02yjx.jpg,138843-250546-396422-49018-91586-345911-423108-280092-439079-82507-565-321258-23827-300669-1020402-376570-521029-335796-406563-242224-283445\r\n943,Lethal Weapon 3,Adventure-Action-Comedy-Thriller-Crime,en,Archetypal buddy cops Riggs and Murtaugh are back for another round of high-stakes action this time setting their collective sights on bringing down a former Los Angeles police lieutenant turned black market weapons dealer. Lorna Cole joins as the beautiful yet hardnosed internal affairs sergeant who catches Riggs's eye.,23.724,Silver Pictures-Warner Bros. Pictures-St. Petersburg Clearwater Film Commision,5/15/92,35000000,321731527,118,Released,The magic is back again!,6.696,2577,Mel Gibson-Danny Glover-Joe Pesci-Rene Russo-Stuart Wilson-Steve Kahan-Mary Ellen Trainor-Darlene Love-Traci Wolfe-Ebonie Smith-Damon Hines-Thomas A. Geas-Gregory Millar-Nick Chinlund-Alan Scarfe-Delores Hall-Mark Pellegrino-John Cenatiempo-Pete Antico-Sven-Ole Thorsen-Paul Tuerpe-Veronica Alicino-Miguel A.", + "embedding" : [ 0.018631903, -0.017788831, -0.024266439, -0.04951646, -0.0209082, 0.040804714, 0.0073136548, -0.010306562, -0.02671135, -0.03299224, 0.019011287, 0.027947856, 0.023142342, -0.0029700745, 0.0085501615, 0.015512535, 0.016524222, -0.011690606, 0.007594679, -0.020880098, -5.2077294E-4, 0.0025046282, -0.0040607997, 0.005332434, 0.009252721, 0.001751132, 0.015329869, -0.0055151, -0.023142342, -0.014205773, -0.00644248, -0.007517397, -0.011985682, -0.03566197, -0.031109378, 0.001098629, -0.0023606033, -0.012336962, 0.029704258, -0.005416741, 0.02648653, 0.021090865, -0.014922384, -0.0055010486, -0.0018108496, 0.017564012, 0.0018459776, -0.007043169, -0.010784304, 0.016102687, 0.022608396, 0.03285173, -0.022130655, -0.020065127, -0.004355875, 0.004907385, 0.0036779041, 3.0671156E-4, 0.012034861, 7.517397E-4, 0.006386275, -0.022032296, -0.04330583, -0.023479572, -0.026050942, -0.0054062027, -0.0051076147, -0.006719991, -0.004183748, -7.210027E-4, 0.03518423, 0.02475823, 0.006115789, -0.007538474, 0.010489228, -0.042125527, -0.040102154, -0.005357024, -0.009730463, -0.0080372915, 0.014613258, -0.010425998, -0.016341558, 0.005357024, 0.0077773444, 0.0072433986, -0.0025379998, 0.029198414, -0.022102553, 0.024772283, 0.015948122, 0.04482336, 0.009653181, 0.0063195317, -0.00302101, 0.030996969, -0.016397761, 0.0290298, -0.029535642, -0.030715944, -0.011753837, -0.019208003, -0.011465787, -0.014557053, -0.0052200244, -0.019713847, -0.0063722236, -0.012231578, 0.018912928, 0.009582925, 0.009203542, -0.019685745, 0.018378982, -0.045104384, -0.0024291028, -0.012519628, 0.014781873, -0.015723303, -0.022046348, -0.014247927, 0.03692658, 0.013285419, 0.0010362767, -0.046565708, 0.031053172, 0.037263807, 0.010819431, -9.2123245E-4, 0.004001082, -0.010397895, 0.02045856, -0.001632575, 0.028945493, 0.01603243, -0.027554423, 0.044092696, -0.030659739, 0.0010564753, -0.026289813, -0.014472746, 0.03335757, 0.033413775, -0.024308592, -0.019334465, -0.001724786, 0.0106367655, 0.014500848, -0.015554689, 0.0071415273, 0.02194799, 0.012365065, 0.036645554, 0.017648319, 0.026303865, 0.035493355, 0.0013023715, -0.010995071, 0.0067937598, -0.0018670545, -0.02183558, -0.031952452, -0.018870775, -0.010657842, -0.014416541, 0.010784304, 0.0133627, 0.019418772, -0.02402757, -0.0024238336, -0.0010626228, -0.0038184163, 0.024182132, -0.030266305, 0.015386075, -0.0019215029, 0.01916585, 0.006351147, -0.006052559, -0.03970872, -0.02369034, -0.0029472413, -0.0060947123, 0.021442145, 0.042799983, -0.011212865, 0.008121599, 0.027708985, -0.019039389, -5.616093E-4, -0.009793693, 0.0087258015, 0.013109779, 0.019840308, -0.009252721, -0.6276956, -0.009892052, -0.009842873, -0.00641789, 0.0046685142, 0.001177667, 0.0011135584, 0.001956631, -0.029367028, -9.3177083E-4, -0.017606165, 0.015976226, 0.014388438, -0.015568741, -0.031559017, -0.035493355, 0.004120517, -0.017114373, 0.008578263, -0.0063195317, -0.01916585, 0.021540504, 0.009821796, 3.3415534E-4, 0.020809842, 7.433968E-4, -0.004513951, -0.024055671, 0.019994872, -0.010707022, -0.018322777, 0.016425865, 7.289065E-4, 5.106737E-4, 0.03729191, -1.440249E-4, -0.00732068, 0.042968597, 0.032795522, 0.027652781, -0.017929344, 0.002408026, 0.024196183, 0.0035005077, -0.0149785895, 0.020037025, 0.012842806, 0.007819498, -0.015526586, -0.0019987845, -6.5810156E-5, 0.008493956, -0.01672094, -0.010995071, 0.0021832066, 0.0016817541, 0.01440249, -0.03273932, 0.020121332, -0.0035742763, -0.015751407, 0.017114373, -0.0049319747, 0.004823078, -0.0059296107, 0.021933937, -0.00429967, -0.0070361434, -0.0030052024, -0.019896513, 0.010250357, 0.022004195, -0.010714048, -0.0032897394, 5.5985287E-4, 0.012013785, 0.031221788, 0.004464772, 0.014444644, 0.016566375, -0.021133019, -0.004303183, 0.0060349945, 0.0027856524, 0.030940764, -0.016201045, -0.03403203, 0.007763293, 0.00470013, 0.00824806, 0.004998718, 0.0071169375, 0.009372157, 6.7314075E-4, -0.0016396005, 0.0021726682, -0.010046615, 0.018631903, 0.020388305, -0.07464003, -0.0060068923, -0.015203409, 0.028018111, -0.020599073, 0.009358105, 0.023254752, -0.0044717975, -0.015273665, 0.040467482, -0.009618053, -0.024083773, -0.0028119984, -0.018336829, -0.012294808, -0.008388572, -0.032008655, 0.019474976, 0.012730396, -0.010678919, -0.012927113, 0.011859221, 0.011943528, 0.011219891, -0.015723303, 0.017634269, 0.010749175, 1.2931504E-4, 0.0023974876, -7.958693E-5, 0.014725667, 0.010868611, 0.0021392966, 0.020500714, -0.013706955, 0.0041521327, -7.385667E-4, 0.00970236, -0.016945759, 0.026683247, -0.0052340757, -0.0034372772, -0.010650817, -0.010643791, -0.019896513, 0.007250424, -0.022495987, -0.024322644, 0.009589951, -0.008430726, -0.023985416, -0.013657776, 0.01985436, -0.012716345, 0.009365131, -0.0064881463, 7.776466E-4, -0.018603802, -0.023676287, -0.0051848963, -0.031221788, 0.0013638455, 0.01823847, -0.0017326898, -0.029648053, 0.013615622, 0.0067867343, -0.013046548, -0.001724786, -0.013728032, -0.009870974, 0.013039523, -0.022102553, 0.00366034, 0.01662258, -0.0023447955, 0.026388172, -0.0033951236, 0.024814436, 0.008922518, 0.004995205, 0.008732826, -0.0203321, -0.029648053, 0.0065794787, 0.027146937, 0.024912795, 0.029114107, -0.0043804646, -0.015540638, -0.009568874, 0.00357252, -0.00789678, 1.0917131E-4, -0.013102753, 0.005901508, 0.013397829, -7.807203E-4, -0.006561915, -0.0014059992, 0.0048968466, 0.045357306, 0.034481667, 0.0067937598, -0.010144973, 0.005985815, -0.028973594, 4.2021897E-4, -0.02079579, 0.015231512, 0.0017836255, 0.020500714, -0.007875703, -0.015400126, -0.001138148, 0.006737555, 0.026683247, -0.010327639, 0.008058369, -0.005743432, 0.01499264, 0.012674191, -0.010130922, 0.018561648, 0.0135875195, -0.032261577, -3.4030274E-4, 0.0063019674, -0.025095461, 0.0021147071, -0.009119235, -0.0055537405, 0.009189491, 0.0024712565, 0.006298455, 0.0012593396, -0.0155827915, 0.021133019, -7.561307E-4, 0.04249086, -0.014002031, -0.002862934, 0.02380275, 0.018983183, 0.006259814, 0.005444844, -0.019812206, 0.024350746, 0.0066040684, -0.0032739318, 0.03762914, -0.008915492, 0.029367028, -0.0035163152, 0.019011287, 0.015034794, -0.021751273, -0.007805447, -0.0022622447, 0.041535378, 0.020725533, 0.020528818, -0.026570838, 0.020037025, 0.0028875235, 0.0017326898, 9.493349E-4, -0.01753591, 0.008676622, -0.0045912326, -0.025826123, -0.03355429, -0.011163686, 0.008894416, 0.017395398, 0.0054483567, -0.005149768, 0.0037903138, 0.02241168, 0.012442346, 0.008831185, -0.00807242, -0.037123296, 0.019039389, 0.021709118, -0.019910565, -0.009561848, 0.0025415125, -0.018196316, -0.02159671, -0.010222255, -0.004057287, 0.03265501, -0.020978456, 0.003716545, -0.0051989476, 0.005760996, 0.03102507, -0.025531048, 0.0063757366, 0.023662237, 0.0051603066, 0.017957445, 0.005335947, -0.0029086005, 0.018842673, -0.018730262, 0.0047703856, -0.004847667, -9.2386705E-4, -0.014500848, 0.010285486, 0.010404921, -0.039287183, 0.03740432, 0.0033125726, -0.013721006, -0.0070853224, 0.0064459923, -0.006772683, -0.013987979, -0.021765323, -0.018688109, -0.027020477, 0.008690673, 0.08262111, 0.051371224, 0.019713847, 0.013728032, -0.0056239967, 0.0029314335, -0.017044118, 0.005083025, 0.007735191, -0.017971497, 0.018407084, -0.004847667, 0.028271034, 0.005571305, -0.0045561045, -0.012273732, -0.004268055, -0.009983384, 0.007931908, -0.008564212, -0.026444377, -0.01325029, 0.011458761, 0.03217727, 0.003807878, -0.027203143, 0.012069989, 0.0010652574, 0.006828888, 0.015821662, -0.015400126, 2.7685275E-4, 0.034425464, 0.009484567, -0.0028137548, -0.0067270165, 0.023128292, -0.0034969947, 0.023915159, -0.0013058843, -6.4547744E-4, 0.0042891316, 0.016482068, -0.001133757, 0.034116335, -0.024308592, -0.0055221254, 0.019376619, 0.04901062, -0.024336696, 0.024055671, 0.0017722088, -0.019334465, -0.019193953, 0.012737421, 0.004967103, -0.022861319, -0.013278393, -0.013355675, 0.015189358, -0.01697386, -0.036167815, 0.017915292, -0.005539689, -0.0074190386, -0.03192435, -0.0045034126, 0.0039273133, -0.012400192, -0.0014428836, 0.010369793, -0.022580294, -0.013194086, -0.00940026, 0.019559285, 0.004798488, 0.025039256, 1.1767888E-4, 0.01307465, 0.0013014933, -0.033188958, -0.028945493, 0.0041310554, -0.027737089, -0.002871716, 0.011219891, -0.006010405, 0.0016053508, -0.012358039, 0.011999733, -0.0036849298, 0.022664601, -0.023001831, -0.013629673, 0.03240209, 0.014781873, 0.01603243, 0.016903605, 0.0026064995, -0.001970682, 0.009632104, -0.021652915, -0.0077070883, -0.021610761, -0.014240901, -0.02961995, -0.011704657, 0.014360337, -0.030968865, -0.03217727, -0.01962954, -0.005992841, 0.010903738, 0.0050408714, -0.0044050543, -0.006098225, 0.013095727, 0.010397895, -6.463556E-4, -0.001440249, -0.005416741, -0.013995005, 0.02055692, 0.02544674, -0.008831185, 0.017971497, 0.0020848482, -0.019320413, -0.008564212, 0.016734991, -0.016102687, 0.025531048, -0.013531315, -0.003804365, -0.0031527402, -0.013278393, 0.004088902, 0.019938666, -0.008016215, 0.019882461, -0.011065328, 0.004946026, 0.004974128, -0.0057364064, 1.8826426E-5, -0.02498305, 0.010538408, -0.023100188, 1.0549385E-4, 0.030715944, -5.5985287E-4, -0.0010661355, -0.028945493, -0.006410864, -0.02659894, -0.04785842, -0.04018646, 0.0019794642, 0.033835314, 0.010425998, 0.039905436, 0.0010353985, 0.024463156, 0.001151321, 0.0028313186, 0.018294675, -0.023268804, -0.011023174, -0.02973236, 0.010222255, -9.273798E-4, 0.013636699, 0.0052024606, 0.013215163, 0.0022921036, 0.034987513, 5.2252936E-4, 0.0076368325, 0.0025292176, -0.013313521, -0.02533433, 0.019250156, -0.01288496, 0.0014639604, -0.0243929, -7.890632E-4, 0.02066933, 0.0035514433, 0.0073136548, -0.017437551, 0.03285173, -2.8409789E-4, 0.0290298, -0.018336829, 0.010257383, -0.029367028, -0.0038535441, -0.024435053, -0.015245562, 0.007945959, -0.015357972, 0.014852129, 0.0054975357, -0.0032335345, 0.005142743, 0.030940764, -0.017268937, -0.015484433, 0.024800384, -0.012055938, -4.6105532E-4, -0.017957445, -0.020851996, -0.025643457, -0.021695068, 7.31102E-4, -0.0076719606, -0.0060174307, -0.010081743, -0.047324475, 0.021315685, -0.006115789, 0.037713446, 0.02241168, 0.044233207, 0.036673658, 0.0122877825, -0.01871621, 0.0014982102, 0.0027136398, -0.012561781, 0.02194799, 0.029001696, -0.023310957, -0.003200163, -3.9562938E-4, -0.004461259, -0.04091712, -0.03672986, 0.031053172, 0.027666831, 0.021161122, -0.025601303, -0.017901242, -0.0154984845, -0.0084237, -0.017704524, 0.003839493, 0.004271568, -0.023423366, -0.022510039, -0.008332367, 0.0014103901, 0.010763227, 0.004496387, -0.025095461, 0.021863682, -0.026303865, 0.014353311, -0.013404854, -0.008269137, 0.040945224, -0.028622314, 0.0068007857, 0.0062281988, 0.021217326, -4.6676362E-4, 0.0019812207, 0.0057364064, 0.032486398, -0.0032809575, 0.024645822, -0.0051954347, -0.0057855854, 0.013004394, 0.019545233, -0.014388438, -0.013341623, -0.00999041, 0.0067972727, 0.027006425, 0.006150917, 9.15085E-4, 0.0060947123, -0.017044118, -0.0062141474, -0.009294875, -0.013924749, 0.0024765257, -0.037657242, 0.019306362, -0.0058804313, 0.005725868, -0.0036322377, -1.6499194E-4, -0.0029472413, 0.008782006, 0.0038605698, -0.012098092, -0.005957713, -0.017325142, -0.007573602, -0.050190922, -0.019657642, -0.0063687107, -0.0060068923, 0.010552458, -0.011430659, 8.509764E-4, -0.005237588, -0.009133286, -3.5874493E-4, 0.0019689258, -0.019418772, 0.005121666, 0.031502813, -0.008515033, -0.0017792344, -0.0067867343, 0.028538007, -0.0024466668, -2.4479843E-4, -0.004394516, 0.0018723237, 0.032964136, -0.02045856, 0.008493956, 4.3317245E-4, -0.01753591, -0.022791062, 0.01329947, 0.019531181, 0.0058207135, 6.6348055E-4, -0.019306362, 0.0030614072, -0.016482068, 0.02498305, -0.0045912326, 0.0039378516, 0.011711683, 0.0065548895, 0.04566643, 0.030013384, -0.009498618, -0.017395398, -4.412958E-5, -0.0118521955, -0.01521746, -0.0088101085, 0.011058302, 0.01440249, 0.004120517, -0.016425865, -0.038781337, 0.0010046614, -0.012421269, -0.026289813, -0.021681016, 0.012814703, 0.03880944, 0.008978723, -0.003129907, 0.024702027, 0.016734991, 0.0038746211, -0.029900974, -0.0059436616, 0.022931574, 0.010735124, 0.02718909, 0.022566242, -0.027118834, 0.010721073, 0.016875504, 0.021484299, 0.018645955, 0.0130676245, -0.022214962, -0.020725533, -0.010236306, 0.0017476192, -0.0019004261, -0.010861585, 0.014880231, -0.009034928, -8.821525E-4, 0.010952918, 0.011985682, -3.8706692E-4, 0.022819165, 0.02114707, -0.0070677586, 0.0064846333, -0.018210368, -0.02020564, 0.011121533, -0.020135384, 0.026402222, 0.018660007, 0.011964605, 0.01892698, 0.030631637, -0.0027048578, 0.004974128, -0.01022928, 0.0064319414, -0.011135584, 0.003976492, 0.004338311, 0.034650285, -0.04091712, -0.0071801683, -0.008922518, 0.002179694, -0.003314329, 0.009484567, 0.006435454, 0.03287983, 0.011521992, -0.05657017, 0.0028242932, -0.0155827915, 0.004520977, -0.007995138, -0.010819431, -0.035802484, -0.015554689, -0.007868677, -0.010151999, -0.0060349945, -0.026275761, -0.0034530847, -0.014894282, -0.0038675955, 0.023282854, 0.20278706, -0.0073698596, 0.009238671, 0.054855924, 0.001777478, 0.0037130322, 0.023353111, 0.028200777, -0.0083815465, 0.019460926, 0.010095794, 0.00940026, -0.016130788, -0.003821929, 0.018786468, -0.040298868, -0.035802484, -0.009203542, -0.021104917, -0.023999466, 0.0017581576, 0.0056731757, -0.011191788, -0.03982113, 0.016819298, -0.0016088635, -0.00877498, 0.007615756, 0.015273665, 0.007348783, -0.021357838, -0.014936436, 0.009646156, -0.0013664801, -0.017859088, -0.018407084, -0.00650571, 0.007376885, 0.00560292, 0.024308592, -0.0014068774, 0.0025151665, -0.0023096676, -0.016749041, -0.004478823, 0.029591847, -0.024364797, 1.7915292E-4, -0.019446874, 0.0029138697, -0.038078777, 0.0059752767, 0.020402357, 0.0302101, -0.0076649347, -0.0040748506, 0.0070010154, 7.4251863E-4, -0.0010353985, 0.011788965, -3.1307852E-4, 0.023971364, -0.02394326, 0.0076368325, -0.01109343, 0.024547463, -0.03054733, -0.0029911513, -0.0030350613, -0.04229414, -0.017845036, -0.026809707, -0.015343921, 9.7480265E-4, -0.010868611, -0.010545433, 0.010735124, 0.006649735, 0.0076017044, 0.019362567, -0.023156393, -0.0062808907, 0.010995071, -0.016468018, -0.014016082, -0.009849898, 0.016046481, -0.012526654, -0.015034794, -0.017620217, -0.0154984845, -0.013482136, -0.011564146, 0.0013726276, 0.0049003595, -0.013721006, 0.019938666, 0.025165716, -0.015428228, -0.008950621, -0.029479438, 0.022524089, 0.010503279, -0.014852129, -0.023142342, -0.017971497, 8.9313E-4, 0.011304198, 0.031221788, -0.023774646, -0.00796001, -0.026233608, -0.008782006, 0.004447208, -0.008796058, 0.028439648, 0.012224552, -0.0044998997, 0.031081276, -0.006150917, -0.015062897, -0.022102553, 0.011353377, -0.008191856, 0.017634269, -0.030266305, -0.013749109, -0.0016273058, -0.00824806, -0.024940897, 0.025053307, -0.0078546265, 0.025643457, 0.007113425, 0.004724719, -0.011037225, 0.018097958, -0.006020943, -0.0010933598, -0.005757483, 0.0028488827, -0.0123720905, 0.0047563342, -0.0039202874, 0.01433926, -0.03436926, -0.0020251307, 0.012969267, -0.018266572, -0.024097824, -0.022046348, -0.008592315, 0.014894282, 0.010383844, 0.040579893, -0.0048441547, -0.03774155, -0.03554956, -0.006860503, 0.029872872, -0.043783568, 0.020725533, 0.014233875, 0.0011609812, -0.030800251, -0.01475377, -0.18187886, 0.017142477, -0.008838211, -0.02671135, 0.0068218624, 0.011831119, 0.016749041, 0.015849765, -0.0052551525, -0.02799001, 0.02380275, 0.006410864, -0.037376218, -0.017507806, -6.3845183E-4, 0.007847601, -0.015821662, 0.029872872, 0.023072086, 1.0329835E-4, 0.042266037, -0.01464136, -0.009695334, -0.0015904213, 0.014500848, 0.0048933337, 0.020065127, 0.016046481, -0.0024976025, -0.004394516, -0.031502813, -0.003581302, 0.011023174, 0.0030262794, -0.016158892, 9.906103E-4, -0.0095126685, -0.015161255, 0.004601771, -4.5968314E-5, 0.031390402, 0.0149785895, 0.015119102, 0.027582524, 0.015568741, 0.01579356, 0.039540105, -0.020823892, 0.018631903, -0.025264075, -0.025390536, -0.053113572, 0.007995138, -0.022552192, -0.0061860452, 0.012906036, -1.02255486E-4, -0.0037095193, 0.0054483567, -0.0075314483, -0.01777478, -0.014093364, 0.014585156, -0.012322911, -0.008353444, -0.01283578, -0.025516996, 0.013559417, -0.03670176, 0.013004394, -0.034116335, 0.00917544, 0.003024523, 0.006688376, 0.013601571, -0.025235973, -0.025924481, 0.011170711, 0.002302642, 0.01881457, -0.008978723, 0.042097423, -0.0018530033, -0.0017309334, -0.0010529625, -0.0220604, 0.007039656, 0.010861585, 0.024449104, -0.015765456, 0.0109880455, -0.025502946, -0.018449238, 0.0076649347, 0.013032497, 0.0054483567, 0.0022868344, 0.011360403, 0.013390803, -0.013791262, 0.003546174, -0.009653181, -0.0074892947, 0.028271034, 0.015526586, -0.0032809575, 0.017957445, 0.009561848, 0.019418772, -0.0039343387, 0.007071271, -0.010404921, 0.016285352, 0.011240968, -0.01510505, 0.007819498, -0.030378716, -0.009674258, -0.0077281655, 0.0024185644, 0.062106345, -0.0021551042, -0.016903605, -0.012069989, 0.0057680216, -0.0064986846, -0.08874744, -0.0067305295, 0.008500982, 0.04985369, -0.030041486, 0.041760195, -0.0065303, 0.02054287, -0.022594346, 0.03622402, -0.008690673, -0.03217727, 0.011051277, 0.007046682, 1.7937247E-4, 0.016074583, -0.01603243, -0.02333906, -0.008894416, 0.028509904, 8.3912065E-4, 7.26711E-4, 0.008191856, -0.014191722, -0.019784104, 0.011388506, -0.026528684, 0.03552146, 0.003405662, 0.021357838, -2.57697E-5, -0.010791329, 0.0026890503, -0.036954682, -0.020823892, -0.022341423, -0.019643592, -0.025727766, -0.004464772, -0.051511735, 0.015372023, 0.0069412976, -5.86638E-4, -0.010447075, 0.0014876719, 0.013721006, -0.031643324, 0.03077215, 0.002346552, -0.001470986, -0.018674057, -0.0146273095, -0.02322665, 9.5723866E-4, -8.246304E-4, 0.026177404, 0.03462218, 5.010134E-4, -0.015962174, -0.009611027, -0.003173817, -5.660003E-4, -0.021470249, 0.0055783303, 0.008107548, 0.0046263607, -0.0067235036, -0.0024273465, 0.007397962, -0.009540771, -0.022580294, 0.019025337, -0.025727766, -0.006077148, -0.012379115, 0.0044401824, -0.010664868, -0.02369034, 0.023184495, -0.027807344, 9.6426427E-4, -0.031530913, -0.0041310554, -0.03077215, 0.014852129, 0.013046548, 0.025587253, 0.012765524, -0.009224619, -0.039090466, -0.009716411, 0.020486664, 0.004278593, -0.009442413, 0.0012198206, 0.009379182, -0.0034214696, -0.008564212, -0.0048582056, 0.020697432, -0.010243332, -0.016243199, -0.07857437, 0.029198414, -0.023788698, -0.009273798, -0.014444644, 0.004303183, 0.004577182, -0.004366413, 9.2562346E-4, 0.022397628, 0.0076368325, 0.034847, -0.009596976, 0.0061298404, -0.0054097157, 0.0029402156, -0.0056977654, -0.0042891316, 0.006365198, 5.1594287E-4, -0.03462218, 0.024196183, 0.019615488, 0.015484433, 0.0089857485, 0.02207445, -0.0035795458, 0.0046123094, -0.021610761, 9.862193E-4, 0.015554689, -0.014557053, -0.007018579, 0.0060736355, -0.008838211, -0.033863414, -0.007524423, -0.0075314483, 0.023282854, 0.0010714048, -0.017114373, -0.018505443, 0.0025028717, 0.009786667, 0.0055572535, 0.008697699, -0.010882662, 0.013116804, 0.018210368, 0.009449438, 0.03414444, 0.011184763, -0.00670594, -0.02054287, 0.021905836, -0.013341623, 0.039343387, 0.012013785, -2.1768398E-4, -0.014269004, 0.02346552, 0.008100523, 0.03588679, -0.027456064, -0.0018477341, -0.016158892, -5.3921517E-4, -0.008339393, 0.002170912, -0.033779107, -0.010418972, -0.017254885, -0.007022092, 0.04842047, 0.0021761812, 0.016706888, 0.028102418, -0.009533746, 0.006807811, 0.017620217, 0.011725734, -0.0027434987, -0.023760596, 0.020163486, -0.002132271, -0.0021638863, -0.0029893948, 0.02124543, 0.012477474, 0.015905969, 0.0010731611, 0.019699795, 0.01016605, -0.016299402, 0.010159025, 0.0076930374, -0.015765456, -0.008170779, -0.0015509023, 0.018477341, 0.010348716, -0.0063757366, -0.017226784, -0.019559285, -0.01422685, -0.006649735, -0.026542734, -0.018154163, 0.0013041279, 0.016791195, 0.022116603, 0.008170779, -0.019840308, 0.0047738985, -0.04192881, 0.005961226, -4.3800255E-4, -0.0133627, -0.01411444, 0.034172542, 0.0065689404, 6.7841E-5, 0.03043492, -1.4512266E-4, 0.056289148, 0.021779375, 0.020065127, -0.030744046, -1.02914135E-4, -0.015189358, 0.0104611255, -0.019770052, -0.022327373, 0.0047914623, -0.009611027, 0.009470515, 0.0113323005, 0.023873005, -0.01707222, 0.07908021, 0.022144707, -0.003449572, 0.019250156, -0.03285173, 0.005775047, 0.008508007, 0.019432822, -0.021624811, -0.01429008, 0.008149701, -0.025531048, 0.007770319, -0.03172763, -0.0032475858, -0.0064073517, 0.012379115, 0.02520787, -0.015456331, -0.013432956, -0.008852262, 0.0020303999, 0.021161122, 0.0038851595, -0.0031509837, -0.010587586, 0.01858975, -0.016636632, -0.015034794, -0.034537874, -0.0066567603, -0.012315885, -0.0018846185, -0.0032247526, 0.030406818, -0.010039589, -0.008732826, 0.008564212, 0.025306229, 0.005922585, -0.01870216, 0.010840508, -0.01823847, -0.030519227, 0.020247793, -0.007236373, 0.0011750325, -0.020233741, -0.028650416 ], + "id" : "08dbc830-8d63-44b5-a39b-117a35fb06e0", + "metadata" : { + "source" : "movies.csv" + } + }, + "f1408203-2c1b-4bf5-ab1f-9dd7be1f3ca5" : { + "text" : "5,22005,Elijah Wood-Sean Astin-Ian McKellen-Viggo Mortensen-Andy Serkis-Billy Boyd-Miranda Otto-Dominic Monaghan-Bernard Hill-David Wenham-Orlando Bloom-John Rhys-Davies-Karl Urban-John Noble-Liv Tyler-Lawrence Makoare-Ian Holm-Cate Blanchett-Hugo Weaving-Sean Bean-Marton Csokas-Paul Norell-Alan Howard-Noel Appleby-Ali Astin-David Aston-John Bach-Sadwyn Brophy-Alistair Browning-Richard Edge-Jason Fitch-Bruce Hopkins-Ian Hughes-Bret McKenzie-Sarah McLeod-Maisy McLeod-Riera-Bruce Phillips-Shane Rangi-Todd Rippon-Thomas Robins-Harry Sinclair-Peter Tait-Joel Tobeck-Stephen Ure-Sala Baker-Robert Pollock-Ross Duncan-Pete Smith-Jed Brophy-Lee Hartley-Billy Jackson-Katie Jackson-Jane Abbott-Gino Acevedo-Aidan Bell-Jarl Benzon-J�rn Benzon-Emma Deakin-Michael Elsworth-Clint Elvy-Zo Hartley-Peter Jackson-Sandro Kopp-Andrew Lesnie-Joseph Mika-Hunt-Henry Mortensen-Craig Parker-Rick Porras-Christian Rivers-Michael Semanick-Howard Shore-John Stephenson-Richard Taylor-Royd Tolkien-Christopher Lee-Brad Dourif-Bruce Spence-Phil Grieve,elves-dwarf-orcs-based on novel or book-suspicion-volcano-bravery-addiction-honor-royalty-troll-brutality-ghost-wizard-quest-live action and animation-sword and sorcery,/rCzpDGLbOoPwLjy3OAm5NUPOTrC.jpg,/2u7zbn8EudG6kLlBzUYqP8RyFU4.jpg,1013665-121-120-10366-11285-283564-10925-1892-615774-950445-15969-34204-49051-16234-359983-628866-13888-13155-390555-16690-155\r\n37724,Skyfall,Action-Adventure-Thriller,en,When Bond's latest assignment goes gravely wrong agents around the world are exposed and MI6 headquarters is attacked. While M faces challenges to her authority and position from Gareth Mallory the new Chairman of the Intelligence and Security Committee it's up to Bond aided only by field agent Eve to locate the mastermind behind the attack.,46.095,Danjaq-Columbia Pictures-Eon Productions-Metro-Goldwyn-Mayer-B23,10/24/12,200000000,1108569499,143,Released,Think on your sins.,7.", + "embedding" : [ 0.0034987023, -0.03285268, -0.030421149, -0.039552897, -0.014643217, 0.04530752, -0.013380173, -0.011846958, -0.026314564, -0.02934047, 0.018938921, 0.020235738, 0.012394052, -0.005420287, 0.0018101395, 0.024450392, 0.01115127, -0.011752398, 0.009003418, -0.02336971, -0.015372677, 2.7038113E-4, -0.014737777, 0.0086251795, 0.014575675, -0.0057444912, 0.026517192, -0.007382397, -0.008604917, -0.0022711172, 0.008726493, -0.023720931, 5.618693E-4, -0.014291997, -0.020357314, -0.0022846255, 0.0033821915, -0.038553268, 0.03571648, -0.0028789998, 0.012866849, 0.007618796, -0.026287548, -0.005579012, -0.013177545, 0.01534566, 0.0065313615, -0.008449569, -0.0060788267, 0.017304393, 0.024801612, 0.03366319, -0.014778303, -0.018722786, -0.031285696, 0.002936411, -0.014602692, 6.218133E-4, 0.012752027, 0.0050758203, -0.002627404, -0.017844733, -0.03458177, -0.027246652, -0.025301427, -0.0015737406, -0.008078085, -0.02490968, -0.011340389, -0.0057107196, 0.0119145, 0.017817715, 0.019060498, 0.003233598, 0.0084360605, -0.029205384, -0.029313453, -0.004700959, -0.009496478, 0.0010604175, 0.025828259, -0.0015889377, -0.008321238, 0.016412832, 0.020262755, -6.0914905E-4, -0.0024940073, 0.016750544, -0.018439107, 0.009192537, 0.016453357, 0.033474073, -0.0047448617, 0.0056904573, -0.008692722, 0.022964455, -0.008652196, 0.037607674, -0.026962973, -0.028124705, 0.0022474772, -0.0038195294, -0.0022592973, -0.004086322, -0.007936246, -0.0030495448, -0.013028951, -0.0049508666, 0.024261272, 0.016466865, -0.008544128, -0.010658209, 0.023207609, -0.026787363, -0.0028570485, -0.015197067, 0.016493883, -0.014305505, -0.0108811, -0.018074378, 0.032636546, 0.026138954, 0.013744902, -0.04206548, 0.037472587, 0.030529218, 0.008544128, -0.015413202, 0.0048124045, -0.0027304064, 0.023977594, 0.0076323044, 0.0073081004, -0.0020955065, -0.026530702, 0.042903006, -0.012191424, 0.005805279, -0.023396729, -0.016993698, 0.034338616, 0.025463529, -0.032528475, -0.021248875, -0.010617684, 0.010550141, 0.008645442, 0.0051636253, 0.012468348, -0.005680326, 0.026922448, 0.030556235, 0.027746467, 0.011380915, 0.018938921, -0.014589184, -0.014305505, -0.0074229226, -0.013407189, -0.02238359, -0.015683372, -0.005852559, -0.0051366086, -0.019465754, 0.009651826, 0.02230254, 0.010887854, -0.021627113, -0.010313743, 0.007328363, -0.013434207, 0.036608044, -0.032069188, 0.013272105, 0.013326138, 0.018533668, -0.0028367857, -0.020478891, -0.024896171, -0.025976852, 0.007537745, 0.017817715, 0.037121367, 0.038769405, -0.007828178, 0.015318643, 0.02950257, -0.017020714, 0.018965939, -0.008044314, -0.006359128, 0.016520899, -0.0068285484, -0.014237963, -0.63544, -0.019128041, -0.0070987185, -0.0045928913, 0.023896543, 0.021640623, 0.0114889825, 0.009726122, -0.018587701, -0.033690207, -0.019249618, 0.016561424, 0.024355832, -0.015061981, -0.018439107, -0.00892912, -0.0048394212, -0.021086775, 0.012684485, -4.1707503E-4, -0.042551786, 0.02563914, 0.007821424, -0.008395535, 0.015413202, -0.017952802, -0.022802353, -0.027638398, 0.008219925, -0.0022373458, -0.0014859354, 0.011191795, 0.014508133, 0.032528475, 0.04014727, 0.014048844, -0.027462788, 0.049197968, 0.015318643, 0.03593262, -0.03215024, -0.0048157815, 0.009908487, -0.017723156, -0.018060869, 0.031096576, 0.0023943821, 0.0030360362, 0.0056904573, -0.0054000244, 0.004697582, -0.011968534, -0.01615617, -0.026503684, -0.011191795, 0.002225526, 0.008814299, -0.03250146, 0.030123962, 0.011306617, -0.01534566, 0.028935215, -0.0045591197, 0.017088257, -0.010550141, 0.015723897, -0.0073553803, -3.818263E-4, 0.0035155881, -0.030772371, 0.025531072, 0.005930233, -0.014818829, -0.015372677, 2.885332E-4, -0.0066428063, 0.04017429, 0.0017459741, -0.009888224, 0.010144886, 0.0045928913, -0.010482599, -0.012907375, 0.007517482, 0.028665043, -0.012245459, -0.022005351, -0.0076998468, 0.008807545, -0.004055928, 0.008273958, 0.014413573, 0.029853793, 0.008375272, 0.0034514226, -0.010232692, -0.011705118, 0.0049745063, 0.03628384, -0.061598774, -0.008706231, -0.009624809, 0.026571225, -0.0049339808, 0.018195953, 0.029448537, -0.0152105745, -0.011158024, 0.03836415, -0.01596705, -0.0025750585, 0.0044915774, -0.008746756, -0.0015315266, -0.012711502, -0.028367857, 0.015426711, 0.017196326, -0.010489353, -8.2866225E-4, -1.3033595E-4, 0.007834932, -0.001553478, -0.009300604, -5.513158E-4, 0.030340098, -0.011306617, -0.011144515, 0.0098679615, 0.004856307, -0.0021140808, -0.0035392279, 0.023167083, -0.023099542, 0.02336971, -9.472838E-4, 0.023950577, -0.0066867094, 0.010894608, 0.0061835176, -0.024301797, -0.0046773194, -0.013785427, -0.0125358915, -0.008794036, -0.018547175, -0.037256453, 0.0061531235, -0.0014901567, -0.014575675, -0.011178287, 0.021059757, 0.006842057, -0.007726864, 1.26009E-4, -0.00943569, -0.02988081, -0.015642848, 0.013332893, -0.011218812, 0.0031930725, 0.007760635, 0.0027152093, -0.02581475, 0.030853422, 0.0030698073, -0.018236479, 0.021451503, -0.0016961615, -0.013792182, 0.026746837, -0.014143403, 0.010968905, 0.018290514, -0.01453515, 0.018398581, -0.0101516405, 0.030610269, 0.0020971952, -0.0010291791, -0.009591037, -0.0037790039, -0.021167824, -0.015831966, 0.038039945, 0.024855647, 0.015440219, -0.016399324, -0.012900621, 0.0024230878, -0.0052615623, 9.7567274E-5, -0.0011819941, 0.007848441, 0.005231168, 0.036040686, 0.0066394294, -0.021910792, 0.005042049, -8.966269E-4, 0.04006622, 0.030610269, 0.018547175, -0.0010325562, 0.0038735634, -0.033906344, -0.0018489764, -0.020181704, 0.012704748, -0.019384703, 0.027557347, -0.017939292, -0.026598243, 0.011164778, 0.0072338036, 0.027233142, 0.0056060287, 4.181304E-4, -0.019816974, 0.003461554, 0.0014580741, -0.02401812, 0.030367116, 0.012157653, -0.037256453, -6.5938383E-4, 0.016088627, -0.014967422, 2.8452286E-4, -0.0027371605, -0.008442814, -0.009591037, 0.024058644, -0.0051433626, -0.024072153, -0.015034964, 0.031717967, -0.004001894, 0.051062144, -0.015278118, -0.014872862, 0.02807067, 0.020195212, 0.001742597, 0.011171533, -0.0076525672, 0.01607512, 0.015359169, -1.4743266E-4, 0.041336022, -0.015061981, 0.025139324, -0.0010055392, -5.563815E-4, 0.009942259, -0.00654487, -0.0030107077, 0.0150214555, 0.025166342, 0.016277747, 0.028043654, -0.021694656, 0.035149127, -8.113545E-4, 0.019735923, 0.013076231, -0.015858984, 0.016183186, -0.01132688, -0.03609472, -0.009645072, -0.003426094, 0.0070176674, 0.013616571, -0.0075782705, 0.0048968326, 0.0050251633, 0.020262755, 0.013515257, 0.019236108, 0.0015484123, -0.021910792, 0.009428935, 0.021829741, -0.012285984, -0.03566245, -0.009746385, -0.024436884, -0.042335648, -0.024815122, -0.009016926, 0.037688725, -0.01552127, 0.002804703, -0.012738518, -0.0022576086, 0.009280342, -0.015845474, 0.0120630935, 0.022883404, -0.017452987, 0.0065820185, 0.0019621102, -0.018709278, 0.025287919, -0.018479632, -0.0076593217, -0.004079568, -0.01534566, -0.011509245, -2.3048883E-4, 0.0123467725, -0.042281616, 0.00458276, -0.0069129765, 0.007328363, -0.0051602484, 0.003415963, 0.02276183, -0.011347143, -0.007024422, -0.028394874, -0.011191795, 7.028643E-4, 0.079105794, 0.046820473, 0.015183558, 0.016953172, -0.016088627, 0.0015585435, -0.01642634, -0.0013753345, -0.011407931, -0.017520528, 0.01993855, -0.026841396, 0.023585847, 0.0050893286, 0.0018050738, -0.005805279, -0.006842057, -0.009084469, -0.013994809, -0.02608492, -0.025139324, -0.010577158, 0.020870637, 0.037931878, 0.0062375516, -0.001035089, 0.0036135246, -0.0041437335, -0.0094897235, 0.015669864, 0.008706231, -0.0035932618, 0.00703793, 0.011610558, 0.0043125898, -0.0069974046, 0.022613235, 0.012529137, 0.014102878, -2.9259629E-5, -0.0108811, -0.00762555, 0.0056904573, -0.012738518, 0.010300234, -0.030177997, -0.009037189, 0.029475555, 0.03366319, -0.029718708, 0.016669493, 0.009408672, -0.023910051, -0.022234997, 0.004275441, 0.0012292739, -0.010144886, -0.009894979, -0.01598056, 0.013076231, -0.008132119, -0.043470364, 0.026030887, -0.0054540583, -0.018182445, -0.012616943, -0.014764794, 0.003233598, -0.012171161, 0.010874345, 5.6440214E-4, -0.009158765, -0.003488571, -0.012042831, 0.02085713, 0.004704336, 0.030069929, 5.4582796E-4, 0.019668382, 0.01417042, -0.03531123, -0.019371195, 0.008564391, -0.024477407, -0.018898396, 0.015750915, -0.0076323044, 0.016628968, -0.004292327, 0.0011786169, -0.003650673, 0.009766648, -0.020384332, -0.025787733, 0.046091013, 0.032474443, 0.011049956, 0.026814379, 0.014683743, -0.0013652032, -0.0010629504, -0.010658209, -0.003434537, -0.028043654, -0.007301346, -0.009455953, -0.007429677, -0.0088210525, -0.009442444, -0.030718338, -0.03188007, -0.038877472, 0.002336971, -0.003236975, 0.011124252, 0.007193278, 0.032447424, 0.017628597, -0.01407586, 0.0036776902, 7.2397134E-4, -0.011367406, 0.025531072, 0.01661546, -0.021951318, 0.025125816, 0.0025379101, -0.013798936, 0.018574193, 0.046280134, -0.01650739, 0.010617684, -0.015737407, -0.011873974, -0.01643985, -0.021194842, 0.013954284, -0.0042990814, -0.0063219797, 0.015318643, -0.016912647, -0.0017324656, 0.01868226, 7.4972195E-4, -0.006416539, -0.032177255, 0.0097734025, 0.0016007577, 0.012049585, 0.031366743, -0.019452244, 0.020532925, -0.021546062, -0.009949013, -0.0076998468, -0.04160619, -0.037391536, -0.0051399856, 0.028475925, 0.002600387, 0.03609472, -0.003167744, 0.027179109, 0.011306617, 0.012265721, 0.013603063, -0.01661546, -0.018628227, -0.028989248, 0.004694205, 0.018344548, 0.015372677, 0.0068555656, 7.1130716E-4, 0.0064570648, 0.02925942, 0.001236028, 0.014224454, -0.003782381, -0.01534566, -0.022099912, 0.0032572378, -0.036418926, -0.0033855687, -0.031826034, -0.008902104, 0.02771945, -2.836786E-4, 4.601334E-4, -0.012691239, 0.020195212, -0.004515217, 0.027368229, -0.018790329, 0.011016184, -0.0192226, 0.0025108932, -0.019128041, -0.0022204602, -0.0017527284, -0.0070109135, 0.023207609, 0.007281083, -0.0058863303, -0.007814669, 0.02174869, -0.013049214, -0.021005724, 0.029637657, -0.027233142, -0.012130636, -0.023964085, -0.015413202, -0.020776078, -0.012130636, -0.010212429, -0.013474733, 0.0075444994, -0.021856759, -0.034554753, 0.030177997, -0.0016801201, 0.040120255, 0.017263867, 0.042984057, 0.01868226, 0.011955026, -0.028313823, 0.009246571, -0.0042180303, -1.9589968E-5, 0.01643985, 0.030259049, -0.03366319, 0.0025480415, -0.0020499155, -0.010097606, -0.030880438, -0.032636546, 0.0305022, 0.019371195, 0.015548288, -0.022167454, 0.009097977, -0.033338986, 0.0034362255, -0.011401176, 0.0033788143, 0.0029296568, -0.03609472, -0.010793294, -0.0028756226, -0.0030546105, 0.013326138, 0.013177545, -0.014994439, 0.018938921, -0.021492029, 0.0034683084, -0.014967422, -0.011941517, 0.030448167, -0.028773112, 0.005497961, 0.012029322, 0.017074749, 0.0067474972, 0.0035155881, 0.013549029, 0.029367486, -0.008111856, 0.032258306, -0.0025007618, -0.0041133394, 0.020154687, 0.02104625, -0.015170049, -0.015386186, -0.017480003, -0.008841315, 0.031204643, -0.005042049, 0.009280342, 0.011313371, -0.026584735, -0.004754993, 0.010428565, 0.0016395946, 0.0034649312, -0.02934047, 0.009807173, 0.0031457928, -0.0066022812, 0.010874345, -0.0025125816, 0.0041268477, 0.013650343, 0.0029532965, -0.008557637, -0.016750544, -0.008267204, -0.017831225, -0.042335648, -0.024315307, -0.012941146, -0.009246571, -0.0015425022, -0.020006094, -0.0031204643, -3.488993E-4, 0.003488571, -0.016453357, 0.006956879, -0.019992584, -0.003392323, 0.022788845, -0.0026493552, 0.008652196, -0.0075580077, 0.024815122, 0.012630451, -0.011894237, 0.015683372, 0.012934392, 0.033068817, -0.0031289072, 0.02472056, -0.014332522, -0.013522012, -0.024882663, 0.005977513, 0.018128412, 0.00907096, -0.009915242, -0.028746095, -0.0131100025, 4.8124042E-4, 0.038337134, -0.009692351, -2.942321E-4, 0.023221117, 0.018790329, 0.04992743, 0.021789216, -0.0076052872, -0.028313823, 0.001955356, -0.009813928, -0.014967422, -0.0082469415, 0.008105102, 0.010604175, 0.0033771258, -0.0056398003, -0.028124705, 0.0074972194, -0.030988507, -0.02228903, 0.0033129605, 0.031339727, 0.026733328, 0.018709278, 0.009861208, 0.0056938343, 0.0057579996, -0.0114889825, -0.024382848, -0.0152511, 0.010388039, 0.0069366167, 0.025733698, 0.012150899, -0.02969169, -0.0052277907, 0.0057073426, 0.017412461, 0.0072202953, 0.023126557, 0.0018101395, -0.02230254, -0.007639059, 0.009097977, -0.0029262796, -0.009219553, 0.011975288, -0.03104254, -0.006038301, 0.0029583622, 0.018695768, -0.009050697, 0.006733989, 0.020465383, -0.022167454, -0.003203204, -0.01498093, -0.024531443, 0.0025294672, -0.02104625, 0.023937069, 0.014508133, -0.00652123, 0.036337875, 0.009131748, -0.008881841, 0.023680406, -0.0038803176, 0.010840574, -0.011529508, -0.0020955065, -0.00654487, 0.01785824, -0.021073265, -0.0120563395, -0.03644594, 0.008024051, -0.003032659, 0.017169308, -0.0025480415, 0.03401441, 0.011711872, -0.056087308, 0.009212799, -0.011887483, 0.0029988878, -0.020235738, 0.0066732005, -0.030583251, -0.0027557346, -0.0069366167, -0.004883324, -0.022397099, -0.023531813, 0.015332151, -0.009976029, -0.0066191666, 0.024166713, 0.18274303, -0.014913388, -1.7400112E-5, 0.03874239, 0.0046063997, 0.0024636134, 0.026328074, 0.0110094305, -0.010003047, 0.009537003, -0.0035865076, 0.008780527, -0.004275441, 0.00514674, 0.020478891, -0.025247393, -0.012954655, -0.028746095, -0.013049214, -0.031285696, -0.010475844, 0.0010941888, 0.001361826, -0.025395986, -0.0023774966, -0.015372677, -0.011928009, 0.009894979, 0.008199662, 0.0034446684, -0.0028840655, -0.008172644, -0.014332522, 0.0033264689, -0.022180963, -0.008794036, -0.008051068, 0.0017392198, 0.0037553639, 0.0037553639, 0.009408672, 0.0027084548, -0.016480375, -0.0021394093, -0.00916552, 0.024761086, -0.021059757, 8.020674E-4, -0.018709278, 0.007828178, -0.04279494, -0.008253695, 0.017047731, 0.009050697, 0.0021427863, -0.008638688, 0.0069974046, -0.002453482, -0.010225937, -0.0015230838, 0.0013643588, 0.03158288, -0.028043654, 0.008773773, -0.0045557427, 0.025625631, -0.036878213, -0.008827807, 0.008145628, -0.037040316, -0.005511469, -0.024855647, -0.01321807, 0.012873604, -0.011016184, -0.0052953335, 1.6875076E-4, 0.015048473, 0.0034446684, 0.013994809, -0.023396729, -0.015359169, 0.0077201095, -0.0028452286, -0.022424115, -0.019128041, 0.010165148, -0.026463158, -0.012846587, -0.018479632, -0.006389522, -0.027746467, -0.009726122, -0.0017231784, -0.011448457, 0.0025463528, 0.026057903, 0.010070589, -0.022275522, -0.0113944225, -0.017520528, 0.031636916, 0.007348626, -1.478548E-4, -0.028367857, -0.009685597, 0.0035561135, 8.780527E-4, 0.022991473, -0.016926154, -0.014940405, -0.037499607, -0.0060720723, -0.0059943986, -4.4198133E-4, 0.012225196, -0.005974136, 0.0014276799, 0.04295704, -0.03693225, 0.004967752, -0.02925942, 0.02581475, 0.007091964, 0.0015906263, -0.021100283, -0.041011818, 0.012495366, -0.01498093, -0.03266356, 0.0120563395, -0.019898025, 0.008794036, -5.888863E-4, 0.007645813, 0.02147852, 0.009442444, 6.965322E-4, -0.0034244056, -0.0016243976, -9.7345654E-4, -0.022126928, 0.012083356, 0.003032659, -0.0012410937, -0.01407586, 0.007868703, -0.0023082655, -0.015777932, -0.028394874, -0.022626743, -3.410897E-4, 0.009307358, 0.012164407, 0.047522914, 0.010367776, -0.0074229226, -0.035176143, -0.011657839, 0.0503597, -0.044037722, 0.027462788, 0.018938921, -0.0030765617, -0.020006094, -0.0021529177, -0.17247657, 0.014210946, 0.02147852, -0.037256453, 0.020830112, 0.010016555, 0.035041057, 0.01105671, -0.0046638106, -0.02689543, 0.013197808, 0.014197437, -0.04522647, -0.006916354, 0.005528355, 0.016021086, 0.0027945717, 0.028448908, 0.020897655, -0.0092938505, 0.039255712, 0.0010300234, -0.017101765, -0.0058289194, 0.016196696, -0.010286725, 0.025450021, -0.0054641897, 0.010577158, -0.009138502, -0.03763469, -0.0032707464, 9.768336E-4, -8.075552E-4, -0.017723156, 0.008024051, -0.013366664, -0.027597873, -0.007753881, -0.0103475135, 0.043740533, 0.017034223, 0.012414315, 0.019128041, 0.010003047, 0.014697252, 0.030069929, -0.018803837, 0.012630451, -0.008091593, -0.0027168978, -0.03547333, 0.028583994, -0.008469831, -0.0038533006, 0.014319014, 0.020911163, -9.371524E-4, 0.0023217741, 0.004427412, -0.04206548, -0.0076323044, 0.0045456113, -0.016385814, 0.003620279, -0.007348626, -0.010779786, 0.02120835, -0.024409866, 0.014021827, -0.032906715, 0.00676776, 0.017169308, 0.015318643, 0.006950125, -0.016372306, -0.035419296, 0.0026324696, 0.00256155, 0.016561424, -0.010171903, 0.03817503, -6.0957123E-4, 0.027651906, 0.0038026436, -0.010570404, 0.004569251, -0.0018371565, 4.067326E-4, 1.6600684E-4, 0.013332893, -0.008989909, -0.038904488, 0.007753881, 0.005906593, 0.00970586, 0.0017713025, 0.009300604, 0.0144405905, 0.013082986, 0.007159507, -0.01146872, -0.007868703, 0.026328074, 0.019843992, 0.0061227293, 0.012603434, 0.0063152253, 0.01019892, 0.005930233, -0.0024095792, -0.0019925043, 0.018749803, 0.0024923189, -0.028502943, 0.011380915, -0.027827516, -0.023693915, -0.008969646, 0.002186689, 0.04457806, -0.0036169018, 4.0293334E-4, -8.8987267E-4, -0.012704748, -0.007213541, -0.084022895, -7.9869025E-4, 0.012069847, 0.039228693, -0.029205384, 0.033879325, -0.0061227293, 0.009462707, -0.022126928, 0.016561424, 0.011461965, -0.026341582, 0.0139677925, -0.002603764, 0.008658951, 0.0045962683, -0.030259049, -0.011131007, -0.0061531235, 0.023086032, 0.0021107036, -0.005501338, -0.0061868946, -0.012907375, -0.013339647, 0.013157282, -0.02536897, 0.020816604, 0.010718998, 0.018425599, 0.018249989, -0.023140067, 0.010104361, -0.031636916, -0.036418926, -0.012022568, -0.010097606, -0.024328815, -0.004633417, -0.043821584, 0.0076323044, 0.017561054, -0.0098679615, -0.01914155, -0.018060869, 0.008287467, -0.026598243, 0.020411348, -0.012833078, -0.015102507, -0.014967422, -0.014967422, -0.026152462, -0.0118672205, -0.0012394052, 0.018911906, 0.02103274, 0.0014580741, -0.01534566, -0.015602321, -0.007956509, -0.0064604417, -0.011016184, 0.014494624, 0.0039613685, 0.0018692391, -0.0018692391, -0.011698364, 0.014467607, -0.029772742, -0.021640623, 0.024693545, -0.03220427, -0.014602692, -0.018817345, 0.016547916, -0.023248134, -0.01596705, 0.022424115, -0.023518305, -0.005926856, -0.032555494, 0.0244639, -0.010300234, 0.020465383, 0.015088999, 0.0118672205, 0.0084360605, -0.009280342, -0.044064738, -0.0035392279, 0.0141569115, 0.0067407433, -0.008348255, -0.010509616, 0.020992214, 0.023815492, 0.008996664, -0.001013982, -0.004484823, -0.009266834, 0.011955026, -0.07397257, 0.035419296, -0.024990732, -0.009206045, -0.016777562, -0.009111485, 0.00988147, -0.009732877, 0.01078654, 0.030934473, -0.009428935, 0.0022204602, -0.0077876523, 0.004349738, -0.0035493593, 0.0027033892, 0.020100653, -0.0054506813, -0.0064503103, 0.001730777, -0.015913017, 0.011698364, 0.025922818, 0.0043598693, -0.007861949, 0.022518676, 0.0032319094, 0.00223228, -0.018722786, -0.011603804, 0.036797162, -0.025963344, -0.010016555, 0.004569251, -0.011975288, -0.028394874, 0.005700588, 0.0034784395, 0.013562538, 0.006848811, 0.0019165189, -0.021694656, -5.6524645E-4, 0.0015754292, -0.005582389, 0.00659215, -0.021802725, 0.01887138, 0.01159705, 0.020843621, 0.03412248, 0.008456323, -0.0048664385, -0.004106585, 0.0076660756, -0.017817715, 0.046469253, 0.011630821, 0.0012883735, -0.022370081, 0.025477037, -0.007949755, 0.028286805, -0.039390795, 0.00821317, 0.0074702026, 0.019249618, 0.008341501, 0.0120563395, -0.031177625, -0.008179399, -0.014778303, 0.012515629, 0.037391536, 0.02336971, 0.019357685, 0.008219925, 7.5985334E-4, 0.003545982, 0.023666898, 0.030718338, -0.0039242203, -0.022721304, 0.0065110987, 0.001286685, 0.021640623, -0.004484823, 0.0115835415, 0.012002305, 0.009537003, -0.008402289, 0.013731394, 0.01245484, 0.0037148385, 0.011279601, 0.02581475, -0.014129895, -6.019727E-4, -0.0075107277, 0.03882344, -0.014521642, -7.271374E-5, -0.011495736, -0.02103274, -0.020195212, 0.004204522, -0.008078085, -0.01669651, 0.006842057, 0.012806062, 0.02834084, 0.017655615, -0.015088999, 0.008564391, -0.03836415, 0.029745724, -0.0015306823, -0.022316048, -0.011705118, 0.03755364, 0.0048124045, 0.004032288, 0.01950628, -0.01571039, 0.058789007, 0.008814299, 0.011745644, -0.023869526, 0.008767019, 0.004890078, -0.0072202953, -0.01804736, 0.00142177, 0.008422552, 0.0059167244, -0.0058829533, 0.011718627, 0.041768294, -0.020965198, 0.07181121, 0.018101394, -0.01232651, 0.018911906, -0.02500424, 0.015723897, 0.0073621343, 0.026935956, -0.016210204, -0.023734441, -0.007301346, -0.0063422425, 0.015548288, -0.028746095, 0.005288579, -0.0073216087, 0.008490094, 0.015764423, -0.014656726, -0.020154687, -6.6751E-5, -0.006646184, 0.024882663, 0.0067542517, -0.0069433707, -0.015264609, 0.0258958, -0.0043666237, -4.702648E-4, -0.039769035, 0.013717885, -0.021451503, -0.0044746916, 0.0043598693, 0.035068076, -0.006548247, -0.008192907, -0.0023977594, 0.012637205, 0.009935504, -0.023221117, -0.004532103, -0.03293373, -0.00884807, 0.029394504, -0.009449198, -0.0074702026, -0.028097687, -0.0076593217 ], + "id" : "f1408203-2c1b-4bf5-ab1f-9dd7be1f3ca5", + "metadata" : { + "source" : "movies.csv" + } + }, + "1317f780-8a84-47b7-b6da-bc72fdb8abdf" : { + "text" : "9,7490,Dwayne Johnson-Kevin Hart-Jack Black-Karen Gillan-Awkwafina-Nick Jonas-Alex Wolff-Morgan Turner-Madison Iseman-Ser'Darius Blain-Danny DeVito-Danny Glover-Rhys Darby-Colin Hanks-Rory McCann-Marin Hinkle-Vince Pisani-Dorothy Steel-Dania Ramirez-Derek Russo-Nick Gomez-Morgan Brown-Deobia Oparei-Leslie Simms-John Ross Bowie-Lucy DeVito-Bebe Neuwirth-Lamorne Morris-Darin Ferraro-Sal Longobardo-Massi Furlan-Michael Beasley-Charles Green-James William Ballard-Marque Hernandez-Kodai Yamaguchi-Ashley Scott-Melissa Kennemore-Jennifer Patino-Madison Johnson-Vanessa Cater-Javier Villamil-Anthony Neves-John David Bulla-Ryan Cheeseman-Cruz Abelita-Sheril Rodgers,magic-animal attack-body-swap-adventurer-superhuman strength-duringcreditsstinger-action hero-trapped in a game,/jyw8VKYEiM1UDzPB7NsisUgBeJ8.jpg,/zTxHf9iIOCqRbxvl8W5QYKrsMLq.jpg,353486-892409-181812-495764-330457-38700-448119-384018-338967-503619-651166-429617-454626-509967-458897-420809-744013-508439-431693-929472-546554\r\n354912,Coco,Family-Animation-Fantasy-Music-Comedy-Adventure,en,Despite his family��s baffling generations-old ban on music Miguel dreams of becoming an accomplished musician like his idol Ernesto de la Cruz. Desperate to prove his talent Miguel finds himself in the stunning and colorful Land of the Dead following a mysterious chain of events. Along the way he meets charming trickster Hector and together they set off on an extraordinary journey to unlock the real story behind Miguel's family history.,144.713,Pixar-Walt Disney Pictures,10/27/17,175000000,800526015,105,Released,The celebration of a lifetime,8.", + "embedding" : [ 0.015666733, -0.02579527, -0.020324776, -0.036776878, -0.024116207, 0.0345291, -0.0020429718, -0.013662691, -0.0132429255, -0.03433953, 0.03155012, 0.025768189, 0.022058003, -0.0010544916, 0.012281527, 0.011022231, 0.017684316, -0.03090016, 0.010995149, -0.027690984, 1.1488543E-4, 0.007298504, -0.028869037, 0.010074373, 0.013947048, 0.019038398, 0.02908569, -3.309039E-4, -0.0012652207, -0.010751414, 0.017332254, -0.011604486, -0.003666178, -0.018781122, -0.0136288395, 0.0053012324, 0.0037711195, -0.037237264, 0.014285569, -0.002430578, 0.01791451, 0.0016621362, -0.015355295, -0.0053316993, -0.017833265, 0.015328213, 0.0019024857, -0.0072375704, -0.007609943, 0.028841956, 0.028950281, 0.03534155, -0.022477768, -0.02827324, -0.0050710384, -0.004153648, -0.019864388, -0.0063980394, 0.008158347, 0.0018093926, 0.014217865, -0.011956547, -0.02300586, -0.02843573, -0.022965237, -0.020636216, -0.009810327, -0.017291632, 0.010500909, 0.0038862166, 0.0216924, 0.003099156, 0.012748686, -0.008686438, 0.024075584, -0.033879142, -0.037914306, -0.008022938, -0.009268694, 0.014244947, 0.012924717, -0.0051996764, 0.0072578816, 0.00987126, 0.0026150716, 0.02399434, -0.012680981, 0.024888035, -0.038591348, 0.0091942195, 0.005880103, 0.03368957, 9.453188E-4, -0.009058811, 0.002515208, 0.012301839, -0.015653193, 0.01248464, -0.017020816, -0.042491104, -0.012281527, 0.003909913, -0.008943714, -0.015341753, 0.003923454, 0.0018466299, -0.003273494, 0.0020531274, 0.022437146, 0.02002688, 0.0044447756, -0.013168451, 0.022058003, -0.039728776, -0.018821746, -0.020297695, 0.019796684, -0.0061712307, -0.0037914307, -0.02465784, 0.038862165, 0.03962045, 0.02154345, -0.027257679, 0.03447494, 0.026824372, 0.00451925, -0.025849434, 0.005687146, 0.0024339631, 0.028950281, -0.020785164, 0.015666733, 0.00493563, -0.030466855, 0.038997572, -0.018320736, 0.0037846602, -0.015206345, -0.017887428, 0.027244138, 0.021380961, -0.026404606, -0.009173908, -0.03257922, 0.004884852, 0.02101536, 0.004177344, 0.017359337, 4.5065553E-5, 0.033445835, 0.02185489, 0.007521928, 0.032958366, 0.015111559, 0.016709376, 0.007034458, -0.0048510004, 0.004458316, -0.01695311, -0.0073865196, -0.01100869, -0.0058936435, -0.0045767985, -0.0046952805, 0.021489287, 0.02709519, -0.035206143, -0.003696645, 0.0013972438, -0.014610549, 0.03090016, -0.025172392, 0.022247573, -0.011062853, 0.0065131364, -0.0029688256, -0.011029001, -0.038753837, -0.0056600645, 0.0117195835, 0.0036898744, 0.030873079, 0.0318751, 0.0053012324, -0.0011475849, 0.033797897, -0.027352463, 0.010656629, -0.00871352, -0.004891623, 0.015368835, -0.0052064466, -0.016655214, -0.632194, -0.009004648, 0.012179971, -0.015111559, 0.032227162, 0.017305173, 0.0033107314, -0.011117016, -0.032227162, -0.008402081, -0.021069521, 0.023452707, 0.031089732, -0.003432599, -0.024833871, -0.015395917, 0.025213014, -0.016113581, 0.011150869, 0.0014217865, -0.031658445, 0.012064874, 0.011367521, 0.0043601454, -0.0066350037, -0.001125581, -0.004509094, -0.010663399, 0.003261646, -0.006624848, -0.022721503, 0.005934266, 0.008733831, 0.0073865196, 0.033554163, 0.0031820936, -0.013317401, 0.05538197, 0.01315491, 0.03431245, -0.04305982, -0.0016037413, 0.0069092056, 0.0017162994, -0.023114186, 0.011441996, 0.0019448008, 0.0050033345, -0.0038218976, -0.01215289, -0.0029569773, 0.0032988833, 0.0025947604, -0.0116180265, -0.019187348, 0.0014691794, 0.0073594376, -0.02385893, 0.03241673, 9.630911E-4, -0.023290217, 0.020121664, 0.0020480496, 0.025768189, -0.0061035263, 0.025199473, 0.0029231254, -0.019106103, 0.005897029, -0.028733628, 0.006587611, 0.002818184, -0.02364228, -0.004228122, 0.009796786, 0.0036763337, 0.023087105, 0.002105598, -0.004776526, 0.01825303, -0.0031194673, -5.0016417E-4, 0.00501349, 6.4403546E-4, 0.017047897, -0.0040148543, -0.037589327, 0.0058631767, 0.027542036, -0.0050236457, 0.014515763, 0.01167896, 0.017440582, -0.0028029506, 4.794298E-4, -0.0054975743, -0.011069624, 0.011265965, 0.026512934, -0.06732497, -0.020500807, -0.023791227, 0.029194016, -0.017129142, 0.028571138, 0.0025169007, -0.01939046, -0.009228071, 0.032281324, -0.0026878535, -0.01872696, 0.002882503, -0.00853749, -0.013561135, -0.0030669966, -0.03731851, 0.0048103775, 0.009004648, -0.01463763, -0.0072511113, -0.0013049969, 0.0076979585, 0.008618735, -0.013791329, 0.0045632576, 0.03550404, -0.015233427, -0.0026235345, 0.00772504, 6.482669E-4, 0.0023679517, 0.008259903, 0.019607114, -0.017494744, 0.021651777, 0.0050033345, 0.017941592, -2.1527795E-4, 0.027108729, -0.0040791733, -0.024901574, -0.010934215, -0.015978172, -0.006807649, -0.015842764, -0.013730396, -0.03680396, 0.009505658, -0.0017281476, -0.008835387, -0.01593755, 0.013859034, 0.0033191945, 0.005883488, 0.009248382, -0.001816163, -0.016032336, -0.024779707, 0.017887428, -0.032389652, 0.014921988, 0.002481356, -0.011611257, -0.022437146, 0.018550929, -0.013168451, -0.013506972, 0.0014336348, 0.008036479, -0.007813055, 3.5967812E-5, -8.9030917E-4, 0.0022240803, 0.011157639, -0.0036390964, 0.033933304, -0.010453516, 0.026215035, 0.0014920295, -0.007102162, -0.002481356, -0.0118753025, -0.029681485, -0.004986408, 0.033608325, 0.020257073, 0.02186843, -0.0069464426, -0.016682295, 9.300853E-4, -0.023547493, -0.010209781, -0.0020345089, -0.00493563, 0.00283511, 0.0246443, -0.00468174, -0.009140057, -0.0038015863, -9.2077604E-4, 0.03385206, 0.02303294, -0.0016663676, -0.0066959374, 0.0048543853, -0.03285004, 0.0015648114, -0.026215035, 0.00838177, 1.8089694E-4, 0.021624696, -0.021313258, -7.4633215E-5, -0.0076031727, 0.0063675726, 0.017941592, -0.018943613, -0.011530012, -0.010311337, 0.0075828615, 0.012342461, -0.010040521, 0.017670775, 0.010744643, -0.017291632, 0.012186741, 0.003960691, -0.005406174, -0.0031567046, -0.009986358, -0.01083943, 0.0070276875, 0.0065334477, 0.008429163, -0.011089935, -0.01100869, 0.009112975, 0.0033225797, 0.033472918, -0.02069038, -0.0058597918, 0.01726455, 0.012721604, 0.013398645, 0.009986358, -0.02154345, 0.015924009, 0.01739996, -0.015856305, 0.041001614, -0.015869845, 0.019783143, -0.013060125, 0.017833265, 0.004234893, -0.01742704, -0.004942401, 0.015165723, 0.041976552, 0.026580637, 0.01775202, -0.025510913, 0.019268593, 0.0035815479, 0.01577506, -0.004485398, -0.015477162, 0.0076167136, -0.0045429463, -0.020162286, -0.019444624, -0.011435226, 0.004834074, 0.017467663, -0.009620755, 5.4332556E-4, -0.01183468, 0.012450787, 0.0063201794, 0.020311236, -0.0019515712, -0.035043653, 0.01249818, 0.02385893, -0.012863782, -0.029166935, -0.01708852, 0.0020277384, -0.03417704, -0.008185428, -7.142785E-4, 0.044007678, -0.016154204, 0.012173201, -0.009356709, 0.0069599836, 0.022166329, -0.007088621, 0.024265157, 0.012112267, -0.005883488, 0.016330233, -0.005375707, -0.011144098, 0.019200888, -0.010033751, 0.0022139247, -0.0032311792, 0.0014446366, -0.0075625503, 0.0027775615, -0.0015868153, -0.033635408, 0.015003233, -0.013594987, -0.019363377, -0.011462308, 0.006178001, 2.9705183E-4, -0.009647837, -0.022247573, -0.03303961, -0.02185489, -0.008571342, 0.08021584, 0.043926433, 0.011150869, 0.0018517077, -0.016492724, 0.009234842, -0.013750707, -7.553241E-4, -0.015531325, -0.02070392, 0.02794826, -0.018632174, 0.033229183, 0.011773746, 0.015883386, -0.013750707, -0.019783143, -0.0015521169, -0.013351252, -0.0062727868, -0.026282739, -0.013574676, 0.0259713, 0.041814063, 0.0029857517, -0.019363377, 0.01478658, 0.018429061, -0.0038388236, 0.0038218976, -0.014488681, 0.004617421, 0.00953951, 0.014908447, 0.0062321643, 0.00706831, 0.030818915, 0.015233427, 0.03601859, 0.0071698665, -0.009749393, 0.0020514347, -6.5334473E-4, -0.007379749, 0.02167886, -0.026702505, -0.014705335, 0.033797897, 0.03285004, -0.03385206, 0.02613379, -0.0016807548, -0.019945633, -0.01561257, 0.03566653, -0.0044447756, -0.01380487, -0.010697251, -0.0054874187, 0.0028147988, 0.0035612367, -0.029843977, 0.008794765, -0.014908447, -3.5925498E-4, -0.012532032, -0.02547029, -0.003981002, -0.016370855, 0.010717562, -0.008415622, -0.026079627, -0.008679668, -0.008104183, 0.009898342, 0.0063371058, 0.029681485, -0.011306588, 0.012477869, 0.0076641063, -0.031604283, -0.024034962, 0.0041197957, -0.024481809, -0.012897635, 0.0019634194, -0.0027826393, 0.029708568, -4.3267163E-4, 0.0027758689, 0.0067230193, -0.0024661226, -0.015504244, -0.0015148796, 0.037643492, 0.0055517377, 0.01775202, 0.024224535, 0.0032261014, 0.008131265, 0.0039132982, -0.0289232, -0.0029383588, -0.014745957, -0.021584073, -0.022085084, 0.0024576595, 0.006445432, -0.01545008, -0.015219886, -0.025064064, -0.010236863, 2.4053475E-5, -0.001987116, 0.009437954, 0.002136065, 0.01758953, 0.012105497, -0.02300586, 0.015179263, 0.016966652, -0.01067694, 0.009810327, 0.026512934, -0.0012626818, 0.02430578, -0.0130872065, -0.02319543, -0.01068371, 0.03071059, 0.014123079, 0.010135307, -0.019200888, -0.0017349181, -0.005172595, -0.023872472, 0.01100869, 0.003219331, -0.00953951, 8.970796E-5, -0.018970694, 1.194343E-4, 0.01182114, -0.019674817, -0.011306588, -0.030033547, 0.006770412, -0.016993733, 0.013378334, 0.021489287, -0.0037812751, 0.007284963, -0.027867015, -0.023696441, -0.008043249, -0.01872696, -0.034826998, -0.0017806183, 0.038916327, 0.011265965, 0.053648744, 0.0023425624, 0.019769603, 0.010629547, 0.008659357, 0.019214429, -0.024441186, -0.010649858, -0.026336903, -4.0749417E-4, 0.009444725, 0.014380355, 0.008300525, 0.013933508, -0.0059241103, 0.013141369, 0.011841451, 0.0018957154, -0.00952597, -0.025605697, -0.020947654, 0.008632275, -0.03057518, -0.0022240803, -0.018374898, -0.013134599, 0.046201292, -0.0047866814, 0.001293995, -0.0022579324, 0.03073767, 0.006973524, 0.014380355, -0.0216924, 0.014475141, -0.018049918, 0.004884852, -0.025551535, -0.013933508, -0.006425121, -0.015314672, 0.028408648, 0.0025862975, -0.014678253, -7.5659354E-4, 0.03981002, -0.02203092, -0.031820938, 0.025199473, -0.028164914, -0.01083943, -0.038835082, -0.0075964024, -0.03832053, -0.012620048, 0.003048378, -0.018131163, 3.0022545E-4, -0.0106904805, -0.03943088, 0.018307194, 0.016384397, 0.054434113, 0.008747372, 0.034664508, 0.026526473, 0.010270715, -0.0046208063, 0.015368835, -0.013615298, -0.009126515, 0.025592158, 0.023385003, -0.010324879, -0.0099931285, 0.008571342, -0.016248988, -0.037345592, -0.044332657, 0.021150768, 0.016465642, 0.028950281, -0.018347817, 1.959188E-4, -0.016709376, 0.021164307, -0.010873281, 0.008618735, 0.010568613, -0.02681083, -0.028354485, -0.003197327, 0.0016164358, 0.009681689, 0.008530719, -0.021475747, 0.01527405, -0.021150768, 0.002455967, -0.0154094575, -0.014353273, 0.022856912, -0.017034356, 0.009688459, 0.016546886, 0.009079122, 0.018456142, 0.008185428, 0.010825888, 0.02859822, -0.022355901, 0.016614592, 0.0031685529, 0.0081109535, 6.668856E-4, 0.0187405, -0.023317298, -0.026255658, -0.030358527, 0.0046275766, 0.029952303, 0.0029857517, 0.0021259093, 0.006523292, -0.005880103, -0.017061438, 0.008456244, -0.01593755, 0.011211802, -0.03090016, 0.017860347, -0.011029001, -0.001673138, -0.009999898, -0.0050168755, -0.0016274378, -0.01083943, -0.0064826696, 0.0048577706, -0.0041028694, -0.014515763, -0.027244138, -0.042761922, -0.033445835, -0.02433286, -0.011570634, 0.011001919, -0.0130872065, -7.413601E-4, -0.006062904, -0.007196948, -0.0060899854, -0.003146549, -0.0065706847, -0.002012505, 0.019932093, -0.005771776, -0.006980295, 0.0029823664, 0.04208488, -0.00920099, -0.007081851, 0.009024959, 0.023452707, 0.024603678, -0.040947452, 0.023100646, 0.0018720189, -0.015720896, -0.019485246, 0.0035917035, 0.020568512, 0.018144704, 8.58996E-4, -0.033581242, -7.3078135E-4, -0.011550323, 0.034718674, -0.009715541, -0.012559114, 0.04844907, 0.026688963, 0.04517219, 0.029302344, -0.005649909, -0.03699353, 3.1355472E-4, -0.008889551, -0.024427647, -0.0059715034, 0.008517178, 0.0133715635, 0.0035917035, -0.016668754, -0.022816287, -0.0056329826, -0.008469786, -0.0450097, -0.0055957455, 0.030818915, 0.031658445, 0.0035680071, 0.0016088191, 0.005998585, -2.9493606E-4, 0.0077182697, -0.02513177, -0.01463763, 0.009255153, 0.014894906, 0.022789206, 0.009620755, -0.0042315074, -0.0073594376, 0.015639652, 0.037643492, 0.015382376, 0.037183102, -0.0064217355, -0.01215289, -0.022653798, 0.010514449, -0.011164409, 0.0020226606, 0.024522431, -0.038699675, -0.0072308, 7.5659354E-4, 0.01413662, -1.2207899E-4, 0.01660105, 0.016885407, -0.013696543, -0.0055111153, -0.0094514955, -0.018875908, -0.013615298, -0.025754647, 0.011130557, 0.013033043, 0.0024982821, 0.028679466, 0.02385893, -0.003402132, 0.007657336, -0.010392582, 0.00937025, -0.013743936, -0.0036052444, -9.952505E-4, 0.023709983, -0.031089732, 0.012938257, -0.028571138, -0.009099433, -0.0097358525, 0.012112267, -0.013906426, 0.029031526, -0.015761519, -0.05605901, -0.0019346452, -0.019187348, 0.0042958264, -0.008266673, -0.0017636924, -0.027812852, -0.026485851, -0.017007275, 0.018970694, -0.014515763, -0.02104244, 0.002413652, -0.010426435, -0.013581446, 0.021462206, 0.17657234, -0.005433256, 0.013168451, 0.04224737, -1.0515296E-4, 0.012843471, 0.020013338, 0.015680274, 0.0052978476, 0.008408852, -1.3540823E-4, 0.008997877, -0.005027031, -6.127223E-4, 0.0164521, -0.017332254, -0.026851453, -0.024535973, -0.026011923, -0.03257922, -0.021232013, 0.0010291026, -0.015666733, -0.01695311, -5.094735E-4, -0.003811742, -0.0052030617, 0.0072443406, 0.0143261915, 0.0061238375, -0.004536176, -0.023236053, -0.004962712, 0.0027826393, -0.017819725, -0.018659255, -0.0040046987, -7.781742E-4, 0.016479183, 0.0104332045, 0.009492118, -0.0026878535, -0.0049525565, -0.008402081, 0.01001344, 0.031279303, -0.02529426, 0.007183407, -0.016235448, 0.011963318, -0.03845594, 0.0077182697, 0.01841552, 0.019106103, -0.014001212, -0.014177242, 0.0011755128, -0.012951798, -0.010548302, 0.023452707, 0.028354485, 0.03750808, -0.02482033, 0.014556386, -0.009878031, 0.0038963722, -0.03385206, -0.0032971906, 0.014935529, -0.044143084, -0.01396059, -0.03268755, -0.012207053, 0.0017552293, -0.006147534, -0.014732417, 0.010568613, 0.015585489, 0.014651172, 0.017115602, -0.026079627, -0.021055982, 0.0046614287, -0.018077, -0.0144616, -0.017792642, 0.009336398, -0.019363377, 0.009722312, -0.023886014, -0.011110246, -0.02976273, -0.007657336, -0.0011357366, -0.011252425, 0.014095997, 0.019796684, 0.009282235, -0.013229385, -0.014393896, -0.034258284, 0.023100646, 0.01823949, -0.016993733, -0.038753837, -0.019376919, -0.0012508336, 0.003363202, 0.029789813, -0.01612712, -0.0154094575, -0.022152787, 0.0051184315, -0.012741915, 0.0032413348, 0.012200282, -0.0029146622, -0.012091956, 0.038564265, -0.02482033, 3.1418944E-4, -0.028300323, 0.0065706847, -0.0027183203, -0.0032125604, -0.029654404, -0.012376313, 0.015192805, 0.0039843875, -0.037887227, 0.0038963722, -0.016709376, 0.017386418, -0.002268088, -2.9959073E-4, 0.014055375, 0.03041269, -2.8753094E-4, -0.0057751616, -0.014028294, 0.004553102, -0.005484034, 0.021976758, 0.008022938, 0.008530719, -0.028544057, 0.014109539, -0.0044447756, -0.006668856, -0.038808003, -0.026851453, -0.0055009597, 0.004732518, 0.0131142875, 0.05478617, 0.011841451, -0.016140662, -0.03268755, -0.014163702, 0.03894341, -0.018510306, 0.013831952, 0.020243531, 2.1633581E-4, -0.0332021, -0.005389248, -0.17299756, 0.0076708766, 0.0060392073, -0.017345795, 0.021665318, 0.0069261314, 0.031793855, 0.011604486, 0.025334882, -0.02119139, 0.01413662, 0.007928153, -0.035531122, -0.0077656624, 0.0039369944, 0.015219886, -4.3626843E-4, 0.03252506, 0.0144616, 0.00205482, 0.046363782, 0.009600444, -0.0069396724, 5.797165E-5, 9.5632067E-4, 9.6563E-4, 0.012207053, 0.010568613, -0.00283511, -0.014393896, -0.03994543, -0.009485347, 0.01331063, 0.007873989, -0.008733831, 0.0049525565, -0.009756164, -0.0070412285, 0.0030433002, -0.012640359, 0.0332021, 0.018645715, 0.022707961, 0.02135388, 0.022924615, 0.012762226, 0.02054143, -0.017562449, 0.012620048, -0.027474333, -0.0031347007, -0.04203072, 0.028164914, 0.004769755, -0.005274151, 0.020731002, -0.008320836, -7.622003E-5, 0.0096072145, -0.02513177, -0.022883993, -0.0132429255, 7.671723E-4, -0.019647736, -0.0017230698, -0.018957153, -0.009058811, 0.008882781, -0.040324572, 0.0022020764, -0.026215035, 0.015260508, 0.006147534, 0.022653798, 0.0012677596, -0.02250485, -0.03368957, 0.005717613, 6.2584E-4, 0.009783246, -0.019282132, 0.045740902, -0.00869998, 0.009999898, 0.00838177, -0.0097358525, 0.0050033345, -1.1171179E-4, -8.2514394E-4, -0.006624848, 0.0045903395, -0.005294462, -0.021895513, -6.330335E-4, -0.0040046987, 0.005897029, -0.011733124, 0.007278193, 0.026187953, 0.0031770158, -0.002540597, -0.01018947, -0.02595776, 0.0143261915, 0.030602261, 0.00501349, 0.029518995, 0.018537387, 0.022883993, -0.0064048097, 0.0054806485, -3.083711E-5, 0.014881365, 0.023412084, -0.015802141, 0.012565885, -0.02316835, -0.020934114, 0.0033699726, 0.02085287, 0.041055776, -7.248572E-4, -0.0028994288, -0.02119139, 0.0063709575, -0.0064555877, -0.08135327, -0.0072240294, -0.0049694823, 0.04352021, -0.03647898, 0.03664147, -0.005947807, 0.022802748, -0.01610004, 0.040866207, 0.01248464, -0.019837307, 0.017129142, -2.4987053E-4, 0.019972716, -0.01216643, -0.020162286, -0.016167743, -0.008632275, 0.027487872, -0.009004648, -0.013439268, 0.0031922492, -0.010595695, -0.018713418, 0.023141269, -0.026323361, 0.031441793, 0.01739996, 0.009661377, 0.0051387427, -0.009146826, 0.014366814, -0.043141063, -0.02104244, -0.021895513, -0.016560428, -0.028896118, 0.008862469, -0.046120048, 0.024860952, 0.022058003, 3.952228E-4, -0.01905194, -0.0032244087, 0.0028300323, -0.025835892, 0.024251616, -0.01281639, -0.029031526, -0.0073865196, -0.008564571, -0.029735649, -0.0049525565, 0.01397413, 0.01695311, 0.025497371, 0.016248988, -0.0017103753, -0.029031526, -0.011990399, -0.0047900663, -0.008496867, 0.02333084, 0.0017129142, 0.0023679517, -0.009546281, -0.016086498, 0.017603071, -0.0051556686, -0.023737064, 0.028381567, -0.03712894, -0.009898342, -0.015585489, 0.008571342, -0.03236257, -0.00788753, 0.021028899, -0.039539207, 0.008056791, -0.03271463, 0.005951192, -0.019092562, 0.015761519, 0.009911883, 0.016628131, 0.013364793, -0.0011992092, -0.03813096, 0.009079122, 0.01364238, 0.0039336095, 3.4592574E-4, 0.0010790344, 0.011712813, 0.010257174, -0.001490337, -7.5574726E-4, 0.011035771, -0.012884094, 0.0045971097, -0.077940986, 0.025185933, -0.009966047, -0.0045260205, -0.014542845, -0.0051387427, 0.009613985, -0.0065300623, 0.0056465236, 0.019566491, -0.00904527, 0.009214531, 0.0018127778, 0.0047223624, -0.0079552345, 0.0070479987, 0.007745351, -0.021218471, -0.0039640763, -1.7412653E-4, -0.017481204, 0.016140662, 0.03599151, -0.0017823109, 0.008097413, 0.016817704, -5.1582075E-4, 0.01150293, -0.010582154, -0.025592158, 0.037074775, -0.018645715, 0.005145513, 0.015680274, -0.0050676535, -0.03661439, -0.0044752425, -0.0038354383, 0.012687752, -0.0019515712, -0.009729082, -0.028408648, -0.0036187852, -0.014055375, -0.0034562952, 0.019674817, -0.00460388, 0.011150869, 1.468333E-4, 0.012430476, 0.029329425, 0.005230143, -0.01216643, -0.015802141, 0.014610549, -0.032308407, 0.04652627, 0.0094514955, -0.007460994, -0.011570634, 0.02167886, -0.00201589, 0.035883185, -0.028327404, -6.2499364E-4, 0.009661377, 0.0012432169, 0.0039369944, 6.546142E-4, -0.039078817, -0.012890864, -0.0012009018, 0.017020816, 0.027000403, 0.02136742, 0.021570532, -7.29935E-4, 0.00460388, -0.0028114135, 0.02268088, 0.033229183, -0.002911277, -0.024847412, 0.02185489, -0.0044955537, 0.032335486, -0.005490804, 0.01725101, 0.0017518441, 0.011563864, -0.023709983, 0.016668754, 0.0047291326, 0.0053790924, 0.006868583, 0.023425626, -0.011854991, -0.019986257, 0.008720291, 0.03978294, -0.0069125905, -0.009119745, -0.020920573, -0.010453516, -0.018970694, -5.19206E-4, -0.011238884, -0.012051334, 0.018510306, 0.0137845585, 0.02630982, -0.0022443915, -0.0246443, 0.004509094, -0.03550404, 0.0046208063, 0.008408852, -0.007941693, -0.008997877, 0.049126107, 0.014123079, 0.014082457, 0.033879142, -0.016519805, 0.05719644, 0.014068916, 0.007034458, -0.039187144, 0.013513742, -0.0036864893, 0.001728994, -0.0062694014, -0.02300586, 0.010304567, -0.0066451593, 0.00258799, 0.014285569, 0.033256263, -0.010514449, 0.081732415, 0.018361358, 0.001266067, 0.021313258, -0.010737874, 0.018077, 0.009112975, 0.012071645, -0.019444624, -0.0049390155, 0.009566592, -0.022856912, -0.0022376212, -0.024603678, 0.008835387, -0.013561135, 0.020473726, 0.009512429, 0.0017552293, -0.017792642, -0.005981659, 0.0060053556, 0.025619239, 0.010555073, -0.011408144, -0.013933508, 0.0120039405, -0.0059918147, -0.0013329248, -0.03962045, 0.0059918147, -0.009850949, -8.920018E-4, 0.007921382, 0.02613379, -0.004123181, -0.0033530465, 0.012626818, 0.019688359, 0.013425726, -0.018104082, 0.0017721553, -0.026431689, -0.009383791, 0.022559013, -0.0031685529, -0.0025304414, -0.021556992, -0.012267986 ], + "id" : "1317f780-8a84-47b7-b6da-bc72fdb8abdf", + "metadata" : { + "source" : "movies.csv" + } + }, + "1e118d9b-ffb2-45f5-ae86-d5048509d9f4" : { + "text" : "Shannon Freyer-Kevin Dwane-Sandi DeGeorge-Tony Neil Butler-Frances Emily Schramm-Kenneth Wong Chan-Stacey Alyse Cohen-Tim Wilson-Jonathon Culver-Jillian Braithwaite-Adam Haas Hunter-Bob Rumnock-Ben Reed-Martha Nichols-Jonathan Redavid-Shannon Holtzapffel-Jeremy Hudson-Taylor James-Chelsea Caso-Caoife Coleman-Mishay Petronelli-Khasan Brailsford-Alex Wong-Julius Anthony Rubio-Vincent-Olivier Noiseux-DeAnna Walters-Ilia Jessica Castro-Najla Gilliam-Christina Glur-Emerson Tate Alexander-Victoria Llodra-Louise Hindsbo-Laci Justice-GiaNina Paolantonio-Rachel Quiner-Madison Smith-Brando-Daniel 'Cloud' Campos-Rod Roberts-James Babson-Loren Allred,adultery-circus-musical-biography-rags to riches-based on true story-outcast-singing-dreamer-freak show,/b9CeobiihCx1uG1tpw8hXmpi7nm.jpg,/lrNKm3HNvGdZoAfiBKu7b04FLHN.jpg,353486-354912-399055-406997-284054-392044-181808-339846-398818-391713-313369-299536-336843-283995-359940-424694-263115-141052-449176-284053-333339\r\n566525,Shang-Chi and the Legend of the Ten Rings,Action-Adventure-Fantasy,en,Shang-Chi must confront the past he thought he left behind when he is drawn into the web of the mysterious Ten Rings organization.,152.859,Marvel Studios,9/1/21,150000000,432243292,132,Released,You can't outrun your destiny.,7.6,7803,Simu Liu-Tony Leung Chiu-wai-Awkwafina-Zhang Meng'er-Fala Chen-Michelle Yeoh-Yuen Wah-Ben Kingsley-Florian Munteanu-Andy Le-Paul He-Jayden Tianyi Zhang-Elodie Fong-Arnold Sun-Stephanie Hsu-Kunal Dudheker-Tsai Chin-Jodi Long-Dallas Liu-Ronny Chieng-Daniel Liu-Stella Ye-Fernando Chien-Michael-Anthony Taylor-Zach Cherry-Raymond Ma-Lau Ga-Yung-Johnny Carr-Harmonie He-Lydia Sarks-Dee Bradley Baker-Benedict Wong-Jade Xu-Tim Roth-Mark Ruffalo-Brie Larson-David Chea-Bingchen Ye,martial arts-superhero-based on comic-mixed martial arts-east asian lead-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-father son relationship-stereoscopic-3d,/1BIoJGKbXjdFDAqUEiA2VHqkK1Z.jpg,/zxWAv1A34kdYslBi4ekMDtgIGUt.jpg,524434-580489-497698-62568-512195-634649-550988-370172-438631-453395-436969-451048-616037-299536-414906-335787-568124-429617-522402-624860-17422\r\n36669,Die Another Day,Adventure-Action-Thriller,en,James Bond is sent to investigate the connection between a North Korean terrorist and a diamond mogul who is funding the development of an international space weapon.,27.", + "embedding" : [ 0.01080641, -0.03152505, -0.03216276, -0.043724716, -0.00978746, 0.030693254, -0.008234775, -0.0072782105, -0.030776432, -0.03604447, 0.022347571, 0.04494468, 0.025355898, -0.0018958005, 0.012123419, 0.026603593, 0.017439978, -0.020531485, 0.011520367, -0.04131251, -0.016732952, -0.015540712, -0.016303191, 0.0011419859, 0.005919611, 0.0052715037, 0.029417833, -0.013073052, -0.024399335, -0.01144412, 0.009225998, -7.743929E-5, -0.009995409, -0.012359094, -0.009586443, 0.0123313675, 0.0067929965, -0.024094341, 0.032079577, -0.0046026018, 0.008907143, 0.012463069, -0.009371562, 0.011513435, -0.012615564, -0.0025681686, 0.026520412, -0.0125601115, -0.010792546, 0.01889562, 0.03731989, 0.031885494, -0.018313363, -0.02757402, -0.008886348, -0.009503263, -0.0068657785, 0.010390512, -0.0031296303, -0.0029372778, 0.0142098395, -0.014903002, -0.029085115, -0.0024832562, -0.017869739, -0.009842913, -0.0013499347, -0.00885169, -0.0109519735, 0.002001508, 0.022361435, 0.012539317, -8.049354E-4, 0.0049769096, 0.013516677, -0.036016744, -0.027754242, 0.0050739525, -0.011333213, 0.0052576405, 0.017842013, 0.00296847, -0.0056527434, 0.0049665123, 0.013904847, 0.023539811, -0.006515731, 0.0262986, -0.017301345, 0.0025109826, 0.01046676, 0.032051854, -0.004411982, 0.0073128687, -0.0067306114, 0.022319846, -0.028100824, 0.024066616, -0.025050906, -0.03501859, 0.007770356, -0.014847549, -0.0055210423, -0.015388216, -0.0013603321, -5.982862E-4, -0.0056666066, -0.017162712, 0.0153604895, 0.0087477155, -0.0069385604, -0.011769906, 0.029944638, -0.035739478, -0.004633794, -0.014376198, 0.0065573207, -0.028045371, -0.0103558535, -0.023609128, 0.031136878, 0.01774497, 0.009988477, -0.030027816, 0.034685872, 0.027185848, -2.0989838E-4, -0.025771797, 0.011970923, 0.0068449834, 0.030582346, 0.0074584326, 0.019311517, 0.030305082, -0.023553675, 0.03216276, -0.03102597, 0.007004411, -0.023927983, -0.013627582, 0.037680335, 0.037042625, -0.032994553, -0.031857766, -0.016178422, 0.0053546834, -0.0030221902, -0.0038921097, 0.019727416, 0.0071465094, 0.01770338, 0.025605436, 0.015415942, 0.015499122, 0.023969572, 0.0044709006, -0.0031608227, 0.0010510082, 0.003417293, -0.0127888555, 0.011049016, -0.006300851, -7.464498E-4, -0.017232029, 0.012345231, 0.02212576, 0.011846154, -0.018604493, -0.0054794527, 0.003992618, -0.007416843, 0.025813386, -0.019671964, 0.0049249223, -6.1994756E-4, 0.010570734, 0.020018544, -0.026062924, -0.04192249, -0.022929829, 0.01408507, -0.009267588, 0.04868776, 0.031247783, 3.6282744E-4, 0.008789306, 0.018188594, -0.024288427, 0.01480596, -0.015693208, -0.008158527, 0.0036460368, 0.012920557, -0.00825557, -0.63438267, -0.008990322, -0.011347077, -0.005805239, 0.008726921, 0.011423324, 0.002185196, 0.014903002, -0.024815232, -0.012802718, -0.02905739, 0.017717244, 0.029001934, -0.019048117, -0.02272188, -8.4782485E-4, 0.009420084, -0.002762254, 0.009842913, 0.004727371, -0.03135869, 0.02097511, 0.014459378, -0.0014928996, 0.017218167, -0.0019893774, -0.010896521, -0.021266237, 0.00885169, -0.010702435, -0.022375299, 0.02085034, 0.02017104, -0.0054066707, 0.03646037, 0.005770581, -0.009856776, 0.042310663, 0.034713596, 0.029778278, -0.025286581, -0.005732457, 0.011527299, -0.0021141467, -0.012795787, 0.023969572, 0.010203358, 0.0062557952, 0.0042317593, -0.01544367, -7.9583767E-4, -0.0059577352, -0.011069811, -0.0047481656, -0.011707521, 0.0017346401, 0.010695503, -0.023179367, 0.019921502, 0.004072332, -0.01285124, 0.023650717, 0.0065607866, 0.0107232295, 0.01038358, 0.009399288, -0.010563803, -0.0153604895, 0.0069766846, -0.029029662, 0.007222757, 0.005805239, -0.021890083, -0.008006032, 0.0056631407, 0.017897466, 0.037375342, 0.013689967, -0.004131251, 0.017315209, -0.00493532, -0.005285367, 0.0067722015, 0.006810325, 0.025882702, -0.009953819, -0.03914984, -0.012047171, 0.028863303, 6.160485E-4, 0.013163163, 0.0133849755, 0.017232029, 0.012969078, -0.006605842, 2.9502745E-4, -0.0071257143, -0.005815637, 0.034713596, -0.05872476, -0.011118333, -0.014126659, 0.023525948, -0.01706567, 0.007229689, 0.012719539, -0.014147455, -0.015041634, 0.031220056, -0.022416888, -0.0077842195, -4.0445784E-6, -0.02451024, 9.4790023E-4, -0.0071811676, -0.03174686, 0.018313363, 0.015138677, 0.0057740468, -0.009565648, -0.011790701, 0.012691813, 0.005545303, -0.015901158, 0.015776386, 0.037763514, -0.009122023, -3.0585812E-4, 0.004127785, 0.008997254, 0.008082279, 9.279718E-4, 0.03000009, -0.022902101, 0.01255318, -0.002540442, 0.012414548, -0.0011350543, 0.0127888555, -0.014445514, -0.018840168, -0.004318405, -0.011076743, -0.008983391, -0.015180267, -0.011901607, -0.04477832, 0.007895125, 7.434172E-4, -0.013606788, -0.012067966, 0.015374353, 5.935207E-4, 0.015637755, 2.458562E-4, 0.0023671512, -0.020656254, -0.020378988, -0.0024520638, -0.020545349, -2.7347442E-5, 0.019879911, -0.0035559256, -0.025577711, 0.026645182, 0.002145339, -0.009399288, 0.004834811, -0.008685331, -0.012885898, 0.015485259, -0.017412253, 0.0024728586, 0.013287933, -0.014265292, 0.032495476, -0.010411306, 0.027213575, 0.0093438355, -0.005105145, -0.008068416, -0.009558716, -0.026478823, -0.01348895, 0.017037943, 0.028308772, 0.021695998, -0.007881262, 0.0046753837, -0.0032595985, -0.014930729, -0.011132196, -0.01119458, -0.0053754784, 9.634964E-4, 0.030194176, 0.0048521403, -0.019630373, -0.0087477155, -0.0041485797, 0.040314354, 0.024316154, -0.007895125, -0.0012684881, 0.0064637437, -0.022070307, -0.007915921, -0.016012063, 0.00901805, -0.016829995, 0.028017644, -0.015388216, -0.015970472, 0.0024035424, -0.006214205, 0.01846586, -0.014542557, 0.0056735384, -0.021876222, -0.004290678, -0.009031912, -0.0020430975, 0.015097088, 0.014237566, -0.030305082, 0.0073475265, 0.0020327002, -0.017037943, 0.010536076, -0.006314714, -0.0055591664, 0.0034051626, 0.004540217, 0.0056874016, -0.007094522, -0.018826304, 0.031441867, -0.007597065, 0.040120266, -0.015138677, 0.0065469234, 0.014514831, 0.013800873, 0.0034380879, 0.0098013235, -0.018701535, 0.01825791, 0.02442706, -0.010993564, 0.053096276, -0.016525004, 0.036543548, -0.021460323, -0.0027951794, 0.017134987, -0.018881757, -0.0049041277, 0.0037985325, 0.022153486, 0.0122828465, 0.01791133, -0.013932575, 0.023553675, -2.408741E-4, 0.020628527, 0.0063459063, -0.017647928, 0.008574425, -0.008796237, -0.016538866, -0.014847549, -0.012116487, -5.350351E-4, 0.017606337, -0.004727371, -0.009718143, -0.011908539, 0.017564747, -8.967795E-4, 0.018909484, -0.015069361, -0.021238511, 0.012241256, 0.024011163, -0.0153604895, -0.024648873, 9.2710536E-5, 9.097763E-4, -0.046109196, -0.01127776, -0.0029996624, 0.02578566, -0.019034253, 0.0021349418, -0.017301345, -0.003663366, 0.012719539, -0.0057844445, 0.013565198, 0.03110915, 6.983616E-4, 0.008179322, -0.0090249805, -0.020670118, 0.024565693, -0.004727371, 0.01157582, 0.014078138, 8.387271E-4, -0.015568439, 0.008498177, 0.0047585634, -0.063216455, 0.010335059, -1.4155685E-4, -0.008983391, -0.008886348, -0.004990773, -0.001149784, -0.032606382, -0.012137283, -0.018618355, -0.030415988, 0.009073502, 0.09271747, 0.04791142, 0.006051312, 6.831987E-4, -0.0077564926, 0.0069454922, -0.014417788, -0.0016939169, -0.0014296485, -0.01825791, 0.019048117, -0.009732007, 0.0062107397, 0.01684386, 0.010875726, 7.226223E-4, -0.0041589774, -0.008560562, -0.008657604, -0.020060133, -0.021751452, -0.017093398, 0.02251393, 0.034408607, -0.0061379573, -0.0053304224, 0.019588783, 0.013669172, -2.0827379E-4, 0.016996354, -0.0022926363, 0.007860467, 0.016538866, 0.014459378, -0.011340145, -0.0046233963, 0.02829491, 0.010827204, 0.035379034, -0.011042085, -0.009752802, 0.0017519692, 0.011270829, -0.0069801505, 0.014237566, -0.028586037, -0.016608182, 0.018507449, 0.030138722, -0.024232974, 0.021890083, 0.0014296485, -0.014473241, -0.019561056, 0.016899312, 0.002166134, -0.017176576, -0.013634514, -0.013835532, 0.0076871766, -0.001430515, -0.03000009, 0.015901158, -0.016663635, 0.0034328892, -0.010577666, -0.017592475, -0.009537921, -0.004463969, 0.008456587, -0.0012095693, -0.022416888, -0.008373408, -0.004103524, 0.01195706, 0.0013715961, 0.02378935, -9.678287E-4, 0.010702435, 0.0075416123, -0.02693631, -0.02366458, 0.007326732, -0.026659045, -0.014175181, 0.008408066, 2.6101916E-4, 0.019353108, 0.0056874016, 0.014064275, 0.0043842555, -0.0017433047, -0.013710762, -0.014403925, 0.042948373, 0.008116937, 0.009219066, 0.015651617, 0.01663591, 0.007451501, 0.014903002, -0.024413196, -0.010757888, -0.0136137195, -0.019588783, -0.017980644, -0.0036217761, 0.018008372, -0.022541657, -0.020628527, -0.031857766, -0.018632218, 0.011111401, -0.011693658, 0.010362785, 0.0026184227, 0.013336454, 0.008442724, -0.023692308, 0.013274069, 0.008338749, -0.008505109, 0.022666426, 0.018756988, -0.0061760815, 0.02442706, -0.017218167, -0.025369762, 0.002651348, 0.038650762, 0.008546699, 0.017453842, -0.024787504, -0.017412253, -0.007018274, -0.02498159, 0.006598911, 0.0029857992, 0.0052784355, 0.00608597, -0.015305037, 0.0035264662, 0.021987127, 0.0269779, -0.0024330018, -0.029334653, 0.0024260702, -0.0136622405, 0.012920557, 0.02438547, -0.019214476, 0.013724625, -0.027615609, -0.0025317774, -0.016691362, -0.026478823, -0.03937165, -0.002207724, 0.033770896, 0.015776386, 0.045166492, -0.005313094, 0.026076788, 0.017162712, 0.019048117, 0.02204258, -0.01663591, -0.0074237743, -0.019200612, 0.006103299, 0.022902101, 0.018313363, 0.013031462, 0.0013551335, 0.010785614, 0.016774543, 0.019477878, 0.0072019626, 0.009988477, -0.025258856, -0.021515775, 0.012476932, -0.021072151, -0.006668227, -0.028239457, -0.016261602, 0.01579025, 0.00568047, -0.008726921, -0.021432597, 0.025355898, 0.0038990413, 0.0025300446, -0.019852186, 0.028530585, -0.030443715, -0.0037881352, -0.025244992, -0.0014088536, 0.0141197285, -0.014736643, 0.00982905, -0.005195256, -0.02208417, -0.0018958005, 0.024787504, -0.022846648, -0.02991691, 0.02072557, -0.005548769, -0.0029615385, -0.036793087, 0.0040792637, -0.016414097, -0.012546249, -8.697028E-5, -0.017939055, 0.00825557, -0.010459828, -0.030665526, 0.025355898, 0.0018750057, 0.0406748, 0.010702435, 0.042477023, 0.025078634, 0.009718143, -0.02132169, 0.014722779, 5.2463764E-4, -0.018438132, 0.037347615, 0.025397489, -0.019353108, 5.207386E-4, -0.0076317233, -0.00817239, -0.03102597, -0.03024963, 0.021793041, 0.028267182, 0.0203374, -0.034824505, 3.3878337E-4, -0.017800422, 0.01817473, -0.008304091, -0.007118783, 9.556983E-4, -0.039898455, -0.012608633, 0.0015076293, -0.0051571317, 0.010847999, 0.00978746, -0.034574963, 0.018244047, -0.021086015, -8.9937885E-4, -0.011298555, -0.0098013235, 0.035739478, -0.031136878, 0.0020829544, 0.0019651167, 0.0292792, -0.0039891526, 6.511399E-4, 0.00825557, 0.030998245, -0.010660845, 0.028267182, 0.006689022, -0.009524059, 0.018562902, 0.032772742, -0.007451501, -0.014514831, -0.018854031, 0.0025854977, 0.019879911, -0.010917315, 0.007888193, -0.0015084958, -0.013544403, -0.006706351, 0.0064637437, -0.012858172, 0.022416888, -0.033382725, 0.004495161, -0.0123313675, 0.007305937, 0.003098438, -0.0016263335, -0.0059577352, -0.012795787, 0.020198766, -0.005326957, -0.0036737632, -0.025605436, -0.030305082, -0.051127695, -0.023179367, -0.011215376, -0.0046545886, 0.007222757, -0.022319846, 0.002744925, -0.019727416, 0.0012000382, -0.013856326, 0.007493091, -0.0119154705, -0.0050323624, 0.016732952, -0.016164558, -0.0023792817, 0.0025456408, 0.022430751, 0.004727371, -0.008914075, -0.0028159742, 0.01540208, 0.019796733, -0.015623892, 0.01622001, 1.3646644E-5, -0.007285142, -1.9841788E-4, 0.024759779, 0.015166404, 0.012130351, -0.0027778503, -0.022846648, -0.01046676, -0.008768511, 0.026312463, -0.015055498, 0.0039475625, 0.031247783, 0.018230185, 0.047606427, 0.021543503, -0.013703831, -0.02238916, 0.005881487, 0.005493316, -0.020905793, -7.3951815E-4, 0.01706567, 0.0063043167, 0.012982941, 0.0013499347, -0.028156277, -0.0073198, -0.016122969, -0.020198766, -0.0040550027, 0.025134087, 0.035989016, 0.021765314, 0.007000945, 0.01566548, 0.009558716, -6.563386E-4, -0.024260702, -0.010120179, 0.027851285, 0.005611154, 0.02442706, 0.035850383, -0.040037088, -0.004612999, 1.9354408E-4, 0.015679345, 0.0054863845, 0.018285638, -0.0114579825, -0.022028716, -0.0037812036, 0.0054447944, -0.013932575, -0.017467706, 0.027282892, -0.040785704, -0.005718594, 9.253725E-4, 0.020891929, 0.0042837467, 0.013530539, 0.0068796417, -0.012227394, -0.018479723, -0.0033115856, -0.020323535, 0.0062869876, -0.025536122, 0.015097088, 0.0089764595, 0.009295315, 0.0262986, 0.02021263, -0.012719539, -0.0010232817, -0.020891929, -0.005323491, -0.023220956, 1.6874184E-4, 0.0057844445, 0.024537966, -0.039011206, 0.011118333, -0.020198766, 9.998875E-4, -0.0056908675, -0.0023758158, -0.010882657, 0.032523204, 0.0013204754, -0.06377099, -2.2679423E-4, -0.011187649, -0.0050739525, 5.2767026E-4, -0.009912229, -0.012830446, -0.030194176, -0.01778656, 0.004599136, -0.013121573, -0.011471846, -0.010009272, -0.008948733, -0.008366476, 0.0037118872, 0.19552739, -0.021668272, 0.01595661, 0.047939144, -0.011721385, 0.010612324, 0.030942792, 0.017800422, -0.004668452, 0.018396543, -0.003119233, 0.010924247, 0.0057775127, 0.0014279155, 0.0016462619, -0.010189494, -0.022500068, -0.012969078, -0.008276365, -0.030277355, -0.023401178, 0.0019477877, -0.0074653644, -0.020781023, 0.0066231713, -0.0042629517, -0.0023307602, 0.0036183102, 0.009468605, 0.007042535, -0.015346627, -0.017731106, -0.0033410452, 0.007978305, -0.026853131, -0.0074445694, -0.0034900752, 0.013003736, 0.008130801, 0.00859522, -0.012275915, -0.0072435522, -0.0021384074, -0.013676104, -0.0023671512, 0.023720033, -0.028073097, -1.9506038E-4, -0.021335553, 0.0016939169, -0.047384616, 0.0017069136, 0.023470495, 0.019089706, -6.442083E-4, -0.010896521, 0.0062107397, 0.006855381, -0.012567043, -0.009052708, 0.011977855, 0.024274565, -0.031081423, 0.01595661, 3.1733862E-4, 0.019644236, -0.022818923, -1.11122674E-4, 0.012705675, -0.031136878, -0.009773597, -0.015429806, 6.541725E-4, 0.0041485797, -0.015623892, -0.01247, 0.010140973, 0.0016315321, 0.017717244, 0.02872467, -0.028197866, -0.015000045, 0.01255318, -0.00653306, -0.017647928, -0.013052257, 0.010841068, -0.024524104, 0.0035281992, -0.005642346, -0.011624342, -0.010224152, -0.014008822, 0.006203808, -0.010140973, -0.0075901337, 0.04477832, 0.018784715, -0.013516677, -0.009697349, -0.027227439, 0.039343927, 0.024482513, -0.003548994, -0.027781969, -0.019824458, -4.5012266E-4, 0.013877121, 0.04303155, -0.006293919, -0.014022686, -0.0212801, 0.0043045417, -0.02327641, 0.008782374, 0.03371544, 0.0051813927, -0.012948283, 0.03718126, -0.022444615, -0.014653464, -0.018230185, 0.0036252418, 0.0024278031, -0.005600756, -0.022416888, -0.011790701, -0.00553144, -0.0049803755, -0.02821173, 0.017176576, -0.023137778, 0.014126659, -0.009641896, -0.0018524778, 0.0134334965, 0.029861458, -0.0023775487, 0.003247468, -0.0022527794, 0.0037985325, -0.022361435, 0.003287325, 0.011146059, 8.616881E-4, -0.03088734, 0.0035767206, -0.0041416483, -0.019311517, -0.030415988, -0.020184902, -6.689022E-4, 0.0011203245, 0.011055948, 0.040037088, -0.00842886, -0.016649773, -0.03485223, -0.017079534, 0.04186704, -0.05162677, 0.022139622, 0.015762525, 0.0053754784, -0.03080416, -0.0028887563, -0.17889148, 0.01685772, 0.021044426, -0.034408607, 0.019339245, 0.01064005, 0.028156277, 0.010577666, 0.0028073096, -0.018438132, 0.027823558, 0.009939956, -0.023040734, -0.004820948, 0.0038435883, 0.023498222, -0.014064275, 0.040369805, 0.035268128, -0.0073683215, 0.022818923, -0.0047481656, -0.0196581, -0.0012840843, 0.0112292385, -0.0033202502, 0.016400235, -0.007340595, -0.001157582, 0.002446865, -0.0315805, -0.016927037, 0.018285638, -0.0023030336, -0.001270221, 0.011347077, -0.019297656, -0.010224152, -9.643629E-4, -0.0016246005, 0.022832785, 0.023304136, 0.021016698, 0.00534082, 0.016414097, 0.011721385, 0.028613765, -0.011464914, 0.0035316648, -0.010965837, -0.009475537, -0.03476905, 0.0352404, -0.007721835, 0.014064275, 0.027185848, 0.0024936534, 0.004710042, 0.014175181, -0.004086195, -0.027934464, -0.008532835, 0.0056284824, -0.017453842, -0.0065469234, -0.007770356, -0.014930729, 0.009288383, -0.041506592, 0.01834109, -0.020254219, 0.018549038, 0.012047171, 0.011187649, 0.011506504, -0.011042085, -0.035295855, 0.0047862898, -0.0077980827, 0.014376198, -0.013218616, 0.039011206, 0.0055799615, 0.007305937, 0.008858622, -0.0016913174, 0.00315909, 1.8607092E-4, 0.0017173111, -0.011187649, -1.21086894E-4, -0.02238916, -0.035101768, 0.0040446054, -0.0051536663, 0.0021037494, -0.013960301, -0.0038539856, 0.010189494, -0.014133591, -0.004425845, -0.01893721, -0.007597065, 0.025979744, 0.012442274, 0.00863681, 0.007132646, 0.018604493, 0.020919656, -0.017634064, -0.01183229, 0.009323041, 0.017301345, 0.012573975, -0.009031912, 0.017578611, -0.011471846, -0.01770338, 8.742517E-4, 0.015138677, 0.06815177, 0.0066924877, -0.007583202, -0.0027154656, -0.010730161, 0.0063667013, -0.07724607, 0.013031462, 0.010529145, 0.044417877, -0.028835576, 0.030194176, -0.005028897, 0.033216365, -0.021848494, 0.028364226, -1.9430222E-4, -0.025647027, -7.152575E-4, -0.0071673044, -0.0013152766, -0.01378701, -0.026367916, -0.016122969, -0.012802718, 0.023720033, -0.0032180087, -0.0064880047, -0.0073821847, -0.019893775, -0.014542557, 0.01289283, -0.032356843, 0.030693254, 0.0043426654, 0.0026981365, 0.003046451, -0.021307828, 0.0076525183, -0.041340236, -0.020891929, -0.029445559, -0.014861412, -0.024316154, 0.011582752, -0.04816096, 0.009551785, 0.018562902, 0.0072643473, -0.012761129, -0.0041589774, 4.0333415E-4, -0.033299547, 0.029306928, -0.009558716, -0.019172886, -0.008622946, -0.013606788, -0.016705226, -0.0055591664, 0.02216735, 0.022111896, 0.026229283, 0.007094522, -0.022999145, -0.019477878, -0.0069524236, -0.014133591, -0.028891029, 0.018479723, 0.0093438355, 0.021682136, -0.0079991, -0.010397444, 0.017717244, -0.017800422, -0.025633164, 0.026284738, -0.039122112, -0.005320025, -0.028447405, -0.009198272, -0.025965882, -0.032079577, 0.03906666, -0.038013052, -0.001476437, -0.029750552, 0.0069004367, -0.03596129, 0.013454292, 0.013391907, 0.014958455, 0.024246838, 2.2040414E-4, -0.04477832, -0.01817473, 0.025605436, -0.0120055815, -0.009634964, -0.016261602, 0.018451996, 0.0068865735, -0.013197822, -0.00987064, 0.0043634605, -0.010778683, -0.00534082, -0.07735698, 0.03238457, -0.005732457, -0.0049387855, -0.0141197285, -9.323041E-4, 0.010411306, -0.002748391, -0.0109519735, 0.019117432, -0.0018368816, 0.01123617, 0.0024503309, -0.0105845975, -0.0059473375, 0.0015856101, 0.014736643, -0.008110005, -0.004034208, 0.0074861594, -0.015817977, 0.014695053, 0.028419679, 0.002500585, 0.009350767, 0.018840168, 0.01642796, 0.0063459063, -0.00978746, -0.0014591079, 0.03371544, -0.012546249, 9.0717693E-4, -0.009281451, -0.013177027, -0.033992708, 0.0052922987, 0.0024382004, 0.010702435, 0.0020482964, -0.0038019984, -0.03371544, -0.011055948, 0.0043461313, -0.018729262, 0.02251393, -0.018964937, 0.013274069, 0.0089764595, 0.01544367, 0.012033308, 0.004931854, -0.0042352253, -0.008837827, 0.027033353, -0.0095725795, 0.051321782, 0.009835982, 0.004221362, -0.012664086, 0.020254219, 0.011312419, 0.021349417, -0.028946482, 0.0064880047, 0.001224299, 0.007195031, -0.010785614, 0.0104459645, -0.032772742, 0.0042317593, 0.005715128, 0.0036772292, 0.038872574, 0.0032284062, 0.0065850476, 0.016483413, 0.0062869876, -0.006051312, -0.006948958, 0.031691406, -0.013301796, -0.015623892, 0.011451051, -0.010986632, 0.019796733, -0.0036599, 0.0119154705, 0.011028222, 0.01021029, -0.0060270512, 0.01698249, 0.0123313675, -5.7012646E-4, 0.015263447, 0.01064005, -0.030665526, -0.006106765, 0.009891435, 0.027601747, 0.0083803395, 0.0012927488, -0.010750957, -0.00978746, -0.03454724, 0.007791151, -0.01646955, -0.016039789, 0.016400235, 0.005132871, 0.02012945, 0.010140973, -0.026354054, 0.0035074041, -0.028475132, 0.023345726, -0.011645136, -0.012012513, -0.004096593, 0.037708063, 0.0012277648, 0.0012346964, 0.017204303, -0.011485709, 0.056839358, 0.014189044, 0.012962146, -0.022610974, 0.0030672457, -0.007811946, 0.0134334965, -0.0017077801, -0.017606337, 0.01387019, 0.0034762118, 0.0015102286, 0.003269996, 0.032412298, -0.029001934, 0.073807985, 0.03102597, -0.008796237, 0.019935364, -0.007493091, 0.004089661, 0.005753252, 0.015707072, -0.026451096, -0.021987127, -0.008602152, -0.010619256, -0.010965837, -0.03476905, -6.01752E-4, 0.0046615205, 0.020406716, 0.016330918, -0.014036548, -0.020143313, -0.018271774, -0.0019547194, 0.020656254, 0.0042317593, -1.4491436E-4, 7.152575E-4, 0.02757402, -0.019117432, -0.0022943693, -0.036321737, 0.0017796957, -0.02280506, 3.9510283E-4, -0.009690417, 0.02638178, -0.004217896, -0.009503263, 0.0027847819, 0.018133141, 0.0112292385, -0.018881757, 2.2571116E-4, -0.027227439, -0.023220956, 0.021086015, 0.0094824685, -0.020073997, -0.023830941, -0.020268083 ], + "id" : "1e118d9b-ffb2-45f5-ae86-d5048509d9f4", + "metadata" : { + "source" : "movies.csv" + } + }, + "63ef1c83-e0d2-4c1f-9744-cb4207d60d5d" : { + "text" : "Smiff-Shane Steyn-John Lebar-Anil Biltoo-Giannina Facio-James Embree-Robin Atkin Downes-Louisa Staples-Annie Penn-Daniel James,android-space-alien-creature-spin off-creation-emergency surgery-stasis-archeological dig-god complex-cave drawing-prometheus-genetic mutation-origins of life-2090s,/omy5CiDMQnGqQUEJ9gNLOGPZQFW.jpg,/hO97RyNjBIMfzfFpUjNhsm4zImh.jpg,59967-348-679-37724-126889-13475-49026-75612-41154-49538-8077-8078-54138-56292-1930-49051-68726-70160-64635-49521-14161\r\n675353,Sonic the Hedgehog 2,Action-Adventure-Family-Comedy,en,After settling in Green Hills Sonic is eager to prove he has what it takes to be a true hero. His test comes when Dr. Robotnik returns this time with a new partner Knuckles in search for an emerald that has the power to destroy civilizations. Sonic teams up with his own sidekick Tails and together they embark on a globe-trotting journey to find the emerald before it falls into the wrong hands.,297.805,Original Film-Blur Studio-Marza Animation Planet-Paramount-SEGA,4/8/22,110000000,402656846,122,Released,Welcome to the next level.,7.599,3716,James Marsden-Ben Schwartz-Tika Sumpter-Natasha Rothwell-Adam Pally-Shemar Moore-Colleen O'Shaughnessey-Lee Majdoub-Idris Elba-Jim Carrey-Melody Nosipho Niemann-Tom Butler-Brad Kalilimoku-Krista Alvarez-Donna Jay Fulks-Scott Patey-Leif Havdale-Johnson Phan-Colby Chartrand-Kevin Fortin-Jeff Sanca-Sook Hexamer-Maria Ameerali-Kyle Riefsnyder-Parker Rowell-Laferriere-Tammy Nera-Gerald Paetz-Corry Glass-David Jacox-Mike Mitchell-Heath Stevenson-Doug Chapman-Rhys Williams-Nilo Ghajar-Don Lew-Elizabeth Bowen-Vladimir Ruzich-Shay Kuebler-Keiran Bohay-Kevin Mylrea-Jared Khalifa-Aiden Cass-Andrew Kyrzyk-Stanislav Galimkhanov-Shaun Magee-Alex Bogomolov-Shawn Stewart-Barry Nerling-Simon Chin-Vladimir Raiman-Yvetta Fisher-Adrian Hein-Jess Lundgren-Steve Chang-Ted Barba-Brennan Dyson-Saida Dyson-Katie Wright Pere-Ha'a Keaulana-Quinn Early-Cheryl Lewis-Angela Meryl-Ashlei Tave-Mariah Dyson-Tavita Woodard-Ernie Jackson-Rob 'Sluggo' Boyce-Robert Zen Humpage-Fraser Corbett-Marcus Aurelio-Jason Triplett-Eli Olson-Mike Rufino-Nito Larioza-Chad Keaulana-Sarah Surh-Paul Lazenby,sequel-based on video game-duringcreditsstinger-hedgehog-live action and animation,/6DrHO1jr3qVrViUO6s6kFiAGM7.jpg,/yEQqrW61rwNuVRHTjgHOAU4dXNE.", + "embedding" : [ 0.017621195, -0.023659226, -0.014732249, -0.028314399, -0.024439652, 0.032942187, 0.003700177, -0.008933823, -0.022139449, -0.031792086, 0.037378293, 0.017319977, 0.028862065, 0.001569409, 0.0032295254, -0.0031816044, 0.019332655, -0.009591023, 0.014102432, -0.020003548, 0.0031473753, 0.020879814, -0.021687623, 0.005993534, 0.0035187623, 0.01343154, 0.023152635, -0.018689146, -0.018716529, -0.010727433, 0.016717544, -0.008988589, -0.009091277, -0.026233261, -0.029847866, -0.00516861, 0.016635394, -0.014841783, 0.026602937, -0.01005654, 0.0036762166, 0.008748985, -0.016813384, -0.011788538, -0.015991883, 0.013164552, 0.003953473, -0.010823274, -0.010289298, 0.020181539, 0.026972612, 0.0288073, -0.015362067, -0.016566934, 0.005750506, -0.012274593, -0.019264197, 0.0033818453, 0.0027896801, 0.02335801, 0.008584685, -0.004525101, -0.017443202, -0.015485292, -0.013588994, -0.0071949787, 0.0020725783, -0.01726521, -0.009940161, 0.007954867, 0.031819467, 0.0054321745, -0.010193457, 7.8641594E-4, 0.0074071996, -0.03948681, -0.02752028, -0.019483263, -0.0068218806, 7.5603754E-4, 0.0038405168, -0.0021889575, 0.005603321, -0.0038987063, 0.01725152, 0.006404284, -0.0074482746, 0.012527889, -0.034968555, 0.025589753, 0.0159645, 0.055670377, -0.016786002, -0.0015531501, -5.7804567E-4, 0.025014702, -0.029491883, 0.009152889, -0.004247844, -0.04803042, 5.2841334E-4, -0.012144522, -0.0038884375, -0.008577839, 7.859881E-4, -0.003741252, 0.0029351544, 9.1563124E-4, 0.018921904, 0.0063871695, 0.010884887, 1.4793435E-4, 0.013123477, -0.044717032, -5.8574724E-4, -0.028423931, 0.031655166, -0.0033082527, -0.014745941, -0.016799694, 0.019647563, 0.028615614, 0.0066712718, -0.03543407, 0.03639249, 0.03956896, -0.025261153, -0.011843305, 0.001731142, -0.013855982, 0.037296142, -0.008242392, 0.018867137, 0.011247717, -0.016457401, 0.03491379, -0.03020385, -9.079297E-4, -0.009057048, -0.030587217, 0.033572003, 0.025836203, -0.009638944, -0.020975657, -0.03354462, 0.001654982, 0.01888083, -0.013260393, 0.0038781688, -0.0018141478, 0.009618406, 0.005842925, 0.0019733137, 0.01306871, 0.021619165, 0.0019887167, -0.011001267, 0.0052610287, -2.4837567E-4, -0.014389957, 0.0076878793, -0.0062673674, -0.006325557, -0.017621195, -6.216879E-4, 0.014745941, 0.0098648565, -0.0013580436, -0.010186611, -0.0011714945, -0.007092291, 0.02500101, -0.032805268, 0.026739854, -0.01741582, 0.0073729707, -0.009741631, 7.645949E-4, -0.029245432, -0.029902633, 0.008721601, 0.0010225974, 0.022536509, 0.027753038, -0.00663362, 0.01152155, 0.043101415, -0.021030422, 0.019264197, -0.006140719, 0.017374745, 0.027698273, 0.015540059, -1.3830738E-4, -0.6405516, -0.019852938, 0.009686865, -0.018949287, 0.013582149, 0.018346854, -0.012322513, -0.008139704, -0.017484277, -0.0018449541, -0.038446244, 0.011733771, 0.0320933, -0.013869674, -0.013137168, -0.027643505, 0.018045636, -0.01254158, 0.022166833, -0.0019921397, -0.013691681, 0.010029157, 0.012082909, -0.0055245934, 0.0044942945, -7.406344E-4, -0.007865871, -0.025685595, 0.006527509, 0.0044497964, -0.03425659, 0.012760648, 0.012240363, -0.008933823, 0.0462505, -0.005545131, -0.007790567, 0.05120689, 0.030669367, 0.023426468, -0.03157302, -0.0070785997, 0.0036899082, 0.011768, -0.0153346835, 0.018661762, 0.018990362, 0.0017097488, -0.0039466275, -0.0023549693, -0.0082629295, 0.0022882223, 0.009015973, -0.0012373858, 0.0032449285, -0.0022146294, 0.019894013, -0.029245432, 0.0127948765, 0.008940668, -0.009467798, 0.02539807, -0.011713234, 0.003202142, -0.0051241117, 0.03672109, -0.0140476655, -0.011131337, 0.008002788, -0.025904661, 0.006448782, 0.022153141, -0.007694725, -0.0069485283, -0.007872717, 0.021098882, 0.011939147, 0.0066438885, 0.003487956, 0.016786002, 0.008098629, -0.0030891858, -0.0045764446, 0.00879006, 0.036365107, -0.00378575, -0.034886405, 0.009858011, 0.027314905, -0.0070717535, 0.0153757585, 0.009495181, 0.009988082, -0.008043863, -0.012555272, 0.0010859215, -0.01306871, 0.013089248, 0.013588994, -0.0636937, -0.007989096, -0.007386662, 0.03584482, -0.00846146, 0.0023789296, -4.385617E-4, -0.022837725, -5.2584615E-4, 0.016977685, -0.02360446, -0.0317647, -0.013205627, -0.011014958, 0.0018466655, -0.015841275, -0.03321602, 0.004778397, 0.02345385, -0.009508873, -0.0065103946, 0.007831642, 8.5658586E-4, -9.318901E-4, -0.0073798164, -0.004593559, 0.029793099, -0.005295258, -0.01050152, 0.0013606108, 0.01692292, 0.010857504, -0.0016592607, 0.03433874, -0.020208923, 0.003662525, 0.0047133616, 0.027123222, 0.004217038, 0.0036796394, -0.018031945, -0.0069451057, -0.004247844, -0.013547919, -0.018278396, -0.014718558, -0.020852432, -0.024247969, -0.010378295, 0.0035084935, -0.010111307, -0.003291138, 0.015498984, 0.0039295126, 0.029902633, 0.0048571243, 0.00956364, -0.031162268, -0.017128294, 6.828726E-4, -0.020332146, 0.011836459, 0.025274845, -0.01693661, -0.028862065, 0.0044087213, 0.005076191, -0.018812371, 4.0090954E-4, 0.003392114, -0.027835188, 0.014951317, -0.002301914, 0.0024867516, 0.014184582, -0.02482302, 0.018360546, -0.013561611, 0.0037583667, -0.024330119, -0.005678625, -0.0019510647, -0.009912778, -0.01058367, -0.0060106483, 0.032558817, 0.0054766727, 0.030997967, -0.013643761, 0.0032209682, 0.011172412, 0.002149594, -0.016347868, 0.008974898, -0.0110765705, -0.019058822, 0.019264197, 0.0065754303, 0.0054047913, -0.0089680515, 0.006380324, 0.048304252, 0.017607503, -0.0161288, 5.682048E-4, 0.014978699, -0.036940157, 0.004778397, -0.049344823, 0.0143214995, -0.0070067183, 0.019195737, -0.016169876, -0.014691174, 0.013061864, 0.020332146, 0.002082847, -0.021482248, -8.0952066E-4, -0.00997439, -0.0021872462, 0.009173427, -0.003782327, 0.016977685, 0.0033082527, -0.005195993, 0.031901617, -0.0015180652, -0.0125210425, -0.01270588, -0.008762676, 2.8517205E-4, 0.022057299, 0.0068150344, -0.0031114346, 0.018374236, 0.005558823, 0.03483164, -0.007523579, 0.05000202, -0.0069416827, -0.008632605, 0.019305272, 0.029793099, -6.319567E-4, 0.010700049, 0.004206769, 0.0288073, 0.008338234, -0.012397818, 0.041896544, -0.024302736, 0.0114394, -0.020811357, 0.0051857242, 0.025452835, -0.00781795, -0.0032106994, 0.017648578, 0.030286, 0.009597869, 0.014773324, -0.014978699, 0.022659734, 0.004744168, 0.008009634, 0.0026133996, -0.026849387, 0.005640973, 0.003465707, -0.024206894, -0.031627785, 0.0030241502, -0.026479712, 0.0072976663, -0.006150988, -0.017867645, -0.003417786, 0.010344066, 0.002409736, 0.021715008, 0.010652129, -0.03639249, 0.009063893, 0.024398576, -0.009556794, -0.00425469, 0.0032877151, -0.024398576, -0.020715514, -0.0023703724, 0.0015103637, 0.036200806, -0.0019801594, 0.017456895, -0.022016224, -0.007968559, 0.003465707, -0.015594825, 0.025343303, 0.023152635, 0.0069485283, 0.016005576, -7.0084294E-4, 0.0010448465, 0.031052735, -0.016388943, -0.0038952834, -0.0094746435, 0.00577789, -0.011042342, 0.0060038026, -0.022262674, -0.024891477, 0.0012159925, 0.0045422153, -0.013534227, 0.007646804, -0.0045045633, 0.017881336, -0.015896043, -0.022988334, -0.026315412, -0.027533973, 0.0054732496, 0.06911561, 0.031463485, 0.013725911, 0.003696754, 0.005815542, 6.9870363E-4, -0.004124619, -0.007660496, 0.0048571243, -0.020427989, 0.006150988, 0.013623224, 0.00892013, 0.0037686354, 0.014718558, -1.772431E-4, -0.007105983, 0.004569599, 0.009782706, -0.008194472, -0.033133868, -0.011035495, 0.003700177, 0.03384584, -0.0035564143, -0.012829105, 0.012274593, 0.009762169, -0.010357757, 0.004302611, -0.007605729, -0.0053431788, -0.008447767, 0.018415311, -0.009310343, 0.006205755, 0.023234785, 0.019551722, 0.006198909, -0.0015711205, 0.0010474137, -0.0022847995, 0.002659609, 0.0015959366, 0.0059182295, -0.019305272, -0.018661762, 0.01929158, 0.01799087, -0.042115614, 0.02491886, 0.006931414, -2.8923678E-4, -0.014335191, 0.0129523305, 6.636187E-4, -0.015293608, -0.006195486, -0.025507603, 0.0038542084, 0.0013280931, -0.017771803, 4.385617E-4, -0.01570436, -0.00541506, -0.010227686, -0.009638944, 0.004918737, -0.015896043, 0.0031473753, 0.0065993904, -0.01823732, -0.034968555, -9.558505E-4, 0.009248731, 0.0032124107, 0.021851923, -0.009132352, -0.001061961, -0.0034982248, -0.02888945, -0.01555375, 0.0144858, -0.018429004, -0.002276242, 0.015238842, -0.0093582645, 0.018346854, -0.008714755, 0.004836587, 0.020948272, -6.9699215E-4, -0.022331133, -0.019565413, 0.03866531, 0.0072771288, 0.019483263, 0.010734279, 0.0017268633, 0.0066301967, 0.011610546, -0.03102535, -0.013253548, 0.0013289489, -0.0076673417, -0.011918609, 1.4312087E-4, 0.014348882, -0.01759381, -0.029519266, -0.01384229, -0.0071539036, 0.00892013, -0.009365111, 0.018689146, 0.0030429764, 0.014184582, 0.0066301967, -0.0113914795, 0.010884887, 0.016553244, -0.016566934, 0.0025021548, 0.0100633865, -0.010953345, 0.036912773, -0.010090769, -0.023084175, -0.01135725, 0.027342288, 0.0048571243, 0.019811863, -0.021235798, -0.008468305, -0.033106487, -0.010878041, 0.011213487, -0.007523579, 0.0036317187, -0.011815921, -0.00875583, 0.0044395276, 0.0026835697, 0.010323528, 0.002565479, -0.036748473, 0.009413031, -0.0076673417, 0.012034988, 0.016512169, -0.0015052293, 0.012562118, -0.02564452, 5.677769E-4, -0.007646804, -0.032860037, -0.039678495, 0.0039466275, 0.024042593, 0.024152126, 0.04340263, 7.0212653E-4, 0.021112572, 0.022029916, 0.022002533, 0.02426166, -0.008933823, -0.0042273067, -0.03151825, 0.009680019, 0.021276873, 0.01782657, 0.011056033, 0.011199796, 0.003734406, 0.019579105, 0.008666835, -5.7932927E-4, 0.010446753, -0.025685595, -0.026438637, 0.0037275604, -0.01799087, -0.0011988779, -0.028670382, -0.022728192, 0.025945736, -0.0058737313, -0.016553244, -0.0016909227, 0.014704866, 0.0028102177, 0.023809835, 1.3231726E-4, 0.0145542575, -0.03997971, -0.010768508, -0.02328955, -6.841562E-4, -0.0035221851, -0.019305272, 0.026068961, -0.019894013, -0.016388943, 0.007468812, 0.03020385, -0.029793099, -0.014814399, 0.014280424, -0.0022454357, -0.005849771, -0.029163282, 0.002425139, -0.037077073, -0.032120686, 0.0059558814, 0.0026904154, 0.009303498, -0.017730728, -0.025932046, 0.024425961, -0.011658467, 0.04167748, 0.010316682, 0.038227174, 0.032942187, 0.02564452, -0.0291359, 0.015813893, -0.008947514, -0.010131844, 0.042362064, 0.029354965, -0.012123984, -0.014253041, 0.0023618152, 0.0044052987, -0.029930016, -0.039103445, 0.020825047, 0.032148067, 0.021290565, -0.032750502, -0.003963742, -0.022782959, 0.006544624, 0.007058062, 0.0074345833, -0.0041451566, -0.020729207, -0.011768, 0.016827077, -0.0089680515, 0.0225502, -0.010261916, -0.020236306, 0.00616468, -0.022139449, 0.0066918093, 0.00516861, -0.0073318956, 0.03907606, -0.0037754811, 0.0066301967, 0.0027349135, 0.008153397, 0.006205755, 0.0013494864, 0.010631591, 0.028916832, -0.02319371, 0.0020794242, 0.00846146, -0.00262538, 0.0050453846, 0.014458416, -0.022098374, -0.012712726, -0.029984783, 0.00193395, 0.024494419, 0.005158341, 0.008885901, -0.0076262667, -0.016224643, -0.008194472, 0.024576569, -0.002142748, 0.013855982, -0.049509123, 0.01799087, -0.010131844, 0.0046791323, -0.020414297, 0.010843812, -8.779791E-4, 0.0037617895, 0.025343303, 0.005106997, 0.006486434, -0.024521802, -0.008742139, -0.041102428, -0.024590261, -0.014444725, -0.007400354, 0.0031662013, -0.008091784, -1.1670019E-4, -0.004429259, -0.016238334, -0.007776875, -0.0070067183, -0.011487321, 0.00423073, 0.018292086, -0.015348375, -0.020729207, -0.010309836, 0.028067948, -0.0073729707, -0.009899086, -0.006883493, 0.015827583, 0.033572003, -0.021427482, 7.273706E-4, 0.00870791, -0.03157302, -0.021550708, 0.013445231, 0.023659226, 0.026548171, 0.011761155, -0.03442089, -0.006537778, -0.0154716, 0.018661762, -0.020729207, -0.0011150163, 0.0056923167, 0.016813384, 0.031709936, 0.022372209, 0.0022043607, -0.026479712, -0.0030720711, -0.013061864, -0.040992893, 0.0065891217, 0.0065617384, 0.008550455, 0.014718558, 0.0032517745, -0.020318456, 0.0038576312, -0.008180779, -0.025425453, -0.0045216777, 0.026301721, 0.04852332, 0.010220841, 0.0011911764, 0.020961965, -7.016987E-4, 0.009597869, -6.148421E-4, -0.0028615615, 0.024973627, 0.014513182, 0.008297159, 0.034557804, -0.021975148, -0.0014444725, 0.001132131, 0.019360038, 0.012370435, 0.034064904, -0.031983767, 0.0056512416, -0.007954867, 0.001518921, 0.007188133, -0.011056033, 0.009789553, -0.036529407, -0.0045387927, 0.008016479, 0.009413031, -0.013808061, 0.010816429, 0.0067739594, 0.004877662, 0.0013323717, 0.0033459046, -0.014910242, 0.012507351, -0.032449286, 0.025096852, -0.0074756583, -0.0021889575, 0.014431032, 0.02286511, -0.006363209, -0.0018124364, -0.007509887, 0.006192063, -0.024603952, -0.0075920373, -0.014526875, 0.022331133, -0.015827583, 0.014157199, -0.026110036, -0.0020657324, -0.010186611, -0.0025757477, -0.002796526, 0.029081132, -0.0057436605, -0.043785997, -0.012849643, -0.018264703, -3.3972485E-4, 1.2397389E-4, 9.686865E-4, -0.019674947, -0.0022420129, 0.009214502, -0.0014222234, -0.023097867, -0.020619672, 0.0077221086, -0.006849264, -0.028095331, 0.0117816925, 0.19464095, -6.3837465E-4, 0.0071812873, 0.038446244, -0.0041896547, -0.023426468, 0.034064904, 0.005682048, -0.0016729523, 0.02589097, 0.004470334, 0.012473122, 0.0044052987, -0.0024901747, 0.01204868, -0.016019268, -0.026657704, -0.004165694, -0.0048400094, -0.02678093, -0.0027640082, 0.0016087726, -0.020797664, -0.008776368, 0.0066918093, 0.010248223, -0.024891477, 0.0066986554, 0.026767237, 0.0012690477, -0.020304764, -0.02532961, 0.009789553, 0.005202839, -0.020742897, -0.016402634, 0.0057813125, 0.02532961, 0.01749797, 0.015115617, -0.0053945226, -0.0035598374, -0.0027828342, -0.020482756, -0.013000252, 0.015279917, -0.02531592, -0.013315161, -0.026452329, 0.0073729707, -0.0462505, -0.010652129, 0.021947766, 0.022344824, 0.0015711205, -0.013630069, 0.013144014, -8.796906E-4, -0.0072771288, -1.6697434E-4, 0.022317441, 0.043594316, -0.023221092, 7.859881E-4, -0.004607251, 0.01343154, -0.030587217, 7.6427394E-5, 0.022810342, -0.020647056, -0.005634127, -0.040253546, -0.004138311, 0.008639451, -0.027328597, -0.026589246, 0.004812626, 0.014540566, 0.012438892, 0.03086105, -0.032695737, -0.0046791323, -0.012267747, -7.7957014E-4, -0.01766227, -0.0291359, 0.022591274, -0.019318962, -0.0018432427, -0.01185015, -0.01994878, -0.017470585, 0.0024781944, -0.0049290056, -0.0052986806, -0.0023601037, 0.029190665, 0.021537015, -0.0026373602, -0.0039432044, -0.053014193, 0.027643505, 0.0063392487, -0.0047202073, -0.024535494, -0.026288029, -0.01571805, 0.0018090134, 0.011815921, -0.01083012, -0.013191936, -0.015608517, -0.009098123, -0.024247969, 0.004039046, 0.023399085, -0.0012442316, -0.005593052, 0.03201115, -0.011412017, -0.0020948274, 0.0034930904, 0.0064008613, 0.008906439, -0.0011560913, -0.042471595, -0.0324219, 0.0016121955, -0.0010953345, -0.032640968, 0.01986663, -0.022988334, 0.014280424, 0.006541201, -0.0033441933, 0.0018843177, 0.01621095, -0.006893762, 0.009460952, -0.013150861, -6.486434E-4, 0.010097615, -0.0023104714, -5.3183624E-4, 0.0073387413, -0.05038539, 0.02319371, 0.020058313, -0.013657453, -0.03151825, -0.017881336, -0.006311865, 0.007920638, 0.0078042587, 0.021044115, -0.0052199536, -0.0019664678, -0.03559837, -0.015047158, 0.029820483, -0.048988838, 0.019496955, 0.0025552101, -0.0040630065, -0.025836203, -0.010234532, -0.17645839, 0.004220461, 0.008906439, -0.03809026, 0.02532961, 0.02490517, 0.014609025, 0.011425708, 0.0075851916, -0.0086531425, 0.026794622, 0.01767596, -0.045949284, -0.024343811, 0.007619421, 0.02793103, -0.010398832, 0.033517238, 0.01701876, -0.0115078585, 0.032640968, -0.012746955, -0.007865871, -0.005319218, 0.0043642237, 0.0058292337, 0.01741582, 0.018346854, 0.010460445, 0.0026681665, -0.033900604, -0.01700507, -0.0030207273, 0.009166581, -0.011288792, -0.008434076, -0.0060791066, -0.0072223623, -0.010275607, 0.009351418, 0.023809835, 0.020222614, 0.012363588, -9.344573E-4, 0.021605473, 0.0094746435, 0.03387322, -0.021947766, 0.030888434, -0.014013437, -0.0044018757, -0.024220586, 0.031299185, -0.010515211, 0.004603828, 0.0052233767, -0.008564147, 0.01716937, 0.021304257, -0.0012433758, -0.015731743, -0.019688638, 0.014663791, -0.011103954, -0.003997971, -0.013986053, -0.022098374, 0.02141379, -0.038555775, 0.0030327076, -0.011405171, 0.004473757, 0.0088105975, -0.0070854453, 0.02067444, -0.030833667, -0.050850905, 0.006034609, -0.005682048, 0.006366632, -0.011220333, 0.038391475, -0.005534862, 0.010070232, 0.016635394, -0.00781795, -0.005130958, 0.0064008613, 0.007749492, 0.0030720711, 0.009981236, -0.028122714, -0.016115109, -0.0061064903, -0.0032962724, 0.0108027365, -0.001911701, -3.618134E-5, 0.00765365, 0.0019887167, 5.2627403E-4, -0.0069964495, -0.012651114, 0.027410747, 0.03036815, 0.020783972, 0.014020282, 0.021865616, 0.038062874, 0.002108519, -7.4534095E-4, 0.0059182295, 0.012069218, 0.011398325, -0.013835444, 0.004028777, -0.014225657, -0.028615614, 0.0029180397, 0.028615614, 0.05139857, -0.0038610543, 0.0046175197, -0.009529411, -0.0017610926, -0.008037017, -0.088941164, -0.0076741874, 0.0081465505, 0.03584482, -0.009146043, 0.030806284, -0.013274086, 0.024754561, -0.014417341, 0.037296142, -3.959891E-4, -0.03680324, 0.007948021, -0.011870688, 0.0021615743, 0.007783721, -0.022262674, -0.010001774, -0.0075030415, 0.036858007, 6.854398E-4, -0.012260901, 0.014513182, -0.011268254, -0.021715008, 0.010282453, -0.040116627, 0.011904918, 0.01790872, 0.009447261, 0.022413284, -0.023672918, 2.9116217E-4, -0.026014196, -0.031709936, -0.023549693, -0.008201317, -0.03948681, 0.019387422, -0.05013894, 0.004819472, 0.012137676, 0.026767237, -0.021317948, -0.0013375061, -0.0030053242, -0.02506947, 0.03433874, -0.017059835, -0.033900604, -7.701571E-4, -0.012712726, -0.029382348, 0.00834508, 0.035297155, 0.0230431, 0.02760243, 0.013171398, -0.0105699785, -0.004990618, -0.016019268, 0.0041930773, -0.03841886, 0.008783214, 0.0052986806, 0.014307807, -0.0148280915, 0.0055690915, 0.024932552, -0.012781185, -0.0016113397, 0.021345332, -0.035625756, -0.0075441166, -0.024590261, 0.0025962852, -0.027561355, -0.027821498, 0.019360038, -0.034639955, 0.014431032, -0.019688638, 0.020003548, -0.034229204, 0.020605981, 0.022933567, 0.010898579, 0.0050043096, -0.017237827, -0.042772815, 0.013411002, 0.026246954, 0.0053500244, -0.006986181, 7.581769E-4, 0.01257581, -0.016279409, 0.0153346835, 0.0026801466, -1.9906422E-4, -8.771234E-4, -0.004175963, -0.07464705, 0.028122714, -0.02686308, -0.012699035, -0.0026647435, -0.017210444, 0.0019647563, -7.5603754E-4, -0.01155578, 0.013849136, -0.0057197, 0.013369927, -0.005199416, -0.0056478186, 0.0035221851, 0.011904918, 0.009447261, -0.0084203845, 0.012938639, -0.0042820736, -0.013144014, 0.008762676, 0.02905375, 0.027136913, 0.0037207145, 0.028862065, -2.9923813E-5, -0.008523072, -0.031737316, -0.012726418, 0.022180524, -0.020866122, -0.005038539, 0.0073661245, -0.0026202456, -0.011863843, -0.017306285, -0.006325557, 0.010001774, 0.014033974, -0.014992392, -0.022317441, -0.012555272, -0.0060791066, -0.022755574, 0.008297159, -0.01710091, 0.0019236812, 9.404474E-4, 0.004436105, 0.022166833, 0.0053910995, -0.013438386, -0.022577584, 0.006743153, -0.01840162, 0.041787013, 0.02263235, -0.0012750379, -0.002048618, 0.028232248, -0.0063358257, 0.03444827, -0.020482756, -0.017703345, 0.00879006, 0.0010191746, -0.008783214, 0.010604207, -0.036885392, -0.0075578084, -0.008297159, 0.0074893497, 0.05723123, -0.004744168, 0.011295637, -0.012534735, 0.009919624, -0.008372463, 0.009789553, 0.030176466, -0.010809583, -0.019921398, 0.032148067, 0.011713234, 0.017525353, -0.0062673674, 0.024877785, -0.0051480723, 0.005329487, -0.019606488, 0.008112322, 0.016361559, 0.013910749, 0.021098882, 0.021687623, -0.016443709, 0.0023070483, 0.009050202, 0.012774339, -0.005418483, 9.626964E-4, -0.0023036255, -0.012883873, -0.014745941, 0.009057048, -0.022344824, -0.026301721, 0.0230431, 0.0047373218, 0.0106863575, 0.019332655, -0.024056286, 0.012219826, -0.02613742, 0.022358516, -0.020811357, -0.020879814, -0.005685471, 0.022988334, 0.021454865, 0.00834508, 0.028752532, -0.012972868, 0.04844117, 0.016895534, 0.02719168, -0.041403644, 0.006852687, -0.004562753, -0.019798173, 0.0032004307, -0.035872206, 0.010330373, -0.009413031, 0.012233518, -0.0065754303, 0.011206642, -0.032476667, 0.06900608, 0.015184075, 8.220357E-5, 0.017949795, -0.013397311, 0.0065069715, 0.013725911, 0.023549693, -0.01588235, -0.0036830623, -0.016539551, -0.021482248, 0.004128042, -0.01775811, 0.0013991187, 0.00875583, 0.0064385133, 0.008468305, -0.016813384, -0.019140972, -0.010905424, -5.7975714E-5, 0.027232755, -0.0073661245, -0.01005654, -0.0033185214, 0.019469572, -0.011418862, -0.002818775, -0.031819467, 0.0041588484, -0.0070306784, -0.015950808, -0.010131844, 0.015622209, 0.0081465505, 0.009762169, 0.01685446, 0.02149594, 0.01896298, -0.008351926, -0.0039295126, -0.009248731, -0.021468557, 0.008776368, 0.005521171, -2.3853476E-4, -0.009454106, -0.013157706 ], + "id" : "63ef1c83-e0d2-4c1f-9744-cb4207d60d5d", + "metadata" : { + "source" : "movies.csv" + } + }, + "b94f2b4a-b082-45a5-bc97-dfc7136b2ad0" : { + "text" : "Also figuring into M��rida��s quest ��� and serving as comic relief ��� are the kingdom��s three lords: the enormous Lord MacGuffin the surly Lord Macintosh and the disagreeable Lord Dingwall.,66.581,Walt Disney Pictures-Pixar,6/21/12,185000000,538983207,93,Released,Change your fate.,7.006,12175,Kelly Macdonald-Billy Connolly-Emma Thompson-Julie Walters-Robbie Coltrane-Kevin McKidd-Craig Ferguson-Sally Kinghorn-Eilidh Fraser-Peigi Barker-Steven Cree-Steve Purcell-Callum O'Neill-Patrick Doyle-John Ratzenberger,scotland-rebel-bravery-kingdom-archer-wish-bear-scot-rebellious daughter-turns into animal-archery-ruins-aftercreditsstinger-peace offering-woman director-quest,/1XAuDtMWpL0sYSFK0R6EZate2Ux.jpg,/qx9ts2hBYJrkIQxhryitxnLlm2u.jpg,585-62211-38757-2062-12-14160-10193-82690-109445-920-9806-10681-862-20352-863-10191-49013-150540-9487-57800-808\r\n1891,The Empire Strikes Back,Adventure-Action-Science Fiction,en,The epic saga continues as Luke Skywalker in hopes of defeating the evil Galactic Empire learns the ways of the Jedi from aging master Yoda. But Darth Vader is more determined than ever to capture Luke. Meanwhile rebel leader Princess Leia cocky Han Solo Chewbacca and droids C-3PO and R2-D2 are thrown into various stages of capture betrayal and despair.,40.14,Lucasfilm Ltd.,5/20/80,18000000,538400000,124,Released,The Star Wars saga continues.,8.392,16144,Mark Hamill-Harrison Ford-Carrie Fisher-Billy Dee Williams-Anthony Daniels-David Prowse-Peter Mayhew-Kenny Baker-Frank Oz-Alec Guinness-Jeremy Bulloch-Jason Wingreen-John Hollis-Jack Purvis-Des Webb-Kathryn Mullen-Marjorie Eaton-Clive Revill-Kenneth Colley-Julian Glover-Michael Sheard-Michael Culver-John Dicks-Milton Johns-Mark Jones-Oliver Maguire-Robin Scobey-Bruce Boa-Christopher Malcolm-Denis Lawson-Richard Oldfield-John Morton-Ian Liston-John Ratzenberger-Jack McKenzie-Jerry Harte-Norman Chancer-Norwich Duff-Ray Hassett-Brigitte Kahn-Burnell Tucker-Bob Anderson-Lightning Bear-Richard Bonehill-John Cannon-Mark Capri-Martin Dew-Peter Diamond-Stuart Fell-Doug Robinson-Tony Smart-Alan Harris-James Earl Jones-Mac McDonald-Ralph McQuarrie-Ralph Morse-Terry Richards-Treat Williams-Shaun Curry-Alan Austen-Jim Dowdall-Tom Egeland-Alan Flyng-Trevor Butterfield-Mercedes Burleigh-Jane Busby-Maurice Bush-Tony Clarkin-Mike Edmonds-Walter Henry-Paul Jerricho-Joe Johnston-Steven Meek-Peter Roy-Stephanie English-Michael Leader-Egbert Sen-Elaine Baker,rebellion-android-spacecraft-asteroid-rebel-space battle-snowstorm-space colony-swamp-space opera-artic,/nNAeTmF4CtdSgMDplXTDPOpYzsX.jpg,/aJCtkxLLzkk1pECehVjKHA2lBgw.", + "embedding" : [ -0.0057841367, -0.041425437, -0.02591844, -0.04010335, -0.009158216, 0.034043778, -0.006100887, -0.02292997, -0.019666065, -0.03462219, 0.035613757, 0.019996587, 0.024981963, 0.009144445, 0.008214852, 0.02087798, 0.02315032, -0.022806024, 0.011685333, -0.02567055, 0.014722005, -0.002105357, -0.017242236, -0.0029006756, 0.012532297, 0.010473419, 0.021759372, -0.012236204, -0.0038595342, -0.0061353166, -0.008621118, -2.8232095E-4, -0.002682049, 0.0042899013, -0.033189926, -0.0031158593, 0.013634036, -0.023907766, 0.015672257, -0.009289049, 0.012236204, 0.016264442, -0.015823746, -0.0012437615, -0.0058702105, 0.017779335, 0.013654694, -2.8102985E-4, -0.008139106, 0.034732364, 0.01765539, 0.03784478, -0.026193876, -0.034512017, 6.2532374E-4, 0.00866932, -0.009578255, 0.0046204235, 0.0017309374, -4.4456945E-4, -0.0025598248, -0.0096539995, -0.0152177885, -0.017903281, -0.01665005, 0.0011155121, -0.011389241, -0.020051675, 0.0025546604, -0.0048993016, 0.026910007, 0.028397357, 0.019115195, 0.008435199, -2.1937974E-4, -0.035173062, -0.034512017, 0.008524716, -0.0072095133, 0.014116048, 0.0015605119, 0.012284405, -0.010542278, 0.01616804, 0.014887267, 0.004210714, -0.0016922043, 0.027653683, -0.039442305, 0.012435894, 0.009530054, 0.03704602, 0.008827695, 0.0063522216, 0.0070201517, 0.0068032467, -0.016815312, 0.02872788, -0.008662433, -0.031179251, 0.00235497, 2.1410774E-4, -0.004493035, -0.009282162, -0.010838371, 0.0049509457, -0.003184718, -0.005381313, 0.022186296, 0.0037975612, -0.009798603, 0.0047443695, 0.023288036, -0.034264125, -0.010046495, -0.0434912, 0.00953694, -0.014184907, -0.009791717, -0.016705139, 0.023026373, 0.025890898, 0.011279067, -0.02259945, 0.038202845, 0.029499097, -0.002053713, -0.0062076184, -0.015630942, -0.00840077, 0.02182823, 0.0097159725, 0.01665005, 0.011313496, -0.001907388, 0.033189926, -0.032198362, 0.010735082, -0.005763479, -0.018412836, 0.027185444, 0.033713255, -0.01805477, -0.031675033, -0.022819797, 0.004647967, 0.0069788364, -0.005822009, 0.02292997, -0.0032019329, 0.024224516, 0.008393885, 0.020616315, 0.014295081, 0.03533832, -0.0056223185, -0.017283551, -0.015506995, -0.0074298615, -0.015713573, 0.004093654, 0.010976088, -0.008855238, 0.004758141, 0.016264442, 0.021483937, 0.023177862, -0.019349314, -0.00930282, 0.0068858773, -0.008524716, 0.023811363, -0.026400452, 0.012773302, 0.015314191, 0.029003315, 0.004482706, -0.0075262636, -0.033823427, -0.007347231, -0.009578255, 0.0026613916, 0.015410593, 0.035117973, -0.010012065, -0.0018557439, 0.015204017, -0.008042704, 0.0127457585, -0.019666065, 0.011588931, 0.021304904, -0.018825987, -0.007884329, -0.63372105, -0.0077121826, 0.0020089548, -0.025147224, -0.0056257616, 0.010604251, -0.020451056, 0.007663981, -0.030352946, -0.0068686623, -0.03195047, 0.025794495, 0.031289425, -0.024816701, -0.034539558, -0.016526105, -0.0051885084, -0.021167187, 0.013964559, -0.011368583, -0.036081996, 0.021125872, 0.019721152, -0.0015252217, -0.0017300766, -0.005157522, -0.0051919515, -0.007629552, 0.0023343123, 0.0073059155, -0.019666065, -0.014873494, 0.009984522, 0.009660886, 0.0422242, 0.008841466, -0.02872788, 0.04090211, 0.020850437, 0.018123629, -0.023219177, -0.010473419, 0.02356347, -0.010046495, -0.008042704, 0.017710475, 0.022640765, 0.009626457, -0.0032002113, -0.013172683, -0.025133451, -0.006730945, -0.0050129187, -0.010838371, 0.0057910224, 0.017875737, 0.02927875, -0.017903281, 0.015451908, 0.00435876, -0.023040146, 0.038257934, 0.0032587415, 0.012256862, -0.011451214, 0.024252059, -0.0043449886, 0.0025649893, 0.017999683, -0.022792254, 0.0046892823, 0.010962317, -0.013881928, -0.010377017, 0.0014572238, 0.014942354, 0.033024665, -0.003997252, -0.0071268827, 0.016939258, 0.0020347766, -0.0051919515, -0.00828371, 0.014694462, 0.028755423, 0.00968843, -0.011953883, 0.010686881, 0.02613879, 0.010631794, 0.0032742345, 0.024155658, -0.006903092, -0.011244637, -0.004937174, 0.00470994, -0.020478599, -0.004585994, 0.029141031, -0.06979525, -0.013985217, -0.013048737, 0.0015105893, -0.009729744, 0.033079755, 0.0042795725, -0.02159411, 0.0127457585, 0.018812217, -0.024045482, -0.007285258, 0.013599607, -0.0076020085, -0.013620265, 0.011086262, -0.031234339, 0.03949739, 0.004424176, 6.4684206E-4, 0.0076020085, 0.022750938, -2.2572766E-4, 0.02009299, -0.033547994, -0.0039421646, 0.026180105, 0.0052401526, -0.016181812, -0.01401276, -0.0015105893, -0.0057703652, 0.0020055117, 0.02166297, -0.012711329, 0.012222432, 0.009722859, 0.034980256, -0.0026235192, 0.015520767, -0.017021889, -0.01468069, -0.011588931, -0.0021449507, -0.016057866, -0.008848352, -0.018784672, -0.0097159725, -0.005849553, -0.0051781796, -0.0045205783, -0.01806854, 0.006390094, 1.8868917E-5, 0.009922549, 5.5775605E-4, 0.0068032467, -0.037156194, -0.002821488, 0.00645551, -0.009991407, 0.014611831, -0.0041246405, -0.017269779, -0.028562618, 0.014487886, -0.008807037, -0.025064593, 0.009722859, -0.013847499, -0.019487033, -0.0064830533, -0.025780724, -0.006224833, 0.0235497, -0.026441768, 0.031592403, -0.015754886, 0.014845951, -4.8158102E-4, -0.022255154, 0.0024789157, -0.0031210238, -0.02159411, 5.030994E-4, 0.036384974, 0.013592722, 0.011389241, -0.018261347, -0.007739726, 0.0034963042, -0.0137648685, -0.008841466, 0.0045687794, -0.008393885, -0.00398348, 0.002021005, 0.002652784, 0.002802552, 0.011554502, 0.0105216205, 0.029168576, 0.013014308, 0.009020499, -0.022392873, 0.006899649, -0.047319748, 0.0062317187, -0.021139642, 0.005388199, -0.0066930726, 0.025367571, -0.008572917, -0.017917052, -0.015644712, 0.0075262636, 0.02810815, 0.008194194, -0.0019297671, -0.018825987, 8.839745E-4, -0.0049061873, -0.0069581787, 0.027199214, 0.02825964, -0.02944401, -0.0030934804, 0.0143501675, -0.008318139, -0.010039609, -0.015148929, -7.6433236E-4, -0.014845951, -0.0078499, -0.0061938465, -0.009488739, 0.014873494, 0.026166333, -0.0068617766, 0.047705356, -0.018151172, -0.01883976, 0.007946302, 0.0307661, 0.0027164784, -0.016636278, 0.002468587, 0.020781577, 0.013627151, 2.8985238E-4, 0.03313484, -0.0026751633, 0.010480305, -9.820983E-4, 0.008228623, 2.3132244E-4, -0.024472408, 0.014515429, 0.010500963, 0.03878126, 0.017090747, -9.829589E-4, -0.032088187, 0.005601661, 0.0035565556, 0.021084556, 0.002575318, -0.0076020085, 0.0050232476, -0.0040385667, -0.023976624, -0.0059046396, 0.015603398, -0.0016990902, -0.003639186, -0.010500963, -0.0013823399, -0.0048993016, 9.123787E-4, 0.019500803, 0.043298397, -0.003697716, -0.031978015, 0.020148076, 0.013289743, -0.010101582, -0.016705139, -0.009757288, -0.005205723, -0.02567055, -0.0010543999, -0.018536782, 0.028865596, 0.004434505, -0.007739726, -0.007946302, -0.013551407, 0.012938563, -0.034814995, 0.014873494, 0.02575318, 0.001135309, 0.010604251, -0.0056464192, -0.017834421, 0.025340028, -0.032060646, 0.0055155875, -0.011850595, -0.0046720677, 0.0033878516, -0.0128077315, -9.204481E-5, -0.03343782, 0.023343123, -0.012435894, 0.0019796896, -0.015823746, 0.013696009, 0.03195047, -0.0043518743, -0.010377017, -0.012738872, -0.0016569141, 0.008641776, 0.08830449, 0.025367571, -0.010018951, 0.011347925, -0.008063362, 0.010783284, -0.010686881, -0.0343743, -0.0027044283, -0.015920147, 0.02032711, -0.01157516, 0.029388923, 0.0010363245, 0.018977478, -0.009640228, 6.567405E-4, -0.013819955, -0.006837676, -0.013303515, -0.015424365, -8.2630526E-5, 0.023480842, 0.02677229, -0.01538305, -0.019514576, 0.024913104, 0.014405255, -0.0060389144, 0.004999147, -0.0038285477, -0.006228276, 0.0012756088, 0.018096086, -0.0016336744, -0.004258915, 0.029636815, 0.007106225, 0.005474272, -0.008338797, 0.003393016, 0.0050748913, 0.01279396, -0.009826147, 0.022241384, -0.014611831, -0.01820626, 0.018151172, 0.009846805, -0.046190463, 0.026841149, -4.7168258E-4, -0.009936321, -0.0017610631, 0.0097779455, -0.0017972139, 0.0070167086, 0.0049130735, -0.011299725, 0.0063005774, -0.008951641, -0.023109004, 0.017063204, -0.012029627, 0.0042451434, -0.0073128017, -0.015369277, -0.009247733, -0.013854384, 0.022544362, -0.005877096, -0.018633183, 0.010308158, 0.0032243119, 0.013696009, -0.0014658311, 0.02881051, -0.0028077164, 0.016622508, 0.008152879, -0.022723395, -0.013262199, 6.369436E-4, -0.04186613, -0.022723395, 0.012215546, -0.00578758, 0.03385097, -0.02064386, -0.0023153762, -0.0026510628, 0.0074642906, -0.015851289, -0.014446571, 0.032556426, 0.0056842915, -0.0026665558, 0.015851289, 0.008070248, -0.015493223, 0.006090558, -0.018591868, -0.01892239, -0.013296628, 0.0060113706, -0.0113548115, -0.012408351, -0.013819955, -0.016085409, -0.0343743, -0.040984742, -0.021965949, -6.5243687E-4, -0.0070924535, 0.0054054135, -0.005205723, 0.023040146, 0.01404719, 0.0040661106, 0.0021363434, 1.76343E-4, -0.019514576, 5.504398E-4, 0.022833569, -0.024871789, 0.04373909, -0.005815123, -0.018385291, -0.0058461097, 0.02316409, -0.009158216, 0.024004167, -0.017049432, 0.0024995734, -0.009461195, -0.022034807, 0.015920147, 0.005605104, -0.023673646, 0.01678777, -0.016746454, 0.0074642906, 0.019184053, -0.0113548115, 0.009364793, -0.020368425, 0.017944597, 0.010480305, 0.010328815, 0.0301326, -0.01538305, 0.0075400355, -0.010618023, -0.012256862, 0.009750402, -0.034594648, -0.035751473, -0.016746454, 0.021690512, 0.011685333, 0.045088723, 0.0022465175, 0.038340565, 0.0026682774, 5.8271736E-4, 0.016071638, -0.0032002113, -0.024747843, -0.038175303, -0.0045068064, 0.023177862, 0.029967338, 0.00883458, -0.0038319905, 0.015837517, 0.018440379, 0.016581193, 0.017214693, -3.1007966E-4, -0.013296628, -0.016677594, -0.004833886, -0.023480842, 0.0033189927, -0.017311094, -0.008152879, 0.03933213, 0.009171988, -0.011630246, -0.010411446, 0.031344514, -0.018509237, 0.036247257, -0.0102737285, 0.020822892, -0.016773997, 0.007285258, -0.015534539, -0.010315044, -0.00997075, -0.0063591073, 0.0049543884, -0.00886901, -0.0011792064, -0.0043174447, 0.026882464, -0.022971286, -0.022654535, 0.019445717, -0.021139642, -0.025216082, -0.023288036, -0.016829085, -0.040847022, -0.003862977, -0.007884329, -0.0054536145, 0.0011551059, -0.01947326, -0.032721687, 0.0061456454, 0.008015161, 0.044234876, 0.005618876, 0.03321747, 0.01311071, -0.01055605, -0.018633183, 1.8322888E-4, -0.0036288572, 6.9633435E-4, 0.039056696, 0.020698946, -0.024238288, 0.012146687, -0.0046927254, -0.028755423, -0.036798127, -0.042361915, 0.022750938, 0.020051675, 0.013585836, -0.019046336, -3.9335573E-4, -0.008545374, -0.005939069, -0.0013014307, -0.01743504, 0.0032604628, -0.021552796, -0.026786063, -0.01055605, -0.005594775, 0.009495624, 0.0054191854, -0.03131697, 0.01048719, -0.021456392, 0.006744717, -0.010955431, -0.0211121, 0.021759372, -0.035613757, 0.02010676, 0.006176632, 0.013537634, -5.000868E-4, -0.008180422, 0.01468069, 0.03475991, -0.010452761, 0.025340028, -0.0057497076, -1.2028767E-4, 0.0065243687, 0.005887425, -0.013916357, -0.0055913324, -0.02346707, 0.0018798445, 0.021236045, -0.00430023, -0.015837517, -0.015438137, -0.016608736, -0.009605799, 0.009640228, -0.011637133, 0.02315032, -0.03531078, -8.5169694E-4, -6.580316E-4, -0.0066965157, 0.001304013, -0.015892604, -3.60863E-4, -0.0037080448, 0.018316433, -0.009041157, -0.0023136546, -0.022943743, -0.004369089, -0.048559204, -0.014088505, 8.994677E-4, -0.01098986, 0.016388388, -0.031978015, 0.012153573, -0.0010320208, -0.0025357243, 0.0038836347, -0.007829242, -0.0081735365, 0.0028490317, 0.022778481, -6.580316E-4, -0.0018591868, -0.0012799124, 0.029636815, 0.012518524, -0.013709782, 0.00500259, -0.0027302504, 0.021015696, -0.017283551, 0.001582891, -0.0019194382, -0.029691903, -0.006668972, -0.0066310996, 0.026551941, 0.013599607, -0.0090067275, -0.028452445, -0.02009299, -0.010197984, 0.03313484, -0.018137401, 0.0018936162, 0.03415395, 0.01055605, 0.02944401, 0.012346378, -0.015410593, -0.01875713, 0.012298177, 0.0061938465, -0.032776777, 0.0020812564, -0.005488044, 0.012601155, -0.013241542, -0.010197984, -0.02056123, 0.008373227, -0.035531126, -0.02936138, -0.006500268, 0.026827378, 0.03241871, 0.012787074, 0.009041157, 0.015727343, -0.010342588, -0.0018040998, -0.029609272, -0.020079218, 0.01977624, 0.0074298615, 0.021153415, 0.011940111, -0.007815471, -0.006379765, 0.012897247, 0.010900344, 0.013207112, 0.027571052, -0.0115063, -0.014956125, -0.010494077, 0.0025288383, 0.0055293594, -5.710974E-4, 0.020161849, -0.01259427, -0.006792918, 0.0127457585, 0.016622508, -0.007395432, -0.009984522, 0.002138065, -0.006211061, 0.006682744, 0.0030986448, -0.008077133, 0.004599766, -0.026744748, 0.022406643, 0.005894311, -0.005095549, 0.017889509, 0.023522155, -0.020905523, 0.021291133, -0.0075400355, 0.0020433841, -0.007884329, -0.015562083, 0.0067068445, 0.016856628, -0.016057866, 0.011988312, -0.02346707, 0.009881234, -0.010728196, 0.022310242, -0.011175779, 0.036219712, 0.01979001, -0.026414225, -0.0023997282, -0.010666223, -0.0035599985, -0.0010156669, 0.0043553174, -0.033272557, 0.0034859753, -0.002241353, -0.008331912, -0.0343743, -0.023219177, -0.0032329194, -0.0030676583, -0.012539182, 0.015837517, 0.20040657, -0.020079218, 0.012022741, 0.05618876, 0.0023119333, 0.0032311978, 0.028617706, 0.017917052, -0.011347925, 0.026510626, -0.006672415, 0.021167187, 0.0033258786, 0.006854891, 0.020712718, -0.027763857, -0.01782065, -0.02378382, -0.010886571, -0.017793106, -0.007395432, -0.007326573, 0.004981932, -0.013220884, 0.0079256445, -0.01177485, -0.00435876, 0.015410593, 0.031206796, 0.013152026, -0.018082313, -0.007285258, -0.0046169804, 0.00344466, -0.035062887, 0.003911178, 0.006441738, 0.017848194, 0.005040462, 0.012194889, 0.013985217, -0.01703566, 0.0011946997, 0.007374774, 0.009385451, 0.0105835935, -0.034594648, 0.01247721, -0.023109004, 0.0021156857, -0.031179251, -0.003869863, 0.01828889, 0.032391164, -0.008455857, -0.013757982, -0.007794813, 0.0040247953, -0.011520073, -0.002351527, 0.0047856844, 0.036550235, -0.027529737, 0.013262199, -0.012339491, 0.019900184, -0.043270852, -0.009667772, -0.005222938, -0.039910544, 0.0029884707, -0.022117438, -0.020451056, -0.0067550456, 0.0032243119, -0.015245332, 0.01244278, 0.00319849, 0.0054708296, 0.019046336, -0.013654694, -0.030490665, -0.0022189738, -0.01130661, -0.01765539, -0.030408034, 0.020272022, -0.007898101, -0.012373921, -0.01718715, -0.03186784, -0.031124165, -0.014446571, -0.012311948, -0.0074298615, -0.0054777153, 0.025477745, 0.013434346, -0.008786379, -0.0096539995, -0.03407132, 0.008338797, 0.015920147, -0.0038492053, -0.032198362, -0.010721311, 0.007505606, 0.01008781, 0.01287659, -9.304542E-4, -0.010590479, -0.030876273, 0.0016173203, -0.020988153, 1.1512326E-4, 0.038037587, 0.01601655, -0.0028559174, 0.039442305, -0.017324867, 0.0042279284, 3.216996E-5, 0.028287183, -0.007794813, -0.023136547, -0.034043778, -0.020037903, 0.018729586, -0.0038457625, -0.024169428, 0.008359455, -0.03869863, 0.017558986, -0.0050301333, -0.0041005397, 0.019610979, 0.02543643, -0.0012902413, 0.0088827815, -0.009771059, 0.0075882366, 0.00578758, 0.0082355095, 0.020134306, 0.017779335, -0.020685175, 0.0032484126, -0.009426766, -0.008338797, -0.031206796, -0.013668466, -0.01743504, 0.007960074, -0.017614074, 0.040296152, 0.018040998, -0.013606493, -0.03993809, -0.0025322812, 0.048311315, -0.029196119, 0.023191635, 0.022571905, 0.009578255, -0.012339491, -0.01232572, -0.1769395, 0.023205405, 0.0061697457, -0.01671891, 0.03046312, 0.01766916, 0.042279284, 0.021153415, 0.01264247, -0.02087798, 0.021924634, 0.027736314, -0.044152245, 0.004981932, 0.018963706, 0.018454151, -0.024678983, 0.015741115, 0.014694462, 0.010721311, 0.058447324, 0.002446208, -0.017614074, 0.0065932274, 0.012842161, 0.007216399, 0.014226222, 0.0018264789, -0.0049509457, -0.011857481, -0.032446254, -0.009061814, 0.015630942, 0.0031399599, -0.008510944, 0.002186266, -0.02324672, -0.010383903, 8.572917E-4, -0.009550711, 0.03495271, 0.008924097, 0.04701677, 0.018385291, 0.018220032, 0.03376834, 0.011630246, -0.0129936505, 0.009550711, -0.015534539, -0.012580497, -0.040791936, 0.012518524, -0.011568273, 0.009702201, 0.029554185, 0.0030125713, 0.010315044, -0.002578761, 0.0036323003, -0.021965949, -0.011093148, 0.0072577144, -0.024210744, -8.172675E-4, -0.024376005, -0.010129125, 0.018109856, -0.013048737, -1.6698251E-4, -0.006200732, 0.020698946, 0.01782065, 0.02677229, 0.0077052964, -0.0066965157, -0.038037587, 0.008015161, -0.011347925, 0.0054054135, -0.015011212, 0.030215228, -0.016636278, -0.0034274454, 0.029746989, -0.028617706, 0.0023033258, 5.259089E-4, -0.0024961305, -0.008097791, -0.003697716, -0.011809279, -0.01436394, -0.0011508022, 0.0043312167, 0.011347925, -0.0022740609, 0.006603556, 0.0040144664, -0.01868827, 0.01048719, -0.01118955, -0.016471019, 0.020437283, 0.018578097, 0.01923914, -0.010741969, 0.023384439, 0.024431093, -0.0043931897, 0.0029936351, -0.0043036733, 0.024623897, 0.015107614, -0.024376005, 0.012663128, -0.00427613, -0.023453297, 0.016856628, 0.007133769, 0.05965924, -0.0060216994, 0.015024984, -0.005942512, -0.008483401, -0.0017326588, -0.10003802, 0.0014382876, 0.0057393787, 0.036522694, -0.03869863, 0.027488422, -0.017710475, 0.007347231, -0.011464985, 0.016360844, 0.008407656, -0.029058402, 0.0064107515, -0.012663128, 0.01436394, -0.007663981, -0.0039042924, -0.012855933, -0.0067412737, 0.035145517, -0.016498562, -0.0041728416, 0.0070304805, -0.025243625, -0.030077511, 0.021139642, -0.026992638, 0.021415077, 0.007918758, 0.025849583, 0.02363233, -0.004933731, 0.0079876175, -0.029526642, -0.025408886, -0.025133451, -0.010067153, -0.023577243, 0.023356896, -0.05172671, 0.013847499, 1.0823738E-4, -0.00753315, -0.03751426, -0.005550017, 0.0064864964, -0.013213999, 0.032060646, -0.0069753937, -0.025987301, -0.01098986, -0.01688417, -0.021731827, -0.016732682, 0.0047994563, 0.025257397, 0.017531443, -0.019184053, -0.0034119522, -0.017903281, -0.0021552795, 0.006007928, -0.019872641, 0.006321235, 0.0024926874, -0.006321235, 0.009323478, 0.0032070973, 0.012904134, -0.018646955, -0.021387534, 0.022227611, -0.036274802, -0.0050232476, -0.01892239, -0.0054605007, -0.039635107, -0.009743516, 0.027157899, -0.031261884, 0.008910325, -0.02825964, 0.01820626, -0.01311071, 0.021718057, 0.03558621, 0.0046273093, -1.1404734E-4, 8.499755E-5, -0.02819078, -0.016291985, 0.0065105967, 0.0067068445, -7.935973E-4, 2.7758692E-4, 0.04514381, 0.017090747, 0.022640765, 0.0047374833, -0.0011404734, 0.0037355884, 0.008359455, -0.06593916, 0.02850753, -0.010370131, 0.0015742837, -0.024320917, -0.0065278113, 0.014956125, -0.022585677, 0.001735241, 0.020161849, -0.010893458, 0.014102276, -0.013441232, 0.0082355095, -0.011864366, 0.008930983, -0.013957673, 0.0010759183, -0.012146687, 0.015837517, -0.0241832, 0.02872788, 0.015052527, 0.005401971, 0.002688935, 0.016815312, 0.004265801, 0.024403548, -0.0110449465, -0.020272022, 0.032694146, -0.012119144, -0.0153417345, 0.010714425, -0.011093148, -0.026028616, -0.00973663, 0.005773808, 0.024555039, 0.027144128, -0.004916516, -0.016071638, 0.006541583, -0.020519914, 0.004658296, 0.016264442, -0.025491517, 0.021318676, 0.0102117555, 0.013668466, 0.03784478, 0.018702041, 0.008118449, -0.02001036, 0.020395968, -0.02999488, 0.06731634, 0.0017472913, -4.6393598E-4, -0.023659874, 0.0138268415, 0.004307116, 0.024582582, -0.025491517, 0.0038939635, -0.0018471365, 0.008393885, -0.0037872323, 0.008621118, -0.040406328, 2.0151949E-4, -0.0072095133, 0.012463437, 0.0453917, 0.015975235, 0.024665212, -0.0050094756, -0.00718197, -0.009509397, 0.010390788, 0.01421245, -0.012972993, -0.028975772, 0.0048993016, 0.013131368, 1.0113632E-4, -0.011155121, 0.0038044471, -0.005718721, 0.013668466, -0.0022189738, 0.0014417305, 0.006166303, -0.00953694, -0.0056498623, 0.009764174, -0.029168576, 9.6316205E-4, -0.002990192, 0.024059255, -0.02010676, -0.002277504, -0.023136547, -0.032005556, -0.028617706, -4.0884895E-4, -0.016264442, -0.02386645, 0.014611831, 0.03288695, 0.021525253, 0.016291985, -0.0077121826, 0.004868315, -0.036880758, 0.0055190306, -0.009392336, -0.024210744, -0.021773143, 0.043794177, 0.008813922, 3.0749745E-4, 0.03475991, -0.02119473, 0.022503046, 0.011616475, 0.02378382, -0.015259104, -0.004613538, -0.011905681, -0.0065966705, -0.016319528, -0.005711835, 0.0040729963, 0.010301272, -0.0044138473, 0.010611136, 0.0153417345, -0.034043778, 0.043684006, 0.018178716, -0.01063868, 0.011320382, -0.012883476, 0.029967338, 0.017090747, 0.0025185095, -0.028838053, -0.0068032467, 0.0020984712, -0.0017059761, 0.022172524, -0.01733864, -0.013792412, 0.008992955, 0.013840613, 0.0042417003, -0.014901038, -0.030738555, 0.016471019, -0.010156669, 0.027185444, 0.0059115253, -0.017297324, -0.023370666, 0.040378783, 4.7856846E-4, -0.0152177885, -0.014391483, 0.010728196, -0.012243089, -0.002361856, -0.00502669, 0.020423511, -0.0037252596, 0.010404561, -0.009922549, 0.02401794, -0.007904987, -0.0062041753, -0.018454151, -0.016044093, -0.015658485, 0.013399917, 0.004320888, -9.3561853E-4, -0.013620265, -0.018798444 ], + "id" : "b94f2b4a-b082-45a5-bc97-dfc7136b2ad0", + "metadata" : { + "source" : "movies.csv" + } + }, + "81bb5d75-16f0-4664-8e2b-7bcd1f1ade62" : { + "text" : "382,12558,Tobey Maguire-Kirsten Dunst-James Franco-Thomas Haden Church-Topher Grace-Bryce Dallas Howard-Rosemary Harris-J.K. Simmons-James Cromwell-Dylan Baker-Theresa Russell-Bill Nunn-Bruce Campbell-Elizabeth Banks-Ted Raimi-Perla Haney-Jardine-Willem Dafoe-Cliff Robertson-Elya Baskin-Mageina Tovah-John Paxton-Becky Ann Baker-Stan Lee-Michael Papajohn-Joe Manganiello-Hal Fishman-Lucy Gordon-Steve Valentine-Tim Maculan-Marc Vann-Joe Bays-Gregg Daniel-Rogelio T. Ramos-Timothy Patrick Quill-Menachem Mendel Boymelgreen-Nasir Stewart-Austin Hendrickson-Taylor Hemhauser-Kathryn Bryding-Joe Virzi-Bill E. Rogers-Michael Alexander-April Parker-Jones-Edward Padilla-Robert Curtis Brown-Paul Terrell Clayton-Carolyn Neff-Christina Cindrich-Sonya Maddox-Andre B. Blake-Derrick 'Phoenix' Thomas-Jessi Collins-Michael McLaughlin-Anne Gartlan-Emilio Rivera-Keith Woulard-Reynaldo Gallegos-Jim Coope-Dean Edwards-Margaret Laney-Toni Wynne-Aimee Miles-Tanya Bond-Mark Kubr-Emma Raimi-Lorne Raimi-Henry Raimi-Alan Cohn-Dan Callahan-Daniel Cummings-Ron King-Carol Chaikin-Vance Hammond-Frank Anello-Anya Avaeva-David Backus-Tony Besson-Michael Ciesla-Irina Costa-John Crann-Crystal Marie Denha-Amy V. Dewhurst-Paul Edney-Keith Fausnaught-Logan Fry-Kevin Fung-Tony Galtieri-Brian Hopson-Andrew James Jones-Natalie Jones-Christopher Jude-Brittany Krall-Pierangeli Llinas-Bernadette Lords-Natalie McNeil-Martha Millan-Michele-Nanette Miller-Claudia Katz Minnick-Jen Oda-Anjelia Pelay-Nick Poltoranin-Vanessa Reseland-La Rivers-Bria Roberts-Vanessa Ross-Brenna Roth-Shade Rupe-Eric Shackelford-Daniel Shafer-Abbey Skinner-Kristin Somo-Jennifer Sparks-Christopher Stadulis-Arne Starr-Aija Terauda-Evelyn Vaccaro-Nick Vlassopoulos-Sincerely A. Ward-Jennifer Weston-Ray Wineteer-Emily Eckes-Samantha Ressler,loss of loved one-dual identity-amnesia-sandstorm-love of one's life-forgiveness-spider-wretch-egomania-sand-narcism-hostility-sequel-superhero-based on comic-revenge-symbiote,/qFmwhVUoUSXjkKRmca5yGDEXBIj.jpg,/6MQmtWk4cFwSDyNvIgoJRBIHUT3.jpg,558-557-1930-102382-9738-1979-10138-1724-36668-36658-285-36657-10195-2080-1858-1726-1771-58-68721-425-8373\r\n8355,Ice Age: Dawn of the Dinosaurs,Animation-Comedy-Family-Adventure,en,Times are changing for Manny the moody mammoth Sid the motor mouthed sloth and Diego the crafty saber-toothed tiger. Life heats up for our heroes when they meet some new and none-too-friendly neighbors ��� the mighty dinosaurs.,58.", + "embedding" : [ 0.0083003165, -0.0279927, -0.010457196, -0.040893916, -0.019685706, 0.04279037, 0.0022553755, -0.009308641, -0.010891244, -0.04065352, 0.027031118, 0.016386949, 0.029408362, 0.003063371, 0.0077460716, 0.014263456, 0.011672528, -0.0072986693, 0.021061301, -0.03290745, 0.0018864356, 0.0020400214, -0.022410186, 0.011919602, 0.00621689, 0.0037828875, 0.030583628, -0.009215154, -0.014811023, -0.0017044697, 0.019338468, -0.010597427, -0.0033738816, -0.033521794, -0.021021236, 0.0019765839, -0.002844678, -0.033147845, 0.039504964, -0.011559009, 0.0012370343, -2.4858587E-5, -0.024173085, -0.0022036238, -0.015024708, 0.003395584, 0.02098117, -0.007906335, -0.023051241, 0.008721008, 0.014343588, 0.02365223, -0.015412011, -0.029648757, -0.010036505, 0.0013639096, -0.011171705, 0.0023271602, 0.0076926504, 0.0026593732, 0.0071651163, -0.0082535725, -0.034029294, -0.009916307, -0.023785781, -0.015572275, -0.0014465455, -0.01621333, 0.018176557, -0.0012136626, 0.035391536, 0.011432134, 0.008948049, -0.0071250503, 0.0049815252, -0.028313227, -0.014891155, -0.0049815252, 0.0050182524, -0.0050917068, 0.010797757, -0.008787785, -0.0010659195, 7.733551E-4, 0.024920981, 0.008881272, -2.3163091E-4, 0.027672173, -0.02705783, 0.01981926, 0.0068913326, 0.041481547, -0.004387215, 0.010303611, 0.010316966, 0.030877445, -0.011532298, 0.014263456, -0.021956107, -0.041321285, 3.977374E-4, -6.260295E-4, -0.0032620311, -0.011432134, -4.999889E-4, 0.002455705, 0.0022069626, 0.0011694231, 0.0062636337, -0.017108133, 0.012914571, -0.0030182968, 0.012326938, -0.053848553, -0.0101366695, -0.017522149, 0.024627166, -0.023198148, -0.016800962, -0.023385122, 0.036086008, 0.015799316, 0.0026910922, -0.038169436, 0.026269866, 0.02890086, 0.020246629, -0.0067611183, 0.015278459, -0.005826248, 0.03157192, -0.0027979345, 0.024466902, -3.2970886E-4, -0.022784134, 0.036780484, -0.023585452, -0.010483908, -0.020166496, -0.022249922, 0.024880916, 0.037314698, -0.023919335, -0.033041, -0.025855852, 0.007225215, 0.018163202, 0.008467258, 0.018323466, -0.005799537, 0.03159863, 0.0302631, -0.0044105863, 0.019405246, 0.029141255, -0.011198415, 0.014463785, -0.016480435, -3.7979124E-5, -0.022236567, -0.007966434, 0.0020400214, 0.014023061, -0.014103193, 0.0017896097, 0.017922807, 0.023331702, -0.021248275, -0.0054155723, 0.0014048102, -0.005702711, 0.024173085, -0.018724125, 0.013522237, -0.0051317723, 0.011612429, -0.003529137, -0.001969906, -0.037795488, -0.02549526, 0.001110159, 0.0102635445, 0.023398478, 0.052673288, -0.003602591, 0.011111606, 0.019378534, -0.027178027, 0.017014647, -0.010684237, 0.01896452, 0.009135023, 0.013081512, -0.014463785, -0.6449005, -0.010630815, -0.0063437656, -0.026443485, 0.016760897, 0.026323289, 0.012560655, -0.013268487, -0.03803588, -0.022103015, -0.02484085, 0.009929663, 0.019939456, -0.020967815, -0.021582158, -0.01118506, 0.020901037, -0.01782932, 0.011766016, 0.012767663, -0.034162845, 0.013702533, 0.006433914, -0.008907982, 0.0044272807, -0.0012003072, -0.0074856435, -0.029061124, 0.01762899, 0.012460491, -0.027805725, 0.011932957, 0.0081266975, 0.009615813, 0.030556917, -0.0016218338, -0.023545386, 0.058442775, 0.022062948, 0.03792904, -0.033227976, 0.0029765617, 0.0153585905, 0.020446958, -0.01626675, 0.014543917, 0.0016577261, -0.004834617, 0.012206741, 0.007372123, -0.0028396698, -0.0029932556, -0.0101834135, -0.0073387353, -0.011191738, 0.004737791, 0.0035358146, -0.037287988, 0.022904333, -0.009849531, -0.019592218, 0.02759204, 0.009715978, 0.005716067, 7.4706186E-4, 0.03699417, -8.292804E-4, 0.0014448761, 0.023171438, -0.03565864, 0.025695588, 0.016974581, -0.010964698, 5.8179005E-4, 0.008968081, 6.306204E-4, 0.029515203, 0.006527401, -0.0016443708, 0.024493612, 0.017922807, 0.0060365936, 0.0032470063, 0.0033705428, 0.036513377, -0.014089837, -0.03288074, -6.014057E-4, -5.233607E-4, -5.634265E-4, 0.019271692, 0.009522326, 0.0026877532, 0.004347149, -0.0020800873, -0.0067010196, -0.007839559, 0.0029698838, 0.010016472, -0.072385706, -0.009989762, -0.01206651, 0.025735656, -0.014129903, 0.018203268, 0.008046566, -0.011111606, -0.010377065, 0.035444956, 0.0064940127, -0.015265103, -0.0051317723, -0.008767752, -0.019271692, -8.41801E-4, -0.025148023, 0.004347149, -0.0055891913, -0.0063070385, -0.0031702134, 0.0078262035, -9.807795E-4, -1.11850604E-4, -0.0076325517, 0.021274986, 0.024279928, -0.0061935186, -0.01490451, 0.018109782, 0.004056671, -0.0037461605, 0.007171794, 0.0050917068, -0.013221743, 0.022971109, 0.011579041, 0.01354227, -0.0046008993, 0.0114655215, 0.0033655346, -0.012173352, -0.01070427, -0.015078129, -0.0068713, -0.01286115, -0.013468816, -0.020206563, -0.0030283134, -0.0035558476, -0.022704003, -0.011532298, 0.007605841, 0.0021067979, 0.0077594267, -0.009635846, -0.0028096205, -0.026189735, -0.015238392, 0.028553622, -0.01308819, 4.5074124E-4, 0.015278459, 5.6081808E-5, -0.03961181, 0.014250101, -0.0067677964, -0.0128277615, 0.008380448, 7.441404E-4, -0.03264034, 0.004657659, -0.014437075, 0.003622624, 0.00939545, -0.021328408, 0.012533945, 0.0028880828, 0.021421894, 0.0044039087, -0.004100076, -0.008741041, 6.731904E-4, -0.012420425, -0.0077460716, 0.026844144, 0.004096737, 0.02637671, -0.0103102885, -0.014864445, 0.02032676, -0.003108445, -0.014397009, 1.20719356E-4, -0.005836264, 0.0047478075, 0.022103015, -0.010931309, 0.010650848, -0.00689801, 2.3142224E-4, 0.041054178, 0.016560568, 0.02375907, -0.0080065, 0.016333526, -0.031438366, 0.0027495215, -0.029301519, 0.0031585274, 8.0966484E-4, 0.024106309, -0.007625874, -0.011692561, -0.009582425, 0.009615813, 0.028286517, -0.016814318, 3.9252048E-4, -0.017108133, 0.013248454, 0.012139964, -0.00823354, 0.035418246, 0.012507235, -0.02751191, 0.0023839204, 0.010604105, -0.007565775, -0.005862975, -0.009428839, -0.008013178, 4.0545844E-4, -0.0011368695, 0.008106665, -0.00468437, -0.009101634, 0.015291814, -0.009135023, 0.03750167, -0.013929574, -0.0049180877, 0.019979523, 0.039905623, -0.008607488, 0.0059798337, -0.0030566934, 0.012640787, -0.0033054356, -0.020807551, 0.03437653, -0.004043316, 0.018443663, -0.013034768, 0.010751013, -0.0013906201, -0.011452166, 0.0037895653, 0.010377065, 0.02983573, 0.013562303, 0.01979255, -0.030930866, 0.03921115, 2.956946E-4, 0.026042826, -0.0015792637, -0.014570627, 0.0121466415, -0.0049247653, -0.038944043, -0.021822553, -0.002282086, 0.016680764, -3.560021E-4, -0.010537328, -0.009555714, -0.0036660286, 0.013101545, 6.022404E-4, 0.017134845, 0.0028763968, -0.032720476, 0.013635757, 0.022223212, -0.0069848197, -0.027672173, -0.0022103013, -0.019138139, -0.0091550555, -0.014463785, -0.002512465, 0.033628635, -0.0038262922, 0.028660465, -0.022704003, -0.0062469398, 0.022904333, -0.012473846, 0.006938076, 0.016333526, 0.002711125, 0.03515114, 0.0030500158, -0.0037695323, 0.013415394, -0.01981926, -8.363754E-4, -0.005635935, -0.022784134, 0.011532298, -0.0035391534, -0.009782754, -0.034590214, 0.012360326, -0.023411833, -0.014129903, -0.004307083, -0.010764369, 7.6250394E-4, -0.021475315, -0.016841028, -0.019832615, -0.024266573, -0.002762877, 0.07719361, 0.052699998, 0.007939723, 0.013662468, -0.0074455775, 0.0057895207, -0.021542093, -0.0016919491, -0.0089814365, -0.035952456, 0.017709123, -0.012814406, 0.0262298, 0.0084271915, 0.022009527, -0.0063103773, -0.013755955, -0.0014039754, -5.458977E-4, -0.0075390646, -0.028633755, -0.0037595157, 0.021648934, 0.039985757, 0.012854472, -0.009943018, 0.018857678, 0.011792726, 0.006297022, 0.014664114, -0.0038062593, 0.007886303, 0.001811312, 0.019752482, 0.0068646222, -0.005041624, 0.024360059, 0.011572364, 0.024987759, 0.011231803, -0.0121933855, 0.0075056762, 0.014490496, -0.01362908, 0.011545653, -0.020967815, -0.003455683, 0.024012823, 0.015879447, -0.033521794, 0.023465255, 0.004046655, -0.018911099, -0.013568981, 0.020860972, 5.300383E-4, -0.0053988784, -0.014957931, -0.019685706, 0.0037962429, 0.007866269, -0.028206386, 0.004096737, -0.008373771, -0.017588925, -0.0058696526, -0.0026393402, -0.0015634043, -0.016734187, 0.008293639, 0.012994703, -0.020527089, -0.013008058, -0.010336999, 0.0057594716, 0.0064405915, 0.023799136, 0.0017912791, 0.020500379, 0.014624049, -0.02362552, -0.027698884, 0.019071363, -0.016841028, 0.005348796, -0.007625874, -0.008694298, 0.02115479, -0.0059664785, 0.015118195, 0.012740952, 0.0048446334, -0.012086542, -0.009582425, 0.026163025, 0.009208476, 0.013375329, 0.016974581, -0.017161556, -0.0074856435, 0.0033171216, -0.021061301, -0.005936429, -0.006978142, -0.030984286, -0.021101367, -0.006490674, -0.0029114545, -0.02367894, -0.03256021, -0.020820906, -0.021942751, 0.0017086432, -0.01175266, 0.01603971, -0.006747763, 0.013041446, 0.01979255, -0.013255131, 0.006180163, 0.010757691, -0.018523796, 0.022463607, 0.04033299, -0.009615813, 0.02030005, -0.0038596806, -0.03704759, -0.002220318, 0.029248098, 0.0015934537, 0.0014857766, -0.0029615369, -0.009348707, -0.012714242, -0.020366827, 9.423831E-4, -0.0024607133, -0.012507235, 0.019418601, -0.016827673, 0.0041601746, 0.015038063, -0.0024707296, -0.008540711, -0.029541915, -0.0010700931, -0.015478788, 0.028019411, 0.031758893, -0.018550506, 0.013361974, -0.033254687, -0.0015041402, -0.0042736945, -0.03464364, -0.019712416, 0.003545831, 0.027004408, 0.016173264, 0.037154432, -0.012033122, 0.02972889, 0.010624138, 0.009762721, 0.020794196, -0.014129903, -4.2549137E-4, -0.017361885, 0.004587544, 0.026416775, 0.025228154, 0.004984864, 0.012961315, 0.009054891, 0.011538976, 0.008741041, 0.015866091, 0.007939723, -0.022957753, -0.013168322, 0.011672528, -0.031785604, 0.008527356, -0.01004986, -0.0065641277, 0.045461427, 0.0010725972, -0.005612563, -0.005105062, 0.019391889, 0.0036359793, 0.01399635, -0.027017763, 0.014864445, -0.042603392, -0.0028296532, -0.026109604, -0.018577216, -0.008834528, -0.016079776, 0.028366648, 0.006691003, -0.010043182, 0.00826025, 0.01876419, -0.0014982972, -0.021769132, 0.029461782, -0.0073520904, -0.019552153, -0.030583628, -0.0049247653, -0.035444956, 0.002787918, -0.002722811, -0.019391889, 0.004847972, -0.014397009, -0.033121135, 0.021608869, -9.3570544E-4, 0.043938924, 0.015999645, 0.029034413, 0.011685884, 0.01061746, -0.020193208, 0.0073253796, -0.009315318, -0.007378801, 0.030850733, 0.023852559, -0.009749366, -0.009522326, 0.008754397, -0.008019855, -0.025615457, -0.033468373, 0.018430308, 0.020647287, 0.024600456, -0.023104662, -0.002439011, -0.018416952, 0.01138539, -0.0025191426, -9.84953E-4, 0.009081601, -0.040787075, -0.014356943, -0.005332102, -0.0055891913, 0.009989762, 0.008013178, -0.019138139, 0.019966166, -0.01558563, 0.015492143, -0.014717536, -0.010357032, 0.02387927, -0.018603927, 0.020420248, 0.0024890932, 0.006938076, 0.0051117395, -0.007986467, -0.012099898, 0.02983573, -0.016386949, 0.020994525, -0.009275253, 0.0014999667, -0.012927926, 0.013388684, -0.0040900595, -0.007245248, -0.038436543, -0.009195121, 0.031251393, 5.16683E-4, 9.332013E-4, 0.016627343, -0.017388595, -0.0028096205, 0.016507145, -0.008039888, -0.0055658193, -0.042683527, 0.0029097851, 0.009522326, 0.0101834135, -0.006507368, 0.011358679, -0.009101634, -0.013809375, 0.013902863, -0.004423942, 0.010056538, -0.020767486, -0.029862441, -0.042095892, -0.03536482, -0.0027695545, -0.01853715, 0.0024490273, -0.0072853137, 0.0059464453, 0.0050883675, 0.011144995, -0.011892891, -2.2912679E-4, -0.022957753, -0.0072519258, 0.020700708, -0.005609224, -0.0032353203, -0.011732628, 0.019058008, 0.0059264125, -0.009535681, -0.007886303, 0.017522149, 0.028660465, -0.008587455, 0.023411833, -0.005145128, -0.018136492, -0.013275164, -0.0011059855, 0.04252326, 0.020740774, 0.01376931, -0.04193563, -0.003185238, -0.0056225797, 0.027725594, -0.021902686, -8.7393716E-4, 0.028820729, 0.02844678, 0.027752304, 0.01206651, -0.0015049749, -0.038489964, -6.2644685E-4, -0.0029899168, -0.033655345, -6.9906627E-4, 0.004764502, 0.0062870057, 0.012647465, -0.0069581093, -0.03117126, -0.005295375, -0.022383476, -0.029354941, 0.002966545, 0.017775899, 0.023144728, -0.015892802, 0.0037394827, 0.012126609, -0.0058562974, 0.007111695, -0.015759248, -0.005956462, 0.01064417, 0.015492143, 0.028767306, 0.033334818, -0.015999645, -0.01061746, 0.015385301, 0.018416952, -0.0036526734, 0.016734187, -0.02461381, -0.0036760452, -0.017041357, -0.0052452926, -0.013382006, 0.004914749, 0.02251703, -0.011779371, -0.016133197, 0.0023855898, 0.004834617, -0.0011827784, 0.0023939367, 0.009809465, -0.011131639, 0.012754307, -0.01322842, -0.011331969, 5.0833594E-4, -0.032266393, 0.017028002, 0.018203268, -0.009128344, 0.025348352, 0.013809375, -0.0013989672, 0.0031601968, 7.040745E-4, 0.012413748, -0.011278547, -4.3571653E-4, -0.00936874, 0.030343233, -0.030156258, 0.01070427, -0.036406536, 0.010537328, -0.012367004, -0.003979878, -0.009181766, 0.037314698, 0.017762544, -0.053421184, 0.0027161334, -0.020927748, -4.0712784E-4, -0.020393537, 0.0030800651, -0.02711125, -0.012039799, -0.0040800427, 0.014917865, -0.022169791, -0.03752838, 0.0013288519, -0.007752749, -0.010964698, 0.017709123, 0.16987936, -0.012480524, 0.012901216, 0.041588392, 0.018430308, 0.015024708, 0.02844678, 0.011852825, -0.012306905, 0.012233451, 0.02007301, -0.0032269733, -0.015038063, 0.0033137829, 0.016734187, -0.011732628, -0.02234341, -0.014276811, -0.025468549, -0.031358235, 0.0026677204, 5.4130686E-4, -0.018563861, -0.016306816, 0.012841117, -0.015665762, -0.014250101, 0.0068713, 0.019151494, 9.298625E-4, -0.008834528, -0.008794462, -0.0062269066, 0.011552331, -0.025562037, -0.014557272, -0.014664114, 0.015932867, 0.019672351, 0.00868762, -0.005008236, 5.7678187E-4, 3.516199E-4, -5.938933E-4, -0.0015934537, 0.03477719, -0.017989583, 0.0022520367, -0.026443485, 0.017922807, -0.037181143, -0.0023104663, 0.018123137, 0.020620577, -0.020460313, -0.0074389, 3.0821518E-4, -0.0034222945, -9.924654E-4, 0.00950897, 0.0029231403, 0.035525087, -0.037822198, 0.01379602, -0.0057728267, 0.01422339, -0.029995995, 0.01555892, 0.0037494993, -0.0274852, -0.018096427, -0.03654009, -0.015064774, 0.007004853, 0.004016605, -0.008206829, -0.003088412, -0.002472399, 0.009415483, 0.009949695, -0.035765484, 0.0021351778, 0.0021218227, -0.011912924, -0.010397098, -0.013308552, 0.026817434, -0.013876152, 0.0037895653, -0.027097896, -0.008393804, -0.017068068, -0.0055491254, 0.003966523, -0.0024289945, 0.002884744, 0.016053066, 0.029889151, -0.001774585, 0.0033438322, -0.034483373, 0.024386771, 0.018817611, -0.0028947603, -0.02842007, -0.024186442, -0.0015867761, 0.015652407, 0.029515203, -0.0109446645, -0.010584072, -0.018136492, 0.0039598453, -0.011018119, 0.00564929, 0.018390242, -0.004290389, -0.0054522995, 0.028286517, -0.027698884, 0.013422072, -0.0151849715, 0.026884211, -0.003869697, -0.014210035, -0.035765484, -0.027231447, 0.017308464, 0.009776076, -0.029061124, 0.014624049, -0.015866091, 0.01555892, 0.02262387, -0.0042403066, 0.0052219206, 0.026991053, -0.0038997463, 0.0023288296, 0.0012420425, -0.019725772, -0.010350354, -0.005048302, 0.0037895653, 0.0046543204, -0.020433603, 0.010103282, -0.008988114, -0.013215065, -0.027405066, -0.012099898, 0.004170191, 0.024747362, 0.024907626, 0.04524774, -0.009842853, -0.024573745, -0.03977207, -0.024480257, 0.037688646, -0.028339937, 0.015999645, 0.008160085, -0.005999867, -0.026844144, -0.0069046877, -0.17019989, 0.0054756715, 0.014049771, -0.02115479, 0.008754397, 0.012540623, 0.046129193, -0.011986378, 0.015412011, -0.022410186, 0.027124606, 0.0017812626, -0.04920091, 0.0012019767, 0.009268575, 0.020647287, -0.00360593, 0.02262387, 0.02478743, -0.019632285, 0.03512443, -0.0015008014, -0.012927926, -0.0057628104, 0.007792815, 0.006774474, 0.026991053, -0.0065708053, 0.007472288, -0.02486756, -0.050750125, -0.009662556, 0.010757691, 0.0064806575, -0.002285425, 0.002634332, -0.0041835466, -0.01510484, 7.049092E-4, -0.011131639, 0.02895428, 0.0013981325, 0.03119797, 3.424903E-5, 0.026056182, -0.0043137604, 0.02592263, -0.012854472, 0.019512087, -0.021074656, -0.007973111, -0.043591686, 0.0153585905, -0.009462227, -0.011372034, 0.01376931, -0.004246984, 5.5038425E-5, 0.016867738, -0.0069046877, -0.028500201, -0.014250101, 0.020727418, -0.0013321907, -0.0038663582, -0.016881093, -0.008200152, 0.0028279838, -0.028313227, 0.012326938, -0.022463607, 0.008867917, 0.012173352, 0.013215065, 0.005255309, -0.019204915, -0.039024174, 0.010043182, -5.52158E-4, 0.010884566, -0.021328408, 0.048372883, -0.022476964, 0.028046122, 0.010230157, -0.0033054356, -0.007071629, -0.0104371635, 8.9647423E-4, -0.012073187, 0.0037127722, -0.023491966, -0.041374706, 0.010744335, 0.005442283, 0.014557272, -0.0052853585, 0.005312069, 0.029061124, 0.0015174955, -0.00593309, -0.018336821, -0.0068379114, 0.021702357, 0.018724125, 0.01989939, 0.014570627, 0.015158261, 0.02259716, 0.00922851, -0.002646018, 0.0045040734, 0.027164672, 0.007318702, -0.009502293, 0.015505498, -0.02259716, -0.017108133, 0.0053187464, 0.02128834, 0.03520456, -0.004834617, -0.0062936833, 0.0043337937, -0.004724436, -0.016026355, -0.086756, 0.0027044474, 0.014143258, 0.05184526, -0.034216266, 0.026163025, -0.012246806, 0.012720919, -0.028072832, 0.029515203, 0.007225215, -0.021475315, 0.015238392, -0.010604105, 0.0097894315, -0.004954815, -0.022423541, -0.011138317, -0.020593867, 0.025148023, -0.001981592, -0.018804256, 0.013488849, -0.0014665785, -0.018750835, 0.006327071, -0.014076482, 0.024026178, 0.0125473, 0.011672528, 0.008761074, -0.016841028, 0.029167967, -0.03525798, -0.02501447, -0.015572275, -0.009101634, -0.039531674, 0.012981348, -0.050322756, -0.0021485332, 0.015291814, -0.002180252, -0.014303522, -0.008847884, -0.02277078, -0.040439837, 0.017228331, -0.002682745, -0.03760851, -0.015598985, -0.002978231, -0.025895918, -0.016280105, 0.0059431065, 0.02524151, 0.02756533, 0.004360504, -0.005766149, -0.027017763, -0.0045675114, -0.0029982638, -0.00689801, 0.02370565, 0.0052853585, 0.019151494, -0.0013321907, -0.013074835, 0.014490496, -0.035845615, -0.0023605486, 0.028019411, -0.028767306, -0.026269866, -0.021168144, 0.018804256, -0.034563504, -0.011679206, 0.014944576, -0.049013935, 0.004724436, -0.033949163, 1.1936296E-4, -0.015679117, 0.027204737, 0.013081512, 0.028740596, -0.0057327608, -0.0026810756, -0.03742154, 0.0047745183, 0.018229978, -0.008420514, 0.007619196, -0.013942929, 0.02123492, 0.017201621, -0.007332057, -0.0069180434, 0.009983083, -0.0040299604, 0.0076726177, -0.06907359, 0.0274852, -0.027431777, -0.010744335, -0.0045241066, -0.017188266, 0.006180163, -0.0055324314, 0.008941371, 0.018804256, -0.0042035794, 0.011445489, -0.004834617, 0.0027979345, 0.007839559, 0.0062936833, 0.0048012286, -0.005392201, 0.009782754, 0.012420425, -0.006637582, 0.016360238, 0.02032676, 0.012934604, 0.007832881, 0.025655523, 0.0072986693, 0.020727418, -0.015759248, -0.0056159017, 0.03250679, -0.014851089, 0.0041468195, 0.0036927394, -0.0040266216, -0.027458489, -0.017482081, -7.6333864E-4, 0.0058997017, 0.00803321, -0.010156702, -0.03194587, 0.0060065445, -0.019672351, -0.0063203936, 0.0042837113, -0.02234341, 0.019552153, 0.012206741, 0.011559009, 0.03512443, 0.0011377042, -0.0018897743, -0.019178204, 0.017134845, -0.031064417, 0.050910387, 0.0023555404, -0.0057394383, -0.01845702, 0.008974759, 0.005044963, 0.010350354, -0.0302631, -0.012801051, 0.0029615369, -0.0012303566, -0.009094956, 0.0036693676, -0.035444956, -0.014704181, -0.0057360996, 0.012720919, 0.036486667, 0.021141434, 0.019685706, -0.007305347, 0.0028062814, -9.05656E-4, 0.015866091, 0.018136492, -0.006811201, -0.035792194, 0.02325157, 0.011572364, 0.030663759, -0.0024072921, 0.0279927, -1.961559E-4, 0.0050950455, -0.021074656, 0.010824467, 0.017094778, 3.9565063E-4, 0.013382006, 0.011986378, -0.007058274, -0.015799316, -0.009882919, 0.03344166, -0.014517207, -0.008240217, -0.00982282, -0.0069514313, -0.019058008, 0.0013422072, -0.017468726, -0.02478743, 0.0113386465, 0.016306816, 0.030369943, 0.01876419, -0.021168144, 0.013916219, -0.0428705, 0.021835908, -0.015959578, -0.004263678, -0.0058295866, 0.039985757, 0.007852914, 0.0139829945, 0.0279927, -0.003829631, 0.046423007, 0.004036638, 0.017295107, -0.030503497, 0.00406001, 0.0012637449, 0.003983217, 0.009756044, -0.01064417, 0.00590638, 0.0028463474, -0.003659351, -0.0059230737, 0.03971865, -0.015852736, 0.066936746, 0.0019064685, -0.0035391534, 0.011425456, -0.009402128, 0.0032520145, 0.023158083, 0.014397009, -0.012533945, -0.0038229534, 3.0425034E-4, -0.011011441, 0.0061868406, -0.02143525, -0.0031134533, 0.0029164627, 0.018176557, -0.005769488, -0.005292036, -0.026857499, -0.008453902, -0.007398834, 0.017094778, -0.007812848, -0.020193208, -0.0077727824, 0.021328408, -0.014210035, -0.009796109, -0.041588392, 0.0028713886, -0.022049593, -0.01445043, 0.008073276, 0.021889329, 0.010530651, -0.01115835, 0.0059664785, 0.015171616, 0.011859503, -0.023545386, 0.002066732, -0.023118017, 0.006043271, 0.022436896, -0.010430486, -0.0014548926, -0.03969194, -0.013715888 ], + "id" : "81bb5d75-16f0-4664-8e2b-7bcd1f1ade62", + "metadata" : { + "source" : "movies.csv" + } + }, + "d278604a-4c4e-443a-9f13-a469df2742c7" : { + "text" : "31,10486,Andy Serkis-Jason Clarke-Gary Oldman-Keri Russell-Toby Kebbell-Kodi Smit-McPhee-Kirk Acevedo-Nick Thurston-Terry Notary-Karin Konoval-Judy Greer-Jon Eyez-Enrique Murciano-Doc Shaw-Lee Ross-Keir O'Donnell-Kevin Rankin-Jocko Sims-Al Vicente-Matthew James-Richard King-Scott Lang-Deneen Tyler-Mustafa Harris-Lombardo Boyar-Mike Seal-J.D. Evermore-Chase Boltin-Michael Papajohn-Thomas Rosales Jr.-Carol Sutton-Christopher Berry-Sergio Kato-Michael Bloomberg-James Franco-Santana Draper-Monica Rene'e Anderson-John L. Armijo-Joe Bravo-Steve D'Assis-Mike R. Moreau-Jazzy Ellis-Lucky Johnson-Allyson Leigh Jordan-Angela Kerecz-Bobby Kerecz-Anthony A. Kung-Richie J. Ladner-John R Mangus-John Parsons-Mel Powell-Carl Joseph Schreiber-Timothy Wyant-Lynnanne Zager-Barack Obama,dystopia-post-apocalyptic future-animal attack-leader-colony-forest-sequel-woods-ape-scientist-monkey-medical research-plague-2030s,/kScdQEwS9jPEdnO23XjGAtaoRcT.jpg,/zlU8BIkgY7E6SMfD3USTWC6bchL.jpg,61791-281338-127585-137113-91314-58087-124905-98566-118340-100402-198663-240832-122917-76338-102382-135397-49679-57158-49521-131631-99861\r\n18239,The Twilight Saga: New Moon,Adventure-Fantasy-Drama-Romance,en,Forks Washington resident Bella Swan is reeling from the departure of her vampire love Edward Cullen and finds comfort in her friendship with Jacob Black a werewolf. But before she knows it she's thrust into a centuries-old conflict and her desire to be with Edward at any cost leads her to take greater and greater risks.,62.993,Summit Entertainment-Maverick Films-Imprint Entertainment-Sunswept Entertainment-Temple Hill Entertainment,11/18/09,50000000,709827462,131,Released,The Next Chapter Begins.,6,8301,Kristen Stewart-Robert Pattinson-Taylor Lautner-Dakota Fanning-Michael Sheen-Ashley Greene-Rachelle Lefevre-Billy Burke-Peter Facinelli-Elizabeth Reaser-Jackson Rathbone-Kellan Lutz-Nikki Reed-Edi Gathegi-Graham Greene-Gil Birmingham-Anna Kendrick-Michael Welch-Justin Chon-Christian Serratos-Jamie Campbell Bower-Christina Jastrzembska-Russell Roberts-Christopher Heyerdahl-Curtis Caravaggio-Daniel Cudmore-Charlie Bewley-Chaske Spencer-Adrien Dorval-Michael Adamthwaite-Alexander Mendeluk-Hunter Jackson-Gavin Bristol-Sean McGrath-Tyson Houseman-Kiowa Gordon-Alex Meraz-Bronson Pelletier-Tinsel Korey-Corinna Russo-Maria Grazia Pompei-Roberto Marchetti-Alessandro Federico-Justine Wachsberger-Cameron Bright-Noot Seear,moon-based on novel or book-vampire-teen movie-werewolf-interspecies romance-based on young adult novel-supernatural power-good versus evil-vampire human love,/j5jM5pq78ObAXX1WhTsb115EkLl.", + "embedding" : [ 0.023106849, -0.032967217, -0.013456422, -0.035080153, -0.031558592, 0.048462078, -0.0074562253, -0.0097249225, -0.02195557, -0.04388405, 0.024529018, 0.029418567, 0.016754497, -0.012562487, 0.001237625, 0.00288497, 0.014722829, -0.019923901, 0.0154271405, -0.032777593, -0.0032489775, 0.014695739, -0.015454229, 0.011587285, 8.16477E-4, 0.020601124, 0.027102465, -0.009027383, -0.01782451, -0.011390891, 0.016172085, -0.020113524, -0.0048387586, -0.022416081, -0.018149577, 0.004439197, 0.008235032, -0.027847411, 0.016591964, -0.014208139, 0.01557613, 0.01035474, -0.013869528, -0.032994304, -0.01645652, -0.0012410112, 0.014641562, -0.012068114, -0.008268893, 0.028172478, 0.019964535, 0.03237126, -0.0288497, -0.017147288, -0.0073681865, 0.0120816585, -0.019124778, -0.005675129, 5.6378817E-4, -6.359547E-5, 0.013280343, -0.01706602, -0.019747823, -0.02283596, -0.013849211, -0.010436007, -0.025070796, -0.00617966, -0.010510501, -0.0018437397, 0.025179151, 0.0049877474, 0.021400247, 0.005113034, 0.011560197, -0.038303733, -0.009332133, -0.0052552507, -0.0036299154, -0.008384021, 0.0050385394, -0.009521755, -0.018081855, 0.005089331, 0.0033911944, 0.008858077, -0.02410914, 0.01235932, -0.039062224, 0.012521854, 0.002084154, 0.037734866, 0.00511642, 0.0129688205, -8.905483E-4, 0.02396015, -0.010666262, 0.029526923, -0.03591991, -0.023973694, -0.0017421562, -0.010727213, -0.0045238496, -0.013226165, -0.011763364, -0.0038940324, -0.0048658475, -0.002471864, 0.032940127, 0.019842634, 0.002322875, -0.013801805, 0.016537786, -0.04615952, -0.018596545, -0.015007262, 0.020397957, -0.029933257, -0.018000588, -0.01391016, 0.035053063, 0.038385, 0.006321877, -0.043044295, 0.041039716, 0.041391872, -0.004649136, -0.0150343515, 2.793545E-5, -0.0051367367, 0.005214617, -0.01694412, 0.031612772, 0.01269116, -0.02313394, 0.046322055, -0.018393377, 0.00558709, -0.011282535, -0.00746977, 0.029716546, 0.03787031, -0.03256088, -0.007300464, -0.017661976, 0.0074223643, 0.010869429, 0.0013341294, 0.013503827, 0.0043105246, 0.02259216, 0.027156644, 0.021982659, 0.017485898, 0.010706896, -0.0067586857, 0.010266701, 0.006332035, -0.01235932, -0.016564876, -0.016348165, -0.00671128, -0.0077135703, -0.02134607, 0.0010818638, 0.017079564, 0.017269187, -0.018555911, -0.0010700123, -0.008356933, -0.018325655, 0.03088137, -0.038574625, 0.017607799, -0.003938052, 0.017512986, 0.009311817, -0.010022901, -0.029635279, -0.017350454, 0.01278597, 0.002295786, 0.031910747, 0.041798204, -0.0150343515, 0.011797225, 0.03234417, -0.022903683, 0.024244584, -0.0042123273, 0.007293692, 0.022863049, 0.006657102, -0.012142609, -0.6280295, -0.023391284, 0.0058444347, 0.0024210722, 0.012650526, 0.0137543995, 0.0086819995, -0.009650428, -0.019070601, -0.015142707, -0.02058758, 0.021942025, 0.01360541, -0.0077203424, -0.019219588, -0.008783583, -0.0028460298, -0.02219937, 0.021007458, 0.0032405122, -0.024854084, 0.016009552, 0.021630503, -0.013517371, 0.013686677, -0.0026276254, -0.012955276, -0.01684931, 0.008519466, 0.007916737, -0.010788163, 0.019680101, 0.0077000256, 0.011506019, 0.037166, -0.0031575523, -0.016402341, 0.030149968, 0.018081855, 0.024407119, -0.040281225, -0.0044527412, -2.7596837E-4, 0.006000196, -0.031016814, 0.026154352, 0.0024464682, 0.003440293, -0.013388699, -2.7067758E-4, -0.0029357618, 0.010822024, 0.0029459202, -0.020438591, -0.003707796, 0.0014975094, 0.014004972, -0.046755478, 0.021142902, 0.010957468, -0.01557613, 0.0070498916, 0.014831184, 0.0134293325, -0.011404436, 0.034565464, 0.006115324, 0.0027766144, 4.727863E-4, -0.039468557, 0.014831184, 0.014614473, -0.011275764, 0.001528831, -0.007002486, -0.0024193793, 0.050872993, 0.014262317, 0.010070306, 0.012704704, -0.004141219, -0.002035055, 0.001354446, 0.004063338, 0.024786362, -0.009765556, -0.032831773, 0.002791852, 0.013016227, -0.0042902078, 0.009582706, 0.010327651, 0.0013950794, 3.6845164E-4, -0.010943924, 1.387249E-4, -0.0022839347, 0.0012384716, 0.023919517, -0.06100425, -0.012122292, -0.023702806, 0.022863049, -0.018447556, 0.023431916, 0.017472355, -0.0071108416, -0.022063926, 0.03489053, -0.022036837, -0.0091696, 0.004848917, -0.019124778, -0.0025666752, -0.0141133275, -0.024759274, 0.021698225, 0.017567165, -0.010923607, -0.009454033, 0.0032557496, 0.021237714, 0.0055024372, -0.009406628, 0.013869528, 0.021969115, -0.0129349595, -0.009000294, 0.007002486, -0.00529927, 2.7046594E-4, -0.009345678, 0.03421331, -0.02584283, 0.009454033, 0.010869429, 0.02748171, -0.0021925096, 0.016835764, 0.0033353234, -0.015535496, -1.2645024E-4, -0.022483805, -0.012921415, 1.0369978E-4, -0.0068331803, -0.028551722, -0.0018589773, -0.008560099, -0.009000294, -0.0024278446, 0.018325655, 4.986054E-4, 0.0034910848, 0.007821926, -0.001059854, -0.028253745, -0.011180952, 0.0013781488, -0.016442975, 0.005062242, 0.020032257, -0.015982464, -0.0076255314, 0.016470063, -0.0061017796, -0.007219197, 0.012474448, 0.0014035447, -0.013199077, 0.019409211, 0.0010937152, 0.0055193678, 0.010273473, -0.01657842, 0.020438591, -0.009277956, 0.022063926, 8.1351417E-4, 0.0058681373, 0.0014797323, 0.008979977, -0.016483609, -0.010957468, 0.03163986, 0.026926387, 0.01454675, -0.01348351, 0.01430295, -4.306715E-5, -0.012291598, -0.002239915, -0.0042258715, 3.5469557E-4, 0.015318785, 0.016808676, 0.006491183, -0.006264313, -3.0686668E-4, -0.011715958, 0.046051167, 0.0075781257, 0.011404436, -0.017838055, 0.010198979, -0.036272064, 0.0055803177, -0.028172478, 0.004442583, -0.0019182342, 0.025260419, -0.0039041906, -0.013320977, 0.0061085518, 0.005383923, 0.03188366, -0.004936956, 0.0072530587, -0.010524046, -0.002206054, -0.00247525, -0.025910553, 0.020276057, 0.018474644, -0.017255643, 0.0041581495, 0.0152916955, -0.013700222, -0.005854593, -0.0064302324, -0.021887848, -0.004591572, -3.773402E-4, 0.01317876, -0.0070905252, -0.0129349595, 0.023892429, -0.019842634, 0.02912059, -0.014411306, -0.015968919, 0.026316887, 0.015210429, -0.010178662, 0.021657592, -0.0044899886, 0.008797127, 0.017445264, -0.007246286, 0.027441077, -0.02283596, 0.02110227, 0.0059832656, 0.005817346, 0.0028104756, -0.0029256034, 0.0089054825, 0.0044493554, 0.021048091, 0.018731989, 0.015454229, -0.009603023, 0.018880978, -0.004561097, 0.010442779, 0.014533206, -0.016876398, 0.0026581003, -0.0051062615, -0.04166276, -0.022781782, -0.013138127, -0.0034843124, 0.018352743, -0.013388699, -0.006318491, -0.009603023, 0.015454229, 0.01248122, 0.022036837, -0.0014848114, -0.03185657, 0.00835016, 0.01867781, -0.00980619, -0.028226655, -0.0058681373, -0.020086436, -0.026371064, -0.012846921, -0.012914643, 0.029662369, -0.024529018, 0.0049301838, -0.015833475, 0.006034057, 0.015169796, -0.021332525, 0.016483609, 0.019409211, -0.020167701, 0.025910553, -0.008966433, -0.0033099274, 0.012948504, -0.015007262, -0.015020806, 0.0021721928, -0.0064505492, -0.0035791236, -0.002471864, 0.007923509, -0.041744027, -0.0065758354, -0.008756493, -0.001880987, -0.010733985, -0.0019233134, 0.009785873, -0.014140417, -0.010442779, -0.03136897, -0.02134607, -0.0048015113, 0.09329424, 0.037301444, 0.007151475, 0.01684931, -0.008756493, 0.015860563, -0.01730982, -0.0050859447, -0.0032405122, -0.015318785, 0.023106849, -0.02635752, 0.012704704, 0.011147091, 0.0106798075, -0.0022145193, -0.011126774, -0.015454229, -0.0090070665, -0.009338905, -0.019896813, -0.02987908, 0.023865338, 0.028687168, 1.3819583E-4, -0.0137205385, 0.021481514, 0.008065727, -0.0090070665, 0.0071921083, -0.01393725, 0.005001292, -0.0063625104, 0.021183535, 0.007232742, 0.011621147, 0.025924098, 0.010171889, 0.03163986, -0.009095105, 0.0058342763, 0.015115618, 0.0130026825, -0.011892037, 0.014370672, -0.03269633, -0.015521952, 0.031829484, 0.042096183, -0.025124975, 0.014831184, 0.011560197, -0.027346266, 0.0030288799, 0.003470768, 0.0047507193, 0.004215713, -0.007991232, -0.023973694, 0.017567165, -0.003738271, -0.02809121, 0.007916737, -0.014208139, -0.017269187, -0.0188268, -0.0047405614, 0.002793545, -0.032019105, -0.0018911452, 0.0073072365, -0.014397762, -0.002267004, -0.0036299154, 0.01311781, -0.004144605, 0.026587775, -0.028660078, 0.016591964, 0.015603218, -0.045807365, -0.0125760315, 0.013503827, -0.0070498916, -0.015901197, 0.007916737, -0.010361512, 0.015521952, 0.0012655605, 0.0011529722, -0.014817639, 0.021224169, -0.030935548, -0.018501732, 0.035567753, 0.010341195, 0.016889943, 0.003968527, 0.0058681373, 0.007449453, 0.0040057744, -0.02890388, -0.0053568343, -0.030231236, -0.014912451, -0.00722597, -4.351158E-4, -0.0019283926, -0.019124778, -0.018095398, -0.03134188, -0.015982464, 0.0032709872, -8.5711037E-4, 0.008749722, -0.009020611, 0.01594183, 0.005194301, -0.004791353, 0.008966433, 0.0063760546, -0.010571451, 0.034457106, 0.017838055, -0.0068941303, 0.043017205, 0.009257639, -0.004181852, 0.0096572, 0.029960347, -0.024095595, 0.010882974, -0.021305436, 0.007212425, -0.01721501, -0.02134607, 0.013375155, 0.0059257015, -0.009609794, 0.023526728, -0.005912157, 0.0035452626, -0.004059952, -0.0054313284, -0.005444873, -0.029283123, 0.0011834472, -0.00337765, 0.013497055, 0.033292282, -0.011763364, -0.0074833143, -0.018637178, -0.009907773, 0.0062778573, -0.034673817, -0.014126873, -5.3331314E-4, 0.034998886, 0.0035520347, 0.038032845, -0.016713865, 0.0276307, 0.002649635, 0.003033959, 0.020181246, -0.02317457, -0.0029543855, -0.034782175, -0.0063489657, -0.010815252, 0.01730982, 0.002829099, 0.011688869, 0.02383825, 0.0288497, 0.0019791843, 0.011492475, -0.0094134, -0.017743243, -0.030773014, -0.0025632891, -0.024637373, 0.0037213406, -0.017350454, -0.021779492, 0.03258797, 0.00959625, -0.005048698, -0.02368926, 0.032425437, 0.0049843616, 0.024271673, -0.030556303, 0.014519662, -0.014844729, 0.0017540077, -0.018501732, -0.008025093, 0.0058105737, -0.010822024, 0.028985145, 0.007259831, -0.012650526, -0.0024312306, 0.03269633, -0.00552614, -0.022158736, 0.034673817, -0.022998493, -0.0058782957, -0.027847411, -0.016646141, -0.02809121, -0.021806581, -0.009095105, -0.012921415, 0.002177272, -0.02684512, -0.03307557, 0.034050774, -0.011268991, 0.04185238, 0.017363999, 0.0476765, 0.01782451, 0.014479028, -0.014411306, 0.018962245, -0.004412108, -0.011573741, 0.011980075, 0.018000588, -0.017851599, -8.2748185E-4, 0.01405915, -0.01885389, -0.033481907, -0.039874893, 0.025043707, 0.022822415, 0.013625727, -0.026371064, -3.0390383E-4, -0.02611372, 0.016591964, -0.012041025, 0.019124778, 0.014871818, -0.022632793, -0.010469868, -0.004784581, 0.0013747627, 0.010388602, 0.0076390756, -0.025395863, 0.016930576, -0.021007458, 0.0071921083, -0.0037247266, -0.014397762, 0.038059935, -0.0182173, -0.0024498543, 0.002143411, 0.005851207, 0.0191925, 0.0022280638, -0.004923411, 0.032425437, -0.01609082, 0.03770778, 6.171195E-4, 0.007564581, 0.010788163, 0.018975789, -0.01618563, -0.008925799, -0.01606373, 0.002024897, 0.032208726, 0.0062710852, 0.011086141, 0.006765458, -0.01791932, -0.010822024, 0.015860563, 0.012948504, 0.017147288, -0.02863299, 0.016876398, -0.012088431, 0.004300366, -0.008133449, 0.006081463, -0.0052823396, -0.0012181549, 2.4760966E-4, -0.004188624, -0.018054767, -0.011986847, -0.015264607, -0.028172478, -0.02660132, -0.012352548, -0.016388796, 0.0059561767, -0.012630209, -0.012548943, -0.0065792217, -0.013192304, -4.1733868E-4, -0.011729503, -0.025287507, -0.002468478, 0.022768239, -0.006525044, -8.664222E-4, -0.010469868, 0.02687221, -0.010077079, -0.013192304, -0.0057868706, -7.8430894E-4, 0.026127264, -0.018596545, 0.008607505, -0.0011182645, -0.026465876, -0.022185827, 0.015129162, 0.02699411, 0.015521952, 0.0025175766, -0.018515278, -0.015738662, -0.008492377, 0.029635279, 0.0048692334, -2.6707983E-4, 0.021847215, 0.014519662, 0.031558592, 0.032425437, -0.002229757, -0.020899102, -0.0019334718, -0.019680101, -0.030285414, -0.0064539355, -8.1224437E-4, 0.014831184, 0.0019080759, -0.006359124, -0.020208335, -0.007273375, -0.010557907, -0.031179348, 0.0030644343, 0.033752795, 0.032262906, 0.009975495, 0.009406628, -0.005113034, -0.002617467, 0.002531121, -0.01248122, -0.012284826, 0.028009944, 0.028443366, 0.029472746, 0.017418176, -0.029662369, 0.004848917, 0.017160831, 0.031179348, 0.008146993, 0.018542366, -0.016781587, -0.0113638025, -0.0027512186, -0.0019842635, -0.016619053, -4.1691543E-4, 0.022185827, -0.03613662, 0.0040802686, 0.0054685757, 0.025165608, -0.013307433, 0.011932669, 0.02863299, -0.010524046, 0.008539782, -0.00971815, -0.024312306, 0.0011233437, -0.037789043, 0.021914937, 0.010761074, 0.010815252, 0.030339591, 0.007205653, -0.017296275, 0.017661976, -0.0059290878, 0.009203461, -0.012013936, 0.009433717, 0.01518334, 0.022212915, -0.012867237, 0.012623437, -0.035053063, 0.012643754, -8.5584057E-4, 0.0076797092, 0.004500147, 0.026804486, 0.008783583, -0.05268795, 0.0076255314, -0.01679513, 0.0073952754, -0.0048793918, -5.6378817E-4, -0.03543231, 0.011214813, -0.008011549, -0.006325263, -0.017133743, -0.020208335, 0.013253255, -0.015332329, -0.018149577, 0.004618661, 0.19460681, -0.0024210722, -8.913948E-4, 0.053310998, 0.013348065, 0.011445069, 0.02149506, 0.013381927, -0.0039888434, 0.010049989, -6.696043E-4, 0.0070160306, 0.0067519136, 0.004500147, 0.026316887, -0.023161028, -0.029581102, -0.01305686, -0.007876104, -0.034159128, -0.009799417, 4.765957E-4, -0.0034487583, -0.030014524, 0.009955178, -0.008113132, -0.012616665, 0.019842634, 0.014953084, 0.019842634, -0.007889648, -0.012244192, -3.4728844E-4, -0.0064268466, -0.021386703, -0.0069178334, 0.0105443625, 0.001940244, 0.005417784, 0.011424752, -0.01123513, -0.014018517, -0.02261925, -0.016023098, -0.0013104265, 0.031314794, -0.028876789, -0.005827504, -0.024705095, 0.01730982, -0.042963028, -8.913948E-4, 0.011668553, 0.016510697, 6.200823E-4, -0.0014018517, 0.0030949092, 0.009433717, -0.005617565, 0.011810769, 0.017594254, 0.02559903, -0.034267485, 0.022890138, 0.009528528, 0.019869724, -0.029228946, -0.006934764, 0.014749917, -0.034863442, -0.008830988, -0.019991623, -0.0141133275, 0.01767552, -0.0019741051, -0.022551527, 0.0036942516, 0.015657397, 0.0058410484, 0.021278348, -0.029987436, -0.029201856, 0.023784073, -0.019002877, -0.024380028, -0.022118105, 0.015372963, -0.025504218, -0.00558709, -0.0113638025, -0.011709186, -0.022023292, -0.0029205242, -0.007259831, -0.006034057, -0.012000392, 0.014167505, 0.009650428, -0.0027478323, -0.0064539355, -0.029635279, 0.026222076, 0.01758071, -0.010388602, -0.035567753, -0.008607505, -0.003116919, 0.0014958164, 0.024285218, -0.016158542, -0.016510697, -0.025057252, 0.0032252746, -0.0038737156, 0.006731597, 0.020641757, 0.005383923, -0.023269383, 0.033265196, -0.02144088, 0.013409016, -0.01442485, 0.027386898, -0.0045373943, -0.007815153, -0.037843224, -0.03914349, -0.0015085143, -0.013063632, -0.03218164, 0.01618563, -0.025734475, 0.013673133, 0.0030254938, 0.004141219, -0.0027613768, 0.029066412, -0.0030949092, 0.015345873, 0.002029976, -0.0047473335, -0.0015483011, 0.011973303, 0.007740659, -5.908771E-4, -0.034050774, 0.0040057744, 5.4008537E-4, -0.016117908, -0.027427532, -0.031612772, 0.0021332526, 0.009894229, 0.008397565, 0.044507097, 0.0044866027, -0.02396015, -0.03218164, -0.016253352, 0.04613243, -0.050277036, 0.022212915, 0.018352743, -0.02696702, -0.028768433, 0.0012206945, -0.17293566, 3.2760663E-4, -0.0056920596, -0.040227048, 0.02098037, 0.01657842, 0.019883268, -0.0074020475, -4.960659E-4, -0.024637373, 0.026398154, 0.0153594185, -0.04136478, -0.007849014, 0.0070837527, 0.010618857, -0.009359222, 0.035594843, 0.014262317, 0.0035351042, 0.051821105, -0.0017074485, -0.027711965, -0.016293986, 0.02186076, 0.004618661, 0.026181443, 0.016388796, 0.01430295, 0.0011208041, -0.04418203, -0.0052484786, 0.0133616105, 0.008302754, -0.0053297454, 1.6655454E-4, -0.005729307, -0.014072695, 5.659045E-4, -0.010842341, 0.04388405, 0.0024769432, 0.011743047, 0.017323365, 0.02070948, 0.0017404632, 0.039360203, -0.022768239, 0.01135703, -0.00877681, -0.0032185025, -0.024840541, 0.019774912, -0.014330039, 0.0067485273, 0.033969507, 0.011919125, 0.005915543, -0.008607505, -0.0071582473, -0.029445658, -0.006497955, -0.009203461, -0.00317279, -0.0026513282, -0.0048116697, -0.01445194, 0.014560295, -0.025273964, 0.012738565, -0.026425242, 0.027156644, 0.0057733264, 0.009684289, 0.0067553, -0.026045997, -0.041527316, 0.025097886, -0.0047236304, -0.0014788858, -0.0075713536, 0.03770778, -0.013463194, 0.01985618, 0.003731499, -0.01072044, 0.00417508, 9.412342E-5, -0.0023008652, 0.0015152865, 0.0063489657, -0.023878884, -0.03440293, 0.0033725707, 0.0037145682, 0.009440489, -0.0062033627, 0.011147091, 0.02317457, -0.0028341783, 0.007435909, -0.0046999278, -0.012041025, 0.018257933, 0.029987436, 0.004730403, 0.022416081, 0.023973694, 0.0075171757, -3.1639014E-5, -0.016903486, 0.004208941, 0.023756983, 0.0070498916, -0.030827193, 0.01721501, -0.014519662, -0.030231236, -0.005817346, 0.026045997, 0.049843613, -0.004903095, 0.01603664, -0.015494863, -0.004859075, -0.010998102, -0.08890584, 0.006213521, -0.0071311584, 0.03562193, -0.03684093, 0.03337355, -0.012223875, 0.019761369, -0.025761563, 0.026547143, 7.253693E-5, -0.024786362, 0.01554904, -0.0040768827, -0.0064505492, 9.091719E-4, -0.018813256, -0.013205849, -0.011939442, 0.027793232, 0.0085465545, -0.006365896, -0.006609697, -0.006657102, -0.030529214, 0.026899299, -0.03340064, 0.023892429, 0.014357128, 0.006067918, 0.0037044098, -0.032019105, 0.014682195, -0.027048288, -0.033319373, -0.018840345, -0.01657842, -0.029337302, 0.0027156642, -0.056019887, 0.008641366, 0.013977883, 0.0071040695, -0.017391087, -0.01934149, 0.011837859, -0.04686383, 0.014506117, -0.005736079, -0.029581102, -0.003113533, -0.010077079, -0.03662422, -0.012853693, 0.025869919, 0.017499443, 0.021765947, 0.014533206, -0.009128966, -0.012548943, 0.002614081, 0.005333131, -0.021535693, 0.015413596, -0.0017421562, 0.016740954, -4.3172968E-4, -0.00992809, 0.013334521, -0.016930576, -0.027346266, 0.021454426, -0.030529214, -0.013097493, -0.016470063, 0.010876202, -0.011925898, -0.014777007, 0.022307726, -0.022700517, -0.0021637275, -0.03266924, 0.020452136, -0.012284826, 0.01970719, 0.010842341, 0.017418176, 0.003206651, 9.4134E-4, -0.03261506, -0.0010987944, 0.015792841, 0.015237518, -0.0067146663, -0.009623339, 0.021156447, 0.014777007, 0.017038932, 0.014898906, -0.005797029, -0.015725119, 0.011600831, -0.08018321, 0.039333113, -0.020397957, -0.015765753, -0.015847018, -0.008573644, 0.0043308414, 0.0014653413, -0.012630209, 0.025490675, -0.0036705488, 0.0076593924, -0.015115618, 0.010131257, -0.01311781, 0.004059952, 0.0050656283, -0.014777007, 0.0033014622, -0.0018437397, -0.0042834356, 0.02146797, 0.011282535, 0.016212719, -0.008052181, 0.0130704045, 0.00835016, -0.0028578811, -0.025490675, -0.017838055, 0.028470457, -0.026343975, 0.007415592, 0.022443172, -0.004534008, -0.03112517, -0.007733887, 0.021400247, 0.013409016, 0.008025093, -0.022524437, -0.014953084, -8.5584057E-4, -0.015088529, -0.022483805, 0.0065487465, -0.009420172, 0.006504727, 0.0097587835, 0.012562487, 0.012589576, 0.012989137, -0.011546653, -0.012332231, 0.0076932535, -0.022456715, 0.05095426, 0.011323169, 0.0010708589, -0.016348165, 0.022063926, 0.0014644947, 0.011912353, -0.027102465, 0.019057056, 0.008201171, 0.022646338, -0.0032303538, 0.01594183, -0.035486486, -0.02332356, -0.008871621, 0.015210429, 0.021549236, -0.0026902684, 0.013381927, 0.0047168583, 0.002795238, -0.004313911, 0.019937446, 0.021291891, -0.012244192, -0.031802393, 0.022267092, -0.008932572, 0.0025378934, 0.0076932535, 0.025043707, 0.020939736, 0.008560099, -0.0018183438, 0.013083949, 0.022361904, 0.0014653413, 0.003123691, 0.008688771, -0.029987436, 0.0036840932, 0.013341294, 0.02748171, -0.01718792, -0.003558807, -0.0051638256, -0.014330039, -0.02171177, 0.007991232, -0.018108943, -0.012819832, 0.00681625, 0.017269187, 0.035811555, 0.007212425, -0.012603121, 0.010977785, -0.03586573, 0.010530818, -0.0010031366, -0.010192206, -0.018041221, 0.027292088, 0.012095204, 7.961603E-4, 0.028768433, -0.009643656, 0.04144605, 0.0063489657, 0.012806287, -0.01934149, 0.006880586, 0.012758882, -0.0085465545, -0.015955374, -0.021359615, 0.009487894, -0.014032061, -0.010449551, 0.0070566637, 0.028226655, -0.008011549, 0.06994359, 0.024745729, -0.0020333622, 0.014506117, -0.017594254, 0.030610481, 0.020546947, 0.024312306, -0.018325655, -8.3721697E-4, 0.0070092585, -0.021142902, 0.012860465, -0.04095845, -0.0023872112, 0.008966433, 0.02022188, 0.010361512, -0.0048421444, -0.022673426, -0.0076323035, -0.002590378, 0.020695936, 0.012867237, -0.010151573, -0.008004776, 0.031829484, 0.0018996106, 0.0035994404, -0.03312975, 0.008404338, -0.026465876, -5.430482E-4, -0.0013459808, 0.023716351, -0.0066672605, -0.006552133, 0.0023719736, 0.019111233, -0.005827504, -0.016591964, -0.010788163, -0.022727605, -0.0038466267, 0.035757374, -0.025436496, 0.0014983559, -0.028768433, -0.016632598 ], + "id" : "d278604a-4c4e-443a-9f13-a469df2742c7", + "metadata" : { + "source" : "movies.csv" + } + }, + "effc05a5-c9d6-4d0c-bf28-bfe08142dd6b" : { + "text" : "6,18819,Chris Hemsworth-Tom Hiddleston-Cate Blanchett-Tessa Thompson-Jeff Goldblum-Idris Elba-Karl Urban-Mark Ruffalo-Anthony Hopkins-Benedict Cumberbatch-Taika Waititi-Rachel House-Clancy Brown-Tadanobu Asano-Ray Stevenson-Zachary Levi-Stan Lee-Georgia Blizzard-Amali Golden-Luke Hemsworth-Sam Neill-Matt Damon-Charlotte Nicdao-Ashley Ricardo-Shalom Brune-Franklin-Taylor Hemsworth-Cohen Holloway-Alia Seror-O'Neill-Sophia Laryea-Steven Oliver-Hamish Parkinson-Jasper Bagg-Sky Castanho-Shari Sebbens-Richard Green-Sol Castanho-Jet Tranter-Samantha Hopper-Eloise Winestock-Rob Mayes-Tahlia Jade-Winnie Mzembe-Sean Edward Frazer-Connor Zegenhagen-Tracie Filmer-Tracey Lee Maxwell-Beatrice Ward-Donnie Baxter-Greta Carew-Johns-Mollie McGregor-Sophia McGregor-Scarlett Johansson-Katie Anderson-Ash Ricardo-Sam Hargrave-Garreth Hadfield,sequel-superhero-based on comic-alien planet-female villain-norse mythology-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-norse god-loki,/rzRwTcFvttcN1ZpX2xv4j3tSdJu.jpg,/kaIfm5ryEOwYg8mLbq8HkPuM1Fo.jpg,76338-315635-283995-284054-271110-10195-299536-99861-284052-102899-363088-100402-118340-24428-10138-141052-1726-1771-68721-297762-299537\r\n1895,Star Wars: Episode III - Revenge of the Sith,Adventure-Action-Science Fiction,en,The evil Darth Sidious enacts his final plan for unlimited power -- and the heroic Jedi Anakin Skywalker must choose a side.,38.242,Lucasfilm,5/17/05,113000000,850000000,140,Released,The saga is complete.,7.398,12206,Hayden Christensen-Ewan McGregor-Natalie Portman-Ian McDiarmid-Samuel L. Jackson-Jimmy Smits-Frank Oz-Anthony Daniels-Christopher Lee-Keisha Castle-Hughes-Silas Carson-Jay Laga'aia-Bruce Spence-Wayne Pygram-Temuera Morrison-David Bowers-Oliver Ford Davies-Ahmed Best-Rohan Nichol-Jeremy Bulloch-Amanda Lucas-Kenny Baker-Peter Mayhew-Rebecca Jackson Mendoza-Joel Edgerton-Bonnie Piesse-Jett Lucas-Tux Akindoyeni-Matt Rowan-Kenji Oates-Amy Allen-Bodie Taylor-Graeme Blundell-Trisha Noble-Claudia Karvan-Keira Wingate-Hayley Mooy-Sandi Finlay-Katie Lucas-Genevieve O'Reilly-Warren Owens-Kee Chan-Rena Owen-Christopher Kirby-Matthew Wood-Kristy Wright-Coinneach Alexander-Mousy McCallum-Michael Kingma-Axel Dench-Steven Foy-Julian Khazzouh-James Rowland-David Stiff-Robert Cope-George Lucas-Nick Gillard-Aidan Barton-James Earl Jones-Ben Cooke-David Acord-Paul Bateman-Ross Beadman-Jerome St. John Blake-Robert M.", + "embedding" : [ 0.0030384823, -0.021363074, -0.009657555, -0.0452426, -0.017039595, 0.035712205, -0.007850528, -0.0059598424, -0.009711096, -0.022955934, 0.027158944, 0.024080306, 0.016196314, -0.011471274, 0.0067261555, 0.018578913, 0.013974342, -0.019382037, 0.013418848, -0.020506408, 0.0071210247, -0.00999219, -0.021844948, 0.029260451, -0.01429559, 0.0010264916, 0.038469594, -0.0058259885, -0.009162296, 0.0025064133, 0.009423311, -0.019382037, -0.0027925258, -0.032847732, -0.021095365, 0.0037010587, 0.0076832105, -0.024133848, 0.030143885, 0.004310094, 1.2214163E-4, 0.015567202, -0.0124551, -0.0021734517, -0.020452868, 0.0021433346, 0.010949245, -0.01332515, -0.0050094803, 0.011866143, 0.02853764, 0.044653643, -0.030224198, -0.012307861, -0.0116452845, 9.0351346E-4, -0.01954266, 0.0018538757, 0.003905186, 0.0066157263, 0.021510312, -0.006294477, -0.037104286, -0.005926379, -0.02108198, -0.016825428, -0.014884547, -0.021470157, -0.0029464578, 0.01429559, 0.0066960384, 0.017588396, 0.008265475, 0.0022320128, 0.0047919676, -0.021978801, -0.02525822, -0.0070273266, -0.012093695, 0.0013209701, 0.00922253, 0.002166759, -0.014938089, 0.01588845, 0.010688229, 0.020974897, -0.0065956484, 0.01238148, -0.028296702, 0.0059063006, -8.7005E-4, 0.025164522, -8.750695E-4, 0.0068934727, 0.003955381, 0.010868932, -0.019408807, 0.022005571, -0.023558276, -0.04149469, -0.0028443942, 4.601226E-4, -0.009008364, -0.010822083, -0.010346903, 0.01745454, -5.651142E-4, -3.2438643E-4, 0.022420518, 0.01600892, 0.0048588947, -0.0024762962, 0.0047618505, -0.032258775, -0.020974897, -0.01807027, 0.011953148, -0.025418844, -0.0131310625, -0.008740656, 0.035069708, 0.03485554, 0.0012498603, -0.024829889, 0.027547121, 0.038871158, -0.005126602, -0.01635694, 0.0072348, 0.0031271605, 0.02055995, -0.014389289, 0.020399326, 0.007127717, -0.020372555, 0.051587272, -0.037505846, 0.008325709, -0.021791406, -0.013371999, 0.033195753, 0.025459, -0.016303398, -0.012421637, -0.022781923, 0.005976574, 0.024669264, 0.0010850527, 0.0146302255, 0.016638033, 0.016571106, 0.035069708, 0.009055212, 0.014375903, 0.016290013, -0.005762408, 0.009791409, -0.010922474, 0.004885665, -0.03343669, 0.0018605684, -0.0071879514, 1.9492467E-4, -0.00984495, 2.6352477E-4, 0.024963742, 0.023892911, -0.013492468, -0.011524816, 0.014857776, -0.009624091, 0.016798656, -0.019796984, 0.009757945, 0.0010750137, 0.01899386, -0.008807583, -0.0021533738, -0.04690239, -0.0127295, -0.0012866701, 0.010072501, 0.03726491, 0.039219175, -0.003955381, 0.010179585, 0.021577239, -0.022848852, 0.020720575, -0.013539316, 0.0069202436, 0.0289392, -0.0049559386, -0.013760176, -0.63093346, -0.012468485, 0.0137735605, -0.011678748, 0.019970993, 0.008907973, 4.3293354E-4, -0.008673729, -0.028430557, -0.006545453, -0.016437251, 0.01807027, 0.025619626, -0.015018402, -0.015125484, -0.0064049065, -0.0014113215, -0.021336302, 0.019034017, 2.2671495E-4, -0.025097596, 0.015834909, 0.01588845, -0.016865585, 0.0014046287, 5.7557155E-4, -0.009563857, -0.019261569, 0.009195759, 0.0052169533, -0.0126023395, 0.017481312, 0.011210259, 0.018337976, 0.037720013, 0.00674958, -0.021778021, 0.05477299, 0.012461793, 0.02383937, -0.023678744, -0.004691577, 0.013177911, 0.007837143, -0.01841829, 0.022929164, 6.655046E-4, 0.002804238, 8.7757927E-4, -0.008687114, -0.0053608464, 0.00292136, -0.002909648, 0.0077702156, -0.002369213, -9.721135E-4, 0.02557947, -0.042672604, 0.032928046, 0.0058929157, -0.029822636, 0.029554928, -0.009677633, 0.015460119, 8.077243E-4, 0.018980475, -0.0017417731, -0.0010064136, 0.012100387, -0.030465135, 0.008968207, 8.269658E-4, -0.007950919, -0.0033982145, 0.01936865, 0.0050094803, 0.03999553, -0.0051968754, 0.0017317341, 0.03381148, -6.015057E-4, -0.010326824, 0.004360289, 0.012408251, 0.022527602, -0.0034266585, -0.044305623, 0.004504182, 0.008138314, 0.014737308, 1.2297822E-4, 0.011638592, 0.010507527, 0.021229219, -0.009443388, -0.012562184, 0.0021215833, 0.004805353, 0.012622418, -0.059591733, -0.0116452845, -0.027975453, 0.040638026, 0.0013795312, 0.024883429, 0.018324591, -0.012026768, -0.011779138, 0.02667707, -0.012053539, -0.021162292, -0.0040791957, -0.022714997, -0.0027891796, 0.0033095363, -0.022233123, 0.0071879514, 0.015995534, -0.007201337, -0.0036675953, 0.014389289, 0.020319013, 0.012334632, -0.011825987, 0.017012823, 0.037184596, -0.00775683, -0.024321243, 0.0054478515, 0.011451196, -0.0056887884, -0.0015075289, 0.022688227, -0.022166196, 0.024950357, 0.008954822, 0.00713441, -0.014081424, 0.012970437, -0.0073619615, -0.010119351, -0.018712766, -0.014723923, -0.01861907, -0.010059116, -0.011196874, -0.028858889, 0.0059698815, 0.0023240373, -0.017133292, -0.0065220287, 0.023571663, 2.942693E-4, 0.018083654, -7.6840475E-4, 0.009202451, -0.026021186, -0.010206356, 0.015406578, -0.01797657, -0.0045476845, 0.021015054, 0.008740656, -0.01670496, 0.015901837, -0.0023441154, -0.032580025, 2.2901555E-4, -0.009095369, -0.006033462, 0.016490793, -0.01409481, 2.8004733E-4, 0.016276628, -0.020774117, 0.012421637, -0.017119907, 0.024481868, 0.009369769, -0.0026185159, -0.008211933, -0.014603455, -0.018257665, -0.013586165, 0.016571106, 0.027600663, 0.016477408, -0.007810372, 0.008988285, 0.0043067476, -0.024160618, -0.012963745, 6.64668E-4, -0.0066090333, 0.015915222, 0.024923585, 0.016450638, -0.0032375897, -0.004919129, -0.0152727235, 0.024254316, 0.02920691, 0.018552143, -0.017360844, 0.007944225, -0.03100055, 0.0037646394, -0.0071946443, 0.00497267, -0.0049760165, 0.024816502, -0.011745675, -0.02540546, 0.001760178, 0.014041268, 0.028751805, -0.012428329, -3.4571937E-4, -0.0039419956, 0.006709424, 0.0073619615, -0.020024534, 0.018110424, 0.012783042, -0.022929164, 0.005103178, 0.015326265, -0.014456215, -2.5808695E-4, -0.005986613, -0.0022186274, 6.1907404E-4, -0.0071411026, 0.0110027855, -0.016022306, -0.004989402, 0.022929164, -0.01861907, 0.039272718, -0.016490793, -0.004310094, 0.010855547, 0.017521469, 0.008312324, 0.0048388164, -0.015527046, 0.015875066, 0.0076229763, -0.001857222, 0.04326156, -0.009563857, 0.027440038, -0.005086446, 6.9771317E-4, 0.009001671, -0.02018516, -0.0027925258, 0.01603569, 0.024615722, 0.027600663, 0.021670938, -0.036729496, 0.026355822, 0.013947571, 0.01426882, 0.005424427, -0.018926933, 0.009637477, 0.0036709416, -0.03375794, -0.030973779, -0.0077501377, -1.00651814E-4, 0.008553261, -0.0096040135, -0.001527607, 0.003905186, 0.0045510307, 0.016370324, 0.01633017, 0.008298938, -0.03228555, 0.009296149, 0.033249296, -0.021644166, -0.026195196, -0.010119351, -0.008285553, -0.025847178, -0.0067228093, -0.01670496, 0.030411594, -0.022755153, -1.3155323E-4, -0.02090797, 0.0015610704, 0.03236586, -0.012789735, 0.015834909, 0.022835465, -0.01183268, 0.002031232, -0.0016564414, -0.001193809, 0.017173449, -0.011919685, 0.0015819852, -0.0023407692, -0.013010593, -0.007395425, -3.738496E-5, -0.0077099814, -0.03980813, 0.012970437, -0.015379807, -0.01464361, -0.0030920238, 0.0034567756, 0.005491354, -0.028243162, -0.004253206, -0.03488231, -0.032258775, -4.7936407E-4, 0.074101485, 0.035417728, 0.0065421066, 0.012327939, -0.0071678734, -0.001991076, -0.0053608464, -0.0020964858, -0.012093695, -0.020439481, 0.011042942, -0.012227548, 0.012856661, 0.0021818175, 0.004825431, -0.008305631, -0.0018739539, 8.0437795E-4, 0.003520356, -0.006689346, -0.020600107, -0.013612936, 0.016959282, 0.024950357, 0.015848296, 8.959842E-4, 0.023999995, -0.002687116, 0.0045945332, 0.010935859, -0.006555492, -0.0016857218, -0.00365421, 0.011216952, 0.008780812, 0.012622418, 0.02511098, -0.005106524, 0.010206356, -0.0045175673, -0.0049760165, 0.0137869455, 0.013331843, 0.0052269925, 0.001179587, -0.01690574, -0.019114329, 0.028269932, 0.019529276, -0.04328833, 0.018230893, -0.0051734513, -0.01792303, -0.017012823, 0.010467371, -0.0031104286, -0.002407696, -4.4731234E-5, -0.007937533, 0.0010373673, 0.0053876173, -0.022433905, 0.009041827, 0.002687116, -0.013010593, -0.012046846, -0.014282205, -0.007281649, -0.0203324, 0.013894029, 0.0034735072, -0.011297264, 0.0015694363, 0.0052771876, 0.021189064, -0.003045175, 0.027158944, -0.0069269366, 0.0026971549, -0.001464863, -0.042003337, -0.020345785, 0.010018961, -0.029662011, -0.0035839367, 0.0010616283, -0.0016070827, 0.029340763, -0.017789176, 0.007910762, 0.0027105403, -0.005126602, -0.024374785, 0.005297266, 0.033142213, 0.030893467, 0.011357498, 0.0061807013, 0.00643837, 3.9089506E-4, -0.0057992176, -0.032499712, -0.00957055, -0.012207471, -0.015312879, -0.0049827094, -0.011819295, -0.00584272, -0.0038951468, -0.03723814, -0.026141657, -0.022781923, 0.0034467364, -0.005789179, 0.01359955, 6.023423E-4, 0.018431675, 0.004400445, -0.016316783, 4.8731166E-4, -0.007984382, -0.021269375, 0.007388732, 0.02282208, -0.022085885, 0.033838253, -0.01653095, -0.023277184, -0.0033229217, 0.027185716, -0.004996095, 0.013318458, -0.0088745095, 0.005384271, -0.020104848, -0.020145003, -0.0013008921, -0.0016037363, -0.0058025643, 0.02473619, -0.030438364, 0.007047405, 0.006160623, 0.0068232, -0.017682092, -0.034239814, 0.017842717, 0.006495258, 0.014429444, 0.024696033, 0.013171218, 0.0076296693, -0.02928722, -0.009443388, -0.005163412, -0.037425533, -0.0048722797, -0.0123881735, 0.042271044, 0.015379807, 0.04031678, -0.0044339085, 0.036595643, 0.0012916896, 0.011257108, 0.028484099, -0.024696033, -0.012963745, -0.019917453, 0.010119351, 0.017494697, 0.024066921, 0.0012331285, 0.009416617, 0.0018655879, 0.024522023, 0.0019107636, 0.011651977, 0.0067027314, -0.028055765, -0.036086995, 0.010032346, -0.021189064, 9.2944765E-4, -0.023089789, -0.0064049065, 0.03134857, 0.0128298905, -0.007435581, -0.0085465675, 0.030920237, -0.0059364177, 0.01725376, -0.038496364, 0.016838813, -0.021215834, 0.018404903, -0.024963742, -0.009791409, 8.4788044E-4, -0.008406022, 0.023598433, -0.0068499707, -0.012595647, -0.019181255, 0.0238126, -0.024321243, 0.0040591178, 0.01673173, -0.031054093, -0.014456215, -0.025592854, -0.012709422, -0.033142213, -0.020626877, -0.0035036243, -0.0054947003, 0.003694366, -0.030625759, -0.024870044, 0.030893467, 0.011772445, 0.03798772, 0.009255993, 0.037532616, 0.026168426, 0.024441712, -0.022112655, -0.010781927, -0.019877296, -0.006535414, 0.024669264, 0.030036803, -0.025833791, -0.007897377, -0.0047651967, 1.3448128E-4, -0.03215169, -0.031268258, 0.009590628, 0.016142774, 0.028430557, -0.017240375, -0.0056017833, -0.03619408, 0.0017869488, -0.008687114, 0.0028728382, 0.003316229, -0.03410596, -0.033195753, -0.006023423, -0.008707193, 0.01707975, 0.011424426, -0.028484099, 0.009778024, -0.014911318, 0.006110428, -0.022192968, -0.019770212, 0.042297814, -0.023906296, 0.018833235, 0.0064517553, 0.0021734517, 0.0098315645, -0.003210819, 0.009757945, 0.033276066, -0.015607358, 0.019703286, 0.013010593, 0.004939207, 0.009784716, 0.0109023955, -0.015098713, -0.007676518, -0.020131618, -0.005899608, 0.026770769, -0.014322361, -0.012066924, -0.0013443945, -0.01789626, -0.02282208, 0.0013753482, -0.008312324, 0.009296149, -0.02630228, 0.0044305623, 0.0043268255, 0.007201337, -0.0028059112, -0.0044707186, -0.008760734, -0.0052537634, 0.007910762, -0.0058293347, -0.005407695, -0.015045172, -0.017561624, -0.030250968, -0.028510869, -0.008894588, -0.016303398, 0.0051968754, -0.012588954, -0.014148351, -0.0024344667, -0.007147795, -0.01148466, -0.005190183, -0.018806465, 1.9889844E-4, 0.022005571, -0.010139429, -0.01315114, -0.009952033, 0.030759614, -0.0045476845, -0.004805353, -0.006331287, 0.03094701, 0.041896254, -0.023156716, 0.03137534, -0.01123703, -0.01844506, 0.0046648066, 0.020546565, 0.033677626, 0.0144696, -0.0072080293, -0.030197427, -0.009483545, -0.0064049065, 0.023277184, -0.014884547, -0.004919129, 0.02363859, 0.014576684, 0.042806458, 0.022554373, -0.012609032, -0.012160622, -0.006980478, 9.1689883E-4, -0.022714997, -0.0018187391, 0.0105744535, 0.010795313, 0.010500834, -0.01586168, -0.029769095, 0.0060568866, -0.024481868, -0.043689895, -0.0021500273, 0.009182374, 0.029742325, 0.013023979, 0.013258223, 0.008493027, -4.1306458E-4, -0.0067562726, -0.018726153, -0.010822083, 0.020546565, 0.0016949243, 0.018083654, 0.01673173, -0.022420518, -0.0070273266, 0.017401, 0.015419963, 0.011196874, 0.017575009, -0.011283879, 9.679306E-4, -0.013064135, 0.0014849411, -0.016611261, -0.018364748, 0.035069708, -0.029019514, -0.0068232, 0.006478526, 0.01881985, -0.005792525, 0.008914666, 0.01879308, -0.007977689, 1.551868E-4, 0.0052638026, -0.027212486, -0.0069670924, -0.03100055, 0.024120463, 0.010085887, -0.0016932511, 0.043047395, 0.017186834, -0.0022889008, 0.0075292788, 0.001023982, 0.01931511, -0.008104851, -6.556747E-5, 0.011939763, 0.023477964, -0.02473619, 3.2585044E-4, -0.029099826, -0.001145287, -0.005849413, -0.003741215, -0.007763523, 0.034614604, -0.0022939201, -0.049204674, -0.002794199, -0.007937533, 0.0220725, -0.025793636, 0.0026620184, -0.024160618, -0.007703289, 0.0023240373, 0.0038148346, -0.024642492, -0.0289392, -0.007395425, -0.0061271596, -0.0057088663, 0.02105521, 0.1903937, -0.008834354, 0.005859452, 0.04181594, 0.009081983, 0.0061003887, 0.029983262, 0.01653095, -0.013505853, 0.014349132, 0.0038650297, -0.006006691, -0.0010900722, 0.0022654764, 0.012147237, -0.025311762, -0.021737864, -0.012863355, -0.017240375, -0.026636915, -0.0078906845, 0.008151699, -0.009938648, -0.029528158, 0.012809813, -0.011993305, -0.0027322916, 0.012923589, 0.01618293, 0.0035504731, -0.0076564397, -0.002533184, 0.008994978, 3.3630777E-4, -0.016102618, -0.005464583, 0.008191856, 0.0021818175, 0.016785271, -0.008037923, -0.0208812, 0.0019074173, -0.0152861085, -0.0023223641, 0.010808698, 0.01847183, -0.02264807, -1.6982706E-4, -0.010032346, 0.01586168, -0.052363623, -0.008145006, 0.021389844, 0.03340992, -0.01879308, 6.684326E-4, 0.013070828, 0.0063011697, -0.010882317, 0.0067830435, 0.011745675, 0.036086995, -0.020760732, 0.014737308, 0.0011252089, 0.015085328, -0.039513655, -9.762965E-4, 0.011544894, -0.03266034, -0.014362518, -0.035417728, -0.012930281, -0.0015200777, -0.010119351, -0.009249301, 0.0022370324, 0.0030334627, -0.007783601, 0.024147233, -0.02647629, -0.01568767, 0.017481312, -0.003915225, -0.019288339, -0.009456774, 0.0055080857, -0.016142774, -0.009838258, -0.009430003, -0.0044305623, -0.027814828, -0.010842161, -0.0061271596, -0.0024880082, -0.018056884, 0.02334411, 0.0051701046, -0.02090797, -0.0010248185, -0.03999553, 0.033517003, 0.019649744, 0.0024595645, -0.025646396, -0.019489119, -8.052145E-4, -0.0019944222, 0.03094701, -0.013485774, -0.008499719, -0.037050743, -0.007375347, -0.008191856, -0.0055348566, 0.037746783, -0.006498604, -0.007368654, 0.050275505, -0.01809704, 0.0111165615, -0.0154868895, 0.022018958, -0.005193529, 0.003500278, -0.029662011, -0.023116559, 0.0041829324, 4.722531E-4, -0.03595314, 0.018378133, -0.007950919, 0.024481868, -0.0053139976, 0.007944225, -0.015312879, 0.020774117, -0.011605129, 0.004109313, -0.018592298, -0.010433907, -0.018431675, 0.017320687, 0.0064015603, 0.011437811, -0.031669818, 0.005762408, -5.9188495E-4, -0.023785828, -0.041226983, -0.020774117, -0.0038181809, 0.01742777, -1.0490011E-5, 0.033891793, 0.008887895, 0.0049659777, -0.033998877, -0.01722699, 0.04703624, -0.021938644, 0.023906296, 0.0220725, -0.0076229763, -0.025967646, -0.009691019, -0.16994084, 0.025525928, 0.0015267704, -0.03557835, -0.003510317, 0.011785831, 0.024107078, -0.0036307855, 0.019355265, -0.018752923, 0.040798653, -0.005056329, -0.05825319, 4.6765187E-4, 8.583378E-4, 0.019100944, -0.013907414, 0.032981586, 0.04834801, -0.008211933, 0.040530942, -0.013184603, -0.007803679, 0.0045945332, 0.017267145, -0.010012267, 0.026007801, 0.0047718897, 0.021483542, -0.0035136633, -0.043609582, -0.013090906, 0.018217508, -0.0057490226, -0.018284434, 0.011812601, -0.014375903, -0.023611818, -0.0072950344, -0.006113774, 0.050329044, 0.013197989, 0.026088115, 0.01568767, 0.022179581, 0.0103736725, 0.020479638, -0.016263243, 0.021670938, -0.016490793, -0.013492468, -0.034025647, 0.03338315, -0.0096173985, -0.014523142, 0.017146677, 0.015567202, 0.013546009, -0.0040591178, 0.0057691005, -0.024508638, -0.0059665353, 0.012568876, -0.013338535, 9.160622E-4, -0.01705298, -0.013880644, 0.0036207465, -0.027895141, 0.009061906, -0.019823754, 0.018404903, 0.0033496923, 0.014924703, 0.017012823, -0.018525371, -0.042726148, 0.002047964, -0.0015008362, 0.012890125, -0.019529276, 0.027359726, -0.011611821, 0.014938089, -0.0049860557, -0.009456774, -0.0010833795, -2.1960396E-4, -0.0053575, -0.0070540975, 0.013827102, -0.015005016, -0.048936967, 0.008385943, -0.0012933628, 0.010460678, -0.008285553, 0.008305631, 0.014148351, -0.002282208, 0.008051309, -0.009958726, -0.016209701, 0.012314553, 0.033650856, 0.011551587, -0.005337422, 0.017200219, 0.020974897, 0.014603455, -0.014108195, 0.0034082534, 0.029822636, 0.0050831, -0.014429444, 0.015928607, -0.032258775, -0.021068595, 0.0014456215, 0.0044807573, 0.055790283, -0.0013034018, 0.004099274, -0.015192411, -0.005782486, -0.008941437, -0.09128832, -0.0034735072, 0.025338532, 0.03311544, -0.01618293, 0.029849406, -0.009316227, 0.020037921, -0.016718345, 0.026770769, -0.006525375, -0.027788058, 0.017467927, 0.002011154, 0.011397655, 0.002660345, -0.011866143, -0.0124551, 4.655604E-4, 0.024240931, -4.0239812E-4, -0.006853317, 0.002116564, -0.014375903, -0.013612936, 0.020600107, -0.026141657, 0.025017284, 0.017186834, 0.01635694, 0.006388175, -0.013539316, 0.015098713, -0.033490233, -0.030438364, -0.021296147, -0.012294476, -0.02786837, 9.060232E-4, -0.04077188, 0.0070808684, 0.011176796, -0.0042230887, -0.01762855, -0.009503623, -0.01297713, -0.034641374, 0.027266027, 0.0065320674, -0.018337976, -0.015834909, -0.035069708, -0.041280527, -0.0058761835, 0.004725041, 0.026021186, 0.034293354, -0.008827661, -0.005019519, -0.030090343, -0.006351365, -0.0031589507, -0.021336302, 0.026971549, 0.007415503, 0.011678748, 0.0052069146, -0.016236471, 0.012307861, -0.019850524, -0.026877852, 0.017735634, -0.043556042, -0.015379807, -0.019489119, 0.0017752366, -0.033490233, -0.014134966, 0.03555158, -0.027948683, 0.011297264, -0.032874502, 0.017200219, -0.01315114, 0.014991631, 0.020921355, 0.009215837, 0.021376459, -0.011551587, -0.053086434, -0.009041827, 0.020091461, -0.0027473501, -0.003741215, 0.007984382, 0.01618293, -0.0010089234, 0.013405463, 0.011578358, -2.1343413E-4, -0.009356383, 0.0031321798, -0.072602324, 0.039727822, -0.022902392, 0.006083657, -0.012655881, -0.018766308, -0.011183488, -0.009329613, 0.0035571659, 0.023692131, 0.0076028984, 0.018284434, -0.012321246, -0.008881203, 0.0031689897, 0.013505853, -0.014362518, 0.0053641926, 0.006257667, 0.010246512, -0.017200219, 0.0131444475, 0.0062710526, -0.0066190725, 0.013853873, 0.014389289, 0.006716117, -0.008680422, -0.02995649, -0.009985496, 0.040959276, -0.018311206, -0.0075292788, 0.0070072487, -3.844115E-4, -0.041521464, -0.009209145, -0.010139429, 0.025057439, 0.0013686556, -0.0025080864, -0.02302286, 1.9764356E-4, -0.0034249853, -0.01916787, 0.023103174, -0.0156609, 0.021791406, 0.0045175673, 0.03338315, 0.031295028, 0.013398769, 0.017882874, -0.017267145, 0.03231232, -0.020345785, 0.048508633, 0.004042386, -0.005789179, -0.029635241, 0.027252642, 6.383155E-4, 0.027895141, -0.03172336, 0.0065320674, -0.0057456763, 0.009309535, -0.0050027873, 9.478525E-4, -0.036649182, -0.010768542, -0.002417735, 0.01670496, 0.046875615, 0.01705298, 0.015754597, 0.008941437, 0.0036207465, -0.005461237, 0.014737308, 0.018712766, -0.0020847735, -0.026181811, 0.019850524, 0.0043368647, 0.010875625, 0.005956496, 0.00785722, 0.007261571, 0.003249302, -0.018378133, 0.027105404, 0.018672612, -0.002571667, 0.010447293, 0.011692133, -0.004497489, -0.014282205, 0.003781371, 0.03517679, -0.021269375, -0.010460678, -0.009028442, -0.020934742, -0.03311544, 6.9938635E-4, -0.024174005, -0.010674844, 0.0231701, 0.01603569, 0.024026765, 0.011698826, -0.022929164, 0.011250416, -0.04071834, 0.008111543, -0.012990516, -0.0013477409, -0.013064135, 0.0387373, 0.011504738, 0.010353595, 0.020613492, -0.009102061, 0.05474622, 0.002031232, 0.013104292, -0.019596202, -0.003180702, 0.0028209698, -0.010755156, -0.0013025652, -0.032499712, 0.0016648072, -0.006987171, 0.015794754, 0.012334632, 0.04213719, -0.0119063, 0.073405445, 0.013720019, -0.013505853, 0.009175681, -0.01516564, 0.014723923, 0.021818176, 0.012957052, -0.016624648, -0.007703289, -0.019221412, 0.002098159, 0.009804794, -0.044412706, 3.8817615E-4, -0.00330619, 0.012314553, 0.014737308, -0.014456215, -0.01106302, -0.012020075, -0.0067796973, 0.023772443, 0.009229222, -0.008419407, -0.001653095, 0.028751805, 0.0057958714, 4.6095919E-4, -0.028885659, 0.011638592, -0.036381476, 0.004233128, 7.5031356E-5, 0.018110424, -1.03266146E-4, 0.003403234, 0.007428888, 0.03266034, 0.008740656, -0.0144696, -0.0014347458, -0.024080306, -0.013974342, 0.024093691, -0.01864584, -0.0060468474, -0.016236471, -0.0059899595 ], + "id" : "effc05a5-c9d6-4d0c-bf28-bfe08142dd6b", + "metadata" : { + "source" : "movies.csv" + } + }, + "5ab275d8-4c11-4f0d-8e17-0b3c01b14d1e" : { + "text" : ",652-163-8960-1593-161-4922-27576-9738-310-37710-298-8909-350-2048-118-6479-591-608-8488-854-2059\r\n13448,Angels & Demons,Thriller-Mystery,en,Harvard symbologist Robert Langdon is recruited by the Vatican to investigate the apparent return of the Illuminati - a secret underground organization - after four cardinals are kidnapped on the night of the papal conclave.,38.453,Columbia Pictures-Imagine Entertainment-Skylark Productions-Panorama Films,5/13/09,150000000,485900000,138,Released,The holiest event of our time. Perfect for their return.,6.707,6487,\"Tom Hanks-Ewan McGregor-Ayelet Zurer-Stellan Skarsg��rd-Pierfrancesco Favino-Nikolaj Lie Kaas-Armin Mueller-Stahl-Thure Lindhardt-David Pasquesi-Cosimo Fusco-Victor Alfieri-Franklin Amobi-Curt Lowens-Bob Yerkes-Marc Fiorini-Carmen Argenziano-Howard Mungo-Rance Howard-Steve Franken-Gino Conforti-Elya Baskin-Richard Rosetti-Silvano Marchetto-Thomas Morris-Jonas Fisch-August Wittgenstein-Ben Bela B�_hm-Paul Schmitz-Jeffrey Boehm-Xavier J. Nathan-Steve Kehela-Ursula Brooks-Rashmi-Yan Cui-Fritz Michel-Maria Cristina Heller-Rafael Petardi-Yesenia Adame-Kristof Konrad-Masasa Moyo-Ed Francis Martin-Cheryl Howard-Endre Hules-Norbert Weisser-Shelby Zemanek-Vanna Salviati-Raffi Di Blasio-Todd Schneider-Roberto Donati-Rocco Passafaro-Emanuele Secci-Anna Katarina-James Ritz-Felipe Torres Urso-Jose David Acevedo-Roy Allen III-Tibor Ambra-Victor of Aquitaine-Michael Ark-John Jason Bailey-Jerred Berg-Sally Berman-Yuki Bird-Anthony Bonaventura-Robert Bradvica-Ciara Bravo-Michael Patrick Breen-Aidan Bristow-Cheryl BryantBruce-Ra�_l Cardona-Christopher Casa-Patrick Casa-Pasquale Cassalia-Farouk Chakwa-Bacha Chilaia-Jimmy Clabots-Mark E. Clason-Tammy Colbert-Austin Michael Coleman-Robert Corvin-Luca Costa-Gina D'Acciaro-John Dardenne-William \"\"Will\"\" Daubert-Shervin Davatgar-Blake Dawson-Vincent De Paul-Calvin Dean-David Dedinsky-Lea Deesing-Norman Deesing-Angelique Deuitch-Paul DiVito-Brant Dorman-Allen Dula-Liz Duran-Matthew Earnest-Peter Ettinger-Jonn Faircrest-Les Feltmate-William Ferguson-Amanda Jane Fleming-David Fletcher-Gregory George Frank-Harrison Freed-Aaron Denius Garcia-Nancy Gassner-Clayton-Justin Giddings-Phil Gold-Alan Gray-Marco Greco-Roger Groh-Nancy Guerriero-Andrew Hamilton-Martin Harris-Miriam Harris-Charlie Heydt-David Hill-Kei Hirayama-Brett Hunt-Marco Infante-Clark James-Christopher Karl Johnson-Dave Johnson-Gina Juliet-Andrea Kelley-Slim Khezri-Sophiah Koikas-Michael Laren-Robert W.", + "embedding" : [ -0.005111396, -0.044994336, -0.015892752, -0.048675943, -0.02505462, 0.036787998, -0.007658311, -0.00956235, -0.020094285, -0.017312, 0.023944518, 0.036647476, 0.008838675, -0.0020463148, -0.0014192467, 0.013391506, 0.015260414, -0.014030869, 0.015639817, -0.015541453, -0.018871766, 0.009555324, -0.0067168307, 0.023157608, 9.2479377E-4, -0.0021236006, 0.020726621, -0.0067168307, -5.7481247E-4, -0.0046090386, 0.010841077, -0.0070329993, -0.014417297, -0.006070441, -0.013454739, 0.0038291556, 0.014754544, -0.015414986, 0.014740492, 0.011178324, 0.004731993, 0.014445402, -0.0011425989, -0.023719687, -0.0142627265, 0.02200535, 0.012653778, -0.009302389, -0.002520568, 0.027555868, 0.03220706, 0.024450388, -0.022609582, -0.007141902, -0.017199583, -0.009119714, -0.015963012, 0.005223811, 0.0016115827, 0.0013454739, 0.015190154, -0.03397761, -0.035663843, -0.016918544, -0.0078339605, -0.014283804, -9.3269796E-4, -0.00662198, -0.0016352953, -0.003058055, 0.019574363, 0.020487739, 0.0051816553, 0.01273809, 0.00858574, -0.031588778, -0.021850778, -0.011522597, -0.005817506, 0.009948779, 0.014417297, -0.019644622, -0.019841349, 0.006414714, 0.008930013, -7.8559166E-4, -0.0048971036, 0.030520828, -0.028553557, 0.0075880513, 0.025996102, 0.02936857, -0.0143329855, 0.014276778, -0.0038502335, 0.006583337, -0.0158787, 0.02936857, -0.031504463, -0.027260777, -3.7501132E-4, -0.012260323, 0.011557726, -0.008965142, -0.010419519, 0.0023484316, 0.015485246, -0.013974661, 0.02807579, 0.002090227, -0.0020550971, -0.007925298, 0.015766285, -0.038418025, 0.011670142, -0.012464077, 0.008522506, -0.019644622, -0.008318753, -0.012442999, 0.005922896, 0.040216673, 7.4387493E-4, -0.028398985, 0.033724673, 0.027822856, 0.003927519, -0.023508906, 0.0020621233, -0.0053889216, 0.019757038, -0.010440596, 0.012070622, 0.013447713, -0.031026699, 0.059748877, -0.024380129, 0.0119933365, -0.022974933, -0.007679389, 0.034624, 0.044151217, -0.0019461947, -0.011037804, -0.025391867, -0.0046266033, 0.008424142, -0.012225194, 0.01594896, 0.0056067267, 0.0075599477, 0.022567427, 0.017059064, 0.020333167, 0.01861883, 0.0058702007, 7.1577105E-4, 0.015766285, -0.012450025, -0.016412674, -0.023789946, -0.011810661, -0.009513168, -0.013988713, 0.008227415, 0.030155478, 0.0070505645, -0.020234803, -0.0062671686, -0.016412674, -0.02121844, 0.01762114, -0.009400752, 0.010686506, 0.008381986, 0.017101219, 0.010061194, -0.016763972, -0.02547618, -0.003938058, 0.017775713, 0.0096536875, 0.041087892, 0.04727075, -0.014023843, 0.02945288, 0.024225557, -0.03290966, 0.022918725, -0.02734509, -0.009864467, 0.01875935, -0.0013340567, 0.0027049999, -0.6263796, -0.026572231, -0.00970287, -0.0038115906, 0.008283623, -4.1255637E-4, -0.0031599316, 0.0027401296, -0.040582024, 0.008866779, -0.018787453, 0.005065727, 0.014712389, -0.025209192, -0.032544307, -0.014094103, -0.003741331, -0.001306831, 0.0012813619, 0.013602285, -0.029424777, 0.010791895, 0.013630388, 0.005265967, 0.01310344, 0.01537283, -0.0061933957, -0.017424414, 0.012414895, 0.0026610876, 0.0025152985, -0.016735869, 0.0057612984, -0.015133947, 0.031054802, 0.0057683242, -0.015780337, 0.054662075, 0.012548389, 0.029256154, -0.028511401, -0.0074686096, 0.028890803, 0.006695753, -0.019223064, 0.024647115, 0.0028244413, -0.0014113424, -0.010321155, -0.015963012, -0.016145688, 0.009723947, -0.0067941165, -0.0021780517, -0.0064884867, 0.0032530257, 0.016131636, -0.031111011, 0.016862337, -0.0101736095, -0.01875935, 0.011698246, 0.0046020127, -0.003990753, -0.006695753, 0.026108518, -0.0128996875, -0.0015694269, 0.0069873305, -0.010215766, 0.016707765, 0.03161688, -0.008754363, -0.005023571, 0.013637414, 0.008887856, 0.04243688, -0.0040574996, -0.004753071, 0.024267713, -0.016637506, -0.008705181, -0.018393999, 0.015330674, 0.024422284, -0.0028683536, -0.03285345, 0.011129142, 0.013026155, 0.003588516, 0.020291012, 0.008023662, 0.016721817, -0.002381805, -4.0179785E-4, 0.0033127465, -0.023944518, -0.0138762975, 0.012084674, -0.041172206, -0.016047323, -0.0070540775, 0.025181089, -5.317784E-4, 0.023396492, -0.007120824, -0.0012927791, -0.010707583, 0.038361814, -0.0022184511, -0.008122025, -0.013735779, -0.01097457, 2.1363351E-4, -0.013834142, -0.029340465, 0.026108518, 0.029846335, -0.018632881, -0.0024292304, -0.009899597, -2.6764566E-4, -0.022932777, -0.020009972, 0.0123797655, 0.031167218, -0.0013463522, -0.012583518, -0.0033619283, 0.006407688, -0.014122207, 1.879448E-4, 0.016089479, -0.024295816, 0.0023291102, -0.0011821201, 0.023986673, -0.0141994925, 0.005831558, 0.016988805, -0.029143738, -0.014768596, -0.01020874, -0.022117764, -0.0056699608, -0.020164544, -0.027035946, -0.0074686096, -7.017191E-4, -0.014881012, -0.006864376, 0.011206428, -0.0036113504, 0.019644622, 0.0062179863, -0.004335026, -0.011353973, -0.025939895, 0.023410544, -0.02100766, 0.0103703365, 0.017059064, 6.020381E-4, -0.01443135, 0.023551064, -0.008311727, -0.006702779, 0.004004805, -5.524172E-4, -0.019293323, 0.0068362723, 0.0026083926, -0.0034550223, 0.024014777, 0.0019356557, 0.038474232, -0.021063868, 0.011627986, 5.7700806E-4, -0.007967454, 0.018000545, -0.0114734145, -0.027373193, -0.017101219, 0.023944518, 0.02085309, 0.024352023, -0.0021587303, -0.0043420517, 0.009864467, -0.007191084, -0.017297946, -0.0057191425, 0.0078971945, 0.008564661, 0.051486332, 0.006780064, -0.014283804, -0.0011768505, 0.0078971945, 0.050249763, 0.02922805, -0.004753071, 0.0027260778, -7.6802674E-4, -0.018773401, 0.002631227, -0.021021713, 0.0029421265, -0.010770817, 0.013721726, 3.5876376E-4, -0.020080233, 0.008684103, 2.7513823E-5, 0.033078283, -0.015035584, 0.008122025, -0.0072437786, 0.0120917, 0.0065236166, -0.008276597, 0.019813245, -9.803429E-5, -0.010995649, -0.002409909, 9.7573205E-4, -0.0024362563, -0.008564661, -0.010946467, 9.22159E-4, -0.0011812418, -0.0067835776, 0.0125764925, 0.0027137822, 0.008016636, 0.021921037, -0.0028086328, 0.048956983, -0.0029315874, -0.013447713, 0.01594896, 0.028918907, -0.0072859344, -0.010293052, -0.0017257547, 0.02050179, 0.024773583, -0.0059334347, 0.060310956, -0.038867686, 0.03881148, -0.0029245615, 0.009681791, 0.010321155, 9.3006325E-4, -8.207215E-4, 0.007686415, 0.02699379, 0.024998413, 0.006881941, -0.011283713, 0.019012284, -9.29185E-4, 0.005051675, 0.007742623, -0.0072437786, 0.0072297268, -0.021232491, -0.034680206, -0.017326051, -0.007370246, -0.0015176103, -0.0019479512, 0.006618467, -0.0090002725, 0.0144594535, 0.011958207, 0.004443928, 0.016946647, -0.0017749366, -0.027836908, 0.02460496, 0.018464258, -0.0067203436, -0.02865192, 0.0049216943, -0.018070804, -0.038418025, -0.008016636, -0.01050383, 0.017382259, -0.017719505, 0.0046898373, -0.008367934, -0.0012699447, 0.0104335705, -0.025279453, 0.0212887, 0.031335842, 0.012457051, -0.0029561783, -0.008705181, -0.015344726, 0.04417932, -0.008269571, 0.020867141, 0.0117333755, 0.0054626944, -0.0046160645, -0.0017679106, 0.011051856, -0.04454467, 0.011234531, -0.012562441, 0.010517882, -0.015625766, 0.003047516, -0.006864376, -0.0133563755, -0.020923348, -0.036619373, -0.012646752, 0.008473324, 0.06761797, 0.018070804, 0.012386791, 0.008487376, -0.013131544, -0.006344454, -0.012421921, -0.016539142, 0.012955895, -0.013890349, 0.022623634, -0.00858574, 0.014227596, 0.0132931415, 0.014571869, 0.003567438, -0.0018109446, 0.011923077, 0.004148837, -0.013370427, -0.041509453, -0.0041382983, 1.06926534E-4, 0.025925843, -0.008761389, -0.026431711, 0.032993972, 0.0019725421, -0.005083292, 0.010342233, -0.014923167, 0.020192647, 0.0075739995, 0.005041136, 0.002891188, 0.018717194, 0.03746249, 0.02296088, 0.026249036, 0.0123165315, 0.007222701, 8.8307704E-4, 0.008740311, 0.0056102397, 0.007419428, -0.02085309, -0.00577535, 0.032347582, 0.04120031, -0.03487693, 0.013532025, -0.014108155, -0.016778024, -0.01833779, 0.0054556685, 0.0056804996, -0.021035764, 0.0032723472, -0.018127011, 0.01753683, -0.0049884412, -0.029790128, 0.01760709, -0.013623362, 0.0010521396, -0.0295934, -0.015091791, -6.8108033E-4, -0.02556049, 0.0043174606, 0.02894701, -0.014192467, -0.008051765, 0.014571869, 0.010918363, -0.0039169802, 0.012857531, -0.026783012, 0.025658855, 0.017297946, -0.034033816, -0.047074024, 0.006344454, -0.0256167, -0.0010328181, 0.01689044, -0.00253462, 0.0108199995, 0.0064674085, -0.0020673927, 0.0012216411, 0.0031599316, -0.027120257, -0.006818707, 0.030408414, 0.008381986, 0.0114101805, 0.017691402, 0.010321155, -7.6846586E-4, -0.005564571, -0.030436518, -0.012583518, -0.02367753, -0.0059791035, -0.010686506, 0.022033453, 0.022918725, -0.012864557, -0.019293323, -0.016862337, -0.02835683, 0.01615974, 0.009407778, 0.0036605322, 0.001320883, 0.010468701, 0.010082272, 0.0020322627, -0.013862246, 1.2877292E-4, -0.0140027655, 0.01760709, 0.034820724, -0.0032143828, 0.037350073, -0.016173791, -0.03414623, -2.0432957E-5, 0.022103712, -0.007191084, 0.012428947, -0.016215947, -0.011845792, -0.0059509994, -0.017185532, 0.0037869997, 0.0021921038, -0.010897285, 0.011178324, -0.017283894, -0.012183038, -1.17904616E-4, 0.011515571, -0.011375051, -0.027387245, 0.004970876, -0.0046547074, 0.014585921, 0.034090023, -0.015794389, -0.006091519, -0.0051324735, -0.014571869, -0.022637686, -0.02973392, -0.020431532, -0.0065271296, 0.034033816, 0.0033847627, 0.033443633, 5.1640905E-4, 0.025715062, 0.015696025, 0.0076091294, 0.024478491, -0.02186483, -0.010089298, -0.030155478, 0.013735779, 4.966485E-4, 0.031363945, 0.024548752, 0.004226123, -0.0052484022, 0.014543765, 0.00905648, 0.0053573046, 0.010791895, -0.04007615, -0.03125153, -2.257094E-4, -0.029902544, -0.015485246, -0.0256167, -0.017705454, 0.03313449, -0.0144594535, -0.011979285, 0.0062179863, 0.037996463, -0.00848035, -0.011831739, -0.015204207, 0.011965233, -0.014698337, 0.0040645255, -0.021625947, 0.0057612984, 0.01689044, -5.9501216E-4, 0.0056137526, 0.005662935, -0.02374779, 0.005561058, 0.0016010437, -0.01652509, -0.020024024, -8.953725E-4, -5.6734734E-4, -0.0044614933, -0.01934953, -0.016918544, -0.00371674, -0.0011636768, 8.527775E-4, -0.009042428, 0.010257921, -0.035017453, -0.050193556, 0.038024567, 0.0075107655, 0.031504463, 0.017578986, 0.039148726, 0.027092153, 0.014684285, -0.023761842, 0.012569467, -0.0117966095, -0.011283713, 0.014023843, 0.02598205, -0.02280631, -0.0013867515, 0.00743348, -0.0018636395, -0.041593764, -0.021639999, 0.032825347, 0.015358778, 0.019728934, -0.0166094, -0.010082272, -0.030071167, 0.012168986, -0.009070531, 0.008283623, 0.0054135127, -0.02894701, -0.005002493, -0.00584561, 0.0036394543, 0.018436154, 0.010602194, -0.029509088, 0.017073115, -0.035270385, -0.0013770908, -0.005596188, -0.010862155, 0.025068674, -0.028918907, 0.0066922395, 0.0090002725, 0.0295934, 7.921785E-4, 0.010567064, 0.0018952563, 0.026136622, -0.029790128, 0.010925389, 0.008403065, -0.0054907985, 0.0056137526, 0.02793527, -0.029480984, -0.0059931553, -0.024815738, -0.015260414, 0.027612075, 0.0076512853, 0.025026517, 0.010918363, -0.02324192, -0.010721636, -0.0022026426, -0.018871766, 0.0051430124, -0.038193192, 0.009309415, -0.022286387, 0.008522506, -0.008803545, 0.0031529055, 0.009351571, -0.0014051948, 0.0231014, 6.4243743E-4, -0.0033303115, -0.005522415, -0.027148362, -0.038277503, -0.02381805, -0.008065818, -0.015583609, -0.004753071, -0.014227596, 0.008993246, 0.005585649, 0.007693441, -0.0053151487, 0.020740673, -0.030801868, -0.012695934, 0.030408414, -0.00418748, -3.2851916E-5, -0.012752142, 0.026614388, -0.0057086037, -0.00449311, -0.0022377726, 0.011592857, 0.028595712, -0.017930284, 0.020319115, 0.008796519, -0.0241834, -0.034820724, 0.017593037, 0.024857894, 0.0029702303, -0.008543584, -0.030267894, 0.0012339366, -7.58366E-4, 0.03451158, -0.013700648, 0.013700648, 0.021344908, 0.014283804, 0.0411441, 0.027401296, -0.007595077, -0.009358597, 0.001719607, -0.025448076, -0.014698337, -0.005624292, 0.015049635, 0.0031739834, -0.005620779, -0.013883323, -0.021555686, 6.3848536E-4, -0.0295934, -0.032178957, -0.0030457594, 0.016679661, 0.052301347, 0.032825347, 0.013517973, 0.0014253943, -0.0067589865, 0.017916232, -0.015569557, 0.010742714, 0.025490232, 0.0128996875, 0.008908934, 0.0091337655, -0.029705815, 0.009625584, 0.015091791, 0.004967363, -0.0069767917, 0.03723766, -0.026642492, -0.015710076, -0.006066928, -0.013532025, -0.011297765, 0.0065130773, 0.0053537916, -0.037350073, -0.002922805, -0.0054099998, 0.02858166, -0.011136168, 0.013510947, 0.009182948, -0.029256154, 4.6195777E-4, -0.028609764, -0.024169348, 0.0149793755, -0.019981869, 0.027921218, 0.006035311, -0.011873895, 0.030970491, 0.008122025, -0.004735506, 0.013384479, -0.0072789085, -0.0036218893, -0.015386882, 0.018056752, 4.0311523E-4, 0.016061375, -0.02756992, 0.023579167, -0.015105843, 0.009892571, -0.033556048, -7.719788E-4, -0.00949209, 0.032066543, 0.01436109, -0.058793347, -0.010117401, -0.0035428472, -0.0037799738, 0.0032741036, 0.010714609, -0.028202258, -1.100004E-4, 0.013447713, 0.013054259, -0.0025012465, -0.027527764, -0.0020744186, -0.01162096, -0.011817687, 0.007173519, 0.1840243, -0.01176148, 0.009323467, 0.034455374, -0.007191084, 0.011852818, 0.016328363, 0.019827297, -0.0088738045, 0.009962831, 6.679066E-4, 0.0051324735, 0.014698337, -0.008634921, 0.021696206, -0.014993427, -0.021373011, -0.027808802, -0.019532206, -0.029480984, -0.0131596485, 0.00294037, -0.018323738, -0.012724038, 0.010187661, 0.010553013, -0.01537283, 0.01310344, 0.030211685, -0.0013147353, -0.021232491, -0.01875935, -0.011635012, 0.006695753, -0.0031370972, -0.01847831, 0.006073954, 0.011178324, 0.016314311, 9.801233E-4, 7.113798E-5, -0.007082181, -0.010967544, -0.018155115, 0.008185259, 0.020305064, -0.013967635, -0.012435973, -0.012112779, 0.0029456394, -0.042240154, -0.008248493, 0.0029333439, 0.020164544, -0.009007298, -0.009625584, 0.014501609, 0.0058702007, -0.0046055256, 0.005023571, 0.0031177758, 0.022623634, -0.010475727, -0.0036429672, 0.006260142, 0.021710258, -0.03934545, -0.0117333755, 0.015344726, -0.043139476, 0.018646933, -0.01472644, -0.0134196095, 0.0059685647, -0.01884366, -0.0068292464, 0.0020463148, 0.007826935, 0.024871945, 0.012618649, -0.03667558, -0.0010459918, 0.009955805, -4.5976214E-4, -0.02425366, -0.025293505, 0.011852818, -0.00800961, -0.0038537465, 0.012105753, -0.0104335705, -0.025377816, -0.010468701, 0.012365714, 0.0032811295, 6.011599E-4, 0.019532206, 0.014923167, -0.0074615837, -0.017368207, -0.034033816, 0.025715062, 0.017269842, -0.022244232, -0.037040934, -0.006639545, 0.0144594535, 0.02223018, 0.022890622, -0.011438285, -0.0154992975, -0.029649608, -0.005220298, -8.470689E-4, -0.0013270307, 0.024548752, 0.0140027655, -0.023045193, 0.031560674, -0.013602285, 0.0011355729, -0.014993427, 0.01064435, 0.011909025, 0.0048830514, -0.015316622, -0.029059427, -7.1884494E-4, 0.00608098, -0.024337972, 0.023480803, -0.020881193, 0.009801233, -0.0062109604, -0.0090002725, 0.008016636, 0.032741036, 0.008501428, 1.3052941E-4, -0.008557635, 1.1724593E-4, -0.01594896, 0.027766647, -0.003539334, 0.0016713034, -0.005743733, 0.0011540161, -0.012724038, -0.008283623, -0.043195684, 0.00153781, -0.028834594, 0.008051765, 0.01573818, 0.03687231, 0.004731993, -0.045528308, -0.032937765, -0.014473505, 0.02402883, -0.027766647, 0.011346947, 0.034848828, -0.009049454, -0.009225103, -0.007440506, -0.18110149, 0.027907167, 6.766891E-4, -0.04395449, 0.027780699, 0.01840805, 0.02591179, 0.005550519, -0.0038467206, -0.0047249673, 0.019293323, -9.274285E-4, -0.04527537, -0.01594896, 0.01472644, 0.0054697203, -0.008360908, 0.04229636, 0.009049454, -0.014417297, 0.03616971, -0.01854857, -0.009836363, 0.0020199674, 0.02107792, -0.014065999, -0.0027137822, 0.010257921, 0.0054205386, -0.0069451747, -0.029480984, 0.015063687, -8.444342E-4, -0.01273809, -0.009407778, -0.0036218893, -0.013960609, -0.010075246, -0.006643058, -0.014051947, 0.03709714, 0.022047505, 0.008389012, -7.2191877E-4, 0.0065130773, 0.02692353, 0.03737818, -0.01949005, 0.002142922, -0.01991161, -0.009168895, -0.04656815, 0.02395857, -0.002541646, -0.0029825259, 0.030801868, -0.0074686096, 0.008578714, -7.0391473E-4, -0.008993246, -0.028370881, -0.0062566292, -8.786858E-4, -0.0059580253, -0.0016827206, -0.03161688, -0.018998232, 0.0070329993, -0.019813245, 0.016201895, -0.008627895, 0.00537487, 0.008859753, -0.01118535, 0.011909025, -0.012246272, -0.036703687, -0.0018776914, -0.0072016227, 0.0043209735, -0.017522778, 0.040385295, 0.004552831, 0.0040504737, 0.010904311, -0.01934953, 0.0034181362, -0.009962831, 0.027626127, -0.017733557, 0.016735869, -0.012239246, -0.009576402, -0.0045668827, 0.016778024, 0.006815194, -0.0012023197, 0.00249949, 0.007819909, -0.003328555, -0.010988623, -0.025434025, -0.013075337, 0.03687231, 0.034399167, 0.010848103, -0.023045193, 0.026333349, 0.010665428, 0.016356466, -0.02100766, 0.0036956621, 0.03521418, 0.0067098048, -0.026178777, 0.0075669736, -0.034174334, -0.029986855, -0.006154753, 0.009709896, 0.0454721, -0.0053959475, -0.003927519, -0.009576402, -0.008023662, -0.004240175, -0.100330904, 0.01624405, 0.005336227, 0.035101764, -0.023480803, 0.041846696, -0.012618649, 0.0100401165, -0.01767735, 0.039963737, -0.012450025, -0.027963374, 0.0036254022, -0.002627714, 9.309415E-4, -0.008199311, -0.025462128, -0.016820181, -0.003667558, 0.023789946, -0.01926522, -0.003151149, -0.0018653959, -0.026768958, -0.034848828, 0.0036394543, -0.04201532, 0.02830062, 0.010812974, 0.0063514803, 0.010152532, -0.0046090386, 0.0047214543, -0.03378088, -0.019602466, -0.019237116, -0.011157246, -0.034483477, 0.0012102239, -0.0483668, 0.021204388, 0.025068674, 0.0020392889, -0.022988984, 0.021977246, -0.008002584, -0.014094103, 0.03434296, -0.01645483, -0.02497031, -0.01324396, -0.00608098, -0.030436518, -0.009541272, 0.021316804, 0.01399574, 0.028370881, 0.010454648, -0.020656362, -0.01630026, 0.0104968045, -0.015429038, -0.024352023, 0.0033759803, 0.015681973, 0.0017292678, 0.001797771, -0.010377363, 0.00888083, -0.009667739, -0.008944064, 0.01237274, -0.047523685, -0.01666561, -0.0034971782, 0.00797448, -0.025237298, -8.593644E-4, 0.0105600385, -0.008965142, -0.0099277, -0.028778387, 0.012021441, -0.008192285, 0.0074615837, 0.020333167, 0.012014415, 0.020839037, 0.006565772, -0.04639953, 0.014227596, 0.021892933, -3.4838263E-6, 0.01212683, -0.015007479, 0.01746657, 0.0038748244, 0.006597389, -0.0010582872, 0.0030949414, -0.028511401, -0.001242719, -0.078971945, 0.037827842, -0.030071167, -0.005265967, -0.0024766556, -0.009695844, -0.002004159, 0.0056418567, 0.0072297268, 0.029312361, -0.0072648567, -0.0011821201, -0.015386882, 0.015190154, -0.005111396, -0.0016642775, 0.018436154, -1.684038E-4, -0.0026048797, -0.00510437, -0.015569557, 0.0110799605, 0.007714519, 0.021513531, 0.010721636, 9.3006325E-4, -8.769293E-4, -0.004215584, -0.015330674, -0.0048795384, 0.024998413, -0.0014113424, 0.0062671686, 0.015457141, -0.022356648, -0.053144462, -0.002641766, -0.008719233, 0.015794389, 0.007113798, -0.020628259, -0.0062777074, 0.001260284, -0.0049252072, 0.00492872, 0.03240379, -0.021935089, 0.022398803, 0.0066500837, 0.007862064, 0.020192647, 0.0048971036, -0.029115634, -0.024141245, 0.027738543, -0.025181089, 0.059355423, 6.1477267E-4, 0.0014491071, -0.013152623, 0.036844205, -0.0015395664, 0.012906713, -0.024590908, -0.004739019, 0.017185532, 0.019757038, 0.004802253, 4.514188E-4, -0.031701192, -0.0065376684, -0.017045012, 0.004029396, 0.017143376, 0.021049816, -0.0034708309, 0.006446331, 0.0015114625, 0.005483772, 0.0092602335, 0.014670232, -0.01689044, -0.0073913243, 0.010721636, 0.0035059608, 0.021921037, -0.003282886, 0.0038502335, 0.020670414, 0.0065306425, -0.0131596485, 0.00341111, 0.020614207, -0.006372558, 0.0120565705, -0.014227596, -0.025743166, -0.0046160645, -9.810015E-4, 0.03774353, 0.008698155, -0.0028437627, -0.0046968632, -0.037715424, -0.022707947, 0.014403245, -0.018436154, -0.033808984, 0.024085037, 0.013496895, 0.01746657, 0.0047249673, -0.007686415, 0.01064435, -0.029537192, 0.0126397265, 4.6656856E-5, -0.009639636, -0.018660985, 0.049631476, 0.009182948, 0.019012284, 0.018660985, -0.0117966095, 0.04662436, -0.0012585275, 0.025096778, -0.029677711, 0.0059369477, 0.0010275486, -0.008360908, 0.006555233, -0.016089479, 1.128547E-4, -0.018098908, 0.008199311, 0.011382077, 0.0317574, 0.018590726, 0.0743067, 0.016342415, 0.0023220843, 0.02409909, -0.03650696, -6.683457E-4, 0.013475817, 0.014599973, -0.004328, -0.016426725, 0.009344545, -0.016834233, 0.014754544, -0.03650696, 0.008712207, 0.005227324, 0.0023414057, 0.016623454, -0.0029368568, -0.023663478, 0.010475727, 0.0015193667, -0.00615124, 0.0072999867, -0.007405376, -0.010293052, 0.0144594535, -0.01840805, -0.017958388, -0.027555868, 0.0073210644, -0.013377453, 3.603007E-4, 0.0018039187, 0.022567427, 0.005785889, -0.009442909, -0.00895109, 0.03184171, 0.020839037, -0.031560674, 0.011332896, -0.017410362, -0.024871945, 0.032544307, -0.012906713, -0.0089370385, -0.024787635, -0.032628622 ], + "id" : "5ab275d8-4c11-4f0d-8e17-0b3c01b14d1e", + "metadata" : { + "source" : "movies.csv" + } + }, + "38e1b539-9f3e-4b8e-8f3e-1d0a38e170c9" : { + "text" : "Brown-Cristo Fern��ndez-Clay Savage-Tom Hardy-Jake Gyllenhaal-Jay Karales-Gina Aponte-John Barnes-Harry Holland-Dettric Jones-Haroon Khan,new york city-loss of loved one-showdown-secret identity-hero-magic-villain-dangerous-vigilante-portal-sequel-superhero-superhero team-alternate reality-masked vigilante-spider web-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-teenage hero-fight for justice-superhero teamup-returning hero-crossover-teamwork,/5weKu49pzJCt06OPpjvT80efnQj.jpg,/14QbnygCuTO0vl7CAFmPf1fgZfV.jpg,453395-616037-524434-642721-414906-840127-566525-580489-429617-436270-955555-365297-887731-335787-568124-338953-361743-315635-526896-324857-497698\r\n135397,Jurassic World,Action-Adventure-Science Fiction-Thriller,en,Twenty-two years after the events of Jurassic Park Isla Nublar now features a fully functioning dinosaur theme park Jurassic World as originally envisioned by John Hammond.,104.103,Amblin Entertainment-Universal Pictures,6/12/15,150000000,1671537444,124,Released,The park is open.,6.678,18860,Chris Pratt-Bryce Dallas Howard-Ty Simpkins-Nick Robinson-Vincent D'Onofrio-BD Wong-Omar Sy-Jake Johnson-Irrfan Khan-Judy Greer-Lauren Lapkus-Brian Tee-Katie McGrath-Andy Buckley-Eric Edelstein-Courtney J. Clark-Colby Boothman-Jimmy Fallon-James DuMont-Matt Burke-Anna Talakkottur-Matthew Cardarople-Michael Papajohn-William Gary Smith-Kelly Washington-Isaac Keys-Patrick Crowley-Chad Randall-Gary Weeks-Bill Ogilvie-Allan Tam-Yvonne Angulo-Chloe Perrin-Timothy Eulich-Kevin Foster-Bonnie Wild-Brad Bird-Colin Trevorrow-Justin Lacalamita-Tiffany Forest-Arlene Newman-Tait Fletcher-Jimmy Buffett-Tim Connolly-Johnny Otto-Erika Erica-Brandon Marc Higa-Martin Klebba-Eddie J. Fernandez,dna-tyrannosaurus rex-velociraptor-island-animal attack-primal fear-sequel-disaster-escape-dinosaur-creature-park-amusement park-theme park-genetic engineering-raptor-animal horror,/A0LZHXUzo5C60Oahvt7VxvwuzHw.jpg,/aIGIYJTyOkEVUmEd3z5x6diYsFx.jpg,351286-331-329-99861-330-76341-102899-118340-87101-140607-131631-198663-293660-122917-271110-150540-207703-168259-254128-286217-127585\r\n420818,The Lion King,Adventure-Drama-Family,en,Simba idolizes his father King Mufasa and takes to heart his own royal destiny. But not everyone in the kingdom celebrates the new cub's arrival. Scar Mufasa's brother���and former heir to the throne���has plans of his own. The battle for Pride Rock is ravaged with betrayal tragedy and drama ultimately resulting in Simba's exile. With help from a curious pair of newfound friends Simba will have to figure out how to grow up and take back what is rightfully his.,131.", + "embedding" : [ 0.0152605465, -0.030357586, -0.0075689587, -0.030303085, -0.02639257, 0.02355847, -0.0015030616, 0.004360156, -0.017549628, -0.026923964, 0.017358871, 0.026733207, 0.019007556, -0.0013795807, 0.015928196, 0.02274094, 0.02398086, -0.019838711, 0.011874612, -0.026855838, -0.010954892, -3.1775064E-5, -0.015355925, -8.162519E-4, 0.009456089, 0.022264047, 0.019743333, -0.011772421, -0.0019705861, 0.004567945, 0.010416686, 9.234461E-5, 0.012133497, -0.02641982, -0.015165168, 0.013673177, -7.7920756E-4, -0.016023574, 0.03180189, -0.014988037, 0.009742224, 0.01067557, -0.017713135, -0.006996688, -0.025111774, 0.0037606347, 0.017236242, -0.015246921, -0.026569702, 0.015751064, 0.02986707, 0.03016683, -0.02415799, -0.030548343, -0.010934454, -0.015846442, -0.015751064, -7.9964584E-4, 0.014988037, 0.013414293, 0.016132578, -0.011636167, -0.015178793, -0.01730437, -0.0160917, -0.009374335, -8.0986496E-4, -0.0033075872, -0.010041985, 0.012310629, 0.029349301, 0.011200151, 0.018544288, -0.0031815514, 0.025220778, -0.021119507, -0.028068505, -0.007637086, -0.0065981424, 0.0045747575, 0.013318914, -0.0080186, -0.010069235, 0.010041985, 0.021242136, 0.014851782, -8.2008407E-4, 0.029512808, -0.029621812, 0.011247841, -0.0050243987, 0.046953432, -0.015328674, -0.010246367, -0.021024128, 0.018680545, -0.01899393, 0.028586274, -0.003563065, -0.046571918, 0.012426445, 1.6020593E-4, -0.017018234, -0.013945687, -0.017645007, -0.0012867571, -0.006996688, 0.00851593, 0.019470822, 0.008107165, 0.0045917896, 2.6569702E-4, 0.015832817, -0.04362881, -0.013121345, -0.017222617, 0.008434177, -0.017985644, 6.838292E-4, -0.005487665, 0.026188187, 0.023476716, 0.009394774, -0.030602846, 0.027646115, 0.016772976, 0.005739737, -0.017427, 0.013019154, 0.0047007934, 0.019593451, -0.00273702, 0.017467875, 0.008958758, -0.023081576, 0.044555344, -0.010525689, -0.008366049, -0.016554968, -0.018435284, 0.0306846, 0.030248582, -0.024321496, -0.023449466, -0.033109937, 0.0016827477, 0.026651455, 0.008475053, 0.011506724, -3.6767527E-4, 0.029649062, 0.031665634, 0.0016929669, 0.0054093185, 0.016418712, 0.0030095296, 0.020547235, -0.01382987, 0.0067786803, -0.013768556, -0.0115884775, -0.0047927652, -0.010879952, -0.0017730166, 0.014552021, 0.020261101, 0.015723813, -0.021310262, 0.004063802, -0.0065708915, -0.021814406, 0.020179348, -0.011459036, 0.019920463, -0.021310262, 0.012576326, -7.8346557E-4, -0.0052458127, -0.051204585, -0.015192419, -0.007977723, 0.008304735, 0.04302929, 0.03856013, -0.001996134, -0.0011734952, 0.035862286, -0.019607076, 0.012412819, -0.014756404, 0.010832263, 0.014879033, 0.015519431, -0.005422944, -0.6396349, -0.010832263, 0.0042170887, -0.017195366, 0.013979751, 0.030221332, 0.003890077, -0.0063596964, -0.026024682, -0.017127238, -0.026596952, 0.009755849, 0.018884927, -0.019252814, -0.011717919, -0.019130185, -0.012467321, -0.031665634, 0.011649792, 0.005501291, -0.021705402, 0.025438786, -0.0049494584, -0.015941821, 0.002031901, 0.027128346, -0.009667284, -0.01618708, 0.0057908325, -0.0011096257, -0.035099257, 0.0058214897, 0.010171426, 9.818868E-4, 0.040086184, 0.010927642, -0.013611862, 0.047307692, 0.035589773, 0.03935041, -0.008420551, 0.010954892, 0.016473215, 0.0033654955, -0.021746278, 0.030357586, 0.007609835, -0.013312101, 0.015573933, -0.0046190405, -0.006819557, -4.381446E-4, -0.0044759726, -0.010246367, -0.010062423, -8.0773595E-4, 0.02793225, -0.02152827, 0.026610577, -0.0027642709, -0.02666508, 0.017045485, -0.00156097, 0.014279512, 0.007916409, 0.038151365, -0.004067208, -0.00921083, 0.002410008, -0.03125687, 0.00816848, 0.015069789, -5.475743E-4, -0.009701347, 0.015124291, 0.0174815, 0.02678771, 0.0030742506, -0.0014715526, 0.019034807, 0.014156882, 0.007132943, 0.01700461, 0.011118398, 0.027319103, -0.0026774083, -0.044092078, 0.007459955, 0.019102935, -0.0060939994, 0.009749036, 0.018517038, -0.005542167, 0.018816799, 0.004717825, 4.3409952E-4, -3.5681747E-4, -0.0032547885, 0.026624203, -0.065293334, -0.011350031, -0.015519431, 0.020206599, -0.00824342, 0.019743333, 0.011929114, -0.0160917, -0.0029890914, 0.042402517, -0.014988037, -0.020043092, -0.0037742602, -0.009531029, -0.0026246095, 0.0079709105, -0.02778237, 0.009823977, 0.0031832545, 1.6286716E-4, -0.015056164, 0.006308601, 0.006843401, 0.0040876465, -0.017127238, 0.020288352, 0.02177353, -0.019157436, -0.02539791, 0.012358317, 0.018775923, 0.0072146957, -0.0019586638, 0.027250975, -0.008079914, 0.01953895, 0.005753362, 0.014688276, 0.008604496, 0.022645561, -0.007316887, -0.014415766, -0.015151543, -0.01787664, -0.0055830437, -0.0084682405, -0.014770029, -0.034254476, 3.3084388E-4, -0.008386488, -0.019743333, -0.018884927, -0.0030146393, -0.0032088023, 0.007500831, 0.004397626, 0.008182106, -0.017317995, -0.005657984, 0.0033109935, -0.017249867, 0.007139756, 0.016159829, -0.018530663, -0.027141972, 0.01824453, -0.0029618405, -0.009060949, 0.017086362, 0.005852147, -0.01968883, 3.9620363E-4, -0.010505252, -0.012542262, 0.025084523, -0.010239555, 0.00844099, -0.019375443, 0.01422501, -0.0020659645, 0.008331986, 2.199239E-4, -0.008768002, -0.011929114, -0.010934454, 0.017072737, 0.020778868, 0.008836129, -0.0067071463, -0.004871112, 0.013278038, -0.01536955, -0.011438597, -0.0059577445, -0.0013029373, 0.0036107544, 0.013516484, 0.013993376, 0.013734492, -0.009769475, 0.00458157, 0.03043934, 0.011697481, 0.023503967, -0.009592343, 0.009510591, -0.021541897, 0.0069830627, -0.017263493, 0.017794887, -0.0018428472, 0.014715527, -0.009108638, -0.0015516024, -0.010021546, 0.01953895, 0.020465482, -0.018680545, -0.0024474782, -0.02132389, -0.004670136, 0.00893832, -5.633288E-4, 0.019756958, 0.0030350774, -0.038124114, 0.015751064, 0.0068365885, -0.008127604, 0.0047314507, -0.016895605, -0.01028043, 0.010845888, -0.016418712, -0.006581111, -0.027441733, -0.0038594194, 0.0068263696, -0.016078075, 0.039295908, -0.019429946, 4.879628E-4, 0.016173454, 0.028722528, 0.0050346176, 0.027523486, -0.00809354, 0.011125211, 0.008577244, -0.017658632, 0.047825463, -0.010518877, 0.015628435, 5.4374215E-4, 0.0022533152, 0.021487394, -0.020301977, 0.0033382445, 0.0105597535, 0.055673745, 0.007657524, 0.00782103, -0.03687057, 0.022604685, 0.006523202, 0.017181741, -0.0075485203, -0.029213047, 0.013257599, -0.0010815231, -0.03733384, -0.02316333, -0.0076507116, 0.0067173657, 0.009115451, -0.015015287, -0.0043533435, 0.004343124, -0.003982049, -0.0035596588, 0.016078075, 0.014701901, -0.034172725, 0.018912178, 0.033382446, -0.0124400705, -0.033654954, -0.016841102, -0.009864854, -0.012767082, 0.014770029, -0.0028085536, 0.031120615, -0.004625853, 0.0019569607, -0.013516484, 0.008052663, 0.0141432565, -0.009810352, 0.029730815, 0.0023316615, -0.0010014734, 0.015628435, -0.005422944, -0.007371389, 0.024021735, 0.0067957123, 7.681369E-4, 0.005450195, 0.0019825085, -0.00998067, 0.0016938185, -0.003862826, -0.026883088, 0.010914016, 0.0038866703, -0.023626596, -2.2843982E-4, 0.008645372, -0.0060974057, -0.022631936, -0.023176955, -0.03297368, -0.02723735, -0.008161667, 0.08796615, 0.044064827, 3.7193325E-4, 0.0023095203, 0.011384095, 0.0060871867, -0.02053361, -0.006230254, -0.007977723, -0.027836872, 0.021582773, -0.015846442, 0.009054136, 0.022604685, 0.010150989, -0.010348558, -0.002592249, -0.011738358, -0.0015234998, -0.004946052, -0.021514645, -0.015464929, 0.016241582, 0.023667473, 0.008849754, -0.0097831, 0.004690574, 0.0058283024, 0.0073850146, -0.0050414307, -0.013577798, 0.013816245, -0.0028119602, 0.016623095, 0.009204017, -0.0042102756, 0.031910893, 0.009905729, 0.021187633, 0.0027795995, -0.0072828233, 0.010784574, 0.008141229, -0.021691777, 0.009960231, -0.020915125, -0.01857154, 0.022018788, 4.4155098E-4, -0.019797834, 0.019389069, -0.0015286094, -0.011363657, -0.020165723, 0.023640221, -0.0024253367, 0.0070103137, -0.007936846, -0.0065879235, 0.017917516, 0.005739737, -0.031692885, 0.0050686817, -0.015737439, -0.005136809, -0.024866516, -0.012876086, -0.017358871, -0.013727679, -0.002115357, 0.006877465, -0.035126507, 8.435029E-4, -0.005337785, 0.015083415, -0.009776288, 0.020315602, -0.006254099, 0.018462537, 0.013639114, -0.023231456, -0.016527716, 0.019184686, -0.029512808, -0.0051504346, -0.009973858, -0.009462901, 0.017536003, -0.016623095, 0.023803728, -0.0015839629, -9.869962E-4, -0.018598791, -0.0026637828, 0.024212493, 0.00589643, 0.0017883453, 0.0079709105, 0.010784574, -0.017086362, 0.018462537, -0.032810174, -0.018707795, -0.008257045, -0.017522378, -0.0069898753, -0.011901864, 0.0041557737, -0.026106434, -0.031229619, 9.0183696E-4, -0.02415799, -0.0017338434, 0.002874978, 0.009142702, -0.006465294, 0.0096740965, 0.032619417, -0.0033859338, 0.002180078, 0.008406926, -0.03016683, 0.017835764, 0.03665256, -0.012801146, 0.010389434, -0.013884372, -0.03215615, 0.0026297192, 0.02147377, -5.875992E-4, 0.005824896, -0.022659186, 0.0064891386, -0.024076236, -0.014647399, 0.0023776477, 0.012624014, -0.012807959, 0.010593817, -0.030330336, 0.0068263696, 0.014606523, -0.0029345895, -0.01576469, -0.028995039, 0.0068638395, -7.902783E-4, 0.0042443397, 0.018353533, -0.021160383, -0.012126684, -0.02823201, -3.4617254E-4, 0.0010193568, -0.027904999, -0.015301423, -0.0011275092, 0.03567153, 0.018953053, 0.033327945, -0.014838156, 0.028014002, 0.013325728, 5.08401E-4, 0.028722528, -0.017631382, -0.0024611037, -0.024566755, 0.0070443773, 0.013175847, 0.017767636, 0.012344692, 0.0050754943, 0.011561226, 0.027550736, -4.6795036E-4, -0.013543735, -0.0044350964, -0.030984359, -0.03267392, 0.029458305, -0.021146758, -0.011772421, -0.017467875, 0.0011820111, 0.031611133, 0.009640032, -0.0058896174, -0.017590504, 0.031692885, -0.005695454, 0.013339353, -0.031910893, 0.004012706, -0.018380783, -0.0119427405, -0.022727314, -0.010041985, 0.0020012436, -0.008877005, 0.025261655, -0.003029968, -0.01923919, -0.011547601, 0.019361818, 4.9434975E-4, -0.00520153, 0.030221332, -9.835899E-4, -0.02557504, -0.02904954, 0.0059407125, -0.03379121, -0.0035153758, 0.009789913, -0.011377282, 0.0051708724, 0.007153381, -0.03406372, 0.031038862, 0.0041251164, 0.0544747, 0.010886765, 0.034826748, 0.024934642, -0.0020404167, -0.009592343, 0.02624269, -0.007964098, -0.0015805566, 0.024062611, 0.019934088, -0.0146746505, -0.019579826, -0.005252626, -0.011690669, -0.033927467, -0.037197582, 0.0027540517, 0.00782103, 0.0154376775, -0.02847727, 0.010416686, -0.017713135, 0.01566931, -0.020424606, 0.0019535543, 0.0156148095, -0.03215615, -0.018939428, -0.004833642, -0.009742224, 0.013271226, 0.012337879, -0.025983805, -7.025642E-5, -0.005531948, 0.004138742, -0.015628435, 0.0023572093, 0.03373671, -0.018067397, 0.008236608, 0.020588113, 0.005685235, 0.012038118, 0.002847727, -0.005392287, 0.031720135, -0.013570986, 0.020179348, -0.0068229632, 0.010062423, -0.0033092904, 0.0057363305, -0.0064721066, -0.009660471, -0.021691777, -0.008808878, 0.03935041, 0.009919356, -0.017576879, -0.0021749686, -0.013032779, -0.00284943, 0.01410238, -0.0013191175, -0.002161343, -0.03575328, 0.0026416415, 8.396707E-4, 0.0033501668, 0.0088225035, -0.0012194811, -0.010525689, -0.0062779435, 0.007235134, -0.0026603765, 0.011261466, -0.02177353, -0.023285959, -0.032592166, -0.012991902, -0.017794887, -0.019102935, 0.0099397935, -0.01775401, -0.012222063, 0.009401587, -0.008795252, -0.010886765, -0.0058385218, -0.01494716, 0.018653292, 0.023299584, -0.010212303, 7.298152E-4, -0.008134416, 0.026310816, 0.0065266085, -0.0053514102, 0.008645372, 0.013373417, 0.026896713, -0.020601738, 0.015001662, 0.0072828233, -0.01229019, -0.00928577, 0.009653659, 0.040658455, 0.011697481, -0.005630733, -0.027646115, -0.009306208, -0.016895605, 0.031502128, -0.010157801, -0.019552575, 0.038968895, 0.01591457, 0.04019519, 0.029676313, -0.0146746505, -0.034308977, -0.0050073666, -0.025070898, -0.02537066, -0.01360505, 0.012753457, 0.02907679, 0.014756404, -0.009449276, -0.039268658, -0.0043363115, -0.018707795, -0.032537665, -0.0026688925, 0.007446329, 0.03071185, 0.0064584813, 0.009238081, 0.014783654, -0.005518323, 0.0058214897, -0.011254653, -0.011424972, 0.004091053, -0.0021545303, 0.035562523, 0.03016683, -0.016936481, -0.0033178064, 0.01643234, 0.035644278, -0.002646751, 0.03550802, -0.01784939, 0.0096740965, -0.0135573605, 0.0022226577, -0.004571351, -0.003416591, 0.03041209, -0.016473215, -0.0095855305, 0.008311547, 0.0143203875, -0.011036646, 0.01320991, 0.011084334, -0.01139772, 0.010934454, -0.010852701, -0.011009394, -0.0023146297, -0.04098547, 0.027986752, -0.0030640317, -0.011649792, 0.029458305, 0.022304924, 8.2349044E-4, -0.0013744711, -0.017563254, 0.02718285, -0.0043465304, -0.007698401, -0.006492545, 0.038423877, -0.036707066, 0.017631382, -0.03297368, 0.006860433, -0.0069353734, -0.0054808524, -0.01566931, 0.042402517, 0.0024747292, -0.048179727, -0.00893832, -0.013155408, 0.009837602, -0.0030452965, -0.0010559753, -0.013400667, -0.012303815, 0.01268533, -0.012051744, -0.012719393, -0.029540058, 0.003709539, -0.008693061, -0.021010503, 0.020410981, 0.19598901, 0.0014775138, 0.022277672, 0.049569525, 0.015778314, 0.023367712, 0.024893766, 0.0057192985, -0.017645007, 0.009142702, 0.0035596588, 0.015328674, -0.001680193, -0.0028187728, 0.02013847, -0.0028000379, -0.024335122, -0.013870747, -0.031120615, -0.029267548, -0.0043635624, 0.010668757, -0.009864854, -0.013584611, 0.011622542, -0.0064687002, 0.002316333, -0.006032685, 0.02358572, 0.02038373, -0.012508198, -0.012106246, -0.0017832357, 0.00983079, -0.022918072, -0.009095013, -0.0042511523, 0.015682936, 0.0067173657, 0.016282458, 6.6381675E-4, 0.00866581, -0.007780154, 0.005157247, 0.0022022196, 0.008270672, -0.009054136, 0.0017415077, -0.012624014, 0.011833737, -0.05253988, -0.0039071087, 0.008113978, 0.02177353, 5.216007E-5, -0.003856013, 0.0051436215, 0.004898363, -0.00477914, 8.6521846E-4, -0.0067446167, 0.034145474, -0.031147866, 0.021882534, -0.014715527, 0.011813298, -0.04444634, 0.0048234225, 0.031611133, -0.026079183, -0.037851606, -0.043329053, -0.00246451, -0.006216629, 0.0032428661, -0.00844099, -0.0061246566, 0.0067957123, 0.020206599, 0.0040024873, -0.015383176, -0.01028043, 0.016023574, -0.007153381, -0.015001662, -0.024839265, 0.007098879, -0.030139579, -0.009026886, -0.03542627, -0.008972384, -0.011125211, -0.018816799, -0.0033893401, 8.3200634E-4, -0.0039718295, 0.039813675, 0.020628989, -0.019021181, -0.009115451, -0.030957108, 0.03580778, 0.015941821, 0.010321307, -0.031066112, -0.015478554, 0.0152605465, -0.0058555533, 0.030221332, -0.011915489, -0.01097533, -0.013141783, 0.0080186, -0.020342853, 0.0074395165, 0.019729707, -0.017931143, -0.025765797, 0.046517417, -0.02237305, -2.895416E-4, -0.022509307, 0.007098879, -0.018339906, -0.0023112234, -0.029403802, 0.0011206964, 0.014879033, 0.011499912, -0.040576704, 0.015383176, -0.035944037, 0.020410981, 0.0018190027, 0.0049256138, 0.0109685175, 0.019075682, -0.016963733, 0.020356478, 0.00628135, 0.001483475, 6.7659066E-4, 0.012957839, 0.002719988, -0.0012254423, -0.014279512, 0.01690923, 2.3567837E-4, -0.019375443, -0.025466036, -0.017699508, -0.010845888, -0.0058283024, 0.008141229, 0.03905065, -0.013734492, -0.012896525, -0.03406372, -0.009374335, 0.023858229, -0.025874801, 0.02177353, 0.0026212032, -0.011935927, -0.028395517, -0.023299584, -0.17516927, 0.020356478, 0.018803174, -0.013230349, 0.012249313, -5.505549E-4, 0.025098149, 0.008141229, 6.761648E-4, -0.012767082, 0.022141417, -0.007834655, -0.06006115, -0.0061689396, -2.53136E-4, 0.012739832, 0.0025053865, 0.024403248, 0.014402141, -0.00690131, 0.030793604, -0.0014281215, 0.008883818, -0.0012620608, 0.0031066113, 0.0023010042, 0.015178793, 7.3662796E-4, 0.01199043, -0.0059168683, -0.035617024, -0.0251254, -0.0012773895, -0.0016316521, -0.01566931, 0.003597129, -0.018939428, -0.011922302, -0.013421105, 0.005365036, 0.04049495, 0.010225928, 0.023081576, 0.013720866, 0.013850308, 0.017195366, 0.015097041, 5.590708E-4, 0.013475607, -0.0053445976, -0.014170508, -0.02902229, 0.02485289, -0.013577798, -0.007725652, 0.032265157, -0.009680909, -0.0026859243, 0.011247841, 0.0064721066, -0.024117114, -0.010314494, 0.014960785, -0.0100283595, -0.028014002, -0.010689195, -0.016827477, 0.017658632, -0.043220047, 0.0073236995, -0.014729152, 0.012406006, 0.009026886, 0.0039616106, 0.004486192, -0.014633774, -0.031883642, 0.0042784032, -0.011751983, 0.013155408, -0.020424606, 0.03466324, -0.014729152, 0.008597683, 0.02122851, -0.0011147353, -2.2843982E-4, -0.0038151366, -0.007780154, -4.7433728E-4, 0.0059407125, -0.019457197, -0.03046659, -0.005310534, -0.005671609, 0.011254653, -5.245813E-4, 0.008359237, 0.014988037, -0.005743143, 0.002709769, -0.009510591, -0.018135525, 0.012644453, 0.019675205, 0.034199975, 0.019416321, 0.010525689, 0.02823201, -0.0029856851, -0.0036856944, -0.011036646, 0.030984359, 0.020329228, -0.015873693, 0.012521823, -0.027795995, -0.017522378, 0.0065334216, -0.0069081225, 0.056573026, 0.0017159599, -0.016854728, -0.018789548, 0.010035172, -0.0149062835, -0.09412487, 0.0035290013, 0.014661025, 0.033627704, -0.021269387, 0.038369372, -0.0058010514, 0.014756404, -0.018012894, 0.03469049, -0.018230902, -0.01700461, 0.014170508, -0.004690574, 0.0068808715, 0.004625853, -0.015151543, -0.007827843, -0.009272144, 0.024662133, 0.0014451533, -0.0073032617, 0.0010968518, -0.008870193, -0.015315048, 0.009660471, -0.027101096, 0.022931697, 0.0094424635, 0.01787664, 0.01772676, -0.01621433, 0.008693061, -0.032292407, -0.032782923, -0.013223536, -0.02959456, -0.024743887, 0.018612416, -0.049814783, -0.00809354, -0.009823977, -2.1162086E-4, -0.03294643, -0.006775274, 0.0139116235, -0.03294643, 0.025534164, -0.0015039132, -0.037769854, -0.013100906, -0.014075129, -0.019062057, -0.0090882005, 0.02137839, 0.0126717035, 0.020029467, 0.007827843, -0.009721786, -0.020410981, -4.994593E-4, -0.0045304745, -0.018775923, 0.0037538218, 0.007207883, 0.020070344, -0.0012024493, -0.009054136, 0.026542451, -0.014429391, -0.019280065, 0.023721974, -0.032810174, -0.009040511, -0.028559024, 0.008447803, -0.041775744, -0.0029431053, 0.015192419, -0.046163153, 0.0133802295, -0.029431054, 0.008965571, -0.03240141, 0.009101826, 0.010798199, 0.0041557737, 0.0039582043, -0.0010219116, -0.019457197, 0.008386488, 0.026147312, 0.008768002, -0.005348004, -0.0070103137, 0.009892104, 0.02013847, 0.0012067073, -0.0040161125, 0.019211939, -0.005807864, 0.007432704, -0.07335962, 0.02708747, -0.018012894, -0.008631746, -0.010818637, 0.0039241407, 0.003268414, -0.023476716, 9.0183696E-4, 0.02056086, -0.004513443, 0.009749036, 0.013216724, -0.003764041, -0.0034881248, -5.7780585E-4, -0.0027813027, -0.0036584435, 0.013039592, 0.0032735234, -0.016445965, 0.016350586, 0.033872962, -8.948379E-6, -0.016118953, 0.021269387, -0.008366049, 0.0102940565, -0.0067275846, -0.029730815, 0.03158388, -0.02636532, -0.013339353, 0.020874247, -3.1242816E-5, -0.02557504, -0.012719393, 0.0045304745, 0.011063896, 0.022155043, -0.016405087, -0.034172725, -1.8149575E-4, -0.021541897, -0.01663672, 0.015819192, -0.023967233, 0.014334014, 0.016445965, 0.01248776, 0.036434554, 0.006693521, 0.010362184, -0.025670419, 0.017113613, -0.033600453, 0.045863394, 0.02539791, -0.008229795, -0.022236796, 0.027387232, 0.0040603955, 0.023285959, -0.010682383, 0.008454615, -0.014020627, -0.005950932, -0.011751983, 0.010137363, -0.01479728, -0.0062949755, -0.004986929, 0.013720866, 0.035044756, 6.970289E-4, 0.010368996, 3.4595965E-4, 0.00789597, 0.0032002865, 0.009755849, 0.011656605, -0.010375809, -0.023408588, 0.025493288, -8.7799237E-4, 0.017740386, 0.0047041997, 0.005184498, 0.0068263696, 0.0068638395, -0.011690669, 0.0055523864, 0.0073032617, 0.015533056, -0.0013676584, 0.012889711, -0.009878479, -0.022127792, -0.002186891, 0.028422767, -0.015723813, -0.0065879235, 0.003791292, -0.007834655, -0.017767636, -0.0017363981, -0.010573379, -0.012126684, 0.02047911, 0.01663672, 0.009510591, -0.002243096, -0.018380783, 0.015410427, -0.04302929, 0.008808878, -0.0020949189, 0.011213777, -0.018394409, 0.040712956, 0.020833371, -0.002290785, 0.035971288, 0.003947985, 0.04379232, 0.02545241, 0.022972573, -0.03458149, 6.834034E-4, -0.0034608738, 0.012807959, -0.017604131, -0.026433447, 0.0061553144, -0.002031901, 0.0021937035, 0.0023282552, 0.026515199, -0.008658998, 0.07744727, 0.0070920666, -0.0013191175, 0.0027761932, -0.031720135, 0.020192973, 8.47335E-5, 0.026978467, -0.018135525, -0.014851782, -0.0073100743, -0.012651266, 0.0077052135, -0.03736109, -0.020220224, 0.0058385218, -0.0018394409, 0.0038151366, -0.019102935, -0.021514645, -0.005000554, -9.733708E-4, 0.027319103, 0.005603482, -0.023517592, -0.012160748, 0.022454804, -0.010300869, -0.002169859, -0.028341016, 0.003287149, -0.011384095, -0.011227402, -0.0029771691, 0.018012894, -6.212371E-4, -0.0038798577, 0.011213777, 0.013570986, 0.017168114, -0.019375443, -0.005044837, -0.011247841, -0.019620704, 0.0041557737, -0.002454291, -0.011493099, -0.025057273, -0.015383176 ], + "id" : "38e1b539-9f3e-4b8e-8f3e-1d0a38e170c9", + "metadata" : { + "source" : "movies.csv" + } + }, + "d9cad21c-1328-47f5-9e07-78de0dc6c00d" : { + "text" : ",81005-60304-70160-82690-20352-58595-49051-37724-68721-47964-82654-87827-1930-62177-24428-49538-49026-49521-57800-72710-72559\r\n420809,Maleficent: Mistress of Evil,Family-Fantasy-Adventure-Action,en,Maleficent and her goddaughter Aurora begin to question the complex family ties that bind them as they are pulled in different directions by impending nuptials unexpected allies and dark new forces at play.,101.739,Walt Disney Pictures-Roth Films,10/16/19,185000000,491730089,119,Released,Go beyond the fairy tale,7.345,5409,Angelina Jolie-Elle Fanning-Harris Dickinson-Michelle Pfeiffer-Sam Riley-Chiwetel Ejiofor-Ed Skrein-Robert Lindsay-David Gyasi-Jenn Murray-Juno Temple-Lesley Manville-Imelda Staunton-Judi Shekoni-MIYAVI-Kae Alexander-Warwick Davis-Emma Maclennan-Aline Mowat-Freddie Wise-Barry Aird-Jermaine Cope-Juliane Snekkestad-Jess Liaudin-Noor Dillan-Night-Sarah Morghad-Oliver Frank Newman-Harry Paul Newman-April Alexander-Derek Horsham-Ia �_stergren-Anthony Kaye-Lex Milczarek-Xander Pipe-Fernanda Diniz-John Carew-Rebecca Kunikowski-Ivy-Mae Hewitt-Oliviyah Hewitt-John Lebar-Richard Keep-Bruce Lester-Johnson-Elizabeth Brace-Pik-Sen Lim-Topo Wresniwiro-Chester Durrant-Elizabeth Marcano-Mortlock-Julia Bender-Mikey Brett-Brian Fisher-Josh Jefferies-Jack Parker-Russell Balogh-Michael Akinsulire-Camille Mallet De Chauny-Lonyo Engele-Mark Knightley-Darcy Vanhinsbergh-Tekle Baroti-Gielliane Althea-Martin Bishop-Adam Colborne-Ahaan Gupta-David Midthunder-Briana Akinluyi-Tom Bonington-Rayna Campbell-Tina Gray-Darrell Davis-Robert Curtis-Tom Colley-David Isiguzo-Sarah Sayuri Hare-Chloe Fung-Arjen Tuiten-Andre Bullock-Lewis Kirk-Victor Perez-Piers Horseman-Jimmy Hibbert-Jo Hannah Emblem R�nning-Holly Emblem R�nning-Robert McCrea,magic-fairy-fairy tale-villain-sequel-live action remake,/vloNTScJ3w7jwNwtNGoG8DbTThv.jpg,/skvI4rYFrKXS73BJxWGH54Omlvv.jpg,646458-611059-102651-330457-611368-420818-512200-475557-688301-420817-338967-290859-453405-481084-474350-429617-506574-320288-448119-301528-495764\r\n281338,War for the Planet of the Apes,Drama-Science Fiction-War,en,Caesar and his apes are forced into a deadly conflict with an army of humans led by a ruthless Colonel. After the apes suffer unimaginable losses Caesar wrestles with his darker instincts and begins his own mythic quest to avenge his kind.", + "embedding" : [ -0.0030366732, -0.045206357, -0.020644683, -0.040940594, -0.012180229, 0.03219444, -0.014957, -9.0630696E-4, -0.025111662, -0.027016498, 0.03216761, 0.031228604, 0.011529633, -0.01025527, 0.003541388, 0.02948474, 0.022348305, -0.028384762, 0.0082095815, -0.012616195, 0.007854101, 0.0076260576, -0.031470064, 0.0018830393, 0.0050270273, 0.003769432, 0.014957, -0.014769198, -0.017680112, -0.014326525, 0.01816303, -0.020027623, 0.0014571337, -0.016217949, -0.022844637, -0.0036419958, 0.0075589856, -0.043972235, 0.025178732, -0.005469701, 0.013582028, 0.014849684, -0.0071230195, 8.3210884E-4, -0.0018327355, 0.005949264, 0.014286282, 0.0055300654, -0.010684529, 0.026171396, 0.008001659, 0.034179762, -0.015037485, -0.03790895, -0.0013095759, -0.0045709396, -0.007813858, 0.013146062, 0.0033485568, 0.011174153, 0.026117738, -0.0041651553, -0.023850713, -0.016204534, -0.024293385, -0.008705912, -0.017492311, -0.013736294, 0.010221734, -0.006921804, 0.02779453, 0.018256929, 0.01391068, -0.009926618, 0.017277682, -0.03291881, -0.031013975, -0.011663777, 0.014957, 0.0041785697, 0.009490652, -0.0037493105, -0.009940033, -1.7690173E-4, 0.01792157, 0.019772751, -0.011838163, 0.0137497075, -0.03125543, 0.011093667, 0.0010907543, 0.00629133, 7.2647084E-4, 0.0045239893, 0.0018159675, 0.018887402, -0.02347511, 0.019169105, -0.003729189, -0.04021622, 0.003705714, 0.010523557, -0.0029679248, -0.0020456882, -0.0120259635, -0.003970647, 8.530688E-5, -0.012321079, 0.01329362, 0.001958495, -0.013977752, -0.0019886773, 0.04249666, -0.045823418, 0.003665471, -0.027687216, 0.011375368, -0.003534681, -0.009047979, -0.018230101, 0.024508016, 0.047433138, 0.017559383, -0.025903108, 0.02779453, 0.01918252, 0.006294683, -0.01609722, -0.0054931757, -0.0082766535, 0.038043093, -0.00572122, 0.030343257, 0.004855994, -0.028465249, 0.052986678, -0.017116709, 0.013575321, -0.013501543, -0.017224025, 0.026090909, 0.036728486, -0.010389414, -0.016835008, -0.047325823, 0.0019266359, 0.011355246, -0.010590629, 0.032704182, -0.0016625408, 0.031792007, 0.015024071, 0.0064221197, 0.02782136, 0.031765178, -8.170177E-4, 0.021141013, -0.020094695, -0.005647441, -0.025862865, -0.010463192, -6.2754E-4, 5.0974527E-4, -0.006287976, 0.003152372, 0.018458145, 0.018310586, -0.020617854, 0.0033301122, -0.004939834, -0.027553072, 0.0066233347, -2.3055912E-4, 0.003160756, -0.0022234283, 0.027056742, 0.0076260576, -0.0048794695, -0.026761627, -0.013400935, 0.0024984225, 0.0151448, 0.03541388, 0.027767703, -0.005191353, -0.0013221517, 0.01474237, -0.013374106, 0.019289834, -0.023729984, 0.0081425095, 0.01604356, -0.012254008, -0.008075438, -0.6477521, -0.010637579, 0.0040511335, -0.0143533535, 0.010121127, 0.0062343185, 0.011730848, -0.008518112, -0.036460202, -0.012757046, -0.019397149, 0.01856546, 0.015681375, -0.027137227, -0.025192147, -0.02029591, -0.011187567, -0.01958495, 0.022831222, 0.0061471253, -0.032838326, 0.018404488, 0.0064958986, 6.6736387E-4, -0.0036084598, 0.008793105, 0.0044971607, -0.009557724, -0.011415611, 0.006026396, -0.001250888, 0.0017740476, 0.017894741, 2.8065333E-4, 0.03460902, -0.00589896, -0.011683898, 0.04016256, 0.019142276, 0.027875017, -0.04185277, 0.009329679, 0.008357139, 0.01158329, -0.005962678, 0.0036017527, 0.011972306, -0.0066971136, 0.01020832, -0.006026396, -0.008001659, 0.009678453, 0.008739448, 1.041708E-4, -0.014111895, 0.015520402, 0.029940827, -0.042791773, 0.028196963, -0.0039941226, -0.005644087, 0.019383734, 0.006006275, 0.016003318, 0.002273732, 0.031094462, -0.005124281, -0.01452774, 0.015426502, -0.023247067, 0.015922831, 0.011516219, -0.018619116, -0.008900421, 0.012656438, 0.008256532, 0.027056742, 0.0033602945, -0.0053254967, 0.021261742, -0.0018293818, -0.0043764315, -0.002079224, 0.011341832, 7.117989E-4, 0.010121127, -0.026828699, -0.0017807549, 0.01730451, 0.0049197124, 0.009933325, 0.0063013905, -0.0047419723, -0.014326525, -0.004591061, -0.006995583, -0.016285019, -0.0073443563, 0.018337416, -0.060042627, -0.005597137, -0.01742524, -0.0042691166, -0.0020171828, 0.037265062, -0.0042523486, 0.0014537801, 2.4376388E-4, 0.041503996, -0.002049042, -0.010905866, 0.01816303, -0.010241856, -0.0067340033, 0.0011075222, -0.025675064, 0.01912886, 0.014058238, 3.0643403E-4, -0.0053020213, 0.0027247895, 0.013193012, 0.003695653, -0.025312876, 0.02359584, 0.0184179, -0.017089881, -0.008752863, -0.0050907456, -0.0045072213, 0.01262961, 0.010570507, 0.00674071, -0.01122781, 0.01338752, 0.007847394, 0.03235541, -0.0013431117, 0.02779453, -0.0023592487, -0.0211276, -0.004785569, -0.014541155, -0.0010069145, -0.014796027, -0.012542416, -0.01835083, 0.0037526642, -0.008618719, -0.004151741, -0.029994484, 0.0055267117, 0.010107712, 0.0037761393, 0.005670916, 0.0069821686, -0.018324, -0.015909418, 0.009826011, -0.022562936, 0.016311849, 0.0108052585, -0.0060867607, -0.03385782, 0.020067867, -0.0038365037, -0.017250853, 0.009805889, 0.011965599, -0.023971442, 0.01250888, -0.019195933, -0.021301987, 0.018820332, -0.01690208, 0.022858052, -0.029967656, 0.013501543, -0.0098662535, -0.00651602, 0.011348539, 0.00942358, -0.0071297265, 0.0029863694, 0.034528535, 0.02461533, -2.4460227E-4, -0.0045374036, -0.009665038, 0.011449147, -0.029726198, 4.1332963E-4, -0.006542849, -0.004191984, -0.004111498, 0.020577611, -0.009604674, 0.017022809, 0.008202874, 0.0139509225, 0.048962373, 0.021999532, 0.0102351485, -0.009356508, 0.009524188, -0.03458219, -0.008719327, -0.029726198, 0.0055300654, -0.00761935, 0.017022809, -0.007605936, -0.023917785, -0.012220472, -0.0071699694, 0.0053254967, -2.2028877E-4, 0.0071632625, -0.011522925, -0.0024933922, -0.003152372, -0.013421056, 0.0018679481, 0.015547231, -0.023421453, -0.006868147, 0.02069834, -0.0013699403, 0.001702784, -0.012562538, -0.0013405965, -0.011315003, -0.012133279, -0.008041902, 7.403044E-4, 0.0053992756, 0.01649965, -0.008618719, 0.029806683, -0.01277046, -0.0014001227, 0.027257957, 0.04324786, -8.337856E-4, -0.013407642, -0.014272868, 0.015198457, 0.024051927, -0.023864128, 0.03600411, -0.022147091, 0.028170133, -0.003883454, 0.025701893, 0.0078742225, -0.002843842, 0.013508249, 0.010228441, 0.03291881, 0.019652022, 0.01847156, -0.030101798, -3.154468E-4, 0.008772984, 0.022589764, -0.0041148514, -0.025487263, -0.002892469, 0.0050102593, -0.0304774, -0.022039775, -0.004768801, -0.0013598796, 0.015748445, -0.00845104, -0.015171628, -0.013736294, -0.005754756, 0.030611545, 0.03133592, -0.010905866, -0.044803925, 0.011361954, 0.017103296, -0.008766277, -0.009530895, -0.023649497, -0.010952816, -0.020523954, -0.011388782, -0.012086328, 0.027177472, -0.017156953, -0.010577214, -0.01996055, -0.0061303573, 0.006532788, -0.013521664, 0.024642158, 0.036433373, -0.0061773076, 0.022227576, -0.011167445, -0.0015527109, 0.01853863, -0.013494835, 0.0044133207, -0.0033737088, -0.00923578, 0.00646907, 0.004316067, 0.008229703, -0.045125872, 0.005737988, -0.020577611, -0.009571138, -0.013119234, -0.0067004673, 0.017063051, -0.008035195, -0.010711358, -0.021275157, -0.012643024, -0.013246669, 0.059023134, 0.035306565, 0.012032671, 0.009758939, -0.007646179, 0.015574059, -0.017841084, -0.006995583, -0.015896004, -0.008001659, 0.009490652, -0.017908156, 0.03112129, 0.004855994, 0.029806683, -0.0015242054, 0.004265763, -8.1072975E-4, -0.012133279, 0.0038901612, -0.0064623626, -0.0036084598, 0.016553307, 0.028465249, 0.008645548, -0.025111662, 0.015493573, 0.021167843, -0.013501543, 0.0021496494, -0.005865424, -0.0051712315, -0.0023961382, 0.006633396, 0.0030031374, 0.004295945, 0.009242486, -0.0057245735, 0.039062586, 0.014246039, 0.008927249, 0.020134937, -0.0020272436, -0.010510143, 0.02297878, -0.015171628, -0.006418766, 0.013789951, 0.03686263, -0.029645711, 0.016606964, -0.0056105517, -0.023126338, -0.0060968217, 0.02967254, 0.01763987, -0.0011075222, -0.002885762, -0.022509277, -0.004077962, 0.0048224586, -0.03155055, 0.0035313275, -0.009430287, -0.015278944, -0.0026359195, -0.0014370121, -0.0056105517, -0.013897265, 0.021691002, -0.002007122, -0.02967254, 0.010765015, 4.697642E-5, 0.0075254496, 8.438464E-4, 0.024937274, -0.016969152, 0.014111895, 0.021905633, -0.027003085, -0.03503828, 0.0054328116, -0.02473606, 0.0035548024, 0.010691236, -0.004443503, 0.03211395, -0.00963821, 0.013669222, 0.012810703, 9.331356E-4, -1.9099727E-5, -0.010013811, 0.03125543, 0.0050840382, 0.0031490184, 0.026627483, 0.0019048376, -0.0041215587, 0.018095957, -0.016794765, -0.014259453, -0.014688713, -0.0069419257, -0.007961416, 9.5577235E-4, 0.010094298, -0.01782767, -0.02556775, -0.02945791, -0.010952816, 0.007679715, 0.003997476, 0.0012223825, -0.0021077297, 0.018337416, 0.010597336, 0.0019031608, -0.005784938, -4.1521603E-4, -0.006636749, 0.011838163, 0.033938304, -0.0075455713, 0.030772517, -0.027231129, -0.013977752, 2.7729975E-4, 0.02267025, -0.0030584715, 0.01391068, -0.002877378, -0.0064992523, -0.022656836, -0.02760673, -0.0056541483, -0.0017841085, -0.009886376, 0.017599626, -0.016325263, -6.363432E-4, 0.007351063, -0.014541155, 0.0020892848, -0.028599393, 0.018672774, 0.0014487497, 0.0107717225, 0.029779855, -0.014044823, 0.007532157, -0.023247067, 0.0039035755, -0.014889928, -0.022348305, -0.026184808, -0.0090681, 0.042550314, 0.014916756, 0.036969945, -0.004574293, 0.024977518, 0.00519806, -0.0038935149, 0.015815517, -0.024239728, -0.0020540722, -0.021395886, 0.011388782, 0.001506599, 0.020993456, 0.022173919, -8.660639E-4, 0.011429026, 0.025675064, 0.007404721, 0.0026426266, -0.006019689, -0.020832485, -0.012696682, 0.0049163587, -0.02575555, 1.5919059E-4, -0.022723908, -0.0036922996, 0.056125637, 0.006579738, -0.0071766768, -0.0053154356, 0.03385782, 0.0066501633, 0.032301754, -0.019021546, 0.01680818, -0.020523954, -0.0037358962, -0.0181362, -0.012374737, -0.0066803456, -0.009765646, 0.011462561, -0.0057614627, -0.030772517, -0.013421056, 0.030450573, -0.0010773399, -0.02627871, 0.019021546, -0.015909418, -0.01250888, -0.038391866, 0.012260715, -0.041879598, 7.675523E-4, 0.0017019456, -0.024065342, 0.008383968, -0.010121127, -0.037801635, 0.033643186, 0.0061873686, 0.040430848, 0.013260084, 0.0453405, 0.016539892, 0.0052383034, -0.018833745, 0.017022809, -0.013179597, -0.002184862, 0.033965133, 0.027848188, -0.021073943, -0.004782215, 0.0077803223, -0.015064314, -0.03790895, -0.038606495, 0.01452774, 0.019491049, 0.031040804, -0.0066602244, 0.006831257, -0.019759336, 0.02297878, -0.002022213, -0.006509313, 0.0144204255, -0.04555513, -0.022536106, -0.017237438, -0.0052450104, 0.002347511, 0.020430053, -0.021556858, 0.019397149, -0.015466744, 0.023770226, -0.01039612, 5.185484E-4, 0.01303204, -0.025822623, 0.0042456416, -0.0027717398, 0.010107712, 0.0041953376, -0.0051008062, 0.011704019, 0.031792007, -0.01262961, 0.01915569, -0.008075438, 0.007351063, -0.0025805854, 0.014205796, -0.022630006, -0.026238468, -0.027459173, -0.00695534, 0.024722645, 0.0010069145, 4.5483027E-4, -0.022173919, -0.023944613, -0.009390044, -0.0018327355, -0.009108343, 0.027687216, -0.028411591, 0.008819935, 0.0055870763, -7.906082E-4, 0.013561907, -0.005825181, -0.0020825777, -0.010832087, 0.016714279, -0.01091928, -0.0070157046, -0.0072102128, -0.01758621, -0.03195298, -0.023340967, -0.005476408, -0.0083772605, -6.6275266E-4, -0.02696284, 0.001901484, -4.3345115E-4, -0.004621243, -0.009007735, -0.005949264, -0.026010422, -0.0044837464, 0.022777565, -0.012086328, -0.008954078, 0.0011058454, 0.026828699, -0.0034877306, -0.0032848387, 0.025822623, 9.289437E-4, 0.034287076, -0.025487263, 0.015708202, 0.01201255, -0.010590629, -0.020671511, 0.0081760455, 0.012636317, 0.013058869, -0.018337416, -0.040404018, 0.008350432, -0.006988876, 0.01678135, -0.0050270273, -0.006006275, 0.026882356, 0.008645548, 0.029618884, 0.030370086, -0.0027365272, -0.023810469, -0.006059932, -0.023086095, -0.0242129, -0.010865623, -0.015694788, 0.0020507185, -0.008920542, -0.0021144368, -0.033938304, -0.006217551, -0.021919046, -0.021315401, 6.0699927E-4, 0.025795793, 0.038150407, 0.0044569173, -0.0032278278, 0.022844637, -0.0036252278, 0.002218398, -0.035682168, 0.005379154, 1.1423157E-4, 0.009544309, 0.014688713, 0.008108974, -0.038847953, -0.010416242, 0.008551648, 0.027244544, -5.529227E-4, 0.031684693, -0.022200748, -0.002941096, -0.0018427962, 0.011818041, -3.0496684E-4, 5.34478E-4, 0.03302613, -0.028277447, -0.016969152, 0.0035782775, 0.024910446, -0.011449147, -0.01201255, 0.019812994, -0.037989438, -0.0027449112, -0.011066838, -0.018149614, -0.011979014, -0.021825146, 0.016432578, 0.012327787, -0.007102898, 0.022147091, 0.022173919, -0.022026362, 0.0060901144, 0.00401089, 0.021704417, -0.003792907, 0.011026595, 0.013166184, 0.017988643, -0.040913764, 0.02072517, -0.011556461, 0.004517282, -0.015681375, 0.013320449, -0.009705282, 0.023837298, 0.008625426, -0.027244544, -0.007330942, 7.5036514E-4, 3.5254587E-4, -0.009356508, -0.0017891388, -0.01607039, -0.0064221197, 0.0049331267, 0.022093432, -0.018283758, -0.014688713, -0.0044569173, -0.015050899, -0.0024313508, 0.025795793, 0.17610358, -7.109605E-4, 0.011120495, 0.050437953, -0.0050605633, 0.020993456, 0.027365273, 0.0061035287, -0.026667725, 0.015547231, -0.0077400794, 0.0073108203, 0.011268053, 0.0025638174, 0.010624165, 0.004295945, -0.0140179945, -0.0075791073, -0.019263005, -0.02513849, -0.0010806934, -0.015533816, -0.0061706007, -0.01578869, 0.0056373803, -0.011281468, -0.007652886, -0.0027281432, 0.01918252, 0.0040343655, -0.024682403, -0.0040175975, -0.020845897, 0.022495864, -0.038660154, -0.01020832, 0.010087591, 0.019692264, -0.0015996611, -0.005208121, 0.0024162596, 0.004980077, -0.011033302, -0.01061075, 0.0059358496, 0.025379948, -0.01668745, -0.00956443, -0.02316658, 0.005298668, -0.04802337, 0.006133711, 0.0048794695, 0.025031175, -0.007934587, -1.1349797E-4, 0.015117971, 0.0101680765, -0.0018578874, -0.002429674, 0.014809442, 0.024722645, -0.02843842, 0.0075724, 0.0037962608, 0.010315634, -0.039518673, -0.019356906, 0.013548492, -0.03007497, -0.023917785, -0.023233652, -0.018256929, 0.00937663, 0.0021513263, -0.011831456, 0.010778429, 0.015158215, 0.0040578404, 0.016311849, -0.018954474, -0.020859312, -0.002672809, -0.0028639636, -0.013662514, -0.036138255, 0.024575088, -0.0071967985, -0.010744894, -0.008115681, -0.012689974, -0.021409301, -0.014728955, 0.0015325893, -0.0070492406, 0.008149217, 0.021758074, 0.013266792, -0.0033016067, -0.019450806, -0.027365273, 0.030826174, 0.014970413, 0.001852857, -0.032033466, -0.004872762, 0.0077467863, 0.010557093, 0.016513065, -0.006995583, -0.0028555796, -0.03766749, -6.124489E-4, -0.019142276, -0.0026526875, 0.014178967, 0.008229703, -0.027901845, 0.048801403, -0.01730451, -0.012857653, -0.021288572, 0.021328814, -0.006841318, -0.0014353354, -0.027660388, -0.017317925, 0.004691669, 0.009577845, -0.019343492, 0.0051511102, -0.044052724, 0.0065696775, -0.0020674865, -0.0053087287, 0.020872727, 0.03581631, 0.011133909, 0.008350432, 0.006395291, 0.0044300887, -0.0138838515, 0.027472587, 0.008645548, 7.7509787E-4, -0.02038981, 0.019973965, 4.1500642E-4, 1.0899158E-4, -0.041503996, -0.03069203, -0.024038514, 0.01659355, 0.008880299, 0.041906428, 0.009115051, -0.020765413, -0.024159243, 4.3303196E-4, 0.02279098, -0.015198457, 0.026466511, 0.010677822, -0.016432578, -0.023448283, -0.009135172, -0.17148905, 0.0021580334, -0.0014110218, -0.026238468, 0.019839821, 0.01718378, 0.01545333, -0.0013422733, 0.014259453, -0.027687216, 0.017572798, 0.00880652, -0.04740631, -0.0012835856, 0.008524818, 0.03434073, -0.029135967, 0.035628513, 0.01412531, -0.0058453027, 0.040860105, -0.0034743163, -0.016727693, 0.0011620179, 0.027740873, 0.006321512, 0.023890955, 1.1993005E-5, -0.013152769, -0.010832087, -0.029699368, 0.0050236736, 0.021905633, 0.012958261, -0.015493573, -6.5059593E-4, -0.024199486, -0.01730451, 0.0045038676, -0.0050236736, 0.03941136, 0.010691236, 0.008504697, 0.0028052758, 0.007136434, 0.03152372, 0.022589764, -0.002478301, 0.015480159, -0.027767703, -0.021851975, -0.030584715, 0.01856546, -0.009088221, -0.0044703316, 0.034313906, -0.004604475, 0.0026644252, 0.010181491, -0.018914232, -0.019450806, -0.020188596, 0.0055065905, -0.008907128, -0.0019366966, -0.013005211, -0.0059023136, 0.026936013, -0.029216452, 0.017049637, -0.015963076, 0.004658133, 0.027714046, -6.032265E-4, 0.016861837, -0.023099508, -0.03686263, 0.010308927, 0.0021597103, 0.014983828, -0.034474876, 0.03836504, -0.025366534, 0.002040658, 0.025607992, -0.01896789, -9.2810526E-4, -0.0041416804, 5.5921066E-4, -0.010543678, -4.0012487E-4, -0.008974199, -0.025795793, -0.0124283945, 0.019598365, 0.0060968217, -0.011623533, -0.005362386, 0.015426502, -0.0038331503, 0.0052852533, -0.01649965, -0.0070425333, 0.025473848, 0.033509042, 0.020242253, 0.0025872926, 0.013729586, 0.016486235, 0.00325801, -0.007069362, 0.0065529095, 0.010295513, -5.1351805E-4, -0.02544702, 0.013045454, -0.005932496, -0.018900817, 0.008766277, 0.0052550714, 0.024843374, -0.005644087, -2.842165E-4, -0.006452302, -0.016647207, -0.02038981, -0.09062734, 0.0021462957, -0.005825181, 0.020148352, -0.048559945, 0.020376395, -0.022630006, 0.04920383, -0.024870204, 0.027472587, 0.0138167795, -0.022844637, 0.02452143, -0.012502173, 0.023354381, 0.0077467863, -0.026815284, -0.0023206824, -0.0082431175, 0.024990933, -7.88093E-4, -0.0061706007, 0.007377892, -0.014769198, -0.020631269, 0.0058352416, -0.031228604, 0.021677587, 0.012790582, 0.0123948585, 0.011026595, -0.016580135, 0.028492078, -0.017854499, -0.033696845, -0.030155456, -0.00484258, -0.02698967, 0.016392335, -0.061706007, 0.015506987, 0.015346015, -0.0032513028, -0.03713092, 0.004158448, -0.012401566, -0.0072102128, 0.021825146, -0.020953214, -0.050733067, -0.017076466, -0.008598598, -0.021449544, -8.191137E-4, 0.017653283, 0.016244777, 0.020000795, 0.008833349, 0.009188829, -0.028465249, 0.003137281, -0.0035715704, -0.024870204, 0.0034910843, 0.004624597, 0.011918649, 0.0012399888, -0.020000795, 0.01856546, -0.0056575015, -0.003802968, 0.020872727, -0.032301754, -0.013709465, -0.033509042, 0.0104028275, -0.020591026, 0.005271839, 0.026855526, -0.033884645, 0.0048090443, -0.034313906, 0.013501543, -0.012555831, 0.00845104, 0.0144204255, 0.017317925, 0.010845501, -0.016137462, -0.02461533, -0.0042557023, 8.0863375E-4, 0.0107516, -0.019745922, -0.014031409, 0.030799346, 0.023850713, -0.0069687543, 0.005788292, 0.012441808, -0.01179792, -0.003688946, -0.07549596, 0.032301754, -0.014809442, -0.006851379, -0.007143141, 2.0750321E-4, 0.023448283, -0.011670483, 0.007921173, 0.0076663005, -0.013313741, 0.011093667, -0.0014722248, 0.013085698, -0.0041450337, 0.03549437, -0.002778447, -0.008082145, -0.0035983992, 0.0044904533, -0.0081760455, -0.004963309, 0.03192615, -0.010684529, -0.0012894543, 0.01906179, 0.015828932, 0.017961813, -0.009309558, -0.011730848, 0.019115448, -0.012710095, -0.017867913, 0.017841084, -0.0101010045, -0.02708357, -0.021154428, -0.009658331, 0.018270344, 0.015426502, -0.010999766, -0.014997242, -0.0019316663, -0.02347511, 0.0011444116, 0.035977285, -0.016030148, 0.012435102, 0.017130123, 0.008565062, 0.03793578, 0.013219841, -0.0029293585, -0.009718696, 0.023689741, -0.0430064, 0.037184574, 0.0046614865, -0.0044401493, -0.009631502, 0.021489788, 0.01118086, 0.025178732, -0.016110633, -0.00985284, 0.017411824, 0.007954709, -0.0060901144, 0.002161387, -0.027848188, 0.0069419257, -0.0024112293, 0.015131386, 0.03214078, 0.020161767, 0.005734634, -0.014286282, 0.01566796, 0.007800444, 0.02359584, 0.021597102, -0.025675064, -0.02639944, 0.008383968, 0.0044636247, 0.023636082, -0.0118582845, 0.012388151, -0.013427763, 0.01535943, -0.015426502, 0.0055535403, 0.0184179, 0.01835083, -0.0064388877, 0.0064288266, -0.011663777, -0.008880299, 0.0023106216, 0.020483712, -0.0121601075, -0.003722482, -0.014487497, -0.01118086, -0.026023837, -0.019383734, -0.012837532, -0.025125075, 0.009986983, 0.023917785, 0.030879831, 0.008793105, -0.024360457, 0.0027918613, -0.02908231, 0.007921173, 0.0036788853, -0.011831456, -0.02038981, 0.04475027, 0.0041718627, 0.015278944, 0.026345782, -0.012736924, 0.023783641, 0.012555831, 0.019786164, -0.02319341, 0.009517481, 0.0030081677, -0.00902115, -0.0029712783, -0.028465249, 0.008397383, -0.013897265, 0.0076260576, 0.01179792, 0.01687525, -0.0079077585, 0.055964664, 0.01998738, -0.00488953, 0.026426267, -0.024897031, 0.02516532, 0.010228441, 0.022428792, -0.024132414, -0.0038599789, -0.010550385, -0.014594812, 0.010664407, -0.029431082, -0.0044166744, 0.012643024, 0.0019484342, 4.4099672E-4, -0.0041450337, -0.023367796, 0.005711159, -0.0061605396, 0.01801547, 0.01082538, -0.030745689, -0.015855761, 0.030933488, -0.003769432, -0.0065126666, -0.025728721, -2.10228E-4, -0.034072448, 0.0060331034, -6.7333744E-6, 0.024239728, 6.6736387E-4, -0.010060762, -0.0013431117, 0.01474237, 0.010033933, -0.014407011, 0.004265763, -0.012998505, -0.0041249124, 0.014769198, -0.011771091, 0.012998505, -0.024561673, -0.033401728 ], + "id" : "d9cad21c-1328-47f5-9e07-78de0dc6c00d", + "metadata" : { + "source" : "movies.csv" + } + }, + "1aab0980-5b27-40b3-8c94-0f3a40d05f58" : { + "text" : ",82703-270946-82702-177572-172385-159824-15512-105864-297270-170687-211672-150540-109451-175112-950-49519-136799-76492-228165-10009\r\n331,Jurassic Park III,Adventure-Action-Thriller-Science Fiction,en,In need of funds for research Dr. Alan Grant accepts a large sum of money to accompany Paul and Amanda Kirby on an aerial tour of the infamous Isla Sorna. It isn't long before all hell breaks loose and the stranded wayfarers must fight for survival as a host of new -- and even more deadly -- dinosaurs try to make snacks of them.,2.505,Universal Pictures-Amblin Entertainment,7/18/01,93000000,368780809,92,Released,\"This time, it's not just a walk in the park!\",6.131,6744,Sam Neill-William H. Macy-T��a Leoni-Alessandro Nivola-Trevor Morgan-Michael Jeter-John Diehl-Bruce A. Young-Laura Dern-Taylor Nichols-Mark Harelik-Julio Oscar Mechoso-Blake Michael Bryan-Sarah Danielle Madison-Linda Park-Sonia Jackson-Bruce French-Bernard Zilinskas-Rona Benson-Frank Clem-Craig Hosking-Rick Shuster-Sean Coffey-Karin M. Gaarder-Edward C. Gillow-Craig Richards-Brad Everett Young,rescue-mission-exotic island-island-airplane-velociraptor-dna-tyrannosaurus rex-paleontology-spinosaurus-dinosaur-creature-scientist-amusement park-paragliding-pterodactyl-pterosaur-costa rica-animal horror,/oQXj4NUfS3r3gHXtDOzcJgj1lLc.jpg,/oenFbrSPvTWzgmvlUikBhHtEVpg.jpg,330-329-135397-351286-933908-1734-217-564-608-8373-1858-36657-9738-36658-1979-1894-36668-38356-87-254-89\r\n8346,My Big Fat Greek Wedding,Comedy-Drama-Romance,en,A young Greek woman falls in love with a non-Greek and struggles to get her family to accept him while she comes to terms with her heritage and cultural identity.,12.501,Ontario Film Development Corporation-Gold Circle Films-HBO-MPH Entertainment Productions-Playtone,2/22/02,5000000,368744044,95,Released,Love is here to stay... so is her family.,6.5,1874,Nia Vardalos-John Corbett-Lainie Kazan-Michael Constantine-Andrea Martin-Joey Fatone-Louis Mandylor-Gia Carides-Christina Eleusiniotis-Marita Zouravlioff-Gerry Mendicino-Bess Meisler-Jayne Eastwood-Fiona Reid-Bruce Gray-Frank Falcone-Stavroula Logothettis-Ian Gomez-Petra Wildgoose-John Kalangis-Kaylee Vieira-Melissa Todd-Sarah Osman,parent child relationship-greece-culture clash-midlife crisis-restaurant-bad mother-in-law-mother-in-law-parents-in-law-son-in-law-father-in-law-patriarch-bad father-in-law-greek-wedding-family-xenophobia,/wSH8ZNE8sMbvJwetK5DC87bhqd2.jpg,/hMEzWWCxsqWLDgrbUaU0orEmcZt.", + "embedding" : [ 0.012251491, -0.043612055, -0.010232164, -0.031225039, -0.023947328, 0.014975551, -0.008334809, -0.012807145, -0.009181842, -0.030655833, 0.020898009, 0.030899778, 0.021101296, -0.013383128, 0.011214722, 0.028514532, 0.024313247, -0.018973548, 0.021087743, -0.016344355, -0.008429676, 0.0023428944, -0.024272589, 0.0054921643, 0.01882447, 0.04030524, 0.0075758668, -0.012122742, -0.0076029715, -0.008226388, 0.017564084, 0.0046044737, 4.2960473E-5, -0.024313247, -0.01845855, -2.9355E-5, 0.008558425, -0.007535209, 0.030384783, -0.008463558, 0.0030459322, 0.024367457, -0.020654062, -0.008002771, -0.006118969, 0.00967651, 0.021507872, -0.0038963535, -0.0056446306, 0.016710274, 0.025654947, 0.031902667, -0.02984268, -0.02251076, -0.0076436293, -0.008727832, -0.004621414, 0.008714279, 0.0029341236, -0.008578754, 0.01114696, -0.012373464, -0.02614284, -0.004899241, -0.0055395984, -0.0013916759, 0.0033915218, -0.016181726, 0.0067356094, 0.0048585837, 0.026034418, 0.004086089, 0.023757592, 0.00497378, -0.0014492741, -0.031089514, 0.0010282985, 7.3946017E-4, 0.0040454315, 0.019691832, 3.8815304E-4, -0.013945558, -0.0045197704, 0.0035981978, 0.014568974, 0.014772262, -0.0077046156, 0.01946144, -0.029002422, 0.012766487, 0.013430562, 0.038597617, -0.0056751235, 0.012109189, 0.010882685, 0.021006428, -0.021806028, 0.03274292, -8.567743E-4, -0.02957163, -0.0021717937, -0.0048755244, 0.013186616, -0.014609632, -0.012237938, -6.0817E-4, 0.015978439, -0.024259036, 0.020233933, -0.0058479183, 0.009066645, 0.007995995, 0.009053092, -0.028731372, -0.0016932198, -0.027470987, 0.020911561, -0.010327031, -0.01839079, -0.01192623, 0.022144841, 0.022185499, 0.017482769, -0.028622953, 0.026874676, 0.03518238, 0.00421145, -9.343837E-5, 8.8144414E-5, 4.3013413E-5, 0.018905785, -0.008971778, 0.035914216, 0.0058140373, -0.03632079, 0.047460973, -0.013762599, -0.012895237, -0.0113638, -0.0248689, 0.032878447, 0.04732545, -0.039004195, -0.022673389, -0.018350132, -0.0077520497, 0.0064848876, -0.0018092634, 0.016981326, -0.0076639582, 0.033556074, 0.020586299, 0.00831448, 0.03255319, 0.017130403, 0.0062782117, 0.005610749, -0.009635852, 0.0014882376, -0.011594193, -0.013566087, 0.0057361103, -0.0018956608, -0.0038116502, 0.0063290335, 0.025736263, 0.013477995, -0.012441226, -0.00909375, -0.0073725786, -0.019705385, 0.0139320055, -0.014609632, 0.008253493, -0.006749162, 0.039708927, 0.007508104, -0.012373464, -0.026224153, -0.0069592264, 0.0032000921, 0.0026444383, 0.032282136, 0.04512994, -0.0070744227, -0.0010215222, 0.023486542, -0.035046853, 0.015748044, -0.0076029715, 0.008612636, 8.322103E-4, 0.0072506056, -0.0067017283, -0.64098066, -0.008937896, 0.0013992991, -0.01962407, 0.021968657, 0.03716105, 0.018173948, -0.01259708, -0.031929772, -0.019244598, -0.022483654, 0.014311477, 0.014148845, -0.020952217, -0.015653176, -0.014297924, 0.010333807, -0.020762483, 0.025546527, 0.014975551, -0.044045735, 0.019596964, 0.029219264, 0.013010433, 0.0035846452, 0.02289023, -0.014514764, -0.014609632, 0.026806913, -0.0073454734, -0.015978439, -0.001395911, -0.002922265, -0.01769961, 0.030953988, -0.0071896194, 0.0022158395, 0.045970198, 0.031360563, 0.042771798, -0.017143955, -0.0019600352, 0.01732014, 0.01657475, -0.0105845295, 0.02374404, 0.012075308, 0.0029205712, 0.008571978, -0.0146638425, -0.016710274, 0.01662896, 0.010936895, -0.007399684, 0.0028036805, 0.019935777, 0.015504099, -0.038787354, 0.030330572, -0.004468948, -0.015043313, 0.017469216, 0.0077656023, 0.01615462, -0.0027257535, 0.019651175, -0.0023259537, -0.010889461, 0.009669733, -0.029219264, 0.016439224, 0.018553419, -0.0022717435, -0.011993993, -0.0042250026, 0.017306587, 0.012962999, 0.015937781, -0.00916829, 0.031306352, 0.006295152, -0.0030611786, 0.003122165, 0.03268871, 0.026047971, -0.010604858, -0.039058402, 0.019664727, 0.026197048, -0.0040454315, 0.0106726205, 0.015314364, -0.0018058752, 0.014311477, -0.011438339, -0.010706502, -0.00949355, -0.005912293, 0.022131288, -0.060715355, 0.004289377, -7.3861313E-4, -0.0013129017, -0.016113963, 0.020816693, 0.0026529087, -0.005634466, 0.013959111, 0.02149432, -0.006715281, -0.0012341277, -0.005017826, -0.006362915, 0.0023903283, -0.0032271973, -0.024231931, 0.0050652595, 0.01101821, -0.003450814, 0.015205943, 0.023066413, 0.014108188, 0.0066610705, -0.0153279165, 0.020816693, 0.025465213, 0.0013323835, -0.011357023, 0.01866184, -0.0011782234, 5.230431E-4, 0.011140184, 0.02080314, -0.013674507, -0.013545758, 0.008239941, 0.02924637, 0.0019363184, 0.019271703, -9.147961E-4, -0.025763368, -0.010781041, -0.022442997, -0.013755823, 0.0016593384, -0.010449004, -0.019813806, 0.004648519, -0.01272583, -0.016506987, -0.013654178, 0.008084087, -0.003933623, 0.0014789203, -0.0084229, 0.0057564387, -0.016656065, -0.024787584, 0.0075690905, -0.0033051244, 0.010835251, 0.012895237, -0.010245716, -0.023351017, 0.012319254, -0.017076192, -0.017469216, 0.0025834518, 6.899087E-4, -0.025045084, 0.009371578, -0.012217609, -0.020504985, 0.019122627, 0.0013061255, 0.021968657, -0.0059902202, 0.010171177, -4.9805566E-4, -6.8397945E-5, -0.009053092, 0.0034321793, -0.007955338, 0.007480999, 0.015395679, 0.013206945, 0.0106726205, 0.005732722, -0.011065644, 0.021928001, -5.2685477E-4, -0.007711392, -0.028487427, -0.0031120006, 0.0068169245, 0.00350333, -0.017225271, 0.024042197, -0.010550648, 0.007162514, 0.042717587, 0.018797366, -9.723943E-4, -0.015273706, 0.017658953, -0.026562966, 0.00517368, -0.037025522, 0.010570977, -0.00943934, 0.018472103, -0.0017448888, -0.016249489, -0.002866361, 0.010604858, 0.01152643, -0.027294803, 3.8243557E-4, -0.0016584913, 0.0039099064, 0.0073658023, 0.010218611, 0.037350785, 3.9175295E-4, -0.031143723, 0.010543872, 0.004939899, -0.0025970044, -0.007121857, -0.0060986406, -0.007081199, 0.010042428, -0.018634735, 0.016805142, 0.0025715933, 0.0019871404, 0.032363452, -0.009161513, 0.028162166, -0.013139182, 0.006085088, 0.018499209, 0.035914216, -0.010320255, 0.0018685557, -0.010591306, 0.014555422, 0.010679397, -0.026102182, 0.0352908, -0.007826588, 0.018241711, -0.009595194, 0.009100527, 0.009927232, -0.009791706, 0.0068338653, 0.0073115923, 0.040386554, 0.015585414, 0.0030967542, -0.028406112, 0.030628728, 0.008517768, 0.010543872, 0.0013764292, -0.0336916, -0.009466445, 0.0073454734, -0.020586299, -0.027105069, -0.017279482, -0.002713895, 0.01492134, -0.015598967, -0.018377237, 0.01141801, 0.008233164, -6.5856846E-4, 0.010774265, -1.2991375E-4, -0.03352897, 0.024028644, 0.021900896, -0.011960112, -0.015653176, -0.010225387, -0.0043401993, -0.02829769, -0.011228275, -0.014433449, 0.02679336, -0.03160451, 0.0031763753, -0.018106185, -8.7720895E-5, 0.015246601, -0.0062748236, 0.021968657, 0.019190388, -7.348014E-5, 0.03556185, -0.0042453315, -0.0038692486, 0.025763368, -0.011282485, 0.02187379, -0.004309706, 0.0027240594, 0.005271936, -0.0016068224, 0.009473221, -0.025831131, 0.00847711, -0.01769961, -0.018973548, 0.005966503, 0.01374227, -9.800176E-4, -0.015382126, -0.019109074, -0.033285026, -0.02748454, 0.0028070686, 0.057029065, 0.038218148, 0.015314364, 0.010970777, 0.007379355, 0.0065865316, -0.021006428, -0.019556306, -0.0057564387, -0.016425671, 0.0057462747, 0.006749162, 0.018688945, 0.015043313, 0.018485656, -0.0014289453, -0.006854194, 0.002844338, 0.00582759, -0.007128633, -0.018146843, -0.019081969, 0.013776151, 0.043178376, 0.0012891848, -0.014718052, 0.024570744, 0.015449889, -0.005803873, 0.015558309, -0.017889345, 0.010679397, 3.1954335E-4, 0.011607746, -0.010266045, -0.0015017902, 0.01866184, -0.009717167, 0.037459206, 0.02015262, 0.0069795554, 0.012664843, 0.008443229, -0.015463442, 0.014040425, -0.02000354, -0.026102182, 0.018702498, 0.020870904, -0.02572271, 0.021060638, 0.004462172, -0.0055938084, -0.0074877753, 0.020125514, 0.0025512646, -0.006867747, 0.0011689061, -0.01967828, 0.0022734376, 0.008199283, -0.04605151, 0.006200284, -0.015598967, -0.009249604, -0.008429676, -0.012048203, -0.007508104, -0.025912445, 0.008463558, 0.005834366, -0.032363452, -0.011668732, -0.020084856, 0.011024986, -0.008016324, 0.02310707, -0.0024716435, 0.02144011, 0.013274707, -0.022686942, -0.029869786, -0.0014619796, -0.022551417, -0.00949355, 0.011716166, -0.013017209, 0.017076192, -0.002129442, 0.0062240013, 0.0030510144, 0.0014230161, -0.027552303, -0.010313478, 0.02663073, 4.235167E-4, 0.011235051, 0.029083738, 0.00446556, -1.7798289E-4, 0.0081247445, -0.021385899, -0.030520307, -0.012929117, -0.017265929, -0.013918453, 0.0012104107, 1.9455298E-5, -0.007067647, -0.023757592, -0.016059753, -0.019163283, 0.0160462, 0.014474107, 0.011451892, 0.0026986485, 0.016696721, -2.3716936E-4, -0.0022429444, 0.005763215, -0.0015661648, -0.015680281, 0.026942438, 0.034613173, -0.0030747312, 0.006650906, -0.010889461, -0.036862895, 0.0022260037, 0.015598967, -5.975821E-4, 0.002763023, -0.01973249, 0.00559042, -0.012448003, -0.010625187, 0.0034050741, 0.009127632, -0.017184613, 0.011865243, -0.017726716, 0.0011248604, 0.018377237, -0.006295152, -0.0035168827, -0.027050858, 0.0018363683, -0.016994879, 0.012061755, 0.02951742, -0.029110843, -2.5538055E-4, -0.021236822, -0.010144072, -0.0019481768, -0.028866898, -0.012251491, 0.0030645668, 0.039817344, 0.00334917, 0.039546296, -0.0113366945, 0.021358794, 0.015639625, 0.017835135, 0.019000653, -0.02305286, -0.0014552034, -0.03428791, -0.0049297344, 0.02728125, 0.01339668, 0.024774034, 0.004784045, 0.0046959533, 0.028433217, 0.0058546946, 0.0013154428, 0.005505717, -0.024665613, -0.019231046, 0.008294151, -0.029707154, -0.0010054286, -0.015612519, -0.015395679, 0.027674275, -0.011750047, -0.0069388975, -9.90182E-4, 0.035643164, -0.01572094, 0.011790705, -0.026874676, 0.0070202127, -0.018011319, -4.7984443E-4, -0.027674275, -0.022415891, -0.0012883377, -0.0032322793, 0.021006428, 0.003323759, -0.029110843, 0.0029968042, 0.013064643, -0.0056209136, -0.02176537, 0.030330572, -0.010821698, -0.015273706, -0.021887343, -0.0069795554, -0.031333458, -0.006894852, 0.002817233, 0.007304816, 0.0010892849, -0.0110724205, -0.033718705, 0.019935777, 0.012841026, 0.038082622, -0.0019380124, 0.048057288, 0.014636737, 0.011885572, -0.045211256, 0.0077452734, -0.010875909, -1.5977168E-4, 0.017428558, 0.020613404, -0.0018719438, -0.021033533, 0.00278674, -0.011831363, -0.037133943, -0.036971312, 0.01610041, 0.00678982, 0.025763368, -0.024584297, 1.1413775E-4, -0.03011373, 0.030899778, 0.014704499, 0.014880682, 0.018688945, -0.017293034, -0.010123743, 0.006142686, -0.0065458743, 0.022957994, 0.013959111, -0.030086625, 0.009757824, -0.01973249, 0.0026427442, -0.015002656, 8.2543405E-4, 0.031929772, -0.010692949, -0.0034694488, 0.0018583912, 0.0033813573, 0.012319254, -0.0029188772, -0.010984329, 0.03182135, -0.024231931, 0.009818811, -0.010679397, 0.01385069, -0.016967773, 0.008416124, -0.017103298, -0.012542871, -0.03011373, -0.008910791, 0.02198221, 0.0072709345, -0.0024767257, 8.36869E-4, -0.018431447, 0.0010257574, 0.004052208, -0.006986331, 0.0076639582, -0.032065295, 0.0063290335, -0.011675509, 0.008680399, -9.740884E-4, 8.0722285E-4, 0.009690062, -0.0090327645, 0.014053978, 0.0016186808, 0.0038421436, -0.020667614, -0.0131324055, -0.03876025, -0.016141068, -0.01887868, -0.022402339, 0.010171177, -0.021426557, 3.2907247E-4, -0.012969775, 0.0053396984, 0.005529434, -0.007813036, -0.027918221, 0.008673622, 0.030195046, -0.010848803, 0.0022734376, -0.0029612288, 0.036591843, 0.016913563, -0.0067085046, 0.0058987406, 0.01717106, 0.03716105, -0.028135061, 0.013877795, -0.005685288, -0.026169945, -0.0021413004, 0.0010469332, 0.030466096, 0.028379006, 0.0077452734, -0.033447653, -0.004662072, -0.015680281, 0.019664727, -0.0058242017, -0.010299926, 0.034043968, 0.020884456, 0.039925765, 0.025790473, 0.00826027, -0.020681167, -0.013227274, -0.018119738, -0.02256497, 6.1282865E-4, 0.011844915, 0.0063120928, 0.00284095, -0.01813329, -0.031848457, -0.006142686, -0.009832364, -0.027714932, 0.0037337232, 0.014840025, 0.058221687, 0.015355022, 1.10537854E-4, 0.010781041, -0.012637738, 0.012820697, -0.012746158, -0.005075424, 0.022917336, 0.016032647, 0.021778923, 0.0374321, -0.031794246, -0.012644514, 0.024828242, 0.019488545, 0.022497207, 0.030140836, -0.032580294, -0.0035778692, -0.0057022288, -0.0061528506, -0.004035267, 0.0056209136, 0.029219264, -0.025275476, -0.011865243, 0.013721941, 0.024137063, 8.247988E-5, 0.011377352, -0.010577753, -0.019502098, 0.011716166, -0.012651291, -0.029544525, -0.0047738804, -0.02924637, 0.022605628, -9.181842E-4, -0.0017203249, 0.014934893, 0.023933776, -0.011878796, 0.013125629, -0.019434335, -0.0014280983, 6.018172E-4, 5.281253E-4, 0.0089446725, 0.020735377, -0.034911327, 0.023229044, -0.02957163, -0.0044282908, -9.2241936E-4, -0.0046722363, -0.022483654, 0.028514532, 0.0061901202, -0.051526736, -0.006617025, -0.0019007429, 3.019674E-4, -0.007609748, -0.0039437874, -0.021209717, -0.015734492, -0.0054820003, 0.012393792, -0.029490314, -0.029056633, 0.010198282, -0.02074893, -0.021426557, 0.012183729, 0.1807366, -0.012285372, 0.016249489, 0.05919747, 0.023134176, 0.022537865, 0.017089745, 0.01797066, -0.030411886, 0.016263042, -0.004191121, 0.0063087046, 0.0029612288, -0.0021108072, 0.020410117, -0.0047535514, -0.016019095, -0.019447887, -0.04166049, -0.021670502, -7.4665993E-4, -1.2154929E-4, -0.021358794, -0.0058784117, 0.015070418, -0.0026139452, -0.012847803, -1.616775E-4, 0.008666846, 0.003977669, -0.026888227, -0.013891348, -0.004330035, 0.0022768257, -0.016493434, -0.011424786, 0.007284487, 0.014203056, 0.008619412, 0.0069795554, 2.2785198E-4, -0.0055667036, -0.006366303, -0.009649404, -0.001904131, 0.0029527585, -0.02165695, -0.0019126014, -0.030926883, 0.0029392058, -0.049520962, 0.002764717, 0.0010316867, 0.012061755, -0.0041030296, -0.01232603, 0.005041543, -0.025763368, -0.009127632, 0.008517768, 0.006728833, 0.03336634, -0.02978847, 0.006572979, -0.012265043, 0.006220613, -0.031333458, 0.011682285, 0.015734492, -0.03469449, -0.008334809, -0.023296807, -0.02020683, 0.0044723363, -0.010618411, 0.0013510182, 0.0018380624, 0.016818695, 0.01706264, 0.006471335, -0.035209484, -0.009107303, 0.00898533, -0.014609632, -0.013986215, -0.047948867, 0.016195279, -0.022714047, 8.987024E-4, -0.027118621, -0.017672505, -0.005448119, -0.018594077, -0.0017669117, -0.0035948097, 6.077465E-4, 0.01492134, 0.026088629, -0.0054650595, -0.003554152, -0.022171946, 0.025370345, 0.028568743, -0.015870018, -0.022957994, -0.021155506, 0.0038692486, 0.025017979, 0.037459206, -0.018783813, -0.011973664, -0.017740268, 0.0058784117, -0.008917567, -0.0028036805, 0.0022717435, 0.013383128, -0.028731372, 0.042419434, -0.014772262, -0.00836869, -0.021155506, -3.8772952E-4, -0.0013569475, 0.0040996415, -0.023174834, -0.016235936, 0.015355022, 0.005326146, -0.039085507, 0.015626073, -0.028921109, 0.015273706, 0.0024411501, -0.016872905, -0.0037980978, 0.021928001, 0.006322257, 0.020721825, -0.0016822083, -0.00655265, -0.010096638, -0.009757824, 0.010638739, 0.016588302, -0.02973426, 0.011546759, 5.984291E-4, -0.011221498, -0.02721349, -0.010733607, -0.010882685, 0.011390905, 0.013877795, 0.036293685, 2.9201477E-4, -0.03748631, -0.043124165, -0.013918453, 0.028053746, -0.020464327, 0.017564084, 0.02107419, -0.019027758, -0.026712045, -0.021589188, -0.1732556, 0.020789588, -0.0023987985, -0.027891116, 0.021589188, 0.022673389, 0.031523194, 0.0065662027, 0.026549414, -0.010042428, 0.03149609, 0.003699842, -0.05122858, 0.005393909, -0.002331036, 0.011702613, -0.011533206, 0.02015262, 0.017089745, -0.020952217, 0.013959111, 0.0063798553, -0.0066305776, -0.008917567, 0.0049670036, 0.023933776, 0.004441843, -0.011207946, 0.010781041, -0.016750932, -0.041633386, 0.015802255, 0.001295114, -0.015544757, -0.0024936663, -0.0023412004, -0.009784929, -0.019027758, -0.0032407497, -0.0068779113, 0.006823701, 0.0022226155, 0.023486542, -0.004336811, 0.01385069, 2.3886342E-4, 0.009859469, -0.013823585, 0.0050652595, -0.012841026, -0.009561313, -0.037567627, 0.024394562, -0.0028494203, -0.012339583, 0.025478765, -0.02020683, -0.010062757, 0.00956809, 3.1403764E-4, -0.037350785, -0.018946443, 0.017455664, 1.6570091E-5, -0.022917336, -0.016385013, -0.018566972, 0.015382126, -0.039031297, 0.011682285, -0.014067531, -0.0074471175, 0.020613404, 0.008748161, 0.0068033724, -0.025248371, -0.01925815, 0.015300811, -0.0056412425, 0.013728717, -0.02973426, 0.039166823, -0.016615408, 0.011323143, 0.019190388, -0.021169059, 0.009161513, 0.008287375, 0.012502213, -0.0022954606, 0.011993993, -0.033122394, -0.030953988, -0.0031848457, 0.010442228, 0.01141801, -0.0020921724, 0.022863125, 0.004845031, -0.0046044737, -0.008897238, -0.0058750235, -0.015260153, 0.03336634, 0.029951101, 0.017347245, 0.0034491199, 0.024719823, 0.023676278, 0.010733607, -0.016778037, 0.01165518, 0.016235936, 0.018810917, -0.016344355, 0.016385013, -0.02278181, -0.02572271, 0.0053159813, 0.01695422, 0.035643164, -0.012217609, 0.0038489196, -0.01502976, 0.009466445, -0.010821698, -0.09833719, 7.019789E-5, 0.017347245, 0.04336811, -0.046864662, 0.021697607, -0.007453894, 0.0168458, -0.030953988, 0.032905553, -0.010679397, -0.016019095, 0.010469332, 0.0020481267, 0.007067647, 0.006518769, -0.018038424, -0.010991105, -0.008165402, 0.023188386, 0.009859469, -0.0039675045, 0.016452776, -0.0060241013, -0.027186384, 0.013701612, -0.034477647, 0.01662896, 0.013972662, 0.017835135, 0.0015111075, -0.020545643, 0.014121741, -0.03428791, -0.041226808, -0.031848457, -0.024367457, -0.039763134, 0.016208831, -0.040820234, 0.009879798, 0.006796596, 0.012630962, -0.036944207, 0.0037947097, -0.015910676, -0.03594132, 0.020166172, -0.00956809, -0.031577405, -0.024760481, -0.010869132, -0.024245484, 0.0077046156, 0.014040425, 0.019881567, 0.023893118, 0.01877026, 0.008131521, -0.013613521, -6.8821464E-5, -0.008599083, -0.03176714, 0.02129103, 0.0049331225, 0.015842913, 0.0040047737, -0.02096577, 0.018648287, -0.0011960112, -0.020586299, 0.023594962, -0.0320924, -0.010875909, -0.020355906, 0.0036049741, -0.048870437, -0.002131136, 0.017496321, -0.04193154, 0.0030052746, -0.03203819, -0.001395911, -0.023608515, 0.0029239592, 0.021928001, 0.00909375, 9.664651E-4, 0.009066645, -0.026861124, 0.0057157814, 0.019041311, -0.004116582, 0.009615523, -0.017049087, 0.016019095, -1.21337536E-4, 0.007738497, -1.29172595E-5, -0.0089446725, -0.01572094, 0.012475108, -0.07470157, 0.018810917, -0.003527047, -0.024760481, -0.00579032, -0.015815808, 0.0046824007, 0.0019735878, 0.0024191274, -2.583452E-4, -0.01717106, 0.02149432, -0.009358025, -0.004824702, -0.0066407416, 0.013301812, 0.0026834018, 0.0028697492, 0.00675255, 1.1763176E-4, -0.008836253, -0.01673738, 0.023418779, 0.0031052243, 0.008795595, 0.02797243, 0.008117968, 0.01695422, -0.012298925, -0.010177953, 0.026346127, -0.013999768, -0.014555422, 0.0064476184, -0.014135294, -0.026996648, -0.017415006, -0.0046315785, 0.018146843, 0.009479998, -0.014853577, -0.032715816, -0.012691949, -0.016317252, -0.008504216, 0.025261924, -0.018621182, 0.014311477, 0.0051872325, 0.004692565, 0.027227042, 0.011126631, -0.0032305853, -0.016263042, 0.01599199, -0.01962407, 0.04407284, 0.0077046156, -0.0061121928, -0.0053464747, 0.021263925, 0.0058242017, 0.025031531, -0.018512761, -0.008334809, -0.014094636, 0.0028883838, -0.017957108, 0.0051635155, -0.0107403835, -0.012881684, 0.007657182, 0.0092225, 0.035046853, 0.014243714, 0.023540752, -0.013803256, 0.013437338, 0.017198166, 0.023757592, 0.029707154, -0.010686173, -0.046891768, 0.022212604, 0.010130519, 0.01662896, 0.008612636, 0.009534208, -0.0065797553, 0.019380124, -0.021236822, 0.014501211, 0.0235272, -0.007718168, -0.010069533, 0.018038424, -0.008612636, -0.018594077, -0.018526314, 0.027172832, 0.004258884, -6.6026254E-4, -5.785238E-4, -0.0131053, -0.020111961, -0.003120471, -0.016249489, -0.040223923, 0.016181726, 0.008951449, 0.017428558, 0.015639625, -0.021900896, 0.015422784, -0.04602441, 0.0029087127, -0.0014331805, -0.0135999685, -0.014907788, 0.032715816, 0.010177953, 0.011079197, 0.037459206, -0.007230277, 0.040251028, 0.02545166, 0.02539745, -0.024584297, -0.015639625, 0.0039675045, -0.010692949, 0.0063866316, -0.040088397, 0.0010494743, 0.0020498207, 0.0030239092, -0.0027325298, 0.034504753, -0.0041741803, 0.06559426, -0.0038861893, 0.010035652, 0.016710274, -0.028053746, 0.005963115, 0.016168173, 0.005153351, -0.0049907207, -0.0027697992, -0.01401332, -0.008653293, 0.00584453, -0.027945325, 0.0016864435, -0.004922958, 0.012976551, 0.0048890766, -0.018946443, -0.019014206, -0.0010308396, 0.002964617, 0.011722942, 0.0054820003, -0.024841795, -0.007826588, 0.008409347, -0.012170176, -0.007257382, -0.03716105, 0.013837137, -0.025411002, 7.381896E-4, 0.006010549, 0.0155718615, 0.00579032, -0.010753936, -0.0023971044, 0.034098174, 0.0041707926, 0.003777769, 0.003804874, -0.012197281, -0.0028968542, -0.004262272, 0.011790705, -0.0013603356, -0.026549414, -0.03534501 ], + "id" : "1aab0980-5b27-40b3-8c94-0f3a40d05f58", + "metadata" : { + "source" : "movies.csv" + } + }, + "c64ad189-be7e-47da-b442-f908eb5ee88c" : { + "text" : "Krishnan-David Bowe-Kamal Jones-Aaron Lustig-Jim Holmes-Kristen Welker-Cornell Womack-David Luengas-Derek Alvarado-Alex Fernandez-Casey Nelson-Jason Roehm-John Nielsen-Rick Cramer-Arnold Chun-Marvin Jordan-Marc Evan Jackson-Josh Kelly-Jayson Floyd-Geoff Reeves-Aaron Garrido-Joel Lambert-David Paul Olsen-Brian Shehan-Peter Cullen-Mark Ryan-Reno Wilson-Jess Harnell-Robert Foxworth-Andr�� Sogliuzzo-Grey DeLisle-Hugo Weaving-Tony Todd-Charlie Adler-Frank Welker-Tom Kenny-Calvin Wimmer-John Di Crosta-Michael York-Kevin Michael Richardson-Robin Atkin Downes-Jenn An-Alexandra Begg-Caitlin Dulany-Andrew Hwang-Matt Iseman-Shayna Ryan-Karina Michel,egypt-chaos-sun-tank-symbol-alien-artifact-revenge-based on toy-robot-duringcreditsstinger-transformers,/pLBb0whOzVDtJvyD4DPeQyQNOqp.jpg,/zbdoCe1meTyy0v1fsIxZ9Q0ef3H.jpg,1858-38356-91314-335988-36658-2080-36668-534-13804-1979-20526-558-36657-49538-9738-39254-25565-559-14869-41154-18823\r\n447365,Guardians of the Galaxy Vol. 3,Action-Science Fiction-Adventure,en,Peter Quill still reeling from the loss of Gamora must rally his team around him to defend the universe along with protecting one of their own. A mission that if not completed successfully could quite possibly lead to the end of the Guardians as we know them.,965.585,Marvel Studios-Kevin Feige Productions,5/3/23,250000000,831801000,150,Released,Once more with feeling.,8.053,2139,Chris Pratt-Zoe Salda��a-Dave Bautista-Karen Gillan-Pom Klementieff-Vin Diesel-Bradley Cooper-Sean Gunn-Chukwudi Iwuji-Will Poulter-Maria Bakalova-Elizabeth Debicki-Sylvester Stallone-Austin Freeman-Stephen Blackehart-Terence Rosemore-Sarah Alami-Jasmine Sunshine Munoz-Giovannie Cruz-Nico Santos-Miriam Shor-Noa Raskin-Linda Cardellini-Asim Chaudhry-Mikaela Hoover-Judy Greer-Reinaldo Faberlle-Tara Strong-Jared Leland Gore-Michael Rosenbaum-Elan Gale-Molly C.", + "embedding" : [ 0.0030150097, -0.026771236, -0.02007501, -0.038974766, -0.031677246, 0.041844577, -0.015032343, -0.009183395, -0.026128944, -0.033098485, 0.026320266, 0.017765496, 0.025486654, 0.004485788, 0.013207963, 0.0030594233, 0.017068543, -0.01128109, -0.0017466557, -0.03911142, -0.0021762731, -0.004325215, -0.022944821, 0.024256734, -0.0022804746, 0.0055687996, 0.02301315, -0.014950348, -0.0037170884, -0.0028031901, 0.015373986, -0.0074341767, -0.0016501412, -0.029217407, -0.019924687, 0.0029996356, 0.014226062, -0.017601507, 0.027276868, -0.0013520567, 0.004837681, 0.0061325124, 0.0045131193, -0.014636035, -0.011082936, -0.003204622, 0.009162896, -0.010836952, -0.015005011, 0.020799296, 0.03495703, 0.040040694, -0.033699777, -0.01092578, -0.001578396, -0.0073931795, -0.012374351, 0.011287923, 0.0027758586, 8.8742067E-4, 0.0036795074, -0.012756992, -0.02659358, -0.004636111, -0.01571563, -0.015824957, -0.0017466557, -0.0103244865, -0.007967141, -0.006060767, 0.021168271, 0.0055756327, 0.011260591, -0.0030303835, 0.014540375, -0.028916761, -0.013576939, -0.014458381, -0.014485712, -9.899139E-4, 0.0023078062, -0.0035804308, -0.0026528668, 0.013870752, 0.0072633545, 0.012975644, 0.0074820067, 0.011349418, -0.03359045, 0.01007167, 0.0030765056, 0.032715842, 0.004916259, 0.0046873577, 0.004530201, 0.026115278, -0.01823013, 0.028916761, -0.020129673, -0.04834948, -0.0029227657, -0.007693826, -0.011916548, -0.009948677, 0.00657665, 0.004103146, -0.0036009294, -0.0037956664, 0.018407786, 0.005145161, 0.015114337, 0.005046084, 0.0064673238, -0.04064199, -0.00275536, -0.013481278, 0.01275016, -0.046873577, -0.019282395, -0.018189134, 0.032743175, 0.025158675, 0.009395214, -0.030665979, 0.018954417, 0.037881505, -0.0027280285, -0.01481369, 0.008684594, 0.004619029, 0.024202071, 0.008691427, 0.022247868, 0.0020789045, -0.028096816, 0.04547967, -0.030256005, 0.005145161, -0.015387652, -0.012811655, 0.021195604, 0.029408729, -0.023600778, -0.015305658, -0.029408729, 0.0054799723, 0.014526709, 6.858506E-4, 0.011622733, 0.010590969, 0.010816454, 0.03512102, 0.010433813, 0.021072611, 0.0139800785, -0.009443045, -0.00637508, 0.007297519, -0.002330013, -0.03156792, -0.005339898, -0.02346412, -0.004694191, -0.008424944, -0.0070925327, 0.02372377, 0.016535576, -0.015155334, -0.003319073, 0.008185794, 0.0023898007, 0.034847703, -0.02614261, 0.021359593, -0.012695497, 0.005725956, 8.319035E-4, -0.014198731, -0.04695557, -0.017410185, 0.007953476, -0.0019627456, 0.021168271, 0.030638646, -0.010351818, 0.010734459, 0.033754442, -0.023313796, 0.02007501, -0.018189134, 0.010508974, 0.018708434, 0.0046326946, -0.0138229225, -0.6288439, -0.0212366, 0.012271858, -0.011848219, -0.0051588267, 0.008213125, 0.008465942, -0.018790428, -0.032059886, 0.0016569741, -0.040095355, 0.020034013, 0.010638799, -0.012333354, -0.022179538, -0.011089769, 0.007359015, -0.018735765, 0.029682044, 0.010235659, -0.023546115, 0.013324122, 0.016139269, -0.015401318, 0.004806933, 0.016453583, -0.004171475, -0.023095144, 0.0071608615, -0.015332989, -0.032907166, 0.0083361175, -0.0030850465, 0.01765617, 0.039193418, 0.008383947, -0.029873364, 0.0460263, 0.019569376, 0.031185279, -0.030775305, 0.00103689, 0.010037505, 0.0073931795, -0.016412584, 0.022849161, 0.0056678765, 0.009217559, -0.006211091, 0.0069968724, -0.006105181, 0.003211455, 0.0023488034, -0.0039835707, -0.008049136, 0.0033959427, 0.015319323, -0.02924474, 0.018954417, 0.012606669, -0.027727839, 0.019788029, 0.001532274, 0.0034079005, -0.0015391068, 0.025022017, -0.015087006, -0.004000653, 0.012859486, -0.023710104, 0.023505118, 0.008172128, -0.014185065, 9.7453996E-4, 0.014950348, 0.012128367, 0.030338, -0.0011726936, 8.3873636E-4, 0.03195056, 0.0014793192, -0.016836224, -0.008062802, 0.013645267, 0.019692369, -0.0059616906, -0.0415166, -0.0039289077, 0.006709891, -0.007707492, 0.013952747, 0.012326521, 0.0012589587, 0.004793267, -0.008677761, -0.007406845, -0.011335753, 0.012907316, 0.028998755, -0.06335449, -0.0101195, -0.025964955, 0.04015002, -0.014144068, 0.012886818, 0.020826627, -0.015797626, -0.01884509, 0.027058216, -0.019173069, -0.020443985, 0.007652829, -0.012497343, -0.00874609, 0.003165333, -0.031540588, 0.009251723, 0.012271858, -0.015578973, -0.013802423, 0.0027143627, 0.0052203224, 0.009620699, -0.0037888335, 0.014636035, 0.0242704, -0.0052408213, -0.007782654, 0.007905645, 0.014854687, -0.0011504866, -2.2142811E-4, 0.021045279, -0.009648031, 0.012900483, 0.005425309, 0.011499742, -0.0097983545, 0.008588934, -0.021619242, -0.03170458, -0.01552431, -0.016822558, -0.0048786784, -0.01132892, -0.00637508, -0.043375142, 7.89198E-4, 3.8136027E-4, -0.015209997, -0.012545173, 0.0263066, 0.004311549, 0.018025145, 0.006532236, 0.0075366697, -0.026197273, -0.021318594, 0.01137675, -0.02443439, 0.003156792, 0.016152935, 0.00657665, -0.033317138, 0.016562909, -0.007058368, -0.004783018, -0.008226791, 0.001826088, -0.010126333, 0.020320995, -0.024776034, -0.0060231863, 0.014800024, -0.010064837, 0.027126545, -0.0052271555, 0.035968296, 0.006600565, -0.009477208, -7.366702E-4, -0.013952747, -0.022056546, -0.009805187, 0.019309727, 0.034000427, 0.020307329, -0.0023009733, -0.0045711985, 0.009094567, -0.02737253, -0.015169, -0.0041509764, -0.010433813, -0.013993745, 0.018927086, -0.0057122903, -0.005186158, -0.015592639, -0.00687388, 0.027112879, 0.012558839, 0.015046008, -0.015961615, 0.0072633545, -0.035476327, -4.919676E-4, -0.022234201, 0.004967506, -0.0131533, 0.02633393, -0.023532448, -0.018599108, 0.007577667, 0.013932249, 0.02443439, -0.012340186, -0.0031123783, -0.017601507, 0.009689028, 0.007400012, 0.0080218045, 0.027905494, 0.013802423, -0.032606516, 0.017820159, 0.011793556, -0.015237329, 0.012702329, -0.008390781, -0.013385618, 0.007017371, 0.005247654, 0.011363084, -0.0019080825, -0.016139269, 0.027960157, 4.240658E-4, 0.03605029, -0.013119135, 0.002297557, 0.017423851, 0.017984148, 0.016617572, 0.0054492243, -0.02785083, 0.014513044, 0.011383583, -0.003935741, 0.035585653, -0.022890158, 0.02239819, -0.008172128, -0.0055927145, 0.011151265, -0.018284794, -0.00424322, 0.002369302, 0.028916761, 0.01481369, 0.024612045, -0.031458594, 0.014321723, 0.011192262, 0.014253394, 0.0034386483, -0.0078646485, 0.0035257677, -0.006378496, -0.034656383, -0.030419994, -0.020648973, -0.0029876782, -0.005602964, -0.010884782, -0.007359015, -0.0067679705, 0.009299554, 0.0036555924, 0.020443985, -2.1886578E-4, -0.026361262, 0.005804534, 0.04020468, -0.007188193, -0.023095144, -0.006928543, -0.008254123, -0.03175924, -0.0101126665, -0.0103244865, 0.027386194, -0.011069271, 0.005507304, -0.013529108, 0.0029842616, 0.015237329, -0.022644173, 0.023846762, 0.014062073, -0.0047215223, 0.015114337, -0.008520605, -0.00936105, 0.021906223, 9.250015E-4, 0.011431413, -0.0077894866, 0.004683941, -0.010522639, 0.008083301, 0.004629278, -0.032551855, 0.0136111025, -0.0097983545, -0.015606305, -0.014800024, -0.008903246, -0.005531219, -0.015824957, -0.008834918, -0.023327462, -0.020457651, -0.002941556, 0.07368581, 0.034738377, 0.011287923, 0.027290534, 0.001578396, 0.012852653, -0.010700295, -0.009156063, -0.0133514535, -0.019104742, 0.0036385101, -0.00976419, 0.00515541, 0.002871519, 0.023067813, -0.014458381, -0.009238058, -0.014253394, -0.0055585504, -0.009176562, -0.02562331, -0.015893286, 0.035640318, 0.035367, 0.010748125, -0.006105181, 0.03391843, 0.002777567, 0.0011248634, 0.016029943, 0.0117867235, 0.016549243, 0.014608704, 0.0014024492, 0.012681831, 0.012811655, 0.040478, 0.016029943, 0.024161074, 0.010105834, -0.017984148, 0.018640105, 0.009074069, -0.007898813, 0.010146831, -0.029654711, -0.0048991772, 0.032743175, 0.02191989, -0.037362203, 0.013057639, 7.674182E-4, -0.0130371405, -0.024065414, 0.030419994, -0.0024085913, -0.003001344, 0.0020088677, -0.010331319, -0.008035471, 0.0023095144, -0.029545385, 0.008390781, -0.005121246, -0.012504176, -0.018858757, -0.019596709, -0.010508974, -0.02010234, -0.0024803365, 7.1465015E-6, -0.016808892, 0.0027075298, -0.005022169, 0.010823286, 0.010235659, 0.030556653, 0.0046087797, 0.012552006, 0.013399283, -0.025568647, -0.017027544, 0.013303624, -0.023860427, 6.9994346E-4, 0.012224028, -0.011028273, 0.03569498, -0.01177989, 0.00824729, -0.012900483, -0.008363449, -0.026074281, -5.385166E-4, 0.029654711, 0.009060402, 0.027591182, 0.01758784, 0.006870464, 8.041449E-4, -0.007837317, -0.029928027, 5.194726E-6, -0.024133742, -0.011540739, -0.011506575, -0.0106183, 0.016904552, -0.014827356, -0.022712503, -0.026074281, -0.03246986, 0.0058318656, -0.019391721, 0.018517112, -0.004212472, 0.02614261, 0.011697896, -0.011855052, 0.006600565, -8.327576E-4, -0.030720642, 0.019296061, 0.03170458, 0.010775456, 0.0414346, -0.01587962, -0.01713687, -0.0010804497, 0.035476327, -3.1303146E-4, 0.014636035, -0.013549607, 8.631853E-5, -0.017765496, -0.012217195, 0.003846913, 6.375934E-4, 0.0067201406, 0.00515541, -0.026989888, 0.012278691, 0.018954417, -9.950385E-4, -0.008144797, -0.032770507, 0.01156807, -0.009060402, 0.012353852, 0.031294603, -6.538215E-4, 0.020348325, -0.027358864, -0.017232532, -0.026866896, -0.033153147, -0.009566036, -0.008609433, 0.04941541, 0.015059674, 0.03659692, 0.003628261, 0.03050199, 0.001687722, 0.023805764, 0.019651372, -0.023600778, -0.005138328, -0.018599108, 0.009627532, 0.0043525463, 0.018763097, 4.680525E-4, -2.4715819E-5, -0.0024991268, 0.009702694, -0.011007775, 0.018175468, 0.008705093, -0.02623827, -0.031868566, 0.009839351, -0.026033284, -0.009948677, -0.015496979, -0.008623098, 0.02943606, 5.436413E-4, -0.0029108082, -0.014827356, 0.029408729, -0.011814055, 0.014485712, -0.02872544, 0.02817881, -0.029682044, -0.0013512026, -0.019637706, -0.0021523582, -0.003365195, -0.0031841234, 0.027618513, -0.003761502, -0.011492909, -0.012107869, 0.032879833, -0.035968296, -0.017806493, 0.022234201, -0.024038082, -0.008903246, -0.020826627, -0.0047864346, -0.029900696, -0.026183607, -0.0033412797, 0.0020874457, 0.0151280025, -0.021127274, -0.046873577, 0.022862826, 0.012162532, 0.043101825, 0.017328192, 0.04066932, 0.021769565, 0.02062164, -0.016699566, -0.002213854, -0.014704364, -0.013788758, 0.01346078, 0.021564579, -0.02979137, -0.01031082, 0.010228826, -0.0033839853, -0.033153147, -0.040805977, 0.016385254, 0.024789698, 0.027809834, -0.020402988, -1.8683664E-4, -0.022835495, -0.004868429, 0.015483312, 0.008527438, 0.007420511, -0.026675574, -0.025104012, 4.1104062E-4, -0.009176562, 0.015237329, 0.022029215, -0.027686842, 0.008800753, -0.0043354644, 0.010939445, -0.017792827, -0.014403718, 0.034055088, -0.015483312, 0.014936682, 0.008834918, 0.016221264, 0.0013418074, 0.005804534, 0.013160133, 0.033289805, -0.019077409, 0.013781925, 0.004748854, 2.9125164E-4, 0.02078563, 0.025063016, -0.014144068, -0.023423122, -0.02995536, 0.0027946492, 0.021714902, -0.008096966, 0.0078099854, 0.0030679645, -0.00884175, -0.005609797, 0.0051588267, -5.837844E-4, 0.0037102555, -0.032879833, 0.0037136718, 1.571563E-4, 0.0041373107, -0.0019593292, -2.6520126E-4, 0.005804534, -0.014444714, -0.0034454812, 0.0042534694, -0.0077484893, -0.02230253, -0.02817881, -0.044851042, -0.02614261, -0.008117465, -0.016385254, 2.7331532E-4, -0.012340186, -0.013317289, 0.003132877, -0.011445079, -0.0086026, -0.0062965015, -0.020307329, 0.008322451, 0.012265025, -1.0953966E-4, -0.0032712426, 0.008411279, 0.032961827, -0.017669836, 0.0029808453, -0.003127752, 0.0067372224, 0.023942422, -0.022343528, 0.015291992, 0.0075708344, -0.025158675, 0.007420511, 0.01578396, 0.016822558, 0.017246196, -0.008787087, -0.0182028, -0.007058368, -0.012695497, 0.016549243, -1.4797463E-4, 0.0067338063, 0.030884631, 0.0207583, 0.044277083, 0.025896626, -0.0075366697, -0.027618513, -0.0029808453, 0.004526785, -0.021004282, -0.0032473276, 0.017984148, 0.007912478, 0.0050802487, -0.02310881, -0.02000668, -0.010201494, -0.0050631664, -0.026907893, -0.014526709, 0.0086026, 0.028424794, 0.008301953, -0.0025811216, 0.009429378, 0.010317653, -0.005322816, -0.014499377, -0.014786359, 0.022247868, 0.011506575, 0.030638646, 0.008800753, -0.025008352, 7.0079754E-4, 0.012941481, 0.025035683, 0.01035865, 0.027755171, -0.019760698, 0.0016390377, -0.004079231, 0.009251723, -0.015387652, -0.008937411, 0.030037353, -0.030447327, -0.018489782, 0.0032063304, 0.0064741564, 0.0051588267, 0.016180268, 0.014253394, -0.020252666, 0.0026665325, -0.0045916974, -0.02178323, 0.018216467, -0.028616114, 0.023477785, 0.010809621, 0.008076468, 0.037416868, 0.017505847, 0.0037512528, 0.00576012, -0.007912478, 0.008404446, 1.2042956E-4, 0.007256522, -5.696916E-4, 0.02088129, -0.023587111, 0.009654864, -0.03143126, -0.0017628839, -0.0101126665, 0.00611543, -0.005743038, 0.033125818, 6.918294E-4, -0.045097027, 0.005333065, -0.014048408, 0.013713596, -0.013624769, -0.003536017, -0.024407057, -0.0010966777, -0.0011274257, 0.010795955, -0.034738377, -0.022234201, 0.0014451548, 0.0024410475, -0.0066210637, 0.016029943, 0.1916487, -0.01400741, -5.457765E-4, 0.039822042, -0.0011316963, 0.0070515354, 0.024079079, 0.018175468, -0.011492909, 0.002639201, 0.0062486716, 0.0054218927, -0.003737587, -0.0013845129, 0.017164202, -7.336808E-4, -0.018148137, -0.019487383, -0.0075161713, -0.011007775, -0.0069148773, 0.008267788, -0.0019542046, -0.012722828, 0.013057639, 0.003474521, 0.003250744, 0.013310456, 0.009463543, 0.010420146, -0.016412584, -0.020225333, 0.014800024, 0.006593732, -0.014827356, -0.0024598378, -0.0019251647, -0.0026921558, 0.02616994, -0.0017278653, -2.2121459E-4, -0.015660968, -0.004759103, 0.0063170004, 2.547384E-4, 0.029026087, -0.02533633, -4.8129118E-4, -0.0207173, 0.008117465, -0.039767377, 0.0029278903, 0.02062164, 0.03394576, -0.004844514, 0.007926145, -0.015373986, -0.009613866, -0.013228461, 0.019692369, 0.008151629, 0.033262473, -0.02301315, 0.013057639, 0.004024568, 0.008684594, -0.02604695, -0.003250744, 0.012394849, -0.022944821, -0.014636035, -0.020116007, -0.005561967, 0.011349418, -0.0021455253, -0.0057225395, 0.0011880675, 0.0052613197, 0.0057567037, 0.02052598, -0.027276868, -0.012060039, 0.0046258615, -0.02052598, -0.019036412, -0.020239, 0.005411643, -0.014540375, -0.009019406, -0.003496728, -0.016152935, -0.023956088, -0.014772693, -0.0083361175, -0.0050802487, -0.0023078062, 0.02765951, 0.014663367, -0.027290534, -0.009135565, -0.038646787, 0.02817881, 0.015619971, -0.007078867, -0.028479457, -0.011363084, -0.002485461, 0.0130918035, 0.026005952, -0.009203893, -0.011274257, -0.010385982, 0.0032456194, -0.007693826, 0.0053193993, 0.028506787, 0.012142033, -0.007406845, 0.043867107, -0.016467247, 0.001640746, -0.028342798, 0.019870024, -0.0093815485, 0.0068431324, -0.039138753, -0.032606516, 0.007017371, -0.0074615083, -0.025172342, 0.020088676, -0.017888488, 0.02114094, -0.016057275, 0.009183395, 0.0023846761, 0.013973245, -0.012189863, 0.00718136, -0.01697288, -0.007980808, -0.010228826, 0.0059992713, 0.0034830621, 0.0101195, -0.019514713, 0.017246196, -0.01071396, -0.0116364, -0.0435118, -0.019104742, 0.007755322, -6.990893E-4, 0.016562909, 0.036487594, 0.001671494, -0.007871482, -0.029900696, -0.01581129, 0.0333718, -0.028288135, 0.027317867, 0.011301588, -0.025554983, -0.031977892, -0.01739652, -0.17492181, 0.026320266, -0.003380569, -0.037362203, 0.013556439, 0.022261532, 0.03225121, 0.008759756, 0.018858757, -0.016275927, 0.025664309, -1.6409595E-4, -0.042145222, 0.014567707, -0.0017150536, 0.015756628, -0.0053296485, 0.02739986, 0.026730238, -0.0030115931, 0.03823681, -0.002321472, -0.006607398, -0.0019507881, 0.012394849, -0.009340551, 0.011998543, 0.005121246, 0.0063955784, 0.009579702, -0.039767377, -0.006706475, 0.01827113, 0.0040587327, -0.015660968, 0.0050426675, -0.016754229, -0.018708434, -0.012271858, -0.0079193115, 0.033289805, 0.01310547, 0.01218303, 0.013166965, 0.027741505, 0.012961979, 0.0344104, -0.010563637, 0.016713232, -0.024475386, -0.0065117376, -0.04173525, 0.0298187, -0.0071745273, -0.008855416, 0.019952018, -0.0019302894, 0.003754669, 0.0065595675, 5.632858E-4, -0.025390994, -0.012107869, -0.0011632983, -0.012114702, -0.0031140863, -9.1987685E-4, -0.01775183, -0.0011812346, -0.04034134, 0.0072633545, -0.023026815, 0.01552431, 0.015428649, 0.0114724105, 0.014745361, -0.012941481, -0.04834948, 0.0030269672, -0.0016339131, 0.010017007, -0.011486076, 0.030556653, -0.014800024, 0.01585229, -0.00586603, -0.013125968, -0.0028117313, -0.008718759, 0.0069524585, -0.0055824653, -0.0038195816, -0.013303624, -0.04198123, 0.0019439552, -0.015250995, -0.0016279344, -0.015169, 0.015250995, 0.005169076, -0.0024888776, -0.0056542107, -0.018681102, -0.02362811, 0.0021557745, 0.019583043, 0.008117465, -0.002792941, 0.02817881, 0.022220535, 9.3525084E-4, -0.012456345, 0.0057122903, 0.0063272496, 0.0061735096, 0.0024188405, -1.710356E-4, -0.023450455, -0.013693097, 0.014540375, 0.009750524, 0.067126244, -5.239967E-4, -0.0020413238, -0.015988946, 0.0019507881, -0.011984876, -0.085274376, 0.0021796897, 0.023505118, 0.05619363, -0.025363661, 0.028260805, -0.013952747, 0.019323394, -0.022206869, 0.0333718, 0.011513407, -0.030119348, 0.0078099854, 0.0018090057, -0.001393054, 0.004116812, -0.01623493, -0.011069271, -0.008308786, 0.014472046, -0.012032707, -0.0029432643, 0.0010300571, -0.009634365, -0.018435119, 0.028643446, -0.020279996, 0.037608188, 0.010850618, -6.0428306E-4, 0.008916913, -0.017601507, 0.019651372, -0.035421666, -0.029053418, -0.049196757, -0.009572869, -0.033153147, -9.3695906E-4, -0.036296275, 0.010392815, 0.029846033, 0.006176926, -0.02794649, -0.015865954, 0.010023839, -0.030119348, 0.039302744, 0.0034779373, -0.02249385, -0.008377114, -0.032715842, -0.039931368, -0.007967141, 0.020976951, 0.011246925, 0.039029427, 0.011540739, -0.006726973, -0.03585897, -0.011759392, 0.01132892, -0.01426706, 0.016726898, 0.016439917, 0.007311185, -0.00884175, -0.019227732, 0.008527438, -0.01881776, -0.017218865, 0.022644173, -0.02853412, -0.025664309, -0.017997814, -0.0033241976, -0.02817881, -0.013570106, 0.030556653, -0.032059886, 0.003621428, -0.03301649, 0.0028595615, -0.02514501, 0.019323394, 0.022288864, 0.014472046, 0.013474445, -0.0052032406, -0.04813083, -0.012531508, 0.021373257, -0.004103146, -0.003165333, -0.0046087797, 0.015373986, 0.016562909, -0.012606669, -0.011253758, 0.0011368209, -0.0049640895, -0.013419782, -0.07477907, 0.037170883, -0.030365331, -0.009682195, -0.025213338, -0.018530779, -0.0011539031, -0.0059446082, -9.813728E-4, 0.03569498, -0.0018517113, 0.02659358, -0.005363813, -0.013720429, -0.0067440555, 0.014021076, -3.1901023E-4, -0.011650066, 7.136092E-4, 0.0061188466, -0.012634001, 0.023095144, 0.02481703, 0.0038947433, -0.0021199018, 0.018421452, 0.001625372, 0.0021779814, -0.016289594, -0.017615173, 0.03728021, -0.007420511, -0.0012717703, 0.0076801605, -0.0016535576, -0.028889429, -0.011308421, -4.526785E-4, 0.0061871754, 0.008103799, -0.014731696, -0.03637827, 0.004431125, -0.0013964705, -0.009326885, 0.020020347, -0.021960886, 0.019186735, -0.0012529799, 0.021742234, 0.032715842, -0.003706839, 0.00713353, -0.0242704, 0.03367245, -0.00874609, 0.05337848, 0.0035394335, 0.005418476, -0.016904552, 0.033617783, 0.0041202283, 0.017929485, -0.03421908, 0.007850982, -0.0018773346, 0.014923017, -0.015920617, -0.0032934495, -0.03394576, -0.015756628, -0.0062418384, 0.005401394, 0.040559992, 0.009490875, 0.01071396, 0.009900847, -0.0063716634, -0.011069271, 0.011697896, 0.026429592, -0.0035428498, -0.0148683535, 0.022247868, -2.739559E-4, 0.02798749, -0.005780619, 0.009709527, 0.019145738, 0.01997935, -0.017423851, 0.01639892, 0.017738163, 0.001408428, 0.018681102, 0.011383583, 0.0013717012, -0.0055892984, 0.0069012116, 0.026484255, -0.001779966, -0.002106236, -0.0032627017, -0.016576573, -0.027796168, 0.003939157, -0.015100671, -0.016289594, 0.0067782197, 0.025841963, 0.031841233, 0.0038059158, -0.027768835, 0.006819217, -0.03553099, 0.013898084, -0.0070515354, -0.01128109, -0.016658569, 0.042719185, 0.019815361, 0.015592639, 0.028916761, -0.0056678765, 0.0667436, 0.0071540284, 0.013057639, -0.039576057, 0.012715995, -0.0023180556, 0.011123934, -6.508321E-4, -0.023477785, 0.008903246, -0.008233624, 0.022220535, 0.01289365, 0.03279784, -0.018175468, 0.07937077, 0.021646572, -0.009976009, 0.019200401, -0.008459109, 1.3110595E-4, 0.014212397, 0.021277597, -0.010017007, -0.01436272, -0.008657263, -1.0089179E-4, 0.0075571686, -0.0237921, 0.013870752, -0.015141669, 0.021988217, 0.01320113, -0.004178308, -0.021086277, -0.002422257, -0.010406481, 0.034137085, 0.013597437, -0.006651812, -0.012784324, 0.034109753, -0.009552371, 0.014444714, -0.036323607, -0.0054150596, -0.031349268, -0.017505847, -0.0028561451, 0.011349418, -0.009702694, 0.0016706398, 0.005175909, 0.013809256, 0.009613866, -0.009607034, -0.0064673238, -0.015565308, -0.019118406, 0.024516383, -0.023354795, -0.016248595, -0.036870237, -0.00490601 ], + "id" : "c64ad189-be7e-47da-b442-f908eb5ee88c", + "metadata" : { + "source" : "movies.csv" + } + }, + "0f0a78df-7b18-4d39-963b-c7760a31405d" : { + "text" : "400155,Hotel Transylvania 3: Summer Vacation,Animation-Comedy-Family-Fantasy,en,Dracula Mavis Johnny and the rest of the Drac Pack take a vacation on a luxury Monster Cruise Ship where Dracula falls in love with the ship��s captain Ericka who��s secretly a descendant of Abraham Van Helsing the notorious monster slayer.,53.453,Columbia Pictures-Sony Pictures Animation,6/28/18,80000000,528600000,97,Released,Family vacation. It will suck the life out of you.,6.9,3866,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-David Spade-Steve Buscemi-Keegan-Michael Key-Molly Shannon-Fran Drescher-Kathryn Hahn-Jim Gaffigan-Mel Brooks-Asher Blinkoff-Sadie Sandler-Genndy Tartakovsky-Chrissy Teigen-Joe Whyte-Aaron LaPlante-Michelle Murdocca-Joyce Arrastia-Sunny Sandler-Tara Strong-Libby Thomas Dickey-Patrick Harpin-Craig Kellman-Jaime Camil-Joe Jonas-Chris Parnell-Fred Tatasciore-Kari Wahlgren-Brian T. Delaney-Robin Atkin Downes-Jessica Gee-George-Grant George-Todd Haberkorn-Rif Hutton-Lex Lang-Mona Marshall-Andrew Morgado-Michelle Ruff-Joseph Sanfelippo-Keith Silverstein-Kirk Thornton-Amanda Troop-Audrey Wasilewski-Debra Wilson-Michael-Leon Wooley,monster-vampire-vacation-cruise ship-summer vacation-dracula,/gjAFM4xhA5vyLxxKMz38ujlUfDL.jpg,/m03jul0YdVEOFXEQVUv6pOVQYGL.jpg,159824-76492-260513-459159-404368-446894-363088-585083-324852-278154-364689-360920-351286-378236-260514-109451-447200-10527-370567-335797-458423\r\n295693,The Boss Baby,Animation-Comedy-Family,en,A story about how a new baby's arrival impacts a family told from the point of view of a delightfully unreliable narrator a wildly imaginative 7 year old named Tim.,28.085,DreamWorks Animation-20th Century Fox,3/23/17,125000000,527965936,97,Released,Born leader,6.4,6839,Alec Baldwin-Steve Buscemi-Miles Bakshi-Jimmy Kimmel-Lisa Kudrow-Tobey Maguire-Conrad Vernon-James McGrath-David Soren-Nina Zoe Bakshi-Tom McGrath-Walt Dohrn-James Ryan-Eric Bell Jr.-ViviAnn Yee-Edie Mirman-James Izzo-Chris Miller-Chloe Albrecht-Andrea Montana Knoll-Joseph Izzo-Glenn Harmon-Brian Hopkins-Jules Winter,baby-family relationships-sibling rivalry-unreliable narrator-baby brother,/unPB1iyEeTBcKiLg8W083rlViFH.jpg,/frlfy7RFqx5J4jrcMo25PqyasL3.jpg,321612-335797-324852-277834-315837-337339-339403-293167-354912-283995-459151-313369-137116-263115-328111-395992-419430-274857-324849-297762-381288", + "embedding" : [ 0.009799691, -0.03106668, -0.009733252, -0.03585026, -0.013599978, 0.035531353, -0.017486636, -0.0154669015, -0.012091822, -0.018456638, 0.0215261, 0.04881907, -0.0057701906, -0.004365015, 0.012098466, 0.013307648, 0.017672664, -0.04161713, 0.020556098, -0.023997616, -0.008982496, 0.0013071791, -0.032687783, 0.014868954, -0.0014383952, 0.017553072, 0.02118062, -0.0046141595, -0.0046075154, -0.0020878324, 0.011560313, -9.3221635E-5, 0.0049230987, -0.0071355035, 0.009460854, -0.019293765, -0.015094846, -0.031146407, 0.036036287, 7.905153E-5, 0.006936188, 0.018549653, -0.022469528, -0.012164905, -0.0012407405, 0.015892109, 0.002537954, 0.0027821157, -0.01067668, 0.023559121, 0.023386382, 0.036461495, -0.014231144, -0.0127097005, 0.017898554, 0.017818827, -0.009959144, -0.0059263213, 0.003946452, -0.0026824577, 0.020051165, -0.016383754, -0.025007483, -0.012151617, -0.021632401, 0.0026841187, -0.02414378, -0.012377508, 0.023359805, -0.004491248, 0.037551086, 0.010171747, 0.032554906, 0.020210616, 0.029605033, -0.044380974, -0.017765677, -0.013254497, -0.006132281, 0.012776139, 0.015214435, -0.0069959825, -0.016277453, 2.2864215E-5, 0.021366648, 0.051131133, -0.011294559, 0.013274428, -0.048260987, 0.0051323804, 0.01067668, 0.012158261, -0.009168524, 0.018695816, 0.0019964795, 0.0031026818, -0.019586094, 0.018177597, -0.030986955, -0.025778169, 0.0061621782, -0.0034548063, -0.017553072, -0.003418265, -3.2118903E-4, 0.0072883125, -0.013453812, -0.011792848, 0.018283898, 0.004670632, -0.00656081, 0.003919876, 0.006637214, -0.038268622, -0.0130950445, -0.014443748, 0.02543269, 6.6147913E-4, -0.022031033, -0.023373093, 0.01704814, 0.03199682, 0.017553072, -0.0215261, 0.04741057, 0.034548063, -0.0031109867, -0.0063050212, -0.019001434, -0.012065247, 0.025924334, -0.0107098995, 0.009181812, -0.0065740976, -0.038906433, 0.040182054, -0.009879417, 0.005202141, -0.03276751, -0.015320737, 0.02223035, 0.029339278, -0.031093257, -0.011015517, -0.0031990176, 5.7552423E-4, 0.023997616, -6.104045E-4, 0.016011698, -0.0153738875, 0.009327977, -0.0026741528, 0.0033335558, 0.016423617, 0.02006445, 0.01489553, -0.0013594995, -0.020502945, -0.011168325, -0.01920075, -0.009274826, 0.017619511, -0.012789427, -0.012855866, -0.013593334, 0.012982098, 0.022828296, -0.02298775, 0.0076537244, -0.0023585698, -0.021273633, 0.04422152, -0.01553334, 0.020994592, -0.014576625, 0.040288355, 0.0010472381, -0.017712526, -0.021047743, -0.008291535, 0.006756804, 0.001262333, 0.021805143, 0.042440966, 0.006275124, 0.016769098, 0.026602007, -0.02054281, 0.015121421, -0.018084582, 0.004933065, 0.020622537, 0.002067901, -0.013154839, -0.63993645, -0.0053483057, -0.015613067, -0.009341264, 0.013015318, 0.025220085, 0.017619511, -0.012503741, -0.02734612, -0.015639642, -0.017313894, 0.018430062, 0.043743163, -0.020409932, -0.03457464, -0.015307449, 0.0032505076, -0.0061588567, 0.027851053, -0.0050161127, -0.028409138, 0.025990773, 0.017234169, 0.010517227, 0.006590707, 0.01827061, -0.007454409, 0.00439159, -0.0078530405, -0.0069760513, -0.013925526, 0.014417172, -1.7886511E-4, 6.306475E-5, 0.03154504, -0.019187462, 0.0028402493, 0.039119035, 0.016941838, 0.017845403, -0.04079329, -0.002536293, 0.01670266, 0.01966582, -0.0058864583, 0.0058465954, 0.007487628, -0.0068631056, -0.013327579, -0.002209083, -0.0031508498, -0.0018038074, -0.004723783, -0.0051622777, -0.02006445, -0.011380929, 0.010390994, -0.0415374, 0.019054586, -0.01815102, -0.01908116, 0.009221675, 0.010836133, 0.02124706, -0.0020413254, 0.01746006, -0.011752985, -0.002200778, 0.015094846, -0.03664752, -0.0013055181, 0.0017190983, -0.016795674, -0.010557091, 0.012756208, 0.01978541, 0.011015517, 0.015706081, 0.014084979, 0.015161284, 0.011088599, -0.0066172825, -0.014005253, 0.010145172, 0.025738306, -0.0011377607, -0.03760424, 0.012643262, 0.017260743, -0.014523474, 0.01084942, 0.019811984, -0.001961599, -0.008683522, -0.02316049, 0.0044281315, -0.026894338, 0.008577221, 0.017539786, -0.062080212, -0.02130021, -0.0047869, -0.0058200196, -0.016038274, 0.0064578303, 0.020037876, 0.0015114777, -0.0064312546, 0.026907625, -0.021964595, 0.0064113233, 0.004504536, -0.007527491, 0.0010596954, -0.011958945, -0.031784218, 0.012144973, 0.0014392257, 0.011081955, -0.018403487, -0.0076072174, 0.012058603, 0.0027306257, -0.018164309, 0.015905397, 0.0016061527, 0.0065043373, -0.011460655, 0.0038135746, 0.018190883, 0.006683721, 0.0106168855, 0.019984726, -0.017034853, -0.0051190928, 0.013872376, 0.024276657, -0.0036740536, 0.0183902, 0.0016501683, -0.00936784, -0.01716773, -0.02059596, 0.0013503642, -1.3879435E-4, -0.009719964, -0.006398035, -0.007846396, -0.003986315, -0.019160887, -0.01047072, 0.014868954, 0.009381128, -0.004859982, 0.005856561, -0.004557687, -0.01844335, -0.024848029, 0.007985918, -0.007906191, 0.023532545, 0.030747775, -0.011679903, 0.0040527536, 0.0059196777, 0.004813475, -0.018204171, 0.009560511, 0.0027023894, -0.020436509, 0.02048966, -0.01605156, -0.005145668, 0.009148593, -0.021898156, 0.023280079, 0.003096038, 0.003982993, -0.01890842, -0.0047104955, 7.345616E-4, 0.0014691232, -0.009739896, -0.0037139168, 0.03096038, 0.016211014, 0.018283898, 0.005806732, -9.176829E-4, 0.0082383845, 0.004727105, 0.00656081, -0.023652134, -0.00910873, -0.01873568, 0.023492683, -0.006208685, 0.01605156, -0.0062153293, -0.00910873, 0.05835965, 0.033378743, -2.7904205E-4, -0.010098664, 0.008338042, -0.042122062, -0.011135106, -0.019572806, 0.010836133, 0.0034913474, 0.025499128, -0.011248052, -0.026508994, -0.00907551, 0.022084184, 0.0027588622, -0.005122415, -0.0029166536, -0.013912239, 1.2865987E-5, -0.0010414248, -0.012457234, 0.026987351, 0.008397837, -0.014523474, 0.00449457, 0.0017656053, -0.014669639, -0.0021326784, 3.5752263E-4, -0.010570378, 0.020742126, -0.007979274, 0.00910873, 0.019904999, 0.026841188, 0.036408342, -0.0055974503, 0.017207593, -0.011998808, 0.008065644, 0.04358371, 0.0063116653, -0.0057436153, -6.1621785E-4, -0.017486636, 0.010158459, -0.01160682, -0.0051257364, 0.021433087, -0.030614898, 0.012510385, -0.01594526, 0.0146032, 0.018709105, -0.0054147444, 0.00793941, 0.0027837765, 0.03763081, 0.01949308, 0.009095442, -0.010670036, 0.013427237, 0.00700927, 0.005195497, 0.003373419, -0.021805143, -0.003846794, 0.012722989, -0.019094449, -0.018815406, -0.022097472, -0.017034853, 0.008304822, 0.00802578, -0.012922304, -0.005521046, -6.639706E-4, 0.016490055, 0.027013928, 0.0123310005, -0.041510824, 0.013041894, 0.017101292, -0.006398035, -0.017539786, 0.011480587, -0.0029731265, -0.017406909, -0.0017755711, -0.008457632, 0.0276916, -0.011659971, 0.010464077, -0.02124706, 0.0036175807, 0.012085178, -0.022602405, 0.008470919, 0.019679109, 0.008942633, 0.021207195, -0.01675581, -0.007587286, 0.0040095686, -0.007015914, -0.009308046, -0.010729831, -0.004647379, 0.026801324, -0.002160915, 0.013387375, -0.03531875, 0.006278446, -0.023439532, 0.0051855315, -0.012543604, 0.013739498, 0.0032571515, -0.009733252, -0.032129698, -0.013726211, -0.02793078, -0.0050426885, 0.08339371, 0.026508994, 0.014563337, 0.005248648, 0.016742522, 0.012012095, -0.029764485, -0.0058333073, 0.011354353, 0.011500519, 0.015028407, -0.013739498, 0.023319943, 0.010357775, 0.018177597, -0.0063083433, -0.0015206131, -5.460421E-4, 0.004730427, -0.0067202626, -0.012085178, -0.013021962, -0.008032424, 0.035292175, 0.008490851, -0.014364021, 0.009394416, 0.011859287, -0.0026043924, 8.304823E-4, -0.015785808, 0.009135305, 0.0049762498, 0.005896424, -0.009839554, -0.01431087, 0.007268381, 0.0061522126, 0.0291001, 0.0020745448, 0.022841584, 0.015161284, 0.0010015616, -0.004059397, 0.016715948, -0.017101292, -0.015732655, -0.0025030735, 0.031704493, -0.02886092, 0.03359135, 0.016197726, -0.0027837765, -0.00590639, 0.029578457, -0.003654122, -0.03037572, -0.009779759, -0.012928948, 0.0020047843, 0.006653824, -0.04812811, 0.027199956, -0.011586889, -0.027558723, -0.018602803, -0.015852246, -0.017646087, -0.022721995, 0.004587584, -0.0184965, -0.025180222, -0.0076869437, -0.011693191, 0.018111158, -0.019891711, 0.013633197, -0.023226928, 1.8114895E-5, 0.0013246192, -0.034893543, -0.036408342, -0.0033700971, -0.01804472, -0.0154669015, -0.0031508498, 9.1103907E-4, 0.011307847, 0.0017539785, 9.151915E-4, 0.00700927, 0.01122812, -0.004295254, -0.026229952, 0.031332437, -1.0391409E-4, 0.02862174, 0.005122415, 0.003697307, 0.0047370708, 0.027744751, -0.021207195, 0.0017240812, -0.031385586, -0.017127866, -0.027067078, -0.0017622834, 0.005072586, 0.0017556396, -0.04196261, -0.021074317, -0.004966284, -0.007872972, -0.0025562244, 0.0146032, -0.002715677, 0.001004053, 6.0542155E-4, -1.1585228E-4, 0.013752786, -0.004169021, -0.015041695, 0.023200354, 0.024662001, -0.009905992, 0.028276261, 0.024210218, -0.020662399, -0.008484207, 0.026628584, 0.012404083, 0.021047743, -0.014470323, 8.026611E-4, -0.035531353, -0.019107737, -0.0013852444, 0.008570577, -0.010198322, -3.9614004E-4, -0.029631607, 0.020928154, 0.007819821, 1.8924614E-4, 0.004318508, -0.0276916, 0.0030777673, -0.01751321, 0.016290741, 0.026602007, 0.009646882, -0.009361196, -0.013991965, -0.00873003, -0.0032754221, -0.0384015, -0.021977883, 0.008417768, 0.032661207, 0.020091027, 0.042148635, 0.010271405, 3.855514E-4, 0.016104713, 0.0040228562, 0.018961571, -0.02169884, -0.0020728838, -0.027266394, 0.0010480686, 0.006192076, 0.013028606, 0.022017745, -0.0055509433, 0.0012747903, 0.023944465, 0.032156274, 0.004438097, -0.010816201, -0.018004855, -0.007985918, 0.007946054, -0.02944558, 0.016038274, -0.017021565, -0.014536762, 0.038082596, -0.009095442, 0.0011601837, -0.0040427875, 0.012988742, -0.0072351615, 0.013872376, -0.011048736, 0.017034853, -0.0044713165, 0.0124240145, -0.029286128, -0.014151418, 0.005195497, -4.9953506E-4, 0.014470323, 0.0017921807, -2.7587583E-5, 0.020981304, 0.028116807, -0.0068099545, -0.021712128, 0.017539786, -0.0062884116, -0.006085774, -0.031518463, -0.0011792849, -0.04177658, -0.0065309126, 0.013978678, -0.015865533, 0.0018968215, -0.015054982, -0.02688105, -0.0018154342, 0.007461053, 0.031837367, 0.004315186, 0.052964836, 0.039411366, 0.014589912, -0.02514036, 0.002665848, -0.015121421, 0.0035843614, 0.014762653, 0.020117603, -0.011341066, -0.006936188, 0.0077998894, -0.0069494755, -0.03101353, -0.051981546, 0.02553899, 0.015001832, 0.016676083, -0.011174969, -0.014098267, 0.008245028, 0.01658307, -0.0010837794, 0.0040295, 0.026190089, -0.0055908067, -0.019652532, 0.014629776, 0.004693886, 0.016769098, 0.023412956, -0.016038274, 0.036222316, -0.0054612514, 0.007487628, -0.019280476, -0.011799492, 0.016197726, -0.002253929, 0.021220483, 0.0063548503, -0.0039265202, 0.025964197, 0.0059362873, -0.003517923, 0.028382562, -0.023785012, 4.5510428E-4, 3.189571E-5, 0.014031828, -0.0015413751, -0.014417172, -0.024662001, -0.024515837, -0.023691999, -0.011845999, 0.034707516, 0.01425772, 0.0076072174, 0.005428032, -7.7567046E-4, -0.010663392, 0.021539388, -0.004840051, 0.0054911487, -0.033963405, 0.0035511423, -0.0047536804, 0.009394416, -0.0015571542, -0.019586094, 0.0068631056, -0.012005452, 0.012915661, 0.0057270057, 0.011327778, -0.015626354, -0.017486636, -0.052566204, -0.01198552, -0.0059728287, -0.00986613, 0.010271405, -0.020688975, -0.0026077144, 0.0060093696, -0.00477029, 0.0108095575, -0.005531012, -0.020463083, 0.0029166536, -0.0014691232, -0.010284692, -0.004962962, 9.2930964E-4, 0.053283744, -0.019240614, -0.013320936, 0.0110022295, 0.0141381305, 0.0429459, -0.019067872, 4.015382E-4, -8.367109E-4, -0.018602803, -0.020436509, 0.0066737556, 0.026030635, 0.037391633, -0.003458128, -0.023904601, -0.013261141, -0.008251672, 0.043636862, -0.012889084, -0.017911842, 0.039597396, 0.013221278, 0.02559214, 0.027824478, 0.01728732, -0.008271604, -0.004212206, -0.02391789, -0.010404282, -0.0061987196, 0.0073813265, 0.007999205, 0.009819622, 0.01797828, -0.01320799, 0.016383754, -0.046480432, -0.019134311, 0.012729633, 0.047197968, 0.05418731, -0.005531012, 0.007740095, 0.010085377, -0.010430858, 0.032129698, -0.011454011, 0.01076305, 0.021061031, 0.043371107, 0.019745547, 0.03042887, -0.017446771, -0.012317713, -0.004275323, 0.027505573, 0.0061655003, 0.024170356, -0.020290343, -0.0034548063, 0.004776934, 0.011241408, -5.9296435E-4, -0.0028884173, 0.0399163, -0.03393683, -0.013360798, 0.020516234, 0.0056007723, -0.018616091, -0.019426642, 0.019214038, -0.019772122, -0.0029814313, -0.017194305, -0.0071820104, -0.009128661, -0.015347312, -0.0036873412, 0.02037007, 0.0031093257, 0.011367641, 0.027771328, -0.013055181, 0.010935791, 0.003946452, -0.01605156, -0.03361792, -0.013460456, 0.009361196, 0.012942236, -0.037046153, 0.010875996, -0.017141154, -0.01207189, -0.0154669015, 0.004730427, -0.019280476, 0.021074317, -0.0058831363, -0.04119192, -0.004590906, -0.015294162, 0.012164905, -0.023439532, 0.007673656, 0.0011510485, -0.015838958, 7.5366267E-4, -7.665351E-4, -0.020330206, -0.01885527, 0.0050426885, -0.0021260346, -0.033139564, 0.020569384, 0.18368939, -0.007892904, 0.0063614943, 0.053177442, 0.0129953865, 0.016343892, 0.011845999, 0.020409932, -0.0025578854, 0.009015716, -0.007308244, 0.008032424, 0.01143408, -0.001871907, -0.005946253, -0.00898914, -0.036514644, -0.018762255, -0.025911046, -0.040713564, -0.018310472, -0.018244034, -0.019214038, -0.0153606, 0.009580444, -0.012842578, -0.015785808, 0.007201942, 0.025339674, 0.0058399513, -0.020104315, -0.027797902, -0.014868954, 0.0059362873, -0.0033119633, -0.009427635, -0.004398234, 0.0023685354, 0.0025512415, 0.0061156712, -0.019134311, 0.013101689, -0.02211076, -0.013872376, -0.016476769, 0.038640678, -0.012782783, 1.5903736E-4, -0.021818431, 0.0038800132, -0.043610286, -0.008278247, 0.005295155, 0.009992363, 0.0083313985, 0.0020845104, 0.0039132326, -0.0038501157, -0.0054645734, 0.005009469, 0.023147201, 0.032315727, -0.03555793, 0.005218751, 0.0055110804, 3.4070536E-4, -0.032368876, -0.0015106472, 0.026203377, -0.04055411, -0.013619909, -0.046002075, -0.034282308, 0.004504536, 0.00356443, 0.0017024886, -0.014350734, 0.022150623, 0.013327579, 0.013766075, -0.016609645, -0.019998014, 0.010510583, -0.0045942278, 0.003421587, -0.040580686, 0.010337844, 0.0059695067, 0.017074715, -0.034760665, -0.011208189, -0.01768595, -0.01804472, 0.019918287, 0.0040461095, 0.025459265, 0.006208685, 0.006989339, 0.013805937, 0.007892904, -0.033245865, 0.02543269, 0.030508596, -0.02333323, -0.028887495, -0.017499922, -0.009035647, -0.0045643304, 0.01902801, -0.028169958, -0.007547423, -0.017646087, 1.283095E-4, -0.0060824524, 0.0036873412, -0.0049928594, 0.010583666, -0.023147201, 0.02979106, -0.0066305706, 6.4237806E-4, -0.014975256, 0.013048537, 3.3281578E-4, 0.0012324357, -0.025034057, -0.0132810725, 0.007580642, -0.008862907, -0.018589515, 0.019067872, -0.01401854, 0.004936387, -0.021167332, -0.022349939, -0.0013678042, 0.020263767, 0.009321333, -0.004112548, 0.0060193357, -0.004411522, 0.0070026265, 0.008590508, 0.012968811, 0.008517426, -0.024688577, 0.04509851, 0.002571173, -0.013726211, -0.033724222, -0.032847233, -5.128228E-4, 0.0034448404, 6.145569E-4, 0.044646725, -0.0058632046, -0.042866174, -0.022070898, -0.006969407, 0.017406909, -0.017699238, 0.013194703, 0.017858692, -0.008338042, -0.023293367, -0.01506827, -0.16891345, 0.0023751792, -0.014789228, -0.008191877, 0.020409932, 0.021379936, 0.041218497, 0.005384847, 0.011387573, -0.02397104, 0.01553334, -0.0015413751, -0.037046153, -0.024050767, 0.0044214875, 0.015201148, -0.027133517, 0.025060633, -4.3018983E-4, -0.011978876, 0.037125878, 0.009254894, -0.011600177, -0.016211014, 0.0058399513, 0.016277453, 6.90546E-4, 0.009932568, -0.019532943, 0.0018602803, -0.032501753, -0.01425772, -0.0046639885, -3.199433E-4, 2.6741528E-4, -0.0025495805, -0.009786403, 0.006869749, 0.012111753, -4.8375594E-5, 0.01704814, 0.0110952435, 0.016490055, -1.01007405E-4, -0.016862111, 0.007314888, 0.013779362, -0.008590508, 0.009308046, -0.028302835, -0.010092021, -0.031332437, 0.022363227, -0.01477594, 0.012483809, 0.014669639, -0.007480984, 0.0028718077, -0.0067833792, -0.020263767, -0.042281512, -0.011440724, -0.0046606665, 0.008450988, 0.005471217, -0.03478724, -0.018709105, 0.013526895, -0.03497327, 0.01675581, -0.04196261, -0.004654023, 0.0047104955, -0.0053981347, 0.013540183, -0.0077533824, -0.014948681, 0.025685156, 0.007201942, -0.0056339917, -0.024037478, 0.04387604, -0.030163117, -0.0046407348, 4.8001876E-4, -0.010430858, 0.0065475223, -6.012692E-4, 0.01367306, -0.010583666, -0.012596755, -0.012264562, -0.01207189, -0.008158658, 0.013487032, 0.018018143, -0.00523536, 1.5966022E-4, 0.0054213884, 0.009846197, 0.0047171395, 0.005291833, -0.009700033, 0.010782982, 0.022854872, 0.0051655998, 0.01594526, 0.029897362, 0.028249685, -0.010477364, 0.007248449, 0.008942633, 0.025073921, 0.014204569, -0.005331696, -0.0011867592, -0.009082154, -0.0200113, 0.0072816685, 0.035398476, 0.030747775, 0.0012615026, -0.004604194, -0.010723187, -0.003371758, -0.016277453, -0.08302165, -0.01902801, -0.029764485, 0.030163117, -0.02822311, 0.027558723, -0.012483809, 0.03608944, 0.009912636, 0.019280476, -0.0012681464, -0.011739697, 0.0034747378, -0.019280476, 0.022615694, 0.0062651583, -0.023054188, 0.0034747378, -0.018775543, 0.031412162, -5.107466E-4, 0.0055808406, 0.014696214, 0.013646484, -0.025645293, 0.011799492, -0.026987351, 0.013234565, 0.02298775, 0.020157466, 0.014005253, -0.024967618, 0.023200354, -0.019041298, -0.03414943, -0.01675581, -0.00599276, -0.0207687, 0.0020446472, -0.073986, 0.01303525, 0.0122313425, 0.009308046, -0.038002867, -0.012483809, -0.010258117, -0.02589776, 0.015134709, -0.011540381, -0.016197726, -0.008271604, -0.004952996, -0.021100894, -4.5593476E-4, -5.057637E-4, -0.0019981402, 0.014922106, 0.015719369, -0.0070424895, -0.040580686, -0.02624324, -0.014842379, -0.022775145, 0.013633197, 0.005291833, 0.0051357024, 0.0051157707, -0.010862708, 0.022177199, -0.013247853, -0.023785012, 0.020091027, -0.032740932, -0.0032172883, -0.020436509, 0.031518463, -0.010856064, 0.0025147004, 0.0124240145, -0.0323423, -0.025565566, -0.02979106, 0.0071022846, -0.011673259, 0.005391491, 0.027851053, 0.01804472, 0.0129023725, -0.009387772, -0.031970244, 0.017021565, 0.011221477, 0.0047835778, -7.794076E-4, -0.019174175, 0.009095442, 0.011673259, -0.008829688, 0.009288114, 0.0128027145, -0.018403487, -0.004541077, -0.06580077, 0.008656947, 0.0073281755, -0.019506367, -0.0076138615, -0.022589117, 0.019001434, 0.0027239819, 0.0023535867, -0.0040494315, -1.1221891E-4, 0.008637016, -0.009447566, 0.0065707755, -0.0012149955, 0.0052287164, 0.013008675, -0.018642666, -0.0040427875, 0.0079526985, -0.02147295, -0.0033119633, 0.019121023, 0.008152014, -0.003557786, 0.018337049, 0.018881844, 0.012895728, -0.010789625, -0.0017174373, 0.015985122, -0.027399272, 0.016250877, -0.0021360004, -0.007434477, -0.00945421, -0.042334665, -1.7834606E-4, 0.023173777, -0.0022140658, -0.016078137, -0.023240216, 0.0011136767, -0.01506827, -0.0026376117, 0.015041695, -0.029259551, 0.01641033, -0.0012531978, 0.015041695, 0.035531353, 0.014284295, -0.017181017, -0.018177597, 0.015320737, -0.007673656, 0.031731065, 0.0088164, 0.004215528, 0.011819424, 0.02135336, 0.007082353, 0.029259551, -0.02955188, -0.0074743405, 0.0140451165, -0.007793246, 0.007999205, 0.007075709, -0.023001038, -0.0086170845, 0.018469926, 0.03433546, 0.0128027145, 0.00788626, 0.0040560756, -0.018629378, 0.018469926, -1.9869288E-4, 0.026362829, 0.028090233, -0.023319943, -0.023944465, 0.0076869437, 0.014961968, 0.023319943, 0.004451385, 0.014669639, -0.0043749805, 0.024874605, -0.026788035, 0.0138590885, 0.0138458, -0.006916256, 0.01565293, 0.039411366, 0.0011070329, -0.014669639, -0.014483611, 0.031624764, 0.0065442002, 0.0118526425, -0.0054413197, -0.019479793, -0.005384847, -0.005142346, -0.017858692, -0.017021565, 0.019639244, 0.007906191, 0.01832376, 0.014151418, -0.022097472, 0.012962167, -0.034654364, 0.0015637982, -0.0055044363, -0.021991171, -0.0040062466, 0.042201787, 0.019094449, 0.026761461, 0.0384015, -0.010497296, 0.036753822, 0.017938416, 0.020516234, -0.014457036, -0.017659375, -0.0028518762, -0.01961267, -0.017725814, -0.021193907, -0.001966582, -0.0027057112, -0.004112548, 0.0010580344, 0.029472155, 0.0016916924, 0.06452515, 0.0017838759, -0.0035013133, 0.006753482, -0.02350597, 0.009181812, 0.022881448, 0.010636817, -0.028914072, -0.0036674098, 0.010537159, -0.004125836, 0.00759393, -0.033883676, 0.0020911545, 6.7269066E-5, 0.0024848029, -0.0014890548, -0.015161284, -0.019067872, -0.0032455246, 0.001973226, 0.027957356, 0.005195497, -0.014151418, -0.021087606, 0.009680102, -0.0069760513, 0.0063648163, -0.04650701, 0.0031093257, -0.016423617, -0.008152014, -0.0010455772, 0.01827061, -5.692956E-4, -0.009288114, -0.013752786, 0.016450193, 0.019001434, -0.004587584, 0.021712128, -0.026748173, -0.007075709, 0.016609645, -0.01518786, -0.001570442, -0.01815102, -0.03042887 ], + "id" : "0f0a78df-7b18-4d39-963b-c7760a31405d", + "metadata" : { + "source" : "movies.csv" + } + }, + "aa31b159-544b-420f-95ab-e4617ccee419" : { + "text" : ",493092-5255-9444-8871-12222-891676-856245-10895-408-1026624-10340-12092-9487-9303-13053-10545-3170-11774-10198-9836-12230\r\n695721,The Hunger Games: The Ballad of Songbirds & Snakes,Drama-Science Fiction-Action,en,64 years before he becomes the tyrannical president of Panem Coriolanus Snow sees a chance for a change in fortunes when he mentors Lucy Gray Baird the female tribute from District 12.,1329.764,Lionsgate-Color Force,11/15/23,100000000,322300000,157,Released,Everyone hungers for something.,7.3,1211,Tom Blyth-Rachel Zegler-Peter Dinklage-Jason Schwartzman-Hunter Schafer-Josh Andr��s Rivera-Viola Davis-Fionnula Flanagan-Mackenzie Lansing-Isobel Jesper Jones-Ashley Liao-Jerome Lance-Knox Gibson-Aamer Husain-Nick Benson-Lilly Cooper-Luna Steeples-Max Raphael-Hiroki Berrecloth-Zoe�� Renee-Ayomide Adegun-Kaitlyn Akinpelumi-Sofia Sanchez-Am��lie Hoeferle-Irene B�_hm-Cooper Dillon-Luna Kuse-Kjell Brutscheidt-Dimitri Abold-Athena Strates-Dakota Shapiro-George Somner-Vaughan Reilly-Flora Thiemann-Honor Gillies-Eike Onyambu-Konstantin Taffet-Burn Gorman-Scott Folan-Carl Spencer-Michael Greco-Daniela Grubert-Victoria Paige Watkins-Clemens Schick-Dexter Sol Ansell-Rosa Gotzler-Joshua Kantara-Florian Burgkart-Aaron Finn Schultz-Mekyas Mulugeta-Emma Frieda Br�_ggler-Yalany Marschner-Serena Oexle-Anni Baumann-Seyna Sylla-Aminata Lucia Yade Toscano-Levi Strasser-Chieloka Jairus-Tim Torok-Varvara Kanellakopoulou-Marc Aden Gray-Cameron MacConomy-Ghaith Saleh-Riley Chung-Denise Hansen-Raphael Zari-Mona Vojacek Koper-Steven McMichael-Donald Sutherland-Jonas Martens,daughter-based on novel or book-arena-fight-mentor-dystopia-riot-exploration-president-prequel-survival-murder-snow-creature-battle-spin off-fight to the death-young adult-origin story-based on young adult novel-death game-teenager,/mBaXZ95R2OxueZhvQbcEWy2DqyO.jpg,/5a4JdoFwll5DRtKMe7JLuGQ9yJm.jpg,609681-466420-968051\r\n38055,Megamind,Animation-Action-Comedy-Family-Science Fiction,en,Bumbling supervillain Megamind finally defeats his nemesis the superhero Metro Man. But without a hero he loses all purpose and must find new meaning to his life.,54.257,DreamWorks Animation,10/28/10,130000000,321885765,96,Released,His brain is off the chain.,6.945,6021,Will Ferrell-Tina Fey-Brad Pitt-Jonah Hill-David Cross-Ben Stiller-Justin Theroux-Jessica Schulte-Tom McGrath-Emily Nordwind-J.K.", + "embedding" : [ -0.0143386545, -0.037882373, -0.0235301, -0.036874715, 0.0011157393, 0.027696889, -0.025300305, -0.01994884, -0.042893413, -0.032108784, 0.046379354, 0.027887527, 0.011547179, -0.010668885, 0.0031438146, 0.011833135, 0.017797362, -0.02348925, 0.021759896, -0.023870524, 0.0012808449, -6.468054E-4, -0.01136335, 0.0024289244, 0.005116571, 0.00635231, 0.018886719, -0.02630796, 0.009293573, 2.3063719E-4, 0.011070585, -0.016626304, -0.014107167, -0.022440745, -0.019050121, -0.0069684773, 0.011560796, -0.03815471, 0.024973497, -0.019090973, 0.015904605, 0.0051880605, -0.008360811, -0.0022382871, -0.020384584, 0.00119659, 0.0027965824, -0.016095242, -0.0048952955, 0.032326654, 0.018396508, 0.028867947, -0.018042468, -0.028513907, -0.010280802, -5.9786945E-4, -0.008626342, 0.003700408, -0.0015506309, 0.005868908, 0.012513983, -0.015428011, -0.017021196, -0.025341155, -0.0010655269, -0.021296918, -0.021705428, -0.027833058, -0.010546332, -0.007394007, 0.015999923, 0.025872217, 0.019608418, -0.018777782, 0.013773551, -0.022481594, -0.03641174, 0.0056203986, 0.0038229604, 0.007394007, 0.012636535, -0.027383698, 0.0028799863, 0.006505501, 0.009565911, 0.006648479, -0.0062740124, 0.017470555, -0.023693504, 0.004983806, 0.0061718854, 0.03251729, 0.003119985, 0.016204178, 0.006764223, -0.0013276532, -0.018192254, 0.020275647, -0.0132561065, -0.025831366, 0.006294438, 0.006280821, -0.0028016886, -0.011152287, -0.019567566, -0.009824634, -0.0064612455, -0.0111046275, 0.021296918, 0.010655268, -0.010457822, 0.0032680694, 0.016626304, -0.046243183, -7.734005E-5, -0.010165058, 0.01793353, -0.018818634, -0.012275686, -0.019104589, 0.027846675, 0.03063815, 0.018954802, -0.029058585, 0.036302805, 0.019349694, -0.0054025273, -0.019812671, -0.00398296, -0.0038297689, 0.023298612, 0.0020476498, 0.023094358, 0.008973574, -0.026593916, 0.05095465, -0.018110551, 0.005811036, -0.023339463, -0.019976074, 0.027056891, 0.040061086, -0.0100288885, -0.018587146, -0.026253492, 0.0046944455, 0.007618687, -0.0040340233, 0.027097743, 1.7116939E-4, 0.020425433, 0.013753125, 0.011758242, 0.029031351, 0.0058076316, 0.0058314614, 0.0037378545, 0.006308055, 0.0054195486, -0.017184598, -0.0011702072, -0.0019387142, -0.012159942, -0.007305497, -0.01713013, 0.02348925, 0.01861438, -0.0187914, 0.0029736029, -0.008925915, 0.006594011, 0.01847821, -0.025014348, 0.006406778, -0.0011523349, 0.04022449, 0.0031982826, -0.015278225, -0.017102897, -0.018927569, 9.948888E-4, 0.019799054, 0.032108784, 0.042512137, -0.0133514255, 0.021201601, 0.02460584, -0.021814363, 0.006927626, -0.018532677, 0.00615146, 0.010219526, -0.0025872216, 0.005593165, -0.64402753, -0.009545486, -0.002265521, -0.0036357273, -1.7936084E-4, 0.0032289207, 0.019894373, 3.974449E-4, -0.023067124, -0.009211871, -0.00997442, -0.0055999733, -0.0071761357, -0.022209255, -0.018042468, -0.010253568, -0.0134467445, -0.009334424, -0.0053004003, 0.009668039, -0.026675617, 0.0053208256, 0.01659907, -2.0595646E-4, 0.0054331655, -0.007305497, 0.006750606, -0.002861263, 0.014488441, 0.002774455, -0.0040850868, 0.0050689117, 0.031727508, -0.0050655077, 0.026280725, 0.0016833962, -0.020970112, 0.056156326, 0.03551302, 0.034287494, -0.04177682, -0.0048510404, 0.007938686, 0.026199024, -0.028323269, 0.02098373, -0.006025503, 0.0012127601, 0.015850136, -0.011615263, -0.018355656, 0.0053004003, 7.199966E-4, -0.0044221063, -0.010015272, 0.013930146, 0.006137843, -0.018151402, 0.021678194, 0.0027455187, -0.017143747, 0.022917338, 0.0034927493, 0.020602455, -0.0013591425, 0.01816502, -0.0029599858, -0.008435705, 0.017170982, -0.024850944, 0.016258646, -0.001609354, -0.0030995596, -0.0048067854, 0.014937801, -0.0036765782, 0.037364926, 0.00244935, -0.008299535, 0.022604147, 0.0010059526, -7.663793E-4, 0.004459553, 0.014420357, 0.022713082, -0.013174405, -0.036003232, 0.014556526, 0.022018619, 0.001921693, 0.0041940226, 0.017211832, 0.0032561547, 0.0019438205, -0.0064033736, 2.6369555E-5, -0.012343771, 0.007005924, 0.043628726, -0.04975636, -0.014910567, -0.0132561065, 0.0034995577, -0.007632304, 0.033497714, 0.0064476286, -0.018423742, 8.3020877E-4, 0.034042392, 8.246769E-4, -0.019703735, -0.003005943, -0.030529216, -0.013467169, 0.0028867947, -0.024129245, 0.029576028, 0.020057777, 0.012445898, -0.0021804152, 0.004115725, 0.00729188, -0.0023710525, -0.007257838, 0.0026502002, 0.036575142, -0.0125684505, -0.0041361502, -8.9361274E-4, -0.0030859427, 1.3351E-4, 0.00697869, 0.014774397, -0.009286764, 9.965909E-4, 0.004268916, 0.021201601, -0.006001673, 0.022304574, 0.004030619, -0.030120706, -0.006165077, -0.011479094, -0.011969305, -0.0044391276, -0.016680771, -0.04030619, -0.010927607, -0.010457822, -0.009334424, -0.023516484, 0.017742895, -0.009606763, 0.003261261, -0.0016068008, -0.0059948647, -0.010866331, -0.012684194, 0.015046736, -0.023026273, 0.0022519042, 0.015305459, -0.019717352, -0.015169289, 0.01861438, -0.0057633766, 0.003874024, 0.0281871, 0.010764204, -0.020275647, 0.017388852, -0.0057055047, 2.2893508E-4, 0.012234835, -0.012983767, 0.028323269, -0.0132561065, 0.02558626, 0.013024619, -0.014651845, 0.011908028, -0.008122514, -0.031836443, -0.010655268, 0.034341965, 0.020030543, 0.015686734, -0.0067267762, -0.01297015, 5.84678E-4, -0.030828789, 0.004643382, -0.0156050315, -0.010491865, -8.819107E-5, 0.02437435, -0.0062297573, 0.006311459, -0.0019336077, 0.014202485, 0.051335923, 0.01695311, 0.0077412394, -0.0108118635, 0.007850175, -0.03878109, 0.010335269, -0.017879063, -0.008735278, -0.018805016, 0.032653462, -0.012425472, -0.009722507, -0.007931877, 0.0015055247, 0.03842705, -0.029249221, 0.0074825175, -0.024633074, 0.003560834, -0.005242528, -0.011465477, 0.009681656, 0.001594886, -0.028840713, 0.01521014, 0.034750473, -0.0053106127, -0.00644082, -0.011799092, -0.0028016886, 0.010553141, -0.0014697802, -0.0063148635, -0.003121687, 0.0015855243, 0.035050046, -0.0017974382, 0.025640728, -0.007788899, 0.0047080624, 0.013228873, 0.02335308, -0.024415202, -0.0090552755, -0.025776898, 0.0032561547, 0.032980267, -0.005215294, 0.058226105, -0.036602378, 0.026090087, -0.007564219, 0.005314017, 0.00845613, -0.017429704, -0.0051029543, 0.021623727, 0.022822019, 0.026770936, 0.009286764, -0.024633074, 4.138278E-4, 0.013821211, 0.0072169867, 7.727623E-4, -0.0026825403, 0.005555718, -0.0113973925, -0.042621072, -0.019227142, 0.0010510588, 0.010069739, -0.006740393, -0.023598185, -0.0011131861, -4.229767E-4, 0.014978652, 0.019022888, 0.020343732, -0.017810978, -0.029221987, 0.011805901, 0.0035233875, -0.005712313, -0.03273516, -0.017688425, -0.013603339, -0.0360577, 0.0011625476, -0.0068731587, 0.029902836, -0.0046263607, -0.0044255108, -0.006495288, -0.006243374, 0.0077957073, -0.004956572, 0.01663992, 0.03270793, -0.0043370007, 0.022386275, -0.012677386, -0.005736143, 0.036929186, 0.0020765858, 0.008285917, -0.011560796, -0.005797419, -0.002503818, -0.010900374, 0.0014706312, -0.047986154, -0.0014493548, -0.017157365, -0.007938686, -0.01476078, 0.0070876256, 0.014597377, -0.0021531812, -0.031564105, -0.031591337, -0.0156595, -0.0062638, 0.08377151, 0.044364043, -3.999981E-4, 0.0060833753, -0.008830596, 0.016558219, -0.0235301, -0.023325846, -0.0035642383, -0.005358272, 0.023911376, 0.0053650807, 0.00962038, 0.005770185, 0.017742895, -0.0078025158, 0.005780398, -0.011165904, -0.013480786, -0.008571873, -0.022672232, 0.0076731546, 0.009770166, 0.031291764, 9.097829E-4, -0.031101128, 0.013378659, 0.0031267935, 0.009647613, 0.009164211, -0.012582067, -0.004367639, -0.0029872197, 0.012377813, 0.0021616917, 0.0066246493, 0.017783744, -0.0029821133, 0.027043276, 0.009497827, 0.0016876515, 0.011662923, 0.006903797, 0.0024902008, 0.013882487, -0.03153687, -0.014025465, 0.012377813, 0.0344509, -0.014788014, 0.0281871, -0.016517367, -0.014965035, -0.0012833981, 0.02568158, 0.001594886, -0.0075574107, -0.006852733, -0.02638966, -0.006178694, -0.0039795553, -0.044445746, 0.017211832, 0.008211024, 0.0032510483, -0.012622918, -0.0065361387, -0.009845059, -0.011322499, 0.022263722, -0.008830596, -0.028105397, 0.0030467939, -0.0015889285, 0.008571873, 0.008040813, 0.034369197, -0.002277436, -0.0037038121, 0.010689311, -0.030610917, -0.04044236, 0.028650075, -0.016517367, 0.0018485017, 0.0049157212, -0.008204216, 0.019390546, -0.017838212, 0.013793977, 0.0079727275, -0.00962038, -0.019431395, -0.009593146, 0.02773774, 4.0850867E-4, 0.011649306, 0.01310632, 0.011356541, 2.270202E-4, 0.007843367, -0.02787391, -0.024442436, -0.013303766, -0.0062740124, -0.011063777, 0.008476555, 0.02339393, -0.024156481, -0.012336962, -0.028350502, -0.024074778, 0.013732701, 0.011131861, 0.015822902, -0.010988884, 0.012854407, 0.015400778, -0.011622072, -0.0080680465, -0.011376967, -0.009845059, 3.3106224E-4, 0.027165828, -0.0134535525, 0.010852714, -0.010730161, -0.017525023, -0.017838212, 0.03480494, 0.008891872, 0.0143386545, -0.006648479, -0.014352271, -0.018069701, -0.023244144, 0.006144651, -0.0048612533, -0.01028761, 0.022563295, -0.02290372, -2.069139E-4, 0.003860407, -0.031591337, -0.010471439, -0.026634766, -0.0074144327, 0.009382083, -0.007775282, 0.031509638, -0.008782936, 0.010859522, -0.018886719, -0.005610186, -0.0014136103, -0.018491827, -0.039107896, 0.004796573, 0.04428234, 0.015686734, 0.038100243, 0.0026025407, 0.040142786, 0.0045616804, 0.021678194, 0.018886719, -0.020193946, -0.0012944619, -0.029984538, 0.01851906, 0.015441628, 0.011479094, 0.019676501, 0.010294419, 0.0011727604, 0.015496096, 0.016803324, -8.961659E-4, -3.6489186E-4, -0.024088396, -0.007148902, 0.00646465, -0.012561642, 8.707405E-5, -0.03278963, -0.03216325, 0.037201524, -0.012030581, -0.008626342, -0.005879121, 0.026784552, -0.010689311, -1.9287142E-4, -0.009811017, 0.01722545, -0.015142055, 0.0010468035, -0.014379506, -0.0069854986, 0.0037821096, -0.0047387006, 0.0032238143, -0.018015234, -0.025014348, -0.0027948802, 0.016326731, -0.027941994, -0.021855215, 0.026934339, -0.019254375, -0.008326769, -0.019853521, -0.013671424, -0.028595608, 0.015169289, -0.0022570104, 0.001254462, 0.013126746, -0.01619056, -0.03499558, 0.017538639, -0.018110551, 0.027628804, 0.02715221, 0.036493443, 0.018355656, 0.0018314807, -0.023924991, 0.01489695, -0.011009309, -0.013235682, 0.029984538, 0.019649267, -0.029276455, -0.017947149, -0.0027880718, -0.005954014, -0.028486673, -0.031019427, 0.0195948, 0.031700272, 0.022481594, -0.015890988, -0.0057463553, -0.021664577, 0.012384621, 0.0027523274, -5.0510396E-4, 0.0019285014, -0.021446707, -0.008619533, 0.0072306036, 0.010621225, 7.374433E-4, -8.2127267E-4, -0.022073086, 0.024905413, -0.015713967, 0.0075506023, -0.012051006, -0.006948052, 0.03055645, -0.032462824, 0.027656037, 0.003989768, 0.007394007, 0.0033701966, 8.0425147E-4, -0.0028391352, 0.027846675, -0.016326731, 0.013814402, -0.014610994, 0.015155672, 0.003121687, 0.016735239, -0.02018033, -0.01687141, -0.0187914, -0.023162443, 0.024347117, 0.005879121, -0.015319075, -0.003475728, -0.022059469, -0.010532715, -0.005654441, -0.0056986962, 0.015155672, -0.027519869, 0.012296111, -0.0025582856, 0.005429761, 0.01091399, 0.0024561584, -0.003771897, 2.9893473E-4, 0.019758204, -0.010662077, -0.016381199, -0.0088510215, -0.008122514, -0.031754743, -0.016381199, -0.018982036, -0.011962496, 0.014815249, -0.004531042, 0.021705428, 0.0067301807, 0.020547986, 0.0024425415, 0.011193138, -0.014842482, 0.02012586, 0.022032235, -0.0070127323, -0.008238259, -0.008639959, 0.023652652, -0.0044493405, -6.774436E-4, 0.018137785, 0.01440674, 0.02509605, -0.022481594, 0.018682463, 0.011077394, -0.021351388, -0.02487818, 0.025218602, 0.023693504, 0.014474824, -0.008340386, -0.029467093, -0.008721661, 0.0021531812, 0.019213526, -0.01900927, -0.0137463175, 0.026866253, 0.02147394, 0.03744663, 0.030229643, -0.010369312, -0.01722545, -0.00501104, -0.007679963, -0.032871332, 0.0037242374, -0.0018638208, 0.002008501, -0.007475709, -0.008742086, -0.029548794, -0.014107167, -0.0104169715, -0.032462824, 0.006294438, 0.018450975, 0.03897173, 0.020234797, 0.001182973, 0.019812671, -0.0034927493, -0.0015761626, -0.015999923, -0.0015633968, 0.013467169, 0.013970997, 0.018192254, 0.022644999, -0.022440745, -0.018736932, 0.015550564, 0.007564219, 5.8552914E-4, 0.036139403, -0.022073086, -0.0068765627, -0.010682502, -0.0061855023, 0.01704843, -0.008898681, 0.021950534, -0.0142297195, -0.0055421013, 0.0044357236, 0.0055182716, -0.0038535986, -0.008993999, 0.017906297, -0.028078163, -0.003458707, -0.023625419, -0.025872217, 0.006144651, -0.026580298, 0.02715221, 0.0016808431, 0.011567604, 0.021365004, 0.013569296, -0.018314807, 0.005528484, -0.0022314787, 0.0014723333, -0.00720337, 0.0014314825, 0.0060901837, 0.03273516, -0.03592153, 0.02697519, -0.0375828, 0.0027148805, -0.008919106, -0.017511405, -0.025899451, 0.024755627, 0.0022467978, -0.045426164, -0.010001654, -0.005337847, -2.804242E-4, 0.001765098, -0.0071693272, -0.016340347, 6.051035E-4, 0.0077140057, 0.012997384, -0.011125053, -0.024905413, -0.006212736, -3.5297705E-4, -0.009940378, 0.021596493, 0.1790902, -0.01243909, 0.014788014, 0.056483135, 0.0073123053, 0.01243909, 0.0144339735, 0.022781167, -0.019744586, 0.008299535, -0.0058484827, 0.0058280574, -0.0067301807, 0.0026859445, 0.01395738, -0.0020442456, -0.015809286, -0.0065259263, 0.00760507, -0.03586706, -0.019921606, 0.023502866, -0.008204216, -0.005579548, 0.0014076529, 0.001894459, -0.0052799745, -0.005286783, 0.022604147, 0.015918221, -0.025477326, 0.0018127572, -0.005627207, 0.014175251, -0.021351388, -1.4127592E-4, 0.0050927415, 0.026253492, 0.014951418, 0.001338717, 0.013460361, -0.0012416962, -0.0011055266, -0.0074620917, 0.029004116, 0.033715583, -0.02227734, 0.012759088, -0.009681656, 0.010771012, -0.038753856, -0.008027196, 0.010219526, 0.02491903, -0.0025940302, -1.9428098E-5, 0.013371851, -0.0022842444, -0.018886719, 0.008782936, 0.010076547, 0.029902836, -0.02161011, 0.021296918, 0.009075701, 0.01932246, -0.03221772, -0.0013463765, 0.027751356, -0.023189677, -0.019567566, -0.022127554, -0.020779476, -0.0058620996, -0.008490172, -0.00664167, 0.013787168, 0.004486787, 0.0055863564, 0.016558219, -0.029984538, -0.015387161, 0.023802439, 2.821263E-4, -0.023121592, -0.022658614, 0.016163327, -0.02022118, -0.024387969, 0.006495288, -0.012636535, -0.022045853, -0.003904662, 0.0034501962, -0.009606763, -0.0028527523, 0.03273516, 0.025518175, -0.007891026, -0.027179444, -0.020643305, 0.02325776, 0.021405855, -0.006920818, -0.0037038121, -0.0250552, 0.0037072164, 0.009422934, 0.027724123, 0.0029667944, -0.012003346, -0.03739216, 0.008571873, -0.0044289147, -0.0035778552, 0.01440674, 0.0121803675, -0.028786246, 0.03314367, -0.018369274, -0.006522522, -0.012336962, 0.019894373, 0.0044969996, -0.008047621, -0.031618573, -0.010662077, 0.019159058, -0.010226334, -0.023448398, -0.0028084973, -0.022467978, 0.006498692, -0.010328461, 0.007632304, 0.012309728, 0.03278963, 0.010628034, 0.0031438146, -0.0019421184, 0.0025974344, -0.03690195, 0.019526714, 0.008381236, 0.026593916, -0.03020241, 0.013460361, -0.011513136, -0.008987191, -0.035594724, -0.02429265, -0.012725046, 0.00407147, 0.008469746, 0.032272186, 0.004629765, -0.027547102, -0.044799786, -0.0023880736, 0.036874715, -0.034287494, 0.0250552, -0.0025531792, -0.021378621, -0.013222065, -0.0066552875, -0.17516853, 0.0074961344, 0.0055523138, -0.037746202, 8.0297486E-4, -0.009865485, 0.010907182, -0.004445936, 0.015986307, -0.009470593, 0.020752242, 0.004830615, -0.034287494, 0.003249346, 0.004731892, 0.012336962, -0.003205091, 0.033878986, 0.02057522, 0.0034570047, 0.036793016, -3.1042405E-4, -0.012343771, 0.010355695, 0.0037991307, -0.0023267975, 0.025286688, 0.005314017, 0.0019438205, -0.021310536, -0.03145517, -0.006478267, 0.009988037, 0.013923338, -0.0010748885, -0.0018706294, -0.019213526, -0.014107167, -0.0033991328, 0.010233142, 0.044935957, 0.005096146, 0.012037389, 0.0151148215, 0.017824596, 0.0049769976, 0.010566758, -0.0044663614, 0.010103782, -0.031836443, -0.010628034, -0.036520675, 0.0203982, -0.0032084952, 0.016122475, 0.018546294, -0.001594886, -0.006474863, -0.0014374399, 8.9361274E-4, -0.022713082, -0.004091895, 0.017620342, -0.009967612, -0.019785438, -1.7670129E-4, -0.0054876334, 0.006331885, -0.033579413, 0.021392237, -0.021310536, 0.0035778552, 0.022794785, 0.0039659385, -0.0035982807, 0.0015012694, -0.03221772, 0.0070535834, -0.011935262, 0.014692696, -0.012643344, 0.041123208, -0.015863754, 0.005593165, 0.02495988, -0.022508828, 0.0037480672, 0.0048987, 0.005654441, -0.011336116, 0.0049463594, -0.010280802, -0.03020241, -0.013392276, 0.020847559, 0.012268878, 0.005834866, 0.0018195658, 0.022467978, -0.015645882, -0.008619533, -0.024987115, 6.324438E-5, 0.021010963, 0.032081548, 0.012452707, -0.003972747, 0.024088396, 0.00970889, -0.008687618, -0.0022416913, -0.008735278, 0.015632266, -0.003319133, -0.020684157, 0.015496096, -0.011710582, -0.028377736, 5.468059E-4, 0.0075710276, 0.046107013, -0.0034263665, -3.5297705E-4, 0.006379544, -0.0058893333, -0.0052186986, -0.09188722, -4.6467863E-4, 0.02012586, 0.033688348, -0.034832172, 0.040142786, -0.0073259226, 0.03355218, -0.016667154, 0.033524945, -0.0016178646, -0.03224495, 0.009899527, -0.00572593, 0.0098382505, -0.0034706218, -0.018083317, -0.021392237, 0.01243909, 0.03739216, 0.0052663577, -0.00917102, -7.9063454E-4, -0.01570035, -0.025014348, 0.015986307, -0.042348735, 0.020057777, 0.022849252, 0.0035370043, 0.020997345, -0.019921606, 0.01838289, -0.020643305, -0.036983654, -0.026730085, -0.0150195025, -0.03091049, 0.0015914817, -0.046188716, -0.009552294, 0.008605916, -0.00592678, -0.019676501, -0.0011710583, -0.0035370043, -0.029848367, 0.013473978, 9.1914454E-4, -0.037827905, -0.0066723083, -0.0098382505, -0.01855991, -0.0010578673, 0.008490172, 0.009286764, 0.008891872, 0.025164135, -0.0022382871, -0.0067778397, 0.001695311, 0.0071693272, -0.017838212, 0.0017259492, 0.002464669, 0.016939493, -5.0042314E-4, -0.00831996, 0.024946263, -0.024864562, -0.0072101783, 0.036711313, -0.031918146, -0.00664167, -0.0156050315, -0.007046775, -0.017879063, -0.017919915, 0.013984614, -0.03020241, -0.0084629385, -0.034641538, 0.0018689273, -0.022222873, 0.0028306248, 0.008354003, 0.01973097, 0.012010155, 0.0049463594, -0.031101128, 0.0067029465, 0.0059199715, 2.4162118E-5, -0.0120782405, -0.013494403, 0.031564105, 0.020057777, -0.0063148635, 0.0067029465, 0.010968458, -0.022331808, 0.0087557025, -0.07734431, 0.026852638, -0.0054025273, -0.005031465, -0.0012059517, -0.017511405, 0.0047182753, -0.0057872063, -0.0063693314, 0.014665462, -0.00697869, 0.0075097512, -0.022672232, -0.0018587145, -0.0073191137, 0.00407147, 0.013460361, 5.808483E-4, 0.009320807, 0.0073259226, -0.01570035, 0.0021753088, 0.012949726, 0.005171039, -0.013508021, 0.021528408, 0.009919953, 0.013821211, -0.016408432, -0.029467093, 0.022930954, -0.013045044, -0.0077820905, -0.0012161644, -0.006137843, -0.038372584, -0.011336116, -0.011683349, 0.028922414, 0.023639036, -0.0021293515, -0.02219564, -0.010968458, -0.02219564, 0.0098382505, 0.031591337, -0.014828865, 0.016027158, 0.02174628, 0.013725892, 0.028840713, 0.011063777, -0.0014833972, -0.01932246, 0.02491903, -0.025300305, 0.06062269, 0.013331, -0.003717429, -0.019581182, 0.028867947, 0.003969343, 0.016885025, -0.038454283, 0.021542024, 0.0025106263, 0.0044187023, -0.003887641, -0.008571873, -0.025382007, 5.1191245E-4, -0.016558219, 0.023298612, 0.027206678, 0.013317383, 0.008245067, -0.007904643, 0.0052595492, 0.009062084, 0.01583652, 0.0065463516, -0.014325038, -0.025436474, 0.007761665, -0.00552508, 0.02245436, -0.004857849, 0.005354868, -0.005923376, 0.0054774205, -0.020520752, -0.004316575, 0.0047795516, 0.0036255145, -0.004765935, 0.022658614, -0.015713967, 0.0057293344, 0.0067676273, 0.018546294, 0.012405047, -0.008313152, -0.019662885, -0.006594011, -0.042021926, 0.003904662, 0.0015957371, -0.03761003, 0.021147132, 0.022495212, 0.021392237, 0.005143805, -0.0063489056, 0.0077684736, -0.034505367, 0.02572243, -0.0034348771, -0.009504635, -0.01949948, 0.047114667, 0.021664577, 0.002306372, 0.037337694, -0.021596493, 0.038345348, -0.008040813, 0.0134467445, -0.022359041, 0.0019319056, -9.233998E-4, 0.0043370007, 0.004830615, -0.028486673, 0.013147171, -0.005283379, -0.0067472016, 0.0145292925, 0.03466877, -0.010083356, 0.06895626, 0.021678194, 0.013303766, 0.01136335, -0.02133777, 0.010491865, 0.013889295, 0.0119829215, -0.028867947, -0.009014425, 0.009286764, -0.020370966, 1.7382896E-4, -0.031291764, -0.029031351, -8.242514E-4, -0.0014110571, 0.018859483, -0.02366627, -0.013208447, 0.01158803, -0.0036935993, 0.026321577, -0.0041327463, -0.025667962, 0.0022978613, 0.042267032, -0.021582875, -0.006539543, -0.030120706, -0.0033667923, -0.020330116, -0.0129293, 0.0055182716, 0.02308074, 0.0074620917, -0.0014170145, 0.0026502002, 0.019921606, 0.008993999, -0.015182906, -0.006120822, -0.028704543, 6.0765666E-4, 0.013167596, 0.0021140324, -0.0076935804, -0.024701158, -0.017824596 ], + "id" : "aa31b159-544b-420f-95ab-e4617ccee419", + "metadata" : { + "source" : "movies.csv" + } + }, + "936430fb-a1bd-41b8-a94f-db909bd9cbf3" : { + "text" : ",/uw4SnKFZ453Gxmj5XR5Susj8TNo.jpg,607-608-2048-95-8960-18-47933-601-6479-564-329-41154-1858-604-17654-563-435-180-605-954-267246\r\n810,Shrek the Third,Fantasy-Adventure-Animation-Comedy-Family,en,The King of Far Far Away has died and Shrek and Fiona are to become King & Queen. However Shrek wants to return to his cozy swamp and live in peace and quiet so when he finds out there is another heir to the throne they set off to bring him back to rule the kingdom.,98.592,DreamWorks Animation-Pacific Data Images,5/17/07,160000000,813400000,93,Released,He��s in for the Royal Treatment.,6.289,8454,Mike Myers-Eddie Murphy-Cameron Diaz-Antonio Banderas-Julie Andrews-John Cleese-Rupert Everett-Eric Idle-Justin Timberlake-Susanne Blakeslee-Cody Cameron-Larry King-Christopher Knights-John Krasinski-Ian McShane-Cheri Oteri-Regis Philbin-Amy Poehler-Seth Rogen-Maya Rudolph-Amy Sedaris-Conrad Vernon-Aron Warner-Jasper Johannes Andrews-Guillaume Aretos-Kelly Asbury-Zachary James Bernard-Andrew Birch-Sean Bishop-Kelly Cooney Cilella-Walt Dohrn-Dante James Hauser-Jordan Alexander Hauser-Tom Kane-Tom McGrath-Chris Miller-Latifa Ouaou-Alina Phelan-David P. Smith-Mark Valley-Kari Wahlgren,ship-island-ambush-kingdom-boarding school-liberation of prisoners-pregnancy-traitor-shipwreck-stage-sadness-transformation-assault-prince-theater play-tricks-heir to the throne-conciliation-sequel-teacher-best friend-dragon-cowardliness-capture-duringcreditsstinger-ogre-cartoon donkey,/n4SexGGQzI26E269tfpa80MZaGV.jpg,/qSNz1G1Ts8fFw6v4Vae4aMAjcY7.jpg,10192-809-808-10527-953-950-8355-9502-425-80321-863-10555-13053-49444-5559-57800-46195-37135-1593-2062-35\r\n259316,Fantastic Beasts and Where to Find Them,Action-Adventure-Fantasy,en,In 1926 Newt Scamander arrives at the Magical Congress of the United States of America with a magically expanded briefcase which houses a number of dangerous creatures and their habitats. When the creatures escape from the briefcase it sends the American wizarding authorities after Newt and threatens to strain even further the state of magical and non-magical relations.,72.692,Warner Bros. Pictures-Heyday Films,11/16/16,180000000,809342332,132,Released,From J.K. Rowling's wizarding world.,7.", + "embedding" : [ 0.023510119, -0.035582155, -0.026018944, -0.03434123, -0.00597532, 0.030699387, -0.01841154, -0.020205485, -0.01735945, -0.025546852, 0.03283054, 0.019139908, 0.029566368, -0.0024430696, 0.006680084, 0.014783184, 0.031265896, -0.02175664, 0.017872008, -0.027974749, 0.005493113, 0.005233463, -0.031751476, 0.008099728, 0.015700389, 0.023145935, 0.01537667, 0.0062315976, -0.009947626, -0.006953222, 0.004208352, -0.010338787, -0.013434353, -0.012712729, -0.027785912, -0.009118095, -0.0011717967, -0.015363182, 0.02270082, -0.012692497, 0.015498064, 0.0198413, -0.011080644, 0.011255993, -0.007985078, -8.3543203E-4, 0.0022694077, -0.017898984, 0.00737136, 0.021567803, 0.013865979, 0.043540254, -0.025789643, -0.02086641, -0.014203187, -0.01872177, -0.017399916, -0.00800531, -0.002894928, 0.006326016, 0.011714594, -0.020974318, -0.02271431, -0.013919933, -0.016280387, -0.011856222, -0.02310547, -0.03067241, 6.4448814E-4, -0.017737124, 0.02827149, 0.014931556, 0.017399916, 4.28043E-4, 0.008706702, -0.02167571, -0.01833061, 0.012705985, -0.008578563, -0.0027431843, 0.012861101, -0.016239922, -0.019072466, 0.017399916, 0.0068318276, 0.019112932, -0.014526906, 0.020893387, -0.019396186, 0.021176642, 0.011067156, 0.03250682, -0.0047310237, 0.0068588043, 0.0096036745, 0.008544843, -0.005533578, 0.024643136, -0.018546423, -0.03666122, 0.00737136, -0.023941744, -0.0020940597, -0.012112499, -0.005135673, 0.0013960397, -0.008423448, -0.015511553, 0.015255275, 7.249965E-4, 0.0032203333, 0.004009399, 0.03385565, -0.01936921, -0.014810161, -0.024818486, 0.021891521, -0.016145503, -0.024009187, -0.027259868, 0.02271431, 0.025749179, 0.007297174, -0.04367514, 0.02206687, 0.027111497, -0.0020030136, -0.021810593, -9.0708863E-4, -0.0071757794, 0.026990103, 0.0044309087, 0.024602672, 0.0058539254, -0.035393316, 0.05665089, -0.023145935, 0.007776009, -0.004090329, -0.03606773, 0.044970017, 0.033774722, -0.038495626, -0.04046492, -0.03649936, 0.006302411, 0.0114650605, -0.011370643, 0.03579797, -0.0074455454, 0.03577099, 0.006538457, 0.018627351, 0.019153396, 0.046022102, -9.365943E-4, -0.0040700966, -0.009185537, 0.0031242291, -0.0030213809, 0.006191133, 0.009381117, -0.011323433, 0.0019490604, 0.010075766, 0.014284117, 0.019005025, -0.0036519591, 0.012301336, 0.013690632, -0.007249965, 0.023631513, -0.009333909, 0.016212946, 0.0034513206, 0.025155693, -0.0041105617, -0.015039463, -0.02469709, -0.014972021, -0.0015503123, 0.012476684, 0.027381264, 0.03906214, -0.004211724, 0.004167887, 0.026477547, -0.031886358, 0.007850194, -0.013171332, -0.004444397, 0.007843451, 0.0039014928, -0.005840437, -0.63578486, -0.012206918, -0.003611494, -0.021136178, 0.016685035, 0.02198594, 0.0012990925, 0.01143134, -0.02023246, -0.014540395, -0.023307795, 0.023267329, 0.03210217, -0.0143380705, -0.030240783, 0.0071083377, -0.0013218541, -0.016293874, 0.02573569, 0.0049906736, -0.023213375, 0.01561946, -0.004349979, 6.6514214E-4, -0.0017922588, 0.018667817, -0.016833408, -0.014351559, 0.011033435, 0.004586024, -0.027286844, 0.007641126, 0.011336922, -8.388041E-4, 0.03194031, 0.007904148, -0.015498064, 0.03051055, 0.02620778, 0.027044056, -0.0140278395, -0.008443681, 0.018452004, 0.012206918, -0.018074332, 0.0069599664, 0.021378966, 0.0060832263, 0.016846895, -4.952738E-4, -0.0042892816, -0.0021631871, 0.0037194006, -0.01191692, -0.009752046, 0.014756207, 0.020124555, -0.015794808, 0.009691348, -0.008511121, -0.013528772, 0.018586887, -0.007897404, 0.02078548, -0.011997849, 0.039817482, 0.008288564, -0.009826232, 0.015363182, -0.027367774, 0.0076343818, 0.014054816, -0.0086325165, 4.3668394E-4, -0.01927479, 0.0073578716, 0.029971018, 0.009994836, 0.0018108052, -0.0034530065, 0.013279238, -0.0035474247, 0.002335163, 0.011208783, 0.014985509, -0.0013648481, -0.038387723, 0.009489024, 0.016536664, 2.8704802E-4, -0.005749391, 0.01967944, 0.006106831, 0.0051255566, -0.0012645287, 0.00808624, -0.015457599, 0.00923949, 0.029728228, -0.054870434, -9.939197E-4, -0.033154257, -0.0013395575, -0.006201249, 0.0114650605, 0.024117094, -0.0142976055, 0.010615298, 0.03647238, -0.0188027, 0.001188657, 0.008551586, -0.0077287997, -0.021392455, -0.007573684, -0.03323519, 0.024103604, 0.008423448, 0.002552662, -0.0015697017, 0.018775724, 0.019234326, 0.011026691, -0.039574694, -0.0032304495, 0.031670544, -0.00440056, -0.0013707492, 0.010460182, 0.006545201, 0.020596644, -0.006143924, 0.03666122, -0.011471805, 0.00972507, -6.204621E-4, 0.042596072, 0.0036688196, 0.017629217, -0.0033417281, -0.009441815, -0.0055268337, -0.011761804, -0.016051086, -0.005307649, -0.0049097436, -0.017494334, -0.005631368, 0.0012872902, 0.003925097, -0.02932358, 9.998208E-4, -0.013785049, 0.0064912476, 3.4274E-5, 0.0013437726, -0.02382035, -0.026841732, 0.0066969446, -0.017656194, 0.017480846, 0.01633434, -0.02604592, 0.004258933, 0.028001726, -0.008868562, -0.008288564, 0.014216675, 0.008841585, -0.028163586, -2.8746953E-4, -0.010918785, -7.1572326E-4, 0.020043625, -0.020448273, 0.015390159, -0.011127853, 0.0010284834, -0.003385565, -0.009475536, 0.0013151099, -0.007297174, -0.016658058, -0.01617248, 0.024643136, 0.021068735, 0.008113217, -0.019328743, -0.009178793, -0.005095208, -0.011148086, -0.016725501, -0.0149585325, -0.007850194, -0.005941599, 0.011559479, -0.008187402, 0.005816832, 0.005314393, 0.0139873745, 0.035312388, 0.013535516, -0.0041611427, -0.0061203195, 0.018991536, -0.037632376, 0.002234001, -0.016914336, 0.013414121, -0.0035271922, 0.013481563, -0.015632948, -0.0023081866, -0.01966595, -0.0075467075, 0.032722633, -0.024130581, -0.0114650605, -0.014864114, -0.002416093, 0.003648587, -0.020812457, 0.014864114, 0.040006317, -0.016199457, 0.007249965, -0.005398695, -0.0129959835, -0.010075766, -0.02612685, -0.004747884, -0.0111345975, 0.011168318, -0.004144282, -0.01768317, 0.010042044, 0.028730094, -0.0080525195, 0.044889085, -0.019611998, -0.015106903, 0.025209645, 0.018303633, -8.624086E-4, -0.0047816047, -0.018681305, 0.013414121, 0.018978048, -0.0013943537, 0.035258435, -0.016995266, 0.0077018235, -0.0011599944, 0.012719474, 0.011606688, -0.013097146, -0.005051371, 0.006504736, 0.019692928, 0.0231864, -0.0019878394, -0.027974749, 0.021203618, 0.0120652905, 0.019719904, -0.006811595, -0.016347827, 0.0021345245, -0.0055268337, -0.033451002, -0.025128717, -0.015363182, 0.004269049, 0.018694794, -0.012874589, 0.0042319563, 0.0017922588, 4.7124774E-4, 0.01039274, 0.022174777, -0.0051019522, -0.030132879, 0.016455734, 0.020205485, -6.6598516E-4, -0.025695225, -0.015821785, -0.010642274, -0.02261989, -0.011046924, -0.0038374234, 0.014850626, -0.011033435, -0.0019912112, -0.014553883, -0.018978048, 0.011127853, -0.013312959, 0.014567371, 0.02198594, 0.007263453, 0.021419432, -0.022039894, -0.0026116734, 0.016536664, -0.011815757, -5.197213E-4, 0.005816832, -0.0048254416, 0.007539964, -0.0038171909, -0.0031933566, -0.044646297, 0.023941744, -0.025358018, 0.011363898, -0.003564285, 0.012631799, 0.027313821, -0.0010925529, -0.0039790506, -0.02717894, -0.019544557, -0.0028426608, 0.07423964, 0.023766397, 0.006889153, -1.3182712E-4, -0.007742288, 0.00915856, 3.4627013E-4, -0.01151227, -0.001804061, 0.003078706, 0.03622959, -0.003699168, 0.038522605, 0.022957098, 0.0137176085, -0.013380401, -0.026032433, -0.010986226, -0.022903144, -0.020771993, -0.030699387, -0.018991536, 0.014459465, 0.038846325, -0.0177641, -0.013663655, 0.0066160145, 0.02143292, -0.009185537, 0.013353424, 0.0038138188, -0.0024312674, 0.007196012, 0.007782753, -0.011471805, 0.0012122616, 0.0063057835, 0.008119961, 0.01143134, 0.008625772, -0.005348114, 0.010790645, 0.008828097, -0.018128285, 0.017089685, -0.018438516, -0.018047355, 0.022161288, 0.024103604, -0.004474746, 0.028622188, 0.004144282, -0.018425027, 0.004518583, 0.024818486, 0.009151816, -0.008119961, 1.4110033E-4, -0.007512987, -0.0042454447, 0.003075334, -0.030861245, 0.011141341, -0.003999283, -7.1235123E-4, -0.014081793, -0.007924381, -0.0017956309, -0.026221268, 0.01721108, 2.531165E-4, -0.03337007, -0.012705985, -0.00414091, 0.0015730738, 8.8938524E-4, 0.0155385295, -0.0050850916, -7.2752556E-4, -0.002942137, -0.018870141, -0.0350696, -0.0075804284, -0.016765965, -0.019800834, -0.0019524324, 0.008760655, 0.022485008, -0.0019962694, 0.0040599806, 0.021055248, 0.010959249, -0.012861101, -0.006669968, 0.01633434, -0.012854356, 0.027839866, 0.03234496, 0.007573684, 0.0038880045, 0.018856654, -0.01849247, -0.017062709, -0.022565937, 0.013090402, -0.011728083, 0.014189699, 0.007944613, -0.015848761, -0.02835242, -0.018613864, -0.0038340513, 0.006116947, 0.0042555607, 0.019423163, 0.0067070606, 0.01800689, 0.013690632, -0.0074792663, 0.019935718, 0.0054526483, 0.006015785, 0.02167571, 0.031832404, -0.014634813, 0.028622188, -0.025034297, -0.00896298, -0.024346394, 0.028244514, 0.007121826, 0.016685035, -0.013157844, -0.0077220555, -0.025830109, -0.027785912, 0.015794808, -0.0022087102, -0.014985509, 0.009387862, -0.034449138, -0.01266552, -0.0071083377, -0.023051517, 0.0012147906, -0.028298467, 0.013865979, -0.014526906, 0.024373371, 0.03455704, -0.01592969, -0.0060967146, -0.025857085, 0.008538098, 0.003648587, -0.03698494, -0.028487304, -0.0101836715, 0.027947772, 0.0079918215, 0.046696518, 0.0051120683, 0.023860816, 0.0064811315, -0.0024396975, 0.018519446, -0.013643422, -0.007560196, -0.04866581, -0.0049029994, 0.0051221848, 0.018532934, 0.012173197, 0.017413404, 0.0066564796, 0.02620778, 0.004832186, 0.004845674, -0.01648271, -0.02174315, -0.016846895, 0.003952074, -0.03989841, 0.0055875313, -0.022309659, -0.009050654, 0.05638112, 1.550365E-5, -0.009994836, -0.010143206, 0.020745017, -0.0075197313, 0.018114796, -0.019895252, 0.017251544, -0.013549005, -0.0051255566, -0.013447842, -0.011545991, 0.0022188264, -0.0033518444, 0.002982602, -0.0069734547, -0.0108648315, 0.011626921, 0.019908741, -0.01935572, -0.01959851, 0.024103604, -0.013643422, -0.012935286, -0.032884493, 0.008268332, -0.03129287, -0.020191995, -0.011006459, -0.014553883, 0.006501364, -0.017480846, -0.032210078, -0.0041105617, -0.0036654475, 0.04467327, 0.022754773, 0.042110495, 0.035150528, -0.013151099, -0.023145935, 0.004393816, -0.0076681026, -0.025209645, 0.036283545, 0.017238056, -0.016307363, -0.021419432, -0.0027600448, -0.0086729815, -0.02383384, -0.045158852, 0.019719904, 0.030294737, 0.01298924, -0.011586456, -0.001884991, -0.0198413, 0.024831973, -0.009172048, -0.010379252, -0.0062484583, -0.030105902, -0.009650883, -0.0140278395, -0.020650597, 0.006545201, 0.0034209718, -0.02485895, 0.01135041, -0.022053381, -1.9468474E-5, -0.011653897, -0.010332043, 0.022835704, -0.017750612, 0.013825514, 0.008794376, 0.012854356, -0.0054796245, 0.011181806, -0.006477759, 0.029458463, -0.016293874, 0.034449138, -0.015457599, 0.010979482, -0.002598185, 0.009731813, -0.024454301, -0.009900417, -0.025209645, -0.015997132, 0.040330037, 0.009057398, 0.0012535695, -0.008389727, -0.016900849, -0.012132732, 0.012544125, 0.0012274359, 0.0014735975, -0.0347189, 0.00992065, 0.0010192102, 0.0024447558, -3.9095015E-4, -0.0017239742, -0.004835558, 0.003163008, 0.02605941, 0.01087832, -0.009772278, -0.0024582439, -0.018600374, -0.045644432, -0.011249248, -0.010770413, -0.030564504, 0.00828182, -0.031104036, -0.0051221848, -0.002368884, -0.009489024, -0.0049029994, -0.0038037025, -0.009016933, 0.008949492, 0.016293874, -0.014432488, -0.003510332, -0.0054796245, 0.04397188, 0.012759939, -0.017426893, 0.011229016, 0.009691348, 0.028541258, -0.014432488, 0.007263453, 0.0057392744, -0.02851428, -0.030969152, 0.0054863687, 0.016900849, 0.009468791, 0.0046264892, -0.022822216, -0.008335774, -0.014324582, 0.020515716, -0.014621325, -0.0022103963, 0.029620321, 0.01936921, 0.020380832, 0.021999428, -0.015484576, -0.026032433, 0.0034294021, 0.0013049938, -0.022404078, 0.0058606695, 0.007027408, 0.028864976, -0.010163439, -0.0013471446, -0.026383128, 0.006764386, -0.020245949, -0.028109632, -0.017737124, 0.034395184, 0.05327881, 0.013724352, -0.002286268, 0.020610133, -0.0117752915, 0.023564072, -0.01735945, -0.0065654335, 0.013225285, 0.017750612, 0.015525041, 0.030645434, -0.00852461, 0.0012822322, 0.012058547, 0.014729232, 0.016658058, 0.02533104, -0.027543122, -0.015417134, -0.021149665, -0.010763669, 0.010170183, 0.012301336, 0.02533104, -0.04006027, 0.007978333, 0.010790645, 0.012969007, -0.0069667106, -4.7714886E-4, 0.0019305139, -0.022903144, 0.012281103, -0.037902143, -0.004093701, -0.002812312, -0.013488307, 0.037929118, 0.014998998, 0.0017635961, 0.020434786, 0.02827149, -0.02485895, 0.006106831, -0.0072769416, -0.0047647445, -0.0044713737, -0.005934855, -0.0064474107, 0.024629649, -0.032776587, 0.008234612, -0.023402212, -0.0037935863, -0.016927825, 0.006548573, -0.021500362, 0.031535663, 0.009886929, -0.049178366, -0.011040179, -8.2320825E-4, 0.0010596751, -0.012402498, -1.3699062E-4, -0.037902143, 3.6776712E-4, -0.013650167, 0.014041328, -0.009246235, -0.020987805, -0.01019716, -0.019787347, -0.02158129, 0.021095712, 0.18743351, -0.018101308, 0.026693359, 0.030645434, 0.0023553956, 0.012544125, 0.01641527, 0.015336205, -0.012652032, 0.0059618317, -0.014594348, 0.01958502, -0.004869279, 0.0038576557, 0.018789211, -0.010972737, -0.031994265, -0.027367774, -0.00868647, -0.033424024, -0.0059955525, -0.013839003, -0.012928543, -0.012793659, 0.009226002, 0.0034934715, -0.015349694, 0.013569237, 0.024427325, -4.7588433E-4, -0.021500362, -0.015349694, 0.0020266182, 0.0083627505, -0.029917065, -0.008416704, 0.0071353144, 0.023618026, 0.0024751043, 0.0052907886, 0.004613001, -0.008497633, -0.0041476544, -0.008578563, 0.0041375384, 0.034314252, -0.028811025, -0.0025762666, -0.011363898, 0.0024380116, -0.04413374, 0.010682739, -0.0051525333, 0.027812889, 0.016239922, -0.003168066, 0.001849584, -0.0038542836, -0.0072364765, 0.0051525333, 0.0026015572, 0.032156125, -0.02500732, 2.0179772E-4, -0.011977617, 0.030159855, -0.05249649, 0.008875306, 0.025479412, -0.025371505, -0.013393889, -0.019814324, -0.022565937, -0.01641527, -0.00378347, -0.015754342, -0.005021022, 0.018033866, 0.032695655, 0.0017332474, -0.022970587, -0.028568234, 0.00254929, -0.005540322, 0.0010149952, -0.022687333, 0.014972021, -0.013414121, 0.005658345, -0.016051086, -0.013090402, -0.00545602, -0.008699958, 0.0037598656, 0.007816474, 0.029026836, 0.025951503, 0.018047355, -0.024966856, -8.017112E-4, -0.025438948, 0.023348259, 0.03401751, -0.025425458, -0.027462194, -0.0033451002, 0.0016919395, 0.019895252, 0.028001726, -0.026571965, 5.4585493E-5, -0.017076196, -0.005799972, -0.020016648, 0.021999428, 0.017265033, 0.0031157988, -0.022107335, 0.021958964, -0.025641272, -0.021405943, 0.0020771993, 0.0120652905, -0.007971589, -0.006761014, -0.037092846, -0.020691063, 0.00704764, -0.0066092703, -0.03123892, 0.020731527, -0.028838001, -0.007937869, 0.006238342, 2.7313823E-4, 0.020771993, 0.012274359, 0.006197877, 0.021864546, 6.6303456E-4, 0.0064238063, -0.0039857947, -0.008713447, 0.0076343818, -0.00342603, -0.010487159, 0.013312959, -0.009259723, -0.0033569024, -0.019625487, -0.021729663, -0.014472953, 0.0024582439, -0.018532934, 0.04405281, 0.013495051, -0.02271431, -0.03544727, -0.009279955, 0.04621094, -0.043702114, 0.02023246, 0.0130364485, -0.003473239, -0.02023246, -0.0032405658, -0.1721108, 0.017008755, 0.005449276, -0.0075939167, 0.035663083, 0.021122688, 0.021500362, 0.013629934, 0.01609155, -0.014998998, 0.0076950793, 0.027313821, -0.051336497, -0.023240352, 0.014729232, 0.0121057555, -0.007438801, 0.03075334, 0.019342232, -0.008119961, 0.037227727, 0.016293874, -0.011566224, -0.010770413, 0.024157558, -0.0075197313, 0.012186686, 0.011046924, -0.012813891, -0.01537667, -0.04103143, -0.0022087102, 0.01071646, 0.008072752, -0.010143206, 2.3183027E-4, -0.011309945, -0.013218541, 0.0070004314, 0.005982064, 0.03560913, 0.02190501, 0.029863112, 0.006804851, -0.005533578, 0.0060326452, 0.01792596, -0.0052536954, 0.00852461, -0.009178793, -0.010399485, -0.029674275, 0.015740855, 0.001800689, 0.01521481, 0.033181235, -0.02533104, 0.0026993474, -5.9601455E-4, -0.0016497886, -0.02740824, -0.012523893, -0.002724638, -0.004127422, -4.8557905E-4, -0.019342232, -0.025695225, 0.031373803, -0.02525011, 0.0011979303, -0.014783184, -0.0026268477, 0.017062709, 0.025938014, 0.0067576417, -0.01833061, -0.035744015, 0.019962694, 0.008288564, 0.02206687, -0.01087832, 0.04270398, -0.015403647, 0.0055538104, 0.016671548, -0.02396872, -0.0010065649, 0.0012442963, -0.007155547, 0.01350854, -0.0042387005, -0.017238056, -0.020987805, -0.010662506, 0.0057392744, 0.008909027, 0.003648587, 0.006062994, 1.0896023E-4, -0.00967786, 0.0046231174, -0.012139476, -0.01935572, 0.017791077, 0.030564504, 0.005047999, 0.013353424, 0.015174345, 0.03960167, 0.0011928722, -3.63552E-4, 0.019315256, 0.019220838, 0.019207349, -0.023145935, 0.0031023107, -0.0029775437, -0.032533795, 0.00872019, -0.0020822573, 0.029215673, 0.0012560986, -0.0050783474, -0.0029134743, -0.014000863, -0.0022188264, -0.093015365, -0.016118526, -0.011748316, 0.0388733, -0.052874163, 0.015632948, -0.015417134, 0.017103173, -0.014054816, 0.023172911, 0.007499499, -0.023955233, 0.0011911861, -0.009070886, 0.028945906, -0.006197877, -0.024090117, -0.0061304355, 0.0038778882, 0.031104036, -0.004201608, -0.004953581, 0.0062484583, -0.023537096, -0.027556611, -0.0035271922, -0.03145473, 0.023860816, 0.005297533, 0.005142417, 0.02398221, -0.026625918, 0.013785049, -0.036364477, -0.043243513, -0.0032793446, -0.023267329, -0.014904579, 0.015147368, -0.05681275, 0.024359882, -0.0086325165, 0.006275435, -0.022417566, -0.008558331, -0.008538098, -0.036715172, 0.02071804, -0.014459465, -0.01537667, -0.0146078365, -0.010021812, -0.029296603, 0.01752131, 0.03283054, 0.021203618, 0.01959851, 0.0024346395, 0.006646363, -0.009522744, -0.009738558, -0.0034142276, -0.029296603, 0.02700359, 0.023550583, 0.0127262175, -0.0146078365, -0.0047647445, 0.0067846184, -0.008699958, -0.028676141, 0.019220838, -0.025857085, -0.005968576, -0.016078062, 0.012692497, -0.020003159, -0.015336205, 0.025344528, -0.030456597, 0.009145072, -0.037038893, 0.006818339, -0.026828242, 0.018263167, 0.011552735, 0.025870573, 1.5026817E-4, 0.0022576053, -0.014729232, 0.007364616, 0.02278175, 0.0020013275, 6.305784E-4, -0.008463913, 0.027947772, 0.014729232, 0.030618457, 0.017426893, 0.0019507464, -0.020380832, -0.0061810166, -0.07132617, 0.0072432207, -0.008726935, -0.0208799, 4.999104E-4, 7.78739E-5, 0.005014278, -0.0018883629, 9.2900713E-4, 0.011674129, -0.0126857525, 0.013245517, -0.017979912, 0.006066366, -0.014837137, -0.0027954516, 0.009279955, -0.015403647, 0.0015992074, -0.0021749896, 0.0066632237, 0.0062214816, 0.042838864, 0.005968576, 0.01847898, 0.014445976, -0.001489615, 0.013602957, -0.009367629, -0.0071015935, 0.023267329, -0.030699387, -0.013946909, 0.010547856, -0.004700675, -0.021459896, -0.008315541, 0.006336132, 0.023145935, 0.012874589, -0.01537667, -0.027394751, -0.021527339, -0.038198885, -0.0083627505, 0.027529635, -0.028055679, 0.012132732, 0.022646867, 0.0074792663, 0.041624915, 0.011100877, 9.172049E-4, -0.0029219044, 0.013596213, -0.015187833, 0.05241556, 0.018897118, -0.005712298, -0.015093415, 0.009070886, 0.002244117, 0.019544557, -0.023779886, 0.007964845, -0.001491301, -6.16247E-4, -0.0077018235, -8.295309E-4, -0.034637973, 0.012483428, -0.012510405, 8.038188E-4, 0.024238488, 0.013049937, 0.0221478, -0.006848688, -0.0057325303, -0.012719474, 0.016280387, 0.025722202, -0.03606773, -0.028028702, 0.020178508, -0.003601378, 0.012813891, 0.006589038, 0.012807148, -0.0073511275, 0.018748747, -0.018141773, 7.5408065E-4, 0.013555748, 0.0071757794, 0.002849405, 0.016442247, -0.005482997, -0.0019558044, -0.0012780171, 0.015552018, -0.015997132, 0.0023975465, -0.020043625, -0.025546852, -0.018937582, -0.003168066, -0.019989671, -0.033801697, -0.00466021, 0.027974749, 0.020771993, 0.0034799832, -0.019558046, 0.0053953226, -0.035420295, 0.023199888, -0.011903431, -0.01039274, -0.01872177, 0.047020238, 0.011471805, -0.0064912476, 0.024656625, -0.0050682314, 0.04677745, 0.016388293, 0.014419001, -0.017885495, 9.8633245E-5, -0.00923949, -0.0070611285, 5.218289E-4, -0.023159424, 0.01350854, 0.003911609, -0.0045320713, 0.0033720767, 0.025991967, -0.01031181, 0.058377393, 0.01625341, -2.4047123E-4, 0.020906875, -0.014985509, 0.0038340513, 0.007189268, 0.010001579, -7.296331E-4, -0.0065991543, 0.023091981, -0.022323148, 0.0016615908, -0.023199888, -0.0024430696, 0.011626921, 0.010891808, -2.8504586E-5, -0.011330178, -0.001539353, 0.008861817, -0.0014592662, 0.01936921, 0.005361602, -0.01855991, -0.013083658, 0.034772854, -0.01641527, -0.013879468, -0.023429189, 3.795694E-4, -0.016779454, 0.003786842, 0.010095998, 0.032857515, 0.008713447, 0.0051019522, -0.0028662651, 0.015727365, 0.010230881, 0.0077018235, 0.016914336, -0.02078548, -0.0028848117, 0.0069734547, 0.0058977623, 0.0057426468, -0.012705985, -0.022485008 ], + "id" : "936430fb-a1bd-41b8-a94f-db909bd9cbf3", + "metadata" : { + "source" : "movies.csv" + } + }, + "04b69ded-7ecc-4693-bfee-6c8a89d1cc34" : { + "text" : "12,9361,Georgie Henley-Skandar Keynes-William Moseley-Anna Popplewell-Tilda Swinton-James McAvoy-Jim Broadbent-Kiran Shah-James Cosmo-Judy McIntosh-Elizabeth Hawthorne-Patrick Kake-Shane Rangi-Brandon Cook-Cassie Cook-Morris Lupton-Shelly Edwards-Susan Haldane-Margaret Bremner-Jaxin Hall-Terry Murdoch-Katrina Browne-Lee Tuson-Elizabeth Kirk-Felicity Hamill-Kate O'Rourke-Sonya Hitchcock-Lucy Tanner-Tiggy Mathias-Gregory Cooper-Richard King-Russell Pickering-Ben Barrington-Charles Williams-Vanessa Cater-Allison Sarofim-Alina Phelan-Stephen Ure-Sam La Hood-Ajay Ratilal Navi-Bhoja 'BK' Kannada-Zakiuddin Mohd. Farooque-M. Ramaswami-Praphaphorn 'Fon' Chansantor-Nikhom Nusungnern-Doungdieo Savangvong-Rachael Henley-Mark Wells-Noah Huntley-Sophie Winkleman-Liam Neeson-Ray Winstone-Dawn French-Rupert Everett-Cameron Rhodes-Philip Steuer-Jim May-Sim Evan-Jones-Douglas Gresham-Michael Madsen,saving the world-sibling relationship-witch-based on novel or book-self sacrifice-winter-cupboard-beaver-lion-fairy tale-epic-surrealism-battle-based on children's book-fantasy world-duringcreditsstinger-1940s-high fantasy-based on young adult novel-faun-good versus evil,/iREd0rNCjYdf5Ar0vfaW32yrkm.jpg,/9iRRfMZbnpgHDdKi2lczGGYZXDo.jpg,2454-10140-24257-21-481-1593-32657-953-425-809-950-118-9738-8355-285-810-674-675-767-808-38757\r\n62211,Monsters University,Animation-Family,en,A look at the relationship between Mike and Sulley during their days at Monsters University ��� when they weren't necessarily the best of friends.,60.555,Pixar-Walt Disney Pictures,6/19/13,200000000,743559607,104,Released,School never looked this scary.", + "embedding" : [ 0.010064515, -0.028790612, -0.0044663404, -0.041965976, -0.029956333, 0.029956333, -0.009854414, 0.0030244377, -0.019247962, -0.04050205, 0.019451285, 0.026242292, 0.024398824, 0.007346757, 0.005831997, 0.006953665, 0.014449526, -0.028139977, 0.023843072, -0.046683084, -2.8168783E-4, 0.0021298141, -0.030850958, -0.0027279241, 0.0011555555, 0.015601693, 0.0331824, -0.0108778095, -0.016848743, -0.012714499, 0.0012868686, -0.02145741, 0.0024720754, -0.018272009, -0.021443855, -0.011447115, 0.006140371, -0.025483217, 0.032857083, 0.008824241, -0.0018841315, 0.005259302, -0.0255781, -0.00499837, -0.016767414, 0.006038709, 1.5376342E-4, -0.017770477, -0.008580253, 0.026621828, 0.017634928, 0.037845287, -0.008729357, -0.02767911, -0.0165912, 0.009244444, -0.014829063, 0.0104440525, -0.011216681, 0.008770022, 0.026445614, -0.018515997, -0.036733784, -0.02164718, -0.017933136, -0.0054490706, -0.027652001, -0.022989115, -0.00103695, 0.0016714889, 0.025374778, 0.010084847, 0.013975104, -1.4465622E-4, 0.02369397, -0.024398824, -0.02294845, -0.00996963, -0.013920885, 0.0013258388, 0.01364301, -0.0068384483, -0.003717432, -0.005767611, 0.015588137, 0.0011098076, -0.0065876828, 0.029929224, -0.026513388, 0.015100162, 0.019844377, 0.046439096, 0.0018095794, -0.002400912, 0.012219745, 0.029088821, -0.017770477, 0.024059951, -0.030118993, -0.042182855, -0.011968979, 0.0082956, -0.008071944, -0.013168587, -0.015398369, -0.002502574, -0.008993678, -6.061583E-4, 0.013256694, 0.00869547, -1.3321928E-4, 0.0020434016, 0.013548125, -0.035947602, -0.006706288, -0.022108046, 0.016076114, -0.013121146, -0.016835188, -0.008986901, 0.04546314, 0.023138218, 0.00555751, -0.032314885, 0.035947602, 0.031013617, -0.01321603, -0.01741805, -0.0017214726, -0.0026550665, 0.02648628, -0.0133922435, 0.038739912, 0.021674288, -0.032152228, 0.035134308, -0.026133852, -0.0038326487, -0.021145647, -0.023856629, 0.015100162, 0.037953727, -0.017987356, -0.016360767, -0.028926162, 0.004483284, 0.016035449, -0.0034056692, 0.023151774, -0.001882437, 0.024005732, 0.02018325, 0.00800417, 0.017160507, 0.0279231, 0.0019552947, 0.0021569238, -0.02204027, -0.00805839, -0.023761744, -0.001676572, 3.8038444E-4, 0.0014368197, 0.0027245353, -0.0012148581, 0.021348972, 0.023612639, -0.019979926, 0.003424307, 0.0013241445, -0.020169694, 0.03762841, -0.027150469, 0.013046593, 0.008776799, 0.017485823, 0.005831997, -0.016035449, -0.026581163, -0.018665101, -0.0032718144, 0.020739, 0.036354247, 0.042725053, -0.009908633, 0.006889279, 0.03329084, -0.022555357, 0.019586833, -0.0056083407, 0.0028465295, 0.020400127, 0.008065167, -0.0035479956, -0.63849014, -0.015249265, -0.0033514495, -0.0049102632, 0.0077534043, 0.029793676, 0.011819875, -0.01148778, -0.020942325, -0.0056625605, -0.022216486, 0.013975104, 0.029197259, -0.0041410225, -0.029929224, -0.006258976, 0.008709025, -0.02297556, 0.025008794, 0.0064182463, -0.014815508, 0.025442552, 0.021620069, -0.0028550013, 0.0072586504, 0.0047882693, 4.2930918E-4, -0.023910848, 0.003100684, 0.0021043986, -0.016482761, 0.0059302696, 0.007373867, 0.005618507, 0.037736848, 0.007705962, -0.02443949, 0.060509086, 0.031420264, 0.024141282, -0.044812508, -0.012904267, 0.012822937, 0.012741609, -0.027950209, 0.031176275, -2.859237E-4, -0.0010886281, -0.0089530125, -0.003403975, -6.146301E-4, -5.8836746E-4, -0.0037987614, -0.008092277, -0.0064013028, -0.020874549, 0.021023653, -0.04695418, 0.015642358, 0.009346105, -0.020359464, 0.0118063195, 0.010464384, 0.023558421, 0.002124731, 0.030146103, 0.0043274025, -0.010362723, 0.015615247, -0.021755619, 0.023138218, 0.021281196, -0.016713195, -0.0014724013, -0.0017807753, 0.010810034, 0.03730309, -0.007109546, 0.008702247, 0.014801953, -0.005235581, -0.0056117293, 0.0067605074, 0.02164718, 0.023626195, -0.0116843255, -0.031094946, 0.008437927, 0.015601693, -0.0072383177, 0.003788595, -0.0042935153, 0.0100712925, 0.008485368, -0.01076937, 0.0037716515, -0.017485823, 0.01310759, 0.027746884, -0.06495509, -0.0076381876, -0.022853564, 0.024100617, -0.012978819, 0.021687843, 0.012972042, -0.001970544, -0.0046493313, 0.020752555, -0.009468099, -0.009983186, 0.0021738675, -0.0093257725, -0.020413684, -0.011996089, -0.03619159, 0.010918474, 0.010172954, 0.0037004882, -0.0059709344, 0.0072518727, 0.020278133, 0.007102769, -0.0014774844, 0.0077872914, 0.015452589, -0.014449526, 0.0016655587, 0.0033921143, 0.016767414, 0.009562983, -0.002302639, 0.022514693, -0.017404495, 0.01932929, 0.0049949815, 0.01324314, -0.0032633427, 0.006506353, -0.0067096767, -0.014693514, -0.011501335, -0.014923948, -0.013209253, -0.011935092, -0.009928966, -0.019817267, 0.00216709, 0.0037208206, -0.010389833, -0.0011470836, 0.012890712, 0.010843921, 0.0041715214, 0.0108168125, 0.0061030947, -0.020115474, -0.008397262, 0.010803257, -0.0073060924, 0.02090166, 0.0037106546, -0.016835188, -0.021159202, 0.013778558, -0.002826197, -0.021403192, 0.0069231666, -0.0028888886, -0.009861192, 0.013670119, -0.017174061, -0.0052423584, 0.017824696, -0.0118063195, 0.018949753, -0.003754708, 0.019830823, -0.005015314, -0.010843921, 0.0025432385, 6.48941E-4, -0.019573279, -0.016360767, 0.032423325, 0.015669467, 0.0077737365, -0.018570216, 0.003951254, -0.0023704136, -0.013012706, -0.0046018893, -0.012911044, -5.861436E-5, -0.004151189, 0.021037208, 0.0021552294, 3.7953726E-4, 0.01287038, -0.013859888, 0.047604818, 0.0128026055, 0.011304788, 0.0019264905, 0.014530855, -0.028383965, 0.00874969, -0.027326683, 0.0047001624, 0.0036632123, 0.01680808, -0.013412576, -0.009779862, -9.768001E-4, 0.0027567283, 0.03049853, -0.007909286, 0.0018129682, -0.02095588, -9.895079E-4, 0.0026838707, -0.012328183, 0.021782728, 0.025415441, -0.015872791, 0.0030108828, 0.007644965, -0.0076381876, -0.009461322, -0.0031277938, -0.00794995, -0.012050308, 0.013100813, 0.008417594, -0.007116324, -0.018204235, 0.029739456, -0.0072383177, 0.035242748, -0.0147883985, -0.010552491, 0.031203385, 0.014530855, -0.0036259363, 0.010206842, -0.008654805, 0.008512478, 0.019153077, -0.0066452906, 0.048309673, 0.004462952, 0.025442552, -0.0021941997, 0.015100162, 0.003153209, -0.01531704, 0.01388022, 0.014544411, 0.01858377, 0.010511827, 0.0048221564, -0.03616448, 0.019166632, 0.008302378, -0.004049527, 0.0099154115, -0.012822937, 0.010328836, -0.008810687, -0.03887546, -0.026310066, 0.0021755619, 3.8377318E-4, 0.009637536, -0.018150015, -0.013026261, 0.016414987, 0.0072518727, 0.028926162, 0.03193535, -0.008898794, -0.037031993, 0.016455652, 0.029034602, -0.021064319, -0.020440793, -0.0010810035, -0.020007037, -0.016225219, -0.024805471, -0.0035479956, 0.036788005, -0.021769173, -3.6047568E-4, -0.018868424, -0.0056998366, 0.015425479, -0.00999674, 0.014557965, 0.018448222, 0.0034158353, 0.025835644, -0.010552491, -0.010193286, 0.017729811, -0.024697032, -0.008919125, 0.0011970673, -0.016997848, 4.4519381E-4, 0.0047476045, 0.0053135217, -0.050885104, 0.018177124, -0.024737697, 0.003703877, -0.012063863, 0.004347735, 0.025279893, -0.013019484, -0.021877613, -0.029847896, -0.03472766, -0.0035412183, 0.08257647, 0.049421173, 0.016347213, 0.0055744536, 0.0023195827, -0.0043917885, -0.022270704, -0.013127923, -0.010938806, -0.004988204, 0.022609577, -0.009779862, 0.024697032, 8.836102E-4, 0.0056286734, -0.0036903222, -0.029522577, -0.0031142388, 0.003592049, -0.016794523, -0.013195697, -0.025090124, 0.020373018, 0.022555357, -0.0042935153, -0.0168623, 0.022718016, 0.017851807, -0.0017824697, -0.0035005535, -0.004330791, 0.0066486797, -7.5822737E-4, 0.025944084, 0.010898141, -0.0056354506, 0.01999348, 0.012341739, 0.022080936, 0.0056422283, 0.0036022153, 0.010857477, 0.01071515, -0.006702899, 0.018529551, -0.02369397, 0.0032125118, 0.034022804, 0.027895989, -0.03057986, 0.018299118, 0.016821634, -0.007163766, -0.0055608987, 0.010044183, -0.008465037, -0.024547929, -0.014530855, -0.023016224, 0.017987356, -0.001237732, -0.029631017, 0.014747734, -0.017174061, 0.0010106874, -0.014679959, -0.005594786, -0.008397262, -0.016279439, 0.013100813, 0.017567154, -0.030932287, -0.0038326487, -0.010206842, 0.013195697, 0.008688692, 0.028899051, -0.013209253, -0.0029990221, 0.020400127, -0.032314885, -0.018787095, 0.010091625, -0.015913455, -0.006889279, 0.015872791, -5.904854E-4, 0.034049913, -2.880417E-4, 0.0027821437, 8.1244693E-4, 0.0077940687, -0.017919581, -0.018814204, 0.03288419, 0.007495861, 0.005567676, 0.017865362, -0.0023365263, 2.5796675E-4, 0.014327532, -0.020969434, -0.0033090906, -0.022623133, -0.01358879, -0.00999674, -0.004791658, -0.0050593675, -0.022324923, -0.026581163, -0.018732876, -0.012172302, -0.011365785, 2.9270118E-4, 0.0055507324, -0.002863473, 0.011955424, 0.02220293, -0.0095426515, 0.01584568, 0.0087361345, -0.0013224501, 0.0050187027, 0.023761744, -0.026784487, 0.028004428, -0.015886346, -0.03350772, -0.005672727, 0.018421112, -0.0010166176, 0.010464384, -0.031664252, -0.012809383, -0.012877157, -0.014151318, -3.096448E-4, -0.001438514, -0.01946484, 0.019288626, -0.023111109, 0.0037072657, -0.001840078, -0.011420005, 0.0029024435, -0.030010553, 0.003241316, -0.02223004, 0.03201668, 0.03860436, -0.0035717168, 0.01114213, -0.01810935, -0.013988659, 0.0030244377, -0.03055275, -0.021470966, 0.0062047564, 0.029983444, 0.014517301, 0.034754768, 0.013378689, 0.032748643, 0.006868947, 0.0038767022, 0.015411924, -0.0094206575, 0.0015062885, -0.028302636, 0.005581231, 0.016523426, 0.014747734, 0.008966568, 0.0057608336, 0.004717106, 0.034131244, 0.007902508, 0.013066926, 0.0053779073, -0.020291688, -0.033968586, 0.011250569, -0.036544017, -0.0058692726, -0.017553598, -4.049527E-4, 0.035486735, -0.0019095469, -0.0073670894, -0.007821179, 0.027326683, 0.005049201, 0.021918276, -0.03220645, 0.014381751, -0.017092733, -0.0011987616, -0.032179337, -0.017485823, -0.0036530462, -0.0118063195, 0.027082695, 0.009928966, -0.0120570855, -0.008878461, 0.0069096116, -0.009610426, -0.006472466, 0.024805471, -0.021714954, -0.004002085, -0.030742519, -0.008492147, -0.022514693, -0.006319973, 0.0063911364, -0.0103491675, -1.872271E-4, -0.017174061, -0.031149166, 0.016428541, 0.010274616, 0.044975165, 0.008356597, 0.04459563, 0.021335416, 0.003788595, -0.0142597575, 0.008580253, -0.006086151, -0.007102769, 0.035730723, 0.019952817, -0.02300267, -0.0042325184, 0.0023517755, -0.007570413, -0.034565, -0.046547536, 0.020562787, 0.023463536, 0.012890712, -0.02015614, -0.0070214393, -0.03339928, 0.018068684, -0.006791006, 0.0016223524, 0.002265363, -0.031555813, -0.0045137824, -0.008336265, -0.0069943294, 0.01353457, -8.8615174E-4, -0.02159296, 0.016916519, -0.0122739645, 0.011006581, 0.004978038, -0.018976863, 0.030010553, -0.02914304, 0.014246202, 0.0023568587, -0.0037750404, 0.020427238, -0.0035242746, -0.0039173667, 0.030986506, -0.0214303, 0.010606711, 0.001975627, 0.01034239, 8.7598554E-4, 0.011121797, -0.01528993, -0.0038767022, -0.023978623, -0.0070824367, 0.02137608, 0.0076517425, 0.014151318, 0.016360767, -0.010972694, -0.009176669, 0.006902834, -0.007543303, -0.0098205265, -0.03887546, 0.011426782, -0.012179079, 0.0012885629, -0.013717561, -0.0041206903, -0.00866836, -0.00996963, 0.009366438, -0.005815053, -0.0064792433, -0.021308307, -0.018068684, -0.047631927, -0.033589046, -0.018556662, -0.004161355, 0.0041478, -0.014029324, 0.005445682, 0.010898141, -0.0022568912, -0.009630758, -0.012653502, -0.024236165, -0.003741153, 0.031338934, 0.0027211467, -0.010064515, -0.0029617462, 0.024859691, 0.003768263, -0.012246855, -8.200716E-4, 0.0060692076, 0.02933281, -0.028465295, 0.015140826, -0.019573279, -0.020115474, -0.0069604423, 0.0061640916, 0.0255781, 0.028655063, 0.012348516, -0.028058648, -0.0155339185, 2.0808893E-5, 0.035839163, -0.005652394, -0.012992374, 0.030173212, 0.021050764, 0.03339928, 0.02621518, -0.008946235, -0.033941474, -0.0012580644, -0.008587031, -0.026662493, 0.0052084713, 0.0010056043, 0.0140428785, 0.0072179856, -0.0074009765, -0.037330203, -0.0041782986, -0.018217789, -0.030769628, -0.004991593, 0.02084744, 0.033995695, 0.0066656233, -0.004124079, 0.010654153, 0.0043172366, 1.9474582E-4, -0.023449982, -0.0040393607, 0.015032386, 0.011006581, 0.016076114, 0.019559724, -0.020007037, -0.0024822415, 0.024059951, 0.025307003, 0.013005929, 0.025537437, -0.011189572, -0.0077737365, -0.01273483, 0.0049678716, -1.9008632E-5, 0.0061674807, 0.028655063, -0.022663796, -0.0013190614, 0.0055608987, 0.014652849, -0.005072922, 0.0059167147, 0.014801953, -0.016347213, 0.010972694, -0.016049005, -0.004510394, -0.0032159006, -0.017662037, 0.024737697, 0.008092277, -0.0013597262, 0.028519515, 0.009718865, -0.0031447373, 0.013947994, -0.006655457, 0.011237014, -0.0124908425, 0.0021975886, -0.009285108, 0.019830823, -0.021335416, 0.0022128378, -0.029902115, 0.0023890515, -0.013609122, -1.0129112E-4, -6.811338E-4, 0.035215635, 0.015967675, -0.06338272, -0.004337569, -0.011494557, 0.0038597584, -0.026391394, -1.4042032E-4, -0.021281196, -0.0120570855, -0.011135352, 0.007956727, -0.019681718, -0.02148452, 0.0025246006, -0.003414141, -0.029441249, 0.022568913, 0.17892471, -0.010647376, 0.02422261, 0.05137308, -0.0014334309, 0.0016825022, 0.023205994, 0.011020135, -0.0047611594, 0.01949195, -0.005781166, 0.01730961, -0.008444704, 0.0039580315, 0.018963309, -0.017634928, -0.028709283, -0.03472766, -0.010213619, -0.02933281, -0.0026770933, -3.4480283E-4, -0.0060454863, -0.01584568, 0.0038902569, -0.0051068095, -0.020020591, 0.0065910714, 0.020508567, 0.007197653, 0.0013512543, -0.0020806775, -0.0044019544, 0.0061505367, -0.028492404, -0.007536526, -0.008071944, -0.0030651023, 0.023409316, 0.0058082757, -0.0045273374, -0.012782273, -0.0053270767, -0.004764548, 0.0012199412, 0.01739094, -0.021945387, -7.590745E-4, -0.019017529, 0.012307852, -0.046167996, 0.0020264578, 0.010640598, 0.025198564, -0.013439686, -0.013737894, 0.009244444, 0.013290581, -6.828282E-4, 0.0015156075, 0.016848743, 0.03201668, -0.017350275, 0.020495012, -0.0051068095, 0.013399021, -0.03890257, -0.0056252843, 6.2860857E-4, -0.038333263, -0.026784487, -0.04028517, -0.012314629, 0.0017053762, 0.008648028, -0.010904919, 0.0020705112, 0.006953665, 0.007970283, 0.019424176, -0.043429907, -0.0061098724, -0.0103695, -0.009285108, -0.020278133, -0.014856173, 0.01595412, -0.02353131, 2.8761808E-4, -0.022474028, -0.013378689, -0.024344604, -0.012965264, -0.0020264578, -0.010152622, 0.0031837076, 0.012456955, 0.01874643, -0.010525382, -0.0030905178, -0.039688755, 0.024900356, 0.01531704, -3.6238183E-4, -0.020657672, -0.02164718, 0.002712675, -0.0036293252, 0.0304172, -0.016238773, -0.027082695, -0.029088821, 0.016848743, -0.009834082, 0.012755163, 0.02922437, 0.004496839, -0.01954617, 0.043484125, -0.016320102, -0.008505701, -0.01584568, 0.015764352, 0.0025940693, -0.002124731, -0.024453044, -0.031067837, 0.01531704, -0.008383707, -0.035324074, 0.022799347, -0.01943773, 0.003680156, 0.0017672204, -0.003974975, 0.003554773, 0.029929224, -0.0022009772, 0.0025618766, -0.008024503, -0.00499837, -0.022528248, 0.0020264578, 0.0052796346, 0.006682567, -0.021769173, 0.004927207, -0.0012504398, -0.01675386, -0.03171847, -0.028492404, -0.0047950465, 0.01611678, 0.0027855325, 0.037980836, -6.1293575E-4, -4.816226E-4, -0.04136956, -0.009644313, 0.049014527, -0.03320951, 0.017052067, 0.006926555, -0.00973242, -0.019261517, -0.006655457, -0.17328587, 0.017743368, 0.0017977189, -0.007916063, 0.0099154115, 0.021850502, 0.021728508, 0.0047103288, 0.008512478, -0.038089275, 0.014910392, -0.003193874, -0.036896445, 0.0015808404, 0.0059573795, 0.017865362, -0.007956727, 0.028899051, 0.013087258, -0.0021450634, 0.04879765, 0.0029397195, -0.012477288, -0.0082956, 0.020874549, 0.011372563, 0.0127077205, -6.1717164E-4, 0.009366438, -0.0082956, -0.042182855, 7.3027035E-4, 0.009800195, 3.8546754E-5, -0.0010877809, 0.005815053, -0.022324923, -0.024656367, -0.0042596282, -0.013338024, 0.05145441, 0.012016421, 0.022541802, 0.003791984, 0.012999151, -0.0096782, 0.029658126, -0.019017529, 0.02358553, -0.017065622, -0.010410165, -0.035296965, 0.031176275, -0.013629454, -0.0056490055, 0.032938413, 0.013609122, 7.696643E-4, 0.0095426515, -0.006496187, -0.024344604, -0.012334961, 0.0045646136, -0.009427435, -0.0025974582, -0.014625739, -0.00843115, 0.0028092535, -0.028546624, 0.014829063, -0.01816357, 0.0070688818, 0.024344604, 0.009318995, -0.010694818, -0.031230494, -0.036950663, 0.023138218, -0.00380215, 0.009501986, -0.017675593, 0.046764415, -0.010254283, 0.022013161, 5.2059296E-4, -0.012348516, 0.0058353855, -0.0068384483, -0.0021399802, -0.008627695, 0.008654805, -0.017851807, -0.03491743, -0.0021179535, 0.00662157, 0.013005929, -0.012423068, -0.003815705, 0.019830823, -0.0037716515, 0.0030193545, -0.010891364, -0.012680612, 0.023327988, 0.039282106, -0.005062756, 0.00803128, 0.021118538, 0.013819223, 0.014002214, 0.0019264905, -0.011040468, 0.02438527, 0.002675399, -0.025428997, 0.018244898, -0.01241629, -0.018244898, -0.0030803515, 0.01310759, 0.048119903, 0.0017028346, 0.011874095, -0.008119387, -0.016103225, -0.0067232316, -0.08555854, -0.0083633745, 0.005754056, 0.046439096, -0.03602893, 0.032477546, -0.0073128697, 0.013432908, -0.025144344, 0.033887256, 0.009020788, -0.023463536, 0.020806774, -0.0027753662, 0.0015020526, 0.0020840662, -0.021714954, -0.013385466, -0.004605278, 0.028899051, 0.002980384, -0.02084744, 0.006973997, -0.0031870964, -0.02007481, 0.018407557, -0.028139977, 0.026974255, 0.017906025, 0.023382207, 0.014896838, -0.026093187, 0.011799542, -0.038062166, -0.03478188, -0.030688299, -0.011582664, -0.02900749, -0.010233951, -0.0453547, 0.009596871, 0.01941062, 0.009312218, -0.017241836, -0.015520363, -0.0072044306, -0.04736083, 0.031528704, -0.0062454212, -0.02757067, -0.002568654, -0.0040664705, -0.026391394, -0.0049136523, 0.018502442, 0.023097554, 0.026798042, 5.303355E-4, 0.0025110457, -0.020061256, 0.003954643, -1.4688008E-4, -0.021037208, 0.02164718, 6.0276955E-4, 0.017377384, -0.001466471, -0.009237666, 0.011365785, -0.010294949, -0.025198564, 0.025035905, -0.024547929, -0.0029532744, -0.0025347667, 0.013290581, -0.031664252, -0.01114213, 0.020589897, -0.02698781, 0.0020332353, -0.03860436, 0.00420202, -0.013073703, 0.0027906154, 0.022446917, 0.017607817, 0.009176669, -0.021267641, -0.025889864, 0.002433105, 0.028031537, 7.142798E-5, -0.0015537307, 0.0056422283, 0.020603452, 0.0031260992, 0.003974975, 0.007834733, 0.006875724, -0.0073535345, 0.009176669, -0.07460618, 0.036652457, -0.0021145649, -0.002121342, -0.018231343, -0.014639295, 0.014435971, -8.9377636E-4, 1.9696968E-4, 0.015994785, -0.015195046, 0.0048323227, -0.008132941, 0.0036361027, 0.003358227, -2.0152327E-4, 0.0077330717, -0.01661831, -0.0014088626, 0.014205538, -0.003400586, 0.010389833, 0.039282106, 0.018394003, 0.012294296, 0.022501137, 0.0053541865, 0.0021416745, -0.01661831, -0.007841511, 0.032721534, -0.018949753, 0.004049527, 0.015113716, -0.004903486, -0.038550142, -0.0025330724, -2.1687844E-4, 0.016442096, 0.004581557, -0.011948646, -0.034158353, -0.017187616, -0.010843921, -0.016089668, 0.012694166, -0.011501335, 0.0108168125, 0.007882176, 0.00638097, 0.028709283, 0.023463536, -0.004730661, -0.02012903, 0.01794669, -0.01007807, 0.045083605, 0.007848289, 0.0019790158, -0.021823393, 0.006492798, -0.0015884651, 0.012633169, -0.02701492, 0.0015003582, -0.0050322576, 0.010972694, -0.0029176928, 0.003764874, -0.039580315, -0.0032074288, -0.008139719, 0.021891167, 0.034158353, 0.012768718, 0.017797587, -0.004408732, -0.0049610944, -9.708699E-4, 0.023151774, 0.024114171, -0.004029195, -0.034944538, 0.017404495, 0.008770022, 0.011880872, 0.010227174, 0.013859888, 0.012423068, 0.02145741, -0.005638839, 0.008763244, 0.010965916, -2.2026716E-4, 0.014490191, 7.7559456E-4, -0.0031718472, -0.022135155, -0.005987878, 0.015547473, -0.0072315405, -0.0053948513, -0.011792765, -0.027502896, -0.022026716, 0.005604952, -0.030959398, -0.015683021, 0.012965264, 0.01528993, 0.019017529, 0.011148907, -0.028519515, 0.0052559134, -0.045137826, 0.010200064, 4.422287E-4, -0.012606059, -0.016184554, 0.03879413, 0.005543955, 0.003592049, 0.0348361, 8.9885946E-4, 0.041749097, 0.008648028, 0.018421112, -0.036977775, 0.0018434668, -0.0055642873, 9.217334E-4, -6.472466E-4, -0.017878916, 0.0025381555, -0.0044527855, -0.0134532405, 0.013046593, 0.03223356, -0.012382403, 0.06462977, 0.0068994453, -0.00348361, 0.015371259, -0.01863799, 0.01993926, 0.024127726, 0.027543562, -0.023273768, 0.0025059625, -0.0018671878, -0.019139523, 0.0048831534, -0.029576797, 0.014693514, -0.0057371124, 0.008715802, -1.2411208E-4, -0.01010518, -0.029685237, -0.0039105895, 0.004757771, 0.025822088, 0.010864254, 3.8334957E-4, -0.01321603, 0.012599282, -0.007522971, 0.0051881387, -0.03909234, 0.005598175, -0.01396155, -0.008132941, -0.002307722, 0.031094946, -0.0068113385, -0.0049543167, 0.004025806, 0.016943628, 0.002619485, -0.011284457, -0.0027177578, -0.022067381, -0.004964483, 0.012077418, -0.012219745, -0.008044834, -0.0142597575, -0.020928768 ], + "id" : "04b69ded-7ecc-4693-bfee-6c8a89d1cc34", + "metadata" : { + "source" : "movies.csv" + } + }, + "8d768aa7-07f3-4c9f-8212-041dfbfeedee" : { + "text" : "8,13813,Brad Pitt-Mireille Enos-Daniella Kertesz-James Badge Dale-Ludi Boeken-Matthew Fox-Fana Mokoena-David Morse-Elyes Gabel-Sterling Jerins-Peter Capaldi-Pierfrancesco Favino-Ruth Negga-Moritz Bleibtreu-Abigail Hargrove-Fabrizio Guido-David Andrews-John Gordon Sinclair-Gr��gory Fitoussi-Jane Perry-Lucy Russell-Mark Holden-Tim Berrington-Konstantin Khabenskiy-Michiel Huisman-Ann Ogbomo-Jonathan Howard-Mike Noble-Ernesto Cantu-Vicky Araico-Graham Hornsby-Nick Bartlett-Kevin Kiely Jnr-Ruari Cannon-Ryen Perkins-Gangnes-Khalid Laith-Noa Bodner-Troy Glasgow-Julia Levy-Boeken-Lee Nicholas Harris-Assaf Ben-Shimon-Gil Cohen-Alloro-Yaniv Rokah-Shaul Ezer-Linoy Aynesaz-Efrat Avni-Maisam Masri-Renu Setna-Ori Pfeffer-Imran Mraish-Yousef Hayyan Jubeh-Josh Wingate-Richard Thomson-Ewan Ross-Song Xuan Ke-Christian Wong-Denis Ischenko-Nikola ېuriۍko-Elen Rhys-Paula Videniece-Doron Davidson-Lee Colley-Michael Jenn-Sarah Amankwah-Anna Biczik-G��bor Czap-Katalin Dombi-Eniko Fulop-Istvan Karikas-Andrea Meszaros-Gergely M��sz��ros-Peter Moln��r-Lambert T�_th-Roland Tzafet��s-Jeno Radi-Adam Zambryzcki-Maddox Jolie-Pitt-Alma Rix-Darren Kendrick-Ryan Hartwig-Taylor Murphy,philadelphia pennsylvania-new jersey-based on novel or book-jerusalem israel-dystopia-apocalypse-zombie-epidemic-nuclear weapons-multiple perspectives-zombie apocalypse-virus,/1SWBSYJsnyhdNRfLI1T6RsCxAQ4.jpg,/kg2FOT2Oe5PSCgs3L4vLel6B7ck.jpg,68726-6479-49521-68724-49047-75612-101299-54138-76170-68721-127585-87827-75656-82700-61791-70981-10528-19908-1930-18785-57158\r\n345940,The Meg,Action-Science Fiction-Horror,en,A deep sea submersible pilot revisits his past fears in the Mariana Trench and accidentally unleashes the seventy foot ancestor of the Great White Shark believed to be extinct.,58.277,Warner Bros. Pictures-Di Bonaventura Pictures-Gravity Pictures-Maeday Productions-Apelles Entertainment-Flagship Entertainment Group,8/9/18,150000000,530517320,113,Released,Chomp On This,6.211,6282,Jason Statham-Li Bingbing-Rainn Wilson-Cliff Curtis-Ruby Rose-Jessica McNamee-Masi Oka-Winston Chao-Shuya Sophia Cai-Page Kennedy-Robert Taylor-��lafur Darri ��lafsson-Raymond Vinton-Mai Hongmei-Wei Yi-Vithaya Pansringarm-Rob Kipa-Williams-Tawanda Manyimo-Mark Trotter-James Gaylyn-Andrew Grainger-Steven A.", + "embedding" : [ 0.008945669, -0.01825841, -0.010271205, -0.055577345, -0.026782626, 0.051716298, -0.0067432397, -0.0011810866, -0.025178388, -0.040269107, 0.023846053, 0.03393372, 0.014710051, 5.480582E-4, 0.002759834, 0.005696406, 0.010264407, -0.011474384, 0.012133753, -0.025096815, -2.9038585E-4, 0.0045578047, -0.012283301, 0.016640576, -6.037137E-4, 0.012582396, 0.02874034, -0.008945669, -0.025871744, -0.016069576, 0.011372419, -0.026388364, 0.0037250961, -0.024756934, -0.021262957, 0.004139751, 0.009802169, -0.029583246, 0.018652672, 0.0012320688, 0.0063353823, 0.0028668966, -0.007592942, -0.016191933, -0.018829409, 0.006338781, 0.016450241, -0.01782336, -0.011120907, 0.03839296, 0.029664816, 0.024566602, -0.020501625, -0.017633028, -0.015566551, 0.004605388, -0.009373919, 0.0040751738, -0.009469085, 0.0073550255, 0.009693407, -0.024281101, -0.0371422, -0.020759935, -0.021004649, -0.0016067876, -0.009734193, -0.0081503475, -0.004160144, 0.010094467, 0.018992553, 0.0026663668, 0.018475933, 0.008272705, 0.02116779, -0.03939901, -0.027734293, 0.0029603639, 0.0021565452, 0.0049350727, 0.010339181, -0.005478882, -0.0056046383, 0.003674114, 0.013778777, 0.0052953465, -0.020338481, 0.024389863, -0.020120958, 0.009475883, 0.0099993, 0.03994282, -0.014818813, -0.008653372, 0.010053681, 0.023071125, -0.023886839, 0.028441245, -0.0174291, -0.04956825, -0.00957105, -0.0055128704, -0.008802919, -0.009985705, 0.002222822, 0.0054958765, 0.0011691907, -0.019903433, 0.027326435, 0.013975908, 0.007633728, -0.0039664116, 0.018951766, -0.045244962, -0.01431579, -0.0149003845, 0.03254701, -0.024349077, -0.018176837, -0.020556005, 0.031187484, 0.031105913, -0.0022500125, -0.03271015, 0.032302294, 0.03733253, 0.0025762983, -0.021589244, 0.019359624, 0.0070015495, 0.01636867, -0.00451362, 0.033063628, 0.01574329, -0.022989552, 0.05639306, -0.030534912, 0.009557455, -0.028060578, -0.010379967, 0.026089268, 0.04045944, -0.02705453, -0.025463887, -0.027870245, 0.0049418705, 0.013765182, 0.0049010846, 0.024240315, 0.0022636077, 0.020175338, 0.012432848, 0.015566551, 0.021249363, 0.006128055, -0.009768181, -0.006297996, -0.0030164442, 0.0041703405, -0.017959313, -9.831059E-4, -0.011753086, -0.0035211674, -0.009985705, 0.005662418, 0.02425391, 0.010733443, -0.021317339, -0.0063523767, 0.0067908233, -0.0065868944, 0.025654221, -0.028332483, 0.018965362, -0.0046019894, 0.022676863, 0.0025712, -0.0039188284, -0.026972959, -0.014859599, 0.0064781327, 0.0037828758, 0.03545639, 0.030670865, -0.0016535212, 0.028876293, 0.02134453, -0.02511041, 0.01585205, -0.01659979, -6.177338E-4, 0.03039896, 0.003602739, -0.0075725494, -0.63473463, -0.01859829, -0.012888289, -0.0046665664, 0.015009146, 0.017102813, 0.0014351477, -0.0057983706, -0.021738792, 0.0014708352, -0.033308342, 0.01379917, 0.01945479, -0.0152538605, -0.015593742, -0.016640576, 0.012636777, -0.01680372, 0.003623132, 0.011052932, -0.024580196, 0.017293148, 0.021059029, -0.0058153644, 0.012528015, -0.0027190482, -0.0040751738, -0.022758434, 0.0062674065, 0.0053667217, -0.024049982, 0.026728244, 0.0101488475, 0.0047447393, 0.039099913, -0.004115959, -0.0156073375, 0.062103063, 0.012589194, 0.028305292, -0.027475983, -0.007756085, 0.0044320486, -0.0035177688, -0.021643624, 0.023750886, -8.91338E-4, 0.008734942, -0.010060479, -0.0011555955, -0.009360324, 0.014968361, -0.018380767, -0.0020069976, -0.008048383, -0.0020698756, 0.006610686, -0.053238966, 0.0194276, -0.0014708352, -0.0174291, 0.018231219, 0.011528765, 0.0057949717, -0.0019118309, 0.02528715, 0.008503824, -0.0012422652, 0.006848603, -0.025042435, 0.009924526, 0.014968361, -0.009917729, 0.007191883, 0.0073210374, 0.009985705, 0.030045483, 0.0058833407, -0.0075725494, 0.013092217, 0.0026068876, -0.0036299294, 0.0042689056, 0.0199986, 0.016559005, -0.0016076373, -0.03836577, 0.0043470785, 0.01766022, 0.001191283, 0.0029280751, 0.016137552, 0.0019985004, 0.010475134, -0.0037216973, -0.005067626, -0.014587694, 0.012888289, 0.023424601, -0.06721488, -0.011005348, -0.02985515, 0.05011206, -0.013962313, 0.01611036, 0.0062776026, -0.005648823, -0.007545359, 0.015444194, -0.01574329, -0.014818813, 0.004139751, -0.020392861, -0.0060634776, -0.0174291, -0.031459387, 0.01611036, 0.014846004, -0.008537811, -0.0049486677, 0.0060158945, 0.0011759883, 0.0070083467, -0.018870195, 0.012636777, 0.022921577, -0.0050642276, 0.001125856, 0.013568051, 0.004013995, -0.004748138, -0.00639996, 0.021820363, -0.025273554, 0.019359624, 0.015267456, 0.0162871, -0.0032985455, 0.013432099, 0.0014512921, -0.0074365973, -0.0091631925, -0.0150499325, -0.02528715, -0.0032526616, -0.0050812215, -0.03776758, 0.0022160243, -0.012405658, -0.00871455, -0.001062978, 0.017836956, 0.002185435, 0.014981956, 0.004588394, 0.0063591744, -0.028305292, -0.021575648, 0.004969061, -0.023560554, -0.001411356, 0.009740991, -0.009781776, -0.0222826, 0.015702505, -0.008632978, -1.4678613E-4, 0.008197931, 9.3637226E-4, -0.012820313, 0.031296246, -0.016015194, 0.00451362, 0.013391313, -0.020420052, 0.01717079, -0.02074634, 0.031323437, 0.0028804918, -0.007157895, 0.0089592645, -0.014981956, -0.0239956, -0.013438896, 0.031976007, 0.030235818, 0.015593742, 0.0031269055, -0.013221372, 0.0082523115, -0.0121201575, -0.009475883, -0.009040835, 0.0028380067, 0.009040835, 0.024362672, 0.0033665216, -0.0058493526, -4.2697554E-4, -0.015417004, 0.040894486, 0.02536872, 0.021874743, -0.0011521967, 0.015226671, -0.023492577, 0.004282501, -0.03148658, 0.0036945068, -0.0015660019, 0.02990953, -0.010706252, -0.018530315, 0.008700955, 0.010733443, 0.01439736, -0.005353126, 0.0024352476, -0.012616384, 0.016858099, 9.0408354E-4, -0.008517419, 0.017755385, 0.015444194, -0.0325742, 0.0042043286, 0.0194276, -0.010250812, 0.0028159143, -0.014220622, -0.0069437698, 0.0060668765, 0.014587694, 0.009190383, -0.0076609184, -0.025559055, 0.022065077, -0.017361123, 0.033689007, -0.018217623, 0.007239466, 0.02202429, 0.01859829, -0.001648423, -9.992502E-4, -0.019468386, 0.008449443, 0.010597491, -0.008238716, 0.037658818, -0.013160193, 0.035837058, -0.0055060727, 0.01082861, 0.0061416505, -0.01517229, -0.015240266, 0.021317339, 0.026306791, 0.016137552, 0.020963863, -0.021072624, 0.022092268, 0.003325736, 0.016735742, -0.0012906982, -0.023560554, 5.8034685E-4, -0.005434698, -0.03610896, -0.03268296, -0.024607386, -0.0044830306, 0.009910931, -0.011161693, -0.022772029, -0.0046189833, 0.013268956, 0.008891288, 0.017469885, -0.006777228, -0.030018292, 0.011705503, 0.023098316, -0.024321888, -0.026415555, -0.009666217, -0.004071775, -0.045380916, -0.031432196, -0.010645074, 0.036979057, -0.015811266, 0.004241715, -0.020814314, 0.006899585, 0.012602788, -0.0141662415, 0.023587745, 0.008904883, -0.0042587095, 0.008218324, -0.003091218, -0.010767431, 0.018707052, -0.01605598, -4.562903E-4, 0.0012184735, 0.0013739691, -0.00557065, 0.0066276803, -5.582546E-4, -0.04491868, 0.012188134, -0.011487979, 0.005747388, -0.0012906982, 0.01320098, 0.0011360523, -0.01265717, -0.01608317, -0.043803867, -0.02417234, -0.0020715748, 0.074719444, 0.041764583, 0.0202841, 0.011318038, -0.015308242, 0.008272705, -0.00359934, -0.011991003, -0.018448742, -0.024403458, 0.028522816, -0.012174538, 0.016123956, 0.012670765, 0.011929824, -0.007844455, -0.008565002, -0.01945479, -0.0017809767, 4.7583345E-4, -0.019237267, -0.013778777, 0.022731245, 0.03667996, 0.01088299, -0.0032118757, 0.020623982, -9.2872494E-4, 0.004843305, 0.020365672, 0.0013433798, -0.0010765732, 0.008279502, 0.009068026, 0.00317109, -3.4944018E-4, 0.03319958, -0.005390513, 0.025382316, 0.0052409656, -0.0075181685, 0.001520118, -4.8730444E-4, -0.010196431, 0.010264407, -0.02477053, -0.011012145, 0.028685959, 0.031078722, -0.039616533, 0.020365672, 0.015267456, -0.018367171, -0.012976658, 0.034069676, -4.0212175E-4, -0.0020953666, -0.0014105063, -0.017755385, 0.0015388114, -0.0024250513, -0.02871315, -5.249569E-5, -0.0148731945, -0.0063557755, -0.0074773827, -0.016219122, 6.62768E-5, -0.027068125, 0.005699805, 0.011202479, -0.022690458, -0.0029161794, -0.009319538, 0.01437017, 3.405183E-4, 0.02985515, -0.013255361, 0.016096765, 0.010937371, -0.03042615, -0.012045383, 0.027802268, -0.014832408, 0.005407507, 0.01519948, -0.012446444, 0.015784075, 0.0018846403, 0.005234168, 0.0013841655, 0.009081622, -0.020338481, -0.0073074424, 0.024063578, 0.027068125, 0.020583196, -1.864035E-4, 0.0028074174, 0.016749337, 0.0032475633, -0.018611886, -0.011963813, -0.014954765, -0.007259859, -0.009917729, 7.936222E-4, -0.009815765, -0.015634527, -0.021589244, -0.030888388, -0.021616435, 0.003288349, -0.0018353576, 0.005839156, 0.0012524616, 0.028305292, 0.017605837, -0.014506123, 0.010665467, 0.0033563252, -0.018815814, 0.014506123, 0.015335432, 0.0011938321, 0.031812865, -0.012364872, -0.028495627, -8.7604334E-4, 0.027408008, -0.0076609184, 0.018190432, -0.023383815, -0.002608587, -0.005784775, -0.016355075, 0.012466837, 0.004081971, -0.027870245, 0.0239956, -0.01979467, 0.0054924777, 0.02074634, 0.014125456, -0.0034786824, -0.027843054, 0.008449443, -0.02700015, 0.013935123, 0.02554546, -0.009924526, 0.013316539, -0.013907932, -0.0072326683, -0.015920028, -0.02502884, -0.0194276, -0.004873894, 0.034613486, 0.0031133103, 0.03096996, -0.0072190734, 0.029583246, 0.013975908, 0.015104313, 0.026891388, -0.020963863, -0.020637576, -0.031133102, -0.0011131103, 0.012507622, 0.021059029, 0.008061978, 0.005774579, -0.008204728, 0.024417054, 0.008021193, 0.016994052, -0.0037250961, -0.011780277, -0.024702555, 0.0027836256, -0.0348582, 0.012330884, -0.020841505, -0.015145099, 0.026062077, -0.005268156, -0.005699805, -0.0064509423, 0.026782626, 0.0023332832, 0.012521218, -0.029148197, 0.021208577, -0.027489578, 0.004975858, -0.015145099, -0.0027496375, -0.007287049, -0.025191983, 0.013268956, 0.010108062, -0.02451222, -0.010821812, 0.021793172, -0.011596741, -0.019917028, 0.022391362, -0.013561253, -0.002725846, -0.027693506, -0.014152646, -0.024335481, -0.010345979, -0.0015863947, -0.017904934, 0.012935872, -0.021222172, -0.03610896, 0.029121008, 0.0015702504, 0.039507773, 0.01054311, 0.054788824, 0.022772029, 0.01182786, -0.02588534, 0.015022742, -0.013860349, -0.0024318488, 0.024321888, 0.011175289, -0.017252361, -0.004622382, 0.0020987655, 0.0033954117, -0.03393372, -0.032139152, 0.02871315, 0.026333982, 0.01234448, -0.032302294, 0.010692657, -0.0411392, 0.0077356924, -0.0014325986, 0.008082371, 0.00548568, -0.02874034, -0.023778077, 0.00505743, -0.006576698, 0.022078672, 0.0050812215, -0.02988234, 0.009530264, -0.0177146, 0.0014946269, -0.0045238165, -0.001954316, 0.029066626, -0.021018242, 0.012201729, 3.0992902E-4, 0.017415505, 0.016042385, -0.010441146, 0.014710051, 0.033172388, -0.011052932, 0.020243315, 0.00319998, -0.008877693, 0.018068075, 0.010250812, -0.018829409, -0.024661768, -0.0156073375, -0.013330135, 0.028604388, 0.0011352027, 0.004887489, 0.010590693, -0.023778077, -0.023411006, 0.001520118, 0.0027309442, 0.017062029, -0.02931134, 0.0071239066, -0.0010808217, 0.00859899, -0.012643575, 0.008864097, -0.009068026, 0.0032220723, 4.97076E-4, -0.009203979, -0.010101264, -0.023859648, -0.02082791, -0.037604436, -0.021562053, -0.010590693, -0.012154146, 0.0077288947, -0.013561253, 0.0076133353, 2.2920727E-4, 0.0063523767, -0.0030640275, 0.005397311, -0.025219172, 0.00928555, 0.027979007, -0.0047719297, -0.0075317635, -2.4747587E-4, 0.032492626, 0.00179967, -0.0017452891, -0.007824061, 8.0466835E-4, 0.033553056, -0.024498625, 0.014506123, 0.005186585, -0.024022792, -0.012453241, 0.022051482, 0.026592292, 0.0061212573, -0.008551407, -0.030534912, -0.0014088069, -0.012473634, 0.03833858, -0.010305193, 0.0012354676, 0.026782626, 0.024063578, 0.02819653, 0.0205696, -0.001791173, -0.025151197, 0.0042587095, -0.0041771377, -0.015321837, 0.0035857449, 0.0014699855, 9.6547454E-5, -6.74239E-4, -0.006773829, -0.03648963, -2.7615335E-4, -0.024933673, -0.032927673, -0.004357275, 0.024117958, 0.031731293, 0.008497026, 0.005302144, -1.7907482E-4, 0.012330884, -0.001348478, -0.012752336, -0.005954716, 0.010767431, 0.014696456, 0.023818864, 0.016858099, -0.029936722, -0.011943419, 0.01268436, 0.016178338, 0.016423052, 0.01139961, -0.01859829, -0.013534063, -0.00985655, -0.0050404356, 0.0025049231, -0.0039698104, 0.037305344, -0.023750886, -0.007980406, 0.018435147, 0.029148197, -0.0026901583, 0.012867896, 0.017157195, 0.0054686856, -8.819913E-4, -0.003493977, -0.017891338, -7.082271E-4, -0.029664816, 0.022581697, 0.009407907, -0.0041771377, 0.03499415, 0.02048803, -0.008796121, -8.233618E-4, -0.009632229, -0.0028872895, -0.016300695, 0.0102236215, 0.0062436145, 0.027720697, -0.0342872, 0.009978907, -0.027584745, 0.0018676462, -0.011236467, -0.0064101564, 0.01691248, 0.031269055, 0.008721347, -0.061069824, -0.0017503874, -0.0052239713, 0.007470585, -0.014152646, 7.3499273E-4, -0.02425391, -0.013880742, -0.0028006197, -9.3467283E-4, -0.016042385, -0.034042485, 0.013676813, -0.0073074424, -0.014995552, 0.007722097, 0.1768469, -0.005574049, 0.004751537, 0.03784915, -0.004496626, 0.009292347, 0.024104362, 0.027951816, 0.0012465137, 0.010345979, 0.0028040186, -0.004676763, 0.0070355376, 0.0032305692, 0.02871315, -0.024457838, -0.024498625, -0.021752385, -0.0074094064, -0.027530365, -0.014519718, 0.009523466, -0.0016186835, -0.024417054, -0.0067058527, -0.0031235067, -0.009584645, 0.010407157, 0.017021243, 0.0016254811, 0.0030266405, -0.012670765, -0.0046699652, 0.0067500374, -0.019468386, 0.0027938222, -0.010556705, 0.010135252, 0.011923026, -9.054643E-5, 8.5777475E-4, -0.007130704, -0.0027717298, -0.0064441445, 0.0094147045, 0.026184434, -0.025300745, -0.0068418053, -0.026673865, 0.014193432, -0.039072722, 0.010509121, 0.0113112405, 0.0219971, -0.014465337, -0.017578647, 0.0038678462, 0.0072190734, -0.016640576, -0.0013408307, 0.021929124, 0.030480532, -0.023207078, 0.0148731945, -0.016246313, 0.023043934, -0.041927725, -0.020012196, -0.0039494177, -0.030670865, -0.01585205, -0.02676903, -0.01054311, 0.008748538, -0.0043946616, -0.017238766, 0.0058051683, -0.005105013, 0.0039222273, 0.03309082, -0.0317041, -0.018734243, 0.0060498826, -0.010345979, -0.022391362, -0.02502884, 0.016722146, -0.007368621, -0.007130704, -0.018761434, -0.0027343428, -0.031078722, -0.014859599, -0.0035959415, 0.0037896736, -0.004231519, 0.021507671, 0.022323387, -0.017850552, -0.0038100665, -0.037495676, 0.03493977, 0.02134453, -0.0015150197, -0.026891388, -0.023791673, -0.009863348, 0.014261408, 0.03379777, -0.0143429795, -0.030589294, -0.01916929, 3.4264257E-4, -0.009564253, 0.004279102, 0.025926126, 0.012949468, -0.014288599, 0.032519817, -0.012759134, -0.0020273903, -0.02362853, 0.024036387, 0.014560504, -0.005540061, -0.036843102, -0.026945768, 0.01462848, 0.0035211674, -0.030698055, 0.0049724597, -0.018435147, 0.0027496375, -0.0014325986, 0.004122757, 0.0023332832, 0.014601289, -0.012208527, 0.008918478, -0.004173739, -7.490128E-4, -0.020420052, 0.0017724796, 0.0057983706, 0.004928275, -0.034885388, 0.011182086, -4.1529212E-5, -0.020324886, -0.030861199, -0.0211406, -0.015185884, 0.0112092765, 0.020392861, 0.0488613, -0.0054584895, -0.022690458, -0.04043225, -0.013500075, 0.03426001, -0.038828008, 0.012303693, 0.019468386, -0.018299194, -0.02871315, -0.0016875094, -0.17401908, 0.025178388, 0.0024148547, -0.024960862, 0.011882241, 0.017497076, 0.028033387, -0.0039528166, 0.016436648, -0.019604338, 0.024417054, 0.009938122, -0.03613615, -0.006420353, -7.3329336E-4, 0.011555955, -0.0053463285, 0.028495627, 0.035238866, -0.003939221, 0.037930723, -0.008211526, -0.012208527, -0.0041635428, 0.016123956, -0.004622382, 0.030562103, 0.0019900035, 0.011746288, 0.0063727694, -0.027761484, -0.010665467, 0.011066526, 0.009068026, -0.013350527, 0.0059275255, -0.012861098, -0.027802268, -0.0020613784, -0.013024242, 0.035592344, 0.003674114, 0.011515169, 0.007327835, 0.021317339, 0.0052987454, 0.02985515, -0.030371768, 0.03328115, -0.021589244, -0.009387515, -0.04442925, 0.037522867, -0.006338781, 0.001491228, 0.025219172, -0.003796471, 0.0045646024, -4.0445843E-4, -2.0817714E-4, -0.02871315, 6.1730895E-4, 0.007810466, -0.0085718, 0.010006098, -0.015838455, -0.019876244, 0.007892038, -0.039127104, 0.009890538, -0.021358125, 0.00985655, 0.008442645, 0.0014122057, 9.499675E-4, -0.0174291, -0.037522867, 0.009605038, -0.0030895185, 0.013207777, -0.015430599, 0.034722246, -0.009047633, 0.024389863, -0.0029620633, -0.009346728, 0.004415055, -0.00105703, 0.01437017, -0.013010646, 0.0090612285, -0.0068350076, -0.022772029, 4.250637E-4, 0.0129290745, 0.006508722, -0.011236467, 0.012718349, 0.010556705, -0.005108412, 1.4986629E-4, -0.00959824, -0.017320337, 0.029637625, 0.020651171, 0.007110311, 0.009550657, 0.016001599, 0.011127705, 0.0018829409, -0.022894386, -0.0014079572, 0.0148731945, 0.0075521567, -0.014478932, 0.015824862, -0.00582896, -0.02451222, 0.004639376, 0.013010646, 0.051308442, -0.016477432, 0.0062334184, -0.002679962, -0.002822712, -0.019087719, -0.08728145, 0.01277273, 0.012160944, 0.040133152, -0.028985055, 0.036979057, -0.00916999, 0.01696686, -0.02362853, 0.024743339, 0.010359574, -0.037631627, 0.0139147295, 0.008279502, 0.011855051, 9.2532614E-4, -0.016654171, -0.004445644, -0.010502324, 0.027815863, 0.0079736095, -0.0065291147, -0.0033495277, -0.017537862, -0.011535563, 0.019699505, -0.022160243, 0.028414054, 0.013411705, -0.0026901583, 0.0013544259, -0.035157293, 0.011501574, -0.03654401, -0.020895885, -0.037631627, -0.011664717, -0.02282641, -0.005699805, -0.049214773, 0.0075657517, 0.01802729, -0.00634218, -0.016790124, -0.019781075, -0.0012779527, -0.030861199, 0.033553056, -0.0030045484, -0.019536361, -0.008517419, -0.024090767, -0.035701104, -0.008938871, 0.013805968, 0.0139895035, 0.035266057, 0.012976658, -0.007708502, -0.027543958, -0.0069675613, -0.0037250961, -0.01608317, 0.023220673, 0.008184335, 0.019821862, -0.0053463285, -0.005557055, 0.009978907, -0.012337682, -0.017293148, 0.030779626, -0.02990953, -0.015022742, -0.019223671, 0.010937371, -0.025137601, -0.015947219, 0.02048803, -0.034504723, 0.003976608, -0.030181436, 0.009115609, -0.021575648, 0.011596741, 0.027204078, 0.0073890137, 2.0074223E-4, -0.002311191, -0.053674012, -0.0119162295, 0.023166291, -0.0032951466, 0.0020477832, 0.01602879, 0.018951766, 0.013622432, -0.0034871795, -0.0048093167, -0.008898086, -0.016409457, -0.0033444294, -0.07248983, 0.025762983, -0.024498625, -0.004873894, -0.011644324, -0.01251442, 0.0036061378, 0.006512121, -7.902234E-5, 0.023003148, -0.0023349826, 0.018204028, -0.004965662, -0.003426001, -0.00182856, 0.0054652872, 0.004323287, -0.0051695905, 0.0031099115, 4.0297146E-4, -0.01439736, 0.012582396, 0.009068026, 0.0047821263, 0.005737192, 0.017320337, -0.008395062, 0.0012694556, -0.022907982, -0.013744789, 0.035864245, -0.021262957, -0.0013102414, -5.8119657E-4, -0.00759974, -0.03262858, -0.005703204, 0.002248313, 0.008870895, 0.0047447393, 0.003708102, -0.013935123, 0.013493277, -0.0052919476, 8.6329784E-4, 0.012589194, -0.0074433945, 0.0062266206, 0.0043504774, 0.0022721046, 0.028060578, 0.017252361, -0.0067126504, -0.018475933, 0.009190383, -0.020447243, 0.056501824, 0.0027377417, 0.0028583994, -0.012765932, 0.03833858, 0.0011589943, 0.01265717, -0.034722246, 0.0050472333, 0.009068026, 0.014288599, -0.006328585, 1.7663192E-4, -0.028849103, -0.026266007, -0.008993252, 0.0017376418, 0.03703344, 0.026959363, 0.01634148, -0.0075589544, -0.009346728, -0.003691108, 0.018040886, 0.01833998, 3.7386914E-4, -0.028386865, 0.018625481, 0.0042247213, 0.007157895, -0.0074094064, 0.0052783526, 0.008755336, 0.010305193, -9.839556E-4, 0.0150771225, 0.029501675, -0.0048229117, 0.01494117, 0.004139751, -0.01968591, -0.0064611384, 0.01225611, 0.028495627, -0.0037658818, -0.0028363073, -0.01045474, -0.0045951917, -0.019182885, 0.014234218, -0.02254091, -0.016694956, 0.010447943, 0.012949468, 0.031187484, 0.01548498, -0.01919648, 0.011773479, -0.03613615, 0.022051482, -0.0088573, -0.0067058527, -0.008809716, 0.03651682, 0.017537862, 0.010719848, 0.027176887, -0.027448792, 0.045788772, -0.010216824, 0.024879292, -0.030861199, -0.004357275, 0.002625581, -7.579347E-4, 0.0046563703, -0.025042435, 0.014302194, -0.0063557755, 0.008259109, 0.009632229, 0.028957864, -0.01365642, 0.0822784, 0.011494776, -0.0071442993, 0.018910982, -0.0022330184, 0.027979007, 0.020637576, 0.022133052, -0.017646624, -0.017320337, 8.1826356E-4, -0.009849752, 0.0034192032, -0.03825701, 0.01254161, -0.0016093367, 0.013554456, 0.012752336, -0.0051220073, -0.027924625, -0.015716098, 7.919228E-4, 0.0180001, 0.0069437698, -0.01654541, 0.0034667866, 0.017646624, -0.0039664116, -0.0025712, -0.030616485, 0.010753836, -0.024158744, -0.0015167191, 0.006760234, 0.040704153, -0.005614835, -0.014030289, 0.0019237266, 0.021725196, 0.015580147, -0.013207777, -0.008463038, -0.026102863, -0.018978957, 0.032873295, -0.014016693, -0.0045747985, -0.035701104, -0.02082791 ], + "id" : "8d768aa7-07f3-4c9f-8212-041dfbfeedee", + "metadata" : { + "source" : "movies.csv" + } + }, + "e0153e1d-55f8-4d17-929f-b1aefdce0556" : { + "text" : "Jackson-Don Cheadle-Cobie Smulders-Anthony Mackie-Hayley Atwell-Idris Elba-Linda Cardellini-Stellan Skarsg��rd-Claudia Kim-Thomas Kretschmann-Andy Serkis-Julie Delpy-Stan Lee-Henry Goodman-Chris Luca-Brian Schaeffer-Dominique Provost-Chalkley-Isaac Andrews-Gareth Kieran Jones-Chan Woo Lim-Minhee Yeo-Bentley Kalu-Julian Bleach-Christopher Beasley-Vuyo Dabula-Nondumiso Tembe-Kabelo Thai-Lele Ledwaba-Mandla Gaduka-Harriet Manamela-Beulah Hashe-Musca Kumalo-Mathapelo September-Antony Acheampong-Chioma Anyanwu-Ben Sakamoto-Imogen Poynton-Isabella Poynton-Ingvild Deila-Sunny Yeo-Namju Go-Mina Kweon-Earl T. Kim-Arthur Lee-Verity Hewlett-Michael Matovski-Alma Noce-Riccardo Richetta-Constanza Ruff-Monty Mclaren-Clark-Julia Krynke-Tony Christian-Ian Kay-Barry Aird-Aaron Himelstein-Kerry Condon-Jaiden Stafford-Josh Brolin-Robert J. Fraser-Lou Ferrigno-Zakk Pierce,artificial intelligence (a.i.)-sequel-superhero-based on comic-superhero team-duringcreditsstinger-marvel cinematic universe (mcu)-fictitious country-evil robot,/4ssDuvEDkSArWEdyBl2X5EHvYKU.jpg,/6YwkGolwdOMNpbTOmLjoehlVWs5.jpg,271110-100402-24428-102899-76338-10195-10138-68721-1771-118340-1726-284052-283995-315635-299536-284053-284054-1724-299534-363088-127585\r\n502356,The Super Mario Bros. Movie,Animation-Family-Adventure-Fantasy-Comedy,en,While working underground to fix a water main Brooklyn plumbers���and brothers���Mario and Luigi are transported down a mysterious pipe and wander into a magical new world. But when the brothers are separated Mario embarks on an epic quest to find Luigi.,244.799,Universal Pictures-Illumination-Nintendo,4/5/23,100000000,1362000000,93,Released,Not all heroes wear capes. Some wear overalls.,7.685,8217,Chris Pratt-Anya Taylor-Joy-Charlie Day-Jack Black-Keegan-Michael Key-Seth Rogen-Fred Armisen-Sebastian Maniscalco-Charles Martinet-Kevin Michael Richardson-Khary Payton-Rino Romano-John DiMaggio-Jessica DiCicco-Eric Bauza-Juliet Jelenic-Scott Menville-Carlos Alazraqui-Jason Broad-Ashly Burch-Rachel Butera-Cathy Cavadini-Will Collyer-Django Craig-Willow Geer-Aaron Hendry-Andy Hirsch-Barbara Harris-Phil LaMarr-Jeremy Maxwell-Daniel Mora-Eric Osmond-Noreen Reardon-Lee Shorten-Cree Summer-Nisa Ward-Nora Wyman-Ed Skudder,gorilla-plumber-anthropomorphism-magic mushroom-based on video game-toad-aftercreditsstinger-duringcreditsstinger-damsel in distress-piano-brother brother relationship-illumination-evil king-clich��,/qNBAXBIQlnOThrVvA6mA2B5ggV6.", + "embedding" : [ 0.0011781522, -0.03213173, -0.004094953, -0.043215405, -0.018918684, 0.026862891, 0.0054360502, -0.0016132408, -0.0053132013, -0.034343004, 0.037810065, 0.019546576, 0.031694937, 0.005828483, 0.0067498474, -2.3055439E-4, 0.02001067, -0.0018239603, 0.021935299, -0.026303248, 0.0030507399, 0.0016081221, -0.022249244, 0.0067259604, 1.0855891E-4, 0.012148361, 0.03057565, -0.018959632, -0.011738866, 0.0044976235, 0.011151922, -0.0077872355, -0.0031155767, -0.042997006, -0.014291386, -0.005234715, 0.006466613, -0.027709182, 0.03398811, 0.010162309, -0.0010450662, 0.0019621649, -0.008108007, -0.011377145, -0.010974474, 0.007248067, -0.002680488, -0.016011266, -0.0151786255, 0.019860523, 0.028091379, 0.024474168, -0.018495537, -0.024651617, -0.0036752203, -0.0020235893, -0.028364375, 0.008435603, 0.0069887196, 0.008319579, 0.013840941, -0.0015211044, -0.039393447, -0.010524029, -0.011650141, -0.013636193, 0.0021208443, -0.021020759, -0.0050402046, 0.009732339, 0.027135888, 0.021730551, 0.016065866, -0.012899102, 0.011165571, -0.018577436, -0.035243895, -1.453495E-4, -0.03049375, 0.011998212, 0.0027930993, -0.012086936, -0.004845694, 7.2386826E-4, 0.00872225, 0.014618983, -0.018454589, -0.0025798203, -0.029319864, 0.018140642, -0.008633526, 0.02962016, 0.002303411, 0.0062379786, 0.013424621, 0.035899088, -0.023040935, 0.022413043, -0.0261804, -0.03745517, 3.9307284E-4, -0.007063794, -0.01561542, -0.006879521, 0.0017676547, 0.002044064, -7.8102696E-4, 0.012789903, 0.031121643, 0.018604737, 0.014509783, -0.004473736, 0.0098074125, -0.051241513, -0.018126993, -0.021280106, 0.0063574146, -0.028582772, -0.025757255, -0.0023290045, 0.030684847, 0.028145976, -0.0045795226, -0.025429659, 0.032432027, 0.03925695, -0.0029961406, -0.013424621, -0.001822254, -0.004412312, 0.032814223, -0.010564979, 0.02186705, 0.008845098, -0.011779815, 0.025852803, -0.02869197, 0.0078486595, 0.0011244059, -0.014482484, 0.018550137, 0.01826349, -0.022508591, -0.017062305, -0.028855769, 0.0034755913, 0.028937668, -0.0051186914, 0.0078964345, 0.011015424, 0.0029364226, 0.020556664, -0.0010843094, -0.007766761, 0.01652996, 5.7244033E-4, -0.0011935082, 0.0056237355, -0.0040164664, -0.017758446, -0.004316763, -0.021416605, 0.002851111, -0.016802957, 0.0033817487, 0.025975652, 0.010667353, -0.01816794, -0.0022539303, 0.005231302, -0.0083810035, 0.040813033, -0.023996424, 0.02265874, -0.009896137, -0.0076234373, 0.0036376833, -0.003059271, -0.044116292, 0.0020918385, 0.018727586, 0.016925806, 0.03568069, 0.022726988, -0.010790201, 0.0064017763, 0.041304424, -0.008592577, 0.0117183905, -0.014264086, 0.012571505, 0.028910369, -0.0012975882, -0.017772095, -0.6259272, -0.012714829, 0.015069427, -0.005432638, 0.013315422, 0.031285442, 0.0014630926, -0.020925209, -0.0174445, -0.0041870894, -0.013745393, 0.015369724, 0.028145976, -0.0024109036, -3.5980134E-4, -0.012885452, 0.010660527, -0.02790028, 0.005930857, 0.00916587, -0.018113343, 0.016816607, 0.01652996, -0.0089611225, -0.018986933, 0.008872398, 0.005627148, -0.018509187, 0.005367801, 0.003212832, -0.018727586, 0.024255771, 0.019451026, 4.6754712E-6, 0.04690086, 0.0070296694, -0.017239751, 0.049958427, 0.024105623, 0.024856364, -0.039284248, -0.008981597, 0.0071252184, -0.009261419, -0.0048559317, 0.03229553, 0.0092272945, -6.3557085E-4, -0.015601771, -0.0058591953, -1.13677605E-4, 0.003281081, -0.00998486, 5.361829E-4, -0.0130902, -0.0033220307, 0.015151327, -0.019246278, 0.024201171, 0.019587526, -0.02346408, 0.011479518, -0.017239751, 0.013820467, -0.0016345688, 0.035325795, 0.0019195093, -0.005074329, 0.0094934665, -0.026330547, 0.013697618, 0.014878329, -0.011677441, -9.580484E-4, 0.0018017794, 0.00823768, 0.027149538, 0.0030865709, -0.0012702886, 0.025702655, 0.0029671346, 0.0018478476, 0.0051357537, 0.0031189893, 0.015861118, 0.00563056, -0.035899088, 0.003791244, -4.5726975E-4, -0.016666459, 0.02869197, 0.00955489, -0.003873143, -8.454372E-4, -0.0024603843, -0.0064870883, -0.006118542, 0.002243693, 0.012680705, -0.07234417, -0.023081886, -0.025074761, 0.036909178, -0.007964684, 0.018072393, 0.0032964372, -0.008408303, -0.011909489, 0.031285442, -0.007063794, -0.01919168, 0.009752813, -0.007493764, -0.009316018, -0.0042416886, -0.032322828, -0.0014298211, 0.006316465, 0.0010698065, -0.009513941, 0.0036922826, 0.0100735845, 0.0055657234, -0.008469728, 0.012824028, 0.026630845, 0.005790946, -0.009254593, 5.967541E-4, 0.0216623, -0.0062994026, -0.009991685, 0.018891383, -0.018468238, 0.027572684, 0.0068692835, 0.004726258, -0.008333229, 0.017567348, -0.02274064, -0.013970614, -0.01399109, -0.008271805, -0.0024279659, -0.008606226, -0.0054633496, -0.042314515, 0.00478427, 0.0014920986, -0.013588419, -0.008148956, 0.028200576, 0.0056612724, 0.023941826, 0.018208891, -0.0029568973, -0.035353094, -0.0128786275, -0.004074478, -0.012551031, 0.0053439136, 0.02882847, 0.008176256, -0.022085447, 0.022508591, 0.012182485, -0.0066884235, 0.0029278914, -0.013424621, -0.013226698, 0.012557856, -0.021689601, 0.002740206, 0.012366758, -0.0065723998, 0.013875065, -0.014509783, 0.013329072, -7.491418E-5, -0.0021430254, 0.004279226, -0.009629965, -0.01393649, -0.016229663, 0.033524014, 0.007541538, 0.03903855, -0.013342722, -0.0029449537, 0.0027589747, -0.021443903, -0.017103253, 0.010715127, -0.0128786275, -0.0033595676, 0.027695533, 0.018782184, 0.0040608286, -0.010926699, -0.012114236, 0.018195242, 0.026699094, 0.016188715, -0.006026406, 0.011848064, -0.026644494, 0.0023272983, -0.02529316, 0.021594051, -0.012318984, 0.024064673, -0.015465273, -0.0067123105, -0.003281081, 0.00741869, 0.026699094, -0.013458746, 0.0016584559, -0.01481008, 0.0018853846, 0.0071661677, -7.618319E-4, 0.01476913, 0.0111860465, -0.016106816, 0.018440938, 0.0073709153, -0.0052927267, 0.0015339012, -0.008415128, -0.006944358, 0.0067259604, -4.0373678E-4, 0.004234864, -0.0071798177, -0.0028579358, 0.01350652, -0.010585453, 0.042369112, -0.023436781, -0.012864977, 0.02354598, 0.020925209, 0.01481008, 0.014891979, -0.0055998485, 0.020720461, 2.354598E-4, -0.0050811544, 0.058039133, -0.019478327, 0.018713934, -0.006493913, 0.0072002923, 0.019642124, -0.0122507345, -7.7420205E-4, 0.013711268, 0.036390483, 0.027681882, 0.02275429, -0.02274064, 0.029128766, 0.0125169065, 0.005115279, 0.008210381, -0.02013352, 7.411438E-5, 0.001584235, -0.032841522, -0.028937668, -0.0054906495, -0.008073882, 0.0056783347, -0.00248939, -0.011008599, -0.0012839384, 0.012496431, 0.0097118635, 0.017580999, -0.0015449916, -0.037072975, 0.0028749981, 0.02882847, -0.017308, -0.017035004, -0.008831449, 0.0019331591, -0.030794047, -0.0036615704, -0.009172695, 0.05064092, -0.0072958414, 0.023791676, -0.011008599, -0.004436199, 0.013479221, -0.017744796, 0.019382777, 0.002257343, 0.0017676547, 0.015465273, -0.0051323413, -0.013199398, 0.014291386, -0.01572462, -0.008183081, -0.0018905033, -0.0032264816, -0.0066986606, 0.0049071186, -0.011779815, -0.032650426, 0.012824028, 0.0026548945, -0.0081626065, -0.019287229, -0.0027726244, 0.0018205479, -0.013806816, -0.016925806, -0.04422549, -0.022918086, -0.008892873, 0.080424875, 0.04018514, -6.773735E-4, 0.006190204, -0.018782184, 0.014468834, 0.0020884261, -0.0027333812, -0.004412312, -0.02970206, 0.02099346, -0.023368532, 0.030166153, 0.0028971792, 0.0150557775, -0.0052824896, -0.011158747, -0.002554227, -7.678037E-4, -0.0044805612, -0.028555471, -0.009377442, 0.011575067, 0.03237743, 0.023136485, 0.002562758, 0.02091156, -0.0022198057, 8.4970274E-4, 0.0041051903, -0.009008897, 5.865167E-4, -0.0034772975, 0.011527292, 0.0059649814, 0.0028238113, 0.034561403, 0.026903842, 0.023832627, 0.005207415, -0.007145693, 0.009206819, 0.001406787, -0.008770024, 0.017321652, -0.033605915, -0.014878329, 0.027654583, 0.01904153, -0.03669078, 0.025102062, 0.01350652, -0.01227121, -0.017717497, 0.019451026, 2.5806736E-4, -0.014659932, -0.008039758, -0.0010706596, 0.018481888, -0.0020713636, -0.01227121, 0.005378038, -0.009090796, -0.01647536, -0.022999985, -0.013069725, 0.009077146, -0.0125169065, -0.007050144, 0.007234417, -0.011131447, -0.011240646, 0.006183379, 0.015997617, -0.0011696209, 0.031203542, -0.008578926, 0.012230259, 0.0072139422, -0.031585738, -0.017594649, 0.0016030035, -0.022863487, -9.350143E-4, 0.016052216, -0.0018017794, 0.0130902, -0.0076370873, 0.014291386, -4.9565994E-4, 0.0014392054, -0.019737674, -0.0038526682, 0.035161998, 0.019369127, 0.011035899, 0.0068078595, -0.0030848647, -5.494062E-4, 8.411716E-4, -0.029947756, 0.0011064904, -0.021443903, -0.020229068, -0.009821062, -0.011070023, 0.0013086788, -0.02431037, -0.017062305, -0.0261804, -0.025156662, 6.3770363E-4, -0.016134115, 0.01567002, 7.507414E-4, 0.025224911, 0.005975219, -0.029319864, -7.797473E-4, 0.0061117173, -0.028364375, 0.021853399, 0.024733515, -0.015997617, 0.038601756, -0.0066167614, -0.026439747, -0.0174172, 0.032077134, -0.012455482, 0.018986933, -0.005258602, -0.0048832316, -0.011929963, -0.0048388694, -4.1162808E-4, 0.002673663, -0.018031443, -8.7145716E-4, -0.018550137, 0.0054087504, 0.0015228107, 0.004818395, -0.008831449, -0.027245088, 0.011677441, -0.001533048, 0.01839999, 0.021048058, 0.0039140927, 0.022999985, -0.020693162, -0.0033578614, -0.0042007393, -0.028391674, -0.027463485, -0.013861416, 0.04108603, 0.0071866424, 0.036854576, 0.005204003, 0.03677268, 0.016516311, 0.006862459, 0.011438569, -0.012059636, -0.0011508524, -0.02798218, 0.006214091, 0.004210977, 0.034561403, -0.004968543, 0.007766761, -0.0037366445, 0.008851923, 0.0015219576, 0.012994651, -0.0038970304, -0.02448782, -0.028337074, 0.013711268, -0.011561417, -0.009848362, -0.008435603, -0.0130014755, 0.032923423, 0.0043713623, -0.0030746271, -0.007248067, 0.02082966, 0.0019672837, 0.017294351, -0.014728181, 0.022221945, -0.013854591, -0.0036956952, -0.017239751, -0.004808157, -7.746286E-4, 2.8685998E-4, 0.022290194, 0.0023494794, -0.0126124555, -0.007657562, 0.03578989, -0.017144203, -0.016953105, 0.009650439, -0.018795835, -0.01263293, -0.031585738, -0.010128184, -0.0434338, -0.026480695, 0.0035933212, -0.0061799665, 0.006029818, -0.01354747, -0.027204137, 0.025443308, 0.011868538, 0.044716887, 0.012155185, 0.03835606, 0.024556069, 0.025593456, -0.017744796, 0.00916587, -0.0059786313, 0.0055452487, 0.024296721, 0.02523856, -0.020720461, -0.0130629, 0.0136293685, -0.006121955, -0.019573875, -0.03770087, 0.025552507, 0.01661186, 0.015451623, -0.026726393, -0.012912752, -0.015356074, -0.005204003, 0.002554227, -0.0034073421, -0.006449551, -0.020529365, -0.02170325, -0.007486939, -0.0041359025, 0.019027881, 0.014332335, -0.008619876, 0.0012728479, -0.023996424, -0.0031514075, -0.0072685415, -0.0026531883, 0.036881875, -0.004330413, 0.010408006, 0.005790946, 9.102739E-4, 0.008578926, -0.00825133, 0.015164976, 0.031121643, -0.024897315, 0.030357251, 0.004975368, -0.0097118635, 0.028391674, 1.3436565E-4, -0.012380408, -0.0060366434, -0.025743604, -0.006995545, 0.021689601, -0.0022044496, 0.009909786, -3.261033E-4, -0.016352512, -0.01740355, 0.011779815, -0.0023051172, 4.097619E-5, -0.0349709, 0.008319579, -0.014386935, 0.009036196, -0.014318686, -0.006664536, -0.012032337, -0.0019382777, -0.009063496, -0.0024484408, 0.003740057, -0.027176838, -0.024187522, -0.028145976, -0.0347252, -0.008926998, -0.0049583055, 0.0091795195, -0.016284263, -0.008981597, -0.004385012, -0.016120465, -0.006272103, -0.01916438, -0.0128786275, 0.010387531, 0.012318984, -0.011868538, -0.014086639, -0.005736347, 0.020925209, -0.018659336, -0.015765568, 0.009459342, 0.012510082, 0.02006527, -0.0090566715, 0.01661186, -0.0064393138, -0.040540036, -0.0014042277, 0.014154888, 0.025648056, 0.01838634, -0.00825133, -0.02106171, -0.017813046, -0.014182188, 0.02882847, -0.0072617168, 0.0044942107, 0.023723427, 0.020624913, 0.04201422, 0.019724024, 6.0101965E-4, -0.028309776, -0.002496215, -0.0071934676, -0.03412461, -0.0023426544, 0.0028169865, 0.01483738, 0.0051732906, -0.01392284, -0.031640336, -0.011895838, -0.015970316, -0.03660888, -0.024883665, 0.017990494, 0.022808889, -0.0027282625, 0.006251628, 0.015888417, 0.010524029, 6.9742167E-4, -0.0127353035, -0.004152965, 0.014578032, 0.008005633, 0.021580402, 0.021034408, -0.026671793, -0.005285902, 0.012708005, 0.028036779, 3.4145935E-4, 0.025074761, -0.0073504406, -0.016953105, -0.0070979185, 0.007991984, -0.015861118, -0.0015944723, 0.019874172, -0.025429659, -0.016147764, -0.0010706596, 0.014386935, -0.0020252955, 0.018768534, 0.025470607, -0.00413249, -0.004361125, -1.8853846E-4, -0.023696128, 1.3788475E-4, -0.039393447, 0.017267052, 0.004593172, -0.003658158, 0.032322828, 0.017717497, -0.0035421343, 0.0034551166, -0.010640053, 0.016065866, -0.004531748, 0.013042426, -0.0027913928, 0.023163784, -0.029729359, 0.0077940607, -0.03660888, -0.0018870909, -0.012059636, 0.0010612754, 0.009657264, 0.02788663, -0.006719135, -0.049958427, 0.0016917274, -0.01181394, 0.018154291, -0.03944805, -0.007664387, -0.027354287, -0.01307655, 0.010544504, 0.0068726963, -0.031067044, -0.027504435, -0.0014647988, -0.010251032, -0.0039209174, 0.014359635, 0.18214351, -0.01650266, 0.005183528, 0.04679166, -0.01568367, 0.0053132013, 0.027408885, 0.011677441, -0.010953999, 0.018918684, 0.0037571194, 0.011192871, -3.617742E-5, -7.0680596E-4, 0.015970316, -0.024146574, -0.026439747, -0.024010075, -0.0100735845, -0.020160818, -0.008633526, 0.013561119, -0.027709182, -0.016420761, 0.0010595691, -0.0029057104, -0.0050265547, 0.011534117, 0.024119273, 0.016202364, -0.0113566695, -0.006005931, 0.0077121616, 0.0014247024, -0.006316465, -0.0075483634, -0.0028118677, 0.010128184, 0.02437862, 0.008899698, -0.022549542, 0.0021276693, -0.010994948, -4.7219926E-4, 0.0058387206, 0.014332335, -0.03125814, -0.010981299, -9.768169E-4, 0.02085696, -0.037919264, -0.009991685, 0.021539453, 0.03224093, 0.004228039, -0.008155782, 0.0058318954, 0.0034022233, 0.0010732189, 0.006620174, 0.020925209, 0.034315705, -0.027217787, 0.015888417, 0.012523731, 0.0072958414, -0.04119523, -0.0035557842, 0.0151786255, -0.019737674, -0.007910084, -0.034479503, -0.0019519276, 0.0015808225, -0.011936788, -0.020652212, 0.019519275, 0.0089611225, 0.012380408, 0.028173277, -0.034588702, -0.006070768, 0.011609192, -0.010298807, -0.027245088, -0.011267946, 0.019997021, -0.00911127, -0.016898505, -0.021839749, -0.014864679, -0.031967934, 0.0027043752, 0.004849107, -0.014086639, 0.0062345657, 0.032650426, -0.008142131, -0.012141536, 0.0016789307, -0.038738254, 0.016284263, 0.02178515, -0.0061151297, -0.034261107, -0.014182188, 7.383712E-4, -0.0044020745, 0.011377145, -0.012052812, -0.021894349, -0.03745517, -0.0044259615, -0.018618386, 0.008374179, 0.028391674, -0.012748954, -0.020215418, 0.033605915, -0.011991387, 0.004303113, -0.02252224, 0.0016038566, 0.011049548, -0.009950736, -0.041249827, -0.025921052, 0.010571804, -0.0034619416, -0.03041185, 0.007050144, -0.027367936, 0.014591683, 1.3863122E-4, 0.009343318, 0.019519275, 0.021321055, -0.005975219, 0.01399109, -0.004647772, -0.012796728, -0.0060229935, 0.018359039, -0.009800588, 0.004954893, -0.027777432, 0.013704442, 0.005258602, -0.01659821, -0.03046645, -0.030111555, 0.005886495, 0.023750728, -3.3719378E-4, 0.040212438, -0.00524154, -0.014209487, -0.03658158, -0.011411269, 0.06928661, -0.039529946, 0.018932333, 0.033633213, -0.0078486595, -0.0350528, -0.019027881, -0.1743904, 0.01829079, 0.008394654, -0.034561403, 0.022194644, 0.014591683, 0.014919279, 0.007957859, -0.0034346418, -0.02095251, 0.035325795, 0.010353406, -0.036745377, 0.003132639, 0.003798069, 0.03297802, -0.012339459, 0.045126382, 0.028200576, -0.00872225, 0.04537208, -0.01565637, -0.009043021, 0.0071729925, 0.019751323, -0.015861118, 0.018208891, 0.0031735885, 0.013069725, -0.0076029627, -0.020310966, -0.009793763, 0.036117487, -0.0031309328, -2.3780587E-4, 0.0052005905, -0.006797622, -0.022999985, -0.010728776, 4.2527792E-4, 0.044907983, 0.025484258, 0.018672986, 0.01838634, 0.022972686, 0.019314528, 0.033442117, -0.025893753, 0.020693162, -0.02443322, -0.010674178, -0.044280093, 0.036745377, -0.012551031, -0.0012626105, 0.04119523, 0.0037229948, 0.005139166, -0.004036941, -7.7633484E-4, -0.014414235, -0.003385161, 0.013356372, -0.01748545, 0.0042178016, -0.016297912, -0.015506222, 0.011561417, -0.031776834, 0.01227121, -0.018809484, 0.016994055, -0.0022317495, -0.003146289, 0.0055861985, -0.01349287, -0.050094925, -1.11651454E-4, -0.011561417, 0.005603261, -0.0014912453, 0.034534104, -0.008387829, 0.009793763, -0.0064597884, -0.021457553, 0.021116307, -0.008442428, -0.005924032, -0.0116228415, 0.01748545, -0.027941229, -0.030138854, -0.0018905033, -0.009930261, 0.0023460668, 0.0017522987, 0.014291386, 0.013970614, 0.0013914309, 0.010988124, -0.0063642394, -0.021307405, 0.022508591, 0.012748954, 0.011663791, 0.0069102333, 0.018905032, 0.014072988, 0.001666134, -0.006081005, -0.009855187, 0.02521126, 0.025566157, -0.023818977, 0.011199697, -0.031776834, -0.028855769, 0.014864679, 0.008387829, 0.060277708, -0.014223137, -0.0034414667, -0.020119868, 0.0019416902, -0.011513643, -0.09909786, -0.0049719554, 0.010687827, 0.04438929, -0.017294351, 0.026098501, -0.006981895, 0.018427288, -0.02781838, 0.041413624, 2.0261486E-4, -0.036253985, 0.022385743, -0.002383604, 0.0015808225, -0.001341097, -0.022426693, 0.002272699, -0.007596138, 0.031640336, -0.015042127, -0.005538424, 0.007684862, -0.0017309708, -0.012441833, 0.03770087, -0.026207699, 0.01833174, 0.020297317, 0.009943911, 0.0175264, -0.017540049, 0.015943017, -0.04026704, -0.02085696, -0.025675355, -0.0076370873, -0.020147169, -0.0023358294, -0.046655163, 0.014618983, 0.0035864962, 0.0065655746, -0.029046867, -0.0077258116, 0.0047637955, -0.015028478, 0.032595824, -0.010947174, -0.028582772, -0.018973282, -0.019860523, -0.04447119, 0.012475957, 0.022767939, 0.028036779, 0.031148942, -0.0020867197, -0.012455482, -0.03123084, -0.011179222, -0.0073640905, -0.027736481, 0.015205925, 0.0067430227, 0.006568987, 0.0012472544, -0.0037127575, 0.019451026, -0.0131175, -0.019068832, 0.016980406, -0.04002134, -0.017894944, -0.03587179, 0.003199182, -0.012264384, -0.023423132, 0.023887226, -0.023696128, -0.0024791528, -0.032705024, 0.010837976, -0.018877733, 0.02882847, 0.01572462, 0.00780771, 0.012400882, -0.0035591966, -0.038683657, 0.0054462873, 0.02252224, 0.0023801913, -0.0035489593, 0.0042246263, 0.012462307, -0.0033117933, 0.0073640905, 0.01399109, 0.0092750685, -0.011513643, -0.018099692, -0.069232, 0.04179582, -0.03123084, -8.957709E-5, -0.016011266, -0.018208891, 0.0013283003, -0.0032401315, -0.0070228446, 0.035598792, -0.0021413192, 0.012462307, -0.0042451015, 0.007138868, -0.0012950288, 0.009049846, 0.0134109715, -0.0044566737, 0.0026924317, 0.0019877583, -0.020652212, 0.023696128, 0.01998337, 0.012953701, 6.769469E-4, 0.012066461, -0.0053268513, -0.008729075, -0.032786924, -0.023846276, 0.03398811, -0.017267052, -0.00998486, -0.005323439, -0.015806518, -0.03655428, -0.0031172829, 0.009015721, 0.006708898, -0.0020867197, -0.00633694, -0.028883068, 0.0033800425, -0.01483738, -0.0130492505, 0.013526995, -0.00788961, 0.020147169, -0.003310087, 0.0076439125, 0.03218633, -0.0025132773, -0.013840941, -0.025661705, 0.010681002, -0.015356074, 0.055090766, 0.017608298, -0.012237084, -0.015533522, 0.031913333, -9.4962386E-5, 0.028091379, -0.019532926, -0.0051494036, 0.0046170596, 0.024965564, -0.0040301164, 0.009575365, -0.038164962, -0.0102919815, -0.019669425, 0.0094456915, 0.03652698, 0.013281298, 0.01816794, 0.011349845, -0.00436795, -0.003325443, 0.027722832, 0.006384714, -0.004739908, -0.03991214, 0.01045578, 0.0059820437, 0.0130356, -0.0011883895, 0.01647536, 0.007875959, 1.2679424E-4, -0.0071729925, 0.023163784, 0.004545398, -7.302666E-4, 0.016270613, 0.019328179, -0.022140047, -0.023109185, 0.0048695817, 0.021348355, -0.019423727, -0.015915718, -0.008046582, -0.01751275, -0.017963193, 0.00457611, -0.027422536, -0.015301474, 0.015369724, 0.026316898, 0.023955476, 0.012776254, -0.020174468, 0.019724024, -0.045672376, 0.027367936, -0.00826498, -0.007937384, -0.023477731, 0.03740057, 0.01829079, -0.0030336776, 0.036035586, -0.004228039, 0.0433246, 0.015219576, 0.015451623, -0.022180995, 0.004791095, -0.0028101616, -0.0019160968, -0.01177299, -0.009841537, 0.0037502944, -0.018427288, 0.011998212, 0.011663791, 0.030357251, -0.01991512, 0.06879521, 0.019737674, -0.011172397, 0.025811853, -0.029101467, 0.0146462815, 0.017280702, 0.025648056, -0.010681002, -0.021321055, -0.01395014, -0.0133631965, 0.0036854576, -0.038765553, 0.0019689898, -8.07047E-4, 0.02433767, 0.014932929, -0.0045215106, -0.0151786255, -0.008408303, 0.0020321205, 0.016134115, 0.012639755, -0.009998511, -0.0133631965, 0.015096727, -0.009268244, 0.003658158, -0.03226823, 0.011868538, -0.023068234, -0.006405189, -2.806749E-4, 0.017267052, 0.016912157, 8.377591E-4, 0.016734708, 0.0027589747, 0.012230259, -0.016393462, -0.010367056, -0.02616675, -0.035271194, 0.012776254, -0.01571097, -0.012687529, -0.02780473, -0.012653405 ], + "id" : "e0153e1d-55f8-4d17-929f-b1aefdce0556", + "metadata" : { + "source" : "movies.csv" + } + }, + "5d1bccfc-f59e-4a6b-8f0b-ef51964bd91a" : { + "text" : "When Daniel learns his ex needs a housekeeper he gets the job -- disguised as a British nanny. Soon he becomes not only his children's best pal but the kind of parent he should have been from the start.,18.126,20th Century Fox-Blue Wolf Productions,11/24/93,25000000,441286195,125,Released,She makes dinner. She does windows. She reads bedtime stories. She's a blessing... in disguise.,7.2,5390,Robin Williams-Sally Field-Pierce Brosnan-Lisa Jakub-Matthew Lawrence-Mara Wilson-Robert Prosky-Anne Haney-Harvey Fierstein-Scott Capurro-Polly Holliday-Sydney Walker-Joe Bellan-Martin Mull-Terence McGovern-Karen Kahn-Eva Gholson-James Cunningham-Ralph Peduto-Scott Beach-Juliette Marshall-Drew Letchworth-Jessica Myerson-Sharon Lockwood-James P. Cullen-Kenneth Loo-Jeff Loo-Betsy Monroe-Joseph Narducci-James Cranna-Dr. Toad-Adele Proom-Rick Overton-Dan Spencer-Paul Guilfoyle-Molly McClure-Andy Prosky-William Newman-Christopher Pray-Geoff Bolt-Dick Bright-Adam Bryant-Tavia Cathcart-C. Beau Fitzsimons-Jeff Moeller-Benne Alder-Smadar Hanson,san francisco california-transvestite-parent child relationship-restaurant-nanny-social worker-mask-fake identity-custody battle-responsibility-voice acting-divorced couple,/szvidvi0Fo4j2gmMtk1sNe1rkzw.jpg,/xLjgy6mjefWzNzMKxfwfrKgoVTq.jpg,289521-879-8844-2277-786556-1593-10312-9574-771-2005-1597-772-854-801-744939-8839-838189-251-818530-10830-18360\r\n87101,Terminator Genisys,Science Fiction-Action-Thriller-Adventure,en,The year is 2029. John Connor leader of the resistance continues the war against the machines. At the Los Angeles offensive John's fears of the unknown future begin to emerge when TECOM spies reveal a new plot by SkyNet that will attack him from both fronts; past and future and will ultimately change warfare forever.,100.678,Skydance-Paramount-Annapurna Pictures,6/23/15,155000000,440603537,126,Released,Reset the future,5.921,7744,Arnold Schwarzenegger-Jason Clarke-Emilia Clarke-Jai Courtney-J.K. Simmons-Lee Byung-hun-Dayo Okeniyi-Matt Smith-Courtney B. Vance-Michael Gladis-Sandrine Holt-Wayne Bastrup-Gregory Alan Williams-Otto Sanchez-Matty Ferraro-Griff Furst-Ian Etheridge-Nolan Gross-Seth Meriwether-Afemo Omilami-Teri Wyble-Kerry Cahill-Mark Adam-Kerry O'Malley-Willa Taylor-James Moses Black-Terry Dale Parks-Douglas Smith-Anthony Michael Frederick-Brandon Stacy-Brett Azar-Douglas M. Griffin-Thomas Francis Murphy-Joshua Mikel-John Edward Lee-Christion Troxell-Luke Sexton-Aaron V. Williamson-Tony Donno-Ernest Wells-Larry E. Lundy Jr.-Ross P. Cook-Christopher Heskey-Moses Munoz-Lisa McRee-Seth Carr-Bryant Prince-Michael D. Anglin-John L.", + "embedding" : [ 0.011375393, -0.01905481, -0.025707567, -0.036905006, -0.015906386, 0.036466964, 0.012114588, -4.61997E-4, -0.018493569, -0.025803389, 0.020122536, 0.032770988, 0.011943478, 0.011950322, 0.0048013465, -0.0024862282, 0.01687829, -0.016631892, 0.0046268143, -0.020697465, -0.028116796, 0.011519126, -0.016631892, -0.0081106145, 0.012203565, -0.0082064355, 0.024721973, -0.014099464, -0.009664292, -0.0069949767, 0.011779212, -0.01927383, -0.0044933488, -0.02064271, -0.004832146, -0.012046144, -0.0010754263, -0.014167908, 0.026131919, 0.017275266, 0.025132637, 0.006378981, -0.016317049, -0.012915383, -0.0119161, 0.024133354, -0.004000552, -0.015372522, -0.023353092, 0.016166473, 0.017261578, 0.049361814, -0.023065628, -0.035426613, -0.008254346, 0.0032579345, -0.010136557, 0.008973008, -0.0042332616, -0.013770933, 0.0051641, -0.012497875, -0.028253684, -0.016139096, -0.016152784, -0.0026830048, -0.014085775, -0.0054139206, -0.0076178173, 0.015126124, 0.029266655, 0.003252801, 0.011327482, 0.01847988, 0.02440713, -0.018493569, -0.029129766, 6.5064576E-4, -0.004202462, 0.009431583, 0.0066630235, -0.0084939, -0.026830047, 0.00975327, 0.026063476, 0.016714025, -0.021258706, 0.028883368, -0.025693879, 0.018288236, 0.015920075, 0.041367553, -0.0029807363, 0.0017555886, 0.012675829, 0.01334658, -0.009917536, 0.021395594, -0.026652094, -0.032004416, -0.009219407, -0.0030064026, -0.013278136, -0.007836838, -0.0042982833, 0.0099106915, -0.022435943, -0.012819561, 0.029732075, 0.008049014, 0.017056245, 5.4370204E-4, 0.032469835, -0.042736433, -0.00838439, -0.027678754, 0.014154219, -0.023489982, -0.00804217, -0.005081967, 0.026049787, 0.04071049, 0.026898492, -0.021737814, 0.021587238, 0.02258652, 0.014961858, -0.009630071, -0.012559474, -0.0108346855, 0.018767346, 0.0018257437, 0.028198928, 0.0152356345, -0.040436715, 0.028609592, -0.035152838, -0.004794502, -0.016385494, -0.0034324666, 0.030498646, 0.04024507, -0.025365347, -0.011614947, -0.0189453, -0.0015938897, -0.0089866975, -0.006977866, 0.017658552, -6.951344E-4, 0.020779599, 0.011491748, 0.013716178, -0.00120547, 0.036138434, 0.029294033, -0.0045652147, 0.001830877, -0.023558425, -0.01575581, -0.010184467, 0.003047469, 0.009917536, -0.00958216, 0.010766242, 0.02305194, 0.014852348, -0.019150632, -0.017028868, -0.013045426, -0.013572445, 0.032250814, -0.031648505, 0.030717667, 0.014879726, 0.00550632, -0.007877905, -0.017631175, -0.020040404, 0.0068649333, 0.0067143566, 0.02191577, 0.025146326, 0.03151162, -0.010964729, 0.010923662, 0.013599823, -0.026528895, 0.012792184, 0.0021713858, -0.0019147209, 0.013024894, 0.0018120549, -0.018520946, -0.621581, -0.005632941, -3.8579958E-5, 0.0029105812, 0.011115306, 0.019082187, -0.0020447646, -0.0075356844, -0.032113925, 0.0039457968, -0.013011204, 0.012703206, 0.019588673, 0.005674008, -0.018958988, -0.016111718, 0.005540542, -0.016686648, -0.0025752054, -1.2811861E-4, -0.0339756, 0.031675883, 0.0026248274, 0.008569188, 0.02817155, -0.0021936302, 0.0017256443, -5.0563004E-4, 0.010348733, -0.020327868, 0.006481647, 0.03846553, 0.009287851, 0.0073987963, 0.040464092, -0.019479163, -0.014113153, 0.044077937, 0.020013025, 0.02588552, -0.05215433, -0.019807694, 0.016864602, 0.0063036922, -0.012915383, 0.02008147, 0.004534415, 0.0043393495, 0.001950654, 9.06883E-5, 0.003559088, 0.016453939, -0.0051572556, -0.014701772, -0.016056962, 0.0011079373, 0.016604515, -0.042517412, 0.026255118, -0.005612408, -0.01700149, 0.005968317, 0.0071797757, -0.009719048, -0.017576419, 0.032223437, 0.00964376, -0.004284594, -0.009534249, -0.0259129, 0.004873213, 0.013031738, -0.010992106, 0.009137274, 0.0022364077, -0.0020139648, 0.031785395, -0.0035026218, -0.014482751, 0.023093006, 0.018219793, -0.021381905, -0.0025957387, 0.014167908, 0.02989634, -0.0063755587, -0.015112435, 0.012326765, -0.0033794225, -0.017603798, 0.009369983, 0.02522846, 0.0050032563, -0.0078915935, -0.0018000773, 0.003285312, -0.0064884913, -0.009342606, 0.023928022, -0.069484346, -0.0061565377, -0.005759563, 0.02795253, -0.019944582, 0.01984876, 0.002361318, 0.00290887, 0.01734371, 0.024804106, -0.0155504765, -0.007884749, -0.008822432, -0.022490699, -0.017740685, -0.0079874145, -0.025009438, 0.011204283, 0.021505104, -0.008959319, 0.0025580944, 0.0058793398, -0.0039218413, 0.0015425567, -2.6928436E-4, 0.009452117, 0.025488546, 0.0052222773, 0.0010138268, 0.018438814, 7.443285E-4, -0.011731301, -0.00458917, 0.010540376, -0.012525252, 0.019082187, 0.0042298394, 0.024831483, 0.01295645, 0.0057219183, -0.0058930283, -0.022682343, 0.0033623115, -0.0054173428, -0.0010660153, -0.007426174, -0.015783187, -0.015523099, -0.009055141, -0.0132165365, -0.0048869015, -0.013312358, 0.027090136, 0.0010882596, 0.0074535515, -0.0028301594, -0.0019592096, -0.015468344, -0.017521665, -0.010677264, -0.009636915, 0.011608102, 0.026063476, -0.011532814, -5.9589057E-4, 0.009965447, -0.0015562455, -0.0028489814, 9.23994E-4, -0.006762267, -0.030416515, 0.014975547, -0.020820664, -0.0127784945, -1.4095186E-4, -0.010903129, 0.024434509, -0.01768593, 0.026939558, 0.0047329026, 0.013250759, 0.0031450018, 0.00804217, -0.03011536, -0.01328498, 0.037835844, 0.027651377, 0.034167245, 0.008692388, -0.008398079, 0.0046062814, 0.007391952, 0.0046439255, -0.012278854, 0.011840812, -0.006478225, 0.0058553843, 0.012107744, -0.0046781474, 0.015482033, -6.912844E-4, 0.029157145, 0.0029037367, -0.0069983993, -0.014222663, 0.0054789423, -0.03274361, 0.0089114085, -0.03115571, -0.0073714186, -0.015194568, 0.011779212, -0.0067964895, -2.3570402E-4, -0.0024246287, 0.0037507312, 0.009150963, -0.031648505, 0.018466191, -0.0035488214, 0.009055141, 0.0102255335, -0.007275597, 0.019862449, 0.014879726, -0.021477727, 0.0043941047, 0.0089114085, -0.025748633, 0.009233096, -0.0012670696, -0.004175084, 0.0018548324, -7.5716176E-4, 0.015345145, 0.0031039354, -0.015673677, 0.034194622, -0.01768593, 0.01779544, -0.032332946, -0.013565601, 9.0602745E-4, 0.027008003, -0.003627532, 0.0013628912, -0.013182314, 0.007843683, 0.016221229, -0.0223675, 0.047062095, -0.02202528, 0.032634098, 0.0072071534, 0.022175856, 0.009890158, -0.016125407, -0.0035693545, -0.0041511287, 0.033729203, 0.023996467, 0.027747197, -0.019930894, 0.009267318, -0.0041887728, 0.0045583704, -0.0047671245, -0.018986365, -0.022340123, -0.010643042, -0.046131257, -0.009903847, -0.017275266, -0.008452834, 0.0028301594, 0.0054173428, -0.008117459, 4.431749E-4, 0.011026328, 0.014852348, 0.007118176, -0.015837941, -0.028691726, 0.017836507, 0.012894849, -0.019561294, -0.011573881, -0.004291439, 0.0029311143, -0.041832972, -0.0070907986, -0.010259756, 0.030471269, -0.02522846, 0.0013406469, 0.01300436, -0.0012242921, 7.973726E-4, -0.02510526, 0.022778163, -0.012497875, 0.0152356345, 0.005270188, -0.006266048, -0.007884749, 0.0043427716, -0.018397747, 0.009650604, -6.1556825E-4, -0.0065398244, -0.018384058, 0.002837004, 0.011991389, -0.044735, 0.026282497, -0.015221946, -0.006296848, -0.024585085, 0.0021816525, -0.0038362863, -0.015933763, -0.03307214, -0.015372522, -0.015180879, 0.02042369, 0.09675244, 0.032688856, 0.0222443, 0.021819947, -0.0122925425, -0.0057424516, -0.019794004, -0.012990671, 0.017603798, 0.009589004, 0.026857426, -0.016056962, 0.00787106, 0.010923662, -5.398521E-4, -0.007864215, 0.0027993596, -0.007494618, -0.0011669702, -0.006378981, -0.008165369, -0.010205001, 0.028938124, 0.0431471, -0.0013705911, -0.007966882, 0.009390517, 0.011190594, -0.017658552, -0.0061668046, -0.014893414, 0.0072824415, 0.0041340175, 0.013709334, 0.004637081, 0.02294243, 0.0064884913, 0.018603079, 0.045556325, -0.008254346, 0.011786057, 0.002429762, 0.0074330186, -0.019711873, 0.01950654, -0.015659988, -0.0134355575, 0.03893095, 0.013914665, -0.030881934, 0.033564936, 0.0074124853, -0.014250041, 0.006224982, 0.019752938, 0.007918971, 0.0099106915, -0.004739747, -0.013524534, 0.011005796, -0.008801899, -0.02692587, 0.0019386763, -0.003956063, 0.007960037, -0.019013744, -0.011881879, 0.0016888557, 0.0018206104, 0.006310537, 0.028144173, -0.01756273, -0.013072805, -0.0015374233, 0.030553402, 0.013483468, 0.0392321, -0.014208974, 0.0017607219, 0.0026248274, -0.03890357, -0.03594679, 0.008651322, -0.0035898879, -0.0053180987, -0.004240106, -0.008658166, -5.394243E-4, -0.007302975, 0.01295645, -0.010403488, 0.030252248, -0.024913616, 9.513716E-4, 0.036302697, 0.00605045, 0.010061268, 0.029485675, 0.007693106, -1.522879E-4, 0.0025290058, -0.023120383, -0.020108847, -0.011786057, 0.002583761, -0.02431131, -0.020410001, -0.018082906, -0.04016294, -0.039286856, -0.001650356, -0.020122536, -0.014414307, 7.473229E-4, 0.019835072, 0.013770933, 0.013243914, 0.0077410163, 0.013620356, -0.0020139648, 0.022873985, -0.022545453, 0.022983495, 0.03000585, -0.0039594853, 0.022545453, 0.0035282883, -0.027528176, 0.015331456, 0.026090853, 0.0076041287, -0.01317547, -0.015468344, -0.012183032, -0.024119666, -0.02179257, -0.0042982833, 0.010964729, -0.022326432, 0.006002539, -0.015933763, 0.0015528232, 0.019862449, -0.0067177787, 0.033866093, -0.024092289, 0.013572445, -0.01300436, 0.0046610367, 0.04550157, -0.009294695, -6.7032344E-4, -0.018178726, 0.006382403, 0.01687829, -0.023489982, -0.023818512, 0.029376166, 0.03184015, 0.025803389, 0.038958326, -0.01077993, 0.02418811, 0.004534415, 0.013900977, 0.01231992, -0.027432356, 1.00313235E-4, -0.018301927, -0.007843683, 0.020971242, 0.022066345, 0.019588673, 0.023667935, -0.0019369652, 0.029348787, 0.0046781474, 0.0018548324, 0.00622156, -0.024297621, 0.005126456, -0.0030885355, -0.03058078, 0.009773803, -0.016796159, -0.013948888, 0.031210463, 0.0012499585, 4.101293E-5, -0.0046131257, 0.026679471, 0.0010377822, 0.025611745, -0.022901362, -0.0046302364, -0.020615334, -0.0069710216, -0.0120393, -0.01277165, 0.006293426, -0.013750399, 0.022230612, -7.5930066E-4, 0.005629519, -0.0037267758, 0.035618257, -0.008459679, -0.036439586, 0.0015186013, -0.0060162274, -0.018096594, -0.046295524, -1.005806E-4, -0.039286856, -0.021778882, -0.0153999, -0.01837037, 0.00533521, -0.028664347, -0.04892377, 0.027637687, -0.013900977, 0.03512546, 0.011436992, 0.05201744, 0.021354528, -0.005968317, -0.017973395, -1.0246548E-5, -0.002416073, -0.005557653, 0.013681956, 0.025515923, -0.012059833, 0.009281007, -2.496067E-4, 0.0050580115, -0.040573604, -0.04092951, 0.021696748, 0.0189453, 0.015783187, -0.021162884, -0.006888889, -0.016385494, 0.022901362, 0.008842965, 0.0028712258, 0.007426174, -0.023640558, -0.018575702, -0.020916486, 2.2164093E-5, 0.024776729, -0.004171662, -0.024215488, 0.0014227796, -0.043941047, -0.0120735215, -0.02316145, -2.5880386E-4, 0.050374784, -0.017234199, 0.016741402, 0.0053146766, 0.012148811, 0.0052325437, -0.008226969, 9.855937E-4, 0.030087983, -0.006676712, 0.025967654, 0.007597284, 0.008630789, 0.021464039, -0.0058724955, -0.017466908, -0.010506154, -0.018794723, -0.0050648563, 0.018876856, 0.0028883368, -0.01015709, -0.0013877021, -0.02121764, -0.01077993, 0.019711873, -0.013141248, 9.667715E-4, -0.027240712, 0.012032455, -0.0106635755, -0.003423911, -0.019794004, -0.0044557042, -0.004041618, -0.004722636, 0.02145035, -0.008466523, 0.0088155875, -0.032579344, -7.079676E-4, -0.030745044, -0.011957167, -0.0063242256, 0.009096208, 0.019821383, -0.024092289, -0.004363305, -0.02577601, -0.0068136, 8.114892E-4, 0.009828558, -0.032497212, -0.014811282, 0.02614561, 0.0039389525, -0.0049177012, 0.0029465142, 0.0205332, 0.012388364, -0.005492631, 0.002756582, -0.014647016, 0.008952475, -0.03709665, 0.002226141, -0.012525252, -0.030389136, 8.033615E-4, 0.02614561, 0.027788265, 0.010875751, -0.015413589, -0.04383154, -0.0070360433, -0.010684108, 0.034879062, -0.008459679, 0.003490644, 0.02316145, 0.0026077165, 0.05053905, 0.0120393, -0.02510526, -0.018890545, 0.0024092288, -0.021641992, -0.025242148, -0.013360268, 0.0119777005, 0.014414307, 4.9194123E-4, -0.026597338, -0.026857426, -0.0012294253, -0.03058078, -0.03000585, 8.749335E-6, 0.022654964, 0.030608157, 0.0054789423, -0.003541977, 0.0015776342, -0.0065261354, 0.022230612, -0.027418667, -0.01950654, 0.022189545, 0.034742173, 0.026405696, 0.0038431305, -0.024694595, -8.5255556E-4, 0.0068649333, 0.02270972, 0.0032904453, 0.023873268, -0.022846607, -0.010074957, -0.01802815, 0.0067314673, 1.36888E-4, -0.016549759, 0.007679417, -0.0028832036, -7.0069544E-4, 0.009725893, 0.03137473, -0.02327096, -0.01186819, 0.035399236, -0.0054344535, -0.030389136, 0.004284594, -0.0037952198, -0.014345863, -0.034222, 0.032086547, 0.0076588835, 0.010430866, 0.022983495, 0.021532483, -0.020382624, 0.007220842, -2.8703702E-4, -0.009226251, -0.010280289, 0.0012046144, -0.0073645744, 0.038602415, -0.027979907, 0.024667218, -0.028445326, 0.0036651762, -0.022572832, 0.02281923, 0.0014527239, 0.014427995, 0.0011353148, -0.053304188, 0.0054412982, -0.023093006, 0.0154546555, 0.005013523, -0.0064440025, -0.030745044, -0.00650218, 0.0068375557, -0.0025529612, -0.019424407, -0.02520108, 0.01574212, -0.020286802, -0.004876635, 0.019794004, 0.18715328, -0.0017401887, 0.013052271, 0.04812982, 0.0085965665, -0.0061976044, 0.0063036922, 0.028801236, -2.9152868E-4, 0.011799745, -0.0027189378, 0.011676546, 0.0029311143, 0.0037370424, 0.013757244, -0.036384832, -0.023421537, -0.02476304, -0.01261423, -0.02258652, -0.017603798, 0.0026624717, 0.0056397854, -0.03671336, 0.013223381, 0.004804769, -0.023531048, 0.013312358, 0.018739967, 0.0073782634, -0.014523817, -0.0120393, -0.001830877, 0.0104445545, -0.021436661, -0.0017427554, -0.011361704, 0.0011413037, 0.012627918, 0.008035325, 0.012456808, -0.012860628, -0.035317104, 0.009267318, -0.005283877, 0.02087542, -0.008165369, 0.0025341392, -0.027637687, 0.0133876465, -0.032634098, -0.007521996, 0.009157808, 0.010348733, -0.017699618, 0.006060716, 0.010239222, 0.003815753, -0.00815168, 0.007200309, -0.01722051, 0.040820003, -0.023928022, 0.03750731, -0.0031792237, 0.009246784, -0.016563447, -0.015536788, 0.00622156, -0.03824651, 0.0016743114, -0.0067656892, -0.027856708, 0.0065774685, -0.0023048518, -0.018562013, 0.01426373, 0.007391952, -0.0056705857, 0.02440713, -0.03887619, -0.0019489429, -0.0029636251, -0.0156463, -0.007563062, -0.03285312, 0.0066596013, -0.028445326, -0.012408897, -0.02485886, -0.003572777, -0.025036816, -0.02359949, 0.005218855, -0.023134071, -0.0017898106, 0.022121102, 0.025187392, -0.00752884, -0.0155504765, -0.053632718, 0.021395594, 0.034769554, 0.014222663, -0.019876137, -0.0073645744, 0.008644477, 0.014756527, 0.02394171, -0.007686261, -0.011833968, -0.024037533, 0.008124303, -0.010512998, 0.010903129, 0.031046199, -0.010937352, -0.036302697, 0.024557708, -0.007097643, -0.005383121, 1.3121999E-4, 0.013764088, 0.009917536, -0.0016486449, -0.02588552, -0.026556272, 0.009253629, 0.007131865, -0.036247943, 0.0129975155, -0.03115571, 0.008343324, -0.014044709, 8.183336E-4, -0.0011036595, 0.047609646, 0.014770215, 0.0060812496, -0.009568471, 0.017946016, -0.016946735, -0.0017675663, 0.0045412593, 0.0032493789, -0.039642766, 0.024489263, 0.015618921, -0.015194568, -0.045337304, -0.02577601, -0.010150245, -0.008261191, 0.008685543, 0.029868962, -0.014756527, -0.038054865, -0.034139868, -0.007439863, 0.020122536, -0.054590933, 0.032004416, 0.015974829, -0.006635646, -0.020355245, -0.018110283, -0.1747786, 0.012621074, 0.008500745, -0.02098493, 0.022080034, 0.010807307, 0.015358834, -6.528916E-5, -0.01151228, -0.012059833, 0.023750069, 0.00798057, -0.029294033, -0.0085555, -0.0012422586, 0.03914997, -0.020286802, 0.010875751, 0.024776729, 0.010232378, 0.044351712, -0.0068444, -0.017535353, -0.013723022, 0.008288569, 0.017932327, 0.020108847, -0.0046507698, -0.0029944251, -0.017111, -0.027158579, -0.0029670475, -0.023407849, 5.98885E-4, 0.0012747695, -0.0010814152, -0.020108847, -0.016837224, 0.002327096, -0.006485069, 0.018685212, 0.010163934, 0.022873985, 8.7693875E-4, 0.0013072804, 0.0015887563, 0.026597338, -0.015509411, -0.0055165864, -0.016043274, -0.016604515, -0.047062095, 0.024776729, -0.008884031, -0.002085831, 0.016385494, -0.0089866975, 0.0046268143, 0.0088155875, 0.004380416, -0.022203233, -0.007610973, -0.004708947, 0.019835072, 0.0023732956, -0.009212563, 0.0028010707, 0.010697797, -0.033948224, 0.008822432, -0.028144173, 0.0035693545, 0.0033640226, 0.010218689, 0.008398079, -0.027008003, -0.029102389, -0.0033058452, -2.5260114E-4, 0.028582215, -0.01118375, 0.035645634, -0.020478444, -0.003541977, -0.012128277, -0.009376828, 0.025406413, 0.0010121156, 0.005300988, -0.0064440025, -0.0042674835, -0.020232046, -0.018165037, -0.009602693, 0.012696362, 0.0069504883, 0.015317767, 0.009253629, 0.002789093, -0.013449246, -0.02110813, -0.002498206, -0.02496837, 0.03162113, 0.038602415, 0.024051221, -0.006437158, 0.018425126, 0.020916486, -0.0026436495, 0.0027446044, 0.013182314, 0.02225799, 0.006686979, -0.024680907, 0.015865318, 0.0012790472, -0.021149196, 0.0020105424, 0.004157973, 0.061818622, 0.008699233, -0.0031278909, -0.0156463, 0.0020105424, 0.008849809, -0.10151614, 0.008528123, 0.0061154715, 0.04755489, -0.022449631, 0.016139096, -0.005766407, 0.01950654, -0.0069367993, 0.019944582, 0.004154551, -0.023763757, 0.02476304, -0.006895733, 0.01295645, -0.004999834, -0.01802815, -0.016015897, -0.009684826, 0.037151404, -0.0115396585, -0.005674008, -0.013935198, -0.015920075, -0.014907103, 0.010800463, -0.0292119, 0.030416515, -0.010793619, 0.010287133, 0.00917834, -0.010985262, 0.013339736, -0.04563846, -0.028363194, -0.023818512, -0.0062694703, -0.017234199, 0.002960203, -0.046843074, 0.018096594, -1.6041563E-4, -0.0032818897, -0.007932659, -0.004667881, -0.00718662, -0.017754374, 0.030443892, -0.010766242, -0.015714742, -0.00630027, -0.015577855, -0.023777446, -0.007884749, 0.021669371, 0.015577855, 0.023435226, 0.0063721365, -0.03534448, -0.015180879, -0.0011798035, -0.0011276149, -0.031128332, 0.01734371, 0.0021936302, 0.004859524, -0.0032220013, -0.009219407, 0.019451786, -0.03145686, -0.019150632, 0.034468397, -0.017617486, 0.0073987963, -2.6243998E-4, 0.0023630292, -0.029759452, -0.0028986034, 0.018753655, -0.022038968, 3.5612268E-4, -0.022381188, -0.0024656951, -0.015605232, 0.0034307556, 0.016358117, -0.0038568194, 0.025721256, 0.0024434507, -0.0360563, -1.3432135E-4, 0.018548325, -0.009089363, -0.018520946, 0.0036685984, -0.0109305065, -0.025693879, 0.01084153, 0.0062420927, -0.0028678037, -0.021874703, -0.012744273, -0.073152944, 0.017152067, -0.01700149, -0.01575581, -0.013086493, -0.019246453, 0.017576419, 0.0038431305, -0.004465971, 0.030389136, -0.01575581, 0.028363194, 3.3238117E-4, -0.011450681, -0.023900645, -0.002015676, 0.014592261, 0.004910857, 0.010307667, 0.016563447, -0.005294143, 0.0040655737, 0.010471932, -0.0032083124, 0.013894132, 0.0155504765, 0.009671138, -2.6671772E-4, -0.0026231164, -0.016221229, 0.020711154, -0.012360986, 0.0019626317, 0.011779212, -0.020273114, -0.021628303, 0.006892311, -0.017631175, 0.033510182, 0.01334658, -0.021395594, -0.036932383, -2.1698888E-4, -0.013948888, -0.0010651598, 0.009801181, -0.003747309, 0.0017247888, 0.0144553725, 0.010027046, 0.024352375, 0.010581442, -0.015249323, -0.0016623336, 0.028335815, -0.0037781089, 0.05281139, -0.003884197, -0.0054139206, -0.011840812, 0.02726809, 0.0020755643, 0.015482033, -0.017959706, 0.01598852, -0.011306949, 0.03329116, -0.007905282, 0.0019455208, -0.026624717, -0.014674393, 0.0040176627, 0.019095875, 0.021286083, 0.01242943, 0.014167908, -0.012799028, -4.6926917E-4, -0.023531048, 0.02396909, 0.022518076, -0.011717613, -0.014386929, 0.031210463, 0.012545785, 0.022682343, -0.0012114588, -0.016180161, 0.017699618, 0.011964011, -0.004034774, 0.00622156, 0.021641992, 0.0028609592, -0.00735773, 0.02359949, -0.019684495, -0.017439531, -0.005044323, 0.02714489, 0.0044420157, 0.006652757, -0.012313075, -0.016809847, -0.008480212, -0.0077547054, -0.01939703, -0.01278534, 0.03466004, 0.019574985, 0.02394171, -0.0027582932, -0.008699233, 0.02522846, -0.041586574, 0.029376166, -0.019780315, -0.0242018, -0.019711873, 0.009212563, 0.007734172, -0.014072087, 0.042572167, -0.015783187, 0.026556272, 0.0050717006, 0.030060604, -0.023489982, -0.0045549483, -5.407076E-4, -0.0033417784, 0.0020327868, -0.01608434, 0.011669702, -0.008165369, -0.00325109, 0.015865318, 0.027049068, 0.0048903236, 0.0800521, 0.012929072, -0.0145785725, 0.010567754, 9.967157E-4, -0.010259756, 0.015796876, 0.017234199, -5.407076E-4, 0.008055859, 0.013065959, -0.0024913617, 0.019027432, -0.020916486, 0.0015793453, -0.007912126, 0.005253077, 0.005557653, -0.01950654, 0.0016118562, -0.0042366837, -0.006464536, 0.027569244, 0.005718496, -0.007268753, -0.014783904, 0.031812772, -0.019547606, -0.0077957716, -0.016056962, 0.012230943, -0.025707567, 0.006680134, -0.008849809, 0.03307214, -0.0064953356, -0.01767224, 0.02394171, 0.022969807, 0.0046781474, -0.019561294, 0.012080366, -0.018466191, -0.006478225, 0.020273114, -0.0014287685, -6.3781254E-4, -0.01665927, -0.014824971 ], + "id" : "5d1bccfc-f59e-4a6b-8f0b-ef51964bd91a", + "metadata" : { + "source" : "movies.csv" + } + }, + "b793b117-d031-42a5-8381-a8050257b0f5" : { + "text" : "Young-Chelcie Ross-Dorothy Malone-Wayne Knight-Daniel von Bargen-Stephen Tobolowsky-Benjamin Mouton-Jack McGee-Bill Cable-Stephen Rowe-Mitch Pileggi-Mary Pat Gleason-Freda Foh Shen-William Duff-Griffin-James Rebhorn-David Wells-Mary Ann Rodgers-Adilah Barnes-Irene Olga L�_pez-Juanita Jennings-Craig C. Lewis-Michael David Lally-Peter Appel-Michael Halton-Keith McDaniel-Eric Poppick-Ron Cacas-Kayla Blake-Bradford English-Ashlyn Gere-Jeanne Basone-Doreen Foo Croft-Christa Connor-Anne Lockhart-Patricia Anne Isgate-Hayward-Ken Liebenson-Lindy Rasmusson-Byron Berline-Eddie Dunbar-Tom McKibbin-Julia Bond-Dave LaBrucherie-Pui Fan Lee-Andy Rolfes-Bob Sallese-Theodore Carl Soderberg-Damon Stout-Chase Watson,california-sexual obsession-san francisco california-detective-jealousy-eroticism-suspicion of murder-bisexuality-dying and death-dangerous-lover-striptease-sadism-police-psychopath-celebrity-femme fatale-sociopath-dead-neo-noir-erotic thriller-manipulative woman-novel writing-killed during sex,/76Ts0yoHk8kVQj9MMnoMixhRWoh.jpg,/7FRraud59N3s10bbf9bfYjvwx3v.jpg,813257-3093-62568-24963-15395-10998-407-861-5503-8984-2649-957606-400-17422-10068-5548-1813-36955-9326-14-345\r\n392044,Murder on the Orient Express,Drama-Mystery-Crime,en,Genius Belgian detective Hercule Poirot investigates the murder of an American tycoon aboard the Orient Express train.,40.764,The Mark Gordon Company-Scott Free Productions-Genre Films-20th Century Fox,11/3/17,55000000,352794081,114,Released,Everyone is a suspect,6.705,9188,Kenneth Branagh-Tom Bateman-Michelle Pfeiffer-Johnny Depp-Josh Gad-Willem Dafoe-Judi Dench-Derek Jacobi-Leslie Odom Jr.-Daisy Ridley-Pen��lope Cruz-Olivia Colman-Lucy Boynton-Marwan Kenzari-Manuel Garcia-Rulfo-Sergei Polunin-Miranda Raison-Phil Dunster-Hayat Kamille-Joseph Long-Gerard Horan-Rami Nasr-Adam Garcia-Ziad Abaza-Asan N'Jie-Ekran Mustafa-Andy Apollo-Sid Sagar-Michael Rouse-Matthew Hawksley-Kate Tydman-Pip Jordan-Yasmin Harrison-Jack Riddiford-Hadley Fraser-Maxime Durand-Yassine Zeroual,venice italy-detective-based on novel or book-europe-professor-orient express-knife-investigation-princess-remake-murder-snow-whodunit-train-stabbing-alps mountains-murder mystery-1930s-steam train,/kc2gJjebceoFgOQbukzPzP8SXVZ.jpg,/2J283YNxKhxAqHeVegUJ5mzLfGb.", + "embedding" : [ 0.007609559, -0.032851357, 0.010351743, -0.051936958, -0.022184266, 0.04584931, 0.0032837647, -0.014670682, -0.009871861, -0.032631986, 0.008164852, 0.030602768, 0.003917895, 0.0045451694, -0.018166967, 0.0092754355, 0.024912737, 0.007924911, 0.009679908, -0.031452846, -0.021567274, -0.016055485, -0.020456688, 0.021868914, 0.0044423374, 0.022883521, 0.017289467, -0.007979754, -0.010625961, 0.0023771303, 0.00783579, 0.006701211, 0.0062521785, -0.038801897, -0.014478729, 0.0081442855, 0.010694516, -0.028326755, 0.012339826, 0.014944901, 0.00661209, 0.012195861, -0.023034342, -0.010817914, 0.007424462, 0.010961879, 0.018783957, -0.012559201, -0.0074724504, 0.033811122, 0.021238212, 0.022348795, -0.013656074, -0.03422245, 0.012751154, 0.00724622, -5.1030325E-4, -0.0063310163, -0.0077740904, 0.008692722, 0.029067146, -0.030849565, -0.038445413, 0.0016007497, -0.0013470977, -0.0147940805, -0.010358598, 0.0019418087, 0.008946374, -0.0065263966, 0.008548757, -0.0022074578, 0.003928178, 0.009179459, 0.027819453, -0.05007227, -0.020196183, 0.010879613, -0.008240261, -0.005059329, 0.019496925, -0.024446566, -0.017906459, 0.0046925615, 0.0059608216, 0.0046651396, -0.013039083, 0.031864174, -0.013998847, 0.012723732, 0.012463224, 0.036827523, 0.0011003012, 0.0045554526, 0.017358022, 0.02314403, -0.013162481, 0.03093183, -0.027888007, -0.02208829, 0.0017909886, 0.009960982, -0.0058477065, -0.014465018, -0.0073284856, -0.0034020215, -0.0040652873, -0.009583931, 0.012230138, -0.0017687083, 0.020689774, -0.0073147747, 0.0069137304, -0.034441825, -0.011174398, -0.035895184, 0.010214633, -0.036471043, -0.01719349, -0.018729113, 0.014177089, 0.023788443, -0.007390185, -0.04541056, 0.02105997, 0.024007818, 0.014560995, 3.112807E-4, -0.006780049, 6.079935E-4, 0.020196183, -0.0236102, 0.006269317, -0.012387814, -0.01986712, 0.03254972, -0.0337837, 0.004658284, -0.015068298, -0.016494233, 0.026571758, 0.02598219, -0.03452409, -0.02031958, -0.016974116, 0.021978602, 0.015712712, 0.011476038, 0.016645053, 0.0041338415, 0.027874297, 0.0039727385, 0.0020840594, 0.007205087, 0.02048411, 0.006409854, -0.0045691635, -0.0026941954, -0.009152038, -0.023322271, -0.011962776, 0.0049633523, -0.0060945028, -0.012552345, 0.0014139384, 0.013512109, 0.020689774, -0.009501666, 0.03123347, 0.010255766, -9.186315E-4, 0.016178884, -0.047275245, 0.014807791, 0.011311507, 0.0063550104, 0.031699643, -0.012093029, -0.04275064, -0.008349949, 0.0027970271, 0.0053643966, 0.025954768, 0.043518454, -0.01838634, 0.011811956, 0.0060739364, -0.0188388, 0.008843542, -0.026201563, 0.0022794402, 0.019551769, 0.018331498, -0.010625961, -0.63662535, -0.0243643, -0.016329704, -0.0037807855, 0.010317465, 0.02389813, 0.0059916712, 0.007966043, -0.038363148, 0.0049496414, -0.0355387, 0.024569964, 0.02749039, -0.00141908, -0.00978274, -0.028655818, 0.011201819, -0.006049942, 0.027737187, 0.00489137, -0.0071639544, 0.013683496, 0.0070748334, 0.016549077, 0.031014096, 0.020127628, 0.006841748, -0.033454638, 0.0043874937, 0.007016562, -0.014245643, 0.0346612, 0.019291261, 0.0068486035, 0.046562277, 0.0017378589, -0.0050833225, 0.04302486, 0.03567581, 0.040913377, -0.016315993, -0.0015853249, 3.1213762E-4, -0.013052793, -0.008720144, 0.016315993, 0.011386917, 0.017412866, 7.85807E-4, -0.009179459, 0.010955024, 0.009741607, -0.01597322, -0.01000897, -0.002545089, 0.014506151, 0.02525551, -0.04796079, 0.00978274, -9.263439E-4, -0.02644836, 0.024309456, -0.003660815, 0.014273065, -0.021635829, 0.026969375, -0.0052341428, -0.013957715, 0.0092754355, -0.018578293, -2.4144069E-4, 0.018427473, -0.02540633, 0.0022383074, 0.0099678375, 0.013991992, 0.052375704, 0.005100461, 0.0028861482, 0.001392515, -0.0014790653, 0.014108534, 0.005217004, 0.03123347, 0.031919017, 0.0019623751, -0.031041518, 0.0056900308, 0.016562788, -0.0043360777, 0.012744298, 0.012209572, 0.013080215, 0.011715979, 8.179419E-4, -0.0033111866, -0.0075272936, 0.0073147747, 0.02195118, -0.07491645, -0.009871861, -0.02942363, 0.013107637, -0.011955921, -0.0036299655, 0.005498078, -0.001001754, -0.020360712, 0.02986238, -0.006814326, -0.010242055, -0.009577076, -0.03795182, -0.0046274345, -0.019661456, -0.02554344, 0.022019735, 0.012888263, -0.011297796, -0.015177986, -0.012168439, -9.057775E-4, -0.011743401, -0.027120195, 0.0059334, 0.018166967, 0.004192113, -0.0018098411, 0.010324321, 0.010406586, 0.0031826468, -0.019099308, 0.010365454, -0.017714506, 0.0018441185, -0.001571614, 0.020758329, -0.0066292286, 0.003557983, -0.013923437, -0.03106894, -0.007924911, -0.009008073, -5.124456E-4, 0.01853716, -0.009062917, -0.021896336, 0.00676291, -0.019812277, -0.0136903515, -0.024240902, 0.0018218382, -0.01792017, 0.0066155177, -0.018715402, -0.0021046258, -0.03614198, -0.005724308, 0.0041715465, -0.008425359, 0.0154110715, -6.195621E-4, -0.014149667, -0.012538634, 0.021155946, -0.022828678, 0.00575173, 0.007349052, -0.012977384, -0.016370837, 0.022814967, -0.014519862, 0.01405369, -0.0016770166, -0.022252819, 0.029341364, -0.013649219, 0.025049847, -6.3070224E-4, 1.4910623E-4, 0.01114012, -0.01046143, -0.021155946, -0.008425359, 0.032220658, 0.020209894, 0.03287878, -0.0073559075, -0.02466594, 0.024144927, -0.011921643, -0.010783637, -0.010680805, -0.004675423, 0.0040995646, 0.032165814, 0.029752692, 0.0051347385, 0.019880831, 0.00694458, 0.031178627, 0.0024182631, 0.013635508, 0.0053541134, 0.002810738, -0.0283816, 0.00638586, -0.031398002, 0.016398259, 0.018550871, 0.031288315, -0.0056386148, -0.027517812, -2.7978842E-4, 9.409117E-4, 0.02090915, -0.0152054075, 0.014231932, -0.010872758, 0.0018526878, 4.7688285E-4, 8.166565E-4, 0.031781908, 0.020264737, -0.024926448, -0.0041749743, 0.013683496, -0.018317787, 0.006828037, -0.00463429, -0.020100206, 9.786168E-4, 0.008822976, 0.009282291, -0.008219695, -0.030383393, 0.012799142, -0.010721938, 0.05692773, -0.031014096, -0.0097621735, 0.014231932, 0.026763711, -0.0048228153, -0.0013402422, -0.007931766, 0.019208996, 0.008637878, -5.5057905E-4, 0.040556896, -0.0013368145, 0.020662352, -0.0028844343, -0.001241695, -0.0010368881, 0.016165173, 0.011325218, 0.021622118, 0.028409021, 0.02928652, 0.0063790046, -0.033591747, 0.015507048, 0.0047405497, -0.0074313176, 0.010283188, -0.01538365, 0.006917158, -6.067081E-4, -0.026777422, -0.027271016, -0.018317787, -0.0048982254, 0.020415556, -0.007972899, -0.017865326, -0.0028021687, 0.01957919, 0.0051758713, 0.028792927, -0.014081112, -0.021457586, 0.019250128, 0.028134802, -0.023788443, -0.03224808, 0.0052341428, -0.013176192, -0.03150769, -0.010283188, 4.4646175E-4, 0.022472193, -0.015794978, 0.013848027, -0.0068760253, -0.014739237, -1.644239E-4, -0.022993209, 0.008809265, 0.027120195, -0.01840005, -0.0024268324, -0.016850717, -0.0070097065, 0.014725526, -0.022842389, -2.926424E-4, -0.011894221, 0.019963097, -0.0018081273, 0.0039007561, 0.0060705086, -0.044725012, 0.0022965786, -0.022335084, 0.013573809, -0.0063447272, -0.0010651669, 0.0089532295, -0.014163378, -0.020607509, -0.03493542, -0.034112763, -0.0021766082, 0.07979754, 0.032001283, 0.00902864, 0.0034414404, -0.0042092516, -0.0030181159, -0.0016641626, -0.014081112, 0.0062796003, -0.009316568, 0.02986238, -0.0021337615, 0.022321373, 0.0040241545, 0.0077192467, -0.011921643, -0.013553242, -0.0058579897, 0.007218798, -0.015301384, -0.026969375, -0.021334188, 0.007561571, 0.031727064, 0.0058888393, -0.014890057, 0.028025115, 0.013800039, 0.01626115, 0.023089185, -0.017879037, 0.013265313, 0.025653128, 0.0068760253, -0.0052341428, 0.0040618596, 0.031781908, 0.0041475524, 0.014670682, 2.5815086E-4, 0.020730907, 0.0053129806, -0.0015938942, 0.002992408, 0.017865326, -0.020374423, -0.0236102, 0.021580985, 0.030657612, -0.027888007, 0.021443876, 0.029834958, -0.025269222, -0.019250128, 0.025557151, 0.0040344377, -0.0137931835, -0.011572015, -0.011537737, 0.022623014, -0.0024816762, -0.040227834, 0.014081112, -0.015781267, 0.0072256536, -8.6507323E-4, -0.032741673, -0.0012588337, -0.0069514355, 0.0033129004, 0.008912097, -0.007883778, -0.018016146, 0.001811555, 0.020730907, 0.0060842196, 0.021718094, -0.014944901, 0.0418183, 0.017289467, -0.04124244, -0.025968479, 0.01090018, -0.01852345, 0.0013916581, 0.017508842, 0.002419977, 0.013916582, -0.012093029, 0.0042983727, -0.0047097, -0.014273065, -0.024419144, -0.022458483, 0.03869221, 0.002382272, -0.0035819772, 0.027133906, 0.017714506, 5.218718E-4, 0.015287673, -0.01926384, -0.0064852643, -0.041927986, -0.015438493, -6.298453E-4, -0.014835213, 0.001216844, -0.00754786, -0.012566056, -0.023856997, -0.027120195, 0.008802409, 0.010989301, -0.002863868, -0.002939278, 0.0010240342, 0.035922606, -0.0197163, 0.008487058, 0.0063138776, -0.01434162, 0.021087391, 0.0182081, -0.010104947, 0.0394326, -0.0015536183, -0.020730907, 0.021526141, 0.017741928, -0.0043532164, 0.0152054075, -0.013854883, -0.01381375, -0.013806894, -0.010180356, 0.0014927762, 0.00268734, -0.020031651, 0.013320156, -0.017248334, -2.3030057E-4, 0.006714922, -4.560487E-5, 6.341299E-4, -0.02509098, 0.011763968, -0.009679908, 0.008918952, 0.0077192467, -0.006019093, 0.01194221, -0.029478474, 0.0064338483, -0.0017618529, -0.041653767, -0.027079063, -0.0068451758, 0.020113917, 0.017508842, 0.03885674, -0.0076712584, 0.03841799, 0.011599436, 0.017495131, 0.02810738, -0.020442978, 8.033741E-4, -0.034770887, 0.0028330183, 0.02228024, 0.021279344, 0.0023462807, 0.0058374233, -0.015561892, 0.024611097, 0.01509572, 0.03093183, 0.0064407038, -0.032851357, -0.0376776, 0.014231932, -0.024542542, 0.01254549, -0.02986238, 0.011393772, 0.036251668, 0.0016444532, -0.0147940805, -0.01366293, 0.021334188, -0.0259959, 0.007650692, -0.0074861613, -0.005659181, -0.03496284, -0.016507944, -0.016617632, -0.014327909, -0.006533252, -0.0046411455, 0.020744618, 0.0011722834, -0.0033745996, -0.009385123, 0.023102896, -0.004449193, -0.032988466, 0.018112123, -0.015027165, -0.023226295, -0.026804844, -0.011051, -0.024186058, -0.005830568, 0.004137269, 0.003141514, 0.0032169241, -0.032741673, -0.0394326, -0.0016573071, -0.011846233, 0.032440033, 0.00798661, 0.045465402, 0.0150134545, 0.001519341, -0.008274538, 0.018235521, 0.00963192, -0.002431974, 0.022102, 0.019908253, -0.0077740904, 0.003941889, -0.009522232, 0.0064921197, -0.04255869, -0.0126209, 0.037321117, 0.033838544, 0.020127628, -0.024569964, -9.110262E-5, -0.030849565, 7.909486E-4, -0.008576179, -0.0022485906, 0.0110715665, -0.02149872, -0.028600974, 0.020840595, -0.013176192, 0.009323424, 0.011832522, -0.028518708, 0.008631023, -0.02180036, -5.6086225E-4, -0.0028552986, -0.005789435, 0.033975653, -0.047823682, 0.018907355, 0.015781267, 0.022485904, -0.0038013519, -0.0027147618, 0.0030301127, 0.030849565, 5.8185705E-4, 0.014876346, -0.0020600653, -0.024158636, 0.01613775, 0.015890954, -0.011400628, -0.0228561, -0.01613775, -0.010557407, 0.029944645, 0.007362763, 9.614781E-4, 0.02404895, -0.025008714, -0.015932087, 0.011064711, -0.003232349, 0.0068108984, -0.03987135, -0.011955921, -0.022115711, 0.008726999, 0.006142491, -0.0042640953, -0.0128814075, 0.005007913, 0.02048411, -0.0035545554, 0.0010565976, -0.02270528, -0.017399155, -0.03959713, -0.013697207, -0.0188388, 0.0035134226, 0.019154152, -0.0079112, -0.007390185, -0.01322418, 0.0035374167, -0.008610456, 0.0173306, -0.024995003, -0.009110905, 0.013196758, -0.0057448745, 0.005775724, -0.0032597708, 0.014725526, -0.011345784, 0.0038287737, -0.003420874, 0.006080792, 0.019208996, -0.010420297, 0.007410751, -0.0034294433, -0.022595592, 0.0018886789, 0.0058374233, 0.012648322, 0.01597322, 0.0017721361, -0.02241735, -0.011551448, -0.012236994, 0.03304331, -0.004168119, 0.01926384, 0.023994107, 0.010605395, 0.027216172, 0.023555357, -0.011949065, -0.016974116, 0.008171707, -0.018756535, -0.039240647, 0.0010703085, 0.011976487, 0.017755639, 0.011201819, -0.020552665, -0.03134316, -0.0051621604, -0.0385551, -0.03375628, -0.010317465, 0.024131216, 0.027750898, 0.022513326, -0.009261725, 9.134899E-4, 0.011962776, 0.0014910623, -0.0022537322, 0.0039487444, 0.028491287, 0.0047542606, 0.023390826, 0.020347001, -0.035895184, -0.006464698, 0.0021217645, 0.011859944, -0.0018098411, 0.020429267, -0.01793388, -0.01090018, -0.0038699065, -0.008068875, -0.007335341, -0.006636084, 0.025707971, -0.028038826, 0.008014032, 0.011743401, 0.025968479, 0.00534383, 0.0097621735, 0.0031140922, 0.0010454574, -0.009590787, -0.008631023, -0.004726839, 0.012079318, -0.019908253, 0.019469503, 0.01121553, -0.004788538, 0.03956971, 0.020538954, 4.7045585E-4, 0.0070028515, -0.0085556125, -0.008219695, -0.021265633, 0.007534149, -0.0015733278, 0.023719888, -0.02105997, 0.010434008, -0.009960982, 0.022389928, -0.006142491, 5.8057165E-4, -0.0076164147, 0.030739877, 0.01986712, -0.0370469, 0.012401525, -0.011304651, 0.0045211753, -0.0028347322, 1.508201E-4, -0.023089185, -0.017083803, -0.0076849693, -0.007945477, -0.015630446, -0.0370469, -0.010797348, -0.01986712, -0.018166967, -9.7604597E-4, 0.17462225, -0.007040556, 8.693579E-4, 0.039843928, -0.0048845145, 0.012428947, 0.023212584, 0.0054912227, 0.0024302602, 0.022677857, 0.008562468, 0.0020497823, 0.009871861, 0.0013745195, 0.011126409, -0.017001538, -0.025228089, -0.037019476, -0.015781267, -0.019551769, -0.006358438, -0.0085556125, -0.006286456, -0.015932087, -0.0011834236, 0.009117761, 0.009001218, 0.007794657, 0.005528928, -0.0012519782, -0.021087391, -0.021114813, -0.0068725976, -0.010721938, -0.016809585, -0.009686763, -0.018468605, 0.008048309, 0.019675167, -0.010913891, 0.0020617791, -0.0039247503, 0.0035048532, -0.02090915, -0.0065195416, -2.3287137E-4, -0.026681446, 5.1158865E-4, -0.019908253, -0.005515217, -0.04765915, 0.00813743, 0.026379805, 0.024309456, -0.0033985937, -0.009385123, 0.007938622, 0.021622118, -0.004370355, -0.020497821, 0.002725045, 0.020497821, -0.0329062, 0.013512109, 0.009433111, 0.018372629, -0.02824449, -0.017412866, 0.0048982254, -0.0156030245, -0.015315095, -0.012154728, 0.005686603, -5.4227752E-5, -0.010091236, -0.019030754, 0.02031958, -4.3296508E-4, -0.008603601, 0.026969375, -0.023431959, 0.010036392, 0.013320156, -0.008795554, -0.02854613, -0.024021529, 0.024460277, -2.4422572E-4, -0.0024354018, -0.030685034, -0.0158224, -0.026324961, -0.0027421836, 0.0053506857, -0.007054267, -0.007287353, 0.028820349, 0.02884777, -0.02078575, 0.0039350335, -0.04543798, 0.009350846, 0.011194964, 1.4674966E-4, -0.021759227, -0.012956818, -0.015397361, 0.0019966525, 0.02868324, -0.019099308, -0.014026268, -0.019524347, -0.010790492, -0.013121348, -0.009131472, 0.03627909, 0.01822181, -0.018125834, 0.022156844, -0.004092709, 6.868313E-4, -0.024597386, 0.009789595, 0.018331498, 0.007780946, -0.031260893, -0.011222386, -0.0014584989, -0.013950859, -0.03778729, 0.027216172, -0.0243643, 0.003230635, 0.003090098, 0.012031331, 0.013313301, 0.011455472, -0.0047165556, 0.003292334, -0.0016684473, -0.0017807054, -0.007726102, 9.1434683E-4, 0.0013393853, 0.012216427, -0.016055485, -0.003497998, -0.0038939007, -0.027654922, -0.027682343, -0.016028063, -0.014972323, 0.0020497823, 0.010913891, 0.042202204, -0.027956562, -0.020580087, -0.04406689, -0.0071502435, 0.032056127, -0.02824449, 0.012497501, 0.025378909, -0.016000642, 4.3767822E-4, -0.016110329, -0.17604819, 0.025351487, 7.4446E-5, -0.03737596, 0.019154152, 0.007828934, 0.0403101, -0.009721041, 0.0010077525, -0.028491287, 0.016782163, 0.003660815, -0.0472204, 0.0041235583, 3.5369882E-4, 0.02629754, -0.025968479, 0.020963993, 0.02629754, -4.2760925E-4, 0.0636735, -0.005487795, -0.0053266915, -0.009035495, 0.004877659, -0.0035168503, 0.020881727, 0.007753524, -5.334404E-4, -0.024473988, -0.03734854, 0.0059402552, -0.005583771, 0.01478037, -0.0139851365, 0.007828934, -0.0032837647, -0.018235521, -0.014067401, -0.017508842, 0.03197386, 0.014739237, 0.024569964, 0.01538365, 0.007157099, 0.020895438, 0.03841799, -0.027421836, 0.015136853, 0.007438173, -0.01704267, -0.039322913, 0.030136596, -0.0035408444, 6.6583644E-4, 0.0069617187, 0.024144927, 0.010859047, 0.0037362252, 0.0141908, -0.025145823, -0.012243849, 0.016329704, 0.004308656, -0.010091236, -0.025461175, -0.017111225, 0.0052512814, -0.022102, 0.0143964635, -0.026434649, 0.021580985, 0.016617632, -0.001989797, 0.024090083, -0.012298693, -0.020730907, 7.2924944E-4, -0.0069137304, 0.009412545, -0.011825667, 0.04527345, -0.009604498, 0.012490646, 0.015315095, -0.016398259, 0.0054946505, 8.515765E-6, 0.0043120836, -0.012456369, -0.0064029987, -0.022609303, -0.022938365, 0.007904344, 0.0071365326, -1.6078193E-4, -0.010269477, 0.0046788505, 0.005799718, -0.02241735, 0.008322527, -0.001874968, -0.018098412, 0.039926194, 0.017440287, 0.010248911, 0.01314877, 0.030273706, 0.01396457, 0.0040721428, -0.015657868, 0.0033283252, 0.0131899025, 0.005179299, -0.031288315, 0.009899283, 0.008973796, -0.026407227, 0.013505254, 0.030739877, 0.042942595, -0.0038356292, 0.012970529, 0.007259931, -0.005659181, -0.012305548, -0.079358794, -0.0063310163, 0.019167863, 0.02942363, -0.029039724, 0.049990006, 1.2821851E-4, 0.01449244, -0.011743401, 0.025886213, 0.008425359, -0.022746412, 0.01233297, 0.006361866, 0.011208675, -0.0017172925, -0.01746771, -0.01269631, -0.021882625, 0.018441183, -0.001443931, -0.0039316057, -0.0057071694, -0.020292157, 0.0025433751, 0.008726999, -0.028792927, 0.023980396, -0.007739813, 0.004778255, 0.016247438, -0.02256817, 9.5033797E-4, -0.029012302, -0.005929972, -0.010104947, -0.007938622, -0.012531779, 0.017371733, -0.04376525, 0.001736145, 0.008267683, 0.00955651, 0.005474084, -0.009638775, -0.005905978, -0.03737596, 0.021197079, -0.01985341, -0.007362763, -0.0038459124, 0.003969311, -0.01986712, -0.019017043, 0.020593798, 0.035758074, 0.023980396, -0.013656074, -0.0077329576, -0.033591747, -0.0077055357, -0.008171707, -0.0033677442, 0.01704267, 0.0124837905, 0.0029701276, -0.0022623015, -0.014821502, -0.004240101, -0.028052537, -0.010989301, 0.023130318, -0.03093183, 1.993439E-4, -0.027654922, 0.004829671, -0.036662996, -0.0029461335, 0.030657612, -0.036717836, -8.903527E-4, -0.02928652, 0.007931766, -0.009508521, 0.012792286, 0.02374731, 0.0035545554, 0.013176192, -0.020689774, -0.040694002, -0.009618209, 0.017508842, -0.01277172, -0.008123719, -0.0014499296, 0.008240261, 0.014300487, -0.009453678, -0.0030009772, 0.012867697, -0.015548181, -0.004552025, -0.070583805, 0.0072530755, -0.018742824, 0.012346681, 0.0020977703, -0.0072256536, 0.011270374, 0.006903447, 0.0049976297, 0.015932087, 0.00440806, 0.02884777, -0.009220592, -0.0058477065, -0.005559777, 0.0095702205, 0.007259931, 0.0035134226, 0.0076438366, 0.00425724, -0.0071913763, 0.028189646, 0.0076438366, 0.011373206, -0.009008073, 0.008391081, 0.017700795, 0.034606356, -0.017207202, -0.004887942, 0.031452846, -0.038747054, 0.010550551, 2.5279506E-4, -0.009563365, -0.01792017, -0.014711815, 0.0010685946, 0.014437596, 0.016672475, -0.009515377, -0.0156030245, -0.0047097, 0.010735649, -0.021526141, -3.2863356E-4, -0.00822655, 0.01734431, -4.1346985E-4, 0.012051897, 0.016562788, 0.009714185, -0.010529985, -0.0057688686, 0.023418248, -0.0011114413, 0.036471043, -0.007424462, 0.006879453, -0.02137532, 0.01717978, -0.003050679, 0.011558304, -0.033454638, 0.0021234783, 4.1132752E-4, 0.014821502, -0.018852511, 0.009597642, -0.013169336, -0.025228089, 0.0013153912, 0.007739813, 0.04573962, 0.006348155, 0.017755639, 0.010817914, 0.008898386, -0.01598693, 0.014081112, 0.024857894, 0.002114909, -0.021005126, 0.009529088, -0.0011714265, -0.0018492601, -0.014231932, 0.012209572, 0.020593798, 0.010694516, 0.0012271272, 0.0050627566, 0.023034342, 0.00985815, 0.0044903257, 0.015877243, -0.0243643, -0.018509738, 0.010989301, 0.014848924, -0.010180356, -0.0023959829, -0.005953966, -0.020196183, -0.020717196, 0.003204927, -0.024336878, -0.017810483, -0.01381375, 0.010187211, 0.022225397, 0.018125834, -0.010577973, 0.013306445, -0.036169402, -0.0041955407, -0.0021628973, -0.025776526, 0.0035134226, 0.024597386, -9.1520377E-4, 0.020456688, 0.01793388, -0.009248014, 0.052046645, -0.01129094, 0.02181407, -0.033372372, 0.0041064196, -0.01000897, -0.001647024, -0.024131216, -0.011626858, -0.010344887, -0.00822655, 0.008918952, 0.007232509, 0.0030146881, -0.014917479, 0.0744777, 0.02494016, 0.0015253396, 0.02195118, -0.017097514, 0.01659021, 0.018441183, 0.023952974, -0.012703165, -0.01277172, 0.004524603, -0.011798245, 0.008672155, -0.027133906, 0.011051, 0.004281234, 0.012236994, 0.0126894545, -0.0030009772, -0.023719888, -0.015273962, -8.9892204E-4, 0.019099308, 0.010420297, 0.007335341, -0.012716876, 0.014245643, 0.0024216908, -6.135636E-4, -0.024131216, -0.0030952396, -0.025118401, -0.0010094664, -0.013340723, 0.011256663, -0.0283816, -0.0020069357, 9.6747663E-4, 0.012730587, 0.0082608275, -0.025433753, 0.005426096, -0.0228561, -0.026023323, 0.015342517, -0.013333867, 0.0068246094, -0.035346746, -0.009145183 ], + "id" : "b793b117-d031-42a5-8381-a8050257b0f5", + "metadata" : { + "source" : "movies.csv" + } + }, + "f72759df-d3e4-4af4-9d4a-93a7d008b267" : { + "text" : "Jordan-Dorothy Steel-Zainab Jah-Sope Aluko-Trevor Noah-Shawn Roberts-Zola Williams-Janeshia Adams-Ginyard-Jemini Powell-Marija Abney-Keisha Tucker-Ivy Haralson-Maya Macatumpag-Baaba Maal-Jabari Exum-Massamba Diop-Magatte Saw-Gerardo Aldana-Gigi Bermingham-Rudolph Massanga-Judd Wild-Amber Harrington-Michael Blake Kruse-Justin James Boykin-Anderson Cooper-Mackenro Alexander-Kamaru Usman-T. Love-Floyd Anthony Johns Jr.-Jermaine Brantley-Granger Summerset II-Luke Lenza-Alan Wells-Bill Barrett-Lieiry J. Perez Escalera-Sevyn Hill-Gavin Macon-Skylar Ebron-Taylor Holmes-Angela Cipra-Faya Madrid-Mar�_a Tel�_n-Mar�_a Mercedes Coroy-Josu�� Maychi-Sal Lopez-Irma Estella La Guerre-Manuel Chavez-Leonardo Castro-Juan Carlos Cantu-Shawntae Hughes-Corey Hibbert-Zaiden James-Aba Arthur-D��l�� Ogundiran-Kevin Changaris-Valerio Dorvillen-Don Castor-Jonathan Gonz��lez Collins-Divine Love Konadu-Sun-Chadwick Boseman,hero-loss of loved one-superhero-royal family-based on comic-sequel-royalty-underwater-political intrigue��-death in family-mourning-death of brother-duringcreditsstinger-death of king-marvel cinematic universe (mcu)-hidden civilization-yucatan-mayans,/sv1xJUazXeYqALzczSZ3O6nkH75.jpg,/xDMIl84Qo5Tsu62c9DGWhmPI67A.jpg,436270-631842-646389-315162-943822-1058949-76600-829280-338436-842942-965839-1011679-758009-100088-1033456-842544-1035806-1013870-542196-218720\r\n150540,Inside Out,Animation-Family-Adventure-Drama-Comedy,en,Growing up can be a bumpy road and it's no exception for Riley who is uprooted from her Midwest life when her father starts a new job in San Francisco. Riley's guiding emotions��� Joy Fear Anger Disgust and Sadness���live in Headquarters the control centre inside Riley's mind where they help advise her through everyday life and tries to keep things positive but the emotions conflict on how best to navigate a new city house and school.,114.549,Pixar-Walt Disney Pictures,6/9/15,175000000,857611174,95,Released,Meet the little voices inside your head.,7.92,19876,Amy Poehler-Phyllis Smith-Bill Hader-Lewis Black-Mindy Kaling-Richard Kind-Kaitlyn Dias-Diane Lane-Kyle MacLachlan-Bobby Moynihan-Paula Poundstone-Paula Pell-Dave Goelz-Frank Oz-Josh Cooley-Flea-John Ratzenberger-Carlos Alazraqui-Peter Sagal-Rashida Jones-Lori Alan-Gregg Berger-Veronika Bonell-John Cygan-Laraine Newman,dream-san francisco california-minnesota-sadness-cartoon-ice hockey-imaginary friend-elementary school-family relationships-memory-family-unicorn-running away-duringcreditsstinger-emotions,/2H1TmgdfNtsKlU9jKdeNyYL5y8T.jpg,/j29ekbcLpBvxnGk6LjdTc2EI5SA.", + "embedding" : [ 0.0046518925, -0.032286722, -0.013784163, -0.018453557, -0.020441724, 0.038111214, -0.004781403, -0.0061605196, -0.014617233, -0.040491417, 0.016899426, 0.013462136, 0.02752632, -0.005603973, -0.0029349974, 0.0031520159, 0.020077694, -0.009233779, 0.017081441, -0.033602834, 0.0039658346, -0.002940248, -0.0028614914, 1.5204408E-5, -0.004648392, 0.0074766306, 0.043907702, -0.0059680035, 0.0022366887, -0.015961347, 0.0026724753, -6.0073816E-4, -0.004245858, -0.041695517, -0.010129854, -0.0031327643, 0.0116559835, -0.024684083, 0.03452691, 4.8216566E-4, 0.003178268, 0.0019269126, -0.019237623, 0.0026882268, -0.02074975, 0.008974757, -1.8212474E-4, -0.016073355, -0.020819755, 0.0367391, 0.030410565, 0.034834936, -0.012286036, -0.03889528, 0.0045608846, 1.9940744E-4, -0.024698082, 0.0028142373, 0.0074066245, 0.019237623, 0.007553637, -1.2404172E-4, -0.021281796, -0.0058314917, -0.0138191655, -0.0055689695, -0.0059435014, -0.0118940035, -0.0024992109, -0.0030977612, 0.033210803, 0.0051174317, 0.012216031, -0.01043088, 0.005463961, -0.036347065, -0.015639318, -0.0065175495, -0.010318871, -0.0049739196, 0.005348451, -0.0052819457, -2.795861E-4, -0.0053239493, 0.0047919042, 0.0019514146, -0.0046413913, 0.02738631, -0.021183787, 0.008589724, 0.013945176, 0.048668105, -0.0035422987, -0.0022699414, 0.0093177855, 0.018901594, -0.026070198, 0.022625908, -0.021729833, -0.03948333, -0.0107389055, 0.0015987599, -0.0046973964, -0.016689409, 0.010815912, -0.01836955, -0.003236023, 0.0063040317, 0.016451387, 0.003365534, -0.0014762495, -0.003213271, 0.007812659, -0.04015539, -0.006671563, -0.019153615, 0.016927429, -0.024740087, -0.023185955, -0.011697987, 0.019769667, 0.023886014, 0.008078681, -0.032174714, 0.03237073, 0.028408397, -0.0053834543, -0.014505223, -0.0051664356, -0.0017063939, 0.037327148, 0.0023521984, 0.0103538735, 0.011550974, -0.018509561, 0.03427489, -0.03189469, 0.007875664, -0.026210211, -0.010514887, 0.016773414, 0.029122457, -0.01706744, -0.01410619, -0.02752632, 0.007658646, 0.011592978, 0.009947839, 0.020889763, 0.0022069362, 0.0142952055, 0.022373887, 2.406453E-5, -0.0030050036, 0.016045352, -0.0035352982, 0.013490138, 0.012538058, -0.013798164, -0.01766949, 0.0053834543, -0.020819755, -0.009520803, 0.007399624, 8.724486E-4, 0.019643657, 0.021939851, -0.024922103, -0.016227368, 0.009877834, -0.009891834, 0.027582327, -0.039875362, 0.015793333, -0.012762076, -0.0031992698, -0.005736984, -2.4655205E-4, -0.04116347, -0.0071196007, -0.013056101, 0.010899919, 0.027204294, 0.03379885, -0.0069760885, -0.022065861, 0.03640307, -0.023199957, -0.0041128467, -0.0148272505, -0.0038433243, 0.024236044, 0.002443206, -0.011116938, -0.63710976, -0.015961347, 0.018411553, -0.013322123, 0.022247877, 0.024432061, -0.005239942, -0.012678069, -0.037187137, -0.011067933, -0.035759017, 0.030970613, 0.023073947, -0.0038398239, -0.005071928, -0.014071187, 0.0027319805, -0.023325967, 0.017179448, -0.011158941, -0.010458882, 0.0068010734, 0.024572073, -0.0021124282, -0.0010579643, 0.015331293, -0.009877834, -0.018929597, 6.243652E-4, 0.005288946, -0.0143232085, 0.017627487, 0.019755667, 0.0024414558, 0.044607762, 0.016045352, -0.018957598, 0.059140988, 0.027008278, 0.022037858, -0.033406816, -0.005299447, 0.004518881, 0.0071161003, -0.004469877, 0.026210211, 0.012727073, 0.002786235, 0.0027144789, -0.0025832178, 0.003379535, 0.0057579856, 0.003951833, -0.016885424, -0.009352789, -0.009058764, 0.01530329, -0.02003569, 0.028002363, 0.006734568, -0.024726085, 0.02216387, -0.0027809846, 0.013742159, 0.0058314917, 0.035254974, -0.01470124, 0.0025867182, 0.010227863, -0.010997928, 0.011690986, 0.030298555, -0.003344532, 0.005904998, 0.020609738, 0.017851505, 0.02797436, -0.0039098295, 0.0048829117, 0.024530068, -0.0010133354, 0.004438374, 0.0072876145, 0.019951683, 0.022387888, 0.009450797, -0.030158544, 0.008001675, 0.014519225, -0.009877834, 0.011452966, 0.0053834543, 6.296156E-4, -0.004480378, 0.0044278735, 1.4165258E-4, -0.022625908, 0.0061080153, 0.033238802, -0.06574955, 0.008673731, -0.030690588, 0.030634584, -0.018803585, 0.0030277553, -0.0019811671, -0.01967166, -0.0017974016, 0.024852097, -0.0022244377, -0.035170965, -0.011053932, -0.0020301712, -0.019587653, -0.004655393, -0.027848348, 0.012958093, 0.014246201, -0.0044943793, -0.014743243, 0.0047849035, 0.0037663176, -0.0055094645, -0.013721157, 0.011557975, 0.023101948, -0.0061745206, -0.0037663176, 0.0059295003, 0.017991517, -0.0099688405, -0.0035720512, 0.018705579, -0.014435218, 0.01587734, -1.505127E-4, 0.0025464648, 1.7512415E-4, 0.023732001, -0.023381973, -0.010031846, -0.011011929, -0.008792741, -0.0076306434, -0.0071546035, -0.018943598, -0.022233875, 0.0016871423, -0.0066085574, -0.012559059, -0.007077597, 0.01943364, -0.0021071776, 0.022023859, 0.0038573253, 0.012349041, -0.025552155, -0.00793867, -0.0010868417, 0.003661309, 0.019335631, 0.0038573253, -0.009555806, -0.030858602, 0.022933934, 0.008379707, -0.014281205, -0.0067275674, -0.009814828, -0.008603726, 0.005029924, -0.025496151, -0.0031660171, 0.0015366296, -0.002061674, 0.03175468, -0.0046763946, 0.018859591, 0.004683395, -1.607948E-4, 0.01695543, -0.012902088, -0.033938862, -0.00793867, 0.026518237, 0.022373887, 0.010696902, 0.0053694528, 0.0069445856, -0.0028737425, -0.028842432, 0.0014158695, 0.006822075, -0.003141515, -0.013336125, 0.019041605, 0.0021666829, 0.003131014, -0.0053834543, 2.759217E-5, 0.028436398, 0.0072946153, 0.013217115, 0.009667816, 0.019741666, -0.034582917, -0.0039343317, -0.03721514, 0.014645236, 0.007067096, 0.017557481, -0.014246201, -0.012993095, -0.0069760885, -0.0067135664, 0.034218885, -0.003615805, 0.015779331, -0.019825673, -0.002005669, 0.013917174, -0.0011340956, 0.021841843, 0.0189716, -0.029374478, 0.008967756, 0.0046413913, -0.016731411, 0.0026917271, -0.020735748, -0.007301616, 0.0050999303, -0.0059890053, 0.022541901, -0.018397551, -0.016521394, 0.024558071, -0.013560143, 0.044971794, -0.016661406, 9.133583E-5, 0.0059365006, 0.01528929, 0.018803585, 0.017109443, -0.023844011, 0.018817587, 0.012132023, -0.0052224407, 0.042759605, -0.016409384, 0.028548408, -0.009289783, 6.5718044E-4, 0.0037908198, -0.01743147, 0.0041583506, 0.016297374, 0.02572017, 0.020973768, 0.007833661, -0.016269373, 0.032118708, 0.013175111, 0.01328012, -0.0030015032, -0.03273476, 0.008582724, -0.023788007, -0.025888184, -0.025202125, -0.014393214, -0.009359789, -0.0041338485, -0.002002169, -0.0033287809, -0.008442712, 8.510093E-4, 0.0073086163, 0.011172943, -6.996215E-4, -0.028674418, 0.0022069362, 0.030830601, -0.031810682, -0.008799742, -0.009065765, -9.398293E-4, -0.010423879, 0.0060555106, 0.0076796478, 0.027134288, -0.0067730714, 0.029430483, -0.011158941, 0.0038048208, 0.0116279805, -0.011445966, 0.016395383, 0.02121179, 0.011018929, 0.006699565, -0.013021098, 0.0034162882, 0.029094454, -0.015863338, 0.0115089705, -0.007182606, -0.005834992, -0.02192585, 1.1736927E-4, -0.015485306, -0.033938862, 0.035563, -0.0040218392, -0.018999603, -0.0066925646, 0.0053239493, -0.0053834543, -0.026742255, -0.021953851, -0.029682504, -0.037159134, 0.012125023, 0.09414394, 0.04766002, -0.00521544, 0.01161398, -0.0065840553, 0.016899426, -0.0031432651, -0.01990968, -0.0016801417, -0.0035282976, 0.010682901, -0.026896268, 0.015205283, -0.0044943793, 0.028870435, -0.0046763946, -0.0075116334, -0.0134341335, 0.0077356524, -0.0053624525, -0.028254382, -0.023087947, 0.021001771, 0.014575229, -0.001244355, -0.008498717, 0.03046657, 0.026616246, 0.01268507, 0.011438965, 7.398749E-4, 0.015639318, 3.579052E-4, 0.01505127, 0.0053554517, 0.006209524, 0.046175893, 0.011788994, 0.040463414, 6.615558E-4, -0.005582971, 0.024712084, 0.011992011, -0.015835335, 0.014379213, -0.028268384, -0.017165449, 0.024488065, 0.031810682, -0.027316304, 0.016759414, -0.0017956515, -0.0112429485, -0.024572073, 0.02420804, -0.008029677, -0.008855747, -6.291781E-4, -0.0029314973, 8.405084E-4, -0.0033812851, -0.032118708, 0.016017351, -0.018159531, -0.0020704246, -0.033014785, -0.025524152, -0.01209002, -0.015681323, -0.0019479143, -0.0034915444, -0.014547227, -0.0042878618, 0.013560143, 0.012678069, 0.002383701, 0.026182208, 0.005407956, 0.012412047, -0.0021194287, -0.011550974, -0.016311375, 0.010640898, -0.0070600957, -0.012951093, 0.01007385, -0.0032027701, 0.025300134, -0.021491813, 0.023802008, -0.014533225, -0.0021124282, -0.023956021, -0.015667321, 0.03687911, 0.015079272, 0.016297374, 0.008344704, -0.0013318623, -0.014897256, 0.0023819508, -0.03304279, -0.0025009608, -0.01671741, -0.029654501, -0.0125450585, 0.0022821925, 0.008288699, -0.015457303, -0.043935705, -0.015513308, -0.027778342, 0.005288946, -0.006972588, 0.009863832, -0.005666978, 0.015261287, 0.024166038, -0.0088137435, 0.0019181618, 0.014981263, -0.029430483, 0.022359885, 0.022023859, -0.0047358996, 0.023409974, -0.011165942, -0.02833839, -0.0038118216, 0.019223621, 0.01695543, 0.021155784, -0.02465608, -0.006843077, -0.0033007783, -0.011172943, -7.9019164E-4, 0.0022174371, -0.0010640897, 0.009597809, -0.024810093, 0.012034015, 0.027316304, -0.018383551, -0.004490879, -0.024222042, 0.0052784453, -0.019643657, 0.009926837, 0.021645825, -0.009534804, 0.02346598, -0.028954443, 0.0060765124, -0.0056074727, -0.014995265, -0.01612936, 5.311698E-4, 0.026588243, 0.01007385, 0.042227563, 0.013973178, 0.027302302, 0.01210402, 0.012258034, 0.01884559, -0.0042038546, -0.0109769255, -0.025076116, 0.0034897944, 0.018985601, 0.030046534, -0.0036088044, -0.012797079, -9.984592E-4, 0.011074934, -0.003734815, 0.0025167123, 0.004840908, -0.02572017, -0.035759017, 0.0023294464, -0.028604412, -0.001909411, -0.022513898, -0.0066820635, 0.039175306, -0.002040672, 0.0013178611, -0.002808987, 0.026042197, -0.013861169, 0.019699661, -0.0030172544, 0.027484318, -0.03900729, -0.013889171, -0.020525731, -0.011816997, -0.0011682236, -0.015681323, 0.025510151, 0.006493048, -0.0055759703, -0.0010623396, 0.017375465, -0.032874774, -0.025230128, 0.027582327, -0.013546143, -0.007315617, -0.015429301, -0.002476459, -0.03746716, -0.023661995, 0.0062060235, 0.005327449, 0.008792741, -0.01565332, -0.039091296, -0.0017273957, 0.008155688, 0.03475093, 0.017361464, 0.036459073, 0.008470714, 0.014015182, -0.020091694, 0.00605201, -0.0032185214, -0.0033217801, 0.021841843, 0.030970613, -0.027232297, -0.0034985451, 0.014743243, -0.005799989, -0.042591594, -0.03841924, 0.020063693, 0.02228988, 0.016087357, -0.020693745, 0.0047043967, -0.034554914, 0.004182853, -0.0074066245, 0.0045328825, 7.696274E-4, -0.024124036, -0.016297374, 0.018005518, -0.0010973426, 0.0011647232, 0.0052924464, -0.013462136, 5.5173406E-4, -0.009730821, -0.007903666, -0.0033865357, -0.00806468, 0.02999053, -0.015681323, 0.015037268, 0.01576533, 0.014883256, -0.0086947335, 0.004938917, 7.8319106E-4, 0.030186547, -0.010339872, -0.0019234122, 6.221775E-4, -0.002833489, 0.0102068605, 0.014239201, -0.01860757, -0.013847168, -0.019965684, -0.008204692, 0.0141761955, -0.0061010146, 0.0037173135, 0.0062900307, -0.014897256, -0.01530329, 0.017571483, -0.01990968, 0.014925259, -0.039791357, 0.0024852096, -0.017109443, 0.0052854456, 0.005201439, -0.010829913, -0.008729736, 0.006962087, 0.008246696, -0.010927922, 0.0022856928, -0.03010254, -0.019699661, -0.036207054, -0.019839674, -0.008701734, -0.010955924, 0.014729243, -0.019965684, -0.004137349, 0.0088137435, 7.127476E-4, 0.0019286626, -0.020889763, 0.0018411553, 0.012622065, 0.010416878, -0.0059890053, -0.008624728, 0.0056459764, 0.018341547, -0.0055024642, -0.020973768, -0.003474043, 0.016899426, 0.030522574, -0.01836955, 0.012643066, 0.0038433243, -0.02619621, 0.0030137543, 0.031166628, 0.02287793, 0.019601652, 0.00675907, -0.034890942, -0.008582724, -0.0055339667, 0.028142374, -0.0048164064, 0.004109347, 0.033294808, 0.027050281, 0.027638331, 0.027540322, -0.0060415096, -0.029822515, -8.9782575E-4, -0.009303785, -0.03273476, -0.008407709, 0.01256606, 0.007861663, 0.008911751, -0.015569313, -0.025412144, 0.0014254953, -0.031250637, -0.029346475, -0.024628077, 0.018299544, 0.014841252, -0.0053449506, -0.0015418801, 0.012811081, 0.002182434, 0.008701734, -0.019419638, -0.010570891, 0.023956021, -0.0010920921, 0.026966274, 0.014925259, -0.021505814, -0.011088936, 0.011557975, 0.020833757, 0.023087947, 0.017557481, -0.023451978, 0.0031992698, -0.004826907, 0.009380791, -0.007833661, -0.008155688, 0.035366982, -0.034330897, -0.016437387, 0.011074934, 0.004728899, 0.004088345, 0.0020179201, 0.012118022, -0.009779825, 0.0036438073, -0.0111239385, 0.0036718098, -0.0022559403, -0.02324196, 0.023213958, 0.0040218392, -0.004529382, 0.034694925, 0.024264047, 0.0023696998, 0.011060933, -0.006629559, 0.006941085, -0.018467559, -0.0036333064, -0.0043928707, 0.014547227, -0.039035294, 0.0047604013, -0.02881443, 6.484297E-4, -0.009737821, -0.008050679, -0.006461545, 0.03855925, 0.0052574435, -0.04102346, 0.017627487, -0.016283374, -0.009121769, -0.020945767, -0.013154109, -0.01766949, -0.018789586, -0.015191281, -0.0074766306, -0.028702421, -0.023577988, -0.013840168, -0.007196607, 0.0030750094, 0.022443892, 0.19310428, 0.0024449562, 0.006297031, 0.032314725, -0.014281205, 0.004294862, 0.038139217, 0.013343126, -0.0059224996, 0.016325377, -0.013238116, 0.005036925, -0.0012041016, -0.0037908198, 0.014729243, -0.021519816, -0.03060658, -0.026210211, -0.014071187, -0.018187534, -0.008757738, 0.002761733, -0.014281205, -0.019125612, 0.0062655285, 0.029766511, -0.007539636, 0.0082957, 0.008596725, -0.0055199657, -0.006745069, -0.024460062, 0.0055619692, 0.005264444, -0.005715982, -0.016871423, 0.0019619155, 0.0052259406, 0.029206464, 0.010178858, -0.01019286, -0.0015095023, -0.015429301, -0.010948923, -0.002835239, 0.024810093, -0.019237623, -0.002808987, -0.009758824, 0.0088137435, -0.025398143, 8.011301E-4, 0.022681912, 0.02598619, -0.007651645, -0.019111613, 0.005512965, 0.0056144735, -0.011936007, 0.008729736, 0.007224609, 0.032594748, -0.030074537, 0.03046657, 0.005313448, 0.0032937778, -0.039287314, -0.018299544, 0.002952499, -0.021421807, -0.006374038, -0.034414902, -0.0053029475, -0.0022541902, -0.018397551, -0.016017351, 0.008960756, 0.01364415, -0.0046448917, 0.036711097, -0.025692167, -0.002537714, 8.7113597E-4, -0.0019304128, -0.026840264, -0.017865507, 0.026868267, -0.024236044, -0.014925259, -0.027176293, -0.02038572, -0.02430605, -0.0045853867, -0.011950008, -0.008071681, 0.0029700005, 0.022191871, 0.023535985, -0.010164857, 0.0027967358, -0.038139217, 0.027372308, 0.024012025, 6.186772E-4, -0.028660417, -0.017053438, -0.004182853, -0.010794911, 0.033546828, -0.013609148, -0.026952274, -0.008666731, -0.0046203895, -0.0061710207, 0.004896913, 0.03010254, 0.011543973, -0.017865507, 0.035198968, -0.010199861, -0.00746963, -0.034246888, -4.957293E-4, 0.0010658399, -0.018313544, -0.03284677, -0.021841843, 0.011950008, 2.4091876E-5, -0.035843022, 0.01789351, -0.01600335, 0.01695543, -0.016885424, -1.276514E-4, -0.0012058517, 0.02122579, -0.011466967, 0.0077356524, -0.0189716, -0.017151447, -0.013070103, 0.012727073, -6.0730125E-4, 0.007952671, -0.030998614, 0.012657068, -0.008750738, -0.009940838, -0.04007138, -0.026154205, 0.005110431, 0.015905341, 0.013028099, 0.025342137, -0.014190197, -0.02216387, -0.03735515, -0.007833661, 0.039567336, -0.025286132, 0.032594748, 0.009058764, -0.004077844, -0.029094454, -0.005845493, -0.18156731, 0.03449891, 0.0104728835, -0.024642078, 0.010031846, 0.009891834, 0.016339378, 0.0014762495, 0.0012863585, -0.0140571855, 0.03629106, 0.0044348743, -0.026574241, 9.658627E-5, -0.006223525, 0.0064440435, -0.018957598, 0.014134192, 0.04410372, 0.0036473076, 0.038755268, -0.004707897, 0.00912877, -0.0011008428, 0.0065385513, 0.006731068, 0.017389467, -0.009541805, 0.007441628, -0.016913427, -0.029346475, -0.014330208, 0.015709326, 0.011116938, -0.01730546, 0.004340366, -0.01992368, -0.009772824, -0.0018936597, 0.0037278144, 0.041191474, 0.0067730714, 0.0101158535, 0.008883749, 0.022779921, 0.019601652, 0.017571483, -0.0098498305, 0.003734815, -0.016997434, 6.7511946E-4, -0.045083802, 0.0331828, -1.546693E-4, -0.0060415096, 0.02003569, -0.0068780803, 0.002562216, 0.0051034302, -0.021995855, -0.021617824, -0.00581049, 0.0103258705, -0.008953755, 0.0044138725, -0.009611811, -0.026420228, 3.4871692E-4, -0.046651933, 0.0055654696, -0.02347998, 0.021827841, 0.0034897944, -7.5825147E-4, 0.013224116, -0.007693649, -0.03214671, 0.0032202716, -0.0034197883, 0.006262028, -0.018481558, 0.037523165, 0.0021176785, 0.018943598, -0.0067380685, 0.0026234712, 0.015863338, 0.002159682, -0.009135771, -8.4925914E-4, 0.0012942342, -0.008036678, -0.02276592, 4.6072635E-4, -0.012286036, 0.0046798945, 0.0033952864, 0.00581049, 0.0014709991, -0.004364868, 0.010808912, -0.013994181, -0.008757738, 0.0062795295, 0.03486294, 0.003615805, 0.02168783, 0.013875171, 0.012587062, 0.0036333064, -0.012594062, -0.011571976, 0.013602147, 0.01470124, 0.0031485155, 0.019013604, -4.6903957E-4, -0.021981854, 0.028170375, 0.027792344, 0.06826976, 9.652064E-4, -0.004245858, -0.016213367, 0.007931669, -0.017333463, -0.0912877, -5.6354754E-4, 0.008638728, 0.041555505, -0.012797079, 0.028394395, -0.019111613, 0.016031353, -0.031138627, 0.03853125, 0.012048016, -0.02228988, 0.019405637, 0.011880002, 0.014533225, -0.001695893, -0.022107864, -0.01565332, -0.026098201, 0.02418004, 0.0041793524, -0.009555806, 0.007434627, -0.0062410263, -0.0120130135, 0.016871423, -0.031334642, 0.018061524, -0.002073925, 0.013665153, 0.0061955224, -0.0059470017, 0.024278048, -0.04289962, -0.01849556, -0.021323798, -0.014190197, -0.030886605, 0.019825673, -0.039651345, -7.6437695E-4, 0.018425554, 0.0062655285, -0.018005518, -0.009884833, 0.0013677403, -0.029766511, 0.033238802, 9.792076E-4, -0.023718001, -0.0011533473, -0.020959768, -0.016563397, -0.014029183, 0.011992011, 0.01636738, 0.033462822, 0.010927922, -0.00391333, -0.03225872, 0.006794073, -0.0017755248, -0.011179943, 0.014673238, 0.0021684328, 0.011690986, -0.0040708436, -0.0015978848, 0.018649573, -0.01327312, -0.028086368, 0.026742255, -0.039791357, -0.0037628175, -0.011676985, 0.018327545, -0.03808321, -0.022541901, 0.018859591, -0.044299737, 0.012720073, -0.031250637, 0.012412047, -0.028702421, 0.029430483, 0.023395974, 0.011599978, 0.011781993, -0.0042738602, -0.049144145, 0.0038713266, 0.016101358, -0.0024379557, -0.010934922, 5.5392174E-4, 0.015415301, 0.016381381, -0.013826166, -0.0015488806, 0.008302701, -0.0048094057, -0.010745906, -0.0723581, 0.045447834, -0.005582971, -0.011249949, -0.01766949, -0.014981263, 0.012993095, -0.011950008, 0.009457798, 0.01587734, 0.0017790251, 0.01339913, -0.013441133, -0.010171858, -0.010500886, -0.0015322543, 0.009548806, -0.009443796, 0.0048444085, 0.006356536, -0.016031353, 0.02584618, 0.02086176, 0.026644247, 0.0050684274, 0.026154205, -0.012909089, 0.011256949, -0.032202717, 1.9273501E-4, 0.021239791, -0.011830998, 0.005498964, 0.0103258705, -0.00486191, -0.017823502, 2.2948811E-4, 0.009450797, 0.019307628, 0.0054604607, -0.011578976, -0.032454737, -0.012811081, -0.006699565, -0.003948333, 0.015037268, -0.014785247, 0.020343715, -0.0027337305, 0.014393214, 0.02192585, 0.014099189, -0.0023767005, -0.023325967, 0.027218295, -0.014260203, 0.040127385, 0.0048059053, -0.018061524, -0.015905341, 0.03707513, 0.0043333657, 0.018397551, -0.013259118, 0.002952499, -0.0026847264, 0.007560638, -0.006731068, -0.0017413968, -0.031810682, -0.02170183, -4.2900493E-4, 0.00841471, 0.05026424, 0.008477715, 0.0076306434, -0.0075816396, 0.011130939, -0.005915499, 0.023423975, 0.014491222, 0.0052714446, -0.027834348, 0.027960358, -0.0024344553, 0.016563397, -0.011424963, 0.008715735, 0.007182606, 0.014421216, -0.012867086, 0.014435218, 0.008953755, -0.0033112792, 0.01386817, 0.014064186, -0.024026027, -0.016381381, 0.0064370427, 0.031026617, -0.014309207, -0.011809996, -0.0055199657, -0.023213958, -0.020595737, 0.011550974, -0.03581502, -0.020245709, 0.005666978, 0.008421711, 0.013686154, 0.010423879, -0.023998024, 0.004574886, -0.018481558, 0.007329618, 0.005145434, -0.0020266708, -0.013889171, 0.03853125, 0.010248864, -0.007819659, 0.03760717, 0.0028562408, 0.038139217, 0.010759908, 0.008946755, -0.028072368, 0.0065840553, -0.010080851, 0.010962925, -0.014659236, -0.021533817, 0.014785247, 9.95834E-4, 0.003990337, 0.025440145, 0.031810682, -0.01138296, 0.068493776, 0.0041338485, -0.0071616042, 0.020105695, -0.010969926, 0.020805756, 0.014197198, 0.031502657, -0.019363632, -0.013266119, -0.0057334835, -0.020469727, -0.0052119396, -0.029318472, 0.0022856928, 0.0017483975, 0.012097021, 0.012125023, -0.005194438, -0.010283868, -0.004480378, -0.0055164653, 0.034330897, 0.002833489, -0.0051384335, -0.018817587, 0.020245709, -0.007434627, 0.0040148385, -0.033938862, 0.0034652923, -0.013833167, -0.0064300424, -0.009219778, 0.01814553, -0.010094851, -0.00414785, 0.01552731, 0.004242358, 0.010101852, -0.0022839427, -0.021785837, -0.025944188, -0.018887592, 0.019377634, -0.0052189403, -0.016157363, -0.025818178, -0.017179448 ], + "id" : "f72759df-d3e4-4af4-9d4a-93a7d008b267", + "metadata" : { + "source" : "movies.csv" + } + }, + "2c59e756-fc5a-4c01-9bba-f7f226c05cc3" : { + "text" : "Ruiz-Amber Alexander-Jason Hall-Jason Walsh-Jonathan Kowalsky-Shane Habberstad-Kevin Ryan-Benjamin Mathes-Luis Jose Lopez-Had Mhidi Senhaji-Ryan Sadaghiani-Ayman Samman-Salah Salea-Aidan McGraw-Ferguson Reid-Mark Thomason-Amie Farrell-Quay Terry-Tami Goveia-Leon Farmer-Paul Meixner-Victoria Reina Sigloch-Joel Lambert-Tony Nevada-Brett Edwards-Nick Salter-Ricky Ryba-Jet Jurgensmeyer-Madeleine McGraw-Elizabeth Schmidt-Bryan Anderson-Jacob Schick-Wade White-Clint Eastwood-Erik Aud��,based on novel or book-sniper-biography-iraq-u.s. navy seal-iraq war-u.s. soldier-u.s. marine-pack-guns,/vJgtfUmZE5i4L12sOryAPuBa04K.jpg,/smAnf46gZL1jXuP9nZvkM3Uynav.jpg,228150-205596-106646-168259-207703-13223-6479-281957-260346-240832-857-1271-137113-18785-194662-193756-266856-49047-119450-16869-228967\r\n953,Madagascar,Family-Animation-Adventure-Comedy,en,Alex the lion is the king of the urban jungle the main attraction at New York's Central Park Zoo. He and his best friends���Marty the zebra Melman the giraffe and Gloria the hippo���have spent their whole lives in blissful captivity before an admiring public and with regular meals provided for them. Not content to leave well enough alone Marty lets his curiosity get the better of him and makes his escape���with the help of some prodigious penguins���to explore the world.,76.281,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/25/05,75000000,542063846,86,Released,Someone��s got a zoo loose.,6.882,9680,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Sacha Baron Cohen-Cedric the Entertainer-Andy Richter-Tom McGrath-Christopher Knights-Chris Miller-Conrad Vernon-Eric Darnell-David Cowgill-Elisa Gabrielli-Stephen Apostolina-Devika Parikh-David P. Smith-Cody Cameron-Bob Saget-Jeffrey Katzenberg,africa-island-lion-zoo-hippopotamus-giraffe-penguin-madagascar-friendship-cartoon-zebra-slapstick comedy-escape-animal-lemur-escaped animal-talking animals,/uHkmbxb70IQhV4q94MiBe9dqVqv.jpg,/8NCftAWfkETwrbf7QwEaDH1xpus.jpg,10527-80321-425-950-9502-809-8355-810-808-57800-920-10192-585-12-38757-49444-46195-2062-20352-13053-8587\r\n62177,Brave,Animation-Adventure-Comedy-Family-Action-Fantasy,en,Brave is set in the mystical Scottish Highlands where M��rida is the princess of a kingdom ruled by King Fergus and Queen Elinor. An unruly daughter and an accomplished archer M��rida one day defies a sacred custom of the land and inadvertently brings turmoil to the kingdom. In an attempt to set things right M��rida seeks out an eccentric old Wise Woman and is granted an ill-fated wish.", + "embedding" : [ -0.0054579484, -0.016607903, -0.022632338, -0.019389456, -0.008643165, 0.043853547, -0.005959985, -0.018521069, -0.0045149345, -0.04233387, 0.0074423486, 0.011350091, 0.022971552, -0.006458629, 0.003883997, 0.016051592, 0.019199496, -0.002623818, 0.008202188, -0.018765302, -0.0018181854, 0.010074647, -0.011560403, -2.5695437E-4, 0.01933518, 0.010169627, 0.01701496, -0.0051187347, 0.0010100089, -0.018724596, 0.0032004814, -0.0067673135, 0.0062042186, -0.018344678, -0.022930847, -9.052766E-5, 0.01887385, -0.031153386, 0.03419274, -0.008188619, 0.021248346, -0.0035278227, -0.016038025, -0.0027611996, -0.003510862, 3.0720042E-4, 0.0076594455, -0.015943045, -0.017069234, 0.03991867, 0.0338671, 0.008052933, -0.014002742, -0.023677116, -0.012483064, -0.009043437, -0.018575342, -0.0038161543, -0.005427419, 0.005695398, 0.004355504, -0.006071925, -0.020881996, -0.00673, -0.008751714, -0.004155368, 4.0239227E-4, -0.013643175, 0.00607871, -0.0043962095, 0.029199516, 0.0033955292, 0.015970182, -1.03513186E-4, 0.043853547, -0.024979698, -0.025386754, -6.5722654E-4, 0.001335654, -7.9164E-4, 0.024966128, -0.013670312, -0.015644535, 0.011071935, 0.019009536, 0.01645865, -0.0062991986, 0.04187254, -0.035495322, 0.012890121, 0.009104496, 0.026336553, 0.008181835, -0.0063907863, 0.012225262, 0.00673, -0.025251068, 0.012469496, -0.0073066633, -0.040732782, 0.007028508, -0.011275464, 0.010088216, -0.0079443855, -0.0051424797, -0.012170988, -0.017516997, 0.013127571, 0.016675746, 0.015196774, -0.009172339, -0.008487127, 0.029308064, -0.04862968, -0.012177772, -0.023432883, 0.032320283, -0.0067401766, -0.0076662297, -0.021655403, 0.020054314, 0.026390826, -0.013772077, -0.034898307, 0.023636412, 0.027639134, 0.007503407, -0.027896935, -0.013934899, 7.8824785E-4, 0.027489878, -0.008561754, 0.027693408, 0.0067910585, -0.013134355, 0.03327008, -0.025481734, -5.7284714E-4, -0.018263265, -0.020312117, 0.03834472, 0.023052964, -0.02655365, -0.013534627, -0.023066532, 0.016295826, 0.010671663, -0.015630968, 0.02112623, 0.013493922, 0.023229355, -0.0017104851, 0.015156069, 0.018588912, 0.030583508, 0.009552258, -0.015413871, 0.008894184, -0.01701496, -0.010013589, 0.0085414015, 0.0019691356, -0.0018826361, -0.012550907, 0.0030885409, 0.02103125, 0.008724577, -0.019864354, -0.0135210585, 5.7920744E-4, -0.009382651, 0.025617419, -0.012469496, 0.018806009, 7.2379725E-4, 0.013025806, -0.006353473, -0.00425374, -0.017869778, -0.012564476, 0.0046133064, -7.4203E-4, 0.022957984, 0.027924072, -0.02728635, 0.010162842, 0.008358226, -0.015305323, -0.013114002, -0.013005453, -0.008249678, 0.006136376, 0.009769355, -0.009599748, -0.64955354, -0.0129715325, -0.0049796575, 0.004552248, 0.024341976, 0.023907783, -0.003612626, -0.010237469, -0.024436956, -0.0024694758, -0.026607923, 0.029470887, 0.020773448, -0.020217137, -0.009796492, -0.019972904, 0.010834486, -0.037340645, 0.009545473, -0.00850748, -0.028819596, 0.011010877, 0.019240202, -0.0023151336, -0.0031987852, 0.016227983, -0.012673024, -0.030610645, 0.009436925, 0.021994617, -0.030474959, 0.010040726, 0.018114012, -0.0028731402, 0.048873913, -0.005590242, -0.011845343, 0.051234838, 0.022401674, 0.01683857, -0.023188649, -0.0044335234, 0.016336532, -0.0068215877, -9.057006E-4, 0.02495256, 4.9355597E-4, 0.023270061, 0.01252377, -0.019389456, -0.013799214, 0.0021319583, -0.013290393, -0.029280927, 0.009572611, 0.01079378, 0.0075780344, -0.028738186, 0.021831794, 0.007924032, -0.024640484, 0.019240202, 0.0010600429, 0.01991863, 2.8197138E-4, 0.020976976, 0.012673024, -0.002101429, 0.025644556, -0.026675766, 0.009749002, 0.013582117, -0.023541432, -8.115688E-4, 0.0034769406, 0.018480362, 0.013419295, 0.007991875, -0.008873831, 0.017313467, 0.005193362, 0.00588875, 0.014287681, 0.0073541533, 0.023392178, -0.013453215, -0.032591652, 0.010488488, 0.013717802, -0.0051424797, 0.010420646, 0.018765302, 0.0065027266, -0.0052645965, -0.014749012, -0.008473558, -0.005339224, 0.0038263306, 0.02440982, -0.06339226, 2.8069934E-4, -0.013629607, 0.02112623, -0.013622822, 0.0047320314, 0.0036702924, -0.02458621, 0.0056648687, 0.03318867, -0.021099092, -0.008833125, 0.018751733, -0.010379939, -0.01004751, -7.047165E-4, -0.03348718, 0.018426089, 2.2197296E-4, 0.006400963, -0.0058310837, 0.010006804, 0.007116704, 6.105847E-4, -0.020407097, 0.014192701, 0.012089577, -0.012408437, -0.013127571, -0.0015417263, 0.018358245, 0.012096361, -7.9079194E-4, 0.024423387, -0.017435584, 0.0024185937, 0.024749031, 0.024884718, 0.007869758, 0.022795161, 0.0048677167, -0.0136635285, -0.014355524, -0.0061160233, -0.026485806, -0.018900989, -0.023731392, -0.02401633, 0.010095, -0.01355498, -0.012903689, -0.0049152067, 0.003239491, -0.012605181, 0.011411149, 0.011221189, 0.011227974, -0.02438268, -0.007516976, 0.0075101913, -0.013039375, 0.027489878, 0.019498004, -0.022279557, -0.01673002, 0.021261916, -0.0067639216, -9.302936E-4, 0.018032601, -0.005590242, -0.025644556, -0.009057006, -0.00836501, -0.007693367, 0.00757125, -0.020013608, 0.014816855, -0.010576683, 0.015535988, -0.013398942, -0.012347379, 0.014436935, 0.016485786, -0.022768024, -0.025128951, 0.018466795, 0.011024445, -0.0061058467, 0.00953869, -0.016580766, 0.004681149, -0.010237469, 0.0039688004, 9.429081E-5, 7.605807E-5, -0.010854838, -0.013392157, 0.0041214465, 0.012272752, 0.012367732, -0.0010541066, 0.021275483, 0.01626869, 0.008677087, -0.0014255457, 0.014355524, -0.028222581, -0.0026797883, -0.025793811, 0.031831816, -0.0063975705, 0.01674359, -0.009063791, -0.010488488, 0.004993226, -0.0077408566, 0.006828372, -4.2592522E-4, 0.012225262, -0.010481704, 0.011085504, 0.0077001513, -0.013039375, 0.0045420714, 0.012177772, -0.030122178, 0.009179123, 0.010006804, -0.008873831, 0.005695398, 0.005597026, -0.0057802014, 0.009484415, -0.013833135, 0.014938972, -3.5511435E-4, -0.008907752, 0.010128921, -0.013215766, 0.037069276, -0.017340604, -1.7607311E-4, 0.014477641, 0.019972904, 0.0059735533, 0.026607923, -0.021302622, 0.016594335, 0.016322963, -0.005597026, 0.042876612, -0.018738165, 0.0136160385, 8.6022475E-5, 0.0049864417, -0.0061058467, -0.028765323, 0.01476258, 0.013514274, 0.02663506, 0.014097721, 0.0036974293, -0.015156069, -0.0029240223, 0.0025390147, 0.0056343395, -0.012415222, -0.02037996, -0.015020383, -7.8485574E-4, -0.031533305, -0.015020383, -9.0994075E-4, -0.012795141, 0.030339275, -0.0044674445, 0.0095658265, -0.00757125, -0.006478982, 0.020705605, 0.023690686, -0.0024372505, -0.026255142, 0.01888742, 0.020705605, -0.02401633, -0.013792429, -0.011933538, -0.015956612, -0.04141121, 0.005044108, 0.002645867, 0.031234799, -0.01962012, 0.014626895, 0.00485754, -0.004423347, 0.037612017, -0.011058367, 0.025359618, -0.0014085849, 0.0015086529, 0.0044640526, -0.006981018, 0.0051187347, 0.018806009, -0.018738165, -0.0038059778, -0.0037279588, 0.003437931, 0.0076051713, 0.0032428831, -0.0036770767, -0.034328427, 0.012164203, -0.01201495, -0.015128931, -0.023731392, -0.0013543108, 0.019552277, -0.01728633, -0.02206246, -0.02141117, -0.021248346, -5.5546244E-4, 0.087327175, 0.04048855, -0.0012347379, 0.021818226, 0.002301565, 0.005766633, -0.017652681, -0.036092337, 1.2497905E-4, -0.0032971574, 0.007123488, -0.01088876, 0.025318911, 0.0011762235, 0.023812803, -0.017137077, -0.014328387, -0.022089597, -0.001063435, -8.7686745E-4, 7.6874305E-4, -0.005932848, 0.01841252, 0.028358266, -0.0055122226, -0.021356896, 0.008711008, 0.01991863, 0.009002732, -0.01504752, -0.012469496, 8.535465E-4, 0.0030885409, 0.009219829, 4.8804373E-4, 0.0027510233, 0.025875222, 3.665628E-4, 0.046512984, -0.006231356, -0.0056987903, 0.0338671, 0.004236779, -0.017327037, 0.011058367, -0.031777542, -0.01709637, 0.01261875, 0.015386734, -0.020990545, 0.022863004, -0.013324315, -0.0010142489, -0.0011999685, 0.032700203, 0.002576328, -0.013141139, 0.0023575353, -0.017788367, 0.0052713812, -0.010454566, -0.018154718, 0.021058386, -0.020407097, -0.011628246, -0.0242877, -0.01952514, 0.009416573, -0.026716473, 0.0024389466, -0.0036974293, -0.036689356, -0.020841291, -0.010943035, 0.0067367842, -0.0014085849, 0.021384032, 0.0078019155, 0.007279526, 0.018751733, -0.0052713812, -0.026892863, 0.015400303, -0.02401633, -0.018534638, -0.010739506, 0.0026509552, 0.025386754, -0.011540051, 0.013419295, 3.71439E-4, 0.0042266026, 0.007876542, -0.0030257863, 0.04428774, 0.0028884048, 0.011390796, 0.018765302, 0.00920626, -0.010074647, 0.010013589, -0.023595706, -0.013303962, -0.0037313509, -0.0036669, -0.01420627, -0.0031122859, -3.909438E-4, -0.033894233, -0.024518367, -0.01636367, -0.03639085, -5.613987E-4, -0.002303261, 0.012279537, -0.013052943, 0.0172999, 0.035495322, 0.00495252, 0.0062686694, 0.012218478, -0.014816855, 0.008290383, 0.021261916, -0.014097721, 0.034138467, -0.0074084275, -0.011200837, -0.011560403, 0.021845363, 0.019755807, 0.034518387, -0.0154274395, 0.005708967, -0.033731412, -0.021275483, 0.010848055, 0.017327037, -0.0085414015, 0.013032591, -0.027422037, 0.011166915, 0.011811421, -0.016811432, -0.01261875, -0.022754455, 0.0050135786, -0.0046641887, -3.761032E-4, 0.0035787045, -0.02196748, -0.0068453327, -0.013514274, -0.009749002, 0.003639763, -0.024654053, -0.0106988, -6.597707E-4, 0.034084193, 0.018019032, 0.01841252, -0.0018521069, 0.011322954, 0.0064755897, 0.009871119, 0.025400322, -0.030285, 0.008527833, -0.034328427, 0.011058367, 0.020339254, 0.02233383, 0.0013670312, -0.01247628, -9.513884E-5, 0.023324335, 0.0076594455, -0.006132984, -0.010671663, -0.023717823, -0.012516986, 0.0051085586, -0.01098374, -0.008731361, -0.018751733, -0.012795141, 0.04843972, -0.007177762, 0.002152311, -0.011546834, 0.015346028, -0.017910484, 0.02487115, -0.012645887, 0.015359596, -0.022903709, -0.0065943147, -0.01322255, 0.0033989213, 0.0078968955, -0.016241552, 0.02917238, 0.009457278, -0.008019012, 0.005440988, 0.0146676, -0.010474919, -0.026010906, 0.023962056, -0.018588912, -0.017137077, -0.02383994, 0.003312422, -0.025793811, -0.0053358315, 1.6621471E-4, 0.006482374, 0.009477631, -2.1815681E-4, -0.032863025, 0.0030630997, 0.0066960785, 0.07082782, 0.018928126, 0.030746331, 0.03758488, -0.0027069254, -0.014993246, 0.026702903, -0.0020929486, 0.0036228024, 0.018683892, 0.029226653, -0.013514274, 7.8315963E-4, 0.013805998, -0.006289022, -0.04225246, -0.049063873, 0.030257862, 0.025834516, 0.020298548, -0.030040765, 1.6981886E-4, -0.02195391, 0.019104516, -0.0114247175, -7.157409E-4, -0.0033446471, -0.025101814, -0.017449154, 0.016892843, 2.599225E-4, 0.006088886, 0.009436925, -0.022388104, 0.016784294, -0.016092299, 9.353818E-4, -0.00742878, -0.019308044, 0.022211714, -0.014409798, 0.02037996, 0.018588912, 0.012537339, 0.010780212, 0.0029884728, 0.016038025, 0.029606573, -0.022632338, 0.022564497, -0.00920626, -0.0017418624, -0.0018741557, 0.013826351, -0.020135725, -0.013290393, -0.013873841, 0.002922326, 0.021763952, -0.0063025905, -0.0075373286, 0.009314808, -0.014084153, 0.005719143, 0.010298528, -0.010658095, -0.0010837878, -0.035033993, 0.012048871, -0.0018758518, 0.0014382661, 0.005939632, -0.002228634, -0.0024660837, -0.006014259, 0.004972873, -0.019050242, -0.010468135, -0.024898287, -0.019782944, -0.03614661, -0.017340604, -0.014409798, -2.4677799E-4, 0.021275483, -0.033161532, -0.0021879284, 9.837197E-4, -4.1002457E-4, -0.0031631677, -0.003561744, -0.01261875, 0.0033683921, 0.0012423702, -0.002793425, -0.018005464, -0.004487797, 0.024097743, -0.003639763, -0.0047116783, -0.0018470186, 0.007449133, 0.028683912, -0.02160113, 0.00860246, 0.0133310985, -0.010115352, -0.018548205, 0.024816874, 0.023066532, 0.0154274395, -0.020692036, -0.016038025, -0.0036533317, -0.008846694, 0.02887387, 0.010773428, -0.016825, 0.04233387, 0.02122121, 0.021044819, 0.027788388, -0.013704234, -0.031587582, 0.009294456, -0.0072388207, -0.03234742, -0.01709637, -0.013493922, 0.00968116, -0.0011804637, -0.013466784, -0.023731392, 0.002522054, -0.030393548, -0.0023694078, -0.01917236, 0.014233408, 0.03682504, 0.019660827, 0.009389436, 0.012225262, 0.0042707007, 0.010508841, -0.007028508, -0.014423367, 0.005196754, 0.004148584, 0.02664863, 0.010610605, -0.030719193, -0.0130190225, 0.024789738, 0.010278176, 0.005668261, 0.02179109, -0.03601093, -0.01674359, 0.0014416582, 0.028059758, 0.016322963, -0.006417923, 0.036119476, -0.021628266, -0.014409798, 0.014477641, -0.0024711718, -0.0028307384, 0.006119415, -0.0040569957, -0.0111737, 0.0036669, -0.005091598, 0.011906401, 0.0060278275, -0.031234799, 0.02131619, 3.6444273E-4, -0.0058480445, 0.022089597, 0.008731361, -0.011797853, -0.0017605191, -0.011370444, 0.011689304, -0.0014543788, 0.0017961366, -0.002226938, 0.030447822, -0.03185895, 0.0146404635, -0.03112625, -0.013202198, -9.175731E-4, 0.00920626, -0.011594324, 0.027788388, -0.0059939064, -0.05039359, 7.305815E-4, -0.012401653, -0.009145201, -0.011390796, 0.009118064, -0.015888771, 0.0035990574, -0.026987843, -0.019199496, -0.03476262, -0.028575363, 0.009864335, -0.0038738206, -0.023541432, 0.01907738, 0.18594338, -0.02252379, 0.017842641, 0.03872464, -0.0034803327, 0.015766652, 0.042035364, 0.026404396, -0.0067740977, 0.0066180592, -0.012306673, 0.010210332, -0.012516986, 0.00371439, -8.052085E-4, -0.0071641933, -0.027489878, -0.021248346, -0.0028884048, -0.02533248, 0.0011719833, -0.0010091608, -0.008188619, -0.014898266, 0.0010320577, 0.010997308, -0.009545473, -0.0011075328, 0.011635031, -0.0084125, -0.010780212, -0.019118086, 9.90504E-4, 0.0074898386, -0.036417983, -0.004352112, -0.02420629, 0.022265987, 0.022496654, 0.025088245, -2.2388104E-4, 0.0029749041, -6.881798E-4, 0.0098032765, -0.0017995287, 0.025943065, -0.012496633, 0.0059260633, -0.01907738, 0.019552277, -0.02982367, 0.010943035, 0.005556321, 0.01933518, 0.0118046375, -0.009626885, 0.011153347, 0.009050222, -0.0077069355, 0.0064145313, -0.004229995, 0.022849435, -0.0242877, 0.026512943, -0.007795131, 0.014708307, -0.025766673, -0.01710994, -2.1508269E-4, -0.011648599, -0.020257842, -0.025617419, -0.0152374795, 0.0096608065, -0.014749012, -0.02917238, 0.0018538029, 0.01098374, 0.0083514415, 0.013392157, -0.019185927, -0.020787016, -2.450819E-4, -0.0070081553, -0.019185927, -0.011587541, 0.017747661, -0.008839909, -0.014274113, -0.02233383, -0.015698811, -0.03579383, -0.013480353, 0.0042435634, -0.0026306023, 0.010725938, 0.02887387, 0.016227983, -0.02401633, -0.0137585085, -0.035088267, 0.008792419, 0.037042137, -0.005865005, -0.02468119, -0.021085525, -0.0054715173, 0.005420635, 0.034518387, -0.01187248, -0.03272734, -0.014708307, 0.0019470867, -0.021913206, 0.014613327, -0.001582432, 0.017964758, -0.02215744, 0.032971572, -0.0075373286, -0.0125441225, -0.016499355, 0.014843992, -0.003490509, -0.010108569, -0.039511614, -0.04711, 0.025196794, 0.009979667, -0.036417983, 3.2903728E-4, 2.966E-4, 0.013487137, -0.015753085, -0.014721875, 0.010291744, 0.0056818295, -0.0038059778, 0.014572621, 0.0036261945, 0.005390106, 0.0038534678, 0.009606532, -0.0073677218, 0.012903689, -0.01673002, 0.015685242, -0.0016926765, -0.01449121, -0.024599778, -0.028548226, 0.009925393, 0.0073202318, -0.0052306755, 0.058833227, -0.0113297375, -0.026485806, -0.05020363, -0.011879264, 0.04056996, -0.026119456, 0.032591652, 0.019565847, -0.011261895, -0.018493932, -0.0071370564, -0.1747629, 0.010081432, 0.016567197, -0.020692036, 0.0085414015, 0.0047795214, 0.030067904, 0.0026747, -8.4845826E-4, -0.011261895, 0.022496654, 0.0057055745, -0.03766629, 0.00232531, -0.015793791, 0.028846733, -0.0076662297, 0.020352822, 0.029036693, 0.003510862, 0.035359636, -0.014233408, -0.007910464, 0.010664879, 0.0029036694, 0.009477631, 0.016200846, -0.008290383, -0.017232057, -0.026675766, -0.022225283, -0.008324305, -0.0010549546, 0.009165554, -0.00971508, 0.0047388156, -0.017801935, -0.0011168611, -0.015318891, 0.013839919, 0.029769395, 0.0029325024, 0.015196774, 0.009796492, 0.0125916125, 0.024654053, 0.020352822, -0.014111291, 0.010203549, -0.014043448, -0.019050242, -0.034708347, 0.007693367, -0.013962036, 0.016865706, 0.026024476, -0.0064382763, 0.0062720613, 0.012272752, -0.014246976, -0.018005464, 6.029524E-4, 0.016580766, -0.019403024, -0.010637742, -0.023107238, -0.02195391, 0.01869746, -0.038398992, 0.008629597, -0.011981028, 0.012422006, -0.003734743, -0.006489158, 0.019403024, -0.021994617, -0.01757127, -0.0074898386, -0.0022014969, -0.004487797, -0.01691998, 0.04179113, -0.0075848186, 0.007279526, 0.0117571475, -9.2181325E-4, -0.005193362, -0.012164203, -6.860597E-4, -0.013432863, -0.0046438356, -0.027584858, -0.02364998, -0.0058073387, -2.4190177E-4, 0.016689314, -0.0064620213, 0.007971522, 0.0132836085, -0.017639114, 0.0075576813, -0.021424739, -0.015441008, 0.002525446, 0.00971508, 0.012360947, 0.016472219, 0.02952516, 0.02690643, -0.0017469506, 0.010244254, 0.009511553, 0.017625544, 0.03449125, -0.02936234, 0.01191997, -0.015481713, -0.012700161, 0.029769395, 0.011553619, 0.046784356, -0.002747631, 0.016105866, -0.018955262, -0.011248327, -0.024599778, -0.09286314, -0.0067673135, -1.18618795E-4, 0.034138467, -0.03522395, 0.04075992, -0.008147913, 0.022700181, -0.0096133165, 0.037530605, 0.009050222, -0.015305323, 0.028765323, -0.01336502, 0.015495283, 0.013975604, -0.023527863, -0.003487117, -0.020108588, 0.01962012, -0.010786996, -0.018032601, 0.002846003, -0.013120786, -0.014884697, -0.0027883367, -0.033921372, 0.019742237, 0.004131623, 0.0049423436, 0.012272752, -0.02214387, 0.01757127, -0.03560387, -0.012842631, -0.01691998, -0.025264638, -0.016689314, 0.008846694, -0.037367783, 0.010474919, 0.0037211743, 0.006794451, -0.04371786, -0.003931487, 0.0011745275, -0.023880646, 0.010814133, -0.01655363, -0.027625564, -0.004677757, -0.0016070249, -0.03226601, -0.0056479084, 0.026309416, 0.024043467, 0.021058386, 0.015861632, -0.010685232, -0.034816895, -0.0030342666, 0.011309385, -0.00827003, 0.010780212, -0.006038004, 0.017123507, -0.007550897, 0.012001381, 0.018086875, -0.013161492, -0.018385382, 0.032401692, -0.039972942, -0.0018130973, -0.02420629, 0.03215746, -0.04176399, 1.9737998E-4, 0.01710994, -0.035902377, 3.0868448E-4, -0.034545526, 0.008290383, -0.0043656803, 0.012503417, 0.008514264, 0.017910484, 0.0032801966, -0.0083039515, -0.020447802, -0.002820562, 0.028765323, 0.0024219858, -0.0064450605, -0.0019386064, 0.013962036, 0.018561775, -0.0094912, -0.01654006, 0.01766625, 0.0025678477, -0.0050067944, -0.07858903, 0.023514295, 7.274544E-6, -0.0062211794, -0.0016095691, -0.0057768095, 0.0036295867, -0.01266624, -0.0019606552, 0.0016163533, -0.01476258, 0.019375887, 0.0029884728, -0.0055529284, 0.0021896246, -0.002374496, 0.0133310985, 0.0017757837, 0.010095, -0.003738135, 0.0049593044, 0.027924072, 0.02037996, 0.007252389, -0.011655383, 0.018928126, -0.005105166, 0.022537358, -0.0047082864, -0.010298528, 0.022537358, -0.015373166, -0.0067435685, 0.011255111, -0.007829052, -0.02906383, 0.0011355178, 0.0042639165, 0.00939622, 0.025929496, -0.0067164316, -0.0076594455, -0.0058582206, -0.025780242, 0.013147923, 0.0037652722, -0.018073305, 0.015698811, 0.013371805, 0.0036974293, 0.01860248, -0.00242029, -0.0040162904, -0.01869746, 0.011533266, -0.009090927, 0.04925383, 0.017598407, -0.0035990574, -0.007252389, 0.03430129, -0.005549536, 0.028575363, -0.030909153, -2.8091136E-4, -0.00925375, 0.0023405745, -0.002847699, 3.5850648E-4, -0.026865726, -0.015278186, 0.0010846358, 0.0031479031, 0.03815476, 0.012489849, 0.016689314, 0.0012109929, 0.007815484, -0.018629616, 0.01654006, 0.005074637, -0.015454576, -0.023147944, 0.013717802, 0.0013543108, 0.0060515725, 0.0014128251, 0.0061736894, -0.0029528553, 0.017598407, -0.012537339, 0.0057802014, -0.0036329788, 0.011275464, -0.009016301, 0.01654006, -0.0037788406, -0.033731412, 0.015590262, 0.03430129, -0.017584838, 4.927079E-4, -0.01093625, -0.025101814, -0.022863004, 0.007116704, -0.0043894253, -0.021017682, 0.008310736, 0.015739515, 0.03693359, 0.008826341, -0.014151996, 0.006489158, -0.0319675, 0.010854838, 0.001831754, -0.019606553, -0.0042469557, 0.042279597, 0.010535978, -6.704771E-5, 0.04569887, -0.0062042186, 0.035169676, 0.020271411, 0.017367741, -0.017503427, 0.001657907, -0.004009506, 0.009233397, -0.0029240223, -0.0185075, 0.010943035, -0.014274113, 0.005892142, 0.004165544, 0.026933568, -0.020854859, 0.08168266, 0.0172999, 0.019240202, 0.023229355, -0.0057835937, 0.022930847, -0.003139423, 0.03766629, -0.020637762, -0.002549191, 0.014409798, -0.01879244, 0.019647257, -0.023487158, -0.015725948, 0.0027391508, -0.0072591733, 0.009192691, -0.016947117, -0.031723265, 0.004921991, -0.012225262, 0.03617375, -0.014328387, -0.021044819, -0.012259183, 0.0133785885, -0.0066723335, 5.8768777E-4, -0.005820907, -0.0072591733, -0.020909132, -0.011099072, -0.0076526613, 0.033622865, -0.022510221, -0.0017265978, 0.01220491, 0.019647257, 0.022510221, -0.015549556, -0.031099113, -0.017584838, -0.027069254, 0.023297198, 0.0016231376, -0.016974254, -0.022822298, -0.028358266 ], + "id" : "2c59e756-fc5a-4c01-9bba-f7f226c05cc3", + "metadata" : { + "source" : "movies.csv" + } + }, + "a4851871-aaa9-4950-a786-7ce500b257ad" : { + "text" : "3,12678,Ian McKellen-Martin Freeman-Richard Armitage-Orlando Bloom-Evangeline Lilly-Luke Evans-Lee Pace-Benedict Cumberbatch-Ken Stott-Aidan Turner-Dean O'Gorman-Billy Connolly-Graham McTavish-James Nesbitt-Stephen Fry-Ryan Gage-Cate Blanchett-Ian Holm-Christopher Lee-Hugo Weaving-Mikael Persbrandt-Sylvester McCoy-Peter Hambleton-John Callen-Mark Hadlow-Jed Brophy-William Kircher-Stephen Hunter-Adam Brown-John Bell-Manu Bennett-John Tui-Peggy Nesbitt-Mary Nesbitt-Kelly Kilgour-Mark Mitchinson-Sarah Peirse-Nick Blake-Simon London-Conan Stevens-Allan Smith-Miranda Harcourt-Thomasin McKenzie-Erin Banks-Brian Hotter-Timothy Bartlett-Mervyn Smith-Martin Kwok-Dee Bradley Baker-Olof Johnsson-Jon Olson-Otep Shamaya-Debra Wilson-Jack Binding-Terry Binding-Stephen Gledhill-Billy Jackson-Katie Jackson-Peter Jackson-Terry Notary-Vanessa Cater,corruption-elves-dwarf-orcs-based on novel or book-dragon-battle-unlikely friendship-epic battle-sword and sorcery,/xT98tLqatZPQApyRmlPL12LtiWp.jpg,/zn13a7U9eMTJq8sHthe3bCgsVm4.jpg,57158-49051-121-120-122-131631-22-127585-118340-58-285-1865-99861-76338-140607-12445-198663-12444-767-672-135397\r\n12444,Harry Potter and the Deathly Hallows: Part 1,Adventure-Fantasy,en,Harry Ron and Hermione walk away from their last year at Hogwarts to find and destroy the remaining Horcruxes putting an end to Voldemort's bid for immortality. But with Harry's beloved Dumbledore dead and Voldemort's unscrupulous Death Eaters on the loose the world is more dangerous than ever.,164.649,Warner Bros. Pictures-Heyday Films,10/6/10,250000000,954305868,146,Released,One Way��_ One Fate��_ One Hero.,7.768,17100,Daniel Radcliffe-Rupert Grint-Emma Watson-Helena Bonham Carter-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Bill Nighy-Brendan Gleeson-Richard Griffiths-John Hurt-Rhys Ifans-Jason Isaacs-Alan Rickman-Fiona Shaw-Timothy Spall-Imelda Staunton-David Thewlis-Warwick Davis-Tom Felton-Toby Jones-Dave Legeno-Simon McBurney-Helen McCrory-Nick Moran-Peter Mullan-David O'Hara-Cl��mence Po��sy-Natalia Tena-Julie Walters-Mark Williams-Bonnie Wright-Harry Melling-Ian Kelly-Michelle Fairley-Carolyn Pickles-Graham Duff-Guy Henry-Arben Bajraktaraj-Rod Hunt-Suzie Toase-Ralph Ineson-Adrian Annis-Emil Hostina-Paul Khanna-Richard Strange-Anthony John Crocker-Peter G.", + "embedding" : [ 0.006281856, -0.030628694, -0.02699272, -0.037089646, -0.026168205, 0.044929292, 5.396094E-5, -0.0077044815, -0.025046324, -0.03422412, 0.02485709, 0.021477932, 0.017666241, 0.0012105836, 0.00763014, 0.012631295, 0.011218807, -0.013084102, 0.014814232, -0.03752218, -0.010286159, -0.002726981, -0.021829365, 0.016314577, 0.0057884986, 0.013584218, 0.026614252, -0.015665779, -0.012266345, -0.007832889, 0.009069662, -0.01931527, -5.5080286E-4, -0.030871993, -0.031034192, 5.7825854E-4, -0.00293142, -0.020585835, 0.02895263, 0.003216959, 0.018166356, 0.008346521, -0.014557416, -0.0027083957, -0.01795009, 0.0097454935, 0.01703096, -7.413029E-4, -0.012077113, 0.021883432, 0.023059377, 0.045551058, -0.016814694, -0.017355358, -0.023113444, 6.0244063E-5, -0.01329361, -0.0035312208, -0.0015696192, 0.013273335, 0.0063764723, -0.018382622, -0.03979297, -0.02341081, -0.02935813, -0.012536678, -0.0031882362, -0.036089413, -0.008197838, -0.0017605416, 0.011779747, 0.013638284, 0.01650381, 0.0031392383, 0.0075490405, -0.036278646, -0.029925829, -0.00694755, -0.009529227, -0.0039164447, 0.01703096, -0.002044391, -0.01072545, 0.012387996, 0.008866912, 0.007812615, -0.006575843, 0.017166127, -0.015327863, 0.015611713, 0.006640047, 0.03919824, -0.004237465, 0.0033284712, 0.004923434, 0.01393565, -0.015287314, 0.04522666, -0.019234171, -0.02952033, 0.0070692, -0.0083600385, -0.005298521, -0.007305741, -0.010130717, -7.8776636E-4, -0.002056218, -0.0011987565, 0.020058686, 0.00931972, 0.0029500055, -0.0035852874, 0.017531075, -0.02257278, -0.01807174, -0.011266115, 0.014368182, -0.03968484, -0.016909309, -0.019044938, 0.02514094, 0.021207599, 0.004119194, -0.030790893, 0.044523794, 0.044469725, -0.0032541298, -0.017760858, 0.009617086, 0.0048288177, 0.020802101, -0.005396516, 0.020383084, -9.27579E-4, -0.025181489, 0.048578784, -0.028493065, 0.0077990983, -0.021302216, -0.024073126, 0.02943923, 0.028898565, -0.025208523, -0.021031883, -0.020396601, 0.010570008, 0.021315733, -0.012036563, 0.016868759, 0.008569546, 0.011705405, 0.025789738, 0.024154225, 0.0147060985, 0.02253223, -0.007731515, -0.008366797, -0.016003694, -0.00518025, -0.033115756, -0.0039502364, -0.008630371, -2.7540143E-4, -0.010597042, 0.0032946796, 0.018693505, 0.016098311, -0.011779747, -0.0052208, 0.022667395, -0.0067718336, 0.020180335, -0.027546901, 0.01819339, 0.010907924, 0.01112419, -0.006562326, -0.0146520315, -0.03308872, -0.024640825, -0.004724064, 0.016868759, 0.022870146, 0.044199396, -0.017003926, 0.021099467, 0.025978971, -0.010333467, 0.021775298, -0.0062750974, 0.0049707424, 0.02369466, 0.0011531379, -0.016598428, -0.6271718, -0.03738701, 0.0018247457, -0.007974815, 0.012577228, 0.023275644, 0.0025833668, -0.0073530492, -0.027817234, -0.023992026, -0.0281146, 0.017382393, 0.028168665, -0.008170806, -0.016679527, -0.006187239, -2.4731216E-4, -0.019369338, 0.017706791, 0.0051059085, -0.03068276, 0.02426236, 0.014962914, -0.024424559, 0.0014961225, 0.009292686, -0.008373555, -0.022586295, 0.0057378113, -1.1024505E-4, -0.011428314, 0.010779516, 0.008792571, 0.011563481, 0.03633271, 0.019639669, -0.02622227, 0.047118988, 0.012840803, 0.03571095, -0.030736826, -0.0037610035, 0.009448128, -0.006575843, -0.020085718, 0.021694198, -0.008711471, 0.016355127, -0.006160206, -0.01056325, -0.00554182, -0.0052647293, -0.012178487, -0.0051870085, -0.0031392383, 0.0040752655, 0.019301753, -0.043631695, 0.03714371, 0.004724064, -0.027006235, 0.026641287, -0.0046767555, 0.020274952, -0.009657635, 0.02449214, 0.0016735283, 0.0037136953, 0.0028925599, -0.03400785, 0.0011742576, 0.009056145, -0.015652264, 0.002324861, 0.011070124, -0.0029381784, 0.03730591, 8.01283E-4, -0.008447897, 0.006244685, 0.0071908496, -0.006940792, -8.811156E-4, 0.009225103, 0.03252102, 0.0062041353, -0.02393796, 0.002417788, 0.0074882153, 0.007920748, 0.004801784, 0.012563712, 0.021369798, 0.007055683, -0.0068664504, -0.01823394, -0.012273104, 0.009285928, 0.02261333, -0.062554985, -0.008948012, -0.019747803, 0.0142870825, -0.013834275, 0.018531306, 0.021680681, -0.016274028, -0.0058662193, 0.029601429, -0.012360962, -0.004068507, -0.0024346837, -0.013300369, -0.01401675, -0.0077450317, -0.030033961, 0.013908617, 0.014949397, -0.015192697, -0.0043996647, 0.0036900411, 0.008468172, 0.011029574, -0.019166587, 0.0073530492, 0.024478626, -6.4877204E-6, -8.760469E-4, 0.009907693, 0.014489832, 0.005964215, -0.010813308, 0.01654436, -0.018450206, 0.031953324, 0.009110211, 0.018409656, -0.006640047, 0.0018213665, -0.014665549, 0.0026543292, -0.013949167, -0.012746186, -0.027979434, 0.008981803, -0.0137396585, -0.033791587, 0.0036089413, 1.7568984E-5, -0.011320181, -0.018166356, 0.020220885, 0.0077990983, -0.009725219, 0.0030953093, 0.0032777837, -0.028168665, -0.013618009, 0.0036765246, -0.022586295, 0.010651108, 0.015787428, 0.0021119742, -0.02587084, 0.011962221, -0.013381468, -0.018936805, 0.013476085, 2.0496709E-4, -0.0072516743, 0.024721924, -0.011347215, 0.011962221, 0.020153303, -0.016206445, 0.023992026, -0.009955001, 0.038143944, 0.0069948584, -0.0037272118, 0.010157751, -0.0143411495, -0.021653648, -0.014435765, 0.02606007, 0.018166356, 0.01401675, -0.024032576, -0.0034349146, -0.004088782, -0.01554413, -0.023708176, 0.009299444, -0.0035244625, 0.016679527, 0.031872224, 0.001682821, -0.010549733, 0.0028705953, -0.011252598, 0.038657576, 0.027276568, 0.0214509, -0.005646574, 0.014516865, -0.033791587, 0.004517935, -0.010948474, 0.01168513, -0.013685592, 0.02530314, -0.0052376958, -0.034494452, 0.012583987, -7.911455E-4, 0.036062382, -9.1068324E-4, -0.006876588, -0.0013440603, 0.010853858, 0.009461644, -0.01594963, 0.024100158, 0.026195237, -0.023099927, -0.0045922766, 0.012475854, -0.007873439, -0.0052917623, 0.0023096548, -0.012293379, 0.002546196, 0.005798636, -1.2946401E-4, -0.023627076, -0.008576305, 0.03522435, -0.012164971, 0.0557426, -0.021964531, -0.013476085, 0.018828671, 0.016868759, 0.0011514483, 0.0012536679, -0.012151455, 0.0117527135, 0.014584448, -5.216576E-4, 0.04695679, -0.005758086, 0.029709563, -0.008792571, -0.0060689687, 0.01521973, -0.009481919, 0.0042949105, 0.010799791, 0.019815385, 0.021275183, 0.01807174, -0.03422412, 0.039225273, -0.0033605732, 0.0023958234, 0.009630602, -0.007278708, 0.020410119, -0.012523162, -0.038089875, -0.02220783, -0.012333929, -0.0022505196, 0.012320412, -0.013719384, -0.015354897, 0.0016160826, 0.0059405607, 0.01678766, 0.025843805, -0.0015527233, -0.027330635, 0.015733363, 0.02385686, -0.018625923, -0.04133387, -0.013381468, -0.012097388, -0.033818617, -0.03108826, -0.0017977124, 0.041577168, -0.012536678, 0.0072246413, -0.012266345, 0.008346521, 0.020112751, -0.021207599, 0.008028881, 0.029736595, -0.016152378, 0.0078058564, -0.013226027, -0.018031191, 0.021599581, -0.01951802, -0.015192697, -0.0023451361, -0.010414567, 0.011117431, 8.01283E-4, 0.0077923397, -0.038522407, 0.01621996, -0.005795257, 0.0044233184, -0.0019109142, 0.015855012, 0.020018136, -0.0067211464, -0.010995782, -0.03763031, -0.024397526, 0.0057411906, 0.078450546, 0.04117167, 0.014557416, 0.0067076297, -0.014273566, 0.003007451, 0.0028215975, -0.0040651276, -0.014381699, -0.01401675, 0.03308872, -0.011712164, 0.021707715, 0.013097619, -0.01976132, -0.013786967, -0.020545283, -0.017531075, -0.010036101, -0.010738966, -0.028249767, -0.017693274, 0.016517328, 0.023383778, -0.004328702, -0.009373786, 0.014841264, -0.0042476025, 0.001300976, 0.02510039, 0.0077923397, -5.72345E-4, 0.0023603423, 0.0055722324, -0.0020748035, 0.0031274112, 0.024073126, 0.015030498, 0.020423634, -0.01188788, -0.012725911, -0.0011379317, 0.016044244, -0.0071029915, 0.008042398, -0.033845652, -0.01196898, 0.032196622, 0.030358361, -0.037846576, 0.016368644, 0.01626051, -0.019099005, -0.017368875, 0.004649722, -0.009725219, -0.01707151, -0.0018686746, -0.013726142, 0.017814925, -0.0056330576, -0.03200739, 0.021072432, -0.005176871, -0.024167743, 9.698185E-4, -0.018842189, -0.0023113445, -0.018342072, 0.012631295, 0.007481457, -0.012793494, -0.0047274427, -0.007048925, 0.0066130133, -0.0051498376, 0.027357668, -0.0033960545, 0.014489832, 0.006856313, -0.025830287, -0.021180566, 0.00971846, -0.027682068, -0.004156365, 0.018139323, -0.014503349, 0.022559263, -0.015976662, -8.903291E-6, -0.0050619794, 2.1647735E-4, -0.010887649, -0.010887649, 0.016760627, 0.032683223, 0.007035408, 0.0063866097, 0.008826362, -0.0023468256, 0.0021119742, -0.017382393, -0.0055283033, -0.030169128, -0.002759083, -0.0088533955, 0.008339764, -0.0038049326, -2.4794578E-4, -0.039279338, -0.028736364, -0.028006466, 0.012746186, 0.002546196, 0.015584679, 0.0039569945, 0.02646557, 0.01257047, -0.012807011, -0.007528765, -0.012725911, -0.017328326, 0.017720308, 0.008684438, -0.03011506, 0.050254848, -0.007515249, -0.007271949, -0.0013195614, 0.02385686, -0.010637592, 0.016003694, -0.016652493, -0.0058898735, -0.014124883, -0.016841726, 0.005937182, -0.0025242316, -0.011225564, 0.028493065, -0.015827978, -0.0014750027, 0.01988297, 0.0020173576, -0.007055683, -0.029574396, 0.0138680665, -0.012556953, 0.021194084, 0.027736133, 0.009137245, 0.004474006, -0.020856166, -0.009279169, -0.00622441, -0.03011506, -0.019247686, -0.0081234975, 0.015760396, 0.0209643, 0.04260443, -0.00224883, 0.020301985, 0.009110211, 0.010022584, 0.02176178, -0.024194775, -0.020977817, -0.035116214, 0.001735198, 0.009238619, 0.02457324, 0.009846868, -0.0030615176, 0.018260973, 0.015773913, -0.008718229, 0.018031191, -0.006781971, -0.018206907, -0.03754921, 0.0026070208, -0.028979665, 0.006261581, -0.022789046, -0.005007913, 0.023789277, 0.004963984, 0.005751328, -0.021707715, 0.014219499, 0.006792109, 0.02489764, -0.040549904, 0.0279524, -0.02149145, 0.010103684, -0.025154456, -0.021288699, -0.009231862, -0.002397513, 0.020288467, -0.0014572622, -0.010941716, -7.586211E-4, 0.024248842, -0.012577228, -0.021248149, 0.036494914, -0.021369798, -0.014962914, -0.020410119, -0.012415029, -0.016733594, -0.010225334, -0.0048254384, -0.007907231, -0.0018365727, -0.030817926, -0.03160189, 0.02365411, -0.0035346, 0.034521483, 0.021640131, 0.03346719, 0.012813769, 0.018909771, -0.021910464, 0.0029888658, -5.6727626E-4, -0.010934957, 0.022234863, 0.0278713, -0.026343921, -0.0023383778, -0.0051498376, -0.013165202, -0.03241289, -0.035170283, 0.040576935, 0.022478163, 0.0034771543, -0.011637822, 9.1913115E-4, -0.04011737, 0.0027286706, 0.0033690212, -0.003096999, 1.03803526E-4, -0.02505984, -0.023018828, 0.0024667857, -0.010117201, 0.01594963, 0.009171036, -0.022897178, 0.0121176625, -0.020775067, 0.0031307905, -0.008765537, -0.015598197, 0.02887153, -0.026438536, 0.011381006, 0.005714157, 0.012151455, 0.011894639, 8.3792576E-5, 0.0032237172, 0.030736826, -0.014530382, 0.024546208, 0.0038015535, 0.01385455, 0.008231631, 0.00919807, -0.018693505, -0.0038657575, -0.026911618, -0.0040752655, 0.03506215, -0.0041800193, 8.6041825E-4, 0.020139785, -0.01943692, -0.0010940026, 0.005950698, -0.0016862002, -2.0142954E-5, -0.032115523, -0.0014589517, -0.004896401, 0.0024887503, 0.0068529337, -0.012617778, -0.0028283556, 0.0012460648, 0.012739428, -0.007927506, -0.006927275, -0.009826593, -0.023478394, -0.039333407, -0.032602124, -0.016057761, -0.017301291, 0.00951571, -0.02108595, -0.00694755, -0.0013575769, -0.010259125, -0.007413874, 0.0070894747, -0.033115756, 3.9789593E-4, 0.009711701, -0.003080103, 0.005856082, 0.0011556722, 0.027763167, 0.0015966524, -0.011462106, -0.0020376327, 0.006927275, 0.036035348, -0.008407347, 0.020315502, -0.0037745202, -0.018707022, -0.014773682, 0.0025005774, 0.025627539, 0.021599581, -0.00915752, -0.025438305, -0.00855603, -0.0010956922, 0.034629617, -0.018044706, 0.014462799, 0.012340687, 0.0077855815, 0.047821853, 0.027154919, -0.008542513, -0.018436689, -0.005504649, -0.002630675, -0.021518482, 0.009414336, 0.0042239483, 0.010401051, 0.0037170744, -0.0074544237, -0.036846347, 0.003646112, -0.03273729, -0.031710025, -0.0011886191, 0.021599581, 0.030953093, 0.022870146, 0.012198763, 0.004004303, 0.004903159, -0.009252137, -0.02707382, -0.014219499, 0.014314116, 0.0138680665, 0.026979202, 0.019531537, -0.021586064, -0.004565243, 0.021275183, 0.023627076, 0.015449513, 0.02703327, -0.0021119742, -0.01827449, -0.0139221335, 0.0049099172, -0.008880429, -0.016274028, 0.02707382, -0.023343228, -0.017003926, -6.927275E-4, 0.017585142, -0.010509184, 0.016638977, 0.0067414213, -0.0059912484, 0.012577228, -0.0038995491, -0.02903373, -0.0037745202, -0.02927703, 0.034845885, 0.015138631, 0.0015586369, 0.035116214, 0.017179642, 0.0057411906, 0.016017212, -0.0068664504, 0.0075963484, -0.018044706, -9.444748E-4, 0.007393599, 0.024384009, -0.023153994, 0.004365873, -0.024005543, -0.0024955086, -0.005426929, 0.0023721694, -0.0118067805, 0.044875227, 0.014935881, -0.046767555, -0.0021457658, -0.022680912, 0.0070421663, -0.016476776, 0.0017318188, -0.034710716, 0.011800022, -0.0036967995, 0.0023637214, -0.02534369, -0.03992814, 0.006200756, -0.010205059, 0.006285235, 0.010015826, 0.18577263, -0.016882276, 0.006302131, 0.033791587, 0.0022809322, 0.015936112, 0.018977355, 0.016246995, -0.008238388, 0.005815532, -0.0066299094, 0.011732439, -0.006673838, 0.003943478, 0.022937728, -0.013381468, -0.027898334, -0.031710025, -0.01562523, -0.021302216, -0.00963736, -0.011016057, -0.0038049326, -0.02180233, 0.0051261834, -0.0022150385, -0.0130097605, 0.0060250396, 0.017477008, -2.2154608E-4, -7.1933836E-4, -0.011381006, -0.018220423, 0.0018010915, -0.0123542035, -0.0057884986, 0.0032068214, 7.5481954E-4, 0.0016397367, 0.00859658, 0.0026577082, 0.004389527, -0.012611019, -0.0058020153, 0.0038083117, 0.018598888, -0.026722386, -0.005771603, -0.014314116, 0.009326478, -0.045956556, -0.0066163926, 0.024681374, 0.020045169, -0.0034906708, -0.0034146397, 0.0027337393, -0.0059338026, 0.001992014, -0.0022420718, 0.008968287, 0.031466726, -0.022978278, 0.008589821, -0.0012494439, 0.02332971, -0.044118296, -0.012854319, 0.007244916, -0.025370723, -0.009427853, -0.03763031, -0.0064204014, 0.012137937, -0.012678603, -0.013638284, 0.01594963, 0.009995551, 0.00674818, 0.022667395, -0.014530382, -0.022059148, 0.016206445, -0.009590052, -0.011948705, -0.018328557, 0.010630833, -0.017517557, -0.007292224, -0.014962914, -0.0029584533, -0.012698878, -0.0069881, 0.0012393064, -0.0011455348, -0.0037001786, 0.027006235, 0.014368182, -0.022153763, -0.0046328264, -0.027317118, 0.028574165, 0.0017892645, -0.007772065, -0.03430522, -0.016679527, -0.004730822, 0.002301207, 0.023627076, -0.012739428, -0.013834275, -0.03522435, -0.0032710256, -0.0033301609, 0.0020612867, 0.026817003, -0.0011531379, 9.216655E-4, 0.044767093, -0.018463723, 0.0026965686, -0.02505984, 0.0277091, -0.004693651, -0.014178949, -0.028655265, -0.034467418, 0.015246764, -0.01707151, -0.033196855, 0.019490987, -0.03152079, 0.0050552213, 0.0026729144, 0.0012764771, 0.007974815, 0.016449744, -0.005714157, 0.0067583174, -0.0068461755, -0.0027185332, -0.004088782, 0.008941254, 0.012874594, -0.008704713, -0.020423634, 0.0051261834, -0.008454654, -0.013435534, -0.034467418, -0.02485709, -0.0037238328, 0.008893945, 0.0049065384, 0.056607664, 0.007778823, -0.0034315356, -0.04149607, -0.011401281, 0.060824856, -0.041469034, 0.01349636, 0.024127193, -0.0049065384, -0.020856166, 0.0077044815, -0.1719316, 0.029141864, 0.008177564, -0.033845652, 0.021991564, 0.012847561, 0.029331097, 0.0073598074, 0.011698647, -0.024965223, 0.021964531, -8.5872866E-4, -0.047821853, -0.004565243, 0.0029888658, 0.01325306, -0.0039671324, 0.04441566, 0.03422412, -0.0052140416, 0.046767555, -0.006731284, 4.3591147E-4, -0.011793263, 0.03349422, -0.0063798516, 0.020045169, 0.0073327743, 0.0049707424, -0.0051464587, -0.03549468, -0.00666708, 0.014449283, -0.0057884986, -0.009191311, -0.0026881206, -0.0031257216, -0.020166818, -0.0052748667, -0.0098739015, 0.038143944, 0.007528765, 0.027844267, 0.025600506, 0.009123729, 0.013300369, 0.03249399, -0.024465108, 0.022802562, -0.0028469411, -0.009583293, -0.024343459, 0.033845652, -0.006396747, -0.0041158153, 0.01807174, 0.0150710475, -0.0043523563, -0.012192004, 0.007623382, -0.018652955, -0.010698416, 0.010009068, -0.010218576, 0.0051667336, -0.011529689, -0.012347446, 0.0055316826, -0.020910233, 0.019490987, -0.034467418, 0.010205059, 0.01835559, 0.013624768, 0.0147060985, -0.022910696, -0.029898794, 0.0070624417, -0.005345829, 0.011266115, -0.013530151, 0.03590018, -0.012975969, 0.013422018, 0.0025428168, -0.018423174, 0.004284773, 0.0071097496, -0.0036900411, -0.003537979, 0.015408963, -0.019085487, -0.03571095, 0.0072584325, 0.0028858015, 0.005714157, -0.002324861, 0.0073598074, 0.018301522, -0.012766461, 0.007772065, -0.011381006, -0.008508721, 0.013198993, 0.033142786, 0.0067380425, 0.011455348, 0.0069813416, 0.011982497, 0.016801177, -0.006754938, -0.008752021, 0.023235094, -9.731977E-4, -0.019288238, 0.012475854, -0.018477239, -0.026965685, -0.0038015535, 0.0031814778, 0.053309605, -0.010144234, 0.00413609, -0.003228786, -0.011151223, -0.0025073357, -0.09083179, -0.009833352, 0.010461875, 0.05136321, -0.02943923, 0.036251612, 0.0012021357, 0.0033267816, -0.019639669, 0.032899488, -0.004602414, -0.027736133, 0.019409887, 0.0061331727, 0.008981803, 0.0038218284, -0.014205983, -0.0029347993, -0.0071097496, 0.024640825, 2.204901E-4, 0.001819677, 0.012428545, -0.01699041, -0.017003926, 0.024559725, -0.022356514, 0.028303832, 0.01554413, 0.024667857, 0.0044030435, -0.023992026, 0.0066130133, -0.033818617, -0.028601198, -0.023559494, 3.2144247E-4, -0.019126037, -0.018369107, -0.044767093, 0.017855475, 0.010313192, -0.009150761, -0.012225796, -0.005923665, -1.5998204E-4, -0.042496298, 0.026330404, -0.011651339, -0.023248611, -0.008630371, -0.01586853, -0.0273036, -0.015165663, 3.421398E-4, 0.02257278, 0.029574396, 0.007481457, -0.0013102688, -0.025735673, -0.023789277, -0.0021339387, -0.022721462, 0.0139762, 0.0027861162, 0.021288699, 0.0077990983, -0.011516172, 0.0037238328, -0.018544823, -0.021153532, 0.028736364, -0.03698151, -0.015530613, -0.013597734, 0.015746878, -0.019017905, -0.012611019, 0.028682299, -0.022451129, 0.0037610035, -0.030709794, 0.018463723, -0.018098773, 0.012867836, 0.021072432, 0.012786736, 0.019707253, -0.0066772173, -0.038414273, -0.0020190473, 0.024208292, 0.015395447, -3.933552E-5, -0.024397526, 0.033548288, 0.02337026, 0.00810998, 0.015963145, -0.010961991, -0.0075557986, 0.013604493, -0.07147596, 0.029871762, -0.028411966, -0.010232092, -0.012813769, -0.009245378, 0.007947781, -0.0045111766, -0.0026492605, 0.037332945, -0.0054167914, 0.004832197, -0.006832659, 0.010570008, -3.6917307E-4, 0.013618009, 0.0035008083, 0.004507798, -0.0040955404, 0.012536678, -0.008035639, 0.013171961, 0.021640131, 0.010042859, 0.0028891806, 0.0075963484, 0.009434611, 0.0076571736, -0.03457555, -0.008495205, 0.03754921, -0.02457324, 4.3790465E-6, 0.0027371184, -0.019855935, -0.031304527, -0.00385562, 0.0041800193, 0.013949167, -0.0035852874, -0.0057614655, -0.017841958, 0.017301291, 0.0028570786, -0.011252598, 0.005646574, -0.017409425, 0.019071972, 0.007048925, 0.0101104425, 0.029601429, 0.017233709, -0.0018636059, -0.011056607, 0.0071232663, -0.018652955, 0.044469725, 0.004372631, 0.0035210832, -0.03911714, 0.02141035, -0.0058763567, 0.014408732, -0.02220783, 0.006565705, -1.5797566E-4, 0.018774604, -0.0027100851, -8.8449474E-4, -0.029817695, -0.008643888, -0.01586853, 0.014043783, 0.038414273, 0.029304063, 0.02952033, 6.5597915E-4, -0.0015755327, -0.0012781668, 0.02542479, 0.021221116, -0.01621996, -0.03735998, 0.017139092, -0.0074409074, 0.007968056, 0.0055958866, 0.011610789, 0.008785812, 0.01385455, -0.0018281247, 0.011691889, 0.016192928, 0.002301207, 0.014624998, 0.009779285, -0.025559956, 4.0169747E-4, -0.010428083, 0.027573934, -0.008738504, -0.0052444544, -0.012266345, -0.024505658, -0.025113907, 0.0018331936, -0.016841726, -0.016895793, 0.0053593456, 0.028168665, 0.020315502, 0.010624074, -0.009995551, 0.005754707, -0.05055221, 0.018166356, -0.0034011232, -0.0015991868, -0.02084265, 0.032953553, 0.01715261, 0.008711471, 0.023248611, -0.006863071, 0.060013857, -0.0011007609, 0.010333467, -0.031061227, 0.007292224, 0.014570932, -0.008738504, -0.019139554, -0.014219499, -5.461565E-4, 0.0066805966, -0.0014031956, 0.0048119216, 0.03836021, -0.01654436, 0.06650184, 0.01313141, -0.008157289, 0.017936574, -0.017287776, 0.01088089, 0.016449744, 0.016895793, -0.012313654, -0.010759241, -0.008522238, -0.0031206529, 0.0045618643, -0.04574029, -0.0010154372, -0.0044469726, 0.014962914, 0.011448589, -0.014516865, -0.013699109, -0.006028419, -0.007866682, 0.01774734, 0.009833352, 0.002968591, -0.017409425, 0.024046093, -0.0012215659, 0.0032321652, -0.024951708, 0.016909309, -0.03189926, -5.5840594E-4, 0.0038252075, 0.022883661, -0.0022015218, -0.0017487146, -0.0030175885, 0.022640362, 0.008961529, -0.021586064, 0.0029736597, -0.02220783, -0.01984242, 0.01807174, -0.0095089525, -0.008366797, -0.03257509, -0.009083178 ], + "id" : "a4851871-aaa9-4950-a786-7ce500b257ad", + "metadata" : { + "source" : "movies.csv" + } + }, + "cc89d10c-29f9-47ba-8c53-5c1d77851c96" : { + "text" : ",12-585-2062-862-863-10193-14160-920-10681-808-62211-425-9487-9502-950-953-49013-8587-62177-557-809\r\n286217,The Martian,Drama-Adventure-Science Fiction,en,During a manned mission to Mars Astronaut Mark Watney is presumed dead after a fierce storm and left behind by his crew. But Watney has survived and finds himself stranded and alone on the hostile planet. With only meager supplies he must draw upon his ingenuity wit and spirit to subsist and find a way to signal to Earth that he is alive.,48.685,Scott Free Productions-Genre Films,9/30/15,108000000,630161890,141,Released,Bring Him Home,7.7,17885,Matt Damon-Jessica Chastain-Jeff Daniels-Sean Bean-Chiwetel Ejiofor-Donald Glover-Kristen Wiig-Michael Pe��a-Kate Mara-Sebastian Stan-Benedict Wong-Mackenzie Davis-Naomi Scott-Aksel Hennie-Nick Mohammed-Chen Shu-Eddy Ko-Enzo Cilenti-Jonathan Aris-Gruffudd Glyn-Geoffrey Thomas-Yang Haiwen-Narantsogt Tsogtsaikhan-Brian Caspe-Szonja Oroszl��n-Mark O'Neal-Karen Gagnon-Lili Bord��n-Nikolett Barabas-Dilyana Bouklieva-Bj�_rn Freiberg-James Fred Harkins Jr.-Sam Spruell-Matt Devere-Mike Kelly-Greg De Cuir-Peter Linka-Declan Hannigan-Peter Schueller-Waleska Latorre-Frederik Pleitgen-Charlie Gardner-N�_ra Lili H�_rich-Kamilla F��tyol-Yang Liu-Richard Rifkin-Nicholas Wittman-Ben O'Brien-Scott Alexander Young-Jason Ryan-James Dougherty-Xue Xuxing-Bal��zs Medveczky-Dora Endre,based on novel or book-planet mars-nasa-isolation-spacecraft-botanist-alone-stranded-space-engineering-survival-astronaut-struggle for survival-duringcreditsstinger-deep space-potatoes-2030s,/5BHuvQ6p9kfc091Z8RiFNhCwL4b.jpg,/3dPhs7hUnQLphDFzdkD407VZDYo.jpg,281957-157336-49047-76341-140607-150540-293660-135397-106646-102899-264660-205596-118340-273248-206647-207703-137113-127585-14160-99861-10681\r\n8960,Hancock,Fantasy-Action,en,Hancock is a down-and-out superhero who's forced to employ a PR expert to help repair his image when the public grows weary of all the damage he's inflicted during his lifesaving heroics. The agent's idea of imprisoning the antihero to make the world miss him proves successful but will Hancock stick to his new sense of purpose or slip back into old habits?,58.881,GH Three-Columbia Pictures-Relativity Media-Blue Light-Weed Road Pictures-Forward Pass-Overbrook Entertainment,7/1/08,150000000,629443428,92,Released,Bad behavior. Bad attitude. Real hero.,6.", + "embedding" : [ 0.0058938023, -0.024596665, -0.01378285, -0.044971313, -0.008450848, 0.0151447905, -0.0035376435, -0.01845431, -0.03265936, -0.023439016, 0.03475675, 0.029009357, -0.0010189026, 0.014477439, -0.0027238831, 0.015539754, 0.025182301, -0.022798903, 0.021055618, -0.005451171, 0.0012751179, 0.007831165, -0.011290496, 0.0214642, 0.0094927335, 0.008784523, 0.013197214, -0.016479494, -0.003113739, -0.026721295, 0.013598987, -0.03156981, -0.013864566, -0.01796401, -0.020660654, 3.2431234E-4, 0.013387886, -0.0126796765, 0.018345354, -0.022771664, 0.011596933, 0.022104312, -0.004293521, -0.001060612, -0.020810468, 0.012563911, 0.0052639046, -0.018699458, -0.0013244882, 0.029989954, 0.026734915, 0.01867222, -0.023398157, -0.014994977, -0.008069504, -0.0046169823, -0.012618389, 0.029581372, 0.0012768203, -0.011113443, 0.0151447905, -0.018304495, -0.029499656, 0.010929582, -0.0043786424, -0.012543483, -0.018045727, -0.019680057, -0.0068199225, 0.010432472, 0.028519057, 0.006108308, 0.0154852765, -0.0071706227, 0.017855056, -0.014136954, -0.022376701, 0.005209427, -0.010691241, 0.012059993, 0.00956764, -0.014041618, -0.015771285, 0.019557482, 0.01961196, 0.00344401, 0.0067382064, 0.025250398, -0.0013372564, -0.005369455, 0.0060504256, 0.020606177, 9.6697855E-4, 0.010316708, 3.580417E-5, 0.0128499195, -0.021845544, 0.014736208, -0.003966655, -0.044426534, -0.011004488, -0.008260176, 7.8567007E-4, -0.012407288, 0.008273795, 0.009261203, 0.033285853, -0.005039184, 0.02448771, 0.0043650228, 0.0054954346, -4.400774E-4, 0.02450133, -0.041430265, -0.012461766, -0.009819599, 0.03154257, -0.01237324, -0.015989196, -0.024147226, 0.012543483, 0.018372593, 0.014436581, -0.029908238, 0.024855435, 0.025618123, -0.020224834, -0.02240394, 0.007163813, -0.0023050862, 0.02684387, -0.010718481, 0.041403025, 0.012727344, -0.022758044, 0.043282505, -0.030371299, 0.008321463, -0.033531003, -0.032359734, 0.025808794, 0.034457125, -0.0027119662, -0.0034593318, -0.040258996, -0.0060095675, 0.017378375, -0.009853648, 0.021709349, 0.01657483, 0.034429885, 0.024228942, 0.002965628, -0.0014921773, 0.014504679, -0.0019254449, -0.0018743721, -0.013667084, -0.007320436, -0.021409722, 0.0043650228, -0.0052843336, 0.006159381, -0.010187323, 0.008825381, 0.029799283, -0.001949279, -0.018917369, 0.002683025, -0.0057031307, -0.014518297, 0.015744045, -0.0070344284, 0.01653397, -0.0026336545, 0.0265851, 0.0018386212, 0.007749448, -0.012870348, -0.013326599, 0.0015755962, 0.019448526, 0.01982987, 0.034021303, -0.010766149, 0.016070912, 0.033857867, -0.024869055, 0.02470562, -0.032550406, 0.0032584453, 0.003660218, -0.016765501, 0.014395723, -0.6432723, -0.026094802, -0.020851327, 0.0012036159, 0.008123982, 0.007157003, 0.011583313, -9.746395E-4, -0.041403025, 2.7579317E-4, -0.022335842, 0.022213267, -0.0034508195, -0.01933957, -0.026053943, -0.006183215, -0.0073136264, -0.010595906, 0.022758044, 0.013667084, -0.0480493, 0.0065202955, -0.010609525, -2.7451635E-4, -0.0051004714, 0.0014581288, 0.02589051, -0.009649357, -0.0070139994, 0.016629307, -0.016860837, -0.005386479, 0.011699079, -0.005553317, 0.037671305, -0.003983679, -0.012795442, 0.057310503, 0.017337518, 0.017650763, -0.028791446, -0.008587042, 0.016207105, 0.002180809, -0.022431178, 0.00502216, 0.006019782, -0.018141063, -0.0058223004, -0.0123391915, 0.007817545, 0.023452634, -0.0028907212, 0.0030847979, -0.010922772, 0.0037010764, 0.0060129724, -0.017391995, 0.022131551, 0.0050834473, -0.020606177, 0.026884727, 0.012059993, 0.0017517974, 0.005910827, 0.030180626, -0.006789279, -0.0122983325, 0.01191018, -0.023411777, 0.010364376, 0.0062921704, -0.011773986, 0.0060810694, 0.014559156, 0.014736208, 0.0387881, -0.0055669365, -0.008791333, 0.03334033, 0.016629307, -0.008069504, -0.004950658, 0.009009244, 0.041403025, -0.013047401, -0.02755208, 0.0051481393, 0.018876512, -6.422406E-4, -5.5158633E-4, 0.0155261345, 0.011331354, -0.017105987, -0.0058461344, -0.009016054, -0.019571101, -7.120401E-4, 0.02565898, -0.05905379, -0.02589051, -0.02868249, 0.035383243, 0.010548238, 0.015308224, -0.0075519662, -0.004222019, 0.0011482871, 0.02613566, -0.0052843336, -0.0124685755, 0.008062694, -0.007068477, -0.009424636, 0.0050493986, -0.030262344, 0.029962717, 0.02282614, 0.009009244, -0.009302061, 0.004525051, -0.005740584, -0.021300767, -0.0012257475, 0.009050102, 0.03478399, 0.00979917, -0.0072659585, -0.0048553217, 0.0031409778, 0.007974168, 0.009676595, -8.0226874E-4, -0.0067688497, 0.01281587, -5.086001E-4, 0.003066071, -0.019448526, 0.01842707, 0.008723236, -0.032468688, 0.0048451074, -0.017691622, -0.018604122, -0.01632968, -0.017296659, -0.017160464, -0.013142737, 0.020592557, 0.0033350545, -0.023248343, 0.019516623, 0.010772958, 0.017623525, 0.005972114, -0.010786578, -0.010520999, -0.013612607, 0.024446853, -0.021763828, -3.14949E-4, 0.024869055, 9.6016884E-4, -0.015267366, 0.02470562, 0.009288442, -0.0087709045, 0.021137334, 0.004456954, -0.030643687, 0.0062138587, -0.0070820963, -0.011651411, 0.018971847, -0.01656121, 0.026094802, -0.02563174, 0.019012704, 8.9717907E-4, -0.008471277, 0.0013585368, -0.0041368976, -0.011678649, -0.013741991, 0.018004868, 0.018222779, 0.017582666, -0.0065066763, -0.017228562, 0.0053830743, -0.024446853, -0.012938445, 0.006928878, 0.007075287, 0.0107321, 0.01375561, -0.008491706, -0.0027834682, -8.307844E-4, 0.0055941753, 0.044508252, 0.017950391, 0.001773929, -0.025468308, -0.003993894, -0.008028646, -0.0066156313, -0.021423342, 0.008287415, -0.032032866, 0.013653465, -0.007109335, -0.011719508, -0.004964277, 0.007613254, 0.0043888567, -0.027974281, 0.008852621, -0.020456363, 0.014409343, 0.0058427295, -0.005209427, 0.00955402, 0.005672487, -0.02029293, 0.015403559, 0.021804685, -0.002635357, -0.014899641, -0.01282268, 0.011474358, 0.0072659585, 0.0060436158, 0.0043786424, 0.01910804, -0.0074293916, 0.017432854, -9.550616E-4, 0.043691088, -0.0024702216, -0.019462146, 0.005206022, 0.030616447, -0.0057031307, -0.016139008, 0.0065713683, 0.006414745, 0.016275203, -0.013496841, 0.043745566, -0.02379312, 0.028382864, -0.009812789, 0.008498516, 0.015566993, -0.004807654, -0.007306817, -0.0031426803, 0.029744806, 0.02285338, 0.0074293916, -0.010657193, 0.007327246, 0.008294225, 0.023193866, -0.012570721, -0.015607851, 0.005274119, 0.0017483926, -0.012693296, 0.006190025, -0.018236399, -0.0097923605, 4.796588E-4, -0.011515217, -0.0027851707, 0.011501597, 0.005672487, 0.016751882, -0.001782441, -0.01003751, -0.018576885, 0.014858783, 0.027375028, -0.0064045307, -0.015989196, -0.015961956, 0.011753556, -0.03309518, -0.017569046, -0.01679274, 0.020401886, 0.004014323, 0.0012785227, -0.013626226, -0.025291257, 0.002958818, -0.001068273, 0.0043990714, 0.013524081, -0.0024310658, 0.01771886, -0.0031562997, -0.020252071, 0.024106367, -0.0014053535, 0.007184242, -0.007388533, 0.0013057615, -0.016493114, 7.607721E-5, 0.009758311, -0.027633796, 0.019516623, -0.012461766, -0.008137601, 0.0017586071, -0.0055601266, 0.010534618, 9.661273E-4, -0.0036159551, -0.022485657, -0.016642926, -0.010200943, 0.07588739, 0.02868249, 0.031597044, -0.0013108688, 0.010316708, 0.00396325, -0.020905804, -0.024405994, 0.0013423638, -0.0265851, 0.03244145, -0.0021893212, 0.013741991, -0.002005459, 0.02473286, -0.0078039253, 0.012318762, 0.013578558, -0.009016054, -0.023534352, -0.004225424, -0.007749448, -0.0054477663, 0.031651523, 0.014559156, -0.033285853, 0.03331309, 0.0037249103, 0.0056111994, 0.014136954, -0.0126388185, 0.0069935704, 0.009172677, -0.0035750968, 0.010064749, 0.014613634, 0.02565898, -0.002603011, 0.03881534, -0.0030115934, -0.004245853, 0.007872023, -0.0069186636, -0.009159057, 0.011828463, -0.013367457, 0.0014300387, 0.039741457, 0.02283976, -0.03456608, 0.018141063, -0.01050738, -0.022553753, -0.010173704, 0.02003416, 0.013272122, -0.0040960396, 0.0060061626, -0.034157496, 0.0051379246, 0.006717777, -0.03614593, 0.025836032, 0.0050800424, 0.0010435878, -0.012196187, -0.008934337, -0.0065509393, -0.002986057, 0.014055237, 0.019720914, -0.022458417, -0.015716806, 0.004256068, -0.0043514036, 0.0060436158, 0.023275582, -0.021872783, 0.0025212944, 0.005713345, -0.020851327, -0.028273908, 0.0024685191, -0.021995358, 0.013115498, 0.013660274, -0.00618662, 0.011290496, 0.008444038, 0.010984059, 0.0049813017, -0.0025604502, -0.02190002, 0.00840318, 0.034239214, -0.002471924, 0.019162519, 0.008450848, 0.00431395, 0.021736588, 0.011522026, -0.029799283, -0.015280985, 9.125009E-4, -0.011712698, -0.00817165, -0.0019220401, 0.018576885, -0.03824332, -0.014600014, -0.0014598311, -0.010909152, 0.033040702, -0.0072863875, 0.003316328, -0.0017705241, 0.023874836, 0.0027204785, 0.0067518256, 0.0016360324, -0.012162139, -0.0121349, -6.1925786E-4, 0.031106746, -0.0020514245, 0.0019663032, -0.025332114, -0.025550025, -0.018576885, 0.028546296, -0.010166895, 0.010105607, -0.010418854, -0.017827816, -0.01846793, -0.035601154, -0.0034627365, 8.8441087E-4, 0.015907478, 0.006343243, -0.022921478, 1.4087584E-4, 0.014286768, 0.012999733, -0.012632009, -0.02775637, -0.007443011, -0.0051889974, -0.0029894619, 0.027197974, -0.010010271, 0.020578938, -0.01563509, -0.014559156, -0.025536405, -0.030834358, -0.016997032, 0.0055907704, 0.04758624, 0.008791333, 0.03494742, -0.007586015, 0.044235863, -0.009274823, 0.014790686, 0.014586395, -0.022226887, -0.012972494, -0.014518297, 0.020824088, 0.00454548, 0.010670813, 0.011814844, 0.015430799, -0.010228181, 0.02471924, 0.0031528948, 0.015553373, 0.013381076, -0.026312713, -0.013415125, 0.006377292, -0.029554132, -0.0117467465, -0.03641832, -0.017991249, 0.041021682, 0.0026489764, -0.020592557, -8.078016E-4, 0.028873162, 0.010718481, 0.003072881, -0.008532564, 0.010064749, -0.026394429, -8.0056634E-4, -0.016275203, -0.0010189026, -0.006666704, -0.022349462, 0.005451171, -0.0065032714, -0.021845544, -0.0072727683, 0.011733127, -0.018644981, -0.026040323, 0.022090694, -0.02075599, -0.0031716216, -0.029826522, -0.005233261, -0.027388645, -0.012883968, -0.0031001195, 0.0046578404, 0.017460091, -0.019557482, -0.027075399, 0.04064034, -0.009016054, 0.028982118, 0.01656121, 0.056384385, 0.02147782, 0.0053728595, -0.03056197, 0.0015917693, -0.020701513, -0.013115498, 0.021178192, 0.003277172, -0.009908126, -0.022308603, -0.0010299684, 0.002608118, -0.013598987, -0.030834358, 0.02497801, 0.028845923, 0.019475766, -0.017010652, -6.7841716E-4, -0.039469067, 0.030752642, 0.0065509393, -0.0092407735, -2.0575426E-5, -0.022867, -0.013898614, 6.53732E-4, -0.00344401, -0.004991516, 0.017827816, -0.024678383, 0.0027000492, -0.020252071, 0.024569428, -0.018726697, -0.003404854, 0.022281365, -0.025563644, 0.015566993, -0.0010061343, 0.022036215, -0.008294225, -0.01818192, 0.0030269152, 0.02565898, -0.02124629, 0.01378285, 0.016384158, 0.010303088, 0.0026847275, 0.014409343, -0.020129498, -0.001191699, -0.02613566, -0.014668112, 0.02379312, 0.025236778, 0.012243855, -0.012775012, -0.009867267, -0.0058086812, -0.00502216, -0.027020922, 0.0034831658, -0.025223158, 0.015117552, -0.014722589, -0.0067790644, -0.008655139, -0.002938389, -4.0092156E-4, -0.008784523, 0.030670926, -0.0026523813, -0.00688121, -0.0036227647, -0.004804249, -0.024337897, -0.012550293, 0.004994921, -0.02563174, -0.0016641225, -0.021791065, -0.0030132958, -0.017119607, 0.016057292, -0.00817165, 0.0029469011, -0.0045659095, 0.007443011, 0.026721295, -0.01818192, -0.016711025, -0.007538347, 0.03453884, -0.012999733, 0.010452902, 0.010248611, 0.0021024975, 0.018849272, -0.034375407, 0.017705241, -0.010766149, -0.0072727683, -0.01284311, 0.009445066, 0.017160464, 0.0055839606, -0.014627253, -0.0368269, -2.6621702E-4, -0.008096743, 0.036500037, -0.00688802, 0.0037930075, 0.041920565, 0.01681998, 0.041620936, 0.009703835, -0.014518297, -0.03007167, -0.0036193598, -0.0063568624, -0.0123391915, 0.0037964124, 0.012325572, 0.018835653, -0.0017909532, -0.0055396976, -0.037807498, -0.013837327, -0.0137488, -0.03521981, -0.0021433556, 0.015117552, 0.03361272, 0.020592557, -0.010071558, 0.016915316, -0.0029247697, 0.01940767, -0.019448526, -0.010520999, 0.01656121, 0.013367457, 0.00396325, 0.012931636, -0.02402465, -0.012196187, 0.011603743, 0.01050738, -0.0058154906, 0.023261962, -0.014817925, 0.0018862891, -0.0129793035, 0.0016658249, -0.0035580725, -8.9632784E-4, 0.030262344, -0.026094802, -0.0094927335, 6.8905734E-4, 0.0274976, 0.0032278018, 0.0041164686, 0.027157117, -0.026271854, 0.0055567217, -0.0062581217, -0.043554895, 0.0063568624, -0.028982118, 0.01259796, -0.0025264018, -0.001423229, 0.022363082, 0.02519592, -0.019203376, 0.011869322, -0.0058393246, 0.010200943, 0.0050459937, -0.0023101934, 0.015376321, 0.0053966935, -0.015376321, 0.02496439, -0.023997411, 0.0045897434, -0.007531537, 0.0105141895, 0.0011934014, 0.028573535, -0.00154325, -0.03679966, -0.02448771, -0.006135547, 0.010330327, -0.0018845868, 1.0235843E-4, -0.036445558, -0.008205698, -0.010282659, 0.01073891, -0.0027255856, -0.016779121, 0.02239032, -0.0041505173, -0.002710264, 0.031842194, 0.182936, -0.008804953, 0.012747774, 0.042329147, 0.0075519662, 0.03007167, 0.021736588, 0.0031358707, -0.005444362, 0.007613254, 0.0048825606, 0.009308871, -0.012754584, 0.0011636089, 0.0038883432, -0.0038781287, -0.016030053, -0.02519592, -0.010711671, -0.01841345, -0.0052366657, 0.010881914, -0.007129764, -0.025604503, 0.017351136, -0.0027885754, -0.012495815, -0.017051509, 0.023493493, 0.0042152093, -0.027415885, -0.026013086, -0.011099825, 0.023221105, -0.022363082, -0.0046203868, 0.005488625, 0.018481547, 0.010772958, -0.008988814, 0.0024174463, 0.006462413, 0.0058427295, -0.014654492, 0.021641253, 0.017841436, -0.015226508, -0.009513162, -0.024351517, 0.00501535, -0.04006832, 0.0064556035, 0.020102259, 0.023234725, -0.021818304, -0.011106634, 0.008804953, -0.003639789, -0.01235281, 0.027225213, 0.018563265, 0.037780263, -0.029853761, 0.011351784, 0.0036772424, 0.021872783, -0.039305635, -0.0076949704, 0.021804685, -0.022771664, -0.015812142, -0.02052446, -0.018345354, 1.571553E-4, -0.008416799, -0.014913261, -0.0023391347, 0.0056384383, -0.0041539217, 0.023888456, -0.033285853, -0.008893479, 0.009765121, -0.019693676, -0.02727969, -0.021450581, 0.012264284, -0.0013483223, -0.017827816, 0.006908449, -0.0033554838, -0.02591775, -0.012550293, -0.0063330284, -0.012591151, 0.016152628, 0.03827056, 0.012148519, -0.008246557, -0.01935319, -0.037834737, 0.016888076, 0.01913528, -0.014981358, -0.02217241, -0.020388266, -0.00502216, 0.031842194, 0.017800577, -0.0070276186, -0.0071910517, -0.037671305, 0.008423609, -0.018372593, 0.014000759, 0.014409343, 0.005672487, -0.011140683, 0.041702654, -0.020252071, 0.004722533, -0.009846838, 0.01236643, 0.011753556, 0.0043479986, -0.038406752, -0.037371676, 0.006173, 0.003803222, -0.03314966, -0.0022233697, -0.01631606, 0.010275849, -0.01190337, -0.0066598947, 0.014790686, 0.028954878, 0.017432854, -0.011964657, 0.0075451564, 0.009458684, -0.029690327, 0.011596933, 0.0061968346, 0.022008976, -0.031052269, 0.009948984, -0.002626845, -0.008287415, -0.029989954, -0.009853648, -0.011610553, 7.1342336E-5, 0.013013353, 0.039823174, 0.0050698277, -0.02613566, -0.043173548, -0.019884348, 0.021355245, -0.037535112, 0.017868673, 0.0014921773, -0.007157003, -0.037861977, 0.021573156, -0.17498226, 0.020361027, 0.0039496305, -0.037780263, 0.027470363, -0.0013959901, 0.017405614, 0.015580612, 0.003711291, -0.011167921, 0.0100307, 0.0011772283, -0.04941124, -0.010126036, -0.005852944, 0.020851327, -0.006251312, 0.048675794, 0.018536026, -0.0048178686, 0.025209539, 0.0052911434, -0.02217241, 0.008328273, 0.020374646, -0.010091987, 0.007987788, 0.022948716, -0.0016087935, -0.007994598, -0.028410103, -0.016002813, 0.017569046, 0.013054211, 0.001004432, 0.0025638551, -0.015948337, -0.0072523393, -0.0050255647, -0.011338164, 0.026762152, 0.023847599, 0.010323518, 0.0041164686, 0.0021927261, 0.013844137, 0.02169573, -0.002727288, 0.010160085, -0.03195115, -0.008825381, -0.044235863, 0.015049455, 0.00396325, 0.013898614, 0.02125991, -0.027075399, 0.006952712, 0.0030865, -0.0113654025, -0.027797228, -0.012897587, -1.2917165E-4, -0.02007502, -0.017582666, -0.014531917, -0.021341626, -0.007797116, -0.032169063, 0.019203376, -0.017950391, -0.0072319102, 0.02356159, -0.0065441295, 0.0021076046, -0.012427717, -0.03663623, 0.004548885, -0.006224073, 0.007626873, -0.026013086, 0.026980063, -0.0028192191, 0.005975519, 0.0077834963, -0.012332382, 0.019897968, -0.010255421, 0.0105141895, -5.094513E-4, 4.536968E-4, -0.012107661, -0.023261962, -0.018086584, 0.008852621, 0.0033078156, 0.010350756, 0.0040994445, 0.024188083, -0.01282949, -0.0019782202, -0.011712698, -0.023261962, 0.022363082, 0.026408048, 0.014736208, -9.797468E-4, 0.020905804, 0.01680636, -0.009029673, -0.023520732, -0.008879859, 0.016874457, 0.025223158, -0.005784847, 0.014790686, -0.023656925, -0.026939206, -0.0027255856, 8.19293E-4, 0.027974281, -0.018127443, -0.012666057, -0.0065032714, 0.007443011, -0.016356919, -0.09282994, -0.0017671193, 0.008464467, 0.03146085, -0.015063074, 0.034838468, -0.0062615266, 0.017691622, -0.016860837, 0.039305635, -0.0032380163, -0.03660899, 0.007374914, -0.012400478, 0.028355625, -0.02659872, -0.014027999, -0.021573156, 0.013115498, 0.025032487, 0.004967682, -0.022077074, -0.014586395, -0.01660207, -0.015294604, -0.0063057896, -0.030534731, 0.02124629, 0.018713078, -0.0061491663, 0.00840999, -0.01237324, 0.022063455, -0.047041465, -0.008375941, -0.038897052, -0.011937418, -0.018631361, 0.008083124, -0.050936617, 0.011222399, 0.022349462, 0.0037861976, -0.031351898, 0.011120253, -0.011848892, -0.019053563, 0.03453884, -0.023888456, -0.04017728, -0.025386592, -0.0017909532, -0.028164953, -0.006765445, 0.015839381, 0.0027409075, 0.025944987, 0.017310278, 0.0018692649, -0.008123982, 6.388358E-4, -0.00420159, -0.014994977, 0.012918016, 0.02963585, 0.0087300455, -0.014967739, -0.017187703, 0.023493493, -0.010922772, -0.012591151, 0.03690862, -0.03456608, -0.016751882, -0.020578938, -0.011991896, -0.00817165, -0.012400478, 0.011147493, -0.00548522, -0.0025893915, -0.021777447, -4.2049948E-4, -0.02542745, 0.007831165, 0.019938825, 0.008525754, 0.023180246, 0.009996652, -0.034375407, -0.00251108, 0.029608611, -0.0041232784, 0.00332484, -0.006210454, 0.01188975, 0.012427717, 0.011487978, -0.0062615266, -0.016057292, -0.027892565, 0.00957445, -0.07866575, 0.025822414, -0.0036363842, -0.0089002885, -0.0026745128, -0.016847217, 2.7292033E-5, -0.008260176, 0.0014062048, 0.017555427, -0.0062445025, 0.004473978, -0.00909096, 0.0050800424, -9.491031E-4, 0.012754584, 0.006431769, -0.016928934, -0.002499163, -0.011052156, -0.02120543, 4.7923322E-4, 0.013176785, -0.003898558, -0.0060299966, 0.018250018, -0.010377995, -0.0036534085, -0.020960283, -0.016928934, 0.03331309, -0.009819599, -0.005457981, -0.0042083994, -0.015812142, -0.032577645, -0.01259796, -0.0074089626, 0.010425664, 0.010861484, -0.0093293, -0.007558776, -0.006554344, -0.0036534085, 0.001247879, 0.026108421, -0.005944875, -0.0033078156, 0.008818572, 0.008301035, 0.032741077, 0.00840999, -0.008975196, -0.012924826, 0.010636764, -0.043010116, 0.035955258, 0.013428745, 9.388885E-4, -0.0051481393, 0.02661234, -0.0033571862, 0.033912346, -0.034130257, 0.0062410976, 0.01327893, 0.016043672, 0.0038713191, 6.357501E-5, -0.037644066, 0.005270714, -0.030126149, 0.017432854, 0.017950391, 0.034239214, 0.010752529, -0.008811763, 0.01563509, 0.014150574, 0.007347675, 0.03148809, -0.018018488, -0.024283418, 0.01188294, 0.009547211, 0.020742372, -0.017895913, 0.012604769, 0.004273092, 0.0034354976, -0.018290875, 0.0108546745, 0.027483981, -0.001060612, -7.1714737E-4, 0.014668112, -0.015539754, -0.0075179175, 0.0028124095, 0.02470562, -0.0075247274, 0.012448146, -0.0137488, -0.011528836, -0.01819554, 0.014041618, 6.235139E-4, -0.036282126, 0.031869434, 0.01097725, 0.02681663, 0.019966064, 0.0012589447, 0.012952065, -0.03854295, 0.011787605, 0.0032363138, -0.00933611, -0.018835653, 0.044916835, 0.01750095, 0.014790686, 0.015267366, -0.02565898, 0.060524687, 0.017119607, 0.037480634, -0.023479873, -0.0013985438, -1.5289923E-4, 6.8905734E-4, 0.0065066763, -0.013251692, 0.009077341, -0.0077766865, 0.011079395, -0.0072727683, 0.04246534, -0.02101476, 0.06264932, 0.030480254, 6.8309886E-4, 0.016493114, -0.0041471124, -0.0039155823, 0.024542188, 0.008484896, -0.016656546, -0.021409722, 0.012577531, -0.021436961, 0.023588829, -0.02307129, 0.003428688, -0.010861484, 0.013169976, 0.017419234, -0.006363672, -0.00466465, 0.002982652, 0.007810735, 0.017174084, 0.0058393246, -0.029554132, 0.0017756314, 0.014600014, -0.009465494, -0.005876778, -0.03709929, -0.013973521, -0.024909912, -0.0097923605, 0.002555343, 0.022308603, 0.002344242, -0.022294985, -0.015594232, 0.037208244, 0.019870728, -0.014055237, 0.017596286, -0.0137011325, -0.012271094, 0.012706915, -0.013088259, -0.009179487, -0.02217241, -0.023602448 ], + "id" : "cc89d10c-29f9-47ba-8c53-5c1d77851c96", + "metadata" : { + "source" : "movies.csv" + } + }, + "51001bd4-42eb-41c4-9625-7a70db2594b0" : { + "text" : ",168259-135397-87101-158852-294254-257344-262500-198663-260346-98566-238713-214756-99861-177677-198184-102899-166424-91314-76757-119450-157350\r\n159824,Hotel Transylvania 2,Animation-Comedy-Family-Fantasy,en,When the old-old-old-fashioned vampire Vlad arrives at the hotel for an impromptu family get-together Hotel Transylvania is in for a collision of supernatural old-school and modern day cool.,42.785,Columbia Pictures-Sony Pictures Animation,9/21/15,80000000,473226958,89,Released,They're back to raise a little terror,6.8,5119,Adam Sandler-Andy Samberg-Selena Gomez-Kevin James-Steve Buscemi-David Spade-Keegan-Michael Key-Asher Blinkoff-Fran Drescher-Molly Shannon-Megan Mullally-Nick Offerman-Dana Carvey-Rob Riggle-Mel Brooks-Jonny Solomon-Chris Kattan-Sadie Sandler-Sunny Sandler-Jon Lovitz-Robert Smigel-Ava Acres-Cole Sand-Rose Abdoo-Luenell-Melissa Sturm-Paul Brittain-Chris Parnell-Allen Covert-Stephen Apostolina-Brian T. Delaney-Aaron LaPlante-Steve Blum-Melendy Britt-David Cowgill-Jessica Gee-George-Grant George-Nicholas Guest-Todd Haberkorn-Jess Harnell-Bridget Hoffman-Lex Lang-Mona Marshall-Joseph Sanfelippo-Kirk Thornton-Matthew Wolf-Eva Bella-Jaeden Bettencourt-Mia Sinclair Jenness-Logan Kishi-Megan Richie-Andre Robinson-Carter Sand-Gunnar Sizemore-Fred Tatasciore-Kari Wahlgren-Audrey Wasilewski-Debra Wilson-Jim Wise-Michael-Leon Wooley-Lynnanne Zager-Nick Swardson-Jared Sandler-Jonathan Loughran,transylvania-hotel-witch-technology-magic-mummy-skeleton-only child-backpacker-marriage-wolfman-zombie-moving out-invisible person-new life-dracula,/kKFgwQnR5q08UFsAvtoYyTIiHyj.jpg,/kXzmbhCx34lFSFVKxYUf54j2TZf.jpg,76492-400155-140300-10527-93456-172385-109451-8355-80321-22794-278154-211672-38757-953-49444-105864-109445-228161-49519-150540-57800\r\n474350,It Chapter Two,Horror-Fantasy,en,27 years after overcoming the malevolent supernatural entity Pennywise the former members of the Losers' Club who have grown up and moved away from Derry are brought back together by a devastating phone call.,84.317,New Line Cinema-Vertigo Entertainment-Double Dream-Rideback,9/4/19,79000000,473122525,169,Released,You'll Float Again,6.", + "embedding" : [ 0.011472237, -0.033412725, -0.004183284, -0.01791115, -0.006495803, 0.02258304, -0.0116797285, -0.020521518, -0.01878127, -0.024992611, 0.03151184, 0.052475113, 0.0069208248, -0.009906016, 0.023894917, 0.014497588, 0.01771035, -0.030360602, 0.02334607, -0.023627188, -0.011686422, 0.010401317, -0.034751374, 0.01610397, -0.002961765, 0.015180301, 0.02710768, -0.0052341246, -0.011980925, -0.0020966618, 0.002854673, -0.011552556, -0.017897762, -0.0072220215, -0.003207742, -0.019584462, -0.0027074213, -0.0253005, 0.034778148, -0.005521935, 0.015608669, 0.017134732, -0.022409014, -0.02112391, -0.009578046, 0.011137575, 0.011485624, 0.008373261, -0.007235408, 0.011793514, 0.015970105, 0.022743678, -0.007188555, -0.028807767, -0.0054683886, 0.0045480663, -0.0030588172, 0.0089221075, 0.004571493, 6.237276E-4, 0.022569653, -0.030146416, -0.02250272, -0.024604402, -0.025742255, -0.010046574, -0.013721171, -0.007764175, 0.0013252643, 1.7360628E-4, 0.033948187, 0.017750511, 0.025099704, 0.007764175, 0.010883232, -0.030735424, -0.009531194, -0.010903311, 3.8653542E-4, 0.0059804227, 0.015514963, -0.019544302, -0.0075098313, 0.008025212, 0.011478931, 0.026746243, -0.007824414, 0.014684999, -0.0529838, 0.003858661, 0.028540036, 0.025126476, -7.91059E-4, 0.030735424, 0.0028680593, 0.003463759, -0.010006415, 0.026277715, -0.029423546, -0.01610397, -0.0063385116, -0.020133309, -0.016960707, -0.0046986644, -0.008955575, 0.002294113, 0.00423683, -0.007871267, 0.0057561984, 0.004748864, -0.00452464, 0.0022405668, 0.021110523, -0.03603648, -0.0011403632, 8.7932625E-4, 0.012583318, -0.0024346712, -0.024657948, -0.015929945, 0.028058121, 0.030467693, 0.018419836, -0.030467693, 0.043506153, 0.013855036, 0.010341078, -0.005341217, -0.01100371, -0.020722315, 0.01920964, -0.022422401, 0.020923113, 8.49625E-4, -0.04511253, 0.045567676, -0.008614218, -0.013500294, -0.025809187, -0.019999444, 0.022944475, 0.03052124, -0.020173468, -0.017924534, -0.011673035, 0.0054315757, 0.02396185, -0.004146471, 0.010836379, -0.0062180334, 0.025434365, 0.0017887722, 0.029878687, 0.01376133, 0.0144842025, 0.02737541, -0.0014005634, -0.013527066, -0.004936275, -0.0202404, -0.038205095, 0.004350615, -0.0028697327, -0.017777283, -0.017335529, 0.01908916, 0.014684999, -0.02208774, 0.004233483, -0.006803693, -0.026706085, 0.041364312, -0.013694398, 0.02054829, -0.0034202528, 0.025835961, 1.4233624E-4, -0.022569653, -0.021686144, -0.01791115, 0.005475082, 0.003405193, 0.02848649, 0.04546058, -6.977717E-4, 0.0063217785, 0.03159216, -0.02396185, 0.012047858, -0.017763896, -0.0024045515, 0.022342082, 0.005993809, -0.0100666545, -0.63784033, -0.015086595, -0.024028782, -0.018085172, 0.008118917, 0.017670192, 0.018152105, -0.0033968266, -0.041016262, -0.013774717, -0.0021000085, 0.0050835265, 0.034269463, -0.011940765, -0.041016262, -0.009357169, 0.0013679338, -0.005789665, 0.01898207, 0.004454361, -0.019236412, 0.027254932, 0.0151267545, 0.010501716, 0.0022020806, 0.01297822, -0.009504421, -9.035893E-4, -0.009109519, -0.0026555485, -0.020909727, 0.006291659, 0.0036143572, 0.0109434705, 0.023948465, -0.0024664642, -0.0021468613, 0.026411582, 0.025876122, 0.02231531, -0.03796414, -0.00563572, 0.002764314, 0.031726025, -0.010193827, -0.0063318186, 0.007918119, 0.004738824, -5.542851E-4, -0.007101543, -6.069945E-4, 0.0012039491, 0.0044777873, 5.1977302E-5, -0.009745378, 0.004163204, 0.01602365, -0.037642863, 0.018071786, -0.012837661, -0.009718605, 0.01008004, 0.029423546, 0.022877542, -0.007268874, 0.010260759, -0.01040801, 0.0100666545, 0.0054516555, -0.018955296, 0.007717322, 0.01125136, -0.01859386, -0.011472237, 0.005575481, 0.013393202, 0.017094571, 0.011499011, 0.021458574, 0.013239257, 3.4825839E-4, -0.0052977107, -0.0051036063, 0.019892352, 0.019383663, -0.010876538, -0.02848649, 0.017000865, 0.014136153, 0.0043606553, 0.008199236, 0.0020631957, -0.0043204958, -0.013279417, -0.030199964, 0.021030204, -0.022690132, 0.008587445, 0.027977802, -0.056491066, -0.023332683, -0.004919542, 0.011010403, -0.01324595, 0.0241091, 0.02688011, -0.0065828157, -0.0049931677, 0.035982933, -0.01721505, 0.0054349224, -0.008326408, -0.014899184, 0.0053981096, -0.023292525, -0.03496556, 0.025822574, 0.011673035, 0.009464261, -0.020133309, -0.01073598, 0.015287393, 0.006760187, -0.013393202, 0.015688987, 0.021525506, -0.0032462282, -0.008212623, -0.0030102911, -0.0024162647, 0.012181723, 0.014497588, 0.03584907, -0.018700952, 1.7193297E-4, 0.0139353555, 0.02902195, 0.003607664, 0.011673035, -0.004387428, -0.008868562, -0.005950303, -0.012489612, -0.008011825, 0.0021067017, -0.012924674, -0.007449592, -0.0035775444, -0.0035373848, -0.011144268, -0.021552278, 0.012830968, -0.008868562, -0.007469672, 0.0048291828, 0.0016984133, -0.015153527, -0.019196253, 0.015782693, -0.022917703, 0.0079382, 0.014216472, -0.0019945898, -0.00310065, 0.006703294, 0.002647182, -0.032448895, 0.0062314197, 0.014537748, -0.022556266, 0.024965838, -0.011137575, -0.0063552447, 0.013828264, -0.011652956, 0.023493322, -0.002059849, 0.009096133, -0.016532337, -0.009819004, -4.7187443E-4, 0.008292942, -0.0057294257, 2.0696798E-4, 0.025327275, 0.019316731, 0.015073208, -0.007529911, 0.008031905, 0.005421536, -0.0066263215, 0.0069074384, -0.019530917, -4.0766102E-4, -0.014618067, 0.012141563, -9.867321E-5, 0.0033499738, 0.0042970693, 0.0062046465, 0.05981092, 0.031083472, -0.016532337, 0.003932287, 3.236816E-5, -0.028593581, 8.2912686E-4, -0.022234991, 0.017884376, 0.008500433, 0.017415848, -0.00789804, -0.022449175, -0.005140419, 0.0026220824, 0.029771594, -0.013620772, 0.0051136464, -0.010046574, 0.013814877, -0.0052106986, -0.01791115, 0.029396772, 0.008500433, -0.013620772, -0.0024631175, 0.013366429, -0.0052441647, 0.0030855902, -0.004370695, -0.0062849657, 0.008794936, -2.0017014E-4, -0.005538668, 0.018486768, 0.017777283, 0.04029339, 0.00874139, 0.017576486, -0.014256632, -0.0029651115, 0.032074075, 0.0056056003, -0.010013108, -3.2064872E-4, -0.016130744, 0.028834539, 0.002683995, -0.01725521, 0.020133309, -0.01993251, 0.025809187, -0.0043138023, 0.005629027, 5.689266E-4, 0.0016841901, 0.009183145, 0.0084335, 0.025434365, 0.031083472, 0.0056122937, -0.021190843, 0.023131886, 0.010588728, 0.008600832, 0.014510975, -0.014658227, 0.001096857, 0.004671891, -0.012797502, -0.0253005, -0.015929945, -0.005240818, 0.008025212, -8.016218E-5, -0.010541876, 0.0039691, -0.0026137158, 0.015233846, 0.034671057, -0.0066095884, -0.030896062, 0.013386508, 0.020829407, -0.0074562854, -0.024644563, 0.0048492625, -0.019450597, -0.008440194, 0.002043116, -0.0032010488, 0.0054717353, -0.020173468, 0.008935494, -0.023868145, 3.4616675E-4, 0.015916558, -0.019142708, 0.003932287, 0.035956163, 0.0016632737, 0.027348638, -0.016224448, -0.01205455, 0.002993558, -0.006713334, 0.009283544, -0.0039958726, -0.012034471, 0.02032072, 0.0048258365, 0.009819004, -0.03568843, -0.0030722036, -0.020882953, -0.0015787714, -0.007536604, 0.0057662386, 0.0042134034, -0.006345205, -0.0202404, -0.01997267, -0.017429234, -0.0057026525, 0.071002044, 0.040239844, 0.02963773, 0.0049329284, -0.013279417, 0.014604681, -0.012255348, -0.011345066, -0.0020665422, -9.543116E-5, 0.01894191, -0.018459994, 0.025742255, 0.013212483, 0.011371839, 0.0052106986, -0.011217894, -0.0027124414, 0.008487047, 0.0013043479, -0.020347493, -0.007108236, 0.015662216, 0.03070865, 0.01322587, -0.023546869, 0.004440974, 0.011994312, -0.005170539, 0.014444043, -0.019343505, 0.004420894, 0.0051939655, 0.014403883, -0.0055989074, 0.0025534765, 0.0048793824, 0.019771872, 0.032502443, 0.0018791311, 0.026076918, 0.005455002, -0.0020129962, 0.009383942, 0.020307334, -0.021860167, -0.007556684, 0.011070643, 0.032020528, -0.028191987, 0.02733525, 0.01844661, -0.019410437, -0.0075232177, 0.015889786, 4.568146E-4, -0.017924534, -0.01801824, -0.028807767, 0.008681151, -0.001777059, -0.061899215, 0.023453163, -0.0073358067, -0.015916558, -0.0137479445, -0.018232424, -0.018045014, -0.012021084, 0.010341078, -0.008754777, -0.030199964, -0.020829407, -0.006094208, 0.013600692, 0.002081602, 0.0037214493, -0.018928522, -0.005250858, 0.007396046, -0.028968405, -0.020789247, 0.0048258365, -0.020133309, -0.0034972252, -0.0011294866, 0.010695821, 0.018393062, -0.001021558, -0.00567588, 0.017964695, 0.009845777, -0.0101202, -0.024778428, 0.03959729, -0.0014122766, 0.014310177, 9.445855E-4, 0.0010449843, 0.010722593, 0.022355469, -0.031779572, 0.0010717573, -0.034992334, -0.0153141655, -0.014711773, 0.006392058, -0.0025835962, -0.0019343505, -0.028459717, -0.019303346, -0.0019460637, -0.0032294951, 9.989681E-4, 0.01894191, -0.008125611, 0.013640852, -0.0056658396, 0.0032796946, 0.009357169, 2.2066823E-4, -2.2464234E-4, 0.01530078, 0.025447752, -3.7293977E-4, 0.026438354, 0.013721171, -0.02058845, -0.016826842, 0.029369999, -4.0452354E-4, 0.010515102, -0.01135176, -0.009082746, -0.027308477, -0.012991606, 0.005950303, 4.969741E-4, 0.0021903676, -0.0017101264, -0.014350337, 0.008574058, -0.009076052, -0.005592214, -0.019664781, -0.030574786, 0.0011830326, -0.014832252, 0.021900328, 0.03700031, 0.0051303795, 9.60482E-4, -0.022181444, -0.016224448, 6.316759E-4, -0.029959006, -0.03247567, -0.0041397777, 0.015099982, 0.008794936, 0.054616954, 0.013814877, -0.006914132, 0.0118202865, -0.003975793, 0.022529494, -0.024992611, 0.0023510056, -0.03258276, 0.010354464, 0.0031039966, 0.019798646, 0.028432945, -0.009785538, -0.0023727587, 0.019544302, 0.024791814, 0.022101125, -0.0155015765, -0.026009986, -0.022368856, 3.242045E-4, -0.031270884, 0.007958279, -0.02081602, -0.024711495, 0.025019385, -0.017777283, -0.015635442, -0.0043271887, 0.027268318, -0.004668545, 0.014992889, -0.0131522445, 0.012830968, -0.022127898, 0.0012290488, -0.02848649, -0.011505704, 0.0028747527, -0.0103946235, 0.019129321, 0.006013889, -0.015448031, 0.014270018, 0.021552278, -0.01962462, -0.028513264, 0.01863402, -0.0069944505, 5.074323E-4, -0.042542323, -0.009932789, -0.032850493, -0.008219317, 0.0063418583, -0.017683577, 0.0033784201, -0.01188722, -0.041551724, 0.02733525, 0.003580891, 0.032796945, 9.119559E-4, 0.046156682, 0.033118222, 0.007991745, -0.031913437, 0.004487827, -0.01161949, 0.003698023, 0.022837384, 0.027147839, -0.026438354, -0.01353376, 0.014725159, -0.0014239899, -0.023707507, -0.055259507, 0.026184011, 0.013071925, 0.013466828, -0.012335667, -0.0197451, -0.01598349, 0.011398612, -0.0010006415, 0.0013118779, 0.01621106, -0.0057394654, -0.014805478, 0.0043840813, -0.0011370166, 0.010789526, 0.02315866, -0.00987255, 0.028459717, -0.017094571, 0.012790808, -0.010648968, -0.01100371, 0.028191987, -0.025166636, 0.009859163, 0.0021569012, 0.0055353213, 0.015769307, 0.008466966, -0.008714617, 0.026853336, -0.042328138, 0.0050667934, 0.0028279, 0.003005271, -0.003617704, -0.0035474247, -0.02821876, -0.011278133, -0.036330983, -0.0016959033, 0.036063254, 0.0241091, 1.3386509E-4, 0.00141144, -0.017148117, -0.020829407, 0.0051471125, 0.005950303, 0.01326603, -0.028165214, 0.010762753, -0.0052809776, 0.01530078, -0.0036009708, 4.961375E-4, 0.004353962, 4.919542E-4, 0.022475949, -0.001240762, 2.991048E-4, -0.0066095884, -0.021164069, -0.055259507, -0.010916698, -0.0057227323, -0.0047254376, 0.0032144354, -0.019249799, 0.0029952312, 0.01155925, -0.00933709, -0.005026634, -0.002978498, -0.013299496, 0.010019802, 0.014564522, -0.0068505458, -0.0090158135, -0.009618206, 0.03788382, 0.0046116523, -0.005521935, 0.0069609843, 0.017616645, 0.05014586, -0.015903171, 0.013948741, -0.00338846, -0.0053612967, -0.025835961, 0.00421675, 0.020882953, 0.019892352, 0.0055654407, -0.02357364, 4.0745185E-4, 0.0027425608, 0.027040748, -0.02453747, -0.0020732356, 0.026063532, 0.019651394, 0.01752294, 0.028191987, 0.0052441647, -0.010387931, 0.0017318795, -0.03485847, -0.01844661, -2.9764065E-4, 0.0144842025, 0.0061678337, -0.0043773884, 0.0058733304, -0.008005132, 0.0038285414, -0.020334106, -0.030922834, 0.0020464624, 0.03700031, 0.051350646, 0.013721171, 0.0043840813, 0.006435564, -0.011739968, 0.0320473, -0.01844661, 0.020521518, 0.01791115, 0.029985778, 0.0034219262, 0.047977246, -0.02875422, -0.0124628395, 0.011927379, 0.023078341, 0.0139353555, 0.034885243, -0.029691275, -0.0053144437, 0.0041230447, -0.004397468, 0.01322587, -0.0048860754, 0.015046435, -0.035608113, -0.008313022, 0.0014766993, 0.015354325, 0.0011378533, -0.012429373, 0.019504143, -0.023948465, -0.015863013, -0.033359177, -0.014591294, 0.005307751, -0.017308755, 0.013627466, 0.02484536, 0.006703294, 0.01748278, 0.03210085, -0.0022455868, 0.016652817, 0.0020380958, -8.835096E-4, -0.026050145, -3.9741196E-4, 0.005926877, 0.018393062, -0.038017683, 0.0144842025, -0.033519816, -0.0017168197, -0.018085172, -0.0010851439, -0.009765458, 0.025782416, 0.013654239, -0.053438943, 0.003590931, -0.021271162, 0.0058733304, -0.025728868, 0.0030772237, -0.023707507, 0.0027994537, -0.003122403, 0.005311097, -0.0015628749, -0.031297658, 9.060993E-4, -0.016706362, -0.025635164, 0.024644563, 0.18794657, -0.013379815, 0.017241823, 0.060025103, 0.007964972, 0.016184289, 0.030922834, 0.009096133, -0.014845638, 0.018968683, -0.011405305, 0.019383663, 0.004939622, -3.09563E-4, 3.3074088E-5, -0.009859163, -0.033359177, -0.017415848, -0.0202404, -0.029316453, -0.01641186, -0.01575592, -0.020508131, -0.02346655, 0.017964695, -0.006291659, -0.01836629, 0.004471094, 0.024510697, -0.0016339907, -0.013660932, -0.027254932, 8.5087994E-4, 0.015434644, -0.012342361, -0.009189838, 0.012944753, 0.0015712414, 0.0031090167, 0.0045748395, -0.0019142707, -0.0053512566, -0.03282372, -0.01641186, 0.004789023, 0.025755642, -0.026465127, -1.0170609E-4, -0.020641996, 0.005558748, -0.041310765, -0.012007698, 0.0013286109, 0.00906936, -0.0054349224, 0.0018105253, 0.013038459, 0.008908722, -0.011947459, 0.004323842, 0.015207074, 0.029316453, -0.042435233, -0.007911427, -0.011164348, 0.0027174612, -0.031297658, -0.007931506, 0.019986058, -0.03914215, 0.0033181808, -0.020722315, -0.024738267, 0.007964972, -0.0043573086, -0.0077106287, -0.023024794, 0.029450318, 0.016371699, 0.0045982655, -0.042836826, -0.016880387, 0.009390635, -0.010796219, -0.0049831276, -0.035875842, 0.009216611, -0.0124628395, 1.7433836E-4, -0.015180301, -4.177009E-4, -0.0128242755, -0.014979503, 0.016251221, 0.007911427, 0.012663637, 0.005491815, -1.5342193E-4, 0.011565943, -0.008065372, -0.027924256, 0.021994034, 0.038499597, -0.021632597, -0.039731156, -0.019999444, -0.0027492542, -0.0014541094, 0.036946762, -0.020869566, -0.0044275876, -0.01552835, 0.010053268, -0.0023777785, 0.014002288, -0.0021920407, 0.0081858495, -0.019905739, 0.043907747, -0.022422401, 0.003346627, -0.006382018, 0.014738546, 0.017134732, 0.0074428986, -0.03309145, -0.015046435, -0.0025584963, -0.013353042, -0.03504588, 0.019664781, -0.019370278, 0.008935494, -0.0066464012, 0.0019510837, 0.007931506, 0.01867418, 0.016706362, -0.008098838, -0.005073487, -0.0035741976, -0.013373122, 0.010896618, 0.008928801, 0.022328695, -0.029075496, 0.004353962, 0.004558106, -0.0029333187, -0.029316453, -0.027201384, -0.016920546, 0.010307612, 0.005224085, 0.041658815, -0.0032010488, -0.040159523, -0.03220794, -0.008299635, 0.011304907, -0.020494744, 0.018888364, 0.0016883734, -0.013065232, -0.022342082, -0.023185432, -0.17059766, -0.010173746, -0.014390497, -0.018607248, 0.017630031, 0.024644563, 0.019999444, 0.011485624, 0.010086734, -0.016197676, 0.010662354, 4.013861E-4, -0.030976381, -0.019370278, 0.0016975766, 0.009290237, -0.0107159, 0.040775307, 0.011860446, -0.013988901, 0.041203674, 0.0054181893, 9.1446587E-4, -0.0084335, 0.014136153, 0.020534905, 0.008379954, 0.00958474, -0.011833673, -0.011090722, -0.031377975, 0.0019611234, 0.001038291, -1.0463439E-4, -0.016893774, -0.0025501298, 0.001270045, -0.0026773016, 0.007429512, 0.0029282987, 0.029048724, 0.014216472, 0.01355384, 0.0021820008, -0.0052843243, 0.019718327, 0.020494744, -0.023761053, 0.01725521, -0.02028056, 0.002337619, -0.025420979, 0.01355384, -0.015622055, 0.015247233, 0.025822574, -0.019905739, 2.085367E-4, 0.012456146, -0.009765458, -0.04712051, -0.0021100484, 5.555401E-4, -0.0062347664, 0.0059837694, -0.0313512, -0.008915415, 0.015327552, -0.025595004, 0.01016036, -0.040079206, -0.0055520544, 9.964582E-4, 0.016385086, 0.03169925, -0.008051985, -0.030280283, 0.007188555, 0.0049831276, -0.006649748, -0.020762475, 0.044068385, -0.03113702, -0.0012541485, -0.003127423, -0.006763533, 0.007188555, 0.0019142707, 0.017308755, -0.015113368, -0.007918119, -0.006345205, -0.0057126926, -0.021110523, 0.010729287, 0.021886941, 0.006060742, 0.0032746745, 0.018259197, 0.009283544, 0.0034085398, 0.002337619, -0.020173468, 0.00906936, 0.019959284, 0.00765039, 0.008748083, 0.038767327, 0.015166914, -0.0014716793, 0.0060339686, 0.003724796, 0.028459717, 0.017817443, -0.018352903, 0.015327552, -0.011499011, -0.020842794, -0.005260898, 0.026250944, 0.025635164, -0.0059636896, -0.002934992, 0.004163204, -0.009718605, -0.02036088, -0.08508465, 1.600106E-4, -0.014082607, 0.029825142, -0.03148507, 0.023172047, -0.013707785, 0.020923113, -0.008272862, 0.032689855, 9.92275E-4, -0.008326408, 0.007061383, -0.008821709, 0.024283126, 0.006900745, -0.02396185, 0.0068605854, -0.019008841, 0.033252086, 0.0019812032, -0.0132928025, 7.107399E-4, -0.009263464, -0.041391086, 0.022998022, -0.043613244, 0.024216194, 0.016853614, 0.024979224, 0.034671057, -0.032796945, 0.018915137, -0.03151184, -0.03151184, -0.01894191, -0.011505704, -0.03319854, -0.0046886248, -0.0688602, 0.014390497, 0.014912571, 0.008574058, -0.027469115, -0.018111946, -0.009149679, -0.027228158, 0.022248376, -0.018647406, -0.028406171, -0.017094571, -0.005762892, -0.019838806, -0.0052374713, 0.013707785, -0.002993558, 0.011124188, 0.007770868, -0.0050032074, -0.028379397, -0.016037038, -0.005133726, -0.025059544, 0.010889925, 0.004102965, 0.0018222384, -0.0022338736, -0.00906936, 0.021164069, -0.007824414, -0.019383663, 0.019049002, -0.027790392, -0.009129599, -0.031297658, 0.026947042, -0.0115860235, 0.005772932, 0.014229858, -0.029262908, -0.011324986, -0.032957584, 0.008487047, -0.017589873, -3.913462E-4, 0.01102379, 0.014738546, -0.010073348, -0.004119698, -0.021498732, 0.007918119, 0.01801824, 0.0039691, -0.009109519, -0.009497728, 0.034403328, 0.010468249, 0.006740107, 0.0030922834, 0.01213487, -0.0140290605, -0.0073625795, -0.06794991, 0.0070747696, 0.0073759663, -0.018955296, -0.009323703, -0.014082607, 0.0132928025, 0.008607525, 0.0037214493, 0.01629138, -0.004440974, 0.0063485517, -0.020735702, 0.0016549071, -0.0028362665, 0.005307751, 0.010602115, -0.0185537, -0.0057193856, 0.0067735733, -0.0137479445, -1.7948902E-5, 0.021150684, 0.030655105, -0.0032947543, 0.029985778, 0.013774717, 0.022462562, -0.0017368995, 0.0058398643, 0.026291102, -0.029530637, 0.017737124, 0.0016892101, -0.0071216226, -0.03301113, -0.03060156, 0.006797, 0.010956857, -0.007864574, -0.023305912, -0.029610956, -0.0024363445, -0.025099704, -0.0056591462, 0.022328695, -0.016465405, 0.008667764, 0.0038921274, 0.0123222815, 0.039677612, 0.010769446, -0.007101543, -0.026906881, 0.008567366, -0.007931506, 0.037401903, -0.00254511, 0.003858661, 0.0042134034, 0.016679589, 0.002076582, 0.024390219, -0.039436653, -0.009624899, 0.014859024, -0.0013294476, 0.0010182112, 0.0041933237, -0.039704382, 0.0084335, 0.013413281, 0.017148117, 0.015956718, 0.0061879135, 0.0042502163, -0.03301113, 0.015929945, -0.0029651115, 0.026639152, 0.035367154, -0.02657222, -0.02342639, 0.015367712, 0.0055788276, 0.028513264, -5.16897E-5, 0.02679979, -9.2617905E-4, 0.01355384, -0.020133309, 0.015863013, 0.014859024, -4.3338822E-4, 0.017027639, 0.01663943, -0.010227293, -0.0017151464, 0.0012039491, 0.00477229, -0.006238113, 0.0093772495, -0.010474943, -0.025929667, -0.004467747, -0.0020046297, -0.01748278, -0.013419975, 0.02177985, 0.013547147, 0.025099704, 0.02219483, -0.017737124, 0.011365145, -0.030896062, 0.0018640714, -0.014591294, -0.009444182, -0.007971666, 0.0445503, 0.008500433, 0.027469115, 0.04382743, -0.005475082, 0.045728315, 0.006559389, 0.017469393, -0.011465545, -0.004594919, 0.01182698, -0.025835961, -0.010019802, -0.019035615, -0.006378671, 0.006894052, -0.0057695853, -0.0042569097, 0.019383663, -0.005726079, 0.06313077, 0.022181444, -0.0060908613, 0.01008004, -0.033332407, 0.0040159523, 0.019557688, 0.013627466, -0.03515297, -0.011552556, -0.0074094324, -0.014537748, 0.008895335, -0.030655105, 0.002417938, 0.0017804056, 0.0014147866, -0.004658505, -0.01663943, -0.0043773884, -0.012703797, -8.110342E-5, 0.028432945, 0.005157152, -0.004404161, -0.030307055, 0.028700674, -0.009671752, -0.0013286109, -0.046906326, 0.016532337, -0.010367851, -0.019423824, 3.0328808E-4, 0.021244388, -0.0011378533, -0.0053512566, -0.019945897, 0.015381098, 0.00477229, -0.017951308, 0.026117077, -0.02028056, 0.0024781774, 0.012697103, -0.008366568, 0.003778342, -0.019102547, -0.026505286 ], + "id" : "51001bd4-42eb-41c4-9625-7a70db2594b0", + "metadata" : { + "source" : "movies.csv" + } + }, + "ab5b0855-989b-4f5b-9d1d-401d7c97d686" : { + "text" : "8,7282,Jonah Hill-Channing Tatum-Peter Stormare-Wyatt Russell-Amber Stevens West-Jillian Bell-Ice Cube-Keith Lucas-Kenneth Lucas-Nick Offerman-Jimmy Tatro-Caroline Aaron-Craig Roberts-Marc Evan Jackson-Joe Chrest-Eddie J. Fernandez-Rye Rye-Johnny Pemberton-Stanley Wong-Dax Flame-Diplo-Tyler Forrest-John Bostic-Richard Grieco-Dustin Nguyen-Ian Hoch-Kate Adair-Drew Cross-Katrina Despain-Oscar Gale-Janeline Hayes-Jackie Bohne-Jason Richard Allan Foster-Toby Nichols-Toby Holguin-Eddie Perez-Mickey Facchinello-Tom Ventura-Brian Schacter-Sam Schweikert-Jack Maloney-Rob Riggle-Dave Franco-Queen Latifah-Patton Oswalt-H. Jon Benjamin-Anna Faris-Bill Hader-Seth Rogen-Will Forte-Ramiro 'Ramir' Delgado Ruiz-Rachel Acuna-Vanessa Amaya-Chris Angerdina-John L. Armijo-Eric Berris-Libby Blake-Renaldo Brady-Emanuel Brooks-Tom Bui-Gustavo Cardozo-Blas Sien Diaz-Eddie Eniel-Joseph Fischer-Julian Garnik-Juan Gaspard-Kurt Grossi-Lyle R. Guidroz-Christopher Heskey-Skyler Joy-Adam Karchmer-Kurt Krause-Joshua Lamboy-Jaci LeJeune-Jacqueline Harris Matherne-Ashlyn McEvers-Quintin McKemie II-Anna Medley-David Stephen Mitchell-Jesse Moore-Jean Pierre Prats-Anthony Ramsey-Lisa Raziano-Gus Rhodes-Edwin Richardson-Jeff Sanders-Larissa Santiago-William Schaff-Robert Segari-Carl Singleton-Anne Speed-Sean Stevens-John Teal Jr.-Steve Terada-Joseph Uzzell-Donald Watkins-Stephen Daniel Wayne-Steven Williams-Michael Wozniak-Jesse Yarborough-Don Yesso-Ahmed Zakzouk,high school-undercover cop-buddy cop-buddy comedy-aftercreditsstinger-duringcreditsstinger,/850chzYHYbT3IISl6Q7dbBuFP2B.jpg,/kdyYOwpKvvD2fSbwfnMM2YPAzfq.jpg,64688-37949-86369-10988-437816-195589-412186-405908-228967-109414-193893-168530-137106-138832-102382-127585-8363-101299-98566-225886\r\n1597,Meet the Parents,Comedy-Romance,en,Greg Focker is ready to marry his girlfriend Pam but before he pops the question he must win over her formidable father humorless former CIA agent Jack Byrnes at the wedding of Pam's sister. As Greg bends over backward to make a good impression his visit to the Byrnes home turns into a hilarious series of disasters and everything that can go wrong does all under Jack's critical hawklike gaze.,15.363,Tribeca Productions-Universal Pictures-Nancy Tenenbaum Films-DreamWorks Pictures,10/6/00,55000000,330444045,108,Released,First comes love. Then comes the interrogation.,6.", + "embedding" : [ 0.019232946, -0.026083037, -0.02067507, -0.034000855, -0.014823374, 0.03072834, 0.0067842244, -0.0035879775, -0.02387825, -0.035387512, 0.019274546, 0.030645141, 0.018359352, 0.007772218, 0.007508753, 0.018137487, 0.015031372, -0.009769006, -0.0015279237, -0.028149158, -0.010316735, 0.003799443, -0.014074579, 0.013138585, 0.0042743734, 0.016404163, 0.03685737, -0.011412195, -0.01112793, 0.0017905221, -0.006711425, -0.01443511, -0.017097494, -0.034472317, -0.009658073, -0.01917748, 0.0059210295, -0.022685725, 0.033473924, 0.017236158, 0.007647419, -0.012258057, -5.606215E-5, -0.021437733, -0.0034631784, 0.0072522215, 0.020092674, -0.004413039, -0.00748102, 0.0117519265, 0.023018522, 0.016792428, -0.020910803, -0.028814754, -0.008285281, 0.009907671, -0.018747617, 0.0044303723, -0.006676758, 0.013395116, 6.4132933E-4, -0.019191347, -0.040518146, -0.009359942, -0.015475103, -0.006160228, 0.0020574539, -0.021396132, -0.0030818474, 0.01426871, 0.020134274, 0.009193542, 0.011876726, -0.0053316997, 0.005650631, -0.02505691, -0.015863368, 0.0048221033, -0.00855568, 0.010087937, 0.019496411, -0.009762072, -0.01333965, 0.02023134, -0.0033903788, 0.0053247665, -0.00847248, 0.02830169, -0.018026553, 0.007869284, 0.013686314, 0.045898378, -6.35696E-4, 0.003504778, 0.009450074, 0.0320318, -0.02461318, 0.017887888, -0.009727405, -0.019648943, 0.003074914, -0.010815932, -0.003962375, -0.009983937, 0.007515686, -0.010989265, 0.019024948, -0.004634904, 0.007605819, 0.026609967, 0.0014100579, -0.0039415755, 0.0053836997, -0.04143334, -0.009131143, -0.019427078, 0.03369579, -0.007390887, -0.018095886, -0.014518309, 0.037800297, 0.031782202, 0.010503935, -0.029452616, 0.022768924, 0.028842486, -0.010233536, -0.012472989, 0.012694854, -0.002274119, 0.020092674, -0.01650123, 0.020688938, 0.004101041, -0.040656812, 0.042598132, -0.023281988, 0.0038029095, -0.03272513, -0.028052092, 0.02505691, 0.036053106, -0.036358174, -0.0112180635, -0.01226499, 0.0038202428, 0.011911392, 0.0026849166, 0.02396145, -0.00743942, 0.012334323, 0.029397149, 0.0026415836, 0.025181709, -2.9271483E-4, 0.008638879, -0.008111949, 0.00967194, 3.8024763E-4, -0.010295936, -0.01772149, 0.0031529136, 0.0030870473, -0.023323588, -0.005154901, 0.015946567, 0.016958827, -0.025264908, -0.0099007385, 8.744612E-4, 0.0010850598, 0.015904967, -0.019371612, 0.007356221, 0.007917817, 0.009325275, 7.4922864E-4, -0.023462253, -0.032669663, -0.018692149, 0.0010087937, -0.0012913252, 0.038992822, 0.04703544, -0.0058066305, 0.0018286553, 0.01222339, -0.029036619, -0.012424456, -0.0051514343, -0.0028495821, 0.023184922, 0.004451172, 0.0012375923, -0.627435, -0.008625013, 0.00423624, -0.013443649, 0.03710697, 0.009796739, 0.0044269054, 0.01011567, -0.03477738, -0.007224488, -0.015433503, 0.034888316, 0.03430592, -0.006077029, -0.01978761, -0.009047943, 0.0027993158, -0.006843157, -0.0035602443, 0.005227701, -0.019524144, 0.02181213, 0.015461236, -0.007855417, 0.018359352, 0.0016336564, 0.007557286, -0.017624423, 0.0021735863, -0.014081512, -0.014365776, 0.03142167, 0.010351402, 0.0070927558, 0.032891527, -2.68665E-4, -0.013166318, 0.05022475, 0.018359352, 0.0212852, -0.02594437, -0.014781774, 0.015516703, 0.012743387, -0.029591281, 0.018692149, 0.0012861253, 0.0047285035, -0.017347092, 7.227955E-4, -0.0072591547, 0.010718866, 0.013263384, -0.0210772, -0.0025878504, -0.018290019, 0.002951848, -0.024252648, 0.020578004, 0.0067010247, -0.024016917, 0.01921908, -0.0026970499, 0.0065866252, -0.011238863, 0.036358174, -0.017984955, -0.0020938537, 0.028814754, -0.013644715, -0.010933798, 0.012472989, -0.0213684, -0.0019222547, 0.0068778237, 0.0077167517, 0.018969482, -0.0035567777, 0.0035169113, 0.024599312, -0.0044373055, -0.004718104, 0.007578086, 0.0034909116, 0.013651648, 0.004541305, -0.034888316, 0.02202013, 0.01738869, -0.021673465, 0.0014057246, 0.016126832, -0.0013606582, 1.4104912E-4, -0.011003131, -0.007487953, -0.010531668, 0.01865055, 0.04135014, -0.06062469, -0.012362056, -0.02444678, 0.012036191, -0.008382347, 0.009353008, 0.007980216, 3.5078113E-4, -0.00902021, 0.021756664, 0.0038410425, 0.006794624, -0.007890084, -0.010774333, -0.016154565, -0.0058724964, -0.03264193, -0.001542657, 0.02627717, 0.004371439, -0.003983175, 0.010926865, -0.0042743734, -0.002192653, -0.015502837, 0.016723095, 0.033362992, -0.0010295935, -0.011003131, 0.00908261, 7.5399526E-4, -0.009928471, 0.00752262, 0.032447796, -0.017333224, 0.011328996, 0.0053525, 0.008313015, -0.018414818, 0.026596101, -0.0062226276, -0.021867596, -0.0040178415, -0.0024769178, -0.020134274, -0.022852123, -0.0024006516, -0.025167843, 0.009186609, 0.004537838, -0.012417522, -0.0023399855, 0.013790314, -0.0077514183, 0.0075364863, 0.015003639, 0.0040559745, -0.032891527, -0.039436553, 0.004461572, -0.012778053, 0.012056991, 0.02695663, -0.0030298478, -0.016251631, 0.03877096, -0.0031147804, -0.0026051837, -0.002021054, -0.009602606, -0.005647165, 0.006697558, -0.015183905, 0.0067911576, 0.0014750574, -0.011107131, 0.033668056, -0.0011171263, 0.018331619, 0.011523128, -0.004333306, 0.004939969, -0.004326373, -0.031699, -0.0016405897, 0.028204624, 0.009720473, 0.025403574, -0.0032153132, -0.013069252, -0.007876217, -0.035942174, -0.0027317163, 0.005314367, -0.0039589084, 0.0028097157, 0.031033406, 0.0063404934, 0.002209986, 0.0038930422, 0.016237766, 0.032364596, 0.018636683, 0.00585863, -0.020619605, 0.013304983, -0.03477738, 7.752285E-4, -0.021728931, -3.4287285E-5, -0.01645963, 0.012396722, -0.0020193206, -0.01163406, 0.005650631, 0.012424456, 0.029979546, -0.034916047, 0.0085071465, -3.5511443E-4, 0.015724702, 0.006572759, -0.004874103, 0.034610983, 0.009574873, -0.024141716, 0.0104068685, 0.002000254, -0.01747189, -0.008125816, -0.0044685053, -5.2693003E-4, 0.0032534462, 0.014448976, 0.04326373, -0.011356729, -0.024807312, 0.017929487, -0.0033227792, 0.038937356, -0.018400952, 0.0071690218, 0.018220685, 0.032420065, 0.0015322571, 0.0052415673, -0.015960433, 0.015336437, 0.014026046, 0.0020349205, 0.050391153, -0.015294838, 0.035775777, -0.0047909035, 0.014532176, 0.013110851, -0.00952634, 7.786951E-4, 0.02035614, 0.03652457, 0.029175283, 0.014310311, -0.018317752, 0.02550064, 0.0069471565, 0.027913425, 0.008257548, -0.017166825, -0.0058863633, -0.018248418, -0.035858974, -0.020619605, -0.010718866, 0.010060203, 0.011668727, -0.0061879614, -0.0030298478, -0.008673546, 0.007772218, 0.012888986, 0.0018425218, -0.0025289175, -0.033141125, 0.027636094, 0.023739586, -0.023254255, -0.014046845, 0.0012557921, -0.031671267, -0.026998231, -0.026540633, -0.014421243, 0.04359653, -0.0062676943, 0.008957811, -0.005262367, 0.008458613, 0.011932192, -0.02084147, 0.016029766, 0.0046834373, 0.0044789053, 0.024141716, -0.024127848, -0.011835126, 0.018220685, -0.01540577, -0.005955696, -0.01860895, -0.008950877, -0.010171136, -0.0011613261, 0.01938548, -0.053081267, 0.01711136, -0.026041437, -0.022630258, -0.005574365, -0.0025878504, 0.006153295, -0.016112966, -0.015461236, -0.039020557, -0.039630685, 0.004718104, 0.08752585, 0.049975153, 0.015863368, 0.0033279792, -0.00213892, 0.0067391577, -0.006201828, -0.013152451, 7.0806226E-4, -0.017180692, 0.024557713, -0.022644125, 0.0095956735, 0.0028513155, 0.014767908, -0.0050821016, -0.010455402, -0.0092420755, 0.0052450337, 0.004617571, -0.010912999, -0.003123447, 0.009831405, 0.037522964, 0.007869284, -0.010947665, 0.029175283, 0.0212436, 0.0070338226, 0.015946567, -0.025403574, 0.003990108, 0.0045655714, 0.016695362, -8.2982815E-4, -0.0030107812, 0.043041863, 0.0031355803, 0.028010491, 0.010850599, 0.0040455745, 0.0035169113, 0.0026953164, -0.015419637, 0.028648354, -0.026970498, -0.0056090318, 0.022366794, 0.040518146, -0.037051503, 0.0041565076, -3.1069806E-4, -0.007813818, -0.02018974, 0.016293231, -0.013464449, -0.0033903788, -0.0131732505, -0.008222882, 0.009824472, 0.0016137232, -0.034610983, 0.014476709, -0.0150729725, -0.012930586, -0.013429782, -0.01694496, -0.017929487, -0.0027663826, 0.0074047535, -0.0011812593, -0.024668645, -0.017568957, -0.0029466483, 0.015197772, -0.010594067, 0.019288413, 5.298144E-7, 0.011252729, 0.0035671776, -0.027788626, -0.036025375, 0.007148222, -0.01865055, -0.005647165, 0.0034701116, 0.0070650224, 0.015946567, -0.009054877, 0.0013623915, 0.008333814, -0.0020175874, -0.012084724, -0.01654283, 0.042653598, -5.5162987E-4, 0.008139682, 0.017915621, 0.008118883, 0.0070372894, -0.01224419, -0.031005673, -0.0028357157, -0.0212436, -0.02712303, -0.008729012, -0.001956921, 0.00587943, -0.030118212, -0.029979546, -0.017874021, -0.0068084905, -0.005983429, -0.009616473, 0.013471383, -0.0052935667, 0.011328996, 0.016612163, -0.029230751, -7.4749533E-4, 0.0068119573, -0.013443649, 0.020522539, 0.040213082, -0.017374825, 0.007647419, -0.0066628917, -0.027760893, -0.0052970336, 0.022505458, -9.966604E-4, 0.016029766, -0.0040767747, -0.016431898, -0.019038815, -0.019551877, -0.010087937, 0.010316735, -0.015267105, 0.008943944, -0.022755058, 0.003397312, 0.002031454, -0.0015660569, 0.0032378463, -0.025292642, -0.007959417, -0.014282578, 0.024862777, 0.016210033, -0.009616473, 0.011238863, -0.027511295, -0.010025538, 0.004083708, -0.046813574, -0.0049642357, 0.017000427, 0.039020557, -0.012888986, 0.043651994, 7.730618E-4, 0.019607345, 0.01011567, 0.0040941075, 0.028426489, -0.03230913, -0.0070546223, -0.03097794, 0.01291672, 0.003965842, 0.016431898, 0.018969482, 0.015891101, 1.18949254E-4, 0.02606917, 0.005563965, 0.01865055, 0.009470874, -0.011072464, -0.020702804, 0.0047042374, -0.031033406, 0.0040213084, -0.0126393875, -0.01104473, 0.016390298, -0.016723095, 0.011356729, -0.00483597, 0.035470713, -0.018192952, 0.0068188906, -0.020467073, 0.016667629, -0.0017281225, -0.01715296, -0.018012688, -4.1014742E-4, -0.009110343, -0.015294838, 0.022852123, -0.006077029, -0.025597706, 0.0036781104, 0.029369416, -0.02096627, -0.018068153, 0.026707033, -0.015918834, 9.489941E-4, -0.018636683, -0.007730618, -0.02554224, -0.018955614, -7.279954E-4, -0.0034059787, 0.010358335, -0.0057130307, -0.025153976, 0.007040756, 0.0019517211, 0.040268548, 0.011335929, 0.042514935, 0.031699, 0.012500722, -0.0095194075, 0.010503935, -0.006118628, 4.502576E-6, 0.014324177, 0.03732883, 0.009422341, 0.006579692, -0.010143403, -0.0031373138, -0.03685737, -0.020744404, 0.017291626, 0.027317163, 0.027095297, -0.027414229, -0.017790822, -0.016598295, 0.011030864, 0.0016345232, 0.024765711, 0.0025358507, -0.02225586, -0.033557124, 0.017513491, -0.002573984, 0.0013563249, 0.010379135, -0.026041437, 0.024072383, -0.025320375, 0.0020349205, -0.012597788, -0.011959925, 0.03669097, -0.013686314, 0.0158079, 0.002041854, 0.0048255697, -0.005557032, -0.01978761, -7.687285E-4, 0.031976335, -0.001284392, 0.019732144, 0.009255942, -0.0019291879, 0.016154565, 0.017749222, -0.010760466, -0.022644125, -0.003563711, 0.0049087694, 0.026582234, -0.0015773234, 0.0015929234, 0.012999918, -0.012694854, -0.0048082364, -0.0015461236, -0.011266597, 0.0013762581, -0.039602954, 0.0322814, -0.009262876, 0.018068153, -0.0038445094, -0.008451681, -0.0018511884, -0.009283675, -0.001650123, -0.002832249, -0.0013762581, -0.02826009, -0.0040941075, -0.056908444, -0.020023342, -0.013630848, -0.021437733, 0.013506048, -0.014781774, 0.006961023, -0.0019811876, 0.005733831, -0.012424456, -0.0049642357, -0.025084643, -0.009658073, 0.028842486, -0.013714047, -0.016210033, -0.0023139855, 0.030506475, -0.008146616, -0.0076404857, 0.015669236, 0.0075364863, 0.02079987, -0.01820682, 0.01772149, 1.5350737E-4, -0.02914755, -0.0022845191, 9.195276E-4, 0.031310737, 0.014670841, 5.7372975E-4, -0.03142167, -0.0135268485, -0.0032066465, 0.048477564, -0.0034579784, 0.010386068, 0.034250453, 0.025264908, 0.017139092, 0.02339292, -4.497972E-4, -0.035581645, -4.8576362E-4, -0.01443511, -0.0320318, -0.0025445174, 0.0056783645, 0.004933036, 0.0064479597, -0.023157189, -0.030035011, -0.0063612936, -0.0058135637, -0.045870647, -0.0027802493, 0.028814754, 0.023489986, -0.019870808, -0.01283352, -7.3709537E-4, 0.017790822, 0.02408625, -0.019551877, -0.004842903, 0.018054288, 0.005782364, 0.016834028, 0.014310311, -0.016307099, -0.00693329, 0.017263891, 0.032142732, 0.017277759, 0.023587052, -0.016917227, -0.014587642, -0.0083546145, 0.0011093264, -0.0064791595, -0.0027282496, 0.033834454, -0.0322814, 0.007089289, 0.005681831, 0.019330012, 0.0017203225, 0.0071551553, 0.0045551714, -0.015294838, 0.0038445094, -0.024835045, -0.027955025, -0.0049919686, -0.011571661, 0.01860895, 0.011661794, -0.00847248, 0.02023134, 0.029785413, -0.014573775, 0.006239961, -0.010282069, 0.0040282416, -0.0053732996, -0.016834028, 0.0071620885, 0.020508671, -0.015988167, 0.0061740945, -0.02035614, -0.006929823, -0.017832423, -2.461318E-4, 0.01496204, 0.026083037, 0.01019887, -0.065893985, 7.5096195E-4, -0.015156172, 0.0028235824, -0.029203016, -0.011204196, -0.024141716, -0.021715064, 0.010254336, 0.01342285, -0.022144929, -0.02360092, 0.0020886536, -0.004960769, -0.013034585, 0.021923063, 0.18004367, -6.9852895E-4, 0.016293231, 0.048838094, 8.705612E-4, 0.016792428, 0.016431898, 0.025264908, 2.979148E-4, 0.007931684, -0.010060203, 0.00841008, -0.001865055, -0.0023278522, 0.03036781, -0.026457435, -0.026401969, -0.023420654, -0.027344896, -0.036829636, -0.013658581, 0.0099770045, -0.005810097, -0.023115588, 0.0071898215, -8.627613E-4, -0.01019887, 0.00587943, 0.026915032, 0.0034787783, -0.008195149, -0.025389709, -3.7374764E-5, 8.1422826E-4, -0.011578594, -0.016681496, -0.0051583676, 0.007730618, 0.022713458, -0.0016310564, 3.958475E-4, 4.8722613E-5, 0.009498607, -0.01641803, 0.004929569, 0.019926276, -0.013942846, 0.009249009, -0.0214516, -0.0055882316, -0.03965842, 0.013935912, 0.02404465, 0.031088872, -0.025750238, -0.00746022, 0.0104068685, -0.009339142, -0.010476201, 0.0047389036, 0.020051075, 0.03766163, -0.035498444, 0.0065866252, -0.003934642, 0.019427078, -0.030118212, -0.010899132, 0.016390298, -0.04634211, 3.598811E-4, -0.030589676, -0.022283593, -8.7532785E-4, -0.0013875247, -0.009824472, -0.008028749, 0.010365268, -0.0018113219, 0.013200984, -0.021936929, -0.009339142, 1.4505742E-4, -0.014039912, -0.019898541, -0.013679381, 0.017513491, -0.012036191, -0.0030107812, -0.027497428, -2.6584833E-4, -0.017166825, -0.0065762256, 0.005144501, -0.0012670588, 2.65415E-4, 0.02383665, 0.010795132, -0.010510867, -0.0032985127, -0.03205953, 0.013110851, 0.04010215, -0.029119818, -0.026249435, -0.0265545, 0.008125816, 0.018900149, 0.03300246, -0.014143911, -0.0055812984, -0.027150763, -0.009942338, -0.011391396, 5.711298E-4, 0.014254844, 0.015835634, -0.023226522, 0.026374236, -0.016445763, -0.0019395879, -0.03072834, 0.0014109245, 0.011835126, -0.0039207754, -0.02465478, -0.02202013, -0.0018563884, 0.014178578, -0.033141125, 0.019884676, 0.0015955233, 0.024973711, 0.004901836, -0.0067634243, -0.011079397, 0.028426489, -0.008930078, -0.009866072, 0.002407585, -0.01548897, -0.008770612, 0.012944452, 0.011107131, 0.016972695, -0.03405632, 0.00857648, -0.0054946323, -0.016210033, -0.028676087, -0.013568449, 0.001212459, 0.011204196, 0.013540715, 0.035054713, -0.018789215, -0.01808202, -0.049365025, -0.012646321, 0.044373054, -0.037689365, 0.017402558, 0.023143321, -2.8058157E-5, -0.03757843, -0.02035614, -0.17837968, 0.014462843, 1.2544921E-4, -0.026249435, 0.014864974, 0.0077514183, 0.035137914, 0.006181028, 0.009540207, -0.017610557, 0.015904967, 0.0073284875, -0.020896936, 0.0028253156, -0.010614867, 0.020550271, -0.0039207754, 0.03405632, 0.026360368, -0.003691977, 0.0425704, -0.0013866579, -0.016043633, 0.008964743, 0.008826078, 0.010705, 0.014934307, -0.008056483, -0.0100532705, -0.016528964, -0.047950633, -0.011710327, 0.015183905, 0.009255942, -0.0073215542, 0.0061463616, -0.012445255, -0.016528964, 0.0013684581, -0.003305446, 0.02756676, 0.016196165, 0.022533193, 0.01426871, 0.012764187, 0.01637643, 0.020910803, -0.019108146, 0.0158079, -0.02229746, -0.00792475, -0.05044662, 0.02769156, 0.0020175874, 0.007030356, 0.02769156, -0.010302869, -0.0036365106, 0.018553484, -0.0013311916, -0.041128278, -0.010607934, 3.8934755E-4, -0.011335929, -0.013187118, -0.030478742, -0.012653254, 0.0019101214, -0.022879858, 0.010795132, -0.029341683, 0.0031789134, 0.020688938, -0.0034891781, -0.005484232, -0.017610557, -0.03802216, 0.006545026, 0.01926068, 0.026055304, -0.009658073, 0.03397312, -0.008756746, 0.017971087, -0.009533274, -0.004673037, 0.009859138, -0.010081003, 0.012362056, -0.013471383, -0.0023746518, -0.00213372, -0.019898541, -0.00800795, 0.010705, 0.0069194236, 0.0050370353, -0.0013753914, 0.023281988, -0.008403148, -0.0076404857, -0.013700181, -0.02258866, 0.020744404, 0.015572169, -0.00638556, 0.020883068, 0.02396145, 0.017222293, 9.4466074E-4, -0.012355123, 0.013727915, 0.025583839, 0.0021354533, -0.0152255045, 0.014837241, -0.03142167, -0.01974601, -0.0029258484, 0.023212655, 0.052970335, 0.0051999674, 0.012271923, -0.019648943, 0.003553311, -0.014476709, -0.08075896, -0.009193542, 0.006434093, 0.04564878, -0.028384889, 0.04001895, -0.010843665, 0.020591872, -0.009311409, 0.04115601, -0.0029761146, -0.039270155, 0.0043957056, -0.006590092, -0.0051202346, 0.010933798, -0.014032979, -0.018719884, -0.011973792, 0.023198789, 5.3299667E-4, -0.013589248, 0.0014785241, -0.010503935, -0.019884676, 0.0014672575, -0.037356567, 0.016612163, 0.008846878, 0.016778562, 0.007293821, -0.0214516, 0.025472907, -0.039908018, -0.01492044, -0.023573186, -0.020383872, -0.029591281, 0.002466518, -0.043152798, 0.015766302, 0.01443511, -0.0050370353, -0.031560335, -0.009554073, -0.004673037, -0.034583252, 0.024405181, -7.1499555E-4, -0.0070927558, -0.009054877, -0.024973711, -0.038743224, -0.005938363, 0.009304475, 0.019080414, 0.026901165, 0.0046903705, -0.010815932, -0.02773316, -0.0058031636, -0.010857532, -0.03352939, 0.019967875, 0.0052762334, 0.009235142, 0.0040109083, -0.005983429, -0.0046522375, -0.019288413, -0.018068153, 0.030478742, -0.035359778, -0.007730618, -0.009463941, 0.01017807, -0.01799882, -0.016210033, 0.013776447, -0.03319659, 0.003100914, -0.039602954, 0.011107131, -0.018955614, 0.010212736, 0.010261269, 0.011710327, 0.014421243, -0.001475924, -0.041045077, -0.0015391904, 0.007813818, -0.006895157, 0.005137568, -0.012126324, 0.00424664, -0.011037798, 0.013811113, 9.59394E-4, 0.0059279627, -0.015461236, 0.0022134527, -0.07737552, 0.03868776, -0.025916638, -3.847976E-4, -0.011932192, -0.0077098184, 0.0052034343, -0.002445718, 0.008659679, 0.018026553, -0.0053663664, 0.024460647, -0.005993829, 0.006999156, 0.0010347936, 0.008361547, -0.0013311916, 0.004666104, -0.0018390552, -0.0015192572, -0.008715145, 0.008826078, 0.010448468, -0.00908261, 0.013076185, 0.018927881, -0.0041253073, 0.007578086, -0.017707622, -0.020910803, 0.022685725, -0.009200476, 0.010996198, 0.0013311916, 0.001545257, -0.030839274, -0.009581807, -0.007910884, 0.036496837, -0.004499705, -0.0213684, -0.024100116, -0.009817539, -0.020120407, -0.0016735229, 0.004513572, -0.014421243, 0.0035446445, 0.023101723, 0.012105525, 0.037689365, -4.8879697E-4, -0.009644207, -0.023115588, 0.013887379, -0.008174349, 0.023670252, -0.0023261188, -0.011114064, -0.021923063, 0.023531586, 0.009422341, 0.027941158, -0.03361259, 0.013388183, -0.008243682, 0.010933798, 0.0036434438, 0.003990108, -0.035332046, -0.0127919195, -0.020522539, 0.009054877, 0.035054713, 0.00958874, 0.02383665, 0.009422341, -0.001338125, -0.0023035856, 0.019330012, 0.025001444, 0.016348697, -0.030645141, 0.025084643, 0.014365776, 0.028648354, 0.0016128565, 0.025569974, 0.016071366, 0.008846878, -0.009477807, 0.01182126, 0.018692149, -0.013034585, 0.0036226439, 0.02826009, -0.0060180956, -0.027275562, -0.0039727753, 0.029702215, 0.0023746518, -0.004884503, -0.026596101, -0.00581703, 0.001112793, 0.004132241, -0.012632454, -0.014629242, 0.009942338, 0.024793444, 0.027719293, 0.00790395, -0.018886281, 0.01487884, -0.040268548, 0.019759877, -0.0074047535, -0.02931395, 0.0037023767, 0.035692576, 0.0077514183, -0.001880655, 0.031976335, -0.0032846462, 0.05230474, 0.005695698, 0.013970579, -0.021604132, -0.010919931, -0.007127422, 7.531286E-4, 0.0069055567, -0.02018974, 0.0016657229, -0.008028749, 0.006815424, 0.0027473161, 0.037772562, -0.007647419, 0.06988756, 0.009151943, -0.0029223817, 0.0077930177, -0.009949271, 0.009561007, 0.020994002, 0.0023833185, -0.0017437225, -0.013457516, 0.004673037, -0.009859138, 0.020619605, -0.030700607, 0.017707622, -0.015835634, 0.0319486, 0.023697985, -0.011287396, -0.017804688, -0.0039727753, -0.0059591625, 0.01536417, 0.01682016, -0.00952634, -7.1239553E-4, 0.010191936, -0.012382856, -0.0037647765, -0.039353352, 0.0022862523, -0.028509688, -0.004853303, -0.002015854, 0.018719884, -0.0085071465, 0.0047978368, 0.01905268, 0.01711136, 0.017291626, -0.00752262, -0.014365776, -0.021423865, -0.018969482, 0.03924242, -0.017444158, -0.014365776, -0.020980135, -0.0146431085 ], + "id" : "ab5b0855-989b-4f5b-9d1d-401d7c97d686", + "metadata" : { + "source" : "movies.csv" + } + }, + "d3ec5450-ffaf-44d1-a727-740dc05bd86c" : { + "text" : ",/ohDtIpcfP2NXtvAANsQFsh76BO0.jpg,11619-7484-5559-9982-10555-9408-10527-9928-9836-22794-953-810-6477-13053-15512-1267-12222-7443-8920-10192-38055\r\n55301,Alvin and the Chipmunks: Chipwrecked,Comedy-Fantasy-Family-Music-Animation,en,Playing around while aboard a cruise ship the Chipmunks and Chipettes accidentally go overboard and end up marooned in a tropical paradise. They discover their new turf is not as deserted as it seems.,37.189,20th Century Fox-Dune Entertainment-Regency Enterprises-Fox 2000 Pictures-Bagdasarian Productions,12/14/11,75000000,342695435,87,Released,\"Sun, Sea and Squeaks.\",5.697,1915,Jason Lee-David Cross-Jenny Slate-Justin Long-Matthew Gray Gubler-Jesse McCartney-Amy Poehler-Anna Faris-Christina Applegate-Alan Tudyk-Michael P. Northey-Sophia Aguiar-Lauren Gottlieb-Tera Perez-Andy Buckley-Chad Krowchuk-Luisa d'Oliveira-Tucker Albrizzi-Nelson Wong-Michael Bagdasarian-Amber-Rochelle DeMarco-Marcela Caceres-Natalie Sutcliffe-Ian Harmon-Phyllis Smith-Ross Bagdasarian Jr.-Janice Karman-Steve Vining-Eoin Bates-Seth Robert Dusky-Wendell Kinney-Jeremy Palko-Rachael Wegener,sequel-chipmunk-cruise ship-live action and animation-overboard,/i2KJbbpodyxizppc8F9NbUb7Iiq.jpg,/j8M9FjI1seC6OmUluDGkOZIwZt.jpg,23398-6477-12133-258509-41513-77931-297692-984430-5559-42949-26505-46195-9513-8920-13053-9836-7484-50359-12222-80321-172385\r\n8909,Wanted,Action-Thriller-Crime,en,Doormat Wesley Gibson discovers that his recently murdered father - who Wesley never knew - belonged to a secret guild of assassins. After a leather-clad sexpot drafts Wesley into the society he hones his innate killing skills and turns avenger.,33.731,Universal Pictures-Spyglass Entertainment-Bazelevs Production-Kickstart-Marc Platt Productions-Top Cow Productions-Relativity Media-Ringerike Zweite Filmproduktion-Revolution Sun Studios,6/19/08,75000000,342463063,110,Released,Choose your destiny.,6.5,6310,James McAvoy-Angelina Jolie-Morgan Freeman-Terence Stamp-Thomas Kretschmann-Common-Kristen Hager-Marc Warren-David O'Hara-Dato Bakhtadze-Konstantin Khabenskiy-Chris Pratt-Lorna Scott-Sophiya Haque-Brian Caspe-Mark O'Neal-Bridget McManus-Brad Calcaterra-Ekbal Kabir Siam,loss of loved one-assassin-secret society-mission of murder-based on comic-revenge-based on graphic novel-rejuvenation,/cbDMsV4VJAL2xJ2JXdWWjmUXZkT.jpg,/qqhzXiNyCotzJdyEbi41EtzYYYI.", + "embedding" : [ 0.005618065, -0.020396238, -0.008108617, -0.03407911, -0.02616596, 0.049150486, 0.0011921959, -0.007043645, -0.018630272, -0.024750492, 0.020665852, 0.04044198, 0.01734961, -0.010804749, 0.01082497, -0.0030280934, 0.011404638, -0.01163381, 0.009065744, -0.028956458, -0.022674471, 0.016446406, -0.014990494, 8.311669E-4, 0.0033330931, 0.013345853, 0.023739442, -0.0018097786, -0.010690164, -0.0084591145, 0.007441324, -0.0046238666, -8.156853E-5, -0.010717125, -0.009052264, -0.0073199985, 0.0024383145, -0.024143862, 0.026476016, -0.018077565, 0.00879613, 0.021596018, -0.0175653, -0.006551601, 0.0010177898, 0.013736793, 0.0016513809, -0.0024787565, 0.0060966285, 0.013925522, 0.017888837, 0.032407507, -0.020274913, -0.031544745, 0.007245855, 9.554418E-4, -0.017942758, 5.0173333E-4, -0.00878265, -8.4675394E-4, 0.0075626504, -0.012408948, -0.026260326, -0.020490604, -0.028039774, -0.007434584, 0.0028579, -0.02510099, 0.0027652204, 0.0065853023, 0.008445634, 0.0029488944, 0.0106295, 0.006797623, 0.01204497, -0.023065409, -0.022081321, 0.007616573, 0.005250717, 0.023173254, 0.03327027, -0.009348838, 0.002510773, 0.014451267, 0.019546958, 0.02981922, -0.0043070707, 0.016325079, -0.01980309, 7.983078E-4, 0.01408729, 0.036667395, -4.516021E-4, 0.008944418, 0.0037307728, 0.014977014, -0.0069357995, 0.012355025, -0.028228503, -0.029980987, -0.00367685, -0.0034038667, -0.0033061318, -0.008202981, -7.1489625E-4, 0.007515468, -0.0025866018, -0.010332926, 0.026597342, -0.014370384, 0.017632704, -9.840882E-4, 0.022728393, -0.025060548, -0.0057697226, -0.03246143, 0.006619004, 0.0021349995, -0.005126021, -0.025370602, 0.033108503, 0.032623198, 0.005698949, -0.039228722, 0.021676902, 0.028309386, -2.7698543E-4, -0.009618451, 0.016379002, -0.018872924, 0.024602205, -0.014774803, 0.012294362, 0.015489278, -0.03165259, 0.04373126, -0.012995357, 0.026435575, -0.0118495, -0.033432037, 0.031409938, 0.03939049, -0.02754099, -0.024130382, -0.023699, 0.0106295, 0.0095308265, -0.012348285, 0.029360877, -0.009739777, 0.036074247, 0.021285962, 0.010804749, 0.012590936, 0.016581211, 0.013116682, -9.2595286E-4, -0.0049541425, -0.0047317115, -0.027527507, -0.0060359654, 0.0023186735, 0.0035049717, 0.0050518773, -0.0063224295, 0.016581211, 0.021393808, -0.02043668, -0.0018182041, -0.00245011, -0.0051732035, 0.018320218, -0.024790933, 0.014316461, 0.006558341, 0.017079996, -0.0050653582, 0.0025074028, -0.037260544, -0.005473148, -0.015273588, 0.00510917, 0.03159867, 0.037071817, -0.0053585623, 0.0075491695, 0.026624303, -0.022580106, 0.007636794, -0.028417232, -0.0027180382, 8.2042454E-5, -0.017511377, -0.011114804, -0.6336989, -0.011714694, -0.015947621, -0.015017455, 0.015691489, 0.02449436, 0.01246287, 0.0048125954, -0.02922607, -0.009308396, -0.016581211, 0.017417014, 0.04532198, -0.025154911, -0.030061873, -0.019668283, 0.015354472, -0.011188948, 0.019236902, 0.018091045, -0.025559332, 0.014383865, 0.009146628, 0.004226187, 0.009025302, 0.013042538, -0.006453866, -0.008014252, -0.0031089773, -0.0031746954, -0.013035798, 0.008721987, 0.015152262, 0.0051732035, 0.03518452, 0.005762982, -0.012287621, 0.039714023, 0.03084375, 0.022998007, -0.02124552, -0.006784142, 0.002086132, -0.011485523, -0.01636552, 0.0074817664, 0.012887511, 0.009375799, 4.5244466E-4, 0.0034813804, -0.009631932, 0.002842734, 0.008263645, 0.0016699168, -0.011310274, -0.010784528, 0.019560438, -0.03273104, 0.019331267, 0.013783975, -0.0115057435, 0.0257211, -0.0011610219, 0.0041486733, -0.009915026, 0.03774585, -0.009652153, -0.013655908, 0.026718669, -0.03903999, 0.002086132, 0.0029522646, -0.019479554, -0.010521655, -0.0069155786, 0.009011821, 0.02491226, -0.015651047, -0.006164032, 0.0044688387, -0.0035892257, -0.0068111033, -8.501241E-4, -0.0010607594, 0.028255463, -0.005429336, -0.04332684, 8.678175E-4, 0.0053181206, 0.007434584, 0.0071582305, 0.03550806, 0.006824584, -0.009665634, -0.018481985, -0.0041149715, -0.013453699, 0.0013387981, 0.032326624, -0.03860861, -0.01697215, -0.007104308, 0.0075019873, -0.0145456325, 0.023011487, 0.0025057178, -4.7224437E-4, -0.015893698, 0.022013918, -0.017417014, -0.013123423, 0.0012865606, -0.004168894, 7.3764485E-4, -0.008095137, -0.02755447, 0.020005299, 0.0075087277, 0.00490022, -0.004027347, 0.0040711593, -0.0075491695, 0.002429889, -0.01713392, 0.007832264, 0.004802485, 0.0065819323, 0.008695026, 0.006598783, -0.0012419058, 0.0035656346, 0.0032252478, 0.016675577, -0.015893698, -0.0047485624, 0.0019294195, 0.024804415, -0.012813368, 0.0141007705, -0.015624085, -0.02654342, -0.0065482305, -0.02266099, -0.007171711, 0.0062819878, -0.010022871, -0.019937897, -0.008411932, 0.007677236, -0.0078524845, -0.01122939, 0.003656629, -0.003697071, 0.016945189, 0.017780991, 0.007946849, -0.008411932, -0.024602205, 0.013703091, -0.01573193, 0.0063830926, 0.03785369, -0.016689057, -0.02144773, 0.0147074, 0.011937125, -0.00858044, 0.005456297, -0.0062246947, -0.02224309, 0.014815246, -0.0053214906, -0.017686626, 0.005126021, -0.014869168, 0.032434467, -0.017282207, 0.014653478, 0.0131840855, -0.01880552, 0.006164032, -0.0068346947, -0.018684195, -0.006002264, 0.036289938, 0.020234471, 0.03572375, -0.012503312, -0.0118495, 0.014478229, -0.0015856626, -0.0063055786, -0.014019887, 0.005658507, -0.005877568, 0.016729498, -0.0063595013, -0.009739777, 0.014990494, 0.014923091, 0.036694355, 0.014154693, 0.011175468, -0.011128285, 0.015704969, -0.04149347, -0.0066695567, -0.036802202, 0.011896683, 0.001816519, 0.016203754, -0.0015494333, -0.009200551, -0.017187841, 0.0051159104, 0.018050604, 0.0011231075, 0.008452374, -0.011755136, -0.014289499, -0.014842207, -0.004846297, 0.015583643, 0.016702538, -0.0045160213, 0.012941434, 0.010798009, -0.028659884, -0.019466072, -0.010575578, 0.0051732035, -0.009503866, -0.0029286735, 0.014950052, 0.0125639755, 0.009692594, 0.028686844, 0.0039869053, 0.05678054, -4.516021E-4, 0.003592596, 0.028713806, 0.02472353, -0.001623577, -0.015691489, -0.016311599, 0.0125707155, 0.026381651, -0.019883974, 0.023941653, -0.01469392, 0.012125853, -0.0018569609, 0.010373368, 0.009861103, -0.0036431483, 0.011923644, 0.0028579, 0.029468723, 0.014734361, 0.005655137, -0.022580106, -0.0044216565, 0.008546739, 0.003326353, -0.0025714359, -0.034025185, -0.00776486, -0.0145456325, -0.009072484, -0.01920994, -0.029360877, -0.022135245, 0.005941601, 0.01776751, -0.008775909, -0.006858286, 0.0028663254, 0.02677259, 0.0062381756, 0.007104308, -0.027608393, 0.023645077, 0.023631597, -0.02205436, -0.015839776, -0.013339113, -0.0033027618, -0.024683088, -0.0062617664, -0.018239332, 0.038042422, 0.0060494463, 5.548134E-4, -0.01858983, -0.017241765, 0.019937897, -0.014437787, 0.023725962, 0.020760216, 0.0017423753, 0.02533016, -0.011559666, -0.012132594, 0.03149082, -0.017511377, 0.0054664076, 0.0038318776, -0.0026287287, 0.0035049717, -0.01430298, 0.008903976, -0.03448353, 0.009416241, -0.030493254, -0.005759612, -0.019924415, -0.007636794, 0.008856794, -0.019075135, -0.0032252478, -0.022687951, -0.024844857, 0.008668064, 0.06999159, 0.012368506, 0.0078457445, 0.012948174, -0.0029488944, 0.0118157985, -0.011155246, -0.016379002, -0.005658507, -0.011283313, 0.010393589, -0.005847236, 0.03124817, 0.0042598885, 0.022957563, -0.00879613, -0.008620882, -0.0032791705, -0.0072256336, -0.026678227, -0.032380547, -0.019951377, 0.0145591125, 0.035427175, 0.0030314634, -0.012152815, 0.017120438, 0.019560438, 0.001614309, 0.0021518504, -0.015961101, -0.012375246, 0.002143425, 0.018144969, 4.7266565E-4, 0.011175468, 0.019951377, 0.01430298, 0.011734915, 5.5144326E-4, -0.012941434, 0.0031056071, 0.005776463, -0.016082428, 0.007488507, -0.0075896117, -0.013440218, 0.014518671, 0.027123088, -0.038473804, 0.031517785, -0.0032724303, -0.008486075, 0.0015806074, 0.016945189, -0.0036465186, -0.0047485624, 0.0064875674, -0.020450162, -0.0035993361, 0.010926075, -0.041709162, 0.022135245, -0.007636794, -0.003511712, -0.020072702, -0.012617898, -0.0179832, -0.008674805, 0.009207291, -0.0040475684, -0.008068175, -0.011701213, -0.017282207, 0.006794253, -0.0015266847, 0.035454135, -0.004981104, 0.011249611, 0.026287287, -0.031167286, -0.030088833, 0.004003756, -0.01430298, 0.0031174025, 0.012206738, 0.009294915, 0.014114251, 5.5986864E-4, 0.011836019, 0.006083148, -0.0013581765, -0.01818541, -0.018670714, 0.03612817, 0.008964639, 0.030142756, 0.028093696, 0.0099824285, 5.21533E-4, 0.02264751, -0.0059348606, 0.019236902, -0.02570762, -0.018778559, -0.018684195, -0.0046676784, 0.012435909, -0.019654803, -0.022755355, -0.02876773, -0.008263645, -0.00653812, 0.0016741295, 0.010798009, -0.0018417952, 0.012847069, -0.0026304137, -0.0063527613, 0.028039774, 0.0067672916, -0.0057730926, 0.011330495, 0.03836596, -0.015799334, 0.051145624, -0.013965964, -0.047937226, -0.01635204, 0.020477124, 0.0048294463, 0.019115577, -0.022000438, -0.02080066, -0.0039869053, -0.02346983, 0.019371709, 0.0029927066, -0.0092140315, 0.018940328, -0.016594693, 0.011620329, 0.01593414, 0.008277126, -0.015340991, -0.028498115, 0.0058034244, -0.0041351924, 0.03122121, 0.029064303, -0.013231268, 0.015138782, -0.031302094, -0.0075626504, -0.021959996, -0.04262585, -0.037044853, 0.012415688, 0.04348861, 0.01472088, 0.047236234, 0.0089916, 0.022714913, 0.008115358, 0.014680439, 0.0039262422, -0.012934693, -0.00897812, -0.026435575, -8.7877054E-4, -0.0042969603, 0.019142536, 0.010467732, 0.02287668, -1.1026759E-4, 0.026866956, 0.011465302, 0.021151155, 0.015421875, -6.003106E-4, -0.007677236, 0.01184276, -0.027446624, -0.0032892812, -0.016217234, -0.0042396677, 0.036209054, 0.0048698885, -0.003494861, 0.0019951377, 0.027824083, -0.023725962, 0.02410342, -0.016635135, 0.014761323, -0.0073806616, -0.013568284, -0.02491226, 5.9609796E-4, -0.0111956885, -0.011303534, 0.0074278438, -5.518645E-4, -0.011674251, 0.012631378, 0.038338996, -0.028552039, -0.028066734, 0.0051293913, -0.0053181206, -0.027082646, -0.051361315, -0.013871599, -0.041547395, -0.012739223, 0.002104668, -0.014788284, 0.004940662, -0.02491226, -0.02938784, 0.0030129275, -0.019021211, 0.031356014, 9.208976E-4, 0.052224077, 0.024373034, 0.01613635, -0.032434467, 0.009079224, -0.009470164, 7.156335E-5, 0.031086402, 0.027608393, -0.011249611, 0.0018721267, 0.0061606616, -0.00367685, -0.026610823, -0.03939049, 0.0128740305, 0.028525077, 0.028929496, -0.0179832, -0.015044416, -0.018441543, 0.010070053, 0.0019883974, -0.009726296, 0.023725962, -0.03405215, -0.018037124, 0.010986738, -0.001144171, 0.010784528, -9.1584236E-4, -0.02001878, 0.0089916, -0.015233146, -0.0059988936, -3.9199233E-4, 0.0012267401, 0.023901211, -0.030196678, 0.012631378, 0.011006959, 0.008654584, 0.014141212, -0.0073537, 0.0077311588, 0.033998225, -0.0101307165, 0.010043092, -0.009301656, -0.0060629267, 0.0076300534, 0.019385189, -0.030628059, -0.015246627, -0.036478665, -0.014046848, 0.033000655, 0.008883755, 0.012611157, -0.013871599, -0.007171711, -0.00980044, 0.009166849, -0.01960088, 0.010359887, -0.03043933, 0.022984525, -0.014963533, 0.009658893, -0.0073806616, 0.0041014906, 0.010083534, -0.0101307165, 0.009571268, -0.0038453583, 0.010460992, -0.023429388, -0.007798562, -0.056241315, -0.012948174, -0.0035049717, -0.010501434, -0.0022714913, -0.01899425, -0.0035150822, 0.0051361313, 2.8351514E-4, 0.0024012425, -0.0096723735, -0.022917122, 0.017457455, 0.026058115, -0.0069290595, -0.005901159, 0.0028562148, 0.039740987, -0.007899667, -0.00107087, 0.009288175, 0.007043645, 0.026691707, -0.033539884, 0.015017455, 0.0054394463, -0.029980987, -0.007926628, 0.015853256, 0.025667178, 0.009557788, 0.004472209, -0.042356234, -0.017268725, -0.018643754, 0.048152916, -0.02346983, -0.0040374575, 0.021070272, 0.019546958, 0.015502759, 0.022189166, -0.008641103, -0.0038689494, -0.009746517, 0.0011618644, -0.019088615, -1.08687826E-4, 0.014208616, 0.009308396, 0.015974583, -0.0036364081, -0.029980987, -0.004650828, -0.033971265, -0.045106288, 0.0032555794, 0.026637785, 0.034348723, 0.006187623, 2.8056625E-4, 0.016945189, 0.0028966567, 0.031005519, -0.019910935, -0.0047721537, 0.031194247, 0.029468723, 0.0086006615, 0.027284857, -0.027878005, 0.0022495852, 0.0063359104, 0.032164857, 0.0058303857, 0.043030266, -0.0039565735, 0.0018485355, -0.020463642, 8.6613244E-4, 0.011404638, -0.0139390025, 0.030277563, -0.022553144, 6.626587E-4, 0.011290053, 0.013757014, 0.00408801, -0.0027112977, 0.011728174, -0.010798009, 0.0101307165, -0.019614361, -0.025896348, -0.002841049, -0.033782534, 0.009766738, -0.0019631211, 0.0068886173, 0.004232927, 0.01737657, -0.013453699, 0.0034847506, 0.0063022086, 0.0019294195, -0.005685468, -0.020072702, 0.007326739, 0.0083108265, -0.0257211, 0.020571487, -0.029333916, -0.003451049, 6.613949E-4, 0.020989388, -0.010717125, 0.021933034, 0.0065010483, -0.034348723, 0.012604417, 0.007185192, 0.011290053, -0.0112091685, 0.0094095, -0.018697675, -0.0060359654, 0.008337788, 0.0075491695, -0.024238227, -0.03205701, 0.004846297, 0.0011921959, -0.021838669, 0.026233364, 0.18700372, -0.008081656, 0.023968613, 0.034564413, 0.008344528, 0.002514143, 0.017807951, 0.034240875, -0.002246215, 0.031167286, -7.140537E-4, 0.020247951, 0.002473701, 0.0047451924, 0.0038082865, -0.010103755, -0.019627841, -0.027797122, -0.025438005, -0.030547176, -0.015219665, -0.015866738, -0.0022344193, -0.027311817, 0.013150384, -0.006207844, -0.0069155786, 0.002551215, 0.024386514, 0.013925522, -0.012098893, -0.010299224, -0.009665634, 0.013062759, -0.015893698, -0.0040138667, 9.29323E-4, 0.008647843, 0.0134941405, -0.002529309, 0.0067066285, -0.025505409, 5.4607204E-5, -0.020059222, 0.0049945847, 0.030196678, -0.017053034, -0.0066122636, -0.015219665, -0.007185192, -0.035993364, 0.0029472094, 0.019897453, 0.030061873, -0.01225392, -3.0205105E-4, 0.009139888, -0.015354472, -0.0016876102, 0.0038622092, 0.021501653, 0.036289938, -0.031436898, 0.004940662, 0.006517899, 0.023577675, -0.045834243, -0.02471005, 0.020247951, -0.029954027, 0.005988783, -0.011788838, -0.017120438, -0.0063999435, 0.011296793, -0.007677236, 0.005200165, 0.008883755, 0.018279776, 0.023847288, -0.028956458, -0.02960353, 0.007441324, -0.015448837, -0.019883974, -0.014383865, 0.040765516, -0.019169498, 0.01368287, -0.026233364, -0.008452374, -0.0028579, -0.014222097, 0.01265834, -0.0031342534, 0.009038783, 0.016055467, 0.013709831, 0.002429889, 0.017228283, -0.03963314, 0.014613035, 0.0066122636, -0.010117236, -0.01162707, -0.016783422, -0.0016370576, 0.011249611, 0.013089721, -0.0110474005, -0.018333698, -0.039013032, 0.0026422094, -0.01449171, 0.001858646, 0.027203972, 0.027096126, -0.02287668, 0.03127513, -0.0022900272, -0.011168727, -0.012705523, -3.0463132E-5, 0.003102237, 0.002472016, -0.0388243, -0.02472353, 0.01163381, -0.01613635, -0.037071817, 0.019506516, -0.011991047, 5.240607E-4, 0.003270745, -0.009941987, -0.0053551923, 0.019843532, 0.0011466986, 2.2874995E-4, 0.006780772, 0.006231435, -0.0015511184, 0.0041149715, 0.0062617664, 0.018468505, -0.03273104, 0.015448837, -5.7587697E-4, -0.004721601, -0.04637347, -0.013628948, -0.0016421129, 0.020288393, 0.008546739, 0.047317117, -0.0034813804, -0.031113364, -0.044351373, -0.03491491, 0.02879469, -0.031329054, 0.008553479, 0.019466072, -0.006656076, -0.022701431, -0.0061572916, -0.17179753, 0.020692814, -4.4570433E-4, 0.0013387981, 0.013831157, 0.014518671, 0.03774585, 0.0063190595, 0.015381433, -0.026125519, 0.020099664, 0.012894251, -0.042814575, -0.006716739, 0.0074480646, 0.0042598885, -0.019371709, 0.0125639755, 0.014222097, -0.0034004964, 0.03448353, -5.442817E-4, -2.2580105E-4, 0.0011155247, 0.011782097, 0.0032505242, 0.012631378, -0.0096791135, 0.0063527613, -0.011660771, -0.031005519, -0.019048173, 0.020881543, 0.0022967674, -0.020463642, -0.009874583, -0.027958889, -0.020692814, -0.0023641707, -0.0072728163, 0.014370384, 0.029846182, 0.030250601, 0.001583135, 0.016325079, 0.0050148056, 0.015287069, -0.020261433, 0.0014997234, -0.018495467, -0.015287069, -0.037907615, 0.021312924, 0.0022580107, 0.0063628717, 0.02326762, -0.011337236, 0.005877568, 0.0016336875, -0.0016530659, -0.021164637, -0.0068886173, 0.0036701097, -0.01652729, 0.011330495, -0.029253032, -0.020288393, 0.007818783, -0.030681983, 0.0017213118, -0.023146294, 0.0077109374, 0.026705187, 0.009045523, 0.007865965, -0.018778559, -0.04063071, 0.014923091, 0.0028056623, 0.02508751, -0.012638119, 0.051226508, -0.017673146, 0.014815246, 0.02408994, -0.02062541, 0.0075828712, -0.017120438, 0.013460439, -0.006295468, -0.0128807705, -0.02387425, -0.01633856, 0.0013219472, 0.01757878, 0.009685854, -0.018535908, 1.2553865E-4, 0.020571487, -0.0011180523, 0.004785634, -0.0171474, -0.0055001094, 0.0294148, 0.024790933, 0.008829832, 0.007677236, 0.020665852, 0.025896348, 0.013345853, -0.008081656, 0.011310274, 0.019263864, 0.012644859, -0.012146074, 5.6344947E-5, -0.0105957985, -0.03286585, 0.011532704, 0.0077041974, 0.051496122, 0.0027096127, -0.01652729, -7.195302E-4, -0.017295687, -0.0015881903, -0.097114675, 0.0035959661, -0.005901159, 0.03761104, -0.03572375, 0.023914691, -0.014572593, 0.022809276, 3.1779604E-5, 0.028471153, 0.01368287, -0.025815465, 0.0121191135, -0.02080066, 0.017646184, 0.0036128168, -0.01675646, -0.0038082865, -0.010784528, 0.025869386, -0.0058337557, -0.011323755, 0.00306011, -0.021272482, -0.017834913, 0.020153588, -0.037044853, 0.029468723, 0.022364415, 0.008317567, 0.015812814, -0.02164994, 0.0112091685, -0.035804633, -0.030897673, -0.038069382, -0.008620882, -0.0342948, 0.007892926, -0.05753546, 0.006234805, 0.025141431, -0.004802485, -0.022337453, -0.0122674005, 0.004859778, -0.024062978, 0.032542314, -0.025195355, -0.027662314, -0.01327845, -0.022431819, -0.02922607, 0.005894419, 0.023442868, 0.021205079, 0.012213478, 0.011296793, -0.014639997, -0.03103248, -0.009463423, -0.010312705, -0.040334135, 0.0179832, 0.013251489, -0.0086074015, -0.0044654687, -0.009645413, 0.019533476, -0.021353366, -0.019344747, 0.03003491, -0.02615248, -0.008519777, -0.0053181206, 0.008101877, -0.016864305, -0.023779884, 0.023321543, -0.029118225, 0.0058910483, -0.0306011, 0.015017455, -0.009038783, -0.0061909934, 0.018819, 0.017632704, 0.02632773, -0.0037139219, -0.037557118, 0.0051597226, 0.022202646, 0.0021585906, 0.010043092, -0.020854581, 0.019843532, 0.0085737, -0.0024029277, -0.015206184, 0.017174361, -0.010063313, -0.008034473, -0.07204065, 0.019668283, -0.009045523, -0.012503312, -0.0070571257, -0.01472088, -0.0069155786, -0.0139390025, 0.0025444746, 0.013285191, -0.009759998, 0.008499556, -0.007865965, 0.017915796, -0.011182208, 0.0119640855, 0.00428685, -0.018845962, -0.01759226, 7.422788E-4, -0.013979444, 0.0043778443, 0.02593679, 0.0069695013, -0.0059517114, 0.0133323725, 0.016284637, 0.01939867, -0.013103202, -0.010339666, 0.032919772, -0.013548063, 0.005574253, 0.001388508, -0.0074480646, -0.00368022, -0.0049372916, -0.0012410632, 0.020140106, 0.007778341, -0.007818783, -0.016109388, 0.006069667, -0.011033921, -0.0035858555, 0.011040661, -0.016217234, 7.208993E-5, 0.026112039, 0.015057897, 0.03472618, 0.008957898, -8.5886546E-5, -0.018940328, 0.014815246, -0.029306956, 0.07150142, -0.00775812, 3.328038E-4, -0.012368506, 0.009854362, 0.017632704, 0.024062978, -0.033458997, -0.0053888937, -0.0060157445, 0.0013817677, -0.004061049, -0.0018822371, -0.04896176, 0.0021349995, 0.004620496, -0.0018569609, 0.021892592, 0.009436462, 0.0019277344, -0.015044416, 0.005843866, -0.01347392, -0.0040509384, 0.021622978, -0.016298119, -0.027931929, 0.011694472, -0.0011188948, 0.008384971, -0.008957898, 0.004657568, 5.088949E-4, 0.0054057445, -0.02204088, -0.0015283698, 0.0073537, -0.006025855, 0.0055978443, 0.036910046, -0.008823092, -0.0054798885, -0.008802871, 0.018832482, 0.00531475, 0.007569391, -0.022377895, -0.026853476, -0.012011268, 0.002104668, -0.0134874005, -0.03043933, 0.004232927, 0.015030936, 0.01776751, 0.0195874, -0.024062978, 0.009517346, -0.037044853, 0.012408948, -0.01450519, -0.017524859, -0.0139390025, 0.035993364, 0.014343422, 0.004205966, 0.029360877, -0.007717678, 0.035615902, -0.0029758557, 0.016554251, -0.031329054, -0.0054630376, -0.020760216, -0.003004502, 0.0024180934, -0.016837344, 0.0078120427, -0.017848395, 0.008708507, 0.019115577, 0.027069166, -0.033647727, 0.06459932, 0.022755355, -1.7124652E-4, 0.027298337, -0.036451705, -0.0046002753, 0.015772372, 0.013770495, -0.012590936, -7.7218906E-4, 0.0087624295, -0.019331267, 0.010157677, -0.037557118, 0.008384971, -0.0032606346, -7.2627055E-4, 0.014613035, -0.0019226791, -0.018940328, 0.0053990046, -0.0265569, 0.023510272, 0.0010565467, -0.019627841, -0.023725962, 0.032218777, -0.012105633, -0.011276572, -0.019762648, 0.011862981, -0.012388727, -0.0066122636, -0.0035555242, 0.009429722, -0.00856696, -0.009092705, 0.010663202, 0.03229966, 5.923065E-4, -0.0022596957, 0.0014668644, -0.02325414, -0.0011298478, 0.011559666, 0.0025832315, 0.0040374575, -0.02860596, -0.029630492 ], + "id" : "d3ec5450-ffaf-44d1-a727-740dc05bd86c", + "metadata" : { + "source" : "movies.csv" + } + }, + "e049210b-c6e7-4c9c-8ca2-3d4b43a8c05e" : { + "text" : ",65759-9928-5559-11619-10527-6477-10555-9408-7518-13053-7484-9982-953-15512-950-8920-8355-22794-810-12222-7443\r\n260514,Cars 3,Animation-Adventure-Comedy-Family,en,Blindsided by a new generation of blazing-fast racers the legendary Lightning McQueen is suddenly pushed out of the sport he loves. To get back in the game he will need the help of an eager young race technician with her own plan to win inspiration from the late Fabulous Hudson Hornet and a few unexpected turns. Proving that #95 isn't through yet will test the heart of a champion on Piston Cup Racing��s biggest stage!,106.248,Pixar,6/15/17,175000000,383925276,102,Released,It's not over until lightning strikes.,6.8,4928,Owen Wilson-Cristela Alonzo-Chris Cooper-Nathan Fillion-Armie Hammer-Larry the Cable Guy-Bonnie Hunt-Lea DeLaria-Kerry Washington-Tony Shalhoub-Guido Quaroni-Lloyd Sherr-Paul Dooley-Cheech Marin-Jenifer Lewis-Lewis Hamilton-Bob Costas-Bob Peterson-Katherine Helmond-John Ratzenberger-Michael Wallis-Ray Magliozzi-Tom Magliozzi-Junior Johnson-Margo Martindale-Chase Elliott-Ryan Blaney-Darrell Waltrip-Shannon Spake-Humpy Wheeler-Jeff Gordon-Daniel Su��rez-Kyle Petty-Mike Joy-Ray Evernham-Richard Petty-Jason Pace-Angel Oquendo-Madeleine McGraw-Andra Day-Bubba Wallace-Isiah Whitlock Jr.-Paul Newman,trainer-sequel-travel-racing-anthropomorphism-high tech,/jJ8TnHvWHaVadW5JJjGYsM07j9i.jpg,/4mlS1MitcOqdPLhxEFyk9Qwf5rr.jpg,502235-1034541-49013-920-514231-863-127380-62211-10193-241408-324852-2062-9806-862-9487-12-105864-585-150540-260513-42085\r\n1571,Live Free or Die Hard,Action-Thriller,en,John McClane is back and badder than ever and this time he's working for Homeland Security. He calls on the services of a young hacker in his bid to stop a ring of Internet terrorists intent on taking control of America's computer infrastructure.,27.82,Dune Entertainment-Cheyenne Enterprises-Wintergreen Productions-20th Century Fox-Ingenious Media,6/20/07,110000000,383531464,128,Released,The old school cop is back!,6.", + "embedding" : [ -0.011840543, -0.019782286, -0.019493995, -0.043216266, -0.0030167643, 0.0053025037, 0.0062428834, -0.025095087, -0.019919569, -0.039756767, 0.036983676, 0.03830158, 0.0069292914, 0.004646984, 0.010893299, 0.017777974, 0.01276033, -0.03651692, 0.014647952, -0.03687385, -0.0072690635, 0.005618252, -0.022486735, 0.0018378581, 0.017393585, 0.0025517228, 0.008545783, -0.006253179, -0.0031283058, -0.016817003, 0.011909183, -0.008786025, 0.01414001, -0.010412813, -0.029845031, -0.0030339246, 0.016295332, -0.028609497, 0.023708541, -0.011579707, 0.017599508, 0.015979584, -0.019782286, -0.011689533, -0.011442426, 0.01721512, 0.009863687, -0.028046641, 0.012616184, 0.029817576, 1.6827727E-4, 0.028746778, -0.018450655, -0.04527549, -0.006555199, -0.009122366, -0.017846614, 0.011257095, 0.0040360806, 0.0027885337, 0.0026941525, -0.0074269376, -0.037477892, -0.01630906, -3.7988406E-4, -0.011023717, -0.010090201, -0.024573416, -0.005395169, 0.0013874028, 0.0216905, 0.003234699, 0.020386325, -0.011442426, 0.0059237033, -0.018148635, -0.021937609, -0.010769745, 0.009746998, 0.011421833, 0.017050382, -0.0116483485, -0.0050279405, 0.01840947, 0.0062703397, -0.0015040921, -0.011023717, 0.011909183, -0.045138206, 0.020674618, 0.0041939546, 0.03517156, 0.003579619, 0.009232191, 0.013906632, 0.0046023675, -0.0075985393, 0.014359661, -0.014002728, -0.028636953, 0.004743081, -0.0051206057, 0.010474591, -0.0040395125, 0.0019305233, -0.018587936, -0.0015238264, 0.008532055, 0.015842304, 0.01646007, 0.001827562, 0.01893114, 0.025012717, -0.042337663, 0.009081181, -0.008600696, 0.004739649, -0.0051686545, -0.028417302, -0.0148813315, 0.023186872, 0.03607762, 0.008655609, -0.014634225, 0.030421615, 0.012684825, -0.004217979, 0.003232983, -0.008991948, -0.0021330137, 0.011366921, 0.004163066, 0.0011299996, 8.1425183E-4, -0.036846396, 0.05252396, -0.016748361, 0.0070768693, -0.044012498, -0.016665993, 0.016199235, 0.032371014, -0.015004884, -0.0041081533, -0.0318768, 0.011126678, 0.012142562, -0.015169622, 0.002321776, -0.013364369, 0.038493775, 0.035528492, 0.017681876, 0.022212172, 0.0103579005, 0.007879967, -0.003059665, -0.008600696, -0.009458706, -0.009904872, 0.014345933, -0.009390065, -0.0044582216, -0.0101176575, -2.745633E-4, 0.028225107, 0.02918608, -0.021663046, -0.0074955784, -0.010879571, -0.014689137, 0.03390857, -0.023241784, 0.013103534, 0.0043655564, 0.017022924, 0.012472038, -5.075131E-4, -0.026069786, -0.01107863, 0.02155322, 0.0016259296, 0.04167871, 0.046675764, 0.0020506447, 0.014483214, 0.031025654, -0.03838395, -0.005978616, -0.017668149, 0.009101774, 0.012746601, -0.011668941, -0.016817003, -0.63083667, -0.004221411, -0.011579707, -0.015554012, -0.0025225503, 0.029295905, 0.0072553353, -0.007289656, -0.0483506, -0.011524795, -0.020166675, 0.013405553, 0.016569896, -0.008600696, -0.031574782, -0.018272188, 0.018272188, -0.0019236591, -0.0035212743, 0.0046950327, -0.01175131, 0.004736217, 0.013659525, 0.005583931, -0.0045714793, 0.013522243, 0.0027868175, -0.011119814, 0.007701501, -0.020688346, -0.0075779473, -0.0012295288, 0.0043415325, -0.014730321, 0.033359442, 0.0031746381, 0.0044273334, 0.05252396, 0.035199016, 0.03270049, -0.023090774, -0.002822854, 0.019095877, 0.013069213, -0.015128438, 0.011895455, 0.019219432, -5.898821E-4, 0.0076877726, -0.017311217, 0.015183351, 0.0028760505, -0.0012346769, -0.020029394, -0.018299645, 0.011964096, 0.02447732, -0.012925068, 0.022939764, 0.00697734, -0.012465174, 0.029982314, -0.0062943636, 0.0021330137, -0.008552647, 0.022418095, -0.014634225, -0.01728376, 0.012472038, -0.0137075735, 4.6718662E-4, 0.006297796, -0.0148813315, -0.014400845, 0.007289656, 0.010673649, 0.03681894, -5.80444E-4, -0.016858187, 0.025685398, 0.0022136667, -0.013055486, -0.0086212875, -0.012115106, 0.019123334, -0.0044307653, -0.022651473, 0.0076877726, 0.014277292, 0.01661108, 0.031300217, 0.0047018966, 0.0082986755, 0.0065002865, -0.015279448, 0.0043312362, -0.025273552, 3.4427666E-4, 0.019260615, -0.05521468, -0.010728561, -0.018999781, -0.0074612577, -0.009149822, 0.014112554, 0.001822414, -0.003915959, -0.0062703397, 0.016707176, 0.0012767194, -0.017022924, 0.0059168395, -0.0022273948, -0.013741894, 0.01163462, -0.03615999, 0.017777974, 0.014085097, 0.0047190567, -0.010900163, -0.0063698688, -0.0020317684, -0.0076809083, -0.012389669, 0.008614424, 0.019054694, 0.021278657, -0.0017760814, 0.0050897175, -0.0035041142, 0.02207489, 0.0053505525, 0.021896424, -0.011895455, 0.01526572, -0.009547939, 0.02147085, -0.0034680779, 0.029240992, -0.012870155, -0.030696178, 0.002994456, -0.010728561, 0.0015126722, -0.0074200733, -0.017091567, -0.014387118, -0.005714349, 4.388723E-4, -8.455692E-4, -0.022569103, 0.0032707355, 0.003727197, 0.0074406657, -0.0038850708, -0.0058241743, -0.016007042, -0.022569103, 0.011614028, -0.021676773, -0.005738373, 0.017256305, 0.012218067, -0.010694241, 0.015897216, 0.007845647, -0.015416729, 0.020756986, -0.002646104, -0.025328465, -0.0035452987, -0.010742289, -0.001071655, 0.0065346067, -0.022335725, 0.021457123, -0.014030185, 0.010014697, 0.0011136974, -0.011490474, 0.006527743, -0.0049249795, -0.02589132, 0.008614424, 0.016116867, 0.027785806, 0.012073921, 0.007584811, -0.009795046, 0.019699918, -0.02311823, -0.0036654202, -0.008696793, 0.012753465, -0.0015281164, 0.026838563, -0.012842699, -0.0019614117, 0.009849959, 0.024669513, 0.038274124, 0.02574031, 0.006314956, -0.006445374, 0.014538127, -0.043188807, 1.7213833E-4, -0.029460642, 0.0051823827, -0.014098826, 0.023887008, -0.0018498703, -0.031629693, -0.015320633, -0.004255731, 0.016487526, -0.035857968, 0.01834083, -0.00514463, 0.0019699917, -0.011902319, 0.004966164, 0.04063537, 0.0030116162, -0.010522638, 0.015306904, 0.031684607, -0.006870947, -0.023749726, -0.008353588, -0.009417522, 0.006527743, -0.0027851015, 0.006641, 6.140136E-5, 0.0032741674, 0.030696178, -0.0114492895, 0.048295684, -0.012979981, 0.006891539, 0.020770714, 0.027744623, 0.0013899767, -0.004966164, -0.00946557, 0.008545783, 0.0076740445, -0.0079348795, 0.047993667, -0.030641265, 0.03443024, -0.005896247, 0.009239055, 0.013748758, -0.0028571745, 0.009719541, 0.0021347296, 0.03802702, 0.019260615, 0.0061124656, -0.015965857, 0.015663836, -0.003960576, 0.009293968, 0.013028029, -0.0148813315, -0.0032673033, 0.0021999385, -0.018354557, -0.0021364458, -0.0052578873, 0.002247987, -0.017860344, -0.0042488673, -0.002079817, 0.0023629605, 0.014414574, 0.018052537, 0.03478717, -0.0055942275, -0.033112336, 0.019699918, 0.021978794, -0.023228057, -0.032288644, -0.018533023, -0.008147666, -0.015883487, -0.013433009, -0.0017486251, 0.033029966, -0.013007437, -0.004729353, 0.006222291, -0.02530101, 0.011270824, -0.009067453, 3.498537E-4, 0.02604233, -0.012664232, 0.025163727, -0.013446738, -0.008243763, 0.025959961, -0.0023372201, 0.020235315, -0.015677566, 0.011346329, -0.007275928, 0.008717385, 0.002743917, -0.050052892, -0.002989308, -0.017791701, -0.007557355, 0.0066924808, -0.002325208, 0.025246097, -0.0017760814, -0.036269814, -0.0051240376, -0.020619705, -0.006888107, 0.066938534, 0.02447732, 0.009788182, 0.009829367, -0.0050279405, -0.0068331943, -0.003895367, -0.028074099, -0.006417917, -0.016748361, 0.004633256, -0.006980772, 0.011181591, 0.014318476, 0.02230827, -0.005549611, 0.0050416687, 0.014332205, -0.0038747748, -0.02140221, -0.043985043, 0.0043930127, 0.020029394, 0.020605976, 0.00383359, -0.018134907, 0.01444203, 0.005247591, 0.0025259824, 0.0033736967, -0.01065992, -0.0138311265, 0.0011471598, 0.013206495, 0.0026066354, 0.001990584, 0.02005685, 0.014757778, 0.030339245, 0.0127809215, 0.0030322084, -0.0069121313, -0.013652661, -0.0045543187, 0.023063317, -0.023104502, -0.0018738946, 0.007852511, 0.023845823, -0.026838563, 0.022033706, -0.005213271, -0.012636776, 0.010852114, 0.009575395, 0.017009197, -0.018025082, -0.012355349, -0.0020609407, -0.009232191, -0.0082986755, -0.023859551, 0.009966648, -0.0096714925, -0.0013299161, -0.021347297, -0.004417037, -0.012218067, -0.023557533, 0.014043913, 0.008106481, -0.0149225155, -0.026330622, 0.010165706, 0.022212172, -0.004574911, 0.029048799, -0.0073171123, 0.016583623, 0.03209645, -0.023447707, -0.041761078, 0.0075779473, -0.037011135, -0.009808774, 0.020784443, 9.15497E-4, 0.023447707, -0.005216703, 0.014373389, 0.015210807, -0.01945281, -0.018670306, -0.004406741, 0.02888406, -0.0011445858, 0.012492631, 0.0155265555, 0.0124171255, 0.005134334, 0.011270824, -0.02110019, -0.0064350776, -0.013927224, -0.023077046, -0.009911736, 0.021347297, -0.005875655, -0.012211203, -0.013460466, -0.02133357, -0.011874863, 0.015416729, 0.012698553, -0.013474194, 0.0077495496, 0.01481269, 0.0065243104, -0.003637964, -0.012135698, 0.002316628, -0.019782286, 0.004643552, 0.013975272, -0.009595987, 0.025754038, -0.0053402563, -0.033304527, -9.669777E-4, 0.037587717, 0.024216484, 0.014661681, -0.021210015, -0.007303384, -0.016350245, -0.037752453, 0.018244732, -0.005879087, -0.006654728, 0.007584811, -0.019274345, 0.0049249795, 0.02131984, 0.00632182, 0.0037718134, -0.032206275, -0.003486954, 0.0014328773, 0.0038816389, 0.037999563, -0.0028709027, -3.417026E-4, -0.028389847, -0.0120533295, -0.0052544554, -0.028074099, -0.01908215, -0.01661108, 0.025397105, 0.0124171255, 0.04483619, -0.009232191, 0.008284948, -0.004042945, 0.009987241, 0.028032914, -0.018862499, 0.0038507504, -0.032233734, 0.015416729, 4.3672725E-4, 0.002476218, 0.011524795, 0.007488714, 0.0046916003, 0.0294881, 0.014057641, 0.017695606, 0.008586967, -0.019823471, -0.011133542, 0.014606768, -0.027428875, 0.009424386, -0.02670128, -0.019782286, 0.029652838, -0.008195715, -0.011943504, 0.0071523744, 0.02663264, -0.008449686, 0.014538127, -0.008779162, 0.011394377, -0.013755621, -0.008765434, -0.029872488, 0.006064417, -0.008332997, 0.0076122675, 0.014771506, -0.008916443, -0.02828002, 0.009589124, 0.030888373, -0.017901527, -0.019933296, 0.012389669, -0.0044479254, -0.0030253443, -0.040003873, -0.008319268, -0.02103155, 0.0014577595, 0.013920359, -0.016363973, 0.0014603336, -0.027497515, -0.03646201, 0.018601663, -0.009417522, 0.041925818, -0.0028709027, 0.044341974, 0.035253927, 0.00447195, -0.01862912, -0.0062737716, -0.01264364, -0.0061296257, 0.035610862, 0.02528728, -0.0065174466, -0.0060472568, -0.0029567035, 7.0914556E-4, -0.031217849, -0.039784223, 0.019425355, 0.02064716, 0.023530075, -0.024779338, -0.019974481, -0.041102126, 0.01380367, 0.0045337267, 3.8074207E-4, 0.0114492895, -0.01952145, -0.009067453, 0.020921724, -0.0032981918, 0.0104402695, 0.0048563387, -0.02565794, 0.027222952, -0.02767598, -0.0016079113, -0.02552066, -0.013783078, 0.039866593, -0.010673649, 0.009300832, 0.007571083, 0.014304749, -0.0021913585, -0.009609716, 0.015979584, 0.029433187, -0.010412813, 0.017805431, -0.013549699, 0.014977428, 0.0110854935, 0.011387513, -0.018958597, -0.026742466, -0.028225107, -0.0028468783, 0.0323161, 0.0072621997, 0.0032861796, -0.004094425, -0.0107628815, -0.009493026, -0.0072553353, 0.0060953056, 0.019823471, -0.04077265, 0.008024112, -0.020798171, 0.0035023983, -0.019768558, 0.00464012, 0.012410262, 0.0113326, 0.018285917, -0.013542836, -0.004389581, -0.020001937, -0.0064350776, -0.0390429, -0.014277292, -0.008133938, -0.007323976, 0.0050931494, -0.022637745, 0.0021415937, -0.0039434154, 0.0106805125, -0.0041081533, -0.004139042, 0.0057589654, 0.013872311, 0.033194702, -0.0070837336, -0.011387513, -0.008799754, 0.0226652, -0.007056277, 0.007049413, 0.015183351, 0.01714648, 0.034018394, -0.02926845, 0.0046160957, 0.010769745, -0.02476561, -0.035034277, 0.005412329, 0.013858583, -1.8940578E-4, 0.005995776, -0.030806003, -0.0141537385, -7.391759E-4, 0.021896424, -0.017187662, 0.001830994, 0.03473226, 0.016830731, 0.028829148, 0.031519867, -0.019850926, -0.029982314, 0.01854675, -0.012231795, -0.017160207, 0.003315352, 0.018807586, 0.020015664, 0.003751221, -0.02064716, -0.026852291, -0.007138646, -0.019631276, -0.015663836, -0.02064716, 0.021841511, 0.039701853, -9.3179924E-4, 9.6011354E-4, 0.016556168, -0.010062745, 0.015073526, -0.011922912, 4.6075156E-4, 0.009980376, 0.0030905532, 0.014167467, 0.033688918, -0.005909975, -0.0076877726, 3.8503215E-4, 0.027373962, 0.006215427, 0.035418667, -0.018752674, -0.004056673, -0.001999164, -0.0138311265, -0.004990188, -1.5401286E-4, 0.012012145, -0.041898362, -0.025754038, 0.008284948, 0.012973117, 0.014689137, -0.002743917, 0.015924672, -0.020537335, -0.009760725, -0.022006249, -0.016350245, -0.0020849651, -0.02056479, 0.007879967, -0.0042660274, 0.0015478507, 0.030833459, 0.023228057, -0.017517138, 0.01803881, -0.007845647, -0.0019648436, 0.004159634, 9.647254E-5, -0.010165706, 0.031904258, -0.0154853705, 0.015691293, -0.027099399, 0.0014637656, 0.0013745326, 0.010790338, -0.015540283, 0.03934492, -0.010577551, -0.052661244, -0.011353193, -0.00781819, -3.9189623E-4, 0.0054500815, 0.0017692173, -0.01736613, -0.023543803, -9.884279E-4, 0.01429102, -0.01639143, -0.020098034, -4.5217146E-4, -0.008381045, 9.985095E-5, 0.025987417, 0.18977816, -0.009520482, 0.014469487, 0.04483619, 0.009849959, 0.003727197, 0.031382587, 0.008518327, -0.015979584, 0.009685221, 8.545783E-4, 0.009369473, -0.011305144, 0.0033462404, 0.024902891, 0.0060953056, -0.010934483, -0.019892111, -0.02731905, -0.012183746, -0.011071766, -0.015293176, -0.010371629, -0.0047018966, -0.0050965813, -0.0010261803, -0.0046229595, 0.0070047965, 0.02926845, 0.010996261, -0.035638317, -0.006891539, -0.020482423, 0.007941743, -0.02140221, -0.008264355, 0.001913363, 0.025163727, 0.0074612577, 0.023735998, 0.027552428, -0.028101554, 0.0016765522, -0.0246146, -0.013069213, 0.019274345, -0.02580895, -0.0038919349, -0.0342655, -0.01065992, -0.047719102, -0.0037718134, 0.015677566, 0.009438113, -0.012465174, -0.012012145, 0.0076122675, -0.003727197, -0.012142562, 0.0055907955, 0.006157082, 0.039015446, -0.010302988, 0.025328465, -0.011366921, 0.019878384, -0.020111762, -0.0017271749, 0.012568136, -0.02723668, -0.0046675764, -1.1089784E-4, -0.011620892, -0.003224403, -0.004396445, -0.018752674, -0.011483611, 0.007070005, 0.008971356, 0.018285917, -0.03022942, -0.017022924, 0.011888592, -0.013632068, -0.0109619405, -0.021059006, 0.019068422, -0.011401242, -0.002484798, -0.0046847365, -0.019411625, -0.011929776, -0.01111295, 0.001913363, -0.012183746, -0.0052372953, 0.03270049, 0.023694813, -0.0071523744, 0.0078936955, -0.021992521, 0.024532232, 0.018917412, -0.029762663, -0.028170194, -0.0073994813, 0.029762663, 0.020166675, 0.031931713, -0.024161572, 0.0074269376, -0.038356494, 0.00980191, -0.021965064, -0.0038061338, 0.013103534, -0.0017675012, -0.020619705, 0.017050382, -0.019548908, -0.002987592, -0.0077220933, 0.006150218, 0.007131782, 0.0033616845, -0.041184496, -0.03443024, 0.008092754, -0.009795046, -0.014304749, 0.004561183, -0.033469267, 0.013858583, -0.0024573416, 0.0037889737, 0.010900163, 0.02468324, 0.01358402, 0.009088046, 0.0041356096, 0.024532232, -0.021525763, 0.019507723, -1.2698553E-4, -0.0045543187, -0.027923089, 0.004139042, -0.013535971, -0.012149426, -0.02828002, -0.010508911, -0.0023835527, -8.9061476E-4, 0.014496943, 0.033112336, -0.011174726, -0.019796014, -0.041541427, -0.012362213, 0.033277072, -0.040745195, 0.0086212875, -4.1184496E-4, 0.01878013, -0.020111762, -0.026536543, -0.17659912, 0.0047190567, 0.01526572, -0.025781495, 0.023337882, 0.026165884, 0.026811106, 0.02409293, 0.011222775, -0.008882123, 0.015293176, 0.0051789503, -0.03248084, -0.015801119, 0.020853084, 0.0066032475, -0.027524972, 0.057877947, 0.009005676, -0.002086681, 0.02723668, -0.005151494, 0.001502376, -0.0033102038, 0.008991948, -0.00928024, -0.0037752455, -0.0075298985, -4.7876977E-4, -0.024820523, -0.021896424, -0.0045920713, 0.0029669998, 0.01945281, -0.0016027633, -0.0050931494, -0.024271397, 0.0018361422, -0.0054397853, 0.0015564307, 0.023681086, 0.024793066, 0.016116867, 0.0052544554, 0.008882123, 0.021608133, 0.015897216, -0.013275136, 0.006133058, -0.01915079, 0.0033393763, -0.036791485, 0.020084307, -0.0089027155, 0.009513618, 0.03673657, -0.031904258, 0.007536763, 0.005899679, -0.012314164, -0.03256321, -0.013117262, 0.019370442, -0.016830731, 0.007159238, -0.0420631, 0.014085097, 0.018656576, -0.05260633, 0.01407137, -0.017736789, 0.004066969, 0.022624016, 0.0012012145, 0.0026340918, -0.02530101, -0.049421396, 0.01313099, -0.002153606, 0.005216703, -0.005240727, 0.057054255, -0.006064417, 0.0073994813, 0.0149637, -0.014112554, 0.02042751, 0.010852114, -0.0020231884, -0.0021827782, -0.004969596, -0.011428698, -0.013034893, -0.016185507, 0.00630466, 0.016707176, 0.0099941045, -0.0044925422, 0.010831523, 0.0052029747, -0.011847407, -0.021292385, -0.01608941, 0.022404365, 0.011517931, 0.02251419, -0.0026924363, 0.037450437, 0.02431258, 0.0015306905, 0.0016439478, 5.4526556E-4, 0.026852291, 0.02012549, -0.028993886, 0.0030991333, -0.017091567, -0.008422229, -0.003655124, 0.0045062704, 0.031190392, -0.019576363, 0.0036105076, -0.005055397, 0.005745237, 0.0019682758, -0.079458624, -0.01126396, 0.025383377, 0.023022134, -0.032206275, 0.039152727, -0.01563638, 0.01407137, -0.034622435, 0.03890562, 0.013220224, -0.023379065, 0.012362213, -0.0018704626, 0.02424394, -0.015608924, -0.0038507504, -0.009547939, -0.015828574, 0.032425925, -0.020674618, -0.0023114798, -0.030998198, -0.019699918, -0.03404585, 0.009039997, -0.034677345, 0.013481058, -0.0014200071, 0.012931932, 0.024134114, 3.3333703E-4, 0.012080786, -0.039015446, -0.027964273, -0.024779338, -0.016501255, -0.028746778, 0.019109607, -0.0550774, 0.0155677395, 0.0089850845, 0.0011085493, -0.04115704, -0.007385753, 0.006314956, -0.01728376, 0.047719102, -0.0049627316, -0.038054474, -0.023667358, 0.0024796498, -0.013220224, 4.3694177E-4, 0.021800326, 0.009355744, 0.016981741, 6.748251E-4, -0.0338262, -0.018505568, 0.006139922, -0.0073308405, -0.02244555, 0.015732478, 8.566697E-6, -0.0020266203, 8.193999E-4, -0.01743477, 0.03629727, -0.009472434, -0.025561843, 0.015073526, -0.037779912, -0.0043792846, -0.016130595, -0.004804858, -0.007886831, -0.009335153, 0.013014301, -0.008655609, -0.008195715, -0.030778546, -0.007557355, -0.017860344, -0.003061381, 0.017009197, 0.002407577, 0.007550491, 0.0037546533, -0.01923316, 0.0183271, 0.01818982, 0.010632464, 0.0020489288, -0.011469882, 0.026577728, 0.027730893, 0.010062745, -1.7160206E-5, 0.022980949, 0.0054981303, -0.0026666962, -0.084236026, 0.035720687, -0.020880539, -0.0020609407, -0.0012029305, -0.011970961, -0.002244555, -0.022912309, 0.011167862, 0.013439874, -0.009712677, 0.018999781, -0.005899679, 0.0099941045, -0.004544023, 0.016514983, 0.003562459, -0.0092253275, -0.023667358, -0.009136094, -0.012197475, -0.012877019, 0.02118256, 0.013522243, 6.1776745E-4, 0.029817576, 0.025081359, 0.033963483, -0.00529564, -0.004499406, 0.042090554, -0.020592248, -0.015787391, 0.007962336, -0.023955649, -0.033551637, -0.02013922, -0.016514983, 0.006661592, -0.0058687907, -0.0079692, -0.025191184, -0.023598716, -0.009623444, -0.006054121, 0.008264355, -0.025671668, 0.003238131, 0.016556168, 0.01676209, 0.023983104, -4.351721E-5, -0.020743258, -0.028197652, 0.011902319, -0.03522647, 0.056230564, 0.008037841, 0.008490871, -0.022706386, 0.025410835, 0.012986844, 0.022390638, -0.026564, 0.007639724, 0.003076825, -0.0073651606, 0.0049970523, 0.0010270383, -0.028966429, -0.0063252524, -0.0058687907, 0.009067453, 0.041184496, 0.0077426853, 0.0034543497, -0.0056765964, 0.0076877726, -0.008600696, 0.0142361075, 0.018807586, -0.014510671, -0.024408678, -0.0025791791, 0.007372025, 0.030394157, -0.023859551, -0.0017795134, -0.009273375, 0.0028811987, -0.008758569, -2.6062064E-4, 0.013934088, 0.010426542, -0.003809566, 0.015073526, -0.016212963, -0.009019405, -0.0075230347, 0.029570468, -0.009685221, -6.546619E-4, -3.3569653E-5, -0.0318768, -0.011867999, 0.018505568, -0.0078936955, -0.018217275, 0.011538523, 0.022898579, 0.025026446, 0.01223866, -0.014771506, 0.01395468, -0.02379091, 0.011689533, -0.006785146, -0.008387909, -0.022431822, 0.040580455, 0.0013213359, 0.025136271, 0.01847811, -0.003322216, 0.042831875, 0.017009197, 0.033029966, -0.025397105, 0.014277292, -0.005323096, -4.461654E-4, -0.0021484578, -0.021443395, -0.0058584944, -0.0014817838, -0.010996261, -0.0074612577, 0.024710698, -0.006387029, 0.075010695, 0.021347297, -0.0159384, 0.02328297, -0.017613236, -0.003555595, 0.008840938, 0.009637172, -0.012218067, -0.0029532716, 0.0043724207, -0.014414574, -0.001411427, -0.024930349, -0.01407137, -0.023887008, 0.00697734, 0.009733269, -0.0011248515, -0.027524972, 0.010783474, 0.0020214724, 0.0066959127, 0.008449686, -0.017009197, -0.016720906, 0.021429665, -0.026907204, -0.008024112, -0.027264137, 0.0062703397, -0.014057641, 9.93576E-4, 0.0018395742, 0.022335725, 0.0044753817, -0.007811326, 0.019864656, 0.03668166, 0.017832886, -0.012128834, 0.022953492, -0.023255512, -0.01395468, 0.024998989, -0.006641, -2.6512519E-4, -0.027524972, -0.028774235 ], + "id" : "e049210b-c6e7-4c9c-8ca2-3d4b43a8c05e", + "metadata" : { + "source" : "movies.csv" + } + }, + "2e463464-fd6f-4077-9f4e-df46dd3ce92a" : { + "text" : "519,9936,Ryunosuke Kamiki-Mone Kamishiraishi-Ryo Narita-Aoi Yuki-Nobunaga Shimazaki-Kaito Ishikawa-Kanon Tani-Masaki Terasoma-Sayaka Ohara-Kazuhiko Inoue-Chafurin-Yuka Kato-Kana Hanazawa-Shinya Hamazoe-Masami Nagasawa-Etsuko Ichihara-Yuka Terasaki-Takashi Onozuka-Kanami Satou-Shinjir�� G��da-Yasuhiro Kikuchi-Tamari Hinata-Nozomi Yamane-Yuuki Shin-Tatsuya Murakami-Nodoka Hasegawa-Baron Yamazaki-Suguru Inoue-Ryoko Usami-Miho Morisaki-Tsuyoshi Minamijima-Aika Oomae-Tomohiro Yamaguchi-Takayuki Nakatsukasa-Hiroki Matsukawa-Shouko Negoro-Yuki Ominami-Manami Hanawa-Miho Tabata-Eriko Tomioka-Eiji Yamamoto-Y��hei Namekawa,time travel-race against time-comet-natural disaster-supernatural-afterlife-romance-school-body-swap-nonlinear timeline-star crossed lovers-anime-dreams,/q719jXXEzOoYaps6babgKnONONX.jpg,/dIWwZW7dJJtqC6CgWzYkNVKIUm8.jpg,158358-378064-129-748918-568160-619433-198375-240-225145-990982-4935-38142-936511-238-504253-12477-128-8392-110420-278-496243\r\n744,Top Gun,Action-Drama,en,For Lieutenant Pete 'Maverick' Mitchell and his friend and co-pilot Nick 'Goose' Bradshaw being accepted into an elite training school for fighter pilots is a dream come true. But a tragedy as well as personal demons will threaten Pete's dreams of becoming an ace pilot.,117.253,Paramount-Don Simpson/Jerry Bruckheimer Films,5/16/86,15000000,356830601,110,Released,Up there with the best of the best.,7.027,7143,Tom Cruise-Kelly McGillis-Val Kilmer-Anthony Edwards-Tom Skerritt-Michael Ironside-John Stockwell-Barry Tubb-Rick Rossovich-Tim Robbins-Clarence Gilyard Jr.-Whip Hubley-James Tolkan-Meg Ryan-Adrian Pasdar-Randall Brady-Duke Stroud-Brian Sheehan-Ron Clark-Frank Pesce-Pete Pettigrew-Troy Hunter-Linda Rae Jurgens-T.J. Cassidy,loss of loved one-lovesickness-fighter pilot-self-discovery-pilot-dying and death-training camp-air force-airplane-dangerous-battle assignment-u.s. navy-hostility-secret love-cowardliness-pilot school-based on magazine newspaper or article,/xUuHj3CgmZQ9P2cMaqQs4J0d4Zc.jpg,/jILeJ60zPpIjjJHGSmIeY4eO30t.jpg,361743-1029446-380-2119-851238-485918-9390-954-811108-7520-616-9361-955-1368-956-1669-180-2253-881-2024-676\r\n258489,The Legend of Tarzan,Fantasy-Action-Adventure,en,Tarzan having acclimated to life in London is called back to his former home in the jungle to investigate the activities at a mining encampment.,42.", + "embedding" : [ 0.014376475, -0.03778727, -0.015133843, -0.013098415, -0.004669311, 0.019610431, -0.010048655, -0.01305108, -0.021179264, -0.042196237, 0.0073843417, 0.021869011, 0.025628805, -0.020800581, -0.0027606753, 7.256705E-4, 0.018244462, -0.02549356, 0.011421385, -0.028888194, -0.0026913625, -0.020475995, -0.02561528, 0.0047808876, 0.0019221603, 0.03143079, 0.026129209, -0.011948838, -0.012205803, -0.014092461, 0.017460046, 9.602349E-4, -0.00771569, -0.02607511, -0.015417856, -0.005758028, 2.719085E-6, -0.021328034, 0.015769491, -0.007918557, 0.017054312, 0.014633439, -0.010941268, 0.021625571, -0.021341559, 0.012090845, 0.007269384, -0.009196616, -0.011103561, 0.037679076, 0.016689153, 0.01664858, -0.0191506, -0.02525012, -0.016148176, 0.0027826524, -0.018339135, 0.0024377794, -0.0041553825, 0.0055179694, 0.02738698, 0.002431017, -0.023546042, -0.021963682, -0.02070591, 0.0035974998, -0.025642328, -0.013537959, -0.012239614, -1.188671E-4, 0.031052103, 0.009791691, 0.004439396, 0.013619106, 0.015580149, -0.030943908, -0.029239828, -0.013673204, -0.023289077, 0.020773532, 0.027116492, -0.021517375, -0.005602497, -0.01387607, 0.018501427, -0.004324438, 0.003281366, 0.03210701, -0.026846003, 0.019732151, 0.020124359, 0.026264453, -5.9422984E-4, 0.00487894, 0.008107899, 1.4026318E-5, -0.016391614, 0.015661296, -0.019921493, -0.04714618, -0.0040607117, 0.0012619989, 0.008500108, -0.004885702, 8.9430326E-4, -0.0039051806, 0.008290479, -0.007181475, 0.024492752, -0.0027336264, 0.008750309, 0.0055078263, 0.015904736, -0.03156603, -0.009967509, -0.012036747, 0.027495176, -0.010109515, -0.009216903, -0.02656199, 0.023194406, 0.026237404, 0.025777573, -0.02427636, 0.040383965, 0.033161916, -0.0076683545, -0.017568242, -0.0035231153, -0.005409774, 0.034974188, 0.005646452, 0.034676652, 0.026386173, -0.021368608, 0.04381917, -0.042953607, 0.010961555, -0.019042404, -0.015187941, 0.025060778, 0.025601756, -0.023289077, -0.0167703, -0.03394633, -0.0021216457, 0.02369481, -0.006278719, 0.039924134, 0.006214478, 0.027914435, 0.018041596, 0.020083785, 0.010312382, 0.022328842, -0.0033591315, 0.0062009534, -0.0058121257, -0.006471442, -0.008635351, 0.009622635, -0.00317148, -0.0012484743, -0.013456813, 2.1142495E-4, 0.023248503, 0.01917765, -0.014200657, -0.015904736, -7.2947424E-4, -0.008811169, 0.02899639, -0.023600139, 0.017392423, -0.010407053, 0.016296944, -0.002454685, -0.00442249, -0.040789697, -0.007857697, 0.010231235, -0.009081658, 0.024114067, 0.02488496, -0.008520394, 0.0041722883, 0.006674309, -0.011482245, 0.0024563754, -0.006938035, -0.0064207255, 0.026548466, 0.008297241, -0.0059270835, -0.6444123, -0.034920093, -0.0017700105, -0.0066371164, 0.04089789, 0.010515248, 0.0074384394, 0.012226089, -0.024966108, -0.01698669, -0.036488924, 0.00652554, 0.022491135, -0.012679158, -0.02378948, -0.02119279, 0.0015477026, -0.014579341, 0.016175224, -0.0065864, -0.03611024, 0.008053801, 0.015742442, 0.004689598, 0.00457464, 0.003577213, -0.0076413057, -0.017662913, -0.0017902971, 0.0108533595, -0.033865184, 0.033161916, 0.018041596, 0.010846597, 0.03613729, -0.013348618, -0.014011315, 0.0502027, 0.027035346, 0.03207996, -0.01497155, -0.0052914354, 0.017635863, 0.005808745, -0.018528476, 0.012226089, 0.010731639, -0.007282908, 0.0019170886, -0.0124560045, -4.1017076E-4, -0.0035941186, 9.7460457E-4, -0.014011315, -0.013774637, -0.0034013954, 0.007911795, -0.038382348, 0.006255051, -0.011529581, -0.020976398, 0.03565041, -0.010129802, 0.006924511, -0.002204483, 0.029483268, -0.009480629, -0.0032678416, 0.0014479598, -0.027481653, 0.006650641, 0.0089667, -0.004250054, -0.0036583596, 0.008662401, 0.027549274, 0.035028286, 6.402975E-4, -0.012652109, 0.005504445, -5.409774E-4, -3.9474445E-4, -0.001125064, 0.002037118, 0.016973166, -0.0067250254, -0.035488117, 0.019353466, 0.0323234, -0.005037852, 0.0021182646, 0.0028266069, -4.6701563E-4, 0.019448137, -0.007127377, -0.005372582, -0.014863354, -0.0012907382, 0.029375073, -0.050392047, -0.022112451, -0.0043481058, 0.023072686, -0.026724283, 0.0021216457, -0.018095694, -0.022180073, -0.02296449, 0.029077535, -0.014755159, -7.3961756E-4, -0.0037496495, -0.018677244, -0.0095279645, 0.016756775, -0.032702085, 0.03107915, 0.013301282, 0.02369481, -0.011570154, -0.008168759, -4.3478944E-5, 0.009311574, -0.01341624, 0.013105177, 0.028779998, -0.0075398725, -0.007120615, 0.020164933, 0.010109515, 0.010914219, -0.0047369334, 0.019759199, -0.0075736837, 0.0019001832, -0.015877686, 0.010528773, 0.014051888, 0.024641521, -0.011786545, -0.027305834, -0.003824034, -0.011969125, -0.0046152133, -0.0070462306, -0.016851446, -0.018366182, 0.0026152877, -0.0071476637, 2.6562836E-4, 0.011969125, 0.0075939703, -0.0040133763, 0.022207122, 0.0019187792, -0.0018291798, -0.027035346, -0.021666145, 0.008980225, -0.006001468, 0.013003744, 0.010204187, -0.010454388, -0.008574491, 0.028617704, -0.008033514, -0.0154043315, 0.014119511, -0.009433294, -0.024100544, 0.014498195, -0.008804407, -0.0029905906, 0.017460046, -0.0053049596, 0.021111643, -0.012097607, 0.0203678, 0.005561924, 3.0704692E-4, -0.005774934, 0.0035738319, -0.016689153, -0.013551484, 0.028157873, 0.015390807, 0.02875295, -0.0046388814, -0.010373241, 0.012523627, -0.034379113, 0.009034323, -0.00695156, 0.0059710382, 0.01448467, 0.019204699, 0.011739209, 0.022288268, -0.00600823, -0.004642262, 0.03973479, 0.014579341, 0.007972655, -0.025209546, 0.008270192, -0.03418977, -0.0044022035, -0.022612855, 0.006441012, -0.008452772, 0.02143623, 0.006752074, -0.016296944, 0.0010920981, 0.012699445, 0.015296136, -0.011428148, 0.006809553, -0.018880112, -0.008574491, 0.0021723623, -0.014417048, 0.015512527, -0.0110900365, -0.017148983, 0.014538768, 0.013639392, -0.004310914, -0.0041520013, -0.0041148094, -0.011685112, -0.0047065034, 0.0016601244, 0.012212565, 0.017284228, -0.0017074599, 0.027035346, -0.011874454, 0.054314133, -0.009798453, 0.0024107306, 0.009676733, 0.018095694, -0.0061029014, -0.0032424834, -0.014795732, 0.0071679507, 0.026737807, -0.00908842, 0.030511126, -0.011076512, 0.02369481, -0.0060792337, 0.018596098, 0.007309957, -0.018352658, 0.010799262, 0.008297241, 0.036245488, 0.022477612, 0.021098118, -0.024046445, 0.02034075, -0.0103191435, 0.01810922, 0.0045509725, -0.012665633, 0.0035231153, -0.0127332555, -0.028563607, -0.012185516, -0.0030852617, 0.0047944123, 0.008114661, 8.465451E-4, -0.014430572, 0.003668503, 0.013247184, 0.030375881, 0.021368608, -0.015309661, -0.04238558, 0.023775958, 0.019312894, -0.012611535, -0.01820389, -0.012111131, -0.015742442, -0.04122248, -6.1029015E-4, -0.0047098845, 0.02140918, -0.013098415, -0.0040269005, -0.012226089, -0.016675629, 0.020773532, -0.0073843417, 0.008398674, 0.025723476, 0.016553909, 0.019678053, 0.0022737957, 0.0052136695, 0.023059161, -0.0028181542, 0.0072017615, 0.0023464896, 0.0055483994, -1.1590863E-4, 0.017906353, -0.010799262, -0.04100609, 0.0042297672, -0.0015755966, -0.006136712, -0.020259604, -0.013159275, 0.011820356, -0.020570666, -0.020327225, -0.012570962, -0.027116492, 0.014417048, 0.08038924, 0.017973974, 0.006187429, -0.009690258, -0.0024749716, -0.012740018, -0.016513335, -0.011272617, -0.006474823, -0.0027894147, 0.022315318, -0.007309957, 0.030916858, 0.01024476, 0.032729134, -0.011360525, -0.0068433643, -0.020070262, -0.0043683923, -0.025480036, -0.007140902, 0.011117086, 0.010677542, 0.026156258, 0.013389191, -0.014051888, 0.013003744, 0.014579341, 0.022301793, -0.0010828001, -0.0028012486, 0.020908777, -0.012246376, 0.0050446144, -0.007093566, -0.006687833, 0.030051295, 0.018352658, 0.012111131, -0.009710545, -0.018190365, 0.02289687, 0.012320761, -0.015323184, 0.025263645, -0.03827415, -0.022923917, 0.014011315, 0.027522225, -0.035082385, 0.034730747, 0.008858505, -0.034162723, -0.023221456, 0.017730534, 0.013280995, -0.0018849681, -0.0055078263, -0.013348618, 0.013138989, 0.0031613368, -0.029970149, 0.004094523, -0.014133034, -0.0045915456, -0.030565223, -0.008872029, -0.0137611125, -0.008675925, 0.012922598, 0.011292904, -0.018487902, -0.006004849, -0.007357293, 0.023356698, -0.003376037, 0.028374264, -0.017027264, 0.015566625, 0.0067385496, -0.026940675, -0.033919282, 0.01076545, -0.027278785, -0.007648068, 7.7596446E-4, 0.004507018, 0.01436295, -0.009183091, -0.006271957, 0.0029111346, 0.011015653, -0.02165262, -0.009473867, 0.03140374, 0.005037852, 0.009189853, 0.016269896, 0.015160891, -4.5095538E-4, 0.014308852, -0.017892828, -0.009223665, -0.0061434745, -0.027887385, -0.0024563754, 0.028211972, 0.0125642, -0.019285845, -0.009223665, -0.012577725, -0.012530389, 0.017054312, 0.0119015025, 0.00478765, 0.005474015, 0.010393528, 0.018839538, -0.01387607, 0.0031850045, 6.732633E-4, -5.177323E-4, 0.024912009, 0.01781168, -0.0066337353, 0.030024245, -0.016702678, -0.017432997, -8.490809E-4, 0.030348832, -0.0041824314, 0.01735185, -0.021963682, -0.017946925, -0.025912818, -0.01924527, -0.0047707446, 0.004442777, -0.0018849681, 0.0074181524, -0.034108624, 0.008276954, 0.014417048, 0.012915836, -0.015174416, -0.027278785, -0.0024005873, -0.0061333315, 0.015350234, 0.013646155, -0.006833221, 0.0059778, -0.015877686, -0.010860121, -0.0095753, -0.041763455, -0.03659712, -3.1782422E-4, 0.013375666, 0.0034571837, 0.051636294, 0.006187429, 0.010616682, 0.006559351, 0.002336346, 0.03040293, -0.03381109, -1.7948933E-5, -0.020043213, -0.0036549785, 0.029483268, 0.020895252, 0.008412198, -0.0033625127, -0.009318336, 0.022856295, -0.0067385496, 0.009656447, 0.011989412, -0.038409397, -0.01125233, 0.02515545, -0.032350447, -0.004510399, -0.015742442, -0.015377282, 0.0335406, -0.015417856, 0.0034723987, -0.018406756, 0.02043542, 0.0072964327, -9.08673E-4, -0.021747291, 0.0383553, -0.019461662, 0.00515281, -0.02552061, -0.011340239, -0.0064951098, -0.009128993, 0.004290627, 0.0031816233, -0.0035231153, -0.013003744, 0.025845196, -0.023329651, -0.026305025, 0.013024031, -0.0026271215, -0.009751118, -0.03665122, 0.0036820273, -0.026034538, -0.0098052155, 0.0039322297, -0.0025899294, -0.0013330021, -0.012124656, -0.039653644, 0.0334324, 0.0029263496, 0.049310092, 0.010819548, 0.031025054, 0.024465702, 0.008344577, -0.017568242, 3.0937145E-4, -0.002488496, -0.006383533, 0.015783016, 0.037652027, -0.0073843417, -0.008128186, 0.0072288103, -0.0024377794, -0.04806584, -0.040843792, 0.024438653, 0.026913626, 0.01723013, -0.037462685, 0.013720539, -0.020029688, 0.025290694, -0.005210289, 4.598308E-4, 0.012530389, -0.034784846, -0.011813594, 0.011319952, 4.336272E-4, 0.006867032, 0.0039525162, -0.03129554, 0.03321601, -0.018826013, -0.0047808876, 0.0042466726, -0.018393232, 0.04257492, -0.017324802, 0.0061062826, 0.009081658, 0.020854678, 0.0067655984, -0.0032002195, -0.0069718463, 0.028401313, 6.064864E-5, 0.0064917286, 0.0067622177, 4.0615568E-4, 0.011840642, 0.026142733, -0.016053505, -0.008743547, -0.019556332, 0.005788458, 0.021517375, 0.016878495, 0.0053015784, -0.0050243274, -0.0098052155, -0.02043542, 0.0039085615, -0.006156999, 1.7248938E-5, -0.049093697, 0.0032103627, 0.009480629, -0.0073505305, -0.0038848938, 0.0011808522, -4.258084E-4, -0.0069718463, 0.020273129, -0.009555013, -0.007979416, -0.013625869, -0.013571771, -0.029077535, -0.027400505, -0.013477099, -0.01070459, 0.01796045, -0.019015355, 4.589855E-4, -0.005568686, 0.010927743, 5.223813E-4, 0.0071341395, -0.0020388085, -2.0508538E-4, 0.014782207, -0.025263645, -0.013679966, -0.011333477, 0.02775214, 0.005338771, 0.008804407, 0.00149445, -0.011516056, 0.032512743, -0.014687536, 9.593896E-4, 0.009257476, -0.013537959, -0.01652686, 0.0045949267, 0.009899886, 0.016188748, -0.010129802, -0.016594483, 8.604922E-4, -0.011414623, 0.006626973, 0.0022754862, 0.009751118, 0.029293926, 0.019867394, 0.019583382, 0.027576324, -0.018433806, -0.03305372, 0.02896934, -0.015931785, -0.02070591, -7.9878693E-4, 0.0054199174, 0.019651003, 0.0033912521, 0.010589632, -0.029050486, -0.02238294, -0.038652834, -0.032350447, -0.0031393594, 0.025385365, 0.028130826, 0.012537152, -0.0075804456, -0.0010354646, -0.00969702, -0.0046659303, -0.021747291, -0.014133034, 0.004919513, 0.015039172, 0.024749717, 0.027143542, -0.029185731, -0.026129209, 0.008770596, 0.01149577, 0.017973974, 0.0287259, -0.023316126, -0.013957217, 9.3825765E-5, -0.011570154, -0.022923917, -3.2141665E-4, 0.0067419307, -0.051582195, 0.010664017, 0.0058932723, 0.006457918, 0.0067892666, 0.019935017, 0.0143359015, -0.006255051, 0.0025510467, 0.0033692748, -0.020841155, -0.0024851148, -0.023667762, 0.028888194, -0.004354868, -0.0025628805, 0.040789697, 0.020083785, -0.008006466, -0.0053353896, -0.0070462306, 0.018028071, -0.016188748, -0.004598308, -0.0063902955, 0.017432997, -0.029158682, 0.01509327, -0.025642328, 0.0128685, 0.017432997, -0.005842556, -0.0038916562, 0.029266877, 0.026994772, -0.06545827, 0.008560968, 0.0019830202, -0.0045814025, -0.017568242, -0.0047707446, -0.025168974, -0.017649388, 0.012543914, 0.0023836817, -0.016608005, -0.019664528, 0.007986179, -0.015377282, -0.023289077, -0.0026423365, 0.17354555, 0.0061705234, 0.007546635, 0.034568455, 4.0869153E-4, 0.016635055, 0.009920173, 0.022707526, -0.012882024, 0.0070732795, -0.012131418, 0.0020962874, 0.0064815856, -0.0030244018, 0.009074896, -0.005284673, -0.031187346, -0.030429978, -0.020665336, 0.0054266797, -0.010846597, -0.0045340667, 0.0067317877, -0.0074181524, -0.015769491, 0.0028333692, 0.0019796393, 0.0013566699, 0.02967261, 0.0060555656, -0.025331266, -0.017946925, -0.007749501, -6.1493914E-4, -0.030565223, -0.005626165, 0.00850687, 0.01603998, 0.0031444312, -0.0011690183, -0.012361334, 0.014187132, 0.01640514, -0.014809256, -0.0032678416, 0.025466511, -0.020191982, -0.0031833139, -0.020638287, -0.0015105103, -0.045360956, 0.0028063203, 0.024803814, 0.016215798, 8.076624E-4, -0.020773532, 0.011698636, -0.0075804456, -0.0023650855, -0.003976184, 0.010920981, 0.03905857, -0.032729134, 0.0050513763, -0.003311796, 0.011272617, -0.024830863, -0.009237189, 0.02777919, -0.031998813, -0.013828735, -0.014187132, -0.012354571, 0.0044292524, -0.001655898, -0.004659168, 0.014525243, 0.016432188, 9.889744E-4, -0.0033101055, -0.021625571, -0.015471954, 0.010143327, -0.009886362, -0.008371625, -0.0151067935, 0.004442777, -0.031241445, -0.0022907013, -0.016175224, -0.012361334, -0.026724283, -0.016094077, -0.0012484743, -0.008804407, -0.0030548316, 0.027941482, 0.013368904, 0.00445292, 0.008493345, -0.020178458, 0.030808663, 0.024871437, 0.0016812563, -0.022788674, -0.021855487, 0.0011884597, -0.0027978674, 0.0065458263, -0.005585592, -0.007526348, -0.027725091, 0.011847405, -0.020719435, -0.0072288103, 0.013625869, -9.407935E-4, -0.015539575, 0.037760224, -0.017243655, 0.00120452, -0.025926342, -0.0065458263, 0.012915836, -0.002595001, -0.030998005, -0.02308621, -0.00469636, -0.0054199174, -0.0299431, 0.028076727, -0.02875295, 0.030511126, -0.0041452395, -0.0016322302, -0.0026660042, 0.022518184, -8.6429593E-4, 0.015025647, -0.0013304662, -2.3202859E-4, -0.007871221, 0.015296136, 0.008682687, 0.0040911417, -0.027224688, -0.0041452395, 8.300622E-4, -0.02131451, -0.023843579, -0.020151408, -0.02272105, 0.0023701573, 0.01570187, 0.04568554, 0.004598308, -0.029104585, -0.039545447, -0.013686729, 0.044387195, -0.04452244, 0.013612344, 0.025993964, -0.010021606, -0.028320167, -0.008540681, -0.17354555, 0.027698044, 0.020354275, -0.018609622, 0.016256372, 0.014876879, 0.030240636, -0.0047808876, 0.010657255, -0.025114875, 0.028563607, 0.0138219725, -0.034297965, -0.019542808, 0.0029990436, 0.014092461, -0.030538173, 0.027021822, 0.03162013, 0.0012391764, 0.04817404, -0.0019137076, -0.019691577, -5.82396E-4, -0.0027826524, 0.011123848, 0.011137372, -0.008236381, 0.008033514, -0.009413007, -0.042331483, -0.010177137, 0.009710545, 0.00451378, -0.0070124194, -1.4538768E-4, -0.024289886, -0.0072896704, -0.021422705, -0.0052001453, 0.019258795, 0.013571771, 0.016702678, -0.0024191833, 0.0108533595, 0.0014597937, 0.03375699, -0.0081417095, -0.0034132292, -0.007113853, -0.023275552, -0.03397338, 0.02073296, -0.0015400951, 0.011407861, 0.01689202, 0.0101839, 0.008763834, 0.009764642, -0.0103394305, -0.028888194, -0.008168759, 0.0102785705, -0.017094886, -0.015593673, -0.0018798965, -0.014146559, 0.02738698, -0.028807046, 0.014863354, -0.019786248, 0.011962363, 0.018379707, -8.8331464E-4, 6.2592776E-4, -0.020597715, -0.02408702, 0.017784633, 0.014525243, 0.020286653, -0.026967723, 0.045306858, 1.5352346E-4, 0.016432188, 0.017176032, 0.0028857763, 0.021138692, -0.012395144, -0.010258284, -0.018163316, 0.009257476, -0.009196616, -0.037489735, -0.0070056575, -0.010981841, -0.004135096, -0.0079050325, 0.0023008445, 0.010102753, -0.013057842, 0.006714882, -0.026237404, -0.009947222, 0.016932592, 0.030781614, 0.017744059, 0.01810922, 0.03013244, 0.0299431, 0.009886362, -0.01570187, -0.004037044, 0.019339941, 0.010346193, -0.020137884, 0.0092304265, -0.0087164985, -0.023397272, 0.011509295, 0.011671588, 0.032729134, 0.0025239978, -0.0011478864, -0.011340239, 0.005196764, -0.010068942, -0.07698108, 0.022112451, 0.017216606, 0.03281028, -0.027441079, 0.053746104, -0.0012738327, 0.024222262, -0.014687536, 0.02802263, -0.0077697877, -0.019799773, 0.0095482515, -0.010839835, 0.019069454, 0.004473207, -0.008486583, -0.019569857, -0.0010075704, 0.03164718, -0.0031883856, -0.016486287, -0.0048113177, -0.011820356, -0.028509509, 0.0027251737, -0.030240636, 0.003448731, 0.016351042, -0.0056937872, 0.014160084, -0.01701374, 0.006752074, -0.049228944, -0.03013244, -0.0072964327, -0.025872244, -0.016053505, 0.013017269, -0.028293118, 0.010204187, 0.010914219, 0.008608303, -0.041303623, -0.009987795, 0.0021199551, -0.039166763, 0.032025862, -0.02301859, -0.026548466, -0.014254754, -0.0039085615, -0.01735185, -0.019745676, 0.044089656, 0.024898484, 0.028211972, 0.0021672908, -0.025141925, -0.015837114, -0.004009995, -0.01582359, -0.015526052, 0.017541192, 0.014092461, 0.008189046, -0.015363758, -0.010988603, 0.009683495, -0.0052170507, -0.027616896, 0.032566838, -0.028779998, -0.019353466, -0.026697235, -0.012165229, -0.01917765, -0.013240422, 0.0323234, -0.021612046, 0.018771917, -0.04116838, 0.021003447, -0.015661296, -0.006339579, 0.024641521, 0.02320793, 0.017568242, -0.009494154, -0.03186357, 0.0010430721, 0.014444097, 0.002792796, 0.0033675844, 1.03757775E-4, 0.026859527, 0.018582573, -0.0025054016, -0.003763174, 0.0127535425, -0.013808448, -0.009372434, -0.07708928, 0.021706719, -0.006315911, 0.002021903, -0.006156999, -0.003296581, 0.0167703, -0.0014251374, -0.0057343603, 0.015661296, -0.009845789, 0.019935017, -0.015512527, -0.009122231, 0.007742739, 0.0287259, -2.2505505E-4, 0.008594778, 0.0026186688, -0.0103191435, -0.0148498295, 0.019935017, 0.03183652, -9.128994E-4, -0.010711352, 0.01951576, -0.0012062106, 0.011144134, -0.021720242, -0.0070394683, 0.02357309, -0.01305108, 0.001259463, -0.0013270852, -0.0057005496, -0.022450563, 0.0029128252, -0.0025882388, 0.0025358316, 0.017284228, -0.0065965434, -0.0077697877, -0.003698933, 0.010346193, -0.0061400933, 0.012097607, -0.02393825, 0.012665633, 0.017000215, 0.007330244, 0.023464894, -6.153618E-4, -0.014958025, -0.0043413434, 0.011319952, -0.034433212, 0.05956161, 0.0022061735, -0.0054469663, -0.0045780214, 0.022707526, -0.0025865482, 0.017081361, -0.02500668, 0.011590441, -0.005910178, -0.01603998, 3.8798223E-4, -5.938072E-4, -0.029537367, -0.021395655, -0.010907457, -0.0024022777, 0.03640778, 0.00225689, 0.018609622, 0.0011884597, 0.010271808, 0.002576405, 0.004321057, 0.021544425, -0.004973611, -0.020557141, 0.015999407, 0.0015020575, 0.00884498, -0.0027877241, 0.010285333, 1.4765936E-5, 0.01900183, -0.0074519636, -0.010657255, 0.022883344, 0.006437631, 0.019326417, -0.007587208, -0.016837921, -0.026548466, 0.02058419, 0.030105392, 0.0015231895, -0.0029145158, -0.00457464, -0.013240422, -0.0037969851, 0.0044596824, -0.03134964, -0.020908777, 0.0029381835, 0.0077021657, 0.024587423, 0.008344577, -0.016702678, 0.013463575, -0.020394849, -0.0026913625, -0.021733766, -0.024912009, -0.012009698, 0.04571259, 0.00789827, 0.009622635, 0.028428363, -0.029185731, 0.045874882, 0.011279379, 0.020083785, -0.027468128, -0.0065694945, 0.004006614, 0.018041596, 6.3099945E-4, -0.013828735, 0.022653429, -0.018271511, -0.009101945, 0.017946925, 0.025953392, -0.01963748, 0.07092214, 0.016378092, -0.006721644, 0.00518324, -0.015214989, 0.016364567, 0.014471145, 0.0055551617, -0.0018798965, -0.0039558974, -0.017784633, -0.011475483, 0.011725686, -0.017094886, 0.00908842, -0.009433294, 0.005484158, 0.020760007, -7.9667376E-4, -0.039572496, -0.008047039, -0.0013947074, 0.010745164, 0.00951444, 0.0020134503, -0.0019255414, 0.02802263, -0.015634246, 0.0017395804, -0.014187132, 0.00747225, -0.026521416, -0.008371625, -0.011522818, 0.018393232, 0.004747077, -0.004226386, 0.0011267544, 0.024871437, 0.010150089, -0.00237861, -0.0049972786, -0.023397272, -0.019231746, 0.014160084, -0.00634296, 0.005504445, -0.030916858, -0.034893043 ], + "id" : "2e463464-fd6f-4077-9f4e-df46dd3ce92a", + "metadata" : { + "source" : "movies.csv" + } + }, + "a0e355b1-a270-4d1c-b8ed-5ccb7d37f037" : { + "text" : ",18239-50619-50620-8966-58595-675-767-32657-411-12444-674-2454-12445-10140-672-222935-673-118-38757-157350-216015\r\n56292,Mission: Impossible - Ghost Protocol,Action-Thriller-Adventure,en,Ethan Hunt and his team are racing against time to track down a dangerous terrorist named Hendricks who has gained access to Russian nuclear launch codes and is planning a strike on the United States. An attempt to stop him ends in an explosion causing severe destruction to the Kremlin and the IMF to be implicated in the bombing forcing the President to disavow them. No longer being aided by the government Ethan and his team chase Hendricks around the globe although they might still be too late to stop a disaster.,60.651,Paramount-Bad Robot-TC Productions-Skydance,12/7/11,145000000,694700000,133,Released,No plan. No backup. No choice.,7.075,9347,Tom Cruise-Paula Patton-Simon Pegg-Jeremy Renner-Michael Nyqvist-Vladimir Mashkov-Samuli Edelmann-Ivan Shvedoff-Anil Kapoor-L��a Seydoux-Josh Holloway-Pavel K���_�_-Miraj Grbiۈ-Ilia Volok-Goran Navojec-Pavel Bezd�_k-Ladislav Beran-Jan Filipensk�_-Ji���_ Kraus-Ales Putik-Tom��� Val�_k-Pavel Cajzl-Randy Hall-Vitaly Kravchenko-Andrej Bestcastnyj-Mike Dopud-Martin Hub-Ivo Nov��k-Anastasiya Novikova-Marek Dobe��-Claudia Va��ekov��-Brian Caspe-Petra Lustigov��-Daniel Clarke-April Stewart-Gina Hirsch-Ghaleb El Saadi-Andreas Wisniewski-Mustafa Alyassri-Michael Rys-Dmitry Chepovetsky-Dawn Chubai-Nicola Anderson-Keith Dallas-Tammy Hui-David Stuart-Sabrina Morris-Michelle Monaghan-Ving Rhames-Tom Wilkinson-Jessica Belkin-Paul Lazenby-Stephen Lobo-Roger Narayan-Ali Olomi-Mih��ly Szabados-Darren Shahlavi-Teddy Newton,assassin-budapest hungary-skyscraper-secret intelligence service-sandstorm-seattle washington-satellite-mumbai (bombay) india-secret agent-car crash-sequel-prison escape-dubai-billionaire-terrorism-disguise-bombing-jet-nuclear threat-moscow russia-field agent-analyst-nuclear submarine-kremlin-disavowed-based on tv series-nuclear launch codes-burj khalifa-scaling a building,/psiWp3VTjznfokmGQG9uqiiknQQ.jpg,/ih4lZkUpmSE7AP3maymiO72xJ1z.jpg,956-955-954-177677-49040-353081-37724-10528-41154-49538-13475-27578-36557-58574-75780-10764-64635-76163-38356-10138-2501\r\n70160,The Hunger Games,Science Fiction-Adventure-Fantasy,en,Every year in the ruins of what was once North America the nation of Panem forces each of its twelve districts to send a teenage boy and girl to compete in the Hunger Games. Part twisted entertainment part government intimidation tactic the Hunger Games are a nationally televised event in which ���Tributes�� must fight with one another until one survivor remains.", + "embedding" : [ -0.016575238, -0.02973347, -0.016961029, -0.045798913, -0.014673839, 0.018752202, -0.007288696, -0.026220016, -0.032516677, -0.0408663, 0.0347212, 0.016864581, -0.003241334, -0.020074915, -0.0024370286, 0.021397628, 0.02130118, -0.03188288, 0.0055181906, -0.016506348, 0.0011573733, -3.1151768E-4, 0.0019031212, 0.001877287, 0.0125313215, 0.0058523132, 0.01182863, -0.024001718, 8.611408E-5, -0.00946566, 0.0031483308, -0.025531104, -0.005717975, -0.016547682, -0.028906776, -0.0063207736, -0.0023405808, -0.038661778, 0.02752895, -0.016616574, 0.017608607, 0.013516466, -0.0077502676, -0.0014355218, -0.0042953705, 0.025103977, -0.0019203441, -0.007784713, -0.00717847, 0.029072115, 0.024966195, 0.022982126, -0.014260492, -0.028052524, -0.019468673, -0.0010686758, -0.014880514, 0.008948975, -0.013034227, 0.0030467163, 0.012972225, -0.020460706, -0.029623244, -0.0036856828, -0.0050221733, -0.008955864, -0.02130118, -0.009038534, -0.011504841, -0.0052116243, 0.01996469, 0.032048218, 0.0060004294, 0.005979762, 0.02752895, -0.025627552, -0.021466518, -0.0048465007, 0.011477285, 0.0011711515, 0.020446928, -0.019537563, -0.003926802, 0.0032258336, 0.011167274, 0.0033722275, 0.0066686748, 0.035327442, -0.0028710435, 0.003375672, 0.02469063, 0.026151124, 0.0076400414, 0.028493427, -0.024966195, 0.020074915, -0.031111296, 0.02594445, -0.0015862214, -0.035520338, -6.256188E-4, 6.2906335E-4, -0.0057524205, -0.0068615703, -0.0084254015, -0.0012262645, 0.0071509136, -0.005766199, 0.012813776, 0.0054699667, -0.0054596327, -0.022072762, 0.028851662, -0.034638528, 0.0018187294, -0.009424325, 0.025710221, -0.016699243, -0.007061355, -0.020598488, -0.0018669533, 0.005921204, 0.017401934, -0.02121851, 0.032792244, 0.012379761, 0.0012951558, -0.02335414, 0.011883743, -0.0056904186, 0.031276636, -0.007901828, 0.018834872, 0.009052312, -0.033012696, 0.0660805, -0.022100318, -1.7308931E-4, -0.028135194, -0.023464365, 0.034583416, 0.0302846, -0.013874701, -0.008700967, -0.032075774, 5.128094E-4, -0.0016843914, -0.0041679214, 0.023395473, 0.013709362, 0.023257691, 0.028135194, 0.0068684593, 0.021976314, -0.001009257, -0.014963183, -0.008707856, -0.011167274, 0.004240257, -0.02278923, 0.0010195908, -0.023698596, -0.013137564, -0.02626135, 0.006406888, 0.029788584, 0.009734336, -0.011780406, -0.003809687, -0.0034721198, 0.010795262, 0.0047224965, -0.032516677, -0.005711086, 0.013736919, 0.028438315, 0.011615068, 0.0125313215, -0.03439052, -0.019193107, 0.007963831, 0.02153541, 0.0370635, 0.039157797, -0.010127016, 0.01427427, 0.019992245, -0.012283313, 0.015293861, -0.020736272, 0.0063931094, 0.0092452075, 0.0020822384, 0.017374378, -0.64768815, -0.021494076, -0.0039819153, -0.013048006, 0.003100107, 0.016423678, 0.009954788, 0.010505918, -0.019909576, 0.0014949405, -0.0228719, 0.014329383, 0.008370289, -0.046350043, -0.018752202, -0.025103977, -0.012448652, -0.015900103, 0.0015560815, 0.011683959, -0.033426043, 0.015996551, 0.010519696, 0.005332184, 0.007867383, 0.01246243, 0.008142947, -0.0057317535, 0.01041636, 0.0019272332, -0.005190957, 0.0154178655, 0.014687618, 0.007791602, 0.04582647, 0.0032757798, -0.0028452093, 0.03527233, 0.026633363, 0.034197625, -0.0115944, 0.005387297, 0.02689515, 0.015596983, -0.003515177, 0.020929167, 0.0088456385, -0.0024731965, 0.0049567265, -0.028300531, -0.004464154, 0.022265658, -5.179762E-4, 0.00662734, 0.0060934327, 0.01001679, 0.001901399, -0.02004736, 0.020626046, -0.0075022588, -0.009479438, 0.030091705, -0.0047672754, -0.004963616, -0.022224322, 0.018159738, -0.0014475777, -0.0070820223, 0.0046226038, -0.025531104, 0.013702473, 0.0109606, -0.011146607, -0.017457047, 0.022968348, 0.006830569, 0.031193966, -0.008452958, 0.0031724428, 0.028135194, -0.015100965, -0.0077089327, -0.009982345, 0.0074264784, 0.025861781, -0.019454893, -0.039323136, 0.0015009685, 0.015445421, 0.004598492, 0.009169428, 0.0088180825, 0.0060899877, 0.006634229, -0.0141640445, -0.010168351, -0.006906349, 0.006103766, 0.037035946, -0.048168775, -0.007075133, -0.0068891267, 0.004019805, 0.0036305697, 0.017663721, 0.009438103, -0.0044985996, 0.0055905264, 0.03888223, 0.004667383, -0.017966842, -0.002194187, -0.010953711, -0.0018204517, 0.0054182983, -0.03461097, 0.020570932, 0.013819588, 0.004739719, -0.0025661997, 0.005018729, -0.0014596337, 0.01814596, -0.013943592, 0.006617006, 0.020543376, 0.004715607, -0.006710009, -0.015431643, 0.011001935, 0.0074127004, 0.021232288, 0.012986003, -0.008563184, 0.019193107, 0.0014355218, 0.009134982, -0.018366411, 0.016299674, 0.006572227, -0.031965546, 9.679223E-4, -0.016134335, -0.010368136, -0.011429061, -0.0027539283, -0.034362964, -0.01569343, 0.0059763175, -0.006396554, -0.0145911705, 0.01901399, 0.01001679, 0.0034962317, -0.0013855756, -0.011732182, -0.010636811, -0.017953064, 0.004157588, -0.015831213, -0.0154592, 0.01868331, -0.0013054895, -0.013048006, 0.009114315, -0.0015827769, -0.010202796, 0.008232506, -0.0064413333, -0.02161808, 0.0145911705, -0.0076951543, -0.015638318, 0.022844344, -0.011635735, 0.018104624, -0.01971668, 0.02311991, -0.0011341225, -0.0040990305, 0.009079869, -0.0055491915, -0.025117755, 6.505919E-4, 0.021576745, 0.0238226, 0.007991387, -0.012641547, -0.0033722275, 0.01569343, -0.0038200207, -0.0096585555, -0.011959524, 0.008542517, 0.0029296011, 0.025999565, 0.0057627545, -0.0019427337, -0.0032241112, 0.02216921, 0.0605692, 0.009141871, 0.0070337984, -0.0157761, 0.0030036592, -0.029099671, 0.004281592, -0.026013343, -0.0074127004, -0.022155432, 0.019826906, -0.012283313, -0.017126368, -3.5156074E-4, -0.0113050565, 0.011532398, -0.030312156, 0.01782906, -0.025489768, 0.0031397194, 0.0058798697, -0.007268029, 0.025117755, 0.011146607, -0.0141916005, -0.00489128, 0.027446281, -0.006933906, 3.842841E-4, -0.026840037, 0.010278577, 0.0049498375, -0.008053389, 0.0013054895, 0.021852309, -0.004353928, 0.019730458, -0.004691495, 0.059522055, -0.0070096864, -0.0068374583, 0.0071991375, 0.031910434, -0.012979114, -4.6975233E-4, -0.021934979, 0.013750697, 0.024552846, -0.020254033, 0.05235736, -0.023064796, 0.03612658, -0.011525509, -0.0058178673, 0.008294509, -0.021246066, -0.0012503765, 0.0141640445, 0.036539927, 0.022224322, 0.0058936477, -0.0222381, 0.01901399, 0.0033153922, 0.010595477, -0.0024559735, -0.012359093, 0.01861442, -0.012875778, -0.026702255, -0.01585877, -0.012310869, -0.009369212, 0.015032074, 0.011373948, -0.0074264784, 0.013054895, 0.014508501, 0.009734336, 0.015996551, -0.012324647, -0.022679005, 0.023588369, 0.020240255, -0.0121179735, -0.02278923, -0.03298514, -0.01744327, -0.043732177, -0.0053941864, -0.020322923, 0.021108285, -0.023175022, 0.0061244336, -0.020240255, -0.011690848, 0.018435303, -0.0023836377, 0.010354357, 0.036539927, -0.006513669, -0.0039646924, -0.0023681372, -0.0042609246, 0.02579289, 0.0029554353, 0.008308287, -0.01065059, 0.01632723, 9.78256E-4, 0.008556295, 0.014288048, -0.033398487, 0.00170592, -0.007309363, -0.014577392, -0.016217005, 0.009258986, 0.01868331, -0.016713021, -0.0036581263, -0.02752895, -0.01751216, -0.0040025827, 0.0855354, 0.02435995, 0.015211192, -3.0207204E-6, 0.0038820228, -0.01001679, -0.0055009676, -0.038165763, -0.009961677, -0.020763827, 0.024676852, 0.0071026897, 0.0026144236, 0.014894292, 0.015762322, 0.0034290627, 0.007075133, -0.010574809, -0.012593323, -0.013840255, -0.018600643, 0.003620236, 0.005866091, 0.024070607, -0.0065412256, -0.016106779, 0.02429106, 0.0062691052, 0.004812055, -0.0010187296, -0.016837025, 0.003534122, 0.010767705, -0.010664368, -0.007343809, -0.014646283, 0.032626905, 0.0046639387, 0.033178035, 0.0030656613, 9.5414405E-4, -0.0062656607, -0.0013666305, -0.0068891267, 0.009617221, -0.018600643, -0.017787725, 0.020488262, 0.021907423, -0.017622385, 0.03921291, -0.007839826, -0.035382554, -0.013826477, 0.004274703, 0.0049567265, -0.016754355, -0.0073644766, -0.040673405, -0.0027866517, 0.012241978, -0.05577437, 0.013826477, 0.013068673, -0.0022785787, -0.014687618, -0.009872118, -0.012607101, 0.007037243, 0.009803227, 0.0013063506, -0.031689983, -0.008246285, -0.006892571, 0.021425184, -0.0026936485, 0.023312805, -0.006241549, 0.006110655, 0.0034393964, -0.032130886, -0.037173726, 0.010698814, -0.030477496, -0.0012460707, 0.011491063, -0.008335843, 0.015831213, -0.008239395, 0.008384067, -0.0012176532, -0.011167274, -0.015596983, -6.1011827E-4, 0.02435995, 0.011780406, 0.0015974162, 0.0052564037, 0.01293778, 0.011346391, 0.007578039, -0.011580622, -0.033977173, -0.008273841, -0.008211839, -0.024098165, 0.0035582338, 0.026729811, -0.02587556, -0.011580622, -0.01814596, -0.022458553, 0.014935627, 0.0024232503, 0.0076331524, 0.00244564, 0.011167274, 0.005301183, -0.0013804088, -0.013178899, -0.009203874, -0.007030354, 0.0053356285, 0.030835731, 5.4768554E-4, 0.017250374, -0.013068673, -0.028603654, 0.002133907, 0.02240344, -0.02539332, 0.018407747, -0.009823894, -7.2120543E-4, -0.025448434, -0.027542729, -0.0027177604, 0.0088249715, 0.008115391, 0.006603228, -0.017236594, 0.0021252956, 0.0015052742, 0.0065033357, -0.019261997, -0.021342514, -0.014728953, -8.047361E-4, -0.007777824, 0.029540574, -0.0077089327, 7.9526356E-4, -0.022031426, -0.0054458547, -0.016092999, -0.029788584, -0.04905058, 0.0032499456, 0.037091058, 0.01798062, 0.03232378, -0.010946822, 0.024731964, 0.008335843, 0.023753708, 0.026137346, 0.0064723343, -5.265876E-4, -0.027832072, 0.018903764, 0.025145313, 0.0035306774, 0.008666521, 0.006592894, -0.0038992458, 0.01742949, 0.01002368, 0.01939978, 0.022306992, -0.020970501, -0.015872547, 0.013048006, -0.030835731, -0.0024353063, -0.03965381, -0.035382554, 0.028658766, -0.017071256, 0.0077227107, -0.00540452, 0.02270656, -0.019303333, 0.0063862205, -0.007268029, 0.0062208814, -0.029099671, -0.007447146, -0.017994398, 0.017842839, 0.0074953698, 0.0011418727, 0.012414206, -0.02619246, -0.03590613, 0.010202796, 0.015652096, -0.02515909, -0.009355434, 0.00599354, -0.0088180825, -0.012882667, -0.02278923, -0.0150045175, -0.025779111, -0.00938299, -0.004553713, 0.0030294934, 0.0012116252, -0.028961888, -0.030505052, 0.028934332, -0.0040749186, 0.02887922, 0.021494076, 0.05318406, 0.022072762, 0.012586434, -0.036787935, 0.00875608, -9.3089323E-4, 0.0080258325, 0.025958229, 0.025338208, -0.017167704, -0.013599136, -7.999998E-4, -0.010120127, -0.012896445, -0.025117755, 0.031689983, 0.010202796, 0.01727793, -0.01861442, -0.006496446, -0.026881373, 0.020612266, 0.006437889, 0.015321418, 0.011415283, -0.038275987, -0.011222388, 0.016837025, 7.961247E-4, 0.01569343, -8.7276625E-4, -0.02444262, 0.014370718, -0.020061137, 0.0052288473, -0.018366411, -0.010664368, 0.02043315, -0.02704671, 0.020378036, 0.00615199, 0.017525937, 0.0011410116, -4.7965543E-4, 0.0065584485, 0.021122063, -0.0036891273, 0.003503121, 0.007922496, 0.004240257, 0.011863076, 0.01687836, -0.01955134, -0.012007748, -0.006620451, -0.022458553, 0.0067547886, 0.017374378, 0.005111732, -0.010340579, -0.02066738, -0.011263722, -0.012014637, -0.016148113, 0.03020193, -0.02555866, -0.0050049503, 4.7491916E-4, 0.002781485, 0.0016852526, 0.004550268, 0.012138641, 0.010368136, 0.019785572, -0.0010600643, -0.01924822, -0.009686112, 0.0037201284, -0.018724646, -0.0038992458, -0.012793108, -0.015707208, 0.010733259, -0.02004736, 0.0032327226, -3.7002144E-5, 0.007240472, -0.011367059, 0.026757367, -0.007240472, 0.014618726, 0.039295577, -0.017691277, -0.0060073184, -0.0028142082, 0.036319476, 9.713668E-4, 0.016396122, 0.016823247, -0.00512551, 0.021590523, -0.030973513, 0.01963401, 0.004371151, -0.023643482, -0.023023462, 0.028603654, 0.017043699, -0.0070406874, -0.010740149, -0.012055972, 0.010499029, -0.0065343366, 0.0068202354, -3.6103328E-4, 0.008404735, 0.02973347, 0.023712374, 0.025985785, 0.015665874, -0.022734119, -0.018986434, -0.007447146, -0.008487404, -0.014839179, 0.014384496, 0.001271905, 0.030091705, 0.009982345, -0.017498381, -0.028906776, -0.010161461, -0.03417007, -0.022058984, -0.0075435936, 0.023175022, 0.04921592, 0.026826259, -0.005466522, 0.023161244, -0.004963616, 6.118406E-4, -0.012317758, 0.0064413333, 0.020915389, 0.0059280936, 0.005945316, 0.02365726, -0.034996763, 0.0044365977, 3.1453167E-4, 0.008921419, -0.008246285, 0.038937345, -0.0018497305, -0.0063138846, -0.0052357363, -0.0076400414, -0.0022699672, -0.008501182, 0.0056387503, -0.032792244, -0.0053769634, 0.011883743, 0.014839179, -0.0029175451, -0.0045881583, 0.011318835, -0.031745095, -9.446715E-4, -0.0235057, -0.035382554, 9.02045E-5, -0.026771147, 0.019992245, -0.0019840684, -0.0063069956, 0.02564133, 0.018035734, -0.017181482, -0.003289558, -0.007605596, -0.012848221, -0.0032378896, 0.0084254015, 0.007881161, 0.020074915, -0.020557154, 0.023643482, -0.016657908, 0.0018290632, -0.008487404, -0.0025179759, -0.009038534, 0.011952635, 0.01632723, -0.044779323, -0.009513884, 0.0062759942, 0.009982345, -0.007288696, -0.0014441331, -0.0048361667, -0.017787725, -0.001786006, 0.0013898812, -0.01522497, -0.02493864, -0.0019203441, -0.010195907, 6.9838524E-4, 0.030422384, 0.1876047, -0.0059832064, 0.015569426, 0.036815494, -0.0026815925, -0.0045468234, 0.022734119, 0.017153926, -0.023436809, 0.0028159304, -0.016313452, 0.012758663, -0.006579116, 0.0044365977, 0.0030914955, -0.0016740578, -0.023726152, -0.009996123, -0.007564261, -0.013571579, -0.017732613, 0.021659413, 0.0015121633, -0.009396769, -0.005742087, 0.0036581263, -0.003937136, 0.015376531, 0.022803009, 0.0023819155, -0.02373993, -0.014398275, 0.0034841758, 0.005063508, -0.014067597, 0.0065033357, -0.002855543, 0.017925508, 0.006513669, 0.002421528, -0.005018729, 0.01293778, 0.00421959, -0.010189018, 0.005876425, 0.009458771, -0.028121416, -0.012138641, -0.028824106, 0.0014639394, -0.05514057, -0.010554142, 0.014136488, 0.016272116, -0.0057455315, -0.004994617, 0.002481808, 0.008370289, -0.020887831, -0.00351001, -0.0017214206, 0.03981915, -0.028204083, 0.014246713, 0.0015879436, 0.04282281, -0.027818292, -0.012868889, 0.034528304, -0.017925508, -0.015073409, -0.00765382, -0.028052524, 0.010189018, -0.014563614, -0.0020994614, 0.016341008, 0.019496229, 0.009004088, 0.024043052, -0.0238226, -0.01395737, 0.0157761, -5.997846E-4, -0.0125175435, -0.014646283, 0.018049512, -0.015114744, -0.024759522, 0.007447146, -0.0010531752, -0.02161808, -0.007051021, 8.99031E-4, -0.010836597, 0.0012400427, 0.039405804, 0.019854464, -0.0046467157, -0.013867812, -0.03044994, 0.044531316, 0.022555001, -0.015955217, -0.013612914, -0.013123786, -0.006086543, -6.703981E-4, 0.012992892, -0.023023462, -0.0076813763, -0.044228192, 0.002145963, -0.0035547893, -0.004471043, 0.01846286, -0.009720557, -0.021342514, 0.024966195, -0.01939978, -0.004322927, -0.026674699, 0.008094723, 0.0012710439, 0.0044297082, -0.01814596, -0.012007748, 0.0129446685, -0.0018325077, -0.030339714, -1.08288456E-4, -0.013860922, 0.011863076, -0.012434874, 9.360601E-4, 0.008742302, 0.042161454, -0.0052805156, -0.0113050565, 0.011856187, 0.0096447775, -0.036567483, 0.024387509, 0.021810975, 0.02075005, -0.022196766, 0.0038406882, 0.004464154, -0.02365726, -0.03265446, -0.011215498, -0.020405592, -0.003572012, 0.003802798, 0.03417007, -0.013316682, -0.02026781, -0.033095364, -0.004440042, 0.028355645, -0.045550905, 0.029761028, 0.008694078, -0.010581698, -0.019537563, 0.003589235, -0.17823549, 0.0054424102, 0.0071578026, -0.03138686, 0.0141778225, 0.01065059, 0.024497734, 0.0016688909, -4.0086106E-4, -0.0046501607, 0.024787078, -0.008742302, -0.040342726, -0.018628199, 0.0016060276, 0.005411409, -0.020364258, 0.04037028, 0.013916036, -0.006933906, 0.035768345, -0.018435303, -0.0032327226, 0.025021307, 0.004636382, -0.0070889113, 0.008411624, -0.0014699674, 0.0034945095, -0.011415283, -0.03998449, -0.004781054, 0.005921204, 0.022541223, -0.017787725, 0.0018066735, -0.010065014, 4.191603E-4, -0.010912376, 0.007894939, 0.03044994, 0.0077502676, 0.0043608174, 0.009555219, 0.012489987, -0.0017102257, 0.011208609, -0.014088264, 0.0034066732, -0.020763827, -0.0029571576, -0.03518966, 0.005463077, -0.008521849, 0.01988202, 0.02689515, -0.0049085026, -0.0014122709, 0.0032998917, -0.006210548, -0.018077068, -0.012634658, 0.0048017213, -0.01948245, -0.009079869, -0.01909666, 0.0027384278, 0.015886325, -0.044310864, 0.0052805156, -0.017553495, 0.0053459625, 0.018917542, -0.0042471467, 0.006231215, -0.0058488683, -0.01742949, 0.012510654, 0.002788374, 0.02746006, -0.016010331, 0.04345661, -0.007791602, 0.011332613, 0.020570932, -0.014136488, 0.014921849, 0.011628846, 0.00575931, -0.023808822, 0.005001506, -0.008156726, -0.018021956, 7.2465E-4, 0.008232506, 0.017222816, -1.4413345E-4, -1.12163594E-4, 0.025517326, -0.030477496, -0.0018083957, -0.020598488, -0.009527662, 0.02697782, 0.026523137, 0.015583204, -0.010623033, 0.01955134, 0.02183853, 9.800859E-5, -0.018903764, -0.008783637, 0.022182988, 0.017732613, -0.01884865, 0.018256186, -0.016024109, -0.02310613, -0.0065653375, 0.010499029, 0.040342726, -0.011442839, -0.010747038, -0.0030673835, 0.00797072, -0.014384496, -0.09154271, -0.004629493, 0.020309145, 0.022927014, -0.011635735, 0.033426043, -0.011573733, 0.015913883, -0.012999782, 0.026688477, -9.997844E-4, -0.017663721, 0.004440042, -0.013537134, 0.01647879, 2.1765335E-4, -0.022927014, -0.024415065, 0.013681806, 0.030973513, -0.009079869, -0.00914876, -0.012751773, -0.020143807, -0.010078792, 0.0027918185, -0.031689983, 0.025172869, 0.016051665, -0.013984927, 0.02035048, -0.018352633, 0.021645635, -0.027832072, -0.015293861, -0.013137564, -0.011084605, -0.03020193, 0.019234441, -0.042960595, -0.0023629705, 0.0034325074, 0.0077502676, -0.01175285, 0.020543376, -0.006358664, -0.019978467, 0.024594182, -0.005456188, -0.03888223, -0.0141916005, -0.022100318, -0.022045204, 0.0060004294, -0.0026833147, 0.02887922, 0.021494076, 0.004553713, -0.0066755638, -0.008074056, 0.009183206, -0.014232935, -0.018545529, 0.0010781484, 0.011380837, 0.011367059, -0.018338855, -0.008074056, 0.025214203, -0.022334548, -0.013819588, 0.024580404, -0.034914095, -0.016148113, -0.029953923, -0.00434015, -0.011373948, -0.0043504834, 0.029540574, -0.0173606, -0.018655755, -0.02737739, 0.0054010754, -0.014102042, -0.0062966617, 0.016575238, 0.029761028, 0.008880084, -9.291709E-4, -0.025172869, 0.008886973, 0.02435995, 0.0014630783, -0.010988157, -0.00891453, 0.04400774, 0.011869965, 0.0010833151, -0.0063621085, 0.008356511, -0.034252737, 7.173303E-4, -0.07985876, 0.024966195, -0.01869709, -0.011249944, -0.004126587, -0.014232935, 0.0048327222, -0.0034703976, 0.011029492, 0.012889556, -0.023161244, 0.013468242, 0.0021666302, -0.0013227123, -0.008563184, 0.0010970935, 0.011945746, -0.0034841758, 0.007991387, 0.014232935, -0.030339714, 0.0104921395, 0.0060899877, 0.00540452, -0.0088525275, 0.022982126, 0.004584714, 0.013840255, -0.015376531, -0.013867812, 0.02435995, -0.010740149, -0.012875778, -0.011194831, -0.0031948325, -0.03607147, -0.015128522, 0.01002368, 0.032930024, 0.028328089, -0.012772441, -0.019689124, -0.016134335, -0.023064796, 0.008659632, 0.018118404, -0.014136488, 0.0056490838, 0.015982773, 8.6975226E-4, 0.032930024, 0.013392462, -0.021342514, -0.018035734, 0.01214553, -0.021011837, 0.04480688, 0.018710868, 0.008266952, -0.006248438, 0.031083738, -0.008790526, 0.01687836, -0.032764684, 0.017663721, 0.008707856, -0.009451882, -0.007743378, 0.005184068, -0.022982126, 0.0031689983, -0.02026781, 0.018807316, 0.017525937, 0.013668027, 0.01269666, 0.012214421, 0.021232288, 0.020694936, 0.005669751, 0.018049512, -0.0070406874, -0.024029274, 0.001033369, -0.0072473614, 0.02018514, 0.0014303549, 0.0088525275, -0.011325724, 0.0066238954, -0.004691495, 0.003308503, 0.010815929, 0.003723573, -0.0049670604, -0.0035306774, -0.010147683, -0.010209685, 0.007274918, 0.031579755, 0.011814852, -0.0051082876, -0.008232506, -0.022761675, -0.020874053, 0.015114744, -0.019537563, -0.03273713, -4.0667376E-4, 0.008804304, 0.02121851, 0.019386003, -0.006293217, 0.019937132, -0.022913234, 0.029981479, -0.007054466, -0.01955134, -0.011429061, 0.048058547, 0.013661138, 0.004477932, 0.017153926, -0.020281589, 0.059522055, 0.013785142, 0.029871253, -0.026054677, -0.0025903117, 7.018298E-4, -0.0016430567, 0.0077709346, -0.014742731, 0.0055009676, -0.004140365, -0.009134982, 0.009252097, 0.03160731, 0.005724864, 0.054837447, 0.01727793, 0.007516037, 0.01939978, -0.010533474, -5.791172E-4, 0.010368136, 0.014108932, -0.025296872, -0.02791474, -0.002752206, 0.0034462856, 0.014660061, -0.0402325, 0.0027229274, -0.0016723354, -0.002977825, 0.02539332, -0.029292567, -0.014839179, 0.01041636, -0.0027108714, 0.026495581, 0.0012564044, -0.0117046265, 0.0112843895, 0.042161454, -0.017939286, -0.010733259, -0.020543376, 0.013061784, -0.018517973, -0.015472978, -0.005979762, 0.023850156, -0.004109364, -0.0043504834, 0.0050807307, 0.030036593, 0.010216575, -0.016713021, -0.0047672754, -0.012152419, -0.025751555, 0.016010331, 0.0034445634, -0.013812698, -0.019069102, -0.024580404 ], + "id" : "a0e355b1-a270-4d1c-b8ed-5ccb7d37f037", + "metadata" : { + "source" : "movies.csv" + } + }, + "3cd53b03-a6aa-46d2-bb90-71f620d59a60" : { + "text" : "Binswanger-Christopher Doohan-Andy Demetrio-Gianna Simone-Rene Rosado-Jacquelynn King-Long Tran-Ningning Deng-Jodi Johnston-Colleen Harris-Jeff Chase-Monisola Akiwowo-Paul K. Daniel-Ser'Darius Blain-Heather Langenkamp-David C. Waite-Melissa Paulo-Cynthia Addai-Robinson-Drew Grey-Douglas Weng-Charlie Haugk-Max Chernov-Marc Primiani-Jesper Inglis-Jacob Rhodes-Kentucky Rhodes-Anthony Wilson-Eric Greitens-Melissa Steinman-Adam McCann-Jon Orvasky-Gerald W. Abrams-James McGrath-Brian T. Delaney-Arlen Escarpeta-Joe Moses-Kevin Michael Richardson-David Sobolov-Matthew Wood-Fred Tatasciore-Kiff VandenHeuvel-Audrey Wasilewski-Bill Hader-Britanni Johnson-Chris Gardner-Julianne Buescher-Joe Hanna-David Acord-Elle Newlands-Candice Renee-Emily Towers-Gina Hirsch-Tom Archdeacon-Jon Lee Brody-Hiram A. Murray-Fernando Chien,spacecraft-friendship-sequel-futuristic-space-alien-mysterious force-space opera-terrorist bombing-new beginning,/7XrRkhMa9lQ71RszzSyVrJVvhyS.jpg,/npDrIM6ZbuD7nUxI7ZzNBxs4IRF.jpg,13475-188927-68721-49521-75612-37724-49538-68726-49051-70981-56292-59967-76170-49026-1930-64635-68724-58574-24428-72190-10528\r\n98,Gladiator,Action-Drama-Adventure,en,In the year 180 the death of emperor Marcus Aurelius throws the Roman Empire into chaos. Maximus is one of the Roman army's most capable and trusted generals and a key advisor to the emperor. As Marcus' devious son Commodus ascends to the throne Maximus is set to be executed. He escapes but is captured by slave traders. Renamed Spaniard and forced to become a gladiator Maximus must battle to the death with other men for the amusement of paying audiences.,55.201,Universal Pictures-Scott Free Productions-Red Wagon Entertainment-Mill Film-C & L-Dawliz-DreamWorks Pictures,5/4/00,103000000,465361176,155,Released,A Hero Will Rise.,8.", + "embedding" : [ 0.0020748572, -0.0363162, -0.013253571, -0.05409158, -0.022410585, 0.036457952, -0.013969406, -0.0073426203, -0.031071475, -0.029016107, 0.030220978, 0.024962073, 0.01465689, 0.005641627, 0.0048230244, 0.01881015, 0.030731276, 0.0020057543, 0.016017685, -0.0059711947, 0.01881015, 0.004273745, -0.004826568, 0.020185119, 0.0047379746, 0.014061543, 0.027003266, -0.011403741, 8.1417325E-4, -0.03467191, 0.016839832, -0.013714257, -0.016683908, -0.020723766, -0.0048194802, 0.014288342, 0.023743028, -0.004798218, 0.01586176, 0.0036287853, 0.016712258, 0.0041213646, 0.0017665522, -0.013076385, -0.015819237, 0.0038059722, 0.014954564, -0.031071475, 4.8770662E-4, 0.015946811, 0.028576683, 0.051114842, -0.01614526, -0.030873025, 0.01353707, -0.009759448, -0.0032620085, 0.006233431, -0.025883446, 0.010326446, 0.027797062, -0.013466195, -0.019008597, 0.013246484, -0.021985335, -0.014167855, -0.012183363, -0.006127119, -0.0050391923, 9.049815E-4, 0.038527492, 0.010227221, 0.013267746, 0.002264447, 0.036344554, -0.022297185, -0.022155436, 0.006524017, -0.022580683, 0.0022201503, 0.015266413, -0.020709591, -0.01356542, 0.006314937, 0.027811237, 0.0037492723, -0.02343118, 0.008171855, -0.025458196, -0.0010418582, 0.0056345398, 0.023969827, 0.013381146, 0.0095609985, 0.01947637, 0.016910706, -0.025599945, 0.010758782, -0.024834499, -0.032800816, -0.005840076, -0.0023796186, -0.028151436, -0.00997916, -0.010723344, 3.6943445E-4, 0.001099444, -0.006715379, 0.033963162, 0.023105156, 0.008143504, 0.012112488, 0.018725099, -0.04913035, -0.0061696437, -0.021460863, 0.0369966, -0.019249571, 0.0011490562, -0.030419426, 0.017520228, 0.014912039, 0.0048336554, -0.024593525, 0.032829165, 0.04175938, -0.0015432969, -0.005379391, -0.0025284553, 0.00997916, 0.026067719, -0.001447616, 0.026081894, 0.013721344, -0.009178275, 0.029937478, -0.021035615, 0.008483703, -0.015705837, -0.0018533737, 0.045700014, 0.0373368, -0.02962563, -8.753027E-4, -0.03702495, 0.00739932, 0.014727766, -0.004773412, 0.017222555, 0.002480615, 0.016726432, 0.018016351, 0.018540826, -0.0015122892, 0.031184873, -0.0036571352, -0.0019543702, 0.008490791, -0.0056628897, -0.019107822, -0.004170977, -0.0086679775, -0.0060597877, -0.012155013, 0.01967482, 0.029880779, 0.0053652157, -0.011176942, -0.004677731, -0.011134418, -0.003134434, 0.02337448, -0.028916882, 0.02996583, -0.013494546, 0.021389987, 0.0064283363, -0.0016106279, -0.034133263, -0.0017107384, -0.0045926813, 0.010843831, 0.038017195, 0.01297716, -0.017917126, 0.010872181, 0.011276167, -0.0076686437, 0.023275256, -0.016740607, -0.011389567, 0.019688996, 0.010588682, -0.0052730786, -0.63413024, -0.016102735, 0.0038130595, 0.0070059653, -0.0026843797, 0.011517141, -0.0046706437, 0.0028172699, -0.025770046, -0.0018046474, -0.031099824, 0.009964985, 0.0055707525, -0.009284588, -0.02107814, -0.002021701, 0.008398653, -0.0032921303, 0.018682575, -0.0054715276, -0.026719766, 3.9246873E-4, 0.006474405, -0.0061235754, 0.01703828, -0.0045891376, 0.005173854, -0.011899864, -0.005708958, 0.016258659, -0.028803483, 0.016754782, 0.015294763, -0.00675436, 0.048364904, -0.018399075, -0.01978822, 0.0493288, 0.013700082, 0.015535737, -0.020426093, -0.00986576, 0.015153013, 8.1727403E-4, -0.019107822, 0.023147682, 0.0099578975, 0.0052376413, 0.0076969936, -0.009596436, 0.002372531, 0.015039614, 0.005351041, -0.011729765, -0.020454442, 0.00490453, 0.031638473, -0.038612545, 0.014699415, -0.0027038702, -0.02928543, 0.02693239, 3.3731933E-4, -0.008483703, 0.0060491567, 0.033963162, -0.023133507, -3.3178224E-4, 0.021460863, -0.042524826, 0.014160767, -0.007307183, -0.008483703, 0.0015432969, 0.01286376, 0.01092888, 0.025444021, 0.014075718, -0.013770957, 0.029257081, 0.0031326623, -0.013189784, -0.0025266835, 0.013104734, 0.02104979, 0.010765869, -0.031099824, -0.005939301, 0.009284588, -0.011588016, 0.008108067, 0.016627207, -0.011899864, 0.001700993, 0.00863254, 0.008582927, -0.016287008, -0.011332867, 0.031043123, -0.050831344, 0.0012491668, -0.015932634, 0.008561665, 0.0029590193, 0.001970317, 0.0074631074, -0.020426093, 0.015110489, 0.04504797, -0.017803729, -0.00810098, 0.0071264524, -0.008767202, 5.2137213E-4, 0.010503632, -0.020893864, 0.02446595, 0.01735013, -0.015223889, -0.027329288, -0.0023902496, 0.001448502, -0.0029253538, -0.017506054, 0.015011264, 0.025543246, 0.0010338848, -0.024480125, -0.010836744, 0.010609944, 0.004355251, -0.018980248, 0.031241573, -0.008129329, 0.006566542, -0.0050994353, 6.0686475E-4, -0.015351463, 0.011857339, -0.0020624541, -0.019263746, 0.0010409723, -0.0043233573, -0.008767202, -0.010205959, -0.009291675, -0.018937724, -0.007739519, -0.019207047, -0.016287008, -0.012225888, 0.010319358, -0.0021510476, 0.0099578975, 0.009376724, -0.0065488233, -0.025940144, -0.017180031, 0.008951476, -0.012417249, 0.0011215924, 0.0023689873, -0.011906952, 0.004613944, 0.027003266, -0.01869675, -0.0034941232, 0.019745694, -0.0055175964, -0.015875936, 0.019944144, -0.0075481567, -0.007264658, 0.018795975, -0.025132174, 0.01720838, -0.01984492, 0.022694083, 0.015989335, 0.0061625564, -0.0031999932, -0.016357884, -0.03172352, -0.015592436, 0.024182452, 0.01311891, 0.027797062, 0.009943722, -0.013636295, -0.0018799518, -0.021645138, -0.009263325, -0.0069102845, -0.0040185964, 0.008008842, 0.025117999, 0.007037859, 0.028760958, 0.0020234731, 0.003042297, 0.04011509, 0.008136417, 0.00969566, -0.01735013, 0.022325534, -0.014316692, 0.009851585, -0.017335955, -0.0046458375, -0.013076385, 0.018200627, -0.011595103, -0.0246644, -0.016471284, 0.02328943, 0.02231136, 9.825007E-4, -0.0029501598, -0.010716257, -0.0029005476, 0.00742767, -0.005333322, 0.016258659, 0.016768957, -0.03940634, 0.03875429, 0.014288342, -0.008838077, 0.0010427443, -0.010071296, -0.0020163856, 0.008235642, 8.1594515E-4, 0.001327129, 0.0091428375, -0.016783131, 0.022935057, -0.0018551456, 0.021149015, -0.015110489, 9.311165E-4, 0.005857795, 0.03937799, 0.0036571352, 0.0035898043, -0.024877025, 0.010205959, 0.022438934, -0.01597516, 0.022212135, -0.025132174, 0.030107578, -0.0019525983, 0.008483703, 0.020199293, -0.013997756, 0.0038095159, 0.008653803, 0.03246062, 0.015067964, 0.018909372, -0.010085472, 0.01294881, 0.013919793, 0.027697837, -0.01981657, -0.0030901374, 0.0069386344, -0.009114488, -0.029257081, -0.015294763, -0.020085894, -0.0065062987, -0.0056876955, -0.0040823836, -0.00860419, 0.006970528, -0.0049009863, 0.019873269, 0.0031805027, -0.011559665, -0.043687172, 0.01720838, 0.021985335, -0.007590682, -0.036032703, -0.030617876, 0.002252044, -0.03946304, 0.0019614578, -0.018909372, 0.028264835, -0.030504476, -0.0011782921, -0.016768957, -9.373181E-4, 0.023133507, -0.02474945, 0.028137261, -0.0026578016, 0.009993334, 0.016740607, -0.0020535947, -0.011233642, 0.021219889, -0.018994423, -0.010262659, -0.0065559107, 0.0024575808, -0.021687662, -0.0022307816, -0.01115568, -0.048166454, -0.0014423004, -0.0049364236, -0.021035615, -0.018512474, 0.0042418516, 7.658899E-4, -0.0066870293, -0.009511386, -0.013189784, -0.024338376, -0.0023760747, 0.07977658, 0.045955162, -7.7519217E-4, 0.013529982, -0.008476616, 0.004968317, -0.0020837164, -0.011878602, 0.0024079683, -0.0101563465, 0.005149048, -0.012211713, 0.0027729732, 0.0032744117, 0.022779133, -0.0070839273, 8.5492624E-4, -0.0026595737, -0.00487618, -0.018937724, -0.019221222, -0.0072717457, 0.0036128385, 0.019490546, 0.009454686, -0.03651465, 0.033396166, 0.009901198, 3.8626717E-4, 0.014004843, -0.015479038, -0.0012110716, 0.015039614, 0.013501633, -0.025047123, -0.009546824, 0.028534159, 0.004773412, 0.022665733, 0.0048442865, -0.008263991, 2.54706E-5, 0.0032017652, -7.083042E-4, 0.0093625495, -0.032545667, -0.04209958, 0.03195032, 0.014912039, -0.025798395, 0.016216135, 2.185419E-6, -0.015734186, -0.02592597, 0.012318025, -0.0033559175, -5.1162683E-4, 0.0043658824, -0.019859094, 0.02242476, -0.0020270168, -0.03161012, 0.0016389777, -0.010829656, -0.0017913583, -0.018980248, -0.022835832, 0.0039760713, -0.026337042, 0.0014095209, 0.003378952, -0.006215712, 0.007140627, 0.005840076, -0.0036022072, -0.001460905, 0.03430336, -0.026733942, 0.016740607, 0.006456686, -0.03878264, -0.028860183, -7.7785E-4, -0.018087227, -0.0035561386, 0.013572508, 0.0028775134, 0.015493212, -0.018710924, 0.019150347, 0.008136417, -0.009851585, -0.023062631, -8.208178E-4, 0.0484783, -0.0035472794, 0.020922216, 0.011226554, 0.007037859, 0.0047521493, 0.0045926813, -0.041192383, -0.035465706, -0.013700082, -0.0065098424, -0.0069102845, 0.0014263536, 0.010638295, -0.016584683, -0.012537736, -0.037280098, -0.02713084, -0.005886145, -0.006219256, -0.0020128419, -0.00702014, 0.026166944, 0.025259748, -0.0035862604, 0.008285254, -0.019377146, -0.013834744, 0.024324201, 0.02727259, -0.009483037, 0.015280588, -0.004043402, -0.017860427, -0.0036819414, 0.01230385, -5.683266E-4, 0.018597525, 0.0035596825, -0.008356129, -0.0026205925, -0.0061838184, 0.0056097335, 0.011403741, 3.0741908E-4, 0.023530405, -0.01479864, -3.6921297E-4, 0.0035862604, 0.006850041, -0.012473949, -0.020794641, -0.0036890288, 0.0023760747, 0.01589011, 0.009199537, -0.013898531, 0.007704081, -0.01092888, -0.0077678687, -0.0011074174, -0.027697837, -0.013168521, -0.008008842, 0.038896043, 0.02589762, 0.03983159, -0.00866089, 0.03736515, 0.012644049, 0.005708958, 0.030873025, -0.029228732, -0.013040947, -0.026053544, 0.006651592, 0.0110706305, 0.018725099, 0.012750361, 0.018143926, 0.014997089, 0.017222555, 0.0014990001, -0.007597769, -0.0022059754, -0.038385745, -0.017789552, 0.0029040913, -0.016854007, -0.018016351, -0.010829656, -0.021404164, 0.05703997, 0.01053907, -0.021149015, -0.0018197083, 0.022991756, -0.019603945, 0.023360305, -0.006889022, 0.023998179, 0.0052057477, -0.0036677665, 0.0063858116, 0.0056912396, -0.001193353, -0.024480125, 0.018115576, 0.0030015442, -0.015833411, -0.011495878, 0.025826745, -0.01746353, -0.024083227, 0.02096474, -0.013856006, -0.022807483, -0.025557421, 0.0018197083, -0.04459437, -0.017633628, -0.0101563465, 0.0011960107, 0.008299429, -0.017449355, -0.033537913, 0.02839241, -0.0010914706, 0.038073897, 0.013402408, 0.035579104, 0.026464617, 7.9025305E-4, -0.012339287, 0.012013264, 0.0025089649, -0.009199537, 0.02696074, 0.02480615, -0.025741696, -0.0055140527, 7.9512567E-4, -0.002654258, -0.038612545, -0.030079229, 0.024012353, 0.02558577, 0.017959652, -0.019603945, -0.0048690927, -0.024224976, 0.013388233, -0.022637384, 3.390912E-4, 0.009242062, -0.054913726, -0.00846244, -0.0012854901, -0.009312937, 7.145057E-4, 0.01160219, -0.040682085, 0.024593525, -0.025061298, 0.02962563, -0.008625452, -0.006764991, 0.019462196, -0.014926215, 0.014337954, 0.007225677, 0.033197716, 0.012636961, -0.0121621005, 0.006956353, 0.033141017, -0.01566331, 0.023218555, 0.013877269, 9.11626E-4, 0.014586016, 0.018625874, -0.014614366, -0.015096313, -0.0064814924, -0.022538159, 0.024947898, -0.00399379, 0.0035260168, 0.0028491635, -0.015734186, -0.0058542513, -6.1218033E-4, 0.007243396, 0.017392654, -0.04204288, 0.0030104034, 0.009610611, 0.014316692, -0.002493018, -0.0013687679, 0.0027056423, -0.0017887006, 0.014557666, -0.004089471, 0.0076757316, -0.012325113, -0.014479704, -0.04484952, -0.007874181, 0.0013395321, -0.0050569107, 0.01858335, -0.018285675, 0.0025851552, 0.008334866, 0.0027623419, -0.0073922323, 0.011127329, -0.017661978, -0.011871514, 0.02208456, -0.011694328, -0.010914706, -0.011191117, 0.02480615, -0.012523562, 0.0036677665, -0.00425957, 0.0059322133, 0.01743518, -0.025089648, 0.023261081, 0.005230554, -0.035040457, -0.004663556, 0.0030476127, 0.02469275, 0.028633384, -0.0010799534, -0.027499389, -0.015634961, -0.009390899, 0.039066143, 0.014104067, 0.010900531, 0.03178022, 0.00648858, 0.023587104, 0.017803729, 0.012374725, -0.020085894, 0.016981581, -0.0023370937, -0.030589527, 0.0020748572, 0.0013156119, 0.011630541, 0.002227238, -0.0057408516, -0.033452865, -0.0035632262, -0.006261781, -0.026578017, -0.0048620054, 0.014224554, 0.030476127, 0.026422093, 5.633986E-5, 0.019405495, 0.0067508165, 0.0061200312, -0.010234308, -0.012381813, 0.010517808, -0.008859339, 0.022722432, 0.0034409673, -0.03203537, -0.006998878, 0.014075718, 0.0053120595, 0.0041993265, 0.010120909, -0.0020323324, -0.016868182, 5.76743E-4, -0.004355251, 0.00203942, -0.013948143, 0.030929724, -0.030702926, 6.506077E-5, 0.013636295, 0.011325779, -0.007335533, -0.010163434, 0.020355217, -0.015252238, -0.00217231, 0.002546174, -0.010184696, 0.009263325, -0.029058632, 0.02830736, 0.012594436, -0.0034888077, 0.017803729, 0.0367131, -0.020553667, -0.009475949, -0.010262659, -0.0029147225, -0.015039614, -0.0046316623, 7.880382E-4, 0.018540826, -0.026705591, 0.023601279, -0.04170268, 0.0056487145, -0.021304939, 0.015082139, -0.005698327, 0.02996583, -0.0028048668, -0.047486056, -0.0033311115, -0.014174943, -0.005138417, -0.0020854885, -0.0043729697, -0.030986425, -0.010865093, -0.0041886955, 0.0108509185, 0.0020411918, -0.038584195, -0.0014626769, -0.013203959, -0.0058932323, 0.027570263, 0.18121247, 0.001608856, 0.0038662155, 0.050491147, 0.0039831586, 0.017449355, 0.03172352, 0.012197538, 0.010234308, 0.016513808, 0.0011942389, 0.010858006, 0.018314026, -0.005840076, 0.018370725, -0.025855094, -0.03265907, -0.013969406, -0.0055636647, -0.022453109, -0.0117439395, 0.0026188206, -0.013799307, -0.023487879, 0.006998878, -0.009610611, -0.0117439395, -0.003951265, 0.017506054, 0.013125997, -0.0107516935, -0.019008597, 0.011864427, -0.00860419, -0.029880779, -0.0065771732, -0.0037173787, 0.010411495, -0.001796674, -0.010872181, 0.001380285, -0.01474194, -0.0025266835, 0.004649381, 0.0052163787, 0.038924392, -0.035777554, 0.009171188, -0.02423915, 0.017817903, -0.052560687, -0.0049754046, 0.014756115, 0.03960479, -0.0034090737, -0.012608611, 0.0056947833, -0.0106524695, -0.008008842, 8.615707E-4, 0.005645171, 0.02962563, -0.025514897, 0.03132662, 0.023558754, 7.933538E-4, -0.033141017, -0.0012651136, 0.016287008, -0.034161612, -0.018923549, -0.032800816, -0.027116666, -0.01045402, -0.007211502, -0.013990669, -6.042069E-4, 6.152811E-4, 0.010099647, 0.009731098, -0.020496966, -0.008830989, 0.017931303, -5.479501E-4, -0.03487036, -0.025188873, 0.016386233, -0.0027056423, -0.0184416, -0.0057869204, -0.017506054, -0.03951974, -0.008391566, 0.0014307833, -0.010050034, -0.009369637, 0.03657135, 0.02547237, -0.00857584, -0.016442934, -0.042978425, 0.035607457, 0.017747028, -0.0072575705, -0.021730186, -0.03206372, 0.0034250205, 0.01488369, 0.027145015, -0.020369392, -0.015067964, -0.020369392, -0.010524895, -0.011878602, -0.012183363, 0.0124597745, 0.012665311, -0.0074631074, 0.04623866, -0.01732178, -0.0018586894, -0.022736607, 0.020000843, 0.0028137262, -0.008391566, -0.043233573, -0.04209958, 8.5658736E-5, -0.008398653, -0.024310026, 0.013055122, -0.027116666, 0.009667311, -0.01614526, -0.009851585, -0.001460019, 0.006034982, 0.004854918, -0.012799973, 0.0028048668, -0.017534403, -0.028973583, 0.012147926, -1.0559225E-4, 0.02976738, -0.018484125, -0.004043402, -0.004957686, -0.016527982, -0.03203537, -0.03424666, -0.003619926, 0.0018214801, 0.021432513, 0.038215645, -0.013218134, -0.02581257, -0.052362237, -0.025032949, 0.019915795, -0.035862606, 0.02231136, 0.008682152, -0.018101402, -0.028434934, 0.0014653347, -0.18427426, 0.024947898, 0.006956353, -0.038442444, 0.0061909063, -0.0012314481, 0.0183849, -0.0015592437, 0.0053971093, -0.019490546, 0.026521318, 0.0040752958, -0.05119989, -0.0077678687, 0.0059960005, 0.008363216, 0.0018409707, 0.033622965, 0.033963162, 0.016159434, 0.031468373, 0.0045501566, -0.018895198, 0.003499439, 0.012048701, -0.016627207, 0.023090981, 0.015507387, 0.0053297784, -0.010234308, -0.039944988, -0.015790885, 0.0070874714, 0.009263325, -0.008349041, 0.0027145015, -0.025883446, -0.012729098, -0.009610611, 2.2292312E-4, 0.0367698, 4.7751836E-4, 0.015011264, 0.0054219156, 0.017250905, 0.024182452, 0.017477704, -0.026407918, 0.010163434, -0.010142172, -0.021134838, -0.02231136, 0.026762292, 0.011354129, 0.01168724, 0.022523984, 0.0017240273, 0.0010967862, 0.009001088, 0.011970739, -0.025798395, -0.01306221, 8.655574E-4, -0.017988002, -0.010772957, -0.022325534, -0.021659313, 0.013898531, -0.02231136, 0.012204626, -0.0034888077, 0.026521318, 0.024409251, 0.004624575, 0.018951898, -0.003795341, -0.023884779, 0.01603186, -0.0036819414, 0.013919793, -0.016216135, 0.022495633, -0.011410829, 0.005223466, -0.008703414, 3.0204808E-5, 0.011999089, -0.009780711, 0.005042736, -0.02457935, -0.013856006, -0.023643805, -0.032800816, -0.00337718, 0.015351463, 0.006598436, -0.015720012, -0.0033169365, 0.013501633, -0.018866848, -0.001286376, 0.008398653, -0.022566509, 0.022949232, 0.009291675, 0.015691662, 2.8637814E-4, 0.021375813, 0.0143450415, -0.009433424, 0.008278167, 0.017222555, -6.662223E-4, 0.016783131, -0.007027228, 0.0056664334, -0.009546824, -0.03195032, 0.0030352096, 0.020539492, 0.04694741, -0.008802639, 0.0018533737, 0.0033098492, 0.0049541425, -0.02463605, -0.08743104, 0.019419672, -0.0016248028, 0.030306026, -0.01715168, 0.04238308, -0.0091428375, 0.011573841, -0.023261081, 0.012636961, -0.0048301117, -0.03220547, 0.007112277, -0.011502966, 0.0096602235, -0.0058613387, -0.013841831, -0.013664644, 0.004660012, 0.02222631, -9.479493E-4, -0.0032939021, 0.0053758468, -0.02584092, 0.0025497177, 0.0045253504, -0.027952986, 0.0033063053, 0.02015677, 0.00980906, 0.010319358, -0.026875691, 0.016995756, -0.01591846, -0.029682329, -0.03464356, -0.017477704, -0.033566263, -0.012573174, -0.040256836, 0.008200204, 0.020596191, -0.0063184807, -0.030731276, -0.016258659, 0.0014378708, -0.02211291, 0.016754782, -0.007590682, -0.03158177, -0.011751028, -0.008207291, -0.041334134, 0.0036500476, 0.013926881, 0.028888533, 0.033367816, 0.006339743, -0.008554578, -0.02222631, -0.012743274, 0.005347497, -0.02612442, 0.0017045368, 0.005804639, 0.0012429652, -0.014869515, -0.021219889, 0.0046033124, -0.02197116, -0.00854749, 0.02713084, -0.02819396, -0.021517564, -0.032914218, 6.0509285E-4, -0.012084139, -0.011077718, 0.024551, -0.027456863, -0.009631873, -0.027584437, 0.020199293, -0.017477704, 0.0089656515, 0.017704504, 0.010744606, 0.01356542, 0.010411495, -0.03937799, -0.008795552, 0.01482699, 0.0032336588, -0.004004421, -0.0013209274, 0.009646049, 0.026946565, 0.006286587, -0.010673732, -0.010432757, -0.016570508, 0.01614526, -0.0734829, 0.02942718, -0.006364549, -8.686582E-4, -0.012006177, -0.0013120681, -0.009022351, -0.0038130595, -0.0056239082, 0.020100068, 0.012091226, 0.019575596, -0.012693661, 1.535988E-4, -0.01283541, 0.0074560195, 0.015124664, 0.0011419688, 0.024139928, -0.0023176032, -0.023530405, 0.015238063, 0.011106067, -0.0078529185, 0.0076615564, 0.0018391988, 0.009816147, 0.0058896886, -0.017732853, -0.013572508, 0.024324201, -0.011148592, -0.012622787, 0.01700993, -0.0043481635, -0.02199951, 0.0052766223, -0.005063998, 0.0069953343, 0.03197867, 0.012105401, -0.00739932, -0.0048903553, -0.01743518, -0.008512053, 0.012764536, -0.00704849, 0.019022772, 0.008193117, 0.0077536935, 0.010687906, 0.011651803, -8.1727403E-4, -0.0049080737, 0.025614122, -0.012927547, 0.03920789, 0.019830745, 0.005294341, -0.014968739, 0.033878114, -0.0020837164, 0.019292098, -0.020326868, 0.027456863, -9.089682E-4, 0.004893899, 0.0025940144, 0.012771623, -0.037280098, -0.016783131, -0.0033895832, 0.020667067, 0.03268742, 0.0069598965, 0.0122755, 0.028789308, -0.012013264, -0.0035455076, 0.0183849, 0.031184873, -0.0070697526, -0.024494302, 0.011304516, 0.00351007, 0.007300095, 7.7430625E-4, 0.027499389, 0.004865549, 0.009029439, -0.008845164, 0.020454442, 0.0079521425, 0.002344181, -0.014224554, 0.013700082, -0.016896531, -0.008781377, 0.020837165, 0.022694083, -0.009256237, -0.0047663245, 0.0012456231, -0.01967482, -0.027867937, 0.010999755, -0.013700082, -0.02211291, 0.009121575, 0.017392654, 0.035607457, 0.026365394, -0.013203959, 0.008823901, -0.03427501, 0.010950143, 0.0044828258, -0.020610366, -0.00496123, 0.047911305, 0.022878356, -0.006148381, 0.022410585, -0.0072044143, 0.037875447, 0.018625874, 0.017250905, -0.023743028, 0.010694994, 0.02351623, 0.0087459395, -0.005602646, -0.027655313, 0.012608611, -0.0037315537, -0.0011747484, 0.0026932391, 0.021248238, -0.022609033, 0.06480784, 0.015762536, -0.008037193, 0.0041603455, -0.024947898, 0.021602612, 0.011906952, 0.02423915, -0.011736852, -2.5537045E-4, -0.008554578, -0.008143504, 0.013969406, -0.019561421, -0.010475283, 0.010191783, 0.0040185964, 0.0115454905, -0.00975236, -0.011928214, 4.0797258E-4, -0.019462196, 0.020227643, 0.015960986, 0.0035331044, 0.0023246906, 0.014004843, -5.6312172E-5, -0.002948388, -0.012155013, -0.006382268, -0.02188611, -0.0038768467, -0.008540403, 0.023530405, -0.002625908, 0.010418583, 0.0074631074, 0.019774044, 0.013211046, -0.029795729, -0.0070130527, -0.016287008, -0.03248897, 0.017789552, -0.01188569, -0.0110706305, -0.025514897, -0.015762536 ], + "id" : "3cd53b03-a6aa-46d2-bb90-71f620d59a60", + "metadata" : { + "source" : "movies.csv" + } + }, + "62dee981-bac7-4d9a-8408-68ed0a5b4463" : { + "text" : "No bachelor party. What could go wrong right? But when the Wolfpack hits the road all bets are off.,69.939,Legendary Pictures-Green Hat Films-BenderSpink,5/23/13,103000000,362000072,100,Released,It all ends.,6.213,7751,Bradley Cooper-Ed Helms-Zach Galifianakis-Justin Bartha-Ken Jeong-John Goodman-Mike Epps-Jeffrey Tambor-Melissa McCarthy-Heather Graham-Sasha Barrese-Jamie Chung-Sondra Currie-Gillian Vigman-Oliver Cooper-Mike Vallely-Grant Holmquist-Harrison Forsyth-Todd Phillips-Betty Murphy-Oscar Torre-Lela Loren-Jim Lau-Jonny Coyne-Silvia Curiel-Roger Schueller-Jenny Ladner-Scott Anthony Leet-Tim Sitarz-Danny Le Boyer-Damion Poitier-Lewis Tan-Tiffany Tynes,las vegas,/vtxuPWkdllLNLVyGjKYa267ntuH.jpg,/o8ZS811VjYbBi4pRYwILLdWCVey.jpg,45243-18785-72105-310-1593-41733-138832-41154-38365-64688-71552-18360-953-195589-214756-109418-2105-810-51540-82992-57214\r\n36643,The World Is Not Enough,Adventure-Action-Thriller,en,Greed revenge world dominance and high-tech terrorism ��� it's all in a day's work for Bond who's on a mission to protect a beautiful oil heiress from a notorious terrorist. In a race against time that culminates in a dramatic submarine showdown Bond works to defuse the international power struggle that has the world's oil supply hanging in the balance.,31.31,Metro-Goldwyn-Mayer-Eon Productions-Danjaq,11/17/99,135000000,361832400,128,Released,As the countdown begins for the new millennium there is still one number you can always count on.,6.3,2502,Pierce Brosnan-Sophie Marceau-Robert Carlyle-Denise Richards-Robbie Coltrane-Judi Dench-Desmond Llewelyn-John Cleese-Samantha Bond-Maria Grazia Cucinotta-Michael Kitchen-Colin Salmon-Goldie-David Calder-Serena Scott Thomas-Ulrich Thomsen-John Seru-Claude-Oliver Rudolph-Patrick Malahide-Omid Djalili-Jeff Nuttall-Diran Meghreblian-John Albasiny-Patrick Romer-Jimmy Roussounis-Justus von Dohn��nyi-Hassani Shapi-Carl McCrystal-Kourosh Asad-Daisy Beaumont-Nina Muschallik-Daz Crawford-Peter Mehtab-Sean Cronin-Paul Heasman-Mark Henson-Derek Lea-Judi Shekoni-Michael G. Wilson,mission-oil-mi6-heiress-bilbao spain-british secret service,/wCb2msgoZPK01WIqry24M4xsM73.jpg,/vnGpNq9LEBblBJihCkMEp5NLRwc.jpg,714-36669-710-708-709-700-699-707-691-253-682-681-698-667-36670-660-668-657-646-658-10764\r\n497984,Monster Hunt 2,Adventure-Comedy-Fantasy,zh,The sequel to Monster Hunt.", + "embedding" : [ 0.006064564, -0.034995962, -0.010500146, -0.0404802, -0.01800025, 0.019235563, 9.960546E-4, -0.012692484, -0.018706143, -0.029403124, 0.020077202, 0.03602765, -8.866074E-4, -0.0063224863, 0.026973227, 0.022778599, 0.017212909, -0.029023029, 0.014131418, -0.009047638, -0.0050566313, -0.012088404, -0.0111245895, 0.008755778, 0.005392609, -0.0052602543, 0.025032023, -5.6887104E-4, -0.019249137, 0.0075815534, 0.021991257, -0.005002332, -0.023918886, -0.006169769, -0.016697066, -0.013744535, 0.0042183846, -0.012957194, 0.04172909, -0.0053892154, 0.0050057257, 0.004330377, -0.0038484698, -0.0017511556, -0.02082382, 0.018326048, 0.014986634, -0.009610994, -0.014389341, 0.025683615, 0.006906205, 0.011267126, -0.02129894, -0.021814784, -0.0028422342, 0.0025571624, 0.006149407, 0.00656344, 0.0068383305, -0.009896065, 0.011647221, -0.029620321, -0.01979213, -0.021448262, -0.025561443, -0.006699188, -0.0140771195, -0.0033835312, -0.013663086, 0.010663045, 0.02135324, -0.0105205085, -8.849105E-4, 8.976369E-4, 0.014742287, -0.03692359, -0.046724632, -0.008640392, 0.0023399647, 0.008966188, 0.028751532, -0.006050989, -0.013018281, 0.0148780355, 0.013262629, 0.013011494, 0.0042658965, 0.009841766, -0.036353447, -0.004995545, 0.010133625, 0.026823903, -0.0069333543, 0.006420904, 0.003105247, 0.021760484, -0.02519492, 0.022249179, 0.0012056163, -0.024149658, 0.015665377, -0.019832855, 0.0051855925, -0.011620072, -0.008314596, -0.010337248, -0.021013867, -0.006339455, 0.030190466, 0.035430357, -0.016194796, 0.003658422, 0.014959484, -0.051883075, -0.02129894, -0.021095317, 0.011620072, -0.008246721, 0.0024841975, -0.020579472, 0.024231106, 0.0072964816, 0.01889619, -0.031167855, 0.030570561, 0.033719927, -0.004629024, -0.007574766, 0.024489028, -0.004557756, 0.026810328, 0.01265176, 0.031982347, 0.016384844, -0.028262837, 0.032416742, -0.0015653499, -0.015217407, -0.034127172, -0.021828359, 0.029837519, 0.03787383, -0.040072955, -0.022466376, -0.006373392, 0.010194712, 0.013344077, -0.0033767438, 0.018258173, -0.013778472, 0.007791964, 0.011776182, 0.036380596, 0.013181179, -0.0016476474, 0.0047410163, -0.028724382, -0.0027285449, 0.0024875912, -0.0021448263, -0.0012370081, 3.6376354E-4, -4.7596818E-4, -0.01399567, 0.0019429004, 0.022412077, 0.006302124, -0.026457382, -8.7727467E-4, 0.0014279045, -0.0056471373, 0.03613625, 5.709921E-4, 0.012556736, -0.00691978, 0.021570437, 0.0076426403, -0.008205997, -0.027312597, -0.023633813, 0.011348574, -0.011368937, 0.028181387, 0.026986802, -0.007880201, 0.02026725, 0.014810161, -0.04056165, 0.0065871957, -0.005026088, 0.002289059, 0.014918759, -4.976031E-4, 0.0023874766, -0.63378257, 0.0035158861, 2.9164716E-4, -9.918124E-4, 0.01981928, 0.01884189, 0.01447079, 0.0057184054, -0.024787676, -6.486233E-4, -0.037276536, 0.013568062, 0.0052704355, -0.021584012, -0.017172186, -0.008036311, 0.0144979395, -0.0135477, -0.0060611703, 0.0016060744, -0.031846598, 0.026932502, 0.013859921, -0.0035090987, 0.013914221, 1.8580575E-4, -0.0041131796, -0.0203487, 0.011816907, -0.017199334, -0.009169811, 0.022860046, -0.008558943, 0.010934541, 0.04235353, -0.00969923, -0.0042319596, 0.02801849, 0.031547952, 0.020647347, -0.027529795, -0.018706143, -8.013403E-4, -0.006017052, -0.017959526, 0.015746826, 0.01942561, -3.047978E-4, -0.017240059, -4.1785085E-4, 9.807829E-4, -0.005273829, 0.0018156362, -0.016968561, -0.019086238, 0.0023043307, 0.015529628, -0.019208413, -0.010249011, -0.003446315, -0.010819155, 0.017294358, 0.005738768, -0.004764772, -0.00790735, 0.009896065, -0.016941413, -0.0016815845, 0.009088362, -0.01805455, -0.0021210702, 0.011375724, -0.01067662, -0.0032240269, 0.020253675, 0.010574808, 0.03800958, 0.027502645, -0.006224069, 0.012658548, 0.0102015, -0.0059661465, -0.010954903, 0.003929919, 0.023240143, -0.01584185, -0.03868832, -0.0022703935, 0.026918927, 0.02037585, 0.012271664, 0.023647388, -0.012773934, 0.0069842604, 0.003408984, 0.0025028628, -0.0012463409, 0.016479868, 0.04151189, -0.067331254, -0.021095317, -0.005793067, 0.034670167, -4.2336562E-4, 0.014565813, -0.0019462941, -0.00533831, -0.0022025194, 0.033692777, -0.014538664, 0.0071064336, 0.0030373726, -0.019181263, 0.015163107, -0.0117150955, -0.032471042, 0.010371185, 0.010160775, 0.014511514, -0.007574766, 0.007201458, -6.159588E-4, 0.002843931, -0.022846472, 0.01998218, 0.0226157, -0.015828274, -0.011755819, -0.0011063502, 0.006522715, 0.0074729547, 0.0029372582, 0.01855682, -0.014158568, -0.007900562, 0.01847537, 0.017199334, 3.4827975E-4, 0.0042217784, -0.0040453053, -0.026810328, -0.00943452, -0.014267167, -0.021013867, -0.0093394965, -0.022154154, -0.015543203, -0.0054808455, -0.0034734646, -0.009210535, 0.012040892, 0.013154029, 0.003385228, 0.005888091, 0.01444364, -0.005650531, -0.019683532, -0.013622361, 0.0047036856, -0.014674412, 0.01107029, 0.02074237, -0.012461712, -0.0102015, 0.035783302, -0.0023060276, -0.011178888, 0.0064616282, 0.0119119305, -0.024231106, 0.014633688, -0.013887071, -0.009624569, 0.004520425, -0.033882827, 0.0089186765, -0.006950323, 0.014226442, -0.006726338, 0.004924277, -0.010927754, 0.010466209, -0.011077077, -0.002962711, 0.029131627, 0.019099813, 0.02754337, 0.0034649803, -0.010920967, -0.0028931398, 0.0014041485, 0.025941538, -0.011199251, 0.010215075, 0.005114325, 0.0066516763, 0.0144979395, 0.004496669, 0.003933313, 0.023321591, 0.04140329, 0.019167688, -0.010445847, -0.015583928, 0.009203748, -0.028860131, 0.0028507183, -0.024176808, 0.0105340835, -0.024570478, 0.022805747, -0.0048564025, -0.020620197, 6.257157E-5, 0.020633772, 0.019520635, -0.017986676, 0.02429898, -0.018203873, -0.0064480538, -0.010690195, -0.010683407, 0.023769561, 0.006302124, -0.01884189, 0.012767146, 0.021108892, 0.0050905687, -0.007201458, -0.005294191, 0.011077077, 0.009997876, 0.011396087, -8.192634E-5, 0.008138122, -0.015651802, 0.025018448, -0.0061561945, 0.030543411, -0.011511473, -0.0021499167, 0.03863402, 0.024013909, 0.0036753905, 0.011212826, -0.018163148, -0.0021753698, 0.0037500523, 0.0019921092, 0.043819614, -0.032416742, 0.014660838, -0.018774018, 0.019140538, 0.02564289, -0.023986759, 0.006434479, 0.013914221, 0.02166546, 0.016113346, 0.013819197, -0.016479868, 0.019493485, -0.008307808, 0.021231065, -0.002122767, -0.02653883, 0.009529544, -0.004330377, -0.0026301271, 0.009875704, -0.024203956, -0.016086197, 0.012258089, 0.023565939, -0.0053315223, 0.011334999, 0.01752513, -0.0054808455, 0.015964024, -0.021108892, -0.02672888, 0.017986676, 0.019615658, -0.015488904, -0.025683615, -0.0055656885, -0.015176682, -0.03431722, -0.011633646, -0.012902895, 0.018298898, -0.032471042, -0.007269332, -0.0049140956, -0.001097866, 0.015896149, -0.024936998, 0.0030645223, 0.013174391, 0.009271623, 0.013900646, -0.008810078, -0.0016009838, 0.008939039, -4.9420935E-4, 0.006770456, -0.002253425, -0.0069129923, 0.008844014, 0.016398419, 0.01196623, -0.051991675, 0.01947991, -0.010065751, -0.00462563, -0.023823861, -0.004567937, -0.002855809, -0.0037568395, -0.019887155, -0.025344245, -0.03171085, -0.0045272126, 0.094209455, 0.029674621, 0.021231065, -0.0053043724, 0.0027590883, 0.008972975, -0.015896149, -0.01626267, -0.007255757, -0.0028184783, 0.025819365, 0.010249011, 0.006936748, 0.024841975, 0.008267083, -0.011083865, 0.0017070373, -0.0087354155, 0.015868999, -0.017905226, -0.005229711, -0.017172186, -6.511686E-4, 0.033747077, -0.0024214138, -0.020945992, 0.0069265673, 0.0031459713, -0.0135477, 0.018122423, -0.008436769, 0.009780679, 0.008884739, 0.013771685, -0.002609765, -0.014036395, 0.025344245, -0.0023026338, 0.03980146, 0.012230939, -0.008647179, 0.009020488, 0.0013557881, -0.0070181973, 0.024434729, -0.028507184, -0.022018407, -6.63895E-4, 0.03695074, -0.018746868, 0.045475747, 0.0141178435, -0.02438043, -0.003977431, 0.0059627527, -0.015882574, 0.013914221, -0.012773934, -0.008939039, 0.014755862, -0.004978576, -0.04246213, 0.031520803, -0.012006954, 0.003587154, -0.031303603, -0.015461754, -0.0095227575, 0.0058745164, 0.012319176, -0.01193908, -0.007635853, -0.017932376, -0.025059173, 0.013371227, -0.004853009, 0.020253675, -0.0056607123, 0.007255757, 0.011952655, -0.017050011, -0.019330585, 0.0019683533, -0.031249303, -0.0037500523, -9.120602E-4, -0.010282949, -0.012197003, -0.007316844, 0.0012556736, 0.0035532168, -0.0019276286, -0.033719927, -0.009427733, 0.020484447, -0.011477536, -4.6066993E-6, 0.03784668, 0.015326005, 0.007024985, 0.0123599, -0.0069299606, -0.013656299, -0.014796586, -0.024502603, -0.012047679, -0.008952613, -0.0022805748, -0.0316837, -0.022805747, -0.024502603, -0.028860131, -0.007764814, -0.0032206331, 0.014620113, 0.005677681, 0.020335125, 0.016873538, 0.0068960236, 0.0033343225, -0.0058507603, -0.007859838, 0.021529712, 0.029783221, -0.0020616802, 0.011477536, 0.01328299, -0.025547868, 0.01626267, 0.013941371, 4.070334E-4, 0.010031814, 0.0049039144, -0.01536673, -0.040968895, -0.013900646, 0.002631824, 0.0042658965, -0.01280787, 0.015950449, -0.012312389, 0.001339668, 0.0103508225, 0.011830482, 0.0052466793, -0.026823903, 0.007506892, -0.026511682, 3.8582267E-4, 0.023918886, -0.010880242, 0.0012200397, -0.04162049, -0.009495608, -0.0050769937, -0.038335375, -0.0404802, -0.005735374, 0.010316886, 0.012617823, 0.033909973, -0.010771643, 0.014905185, 0.017348658, -0.0064276913, 0.022765024, -0.03165655, -0.0074729547, -0.042299233, 0.009780679, 0.022860046, 0.006346242, 0.01085988, 0.00498197, -0.006845118, 0.03792813, 0.008660754, 3.4976448E-4, 0.009169811, -0.014430066, -0.0119119305, -0.010710556, -0.027366897, -0.00969923, -0.03062486, -0.034425817, -0.0013532428, 0.009570269, -0.011172101, -0.017484406, 0.02082382, 0.008898314, 0.019493485, -0.009101937, 0.0060713515, 0.0040792422, -0.015407454, -0.016941413, -1.6682218E-4, -0.0042760777, -0.0020073808, 0.019615658, 0.0010333854, -0.030597711, 0.012034104, 0.023172269, -0.0066177393, -0.004069061, 0.020728795, -0.012142703, 0.015326005, -0.03803673, 0.003327535, -0.019208413, -0.015149532, -0.006702582, -0.02516777, 0.003481949, -0.008681117, -0.030869208, 0.01059517, -0.009828191, 0.057448763, 0.0041369353, 0.054869544, 0.036462046, -0.0056810747, -0.008552155, 0.0029949513, 0.0043575265, 0.010792006, 0.016018322, 0.026715305, -0.014620113, 0.0037330836, -0.03171085, -0.006383573, -0.0409146, -0.043683868, 0.058371853, 0.02894158, 0.032009497, -0.011301062, 0.010975266, -0.016330544, 0.005630169, -0.0042760777, 0.0019089632, 0.012461712, -0.029321676, -0.013289778, -0.0030967626, 0.0013608787, 0.020647347, 0.013724173, -0.030434813, 0.018298898, -0.024000334, 0.012604248, -0.017172186, 0.0027794505, 0.046344537, -0.023728838, 0.008511431, -0.003634666, 0.011083865, -0.003349594, 0.0020141683, 0.016995711, 0.027692694, -0.01402282, 0.025439268, 0.006017052, -0.01939846, 0.017810203, 0.010866667, -0.020932417, -0.029864669, -0.030271916, 0.021000292, 0.01976498, 0.031873748, -0.01309973, -0.002832053, -0.023498066, -0.005307766, -0.006855299, -0.0115318345, 0.005392609, -0.03863402, 0.022289904, -0.0043609203, 0.0038654385, -0.0033733502, 0.0049853637, 0.01626267, 0.0014117843, -0.004119967, -0.014674412, -0.014620113, -0.023348741, 5.72689E-5, -0.048380766, -0.02670173, -0.0064242976, -0.005721799, 0.00152208, -0.007893775, 0.0030492507, -0.004958214, -0.014063545, -0.011457173, 0.010669832, -0.016832814, -0.002373902, 0.009556694, -0.016072622, -0.007886988, -0.0020277433, 0.020416575, 0.0047138664, 0.012108766, 0.007744452, 0.010500146, 0.019126963, -0.013846347, 0.014959484, -0.01265176, -0.006644889, 0.009658505, 0.0061765565, 0.022289904, 0.015013784, -0.014647263, -0.013031856, -0.016683491, 0.0074390178, 0.034127172, -0.009441308, -0.004377889, 0.044009663, 0.046290237, 0.02799134, 0.011749033, -0.013588425, -0.026308058, 6.795909E-4, 0.0025062566, -0.018964065, -0.006831543, -0.0014211171, 0.019276287, -0.008239934, -0.010187925, -0.020104352, -0.008871164, -0.0034632836, -0.023348741, -0.0037602333, 0.02659313, 0.04346667, 0.0032494797, -0.015081658, 0.021068167, 0.011667583, 0.005925422, -0.022425652, -0.0123599, 0.012902895, 0.016371269, 0.029185927, 0.03602765, -0.036706395, 3.1540316E-4, 0.020226525, 0.024258256, 0.005603019, 0.026796753, -0.0037432648, -0.022710724, -0.017497981, -0.008837227, 0.012285239, -0.011063502, 0.008925464, -0.026416657, -0.009387009, 0.002726848, 0.031032106, -0.00438807, -0.004920883, 0.020755945, -0.016330544, -0.0056403503, -0.009889278, -0.027692694, 8.3188375E-4, -0.031195005, 0.0158147, 0.0103508225, 0.007160733, 0.028371437, 0.026375933, -0.014837311, 0.008966188, -0.016452719, -0.0123056015, -0.02166546, 0.0017901832, 0.0065871957, 0.0032935978, -0.012997919, 0.006108682, -0.029728921, -0.0013116698, -0.016371269, 0.016181221, 0.004228566, 0.041376144, 6.647434E-4, -0.049928296, -0.002114283, -0.027502645, 0.012217364, 0.007968437, -0.015203832, -0.027937042, -0.013208329, -0.0013786957, -4.1785085E-4, -0.022493526, -0.03426292, 0.017430106, 4.3821312E-4, -0.01286217, 0.021122467, 0.21024728, -0.0037704145, 0.022819322, 0.056417074, -0.012685697, 0.01839392, 0.017850928, 0.009482033, 0.0060374145, 0.0046358113, -0.0021431295, 0.02211343, -0.010920967, -0.0012480378, 0.0247198, -0.015882574, -0.01850252, -0.013140455, -0.015244557, -0.019968605, -0.011267126, 0.005188986, 0.0028184783, -0.019126963, -0.0063632107, 0.0020107746, -0.015095233, 0.021176765, 0.04143044, 0.02572434, -0.01333729, -0.040235855, -0.001958172, 0.015638227, -0.023674538, 0.0041912347, -0.015570353, 0.008267083, -0.01312688, 0.0058948784, -0.0028710808, -0.0026267334, -0.0037025402, -0.011301062, -0.009773891, 0.0063055176, -0.013493401, 0.0010299918, -0.004876765, 0.008036311, -0.050905686, -0.008267083, 0.011735458, 0.011979805, -0.0034174684, -0.016751364, 0.0070385598, -0.0117015205, -0.016887113, 0.00471726, 0.016004749, 0.028480034, -0.02026725, 0.013805622, 0.0012463409, 0.019602083, -0.016941413, 0.0028388405, 0.017416533, -0.03868832, -0.009712805, -0.034887362, -0.014959484, 0.0037568395, -0.014755862, -0.011918718, -0.005986509, 0.012977556, 0.02530352, 0.012719634, -0.02079667, -0.017620156, 0.016316969, -0.013296565, -0.024163233, -0.010839517, 0.015801124, -0.0043541333, 5.145717E-4, -0.011497898, -0.004998938, -0.027828442, -0.0115046855, 0.01331014, -0.007880201, 0.006369998, 0.014864461, 0.007982012, -0.0135477, -0.007391506, -0.035810452, 0.019751407, 0.011586134, -0.007601916, -0.028317137, -0.035484657, -0.0076630027, 0.018461796, 0.02387816, -0.023823861, -0.007411868, -0.04050735, -0.0050668125, -0.013133667, -0.004405039, 0.021149617, -0.0021533105, -3.9531446E-5, 0.018882615, -0.015882574, -0.008185634, -0.013982095, 0.015013784, -0.0012039195, 0.012190215, -0.027529795, -0.014280742, 0.007778389, 0.004143723, -0.015665377, 0.006515928, -0.030217616, 0.012068042, -0.008708267, -0.004554362, 0.0072829067, 0.017470831, -6.371695E-4, -0.005083781, 0.008647179, 0.010092901, -0.0095227575, 0.01130785, 0.0052229236, 0.013323715, -0.0497111, 0.004968395, 0.0023196025, -0.0018682387, -0.0083281705, -0.022439227, -0.003845076, -0.0051278993, -0.0023060276, 0.02438043, -0.01942561, -0.020945992, -0.051095735, -0.008321383, 0.030543411, -0.031222153, 0.020443724, 0.013187966, -0.022642849, -0.0359462, 3.949433E-4, -0.17408387, 0.013296565, 0.0095363315, -0.022384927, 0.008267083, 0.00898655, 0.021936957, 0.009054425, 7.648579E-4, -0.023470916, 0.004937852, -0.010900605, -0.034154322, -0.010764856, -9.858735E-4, 0.025792215, -0.011918718, 0.022846472, 0.010466209, -0.017769478, 0.021054592, 0.00533831, -0.018964065, 0.004435582, 0.0064242976, 0.0046358113, 0.0148780355, 0.004839434, -0.016316969, 0.0025232253, -0.033448428, -0.009970727, 5.1796535E-4, 0.015081658, 0.0017257028, 0.018488945, -0.010574808, -0.0066041644, 0.0055249636, -0.0037670208, 0.03803673, 0.016398419, 0.017742328, -7.483136E-4, 0.008857589, 0.022534251, 0.030000418, 0.01950706, 0.0070181973, -0.014131418, -0.006006871, -0.036380596, 0.024366856, 1.2609763E-4, 0.014620113, 0.018285323, -0.011796544, -0.013798835, 0.012699272, 0.0041165734, -0.04257073, 0.008755778, -0.007377931, -0.0053009787, -0.023145119, -0.034914512, -7.4237457E-4, 0.014511514, -0.02804564, 0.009325922, -0.021421112, -0.005769311, 0.0020498023, 0.0071946704, 0.007466167, -0.011368937, -0.023701688, 0.017457256, -7.126796E-4, 0.020077202, -0.01312688, 0.05030839, 0.0028999273, 0.0036210911, 0.017375808, -0.008063461, 0.009135874, -0.005589444, 0.023375891, -0.006373392, -0.0027998127, -0.0042183846, -0.01942561, -0.013866709, -0.0015229285, 0.016031897, -0.012054467, 0.018638268, 0.005664106, -0.013018281, -0.008484281, 0.0020582867, -0.020525172, 0.020253675, 0.015801124, 0.026009412, 0.016507016, 0.010167562, 0.008884739, -0.008239934, -0.0081177605, -9.833282E-4, 0.020674497, 0.016072622, -0.008898314, -0.006183344, -0.006621133, -0.033204082, 0.0062613995, 0.0035498233, 0.041376144, 0.0013226994, -0.0027302417, -0.0040045804, -0.019832855, -0.016534166, -0.07884273, -0.014606538, -0.015475329, 0.041294694, -0.02812709, 0.017891651, 0.0044423696, 0.032308143, 1.841089E-4, 0.022493526, 5.790522E-4, -0.016357694, 0.0041912347, -0.01937131, 0.016479868, -0.010547658, -0.010221862, -0.012882533, -0.02474695, 0.038199626, -0.008083823, -0.0102015, -0.002631824, -0.021475412, -0.026389508, 9.2224136E-4, -0.02572434, 0.023362316, -0.0013905737, -0.0047715595, 0.02888728, -0.023294441, 0.017253634, -0.032688238, -0.01939846, -0.021556862, -3.0564622E-4, -0.029973269, 0.00120901, -0.060869627, 0.019330585, 0.005810036, 0.004764772, -0.033014033, -0.002586009, 0.005229711, -0.02723115, 0.026769605, -4.049123E-4, -0.0063360613, -0.008301021, -0.016344119, -0.030787759, -0.01328299, 0.018407496, 0.015516053, 0.0248827, 0.024054633, -0.010792006, -0.0030848845, 0.015950449, -0.002854112, -0.032362442, 0.012821445, -0.005144868, 0.0117150955, -0.014565813, -0.007819113, 0.012190215, -0.030380514, -0.028670082, 0.028208537, -0.024936998, -4.0597285E-4, -0.024149658, 0.008681117, -0.031792298, -3.6736936E-4, 0.029077329, -0.018217448, -0.0050193006, -0.024679076, 0.016859964, -0.0021312514, 0.0018987821, 0.038389675, 0.015203832, 0.025072748, 0.0067500942, -0.02894158, -0.0018750262, 0.02026725, -1.0674286E-4, -0.0055622947, -0.0037432648, 0.008721841, 0.0056980434, -0.0053892154, 0.009875704, 0.014240017, -0.0033954093, 0.007656215, -0.068797335, 0.02751622, -0.012495649, -0.0135001885, -0.013201541, -0.0027794505, 0.0029779826, 0.0037161151, -0.0053756405, 0.015040933, 3.836486E-5, 0.005572476, 0.003268145, -0.0051957737, -0.010792006, 0.01903194, 0.02672888, -0.011294275, -0.003363169, 0.013730961, -0.032823987, -0.004438976, 0.010079326, -0.011620072, -0.004673142, 0.02427183, 0.0087354155, 0.014321466, 8.5903343E-4, -0.010547658, 0.033068333, -0.020986717, 0.01444364, -0.013167604, -0.0050193006, -0.035376057, -0.015706101, 0.007982012, 0.018244598, 0.006162982, -0.009678868, -0.0045916927, -0.0022245785, -0.008531793, -0.01626267, 0.0010240527, -0.025629316, -0.005087175, 0.02211343, 0.0050226944, 0.035430357, 0.006997835, -0.008036311, -0.01947991, -0.0031018532, -0.0075611915, 0.030461963, 0.020470873, -0.0037602333, -0.010058964, 0.028452884, 0.012841808, 0.019221988, -0.01847537, 0.015081658, -3.5188557E-4, 0.013038643, 4.8657352E-4, -0.019126963, -0.027217574, -0.011219613, -0.006288549, 0.033176932, 0.03779238, 0.0020141683, 0.017742328, 0.0025571624, -0.004024943, -0.017511556, 0.013208329, 0.031928048, 9.375131E-4, -0.028425734, 0.0012200397, 0.020701645, 0.017484406, 0.013378015, 0.0031205185, 0.0035090987, 0.0072625447, -0.014063545, 0.008246721, 0.014864461, -0.0025877056, 0.014375766, 0.019968605, -0.002737029, -0.014565813, 0.0016103166, 0.02074237, -0.013459464, 6.0280814E-4, -0.022982221, -0.018855466, -0.016927838, -0.0012285239, -0.011979805, -0.031385053, 0.0070046224, 0.018746868, 0.040425904, -0.0039265254, -0.023728838, 0.016588466, -0.034643017, 0.010065751, -0.006312305, -0.029185927, -0.001375302, 0.040941745, 0.019384885, 0.009692443, 0.021543287, 1.6875765E-5, 0.06141262, 0.009807829, 0.033638477, -0.0068417243, -0.022004832, -0.017253634, -0.00835532, -0.013052218, -0.016656341, 0.015665377, -0.011022778, 0.0024858944, 0.003363169, 0.039367065, -0.017172186, 0.06934033, 0.038471125, 0.0043269834, 0.027326172, -0.012163065, 0.004662961, 0.016941413, 0.010486571, -0.004849615, -0.0036618158, 0.0018784198, -0.0129096825, 0.023267291, -0.033095483, 0.007140371, -0.0028167814, 0.010839517, 0.019710682, -0.013540912, -0.026470957, 0.0058914847, -5.065116E-4, 0.029348824, 0.003600729, -0.0140771195, -0.017511556, 0.02393246, -0.024231106, -0.0076087033, -0.039502814, 0.012129128, -0.020307975, 6.3589687E-4, 4.530606E-4, 0.033828527, 9.1290864E-4, 0.005426546, 0.007893775, 0.015638227, -0.0010927754, -0.0043100147, 4.4160683E-4, -0.021312514, -0.031249303, 5.824459E-4, 0.002679336, -0.026022987, -0.0022279723, -0.024570478 ], + "id" : "62dee981-bac7-4d9a-8408-68ed0a5b4463", + "metadata" : { + "source" : "movies.csv" + } + }, + "c8e37f5c-be29-4090-a17d-9254444657a9" : { + "text" : ",168259-51497-13804-82992-9615-584-9799-384018-283995-166426-293167-339846-263115-335988-703363-385128-324552-297762-315635-271110-282035\r\n68721,Iron Man 3,Action-Adventure-Science Fiction,en,When Tony Stark's world is torn apart by a formidable terrorist called the Mandarin he starts an odyssey of rebuilding and retribution.,52.653,Marvel Studios,4/18/13,200000000,1215577205,130,Released,Unleash the power behind the armor.,6.927,20631,Robert Downey Jr.-Gwyneth Paltrow-Don Cheadle-Guy Pearce-Rebecca Hall-Stephanie Szostak-James Badge Dale-William Sadler-Miguel Ferrer-Jon Favreau-Ben Kingsley-Dale Dickey-Ty Simpkins-Paul Bettany-Wang Xueqi-Shaun Toub-Matthew Sterling Nye-Pat Kiernan-Josh Elliott-Megan Henderson-Thomas Roberts-Bill Maher-Joan Rivers-George Kotsiopoulos-Bronte D'Esposito-Noah Visconti-Ashley Hamilton-Brooke Jayne Taylor-Kim Dean-Glenn Foster-Anthony Reynolds-Kendrick Cross-Tom Clark-Brian Schaeffer-John Eddins-Spencer Garrett-Rockey Dickey Jr.-Drew Michael Hershner-Sarah Burkhardt-Jan Broberg-Andrew Lauer-Nate Bynum-Andrew Lander-Tom Virtue-Roy McCrerey-Serdar Kalsin-Demetrois Hodges-Bobby Tisdale-Yvonne Zima-Stan Lee-Adam Pally-James Rackley-Cullen Moss-Jake Dewitt-Rebecca Mader-Kevin Arnold-Juan C. Bofill-David Anthony Buglione-Adam Lytle-Paul Andrew O'Connor-Phil Ortiz-Gwendalyn Barker-Steve Wilder-Luciana Faulhaber-Kary Musa-Mike Massa-Mark Kubr-Si-Fu Eric Oram-Naomi Parshin-Aurelia Riley-Johanna Yunda-Wesley Thompson-Jenna Ortega-T. C. Anyachonkeya-Chad Kurtz-Cal Johnson-Corey Hawkins-Linden Ashby-Sarah Farooqui-Sala Baker-Kial Butler-Nick Brandon-Dan Brown-Fernando Chien-Ilram Choi-Brycen Counts-Kiante Elam-Dane Farwell-Mark Fichera-Colin Follenweider-Aja Frary-Mark Ginther-Adrian Gonzalez-Dennis Keiffer-Samuel Le-Tara Macken-William Morts-Jade Quon-J. C. Robaina-Markos Rounthwaite-Philip J. Silvera-Brian Simpson-Mark Aaron Wagner-Chris Gethard-Nick W. Nicholson-Bridger Zadina-Mark Ruffalo-Johnny Otto-Vince Offer,california-war on terror-tennessee-malibu-superhero-based on comic-billionaire-aftercreditsstinger-marvel cinematic universe (mcu)-christmas-america,/qhPtAc1TKbMPqNvcdXSOn9Bn7hZ.jpg,/aFTYFqrWp4RS46Twm87l5e0ItYb.jpg,10138-1726-24428-1771-10195-76338-100402-99861-1724-271110-102899-1930-49521-118340-49026-283995-49051-284052-49538-37724-315635", + "embedding" : [ -0.010577434, -0.047149796, -0.009353823, -0.051418837, -0.0042180577, 0.021603525, -0.015662216, -0.013439323, -0.029176315, -0.03678989, 0.04119489, 0.035675045, 0.019169899, 0.008877975, 0.0040243194, 0.009591747, 0.013187803, -0.01938743, 0.010672604, -0.031215666, -0.00537369, -0.0016722678, -0.026171671, 0.010026809, 0.0062132226, -0.0068692137, 0.023017475, -0.018245393, -1.9554402E-4, -0.006274403, 0.020162383, -0.013310164, -0.010665806, -0.016110873, -0.013296569, 0.01231768, 0.010142372, -0.02789832, 0.02777596, -0.024281872, 2.7425023E-4, 0.012501221, -0.008361339, 3.1418752E-4, -0.0063661737, 0.015172771, 0.017538419, -0.0024030353, -0.022990283, 0.030236777, 0.025872566, 0.03654517, -0.014520179, -0.027612813, -0.017252909, -0.017823927, -0.020692615, 0.01970013, 0.013616066, -0.0011590312, 0.017701566, -0.020556659, -0.024404233, 0.0044627795, -0.001991766, -0.019115517, -0.0053804875, -0.021250037, -0.004551152, 0.011855427, 0.040080044, 0.019863278, 0.0014470895, 0.0062574088, 0.005866533, -0.024771316, -0.023778832, -0.004547753, 0.00757279, 0.005788358, 0.01838135, -0.006828427, -0.0040719043, 0.0010154268, 0.020447893, 0.015703002, 0.012922687, 0.021073293, -0.019115517, 0.011746662, 0.011168846, 0.01564862, 0.01190981, 0.015784577, -0.003138901, 0.02583178, -0.029448228, 0.023697259, -0.020135192, -0.026892241, 0.019006751, -0.005835943, 0.0058869263, -0.0116107045, -0.011801044, -0.0017020083, -5.62282E-6, -0.01615166, 0.009870458, 1.5847456E-4, -0.010597827, -0.008680837, 0.015770981, -0.03371727, -0.0048978413, -0.015879747, 0.011583514, -0.017837523, -0.014125904, -0.022867922, 0.017701566, 0.041684333, 0.009544163, -0.02120925, 0.045545503, 0.020882955, -0.009347025, -0.018911581, -0.008035043, -0.0076407683, 0.052017044, 0.0020546461, 0.022024991, 0.003619848, -0.030671839, 0.05228896, -0.03719776, 0.015526258, -0.015567046, -0.032085788, 0.026497968, 0.03529437, 0.0030301358, -0.028034277, -0.037931927, -0.0031558957, 0.012548806, -0.004585141, 0.008565274, 0.009272249, 0.016899422, 0.012045766, 0.015675811, 0.021644311, 0.014792092, -0.002080138, 0.0013017857, -0.023112644, 0.016858635, -0.028850019, 0.020475084, -0.014683327, 0.007525205, -0.016790656, -0.0026817466, 0.025437504, 0.02077419, -0.01938743, -0.007198909, -0.0030403323, -0.0014513381, 0.008925559, -0.0020070611, 0.0057475707, -0.002661353, 0.021114081, 0.01033951, -0.010155967, -0.026185267, -0.010461871, 0.004048112, -4.8562046E-4, 0.03714338, 0.035212792, -0.0045579495, 0.014180287, 0.027204942, -0.023887597, 0.014125904, -0.034397054, 0.0071649197, 0.014601753, 0.012147734, -0.0097480975, -0.6312743, -0.008211787, -0.02595414, -0.0073824506, 0.014737709, 0.01146795, 0.013745226, -0.0033105465, -0.037088998, -0.02171229, -0.014411413, 0.016736275, 0.017742354, -0.024499403, -0.018299775, -0.013167409, -9.45749E-4, -0.009720907, 0.020175979, 0.016178852, -0.037605632, 0.015064006, 0.02271837, 0.004823065, -0.013548088, -0.0063967644, -0.010359903, -0.013745226, -0.0021158266, -0.006376371, -0.010937719, 9.0921065E-4, 0.032575235, 0.0012185122, 0.036110107, 0.0013646657, -0.02300388, 0.037931927, 0.028632488, 0.031025326, -0.024322659, 0.0045273593, 0.014166691, 0.023289388, -0.030481499, 0.024812104, 0.01332376, -0.009313036, 0.002724233, -0.018911581, 0.007443631, 0.016709082, -0.010094787, 0.013602471, -0.0066856723, 0.016831443, 0.0014504883, -0.034206714, 0.027028197, -0.0082933605, -0.021848246, 0.024322659, 0.0124672325, -0.004330222, -0.0012592992, 0.019129112, -0.006729858, -0.009850065, 0.009598545, -0.017130548, 0.013017857, 0.015539855, -0.023996362, 0.003946144, 0.010135574, 0.016817847, 0.032004215, -0.002454019, 0.0012745943, 0.02139959, -0.0057203793, 0.0030080427, 9.134593E-4, 0.008667242, 0.012140936, -0.0072668875, -0.045164827, 0.003261262, 0.02142678, 0.012766337, 0.0041466802, -0.0013332258, 0.007946671, -2.0839617E-4, -0.019088326, -0.001580497, 0.006488535, 0.001806525, 0.016042894, -0.0452464, -0.027082581, -0.018218203, 0.03673551, -0.0044729766, 0.03374446, 0.008932358, -0.009680119, -0.016015703, 0.02394198, -0.011746662, -0.01150194, 0.0116107045, -0.019727321, 0.0027752167, -1.5305754E-4, -0.023370963, 0.0109173255, 0.011535929, 0.0015439587, 0.007987458, -0.0018218202, 0.00873522, 0.0070833457, 0.0020223565, 0.011617503, 0.035430323, 0.016015703, 0.0042078607, 0.009809278, 0.006495333, 0.004935229, 0.01272555, 0.010951315, -0.019944852, 0.016681891, 0.012161329, 0.01768797, -0.013677247, 0.010353105, 1.35107E-4, -0.029339463, -0.0077903206, -0.018680455, -0.008300158, -0.0054586628, -0.01627402, -0.04220097, 3.284205E-4, -0.004833262, -0.0047958735, -0.024907274, 0.013167409, -0.0026647518, 0.007613577, -7.2566903E-4, -0.0029026761, -0.010971708, -0.022242522, 0.019659344, -0.008109819, -0.013024655, 0.01938743, 0.0028160037, -0.015091198, 0.035239983, 0.0041738716, -0.020040022, 0.010421083, 0.0097956825, -0.02784394, 0.020665424, -0.010740582, -0.008001054, 0.009523769, -0.019972043, 0.020937337, -0.013507301, 0.022731965, -0.002809206, -0.016994592, -0.0044423863, 0.010625019, -0.018585285, -0.009170282, 0.025016038, 0.027640004, 0.017157739, -0.008334148, -0.0037014221, 0.014384222, -0.03249366, -0.023670066, -0.009952033, -0.005788358, 0.007613577, 0.02456738, -0.0024387238, 0.0045919386, -0.009761693, 0.002013859, 0.025233569, 0.030046437, 0.0043132273, -0.007450429, 0.004197664, -0.025233569, 0.011331993, -0.016953804, -1.2777808E-4, -0.017769545, 0.027952705, -0.007328068, -0.01878922, -0.0031423, -0.0027480253, 0.02906755, -0.017538419, -8.82869E-4, -0.021889035, -0.008599264, 0.00970731, -0.005669396, 0.013357749, 0.01291589, -0.029121932, -0.0082933605, 0.01307224, -0.004687108, -0.009313036, -0.01888439, 6.5174256E-4, -0.0020716407, 0.0040617073, -0.0039359475, 0.010794965, -0.0018269186, 0.02988329, -0.010896932, 0.04562708, -0.011760257, -0.011760257, 0.008905166, 0.028387766, -0.018150223, -0.012494423, -0.013976352, 0.032684, 0.0120865535, -0.010958113, 0.054355502, -0.02161712, 0.029828906, -0.026090097, -0.004452583, 0.013772417, -0.0030896168, 0.0018082245, 0.0039699366, 0.035892576, 0.024907274, 0.019305855, -0.023398153, 0.033690076, 0.008925559, 0.028034277, 0.001832017, -0.018558094, 0.0044695777, -0.012542008, -0.010468668, -0.002083537, -0.0077087465, 0.011365983, 0.0052649244, -0.013432525, -0.016192447, 9.448993E-4, 2.9166968E-4, 0.008164202, 0.030481499, -0.0020291542, -0.03132443, 0.0023605488, 0.024458617, -0.013527695, -0.0077903206, -0.00983647, -0.0055912207, -0.02674269, -0.0036470394, -0.007484418, 0.032847147, -0.018965963, 0.008164202, -0.020189574, -0.01150194, 0.009170282, -0.011202835, 0.0131606115, 0.040651064, -0.0011947198, 0.011855427, -0.0077155447, -0.0072125047, 0.019849682, -0.0056422045, 0.0226232, -0.0057135816, -0.0059718993, 0.0033819238, 0.003534875, 0.012521615, -0.032384895, 0.01505041, 0.0030114416, -0.017130548, 0.005166356, -0.010121979, -0.0020563456, -0.012147734, -0.0109989, -0.03088937, -0.021467568, 0.016681891, 0.067923985, 0.030970944, 0.013425727, -0.003912155, -0.011896214, 0.0057101827, -0.0062200204, -0.014003543, -0.0018048256, -0.019237878, 0.0077563315, -0.005774762, 0.027082581, 0.014003543, 0.025383122, -0.008089426, 0.002209297, -0.0061656376, -0.012922687, -0.026511563, -0.021562738, -0.011855427, 0.02372445, 0.0373881, 0.0069134, -0.0050236015, 0.0216851, 0.015349515, -0.003986931, 0.01241285, 0.0066040982, 0.0067536505, -0.0051119733, 0.0040515107, -0.0039223516, 0.010475466, 0.017823927, 0.018027863, 0.019564174, 0.0064307535, -0.010781369, -0.0021566136, 0.0016986094, -0.0020376516, 0.0035450717, -0.027816748, 5.2428315E-4, 0.018925177, 0.028197426, -0.03714338, 0.015335919, 0.0045919386, -0.021358803, -0.022663986, 0.014914453, 0.012297287, -0.00666188, -0.012582796, -0.01797348, -0.0034261097, 0.002853392, -0.036898658, 0.0172801, -0.0073824506, -0.01171947, -0.015431089, -0.01137278, -0.013153814, 0.0019747715, 0.018055053, 3.9066316E-4, -0.020733401, -0.0023418546, 0.0041704727, 0.007613577, -0.013840395, 0.01653234, -9.3810144E-4, 0.0046837092, 0.011243622, -0.035076838, -0.035675045, 0.008843985, -0.016573125, -4.970918E-4, 0.009442195, -5.327804E-4, 0.017837523, -0.0041704727, 0.003619848, -0.005315908, -0.00914309, -0.013697641, -0.0016289316, 0.03548471, 0.013507301, 0.007831108, 0.028632488, 0.004833262, -0.005319307, 0.004704103, -0.005693188, -0.012909092, -0.009727704, -0.01171947, -0.013989948, 0.010828953, 0.013174207, -0.017715162, -0.0033853226, -0.01040069, -0.016124468, 0.0108221555, -0.010924123, 0.008973144, 0.001743645, 0.020597445, 0.009884055, -0.016097277, -0.010686199, -0.007022165, -0.006287999, 0.013405334, 0.028850019, 0.0018999954, 0.016994592, -0.030862179, -0.014846475, -0.009788885, 0.025464695, -0.0020087608, 0.012909092, -0.016287617, -0.0033700275, -0.002309565, -0.031786684, 0.0072057066, -0.0030522286, -6.6278904E-4, 2.406859E-4, -0.022079373, 0.014846475, 0.0045613484, 0.009557758, -0.012100149, -0.020339128, 0.019319452, 0.0015957921, 0.012603189, 0.026348414, -0.012739146, 0.012623583, -0.030753413, 0.0043846047, -0.020311935, -0.03537594, -0.02991048, -0.007735938, 0.035919767, 0.021766672, 0.046633158, 6.3474796E-4, 0.04160276, 0.005207143, -0.0011445858, 0.01740246, -0.014846475, -0.002846594, -0.012304084, -3.1694912E-4, 0.028469339, 0.022038586, 0.010604625, 0.0026120688, 0.002676648, 0.00983647, 0.017891906, 0.023506919, 0.012406052, -0.017334484, -0.010958113, 0.007396046, -0.033771653, 0.0018762029, -0.014724114, -0.014289052, 0.029992055, -0.009775289, -0.0030114416, -0.0040515107, 0.029638568, -0.003164393, 0.0024081336, -0.019822491, 0.027232133, -0.034424245, -0.0014691824, -0.028279, -0.008062234, 0.003830581, -0.009911246, 0.01156312, 0.007606779, -0.026321223, -0.0016476257, 0.030780604, -0.030535882, -0.031569153, 0.013085836, -0.007735938, 0.0022925704, -0.038693286, -0.017456844, -0.030862179, -0.019088326, -7.6050794E-4, 8.470742E-6, 0.0082457755, -0.023710854, -0.044049982, 0.028768444, 0.0075184074, 0.044512235, -4.1403074E-4, 0.046415627, 0.010706592, 0.014506583, -0.016573125, 0.004112691, -0.015227154, -0.0046259277, 0.03151477, 0.028659679, -0.022799945, -0.019169899, 0.010101585, -0.009829672, -0.019237878, -0.037904736, 0.018041458, 0.019265069, 0.027082581, -0.033771653, -0.009007134, -0.030318351, 0.0030930156, 0.02466255, -0.0061860313, 0.006291398, -0.021970607, -0.016573125, 0.0029519605, -0.015091198, 0.0034516016, 0.0144522, -0.033690076, 0.020094406, -0.0216851, 0.011869023, -0.024213893, -0.013079038, 0.028741254, -0.015770981, 0.012902294, 0.0014963738, 0.020352723, -3.2693346E-4, -0.0047652833, -0.0027157357, 0.029421037, -0.024186702, 0.017130548, 0.0035178803, -0.008599264, -0.005791757, 0.03717057, -0.019373834, -0.023683663, -0.04731294, -0.009510173, 0.025260761, 0.004078702, -0.010468668, -0.008096224, -0.01941462, -0.02190263, 0.0030573271, -0.0013094333, 0.0038407776, -0.02139959, 0.0017487435, 0.0022126958, -0.012215712, 0.011352387, 0.0040617073, -0.003749007, -0.006729858, 0.02058385, -0.0043778066, -0.0060942606, -3.9448697E-4, -0.020692615, -0.03673551, -0.023330174, -0.008252573, -0.016015703, 0.011631099, -0.026688306, 0.012936283, -0.009911246, 0.003779597, -0.01278673, 2.171059E-4, -0.013214994, 0.0020784386, 0.025151996, -0.018000672, -0.007362057, -7.010269E-5, 0.03151477, -0.011631099, 0.00920427, -0.0032034805, 0.023697259, 0.03374446, -0.008497296, 0.017511226, -0.001891498, -0.009183877, -0.012643976, 0.013650056, 0.031052517, 8.990139E-4, -0.0033326393, -0.03233051, 0.006614295, -0.0059175165, 0.0254511, -0.016709082, 0.005353296, 0.03371727, 0.008021447, 0.043506153, 0.017130548, -0.015689407, -0.024390638, -0.0050507924, -0.012032171, -0.01778314, -0.003664034, 0.022283308, -7.265188E-4, -0.001467483, 8.191393E-4, -0.033418164, -0.01505041, -0.031841066, -0.01876203, -0.009768492, 0.023085453, 0.04326143, 0.0049692187, -7.1122363E-4, 0.02067902, -0.0054280725, -0.014370627, -0.011019293, 0.0055300402, 0.007817512, 0.0025219973, 0.009448993, 0.03254804, -0.032629617, 0.0012550505, -0.0031473984, 0.008300158, 0.0066312896, 0.039672174, -0.01190981, -0.014628944, -0.024907274, -0.0026392601, -0.009863661, -0.008069032, 0.027979895, -0.029529803, -0.009340228, 0.004248648, 0.017443249, -0.0031932837, 0.015295132, -0.0010162765, -0.016083682, -0.025111208, 0.00669247, -0.02928508, 6.381469E-4, -0.034206714, 0.021331612, 0.012494423, -0.021005316, 0.026117288, 0.017932693, -0.0023401552, 0.004551152, -0.0047958735, -0.011420365, 0.0014419911, -0.008714827, 1.6633456E-4, 0.019958448, -0.027517643, 0.011325195, -0.018136628, 0.004489971, -0.01178065, 0.0172801, -0.012739146, 0.01938743, 0.008572072, -0.051065348, -0.003908756, -0.009156686, 0.0015371608, -0.021535546, -0.007817512, -0.025016038, -0.014696923, -0.0023146633, 0.009183877, -0.016613912, -0.021086888, 0.003145699, -0.006376371, 0.002928168, 0.004659917, 0.19403745, -0.01859888, 3.889637E-4, 0.038067885, 0.010448275, 0.02353411, 0.023615684, 0.011066878, -0.007987458, -4.6905072E-4, 5.5763503E-5, 0.0056014173, 0.005285318, -0.003534875, 9.482982E-4, -0.002768419, -0.013092633, -0.008014649, -0.017769545, -0.015675811, -0.002431926, -0.003572263, -0.024241086, -0.02808866, 0.011094069, -0.008103021, -0.0141395, 0.01065221, 0.020910146, 0.0020733401, -0.024553785, 0.0014904257, -0.002501604, 0.020692615, -0.015825363, -0.0012261597, -0.0037727994, 0.016192447, 0.008252573, 0.001401204, -0.013493706, 0.0043778066, -0.01749763, -0.011134856, 0.011359185, 0.01797348, -0.017579205, -0.0032357702, -0.01454737, 0.0042248555, -0.035620663, -0.009530567, 0.023370963, 0.024621764, -0.011549524, -0.0034397054, 0.00245062, 0.0024200298, 2.6469075E-4, 0.008544881, 0.01392197, 0.03211298, -0.03711619, 3.9363722E-4, 0.0021277228, 0.0132081965, -0.025002442, 0.010944517, 0.027803151, -0.036436405, -5.252391E-5, -0.01847652, -0.013344153, 0.014397818, -0.020475084, -0.016165255, 0.0027599216, 0.00920427, 0.01379281, 0.022963092, -0.028605297, -0.019006751, 0.015267941, -0.006454546, -0.02475772, -0.012501221, 0.0036402415, -0.0132557815, -0.008918761, -0.0029587583, -0.020624636, -0.02909474, -0.008415721, 0.013840395, -0.02120925, 0.009156686, 0.02444502, 0.010896932, -0.009877256, -0.017212123, -0.02928508, 0.026212458, 0.033826035, 0.0034804924, -0.021916226, -0.017388865, 0.0050507924, 0.022052182, 0.015852556, -0.013371345, 1.8046131E-4, -0.028850019, 0.0026970417, -0.009999618, 0.006107856, 0.017388865, -0.0086264545, -0.022799945, 0.042364117, -0.015879747, 0.018721242, -0.015567046, 0.013153814, -0.008565274, 0.0074300356, -0.013017857, -0.024880081, 0.0017861315, 0.0019747715, -0.026729094, 0.0119437985, -0.024390638, 0.011794247, -0.010978506, 0.0033479345, 0.019917661, 0.03839418, 0.0015414094, 0.019917661, -0.005071186, 0.007484418, -0.018449329, 0.0017241013, 0.0024846094, 0.0043064295, -0.018897986, 0.006121452, -0.0016450764, -0.0045443536, -0.041929055, -0.011855427, -0.023112644, 0.0085788695, 0.0073484615, 0.037795972, 0.0066788746, -0.019373834, -0.026701903, -0.021263633, 0.04666035, -0.028333383, 0.02475772, 0.029448228, -0.0014283954, -0.038856436, -0.0061452445, -0.17402461, 0.025532674, 0.023792429, -0.031569153, 0.034315478, 0.00732127, 0.026198862, 0.0044355886, 0.020529466, -0.019455409, 0.026362011, 0.0032476664, -0.039699364, 0.0073076743, 0.008123415, 0.011386376, -0.024213893, 0.04785677, 0.02029834, -0.004112691, 0.039944086, -0.009829672, -0.01636919, -0.016450765, -2.772243E-4, 0.010366701, 0.013772417, 0.0063525783, 0.004768682, -0.017674375, -0.030943751, -0.009958831, 0.018014267, 0.0058291447, -0.0027582222, 2.9209454E-4, -0.01957777, -0.009503376, -0.0076203747, -0.0070969416, 0.036708318, 0.009720907, 0.023112644, 0.020080809, 0.006940591, 0.018530903, 0.031351622, -0.0074708224, 0.01687223, -0.024784911, -0.0043472163, -0.040569488, 0.017769545, 7.562593E-4, -0.012242904, 0.024050746, -0.01495524, -0.0015507565, 0.011964193, -0.006029681, -0.032221746, -0.0016510246, 0.01454737, -0.024009958, -0.003789794, -0.028360574, -0.007946671, 0.02070621, -0.036273256, 0.014207479, -0.01876203, 0.0037761983, 0.009075112, -0.0019390829, 0.012270095, -0.009007134, -0.03975375, 0.0029842502, 4.1190643E-4, 0.015390302, -0.016763465, 0.034261096, -0.009408206, 0.014615349, 0.018109437, 0.0055096466, 0.004999809, -0.0052649244, 0.0014921251, -0.013473312, -0.00694399, -0.025111208, -0.050820626, -0.021834651, 0.002375844, 0.003086218, 0.003320743, 3.579486E-4, -0.0053974823, -0.018068649, 0.0045069656, -0.023167027, -0.009550961, 0.029121932, 0.015635025, 0.026185267, -0.007328068, 0.01888439, 0.018843602, -2.457843E-4, -0.016206043, 0.0084837, 0.02808866, 0.0142346695, -0.022079373, 0.01646436, -0.021141272, -0.020080809, -0.01960496, 0.020461489, 0.031052517, 0.003871368, -0.0013281273, -0.006906602, -0.008279765, -0.021277228, -0.088535026, 0.00653612, 0.010876538, 0.030046437, -0.030263968, 0.026973816, -0.011644694, 0.021263633, -0.012344872, 0.04285356, -0.0025389919, -0.022473648, 0.009347025, -0.004496769, 0.010516253, -0.0041466802, -0.012100149, -0.012589593, -8.981642E-4, 0.03515841, -0.0074232374, -0.009754895, 3.4892022E-5, -0.011440759, -0.02686505, 0.005003208, -0.033363782, 0.026416393, 0.0047075017, -7.5328525E-4, 0.0010205252, -0.017320888, 0.018911581, -0.032847147, -0.025464695, -0.031813875, -0.01392197, -0.018258989, 0.008184595, -0.048237447, 0.017212123, 0.010686199, -0.00889157, -0.02667471, 0.0063457806, -0.019536983, -0.03480492, 0.040270384, -0.0012618484, -0.029747333, -0.008558476, -0.008449711, -0.02969295, -0.0036878265, 0.018136628, 0.014914453, 0.0351856, 0.0019526785, -0.018014267, -0.01847652, -5.9905933E-4, -0.020543063, -0.023275793, 0.023058262, 0.02909474, 0.025355931, 0.009822874, -0.015730195, 0.01929226, -0.013582078, -0.01646436, 0.014928049, -0.046796307, -0.020379914, -0.017239314, -0.015376707, -0.019333048, -0.013466515, 0.02504323, -0.028224617, 0.0045137634, -0.028007086, -0.012174926, -0.024023555, 0.010054001, 0.009673322, 0.012582796, 0.014724114, -0.0019407823, -0.047557663, 0.0043404186, 0.03953622, 0.0055300402, 5.795156E-4, -0.009115899, 0.012351669, 0.023275793, 0.014479392, -1.2724701E-4, 0.022759156, -0.015974917, -0.009075112, -0.076298915, 0.028279, -0.012168127, -0.022364883, -8.480301E-4, -0.007987458, 0.0030233378, -0.0058019534, 0.0066346885, 0.010992101, 0.0034634979, 0.008660444, -0.010414286, 0.01348011, -0.0036538371, 0.01929226, 2.0903347E-4, -0.010672604, 0.005856336, 0.006525923, -0.018394945, 0.001769137, 0.0235613, -0.004449184, 0.0020342525, 0.029964864, 7.643318E-4, 0.010849347, -0.020869358, -0.008884773, 0.02353411, 1.0807498E-4, -0.005492652, 9.032625E-4, -0.0144522, -0.030943751, -0.024689743, 0.0043404186, 0.021889035, -0.0018982958, -0.0072261, -0.032004215, -0.0016612213, -0.0061860313, -0.008932358, 0.02787113, -0.017171334, 0.0050949785, 0.0060806647, 0.023194218, 0.027232133, 0.013650056, -0.005033798, -0.026797071, 0.025478292, -0.033581313, 0.055606302, 0.008619657, 4.0447127E-4, -0.013466515, 0.029638568, 0.010108383, 0.02969295, -0.03107971, -0.0041568773, 0.012372063, 0.004789076, -0.01857169, 0.0029162718, -0.019836087, 0.008517689, -0.012718752, 0.015757386, 0.020012831, 0.029121932, 0.011569918, -0.003572263, 0.010958113, 0.0036504383, 0.017524824, 0.033363782, -0.010815358, -0.023466133, 0.013554886, 0.001260149, 0.032384895, -0.009761693, -4.7372424E-4, -0.0026341616, 0.010380296, -0.012745944, 0.011005698, 0.004952224, -0.006362775, 6.636388E-4, 0.011291207, -0.017116953, -0.010285127, 0.005818948, 0.025519079, 0.011005698, -0.007525205, -0.013908374, -0.0075999815, -0.026824264, 0.004214659, -0.012943081, -0.026973816, 0.015539855, 0.016736275, 0.030943751, -0.0020104602, -0.0046837092, -0.0026120688, -0.046442818, 0.019169899, -0.0154038975, -5.5657286E-4, -0.02265039, 0.051418837, 0.012922687, 0.020746997, 0.028007086, -0.016070087, 0.04666035, 0.022242522, 0.0062947967, -0.026321223, 0.014438605, -4.2911342E-4, -7.9789606E-4, 0.0022007995, -0.016206043, 0.004717699, -0.025206378, 0.026185267, -0.0061316486, 0.049025998, -0.016110873, 0.063899666, 0.019088326, 5.0728855E-4, 0.006777443, -0.007396046, 0.007899086, 0.0025559866, 0.011542726, -0.018245393, -0.01747044, -0.011331993, -0.011624301, -0.005234334, -0.029448228, -0.004904639, -0.0020053617, 0.010550243, 0.009754895, -0.009183877, -0.0047550867, -0.009347025, 0.0037524058, 0.02906755, -0.006559912, -0.015635025, -0.013867587, 0.021603525, -0.007314472, -0.010094787, -0.052044235, -0.007858299, -0.024023555, 0.007110537, 0.0060194843, 0.028170235, 0.010251137, -0.009727704, -0.012936283, 0.0194826, 0.014928049, -0.019523386, 0.009469386, -0.020216767, -0.009761693, 0.0039393464, -0.015920533, -0.007783523, -0.020692615, -0.020787785 ], + "id" : "c8e37f5c-be29-4090-a17d-9254444657a9", + "metadata" : { + "source" : "movies.csv" + } + }, + "828c582e-21e1-4714-97d4-11c333cb26f0" : { + "text" : "Repola-Nizwar Karanj-Pat Roach-Moti Makan-Mellan Mitchell-Bhasker Patel-Arjun Pandher-Zia Gelani-Debbie Astell-Maureen Bacchus-Corinne Barton-Carol Beddington-Sharon Boone-Elizabeth Burville-Marisa Campbell-Christine Cartwright-Andrea Chance-Jan Colton-Louise Dalgleish-Lorraine Doyle-Vanessa Fieldwright-Brenda Glassman-Elaine Gough-Sue Hadleigh-Sarah-Jane Hassell-Samantha Hughes-Julie Kirk-Deirdre Laird-Vicki McDonald-Nina McMahon-Julia Marstand-Gaynor Martine-Lisa Mulidore-Dawn Reddall-Rebekkah Sekyi-Clare Smalley-Lee Sprintall-Jenny Turnock-Ruth Welby-Yash Agnihotri-Dickey Beer-Kenneth Coombs-Sidney Ganis-Billy Horrigan-Kathleen Kennedy-Brad Kesten-Alex Klaus-Katie Leigh-Patrick Loh-George Lucas-Tress MacNeille-Frank Marshall-Anthony Powell-Steven Spielberg-Guy Standeven-Ron Taylor,riddle-treasure-wind-elephant-heart-crocodile-bridge-skeleton-treasure hunt-mystery-torture-india-monkey-archaeologist-conveyor belt-child driving car-mine car-rope bridge-splits-adventurer-archeology-1930s,/o45ddOd2UV5nHbxU8WHkVsQNC6j.jpg,/iO73omOyLwUPW22EpaZkJNC72ec.jpg,89-85-217-1892-196-1573-165-1894-1891-329-607-1893-1895-218-562-1572-601-105-954-620-330\r\n105864,The Good Dinosaur,Adventure-Animation-Family,en,An epic journey into the world of dinosaurs where an Apatosaurus named Arlo makes an unlikely human friend.,54.922,Pixar,11/14/15,175000000,332207671,93,Released,Little Arms With Big Attitude,6.742,4897,Frances McDormand-Raymond Ochoa-Jeffrey Wright-Steve Zahn-Sam Elliott-Anna Paquin-John Ratzenberger-A.J. Buckley-Marcus Scribner-Peter Sohn-Maleah Nipay-Padilla-Jack Bright-Ryan Teeple-Jack McGraw-Mandy Freund-Steven Clay Hunter-David Boat-Carrie Paff-Calum Grant,tyrannosaurus rex-friendship-cartoon-friends-alternate history-dinosaur-fear-storm-nature-journey,/8RSkxOO80btfKjyiC5ZiTaCHIT8.jpg,/cF3H9pyUF6dsvqlYUcH0TyBAMTG.jpg,127380-62211-150540-49013-62177-2062-9487-920-863-14160-12-453204-10193-9806-260514-585-159824-269149-862-228161-10681\r\n165,Back to the Future Part II,Adventure-Comedy-Science Fiction,en,Marty and Doc are at it again in this wacky sequel to the 1985 blockbuster as the time-traveling duo head to 2015 to nip some McFly family woes in the bud. But things go awry thanks to bully Biff Tannen and a pesky sports almanac. In a last-ditch attempt to set things straight Marty finds himself bound for 1955 and face to face with his teenage parents -- again.,34.", + "embedding" : [ -0.0017167866, -0.030837117, -0.0145285, -0.03647872, -0.015350093, 0.022799201, -0.007038312, -0.011084656, -0.018499533, -0.020485047, 0.020224877, 0.0276466, 0.028153248, 0.0012418033, 0.0061550997, 0.027701372, 0.019197885, -0.016938506, 0.010543775, -0.017157597, -0.007538114, 0.005001446, -0.0068055275, 0.010495848, 0.016157992, 0.026003413, 0.023401702, -0.008763657, 0.005785383, -0.0042928224, 0.012926394, 0.0077777454, -2.45622E-4, -0.029686887, -0.04017589, -0.01938959, -0.0033856472, -0.00879789, 0.029769046, -0.0053608934, 0.0052890037, 0.0014240942, -0.016842652, 0.0014172476, -0.014117704, 0.0049364036, 0.017226063, 5.8249647E-5, -0.015035149, 0.016500322, 0.027851997, 0.025044888, -0.025633696, -0.028125862, 4.561552E-4, -0.017445154, -0.013884919, 0.00922238, -0.006182486, 0.007921524, 0.011125736, -0.005210268, -0.028208021, 0.0050254096, -0.021785904, -0.010297297, -0.0048234346, -0.013207105, 0.010427383, 0.010509541, 0.022662269, 0.006531663, 0.021197096, -0.0039949953, 0.016199073, -0.040504526, 0.0022730734, -0.004840551, -0.007401182, 0.006672018, 0.006206449, -0.014460034, -0.006226989, 0.0033959171, 0.024223296, 0.008989595, -0.007120471, 0.014405261, -0.043297943, 0.0044366014, 0.0059017753, 0.04732375, -0.008791043, 0.0010586566, -0.0049227104, 0.030426322, -0.020361809, 0.03458906, -0.010468462, -0.038231455, -0.0026427903, -0.011776164, 0.0050699124, -0.010434229, -0.007962604, 0.010057665, 0.0035465425, -0.007120471, 0.013275571, -0.009783802, 0.011954175, 0.004374982, 0.018554304, -0.04253112, -0.00764766, -0.02837234, 0.023949431, -0.021498345, -0.015651343, -0.012002102, 0.03097405, 0.022826588, -0.0021344298, -0.033575762, 0.029413024, 0.028043702, -0.0045872265, 0.003567082, 0.01341935, 0.01037261, -0.0042003933, -0.0070006554, 0.018075041, 0.005247924, -0.014364181, 0.030097684, -0.027249495, -0.014925603, -0.023497555, -0.01840368, 0.025647389, 0.030344162, -0.034479514, -0.027509667, -0.02974166, 0.016705722, 0.0072505567, 0.009283999, 0.01559657, 0.002408294, 0.027810918, 0.0034267267, 0.013727447, 0.011105197, 0.011187356, -0.0014052661, 0.011748778, -0.0020283074, -0.0075175744, -0.008996441, -0.0027831458, 0.0055525983, 0.008037916, -0.013980771, 0.010174057, 0.023757726, 0.015007762, -0.014391568, 0.007818826, 9.011846E-4, -0.019868853, 0.009551017, -0.029111773, -0.0044057914, 0.0048782076, 0.022484258, 0.0067404844, -0.0043373257, -0.034096103, -0.021402493, 0.0030433168, -0.0064768903, 0.029166546, 0.038067136, 0.0018143508, -0.0016389065, 0.02053982, -0.019540217, 0.007866751, -0.011707698, 0.01930743, 0.00841448, 0.0043373257, -0.005467016, -0.64938694, -0.025277672, -0.008462406, -0.026468983, 0.0043647117, 0.024771024, -0.0094893975, -0.018896636, -0.0318778, -0.004672809, -0.03135746, 0.009147067, 0.030481094, -0.016541403, -0.031959962, -0.020553514, 0.0149666825, -0.013398809, 0.030042911, 0.005583408, -0.033767466, 0.024579318, 0.014364181, -0.009434625, 0.0037553639, 0.004107964, -0.006726791, -0.018294133, 0.0040223817, 0.01148176, -0.0189651, 0.0043612886, -0.006001051, 0.004909017, 0.035684515, 0.0060969032, -0.011639232, 0.050883982, 0.021498345, 0.036944292, -0.018636463, -0.007962604, 0.012522444, 0.0084487125, -0.004285976, 0.015240547, 0.007490188, 0.0038786028, 0.012234886, -0.0057922294, -0.0070999316, 0.013542589, -0.007579194, -0.0049706367, -0.0012888737, 0.003351414, 0.014596966, -0.0367252, 0.034671217, -0.010276757, -0.0146791255, 0.029549956, 0.012536137, 0.018937714, -0.01000974, 0.034479514, -0.003209347, 0.0020146142, -2.4369641E-4, -0.03771111, 0.009174453, 0.02586648, -0.015747195, -0.0053848564, -0.0054738624, 0.01378222, 0.012077414, 0.012132187, -0.008674651, 0.024305455, 0.010680707, 0.0027677407, -0.0021515463, 0.02338801, 0.030015524, -0.002084792, -0.024565626, 0.01559657, 0.016596176, 0.008729423, 0.015829355, 0.014501113, -0.0048816307, 0.0031134945, -0.006665172, -0.006001051, -0.017965497, -0.0024391038, 0.017130211, -0.064686745, 0.008517179, -0.012111648, 0.029495183, -0.0044160616, 0.013193412, 0.0033497023, -0.0067165215, -0.0041901236, 0.00807215, -0.016623562, -0.027194723, -0.011919943, -0.011242129, 0.0019187616, 0.0016620138, -0.03097405, 0.0044400245, -0.004891901, 0.0026753116, 0.0033531256, 0.014692819, -0.0018605654, 0.006004474, -0.016075833, 0.01763686, 0.0137548335, -1.8860263E-4, -0.01973192, 0.0053472, -0.006747331, -0.0023124416, 0.004727582, 0.016322311, -0.009277152, 8.772215E-4, 0.018266747, 0.013836993, -0.012618297, 0.022511644, -0.0011664906, -0.016555095, -0.005021986, -0.006524816, -0.023018293, -0.005415666, -0.019581296, -0.016199073, -0.0023466744, -0.017075438, -0.0083939405, -0.022210393, 0.0044400245, 0.0063296882, 0.012508751, 0.0043236325, 0.017143903, -0.03245292, -0.020594593, 0.005412243, -0.012700456, 0.023292156, -4.8641664E-6, 0.008873203, -0.039518613, 0.020334423, -0.0060832105, -0.015418558, 0.01482975, -0.008722577, -0.020033171, 0.0054088193, -0.0183626, -0.015747195, 0.014816057, -0.016089527, 0.017321916, -0.011830937, 0.013042786, 0.00691165, -0.009879653, -0.016965892, 4.088708E-4, -0.0038854494, -0.006826067, 0.016034754, 0.024100056, 0.015884127, -4.776578E-5, -0.016322311, 0.021292947, -0.0034147452, 0.011584459, -0.009619483, -0.023716647, -0.003789597, 0.0049809064, -0.0036697814, 0.011721391, 0.01743146, 0.009167607, 0.030508481, 0.02096431, 0.018513225, -0.009838575, 0.020498741, -0.033685304, 0.002408294, -0.04414692, 0.015309013, -3.4126057E-4, 0.012584063, -0.009982353, -0.020074252, -0.009770108, 0.0073053297, 0.020485047, -0.003882026, 0.0076613533, -0.017362995, 0.017116517, 0.009283999, 0.0018588537, 0.028125862, 0.018636463, -0.027728759, 0.01146122, 0.0026753116, -0.0062338356, 0.0029115195, -0.0144463405, 0.0057888064, 0.014473727, -0.005371163, 0.0027283728, 0.0021515463, -0.016774187, 0.021566812, -0.0033240276, 0.033466216, -0.008599338, -0.003277813, 0.013268724, 0.029960752, 0.0020710987, 0.008366554, -0.008222775, 0.010379456, 0.02019749, -0.011810397, 0.031713482, -0.01529532, 0.02215562, -0.014733898, 0.015528104, -0.002363791, -0.01576089, 0.006545356, 0.014131397, 0.029166546, 0.0155417975, 0.002634232, -0.034315195, 0.027468586, 0.013939692, 0.023552328, -0.015555491, -0.015226854, -0.013919151, 0.004299669, -0.01610322, -0.02027965, -0.0101809045, 6.5984175E-4, -0.010892952, -0.0042140866, -0.0063331113, -0.00611402, 0.019868853, 0.004330479, 0.023826191, 0.0070656985, -0.024593012, 0.023196304, 0.023634488, -0.014816057, -0.019416977, -0.013056479, -0.0065590492, -0.031412233, -0.019375898, -0.011515993, 0.035218947, -0.010728633, 0.014049238, -0.014172477, -0.0035636588, 0.02074522, -0.010283603, 0.028947454, 0.008681498, -0.0077572055, 0.028920067, -7.3601026E-5, 0.0070793917, 0.029495183, -0.004525607, 0.011399601, 8.528305E-4, -0.014501113, -0.0021446997, 0.0062132957, -0.0026034224, -0.016240152, 0.012816848, -0.030864503, -0.009016981, 3.2885108E-4, -0.0040121116, -0.0032658314, -0.01186517, -0.028728362, -0.021977609, -0.0449959, -3.6137248E-4, 0.07449108, 0.044201694, 0.0042928224, 0.008366554, 5.789662E-4, 0.01222804, -0.022333631, -0.02671546, -0.010221984, -0.021991301, 0.008832123, 0.006983539, 0.026551142, 0.0083939405, 0.010536928, -0.0051828814, -0.00230046, -0.005354047, 0.0014086894, -0.012104801, -0.022196699, -0.009934426, 0.017157597, 0.032315984, 0.014323101, -0.015897822, 0.015610264, 0.01482975, 0.0012811713, 0.011488606, -0.011125736, 0.016472936, 0.019992093, 0.016322311, 0.0020608287, -0.0061242897, 0.020786298, 0.0074970345, 0.020443968, 0.014377874, 0.0022662268, 0.020211184, 2.4840346E-4, -0.01000974, 0.021375107, -0.008380247, -0.005593678, 0.012371819, 0.014596966, -0.013248185, 0.017445154, 0.017992882, -0.01031099, -0.0031425925, 0.023004599, -0.0041456204, -0.002510993, -0.009783802, -0.022196699, 0.013405656, -0.005912045, -0.03486292, 0.022374712, -0.009783802, -0.006250952, -0.012515597, -0.018800782, -0.009249766, -0.009722182, 0.026879778, 0.0028909799, -0.03319235, -0.020895844, 0.0018605654, 0.011509147, 0.012864774, 0.02258011, -0.017732712, 0.016883733, 0.040203277, -0.009913887, -0.023073066, 0.011269515, -0.028564043, -0.003892296, 7.8265276E-4, -0.018348906, 0.025017502, -0.0034917695, 0.0068774167, 0.01303594, -0.0059599713, -0.006223566, -0.016692027, 0.028344953, 0.019266352, 0.0066857114, 0.028646203, -0.00803107, 0.004169584, 0.0042003933, -0.022018688, -0.01823936, -0.017116517, -0.01951283, -0.0059839343, -0.010441075, 0.004005265, -0.009900194, -0.032179054, -0.013398809, -0.014980376, 0.011721391, 0.005145225, -0.004340749, -0.004296246, 0.023470169, 0.005573138, -0.016760495, 0.0050493726, 0.028125862, -0.01904726, 0.0100645125, 0.031631324, 0.0014720205, 0.01146122, -0.00461119, -0.031795643, 0.006565896, 0.02471625, -0.0034678064, 0.012139034, -0.020183798, -8.9262635E-4, -0.012392359, -0.0056107943, 0.009037521, 0.015240547, -0.006644632, 0.009626329, -0.015925208, 0.009503091, 0.028098475, -0.007873598, -0.008914283, -0.027728759, -6.2304124E-4, -0.007996837, 5.3703075E-4, 0.021512039, -0.020978004, 0.009016981, -0.021046469, -0.012453978, -0.0018075042, -0.016979584, -0.009729029, -0.0066959816, 0.026866086, 0.012789462, 0.041517824, -0.013001706, 0.025469378, -0.0064768903, 0.016993279, 0.018170895, -0.022456871, -0.008407633, -0.048172727, -0.010304144, 0.01636339, 0.014747592, 0.019526523, -0.004535877, -0.002973139, 0.015665036, 0.0016748512, 0.013159178, -0.0010483867, -0.029303478, -0.032370757, 0.007387489, -0.020608287, 0.0051931515, -0.023661874, -3.2371614E-4, 0.044804197, -1.8100717E-4, -0.0068876864, -0.0074833413, 0.035328493, -0.009386698, 0.030782344, -0.034972467, 0.009359311, -0.050035004, -0.0015310724, -0.029193932, -0.012111648, -0.003149439, -0.011796704, 0.025510456, -0.007332716, -0.0090854475, -0.0062167193, 0.0039059892, -0.00877735, -0.032644622, 0.027290575, -4.535877E-4, -0.013124946, -0.025578924, -0.009708488, -0.035218947, 7.0648425E-4, 7.7666197E-4, -0.0087362705, 0.008770503, -0.0071067777, -0.034068715, 0.009509937, -0.0072710966, 0.040312823, 0.019321125, 0.045954425, 0.015706116, 0.011002498, -0.03625963, 0.0044845277, -0.009633176, 0.0053300834, 0.03562974, 0.0181572, 0.006004474, -0.027728759, -0.004693349, -0.0032179053, -0.032781553, -0.03809452, 0.023538634, 0.0085034855, 0.02215562, -0.01763686, 0.006672018, -0.02586648, 0.015144695, 3.9688926E-4, -0.006565896, 0.017239757, -0.030152457, -0.019252658, -0.015569184, -0.004296246, 0.019266352, 0.010126132, -0.027632905, 0.016842652, -0.0046283063, 0.011748778, -0.010701247, -0.0016354832, 0.02399051, -0.033329282, 0.025414605, 0.0011314017, 0.009414084, -0.00531639, -0.00845556, 0.006319418, 0.033740077, -0.022717042, 0.014665432, -0.02445608, 0.0115639195, 0.014062931, 0.0068294904, -0.014049238, -0.01152284, -0.030234616, -0.005460169, 0.033247124, 0.010030279, -0.015459638, -0.006733638, -0.016089527, 0.0116186915, 0.011201049, 0.01148176, -2.9804136E-4, -0.039902024, 0.0022919017, 0.008510333, 0.014624353, -0.016541403, -0.0033154695, 0.0017612897, -0.013090712, 0.01759578, -0.02066306, 0.01111889, -0.027044097, -0.006240682, -0.031932574, -0.014994069, -0.0043510185, -0.0053061205, 0.009571556, -0.010030279, -0.0033685307, -0.009934426, 5.117839E-4, 0.0012991437, -0.0035020395, -0.02001948, 0.007524421, 0.02296352, -0.012412898, -0.010865565, -0.014706512, 0.025839094, 0.03012507, -0.0029474644, -1.7437452E-4, 0.0023483862, 0.046200905, -0.024949035, 0.0021412764, 0.0046967724, -0.027783532, -0.0050733355, 0.011029883, 0.023853578, 0.008674651, -0.007538114, -0.0433801, -0.009989199, -0.0052924273, 0.024593012, -0.003642395, -0.001616655, 0.05282842, 0.02837234, 0.02620881, 0.010810792, -0.010345223, -0.04023066, 0.0090238275, -0.010776559, -0.013159178, -0.002815667, 0.008784196, 0.014583273, 0.012988013, -0.014001311, -0.032754168, 0.0025435144, 0.0017920993, -0.02552415, -0.005970241, 0.019416977, 0.04362658, 0.008147462, 0.010399996, 0.020471355, -0.01026991, 0.017458847, -0.018910328, -0.0138712255, 0.012406052, -0.005063066, 0.015870435, 0.03258985, -0.033411443, -0.015569184, 0.022224085, 0.007538114, 0.011290055, 0.02560631, -0.027619213, -2.1088084E-5, -0.0181572, -0.0030416052, 0.0041011176, 0.0028139555, 0.041134413, -0.0067849876, -0.014610659, -5.7768245E-4, 0.009818034, 0.0079899905, 0.0012495058, 0.0032897945, -0.0074422616, 0.016048446, -0.0030655682, -0.024387613, -0.009989199, -0.034287807, 0.032315984, -9.764973E-4, 0.013302958, 0.031001436, 0.031467006, -0.0030450283, 0.008339168, -0.013227644, 0.0136384405, -0.02053982, -0.0032675432, -0.0017903877, 0.032754168, -0.024483467, 0.014514807, -0.027605519, -0.0014223825, -0.0016277808, -0.0014634622, -0.01367952, 0.033904396, 0.0073053297, -0.047351133, -0.0037587872, 8.30579E-4, -0.002064252, -0.0014343641, -0.008811583, -0.02633205, -0.0013556281, -0.0052616172, -4.7113214E-4, -0.021457266, -0.033767466, 0.017143903, -0.010954571, -0.02001948, 0.0069801155, 0.17834042, -0.020772606, 0.014857137, 0.0421751, 0.01071494, 0.021183401, 0.017705325, 0.010358917, -0.014651739, 0.024551932, 3.4275826E-4, 0.021525731, 0.0034078986, 0.006576166, 0.021279255, -3.2601616E-5, -0.029221319, -0.017267143, -0.025072275, -0.022717042, -0.0058161924, 0.006360498, -0.01222804, -0.0070006554, 0.003912836, 0.0068774167, -0.013309804, -0.0027403545, -7.37294E-4, 0.009900194, -0.017541006, -0.011659771, -0.004614613, -9.773532E-4, -0.013857532, -0.008154308, 0.0016731395, 0.011365367, 0.012392359, -0.0036697814, 0.0112763615, -0.0071820905, 0.0010201444, -0.0062132957, -0.0033736655, 0.0095989425, -0.012679916, -0.003577352, -0.02913916, 3.4361408E-4, -0.047898863, 0.004220933, 0.012782615, 0.015281627, -0.017609473, -0.02284028, 0.011536533, -0.0051794583, -0.009345618, 0.017883338, 0.00689111, 0.032014735, -0.017239757, 0.014199863, -0.019718228, 0.005210268, -0.029111773, -0.0033976287, 0.009537323, -0.04485897, -0.0035260026, -0.0379302, -0.008140615, 0.004501644, 0.0014925603, -0.014131397, 0.009941273, 0.010872412, 0.008469253, 0.0064358106, -0.02722211, -0.0061277132, 0.011515993, -0.0085651055, -0.010571161, -0.02867359, 0.012686763, -0.021142323, -0.012043182, -0.023716647, -0.019992093, -0.026345743, -0.009845421, 0.0039573386, -0.0049021705, -0.004169584, 0.01993732, 0.026893472, -0.011940482, 0.0053677396, -0.036067925, 0.02275812, 0.02181329, 0.0020265956, -0.030152457, -0.019718228, 0.0033651073, 0.009373005, 0.03256246, -0.014816057, -0.0070520053, -0.017746406, 0.006856877, -0.009633176, 0.008209081, 0.010379456, 0.008380247, -0.015048842, 0.036560882, -0.01610322, -0.0016885444, -0.029905979, 0.012720996, -0.0046762326, -0.0022302822, -0.03363053, -0.030398935, 0.015884127, 0.009174453, -0.033849623, 0.011084656, -0.023607101, 0.012508751, 7.0905173E-4, -0.01137906, 0.014501113, 0.019403284, -0.00990704, 0.01482975, 8.417047E-4, -0.008441866, 0.0036287017, -0.0029525992, 0.014761285, 0.0067062513, -0.006613822, -0.0030159303, -0.010783406, -0.008866356, -0.023511248, -0.016582482, -0.004874784, 0.0045427238, 0.012132187, 0.0183626, -6.38874E-4, -0.026427902, -0.03686213, -0.016336003, 0.026660688, -0.034013942, 0.023209997, 0.0017766944, -0.009824881, -0.021046469, -0.016034754, -0.17658769, 0.013700061, 0.017417768, -0.042613283, 0.008647265, 0.030946663, 0.029166546, 0.00728479, 0.011406447, -0.016733108, 0.022593804, 0.01921158, -0.03634179, 7.0905173E-4, 0.0025914407, 0.014638046, -9.0460794E-4, 0.032069508, 0.014295715, -0.008907435, 0.030453708, -0.005446476, 0.0014018428, -0.009742722, 0.0036903212, 0.02637313, 0.020485047, 0.0018965101, 0.01103673, -0.0161443, -0.031001436, -7.0049346E-4, 0.008886896, 0.0030929546, -0.021443574, 0.0116186915, -0.0044023683, -0.023634488, -0.017404074, 0.003258985, 0.013706907, 0.010653321, 0.04003896, -0.008441866, 0.007017772, 0.013083866, 0.014015004, -0.022004995, 0.0159389, -0.018006576, 2.4904532E-4, -0.03625963, 0.01823936, -0.009044368, 0.0042928224, 0.02019749, -0.0073121763, -0.011392754, 0.022949826, -0.0021789325, -0.020978004, -0.0031083596, 0.0145285, 0.0023757727, -0.019663455, -0.023086758, -0.013775373, 0.017924417, -0.034534287, 0.017390382, -0.021525731, 0.00796945, 0.016349697, 0.0021635278, 0.013802759, -0.037820656, -0.020129025, 0.01602106, -0.010174057, -0.004429755, -0.023333237, 0.058059227, -0.0121938065, 0.02364818, 0.01648663, -0.02594864, -0.008195388, 0.008106383, -0.013309804, -0.015774582, 0.006668595, -0.031713482, -0.027276881, -0.001592692, 0.0038272534, 0.016089527, -0.005227384, 0.008078996, 0.01067386, -0.013049632, -0.010345223, -0.016294925, -0.0058709653, 0.029604727, 0.027578132, 0.01729453, 0.014816057, 0.018184587, 0.021498345, 0.0019786693, -0.0010364051, -0.006781564, 0.0135836685, 0.017226063, -0.027085178, 0.019663455, -0.016199073, -0.014542193, 0.0076682, 0.023073066, 0.05121262, 0.0010672149, 0.008654111, -0.016787881, 0.012008948, -0.012159574, -0.08785566, -7.6596416E-4, 0.007976297, 0.03434258, -0.04017589, 0.028564043, -0.004340749, 0.020252263, -0.034233034, 0.033685304, 0.011577613, -0.021785904, 0.017445154, -0.004025805, 0.001783541, -0.003411322, -0.024168523, -0.016582482, -0.026893472, 0.01759578, 0.0025589194, -0.020991696, -0.002196049, -0.0102356775, -0.02181329, 0.0051281084, -0.031987347, 0.021758517, 0.0028139555, 0.007592887, 0.002177221, -0.02207346, 0.01912942, -0.04321578, -0.02633205, -0.023100452, -0.021060163, -0.037218153, 0.010427383, -0.046283063, 0.0037177075, 0.0095989425, 0.012577217, -0.026605915, -0.011112043, -0.024127442, -0.024976421, 0.027276881, -0.016500322, -0.03072757, -0.00573061, -0.010981957, -0.020717833, 0.0057511497, 0.013597362, 0.011961022, 0.017582087, 0.0089690555, 0.002492165, -0.030234616, -0.0067747175, -0.007633967, -0.0055491747, 0.015473331, 0.01737669, 0.0122554265, 3.7977274E-4, -0.007195784, 0.024319148, -0.011769317, -0.01491191, 0.031631324, -0.028837908, -0.009530477, -0.01448742, 0.015240547, -0.031795643, -5.126397E-4, 0.028728362, -0.047214203, 0.0028618816, -0.029358251, 0.0099481195, -0.02322369, 0.021991301, 0.022895053, 0.010509541, -0.005374586, 0.003185384, -0.033740077, 0.006483737, 0.022292553, -0.012823694, -0.016075833, -0.001798946, 0.0361227, 0.010803945, 0.0038067135, -0.0037724804, 0.003258985, -0.0137206, 0.0028225137, -0.08265224, 0.03020723, -0.0044742576, -0.005631334, -0.015226854, -0.009311385, 0.011604998, -0.001838314, 0.0032196168, 0.014008158, -0.008024223, 0.01041369, -0.011947329, -0.015199468, -0.0064358106, 0.012597756, -0.0039949953, -0.020416582, 0.003214482, -0.006223566, -5.145653E-5, 0.020868458, 0.015747195, 0.0068329135, 0.0018006576, 0.025044888, 0.010126132, 0.02974166, -0.008037916, -0.008996441, 0.02514074, -0.03157655, 0.003282948, 0.003909413, -0.01656879, -0.02284028, -0.02253903, 0.010550621, 0.015884127, 0.015309013, -0.014104011, -0.027605519, 0.0064392337, -0.017445154, 0.006189333, 0.013268724, -0.02096431, 0.011694005, -7.7323866E-4, -0.009420931, 0.026742846, 0.018253054, -0.014295715, -0.021156015, 0.013590515, -0.008126922, 0.050089777, 0.0028875566, -0.0038169834, 0.0030262002, 0.026112959, 0.0048816307, 0.028646203, -0.027509667, -0.027057791, -0.0055457517, 6.135202E-5, -0.010550621, 0.008585645, -0.02100539, -0.007887291, 0.0023911775, 0.016212765, 0.03472599, 0.012371819, 0.009277152, -0.029796433, 0.014323101, 0.008688345, 0.01640447, 0.009770108, -0.019923626, -0.033082806, 0.036999065, 0.017130211, 0.014062931, -0.011899402, 0.008435019, -0.016431857, 0.011194202, -0.013275571, 0.009133373, 0.006798681, -0.0012999995, -0.011242129, 0.023524942, -0.005395126, -0.01806135, -0.003351414, 0.01606214, -0.0020402889, -0.0018160625, -0.014015004, -0.022936134, -0.013727447, -9.462225E-5, -0.0035944686, -0.016787881, 0.019102033, 0.012070568, 0.01930743, 0.011639232, -0.014282022, 0.019841466, -0.037765883, -0.008257008, -0.01111889, -0.024182215, -0.012926394, 0.03226121, 0.007976297, 0.016075833, 0.04170953, 0.00877735, 0.03839577, 0.0064255404, 0.022771815, -0.024757331, -0.006374191, 0.005614218, -0.013590515, 0.00996866, -0.020841071, -0.0054019727, -0.005518365, -0.0036595115, 0.01101619, 0.02982382, -0.04253112, 0.07383381, 6.88084E-4, -0.0058093457, 0.02189545, -0.0181572, 0.012748382, 0.030782344, 0.009311385, -0.0070520053, -0.018006576, 0.0011245551, -0.005912045, 0.008633572, -0.016048446, 3.780611E-4, 0.003769057, 0.013412503, -0.0011151411, -0.005391703, -0.029714273, -0.006398154, -0.019006182, 0.011180509, 0.009010134, -0.013830146, -0.0094277775, 0.0083323205, -0.011646078, -0.001788676, -0.029029613, 0.006610399, -0.01144068, -0.016733108, 0.011536533, 0.028180635, -9.0204045E-4, -0.0080447635, -0.013652134, 0.021443574, 0.0046214596, -0.010283603, 0.010194598, -0.012789462, -3.9967068E-4, 0.01858169, 0.014596966, 0.012796308, -0.023209997, -0.023634488 ], + "id" : "828c582e-21e1-4714-97d4-11c333cb26f0", + "metadata" : { + "source" : "movies.csv" + } + }, + "198cd3c9-ec2f-47b9-8261-0fc95262e9b8" : { + "text" : ",558-559-359086-1930-102382-437894-1726-10138-432342-63449-432373-36658-10195-9806-315635-272-36657-225914-58-607-9738\r\n602,Independence Day,Action-Adventure-Science Fiction,en,On July 2 a giant alien mothership enters orbit around Earth and deploys several dozen saucer-shaped 'destroyer' spacecraft that quickly lay waste to major cities around the planet. On July 3 the United States conducts a coordinated counterattack that fails. On July 4 a plan is devised to gain access to the interior of the alien mothership in space in order to plant a nuclear missile.,40.04,20th Century Fox-Centropolis Entertainment,6/25/96,75000000,817400891,145,Released,Don't make plans for August.,6.872,9048,Will Smith-Bill Pullman-Jeff Goldblum-Mary McDonnell-Judd Hirsch-Robert Loggia-Randy Quaid-Margaret Colin-James Rebhorn-Harvey Fierstein-Adam Baldwin-Brent Spiner-James Duval-Vivica A. Fox-Lisa Jakub-Ross Bagley-Mae Whitman-Bill Smitrovich-Kiersten Warren-Harry Connick Jr.-Giuseppe Andrews-John Storey-Frank Novak-Devon Gummersall-Leland Orser-Mirron E. Willis-Ross Lacy-David Pressman-Vivian Palermo-Raphael Sbarge-Bobby Hosea-Dan Lauria-Steve Giannelli-Eric Paskel-Carlos Lac��mara-John Bennett Perry-Troy Willis-Tim Kelleher-Wayne Wilderson-Jay Acovone-James Wong-Thom Barry-Jana Marie Hupp-Matt Pashkow-Robert Pine-Marisa Johnston-Michael Winther-Warren Dexter Beatty-Paul LeClair-Michael Vacca-David Channell-John Capodice-Greg Collins-Derek Webster-Mark Fite-Eric Neal Newman-Levan Uchaneishvili-Kristof Konrad-Kevin Sifuentes-Elston Ridgle-Randy Oglesby-Jack Moore-Barry Del Sherman-Lyman Ward-Anthony Crivello-Richard Speight Jr.-Barbara Beck-Joe Fowler-Andrew Warner-Sharon Tay-Peter J. Lucas-Yelena Danova-Johnny Kim-Vanessa J. Wells-Jessika Cardinahl-Gary W. Cruz-Ron Pitts-Wendy L. Walsh-Christine Devine-Mark Thompson-Ernie Anastos-Kevin Cooney-Rance Howard-Nelson Mashita-Jeff Phillips-Sayed Badreya-Adam Tomei-John Bradley-Kimberly Beck-Thomas F. Duffy-Andrew Keegan-Jon Matthews-Jim Piddock-Frederic W. Barnes-Eleanor Clift-Jerry Dunphy-Jack Germond-Morton Kondracke-John McLaughlin-Barry Nolan-George Putnam-Eric Michael Zee-Pat Skipper-Carlos Lara-Mike Monteleone-Lee Strauss-Lisa Star-Malcolm Danare-Arthur Brooks-Michael Moertl-James J. Joyce-Joyce Cohen-Julie Moran-Robin Groth-Richard Pachorek-Dakota-Gary A. Hecker-Frank Welker,spacecraft-showdown-independence-patriotism-countdown-invasion-alien-ufo-extraterrestrial-creature-battle-alien invasion-world domination-area 51-human vs alien-good versus evil,/p0BPQGSPoSa8Ml0DAf2mB2kCU0R.", + "embedding" : [ 0.008997879, -0.03737476, -0.008726655, -0.039083477, -0.020301167, 0.022145495, -0.018633137, -0.022430282, -0.024478028, -0.014917358, 0.030160185, 0.033604737, 0.0039632707, 5.9118506E-4, -0.013100152, 0.019907892, 0.014049439, -0.021684414, 0.01692442, -0.0073230662, 3.4009034E-4, -0.0049735825, -0.006305974, 0.01978584, 0.013466305, 0.0011527049, 0.0141714895, -0.019039974, -6.1067933E-4, -0.014591888, 0.012333943, -0.012564483, 4.4243527E-4, -0.0038717324, -0.024857743, -0.0030563632, 0.003824268, -0.02747506, 0.022009883, -0.01341206, 0.012774683, 0.024437344, -0.009770869, -0.0013645992, 0.0011467718, 0.028397225, 0.0222133, -0.0011637234, -0.0067297625, 0.027963264, 0.027095346, 0.01593445, -0.022959169, -0.014266418, 0.0033462346, 0.008523236, -0.027149592, 0.016409094, 8.491663E-5, -0.012252575, -0.0021613217, -0.01032688, -0.03010594, 0.02549512, -0.0043362044, 0.0010670996, -0.012727218, -0.012042376, -0.0037530717, 6.000846E-4, 0.01021839, 0.026525773, 0.019270513, 0.0013603613, -0.002329142, -0.028126, -0.02605113, -0.011594855, -7.356969E-4, 0.01021839, 0.007634975, -0.015554735, -0.01682949, 0.008828363, 0.019311197, 0.021169087, -0.0042073727, 0.015798837, -0.03189602, -0.0031241693, 0.0046243807, 0.0073569696, 0.013710408, 0.02847859, -0.010672691, 0.016341288, -0.019609544, 0.034554023, -0.009309787, -0.058530286, 0.0046074293, 0.006824691, 0.0024223754, -0.017114278, -0.010523518, 0.008055373, 0.014890235, -0.01570391, 0.018470401, -0.0046209907, 0.018443279, 1.8898321E-5, 0.026539335, -0.030458532, -0.015581858, -0.014686816, 0.007865516, -0.023989823, -0.018199176, -0.026200304, 0.013215423, 0.026335917, 0.013486647, -0.016558267, 0.02647153, 0.03658821, 0.007228138, -0.006882326, 9.7047584E-4, -0.0059262593, 0.016571827, 0.014049439, 0.023989823, 0.0034089552, -0.021169087, 0.047979645, -0.01813137, 0.015351317, -0.019840086, -0.016788809, 0.0393547, 0.03723915, -0.021399627, -0.013066249, -0.022579454, 0.010401467, 0.014090123, -0.013968071, 0.0031139983, 0.012801805, 0.02373216, 0.027366571, -0.0051363176, 0.005332955, 0.022904925, 0.011730468, -0.018497523, 0.008035031, 0.0065636374, -0.01879587, 0.0087741185, -0.013635821, 0.015758155, -0.013290009, 0.0034886275, 0.02175222, 6.2381674E-4, -0.017290574, -0.010340441, -0.01142534, -0.005770305, 0.020301167, -0.02122333, 0.003780194, 0.007824832, 0.032384228, 0.009947165, -0.004953241, -0.024016945, -0.016409094, -0.01021839, 0.011398218, 0.031462062, 0.028993918, 0.0045769163, 0.02626811, 0.019636666, -0.02506116, 0.02000282, -0.017182084, 0.020748688, 3.5301587E-4, -0.02175222, -0.0071467706, -0.642694, -0.030458532, 0.009275884, 0.002691905, 0.0034038697, 0.021386066, 0.0058618435, 0.004736261, -0.018090686, -0.005699109, -0.014808868, 0.024369538, 0.0013290009, -0.0096488185, -0.032221492, -0.006078823, -0.003164853, -0.0107744, 0.032384228, 0.018931482, -0.026335917, 0.029617736, 0.011357534, 0.008692751, -0.005353297, -0.004661674, 0.0016010732, -0.011445682, 0.0016883736, 0.0010416723, 9.6030487E-4, -0.0029817764, 0.0053872, -0.012917075, 0.035557557, 9.0690755E-4, -0.016626073, 0.036506843, 0.0263766, 0.022932047, -0.01989433, -0.01802288, 0.041416008, 0.00999463, -0.009838675, 0.0016341287, 0.0011357534, -0.02516965, 0.0013434098, -0.011086309, -0.0019189146, 0.019297637, 0.0132561065, 0.010014972, 0.0031580725, 0.003195366, 0.013120494, -0.025115406, 0.009825114, -0.013086591, -0.0137307495, 0.031380694, 0.008224889, 0.028370101, -0.028044632, 0.021155525, -0.008828363, -0.0019392564, 0.0057465727, -0.01076762, 0.009899701, 0.02097923, -0.018158492, -0.014144368, 0.005594009, 0.02000282, 0.04385703, -0.0073230662, -0.010204828, 0.031597674, 0.00494307, -0.010069217, -0.025535803, 0.016070062, 0.03639835, -0.01198135, -0.025969764, 0.0054414454, 0.0083130365, 0.00313095, 0.01615143, 0.018822992, 0.011805055, -0.020857178, -0.013873142, -0.003966661, -0.036208495, -0.014347786, 0.027963264, -0.037320517, -0.0077163423, -0.025535803, 0.03341488, -0.0072891633, 0.018185616, 0.0010035313, 0.016666757, 0.005187172, 0.026851244, -0.023596548, -0.0057364022, -0.0073027248, -0.020721566, 0.0038174875, 0.0030699244, -0.021792904, 0.0329538, 0.017222768, -0.00516683, 0.0042582275, 0.007282383, -0.027176714, -0.0058821854, -0.03550331, 0.01922983, 0.018389033, 0.022348914, -0.006756885, -0.0027631014, 0.0051498786, -0.015297072, 0.02077581, 0.003902245, 7.9968903E-4, -0.0059872847, -6.2763086E-4, 0.0044141817, -0.018172054, 0.012340723, 0.0048549217, -0.028098878, 0.012550922, -0.013445964, -0.0050583403, -0.0051702205, -0.02122333, -0.023637231, 0.0039158063, 0.0028410784, -0.004976973, -0.011825396, 0.011628758, 0.016558267, 0.007926541, -0.016287042, -0.0073705306, -0.011974569, -0.01989433, 0.021589484, -0.0066077113, -0.003681875, 0.012876391, 0.007892638, -0.015025848, 0.024762813, 0.0076417555, -0.015988695, 0.0013035736, 0.0064483667, -0.030811124, 0.008509674, 0.0064381957, -0.018497523, 0.015446246, -2.3138856E-4, 0.020830056, -0.035557557, 0.005041389, 0.0146054495, -0.009194517, 0.012720438, -0.006285632, -3.2313878E-4, 0.003341149, 0.017941512, 0.01868738, 0.011744029, 0.0062890225, -0.008306256, 0.008184205, 0.0031156936, -0.010611665, -0.011221921, 0.0029139703, -0.002220652, 0.02362367, -0.007906199, -0.00395649, -4.6531984E-4, 0.03460827, 0.06053735, 0.021494556, 0.006787398, -0.017060032, 0.003154682, -0.020151993, -0.003385223, -0.035964392, 0.018483963, -0.012496677, 0.011147334, 0.0015451331, -0.022959169, -0.020463903, 0.019704472, 0.013662944, -0.017534675, 0.0011620283, -0.017290574, 0.0053499066, -0.016422655, 0.002463059, 0.028261611, -0.0064483667, -0.037483253, 0.007933322, 0.014130806, -0.01978584, 0.011221921, -0.012259356, 0.014225734, 0.0030292408, -0.006516173, 0.011588074, 0.0182263, 0.011764371, 0.020165555, -0.002198615, 0.029861838, 0.008699532, -8.043507E-4, 0.0013951119, 0.034743883, 0.0029851666, -0.03230286, -0.0031512917, 0.018361911, 0.015025848, -0.015893767, 0.018266981, -0.024572955, 0.012910295, -0.006350048, 0.007702781, 0.019175585, -0.00846221, -0.0012620423, 0.009987849, 0.025522243, 0.01899929, 0.0188908, -0.025427314, 0.008245231, 0.0053566876, 0.012727218, -0.0056109605, -0.017548237, -0.009987849, 0.0025732443, -0.012055937, -0.016612511, -0.020423219, -0.015419123, -0.008407965, -0.007851955, -0.010408247, -0.003285209, 0.020043503, 0.012998443, 0.0019256952, -0.018389033, -0.025454435, 0.014307102, 0.025535803, -0.0060177976, -0.017263452, -0.018266981, 0.0128289275, -0.019419687, 2.1719164E-4, -0.023596548, 0.031055227, -0.016436215, -0.0044345236, -0.028858306, -0.008821582, 0.01791439, -0.0018070345, 0.01263907, 0.0021070768, -9.458961E-4, 0.013669724, 0.0025681588, -0.010903232, 0.044806316, -0.015812399, 0.021603046, -0.021480994, 0.021277577, -0.0033716618, -0.010096339, 0.010632007, -0.04033111, 0.015785277, -0.007011158, -0.015256388, -0.022647262, -0.01933832, 0.002503743, 0.0035598238, -0.0021375895, -0.023989823, -0.008984318, 0.0014841076, 0.07550895, 0.020301167, 0.018985728, 0.021236893, 0.004085322, -0.006085604, -0.01307981, -0.012150866, 0.009743746, -0.015568296, 0.001306964, -2.9622822E-4, 0.014266418, -0.0022969341, 0.0263766, 2.884411E-5, 0.010740497, 0.011994911, -0.0019392564, -0.004658284, -0.024979793, -0.027881898, 0.0072552604, 0.027990388, 0.0083265975, -0.029861838, 0.036127128, 0.01010312, 0.012517019, 0.010143803, -0.018443279, 0.023827089, 0.011994911, -0.0036378012, -0.0101234615, 0.011574513, 0.03230286, 0.007953663, 0.020626636, -0.005668596, 0.0029478732, -0.007940102, -0.011140554, -0.02691905, 0.009974288, -0.0039497092, -0.0053702486, 0.031597674, 0.019392565, -0.043531563, 0.02087074, -0.005414323, -0.0023901674, -0.015215704, 0.0023443983, 0.014442714, -0.0015349622, 0.004912557, -0.03140782, -0.012503458, 2.1115266E-4, -0.042826377, 0.028939674, -0.017900828, 4.7252426E-4, -0.019595983, -0.010869329, -0.008075715, -0.010801523, -0.001890097, 0.022918485, -0.022864241, -0.0087605575, 0.017846584, 0.017426185, 0.0042785695, 0.023203272, -0.0034648953, 0.0028258222, 0.0026732583, -0.035015106, -0.042229682, 0.01802288, -0.033767473, 0.008855486, 0.021575924, -0.0057669147, 0.0146190105, 0.0075400462, 0.020531708, -0.0076553165, -0.017385501, -0.018660259, -5.6957186E-4, 0.04076507, 0.003603898, 0.0072688214, 0.004888825, 0.005760134, 0.008048592, 0.00203249, -0.018036442, -0.012957759, -0.0043768883, -0.02460008, 0.0030038133, 2.8711677E-4, 0.013696847, -0.024206802, -0.018470401, -0.022172619, -0.02045034, 0.009058905, 0.0019629886, 0.023040537, 0.012015253, 0.017087154, -0.0022274328, -0.0076960004, 0.020504586, -0.006441586, -0.005319394, -0.005332955, 0.030485654, 0.0037666329, 0.024193242, -0.02999745, -0.022077689, -7.810423E-4, 0.013249326, -0.009072466, 0.02076225, -0.007594291, -0.011527049, -0.0101370225, -0.011411779, 0.016205674, 0.01043537, -0.0011518573, 0.0075332657, -0.01681593, -0.0022376035, -1.1463481E-4, -0.003120779, -0.0056618154, -0.020572392, 0.0010374344, 0.0071603316, 0.007906199, 0.013228984, 5.182934E-4, 0.0070450613, -0.012340723, -0.010170925, -0.021155525, -0.03363186, -0.034445535, 0.009058905, 0.044996176, 0.022755751, 0.016802369, -0.00516344, 0.043531563, 0.0042141536, 0.01307981, 0.010896452, -0.0011052405, -0.018972166, -0.013466305, -0.009540328, 0.017263452, 0.01219833, 0.028695572, 0.014795306, -0.003002118, 0.021033473, -0.0027071615, 0.026105376, 0.0071603316, -0.0239627, -0.006095775, 0.0012010168, -0.032248616, -3.1275596E-4, -0.037266273, -0.021928515, 0.038269803, 6.6577183E-4, -0.0029207508, 0.004695577, 0.022240425, -0.0072891633, 0.023542302, -0.013439183, 0.01044215, -0.019189145, 0.006716201, -0.024817059, 0.0030343262, -0.005539764, 0.004149738, 0.01307303, -0.0029088848, -0.0146461325, 0.0012586521, 0.020816494, -0.012022034, -0.016626073, 0.0015476758, -0.019853646, -0.0032513058, -0.027610673, -0.00802825, -0.032601207, -0.018009318, -7.827375E-4, 0.010245512, 0.009716624, -0.02077581, -0.031000981, 0.021589484, -0.017561799, 0.025332386, 0.006119507, 0.05088175, 0.02934651, 0.008597823, -0.020613076, -0.0040412475, -0.015744593, -0.0043531563, 0.021508118, 0.013167959, -0.025535803, -0.0061364584, 0.0026444406, -0.021521678, -0.01912134, -0.032492716, 0.030838246, 0.024315292, 0.02592908, -0.00747224, -0.012937417, -0.015188582, 0.029509246, 0.008869047, -0.003912416, 0.0031394258, -0.010618446, -0.008896169, -0.0050854627, -0.013466305, 0.008746996, -0.002649526, -0.03913772, 0.0123678455, -0.017507553, 0.015188582, -0.019148463, -0.01582596, 0.026864804, -0.025861273, 0.016775247, 0.0022172618, 0.022728628, -0.0017866927, -0.013940949, 0.004481988, 0.030594144, -0.023108343, 0.009601354, 0.0025952812, 0.020355413, 0.0041158344, 0.011581294, -0.024044069, 0.0023427033, -0.016178552, -0.0055668866, 0.021508118, 0.009336909, 0.015893767, -0.011418559, -0.01956886, -0.0141850505, -0.0061568003, -0.004976973, 0.010638788, -0.012761122, 0.0059635527, 0.010313318, -0.009526767, -0.006360219, -0.0060279686, 0.01032688, -0.004231105, 0.0182263, -0.025196772, 0.0019494274, 5.098176E-4, 0.0074654594, -0.03704929, -0.02032829, 0.0026681728, -0.016232798, 0.009845456, -0.033360638, -4.6828638E-5, -0.0053668586, 0.007906199, -0.020274045, -3.0957756E-4, -0.011364314, -0.0018714503, 0.03341488, -0.006692469, -0.018755186, -0.0031495965, 0.028912552, 0.014442714, 0.003892074, -9.5034586E-5, 0.0018494133, 0.04559287, -0.029265143, 0.01230004, 0.0020375755, -0.024545833, 0.0011077833, 0.008136741, 0.015175021, 0.010292977, 0.0035767755, -0.03330639, 0.0022715067, -0.012666193, 0.022172619, -0.008713093, -3.091008E-5, 0.02747506, 0.018551769, 0.036886558, 0.02582059, 0.0017375331, -0.027217397, -0.010971039, -0.028885428, -0.009282664, 0.002373216, 0.018768748, 0.017060032, -0.012611948, 0.0018646697, -0.01658539, -0.0076417555, -0.005451616, -0.020748688, -0.0020257093, 0.011954227, 0.052888814, 0.018646697, 0.015866645, 0.015147898, -0.018294105, 0.025305264, -0.018931482, 5.416018E-4, 0.03439129, 0.0034581148, 0.016843053, 0.012184769, -0.023257516, -0.0013035736, -4.4709694E-4, -0.0023460935, 0.010367564, 0.033577617, -0.015364878, -0.002561378, 0.0023681305, -0.0195553, 0.0013468, 0.0010086168, 0.023569426, -0.028342979, 7.9990095E-5, 0.002593586, 0.025630733, -0.011777932, -0.005285491, 0.010075997, -0.027569989, -0.011079528, 0.008265573, -0.026091814, 0.013771433, -0.039164845, 0.012035595, 0.0027902238, -0.008211328, 0.022403158, 0.008157082, -0.005285491, 0.005912698, -0.008035031, 0.010516737, 0.0029885569, -0.00681113, 0.016354848, 0.0063534384, -0.025251018, 0.027298763, -0.023949139, 0.001946037, -0.017019348, 0.010069217, -0.01868738, 0.018619575, 0.016653195, -0.03845966, -0.00989292, -0.0015603895, -0.0063432674, -0.010957478, 0.0045226715, -0.01384602, -0.0033818327, -0.0019002679, 0.02351518, -0.014307102, -0.013927387, 0.009608135, 0.002956349, -0.004088712, 0.032357104, 0.17282437, -0.0019426468, 0.031787533, 0.043043356, -0.004044638, 0.0019951966, 0.010211609, 0.018416155, -0.004024296, 0.022945609, -0.01791439, 0.014402031, -0.014578327, -0.0050854627, 0.0060584815, -0.020084187, -0.010971039, -0.028668448, -0.035883024, -0.017819462, 4.2315287E-4, -0.002164712, -0.018307665, -0.0078722965, 0.0046752356, -0.0060177976, -0.010272635, 0.014402031, 0.0182263, -6.748833E-5, -0.037537497, -0.026444407, 0.01142534, 0.01285605, -0.0052448073, 9.6878066E-4, -0.0020935156, -0.004109054, 0.016015818, -0.02032829, -0.013791775, -0.014130806, 0.0010433674, -0.015392001, -0.00186806, 0.022376036, -0.024749253, -0.020084187, -0.015744593, 7.6493836E-4, -0.04271789, -8.488485E-4, -0.0033377588, 0.024301732, -0.016015818, -0.012340723, 0.015039409, -0.010964258, 0.004956631, 0.0066382242, 0.03086537, 0.043151848, -0.041361764, -0.008963976, -0.011744029, 0.035367697, -0.023894895, -0.0055329837, 0.013208642, -0.026308794, 0.013391718, -0.015364878, -0.03856815, -0.006550076, -0.015771715, -0.014510521, -0.011154115, 0.023542302, 0.0068484233, 0.026864804, -0.04469783, -0.0014052829, -0.0013298485, -0.007295944, -0.020992791, -0.011215141, 0.022647262, -0.011296508, -0.0056753764, 0.005688938, -0.020287607, -0.029183775, -0.006088994, 0.0024427173, -0.0137307495, 0.0017782168, 0.034092944, 0.015242827, -0.014930919, -0.0067195916, -0.028993918, 0.009743746, 0.029970327, -0.018483963, -0.020084187, -0.035313454, 0.011201579, 0.022796435, 0.0056855474, -0.014008755, -0.020531708, -0.02790902, -0.0037496812, -0.003970051, -0.018050002, 0.0171414, 0.012483116, -0.024979793, 0.03702217, -0.027529305, 0.0029529587, -0.0074247755, 0.017792339, 0.011608416, 0.009540328, -0.04483344, -0.045565747, 0.019948576, -0.006055091, -0.03167904, 0.0074451175, -0.021942077, 0.030458532, -0.004254837, 0.0030258503, -0.004549794, 0.027203836, 0.012218672, 0.0026376601, -0.006360219, -0.0011399912, -0.018036442, 0.0037293395, 0.018266981, 0.008299476, -0.017100716, 0.012618728, 0.0029987278, -0.0060822135, -0.034662515, -0.005119366, -0.016192114, 0.017575359, 0.010706594, 0.040087007, 0.0066348338, -0.020802934, -0.025617171, -0.015758155, 0.009167395, -0.03195027, 0.0057058893, 0.014971603, -0.016788809, -0.03393021, -0.0037598521, -0.17369229, 0.008475771, 0.0046887966, -0.017317696, 0.008740216, 0.011276166, 0.012808586, 0.021467434, 0.0034581148, -0.0132696675, 0.022009883, 0.017263452, -0.04835936, -0.008252011, 0.0055126417, 0.013425622, -0.026647825, 0.03506935, 0.010231951, -0.014334224, 0.030078817, -0.016015818, -0.024084752, 0.0031055226, 0.020789372, 7.039128E-4, -0.0038412195, 0.009845456, 0.0033784425, 0.001164571, -0.03547619, 0.0065771984, 0.0109846, -0.009370813, -2.0882182E-4, -0.014022316, -0.0073366277, -0.0056109605, 0.0053872, 0.0071467706, 0.027000418, 0.008645287, 0.011160895, 0.0072891633, -0.003363186, 0.008719874, 0.014252857, -0.007207796, 0.015446246, -0.019528177, -0.010950697, -0.03997852, -3.5746564E-4, -0.013784994, 0.004648113, 0.019202707, -0.012076279, 0.0088012405, -0.0011713516, -0.01076762, -0.028288735, -0.018958606, 0.003814097, -0.004712529, -0.017005788, -0.016504021, -0.023094783, 0.015595419, -0.033442, 0.0043667173, 0.0031190838, -0.010604885, 0.029916082, -0.0033496248, 1.6739649E-4, -0.00911993, -0.038541026, 0.023528742, -0.006997597, -0.002891933, -0.039191965, 0.03637123, 0.0031665482, 0.0039361482, -5.1702204E-4, -0.007770587, 0.0019189146, 0.0055872286, -3.5788945E-4, -0.019175585, 3.5428724E-4, -0.022253985, -0.029807592, -0.014781745, 0.011683003, 0.0036072882, 0.0064687086, 0.003780194, 0.020192677, 0.0058720144, -0.01263907, -0.016992226, -0.01230682, 0.027502183, 0.01899929, 0.001334934, -0.016070062, 0.02538663, 0.02747506, -0.0047430415, -0.031055227, -0.0022240423, 0.011215141, 0.015297072, -0.013222204, 0.013690066, -0.01494448, -0.02153524, 0.009960727, 0.015202143, 0.033794597, -0.029617736, -0.01253058, -0.016219236, 0.002130809, -0.01616499, -0.095796555, -8.73852E-4, 0.020423219, 0.031841777, -0.015500491, 0.02758355, -0.01901285, 0.025318824, -0.023840649, 0.031706166, 0.0015417428, -0.028966796, 0.0063771703, -0.012517019, 0.03176041, -0.022728628, -0.0030207648, -0.009323348, 0.0012535666, 0.026688509, 0.0017019348, -0.009628477, 0.0029054943, -0.009187737, -0.03151631, 5.7762384E-4, -0.050366424, 0.031787533, 0.015256388, -0.002110467, 0.012903514, -0.02713603, 0.02186071, -0.032763943, -0.030919613, -0.019365443, -0.024667885, -0.026851244, 0.003275038, -0.06010339, 0.005966943, 0.020260483, 0.007492582, -0.03406582, 0.024369538, -0.023121905, -0.019514617, 0.027610673, -0.016639635, -0.03745613, -0.031136593, -0.020274045, -0.034472656, -0.020029943, 0.005207514, 0.0182263, 0.023379568, 0.007702781, -0.022864241, -0.008536797, -0.0043633273, 0.0031987561, -0.035801657, 0.0053668586, 0.019745156, 0.004990534, -0.011350753, -0.013791775, 0.012245795, 0.005780476, -0.03219437, 0.02076225, -0.030024573, -0.004888825, -0.020355413, -0.0036988265, -0.016436215, -0.013839239, 0.033360638, -0.03230286, -0.009547109, -0.016246358, 8.4376306E-4, 4.6987556E-5, 0.011364314, 0.030838246, 0.0071399896, -0.0019816353, 0.006824691, -0.027488621, -7.7129516E-4, 0.034662515, 0.010476054, -0.0045091105, -0.0054956903, 0.021603046, 0.008611384, -1.4504163E-4, 0.0044548656, -0.0022579455, -0.026078254, -0.001076423, -0.08185561, 0.031163717, -0.0096895015, -0.004631161, -0.0077366843, -0.0054312744, -0.002880067, -0.012239014, 0.006997597, 0.015554735, 9.3403E-4, 0.012232233, -0.030946737, 0.016517583, -0.016381972, -0.0015866644, 0.005119366, -0.007960444, -0.007648536, -0.009133491, -0.027542867, 0.00395988, 0.015649663, 0.014876674, -3.676366E-4, 0.035096474, -3.416795E-5, -0.0035530434, -0.02252521, -0.017751655, 0.018443279, -0.007187454, -0.015473369, 0.007417995, -0.017412625, -0.030458532, -0.011160895, 0.01000141, 0.013629041, 0.0063229254, 0.0023274468, -0.01933832, -0.012428871, -0.009581012, 5.4287317E-4, 0.017792339, -0.0057092793, 0.004054809, 0.0072010155, 0.007065403, 0.019487493, 0.0068518138, -0.011310069, -0.011242263, 0.022348914, -0.040168375, 0.05372961, 0.0040039546, -0.0043328144, 0.013825678, 0.03306229, 0.019907892, 0.032546964, -0.011276166, 0.0029580442, 0.0010120071, 0.0078994185, 0.0075875106, 0.013662944, -0.024261048, 0.014076561, -0.006088994, 0.013683286, 0.014713939, 0.018619575, -0.0028614204, -0.0053261747, 0.022796435, 0.008719874, -0.0071399896, 0.03992427, -0.003583556, -0.027556427, 0.015120776, 0.004868483, 0.026837682, 0.010950697, 0.016680319, -0.006095775, 0.005794037, -0.023420252, 0.009262322, 0.029129531, -0.013690066, 0.003647972, 0.0226337, 0.002844469, -0.011689784, 0.008346939, 0.034554023, 0.011716906, -0.013445964, -0.013690066, -0.025671417, -0.024708569, 0.019053534, -0.019501055, -0.03165192, 0.021182647, 0.0116491, 0.00966916, 0.042555153, -0.01131685, 0.012950978, -0.016653195, 0.008441868, 0.0040480285, -0.008970756, -0.015622541, 0.048522096, 0.0141850505, 0.033686105, 0.02009775, -0.023433812, 0.06167649, 0.002624099, 0.032899555, -0.031841777, 0.0046650646, 0.008869047, 0.0033326733, -0.0012815366, -0.023976263, 0.014795306, -0.013879923, 0.0015849692, 0.0011306679, 0.02978047, 0.0016773551, 0.050502036, 0.022389598, -0.013568015, 0.017344818, -0.025454435, 0.010855768, 0.020409657, 0.007790929, -0.022131935, -0.02020624, 0.010794742, 0.0068755457, 0.0053770295, -0.03140782, 0.010828646, -0.006902668, 0.014035877, 0.010842207, -0.029916082, -0.025034038, 0.012917075, -0.013290009, 0.020260483, 0.007987567, -0.034581147, -0.013981632, 0.020233361, -0.018050002, -0.0178059, -0.042256806, 0.001060319, -0.011954227, -0.0051702205, 0.0025240846, 0.0053363456, 0.0033869182, -0.020179117, -0.016409094, 0.03837829, 0.016002256, 0.003746291, 0.013201862, -0.03604576, 7.3484937E-4, 0.010862549, -0.005299052, -0.005197343, -0.019582422, -0.024138996 ], + "id" : "198cd3c9-ec2f-47b9-8261-0fc95262e9b8", + "metadata" : { + "source" : "movies.csv" + } + }, + "f66fe5b3-bbb3-45c8-a0ac-09b17cfbd21f" : { + "text" : "144,2998,Amanda Seyfried-Lily James-Andy Garc�_a-Celia Imrie-Alexa Davies-Jessica Keenan Wynn-Dominic Cooper-Julie Walters-Christine Baranski-Hugh Skinner-Pierce Brosnan-Omid Djalili-Josh Dylan-Gerard Monaco-Anna Antoniades-Jeremy Irvine-Panos Mouzourakis-Maria Vacratsis-Naoko Mori-Togo Igawa-Colin Firth-Anastasia Hille-Stellan Skarsg��rd-Susanne Barklund-Cher-Jonathan Goldsmith-Meryl Streep-Sharif Afifi-Kathryn Akin-Joe Allen-Michael Anthony-Wendy Baldock-Caroline Bateson-Omari Bernard-Christopher Blades-Hannah Bodenham-Nicole Bondzie-Teneisha Bonner-Lauren Bott-Daniella Bowen-William Bozier-Dale Branston-Jacqueline Braun-Ava Brennan-Myles Brown-Charlie Bruce-Dawn Buckland-Ashley Campbell-Natalia Campbell-Vanessa Campbell-Clive Carter-Harry Carter-Chrissie Cartwright-Peter Challis-Frances Maassen Chiapetta-Javier Cid-Cassie Clare-Tom Clark-Ray Clarke-Dominic Clarson-Emma Clayton-Nicola Coates-Elliot Collins-Leon Cooke-Sarah Cortez-Joe Da Costa-Alie Coste-Robbie Culley-Charles Daish-Jo Darby-Natalie Davis-Imelda de los Reyes-Emma Deigman-Reece Darlington Delaire-Jeannine Desmier-Nathalie Desmier-Maria Despina-Kieran Donovan-Sonia Dorado-Matthew James Duff-Nathaniel Ellul-James Alan-Evans-Claire Fishenden-Nia Fisher-Jane Fowler-Tommy Franzen-Rory Furey-King-Adam Galbraith-Jenny Galloway-Jemma Geanaus-Chris George-Linda Gibbs-Louise Gold-Mark Goldthorp-Sharon Gomez-Georgia Reid Hamilton-Andrew Hamshire-Crystal Hantig-Alison Harding-Layla Harrison-Yasmin Harrison-Linzi Hateley-Pip Hersee-Leonie Hill-Jack Hinton-Todd Holdsworth-Robert Howie-Lukas Hunt-Parsifal James Hurst-Katherine Isles-Kim Ismay-Jacqui Jameson-Cherelle Jay-Alim Jayda-Alison Jenkins-Carolyn Jones-Jamie Karitzis-Nicola Keen-Craig Anthony-Kelly-Matt Kennedy-Reece Kerridge-Dan Krikler-Joshua Lacey-Mitchell Lathbury-Gemma Lawson-Peter Le Brun-Georgie Leatherland-Melvin LeBlanc-Nick Len-Paul Leonard-Rebecca Leung-Cassie Macmillian-Nikki Mae-Liam Marcellino-Joe Edward Mascot-Melli Matthews-James Paul McAllister-Fiona McDonald-Myra McFadyen-Fergal McGoff-Perry Meadowcroft-Oliver Metzler-Chanel Mian-Holly Mitchell-Scott Mobley-Andrew Monaghan-Mandy Montanez-Elander Moore-Leah Sue Morland-Jake Moyle-Rachel Muldoon-Charis Murray-Mazz Murray-Wolfgang Mwanje-Jayde Nelson-Marianna Neofitou-Robert Nerantzoulis-Jordan Nesbitt-Sam Nesti-Tom Oakley-Anu Ogunmefun-Katy Osborne-Aaron Ashley Parker-Christopher Parkinson-Tamara McKoy-Patterson-Sherrie Pennington-Nuwan Hugh Perera-Michael Peters-Thierry Picaut-Thomas Pitiris-Eve Polycarpou-Joseph Poulton-Zoe Purpuri-Aaron Renfree-Lisa Ritchie-Zach Robinson-Matt Ryan-Simone Sault-Josie Scam", + "embedding" : [ 0.016162585, -0.031154547, -0.0027985217, -0.031952698, -0.03368203, 0.042142443, 0.003897644, 0.009444803, -0.012823648, -0.03589025, 0.012963325, 0.026285818, 0.02241478, 0.0066512697, 0.0064617083, 0.010455796, 0.022827158, -0.00717672, 0.00790836, -0.042195655, -0.005128129, -0.0061258194, -0.021310668, 0.018011639, 0.0024343648, 0.011074364, 0.01912905, -0.01513829, -0.01708046, -0.009138845, 6.576443E-4, -0.013661708, 0.013954364, -0.036608588, -0.020233162, -7.8859116E-4, 0.00828083, -0.03179307, 0.026472053, 0.008307436, -0.0014533025, 0.013728221, -0.01728, -0.0058564427, -0.013029837, 0.0030911777, 0.0030113624, -0.004409792, -4.8180134E-4, 0.029185772, 0.03227196, 0.03152702, -0.023691822, -0.026724802, -0.013322493, 0.0042468356, -0.025234917, 0.0063519627, -0.016774502, 0.008832886, 0.011998891, -0.012025496, -0.029904108, -0.011373671, -0.019461615, -0.0124511765, -0.0037479904, -0.016841015, 1.8270206E-4, -0.0024526557, 0.013275934, 0.0061158426, 0.013329145, 0.0014582908, 0.034347158, -0.0267115, -0.03309672, -0.0055139028, -0.0100234635, 9.843879E-4, 0.0055903923, -0.0069904844, -0.01865016, 0.011779399, 0.015111685, 0.022148728, -0.02143039, 0.030968312, -0.007848498, 0.009963602, 0.021563416, 0.05039002, -0.011333764, -0.0053210156, 0.01136702, 0.012338106, -0.023186326, 0.036103092, -0.027695887, -0.029505033, -0.011100969, -5.271131E-4, -0.008932655, -0.008267528, -0.0020718705, 0.009936997, 0.006145773, -0.009032425, 0.030702261, 0.023173023, 0.0138878515, -0.020924894, 0.01786531, -0.03288388, -0.013063094, -0.009697551, 0.028919721, -0.019155657, -0.016215796, -0.02105792, 0.018463925, 0.028307803, -0.002723695, -0.041929603, 0.03421413, 0.037486557, 0.01246448, -0.01424702, 0.0010051731, 0.0085867895, 0.024050992, -0.011047759, 0.025288127, 0.010715195, -0.021603324, 0.034533393, -0.03634254, 0.004233533, -0.021417089, -0.012477782, 0.020525819, 0.048660688, -0.030888496, -0.0067975977, -0.027456442, 0.006614688, 0.01838411, -0.0031759813, 0.0063951956, 0.021922585, 0.01644194, 0.021882677, 0.009404895, 0.009877135, 0.01806485, -0.004206928, -0.0052012927, 0.0034220782, -0.010262909, -0.02687113, -0.0055504846, -0.0024177365, -0.0029032791, -0.014127296, -0.0026638336, 0.034826048, 0.00932508, -0.020233162, -0.009784018, -0.0056169974, -0.0144465575, 0.01916896, -0.024769329, 0.024077596, -0.004027344, 0.012244987, -0.0026189375, -0.020765264, -0.027203692, -0.028573854, -0.0047756117, 0.010681939, 0.030994916, 0.04097182, -0.003844434, 0.013389006, 0.011194087, -0.018410714, 0.012743833, -0.009285172, -0.005700138, 0.01524471, 0.011160831, -0.016215796, -0.631711, -0.02248129, 0.0049418933, -0.0033139952, 0.03487926, 0.026472053, 0.0028450806, -0.015776811, -0.02278725, -0.009052378, -0.0356242, 0.02524822, 0.01435344, -9.5196295E-4, -0.019927204, -0.008247575, 0.012052101, -0.024729421, 0.0021234178, 0.021217551, -0.021443693, 0.033868264, 0.03644896, -0.0035251728, 0.00848702, -0.0045029097, -0.023199629, -0.037433345, 0.0038178288, 0.0053176903, -0.010861523, 0.013601846, 0.0049219397, 0.0032707618, 0.038736995, -0.0041470667, -0.013428913, 0.055657826, 0.028094962, 0.049325816, -0.026112884, -3.4752884E-4, -0.0047523323, 2.0296765E-4, -0.022162031, 0.036395747, -0.011007851, 0.01121404, -0.005464018, -0.0021383832, 0.0065049417, -0.006614688, -0.007748729, -0.011253948, -0.014340137, -0.0011348729, 0.013648406, -0.03421413, 0.025594085, 0.0072565353, -0.019927204, 0.015497458, 0.0054141334, 0.012038798, -0.003322309, 0.0329903, 0.0031543646, 4.3732097E-4, 0.013635103, -0.031979304, 0.01262411, 0.007888406, -0.023931269, -0.0010816627, 0.0019105772, 0.012557597, 0.027243601, -0.0022331637, -0.012737181, 0.011054411, 0.0054108077, 0.004173672, 0.004945219, 0.010435842, 0.026911037, -5.753348E-4, -0.04626623, 0.0029082678, 0.0034553346, -0.008506974, 0.020499213, 0.022388173, 0.011054411, 0.015590576, -0.01142023, -0.00518799, -0.0135818925, 0.0024509928, 0.024064293, -0.06257515, -0.0014358428, -0.014991961, 0.03384166, -0.023811545, 0.01513829, 0.014313532, -0.0144465575, 0.0071434635, 0.020579029, 0.0014815703, 0.0022364894, -0.0073629557, -0.01650845, -0.017705679, -0.017745588, -0.021749651, 0.011606466, 0.021749651, -0.015231407, -0.0022813855, -0.0059462353, 0.004263464, 0.012085357, -0.013535334, -0.0028666973, 0.028334409, -0.011919076, -0.005756674, -8.8378746E-4, 0.016734594, 0.01209866, -0.020725356, 0.00869986, -0.029983923, 0.013475472, 0.008733117, 0.0052345493, -0.0012969975, 0.019408405, 0.0039741336, -0.0045394916, -0.010189746, -0.015909838, -0.022867065, -0.0042568124, 0.0034619858, -0.029478427, 0.0061158426, -0.010908082, -0.017612562, -0.0028351038, 0.01529792, 2.0400691E-4, 0.018836396, 0.0037280365, 0.004855427, -0.023452377, -0.0114468355, 0.00675769, -0.01581672, 0.009125542, 0.014526373, -0.0013152886, -0.00377127, 0.027190391, -0.005304388, -0.01713367, 0.011047759, -0.009444803, -0.011100969, 0.022760645, -0.010981246, 0.0034653116, 0.012770438, -0.0099503, 0.024503278, -0.015856627, 0.037699398, 0.0094514545, -0.0044230944, 0.0021899305, -0.009624387, -0.027562862, -0.008952609, 0.028201383, 0.037220504, 0.008886096, -0.006438429, -0.006129145, -0.004316674, -0.0035750575, -0.020831777, 0.0049119624, 0.006764341, -0.0044131177, 0.015444248, 9.4936484E-5, -0.0056469277, 0.0018041569, -0.014034179, 0.047224015, 0.01692083, 0.016521754, 0.0022564433, 0.01613598, -0.019182261, -0.0020618937, -0.01094799, 0.014672701, -2.0463047E-4, 0.027988542, -0.018783186, -0.02173635, -4.2692837E-4, 0.007748729, 0.026378935, 0.004882032, 0.0035251728, 6.2896067E-4, 0.005184665, -0.0016470207, -0.012431223, 0.012032147, 0.013714918, -0.028361013, 0.007662263, 0.010854872, -0.016415333, 0.0024842492, 0.006910669, -0.023691822, -1.290762E-4, -0.0070503457, 0.015989652, 0.003578383, -0.028627064, 0.020552423, -0.005893025, 0.03189949, -0.01996711, -0.003887667, 0.021337273, 0.012896812, 0.0047190757, 0.0074095144, -0.015497458, 0.017798798, 0.031500414, -0.01273053, 0.037885632, -0.0112606, 0.031500414, 0.008413856, 0.005746697, -0.0021915934, -0.0043066973, 0.005710115, 0.017679075, 0.018357504, 0.03022337, 0.015470853, -0.018929513, 0.026112884, 0.006884064, -0.007662263, 0.004709099, -0.020871684, 0.003505219, -0.0071634175, -0.032138936, -0.015750207, -0.0074627246, -0.006265496, 0.008001477, -0.023532191, -0.014659398, -0.0022714087, 8.7131636E-4, 0.004496258, 0.0067709927, 0.002085173, -0.028414223, 0.02164323, 0.03325635, -0.018743278, -0.039269097, -0.0021433716, -0.015524063, -0.038736995, -0.022507897, 0.002595658, 0.046957962, -0.037992053, 0.0067809694, -0.018104756, 0.0081677595, 0.027882123, -0.012823648, 0.010661986, 0.005750023, -0.0044297455, 0.004140415, -3.0180137E-4, -0.012231685, 0.0144598605, -0.019581338, -0.013182816, -0.004672517, -0.0046858196, -0.009677597, 0.0021683138, 0.007329699, -0.039774593, -0.0011490069, -0.018929513, 0.008387251, -0.009085635, 0.018996026, 0.0028633715, -0.019474918, -0.016362123, -0.03860397, -0.028733484, 0.0059429095, 0.07938956, 0.053156946, 0.0069439257, 0.009498013, -0.011061061, -0.0043033715, -0.0011315473, -0.009098937, -0.0151915, -0.013754826, 0.014380045, -0.02159002, 0.017732285, 0.010642031, 0.004203602, -0.009132193, -0.0251418, -0.011539953, -0.008526928, -0.004140415, -0.00489866, -0.03189949, 0.019301984, 0.027882123, 0.0047855885, -0.021443693, 0.020193255, 0.011041108, 0.0048753805, 0.03730032, 2.628031E-5, -0.0010035103, 0.0030363046, 0.01168628, -0.0058797225, 0.004772286, 0.028999535, 8.218475E-4, 0.027616072, 0.003994087, -0.003651547, -0.0019022631, 0.018902909, 0.007303094, 0.0041902997, -0.02069875, -0.01262411, 0.026724802, 0.042647943, -0.033495795, 0.02241478, 0.019568035, -0.010256258, -0.010176443, 0.014207112, -0.0017842031, -0.017785495, -0.004589376, -0.02059233, 0.022587711, 0.0018374133, -0.018011639, 0.0013477135, -0.0131628625, -0.01656166, -0.0044829557, -0.016255703, 0.0041769976, -0.019355195, -0.010089976, 0.0018257735, -0.016042862, -0.0021250807, 0.0015904849, 0.011021154, 0.012284895, 0.020459305, -0.010542262, 0.004263464, 0.02189598, -0.031766463, -0.023532191, -0.004735704, -0.0024160738, -0.011453486, 0.004882032, -0.008773025, 0.010349375, -0.009238614, 0.011041108, 0.0017018936, 0.013129606, -0.018929513, -0.014712608, 0.023691822, 0.020605633, 0.022295056, 0.002404434, -0.0025973208, 0.0074294684, 0.006950577, -0.031553622, -0.0010259583, -0.028919721, -0.02268083, -0.019767573, 0.0013975981, -0.0030030482, -0.026352331, -0.031979304, -0.024037689, -0.019940507, 6.7635096E-4, 0.0012521015, 0.004180323, 0.0011431869, 0.013342447, 0.01880979, -0.010050069, 0.023266142, 0.017718982, -0.011386974, 0.026857827, 0.013069745, -0.012863556, 0.033043507, -7.1999995E-4, -0.017053856, -0.0019421708, 0.02876009, 0.009670946, 0.016175888, -0.013169514, -0.018796489, -0.0032092377, -0.014885542, 0.006401847, 0.008048036, -0.01765247, 0.019235471, -0.022215242, 0.008334041, 0.01346217, 0.010668636, -0.009491362, -0.032192145, 0.012637412, -0.03288388, 0.017107066, 0.04318004, 0.016215796, 0.013754826, -0.027722493, -0.009684249, 9.619658E-6, -0.013196119, -0.007329699, -0.0072897915, 0.02430374, 0.024742723, 0.026591776, 1.6565819E-4, 0.023039998, 0.016774502, 0.0039375518, 0.026352331, -0.025833532, -0.012437874, -0.025900044, 0.013122955, 0.0073629557, 0.008114549, 0.00801478, 1.5329098E-4, 0.003177644, 0.025939953, -0.00801478, -0.0012928406, -0.003924249, -0.0012163509, -0.03445358, -0.0073829093, -0.021829467, 8.3431863E-4, -0.011440184, -0.0040672515, 0.01173284, 3.6540412E-4, 0.004389838, -0.020020321, 0.033070114, -0.0014516396, 0.016415333, -0.012763786, 0.023478981, -0.033549003, -0.003024665, -0.017572654, -0.009936997, 0.0016960738, -0.014526373, 0.02362531, 0.00233127, -0.012863556, -0.004453025, 0.039960828, -0.013675011, -0.011347066, 0.024955563, -0.025061984, -0.01168628, -0.02546106, -0.018317597, -0.030728865, -0.01209866, -0.004087205, -0.00906568, 0.006531547, -0.021323971, -0.022055611, 0.018503832, 0.008101246, 0.021829467, -5.903002E-4, 0.037646186, 0.017985033, 0.019634549, -0.02273404, 0.007243233, -0.013528682, 2.5794454E-4, 0.025700506, 0.037779212, -0.015377736, -0.0012254964, -0.011859214, 0.0014549652, -0.03022337, -0.028148172, 0.029052746, 0.0120188445, 0.011120923, -0.022906972, 0.006484988, -0.032724246, 0.011147528, -0.01900933, 0.019980414, -5.936258E-4, -0.019714363, -0.016016258, 0.0021799537, -0.00108, 0.014699306, 0.001224665, -0.02159002, 0.013349098, -0.019448312, 0.005783279, -0.01576351, -0.013442216, 0.027509652, -0.022960182, 0.0052046184, 0.006528221, 0.02426383, 0.022148728, 9.835565E-4, 0.0081212, 0.03059584, -0.014832332, 0.023119813, 0.014686003, 0.006830854, 0.012038798, 0.0034553346, -0.025767019, -0.01728, -0.014313532, -0.014779122, 0.027722493, -0.01754605, 0.016109375, 0.008892748, -0.020991407, -0.0103028165, 0.014393347, -0.0071634175, 0.009843879, -0.034932468, 0.0066013853, -0.005001755, 0.023066603, 0.0014125634, -0.0022930251, -0.008666605, 0.0045727477, 0.0031477134, -0.0026422169, -0.009105588, -0.019980414, -0.026099581, -0.029957319, -0.010183094, -0.0147392135, 0.0039009696, -2.1720552E-4, -0.024383554, 1.2096997E-4, 0.01943501, -0.009391593, -0.007150115, 0.0049651726, -0.028015148, 0.001224665, 0.009524618, -0.00476896, -0.009604434, -0.007549191, 0.027935332, -0.011899121, -0.0015913163, -0.0066279904, 0.02100471, 0.029185772, -0.013309191, 0.010515657, 0.01665478, -0.00985053, -0.018011639, 0.027216995, 0.020858381, 0.020073531, -0.0025989837, -0.012145218, -0.020286372, -3.2424938E-4, 0.040865403, -0.01215187, 0.0014258659, 0.010083325, -0.0033006927, 0.050842304, 0.033176534, -0.009398244, -0.0138878515, -0.010535611, -0.015098382, -0.012211731, 0.00214836, -0.0077088214, 0.0014325172, -0.0027835565, -0.009817274, -0.031048127, -0.003927575, -0.033921476, -0.031500414, -0.012763786, 0.0059329327, 0.025048682, 0.02613949, 0.007056997, 0.0028168126, 0.022507897, 0.0014915472, -0.010043417, -0.0040938566, 0.021097828, 0.0088528395, 0.034293946, 0.0061856806, -0.021177642, -0.020086834, 0.022401476, 0.021217551, 0.001320277, 0.018716672, -0.029052746, -0.022547804, -0.012391316, 0.005247852, -0.010901431, 0.0015913163, 0.027589466, -0.02105792, -0.013262631, 0.014898844, 0.023798242, 3.0533486E-4, 0.016096072, 0.016255703, -0.01638873, -0.004762309, -0.01916896, -0.015803417, -0.005563787, -0.019089144, 0.019208867, -0.011061061, -9.062355E-4, 0.036395747, 0.013415611, 8.596766E-4, 0.008194365, -0.0085867895, -0.001529792, -0.016096072, 0.004043972, -0.004053949, 0.025367942, -0.027044062, -0.0012695611, -0.028174778, 0.008566835, -0.008407204, -0.007003787, 0.01131381, 0.032138936, -0.0011032794, -0.056402765, 0.010888129, -0.00911224, 0.01650845, -0.028041752, 0.0030562584, -0.02006023, -0.003604988, -0.01424702, -0.001948822, -0.02080517, -0.024543185, 0.020712053, -0.005124803, -0.023532191, 0.0023478982, 0.18751259, -0.014526373, 0.0032524709, 0.027908728, 0.011466789, -0.0049019856, 0.0398278, 0.03551778, -0.0053875283, 0.033389375, -0.0047556576, 1.9818704E-4, 0.006731085, -0.0014599537, 0.027403232, -0.024795933, -0.030702261, -0.026219305, -0.009311778, -0.026844524, -0.009564525, -0.0019687759, -0.0067510386, -0.026897734, 0.015909838, 0.0016270669, -0.0035650805, 0.02000702, 0.014486466, -9.527944E-4, 0.0019521477, -0.016960738, 3.5563507E-4, 0.0021799537, -0.013295888, -0.00502836, -0.010216351, -0.0028434177, 0.022853762, 0.0028982908, 0.0025424478, 0.008546881, -0.0065082675, -0.010389283, -0.0063087293, 0.01743963, -0.023851452, -0.008919353, -0.018876303, 0.021044618, -0.04482956, 0.0036947804, 0.015364433, 0.006145773, -0.013821338, -0.009245265, 0.013834641, 0.00502836, -0.011825957, 0.0055305306, 0.008892748, 0.02860046, -0.029691268, 0.020712053, -0.007988174, 0.020565726, -0.03589025, -0.02414411, 0.0057965815, -0.037220504, -0.021443693, -0.031181153, -0.0065980596, 0.005291085, -0.0037779212, -0.013522031, 0.013003232, 0.010715195, 0.008400554, 0.018663462, -0.028999535, -0.02173635, 0.006904018, 0.0023030022, -0.0144465575, -0.019301984, 0.01084157, -0.017013948, -0.0054041566, -0.029744478, -0.005247852, -0.03022337, -0.015484156, 8.804618E-4, -0.003260785, 0.0019637875, 0.021323971, 0.008985865, -0.009544572, -0.008353995, -0.034347158, 0.0345866, 0.01581672, -0.010728498, -0.02886651, -0.02373173, -0.016056165, 0.008094595, 0.023771638, -0.013575241, -0.024902353, -0.025647296, 0.0024642954, -0.010129884, 2.8735563E-5, 0.029611453, 0.006375242, -0.011220692, 0.04054614, -0.0024609698, -0.010781708, -0.02687113, 0.020100137, 0.009245265, -0.0031759813, -0.025806926, -0.04605339, -0.0024160738, -0.013415611, -0.040359903, 0.022015702, -0.007303094, 0.0053210156, -0.0032258658, -0.014819029, -0.0055039255, 0.0172933, 8.143648E-4, 0.004599353, -0.018557042, -0.0011814318, -0.025367942, 0.0070769507, 0.0052012927, 0.0090191215, -0.020818474, 0.0046060043, -0.0022597688, -0.022906972, -0.041264478, -0.025527572, -0.009464757, 0.016362123, 0.03479944, 0.037114084, -0.005098198, -0.014007574, -0.03211233, -0.012304849, 0.059488956, -0.028334409, 0.0094315, 0.019461615, 0.0024210622, -0.0030263276, 0.0019970436, -0.16846336, 0.02059233, 3.6228634E-4, -0.03227196, 0.011440184, 0.0125908535, 0.029026141, 0.0066645723, 0.007948267, -0.020672146, 0.03902965, -0.009644341, -0.041929603, -0.0056968126, -0.0030728865, 0.0144598605, -0.012391316, 0.029079352, 0.038524155, -0.0045494684, 0.024423461, -0.0017625864, -5.424942E-4, 0.0021799537, 0.014047481, 0.0017858659, 0.01902263, -0.010409237, 0.0023595379, -0.00197709, -0.035810437, 0.009032425, 0.012604156, 0.0063087293, -0.02189598, 0.017692378, -0.021337273, -0.02624591, -0.00895926, -0.013555287, 0.03426734, 0.0121585205, 0.019262077, 0.0075824475, 0.019887296, 0.015856627, 0.04150392, -0.026232608, 0.0225212, -0.020419398, -0.00790836, -0.026458751, 0.03221875, -0.015218105, -0.016308913, 0.03871039, 0.017479537, 0.0064982907, 0.0053476207, -0.001698568, -0.023385864, -0.0043033715, 0.010635381, -0.0085734865, -0.005304388, -0.007416166, -0.015869929, 0.003814503, -0.023173023, 0.01608277, -0.02237487, 0.00916545, 0.011480091, -0.009251916, 0.019408405, -0.027296811, -0.027961938, 0.004170346, -0.0048387987, 0.0055238795, -0.017413024, 0.042302076, -0.010688591, 0.021443693, -0.012650715, -0.0153112225, -8.631062E-5, -0.009863833, -0.008786327, 0.0032109004, 0.026884433, -0.01733321, -0.03022337, -0.0021799537, 0.0051115006, -0.004050623, -0.011440184, 0.015989652, 0.007476027, 0.0024676211, -2.6688218E-4, -0.0018457273, -0.023345957, 0.013482124, 0.023851452, 0.009564525, 0.010016812, 0.010189746, 0.021603324, 0.0024260506, -0.008759722, 9.943648E-4, 0.027775703, 0.009877135, -0.01943501, 0.015457551, -8.1727473E-4, -0.02692434, -0.008886096, 0.020459305, 0.05767981, -0.010169791, 0.010628729, -0.008526928, 0.0036715008, 0.0014499768, -0.085827984, -0.016761199, -0.0032109004, 0.043419488, -0.0350921, 0.043552514, 0.0027270205, 0.022281753, -0.02000702, 0.01902263, 0.008307436, -0.024942262, 0.012444526, -0.0020236487, 0.0067809694, 0.0067543644, -0.01823778, 0.0036182906, -0.010229653, 0.014060784, -0.0033455887, 0.0041038333, 0.005899676, -0.010309468, -0.0065515004, 0.037859026, -0.025421152, 0.027589466, 0.0047589834, 0.021337273, 0.009817274, -0.026312422, 0.018849699, -0.03498568, -0.03969478, -0.02105792, -0.0049385675, -0.023053301, -0.0011423556, -0.055711035, 0.0042468356, 0.011327112, 0.0031377366, -0.0062688217, -0.024849143, 0.0054407385, -0.020512516, 0.024995472, -0.0022098843, -0.02342577, -0.01902263, -0.012617459, -0.026631683, -0.01204545, 0.012803694, 0.019780876, 0.03269764, 0.0068109003, -0.021230852, -0.031127943, -0.01640203, -0.014140599, -0.031447202, 0.016934132, 0.012032147, 0.02169644, 0.0031842953, -0.019528128, 0.00447963, -0.018796489, -0.029132562, 0.017585957, -0.03913607, -0.0068375054, -0.013156211, 0.0021965818, -0.023212932, -0.014340137, 0.027270205, -0.025208311, -0.001006836, -0.031713255, 0.015351131, -0.010608776, 0.015949745, 0.009930345, 0.016428636, 0.01722679, -0.02064554, -0.042514917, -0.012378013, 0.022946881, -0.004133764, 0.0038943184, -0.009544572, 0.012683971, 0.0057067894, 0.0011132562, -0.0065348726, 0.0056469277, -0.010775057, 0.010775057, -0.073376805, 0.025487665, -0.017679075, -0.0049219397, -0.004017367, -6.493302E-4, 0.008600092, 0.0078618005, -0.0057932558, 0.017878613, -0.0024393531, 7.1875285E-4, 0.0027652653, 0.0041304384, 0.0057699764, 0.016202493, 0.020392792, -0.011114271, 0.009471408, 0.013242678, -0.0214836, 0.020579029, 0.027961938, 0.015643787, 9.469745E-4, 0.0115865115, -0.0018906234, -4.975981E-4, -0.015736904, -0.01508508, 0.034719627, -0.02241478, 6.0017315E-5, -0.012244987, -0.0062089604, -0.024024386, 0.0051048496, 0.0038012005, 0.01843732, -0.006910669, -0.0048121936, -0.007662263, 0.010921385, -0.0041570435, -0.0058298376, 0.021456996, -0.01807815, 0.0058231866, 0.009424849, 0.008972563, 0.02426383, 0.008207667, 0.002150023, -0.011393625, 0.009072332, -0.010715195, 0.05767981, 0.004117136, -0.0025208313, -0.03232517, 0.026644986, -7.5866043E-4, 0.0118791675, -0.03801866, -0.008653302, 0.006491639, 0.017732285, -0.010914734, -0.0014541339, -0.016867619, -0.012131915, -0.00828083, 0.0040107155, 0.036635194, 0.013941062, 0.012803694, 0.008480369, 0.0016752885, -0.003994087, 0.02016665, 0.021071222, 0.0053509464, -0.03578383, 0.02027307, -0.0070170895, 0.010395935, -0.006265496, 0.011799352, 0.007037043, 0.002858383, 8.7630475E-4, 0.011453486, 0.031260967, 0.006494965, 0.0193818, 0.006328683, -0.026511962, -0.024330344, -0.004705773, 0.028254593, -0.008879445, -0.004043972, -0.0059528863, -0.025620691, -0.019927204, -0.0016902538, -0.03048942, -0.021762954, 0.016588267, 0.011832609, 0.038976442, 0.0061524245, -0.015976349, -0.0014000923, -0.046691913, 0.010568867, -0.010987897, -0.002941524, -0.016308913, 0.023651915, 0.005161385, 0.004892009, 0.029345402, -0.0040206923, 0.06034032, 0.007895057, 0.014020876, -0.03309672, -0.0024077597, -0.006052655, -0.00657478, 5.4197455E-5, -0.009737459, 0.011998891, -0.009458105, 1.3167436E-4, 0.003189284, 0.041876394, -0.024769329, 0.07422817, 0.0013127944, -0.006431778, 0.015231407, -0.009498013, 0.01126725, 0.016681384, 0.013901154, -0.022960182, -0.007056997, -0.004888683, -0.0105954725, 0.002221524, -0.04725062, 0.0018407389, -4.142494E-4, 0.01644194, 0.0100101605, -0.024011083, -0.014952054, -0.014659398, -0.008380599, 0.009444803, 0.005873071, 0.008706512, -0.009364988, 0.011526651, -0.012950022, -4.6143183E-4, -0.029691268, 0.020233162, -0.031287573, 0.0062455423, 0.007296443, 0.028946325, -0.022747342, 4.955196E-4, 0.0072299303, 0.016774502, 0.022747342, -0.023944572, -0.012610807, -0.018317597, -0.009258567, 0.031154547, -0.003378845, -0.0110278055, -0.037539765, -0.011752794 ], + "id" : "f66fe5b3-bbb3-45c8-a0ac-09b17cfbd21f", + "metadata" : { + "source" : "movies.csv" + } + }, + "a26971ef-1b24-4891-906a-b0bb86ff220c" : { + "text" : ",/sDAavcrOSbFnFt4zpjNqzaoNr3w.jpg,24021-50619-50620-8966-354279-58595-411-32657-675-767-12444-2454-674-222935-672-10140-12445-673-118-950-157350\r\n1858,Transformers,Adventure-Science Fiction-Action,en,Young teenager Sam Witwicky becomes involved in the ancient struggle between two extraterrestrial factions of transforming robots ��� the heroic Autobots and the evil Decepticons. Sam holds the clue to unimaginable power and the Decepticons will stop at nothing to retrieve it.,17.234,DreamWorks Pictures-Di Bonaventura Pictures-Tom DeSanto/Don Murphy Production,6/27/07,150000000,709709780,143,Released,Their war. Our world.,6.8,9947,Shia LaBeouf-Megan Fox-Josh Duhamel-Tyrese Gibson-Rachael Taylor-Anthony Anderson-Jon Voight-John Turturro-Michael O'Neill-Kevin Dunn-Julie White-Amaury Nolasco-Zack Ward-Patrick Mulderrig-Luis Echagarruga-Michael Trisler-Brian Shehan-Ashkan Kashanchi-Rizwan Manji-William Morgan Sheppard-C.J. Thomason-Bernie Mac-Carlos Moreno Jr.-Johnny Sanchez-John Robinson-Travis Van Winkle-Peter Jacobson-Glenn Morshower-Frederic Doss-Charlie Bodin-Joshua Feinman-Chris Ellis-Brian Stepanek-Steven Ford-Michael Shamus Wiles-Andy Milder-Craig Barnett-Brian Prescott-Scott Peat-Colleen Porch-Jamie McBride-Wiley M. Pickett-Samantha Smith-Ravi Patel-Rick Gomez-Andy Domingues-Mike Fisher-Colin Fickes-Tom Lenk-Jamison Yang-Esther Scott-Madison Mason-Jeremy Jojola-Jessica Kartalija-Andrew Altonji-Andrew Lewis Caldwell-J.P. Manoux-Pete Gardner-Sophie Bobal-Laurel Garner-Chip Hormess-Ray Toth-Michael Adams-Ron Henry-Benjamin Hoffman-Michael McNabb-Jason White-Adam Ratajczak-Maja Kljun-Michelle Pierce-Odette Annable-Bob Stephenson-Mason Rock Bay-Peter Cullen-Mark Ryan-Darius McCrary-Robert Foxworth-Jess Harnell-Hugo Weaving-Jimmie Wood-Reno Wilson-Charlie Adler-Michael Bay-Colton Haynes-Brian Reece-Robert Gerrits,destroy-transformation-alien-based on toy-robot-duringcreditsstinger-teenage hero-griffith observatory,/sR2xIEBQUoIVPGZOOfnMrpRcUCV.jpg,/77P56ZcL8M9Cw7FIptMIGjhNJoj.jpg,8373-38356-91314-36658-36668-2080-558-607-36657-608-20526-557-1979-49538-559-9738-534-41154-285-335988-2048\r\n102382,The Amazing Spider-Man 2,Action-Adventure-Fantasy,en,For Peter Parker life is busy. Between taking out the bad guys as Spider-Man and spending time with the person he loves Gwen Stacy high school graduation cannot come quickly enough. Peter has not forgotten about the promise he made to Gwen��s father to protect her by staying away but that is a promise he cannot keep.", + "embedding" : [ 0.0110147325, -0.045038015, -0.00451174, -0.03217757, -0.015956476, 0.020891607, 0.005302287, -0.014792157, -0.018549735, -0.046175875, 0.033712357, 0.02558858, 0.032521576, -0.0053651338, 0.016842948, 0.008170087, 0.0203756, -0.02007129, 2.935608E-4, -0.028975692, -0.002389833, -0.002740452, -0.018999586, 0.009182251, 0.007435771, 0.007025613, 0.020693142, -0.015877092, -0.0055966745, -0.019290667, 0.01162997, -0.0167371, -0.013184601, -0.023101168, -0.016816486, -0.00618545, 0.009175636, -0.016154941, 0.019184818, -0.016895872, 0.009612256, 0.018721737, -0.009294714, -0.001820904, -0.019886058, 0.0069925357, -0.0035161143, -0.0112528885, -0.0042967377, 0.026448589, 0.010862577, 0.030140013, -0.029346157, -0.024821186, -0.023061475, -0.016538637, -0.010035645, 0.015916783, 0.019383283, 0.006820534, 0.022267621, -0.012437055, -0.032071725, -0.016790025, -0.02458303, -0.01570509, -0.01206659, -0.011967357, 0.0015414009, -0.0030050704, 0.043132763, 0.019092202, 0.0152817005, -0.01344922, 0.011332274, -0.023895023, -0.011193349, -0.0050012837, -0.015387548, 0.0034896524, 0.012873675, -0.004782974, -0.010075337, -0.0060299872, 0.009016865, 0.012926599, -0.0018457118, 0.0059539094, -0.032283418, 0.008077471, 0.013177986, 0.028790459, 0.0056264442, 0.00749531, 0.004257045, 0.020521142, -0.0071777683, 0.022929166, -0.01643279, -0.037178855, 0.0027123364, -0.009268252, -0.0037278088, -0.011405044, -0.01097504, 0.0027206058, 0.010776576, 0.008699323, 0.011186734, -0.010961808, 0.0066783014, 0.0036914237, 0.027520292, -0.03707301, 8.5587446E-5, 0.0016133441, 0.01573155, -0.016128479, -0.0046539726, -0.02807599, 0.0153610855, 0.028446456, 0.009585794, -0.0404072, 0.031568952, 0.024834417, 0.0042801993, -0.0013388026, -0.0044488935, -0.014778926, 0.01599617, -0.006238374, 0.04101582, -0.0018043653, -0.028684612, 0.048213433, -0.03344774, -0.0075151566, -0.028763998, -0.044191238, 0.031939417, 0.030642787, -0.015294932, -0.021553151, -0.015466933, -0.00944687, 0.011550584, -0.005275825, 0.015268469, 0.016406327, 0.025522424, 0.015017082, 0.0106111895, 0.012655365, 0.037152395, 0.0125825945, 0.006357452, -0.0015099775, -0.001734903, -4.387907E-5, -0.0041214284, 0.0025271038, 0.009704872, -0.025509194, 0.0053651338, 0.025535656, 0.008090701, 0.0027735294, -0.011623354, -0.009149174, -0.015824167, 0.020626988, -0.015824167, 0.019383283, -0.0068337647, 0.01816604, 3.5227297E-4, -0.014805388, -0.034850217, -0.015625704, 0.014209997, 0.0038402714, 0.025998738, 0.035141297, -0.002631297, 0.008831632, 0.013475682, -0.025138728, 0.014157074, -0.015797706, 0.005070746, 0.027229212, 0.010313494, -0.019078972, -0.6558297, -0.014368768, 0.0046506645, -0.020468216, 0.002146715, 0.02312763, 0.009215329, -0.0043628924, -0.034664985, -0.00657907, -0.022307314, 0.013310295, 0.015572781, -0.02107684, -0.011887972, -0.019396514, 0.0076143886, -0.009896721, 0.021857463, 0.020613758, -0.02400087, 0.016856179, -0.0022261005, -2.396035E-4, 0.004716819, -0.007819467, -0.0020325985, -0.012291515, 0.01774265, -0.0017944421, -0.03315666, 0.0023203709, 0.015559549, 0.00563306, 0.030722171, -0.005143516, -0.009837181, 0.043318, 0.030351706, 0.027705524, -0.023458403, -0.011973973, 0.020137444, 0.0072240764, -0.008977172, 0.013945378, -0.0044588167, -0.008037778, 7.8310445E-4, -0.010485495, 0.002050791, -6.553435E-5, 0.0032118033, 9.6254866E-4, 0.009195482, 0.0019300589, 0.016816486, -0.021738384, 0.012549518, -0.016657716, -0.0011138772, 0.03008709, 0.0052592866, 0.006744456, 0.005791831, 0.018099884, 0.003674885, -0.00734977, -0.014302613, -0.012013666, 0.009790873, 0.004587818, -0.0066452245, -0.005133593, 3.1464756E-4, 0.0036550388, 0.025006419, 7.028921E-4, 0.0023832177, 0.015056775, 0.01397184, -0.0016844602, -0.017253106, 0.0022525624, 0.022810088, -0.008309011, -0.040221967, 0.009572563, 0.00858686, -3.369747E-4, 0.012516441, 0.02168546, -0.00944687, -0.018496811, -0.01935682, -0.0028462994, -0.0088779405, 0.008884556, 0.025654733, -0.045646638, -0.0129067525, -0.00967841, 0.027308598, -0.0024063718, 0.038766567, 0.005427981, -0.012073205, 0.0021748308, 0.016670946, -0.028155375, -0.0056495983, 0.010604574, -0.014871542, -0.0022360238, -0.0152817005, -0.03098679, 0.01395861, 0.012198899, -0.0074754637, -0.021989772, 1.6238874E-4, 0.0013057254, -0.004042043, -0.016644483, 0.0015356124, 0.024186103, 0.0079517765, -0.0018870585, -9.3029835E-4, 0.008335473, -9.2533673E-4, 0.011405044, 0.012529671, -0.019118665, 0.0014281113, 0.0066353013, 0.006671686, -0.005980371, 0.011424891, -5.528039E-4, -0.020335907, 0.009208713, -0.018946663, -0.004200814, -0.018483581, -0.017689725, -0.025403347, -0.0072571537, 0.004389354, 0.0017315953, -0.016618023, 0.009301329, 4.804474E-4, 0.0143952295, 0.004376123, -0.010968424, -0.02545627, -0.017808804, 0.014223228, -0.015003852, 0.0044389702, 0.02852584, -0.0020838683, -0.020296216, 0.011484429, 0.013667529, -0.0120202815, 0.022122081, -0.007621004, -0.030431092, 0.023881791, -0.023842098, -0.011689508, 0.02325994, -0.012026897, 0.026263356, -0.024675647, 0.012728135, 0.015017082, -0.008401628, -0.011682893, -3.7170586E-4, -0.02487411, 0.011517507, 0.015387548, 0.026514743, 0.023193784, -0.021116532, -0.021116532, 0.0011899549, -0.013435989, -0.010604574, 0.0041048895, 0.008930864, -0.009526255, 0.01716049, 0.0032084957, 0.0036285769, -0.003674885, 0.017530955, 0.03384467, 0.017001718, 0.005361826, -0.0189202, 0.011127195, -0.034823753, -4.9078406E-4, -0.033421278, 0.0093608685, -0.010492112, 0.022942398, -0.008183317, -0.017094335, -0.014236459, 0.0050939, 0.020282984, -0.015189084, 0.018602658, -0.023590712, 0.008203164, -2.0456227E-4, -0.00784593, 0.011021348, 0.0028892998, -0.021579614, 0.03799917, 0.023365786, -0.016895872, -0.00828255, -0.025787042, -0.014170304, -0.010511958, 0.0051832087, 0.0012412247, -0.004710204, 0.018827584, 0.034823753, 2.476661E-4, 0.048054665, -0.0078723915, 0.004343046, 0.023299633, 0.015586011, -0.005451135, -0.02356425, -0.0077202357, 0.028737536, 0.006380606, -0.014329075, 0.025720889, -0.024463952, 0.010763345, -0.01162997, 0.0017679803, 0.014858311, -0.0054015187, -0.011451352, 0.012953061, 0.04143921, 0.014726003, 0.011292581, -0.016393097, 0.022519007, 0.014037995, 0.016035862, 0.007991469, -0.014183535, -9.501447E-4, 0.007561465, -0.019661132, -0.012595826, -0.016790025, 0.010141492, -0.011563815, -0.0051865163, -0.009890105, -0.013277218, 0.0028744151, 0.0012900137, 0.02443749, 0.0064368374, -0.037284702, 0.01157043, 0.022757165, -0.008037778, -0.026435357, -0.019952212, -0.0072373077, -0.0048193587, -0.006979305, -0.011345505, 0.03418867, -0.016498944, 0.013541836, -0.030404631, -0.002924031, 0.017782342, -0.014567232, 0.023551019, 0.017557416, 0.0017580572, 0.01817927, -0.005907601, -0.010703806, 0.02370979, -0.009003634, 0.012853828, -0.006079603, -0.014117381, -0.012437055, -0.0014181881, -0.0022608317, -0.037866864, 0.001979675, -0.029610775, -0.017676495, -0.007925315, -0.010161338, 3.1506104E-4, 0.004101582, -0.011524122, -0.02180454, -0.0069462275, 0.0061722193, 0.06721302, 0.03633208, 0.008937479, -0.0033689204, -0.015109698, 0.0024907186, -0.006731225, -0.013118447, -0.013680761, -0.009704872, 0.0033904205, 1.326192E-4, 0.026289817, 0.012516441, 0.01542724, -0.0045845103, -0.0056892913, 0.0031489565, -0.009638717, -0.02168546, -0.011186734, -0.01817927, 0.014448153, 0.02488734, 0.030616324, -0.016935565, 0.011960742, 0.018298348, -2.5676235E-4, 0.0036682696, -0.00560329, 0.012483363, 0.0029571082, 0.0026164125, 6.739494E-4, -1.17631054E-4, 0.03125141, 0.020666681, 0.014024764, 0.02196331, -0.003542576, 0.011762278, 0.011312428, -0.017478032, 7.3969056E-4, -0.018536504, -0.0033424585, 0.018602658, 0.031304333, -0.03244219, 0.019938981, 0.0066816094, -0.011742433, 0.0079120835, 0.010452419, -0.007230692, -0.0065923007, -0.017980807, -0.036041, 0.008408243, 0.016631253, -0.045143865, 0.010181185, -0.005811677, 0.006016756, -0.016525406, -0.007012382, -0.022069158, 0.0059836786, 0.015916783, 0.0018572889, -0.028737536, -0.013932148, -0.004865667, -2.6627205E-4, 0.0043992773, 0.012615672, -0.0012395708, 0.005011207, 0.010855962, -0.036279153, -0.028843382, 0.019674363, -0.022863012, 0.0021103302, 0.0048193587, -0.0083156265, 0.019872826, -0.0060597565, 0.014143842, 0.020719605, -0.0053552105, -0.005216286, -0.0032266881, 0.038422562, 0.0053949035, 0.015149391, 0.0035624225, 4.597741E-4, 0.0050078994, 0.009056558, -0.03085448, -0.012483363, -0.016763562, -0.0048822057, -0.0049913605, 0.018973125, 0.003324266, -0.019793442, -0.028869845, -0.028790459, -0.0074225403, -0.009142558, -0.010459034, 0.01055165, 0.0013867647, 0.024688877, -0.0019399821, 0.014236459, 0.0102473395, -0.0014851696, -0.010287032, 0.012695057, 0.024569798, 0.017425109, 0.0145143075, -0.017689725, -0.03170126, -0.0056495983, 0.021791307, 0.0017497878, 0.0026709898, -0.00429343, 0.0048954366, -0.020494679, -0.016856179, 0.012026897, 0.004610972, 0.009698257, 0.0010295302, -0.01171597, 0.006615455, -0.002596566, 0.0029323003, -0.0026048354, -0.025138728, -0.0083553195, -0.0024543337, 0.018933432, 0.03707301, 0.0016042478, 0.023352556, -0.027599677, -0.0014504385, -0.002740452, -0.037893325, -0.040063195, -0.010981655, 0.043265074, 0.0129861375, 0.040962897, 0.00116432, 0.014831849, 0.01730603, 0.017332492, 0.016856179, -0.008924249, 0.015109698, -0.03678193, 0.020547602, 0.0143952295, 0.034268055, 0.0031357256, 0.0079517765, 0.005556982, 0.018801123, 0.006853611, 0.018139577, 0.0106905745, -0.024953496, -0.009367484, 0.027229212, -0.026131047, 0.004415816, -0.033103734, -0.012463517, 0.0276526, -0.0068271495, -0.016670946, 0.0030976867, 0.03519422, 0.005083977, 0.004753204, -0.012417208, 0.016697409, -0.014580462, -0.014064457, -0.027017517, -6.582377E-4, 0.00836855, -0.01861589, 0.0030414553, -0.01542724, -0.022241158, 0.006526146, 0.012351054, -0.008752246, -0.02982247, 0.010723652, 4.0685048E-4, -0.0018639044, -0.037761018, -0.010895654, -0.042788763, -0.011477814, -0.018880509, -0.011140426, 0.011543969, -0.019687593, -0.046308182, 0.029504929, -0.005970448, 0.04731373, 0.0135484515, 0.042418297, 0.03432098, 0.01847035, -0.02253224, 0.0043099686, -0.026091354, -0.009135943, 0.03172772, 0.026369203, -0.014223228, -0.0047432813, 0.0072637694, -0.022902705, -0.010108415, -0.036623158, 0.021486998, 0.021434074, 0.03069571, -0.019026048, 0.0035789611, -0.027440906, 0.015559549, 2.7144037E-4, 0.0062185274, 0.0158374, -0.021063607, -0.022915935, -0.008481013, -0.008461167, 0.0101878, 5.7161666E-5, -0.02676613, 0.025165189, -0.014633386, 0.011669662, -0.011305812, -0.012767828, 0.028896306, -0.008269318, 0.023154091, 2.0890366E-4, 0.012747982, -0.0033755358, 0.0021334842, 0.009876874, 0.028922768, -0.026686745, 0.021778077, -0.0070917676, -0.0012230322, -0.0013503797, 0.016234325, -0.010763345, -0.013865993, -0.03649085, -0.009976106, 0.02298209, 0.026805824, -0.01397184, -0.010882423, -0.015175853, -0.014659848, 0.015308162, 0.0026097968, 0.006608839, -0.03903118, 0.0036914237, 0.009526255, 0.0053816726, 0.00252545, -0.0013627837, 0.0033871129, -0.0107699605, 0.03561761, -9.327791E-4, -4.8086088E-4, -0.002097099, -0.003846887, -0.040989358, -0.016975258, -0.011940896, -0.024927033, 0.007938546, -0.022492547, 0.0080047, 0.0040949667, -0.0014454769, -0.012886906, -0.0010808, -0.0050178226, -0.0067643025, 0.022519007, -0.024067024, -0.018073423, 6.574108E-5, 0.020997453, 0.009916566, -0.0019482514, 0.015162623, -2.427045E-4, 0.028605226, -0.018589428, 0.006612147, 0.005725676, -0.023484865, -0.015347855, 0.009294714, 0.023154091, 3.5392682E-4, 0.013012599, -0.022095619, -0.0032713425, -0.013985071, 0.024371335, -0.005080669, -0.0012685135, 0.007978238, 0.015242008, 0.022267621, 0.008666246, -0.0074225403, -0.025826735, -0.0019614825, -0.006201989, -0.00836855, -4.1119187E-4, 0.01395861, -0.0014157073, -4.4240855E-4, -0.013601375, -0.016221095, -0.011590277, -0.022029465, -0.028181838, -0.00698592, 0.025271038, 0.040354274, -0.0033341893, -0.0026561052, 0.019211281, 0.008494244, 0.028393531, -0.018867277, 0.0031820338, 8.798555E-4, 0.026223663, 0.003456575, 0.024278719, -0.051732857, -0.007303462, 0.008203164, 0.006450068, 0.01381307, 0.0340299, -0.018642351, -0.004128044, -0.008752246, 0.0056264442, 0.0024361413, 0.0015984592, 0.032204036, -0.034215134, -9.542793E-4, 0.0028032989, 0.01599617, 0.004174352, -0.0019399821, 0.019912519, -0.01569186, -0.0043794313, -0.0153213935, -0.029584315, -7.7194086E-4, -0.026633821, 0.013760146, 0.0057124454, -5.8588124E-4, 0.02123561, 0.029796008, 0.007336539, -0.004935129, 0.003213457, 0.013224294, -0.016406327, 0.004769743, -0.0037708092, 0.03127787, -0.015916783, 0.024993189, -0.037708092, 0.009962874, -0.006966074, 0.012053358, -0.005629752, 0.023630405, 0.010253955, -0.054670118, -0.0028115683, -0.0010948578, 0.011054425, -0.014937697, -3.6281635E-4, -0.018126346, 0.0073563857, -0.0029901855, 0.0013528605, -0.022638086, -0.025760582, -0.0034499597, 0.0057653687, -0.013224294, 0.011524122, 0.18142223, -0.02327317, 0.015334624, 0.05019807, 0.004706896, 0.0053651338, 0.021314995, 0.014037995, -0.009936413, 0.002487411, -0.005504058, 0.016538637, -0.0123709, -0.001141166, 0.009063173, -0.0040486585, -0.020322677, -0.01701495, -0.022227928, -0.033765282, -0.013118447, -0.012575979, -0.019581746, -0.029637238, 0.011940896, 0.0057455227, -0.01701495, -0.0021913694, 0.022929166, 0.008553783, -0.023789175, -0.004587818, 0.005080669, 0.017530955, -0.010181185, -0.0018639044, 0.00713146, 0.009208713, 0.01817927, 0.008593475, -0.0047730505, -0.005097208, 6.79738E-4, -0.011054425, 0.003989119, 0.021182686, -0.034400366, -0.0059836786, -0.014143842, 0.013019215, -0.028711073, -0.008044393, 0.012675212, 0.020918068, -0.009347637, 0.0024592953, 0.0041809673, 0.0044323546, -0.007839314, -6.8594E-4, 0.004769743, 0.026236894, -0.035591148, 0.0018820969, 0.008275934, 0.014223228, -0.025244575, 0.0070520747, 0.02544304, -0.032098185, -4.4364893E-4, -0.020388832, -0.024212565, -0.009169021, -0.014381999, -4.7962047E-4, 0.0019300589, 0.010075337, 0.022863012, 3.072052E-4, -0.012668596, -0.012754597, 0.01497739, -0.01717372, -0.0135484515, -0.012747982, 0.013323526, -0.0209313, 0.0049218982, -0.0028859922, 0.0026776053, -0.01717372, -0.003239919, -0.009294714, -0.004184275, 0.0045216633, 0.02531073, 0.020838683, -0.00548752, -0.0024741802, -0.042497683, 0.0240141, 0.026236894, -0.0048491284, -0.013865993, -0.01468631, 0.006020064, 0.0174648, 0.007078537, -0.012774443, -0.0034631905, -0.030933866, 0.0026676822, -0.01017457, 0.0023749482, 0.01890697, -0.0020921375, -0.006066372, 0.04432355, -0.019714056, -0.0037410397, -0.005262594, 0.0061424496, -0.008983787, -0.0015678628, -0.036120385, -0.037284702, 0.006744456, -0.0018672121, -0.027361521, 0.014461384, -0.020825451, 0.020838683, 0.017795574, -0.002388179, -0.011801971, 0.018986356, 0.012231976, 0.01395861, 0.005814985, -0.0017150566, -0.016154941, 0.004412508, 0.011722586, 0.004597741, -0.017822035, 0.015334624, 0.006443453, 0.0070653055, -0.0404072, -0.004663896, 0.005107131, 0.011398428, -0.0046440493, 0.031965878, 0.012820751, -0.030563401, -0.041783214, -0.011854895, 0.027149826, -0.034135748, 0.02109007, 0.0026825669, -0.01644602, -0.03633208, -0.020428523, -0.1690381, -0.0054048267, 0.018933432, -0.023365786, 0.009572563, 0.027335059, 0.022995321, 0.024186103, 0.020322677, -0.022968858, 0.030536938, -0.0035954998, -0.034717906, 0.0046208953, 0.0102076465, 0.011319043, -0.01346245, 0.034850217, 0.010862577, -0.0033226123, 0.02762614, -0.007594542, -0.010214262, -0.0029802623, 0.0056495983, 0.021288533, 0.016962025, 0.019436207, 0.0031588797, -0.0101018, -0.027573215, -0.007852545, 0.0030629556, 0.0031704567, -0.020018365, 0.007892238, -0.0106508825, -0.011160272, -0.0125429025, 0.007898853, 0.02197654, 0.012040128, 0.00858686, 0.011186734, 0.01120658, 0.015109698, 0.025985507, -0.025218114, 0.01541401, -0.030140013, 0.0026213739, -0.021275302, 0.007958392, -0.009380715, 0.013839532, 0.019886058, -0.024807956, -0.0043628924, 0.014448153, -0.0023617174, -0.021129763, -0.0070917676, 0.014421691, -0.018364502, -0.0055239047, -0.0225587, -0.006367375, 0.015638934, -0.03778748, 0.009989337, -0.0089573255, 0.006866842, 0.011113964, 0.0072174612, 0.0052195936, -0.0040387353, -0.038422562, 0.014606924, 0.0012073205, 0.021381149, -0.0058050617, 0.04556725, -0.009433638, 0.019594977, 0.016260788, -0.018854046, 0.0071976148, -0.008805171, -0.011054425, -0.015652167, -0.001578613, -0.0057190605, -0.018430658, -6.884208E-4, 0.001286706, 0.009632102, 0.009632102, 0.01541401, 0.014011533, -0.01745157, -0.0052427477, -0.0061457576, -0.010009183, 0.018152809, 0.016948795, 0.032230496, 0.011874741, 0.019859595, 0.030484015, -0.012450286, -0.0014487846, -5.948741E-5, 0.013561682, 0.0053452873, -0.010373033, 5.0277455E-4, -0.0101282615, -0.013263986, 0.006731225, 0.01745157, 0.02429195, -0.01352199, -0.010287032, -0.011094118, -0.009962874, -0.03633208, -0.09012896, 0.0048822057, 0.024688877, 0.043873698, -0.027679063, 0.023775944, -0.019714056, 0.015017082, -0.015347855, 0.023762714, -0.0022409854, -0.029160924, 0.013012599, -0.019872826, 0.010862577, -0.015890323, -0.005910909, -0.010373033, -0.017702958, 0.023511326, -0.009327792, 0.0041545057, 0.006516223, 0.0075680804, -0.032256957, 0.014527539, -0.036014535, 0.017411876, 0.0023021782, 0.007462233, 0.01718695, -0.03125141, 0.027970143, -0.04651988, -0.023815637, -0.01878789, -0.025376884, -0.043450307, 0.0047432813, -0.04321215, 2.0745653E-4, 0.0033441123, 0.01499062, -0.03260096, -0.018695274, -0.00973795, -0.018721737, 0.037893325, -0.015572781, -0.035961613, -0.014329075, -0.015308162, -0.026435357, 0.004200814, 0.027255673, 0.01803373, 0.023749482, 0.008467782, -0.0077863904, -0.013012599, -0.015824167, -0.005861293, -0.024622723, 0.005275825, 0.009777642, 4.5233173E-4, -0.011940896, -0.014289382, 0.018946663, -0.028763998, -0.007971623, 0.013323526, -0.023445172, -0.018060192, -0.02791722, -0.014792157, -0.015533088, -0.013601375, 0.02385533, -0.036437925, -0.002002829, -0.021209149, 0.01628725, -0.013422757, 0.0136278365, 0.0082362415, 0.012939829, -0.007766544, 0.0044025853, -0.026514743, 9.2781754E-4, 0.025535656, 0.016763562, -0.012695057, -0.019158358, 0.019793442, 0.00931456, 0.013197833, 0.0019664438, 0.018218962, 0.0036318847, -0.01790142, -0.07462233, 0.013270603, -0.009857028, -0.010670729, -0.014501077, -0.021923617, 0.016498944, 0.003216765, -0.0063772984, 0.021262072, -0.0040718126, 0.0044786627, -0.007098383, -0.002790068, -0.021301765, 0.0069462275, -0.0027272212, 5.39573E-4, -0.0045547406, -0.0033159966, -0.033976976, 0.005702522, 0.035220683, 0.017425109, -0.007905468, 0.03315666, 0.0077797747, 0.008487629, -0.0074093095, -0.020137444, 0.04265645, -0.025363654, -0.0076739276, 0.002001175, -0.011835049, -0.01730603, -0.01585063, 0.009122713, 0.008328858, 0.018390965, -0.016128479, -0.034532674, -4.953322E-4, -0.012701673, 0.007812852, 0.021513458, -0.02152669, -0.0012453593, 0.015903553, 0.01905251, 0.033262506, 0.008553783, -0.020335907, -0.017650032, 0.025853198, -0.025628272, 0.056945834, -0.00908302, 0.0079120835, -0.013879224, 0.017769111, 5.88362E-4, 0.017107567, -0.024384566, 0.011411659, 0.017954344, -0.0027966835, -0.015242008, -8.5432395E-5, -0.03654377, 0.009466716, -0.0143952295, 0.029134464, 0.034532674, 0.012569364, 0.017067874, -0.02370979, 0.007806237, 0.0011676277, 0.019436207, 0.021711923, -0.009731334, -0.025165189, 0.024543338, 0.011021348, 0.04551433, -0.0013660914, 0.014673078, -0.009109481, 0.004597741, -0.013614606, 0.013760146, 0.020560833, -0.0033705742, 0.011080887, 0.016935565, -0.009466716, 0.0016364981, -0.0055305203, 0.029690161, 0.002912454, -0.005047592, -0.010412726, -0.022571933, -0.029293234, -0.0021169456, -0.01644602, -0.02341871, 0.009069788, 0.027546754, 0.022241158, 0.008322242, -0.01286706, 0.003165495, -0.03678193, 0.036596697, -0.016697409, -0.030669248, -0.021169456, 0.046361107, 0.026514743, 0.009989337, 0.026078124, -0.008811786, 0.059327397, 0.018430658, 0.027030747, -0.019198049, 0.0014835157, 0.0087324, -0.0016910756, -0.0075283875, -0.015109698, 0.011848279, -0.011848279, -3.839031E-4, -0.003883272, 0.03416221, -0.016419558, 0.06594285, 0.027890757, 0.0051038233, 0.010439187, -0.026435357, 0.0012023589, 0.0129861375, 0.024252256, 0.0063541443, -0.0053816726, 0.0028711073, -0.010968424, 0.003069571, -0.028234761, -0.0071579223, 0.009909951, -0.0037873478, 0.0084743975, -0.0060829106, -0.017253106, -0.0028909538, -0.014937697, 0.021169456, 0.0046175877, -0.018298348, -0.01730603, 0.031198485, 8.782016E-4, -0.012073205, -0.035141297, -0.011411659, -0.014342306, -0.015559549, -0.0062582204, 0.033791743, 0.016353404, -0.012331207, -0.010320109, 0.024358105, 0.0087324, 0.00320188, 0.0014173612, -0.019555284, -0.008375166, -1.0512371E-4, -0.0019019432, 0.008229625, -0.030457554, -0.019674363 ], + "id" : "a26971ef-1b24-4891-906a-b0bb86ff220c", + "metadata" : { + "source" : "movies.csv" + } + }, + "d5ad9d68-360a-467a-9d93-ab07ddb2c2d3" : { + "text" : "Abrams-Jeff Garlin-Karl Urban-Kevin Smith,space opera,/db32LaOibwEliAmSL2jjDF6oDdj.jpg,/jOzrELAzFxtMx2I4uDGHOotdfsS.jpg,181808-140607-1895-1894-1893-348350-11-330459-1891-1892-52249-271172-12180-429617-512200-299534-475557-551591-432134-161704-82938\r\n301528,Toy Story 4,Family-Adventure-Animation-Comedy-Fantasy,en,\"Woody has always been confident about his place in the world and that his priority is taking care of his kid whether that's Andy or Bonnie. But when Bonnie adds a reluctant new toy called \"\"Forky\"\" to her room a road trip adventure alongside old and new friends will show Woody how big the world can be for a toy.\",109.033,Walt Disney Pictures-Pixar,6/19/19,175000000,1073395000,100,Released,Get Ready to Hit the Road,7.51,9236,Tom Hanks-Tim Allen-Annie Potts-Tony Hale-Keegan-Michael Key-Madeleine McGraw-Christina Hendricks-Jordan Peele-Keanu Reeves-Ally Maki-Jay Hernandez-Lori Alan-Joan Cusack-Bonnie Hunt-Kristen Schaal-Emily Davis-Wallace Shawn-John Ratzenberger-Blake Clark-June Squibb-Carl Weathers-Lila Sage Bromley-Don Rickles-Jeff Garlin-Maliah Bargas-Good-Jack McGraw-Juliana Hansen-Estelle Harris-Laurie Metcalf-Steve Purcell-Mel Brooks-Alan Oppenheimer-Carol Burnett-Betty White-Carl Reiner-Bill Hader-Patricia Arquette-Timothy Dalton-Flea-Melissa Villase��or-Jeff Pidgeon-John Morris,friendship-cartoon-rescue mission-sequel-buddy-cowboy-duringcreditsstinger-toy comes to life,/w9kR8qbmQ01HwnvK4alvnQ2ca0L.jpg,/q62bpQ67qaXY0u6b2wFEnQYIbPd.jpg,863-10193-1028506-862-429617-420818-260513-221518-585-475557-2062-404368-260514-49013-330457-920-508439-62211-12-354912-299534\r\n10193,Toy Story 3,Animation-Family-Comedy,en,Woody Buzz and the rest of Andy's toys haven't been played with in years. With Andy about to go to college the gang find themselves accidentally left at a nefarious day care center. The toys must band together to escape and return home to Andy.,84.15,Pixar-Walt Disney Pictures,6/16/10,200000000,1066970000,103,Released,No toy gets left behind.,7.793,13967,Tom Hanks-Tim Allen-Joan Cusack-Don Rickles-Wallace Shawn-John Ratzenberger-Estelle Harris-Blake Clark-Jeff Pidgeon-Ned Beatty-Michael Keaton-Jodi Benson-John Morris-Emily Hahn-Timothy Dalton-Kristen Schaal-Jeff Garlin-Bonnie Hunt-Whoopi Goldberg-Jack Angel-John Cygan-Jan Rabson-Laurie Metcalf-Lori Alan-Bea Miller-R.", + "embedding" : [ 0.007962808, -0.033325825, -0.01506767, -0.038366254, -0.014973831, 0.019049073, -0.0053923223, -0.0071115647, -0.018016858, -0.025389828, 0.016314372, 0.020014262, 0.021260964, 0.0018566479, 0.009423996, 0.012755238, 0.008995024, -0.0065518892, 0.014518048, -0.018231343, -0.0026844314, 8.2652667E-4, -0.028526692, -1.8411479E-4, 0.0186201, 0.0036027012, 0.029706366, -0.0076544834, 0.0057341596, -0.002862053, 0.009759131, -0.010248428, -0.012902698, -0.01506767, -0.0131574, -0.01809729, 0.0065887542, -0.039358255, 0.028633934, -0.0059519974, 0.017936425, 0.019424424, -0.014182913, -0.018593289, -0.0013799183, 0.007641078, 0.013619887, 0.0011327562, 2.4820937E-4, 0.021341396, 0.021783775, 0.03386204, -0.03292366, -0.025188746, 0.005134268, 0.006595457, -0.022212747, 0.009397185, -0.0055934032, 4.09912E-4, 0.010771239, -0.0037970794, -0.021689937, -0.0036797824, -0.027722366, -0.005670484, -0.013345076, -0.008653185, 0.015898805, -0.0014452697, 0.023727559, 0.008907888, 0.010469617, 0.012815562, 0.027802799, -0.02917015, -0.012989832, 0.0034049717, -0.018901614, 0.009765834, 0.005469403, -0.010643887, -0.0075204293, 0.010221617, 0.015134697, 0.0050203223, -0.0060961056, 0.025604313, -0.051396303, 0.008592862, 0.006340754, 0.037401065, 0.007419889, 0.010007131, 0.003984755, 0.03144907, -0.016783562, 0.026033286, -0.016314372, -0.042092957, 0.0022454045, 0.0072657266, 0.011401293, -0.0075606457, 0.013197617, 0.020295775, 0.010436104, -0.009772536, 0.02820496, -7.657835E-4, 0.018512858, -0.011039346, 0.007104862, -0.049010143, -0.01760129, -0.01978637, 0.010938806, -0.017051669, -0.01963891, -0.028767988, 0.045337062, 0.035631552, 0.020644316, -0.02072475, 0.028875232, 0.046489928, 0.012627887, -0.0072724293, -0.021676531, -0.005747565, 0.03683804, 0.01471913, 0.015510048, 0.007279132, -0.0258188, 0.03756193, -0.018365398, 0.022748964, -0.02278918, -0.017628102, 0.02951869, 0.020362802, -0.01174313, -0.009745725, -0.037025716, 0.009504428, 0.019129505, 0.012031347, 0.0065820515, 0.010999131, 0.008405185, 0.03442507, -0.0071182675, 0.010617076, 0.014665508, -4.377701E-4, 0.0013740535, 0.009363672, -0.010322158, -0.003981404, -0.0013011616, -0.0072657266, 0.007131673, -0.015362589, 0.0036462687, 0.020188533, 0.019384209, -0.0012575941, -0.0030497285, -0.004242809, -0.010603671, 0.0258188, -0.020644316, 0.013780751, -0.012151995, 0.013090373, -0.0091961045, 0.0048024845, -0.036972094, -0.010751131, 2.8277017E-4, 7.867294E-4, 0.018928425, 0.033111338, 0.007507024, -0.013211021, 0.015630696, -0.022025073, 0.020711344, -0.008438699, 0.0046851872, 0.027105719, 5.4249977E-5, -0.018217938, -0.63916945, -0.032280203, 0.0145716695, -0.019049073, 0.0150944805, 0.02410291, -0.016354589, 0.0072523216, -0.040725604, -0.004175782, -0.030698366, 0.029036095, 0.03919739, -0.0069574025, -0.0122324275, -0.010831563, 0.015644101, -0.029277394, 0.012560859, 0.011903995, -0.025510477, 0.032548312, 0.035738796, -0.017936425, 0.0031837826, -0.004956647, 0.014906805, -0.015255345, -0.013820968, 0.008197402, -6.7362137E-4, 0.0041489713, 0.010570158, 0.005171133, 0.036998905, 0.0018532965, -0.036087338, 0.044479117, 0.030644745, 0.021515667, -0.026422042, -0.015657507, 0.010107672, 8.9124966E-5, -0.020054478, 0.017547669, -0.0055297273, -0.0053118896, -0.016220534, -0.029759988, -0.014799561, 0.008083456, 0.0021147018, 6.727835E-4, 0.004279674, 0.013566265, 0.012105077, -0.018821182, 0.008599564, -5.676349E-4, -0.0110125365, 0.019478045, 0.002464918, 0.022588098, -0.019370804, 0.027038692, -0.011602374, -0.007781835, 0.0077215103, -0.038419876, 0.008485618, 0.012346373, -0.02363372, -0.0072054025, 0.005191241, 0.004182485, 0.023419233, 0.0111868065, -0.0065552406, 0.022038478, 0.010523239, -0.007191997, -0.009933401, 0.0049432414, 0.017266154, 0.005037079, -0.015215129, 0.024732962, 0.01707848, -0.019518262, 0.0049935114, 0.026582908, -0.01375394, 0.0042092954, -0.0045645386, -0.016877398, -0.014853183, 0.011334266, 0.013914805, -0.058501165, -0.018982047, -0.031046906, 0.02042983, 0.0054526464, 0.015992641, 0.005449295, -5.2867545E-4, 0.013365184, 0.025859017, -0.013653399, -0.014866589, -0.01174313, -0.0061028083, -0.012949617, -0.0067060515, -0.020322585, 0.033272203, 0.01646183, 0.003257512, -0.010188104, -0.0026559448, -0.010851671, 0.008297943, -0.019236749, 0.0065451865, 0.026623124, 0.010885185, -0.020992856, -0.0033815121, 0.002087891, 0.0029022691, 0.008619672, 0.019437829, -0.028633934, 0.009752428, 0.023700748, 0.0032591878, -0.016716534, 0.03455912, -0.020041073, -0.017855993, 0.015979236, -0.013995238, -0.0056068087, -0.0078019425, 0.003195512, -0.02249426, -0.007594159, -0.008807348, -0.031663556, -0.022655126, 0.0064412947, 0.006223457, 0.006786484, 0.015335778, 0.0068032406, -0.0297868, -0.034049716, 0.009256429, -0.0122324275, 0.019022262, 0.0038238904, 0.0030815664, -0.008820754, 0.015456426, 0.003393242, -0.008592862, 0.002169999, -0.003984755, -0.013465724, 0.0025419989, -0.02130118, -0.018486047, 0.0059821596, -0.020268966, 0.02380799, -0.012467022, 0.016140101, 0.011910697, -0.014652102, 8.219186E-4, 0.010288645, -0.02229318, 0.0027078907, 0.041261822, 0.024665935, 0.017038263, 3.8896606E-4, -0.011213617, 0.006796538, -0.027722366, 0.006374268, -0.009001726, -0.008512429, -0.0065451865, 0.010603671, 0.010429401, 0.0063172947, 0.013539454, 0.012259238, 0.04115458, 0.022722153, 0.0047421604, -0.020697938, 0.010610374, -0.026261179, -5.718241E-4, -0.008700104, -0.003924431, -0.0035122149, 0.009591564, -0.004346701, -0.006836754, -0.013231129, 0.022346802, 0.016032858, -0.0095446445, -0.007104862, -0.029759988, 0.015657507, -0.0075472402, 0.0017125398, 0.022748964, 0.01672994, -0.03458593, -0.0043031336, 0.0069171865, -0.0116090765, -0.012145292, -0.01894183, -0.01556367, 0.0013187563, 2.8570258E-4, 0.017494047, -0.009397185, -0.0017024858, 0.021153722, 0.002758161, 0.045712415, -0.008700104, -0.004507566, 0.012842373, 0.022065287, 0.007078051, -0.0048192414, -0.004708647, 0.00896151, 0.02095264, -0.012500536, 0.012882589, -0.027534692, 0.020376207, -0.011106374, 0.018177722, 0.01350594, -0.0033999446, -0.0012182157, -0.011233726, 0.02616734, 0.024813395, 0.007728213, -0.013941616, 0.013063562, -0.0010439456, 0.01973275, -0.0031687014, -0.023553288, -0.0042930795, 0.006645727, -0.0012039725, -0.008237618, -0.007500321, -0.010945509, 0.0061028083, -0.010871779, -0.02022875, -0.0028938907, -0.0022554586, 0.011542049, 0.016193723, -0.020657722, -0.019772965, 0.012560859, 0.0055498355, -0.01891502, -0.0015391075, -0.014410805, 0.0052716737, -0.011227023, 0.01442421, -0.034291014, 0.03630182, 8.5501315E-4, 0.025577502, 0.003666377, 0.0067663756, 0.008532537, -0.017882803, 0.024397828, 0.005264971, -0.006169835, 0.021234153, -0.0026995125, -0.014169508, 0.009752428, -0.02290983, 0.008418591, -0.0066222674, -0.006407781, -0.0078019425, 0.012956319, -0.007976213, -0.02459891, 0.0037568633, -0.00853924, -0.0052616196, -0.024853611, 0.0046014036, -5.56743E-4, 0.0014997291, -0.0097926445, -0.026180746, -0.032655556, 0.010000428, 0.077215105, 0.04455955, 0.010000428, 0.01757448, -0.011682806, 0.015295561, -0.01573794, -0.004386917, 0.0070311325, 0.0031402148, 0.01459848, -0.010945509, 0.034022905, -0.0066323215, 0.017212534, -0.011716319, -0.012956319, -0.0030748637, 0.007909186, -0.035014905, -0.034103338, -0.010201509, 0.008606267, 0.017681722, -0.005831349, -0.020416424, 0.022199342, 0.009350266, -0.0011260536, -0.008592862, 0.0013011616, 0.012044752, -0.014839778, 0.021582695, 1.4651683E-4, -0.009417294, 0.038393065, 0.011521941, 0.037052527, 0.0030832419, -0.0026391882, 0.006662484, 5.1527005E-4, -0.005915133, 0.008284537, -0.0013958373, -7.800267E-4, 0.03348669, 0.018526264, -0.03144907, 0.009551347, 0.0047153495, -0.020992856, -0.0012919455, 0.022172531, -0.005496214, -0.010107672, -0.023513071, -0.008036537, -0.012795454, 0.012601076, -0.03343307, 0.015751345, -0.009578158, -0.019062478, -0.02847307, -0.01524194, 0.0019823236, -0.018083885, 0.002526918, -4.1849984E-4, -0.021958046, -0.003676431, -0.0024515125, 0.009336861, 0.006434592, 0.03455912, -0.013197617, 0.016099885, 0.026180746, -0.028902043, -0.032601934, 0.01524194, -0.025617719, -0.0022252963, 0.010087564, -0.01030205, 0.02162291, -0.009189402, 0.0023425936, 0.012527347, -0.005600106, 0.0038406472, -0.02328518, 0.035068527, 2.2558775E-4, 0.0206041, 0.018606694, 0.018472642, -0.005077295, -0.007815348, -0.002624107, -0.007191997, -0.022534477, -0.018593289, -0.0059989165, -0.016421614, 0.0011453239, -0.01809729, -0.023942044, -0.030564312, -0.01623394, -0.0071584834, -0.0031988635, 0.011964319, -0.015389399, 0.014786156, 0.0057174033, -6.933105E-4, 0.002443134, -0.01015459, -0.025577502, 0.0027095664, 0.029250583, 0.0035926471, 0.034049716, -0.0067998893, -0.015295561, -0.012319563, 0.026301395, -0.010208212, 0.01591221, -0.0039378363, -6.220944E-5, -0.012205617, -0.03147588, 0.009517834, 0.004842701, -0.0020124856, 0.006990916, -0.025135124, 0.008988321, 0.023043882, -0.01149513, 0.01012778, -0.026556097, 0.009625077, 0.012259238, 0.019920424, 0.030403446, -0.0112873465, 0.015804967, -0.024867017, -0.0037166472, -0.009263132, -0.038687985, -0.01477275, -0.010469617, 0.035363443, 0.011119779, 0.039733604, -0.004728755, 0.021113506, 0.0067831324, 0.010952212, 0.012815562, -0.003763566, -0.0026676746, -0.032601934, 0.01471913, 0.0058481055, 0.016073074, 0.0140488595, 0.009517834, 0.01993383, 0.0039914576, 0.0056637814, 0.006511673, 0.0070646456, -0.015469831, -0.0124134, -0.0057408623, -0.018727344, -0.016300967, -0.01891502, -0.009973617, 0.034291014, -0.0026408639, 0.0012978102, -0.0010196483, 0.02951869, -0.0049868086, 0.03362074, -0.016488642, 0.020617506, -0.011749833, -0.0037736201, -0.027078908, -0.010784645, -0.014678913, 0.0049331873, 0.029036095, -0.009403888, 0.0048192414, -0.006806592, 0.03890247, -0.015121291, -0.017963236, 0.03289685, -0.013693616, -0.0075606457, -0.038768418, -0.003830593, -0.033540312, -0.03721339, 0.00762097, -0.003418377, 0.015027453, -0.02529599, -0.03187804, 0.016837182, 0.010979023, 0.035068527, 0.022896424, 0.03482723, 0.01524194, 0.023539882, 2.892634E-4, -0.0077952403, -0.020349396, 0.0026358368, 0.020912424, 0.027454259, -0.024759773, 0.007084754, 2.3899315E-4, -0.010811455, -0.025054693, -0.052200627, 0.016140101, -0.0016329453, 0.01891502, -0.01929037, 0.005774376, -0.032360636, 0.024920639, 0.011575563, -0.0060827, 0.008385078, -0.02360691, -0.02296345, 0.015979236, 0.0017544318, 0.008894483, 0.010717617, -0.031315014, 0.015054264, -0.008773834, 0.01949145, -0.0045142686, -0.0096183745, 0.027802799, -0.021931235, 0.022521071, 0.015831778, 0.0054794573, -0.0059385924, 0.0067295106, 0.0101411855, 0.028070908, -0.020899018, 0.0076276725, -0.01827156, 0.0059419437, 0.02057729, 0.020590695, -0.019357398, -0.027722366, -0.017561074, -0.0049365386, 0.03490766, 0.0011361076, 0.01524194, -0.015134697, -0.018606694, -0.011843671, 0.008070051, 0.0030329716, 0.008284537, -0.03214615, 0.0036898362, 0.00402162, 0.005352106, 0.0037166472, -0.0062670247, 0.0030078366, 0.0068501593, 0.01283567, -0.013284751, 0.0073126457, -0.027963664, -0.010221617, -0.03616777, -0.020041073, -0.0033429717, -0.0057877814, 0.014343778, -0.029277394, -0.012534049, 0.021113506, 0.0059553487, -0.0070244297, -0.0070378347, -0.011790049, 0.0015081075, 0.021555884, -0.012078266, -0.018968642, -0.0060257274, 0.013465724, -0.014115886, -0.01693102, 0.0066691865, 0.0011712968, 0.03721339, -0.038098145, 0.0037367553, 1.438986E-4, -0.030430257, -0.014169508, 0.012024644, 0.02311091, 0.004232755, 0.0011352698, -0.0315295, -0.00920951, -0.001814756, 0.032789607, -0.003850701, 0.0067261592, 0.028714366, 0.017494047, 0.02593945, 0.038178578, 0.0031720528, -0.024612315, 0.0022202693, -0.012688211, -0.022574693, -0.010818157, 0.0076075643, 0.0013522697, -0.01459848, -0.014008643, -0.021381613, -0.0062301597, -0.016006047, -0.029652745, -0.020657722, 0.017681722, 0.02599307, -0.010677401, -0.0013279724, 0.001087513, 0.015657507, 0.021689937, -0.014182913, -0.008907888, 0.021113506, 0.017373398, 0.032012094, 0.010851671, -0.02022875, -0.014276751, 0.007533835, 0.027561503, 0.015389399, 0.022681937, -0.009082158, 0.007989618, -0.018311776, 0.028339015, 1.3552021E-4, 0.0024196748, 0.036382254, -0.030725177, -0.011682806, 0.011971022, 0.019880207, -0.008431996, -0.008659888, 0.012178806, -0.028312204, 0.003073188, -0.008371673, -0.0066758892, -0.00804324, -0.023928639, 0.026153935, 0.008827456, 0.0047421604, 0.021730153, 0.019089289, -0.0067027, -0.0078019425, -0.0010657293, -0.0042763227, -0.0058581596, -0.016099885, 0.0043701604, 0.01556367, -0.013251238, 0.0154430205, -0.024438044, 1.41123255E-5, -0.002175026, 0.0062636733, -0.009625077, 0.0325215, -0.00255708, -0.049814466, 0.010342266, -0.009651888, -0.0057341596, -0.0052951328, 0.0050404305, -0.022333397, -0.011602374, -0.009812753, 0.0072724293, -0.020268966, -0.02698507, 0.0131775085, 0.011300752, -0.011562157, 0.029384637, 0.18638869, -0.022467451, 0.0215961, 0.036435876, -0.015644101, 0.011588968, 0.020175127, 0.026368422, -0.027615124, 0.01745383, -0.010422698, 0.02517534, 0.013646697, -6.5292415E-6, 0.008532537, -0.026851015, -0.011575563, -0.025698151, -0.027749177, -0.01695783, 0.018003453, -0.0046885386, 0.0012592698, -0.02686442, 0.0101411855, -0.018968642, -0.033781607, 0.0043366468, 0.013097076, 0.017091885, -0.02375437, -0.004551133, -0.0017058371, -0.0070043216, -0.004078593, -0.012353076, -0.0020661072, 0.013050157, 0.021676531, -0.0063508083, 0.0059385924, -0.0018432424, -0.0018532965, -0.0027263232, 0.0023224854, 0.027239773, -0.038634364, -0.0015324048, -0.018284965, 0.016502047, -0.042763226, -0.010174698, 0.019250154, 0.03589966, -0.008197402, -0.003961296, -0.0037099444, 0.0015818372, -0.010449509, 0.005948646, 0.020764964, 0.033299014, -0.041369066, 0.0024515125, 4.7547277E-4, 0.010121077, -0.021716747, -0.005640322, 0.03187804, -0.024612315, -0.0012274319, -0.017936425, -0.02264172, -0.0012157022, -0.016180318, -0.0156172905, 0.0045812954, -0.016796967, -0.002191783, 0.022051882, -0.014518048, -0.016140101, -0.0049834573, -0.012788751, -0.009330158, -0.03386204, 0.017252749, -0.022883018, 0.0094441045, -0.03882204, -0.013861183, -0.0073997807, -0.019008856, -0.010214915, -0.0041322145, -0.007366267, 0.0140488595, 0.01132086, -0.026743773, -0.0047924304, -0.022159126, 0.017735343, 0.018780965, -0.0031418905, -0.041020524, -0.006273727, -0.0096183745, -0.0010489726, 0.025403233, -4.1996603E-4, -0.013304859, -0.03584604, 0.0015022426, -0.01792302, -0.0063340515, 0.02080518, 0.01658248, -0.020148316, 0.04429144, -0.03013534, -0.004587998, -0.005764322, 0.026261179, -4.0802686E-4, -0.006253619, -0.02919696, -0.028741177, 0.029733177, -0.001510621, -0.033969283, 0.013995238, -0.011903995, 0.0063072406, -0.00998032, -0.004102052, 0.0043366468, 0.0049164305, 0.0018901614, -0.007191997, 6.1162136E-4, 0.009745725, 0.008505726, -0.0012659725, -0.009450807, 0.018325182, -0.0070914566, 0.022869613, -0.0138745885, -0.008304645, -0.044345062, -0.017815776, -0.0030949716, 0.011106374, -0.0039043226, 0.034693174, 0.004789079, -0.014799561, -0.021354802, -0.022869613, 0.028928854, -0.035229392, 0.021462046, 0.011850374, 2.2537829E-4, -0.03051069, -0.012641292, -0.17116015, 0.017480642, -0.005402376, -0.013244535, 0.0090218345, 0.013619887, 0.0024531882, 0.007259024, 0.014169508, -0.030591123, 0.020523667, 0.014142697, -0.042736415, -9.5764827E-4, -0.0011302428, 0.031609934, -0.004350052, 0.02748107, 0.016502047, 0.00304135, 0.031717177, -0.010751131, 0.0013028373, 0.00297935, -0.0031318367, 0.0083247535, 0.0064580515, 0.015389399, -0.025161935, 0.0029240528, -0.033272203, -0.01658248, 0.013271346, -0.0012869184, -0.01124713, -0.012708319, -0.015657507, -0.008740321, -3.8582415E-4, 0.002500107, 0.025751773, 0.0051443223, 0.025041288, 0.0025101611, 0.0149202105, 0.010355672, 0.028580314, -0.013371887, 0.016019452, -0.019679127, -0.020684533, -0.020349396, -8.603544E-5, 0.0070244297, -0.003850701, 0.022748964, -0.02030918, 0.0062067, 0.021850802, -0.0067998893, -0.03193166, -0.0067462674, 0.015429615, -0.00913578, -0.020671127, -0.010757834, -0.01343221, 0.009812753, -0.04222701, 0.009953509, -5.7308085E-4, 0.0017946479, 0.021676531, -0.012453617, 0.0067730783, -0.015804967, -0.01929037, 0.0062268083, 0.021877613, 0.011414698, -0.02360691, 0.029652745, -0.0043634577, 0.013237832, 0.0057777273, -0.021891018, 0.0015374318, -0.013459021, 0.0016614317, -0.03756193, 0.009397185, -0.012721725, -0.01879437, 0.0017879452, 0.004309836, 9.12405E-4, 0.0014812967, 0.007929294, 0.031046906, 0.009598266, -3.8708092E-4, -0.012426806, -0.015148102, 0.0191161, 0.037695985, 2.3124315E-4, -0.019062478, 0.017199129, 0.0156172905, 0.0031619987, -0.01375394, 0.007708105, 0.0297868, 0.033567123, -0.011843671, 0.014826372, -0.0014821346, -0.02517534, 0.024143126, 0.026006475, 0.04699933, -0.017292965, -0.017547669, -0.013418806, -0.0062100515, -0.016166912, -0.08954807, -0.015724534, 0.0032709176, 0.03949231, -0.023526477, 0.028553503, -0.005995565, 0.011950914, -0.011347671, 0.026234368, 0.008096862, -0.033245392, 0.01593902, -0.017091885, 0.019585289, -0.016488642, -0.0029575664, -0.0076946993, -0.014410805, 0.023593504, 0.019571884, -0.017990047, 0.0081504835, -0.011836968, -0.018016858, 0.005791133, -0.05329987, 0.03217296, 0.013807562, 0.009477618, 0.023821395, -0.028902043, 0.026355017, -0.03584604, -0.0158854, -0.016287562, -0.010255131, -0.022333397, 0.01030205, -0.057160627, -0.003485404, 0.010865076, 0.007165186, -0.022051882, -0.010047347, -0.011615779, -0.016595885, 0.026716962, -0.01022832, -0.027065502, -0.017185723, -0.028258583, -0.022092098, -0.0069775106, 0.02849988, 0.019196533, 0.016569074, -0.0025822152, -6.815808E-4, -0.03858074, -0.019705938, -0.005918484, -0.024652531, 0.010831563, 0.009946806, 0.015228534, 0.010456212, -0.019799776, 0.013847779, -0.0077617266, -0.029894043, 0.022279775, -0.040001713, -0.014276751, -0.026006475, 0.0021515668, -0.019424424, -0.029572312, 0.02447826, -0.026368422, -0.004222701, -0.028633934, 0.010462915, -0.010134483, 0.022561288, 0.010985726, -0.007017727, 0.0018801073, -0.008391781, -0.03951912, 0.007574051, 0.01573794, -0.0024548639, -0.009189402, -0.011294049, 0.0045544845, 0.011294049, -0.0028855123, 0.004128863, -0.0043969713, -0.012219022, 0.0018633506, -0.07169208, 0.025805395, -0.006742916, -0.009095564, -0.007855564, -4.1829038E-4, 0.0061162137, -0.01325794, 0.0047656195, 0.007875673, 0.0065083215, 0.024250368, -0.016743345, -0.0076075643, -0.012862481, 0.010255131, 0.004718701, -0.0054425923, 0.005714052, -0.006682592, -0.025617719, 0.030912852, 0.02311091, -9.970266E-4, -0.0029374582, 0.024035882, -0.011883887, 0.0150944805, -0.013539454, -0.019236749, 0.035765607, -0.014169508, -0.0012450265, 0.015630696, -0.013016643, -0.02593945, -0.01827156, 0.01233967, 0.017641507, 0.0043265927, -0.02348626, -0.020912424, -0.004453944, -0.020282371, -0.014075669, 0.0076276725, -0.0038272417, 0.019679127, 0.025054693, 0.003552431, 0.024867017, 0.009564753, 0.007574051, -0.0076075643, 0.00729924, -0.0201081, 0.050484736, -0.007305943, -0.009564753, -0.021971451, 0.027588313, 0.010643887, 0.012969725, -0.026998475, -0.0059721055, 0.0011168374, 0.011937508, -0.0017443777, 0.003582593, -0.022842802, -0.0021096747, -0.0044505927, 0.018378804, 0.03485404, 0.012963022, -0.0044841063, 0.004594701, 0.01040259, -0.014008643, 0.018807776, 0.024773179, -0.011649293, -0.027293393, 0.014075669, 0.0038473497, 0.018392209, 8.089321E-4, 0.018499453, -0.0022906477, 0.021408424, -0.017963236, 0.009323455, 0.001412594, -0.0013723779, 0.011475022, 0.04531025, -0.017440425, -0.005543133, 0.01573794, 0.012976428, 3.6362148E-4, -0.009524536, -0.022185937, -0.03144907, -0.019625505, 5.161079E-4, -0.02849988, -0.014383994, 0.0076544834, 0.014786156, 0.029331015, 0.011133185, -0.018928425, 0.009222915, -0.020094695, 0.010040645, -0.01308367, -0.02782961, -0.016421614, 0.03927782, 0.032038905, 0.0124804275, 0.030108528, -0.0115353465, 0.06606181, 0.008452104, 0.012011238, -0.020966046, 0.0026777287, 0.0031804312, 0.009450807, -0.02008129, -0.029491879, 0.016689723, -0.012366481, 0.009243024, 0.0030128637, 0.044452306, -0.012460319, 0.0831671, 0.01107286, -6.5393216E-4, 0.030644745, -0.006163133, 0.012038049, 0.027963664, -7.486078E-4, -0.01660929, -0.012755238, -0.011099671, -0.007359565, 0.025403233, -0.034291014, 0.031046906, -0.0070445375, 0.005724106, -0.009477618, -0.021663126, -0.01442421, -0.008995024, -0.022185937, 0.03289685, 0.01596583, -0.022842802, -0.012768643, 0.015523453, -0.013076968, 0.00938378, -0.036998905, 0.0038004308, -0.017520858, 0.0036529715, 8.223375E-4, 0.020295775, 0.0074601052, -0.0048460523, 0.011059455, 0.023379017, 0.004852755, 0.014692319, -0.0018633506, -0.024143126, -0.0060290787, 0.02296345, -0.0013179184, 0.01298313, -0.033567123, -0.029491879 ], + "id" : "d5ad9d68-360a-467a-9d93-ab07ddb2c2d3", + "metadata" : { + "source" : "movies.csv" + } + }, + "d2e4367e-2798-4f57-8701-6a6841c6e12f" : { + "text" : "603,Pixar,11/1/01,115000000,579700000,92,Released,We scare because we care.,7.84,17571,John Goodman-Billy Crystal-Mary Gibbs-Steve Buscemi-James Coburn-Jennifer Tilly-Bob Peterson-John Ratzenberger-Frank Oz-Daniel Gerson-Steve Susskind-Bonnie Hunt-Jeff Pidgeon-Samuel Lord Black-Jack Angel-Bob Bergen-Rodger Bumpass-Gino Conforti-Jennifer Darling-Patti Deutsch-Pete Docter-Bobby Edner-Ashley Edner-Katie Scarlett-Paul Eiding-Bill Farmer-Keegan Farrell-Pat Fraley-Teresa Ganzel-Taylor Gifaldi-Marc John Jefferies-Joe Lala-Noah Luke-Sherry Lynn-Danny Mann-Mona Marshall-Mickie McGowan-Laraine Newman-Kay Panabaker-Bret Parker-Phil Proctor-Josh Qualtieri-Guido Quaroni-Jan Rabson-Lisa Raggio-Joe Ranft-Sophia Ranft-Katherine Ringgold-Bob Scott-David Silverman-Jim Thornton-Lee Unkrich-Wallace Shawn,monster-panic-cheating-kidnapping-door-infant-villain-portal-rivalry-energy supply-friends-hijinks-best friend-chameleon-family-parallel world-conveyor belt-invisibility-energy company-conspirators,/wFSpyMsp7H0ttERbxY7Trlv8xry.jpg,/vUTVUdfbsY4DePCYzxxDMXKp6v6.jpg,12-862-62211-2062-9806-10193-863-14160-10681-920-808-8587-425-62177-953-20352-9487-150540-49013-38757-10191\r\n460555,Operation Red Sea,Action-Thriller-War-Drama,zh,A squad of the Jiaolong Commando Unit - Sea Dragon a spec ops team of the Chinese Navy carries out a hostage rescue operation in the nation of Yewaire on the Arabian Peninsula and fiercely fights against local rebel groups and Zaka a terrorist organization.,24.837,Bona Film Group-ZAK Film Productions-The P.L.A Navy Government TV Art Central of China-Star Dream Studio Media-Emperor Film Production-Film Fireworks Production,2/16/18,70000000,579220560,139,Released,,7.1,209,Zhang Yi-Johnny Huang-Hai Qing-Du Jiang-Zhang Hanyu-Jiang Luxia-Yutian Wang-Yin Fang-Henry Prince Mak-Guo Jiahao-Simon Yam-Wang Yanlin-Wang Qiang-Huo Siyan-Jacky Cai-Huang Fenfen-David Yu-Khalid Benchegra-Hassane Guannouni-Ayoub Layoussifi-Mezouari Houssam-Hicham Akkaoui-Sanaa Alaoui-Nisrine Adam-Amal Ayouch-Chaouqi Abdellatif-Nour El Houda Abkari,red sea-historical fiction-desert-hostage situation-tank battle-uranium-peoples army-naval battleship,/6ctXBO0o5fKQvGdSJsPc8TAYCvp.jpg,/uQNB6ccHv4uR21643xqyhK5Dk6W.jpg,791348-415214-535167-339877-452557-885110-517093-614696-585511-961484-438148-453395-507086-756999-76341", + "embedding" : [ 0.016195709, -0.0426304, -0.005236155, -0.036124665, -0.0064405394, 0.026640568, -0.002985226, -0.014438886, -0.023634754, -0.040022615, 0.022152435, 0.033736486, 0.014878092, -0.0064645587, -0.0075968853, 0.021836758, 0.017005494, -0.022591641, 0.0010516917, -0.017485876, 7.1027793E-4, -0.0028548369, -0.027189575, 0.011899728, 0.013684002, -0.0050817467, 0.025487654, -0.008804701, -0.0066635734, -0.021836758, 0.015578076, -0.01081544, -0.0075145345, 2.0459092E-4, -0.003856775, -0.012263446, -0.006015059, -0.032199267, 0.017348625, -0.015495725, 0.0032837486, 0.006855726, -0.010451722, 0.0065812226, -0.00893509, -0.008653725, 0.010424272, -0.0074939467, -0.0057028113, 0.029646382, 0.028740522, 0.022577917, -0.013834978, -0.03779914, -0.0032065446, 0.010650737, -0.025885684, -0.0011074502, 1.7488877E-4, -0.008482159, 0.021891657, -0.010890928, -0.025144525, -0.009065479, -0.010218394, -0.0034827637, -0.008290007, -0.01596238, 2.4405081E-4, -0.012441873, 0.024622967, 0.016209435, 0.006172898, 0.0037126604, 0.028301315, -0.033681586, -0.03233652, -0.0068728826, -0.011968355, -0.0052052736, 0.017746653, -0.0031619377, -0.008578235, -0.006172898, 0.013539887, 0.01556435, -0.008866465, 0.020326987, -0.0346149, 0.013471262, 0.018076058, 0.03955596, 0.002805083, 0.0051023345, 0.0062758373, 0.020848544, -0.01975053, 0.029289529, -0.018817218, -0.04976749, 0.009017441, 0.0024773944, -0.011522287, -0.012785003, 0.008406671, -0.00798119, 0.005551834, -0.011172295, 0.015482, -0.0014497219, 0.006354757, -0.0034192847, 0.015893755, -0.039281458, 0.001337347, -0.03335218, 0.013045781, -0.0025065604, 5.206989E-4, -0.026215088, 0.0250759, 0.022577917, 0.011961492, -0.025034724, 0.034367844, 0.034367844, -0.006914058, -0.026613118, 0.0054591894, -0.010767401, 0.027203301, 0.0050920406, 0.019146621, 0.023524953, -0.03851285, 0.05270468, -0.020848544, 0.005960158, -0.026517043, -0.033736486, 0.028740522, 0.041422583, -0.026475867, -0.02168578, -0.017334899, 0.0013261952, -0.0038876564, -1.7081412E-4, 0.011041905, 0.0024671005, 0.02094462, 0.024170037, -0.005757712, 0.037003078, 0.020999521, 9.6162024E-4, -0.008029229, -0.0077684503, -0.0024671005, -0.015756503, -0.005129785, 8.998569E-4, -0.00463911, -0.01977798, 0.0031224778, 0.0103830965, 0.024403365, -0.025748432, -0.015660428, -0.002829102, -0.0016152818, 0.020258361, -0.015344748, 0.012640888, 0.0041209846, 0.027395453, 0.007734137, -0.009230182, -0.024430815, -0.0059430017, 0.0070272908, -1.181652E-4, 0.019709354, 0.02134265, -0.0023933277, -0.0028376803, 0.017266273, -0.025295502, 0.016031006, -0.0136016505, -0.0014402858, 0.023566129, -0.013752627, -0.014219283, -0.6504636, -0.0154271, 0.0029920887, -0.015001618, 0.016607465, 0.011144844, 0.0040866714, 0.008811564, -0.02937188, 0.0012807306, -0.023799457, 0.021493627, 0.026146462, -0.020285811, -0.020766193, -0.0125653995, 0.0010199522, -0.013100682, 0.016964318, -8.2093716E-4, -0.027354278, 0.02088972, 0.022921046, 0.015674151, 0.027368004, 0.005466052, -0.009710562, -0.012730102, 0.007857664, 0.008262557, -0.010904653, 0.01317617, 0.012977155, 0.0025494515, 0.038567748, -0.009422334, -0.018117234, 0.044222523, 0.027930735, 0.022221062, -0.029344428, -0.009401746, 0.011892866, -0.0011297537, -0.026928797, 0.010307608, 0.013237934, 0.005956727, 0.0031482126, -0.004855281, -0.0028462587, -0.0030641458, -0.0010190944, -0.004944495, -0.00986154, 0.004522446, 0.0019266717, -0.033626683, 0.013038918, -0.0075351223, -0.009525273, 0.024719045, 0.008111579, 0.0126752015, -0.0074184584, 0.030305192, -0.009079205, -0.0012241142, 0.014301634, -0.029646382, 0.014466337, 0.0046185222, -0.019132897, -0.008166481, -0.0024979822, 0.027285652, 0.04943809, 0.0010105162, -0.006543478, 0.015262397, -0.003846481, 0.0019489751, 0.0026575373, 0.0174447, 0.03184241, 0.004896457, -0.019421125, 0.009511548, 0.015001618, -0.0100399675, 0.0041690227, 0.018227035, -0.0011220332, 0.010650737, -0.0103830965, -0.015276122, -0.009484097, -0.0056341854, 0.038485397, -0.06384952, -0.026434692, -0.030881649, 0.017142747, -0.014987893, 0.0122291325, 0.013327147, -0.0046116593, -0.005246449, 0.02868562, -0.0072468934, -0.0174447, 0.0022577916, -0.01550945, -0.012078156, 0.023126923, -0.028740522, 0.015029069, 0.014013406, -0.0016247178, 0.0041724537, -3.9953133E-4, -0.005280762, 0.012956567, -0.015358473, 0.009072342, 0.014891817, -3.4591736E-4, 0.015042794, 0.0026609688, 0.003671485, 0.013773215, -0.0026249401, 0.009902716, -0.008688037, 0.011913454, 0.018625066, 0.021891657, -0.0056856545, 0.033022776, -0.0020210324, -0.024321014, -0.0099301655, -0.019023096, -0.006200349, 0.0029869417, 7.0127076E-4, -0.03565801, -0.010767401, -1.7424542E-5, -0.010561524, -0.015317298, 0.0034810482, 0.006938077, 0.012558538, 0.0050337086, 0.0025683239, -0.03233652, -0.012819315, 0.023881808, -0.008825289, 0.011844828, 0.017801555, -0.008468434, -0.021328926, 0.027930735, -0.011906591, -0.0060459403, 0.015221221, -0.013910467, -0.017101571, 0.01858389, -0.010760539, -0.005057728, 0.016881967, -0.02407396, 0.03335218, -0.012606575, 0.010664463, 0.0121124685, -1.523709E-4, 0.020985795, 0.0031979664, -0.01299088, -0.0015234946, 0.03703053, 0.024005335, 0.018254485, 0.0013090387, -0.009641937, 0.020052483, -0.013217346, -0.0066326917, -0.008845877, 0.008578235, 4.1883235E-4, 0.0083243195, -0.010829165, 0.0068179816, 0.012078156, 0.018391738, 0.04326176, 0.016497662, 0.014233009, 0.0032888956, 0.0090037165, -0.033763934, 0.0011683557, -0.023415152, 0.0054523265, 0.00511606, 0.025693532, -0.006375345, -0.018419188, -0.0028308178, 0.007569435, 0.018501539, -0.011721301, 0.007823351, -0.0027793483, 0.00914783, -0.0017997138, -0.014095757, 0.0121124685, 0.011508561, -0.017458426, 0.0041209846, 0.02854837, -0.010547799, 8.5353444E-4, -0.010211532, -0.012634026, 0.0055175214, -0.01317617, 0.0067596496, -3.479547E-5, 0.0091272425, 0.03708543, -0.0067116115, 0.037332483, -0.0017559648, -0.00936057, 0.021726955, 0.028520918, 7.647497E-4, -0.010321333, 0.003812168, 0.013539887, 0.018844668, -0.018693691, 0.031211052, -0.013690864, 0.028273866, -0.011158569, 0.013533025, 0.0056479103, -0.001303034, 0.013498711, 0.008042954, 0.024952373, 0.009621349, 0.014246734, -0.020807369, 0.019599553, 0.0122222705, 0.018666241, -0.0060116276, -0.013663414, -0.0032614453, -0.001370802, -0.026654294, -0.013587926, -0.022234786, -0.007734137, 0.01898192, -0.007988053, -0.0056479103, -0.0042204917, 0.007274344, -1.6952738E-4, 0.013436948, -0.0100468295, -0.025830783, 0.021136772, 0.023909258, -0.022866145, -0.020134835, -0.02128775, 0.010513485, -0.04886163, -0.013903605, -0.024060236, 0.02174068, -0.015440824, 0.010417409, -0.02871307, -0.021562254, -9.933597E-4, -0.006179761, -0.01001938, 0.01333401, -0.010280157, 0.009525273, -0.008036091, -0.013395773, 0.021219123, -0.014123207, 0.0041518663, -0.016538838, -0.002921747, -0.0041793166, 0.011714439, -0.004748911, -0.03587761, 0.010163493, 5.7988876E-4, -0.007974328, -0.016634915, -0.006258681, 0.009971341, -0.006694455, -0.01977798, -0.019489752, -0.015344748, 0.006852295, 0.07263364, 0.04337156, 0.012812452, -0.0024207782, -0.0021514215, 0.0021497058, -0.01588003, -0.0053425254, -2.290389E-4, -0.017719204, 0.015591801, -0.011906591, 0.03184241, -0.0043302933, 0.015440824, -0.013100682, -0.008276282, -0.015468274, -0.005641048, -0.019640729, -0.017334899, -0.0036406033, 0.02706605, 0.032281615, -0.010671325, -0.012723239, 0.031485558, 0.005771437, 0.009511548, 0.010486036, -0.02290732, 0.0047832243, 0.006793963, -0.0025031292, -0.014260459, -0.0022457822, 0.034010988, -0.0010302461, 0.015811404, 0.012043843, 8.569657E-4, -0.002436219, 0.014397711, -0.03022284, 0.009271357, -0.018076058, -0.014452611, 0.01789763, 0.024828846, -0.023524953, 0.032281615, -0.012970292, -0.01182424, -0.0041621597, 0.017403524, -0.0058469255, -0.0121056065, -0.009257632, -0.007089054, -0.014466337, 0.012736964, -0.032254167, 0.006152311, -0.0110693555, -0.0015878314, -0.021974009, -0.01598983, -0.012366384, -0.02436219, -0.0027536137, -6.476568E-5, -0.025473928, -0.016044732, -0.0052670366, 0.0030847336, -0.003973439, 0.018199585, -0.0060459403, 0.016236885, 0.00562046, -0.02635234, -0.0387599, 0.0057199677, -0.033077676, 0.0035651147, 0.0065263216, -0.009038029, 0.0117624765, 0.004011183, 2.762192E-4, 0.007219443, -6.2449556E-4, -0.012153644, -0.007789038, 0.041587286, -0.0012249721, 0.012181095, 0.028026812, 0.008427259, 0.0010962986, 0.0055381088, -0.013128132, -0.010787989, -0.014082031, -0.006694455, -0.018762317, -0.009140968, -4.7780774E-4, -0.0127918655, -0.011234057, -0.023758281, -0.020368163, 0.0040660836, -0.010431135, 0.0111928815, -0.0050165523, 0.013114407, 0.020189736, -0.0044503887, 0.00988899, 0.011844828, -0.0035788398, 0.017636852, 0.011254645, -0.0030847336, 0.025405303, -0.015976107, -0.032885525, -0.015180046, 0.028466018, -0.017911356, 0.008749801, -0.021919107, 6.3747015E-5, -0.016648639, -0.029811084, 0.010534073, 0.0069655273, -0.013725177, -8.183637E-4, -0.026050387, -9.144399E-4, 0.017321173, -0.0050234147, -0.0010508338, -0.026173912, 0.0014171245, -0.019805431, 0.02277007, 0.021013247, -0.018625066, 0.015866306, -0.02219361, -0.0017491023, -0.008036091, -0.035493307, -0.026818996, 0.018432913, 0.02669547, 0.018474089, 0.039665762, 0.007459634, 0.027999362, 0.007837076, 0.009902716, 0.018528989, -0.012826178, -0.0072125806, -0.039281458, 0.0023658774, 0.020532865, 0.026311165, 0.0050542965, 0.003904813, 0.005387132, 0.028822873, 0.01673099, 0.007672374, -0.0011563462, -0.02094462, -0.0030366955, 0.009772326, -0.02319555, 0.0044469573, -0.026709195, -0.033489432, 0.04026967, -0.019023096, 0.0014522953, -0.011645813, 0.045128383, -0.0023641617, 0.009882128, -0.0049033198, 0.026091563, -0.027711133, -0.01375949, -0.020258361, -0.01818586, -0.019256424, 0.009566449, 0.02285242, -0.0055346778, -0.01179679, -0.0056856545, 0.019503476, -0.009504685, -0.01887212, 0.014219283, -0.011048768, -0.0061179977, -0.041230433, 0.0018134391, -0.042904902, -3.544956E-4, -0.0113026835, -0.003990595, -1.6631055E-4, -0.015742779, -0.038897153, 0.024032785, 0.0045670527, 0.03719523, 0.00967625, 0.049136136, 0.02675037, 0.0088939145, -0.013052643, 0.012599712, -0.009415472, -3.4098488E-5, 0.033022776, 0.019228972, -0.022399489, 0.0028702777, -0.0021771563, -0.0021239712, -0.03579526, -0.028493468, 0.014617314, 0.020793643, 0.021932833, -0.03326983, -0.018968195, -0.019187797, 0.012414423, -0.009408609, 0.017527051, 0.013834978, -0.029207177, -0.019270148, -0.009072342, -0.00251857, 0.010588974, 0.017252548, -0.031073801, 0.012290896, 9.890706E-4, -0.013615375, -0.011343859, -0.014301634, 0.022385763, -0.011604637, 0.015797678, 0.01179679, 0.010801715, 0.018089784, -0.008427259, -0.0044915644, 0.03480705, -0.009772326, 0.0040969653, -0.0038053053, 0.0046185222, 0.0048312624, 0.0070478786, -0.030305192, -0.012318347, -0.036673672, -0.0041552973, 0.021081872, 0.0021531372, -0.013340872, -0.010787989, -0.017746653, -0.019489752, 0.012887942, 0.01277814, -9.916441E-4, -0.030744396, 0.015262397, 0.0033969814, -8.513899E-4, -0.0014119776, -0.0013433517, 0.006852295, 0.010273295, 0.01556435, -8.256552E-4, -0.0014231293, -0.021644603, -0.029015025, -0.041587286, -0.019681904, -0.0071370923, -0.0075831604, 0.0117624765, -0.024032785, 0.010739951, -0.0037812863, -0.017348625, 0.015358473, 0.0011143128, 0.003753836, 0.005157235, 0.03192476, -0.0083174575, -0.011062493, 0.0048106746, 0.03730503, 0.00752826, 0.011385035, 0.007336107, 0.0036337406, 0.036810923, -0.030881649, 0.006015059, -0.0044263694, -0.018789768, -0.020189736, 0.013663414, 0.016827067, 0.0070616035, -0.0017962826, -0.040022615, -0.01124092, -0.010829165, 0.046034243, 0.004107259, -3.8430496E-4, 0.025432752, 0.0024773944, 0.036207017, 0.014795741, -0.0032751705, -0.023840632, -0.0011314693, -0.013498711, -0.012730102, 0.0059292763, 0.0075488472, 0.01556435, 0.008537061, -0.009868402, -0.03099145, -0.0033420806, -0.0150976945, -0.017623128, -0.0068076877, 0.02476022, 0.033818837, -1.7317313E-4, 0.006145448, 0.021946559, 0.003160222, 0.013217346, -0.017581953, -0.008763526, 0.008983129, 2.950444E-6, 0.022275962, 0.020807369, -0.023181824, -0.01044486, 0.013189895, 0.029811084, 9.564733E-4, 0.033516884, -0.027258202, -0.012942842, -0.005071453, 0.007843939, 0.0057680057, 0.001434281, 0.018474089, -0.042850003, -0.00792629, 0.0029920887, 0.01513887, -0.009154693, 0.006306719, 0.016154533, -0.022097535, -0.009792914, -0.004920476, -0.0012807306, -0.014068306, -0.019132897, 0.008338045, 0.008962541, 0.0011923747, 0.029207177, 0.015399649, -0.012441873, -0.012826178, -0.016799618, -0.0053322315, 3.748689E-4, -0.0032339948, 0.0100399675, 0.014905542, -0.028960124, 0.024622967, -0.032830622, -0.005232724, -0.01200953, 0.017183922, -0.015866306, 0.03189731, 0.0016495947, -0.05028905, 0.0063410318, -0.019023096, 0.013635963, -0.014109482, 0.014548688, -0.029618932, -0.01659374, 0.0017053533, 0.0031808098, -0.01627806, -0.030497344, 0.0036062903, -0.008097854, -0.021548528, 0.016813342, 0.18314876, -0.0070032715, 0.027752308, 0.042520598, 0.013134995, 0.00752826, 0.009834089, 0.01596238, -0.009545861, 0.015632976, -0.0052395863, 0.019572103, 0.0016547417, -2.2046066E-4, 0.005455758, -0.012627163, -0.027217027, -0.016017282, -0.01701922, -0.026462141, -0.004893026, -0.004814106, -0.013965367, -0.01590748, 0.00471803, -0.00792629, -0.0152074965, 0.021534802, 0.016003557, 0.0034141378, -0.018762317, -0.014013406, -0.016236885, 0.0066910237, -0.03708543, -0.01246246, -0.0071782675, 0.003544527, 7.282922E-4, -0.0025597455, -0.0020570608, 0.0029183158, -0.0033746778, -0.00943606, -0.005071453, 0.021932833, -0.03162281, -0.004148435, -0.016634915, 0.01203698, -0.04803812, 0.010822302, 0.016017282, 0.017458426, -0.014047719, -0.009587036, 0.006268975, 0.0023229863, 0.005284193, 0.008639999, 0.029975787, 0.032665923, -0.028301315, 0.018007433, -0.012826178, 0.013169307, -0.034724697, 0.003942557, 0.012730102, -0.047049906, -0.016195709, -0.018309386, -0.021479903, 0.0043474496, -0.004796949, -0.013423223, 0.010355646, 0.012235995, 0.020848544, 0.024966097, -0.0349443, -0.016758442, -0.0058229063, -0.012585987, -5.6455512E-5, -0.032858074, 0.022275962, -0.004419507, 0.0019798568, -0.003860206, -0.0076998244, -0.038567748, -0.032062013, 0.004978808, 0.0035754086, 0.010479173, 0.023017121, 0.02205636, -0.019846607, -3.5878472E-4, -0.011542874, 0.037497185, 0.035438407, 2.0555597E-4, -0.022536742, -0.028630719, -0.008241969, 0.019448576, 0.02751898, -0.006049372, -0.016538838, -0.02234459, 0.0067905313, -0.013114407, -0.008790976, 0.016058458, 0.0059258454, -0.012153644, 0.034148242, -0.01667609, -0.009587036, -0.019283874, 0.02171323, 0.01028702, -0.0031722316, -0.026544493, -0.020299537, 0.008454709, 0.0122222705, -0.0388148, 0.005970452, -0.020999521, 0.0069723898, -0.0044332324, -0.0026764094, 0.008111579, 0.016003557, 0.01508397, 0.010884065, 0.0020450514, 0.0031413499, -0.023772007, -0.0034930576, 0.017705478, 0.014047719, -0.02017601, 0.010513485, 0.008804701, -0.01468594, -0.03631682, -0.014919268, -0.0064645587, 0.006443971, 0.011501699, 0.05100276, -0.0069037643, -0.021328926, -0.021493627, -0.012277171, 0.039336357, -0.04345391, 0.008742938, 0.020436788, -0.011844828, -0.033050228, -0.014047719, -0.1774391, 0.019187797, 0.017636852, -0.017266273, 0.020313263, 0.007871389, 0.035712913, 0.006852295, -0.0017774104, -0.028877772, 0.015262397, 0.019530928, -0.038540296, -0.0020879426, -0.0072125806, 0.011803652, -0.012174232, 0.027107226, 0.016497662, -0.007672374, 0.0348345, -2.6656868E-4, -0.0036920726, -0.008193931, 0.012023255, 0.011213469, 0.015660428, 0.011220332, -0.006258681, -0.008811564, -0.02740918, -0.011055631, 0.007885114, 0.017636852, -0.012057568, -5.361397E-4, -0.00914783, -0.014315359, -0.0020210324, -0.0017405241, 0.019613279, 0.008241969, 0.021974009, 0.011515424, 0.00771355, 0.0046562664, 0.017856456, -0.023895534, 0.013581063, -0.026585668, -0.020272087, -0.04801067, 0.009985066, -0.0020965207, -0.0035273705, 0.019805431, 0.0020038758, -0.0020656392, 0.01240756, -0.009765464, -0.02937188, -0.008221381, 0.0012841619, -0.009635074, -0.0031482126, -0.025817059, -0.009600761, 0.01887212, -0.04809302, 0.0037092292, -0.018542714, 0.018117234, 0.010486036, 9.2216034E-4, 0.005658204, -0.01667609, -0.025720982, 0.0146310385, -0.012057568, 0.029289529, -0.015454549, 0.04197159, -0.004323431, 0.008365495, 0.019160347, -0.015729053, -0.0044949953, -0.007905702, 0.0071576796, -0.009216457, 0.0080909915, -0.014782016, -0.028013086, 0.008646862, -0.002834249, 0.0062655434, -0.0040386333, -0.0056341854, 0.0012875932, -0.009223319, -0.0055895783, -0.011940904, -0.018474089, 0.016772166, 0.02521315, 0.008914502, 0.01238011, 0.023552405, 0.034450196, -0.016264334, -0.008379221, 0.006008196, 0.021809306, 0.0057199677, -0.009847814, 0.013265383, -0.009964478, -0.022564191, 0.0032151227, 0.028438566, 0.030524794, -0.009285082, 0.0029526288, -0.011144844, 0.0021171086, -0.011323271, -0.08372358, 0.0058332, 0.0033455119, 0.04043437, -0.026764095, 0.03274827, -0.010431135, 0.026215088, -0.02447199, 0.029152276, 0.015317298, -0.0213152, -0.0011271802, -1.2577839E-4, 0.030689497, 0.0022423507, -0.020958345, -0.011385035, -0.008852739, 0.028575819, 0.0018254486, -0.0142879095, 0.0109595535, -0.015317298, -0.0059876083, 0.0069723898, -0.025048448, 0.023524953, 0.008269419, 0.0068660197, 0.021974009, -0.018844668, 0.020368163, -0.053830143, -0.02606411, -0.028273866, -0.03099145, -0.02592686, 0.0053939945, -0.05333604, 0.018460363, 0.023470053, 0.006927783, -0.008859602, -0.011234057, 3.1267668E-4, -0.026503317, 0.04488133, -0.007219443, -0.020395612, -0.015797678, -0.019709354, -0.013272246, -0.010348784, 0.010582112, 0.014850642, 0.026475867, 0.02049169, -0.014260459, -0.018515265, 6.523748E-4, -0.0071988553, -0.022591641, 0.014782016, 0.0099233035, 0.01145366, 0.0020158854, -0.019146621, 0.019572103, -0.020299537, -0.027271926, 0.03873245, -0.027203301, -0.009058617, -0.029920885, -0.015385924, -0.022591641, -0.008228243, 0.031320855, -0.038567748, 0.004862144, -0.02433474, 8.955678E-4, -0.016072182, 0.011789927, 0.025350403, 0.021068146, 0.01397223, -0.002563177, -0.034724697, -0.01333401, 0.013066368, -0.0107330885, 9.074165E-6, -0.004234217, 0.023840632, 0.01937995, 0.008873327, -0.00554154, 0.0045636212, -0.008530198, 2.8265288E-4, -0.0700533, 0.025789607, -0.022015184, -5.337271E-5, -0.007541985, -0.012421286, 0.012311484, -0.0070238593, 0.00397687, -0.007205718, -0.017403524, 0.026475867, -0.014191833, -0.0024533754, -0.008145893, 0.009175281, 0.008969403, -0.013807529, -0.0058572195, -0.004652835, -0.023044573, 0.011336996, 0.019997584, 0.0135742, 2.777204E-4, 0.02712095, 0.0055175214, 0.01815841, -0.012483048, -0.005898395, 0.019819155, -0.011206607, -0.01627806, 0.006179761, -0.020656392, -0.025309227, 5.0654483E-4, -0.0017688322, 0.015317298, 0.003719523, 0.006210643, -0.024897471, -0.008104717, -0.013539887, -0.0035205078, 0.01943485, -0.012929117, 0.00973115, 0.0039356947, 0.008379221, 0.030881649, 0.009751738, 9.101508E-4, -0.010726226, 0.019736804, -0.022783794, 0.05638303, 0.011625225, 0.0023898964, 0.0060356464, 0.019146621, 0.016717266, 0.02248184, -0.032446317, -0.010582112, 0.016360411, 0.01216737, -3.0817313E-4, -1.1077987E-5, -0.012270308, -0.016936868, -0.012771278, 0.0090037165, 0.020697568, 0.011686988, 0.008742938, -0.00755571, -3.238284E-4, -0.0029011592, 0.014795741, 0.03025029, -0.006358188, -0.0310189, 0.006190055, 0.0030281171, 0.01903682, 0.011508561, 0.007617473, -0.009017441, 0.016580014, -0.0212054, 0.0059395703, 0.018144684, -0.0011469101, 0.010637012, 0.026462141, -0.009662525, -0.008660587, -0.008070404, 0.024540616, -0.0010422557, 0.009854677, -0.014603589, -0.015523176, -0.024060236, 0.002873709, -0.026462141, -0.010005654, 0.029701283, 0.018378012, 0.021946559, -0.009854677, -0.009223319, 0.0060116276, -0.027505254, 0.022221062, -0.013670277, -0.023730831, -0.0074459086, 0.04177944, -0.0011314693, 0.005641048, 0.024911197, -0.021575978, 0.052018423, 0.004721461, 0.036069766, -0.028438566, 0.008996854, 6.081969E-4, -0.011645813, -0.008235106, -0.01203698, 0.0015904049, -0.01855644, 5.721683E-4, 0.0213152, 0.030771848, -0.016401587, 0.064892635, 0.015303573, 0.0055381088, 0.0146310385, -0.014219283, 0.010094868, 0.008379221, 0.023909258, -0.012688926, -0.004934201, 0.012133056, -0.005232724, 5.005401E-4, -0.015454549, 0.009312533, -0.009786052, 0.0053356625, 0.012757552, -0.01630551, -0.011309546, 2.156354E-4, -0.0013673707, 0.039967716, 0.017115297, -0.01988778, -0.01818586, 0.019215249, -0.016909419, -0.00270386, -0.03346198, -0.010781127, -0.021699505, -0.004855281, -0.014507513, 0.02163088, 0.0041793166, -0.014274185, -0.008537061, 0.029234627, 0.0011546306, 0.002587196, 0.0054145823, -0.021575978, 0.0023058297, 0.022632817, -0.018144684, 0.0064885775, -0.020230912, -0.016099634 ], + "id" : "d2e4367e-2798-4f57-8701-6a6841c6e12f", + "metadata" : { + "source" : "movies.csv" + } + }, + "b6400f80-98bb-4211-af06-acb281b08f8b" : { + "text" : "767,19356,Chris Hemsworth-Natalie Portman-Tom Hiddleston-Anthony Hopkins-Stellan Skarsg��rd-Kat Dennings-Clark Gregg-Colm Feore-Idris Elba-Ray Stevenson-Tadanobu Asano-Josh Dallas-Jaimie Alexander-Rene Russo-Adriana Barraza-Maximiliano Hern��ndez-Richard Cetrone-Darren Kendrick-Joshua Cox-Justice Jesse Smith-Joseph Gatt-Luke Massy-Matthew Ducey-Jason Camp-Buddy Sosthand-Blake Silver-Jamie McShane-Dale Godboldo-Patrick O'Brien Demsey-Jim Palmer-Seth Coltan-J. Michael Straczynski-Ryan Schaefer-Matt Battaglia-Stan Lee-Joel McCrary-Isaac Kappy-Juliet Lopez-Rob Mars-Carrie Lazar-Harley Graham-Alexander Wright-Hilary Pingle-Shawn-Caulin Young-Walt Simonson-Kinsey McLean-Kelly Hawthorne-Dakota Goyo-Ted Allpress-Douglas Tait-Jeremy Renner-Samuel L. Jackson-Vanessa Bednar-Michelle Csitos-Stephen Oyoung,new mexico-banishment-superhero-based on comic-redemption-norse mythology-aftercreditsstinger-marvel cinematic universe (mcu),/prSfAi1xGrhLQNxVSUFh61xQ4Qy.jpg,/1wOu8rdvPxU1ObHi20VcRhfNpbo.jpg,76338-10138-1771-1726-24428-68721-100402-1724-99861-271110-102899-284053-1930-118340-49538-284052-283995-557-1865-315635-36657\r\n676,Pearl Harbor,War-History-Romance-Drama-Action,en,The lifelong friendship between Rafe McCawley and Danny Walker is put to the ultimate test when the two ace fighter pilots become entangled in a love triangle with beautiful Naval nurse Evelyn Johnson. But the rivalry between the friends-turned-foes is immediately put on hold when they find themselves at the center of Japan's devastating attack on Pearl Harbor on Dec. 7 1941.,39.364,Touchstone Pictures-Jerry Bruckheimer Films,5/21/01,140000000,449200000,183,Released,It takes a moment to change history. It takes love to change lives.,6.937,6114,Ben Affleck-Kate Beckinsale-Josh Hartnett-Cuba Gooding Jr.", + "embedding" : [ 0.001034063, -0.030887596, -0.012026018, -0.03985843, -0.020479819, 0.028873188, -0.0034379237, -0.0016879064, -0.017323913, -0.030242985, 0.017444778, 0.02464293, 0.019942643, -0.006348744, 0.009837028, 0.012798209, 0.018599706, -0.020009791, 0.009917605, -0.039160103, -0.008406798, -0.014450024, -0.007305588, 0.023501432, 0.0019103307, -0.0024273621, 0.033788346, -0.0069027063, -0.0014184793, -0.007527173, 0.018008811, -0.01079723, 0.003740085, -0.033761486, -0.01739106, 0.007661467, -0.0018683638, -0.033331744, 0.029383505, -0.0066139745, 8.552843E-4, 0.0027077007, -0.0046129953, -0.008212072, -0.024307195, -0.001489823, 0.017109042, -0.011596278, -0.009420717, 0.022171922, 0.035561025, 0.030538432, -0.02377002, -0.024132613, -0.010179478, 0.00384752, -0.023904314, 0.01099867, 0.012046163, 0.008500804, 0.0112806875, -0.014785758, -0.03214996, -0.008970832, -0.01982178, -0.024025178, -0.014866334, -0.021809328, -0.012173742, 0.016356997, 0.030726444, 0.017673077, 0.010965097, 0.007748758, 0.012052878, -0.025099529, -0.014382876, -0.012274463, -0.019163739, 2.4340769E-4, 0.025099529, -0.011911869, -0.0039180247, 0.019177169, 0.009118556, 0.005925718, -0.011435125, 0.010313772, -0.022091346, 0.009373714, 0.014933482, 0.012576624, -0.008782821, -0.010199621, 0.006422606, 0.014772329, -0.015604951, 0.014893194, -0.01520207, -0.03300944, -0.0036024337, -0.0019069733, -0.014382876, -0.011925298, -0.004743932, 0.008272504, 0.007023571, -0.008769391, 0.009689305, 0.011817863, -0.002294747, -0.0097564515, 0.006704623, -0.03757543, -0.016464433, -0.021339301, 0.006409176, -0.027382527, -0.0069832825, -0.011609708, 0.040180735, 0.042974047, 0.009904175, -0.014396306, 0.03343918, 0.034030072, -0.0069698533, -0.019741204, 0.007775617, 0.016007833, 0.038005173, -0.0066240467, 0.018868294, 0.0072317263, -0.021863047, 0.04249059, -0.040771626, 0.012717633, -0.019311463, -0.016222702, 0.029222352, 0.026120164, -0.017955095, -0.014503741, -0.027906273, 0.009602014, 0.031424772, 0.0044787014, 0.017149331, 0.002845352, 0.015698956, 0.03169336, 0.0028419946, 0.016128697, 0.006046583, -0.008104636, -0.005989508, -0.013335384, 0.0015359864, -0.022279358, 0.013939707, -0.019606909, 8.107994E-4, -0.014168006, -0.0035923617, 0.017686507, 0.011676854, -0.020520108, -0.0031324052, 0.014772329, -0.0044417707, 0.02398489, -0.018304259, 0.015685527, -0.007983772, 0.012281177, -0.0081382105, -0.0029863606, -0.04821151, -0.019432327, 0.0024391129, -0.0045189895, 0.043484364, 0.0396167, -0.0066542625, 0.012052878, 0.023259703, -0.0143023, 0.0011289081, -0.012731061, 0.009286423, 0.025623275, 0.0079636285, -0.013234664, -0.6360159, -0.010562215, 0.0067885565, -0.0062916693, 0.022333076, 0.009857172, 0.013603972, 0.007836049, -0.026254456, -0.011764145, -0.007775617, 0.01915031, 0.02115129, -0.017203048, -0.029866964, -0.0037535145, 0.0024156114, -0.025690423, 0.0180491, 5.250052E-4, -0.03209624, 0.02331342, 0.008044205, -0.009051409, 0.011791004, 0.003965027, -0.013133943, -0.009232705, -0.0014755542, 1.2033992E-4, -0.02444149, 0.013993424, 0.00925285, 0.017511925, 0.040341888, 0.009508008, -0.023877455, 0.061184302, 0.023608867, 0.022856822, -0.020050079, 0.0024206475, 0.019083163, 0.006563614, -0.031666502, 0.025891863, 0.003241519, -0.0039952435, -0.011965587, -0.0109315235, 0.010072042, 0.0033623835, -0.016303279, 0.0020076938, -0.018828005, -0.015349792, 0.014221724, -0.042839754, 0.022359934, 0.007829335, -0.01980835, 0.027140796, -0.0028638174, -0.0040221023, -0.0033976356, 0.024065467, -0.01121354, 0.005643701, -0.001345457, -0.01980835, 0.013033222, 0.015484086, -0.012207315, -0.0028336013, 0.022145065, 0.006066727, 0.03497013, 0.0069631385, -0.0048077214, 0.027986849, 6.286633E-4, -0.007547317, -0.004492131, 0.0053079664, 0.023192557, -0.0015032523, -0.048184652, 0.010414491, 0.021527313, -0.00693628, 0.007399594, 0.015886968, 0.0040926067, 0.018572846, -0.00836651, -0.008232216, 0.0030232915, 0.007359306, 0.0124289, -0.05984136, -0.02309855, -0.04340379, 0.051622573, -0.012878785, 0.022185352, -0.008084493, -0.02311198, -0.013174231, 0.03233797, -0.008917115, -0.0046499264, 0.009044694, -0.02881947, -0.007063859, 9.056445E-4, -0.025878435, 0.0062245224, 0.024025178, -0.002803385, -0.0047909347, 0.0029292856, 0.009037979, 0.0053919, -0.0027446316, 0.01564524, 0.03123676, -0.01077037, -0.007688326, 0.0140740005, 0.0057712803, -0.0017105686, -0.0015477372, 0.018895151, -0.01825054, 0.021030424, -0.0021789186, 0.014423165, -0.020802125, 0.018572846, -0.018223682, -0.019163739, -0.0029410364, -0.018317688, -0.0013144015, -0.014584318, -0.013765125, -0.03940183, -0.0032381616, -0.004760719, -0.008044205, -0.0021889906, 0.018183393, -0.006167447, 0.024736935, 0.0064796805, 0.0056873467, -0.018102817, -0.020036649, 0.01803567, -0.018787716, -0.0023803595, 0.020036649, 1.3051688E-4, -0.009978036, 0.025824716, -0.003030006, -0.01165671, -0.0014747148, 0.007198153, -0.00440484, 0.008339651, -0.007305588, -0.010199621, 0.012395327, -0.024132613, 0.012455759, -0.018451981, 0.022561375, 0.012603482, -0.0031475131, -0.013342099, -0.004693572, -0.02068126, -0.01077037, 0.018223682, 0.031102467, 0.020842412, -0.010629362, -0.006812058, 0.0024038607, -0.026724486, -0.015054346, 1.3870042E-4, 0.0029259282, 0.013483107, 0.024119183, 0.012610197, 0.0025532627, -0.017780513, -0.0048647965, 0.021111, 0.011717143, 0.026590193, -0.017028466, 0.0074063083, -0.026939357, 0.0011179968, -0.010307057, 0.013046652, -0.017337343, 0.020090368, -0.008473945, -0.017189618, -0.0014780723, -3.3405607E-4, 0.027113939, -0.015484086, 0.009266279, -0.012972791, 0.002638875, 0.014691752, -0.0067751273, 0.011878295, 0.0114552695, -0.024374343, -0.0034479958, 0.02489809, -0.015121493, 0.0021319157, -0.004636497, -0.006996712, -0.008735818, 0.0027412742, 0.0057276348, -8.9137576E-4, -0.016316708, 0.007292159, -0.0045458484, 0.03083388, -0.007245156, 0.0031290478, -3.747639E-4, 0.019257745, 0.0032129816, -0.002855424, -0.01431573, 0.011508987, 0.011683569, -0.008997691, 0.035265576, -0.010159333, 0.030457856, 0.0028184932, 0.010307057, 0.0024206475, -0.018196823, 0.004539134, 0.017579071, 0.028201718, 0.02753025, 0.028040566, -0.03405693, 0.016115269, 0.00782262, 0.00654347, 0.0034295304, -0.023017975, 0.0080509195, -0.008675386, -0.028980624, -0.018639993, -0.007862908, 0.0068187728, 0.009508008, -0.015900398, -0.0012623627, 0.010065327, 0.0061875912, 0.02465636, 0.019512903, -0.015363222, -0.035534166, 0.010166048, 0.032848287, -0.020144084, -0.023662586, -0.009319996, 0.0046163527, -0.02660362, -0.011092676, -0.01209988, 0.026079874, -0.02484437, -6.9329224E-4, -0.016867314, -0.0043041194, 0.031666502, -0.021016994, 0.0038307335, 0.008393369, -0.0012363432, 0.008675386, -0.0031928374, -0.0039079525, 0.010132475, -0.00846723, -7.1301666E-4, -0.019110022, -0.010689794, -0.014476882, 0.004743932, 0.00424033, -0.044800445, 0.0051636, 0.0018717212, -0.014262012, -0.017968524, -0.0042067566, 2.3619465E-5, -0.024065467, -0.012005875, -0.02487123, -0.03214996, -0.0052408194, 0.095832124, 0.04689543, 0.0060902284, 0.0084000835, -0.010924809, 0.014020283, -0.002140309, 0.003498356, -0.0035621456, -0.024307195, 0.02268224, -0.007372735, 0.01716276, 0.0033321674, 0.00858138, -0.007157865, -0.0012329859, -0.010535357, 0.00654347, -0.00879625, -0.020546967, -0.014557458, 0.024240049, 0.027610825, 0.014154577, -0.004696929, 0.021312442, -0.004579422, 0.013436104, 0.010239909, -0.014168006, 0.01890858, 0.0062110927, 0.008635098, 0.0067583406, 0.0022242428, 0.025918722, 0.005432188, 0.015752675, 0.0053415396, -0.008091208, -0.0028319226, 0.016128697, 0.0015385045, 0.0062648105, -0.026737915, -0.015309504, 0.021822758, 0.025488982, -0.032767713, 0.0152557865, 0.008702245, -0.020439532, -0.022628522, 0.010622648, 0.0023333565, -0.004599566, -5.5773935E-4, -0.012388612, 0.0049453727, -0.0063856747, -0.03150535, 0.008212072, -0.0025918724, -0.0173642, -0.0178208, -0.028658317, -0.009400573, -0.019580051, -0.0030702942, 0.003416101, -0.015027488, 0.0061238017, 0.008782821, 0.028443448, -5.946702E-4, 0.028712036, -0.0022141708, 0.005381828, 0.004038889, -0.032015666, -0.007104147, 0.00823893, -0.028953765, 0.004579422, 0.008272504, -0.007359306, 0.01870714, -0.010481639, 0.019875497, 0.001437784, -0.002474365, -0.027557109, -0.0038139466, 0.033090018, 0.019982932, 0.0035319296, 0.020009791, -7.323214E-4, 0.005432188, 0.0027463103, -0.024293765, -0.0072988733, -0.017847659, -0.010609218, 0.0013026508, -0.007842763, 0.008782821, -0.024992095, -0.02464293, -0.01826397, -0.023716303, -0.0018129676, 0.002793313, 0.008702245, 0.0046902145, 0.016571866, 0.022480799, -0.020802125, 0.0015460585, 9.602014E-4, -0.019445756, 0.011643281, 0.022292787, -0.0100183245, 0.02201077, -0.018989157, -0.025435265, 0.00823893, 0.035426732, -0.0143023, 0.016585296, -0.02312541, -0.007413023, -0.010421206, -0.026737915, -0.0062446664, 0.0047002863, -0.008655242, 0.014893194, -0.030269844, 0.009461005, 0.0140740005, 0.013261522, -0.019929215, -0.03083388, 0.0054926206, -0.0045257043, 0.0052408194, 0.01603469, 0.0010835839, 0.0132883815, -0.021325871, -0.0011154787, -0.01387256, -0.035265576, -0.011945442, -0.0037938026, 0.046734277, 0.012616912, 0.034889556, -0.0056201997, 0.039912146, -8.141568E-4, 0.007399594, 0.02399832, -0.025032382, -0.00858138, -0.022749387, 0.007634608, 0.020291807, 0.025072671, -0.014826046, 0.011965587, 0.008735818, 0.02244051, 0.00363265, 0.010273484, 0.0011054067, -0.03585647, -0.022145065, 0.014154577, -0.028900048, -0.0069832825, -0.018653423, -0.00517703, 0.023649156, 0.0033842062, 5.4011325E-4, -0.022735957, 0.021419877, 0.0020664474, 0.0026825205, -0.03593705, 0.010219766, -0.027906273, 0.00583507, -0.006734839, -0.008588095, -0.010078757, 0.0030031472, 0.015309504, 0.0065132543, -0.008245645, -0.0083127925, 0.027181085, -0.02706022, -0.01122697, 0.014208294, -0.023246273, -0.007936769, -0.026348462, -0.007634608, -0.025918722, -0.018586276, -5.757851E-4, -0.002444149, -0.0031458347, -0.021339301, -0.03830062, 0.024025178, 0.0023853953, 0.03967042, 0.0033539901, 0.03784402, 0.033949498, 0.010119045, -0.029249212, 0.006029796, -0.007171294, 0.005643701, 0.029544657, 0.020358955, -0.020627543, -0.0021957052, -0.003595719, 0.006184234, -0.035373013, -0.033815205, 0.015792962, 0.020358955, 0.039724134, -0.02748996, 0.0029041055, -0.037978314, 0.0038408055, -0.005536266, 0.00412618, 0.006268168, -0.040583614, -0.035426732, -0.0037635865, -0.007070574, 0.00759432, 0.0173642, -0.024468347, 0.018666852, -0.02574414, 0.017659647, -0.011448555, -0.005872001, 0.035722177, -0.0220242, 0.015564662, 0.007433167, 0.006765055, 0.015685527, -7.4910815E-4, 0.004676785, 0.03325117, -0.011858151, 0.013261522, 0.008185213, 0.015067776, 0.0131137995, 0.013093655, -0.01473204, -0.015457228, -0.024119183, -0.006174162, 0.03080702, -0.011045673, -0.0107569415, 1.3167097E-4, -0.0065938304, -0.017337343, -0.011146394, -9.291459E-4, -0.0030904384, -0.030753303, -0.006375603, 0.005586626, -0.0037904454, -0.0034479958, 8.376582E-4, -0.0063588163, -0.005311324, 0.009058123, -0.022279358, -0.006147303, -0.019727774, -0.0070504295, -0.042168286, -0.028282296, -0.024924947, -0.018841434, 0.010938238, -0.014248583, -0.0042571165, 0.0060432255, 0.002207456, -0.011676854, -3.3678392E-5, -0.017632788, 0.0024693292, 0.01915031, -0.015484086, -0.017713366, -0.009957893, 0.022991115, -0.012489333, 0.0036393646, 0.0025264039, 0.02113786, 0.029866964, -0.02311198, 0.020493248, -0.009232705, -0.007372735, 0.006261453, 0.019942643, 0.025193535, 0.007533888, -0.0058417846, -0.037978314, -0.012361754, -0.015376652, 0.030189268, 0.0033657409, -0.002361894, 0.030538432, 0.016773308, 0.039133243, 0.0295178, -0.01606155, -0.021016994, 0.0031827653, 6.660138E-4, -0.018828005, 0.0043846956, 0.016249562, 0.015752675, 0.012355039, -0.00401203, -0.035077564, -0.015349792, -0.02532783, -0.033815205, -0.00880968, 0.013979995, 0.033600334, 0.01717619, 0.00792334, 0.023165697, 0.00412618, -0.007520458, -0.015215498, -0.021325871, 0.012912358, -0.0112806875, 0.029141776, 0.02090956, -0.024750365, -0.0023887528, 0.018116247, 0.014879764, 0.0101929065, 0.020949848, -0.010521927, -0.006117087, -0.0063621732, -7.407148E-4, -0.022601662, 8.2255015E-4, 0.040422462, -0.02158103, 0.006832202, 0.0012380219, 0.0013748338, -0.008346366, 0.012757921, 0.016813597, 5.514443E-4, -0.0038676644, -0.0016568509, -0.026979644, -0.002742953, -0.033304885, 0.026536474, 0.015779532, -0.0044954885, 0.035775896, 0.030269844, -0.0018901866, 0.0110121, -0.013711407, 0.025905292, -0.002628803, -0.0020295165, 0.00286046, 0.012220745, -0.02356858, 0.012496048, -0.028201718, -0.0010307056, -0.01134112, -0.011072532, -0.00803749, 0.032230537, 0.005103168, -0.0642462, 0.0039818143, -0.016222702, 0.025018953, -0.021889905, -0.0065266835, -0.014463453, -0.0122878915, -0.008675386, 0.0042436873, -0.024683218, -0.032740854, 0.010575645, -0.008319507, -7.474295E-4, 0.021607889, 0.18317688, -0.0047506467, 0.0065065394, 0.0414431, -0.0010944953, -0.004512275, 0.021943623, 0.018975727, -0.007500314, 0.016827026, 0.013046652, -8.5108756E-4, -0.017109042, 0.003807232, 0.013442819, -0.03505071, -0.01872057, -0.010864376, -0.023716303, -0.030457856, 6.7986286E-4, 0.014772329, -0.00846723, -0.022158492, 0.009380429, -0.008212072, 0.0017861088, 0.0058585713, 0.02534126, 0.004310834, -0.015322934, -0.010246624, 0.0015586485, -0.002237672, -0.017659647, -0.0074533112, 9.0060843E-4, 0.0066441908, 0.020385813, -0.008306078, -0.015000628, 0.001203609, -7.512065E-4, 0.0036091486, 0.021755612, 0.01607498, -0.02573071, -0.0018717212, -0.0084000835, 0.020828983, -0.045901656, -0.0069161355, 0.026388751, 0.023743162, -0.0037367276, -0.0012447366, 0.0028168145, -0.0010248303, -0.010689794, 0.0030518288, 0.01692103, 0.033412322, -0.032902006, 0.019244315, -8.389172E-4, 0.022910539, -0.035587884, 0.010025039, 0.005992865, -0.037521716, -0.017109042, -0.02444149, -0.017323913, 0.0014747148, -0.0027916345, -0.005304609, 0.005083024, -0.012731061, 0.0106696505, 0.02068126, -0.03384206, -0.011589563, 0.00769504, 0.0031810866, -0.021513883, 0.0015519338, 0.0149066225, -0.007701755, -0.009877317, -0.009998181, -0.0030937956, -0.024105756, -0.009447576, 0.009447576, -0.008708959, -0.01740449, 0.03693082, 0.0128519265, -0.02072155, 0.0036762955, -0.03217682, 0.02750339, 0.021003565, 0.002932643, -0.036447365, -0.017767083, 0.0029393577, 0.010824088, 0.01780737, -0.0052743927, -0.012516191, -0.031800795, -0.002865496, -0.004743932, -0.0044115544, 0.03150535, -0.009662446, -0.012818352, 0.0396167, -0.011616422, 0.010985241, -0.028148001, 0.01849227, 0.0013102049, -0.0044585573, -0.025394976, -0.022964256, 0.0033674196, 0.00923942, -0.04069105, 0.022077916, -0.002284675, 0.02356858, -0.0020446246, 0.006013009, -0.0061405883, 0.020291807, -0.016853884, 0.005083024, 8.389172E-4, 0.0038911656, -0.031612784, 0.011495558, 0.014006854, 0.0061372314, -0.023273133, 0.003622578, -0.0037165836, -0.021728752, -0.034674685, -0.014382876, -0.0033875636, 0.011146394, -0.005485906, 0.04069105, 0.005741064, -0.01473204, -0.03080702, -0.013597257, 0.040852204, -0.03521186, 0.02268224, 0.02706022, -0.018801145, -0.034298662, -0.001121354, -0.17135902, 0.030726444, 6.408337E-4, -0.041040216, 0.012751206, 0.009487864, 0.029786387, -0.0063050985, 0.005576554, -0.01497377, 0.039455548, 0.0037837306, -0.046976008, -0.0021335944, 0.0035252147, 0.018680282, -0.008124781, 0.04246373, 0.03169336, -0.004106036, 0.041040216, -0.01761936, -0.0012909, 0.009232705, 0.010965097, -0.0026774846, 0.0286046, 0.005237462, 0.009319996, 0.009031265, -0.04310834, -0.016303279, 0.026872208, 0.0031156184, -0.011260543, 0.0033321674, -0.012254318, -0.013832271, -0.004233615, 0.0051837447, 0.04705658, 0.014208294, 0.021755612, 0.011173252, 0.016383857, 0.0028336013, 0.023044832, -0.0075406022, 0.021325871, -0.02178247, -0.010401063, -0.036017623, 0.024696648, -2.1392599E-4, -0.007171294, 0.022064488, 0.005663845, 0.0068254876, 0.0045055603, 5.904735E-4, -0.03083388, -0.001494859, 0.0030266487, -0.027154226, 0.0030518288, -0.017095612, -0.021487024, 0.009340141, -0.031612784, 0.0027211301, -0.017955095, 0.012046163, 0.015363222, 0.0017374273, 0.010730082, -0.017740224, -0.03190823, 0.014114289, 0.0039415257, 0.01893544, -0.005593341, 0.037279986, -0.00946772, 0.012113309, 0.001432748, -0.004589494, 0.001661887, 0.0043511223, -0.012240889, -0.010716653, 0.008722389, -0.029437223, -0.017659647, 6.488074E-4, -0.0035017135, 0.0054624043, -0.0050964532, 0.016209273, 0.017646218, -5.380149E-4, 0.0064729657, -0.017874518, -0.013536825, 0.019942643, 0.021755612, 0.015027488, 0.017686507, 0.017579071, 0.022279358, -0.0041765403, -0.01894887, 0.0053012515, 0.032203678, 0.013926277, -0.008816394, 0.0035319296, -0.011253829, -0.01893544, 0.0015233965, 0.014799188, 0.047378886, 0.005056165, 0.002571728, -0.011905154, 0.0033657409, -0.01696132, -0.08036147, 0.004059033, 0.019915786, 0.025072671, -0.01825054, 0.047244594, -0.0057142056, 0.004300762, -0.022507658, 0.039455548, -0.0044686296, -0.020600684, 0.023152268, 0.0058014966, 0.015551234, -0.002613695, -0.015685527, -0.02664391, -0.0032935578, 0.033090018, -0.0063823177, -0.01780737, -0.012334894, -0.016692732, -0.010716653, 0.018129677, -0.014812617, 0.015054346, 0.019888926, 0.00461971, 0.0032180175, -0.016424144, 0.027154226, -0.03787088, -0.022695668, -0.023716303, -0.017861089, -0.017847659, 3.3132822E-4, -0.03854235, 0.009098412, 0.011032244, -0.0016501363, -0.016209273, -0.018129677, 0.0015695599, -0.04316206, 0.022816533, -0.00384752, -0.018290829, -0.006590473, -0.01716276, -0.034244943, -0.007292159, 0.013885989, 0.02684535, 0.02884633, 0.0039818143, -0.016692732, -0.037924595, -0.0018247183, 0.0033254526, -0.020332096, 0.020842412, 0.012798209, 0.007997202, -0.013241379, -0.00968259, 0.0065669715, -0.0036057911, -0.031666502, 0.016907603, -0.044827305, -0.020479819, -0.018545987, -0.0017424633, -0.03233797, -0.010730082, 0.027557109, -0.038112607, 0.0059290756, -0.031075608, 0.01518864, -0.007392879, 0.012502762, 0.023058262, 0.014060571, 0.022829963, -0.007768902, -0.042624883, -0.014503741, 0.029222352, -0.0023216058, 0.0057175625, 0.009407287, 0.016383857, 0.005072952, 0.013597257, 0.0023367137, 0.027664542, -0.012113309, -0.0025868362, -0.07418395, 0.049151566, -0.02378345, 0.009145414, -0.01330181, -0.01188501, -0.010971812, -0.011549275, 0.014208294, 0.023958031, -8.964118E-4, 0.017028466, -0.0014822689, -0.0066878363, 0.0010256696, 0.017041896, -0.01737763, 0.0011255507, 0.0057947817, 0.012052878, -0.03233797, 0.007325732, 0.019217458, 0.0037703011, 0.0094945785, 0.0044014826, 0.009555011, -0.00782262, -0.017538782, -0.0050091622, 0.029544657, -0.018022241, -0.013630831, 0.004666713, -0.009951178, -0.03958984, -0.023031404, -0.0023316778, 0.01517521, 0.007654752, -0.006630761, -0.021003565, 0.0032029094, -9.341819E-4, -0.015806392, 0.017270196, -0.020144084, 6.2110927E-4, 0.011300831, 0.018666852, 0.03682339, -1.1614324E-4, 0.0040053157, -0.02571728, 0.008541092, -0.017914806, 0.042974047, 0.0051736725, -0.0050058053, -0.030699585, 0.02178247, 0.0029292856, 0.023461144, -0.03037728, 0.013268237, -0.0021335944, 0.013180946, 0.0023283204, 0.00489837, -0.027315378, -0.0173642, 0.0024961878, 0.01496034, 0.03123676, 0.02201077, 0.012992934, 0.009850457, -0.010374203, -0.0016786738, 0.0072518704, 0.018733999, 0.0013462963, -0.032713994, 0.012892215, -0.011717143, 0.014382876, 0.008393369, 0.025515841, 0.012529621, 0.005230747, -0.0018465411, 0.01869371, 0.0107838, 0.009192417, 0.014409735, -0.0017642861, 0.008165069, -0.021433307, 0.012160312, 0.01979492, -0.015819822, -0.012193886, -0.0070101414, -0.017444778, -0.032499123, 0.0030316848, -0.019056303, -0.01035406, 0.02112443, 0.010011611, 0.024951806, 0.017297054, -0.01694789, 0.01144184, -0.042222, 0.01045478, -0.0034278517, -0.0027479888, -0.0102331955, 0.03368091, 0.010011611, 0.008017345, 0.039509267, -0.008876827, 0.05790753, -0.004471987, 0.016155556, -0.023474574, 0.0049722316, 0.0106696505, -5.6529336E-4, -0.008353081, -0.024226619, 0.0020614113, -0.016249562, 0.019754633, 0.012509476, 0.03846177, -0.02793313, 0.07300216, 0.030511573, 0.001029027, 0.007842763, -0.019257745, 0.02268224, 0.023837168, 0.0128519265, -0.011132964, -0.015094634, -0.0044115544, -0.009998181, 0.003709869, -0.030619008, 0.0053683985, -0.01606155, 0.0102801975, 0.01474547, -0.01267063, -0.017740224, -0.012133454, -7.377771E-4, 0.016813597, 0.008044205, -0.016867314, -6.7063014E-4, 0.0061036577, -0.015054346, 0.0057242773, -0.03037728, -0.007392879, -0.024347484, -0.007023571, 0.0034026715, 0.025274111, 0.0140740005, -0.0047909347, 0.011683569, 0.023796879, 0.0079636285, -0.022319647, 0.0030182553, -0.026133593, -0.020882702, 0.02444149, -0.017297054, -0.0066240467, -0.020775266, -0.0067986287 ], + "id" : "b6400f80-98bb-4211-af06-acb281b08f8b", + "metadata" : { + "source" : "movies.csv" + } + }, + "941b92bd-2ba2-4584-adbe-ec576f542e5d" : { + "text" : "219,14096,Daniel Craig-Judi Dench-Javier Bardem-Naomie Harris-Ralph Fiennes-Ben Whishaw-Albert Finney-B��r��nice Marlohe-Rory Kinnear-Ola Rapace-Helen McCrory-Nicholas Woodeson-Bill Buckhurst-Elize du Toit-Ian Bonar-Gordon Milne-Peter Basham-Ben Loyd-Holmes-Tonia Sotiropoulou-Wolf Blitzer-Orion Lee-Dave Wong-Roger Yuan-Yang Liang-Yennis Cheung-Chooye Bay-Milorad Kapor-Huw Edwards-Elio Lo Tauro-Amir Boutrous-Nicholas Goh-Khan Bonfils-Kurt Egyiawan-Oliver Johnstone-Harry Kershaw-Burt Caesar-Crispin Letts-Beatrice Curnew-Jim Conway-Jens Hult��n-Michael Pink-Jo Cameron Brown-Anthony O'Donnell-Hannah Stokely-Wayne Gordon-Tom Wu-Jake Fairbrother-Christopher Sciueref-Daniel Adegboyega-Selva Rasalingam-Steve Barnett-Lee Nicholas Harris-Duncan Casey-Angela Tran-Tom Coulston,spy-secret agent-sociopath-mi6-killer-art gallery-british secret service-uzi-booby trap-impersonating a police officer-macao-komodo dragon,/d0IVecFQvsGdSbnMAHqiYsNYaJT.jpg,/hoQhlAskVNgLQhArnH7reWP4pUp.jpg,10764-36557-49026-206647-49051-56292-68721-24428-70160-1930-87827-68718-70981-59967-10528-47964-155-19995-49521-27205-54138\r\n91314,Transformers: Age of Extinction,Science Fiction-Action-Adventure,en,\"As humanity picks up the pieces following the conclusion of \"\"Transformers: Dark of the Moon\"\" Autobots and Decepticons have all but vanished from the face of the planet. However a group of powerful ingenious businessman and scientists attempt to learn from past Transformer incursions and push the boundaries of technology beyond what they can control - all while an ancient powerful Transformer menace sets Earth in his cross-hairs.\",199.987,di Bonaventura Pictures-Tom DeSanto/Don Murphy Production-Ian Bryce Productions-Paramount,6/25/14,210000000,1104054072,165,Released,\"This is not war, it's extinction.\",5.9,7328,Mark Wahlberg-Stanley Tucci-Kelsey Grammer-Nicola Peltz Beckham-Jack Reynor-Sophia Myles-Li Bingbing-Titus Welliver-T.J. Miller-James Bachman-Thomas Lennon-Charles Parnell-Erika Fong-Michael Collins-Han Geng-Zou Shiming-Richard Riehle-Patrick Bristow-Cleo King-Calvin Wimmer-Glenn Keogh-David Midthunder-Richard Gallion-Nick Horst-Kassem Gharaibeh-Yanis Kalnins-Edward T. Welburn-Peter A Kelly-Jessica Gomes-Andreas Beckett-Alexander Leeb-Jamison Haase-Drew Wicks-Gene Shieh-Woei Bee-Wang Ying-William Wang-Abigail Klein-Melanie Specht-Greg Matthew Anderson-Austin Lin-Victoria Summer-Kevin Covais-B. Adam Baillio-Mikal Vega-Andrew Arrabito-Tyrone Smith-Kenny Sheard-Kevin Kent-Michael Wong-Winston Yeh Ying-Wen-Ray Lui-Candice Zhao-Li Jun Ting-Howard Y.", + "embedding" : [ 0.010928788, -0.030660193, -0.009899559, -0.039760746, -0.023130571, 0.041440014, -0.005609976, -0.014625887, -0.024864009, -0.02574427, 0.024904637, 0.024606701, 0.01289922, 0.007265545, 0.00745514, 0.01669789, 0.01501862, -0.013813338, 0.017483354, -0.02841214, -0.011673626, 0.0012162848, -0.016657261, 0.009703193, -9.1835E-4, 0.0025189028, 0.033720795, -0.013583116, -0.0146936, -0.004506263, 0.008376029, -0.0065444075, -9.970657E-4, -0.015871797, -0.007461911, 0.0017292065, 0.0106105395, -0.026380768, 0.032420717, -0.0052477145, 0.0066222767, 0.0215461, -0.012242409, 0.0021363276, -0.011314749, 0.011477259, 0.018932398, -0.007814016, -0.0062667867, 0.03095813, 0.03228529, 0.036266785, -0.02329308, -0.03068728, -0.020232478, -0.0059214532, -0.017212503, 0.0058672833, 0.0023259225, -0.0030859946, 0.015533234, -0.019541811, -0.03721476, -0.009276604, -0.022819092, -0.011673626, -0.006784787, -0.014070646, -6.834725E-4, 0.007983297, 0.025405709, 0.008125493, 0.025121316, 0.011605913, 0.02024602, -0.030253919, -0.022995146, 0.0023648571, -0.0075770225, 1.529878E-4, 0.0067340024, -0.004343753, -0.012100213, 0.0066798325, 0.015628032, 0.010685024, -0.017605236, 0.02405146, -0.02922469, 0.013251325, 0.012276266, 0.038541924, -3.4448705E-4, 0.0029167135, 0.0037614263, 0.021248166, -0.0068084863, 0.028114207, -0.03553549, -0.047479965, 0.0028980926, -0.0046653873, -0.0045367335, -0.010089154, -0.0072994013, 0.008348945, 4.153735E-4, -0.010278749, 0.022304479, 0.01354926, 0.012316894, -0.00702178, 0.01714479, -0.03878569, -0.010705337, -0.01545198, 0.02655682, -0.031337317, -0.0014676672, -0.022927433, 0.02057104, 0.027342284, -5.7682535E-4, -0.049863443, 0.041548356, 0.026597448, 0.0106308535, -0.011335063, 0.001970432, 0.003612459, 0.010265206, 0.006270172, 0.026109919, 0.0065816496, -0.026610991, 0.055578373, -0.031256065, -0.0035041189, -0.017280215, -0.023685813, 0.025839068, 0.04114208, -0.027017266, -0.023306623, -0.027409997, -6.898205E-4, 8.527536E-4, 0.0018231575, 0.009899559, 0.012425234, 0.017293759, 0.034425005, 0.020476243, 0.008843245, 0.016982282, 0.0033991646, -0.014625887, -0.0017977654, 0.004025505, -0.01240492, 0.0015531542, -0.012729939, 0.004973479, -0.01746981, 0.008673964, 0.023861865, 0.008863559, -0.024823382, -0.008714591, 0.0011502651, -0.0036801712, 0.029089266, -0.016034307, 0.01648121, 0.0027982167, 0.0064123683, 0.013826881, -0.019541811, -0.036320955, -0.014233155, 0.015316554, 0.0058571263, 0.04070872, 0.03764812, 0.0022412818, 0.022155512, 0.019230334, -0.024999434, 0.012506488, -0.005538878, -0.0062972573, 0.029089266, 0.01142986, -0.013474776, -0.64007217, -0.023821237, -0.006764473, -1.1680397E-4, 0.01849904, 0.021695066, 0.0013508633, -0.004956551, -0.018851144, -0.0061415187, -0.027613135, 0.005474551, 0.010671481, -0.015370725, -0.019027196, -0.016846856, 0.0012391377, -0.026705788, 0.014084188, 0.01898657, -0.028141292, 0.026543278, -3.2544293E-4, -0.0060365642, 0.011883534, -0.0045502763, -0.017672949, -0.026421396, 0.021031484, -0.0070624077, -0.0138065675, 0.007461911, 0.011734567, 0.0036937138, 0.04087123, 0.0059959367, -0.0031283149, 0.050838504, 0.027626676, 0.028060036, -0.030660193, -0.007224918, 0.015709287, -0.01480194, -0.023117028, 0.030768534, -0.0013364743, 0.007874957, -0.009615167, -0.0022023472, 0.0014727457, 0.0043572956, -0.013799796, -0.0062600155, -0.016670803, -0.0028980926, 0.0041643153, -0.05855772, 0.01518113, 4.6256062E-4, -0.010725651, 0.031364404, 0.0014972914, 0.004208328, -0.0020821576, 0.024620244, -0.006067035, -0.0069202115, 0.0011858142, -0.026326599, 0.002804988, 0.0078004734, -0.022169054, -0.02388895, 0.005901139, 0.00603995, 0.043525558, 0.0015641574, -0.0026052361, 0.025852611, 0.0033890079, -0.009506827, -0.0025646088, 0.010840762, 0.025947409, -0.0016259451, -0.0293872, -0.0029319488, 0.0022802164, 0.005328969, 0.010075611, 0.026949553, 0.018160477, 0.0066324337, -0.012316894, -0.0027999096, 2.6640613E-4, -0.0054169954, 0.030416429, -0.063216336, -0.014111273, -0.011253808, 0.042956773, -0.012655456, 0.010156866, 0.009188578, -0.008037467, -0.01404356, 0.021911746, -0.014490463, -0.0069946954, -0.0013491705, -0.025920324, 0.006077192, -0.01633224, -0.029495541, 0.016074933, 0.024078544, -0.013562802, -0.005000564, -0.0042523416, 0.0016699581, -6.877045E-4, -0.021017943, 0.0076041073, 0.036293868, -8.734905E-4, -0.010373546, 0.0034617987, 0.013589887, 0.0021295564, -0.0076853624, 0.013468005, -0.024241054, 0.01132152, 0.010387089, 0.0069235973, 0.0011451867, -0.001755445, 0.0078072445, -0.026529735, -0.013650829, -0.013921678, -0.016576005, -0.011795508, -0.011375691, -0.033720795, 3.978106E-4, -0.0066087344, -0.013799796, -0.0023445433, 0.031228978, -0.003108001, 0.0075634797, 0.011165782, -6.654864E-5, -0.027680846, -0.0123236645, 0.003967949, -0.03385622, 0.003477034, 0.012668998, -0.005091976, -0.012005416, 0.03052477, 0.006236316, 0.0011993566, 0.015330097, -0.002285295, -0.015492607, 0.02116691, -0.015248843, 0.0015912424, 0.012174698, -0.018932398, 0.019961629, -0.014165443, 0.02933303, 0.012614829, -0.0016149417, 0.0039273216, -0.013339351, -0.035345897, -0.023428505, 0.026895382, 0.03074145, 0.017158333, -0.014260241, -0.008646879, 0.011558514, -0.012174698, -0.02030019, -0.0028083737, 0.011524658, 0.0064834664, 0.021072112, 0.0071368916, -0.01393522, 0.0048685246, -0.0047330996, 0.04217131, 0.037431438, 0.0048549823, -0.0031689424, 0.014923822, -0.026137004, -0.0042387987, -0.023171198, 0.010007899, -0.005268028, 0.031283148, -0.008023924, -0.024647329, 0.0051122895, 0.0058638975, 0.02634014, -0.00919535, 0.01431441, -0.00745514, 0.0066155056, 0.0078072445, -0.013528946, 0.020828348, 0.008558853, -0.024769211, 0.005948538, 0.020340817, -0.013664371, 0.009770906, -0.008206748, -0.010840762, -0.0041135307, 0.0056065903, 0.0077530746, -0.01442275, -0.0125538865, 0.02976639, -0.011734567, 0.04604446, -0.016007222, -0.017375013, 0.00919535, 0.028032951, -0.003940864, 0.0084775975, -0.010251664, 0.013881051, 0.018295903, -0.00644961, 0.049430083, -0.029739305, 0.035345897, -0.0016894254, 0.0018367, 0.0068084863, -0.010095925, -0.0038866943, 0.016359325, 0.032447804, 0.02024602, 0.016291615, -0.024999434, 0.026570363, 0.006530865, 0.020056427, 0.0036666289, -0.008782304, 0.007150434, -0.005518564, -0.031743594, -0.016833313, -7.3468E-4, 0.0034736483, 0.005796185, 0.0062329303, -0.009662566, 0.0017689876, 0.01354926, 0.0063751265, 0.021099197, 0.0092088925, -0.031256065, 0.011138697, 0.022968061, -0.015736371, -0.034316666, -0.013176842, -0.014558176, -0.04913215, -0.016467666, -0.009533912, 0.029847644, -0.024620244, 0.0010072226, -0.019609524, -6.898205E-4, 0.016034307, -0.018959483, 0.020611668, 0.0236181, -0.0033449947, 0.007658277, 0.0055659628, -0.014097731, 0.011673626, -0.013962306, 0.0018028438, -0.0054914793, 7.5414736E-4, -0.013258097, 0.0036564718, -0.0035650602, -0.04271301, 0.0030961514, -0.0099605005, 0.009398487, -0.009296918, 0.005163074, 0.009405258, -0.014829025, -0.020476243, -0.029468454, -0.015871797, 0.0029539554, 0.075242065, 0.040031597, 0.009818304, 0.0109220175, -0.015804084, 4.126227E-4, -0.0058198846, -0.01507279, -0.010813677, -0.02170861, 0.015479065, -0.022047171, 0.018092765, 0.0089245, -0.0021718766, -0.013021103, -0.014409208, -0.01115901, -0.005213858, -0.012161155, -0.035400067, -0.0128044225, 0.016887484, 0.030931044, 0.012059586, -0.0071233492, 0.019717863, 0.0028557724, 0.0013931835, 0.017957339, 0.0042455704, 0.010420945, 0.010407402, 0.007224918, 0.0051055183, 0.0012145919, 0.02868299, 0.028980926, 0.02246699, 0.0039747204, -0.009127637, -2.295875E-4, 0.0078004734, -0.009926644, 0.00696761, -0.022182597, -0.004140616, 0.02350976, 0.026421396, -0.030551855, 0.018593837, 0.008667192, -0.013881051, -0.018837601, 0.005914682, 4.4901815E-4, -0.0039916486, -0.0060433354, -0.018214647, 0.010698566, -0.0010613926, -0.038839858, 0.010854305, -0.009770906, -0.0034093214, -0.019609524, 4.587518E-4, -0.004773727, -0.010129781, 0.013136214, 0.019528268, -0.0108610755, -0.010089154, -0.010244893, 0.014842568, -0.0057454007, 0.02998307, -0.010590226, 0.011396004, 0.014097731, -0.04065455, -0.030876875, 0.009953729, -0.020205393, -8.455591E-4, 0.0043132827, -0.013142985, 0.013291952, -0.009053154, 0.0076989047, -0.009946958, 0.0043031257, -0.019162621, -0.0077463035, 0.03301659, 0.014382123, 0.009466199, 0.008037467, 0.010962645, 0.01828236, 0.0024004062, -0.020909602, -0.013474776, -0.029305946, -0.0077395323, -0.016738515, 0.0056302897, 7.799627E-4, -0.013136214, -0.026204715, -0.032041527, -0.02666516, 0.0040458185, -0.0035041189, 0.0036937138, -0.0065477933, 0.025473421, 0.0135560315, -0.017347928, 0.016968738, 0.014287326, -0.010461573, 0.013908136, 0.026272427, 0.0070014666, 0.037621032, -0.012946619, -0.01936576, 0.008328631, 0.032231122, -0.0099401865, 0.008673964, -0.013630515, -0.0087484475, -0.011274122, -0.015600947, 0.008958356, 1.5044858E-4, -0.012872135, 0.011721024, -0.018092765, 0.0094594285, 0.010299062, 0.017645862, -0.0060975053, -0.025608845, 0.008179663, -0.010508971, 0.012736711, 0.025432793, -0.011098069, 0.008105179, -0.035698, -0.011910618, -0.004706015, -0.037485607, -0.020963773, -0.0020093666, 0.03339578, 0.011098069, 0.03873152, -0.007793702, 0.025825527, 0.009865703, 0.009858931, 0.022155512, -0.022304479, -0.007847873, -0.03220404, 9.784448E-4, 0.022277394, 0.023103485, 0.0014913665, -0.0049700933, 0.0065714926, 0.02030019, 0.0078072445, 0.015357182, 0.0069405255, -0.015086332, -0.028114207, 0.0056844596, -0.027762102, 0.0024088703, -0.020449158, -0.014178986, 0.02459316, 0.0038697661, 0.0026543278, -0.01921679, 0.032041527, -3.5509358E-6, 0.008403114, -0.026218258, 0.0066629043, -0.02426814, -0.0023276152, -0.0230764, -0.0072723166, 0.0075837937, -0.014815482, 0.02655682, 0.008308317, -0.020340817, 0.0065105516, 0.02165444, -0.012249181, -0.021424217, 0.012668998, -0.019501183, -0.014734227, -0.033179097, -0.0106511675, -0.024660872, -0.020462701, -0.0051563024, -0.007990068, 0.011856449, -0.016074933, -0.036212616, 0.033206183, 0.011226723, 0.03613136, 0.020069968, 0.053140726, 0.028655905, 0.012127299, -0.025392165, 1.1168586E-5, -0.02628597, 8.0620125E-4, 0.02513486, 0.02965805, -0.020313732, 6.8474206E-4, -0.00283038, -0.0066866037, -0.03488545, -0.031012299, 0.02906218, 0.02024602, 0.027382912, -0.014761313, 0.0084979115, -0.030822704, 0.0022141968, -0.006019636, 0.0012738403, 0.013231011, -0.027017266, -0.013779482, -0.0142466985, -2.3995597E-4, 0.024620244, 0.01279088, -0.019799119, 0.019352216, -0.023902493, 0.005000564, -0.016129104, -0.00273389, 0.028168377, -0.027084976, 0.011280893, 0.0022819093, 0.01420607, 0.008071323, -1.3362628E-4, 0.0069472967, 0.031147724, -0.017943798, 0.031608168, 0.0015785464, -0.006405597, 0.01268254, 0.015858253, -0.025920324, -0.013616973, -0.023577472, 0.0020009028, 0.024241054, 0.005132603, 0.0019433472, 0.0130346455, -0.011226723, -0.018485498, 0.016616633, 2.5667247E-4, -0.004641688, -0.028574651, 0.0046721585, -2.1943063E-4, 0.005027649, -0.0023733212, -0.0068931268, 0.0038088248, 0.0019602752, 0.016115561, -0.011815822, -0.0142466985, -0.019866832, -0.01714479, -0.035156302, -0.027762102, -0.011443403, -0.005955309, 0.0096896505, -0.025622388, 4.4774852E-4, 0.0014008011, -0.012966933, -0.011531429, 0.010874619, -0.016819771, -0.009838618, 0.018634465, -0.007962983, 0.004766956, 4.4097728E-4, 0.029793475, 0.0042354134, 0.0029810404, -0.006354813, -0.0054305377, 0.030443514, -0.020868976, 0.01975849, 0.0047804983, -0.019352216, -0.009601625, 0.0167656, 0.026109919, 0.014409208, -0.0071639763, -0.030253919, -0.008118722, -0.0048346682, 0.032881163, -0.011416318, 0.015628032, 0.011084527, 0.009493285, 0.052003156, 0.00772599, 0.001129105, -0.026705788, 0.011416318, -7.03363E-4, -0.030660193, 0.003422864, 0.011565286, 0.0052646426, 0.0066256626, -0.009649023, -0.02965805, -0.008579167, -0.025676558, -0.038325243, -0.003458413, 0.017645862, 0.025757814, 0.01213407, 0.006730617, 0.015790543, 0.0033653085, -0.0015895496, -0.015966594, -0.014612345, 0.007874957, 0.006981153, 0.021844035, 0.015479065, -0.03683557, 0.0036327725, 0.010021442, 0.010786592, 0.0034431778, 0.0225347, -0.009757363, -0.022263851, -2.8566186E-5, 0.0041169166, -0.009486513, -0.0035176615, 0.02421397, -0.02170861, -0.009378173, 0.008409886, 0.028953841, -0.009351089, 0.00634127, 0.019853288, -0.015844712, -0.016914569, -0.011307978, -0.026841212, 0.004794041, -0.025893237, 0.01610202, 0.0121137565, -0.0013237783, 0.04005868, 0.027247487, 0.0049260803, 0.0011206409, -0.0061245905, 0.007231689, -0.010271978, 0.017930254, 0.0018908699, 0.039083622, -0.022778466, 0.0071978327, -0.032799907, 0.0027999096, -0.010766278, 0.015790543, -0.0061076623, 0.032041527, 0.015858253, -0.06592484, 0.005955309, -0.016494751, 0.0094594285, -0.011903848, 0.0087687615, -0.022412818, -0.010414174, 0.0033703868, -0.004265884, -0.01849904, -0.023035774, 0.0063074143, -0.0020669224, -0.0025663015, 0.0087687615, 0.17529397, -0.01725313, 0.008450513, 0.039056536, 0.014463378, 3.1168884E-4, 0.024891093, 0.009770906, -0.0049396227, 0.007990068, 0.006801715, 0.014138358, -0.0058537405, -1.7129132E-4, 0.008132264, -0.020151222, -0.029251775, -0.017767744, -0.012668998, -0.019298047, -0.014084188, -0.0012264416, -0.0014101117, -0.026055748, 0.0063683554, 0.0012374449, -0.01936576, 0.016115561, 0.018025052, 0.015871797, -0.013014331, -0.0072520026, -0.006717074, 0.009500056, -0.016738515, -1.4113812E-4, -0.021627354, 0.004316668, 0.007644735, 0.002894707, -2.0115356E-5, 0.004208328, -0.011727795, -0.0072520026, -0.0014871345, 0.021519015, -0.034018733, 0.0012171312, -0.027179774, 0.023320165, -0.046721585, -0.010197494, 0.007651506, 0.015479065, -0.005914682, -4.270116E-4, 0.01066471, 0.0036801712, -0.0030927658, -0.0028269945, 4.6975506E-4, 0.028330887, -0.023049315, 0.013393521, -0.004147387, 0.021816948, -0.02900801, 8.692585E-4, 0.019094909, -0.03296242, -0.01763232, -0.020110596, -0.022737838, 6.3141854E-4, -0.0054914793, -0.007103035, 0.0118632205, 0.011064213, 0.0052003157, 0.01920325, -0.020882517, -0.017226046, 0.017171875, -0.010779821, -0.013474776, -0.015600947, 6.8177964E-4, -0.018214647, -0.003145243, -0.022169054, -0.0051563024, -0.039381556, -0.022940977, -0.0044250083, -0.011375691, -0.008755219, 0.033720795, 0.010840762, -0.013474776, -0.012228867, -0.036673058, 0.035616744, 0.01920325, 0.008030696, -0.026963094, -0.015966594, 0.0023428504, 0.008524996, 0.022832636, -0.015492607, -0.017767744, -0.026421396, -0.0047195572, -0.015357182, 0.0014905202, 0.011626227, -6.76278E-4, -0.0020618439, 0.050594736, -0.022724295, 0.0050581195, -0.021153368, 0.021302335, 0.01028552, 0.0027779029, -0.029143436, -0.033693712, 0.010779821, -0.016399954, -0.03228529, 0.0183907, -0.01615619, 0.0037749687, -0.007658277, 0.010238121, -0.0022091186, 0.018241731, 0.0120731285, 0.0142466985, -0.008443742, -1.8864263E-4, -0.020124137, 0.020124137, 0.005061505, -0.0019772034, -0.01463943, 0.015411352, -0.012398148, -0.008734905, -0.03645638, -0.024105629, -0.003162171, -0.0011130233, 0.009838618, 0.043579727, -0.001070703, -0.020611668, -0.0367814, -0.017375013, 0.041114997, -0.04276718, 0.015438437, 0.020584583, -0.016887484, -0.02248053, -0.009879245, -0.17312717, 0.020611668, 0.0084979115, -0.039652407, 0.01006884, 0.02035436, 0.026001578, 0.0064360676, -0.0015895496, -0.0072520026, 0.018783432, 0.009371402, -0.03919196, -0.009554226, 0.0063107996, 0.008139036, -0.020814804, 0.03009141, 0.02132942, -0.008044238, 0.03537298, -0.011517887, 6.872813E-4, -0.013596659, 0.014233155, -4.5367336E-4, 0.027491251, -0.0027169618, 0.011890305, -0.008409886, -0.038189817, -0.012161155, 0.01936576, 0.00979799, -0.01752398, 0.005501636, -3.66282E-4, -0.02824963, -0.004658616, -0.009493285, 0.03266448, 0.013894593, 0.016115561, 0.010644396, 0.011030357, 0.012709626, 0.03193319, -0.02394312, 0.009235977, -0.014558176, -0.013461234, -0.04412143, 0.02917052, -0.013359665, 0.0044656354, 0.017781287, 0.008904186, 0.008741677, -0.002347929, 0.0013254711, -0.037458524, 8.548696E-4, 4.7864232E-4, -0.019636609, 3.5400913E-4, -0.013508633, -0.021519015, 0.0121137565, -0.032556143, 0.014219613, -0.021451302, 0.0130346455, 0.009838618, 0.0074686822, 0.0066696755, -0.024877552, -0.035183385, -0.0023157655, -0.0029793475, 0.01170071, -0.01687394, 0.03995034, -0.004597675, 0.019934542, -0.0014634351, -0.021221079, 0.0024884322, 0.0032112626, -0.0013694841, -0.007543166, 0.0018790202, -0.010563141, -0.032122783, 0.0037478837, -0.004076289, 0.0016318699, -0.012851821, 0.018268818, 0.008531768, -0.007895271, -0.005132603, -0.0063040284, -0.008938042, 0.017402098, 0.01860738, 0.01360343, 0.0056201327, 0.026367225, 0.022575328, -0.004262498, -0.0037072562, 0.0013373208, 0.008484369, 0.012885678, -0.021830492, 0.011632998, -0.024498362, -0.022263851, 5.1334494E-4, 0.021884661, 0.043606814, -0.0037478837, -0.0041609295, -0.010041756, -0.013610201, -0.012046044, -0.09024715, 0.011287664, 0.0121137565, 0.044094343, -0.03521047, 0.038704433, -3.8342172E-4, 0.02127525, -0.030795619, 0.021776322, 3.6734E-4, -0.02971222, 0.012147612, -0.0037851257, 0.015682202, -0.013975848, -0.011314749, -0.0032146482, -0.0065173227, 0.023916034, -0.0137456255, -0.0068761986, 0.0059383814, -0.011991873, -0.021559643, 0.021207538, -0.01687394, 0.029251775, 0.0061855316, -0.0038596094, 0.011687168, -0.025622388, 0.009310461, -0.038596094, -0.031851932, -0.02291389, -0.004380995, -0.026922468, 7.2790874E-4, -0.0441756, 0.0068220287, 0.01671143, 4.4182368E-4, -0.01501862, -0.023049315, -0.0062498585, -0.022805551, 0.035698, -0.0064123683, -0.028493397, -0.012174698, -0.02116691, -0.029360116, -0.013671142, 0.005633675, 0.019311588, 0.02693601, 0.016413497, -0.015587404, -0.020774178, -0.0067441594, -0.0027745173, -0.024227513, 0.018675093, 0.004956551, 0.013000789, -0.009215663, -0.0026238572, 0.017158333, -0.027924612, -0.014950908, 0.02655682, -0.0335312, -0.010075611, -0.016846856, 7.647274E-4, -0.019000111, -0.007658277, 0.027572507, -0.031635255, 0.0012018959, -0.031472743, 0.012939848, -0.022006543, 0.005474551, 0.023144113, 0.0115382, 2.911635E-4, -0.0024494976, -0.04766956, -0.009215663, 0.018146934, 0.0027423538, -0.0046992437, -0.00696761, 0.025053604, 0.018038595, 0.0020906217, -0.004966708, 0.011991873, -0.004333596, 0.0013178535, -0.07545875, 0.033260353, -0.02787044, -0.01295339, -0.0084979115, -0.010251664, 0.00919535, -0.0021380205, 0.0023276152, 0.030795619, -0.010305834, 0.013271639, -0.0070014666, -0.0075499373, -0.009147951, 0.015573862, 0.016278071, -6.254937E-4, 0.0013897979, 0.015912425, -0.017713575, 0.014368581, 0.026015121, 0.0044825636, 0.0036260013, 0.02084189, -5.9544627E-4, 0.0011781965, -0.012350749, -0.010156866, 0.03030809, -0.023929577, -0.001223056, -0.0019518111, -0.013481547, -0.025175486, 0.0014710529, 5.6328287E-4, 0.016589548, 0.010942331, -0.0054373094, -0.024674414, 0.01507279, -5.7132373E-4, -0.003234962, 0.016603092, -0.01806568, 0.0073264865, 0.0031232364, 0.013826881, 0.026570363, 0.007204604, -0.009330775, -0.011314749, 0.018973026, -0.010089154, 0.056282584, 0.004093217, 0.006906669, -0.016142646, 0.029576795, -0.0023343866, 0.019893916, -0.03526464, 0.0010368468, 0.0061753746, 0.011714253, -0.011199638, 0.004668773, -0.035129216, -0.006226159, -0.0047297142, 0.02459316, 0.033341605, 0.010420945, 0.021519015, -0.002813452, -0.011118383, -0.002823609, 0.018688634, 0.020367904, -0.009059925, -0.015763456, 0.010238121, -6.411522E-4, 0.026421396, -0.0075025386, -0.004194786, 0.016196817, -0.0034601057, 0.0018790202, 0.010366775, 0.02248053, 8.844938E-4, 0.009764134, 0.018106308, -0.02078772, -0.00952037, -0.0065579503, 0.03916488, -0.004634917, -0.004011962, 5.3916033E-4, -0.019000111, -0.020814804, 0.006087349, -0.0113621475, -0.012445547, 0.0133054955, 0.01752398, 0.027531879, 0.007922356, -0.019270962, 0.012513259, -0.037485607, 0.022588871, -0.007962983, -0.02192529, -0.01741564, 0.03233946, 0.02459316, 0.008084865, 0.023279538, -0.011341834, 0.060941197, 0.005826656, 0.024457734, -0.02432231, -1.4209033E-4, 0.007597336, 0.0041677007, -0.003514276, -0.007265545, 0.008606251, -0.019893916, -0.0050039496, -0.0015870103, 0.030443514, -0.022331564, 0.073454455, 0.026583904, 0.0060975053, 0.021993002, -0.020056427, 0.008917728, 0.017957339, 0.027328743, -0.011389233, -0.013752397, -0.00484144, 0.005169845, 0.0073806564, -0.039435726, 0.012222096, 0.0038223674, 0.023428505, 0.005643832, -0.007028552, -0.020205393, -0.0059790085, -0.002688184, 0.0152082145, 0.011544972, -0.01017718, -0.013190384, 0.016589548, -7.3806563E-4, -0.0043843808, -0.019121993, 0.0020262948, -0.022615956, -0.010786592, -0.004096603, 0.019352216, -0.004479178, -0.0120528145, -0.0017537522, 0.016724974, 0.0118225925, -0.021789864, -0.007766617, -0.019744948, -0.02111274, 0.03342286, -0.0027846743, -0.007218146, -0.03139149, -0.003297596 ], + "id" : "941b92bd-2ba2-4584-adbe-ec576f542e5d", + "metadata" : { + "source" : "movies.csv" + } + }, + "c882978c-55f7-43a1-9e1b-12c90f37e9d6" : { + "text" : "Krall-Bob Bergen-Doug Burch-Cathy Cavadini-Jason Pace-Townsend Coleman-Abby Craden-Jim Cummings-John DeMita-Willow Geer-Tara Strong-Jess Harnell-Oscar Jennings-Leo Jennings-Caspar Jennings-Asa Jennings-Jon Robert Hall-Laura Dickinson-Jen Faith Brown-�urea-Marisa Liz-Mickael Carreira-Deolinda Kinzimba-Jeremy Maxwell-Igor Khait-David Arnott-Daniel Mora-Britt Burton-Gregory Perler-Paige Pollack-Marisa De Silva-Jessica Rotter-Robert Taylor-Thomas Walters-Andrew Walton,anthropomorphism-singing-singing competition,/b8UiFXwMrSXVTHM0fb2twl8uE8a.jpg,/59CCw4EtiahW0E5cfTrvdbqPQTo.jpg,277834-136799-269149-328111-295693-127380-252316-106806-332210-278154-438695-324852-160532-150540-159824-38757-283366-321612-211672-140300-109445\r\n787699,Wonka,Comedy-Family-Fantasy,en,Willy Wonka ��� chock-full of ideas and determined to change the world one delectable bite at a time ��� is proof that the best things in life begin with a dream and if you��re lucky enough to meet Willy Wonka anything is possible.,604.239,Warner Bros. Pictures-Village Roadshow Pictures-The Roald Dahl Story Company-Heyday Films-Domain Entertainment,12/6/23,125000000,632221453,117,Released,Every good thing in this world started with a dream.,7.212,2684,Timoth��e Chalamet-Calah Lane-Keegan-Michael Key-Hugh Grant-Paterson Joseph-Olivia Colman-Tom Davis-Jim Carter-Rowan Atkinson-Matt Lucas-Mathew Baynton-Natasha Rothwell-Rakhee Thakrar-Rich Fulcher-Kobna Holdbrook-Smith-Simon Farnaby-Ellie White-Sally Hawkins-Colin O'Brien-Freya Parker-Murray McArthur-Charlotte Ritchie-Phil Wang-Rufus Jones-Isy Suttie-Ian Bartholomew-Sophie Winkleman-Justin Edwards-Michael Abubakar-Tim Fitzhigham-Jane Bertish-Tracy Ifeachor-Dominic Coleman-Muzz Khan-Ben Howard-Alison Pargeter-Bleu Woodward-Paul G. Raymond-Lola Shepelev-Marina Bye-Robyn Rose-Millie O'Donnell-Susie Fairfax-Macie Blake-Ellie Blake-Matilda Tucker-Bertie Caplan-Gustave Die,chocolate-musical-prequel-duringcreditsstinger-cartel-whimsical-admiring-exhilarated,/qhb1qOilapbapxWQn9jtRCMwXJF.jpg,/yyFc8Iclt2jxPmLztbP617xXllT.jpg,572802-609681-940551-695721-930564-872585-753342-726209-848326-252-466420-1022796-508883-118-346698-906126-520758-1075794-955916-502356-507089\r\n9502,Kung Fu Panda,Action-Adventure-Animation-Family-Comedy,en,\"When the Valley of Peace is threatened lazy Po the panda discovers his destiny as the \"\"chosen one\"\" and trains to become a kung fu hero but transforming the unsleek slacker into a brave warrior won't be easy.", + "embedding" : [ 0.010697891, -0.04246677, 0.0020248855, -0.027688658, -0.01675394, 0.03897524, -0.010447529, -0.01569836, -0.01817491, -0.032262836, 0.011651972, 0.01751179, 0.031423785, -0.0028351778, 0.0013338531, 0.009263386, 0.025496302, -0.018553838, 0.0060864976, -0.028229982, -0.004154652, 0.010494894, -0.011767004, -0.0015706818, -0.0015224703, 0.029772751, 0.048258923, -0.008072476, -0.00974381, -0.00315828, 0.011029451, 0.0018692551, -0.0044219303, -0.013851096, -0.0064518903, -0.0071589933, 0.01331654, -0.025388038, 0.027715724, -0.008113075, 0.010136268, 0.00494972, -0.0045437277, -0.004871905, -0.015941955, -1.1291654E-4, 0.0017829818, -0.01856737, 0.0015410782, 0.022870887, 0.030801265, 0.03810912, -0.020840926, -0.011083583, -0.0068172836, -0.00613048, -0.009303985, -0.0011621523, 0.0019301539, 0.009270152, 0.016483277, 0.004594477, -0.022870887, -0.010034771, -0.017186997, -0.008749129, -0.01521117, -0.0074770204, 0.00782888, 0.0024308774, 0.031071926, 0.0065398556, 0.0064485073, 0.013045878, 0.04141119, -0.017958382, -0.025076777, 0.005978233, -0.0012619586, -3.5482013E-4, 0.012206828, -0.0187433, -0.007382289, 0.009060389, 0.012754917, 0.0035253644, -0.016199084, 0.014114991, -0.02817585, 0.012024132, 0.0021213086, 0.047068015, -0.0023564456, -0.0035152147, 0.005721105, 0.031748578, -0.008052176, 0.024332458, -0.014372119, -0.047907062, -0.0040599206, -0.0018709467, 2.645292E-4, -0.015874289, -0.010711424, -0.009520514, 0.00204011, 6.588913E-4, 0.020827392, 0.00972351, 0.0012171303, 0.0011232448, 0.012179762, -0.03938123, -0.015590095, -0.020610863, 0.027986387, -0.027160868, -0.0013287782, -0.016388547, 0.026470682, 0.023466341, -0.0042696833, -0.033968, 0.033832673, 0.036620483, -0.013012046, -0.020962723, -0.0014133599, -0.0085258335, 0.0220995, 0.010237766, 0.028284114, 0.007294324, -0.03477999, 0.04365768, -0.033047754, -0.0027810456, -0.010988852, -0.022126567, 0.027661592, 0.022600224, -0.029935148, -0.018540304, -0.019203424, 0.013336839, 0.010122735, 0.00630641, 0.030043412, 0.010684358, 0.020732662, 0.022207765, 0.012707552, 0.0026287986, 0.027905189, -0.006942464, 0.014899909, -3.2415928E-4, 0.0057820035, -0.019609416, -0.0038569246, 0.0019047795, -0.00664812, -0.014169123, -1.4140999E-5, 0.020259004, 0.036485154, -0.009919739, 0.0074634873, -0.0047433404, -0.021896506, 0.025509834, -0.030611802, 0.015116437, -0.0013609192, 0.001804973, -0.011611373, -0.01038663, -0.029962214, -0.016429145, 0.0030686234, 6.897636E-4, 0.022749089, 0.035781432, 0.0012721084, -0.0016078977, 0.0044016307, -0.018229043, 0.009926506, -0.0034847653, -0.0024850098, 0.018445572, 0.010826455, -0.0065297056, -0.6595476, -0.013330073, -0.0027032306, -0.021598777, 0.012700785, 0.008728829, 0.007950678, -0.012829349, -0.021720575, 0.0125789875, -0.0221401, 0.01905456, 0.025523368, -0.015630694, -0.010819688, -0.01263312, 0.011963232, -0.03210044, 0.020042475, -0.0072537246, -0.009053623, 0.019203424, 0.019704148, -0.011983532, 8.377815E-4, 0.005771854, -0.0031379804, -0.0039482727, 0.010021238, 0.014710446, -0.025388038, 0.024305392, 0.015508897, 0.0018506472, 0.040896934, 0.010887354, -0.028960766, 0.043955408, 0.01944702, 0.023696404, -0.033616144, 0.002589891, 0.014142057, 0.0018844798, -0.017159931, 0.01927109, -0.0027996537, 0.004418547, 0.0056838887, 0.004154652, -0.0015977479, 0.0031430551, -0.0011240905, -0.008870927, -0.0023852033, -0.019189892, 0.010291899, -0.025360972, 0.014169123, 0.009608479, -0.012653419, 0.02985395, 0.008052176, 0.015400632, -0.0036776115, 0.030449405, 0.0074905534, -0.0033866505, 0.012714318, -0.031423785, 0.01632088, 0.017092265, -0.02452192, 0.0026693977, 0.011658738, 0.0069356975, 0.018675635, -0.009967105, -0.0013913687, 0.012531621, -0.01060316, -0.004246, 0.007747682, 0.007842413, 0.03153205, 0.009588179, -0.033562012, 0.0041242028, 0.0019842861, -0.007916845, 0.0045606443, 0.01243689, -0.012098564, -0.001177377, -0.009872373, -0.0061440133, -0.02253256, 0.003462774, 0.013066178, -0.066582695, -0.006928931, -0.018932763, 0.0064349743, -0.011570774, 0.013533069, 0.008938592, -0.009967105, -0.007855946, 0.032344036, -0.010765556, -0.011110649, -0.012403058, -0.0063334764, -0.0061237137, -0.015400632, -0.030395273, 0.026673678, 0.0023192298, -0.0018692551, -0.0056263735, -0.0011054826, 0.0068612657, 0.009344584, -0.013269174, 0.009750576, 0.019785346, -0.0140202595, -6.170233E-4, -0.0034238664, 0.01433152, -3.171813E-4, 7.921074E-4, 0.020732662, -0.008505533, 0.022546092, 0.00941225, 0.022573158, -0.0023936615, 0.028202916, 1.3755096E-4, -0.013248874, -0.010325732, -0.017403526, -0.016253216, -0.014548049, -0.016862204, -0.041979577, -9.7607257E-4, -0.014412718, -0.013580434, -0.012308326, -0.0078085805, -8.7711203E-4, -7.75614E-4, 0.015102904, 0.007883012, -0.036620483, -0.0040599206, 0.006546622, -0.015820157, 0.016686274, 0.009276919, -0.01843204, -0.015238236, 0.023994131, 0.0037723428, -0.009940039, 4.57164E-4, -0.0128564155, -0.005897035, 0.008207806, -0.021937104, 0.004871905, 0.010704657, -0.03055767, 0.019203424, -0.010352798, 0.014087925, -0.015387099, -0.0011503109, -0.005535025, -0.003955039, -0.022234833, -0.01962295, 0.036945276, 0.013580434, 0.015265302, 0.003711444, -0.005406461, 0.016253216, -0.019907145, -0.002229573, 6.237899E-4, -0.0050038523, -0.004384714, 0.006269194, -9.912973E-4, 0.02596996, 0.012017365, 0.0010412005, 0.020786794, 0.014182656, 0.01261282, -0.009087455, 0.024887314, -0.037297137, 0.004472679, -0.033399615, 0.007646184, -0.013384205, 0.0066176704, 0.006259044, -0.010630226, -0.0029806583, 0.0072537246, 0.029041966, -0.016956935, -0.00530158, -0.023601672, 0.0075446856, 0.0073755225, -2.8102263E-4, 0.019216958, 0.018892163, -0.024968512, 0.008742362, -0.006962764, -0.0071251607, -0.003965189, -0.006827433, -0.009188954, 0.0040869866, -0.003988872, -0.0019504535, -0.011543708, -0.021422848, 0.024982044, -0.019311689, 0.04295396, -0.010975319, 0.0045606443, 0.01684867, 0.017958382, 0.004624926, 0.005507959, -0.00443208, 0.005690655, 0.016984, -0.015847223, 0.037757263, -0.013282707, 0.019352289, -0.013201509, 0.009479915, 0.01040693, -0.0061101806, 0.006049282, 0.010474595, 0.04287276, 0.017335862, 0.011570774, -0.025320372, 0.018513238, 0.014480383, 0.03161325, 0.011618139, -0.015305901, -0.0042629167, -0.010650525, -0.017917784, -0.020854458, -0.0070980946, 0.002331071, 0.0055417917, 0.004327199, -0.008579966, -0.020786794, 0.0059342505, 0.015265302, 0.029339693, -0.0020621014, -0.03264176, 0.020123674, 0.027499195, -0.024440723, -0.014561582, -0.01979888, -0.025821095, -0.03699941, -0.010982085, -0.017998982, 0.015576562, 0.0056297565, 0.010779089, -0.0026761643, 0.01007537, 0.012321859, -0.012247427, 0.008099542, 0.01803958, -9.836849E-4, 0.022031836, -0.010447529, 7.113319E-4, 0.017836584, -0.016375013, -0.018310241, -0.0045403447, 5.277897E-4, -0.0102648325, -5.988383E-4, 0.009202487, -0.03897524, 0.020367268, -0.019338755, -0.01245719, -0.014981107, 0.016347947, 0.0111241825, -0.016456211, -0.025130909, -0.013113543, -0.03651222, 0.018066647, 0.08325544, 0.021246918, 0.015941955, 0.010988852, -0.0012129013, 2.0077576E-4, -0.010427229, -0.01839144, 0.008945358, -0.00972351, 0.022816753, -0.017308796, 0.023804668, 0.01142191, 0.019081626, -0.0056128404, -0.026308285, -0.023628738, 0.0024630185, -3.8146338E-4, -0.030016346, -0.01107005, 0.024278326, 0.036891144, 0.0070439624, -0.01177377, 0.0238182, 0.003762193, -0.0041580354, -0.0015063997, -0.013566901, 0.0038467748, 0.01499464, 0.014453317, -0.0077409153, -0.0025442168, 0.024819648, 0.016104352, 0.020556731, 7.9253037E-4, -8.44971E-4, 0.027986387, 0.0125586875, -0.012998513, 0.012694019, -0.015941955, -0.013445104, 0.01720053, 0.035997964, -0.025306838, 0.0064518903, -0.010941486, -0.0021314584, -0.01720053, 0.03545664, 6.686182E-4, -0.01499464, -0.0071522268, 0.0066278204, 0.009209253, -3.34732E-4, -0.015197637, 0.0070168963, -0.023520473, 4.2163968E-4, 0.0040599206, -0.019880079, -0.0056128404, -0.022613758, 0.006796984, -0.010028004, -0.017877184, 0.0022786304, -0.007382289, 0.020137206, -0.003000958, 0.028554775, -0.014629248, 0.012342159, -0.0019927444, -0.015874289, -0.040166147, 0.007903312, -0.01997481, -0.001999511, 0.01278875, 0.0014979416, 0.020732662, -0.006022216, 0.0015343117, 1.3247605E-4, 0.009601712, -0.020028941, -0.00901979, 0.045958303, -0.0037385102, 0.020313136, 0.025550434, 0.0059477836, -0.021328116, 0.0082484055, -0.020962723, -0.0017009376, -0.0070439624, -0.007646184, -0.01140161, 0.00358288, 0.0030618568, -0.03334548, -0.024007663, -0.019961277, -0.02579403, 0.017850118, -0.0049226535, 0.01397966, -0.0031633547, 0.005690655, 0.012795516, -0.0012179762, -0.009073922, 0.0022650973, -0.021070989, 0.018783899, 0.03131552, -0.017917784, 0.03264176, -0.0057278713, -0.016605075, 0.020827392, 0.014561582, -0.018580904, 0.01856737, -0.015671294, 0.008634098, -0.0076935496, -0.008316071, -0.0023192298, 0.0054369103, -0.01975828, 0.018892163, -0.018026048, 0.0045504943, 0.021111587, -0.012951147, 0.009561113, -0.030611802, -6.060277E-4, -0.013681932, 0.007970978, 0.020962723, -0.012321859, 0.0014810252, -0.0102107, 0.0062387446, 0.0019690616, -0.03735127, -0.023831734, -0.010433996, 0.02333101, 0.006506023, 0.04070747, -0.004736574, 0.026335351, 0.020042475, 0.0045877104, 0.013445104, -0.02157171, -0.017132865, -0.04758227, -0.021504046, -0.0016882503, 0.028500643, 0.006736085, -0.0033308265, 0.013715765, 0.02606469, 0.0012264344, 0.007422888, -0.008451401, -0.027905189, -0.022559626, 0.010630226, -0.0255369, -0.0026558647, -0.011672271, -0.0010699582, 0.04560644, 0.0029383677, -0.015617161, -0.01429092, 0.026565414, -0.011821136, 0.02253256, -0.012193295, 0.011225681, -0.009513747, -0.0019453786, -0.015535963, -0.0077341488, -0.0071860594, -0.015157037, 0.0137292985, -0.005677122, -0.025469236, -0.0011130949, 0.022383695, -0.0085123, -0.032804158, 0.026578948, -0.001020055, -0.02266789, -0.031775646, -0.008715296, -0.044334333, -0.012491022, -0.0039719557, -0.012064731, 0.009994172, -0.0037588098, -0.041979577, 0.018012514, -0.009534047, 0.049070906, 0.020272536, 0.043359954, 0.013174443, 0.0058936514, -0.005558708, 0.02077326, 0.002784429, -0.009716744, 0.00698983, 0.018229043, -0.0035490473, -8.559666E-4, 0.008329604, -0.010190401, -0.04828599, -0.049909957, 0.0137225315, 0.023709936, 0.023912933, -0.014548049, -0.0033968003, -0.014940508, 0.008485234, -0.014345053, -0.011651972, -0.0042595332, -0.031992175, -0.015590095, 0.0043610316, -0.0140202595, -0.0049700197, 0.010785855, -0.024129461, 0.004303516, -0.011117416, -2.8778915E-4, -0.0016104352, -0.015021706, 0.02522564, -0.0040159384, 0.020881524, -0.01605022, 0.012335392, 0.0040565375, 0.009222786, 0.0028470194, 0.030774198, -0.0038569246, 0.013925528, -0.008640864, -0.0068139, 0.011056517, 0.027323266, -0.016253216, -0.0108535215, -0.03188391, 0.0018963213, 0.020069541, -0.001523316, 0.004289983, 0.005829369, -0.01891923, -0.010447529, 0.01429092, -0.008261939, 0.0060052993, -0.0426021, 0.02253256, -0.003762193, 0.008363437, 0.007524386, -0.011834669, -0.0031938043, -0.009676144, 0.007382289, -0.015779559, 0.011618139, -0.019068094, -0.010352798, -0.04008495, -0.017741853, -0.017092265, -0.015048772, 0.01684867, -0.013499236, -0.011733171, 0.004289983, 0.00546736, 0.008140141, -0.008492, -0.0043508816, -0.0025780497, 0.0151841035, -0.0015444615, -0.011117416, -0.0045504943, 0.030232875, 0.018810965, -0.012254193, -0.0051222667, 0.0019132376, 0.014669847, -0.023385143, 0.010657292, -0.0017576073, -0.036187425, -0.0019352288, 0.013675166, 0.02460312, 0.024440723, 0.0011765312, -0.023885867, -0.015508897, -0.019406421, 0.038244452, -0.012085031, 0.008620565, 0.028121717, 0.027363865, 0.011137716, 0.027039072, -0.0016222766, -0.037784327, 0.027147336, -0.0058665853, -0.029285561, -0.0032090289, 0.0016425762, 0.01329624, 0.018540304, -0.010041537, -0.030882463, -0.005829369, -0.010143035, -0.027796924, -0.00195722, 0.029718619, 0.020529665, -0.011252747, 0.0049192705, 0.024318924, 0.002165291, 0.010650525, -0.029204363, -0.005646673, 0.0039347396, 0.008485234, 0.015671294, 0.029339693, -0.021111587, -0.00837697, 0.007916845, 0.020272536, 0.007537919, 0.024305392, -0.011185082, 0.0012213595, 0.007280791, 0.0018760216, 0.015238236, -0.002013044, 0.03134259, -0.026606014, 0.008918292, -0.0039482727, 0.014480383, -0.0024782433, -0.0059985328, 0.021260452, -0.010501661, 0.010576094, -0.005758321, -0.017281728, -0.004719658, -0.021666443, 0.019920677, 0.010203934, -0.013303007, 0.02094919, 0.015535963, -0.013052645, -1.2859058E-5, -0.02028607, 0.0013473862, -0.0077950475, -0.0023496791, 0.00213315, 0.037243005, -0.021328116, 0.013025579, -0.03973309, 0.0019741363, -0.014142057, 0.021707043, -0.010197167, 0.03902937, 0.0036403956, -0.05088434, 0.006421441, -0.014548049, -0.0027861206, -0.0063131764, -0.015630694, -0.033832673, 7.240192E-4, -0.0065872213, 0.0059342505, -0.015860757, -0.028473577, -0.013458637, -0.01741706, -0.020895058, 0.006394375, 0.17798692, -0.016767472, 0.010224233, 0.038785774, -0.0026321819, 0.0035355142, 0.032046307, 0.028473577, -0.007050729, 0.003310527, -7.3374606E-5, 0.013668399, -0.0054267608, 0.0034779988, 0.022234833, -0.03131552, -0.030665934, -0.01923049, -0.021896506, -0.04717628, -0.0010352797, -0.0059849997, -0.005734638, -0.014737512, 0.004635076, -0.0050038523, 0.009933272, -0.0055722413, 0.029475024, 0.011834669, -0.012030898, -0.013465404, -0.0034424744, 0.0045775604, -0.025185041, -0.008931825, -0.013174443, 0.013830796, 0.012971447, -2.2731327E-4, -0.0022972384, -0.015941955, -0.0049598697, -0.0063774586, 0.001740691, 0.026294753, -0.01415559, -0.0047298074, -0.0057786205, 0.017484725, -0.032506432, 0.009506981, 0.022749089, 0.035862632, -0.0029248344, -0.0044997456, -0.0024917764, -0.0011756853, -0.011469276, 0.018689169, -0.0011198615, 0.034671724, -0.009615245, 9.380108E-4, 0.010779089, 0.0055722413, -0.028473577, -0.0041343523, 0.01671334, -0.038244452, -0.004777173, -0.038325652, 0.002843636, 0.00837697, 0.002720147, -0.017227596, 0.0024038113, 0.02116572, 0.013377438, 0.014899909, -0.019704148, -0.016469745, 0.008079242, -0.025739897, -0.011733171, -0.024751984, 0.02319568, -0.01569836, -0.0022143484, -0.017186997, -0.018946296, -0.02239723, -0.008823561, 0.00818074, -0.0041242028, 8.4835425E-4, 0.025699297, 0.02147698, -0.0033951085, -0.004344115, -0.032804158, 0.018310241, 0.024400122, 0.011712871, -0.03399507, -0.012734618, 4.838072E-4, -0.012991746, 0.01579309, -0.011530175, -0.0063639255, -0.017349394, 8.694997E-4, -0.014669847, 0.013783431, 0.01776892, 0.004523428, -0.008539367, 0.032398168, -0.0056838887, -0.008931825, -0.019947743, 0.012220361, -0.0064789564, -0.01521117, -0.031992175, -0.017620055, 0.00818074, 0.0036877613, -0.023236278, 0.015373566, -0.028500643, 0.003938123, 0.011550474, -0.004215551, 0.010758789, 0.014859309, -0.0027505963, 0.014453317, -0.0055993074, -0.008586732, -0.008573199, 0.009730277, 6.846887E-4, 0.014263854, -0.02774279, 0.0054504434, -0.013113543, -0.008153674, -0.029339693, -0.031721514, -0.0055451747, -8.914909E-4, 0.012599287, 0.031017793, 0.0013313156, -0.018012514, -0.018580904, -0.012842882, 0.03894817, -0.04154652, 0.015224703, 0.01380373, -0.012213594, -0.019162826, -0.019298157, -0.17441419, 0.013546602, 0.010670825, -0.02998928, -8.0183434E-4, 0.014385652, 0.016781006, -0.0037960259, 0.007876246, -0.011963232, 0.021111587, 0.023006218, -0.035348374, -0.018377908, 0.008749129, 0.016104352, -0.023980597, 0.032777093, 0.020204872, -0.0024579435, 0.024048263, 0.006384225, -0.01349247, 0.001089412, -0.006062815, 0.0046689087, 0.023804668, 0.008404036, -0.0047907066, -0.02094919, -0.031369653, -0.007206359, 0.0052000815, 0.00255775, -0.018946296, -0.005332029, -0.015603628, -0.017565923, -0.013884928, -0.012220361, 0.029123165, 0.012308326, 0.021504046, 0.0061440133, 0.011868501, 0.026741344, 0.027769856, -0.004631693, 0.017755385, -0.014033793, -0.017579457, -0.023425741, 0.023574606, 0.0033578926, -0.0024782433, 0.018147845, 0.008620565, 0.014142057, -0.011374544, 1.3607078E-4, 1.6747172E-4, -0.01860797, 0.0015901356, -0.0054166107, -0.006722552, -0.022613758, -0.014940508, 0.020962723, -0.03082833, 0.00179144, -0.024156528, 0.02094919, 0.01891923, 6.656578E-4, -0.00459786, -0.005484276, -0.02544217, 0.008106308, -0.012423357, 0.009013024, -0.013702232, 0.039272964, -0.011780537, 0.00974381, 0.004455763, -0.0035896464, 3.4361306E-4, -0.007050729, 0.008735596, -0.021896506, -3.292342E-4, -0.020854458, -0.038569245, 0.007131927, 0.0025560583, 0.010346031, -0.0021720575, 8.669622E-4, 0.021003323, -0.018283175, 0.004306899, -0.01397966, -0.0091077555, 0.024630185, 0.027039072, 0.0024545603, 0.02288442, 0.02866304, 0.01803958, 0.008431102, 5.1171915E-4, 0.011286579, 0.025171507, 0.019338755, -0.026822543, 0.011712871, -0.02950209, -0.013661633, 0.011915867, 0.012930847, 0.049287435, 0.0066954857, -0.012024132, -0.022045368, -0.010000938, -0.004570794, -0.08628684, 0.0032394782, 0.0017982065, 0.043820076, -0.035429575, 0.019000428, -0.0024579435, 0.03207337, -0.029393826, 0.038325652, 0.01860797, -0.03735127, 0.016916336, -0.005744788, 0.017389994, 0.006049282, -0.024183594, 0.009358117, -0.007233425, 0.033453748, -0.010244533, -0.0066954857, 0.003985489, -0.007280791, -0.021788241, 0.018418506, -0.035185978, 0.019785346, 0.021192785, 0.0073890556, -0.0025645166, -0.017877184, 0.020719128, -0.031504985, -0.023899399, -0.013154143, -0.027851056, -0.030530604, 0.014940508, -0.04189838, 0.018553838, 0.009466382, 0.0021906656, -0.016212616, -0.001168073, 0.002581433, -0.050288882, 0.01755239, -0.008972425, -0.030665934, -0.007219892, -0.015008173, -0.032127507, -0.0012408133, 0.02200477, 0.00904009, 0.027796924, 0.021328116, -0.0058361357, -0.01177377, 0.012200061, 0.004164802, -0.030747132, 0.02161231, 0.0061812294, 0.00663797, -0.0041851015, -0.010122735, 0.015535963, -0.011888801, -0.017403526, 0.03012461, -0.030693, -0.014317987, -0.015332967, -1.740268E-4, -0.024318924, -0.012091797, 0.024860248, -0.024562519, 0.005825986, -0.029691553, 0.019785346, -0.025157975, 0.023128014, 0.021179253, 0.013614267, 0.005440294, -0.003019566, -0.03854218, -0.009635545, 0.014805177, -0.01517057, -0.01073849, -0.0053760116, 0.03139672, 0.018377908, 0.0028013452, -0.0068781823, 0.009730277, -0.003227637, 0.007646184, -0.06820667, 0.028717171, -0.01415559, -0.0023987365, -0.020380802, -0.009987405, 0.010616693, 0.0019859779, -0.004672292, 0.023750536, 0.003951656, 0.033480812, -0.0026406401, 0.005139183, -0.009303985, -0.009926506, -0.0050173854, -0.012051198, 0.0019386121, 0.008417569, 0.0013609192, 0.023141548, 0.02610529, 1.1682844E-4, 0.012362459, 0.009608479, -0.014426251, 0.021761175, -0.027066138, -0.017051667, 0.03743247, -0.036728747, 0.004631693, 0.020719128, 0.0028267198, -0.018283175, 9.363192E-4, 0.0036674617, 0.027404465, 0.027769856, -0.0063774586, -0.026254153, -0.012897015, -0.019203424, -0.017850118, 0.025739897, -0.020597331, 0.012538388, 0.014561582, -0.0064891065, 0.03678288, 0.02186944, 0.00204011, -0.013187976, 0.012707552, -0.011882034, 0.041925445, 0.009026557, -0.0075582187, -0.012145929, 0.027620994, -0.004327199, 0.0221401, -0.03258763, -0.013397738, -0.0076935496, 0.01429092, -0.016347947, -0.007131927, -0.023006218, -0.0049700197, 9.845308E-4, 0.011753471, 0.025428636, 0.010318965, 0.01210533, -0.004479446, 8.043718E-4, -0.016970469, 0.02315508, 0.01104975, -0.0017998981, -0.03285829, 0.015847223, 0.015671294, 0.0076258844, -3.153311E-5, 5.0960464E-4, 0.0012636503, 0.0042223176, -0.0041208193, 0.011354244, -0.001172302, 0.009026557, 0.008343137, 0.010413696, -0.016645674, -0.008634098, 0.022573158, 0.016618608, -0.0020621014, -0.0040091714, -0.010366331, -0.017403526, -0.027526261, -0.006411291, -0.02253256, -0.01517057, 0.010237766, 0.018215511, 0.021273984, 0.0108535215, -0.02090859, 0.003545664, -0.027417997, 0.0011257821, -0.013350372, -0.010576094, -0.009791175, 0.039272964, 0.011476043, 0.004926037, 0.022288965, 3.453047E-4, 0.03629569, 0.020056007, 0.010115969, -0.01618555, -0.0060966476, 8.67808E-4, 0.012897015, -0.021233385, -0.026010558, 0.010305432, 0.006218445, -0.02067853, 0.020340202, 0.020083074, -0.029556222, 0.06414674, 0.019771814, -0.010102436, 0.028608907, -0.018026048, 0.03445519, 0.009432549, 0.01944702, -0.0052000815, -0.0021720575, -0.0065804548, -0.04233144, 0.0016535718, -0.025063243, -0.0025357588, 0.0022955467, 0.017714787, 0.005497809, -0.0014810252, -0.026700744, -0.011428677, -0.009838541, 0.03042234, -9.912973E-4, -0.01104975, -0.015021706, 0.02319568, -0.011679038, 0.008803261, -0.020259004, -0.0075988183, -0.016104352, -0.011936166, -5.235606E-4, 0.023046816, -0.011631672, -0.0028977683, 0.018147845, 0.009574646, 0.00289946, -0.009987405, -0.008647631, -0.018445572, -0.012051198, 0.026375951, -0.008661164, 6.9568434E-4, -0.032560565, -0.020610863 ], + "id" : "c882978c-55f7-43a1-9e1b-12c90f37e9d6", + "metadata" : { + "source" : "movies.csv" + } + }, + "63571d83-5412-43cd-8383-6953bbd03740" : { + "text" : "Hourigan-Owen Clarke-Kristina Ellery-Katelyn Lorren-Chanty Sok-Sarah Fischer-Cassie Djerf-Joe Siriani-Pat Shea-Josh Duvendeck-Chris Cox-Henry Penzi-Tania Cabrera-Colton Shires-Viera Andrea Moya-Heajee Kim-Lydia Hannibal-Shawn Thornton-Eric Weinstein-Danny Smith-Mike Nikitas-Robin Hamilton-Mike Henry-Johnny Lee Davenport-Chris Everett-Tara Strong-Ted Danson-Ryan Reynolds-Olivia Jordan-Alexandra Creteau-Emmalyn Anderson-John Franchi-Ronald Boone-Paul Campbell,dream-friendship-love-buddy-teddy bear-toy comes to life-wishes come true,/osJNr64CNyGhCzdlg6oHt3a6vNA.jpg,/wS9TiAS1WckeTS2IrFg5dRN9WQD.jpg,214756-45243-18785-109439-64688-41154-425-953-23483-310-20352-6479-1593-607-14161-10193-1865-585-12-71552-10528\r\n955,Mission: Impossible II,Adventure-Action-Thriller,en,With computer genius Luther Stickell at his side and a beautiful thief on his mind agent Ethan Hunt races across Australia and Spain to stop a former IMF agent from unleashing a genetically engineered biological weapon called Chimera. This mission should Hunt choose to accept it plunges him into the center of an international crisis of terrifying magnitude.,36.281,Paramount-Cruise/Wagner Productions,5/24/00,125000000,546400000,123,Released,Expect the impossible again.,6.1,6252,Tom Cruise-Dougray Scott-Thandiwe Newton-Ving Rhames-Richard Roxburgh-John Polson-Brendan Gleeson-Rade ��erbed�_ija-William Mapother-Dominic Purcell-Mathew Wilkinson-Nicholas Bell-Cristina Brogeras-Kee Chan-Kim Fleming-Alan Lovell-Dan Luxton-Christian Manon-Karl McMillan-Lester Morris-Kelly Ons-Nicholas Papademetriou-Brett Partridge-Candice Partridge-Natalie Reis-Daniel Roberts-Adriana Rodr�_guez-Sandra Rodr�_guez-Nada Rogic-Antonio Vargas-Anthony Hopkins-Alison Araya-Rebecca Barratt-Douglas Bunn-Caine-Fred Chen-Mark Connolly-Ryder Davis-Alan Hennessy-Patrick Marber-William Morts-Tory Mussett-Paul Roget-Shant Sarkissian-Darren Dupree Washington,dying and death-island-cia-helicopter-computer-spain-undercover-skyscraper-secret mission-spy-secret identity-ex-lover-secret agent-duel-lethal virus-rescue team-agent-research laboratory,/1VMWLpk9VXyYcEZ8w3uUhp0OF1v.jpg,/24DZfupDlhXeTchmcOkoGRhP5Vg.jpg,956-954-56292-177677-353081-2501-10764-2502-1571-296-180-1131409-1572-1573-217-36557-605-608-2503-36669-298\r\n246655,X-Men: Apocalypse,Action-Adventure-Science Fiction-Fantasy,en,After the re-emergence of the world's first mutant world-destroyer Apocalypse the X-Men must unite to defeat his extinction level plan.,49.", + "embedding" : [ -0.0029287252, -0.04203215, -0.030185463, -0.037093718, -0.008718549, 0.034485783, 0.0051361066, -0.014017652, -0.01334486, -0.03578975, 0.030490648, 0.026467768, 0.024442457, -0.01129874, 0.00540661, 0.012533348, 0.019476281, -0.022958154, 0.0018189654, -0.022805562, -0.00677647, -5.7482085E-4, -0.0043211267, 0.020655401, -0.007081654, 0.0086561255, 0.016230235, -0.013982972, -0.0053233784, -0.008337069, 0.01272062, -0.0012727557, -0.0075255577, -0.015175964, -0.028631799, 0.00613489, 0.006433138, -0.02258361, 0.03154492, 6.3724484E-4, 0.028881496, 0.009703461, -0.008080438, 0.012748364, -0.01620249, 0.025219288, 0.0054274183, -0.015744716, -0.0039188387, 0.021029945, 0.024095656, 0.034596756, -0.012873212, -0.021945497, -0.009731205, -0.011465205, -0.009856053, 0.0047407546, 0.008184478, 0.0049106865, 0.011673285, -0.024026297, -0.031988822, -0.014829163, -0.015273067, -0.011215509, -0.011520693, -0.016854474, -0.011000493, -0.0056667104, 0.02112705, 0.008448046, 0.009571677, -0.00679381, 0.019295946, -0.02523316, -0.01953177, -0.0072966698, -0.02140449, 0.004671395, 0.028118536, -0.008434174, -0.010029453, -0.0012389426, 0.013566812, -0.004185875, 8.9907873E-4, 0.016937707, -0.023762729, 0.0072897337, 0.031822357, 0.037842806, -5.119633E-4, 0.009876861, 0.0026634233, 0.0262042, -0.012977252, 0.016216364, -0.003630995, -0.037648596, -0.0010629417, -0.0049002827, -0.0122767165, -0.016119258, -0.0018102955, -0.00663775, 0.009967029, 0.0011704497, 0.019906314, 0.008135926, -0.0020547893, -0.0058574504, 0.013351796, -0.037926037, 0.0059233424, -0.031322967, 0.020946713, -0.014621084, -0.007581046, -0.02348529, 0.02641228, 0.027161367, 0.0069672097, -0.027341705, 0.029852536, 0.038120244, 0.0048829424, -0.017686795, 0.0014712985, -0.0018311035, 0.030684855, -0.015508891, 0.026731336, 0.016368955, -0.025455112, 0.05831787, -0.025663193, 0.003495743, -0.015730843, -0.018380394, 0.026564872, 0.034291573, -0.023374313, -0.0039014989, -0.022014858, -0.003863351, 0.012727556, -0.013601492, 0.020058906, 0.014856908, 0.016507676, 0.019101739, 0.012561092, 0.018505242, 0.019767594, -0.003058775, -0.0024293333, -0.0043072547, 0.006010042, -0.011922981, -0.017867131, -0.021515466, 5.0069235E-4, -0.025011208, 3.663074E-4, 0.020045035, 0.010716117, -0.020003418, -0.0023027514, -0.008191413, -0.011756517, 0.030379672, -0.027771736, 0.016868347, 0.015814075, 0.018963018, 0.0011279667, -0.006294418, -0.048135825, -0.022139706, 0.0047095427, -0.0016516345, 0.031101014, 0.03431932, -0.011270997, 0.020142138, 0.0076504056, -0.024692154, 0.024178889, -0.012588836, -0.006662026, 0.008995989, 0.012491732, -1.9875969E-4, -0.6365582, -0.011229381, -0.017104171, -0.0013950026, 0.01752033, 0.017534202, -1.597447E-4, -0.008316262, -0.025579961, -0.003122933, -0.026703592, 0.014607212, 0.013254692, -0.02738332, -0.021487722, -0.027868839, -0.0053996746, -0.016840603, 0.0046367147, 0.0019108674, -0.027050393, 0.015564379, 0.017215148, -0.008815654, 0.0026252752, -0.006606538, 0.0017773495, -0.013677788, 0.02202873, -0.0044182306, -0.019490154, 0.024844745, -0.009266493, -0.010854837, 0.046138257, 0.009862989, -0.007199566, 0.04746997, 0.036455605, 0.020058906, -0.016230235, -0.0045430786, 0.0153701715, 0.006571858, -0.019420795, 0.0223894, 0.0041234507, 0.009987837, 0.007379902, -0.010688373, -0.0027605272, 0.0055453302, -0.004054091, -0.004317659, -0.0042864466, -0.0041962788, 0.015175964, -0.027161367, 0.01835265, 0.0020218433, -0.013400348, 0.031433944, -0.009259557, 0.006505966, -0.0013282436, 0.018865915, 0.0020773313, -0.01185362, -0.0052332105, -0.028118536, 0.006818086, 0.0275914, -0.013462772, 9.753747E-4, 0.013025804, 0.0010854837, 0.02313849, 0.0013230416, 4.432536E-4, 0.019892443, 0.003351821, -0.013650044, -0.009509253, 0.008461918, 0.041061107, -0.009287301, -0.0429477, 0.008350941, 0.015120476, -0.00792091, 0.019143354, 0.007567174, 0.007185694, -0.0018259014, -0.012297524, -0.0016238905, -0.02050281, 0.009599421, 0.027882712, -0.060093485, -0.008815654, -0.024719898, 0.01814457, -0.017825514, 0.011707964, 0.006485158, -0.00757411, -0.021140922, 0.037232436, -0.023221722, -0.019975673, 0.0031350711, -0.02488636, -0.0075047496, 0.0022368594, -0.03365346, 0.026981032, 0.0132755, 0.009752013, -0.025219288, 0.008538214, -0.003870287, 0.012346077, -0.014128628, 0.018033594, 0.018949147, 0.0014860375, -0.01369166, -0.0018363055, 0.012332205, 0.008399494, -0.015925052, 0.0099462215, -0.012054765, -0.0020686614, 0.0044529107, 0.017062554, -0.0053129746, 0.019379178, 0.010175109, -0.024525689, -0.007483942, -0.016077643, -0.0059302785, -0.009550869, -0.015883435, -0.0275914, -0.0047650305, -0.003537359, -0.0153701715, -0.011166956, 0.026842313, 7.274128E-4, 0.023929194, 0.0016811125, -0.01147214, -0.016688012, -0.018741066, -3.593714E-4, -0.013802636, 0.006388054, 0.027230728, 0.0062770783, -0.029269911, 0.015120476, 0.008142862, -0.015966667, 0.008669998, -0.019767594, -0.021876138, 0.017256763, -0.012387692, -0.013594556, 0.013261628, -0.010293021, 0.021792905, -0.0184775, 0.01960113, 0.0046817986, 0.0014071406, -0.003520019, -0.006301354, -0.017867131, 0.0020339815, 0.0044771866, 0.01265126, 0.02752204, -0.013490516, 2.8632666E-4, 0.0038876268, -0.0044425065, -0.01758969, -0.008628381, -1.6646396E-4, -5.5357936E-4, 0.021973241, 0.0046020346, 0.0021622973, -0.0023582394, 0.0156198675, 0.03620591, 0.003554699, 0.015051115, -0.008309325, 0.014801419, -0.023166234, 0.0011669816, -0.025260905, 0.008434174, -0.018213931, 0.02078025, -0.0066516222, -0.014204924, -0.0153701715, 0.019559514, 0.010098813, -0.003800927, 0.011049044, -0.030324183, 0.0028368232, 0.005670178, -5.4490933E-4, 0.01715966, 0.01946241, -0.017007068, 2.1859231E-4, 0.02336044, -0.0262042, 0.0052713584, -0.013878932, -0.0061210184, -4.6601237E-4, 0.004348871, -0.0018328375, 0.019268202, 4.1317955E-5, 0.022320041, -0.007372966, 0.048968147, -0.003435053, 0.0078792935, 0.025482856, 0.017686795, 0.0010577397, -0.007692022, -0.012318333, 0.02641228, 0.017034812, -0.01424654, 0.042864468, -0.014024588, 0.027258473, 6.1513635E-4, 0.0025142992, 0.0129217645, -0.014676572, -5.652838E-4, 0.0103277005, 0.048330035, 0.015827948, 0.016937707, -0.036067188, 0.017034812, 0.0014340176, 0.0099462215, 0.011666348, -0.026814569, 0.0051187663, -0.007490878, -0.015467276, -0.023610137, -0.010917261, 1.9052319E-4, 0.0151066035, -0.004303787, -0.0113681005, 0.003277259, 0.014815291, 0.004217087, 0.031101014, -0.0022437954, -0.036677558, 0.015120476, 0.033265047, -0.0030795832, -0.013996844, 0.0024917573, -0.0062701423, -0.035900727, -0.006440074, -0.010098813, 0.025690936, -0.013150652, -0.0015701365, -0.006682834, 0.0044043586, 0.027411064, -0.03121199, 0.016577035, 0.017783899, -0.0145794675, 0.004525739, 0.0021328193, -0.003103859, 0.02313849, -0.016549291, 0.0027709312, -0.010008645, 0.002762261, -0.008614509, 0.007969461, -0.0021085434, -0.04461234, 0.003495743, -0.018255547, -0.02105769, -0.02431761, 0.00559735, 0.00840643, -0.029436376, -0.015162092, -0.027341705, -0.022444889, -0.0031090612, 0.077239275, 0.041477267, 0.013150652, -6.719248E-5, 0.004296851, 0.007206502, -6.268408E-4, -0.018227803, -0.0053927386, -0.012963381, 0.01946241, -0.013025804, 0.0027154433, 0.010084941, 0.021862265, -0.0074076457, -0.002920055, 0.008538214, -0.020072779, -0.0014869046, -0.033098582, -0.00857983, 0.019060122, 0.029491864, 0.003554699, -0.013081293, 0.01736774, 0.012505604, 0.010209789, 0.0052366783, -0.007976398, 0.020045035, 0.012935637, 0.0023859832, 0.003960455, -0.020516682, 0.027535912, 0.014440748, 0.010681437, -0.0077544455, -0.0029044491, 0.02105769, 0.006596134, -0.012179612, 0.019975673, -0.025940632, -0.021071563, 0.017242892, 0.024706025, -0.026703592, 0.026800696, 0.011021301, -0.022708457, -0.013115972, -0.006734854, 0.020322474, -0.0072966698, -0.012172677, -0.017853258, 0.022278426, 0.0077613816, -0.04483429, 0.021459978, -0.005833174, 7.009693E-4, -0.010175109, -0.008344006, -0.008995989, -0.009849117, 0.005951086, -0.0045950986, -0.017423227, 0.0020166414, 0.00819835, 0.02050281, -0.00688051, 0.006825022, -0.0024536094, 0.026592616, 0.010438677, -0.029519608, -0.015342427, 0.016244108, -0.021418361, 6.2163884E-4, 0.0059406823, -0.0020235775, 0.009315046, 0.0040644947, 0.006564922, 0.0049731107, 0.0022923474, -0.022958154, -0.009731205, 0.034180596, 0.0031784212, 0.0027241132, 0.0077752536, 0.013421156, -0.0019611535, 0.0010143897, -0.022320041, -0.019004634, -0.013143716, -0.023027513, -0.0032304411, -0.008018014, 0.0077960617, -0.028285, -0.034846455, -0.012040893, -0.015092731, 7.278463E-4, -0.008794845, 0.0053303144, 0.0011435726, 0.010958876, 0.015536635, -0.0060135103, -0.0019143354, -0.010764669, -0.017034812, 0.008038822, 0.014302027, -0.012297524, 0.024303736, -0.0056285625, -0.02487249, 0.008635318, 0.032294005, -0.0223894, 0.026120968, -0.020405706, 0.005465566, -0.02029473, -0.009939285, 0.0018831234, 0.0022871452, 0.020586042, 0.014995628, -0.015883435, 0.01389974, -3.6544038E-4, 0.0039986027, -0.01585569, -0.030823575, 0.0039777947, -0.0055141184, 0.012783044, 0.019157227, 0.005715262, 0.009217941, -0.035678774, -0.015814075, -0.01771454, -0.03787055, -0.038758356, -0.004012475, 0.028326616, 0.019961802, 0.027577529, -0.02029473, 0.0241234, 0.022000985, 0.011166956, 0.024303736, -2.2910468E-4, 2.9521342E-4, -0.040977877, -0.00540661, 0.01828329, 0.018116826, 0.004296851, -0.006606538, -0.002828153, 0.026426151, 0.009550869, 0.020877354, 0.017395483, -0.034208342, -0.023013642, 0.015481148, -0.0255106, -0.0044841226, -0.022195194, -0.01681286, 0.021279642, -0.003859883, -0.0018293695, -0.02084961, 0.02508057, 0.010084941, 0.011035173, -0.018186187, 0.02140449, -0.026814569, -0.0013412486, -0.019157227, 0.0046297787, 7.8766927E-4, -0.012020084, 0.006616942, -0.0013013666, -0.025177673, -0.0026114031, 0.025371881, -0.012574964, -0.012436245, 0.020114394, -0.0013819976, -0.008995989, -0.028631799, -0.014302027, -0.027633015, -0.0077683176, 0.007043506, -0.01445462, 0.0044494425, -0.011756517, -0.04092239, 0.03731567, -0.0111947, 0.05407304, 0.007823805, 0.04974498, 0.039951347, 0.01514822, -0.01494014, -0.0023530372, -0.008898885, 0.0059233424, 0.029769303, 0.019517899, -0.019615002, 0.0052505503, -0.003741971, -0.008087373, -0.029408632, -0.034458037, 0.020835739, 0.02370724, 0.019517899, -0.024636665, -0.010799349, -0.02487249, 0.009259557, -0.009481509, 0.008885013, 0.011160021, -0.02857631, -0.018741066, 0.015175964, -0.011291805, 0.007303606, 0.015800204, -0.02336044, 0.014926268, -0.028853752, 0.013469708, -0.015328555, -0.01771454, 0.036955, -0.034624502, 0.017312251, 6.186043E-4, 0.01661865, 5.8782584E-4, -0.010986621, 0.005472502, 0.030018998, -0.0014895055, 0.025704809, -0.003455861, 0.002953001, 0.025108313, 0.014496236, -0.016785115, -0.01424654, -0.008163669, 0.0013568546, 0.021695802, 0.01618862, 0.004158131, -0.010334637, -0.022222938, -0.003929243, 0.012020084, -0.010008645, 0.006662026, -0.040062323, 0.012089444, -0.01334486, 0.010216725, -0.015467276, 0.0023183574, -0.0051291706, -0.009009861, 0.0141979875, 0.0018675175, -0.0022750073, -0.012318333, -0.019767594, -0.044196177, -0.010334637, -0.0013854656, -0.01521758, 0.010126557, -0.011312612, -0.006280546, -0.0010594737, 0.0049037505, -0.008676933, 0.0027587933, -0.012623516, 0.0012198687, 0.02445633, -0.016008284, -0.0052054664, 0.0049869823, 0.03329279, 0.003029297, -0.0050147264, -0.0093011735, 0.0012103317, 0.032904375, -0.014648828, 0.019060122, 0.010313829, -0.021251898, 0.0032633871, 0.03171138, 0.018824298, 0.006190378, -0.008073501, -0.036649812, -0.014218796, -0.009155517, 0.025344137, -6.550183E-4, 0.0059961705, 0.017298378, 0.006353374, 0.032016568, 0.020239241, -0.019240458, -0.022819433, 0.012006212, -0.019767594, -0.027535912, 0.0056354986, 0.012803853, 0.024636665, 0.018324906, -0.009391341, -0.034652244, -0.00722731, -0.018172314, -0.023582393, 6.914323E-4, 0.023970809, 0.051159922, 0.019420795, -0.005465566, 0.017783899, -0.003343151, 0.0052574864, -0.01452398, -0.0016134866, 0.023402058, 0.0062701423, 0.024275992, 0.030629367, -0.037260182, 2.2498643E-4, 0.0020981394, 0.024789257, 0.0014244806, 0.03196108, -0.01793649, -0.0045430786, -0.014482364, 0.0061452943, 0.006564922, -0.016493803, 0.018810427, -0.030018998, 0.019545643, 0.008108182, 0.019504026, 0.0056146905, 0.017048683, 0.005958022, 0.0055071823, 0.009481509, 0.0063429703, -0.023540776, 0.003107327, -0.03065711, 0.015675355, -0.0044771866, -0.003651803, 0.022666842, 0.024040168, -0.008690805, -0.0057499423, -0.0139344195, 0.0013915346, -0.011229381, 0.0038425429, 0.0052089347, 0.037232436, -0.027549785, 0.013421156, -0.025177673, -0.005663242, -0.0010534046, 0.006790342, 0.0056181583, 0.028687287, 0.008018014, -0.052019984, -0.0044598468, -0.003343151, 0.007359094, 2.8762716E-4, 0.008690805, -0.020627659, -0.004224023, -0.0122767165, -0.0039188387, -0.017395483, -0.032238517, 0.009543933, -0.018921403, -0.00637765, 0.016896091, 0.19653843, -0.018435882, 0.0039639226, 0.038175732, -0.008545149, 0.0053337826, 0.010861773, 0.021695802, -0.0060273823, 0.02022537, -0.0037766509, 0.016466059, 0.0024605454, 9.875128E-4, 0.010195917, -0.01563374, -0.029242167, -0.0133032445, -0.023083001, -0.023513034, -0.008323197, 0.008239966, -0.0010924197, -0.012040893, 0.012124125, 0.003950051, -0.0016360285, 0.003199229, 0.005912938, -0.0011635136, -0.023291081, -0.024373097, 0.009162453, 6.0343184E-4, -0.015508891, -1.2018784E-4, -0.0076781497, 0.010799349, -0.004269107, -0.0010820157, -0.0075116856, 0.006665494, 0.003603251, 0.0034541269, 0.007955589, 0.012255908, -0.012221228, -0.012984188, -0.010057197, 0.0016360285, -0.052602608, -0.01237382, 0.013330988, 0.03434706, -0.009349725, -0.012665132, 0.006183442, 0.0105773965, -0.0049592387, 0.007733638, 0.010549653, 0.030573878, -0.03398639, 0.021570954, 0.00736603, 0.02807692, -0.03989586, -0.013802636, 0.01675737, -0.028826008, -0.021432234, -0.014745932, -0.014218796, 0.016798988, -0.011291805, -0.006686302, 0.0021779034, 0.012672069, 0.0023339633, 0.007206502, -0.024262121, -0.025108313, 0.009280365, -0.0062840143, -0.02315236, -0.011916044, 0.015467276, -0.0076434696, -0.01618862, -0.0016490335, -0.01750646, -0.03029644, -1.4034558E-4, 0.013358732, -0.015661484, -0.008517406, 0.024359224, 0.024525689, -0.011451333, 0.0015814075, -0.027882712, 0.023027513, 0.0071648858, -0.008004142, -0.031933334, -0.020905098, -0.0048170504, 0.007130206, 0.023429802, -0.021987114, -0.010029453, -0.027341705, -0.007733638, -0.0013239086, 0.00608287, 0.039285492, 0.0011799866, -0.0110906605, 0.035345845, -0.011340356, -0.004605503, -0.008461918, 0.0044702506, 3.138539E-4, -0.0047164788, -0.039562933, -0.018546859, -4.1681013E-4, 0.009530061, -0.035151638, 0.024234377, -0.017284507, 0.010674501, -0.0021987113, 0.0037662468, 0.0048586666, 0.021598699, -0.015883435, 0.003357023, 0.0010724787, -0.009162453, -0.0141979875, 0.014676572, 0.008995989, 0.006939466, -0.04003458, 0.003384767, -0.0028264192, -0.021362875, -0.028174024, -0.012137996, -0.004310723, 0.0050702146, 0.015037243, 0.039313238, 0.006249334, -0.030546134, -0.04058946, -0.010147365, 0.036233652, -0.038702868, 0.026384536, 0.0036379308, -0.006190378, -0.029602839, -0.017270636, -0.17933716, 0.0043003187, 6.901318E-4, -0.032904375, 0.01849137, 0.010112685, 0.03320956, 0.01620249, -7.87886E-5, -0.02668972, 0.02251425, -0.020447321, -0.04095013, -0.010993557, 0.013213076, 0.021487722, -0.013539068, 0.038175732, 0.027369449, -0.008926629, 0.03434706, -0.019517899, -0.003745439, 0.01383038, 0.01348358, -6.558853E-4, 0.027022649, 0.019725978, 0.0017392015, -0.007359094, -0.03523487, -0.020488938, 0.021723546, 0.006665494, -0.012748364, -0.007740574, -0.017395483, -0.0046817986, -0.01696545, -0.0027570592, 0.030407416, 0.013525196, 0.020100523, 0.012554157, 0.013011932, 0.004376615, 0.032765653, -0.008649189, 0.011895237, -0.018005852, -0.008031886, -0.03501292, 0.023637882, -0.011596989, 0.008288518, 0.016701883, 0.019240458, 0.014017652, 0.003140273, 0.007109398, -0.021654185, -0.00875323, 0.0111045325, -0.0074145817, -0.015744716, -0.020350218, -0.010827092, 0.01717353, -0.03545682, 0.016257979, -0.034152854, 0.026467768, 0.009058413, 0.0016672405, 0.013351796, -0.0060724663, -0.038619637, 0.0061522303, 0.007442326, 0.008108182, -0.009973965, 0.03501292, -0.004074899, 0.0134489, 0.0055037146, -0.0145933395, 0.014052331, -0.0048101144, -0.0016143535, -0.011049044, 0.005413546, -0.016438315, -0.026925543, -0.006693238, -0.0051950626, 0.008621446, -0.010535781, 0.0053060385, 0.02391532, -0.015120476, 0.0018588474, -0.019906314, -0.012977252, 0.011055981, 0.016438315, 0.0053545902, 0.017437099, 0.012942572, 0.024428586, 0.002732783, -0.0029217892, -0.003974327, 0.014537851, 0.01696545, -0.02877052, 8.956107E-4, -0.02299977, -0.02974156, 0.0012164006, 0.018463627, 0.057929456, 0.004178939, -0.0078654215, -0.021598699, -0.0054274183, -0.016785115, -0.085728936, -0.004047155, 0.017409354, 0.03434706, -0.031517174, 0.037260182, -0.014995628, 0.016507676, -0.024983464, 0.032710165, 0.008690805, -0.030268695, 0.006252802, -0.004421699, 7.118068E-4, 0.016424444, -0.02766076, -0.024567304, -0.0039327107, 0.031739127, -0.014482364, -9.0428075E-4, -0.0098144375, -0.008038822, -0.015189836, 0.006859702, -0.036594324, 0.035567798, 0.018796554, 0.013178396, 0.0051603825, -0.03246047, 0.007907038, -0.03160041, -0.014773675, -0.011187765, -0.012554157, -0.024137273, 0.0045153345, -0.044307154, 0.0032633871, 0.009606357, -0.004071431, -0.021432234, -0.003651803, 0.0052019986, -0.026342921, 0.01738161, -0.010965813, -0.014856908, -0.010147365, -0.026079353, -0.025371881, 0.007497814, 0.023318825, 0.008954373, 0.027272344, 0.0038910948, -0.021085434, -0.026176456, -6.003973E-4, -0.015328555, -0.033958647, 0.017187404, 0.0055002463, 0.0053927386, -0.00584011, 0.0023582394, 0.022763945, -0.015439532, -0.008004142, 0.040894642, -0.029436376, -0.014648828, -0.02857631, -0.0031055931, -0.0056597744, -0.012498668, 0.035123892, -0.02890924, -8.8260573E-4, -0.02606548, 0.016701883, -0.015078859, 0.0046297787, 0.021390617, 0.02133513, 0.007587982, 0.0030761152, -0.025149928, -0.0112224445, 0.025330264, 0.0153701715, -0.0043592746, -0.0045812265, 0.0136223, 0.011180828, -0.010188981, -0.007372966, 0.014232668, -0.012713685, -0.0100780055, -0.081789285, 0.033265047, -0.019337563, -0.004099175, -0.017825514, -0.024900233, 2.468782E-4, -0.003187091, 0.0043835505, 0.021515466, -0.006346438, 0.013747148, -0.009904605, -8.973447E-4, -0.0038356069, 0.0056389663, 0.004310723, -0.009599421, 7.7509775E-4, 0.008711614, -0.015273067, 0.027022649, 0.019393051, 0.014204924, -9.398277E-4, 0.031517174, 0.0014366186, 0.00896131, -0.013767956, -0.0077683176, 0.02542737, -0.010827092, -0.004106111, 0.0037558428, -0.0062111863, -0.034846455, -0.004002071, 0.012554157, 5.1629834E-4, 0.012810788, -0.016424444, -0.02857631, -0.0011461737, 0.0039916667, -0.00698455, 0.0048170504, -0.021668058, 0.010487229, 0.020488938, 0.007206502, 0.02752204, 0.009335853, -0.018616218, -0.0111947, 0.015703099, -0.018727195, 0.04738674, -0.0017998915, 0.00809431, -0.00906535, 0.017034812, -0.015203708, 0.025954504, -0.032987606, 0.003665675, 0.0025836593, 0.017007068, -0.0065267743, 0.009869925, -0.027993688, -0.020405706, 0.008933566, 0.0108409645, 0.038619637, -4.9028837E-4, 0.023041386, 1.11842965E-4, 0.019295946, 0.009772821, 0.0026703593, 0.02509444, -0.002949533, -0.023748858, 0.01953177, -0.009502317, 0.025358008, 0.0024536094, 0.016036028, -0.0054620984, 0.0058817263, -0.0047476906, 0.015175964, 0.016701883, -0.007040038, 0.0071648858, 0.017242892, -0.0140662035, -0.020488938, -0.010091877, 0.022153577, 0.003447191, -0.0031749532, -0.007733638, -0.02766076, -0.03365346, 0.006544114, -0.016479932, -0.011756517, -0.0012926966, 0.021418361, 0.019559514, 0.022264553, 0.009058413, 0.01564761, -0.036039446, 0.011319549, -0.008600637, -0.01641057, -0.015273067, 0.05024437, 0.015314683, 0.005860918, 0.02502508, -0.02223681, 0.06830571, 0.021459978, 0.015037243, -0.026093224, -5.644168E-4, -0.002926991, -0.0022750073, -0.011118405, -0.009377469, 0.003305003, -0.004730351, 0.0131714605, 0.009377469, 0.03495743, -0.014634956, 0.06985937, 0.015592123, -0.0131714605, 0.027078137, -0.013441964, 0.0043211267, 0.012457052, 0.026218072, -0.017839387, -0.012450117, 5.561803E-4, -0.01386506, 0.01973985, -0.03554005, -0.0018727195, -0.0023131552, 0.0052817627, 0.009197134, -7.304473E-4, -0.04058946, -0.024151145, -0.013365668, 0.02606548, -0.0039049669, -0.011347293, -0.0075394297, 0.02877052, -0.015037243, -0.022181321, -0.024941849, 0.003426383, -0.024442457, -0.0061452943, -0.015536635, 0.030240951, -0.01563374, 5.743873E-4, 0.017048683, 0.015578251, 0.00644701, -0.0153562995, -0.016452188, -0.013247756, -0.037260182, 0.0046332465, -0.01946241, -4.9809134E-4, -0.023845961, -0.026800696 ], + "id" : "63571d83-5412-43cd-8383-6953bbd03740", + "metadata" : { + "source" : "movies.csv" + } + }, + "d43d9763-0cea-4999-9018-27ae7e8293e6" : { + "text" : "Chris Evans-Mark Ruffalo-Chris Hemsworth-Scarlett Johansson-Jeremy Renner-Don Cheadle-Paul Rudd-Benedict Cumberbatch-Chadwick Boseman-Brie Larson-Tom Holland-Karen Gillan-Zoe Salda��a-Evangeline Lilly-Tessa Thompson-Rene Russo-Elizabeth Olsen-Anthony Mackie-Sebastian Stan-Tom Hiddleston-Danai Gurira-Benedict Wong-Pom Klementieff-Dave Bautista-Letitia Wright-John Slattery-Tilda Swinton-Jon Favreau-Hayley Atwell-Natalie Portman-Marisa Tomei-Taika Waititi-Angela Bassett-Michael Douglas-Michelle Pfeiffer-William Hurt-Cobie Smulders-Sean Gunn-Winston Duke-Linda Cardellini-Maximiliano Hern��ndez-Frank Grillo-Hiroyuki Sanada-Tom Vaughan-Lawlor-James D'Arcy-Jacob Batalon-Vin Diesel-Bradley Cooper-Gwyneth Paltrow-Robert Redford-Josh Brolin-Chris Pratt-Samuel L. Jackson-Lexi Rabe-Joe Russo-Ross Marquand-Emma Fuhrmann-Michael James Shaw-Terry Notary-Kerry Condon-Ben Sakamoto-Ava Russo-Cade Woodward-Stan Lee-Yvette Nicole Brown-Callan Mulvey-Lia Russo-Julian Russo-Taylor Patterson-Agostino Rosalina-Ken Jeong-Ty Simpkins-Jackson A. Dunn-Lee Moore-Bazlo LeClair-Loen LeClair-Matthew Berry-Joy McAvoy-John Michael Morris-Michael A. Cook-Brent McGee-Brian Schaeffer-Jamie Wedel-Anthony G Breed-Erica Ribley-Monique Ganderton-Jim Starlin-Jimmy Ray Pickens-Hye Jin Jang-Russell Bobbitt-James Lin-Jack Champion-Sam Hargrave-Patrick Gorman-Aaron Lazar-Robert Pralgo-Tom Wisdom-John Posey-Ameenah Kaplan-Olaniyan Thurmon-Jennifer Elmore-Mike Lutz-Anele Lundborg-Khanya Mkhize-Justin Shaw-Tom Antonellis-Ron Bottitta-Danielle Hartnett-Jennifer Cain-Arthur Ortiz-Ben Pronsky,space travel-time travel-time machine-sequel-superhero-based on comic-alien invasion-superhero team-marvel cinematic universe (mcu)-alternate timeline-father daughter relationship-sister sister relationship,/or06FN3Dka5tukK1e9sl16pB3iy.jpg,/7RyHsO4yDXtBv1zUU3mTpHeQ0d5.jpg,299536-299537-429617-99861-284053-363088-24428-271110-315635-284054-324857-284052-283995-100402-1726-10138-64690-76338-102899-287947-10195\r\n76600,Avatar: The Way of Water,Science Fiction-Adventure-Action,en,Set more than a decade after the events of the first film learn the story of the Sully family (Jake Neytiri and their kids) the trouble that follows them the lengths they go to keep each other safe the battles they fight to stay alive and the tragedies they endure.,298.881,20th Century Studios-Lightstorm Entertainment,12/14/22,460000000,2320250281,192,Released,Return to Pandora.,7.", + "embedding" : [ 0.010202288, -0.028610907, -0.017067073, -0.03693503, -0.0025129432, 0.035809442, 8.654603E-4, -0.00350765, -0.021975165, -0.034212675, 0.019422958, 0.018598398, 0.011923392, 0.007277065, 0.013795012, 0.013212585, 0.012244054, -0.014423247, 0.005680299, -0.021975165, 0.004404195, -0.017930897, -0.0059126155, 0.019370604, -0.0077351537, 0.005150225, 0.036149736, -0.008356845, -0.0017096521, 0.008971993, 0.019344429, -0.009881626, 0.010064862, -0.04813857, -0.018480605, 0.003183716, -0.0042340476, -0.03298238, 0.028401494, -0.007754786, 0.011779422, 0.01768222, -0.017027808, 0.0015640454, -0.022668842, -0.015182366, 0.011242803, -0.00286469, -0.0075257416, 0.014475601, 0.026804728, 0.023925314, -0.025574433, -0.026176494, -0.018676927, -0.0016196705, -0.039002974, 0.018428251, -0.005153497, 0.006871329, 0.0055068797, -0.006521219, -0.033191793, -0.018532956, -0.02963179, -0.0206009, -0.0080100065, -0.019292075, 0.002977576, 0.009488978, 0.028480025, 0.019213546, 0.014685012, -0.0020892113, 0.010457509, -0.025914729, -0.02745914, -0.013035893, -0.02164796, 0.0010290634, 0.015169278, -0.0023706087, 0.0054872474, 0.009063611, 0.016595896, 0.016687514, -0.0021039357, 0.018833987, -0.03282532, -0.0020466745, 0.0033571352, 0.011478392, -0.017800014, 0.0058144536, 0.011262436, 0.021962078, -0.0140698645, 0.0217134, -0.014802807, -0.050206512, 0.011282069, -0.0025996529, -0.017080162, -0.0120346425, -0.008291404, 0.0042275037, -0.006105667, -0.0087494925, 0.024959287, 0.014436335, 0.009560964, -0.011000671, 0.0058668065, -0.040782977, -0.006799344, -0.027563848, 0.018886339, -0.022302372, -0.020954283, -0.009115963, 0.045887392, 0.030547967, 0.012106628, -0.031411793, 0.024383403, 0.0285062, -0.00734905, -0.021857372, 0.01350707, 0.010889421, 0.037353855, -0.003034837, 0.025849286, 0.00776133, -0.02299605, 0.03910768, -0.036202088, 0.014527953, -0.01642575, -0.00831758, 0.032720614, 0.021399282, -0.0139782475, -0.015640454, -0.019200457, -0.002921951, 0.030757379, 0.0063085346, 0.029186789, 0.009685302, 0.020810312, 0.027354434, 0.010274273, 0.014907513, 0.020640165, -0.01903031, -0.0028810503, -0.01522163, 0.018428251, -0.01963237, 0.0088280225, -0.010254641, -0.0031526315, -0.0104117, -0.004391107, 0.017355016, 0.027380612, -0.015496484, -0.007748242, 0.019867959, -0.01350707, 0.027406787, -0.012793761, 0.008690596, -6.9899415E-4, 0.006864785, 7.112644E-4, -0.010306994, -0.046986803, -0.022799725, 0.006864785, 0.0042864005, 0.03321797, 0.028401494, 3.075738E-4, 0.0027338075, 0.03523356, -0.0151954545, 0.02007737, -0.024959287, 0.011229715, 0.020404575, 0.015378689, -0.00910942, -0.6273982, -0.01388663, 0.009443169, 0.0073359623, 0.021150606, 0.017368102, 0.0064950422, -0.015326337, -0.03612356, 0.0035141942, -0.011151186, 0.0040737167, 0.013343467, -0.0102611855, -0.009207581, -0.012309495, 0.00541199, -0.010464053, 0.02388605, -0.0030953703, -0.03486709, 0.018127222, 0.012211334, -0.012518908, -4.895822E-4, 0.0054610707, 0.005889711, -0.0059322477, -0.0060173213, 0.013821188, -0.020483106, 0.013912806, 0.020312957, 0.013912806, 0.039840624, 0.0037563266, -0.020731783, 0.05648887, 0.033689145, 0.026909435, -0.028977377, 0.0055134236, 0.014815895, 0.0129900845, -0.013677217, 0.019396782, 0.002913771, 9.897987E-4, 0.004708497, 0.014135306, -0.006707726, 0.01791781, -0.014213836, 0.008520449, -0.01257126, -0.02374208, 0.01619016, -0.035861794, 0.028689437, 7.268067E-4, -0.027930317, 0.028951202, -0.0076828008, 0.00872986, 0.0022135496, 0.022655755, -0.015404866, -0.0074668447, 0.005382541, -0.048792984, 0.0050815116, 0.012263686, -0.013016261, 0.0081343455, 0.02007737, 0.0055952254, 0.03693503, 0.010464053, -6.429601E-4, 0.025796933, -0.003183716, -0.013003172, 0.006328167, 0.0076435357, 0.018388987, -0.0029530355, -0.043688565, 0.0075257416, 0.0097376555, 0.0014290729, 0.011138097, 0.014606483, -0.002867962, 0.016988544, -0.008068904, -0.010640744, 0.006864785, 9.6853025E-4, 0.005166585, -0.05591299, -0.015444131, -0.0416468, 0.058425933, -0.009214126, 0.026516788, 0.006108939, -0.014632659, -0.016622072, 0.029265318, -0.007905301, -0.007846404, 0.0026667302, -0.025849286, -0.010680009, -0.0060173213, -0.026961787, 0.007708977, 0.021582518, 8.176064E-4, -0.026255023, 0.00414243, 0.008958905, 0.008468095, -0.0066161086, 0.024972374, 0.0214909, -0.014161482, -0.01339582, 0.007826772, 0.015771337, 0.0033931278, -0.0040704445, 0.015352513, -0.022786638, 0.012420746, 0.0062823584, 0.004355114, -0.020705605, 0.023467226, -0.015784426, -0.018258104, -0.005477431, -0.007911845, -0.009096331, -0.020168988, -0.008402654, -0.03546915, -2.9469005E-4, -0.0027354434, -0.021778842, -0.0049637174, 0.025116345, -0.0018290824, 0.019305164, 0.01204773, 0.0077809626, -0.021451635, -0.01985487, 0.01228332, -0.023126932, 0.0014994222, 0.024370315, 0.014842072, -0.034160323, 0.0217134, 1.5644544E-4, -0.024226343, 0.0050782394, 0.004404195, -0.008932728, 0.007440668, -0.013467805, -0.0068189763, 0.019501487, -0.008854198, 0.020810312, -0.018388987, 0.017498985, -4.2741303E-4, -0.0077155214, -0.008016551, -0.01030045, -0.016687514, -0.010686553, 0.0293962, 0.04020709, 0.02693561, 0.0025374838, -0.013912806, 0.0017865456, -0.02671311, -0.0090439785, -0.0069236825, -0.0014274368, 0.006593204, 0.021739578, 0.01858531, -0.007224712, -0.0039166575, -0.012453467, 0.016177073, 0.027590023, 0.023794431, -0.026150316, 0.014580307, -0.02245943, -0.0011918484, -0.0068255207, 0.008369934, 0.0010413337, 0.0214909, -0.0079183895, -0.023244726, -0.010594935, -0.006619381, 0.028767966, -0.0029432194, -0.0031019144, -0.018991046, 0.01253854, 0.003710518, -0.014017512, 0.003029929, 0.013572511, -0.029082084, -0.004312577, 0.02410855, -0.015130013, 0.009502067, -0.010869789, -0.0070349323, 0.0072378004, 0.007990374, 0.0077875066, 0.002660186, -0.007931477, 0.01821884, -0.007944565, 0.020797223, -0.013493982, 0.006216917, 0.010529494, 0.017067073, 0.011223171, 0.009979788, -0.010005964, 0.031830616, 0.017669132, -0.0016098543, 0.039866798, -0.009947067, 0.03112385, -0.006004233, 0.007231256, 0.010627656, -0.018467516, -0.005408718, 0.00595188, 0.03546915, 0.022263108, 0.03395091, -0.028427672, 0.018637663, 0.0061187553, 0.025469728, -0.0048459233, -0.021621782, -0.0044434597, -0.0030659216, -0.017721485, -0.01388663, -0.016582808, 0.009933979, 0.006393608, -0.021058988, -0.0030086606, -0.0058111814, -0.0014789718, 0.015444131, 0.016203249, 0.0026994508, -0.0332965, 0.0045481655, 0.03442209, -0.027380612, -0.019396782, -0.016896926, 0.0013562696, -0.026294287, -0.009986332, -0.011576554, 0.04237974, -0.024684433, 0.0047935704, -0.00828486, 0.012499276, 0.02515561, -0.02291752, 0.025927816, 0.004400923, -0.008847655, 0.005196034, -0.004463092, -0.00734905, 0.011570009, -0.007813683, -0.00615802, -0.005807909, -0.019187368, -0.003445481, 0.007486477, 7.812047E-4, -0.030705025, 0.007938022, -0.009299199, -0.02679164, -0.015130013, 0.0027747082, 7.1330945E-4, -0.01619016, -0.016910015, -0.021307666, -0.0412018, -0.018546045, 0.08324125, 0.043452978, 0.0047412175, 0.018114133, -0.009966699, 0.008788757, 8.531901E-4, 9.824365E-4, -0.005320372, -0.026987964, 0.014370894, -0.0022151857, 0.025456639, 0.0034323926, 0.009698391, -0.002930131, -0.006956403, -0.0154572185, -0.0071658147, -0.009933979, -0.014789718, -0.020221341, 0.022969872, 0.035573855, 0.022407077, -8.531645E-6, 0.020182077, -0.00490482, 0.013055526, 0.012211334, -0.016294867, 0.008684051, -9.930707E-4, 0.015928395, 0.00734905, -0.0011345873, 0.035024147, 0.01455413, 0.013147144, 0.0038610327, -0.020613989, 0.006799344, 0.008670963, -0.001271196, -0.0022659027, -0.01925281, -0.012374937, 0.027380612, 0.024317961, -0.04292945, 0.012178613, 0.013415452, -0.0208234, -0.009933979, 0.010614567, 0.009822729, -0.0030037526, 6.171926E-4, -0.014750454, -0.008631699, -0.004895004, -0.02247252, 0.006707726, -0.008736405, -0.014122218, -0.017564427, -0.015417954, -0.009076699, -0.015797513, -0.007708977, 5.427532E-4, -0.008068904, 0.0088738315, 0.0013309111, 0.018245015, -0.0010486958, 0.01903031, -0.0035501868, 0.0043060333, 0.006917138, -0.02433105, -0.018101044, 0.021360017, -0.03007679, 0.00734905, 0.008756037, -0.0058046374, 0.012335672, -0.007892213, 0.0017603692, 0.008330669, -0.0034258484, -0.020509282, 5.223028E-4, 0.03696121, 0.028453847, 0.006429601, 0.0203784, 0.0010347895, 0.0026945428, -0.0022462702, -0.031437967, 0.0026127412, -0.020797223, -0.0146719245, 0.0034749294, -0.011229715, 0.0061972844, -0.018454427, -0.027275905, -0.017786928, -0.019239722, 9.3171955E-4, -0.009436626, 4.2127792E-4, -4.4581838E-4, 0.020208253, 0.0015460491, -0.01295082, 0.009580596, -0.008167066, -0.02537811, 0.008494272, 0.012741408, -0.012244054, 0.024134727, -0.02291752, -0.025063992, -0.0026160132, 0.0355215, -0.009718023, 0.023126932, -0.020875754, -0.0060304096, -0.01731575, -0.016334131, 0.0040442683, 0.0060794903, -0.010889421, 0.012846114, -0.022079872, 0.008127801, 0.0016654794, -0.003402944, -0.010176112, -0.032511204, 0.012420746, -0.0039624665, 0.012021555, 0.0077875066, 0.009796552, 0.013533247, -0.02701414, -0.002120296, -0.019566929, -0.04860975, -0.011354053, -0.019514576, 0.038688857, 0.007368683, 0.027904142, -0.008782214, 0.038086798, 0.006890962, 0.00922067, 0.023231637, -0.030102966, -0.01228332, -0.021595607, 0.0046659596, 0.01317332, 0.023048403, -0.0022250018, -0.004407467, 0.006213645, 0.017577514, 0.008232507, 0.013048981, 0.0033096904, -0.032668263, -0.023598108, 0.0142531, -0.02007737, 0.003088826, -0.01590222, -0.009744199, 0.023336343, 0.022263108, 0.0022626305, -0.010804348, 0.028480025, 0.009024346, 0.011956113, -0.036306795, 0.022210754, -0.039526504, 0.004093349, -0.022878254, -0.016229425, -0.009096331, -0.012551628, 0.020182077, 0.010470597, -0.0073621385, -0.026084876, 0.023126932, -0.022132225, -0.020470018, 0.032406498, -0.012309495, -0.005477431, -0.032642085, -0.010680009, -0.031621203, -0.020168988, -0.006151476, -0.017027808, 0.0013603596, -0.031097673, -0.022773549, 0.02388605, 0.01283957, 0.03389856, 0.0099994205, 0.04237974, 0.017878545, 0.023938403, -0.011203539, 0.006531035, -0.015954573, 0.0027076309, 0.02910826, 0.01799634, -0.020168988, -0.0039166575, -0.0025243955, -0.010385524, -0.031385615, -0.04156827, 0.01339582, 0.011995378, 0.026477523, -0.0149336895, -0.019697811, -0.030652674, 0.0069367704, -0.0027305353, 0.0018830715, 0.016988544, -0.043531507, -0.03546915, 2.1554706E-4, -0.011524201, 0.013297658, 0.010339715, -0.025011638, 0.0210459, -0.013611776, 0.01656972, -0.019082664, -0.016111631, 0.024762962, -0.018650752, 0.013415452, 0.014096041, 0.008291404, -1.6022877E-4, -0.004852467, 0.016517367, 0.028846495, -0.022812814, 0.005860262, 0.01074545, -0.0018487148, 0.015470307, 0.013546335, -0.013068614, -0.023951491, -0.02693561, -0.01388663, 0.032642085, -0.007695889, -0.006917138, -0.009286111, -0.011812142, -0.0109090535, -0.0039526504, 6.2537275E-4, -0.0067404467, -0.024579726, 0.0036777973, 0.0015967661, 0.010176112, 0.00872986, -0.0014781539, -0.0067600794, -0.010706185, -0.008402654, -0.013107879, 3.0532424E-4, -0.0142531, -0.013742658, -0.036542382, -0.030626496, -0.011628907, -0.012453467, -0.0036058119, -0.021831196, -0.013382732, 0.004090077, 0.0016409389, -0.016294867, -0.016622072, -0.021032812, 0.0074014035, 0.013225673, -0.01769531, -0.017826192, -0.004885188, 0.025875462, -0.008153978, 0.006318351, 0.011707436, 0.031490322, 0.0346315, -0.013441629, 0.029579436, -0.008153978, -0.008258684, 0.006413241, 0.027118847, 0.020875754, 0.005906071, -0.009848906, -0.043007977, -2.225002E-4, -0.009502067, 0.017184867, 0.00287287, -0.013834276, 0.022969872, 0.025574433, 0.036620915, 0.015444131, -0.014279277, -0.0285062, 0.0023182556, -0.0062430934, -0.014174571, -0.0076893447, 0.012257143, 0.017891632, 0.03172591, -0.004816475, -0.031228555, -0.0055396003, -0.031673558, -0.03232797, -0.01283957, 0.02566605, 0.025862375, -4.145293E-4, 0.0056475783, 0.01985487, 2.0297007E-4, 0.0035959957, -0.0113867745, -0.011772878, 0.014658836, 0.0035174661, 0.020090459, 0.01955384, -0.024645168, -0.00831758, 0.017852368, 0.026542963, 0.011478392, 0.012721775, -0.006753535, 0.015758248, -0.017053984, 0.020613989, -0.0034258484, -0.013428541, 0.03575709, -0.012152437, -0.0041718786, 0.0124665545, 0.006328167, -0.0046528718, 0.015784426, 0.017891632, 0.0019468766, -0.008409198, -0.004924453, -0.023126932, -0.004574342, -0.03688268, 0.015548836, 0.009907803, -0.003402944, 0.03180444, 0.020561635, -0.014096041, 0.008847655, -0.0033080543, 0.015993837, -0.0037007018, -0.0034094881, 0.0030691938, 0.012165525, -0.01701472, 0.0022920792, -0.021150606, -0.008330669, 0.0019419686, 0.0011607639, -0.0017816375, 0.02582311, 0.0032851498, -0.039814446, 0.0054316223, -0.018467516, 0.016020013, -0.019200457, -0.012754496, -0.0047019524, -0.0088738315, 0.0067797117, 0.01134751, -0.028663259, -0.018559134, 0.0138997175, 0.0050095264, 9.03907E-4, 0.02858473, 0.1928684, -0.005519968, 0.0061547477, 0.056331813, -0.005735924, 0.009816185, 0.021150606, 0.013598688, -1.5838823E-4, 0.01283957, -0.007185447, 0.008723316, -3.1923052E-4, -6.6566005E-5, 0.0111250095, -0.018873252, -0.02649061, -0.023899138, -0.008448463, -0.017904721, -0.0035338264, 0.008481184, -0.017080162, -0.026228845, 0.007977286, -0.011118465, -0.010542583, 0.0048491955, 0.01858531, 0.004980078, -0.0122964075, -0.012885379, -0.014187659, 0.018428251, -0.019763252, 6.7527173E-4, 0.0038217679, 0.0035600031, 0.014279277, -0.002812337, -0.023480315, 0.016163984, 0.0010315174, 0.017184867, 0.010110671, 0.02724973, -0.022027519, -0.0030201129, -0.0045318054, 0.008913096, -0.04701298, -0.002398421, 0.013251849, 0.027302083, -0.011013759, -0.0034422087, 0.0056966594, 0.009155229, -0.009574052, 0.0019386965, 0.01552266, 0.035416793, -0.029239142, 0.004466364, 0.0067862556, 0.0054545267, -0.044761803, 1.0122941E-4, 0.008775669, -0.034526795, -0.015758248, -0.034003265, -0.007754786, 0.01761678, -0.0075126532, -0.009371185, -0.0012564716, -0.0060827625, 0.015103837, 0.016451925, -0.0328515, -0.013690306, 0.0012507455, -0.001971417, -0.015771337, -0.0058831666, 0.013153688, -0.011772878, -0.009600229, -0.0022560866, -0.001974689, -0.023794431, -0.010758539, -0.0029284952, -0.0056606666, -0.0040671728, 0.016268691, 0.0058111814, -0.014423247, 0.0017800016, -0.04604445, 0.011576554, 0.02179193, 0.004139158, -0.033113264, -0.026281198, -0.003978827, 0.004400923, 0.019174282, -0.0012229331, -0.025495904, -0.032720614, 0.007931477, -0.009947067, 0.013264937, 0.04015474, -0.007610815, -0.014789718, 0.057221815, -0.019998841, 0.011301701, -0.02566605, 0.009528243, 0.0027943405, 1.1912349E-4, -0.026163405, -0.021674136, 0.018794721, 0.0076173595, -0.028925024, 0.020862665, -0.006547395, 0.015208542, -0.0073097856, 0.011151186, 0.0037955914, 0.024461932, -0.015836779, 0.0047935704, -0.016595896, -0.0024720426, -0.021988254, 0.015234719, 0.018140309, 0.007172359, -0.0219359, 0.017800014, -0.0020924835, -0.017197955, -0.033191793, -0.03387238, -0.004950629, 0.015273984, 1.2403159E-4, 0.039971504, -0.0029415833, -0.01134751, -0.024723697, -0.008867287, 0.04007621, -0.019697811, 0.027642377, 0.01776075, -0.01709325, -0.040625915, -0.0066880938, -0.16459778, 0.017800014, 0.008513904, -0.033401206, 0.00614166, 0.0133761875, 0.021896636, 0.0017783655, 0.0029088627, -0.02120296, 0.03342738, -0.009076699, -0.046698865, 0.0050291587, -0.0011607639, 0.03274679, -0.013330379, 0.038034443, 0.0271712, -0.009678758, 0.04402886, -0.010588392, -0.0074668447, 0.012721775, 0.013467805, -0.016177073, 0.01910884, 0.00899817, 0.0089196395, 0.0064459615, -0.036830325, -0.012211334, 0.039369445, -0.0027567118, -0.01231604, 0.0145933945, -0.0050815116, -0.017341927, -0.0068582413, -0.0017129242, 0.057850048, 0.01747281, 0.022969872, 0.0150253065, 0.023794431, 0.0049637174, 0.030626496, -0.011242803, 0.013965159, -0.027563848, -0.014750454, -0.049290337, 0.02649061, -6.595249E-5, -0.012793761, 0.028192082, 0.008893464, 0.006177652, 0.018323544, -0.010673465, -0.022001343, -0.0022544505, 0.0153656015, -0.020391488, -0.007911845, -0.018611487, -0.009691847, 0.008958905, -0.03612356, 0.014056777, -0.009475891, -0.0040050033, 0.00809508, -0.0070414767, 0.002913771, -0.022223843, -0.037772678, 0.006095851, -0.0077678743, 0.014527953, -0.008016551, 0.028689437, -0.008481184, 0.014842072, -0.0015010582, -0.011929937, -0.002280627, -0.006357616, -0.005834086, -0.014344718, 0.0069367704, -0.0210459, -0.037825033, 8.3192164E-4, 0.0067797117, 0.010195744, -0.004986622, 0.01723722, 0.01231604, 0.011013759, -0.0064688656, -0.009318831, -0.013952071, -0.007584639, 0.022367813, 0.0023493401, 0.01715869, 0.01612472, 0.02455355, -0.008193242, -0.013624865, -0.0018388986, 0.037851207, 0.001858531, -0.021320753, 0.017525163, -0.020051194, -0.018467516, -0.0013709938, 0.009724567, 0.061305348, -3.1984402E-4, 0.0038119517, -0.02096737, -0.0022593585, -0.017564427, -0.08826713, -0.01126898, 0.01828428, 0.042877097, -0.016006926, 0.033977088, -0.010091038, 0.011092288, -0.017747663, 0.037118267, 0.004247136, -0.032144733, 0.025129434, 6.0993272E-5, 0.013834276, -0.009057066, -0.02701414, -0.015234719, -0.021373106, 0.029815026, -0.0035861796, -0.017773839, 0.00595188, -0.0034912897, -0.01619016, 0.016622072, -0.016373396, 0.0143316295, 0.023624284, 0.010306994, 0.0032704256, -0.024723697, 0.021216048, -0.035128854, -0.019239722, -0.023977667, -0.022302372, -0.025692228, -0.0053890855, -0.043112684, 0.016543543, 0.0127283195, -0.0042765844, -0.03282532, -0.015470307, -0.012237511, -0.03588797, 0.03334885, -0.0028581459, -0.034003265, -0.011419495, -0.026255023, -0.04494504, 7.8365876E-4, 0.01123626, 0.018415162, 0.03217091, 0.004472908, 0.005791549, -0.042798564, -0.007604271, -0.0096133165, -0.021058988, 0.022263108, 0.0066651893, 0.014802807, -0.001326003, -0.009580596, 0.014423247, -0.00511096, -0.018467516, 0.007957654, -0.029212967, -0.014894424, -0.02201443, 0.0051731295, -0.023938403, -0.019004134, 0.029291496, -0.032144733, 0.009462802, -0.028898848, 0.004404195, -0.010902509, 0.018925603, 0.018690016, 0.0073359623, 0.021294577, -0.009403905, -0.042013273, -0.00980964, 0.030888261, 0.001223751, 5.8201794E-4, 0.015862955, 0.00992089, 0.010941774, -0.002228274, 0.0036090838, 0.010483685, -0.01350707, 0.0056083137, -0.06889653, 0.034160323, -0.02194899, 0.006599748, -0.004427099, -0.009050522, -1.9284713E-4, -0.013402364, 0.0033604072, 0.022564137, 0.005624674, 0.018349722, 0.0011149549, -0.002280627, -0.0014388891, 0.015143101, -0.002719083, -0.012106628, 0.005088056, 0.0020761231, -0.018323544, 0.009718023, 0.01872928, -3.5869976E-4, 0.0022200937, 0.00530074, 0.017970162, -0.003674525, -0.023990756, -0.013088247, 0.030626496, -0.0143316295, -0.006050042, 0.0049571735, -0.003723606, -0.03120238, -0.008932728, 0.005330188, 0.014619571, 1.2219105E-4, 0.0033636794, -0.026176494, 0.008330669, -0.006851697, -0.017669132, 0.012780673, -0.015535749, 0.004728129, 0.00809508, 0.027877964, 0.041070916, 0.010372436, 0.012446922, -0.020574722, 0.026608406, -0.027380612, 0.044002686, -0.0018356266, -0.005997689, -0.015653543, 0.025953993, 0.010680009, 0.034683853, -0.025692228, 0.006115483, -0.0018241743, 0.009881626, 0.009979788, 0.0027910685, -0.02642517, -0.009973244, -0.0036090838, 0.01858531, 0.040128563, 0.030626496, 0.01168126, 0.0065637557, 0.0017112882, -0.002028678, 0.020784136, 0.00798383, -0.005850446, -0.034081794, 0.02821826, -0.010503318, 0.014462512, -0.004620151, 0.011622363, 0.007931477, 0.0067666234, -0.0210459, 0.023689726, 0.008160521, -0.0017276485, 0.01612472, 0.017302662, -0.0034912897, -0.0109090535, 0.0063347113, 0.01955384, -0.023388697, -0.0077416976, -0.011026847, -0.019894134, -0.0337415, -0.003347319, -0.019750163, -0.01082398, 0.004420555, 0.019226633, 0.031516496, 0.0070218444, -0.015483395, 0.015038395, -0.048976216, -0.0023149836, -0.0040050033, -0.0042144153, -0.00720508, 0.042720035, 0.012217878, 0.01634722, 0.033558264, 1.1534017E-4, 0.046751216, 0.008958905, 4.4459137E-4, -0.022380902, 0.0032311608, 0.028375318, 0.0032000763, -0.0031084586, -0.016399574, 0.011720524, -0.02217149, 0.0037072457, 0.014357806, 0.03539062, -0.029422378, 0.073451236, 0.019004134, -0.007924933, 0.013533247, -0.0048099305, 0.024501197, 0.021962078, 0.023205461, -0.025980169, -0.010182655, -0.0146719245, -2.3783797E-4, 0.011183906, -0.02709267, 0.002923587, -0.005565777, 0.012374937, 0.004744489, -0.014619571, -0.013755747, -0.021111341, -0.022551049, 0.02276046, 0.0010331535, -0.014711189, -0.009560964, 0.017603692, -0.0106342, 3.832402E-4, -0.028113553, 0.008801846, -0.02649061, -0.017341927, 0.00765008, 0.026778553, 0.008042728, 0.004708497, 0.014174571, 0.0120346425, 0.005088056, -0.01231604, -0.002231546, -0.026137227, -0.0068124323, 0.018428251, -0.022904431, -0.0077220653, -0.030260026, -0.0066717337 ], + "id" : "d43d9763-0cea-4999-9018-27ae7e8293e6", + "metadata" : { + "source" : "movies.csv" + } + }, + "16c4c813-f357-43f4-b7b5-00c979edbb39" : { + "text" : "12,Finding Nemo,Animation-Family,en,Nemo an adventurous young clownfish is unexpectedly taken from his Great Barrier Reef home to a dentist's office aquarium. It's up to his worrisome father Marlin and a friendly but forgetful fish Dory to bring Nemo home -- meeting vegetarian sharks surfer dude turtles hypnotic jellyfish hungry seagulls and more along the way.,113.036,Pixar,5/30/03,94000000,940335536,100,Released,There are 3.7 trillion fish in the ocean. They're looking for one.,7.825,18257,Albert Brooks-Ellen DeGeneres-Alexander Gould-Willem Dafoe-Geoffrey Rush-Brad Garrett-Allison Janney-Austin Pendleton-Stephen Root-Vicki Lewis-Joe Ranft-Andrew Stanton-Elizabeth Perkins-Nicholas Bird-Bob Peterson-Barry Humphries-Eric Bana-Bruce Spence-Bill Hunter-LuLu Ebeling-Jordan Ranft-Erica Beck-Erik Per Sullivan-John Ratzenberger-Carlos Alazraqui-Alec Medlock-Bob Bergen-Nicole Miller-Geoff Brooks-Lisa Peers-Paul Eiding-Phil Proctor-Leland Grossman-Daryl Sabara-Lili Ishida-Emmett Shoemaker-Oliver Kindred-Ben Stanton-Danny Mann-Kali Whitehurst-Rove McManus-James S. Baker-Vanessa Marano-Susan Blu-Annelise Nolting-Jeff Pidgeon-Jennifer Darling-Aaron Fors-Katherine Ringgold-Jess Harnell-David Ian Salter-Caroline Kindred-Sherry Lynn-Jim Ward-Mickie McGowan-Jack Angel-Laura Marano-Bobby Block-Laraine Newman-Jane Carr-Michaela Jill Murphy-Jan Rabson-Bradley Trevor Greive-Evan Sabara-Marc John Jefferies-Eliza Schneider-Lee Unkrich-Noah Luke,sydney australia-parent child relationship-anthropomorphism-harbor-underwater-shark-pelican-fish tank-great barrier reef-sea turtle-missing child-aftercreditsstinger-duringcreditsstinger-short term memory loss-clownfish-father son reunion-protective father,/eHuGQ10FUzK1mdOY69wF5pGgEf5.jpg,/dFYguAfeVt19qAbzJ5mArn7DEJw.jpg,1075271-920022-585-648081-862-9806-2062-14160-863-10193-920-10681-8587-425-500-808-74605-127380-9487-62211-953\r\n438148,Minions: The Rise of Gru,Animation-Comedy-Family,en,A fanboy of a supervillain supergroup known as the Vicious 6 Gru hatches a plan to become evil enough to join them with the backup of his followers the Minions.,98.373,Universal Pictures-Illumination,6/29/22,85000000,940000000,87,Released,A villain will rise.,7.3,3307,Steve Carell-Pierre Coffin-Alan Arkin-Taraji P. Henson-Michelle Yeoh-Julie Andrews-Russell Brand-Jean-Claude Van Damme-Dolph Lundgren-Danny Trejo-Lucy Lawless-Jimmy O. Yang-Kevin Michael Richardson-John DiMaggio-RZA-Michael Beattie-Will Arnett-Steve Coogan-Colette Whitaker-Raymond S.", + "embedding" : [ 0.009130391, -0.022752881, -0.00990787, -0.030354895, -0.004462196, 0.01305101, -0.009748387, -0.012997849, -0.023138298, -0.03067386, 0.022314303, 0.03186998, 0.02554383, -0.007854529, -0.009196842, 0.013456362, 0.021716243, -0.030886505, 0.012851656, -0.03527228, 5.527907E-4, 0.004010328, -0.008200075, -0.0029039162, 0.0131108165, -7.67511E-4, 0.024068614, -0.010844831, -0.0075953687, -0.020028383, 0.025716603, -0.02267314, -0.00905065, -0.01333675, -0.024839448, -0.003771104, -3.8603978E-4, -0.029397998, 0.031072568, -0.0069042766, 0.0026015632, -0.01419397, -0.013901585, -0.009994256, -0.0154166715, 0.0040701344, -0.002664692, -0.0023806132, -0.02050683, 0.016665954, 0.033464808, 0.008412718, -0.015217318, -0.039498575, -0.011841599, -6.802939E-4, -0.015682476, -0.017303884, 0.007608659, 0.009535743, 0.016812146, -0.00305177, -0.005615124, -0.013316815, -0.022726301, 0.004080102, -0.006289603, -0.0066351495, 0.0029255128, -0.010645478, 0.01921768, 0.027989233, 0.025331186, 7.965834E-4, 0.0283082, -0.01927084, -0.01925755, 0.003367413, 5.116221E-5, 0.003741201, -0.0025982407, -0.012040952, -0.0032627524, 0.0054124477, 0.013702231, 0.026195051, 0.001968616, 0.023855971, -0.041757915, 0.012572561, 0.024640094, 0.051911656, 0.008552265, -0.012366563, 0.023576876, 0.009834773, -0.018991744, 0.012153919, -0.018313942, -0.06767387, -0.008426009, 0.0012069194, -0.0054689315, -0.011422956, -0.0043857773, -0.0040535214, 0.0051200627, -0.014898352, 0.012499466, 0.003953845, 0.0027145303, -0.010977734, 0.025105253, -0.04710059, -0.009449356, -0.028839808, 0.023749648, 0.012798496, -0.0032262043, -0.00903736, 0.01868607, 0.018008268, 9.652033E-4, -0.023138298, 0.03131179, 0.02833478, -0.016280537, -0.021609921, -0.006322829, -0.00794756, 0.027962653, 0.007535563, 0.027377883, 0.014964804, -0.043724872, 0.048987802, -0.0119545655, -0.013363331, -0.01760956, -0.016333697, 0.02495906, 0.036893692, -0.01302443, -0.01636028, -0.028627165, -0.010060707, 0.01332346, -0.0033375102, 0.029424578, -0.006276313, 0.022992104, 0.012705464, -0.00940284, 0.026540598, 0.0065387953, 0.011343215, 0.0011761857, -0.006744794, 1.431815E-4, -0.031976305, -0.0014536193, -0.0019304065, -0.0037777491, -0.007874464, 0.0154299615, 0.027019046, 0.00383091, -0.02775001, -0.019098066, 0.0030916408, -0.0017958429, 0.04040231, -0.0068511157, 0.012718754, -0.0012293466, 0.024254678, 0.0073428545, 0.0011238555, -0.008392783, -0.0073494995, 0.007774787, -0.012173855, 0.00989458, 0.014792031, 0.016280537, -0.005462286, 0.028733486, -0.019616386, -0.0029720287, -0.012439659, -0.016041312, 0.03303952, 0.0048808386, 0.013994616, -0.63580483, -0.009436066, 0.00825988, -0.01865949, 0.016692534, 0.012353273, -0.0067381486, -0.012791851, -0.012499466, -0.0075820787, -0.023669908, 0.0030368185, 0.027377883, -0.013768682, -0.015855249, -0.0055220923, -0.004349229, -0.021942176, 0.012918107, 0.0042495523, -0.03338507, 0.0016621099, 0.0044821315, 0.012187145, 0.01246624, 0.0011471134, -0.013835134, -0.013529458, -0.001933729, 0.002224453, -0.014007906, 0.005365932, 0.009582259, 0.0015142561, 0.032693975, -0.00305177, 5.14737E-5, 0.055872146, 0.01752982, 0.005139998, -0.036548145, -0.010266706, 0.02441416, 0.001320717, -0.00467484, -1.8502498E-4, 0.019403743, 0.011030895, 0.020254318, 0.014233841, -0.0037877169, 5.6068174E-4, -0.012300111, -0.020081544, -0.02091883, -0.0044754865, 0.01872594, -0.04018967, 0.0105059305, -0.0079276245, -0.009708516, 0.005216417, -0.004040231, 0.024533773, 0.001014211, 0.049014382, -0.0266735, -0.011522633, 0.03128521, -0.025809634, 0.020772636, -0.0012384837, -0.0060404115, 0.0044422606, 0.014419904, 0.029956188, 0.030833343, 0.0012143952, 0.006432473, 0.0011147184, -0.002980335, 0.0038043295, 0.009735096, 0.015190737, 0.01992206, -0.0038873935, -0.0036747498, 0.010645478, 0.015483123, -0.01134986, -0.002593257, 0.028999291, 0.01533693, -0.012153919, -0.013449717, -0.0017692625, -0.019098066, -0.001956987, 0.03272056, -0.06262358, -0.0027693526, -0.032029465, 0.03131179, -0.016852017, 0.012114049, -0.0175564, 0.01159573, 0.02155676, 0.021729533, 0.00910381, -0.009814838, -0.006322829, -0.020294188, -0.018593038, 1.1016358E-4, -0.025331186, 4.3234794E-4, 0.012878237, 0.0057779294, 0.00494729, 0.007668465, 0.0038508454, 0.02777659, -0.009369615, 0.021144763, 0.0033956547, -0.013150686, 0.0031198824, -0.012047597, -0.007874464, 0.0024171614, 0.027510785, 0.004010328, -0.01927084, 0.016041312, 0.029743545, 0.022952234, 0.0015117641, 0.02719182, -0.0119545655, -0.026248213, -0.009429421, 0.0020317445, -0.029158775, -0.011163796, -0.018446846, -0.015669186, -0.0052928356, -0.021463728, -0.007874464, -0.008565556, 0.005668285, -0.0020018416, 0.030833343, 0.0074624666, -0.004086747, -0.030833343, -0.01868607, 0.0351128, -0.028733486, 0.01596157, 0.009409485, -0.023071846, -0.022247853, 0.00853233, -0.010366383, -0.0016629406, 0.010353092, -0.0037976843, -0.021397278, -0.001175355, -0.01709124, -0.0022211303, 0.008379493, -0.019523354, 0.039206192, -0.01924426, 0.0060869274, 0.0046648723, -0.018606327, 0.0023274522, -0.018500006, -0.022380754, -0.012672238, 0.049492832, -0.002307517, 0.044947572, 0.0073096287, -0.0204138, 0.017303884, 0.011356506, -0.005123385, -0.018473426, -0.012386498, -0.0040070056, 0.009549033, -0.0042761327, 0.0066650524, 0.02208837, 0.015536284, 0.03806323, 0.03404958, -0.01073851, 0.007615304, 0.01418068, -0.02440087, 0.012499466, -0.01992206, -3.9579978E-4, 0.022473786, 0.021277664, -0.02098528, -0.0064291507, -0.014233841, 0.02037393, 0.022593398, -0.009010779, -0.0061168303, -0.009887935, 0.023962293, 0.013649071, -0.008346267, 0.018965164, 0.015748927, -0.01873923, -1.7786071E-4, 0.019044906, -8.721716E-4, -0.014871772, -0.0075222724, -0.0012260241, -0.008558911, -0.011768502, 0.012918107, -0.0033375102, 0.0068444707, 0.038807485, -0.008392783, 0.016320407, -0.007980785, 0.0065520853, 0.01977587, 0.01416739, 6.881849E-4, 0.012532691, -0.014911643, 0.016785566, 0.011422956, -0.0010823235, 0.047765102, -0.020334058, 0.015270479, -0.024866028, 0.022354174, -0.0148584815, -0.0029122226, 0.0076219495, 0.009309809, 0.019762577, 0.016054602, 0.012645658, -0.019642966, 0.0045618727, 0.020799216, 0.022752881, -0.028148716, -0.017290594, 0.0026862887, -0.0056118015, -0.029929608, -0.026713371, -0.0031663983, 0.004718033, -0.0031979627, 0.0029072387, -0.012725399, -0.0133965565, -0.0014826917, 0.013057655, 0.02094541, -0.009223423, -0.027112078, 0.020706184, 0.02261998, -0.012047597, -0.016041312, -0.016333697, 0.008984198, -0.013901585, -0.00794756, -0.004605066, 0.0249059, 5.1167404E-4, 0.008838005, -0.017915236, -0.0017476658, 0.0019918738, -0.022354174, 0.015549574, 0.012273531, 0.0029072387, 0.01636028, -0.011974501, -0.006472344, 0.020599863, -0.002505209, 0.0010490979, -8.4974436E-4, -0.009728451, 0.010924572, -0.0073494995, 2.9466941E-4, -0.030913085, 0.003581718, -0.028175296, -0.02836136, -0.01273869, 0.006066992, 4.232109E-4, 0.0018672779, -0.017901946, -0.026022278, -0.008844651, -0.0012476208, 0.07224571, 0.04247559, 0.01216721, 0.009216777, -9.1868744E-4, 0.013569329, -0.017343756, 0.0044289706, -0.0069042766, -0.0067913095, 0.01651976, -0.01937716, 0.03617602, 0.0023224684, 0.010971088, 0.0030683829, -0.01645331, -0.016838728, 0.003913974, -0.009382905, -0.02664692, -0.0082067195, 0.025650153, 0.040933922, -0.014605967, -0.025636861, 0.02147702, 0.01980245, -7.529748E-4, 0.016067892, -0.0047612265, -0.0011969517, -3.5343718E-4, 0.013230428, -0.005066902, 9.053972E-5, 0.016267247, 0.010173675, 0.020599863, 0.01590841, -0.009223423, -0.0019353904, -0.0047977744, -0.013104171, -0.0013215477, -0.0024304516, -0.008572201, 0.024746416, 0.01994864, -0.01820762, 0.025450798, -0.011137216, -6.790479E-4, 1.4183171E-4, 0.040933922, -0.006073637, -0.01710453, 0.0033890097, 0.0022742914, -0.01705137, 0.02547738, -0.022021918, -3.164737E-4, -0.0084991045, -0.006050379, -0.025703313, -6.6326576E-4, -0.001456942, -0.017144402, 0.0011221941, 0.004854258, -0.020799216, -0.026793113, -0.0119612105, -0.0039106514, 1.2677637E-4, 0.016639372, -0.008266525, 0.015536284, 0.011695406, -0.0053559644, -0.012831721, -0.013728812, -0.021131473, -0.0186462, 0.00967529, -0.0072365324, 0.014792031, -0.003432203, 0.0062663453, 0.028201876, 0.019722708, -0.0051167402, -0.007841238, 0.016599502, 0.0021845822, 0.019603096, 0.016705824, 4.1739643E-4, -0.0072232424, 0.010426189, -0.03532544, -0.02838794, -0.013728812, -0.010997669, -0.032082625, 0.0035717504, 0.02036064, -0.013017785, -0.031763658, -0.019523354, -0.0061267978, 0.0030833343, 0.010891347, 0.0016405133, -0.012100758, 0.02050683, 0.019310711, 0.0047379686, 0.021889016, 0.016732404, -0.001968616, 0.015642606, 0.030700441, -0.004063489, 0.009223423, 0.005169901, -0.01872594, -0.00875162, 0.02265985, 0.03904671, 0.014340162, -0.029238515, -0.015602735, -0.015456542, -0.029397998, -0.008120333, 0.0053028036, -0.03444829, -0.0061002173, -0.021769404, -0.008299751, 0.018340522, -0.0181013, 0.013163977, -0.026288083, 0.021410568, -0.028148716, 0.0306207, 0.027723428, -0.022035208, 0.008990844, -0.01923097, -0.0073561445, -0.0030766893, -0.022952234, -0.021304246, 0.002422145, 0.03505964, 0.008073817, 0.03593679, 0.0134032015, 0.011761857, 0.003920619, 0.0066716974, 0.02495906, -0.014924933, 0.0033989775, -0.038329035, 0.0087782, 0.010359738, 0.018048137, 0.022247853, 0.0096553555, 0.018500006, 0.027537365, 0.017264014, 0.011555859, -0.007442531, -0.0019719384, -0.012419724, -0.007322919, -0.024361, 0.015469832, -0.0017759076, -0.024427451, 0.051433206, -6.516368E-4, -3.1834265E-4, -0.0037677814, 0.0352457, 0.0033574454, 0.012060887, -0.018021557, 0.024547063, -0.029743545, -0.005472254, -0.024613515, -0.026367825, -0.006774697, -0.0023523713, 0.016107764, 0.006050379, -9.668645E-4, 0.006169991, 0.033119265, -0.016227376, -0.032640815, 0.0075953687, -0.0049771927, 0.0012260241, -0.02836136, -0.0046980977, -0.03697343, -0.008200075, 0.010698639, -0.012366563, 0.0053858673, -0.0071767266, -0.03527228, 0.0057679615, 0.0116821155, 0.033996418, 0.0063859574, 0.034288805, 0.03330533, 0.0054124477, -0.01978916, 0.018526586, -0.0073428545, -0.011329925, 0.055712663, 0.01046606, -0.00736279, -0.01702479, -0.012559271, 0.005954025, -0.015881829, -0.052310362, 0.02437429, 0.017848784, 0.020746056, -0.019589806, -0.0020550024, -0.020613153, 0.026992466, -0.0031747047, 0.0011836615, 0.00555864, -0.019682838, -0.029663803, 0.0017260691, -0.011628955, 0.01819433, 0.00907723, -0.0076418845, 0.020785926, -0.0034488158, 0.0022643236, -0.008020656, -0.0014378373, 0.024188226, -0.01276527, 0.023523714, 0.014353453, 7.567127E-4, -0.011230248, -0.0014203938, -0.0044588735, 0.030567538, -0.034315385, -0.0015358527, -0.01220708, 0.002510193, -0.004296068, -0.011934631, -0.037717685, -0.024507191, -0.032268688, -0.008239945, 0.045452602, 0.0020599863, 0.012864946, -0.0064125382, -0.013928166, -0.0142604215, -0.017317176, 0.002247711, -0.00219455, -0.03452803, 0.009808193, 0.00764853, 0.027484205, -0.005757994, -0.017396916, -0.010691994, 0.0037312333, 0.01703808, 0.008346267, -0.0022526947, -0.026846273, -0.011615665, -0.0465424, -0.029956188, 0.0041797785, -0.021383988, -6.944147E-4, -0.046063952, 0.0021181311, 0.007050469, -0.024081904, 0.005684898, -0.013496233, 0.0025201607, 0.008107043, 0.016267247, -0.012333337, -0.015150867, 1.6820453E-4, 0.04189082, -0.007030534, 0.0059872507, 0.01077838, 0.015097706, 0.023922421, -0.041093405, 0.0026663532, -0.005156611, -0.024839448, -0.014393324, 0.0055785757, 0.0072232424, 0.017795624, 0.0034089452, -0.049147286, -0.005282868, -0.0028607228, 0.03386352, -0.017928526, -0.018526586, 0.037079755, 0.027484205, 0.032082625, -0.0033939935, 0.0017842139, -0.03365087, -0.0045552277, -0.0042561977, -0.02210166, -1.06218045E-4, -0.0032876716, 0.010838186, 0.009163616, -0.002747756, -0.016665954, 0.0041797785, -0.01920439, -0.016745696, -0.011183732, 0.02780317, 0.04306036, -0.004073457, 0.007668465, 0.03527228, -0.01763614, 0.012572561, -0.014632548, 0.0019221001, 0.014592677, 0.007163436, 0.011662181, 0.012572561, -0.018539878, -0.0050868373, 0.018420264, 0.017489947, 0.0032909943, 0.02782975, -0.03971122, -0.0068909866, -0.019430323, 0.0023590166, 0.012366563, -0.0030035928, 0.014473065, -0.029982768, -0.015522993, 0.0038873935, 0.020599863, -0.012034307, -0.0045286473, 0.0011587424, -0.008771555, 0.0020666313, -0.03444829, -0.005741381, -0.0052496423, -0.01710453, 0.00968858, 0.007734916, 0.01024677, 0.013389911, 0.02207508, -0.008253235, -0.01824749, 0.0010407915, -0.010293286, 0.005336029, 6.013831E-4, -0.0049040965, 0.010731864, -0.054277316, 0.01024677, -0.017822204, 0.00938955, -0.014778741, -7.8183955E-5, -0.012585851, 0.02720511, -5.0461356E-4, -0.049572572, 0.0054224157, 0.005425738, 0.0035551377, -0.020852378, -0.0010922911, -0.03125863, -0.023377523, 0.003937232, 0.010133804, -0.014459775, -0.034395125, 0.009309809, -0.008053882, -0.017835494, 0.013363331, 0.17649432, -0.010612252, 0.014326872, 0.0556595, 0.011775147, 0.0077548516, 0.011183732, 0.012991204, 0.00470142, 0.015044545, 0.0011878146, 0.0033989775, -0.005860993, 0.0034288804, 0.013536104, -0.021822564, -0.0352457, -0.018327232, -0.019403743, -0.026965884, -0.0069507924, -0.012034307, -0.0105458, -0.01936387, 0.0069507924, 0.0052064494, -0.01636028, 0.006970728, 0.012971269, -0.004724678, -0.005724768, -0.031444695, -0.003717943, -0.005591866, -0.008459234, -0.014300292, 0.0049273544, 0.011329925, -4.1428153E-4, 0.0099410955, 0.004525325, 0.0034189126, 0.0017393593, -0.0062962486, 0.006871051, 0.02489261, -0.018367104, 0.0016969967, -0.031125728, 0.013343395, -0.045160215, 0.00138966, 0.0013165638, 0.0077415616, -0.01472558, -0.01111728, -0.0015092723, -0.00936297, -0.0022510334, 0.017729172, 0.024626805, 0.04101366, -0.014061068, 0.024852738, -0.01811459, 0.02211495, -0.048403032, 0.016121054, 0.0085057495, -0.037744265, -0.0051100953, -0.030248573, -0.03503306, -0.014619257, -0.016107764, -0.01767601, -0.012778561, 0.0111039905, 0.025397638, 0.015177447, -0.017835494, -0.008313041, 1.8284455E-4, 0.003236172, -0.0058875736, -0.029265096, 0.016758986, -0.018579748, 0.0026065472, -0.030886505, 0.0015391753, -0.022965524, -0.022606688, 0.016134344, -0.0013049348, 0.025012221, 0.010200255, -0.0024952416, -0.008512395, -0.012233661, -0.02838794, 0.022207981, 0.028999291, 0.0016670937, -0.028999291, -0.016998209, -0.016200796, 0.01640015, 0.027723428, -0.011834954, -0.01702479, -0.008379493, 0.024148356, -0.00790769, 0.008485815, 0.022287723, 0.0076751104, -0.014512936, 0.04415016, -0.0145395165, -0.01582867, -0.015509703, 0.021038441, 0.013954746, -0.008060527, -0.03678737, -0.013821844, 0.01275198, 0.021397278, -0.03617602, -0.007847884, -0.0315776, 0.0074159508, -0.008053882, -0.006930857, 0.015390092, 0.023988873, 0.01812788, -0.0018240847, -0.0164666, -0.00368804, -0.017277304, 0.003390671, 0.0025035478, 0.0062597003, -0.025982408, 0.044495706, 0.019137938, -0.011210312, -0.027032336, -0.022407334, -9.394534E-4, 0.011515988, 0.009994256, 0.036016535, -0.00651886, -0.028653745, -0.04101366, -0.00881807, 0.016838728, -0.028122136, 0.015110997, 0.0105325105, -0.01645331, -0.02441416, -0.0056882203, -0.16841385, 0.0013580958, 0.002422145, -0.025304606, 0.018473426, 0.009010779, 0.024719836, 0.0035883633, 0.0091171, -0.024985641, 0.0019835674, 0.0105258655, -0.0398707, -0.022301013, 0.0026281439, 0.011874824, -0.0107983155, 0.022154821, 0.020320768, -0.001968616, 0.04029599, 0.021928886, -0.006382635, -0.016147634, 0.009269939, 0.018008268, 0.005734736, 0.00354517, -0.009004134, -0.017237434, -0.017476657, -0.02052012, 0.017835494, 0.012851656, -0.00853233, 0.024121774, -0.016346987, -0.009761677, 0.007209952, 0.0064457636, 0.006930857, 0.023869261, 0.04760562, 0.0022975493, -0.0036548143, -0.010957798, 0.005771284, -0.03412932, 0.0068378253, -0.03272056, -0.0060470565, -0.05268249, 0.007608659, -0.0119545655, 0.0051200627, 0.029690383, -0.018619617, -0.0012368225, 0.011868179, -0.012904817, -0.034953315, -0.008014011, 0.0082333, -0.019098066, -0.0049406444, -0.042236365, -0.021623211, 0.0020433734, -0.04476151, 0.0075554983, -0.027590526, 0.010559091, 0.021968758, 0.010306576, -0.0045884536, -0.030514378, -0.027670268, 0.007249823, 0.0055387053, 0.036122855, -0.0037810716, 0.038621422, -0.011775147, 0.012526046, 0.010319867, -0.009588904, -0.018048137, -0.014419904, -0.005734736, -0.0037810716, 0.0139680365, -0.023404103, -0.006924212, 0.005963993, 0.015841959, 0.02494577, -0.0035551377, 0.001749327, 0.006399248, 0.009143681, -0.005209772, -0.011542568, -0.0070238886, 0.025889376, 0.027670268, 0.014698999, 0.01418068, 0.0056483494, 0.03559125, -0.01192134, 0.00666173, 0.016214086, 0.02107831, 0.005123385, -0.023749648, 0.008485815, -0.009396195, -0.022859203, 3.2810264E-4, 0.017210854, 0.029849866, -0.007914335, 0.001392152, -0.022992104, 0.014605967, -0.020812506, -0.08931037, 0.019669546, -0.0031514468, 0.058211226, -0.041545272, 0.031045986, -0.01705137, 0.03418248, -0.017835494, 0.030168831, 0.012040952, -0.012419724, 0.009701871, -0.010539155, 0.02775001, 0.009223423, -0.029716963, -0.014579387, -0.01047935, 0.02097199, 0.0182342, -0.0071169203, 0.0065454403, -0.00937626, -0.032002885, 0.010984379, -0.019642966, 0.025198285, 0.011270119, 0.024081904, 0.022845913, -0.022035208, 0.02433442, -0.04189082, -0.03808981, -0.00996103, -0.01702479, -0.021915596, 0.013157332, -0.045691825, 0.018486716, 0.008000721, 9.510824E-4, -0.015642606, -0.012732045, -0.013482942, -0.025410928, 0.037717685, -0.00881807, -0.02206179, -0.01695834, -0.020320768, -0.021025151, 0.012579206, 0.009721806, 0.00580451, 0.014486356, 0.024267968, -0.0013356685, -0.017410208, -0.011416311, 0.0033624293, -0.013416491, 0.010160384, 0.0038574904, 0.006336119, 0.005787897, 0.0021081634, 0.023550294, -0.014645838, -0.02717853, 0.029132193, -0.026926015, -0.0032112529, -0.018925294, 0.015071126, -0.032614235, -0.009927805, -0.0045552277, -0.025650153, -0.0035252345, -0.034315385, -0.0139813265, -0.009010779, -0.0082067195, 0.02947774, 0.017410208, 0.009595549, 0.0014253777, -0.033411648, -0.0026098697, 0.023563586, -0.007980785, 0.014978094, 0.008565556, 0.0295309, 0.011190377, -0.0025749828, 0.014140809, 0.0016562954, -0.0055785757, -0.0077482066, -0.06857761, 0.01695834, -0.0056948652, -0.01160902, 2.429621E-4, -0.013097526, 0.010313222, -0.0071767266, 0.015177447, 0.002604886, -0.013795263, 0.023031976, -0.006382635, 8.580508E-4, -0.0154166715, 0.009588904, 0.008711749, -0.00963542, -0.0031364954, 0.017875366, -0.0072232424, 0.022965524, 0.013835134, -1.258419E-4, 0.0046017435, 0.017782334, 0.009681935, 0.01924426, -0.0035684279, -3.79187E-4, 0.013097526, 9.51913E-4, -0.0021696307, 6.640964E-4, -0.016772276, -0.019124648, -0.013888295, -0.0040701344, 0.022035208, 0.010711929, -0.006140088, -0.029132193, 0.002040051, -0.01818104, 2.7099618E-4, 0.0059673153, -0.025849506, 0.013575974, 0.010665413, 0.0010291626, 0.04104024, 0.012373208, 5.8975414E-4, -0.014632548, 0.017184272, -0.02267314, 0.03250791, 0.013529458, -0.004681485, -0.003704653, 0.02608873, 0.007495692, 0.016320407, -0.024427451, -0.01019361, 0.009482582, -0.00996103, 0.002033406, 0.00541577, -0.03527228, -0.007316274, -0.00905065, 0.026314665, 0.01994864, 0.011768502, 0.007050469, -0.015562864, 0.011177087, -0.0049938057, 0.015695767, 0.01582867, -0.002021777, -0.022314303, 0.01276527, 0.01529706, 0.024427451, 0.009382905, 0.014114229, -0.014446485, 0.008864586, -0.022978814, -0.005146643, 0.0052629327, -0.005561963, -0.0017210853, 0.043804612, 0.00131158, -0.0075887237, -0.010133804, 0.013516168, -0.0032743814, 0.0033042845, -0.020147994, -0.020480251, -0.0052729, -0.007003953, -0.011489407, -0.020865668, 0.033092685, -0.001014211, 0.011137216, -0.011648891, -0.019669546, 0.012818431, -0.01920439, 0.00903736, -0.016293827, -0.027590526, -0.0074292407, 0.03394326, 0.0011944599, 0.018845553, 0.044522285, -0.0033275425, 0.045053896, 0.026168471, 0.022938944, -0.020546703, 0.018925294, -0.017928526, 0.005345997, 0.015164157, -0.017888656, -0.0020151318, 0.0011429602, -0.011170442, 0.01762285, 0.020546703, -0.021131473, 0.064484216, 0.0027029014, -0.0067846645, 0.025184995, -0.023324361, -0.0011172104, 0.018593038, 0.021437148, -0.029690383, 0.0035717504, 0.029079033, -0.02034735, 0.004502067, -0.02265985, 4.50622E-4, -0.0025268057, -2.0018415E-4, 0.0096487105, -0.02052012, -0.012320047, 0.013376621, -0.015057836, 0.03186998, 0.009004134, -0.0136889415, -0.005757994, 0.010572381, -0.016745696, -0.024493901, -0.026208341, 0.0021463728, -0.019682838, -0.012047597, 0.011927986, 0.024108484, 0.022035208, -2.5503232E-5, 0.0039172964, 0.02052012, 0.020028383, 0.002141389, 0.02377623, -0.011662181, 0.0029637222, 0.020905538, 0.0013315154, -0.002814207, -0.022247853, -0.032056045 ], + "id" : "16c4c813-f357-43f4-b7b5-00c979edbb39", + "metadata" : { + "source" : "movies.csv" + } + }, + "c3c190b2-61ad-4d8e-879f-5b1bd43e559b" : { + "text" : "873,8704,Tom Hardy-Woody Harrelson-Michelle Williams-Naomie Harris-Reid Scott-Stephen Graham-Peggy Lu-Sian Webber-Michelle Greenidge-Rob Bowen-Laurence Spellman-Little Simz-Jack Bandeira-Olumide Olorunfemi-Scroobius Pip-Amrou Al-Kadhi-Beau Sargent-Brian Copeland-Stewart Alexander-Sean Delaney-Ed Kear-Emma Lau-Louis j Rhone-Christopher Godwin-Tiffanie Thomas-Rocky Capella-Sam Robinson-Greg Lockett-Sonny Ashbourne Serkis-Otis Winston-Vaughn Johseph-Kristen Simoes-Miguel Angel Arreguin-Shaliz Afshar-Reece Shearsmith-Simon Connolly-Rachel Handshaw-Amanda Foster-Akie Kotabe-Eric Sigmundsson-Chabris Napier-Lawrence-Larry Olubamiwo-Jose Palma-Ashlen Aquila-Jamal Ajala-James D. Weston II-Che Amaro-Joshua Eldridge-Smith-Rosie Marcel-Elliot Cable-J.K. Simmons-Tom Holland,hero-anti hero-villain-psychopath-sequel-superhero-based on comic-creature-fear-aftercreditsstinger-symbiote-carnage-venom character,/rjkmN1dniUHVYAtwuV3Tji7FsDO.jpg,/vIgyYkXkg6NC2whRbYjBD7eb3Er.jpg,566525-524434-634649-512195-335983-370172-550988-453395-497698-438631-526896-335787-436969-414906-624860-425909-460458-696806-476669-509459-45454\r\n251,Ghost,Fantasy-Drama-Thriller-Mystery-Romance,en,Sam Wheat is a banker Molly Jensen is an artist and the two are madly in love. However when Sam is murdered by his friend and corrupt business partner Carl Bruner over a shady business deal he is left to roam the earth as a powerless spirit. When he learns of Carl's betrayal Sam must seek the help of psychic Oda Mae Brown to set things right and protect Molly from Carl and his goons.,38.176,Paramount,7/12/90,22000000,505000000,127,Released,\"Before Sam was murdered, he told Molly he'd love and protect her forever.\",7.2,4853,Patrick Swayze-Demi Moore-Whoopi Goldberg-Tony Goldwyn-Vincent Schiavelli-Rick Aviles-Martina Deignan-Rick Kleber-Phil Leeds-Armelia McQueen-Gail Boggs-Stephen Root-Alma Beltran-Vivian Bonnell-Derek Thompson-Tom Finnegan-Bruce Jarchow-Said Faraj-Dorothy Love Coates-Christopher J. Keene-Susan Breslau-Macka Foley-John Hugh-Sam Tsoutsouvas-Sharon Breslau-Angelina Estrada-Thom Curley-Laura Drake-Augie Blunt-J. Christopher Sullivan-Charlotte Zucker-Sondra Rubin-Faye Brenner-William Cort-Minnie Summers Lindsey-Mabel Lockridge-Arsenio Hall-Stanley Lawrence,corruption-fortune teller-money transfer-money laundering-pottery-heaven-hell-afterlife-murder-death-ghost-spiritism,/w9RaPHov8oM5cnzeE27isnFMsvS.jpg,/zOyXP0MS4jvU01yIxzRV394ZUJw.", + "embedding" : [ 0.014595382, -0.033524405, -0.02070064, -0.031562, -0.019910228, 0.04508079, 5.698127E-4, -0.0059826076, -0.026260786, -0.048078906, 0.039547898, 0.010479784, 0.009375932, -0.0037919374, -3.7519058E-4, 0.009784766, 0.02654697, -0.0050695445, 0.0038498556, -0.025661161, -0.008449241, -0.0012196888, -0.026615107, 0.017198293, 0.002831177, 0.004970743, 0.030199222, -0.0061052577, -0.01684397, -0.004970743, -0.0017665046, -0.01752536, -0.008531008, -0.019978365, -0.021845376, 1.7215754E-4, 0.0019879565, -0.021600075, 0.026097251, -0.003757868, -0.009587162, 0.010677387, -0.009505396, -0.009300979, -0.020618873, -0.0033796963, 0.0077610365, -0.0071137156, -0.012012912, 0.030035688, 0.033824217, 0.033115573, -0.014840682, -0.015235889, -0.013784528, 0.012190074, -0.0031497271, 0.016939364, 0.0114678005, 5.544814E-4, 0.006585638, -0.028127795, -0.03922083, -0.019733066, -0.012115121, -0.02089143, -0.017729778, -0.019405998, -0.0039895405, 0.0079858955, 0.0366588, 0.018424796, 0.011481428, 0.0015578287, 0.020005621, -0.02480261, -0.04213718, -0.0019930669, -0.010691015, 0.0019589972, 0.013375693, -0.013450646, -0.010091391, 0.0115700085, 0.018383913, -3.9903924E-4, -0.0083197765, 0.028427606, -0.0134983435, 0.009750696, 0.016203463, 0.040665377, -0.0049809637, -0.00872861, 0.012081051, 0.02710571, -0.031616513, 0.04183737, -0.02542949, -0.029108997, -0.0020986823, -0.003074774, -0.0071069016, -0.016108068, -0.0015978605, -0.009396373, -2.759631E-4, 0.0059008407, 0.017511733, 0.01665318, 0.011788053, -0.020523477, 0.01361418, -0.03723117, -0.008428799, -0.012312724, 0.015808256, -0.027759844, -0.021654585, -0.015562956, 0.024707215, 0.026683247, 8.7303144E-4, -0.04930541, 0.033905987, 0.034423843, -0.0019453695, -0.01745722, 0.0012503513, -0.0056214705, 0.035459556, -0.013784528, 0.033415385, 0.0064834296, -0.016080813, 0.047070447, -0.03126219, 0.008387916, -0.030798845, -0.024066709, 0.032161627, 0.033088315, -0.024284754, -0.019869344, -0.020468967, 0.0025347723, 0.031398468, 0.0011609189, 0.009464513, 0.012142377, 0.021968026, 0.022472255, 0.009001167, 0.014840682, 0.020659756, -0.009498582, 0.0025790625, -0.0079858955, -0.017811544, -0.010159531, -0.019787576, -0.0022639195, 0.0017000689, -0.010561551, 0.0015169453, 0.017171038, 0.018820003, -0.020482594, 0.0019232243, -0.0036624733, 0.001020382, 0.014431848, -0.02230872, 0.021123102, -0.0076315724, 0.017634382, -0.0046573034, -0.006609487, -0.04262778, -0.024148475, 0.00848331, 0.01740271, 0.031153169, 0.039547898, -0.002158304, 0.004510804, 0.02281295, -0.019991994, 0.017702522, -0.019624043, 0.0038498556, 0.02443466, 0.0055635525, -0.0011660293, -0.6397438, -0.013634621, -0.0060677812, -0.01094313, 0.0175935, 0.012680675, -0.004398375, -0.00935549, -0.037067637, -0.016012674, -0.029245274, 0.021109473, 0.023576107, -0.019719437, -0.008524193, -0.013559668, 3.1514306E-4, -0.017198293, 0.004299573, 0.0070251347, -0.028999975, 0.024788981, 0.017198293, -0.00577819, 0.013075882, -0.0028516187, -0.007652014, -0.023848664, 0.011542753, 0.004595978, -0.027173849, 0.019296976, 0.009955114, 0.021654585, 0.043118384, 0.0072568073, -0.019310603, 0.049632475, 0.030335499, 0.036004666, -0.03300655, 0.0011208871, 0.004412003, -0.01178124, -0.030035688, 0.039547898, 0.008585519, 0.003975913, -0.0092192115, -0.0074748523, -0.0016344852, -0.0026318703, -0.012053796, -5.9568425E-5, 0.005590808, -0.0043268288, 0.020291805, -0.032706738, 0.017429966, 0.0033984345, -0.019187953, 0.013934433, 4.2886336E-6, -0.014390965, -0.0058361087, 0.02194077, 0.006803683, -0.01062969, -5.4596405E-4, -0.036876846, 0.0056521334, 0.028618395, -0.012748814, -0.009866533, 0.0076860837, 0.009375932, 0.04287308, 0.011290639, 0.006578824, 0.023398945, -0.0047220355, 0.00879675, 0.0044971765, 0.013954875, 0.026097251, -0.009416815, -0.027119337, 0.011910704, 0.016462391, 0.0012265027, 0.004906011, 0.018070472, 0.0075293635, 0.00294531, -0.0036488455, -0.0079858955, -0.004677745, 0.012530769, 0.0071818545, -0.05810897, -0.012101493, -0.017675266, 0.041074213, -0.016925737, 0.011277011, 0.0033456266, -0.0050695445, -0.024257498, 0.014772544, -0.0020305433, -0.01370276, -0.0080881035, 0.0032331974, -0.01289872, -0.027650822, -0.030280989, 0.021995282, 0.008980725, -0.0033813997, -0.017102899, 0.009410001, 0.014799799, 0.010479784, -0.0038226, 0.021763608, 0.030553544, -0.011706287, -0.0056521334, 0.0053284727, 0.009048864, 0.0012426857, -0.0091647, 0.011406475, -0.023944058, 0.02834584, 0.00708646, 0.014772544, -0.00979158, 0.021123102, -0.013273485, -0.004912825, -0.014976961, -0.015631095, -0.02529321, -0.0033813997, -0.014322826, -0.024788981, -0.009818835, -0.008571891, -0.021341147, -0.0022281464, 0.014704404, 0.0041496675, 0.005025254, 0.005089986, -0.0024189358, -0.026369808, 8.4194297E-4, 0.0021531936, 3.4026933E-4, -0.0030185594, 0.017361827, 0.0066776257, -0.027718961, 0.01441822, 0.004265504, -0.023862291, 0.0042314343, 0.008347032, -0.008251637, 0.018724607, -0.02145017, -0.0012069127, 0.013886736, -0.008851261, 0.02232235, 0.0018567888, 0.02660148, 0.002795404, 0.004371119, -0.005747528, -0.008749053, -0.023712385, -0.012374049, 0.037176657, 0.026955804, 0.011229313, -0.009028423, 0.0012852727, 0.015781, -0.017429966, -0.012278655, -0.0013048626, 0.0024887784, 0.005931503, 0.017975079, 0.014636265, -4.4247787E-4, 0.0013440425, -0.0025654347, 0.03654978, 0.020373572, 0.015522073, -0.005808853, 0.018097728, -0.022281466, -0.0033694755, -0.022881089, 0.010030067, -0.0031548375, 0.025906462, -0.01883363, -0.011215686, 0.008265265, 0.003693136, 0.012544397, -0.016462391, 0.00589062, -0.016135324, -0.0013678912, 0.010622876, -0.015753746, 0.007379458, 0.013123578, -0.026642364, 0.004630048, 0.0129191615, -0.012816953, -6.383776E-4, -0.014404593, -0.008612774, -0.0060643745, 0.006578824, 0.011242941, -1.01889156E-4, -0.018452052, 0.020060133, -0.016366998, 0.051513113, -0.02007376, -0.009294164, 0.02740552, 0.027487287, 7.158858E-4, 0.0024325636, -0.0047867675, 0.015494817, 0.017988706, -0.010656945, 0.035595834, -0.023521597, 0.022540394, 0.0017213625, 0.0051376834, 0.011426916, -0.002759631, -0.0041973647, 0.01202654, 0.023576107, 0.024720842, 0.00923284, -0.028209561, 0.020305432, -0.009907416, 0.011788053, 0.012115121, -0.020836918, 0.008033592, -0.010200414, -0.031480234, -0.007897315, -0.002844805, -0.0071341572, 0.012939603, -0.006609487, -7.287683E-5, 0.006820718, 0.0021463798, -3.7391298E-4, 0.020346317, -0.025484, -0.032406926, 0.014350082, 0.028427606, -0.02840035, -0.018370284, -0.012244585, -0.009553093, -0.018533818, -0.017770661, -0.0039282157, 0.03319734, -0.025593022, 0.007740595, -0.02213156, 0.014336454, 0.034587376, -0.018247634, 0.0061699897, 0.025265954, 0.0122513985, 0.019038048, -0.0021514902, -0.0029691586, 0.012265027, -0.003010042, -0.015631095, -0.0050559165, -0.012326352, 0.003757868, 0.00832659, -0.0142683145, -0.032488693, 0.01621709, -0.015222261, 0.007733781, -0.008101732, 0.009498582, 0.0021003857, -0.011147547, -0.0045550945, -0.032679483, -0.030199222, -0.0013270078, 0.08536459, 0.045734923, 0.014827055, 0.0035807064, -0.024502797, -0.007284063, -0.014309198, 0.003539823, -0.0073317606, -0.024312008, 0.036904104, -0.019283347, 0.032788504, 0.011822123, 0.012776069, -0.022513138, -0.02145017, -1.9643207E-4, -0.0061222925, -0.018084101, -0.021136729, -0.02443466, 0.010922688, 0.025688417, 0.0057679694, 0.001839754, 0.017116526, 0.005761156, -0.001836347, 0.006207466, -0.007284063, -0.0015671978, 0.006009863, 0.0063641863, 0.010125461, 0.0022639195, 0.045653157, 0.0029538274, 0.014881566, 0.0026335737, -0.016557787, -4.544022E-4, 0.018969908, 0.0012179853, 0.015235889, -0.021095846, -0.011733542, 0.021327518, 0.047397513, -0.040992446, 0.020986823, 0.020332688, -0.023698756, -0.0107864095, 0.021395657, -0.0058497363, -0.0053523215, -0.012673861, -0.012128749, 0.019501392, 0.002323541, -0.034832675, 0.0033711789, -0.010731898, -0.016421508, -0.028890952, -0.016952993, -0.003042408, -0.008994353, -3.5112898E-4, 0.0018721201, -0.016625926, -0.0011822123, 0.0029725656, 0.018506562, 5.2978104E-4, 0.023712385, -0.009157887, 0.020319061, -0.0074952943, -0.032733995, -0.019010792, 0.0099006025, -0.010861362, -0.0020356537, 4.4034852E-4, -0.007079646, 0.02672413, 0.004967336, 0.0079858955, -0.005100207, 0.008837633, -0.018084101, -0.009587162, 0.03306106, 0.015876396, 0.010636504, 0.020714268, 0.008197126, 0.010404831, 0.010759154, -0.015712863, -0.009866533, -0.015072355, -0.0142683145, -0.017007504, -0.00804722, 0.0021855596, -0.021654585, -0.040501844, -0.021613702, -0.012837395, 0.0063403375, -0.0040440517, 0.016135324, -0.011549567, 0.007508922, 0.026969431, -0.018383913, 0.012632977, 0.0072363657, -0.019869344, 0.01926972, 0.035296023, -0.012401305, 0.024257498, -0.011501869, -0.018929025, -0.0051342766, 0.024352891, -0.020182783, 0.006173397, -0.01134515, -0.0083197765, 0.0031446165, -0.027691705, 0.009553093, -0.0049911845, -0.015031472, 0.029572342, -0.016694063, 0.010098205, 0.007951826, 6.3752587E-4, -0.020727895, -0.026955804, 0.00501844, -0.016067185, 0.015767373, 0.035595834, -9.462809E-4, 0.008476497, -0.030117454, 0.013205346, -0.014581754, -0.023140017, -0.017702522, 0.0030901053, 0.022649417, 0.011290639, 0.042682294, -0.00644936, 0.029953921, 0.01031625, 0.007420341, 0.022921972, -0.009893788, -0.01665318, -0.029081741, 0.0066401493, 0.013920805, 0.02455731, -0.005457937, 0.0072772494, 0.012156004, 0.027609939, 0.011140733, 0.023739642, 0.0039725057, -0.024788981, -0.02145017, 0.008421985, -0.028536629, 0.0036658803, -0.028209561, -0.014336454, 0.01684397, 0.007897315, -0.005239892, -0.011617706, 0.037040383, 0.0115700085, 0.016148953, -0.018247634, 0.025988229, -0.028018773, -0.0064152903, -0.019814832, -0.02094594, -0.005171753, -0.01883363, 0.013948061, 0.0021174205, -0.010166344, -0.0052978103, 0.03447835, -0.010288995, -0.020087387, 0.020291805, -0.008585519, -0.023221783, -0.02187263, -0.011140733, -0.034968954, -0.009287351, -0.00657201, -0.017211922, 1.10513E-4, -0.023903174, -0.034887187, 0.035268765, -0.009123817, 0.03158926, 0.021409286, 0.03971143, 0.026628736, 0.005076358, -0.03145298, 0.01218326, -0.014690776, -0.0078019197, 0.023971314, 0.018138612, -0.020482594, -0.00919877, 0.0047050007, 0.0012529065, -0.029572342, -0.03169828, 0.023017367, 0.022554021, 0.020237295, -0.01665318, 0.0032468252, -0.03537779, 0.008851261, -0.0014070711, 0.009675743, 0.003422283, -0.031098656, -0.01907893, -0.0016131917, -0.002200891, 0.00489579, 0.013205346, -0.03333362, 0.0048549064, -0.020237295, 0.006078002, -0.014322826, -0.017498106, 0.03649527, -0.03257046, 0.01137922, 0.0067048813, 0.004912825, 0.012612536, 0.007863245, 0.0023099133, 0.027705332, -0.012278655, 0.01839754, 0.010997641, 0.004865127, -5.685351E-4, 0.020959567, -0.006149548, -0.012299096, -0.01417292, -0.007338574, 0.016993877, 0.0048514996, 0.004749291, 0.008094918, -0.018479306, -0.0107864095, 0.00425869, -0.0074067134, 0.006531127, -0.029735876, 0.008224382, -0.006026898, 0.011140733, 0.0020049913, -5.4340885E-4, -0.008251637, 0.0027528172, 0.021218495, -0.014540871, -0.0011847675, -0.017743405, -0.00811536, -0.036004666, -0.021177612, -0.010241297, -0.020918684, 0.007945011, -0.0132666705, -0.012196887, -0.010963571, 0.007822362, -0.0061699897, 0.0037783096, -0.02399857, 0.0096689295, 0.020210039, -0.0013074178, -0.009328234, -0.010084578, 0.020278178, -0.015603839, -0.016108068, -0.011372405, 0.008353846, 0.038321394, -0.002856729, 0.018370284, 7.92968E-4, -0.015413051, -0.014350082, 0.024693588, 0.030608056, 0.006875229, 0.0037135775, -0.019419625, -0.016775832, -0.00851738, 0.027364638, -0.0066469633, 6.8437145E-4, 0.016830342, 0.0183294, 0.024516426, 0.0073249466, -0.015644724, -0.010377576, -0.0064595807, -0.0025552139, -0.029981177, -0.0026506085, -0.015767373, 0.013750458, 8.968801E-4, -0.014145664, -0.040992446, -0.0030611462, -0.03412403, -0.03995673, -0.029327042, 0.015426679, 0.029190764, 0.0025995043, -0.006779834, 0.006360779, 0.009955114, 0.013212159, -0.02393043, -0.010173159, 0.010745526, 0.012782884, 0.027323755, 0.023753269, -0.025116049, 0.0060814093, 0.015930908, 0.016407881, 0.0019249278, 0.029517831, -0.018574702, -0.015821885, -0.017007504, 0.004452886, -0.0059826076, -0.016639553, 0.03014471, -0.022063421, 1.904699E-4, 0.004245062, 0.013116765, 0.0032996328, 0.014772544, 0.025456745, -0.0057339002, -0.0034188763, -0.020414455, -0.024543682, -0.0055158553, -0.028482119, 0.03404226, 0.010139089, -0.012455816, 0.043418195, 0.021218495, 0.006296047, 0.011181616, -0.011699473, 0.013402949, 0.0037783096, 0.009341862, -0.0034870151, 0.01970581, -0.022990111, 0.01796145, -0.021300264, 0.008306148, -0.013620994, 0.0044324445, 0.0024547088, 0.03965692, 0.018533818, -0.057509348, -1.3862035E-4, -0.025197817, 0.014077526, -0.012339979, -0.0024019012, -0.02480261, 0.0041258186, -0.008074476, -0.0058872127, -0.012837395, -0.020918684, -0.0085514495, -0.008544635, -0.0040542725, 0.023644246, 0.17683443, -0.0069535887, 0.011454172, 0.046416312, 3.4665735E-4, 0.0057679694, 0.01920158, 0.014690776, -0.0072704353, 0.009430443, 0.007835989, 0.006657184, -0.0025245512, 0.0014011089, 0.010207227, -0.030280989, -0.03096238, -0.010214042, -0.013866294, -0.040120266, 0.004841279, 0.017566243, -0.0076997112, -0.026315296, 0.010534295, 4.5738328E-4, -0.010949943, 0.007849617, 0.007093274, 0.011944774, -0.01218326, -0.012571652, 1.5097056E-4, 1.1008713E-4, -0.0138322245, 0.0069161123, -0.021613702, 0.0076792696, 0.013075882, 0.0036352177, -0.01022767, 0.017688895, -0.008912586, -0.0036624733, 0.010588806, 0.02050985, -0.02647883, 0.011242941, -0.0208778, 0.028536629, -0.03886651, -0.0046981866, 0.0035738926, 0.019283347, -0.0065004644, -6.920371E-4, -0.0010587103, -0.0038362278, -0.021600075, 0.017171038, 0.0024972956, 0.035568576, -0.021545563, 0.016939364, -1.2115973E-4, 0.012353607, -0.045326088, -0.009457698, 0.012742, -0.025783813, -0.0050150333, -0.021191241, -0.004749291, -0.0010731899, 2.2230361E-4, -0.011631334, 0.017770661, -0.009403187, 1.1418612E-5, 0.033660684, -0.025279583, -0.021191241, 0.020932313, 0.00466071, -0.014540871, -0.009410001, 0.008660472, -0.01796145, -0.002844805, -0.016694063, 0.0042893523, -0.00963486, -0.0076247584, -0.0030219664, -0.014636265, 2.9571278E-5, 0.028073283, 0.014091153, -0.00685138, -0.0132666705, -0.041946393, 0.027664449, 0.014595382, -0.002057799, -0.016898481, -0.014881566, -0.0034205797, 0.014813427, 0.030117454, -0.016680436, -0.012319538, -0.038948275, -7.942457E-4, -0.0038226, 0.0033950275, 0.039057296, -0.008278893, 0.0021174205, 0.030608056, -9.3180133E-4, -0.0018891548, -0.029572342, 0.0206325, -0.008510565, -0.0038532626, -0.02311276, -0.027282871, 0.0050865794, 0.0076997112, -0.037830792, 0.019446881, -0.01666681, 0.003975913, -0.0014462511, -7.80192E-4, 0.0021634144, 0.012258213, 0.004047459, 0.0044869557, 0.0061393273, 0.002902723, -0.012782884, 0.0031122505, 0.0036658803, 0.009818835, -0.023889547, -0.0021037927, -0.003682915, -0.01789331, -0.04082891, -0.021640958, -0.0059894216, 0.016830342, 0.021722725, 0.0310714, -0.013443832, -0.02305825, -0.04178286, -0.010663759, 0.04349996, -0.035759367, 0.011099849, 0.015263145, -0.012312724, -0.023576107, 3.0918088E-4, -0.17487203, 0.016857598, 0.014132037, -0.027896121, 0.012258213, 0.010854549, 0.025988229, 0.0067014745, 0.0019641079, -0.01134515, 0.03709489, 0.007154599, -0.03524151, 0.0053863907, -4.394968E-4, 0.016135324, -0.007726967, 0.043608986, 0.020032877, -0.011951587, 0.028427606, -0.003829414, -0.0063369307, -0.008251637, 0.029545087, 0.0020373573, 0.029872155, 0.012142377, 0.005359135, -0.0048617204, -0.033660684, -0.014554499, 0.008619588, 0.0010288995, -0.021968026, 0.011869821, -0.01354604, -0.0072568073, -0.0043540844, -0.005931503, 0.04134677, 7.116271E-4, 0.017988706, 0.013409763, 0.012046982, 0.010159531, 0.029245274, -0.01864284, 0.0028073282, -0.013157648, -0.019773949, -0.027827984, 0.034451097, -0.002698306, -0.001875527, 0.019501392, 0.003045815, -0.0053216587, -0.0033098538, 9.803504E-4, -0.031480234, -0.012101493, -0.0059826076, -0.004906011, -0.005451123, -0.022172444, -0.01883363, 0.0014547685, -0.041374024, 0.010936315, -0.024325637, 0.0045619085, -0.009042051, -0.003435911, 0.015576584, -0.011699473, -0.040229287, 0.010404831, 0.003410359, 0.017688895, -0.0049503013, 0.039983988, -0.004687966, 0.019174324, 0.009260096, -0.02101408, 0.009927858, 0.0011140732, -0.0010246407, -0.012994114, 0.01926972, -0.0071477853, -0.027364638, -0.0077951057, -0.0045142113, 0.008803564, -0.009525837, 0.0149497045, 0.015249517, -0.0062006526, -0.0023030995, -2.4998508E-4, -0.018056845, 0.029354297, 0.019746693, 0.013205346, 0.01050704, 0.008633216, 0.020918684, 0.0052773682, -0.038512185, -0.0046198266, 0.025456745, -8.2703755E-4, -0.012224143, 0.011665403, 0.0064698015, -0.03295204, -0.008347032, 0.015372167, 0.052303527, -0.0060984436, 0.010261739, -0.0016753686, -0.006221094, -0.007992709, -0.09005255, 0.0032263834, 0.0036215899, 0.047479283, -0.03611369, 0.034096774, -0.0071818545, 0.008040407, -0.029735876, 0.022090675, -0.002476854, -0.032815762, 0.011563195, -0.004807209, -0.003890739, 0.004957115, -0.016952993, -0.008197126, -0.0013534116, 0.03126219, -0.011842565, -0.0047833603, -0.0012929383, -0.020169156, -0.013927619, 0.017334571, -0.017620755, 0.027582683, 0.0061938385, 0.015440306, -3.4537975E-4, -0.016748575, 0.02281295, -0.03873023, -0.019405998, -0.022472255, 0.0015510148, -0.026983058, 0.0020595025, -0.033715196, 0.0027971074, 0.012142377, 0.015358539, -0.008946655, -0.0074135275, 6.030305E-4, -0.03251595, 0.038484927, 0.010248112, -0.018452052, 2.476428E-4, -0.0132666705, -0.025252327, -0.007883687, 0.015263145, 0.022417743, 0.027201103, 0.014336454, -0.0068479734, -0.024271125, -0.0140502695, -0.008680914, -0.019760322, 0.019160697, 5.9238373E-4, 0.013184904, 0.001563791, -0.012680675, 0.014036641, -0.013307554, -0.024039453, 0.0060166772, -0.030035688, -0.022036165, -0.010254925, 0.007965454, -0.026955804, -0.027296498, 0.0257293, -0.03562309, -0.002820956, -0.025783813, -0.0017026243, -0.013845853, 0.017320944, 0.0039248085, 0.0206325, 0.012973673, -0.014527243, -0.06530445, 0.0019130035, 0.02262216, 0.006721916, 5.743908E-5, -0.010384389, 0.018220378, -0.0018636027, 0.009369118, -0.0020169155, 0.015617467, -0.004752698, -0.0046334546, -0.07091911, 0.042382482, -0.021191241, -0.0025637313, -0.019882971, -0.007829175, -0.0028788743, 0.00553289, 0.0019845495, 0.027296498, -0.0014164402, 0.022921972, -0.0027477066, -0.0037408331, -0.007951826, 0.005815667, 0.013689132, -0.0022502916, 0.00935549, 0.022935601, -0.021668214, 0.023439828, 0.018138612, 0.019365115, 0.016816715, 0.028754674, -0.008510565, 0.00720911, -0.02138203, -0.006854787, 0.029981177, -0.026465202, -0.0061393273, 0.001768208, 0.0025347723, -0.027868867, -0.007004693, -0.0108000375, 0.012796511, -8.155391E-4, 0.0027698518, -0.014677148, 0.0068343454, 0.0062040593, -0.0130349975, 0.00975751, -0.028018773, 0.01118843, 0.020346317, 0.0038123792, 0.031398468, 0.012953231, 0.0019266313, -0.017825171, 0.0057339002, -0.019855715, 0.035296023, 0.005011626, -0.0071818545, -0.027364638, 0.017947823, -9.982369E-4, 0.008626402, -0.03456012, -0.0027834796, 0.0031292853, 0.020032877, -0.002795404, 0.0043029804, -0.029981177, -0.022349603, -0.015999045, 0.0099006025, 0.03709489, 0.0151677495, 0.023848664, 0.005948538, 0.0010978902, -0.009178328, 0.0206325, 0.009907416, -0.00589062, -0.02001925, 0.023521597, -0.0023848664, 0.0149497045, -0.01221733, 0.016694063, 0.011011269, -0.0016838859, 5.5928576E-6, 0.015494817, 0.02232235, -0.0089194, 0.02174998, 0.012530769, -0.0120333545, -0.010023252, 0.005754342, 0.0140502695, -0.010411645, -0.002265623, -0.017566243, -0.02628804, -0.00923284, -0.0070592044, -0.019010792, -0.008156243, 0.0036488455, 0.022158815, 0.01802959, -0.0068173106, -0.013382507, 0.0052671474, -0.042300716, 0.018533818, -0.009144259, -0.005662354, -0.015603839, 0.041237745, 0.020796034, 0.0058224807, 0.03325185, -0.013321182, 0.048951086, 0.010609248, 0.028073283, -0.02710571, 0.0039997613, -0.0016225608, 0.0044358512, -0.016053557, -0.020128272, 0.009464513, -0.017102899, 0.0029725656, 0.009464513, 0.033469897, -0.019405998, 0.072608955, 0.029354297, -0.003006635, 0.011931146, -0.017211922, 0.017062016, 0.0025245512, 0.021845376, -0.020782407, -0.019133441, -0.0066401493, -0.018247634, 0.0106842015, -0.041265, -0.0035057536, 0.0057747834, -0.0066401493, 0.0150451, -0.01131108, -0.00808129, -0.009893788, -0.008558263, 0.023766896, 0.010370761, -0.0068888566, -0.01261935, 0.021286635, -0.012121934, -0.008510565, -0.02623353, 0.0068956707, -0.026819525, -0.007604317, 0.004153074, 0.0142819425, -0.0019181139, -0.0082039405, 0.006435732, 0.025524883, 0.006514092, -0.013362065, 0.0028107353, -0.024884377, -0.020101016, 0.028155051, -0.006490243, -0.0029470134, -0.036304478, -0.009941486 ], + "id" : "c3c190b2-61ad-4d8e-879f-5b1bd43e559b", + "metadata" : { + "source" : "movies.csv" + } + }, + "ed323792-0abb-401a-8874-cc8a462f28c2" : { + "text" : "913,24348,Daniel Radcliffe-Rupert Grint-Emma Watson-Richard Harris-Tom Felton-Alan Rickman-Robbie Coltrane-Maggie Smith-Richard Griffiths-Ian Hart-Fiona Shaw-John Hurt-David Bradley-Matthew Lewis-Sean Biggerstaff-Warwick Davis-Harry Melling-James Phelps-Oliver Phelps-John Cleese-Chris Rankin-Alfred Enoch-Devon Murray-Jamie Waylett-Josh Herdman-Zo� Wanamaker-Julie Walters-Bonnie Wright-Luke Youngblood-Verne Troyer-Adrian Rawlins-Geraldine Somerville-Elizabeth Spriggs-Richard Bremmer-Nina Young-Terence Bayler-Harry Taylor-Jean Southern-Leslie Phillips-Simon Fisher-Becker-Derek Deadman-Ray Fearon-Eleanor Columbus-Ben Borowiecki-Danielle Tabor-Leilah Sutherland-Emily Dale-Will Theakston-Scot Fearn-Saunders Triplets-Kieri Kennedy-Leila Hoffman-Julianne Hough-Zoe Sugg-Jimmy Vee-Derek Hough-Dani Harmer-Mark Ballas-Paul Marc Davis-Violet Columbus,london england-witch-based on novel or book-magic-school friend-child hero-school of witchcraft-chosen one-friendship-boarding school-school-shopping-fantasy world-wizard-christmas-based on young adult novel-forbidden-owl,/wuMc08IPKEatf9rnMNXvIDxqP4W.jpg,/hziiv14OpD73u9gAak4XDDfBKa2.jpg,672-674-673-767-675-12444-12445-251800-1037194-22-58-1865-121-120-285-585-12-70160-1039274-8587-122\r\n93456,Despicable Me 2,Animation-Comedy-Family,en,Gru is recruited by the Anti-Villain League to help deal with a powerful new super criminal.,63.256,Illumination-Universal Pictures,6/26/13,76000000,970800000,98,Released,\"When the world needed a hero, they called a villain.\",6.9,10799,Steve Carell-Kristen Wiig-Benjamin Bratt-Miranda Cosgrove-Russell Brand-Ken Jeong-Steve Coogan-Elsie Fisher-Dana Gaier-Mois��s Arias-Nasim Pedrad-Kristen Schaal-Pierre Coffin-Chris Renaud-Nickolai Stoilov-Vanessa Bayer-Ava Acres-Lori Alan-Jack Angel-Eva Bella-Georgia Cook-John Cygan-Debi Derryberry-Jess Harnell-Danny Mann-Mona Marshall-Mickie McGowan-Mason McNulty-Alec Medlock-Laraine Newman-Jan Rabson-Andre Robinson-Katie Silverman-Casey Simpson-Claira Nicole Titman-Jim Ward-April Winchell-Joe Matthews,parent child relationship-adoptive father-secret agent-bakery-sequel-falling in love-family-single father-audition-female agent-duringcreditsstinger-first date-supervillain-despicable-masked supervillain-illumination-minions,/5Fh4NdoEnCjCK9wLjdJ9DJNFl2b.jpg,/fOipappvgVtUbbHOtmCkHzcwJjC.jpg,324852-20352-24428-62211-70160-211672-81005-109445-19995-82690-27205-49521-68721-62177-77950-72190-117263-585-49519-425-49051", + "embedding" : [ 0.0073014963, -0.01883264, -0.030062623, -0.041279223, -0.02600698, 0.04963144, 0.0015191932, -0.0026234526, -0.020827001, -0.040797364, 0.019970363, 0.026341604, 0.0063879727, 0.0033060855, 0.005414217, 0.018390937, 0.024092931, -0.021737177, 0.023222908, -0.028456429, 0.009188776, -0.005353985, -0.023932312, 0.006418089, -0.00528706, 0.008017592, 0.032900237, -0.01748076, 2.710455E-4, -0.0060868114, 0.009610402, -0.012588557, -0.003992065, -0.04267126, -0.02579282, -0.0033512597, 0.0013953822, -0.020211292, 0.019675894, 0.0029045367, 0.015874565, 9.369473E-4, -0.016637508, -0.002352407, -0.023356758, 0.01294995, -0.0015007888, -0.0070739524, -0.0040589897, 0.028617049, 0.022379655, 0.046017498, -0.013719586, -0.03156174, -0.009008079, 0.011290215, -0.017025672, 0.009101774, -0.011370525, 0.024534635, 0.013599121, -0.020626226, -0.027385632, -0.03185621, -0.026462069, -0.007923897, -0.006709212, -0.030785412, 0.01232755, -0.013338114, 0.021188395, 0.015553325, 0.023704767, -0.011711841, 0.01392036, -0.021630097, -0.025377886, -0.003073522, -2.388379E-4, -0.010279651, 0.0118925385, 0.001100913, -0.0071141073, -0.0014698361, 0.015151776, 0.020786846, -0.012468092, 0.029366605, -0.035844926, 0.024668485, 6.625556E-4, 0.04497347, -0.0054276017, 0.006066734, 0.0021399208, 0.01893972, -0.022620585, 0.041011523, -0.02268751, -0.029313065, 0.0015543287, -0.006528515, -0.01405421, -0.00874038, 0.008579761, -0.011584684, 0.0031354274, -0.0022118648, 0.011979541, 0.002827573, 9.955065E-4, -0.008278599, 0.008666763, -0.03884316, -5.052823E-4, -0.0031973326, 0.030142933, -0.030223243, -0.017065827, -0.02266074, 0.032739617, 0.02792103, 0.0157541, -0.042938955, 0.0512644, 0.04577657, -7.106578E-4, -0.012120083, -6.709212E-4, -0.0031555048, 0.030624792, -0.0047382764, 0.018591711, 0.017775228, -0.029768154, 0.050380997, -0.019689279, 0.0022871553, -0.022981979, -0.014656533, 0.024374016, 0.028563509, -0.02786749, -0.01907357, -0.009402935, 0.0068430617, 0.013297959, -0.009804484, 0.016958747, -0.0017500838, 0.017574454, 0.015847795, 0.017922463, 0.0246551, 0.024748795, -0.004353459, -0.008914384, -0.00486878, -0.017146137, -0.015178546, -0.009148621, -0.008084517, -0.0072546494, -0.008840767, 0.002839285, 0.016918592, 0.014388834, -0.010333191, 0.0046813902, 0.014790382, 0.0032274488, 0.023972467, -0.035898466, 0.01224724, 0.0025146997, 0.0042497255, -0.008138057, -0.010139109, -0.036433864, -0.017681533, -0.008626608, 0.014428989, 0.02106793, 0.04556241, -0.018324012, 0.008706918, 0.022018261, -0.0020060712, 0.004256418, -0.014817152, -0.004199532, 0.024173241, 0.0053472924, -0.023691382, -0.6313419, -0.026354989, 0.0046746978, -0.0073751137, 0.02573928, 0.025083419, 0.003644056, -0.010333191, -0.023731537, -0.032766387, -0.019956978, 0.012729098, 0.022031646, -0.017668149, -0.009617095, -0.013364884, -0.0014798748, -0.013773126, 0.01570056, 0.0077030454, -0.032445148, 0.0138266655, 0.008673456, -0.014710072, 0.0051431716, 0.013786511, -0.012314165, -0.025244039, 0.0032525456, 0.0036373634, -0.016209189, 0.0033612985, 0.015325781, 0.012427937, 0.03212391, 0.013184187, -0.015312396, 0.046017498, 0.019742819, 0.02627468, -0.03185621, -0.010734739, 0.016249344, 0.004982552, -0.023022134, 0.017922463, 2.9541028E-5, 0.017052442, -0.0026552419, -0.012916488, -0.0044806157, -0.0017751806, -0.021924566, -0.011457527, -0.0043434203, -0.0069802576, 0.0074821934, -0.03769205, 0.022111956, -3.511461E-4, -0.027492711, 0.02090731, 0.0043300353, 0.020010518, -0.007970745, 0.026395144, -0.0048888572, 0.003590516, 0.0063210484, -0.03215068, 0.0113036, 0.0040288735, -0.012153545, -0.0031371005, -0.002533104, 0.006314356, 0.03209714, -0.0029413453, -0.0038615614, 0.022379655, -0.008245137, -0.0036139397, -0.0040556435, 0.0108552035, 0.025886515, -0.0016572255, -0.02608729, 0.0095234, 0.014388834, -0.0026987428, -0.0028911517, 0.01125006, 0.01141068, 0.0060868114, -0.010226111, -0.011718534, -0.017761843, 0.0057388023, 0.029875234, -0.06628233, -0.0028593624, -0.026288064, 0.014723457, -0.020144368, 0.017775228, 0.02454802, -0.011457527, -0.0041961856, 0.023718152, -0.009530093, -0.016235959, 0.004845356, -0.01392036, 0.0045073857, -0.0075223483, -0.030303553, 0.010634352, 0.0228749, -0.007997515, 0.0089344615, 0.0033746834, 0.0112701375, 0.0037477892, -0.019756204, 0.006615517, 0.01604857, -0.008345524, 0.0066088247, 0.0050461306, 0.015847795, 0.008499451, -0.006300971, 0.009951719, -0.03833453, 0.023959082, 0.0142282145, 0.021549787, 0.001141068, 0.008666763, 0.0039987573, -0.010975668, -0.015821025, -0.0136058135, -0.018605096, -0.0025213922, -0.013478656, -0.024722025, 0.007448731, -0.0070739524, -0.015954874, -0.0041660694, 0.019060185, -0.010962283, 3.501004E-4, 0.0062139686, 0.002436063, -0.02816196, -0.020358527, 0.017989388, -0.016691048, 0.009831254, 0.025511736, -0.0067025195, -0.026381759, 0.02789426, -0.0067694443, -0.019930208, 0.012548402, 0.0029865196, -0.0064415126, 0.008813997, -0.013485349, 0.007261342, 0.01907357, -0.01416129, 0.04256418, -0.011484297, 0.029634304, -9.436398E-4, -0.011102825, 0.0099985665, -0.01224724, -0.035978775, -0.016824897, 0.022111956, 0.014843922, 0.017962618, -0.029125677, -0.008017592, -0.0047617, -0.019943593, -0.013103877, 0.005327215, 0.005049477, 0.006337779, 0.030169703, 0.0067192507, -0.010119031, 0.0057454947, -0.002283809, 0.028884748, 0.02292844, 0.022138726, -0.004062336, 0.023972467, -0.03793298, -0.0020110905, -0.020947466, 0.004413691, -0.01070797, 0.011209905, -0.004597734, -0.019488504, 0.0023624457, -0.007421961, 0.03137435, -0.014589609, 0.006287586, -0.015687175, 0.006739328, 0.011082748, -0.017775228, 0.025551891, 0.025913285, -0.016182419, -0.01413452, 0.010741431, -0.014750227, 0.006351164, -0.002588317, -0.008278599, -8.189923E-4, 0.001023113, 0.0022101917, -0.014040825, -0.002688704, 0.039405327, -0.026609303, 0.041627232, -0.0139739, -0.008419141, 0.032445148, 0.005474449, -0.0010088915, 0.005775611, -0.016383193, 0.01912711, 0.022513505, 0.004226302, 0.05889383, -0.01416129, 0.036862183, -0.008372294, 0.0011084421, 0.0032542187, -0.011109518, 0.020224677, 0.009757637, 0.022272576, 0.023142599, 0.0070070275, -0.021643482, 0.026984083, 0.009195468, 9.2523545E-4, 0.01214016, -0.010286343, 0.003828099, -0.0116984565, -0.039271478, -0.01553994, -0.010393423, -0.0037645204, 0.008606531, -0.004858741, -0.00955017, -0.0061269663, 0.0041225683, 0.0093493955, 0.022834744, 4.3793922E-4, -0.032686077, 0.017226446, 0.024641715, -0.019006645, -0.020304987, -0.015392706, -0.011136288, -0.022593815, -0.029955544, 0.003660787, 0.039673027, -0.010380038, 0.014803767, -0.01926096, 0.008900999, 0.019274345, -0.020893926, 0.008171519, 0.019608969, -0.0072814194, 0.0114909895, -0.011885846, -0.013204264, 0.019220805, -0.011564607, -0.0055647977, -0.0078034326, -0.010895358, 0.022781204, -0.012013003, 0.009878102, -0.03852192, 0.011758689, -0.009590325, -0.004925666, -0.0121133905, 0.009958412, -8.658397E-4, -0.009228931, -0.032686077, -0.02837612, -0.021442708, -0.001091711, 0.07977437, 0.055199582, 0.0030852337, 0.0060767727, -0.020706536, -0.0025548546, 0.0015451265, -0.011236675, -0.009590325, -0.02263397, 0.036085855, -0.0104135005, 0.032605767, 0.0063076634, -0.012267318, 2.1248627E-4, -0.0073483437, -0.004771739, -0.005584875, 0.005133133, -0.030035853, -0.018605096, 0.00968402, 0.020023903, -0.0013903629, -0.0055246428, 0.021241935, 0.017039057, 0.0039987573, 0.002032841, -0.0036474022, 0.0054409867, -0.001357737, 0.009971797, 0.002200153, -0.010313113, 0.032980546, 0.014803767, 0.020773461, 0.0028091688, -0.0018370859, 0.002755629, 0.0106209675, -0.011203213, 0.013512119, -0.028777668, -0.0062976247, 0.016289499, 0.029848464, -0.035336297, 0.003854869, 0.008506143, -0.010313113, -0.010781586, 0.01060089, 0.0015359244, -0.018190162, -0.016878437, -0.019675894, 0.005036092, -0.0014823845, -0.032766387, 0.01936804, -0.0062407386, -0.015432861, -0.016530428, -0.015928105, 0.0029530572, -0.007421961, 0.012146853, 0.008900999, -0.017561069, -0.0052134427, -0.0022386347, 0.016985517, 0.003704288, 0.025779435, 7.3324493E-4, 0.013853435, 0.0038582152, -0.026863618, -0.041359533, 0.010145801, -0.006190545, -0.007970745, 0.016423348, 3.392251E-4, 0.028643819, -0.031026341, -0.003103638, 8.9009997E-4, 0.004607773, -0.010794971, -0.022004876, 0.03156174, 0.03750466, 0.010420193, 0.014362064, 0.013853435, 0.0026753193, -6.7803194E-4, -0.016409963, -0.010714661, -0.01912711, -0.008131364, -0.01111621, 0.010915436, 0.0030300207, -0.007816818, -0.03852192, -0.020626226, -0.01570056, -8.641666E-4, -0.011718534, 0.014067595, -0.008660071, 0.025551891, 0.012876333, -0.0055212965, -1.342679E-4, -0.0053472924, -0.008178212, 0.018364167, 0.017641379, -0.022968594, 0.035095368, -0.017574454, -0.017681533, -0.011343755, 0.012702328, 0.006849754, 0.0095234, -0.0042631105, -0.004159377, -0.01416129, -0.019608969, 0.0045876955, 0.009677327, -0.011096133, 0.026354989, -0.011758689, 0.012956643, 0.0146699175, -0.0071475697, -0.019113725, -0.026917158, 0.01572733, -0.025163729, 0.023624457, 0.03498829, 0.015473016, 0.012668866, -0.037397582, -0.014469144, -0.0022319423, -0.036540944, -0.020438837, 0.0037210193, 0.02840289, 0.014067595, 0.035175677, 0.01062766, 0.021884412, 0.006638941, 0.015272241, 0.018524786, -0.017039057, -0.009804484, -0.023932312, 0.0069066403, 0.005079593, 0.02579282, 0.010460348, -0.01243463, 0.010687892, 0.02460156, 0.00486878, 0.016985517, -0.0021934605, -0.021763947, -0.026716383, -0.0018571634, -0.01902003, 0.008887614, -0.016650893, -0.007816818, 0.022995364, -8.256848E-4, -0.001960897, -0.010995746, 0.024066161, -0.0049925908, 0.021442708, -0.024173241, 0.019729434, -0.020452222, -0.002143267, -0.020385297, -0.025993595, -0.008880922, 0.002325637, 0.027117932, 0.017614609, -0.01289641, 0.0087136105, 0.021563172, -0.013097185, -0.02818873, 0.034292273, -0.015071467, -0.0053506386, -0.0223395, -0.0050729006, -0.028590279, -0.010761509, -0.0023875425, -0.009951719, 0.008653378, -0.022727665, -0.022219036, 0.010005259, -0.008097902, 0.04901573, 0.023691382, 0.02813519, 0.025043264, 0.02239304, -0.011885846, 0.011316985, -0.013706201, -0.007917205, 0.034372583, 0.033997804, -0.0228749, -0.0025297578, -0.0032056982, -0.013987285, -0.035255987, -0.03488121, 0.027104547, 0.014428989, 0.009148621, -0.017119367, -0.006013194, -0.037424352, -0.0030952725, -0.006642287, 0.0118925385, 0.004611119, -0.02818873, -0.026756538, -3.369769E-5, -0.0099985665, 0.013485349, 0.008111287, -0.015740715, 0.011577992, -0.027051007, -0.0025966826, -0.012233855, -0.013445194, 0.0223395, -0.02579282, 0.01289641, 0.010266266, 0.004018835, 0.010125724, -0.0077432003, -8.224432E-5, 0.03166882, -0.014562839, 0.015125006, -0.008720303, 0.0017099289, 0.014602993, 0.016597353, -0.02125532, -0.013471964, -0.029232755, -0.009757637, 0.040235195, 0.0040991446, -0.0035035138, 0.013498734, -0.013699508, -0.006133659, 0.012347627, -0.0067159045, 0.0031337542, -0.035175677, -0.0024962954, 0.002002725, 0.016209189, 8.1229984E-4, -0.01410775, -0.0025498352, -0.001684832, 0.0062106224, -0.014977772, -0.0114776045, -0.016396578, -0.013331422, -0.0315082, -0.020104213, -3.3525145E-4, -0.019033415, 0.0046713515, -0.017601224, -1.5790072E-4, 0.0037645204, -0.0010582486, -0.01745399, -0.0027338783, -0.018417707, 0.0044772695, 0.016811512, -0.0019374732, 0.0021533058, 0.0034265502, 0.025645586, 0.0059328843, -0.0045073857, -0.0014907501, 0.018297242, 0.036380325, -0.023744922, 0.015352551, 0.009028156, -0.021777332, -0.020304987, 0.01049381, 0.015299011, 0.022955209, -0.0020980928, -0.03172236, 0.0080644395, 0.002143267, 0.0380936, -0.00790382, -8.917731E-4, 0.012849563, 0.016905207, 0.035550456, 0.034104884, 0.0011962809, -0.022379655, -0.006518476, -0.013692816, -0.034185193, 0.0048520486, 0.009188776, 0.0031538317, 0.0119059235, -0.009295856, -0.033328556, -0.009924949, -0.026528994, -0.033382095, -0.008071132, 0.019836513, 0.033221476, 0.015165161, -2.559874E-4, 0.010125724, 0.0068798703, 0.0061972374, -0.011638224, -9.5451507E-4, 0.016209189, 0.02497634, 0.022674125, 0.017895693, -0.02457479, -0.0060734265, 0.018377552, 0.019220805, 0.004022181, 0.0138132805, -0.014348679, -0.0066857883, -0.010025336, 0.01384005, 0.006190545, -0.0022352885, 0.012996797, -0.018364167, -0.017534299, 0.0062842397, 0.016945362, -0.01745399, 0.0032374875, 0.0075223483, -0.016985517, 0.0019793012, -0.016958747, -0.008726995, -0.010353268, -0.018377552, 0.030705102, 0.0112701375, 0.007656198, 0.029152447, 0.016838282, 0.0010741432, 0.014991157, 0.0011862422, 0.008044362, -0.03196329, 0.0087002255, -0.006642287, 0.024026006, -0.039458867, 0.0059094606, -0.032927006, 0.0032776424, 8.9930213E-4, -0.0024293705, -0.0019726087, 0.034827672, 0.013659353, -0.036728334, 0.0049457434, -0.01915388, 0.0013384962, -0.02470864, 0.0040422585, -0.026943928, 0.0036808643, -0.00620393, 0.004413691, -0.023410298, -0.028670589, -0.0010565754, 2.0182012E-4, -0.0042530717, 0.023062289, 0.1803222, -0.008793919, 0.01562025, 0.04542856, 0.004748315, -0.004567618, 0.024266936, 0.014495914, -0.0010105646, 0.0080109, -0.014094365, 0.012508247, -0.015325781, 0.002730532, 0.015901335, -0.008131364, -0.028884748, -0.03196329, -0.023236293, -0.028697358, -0.015205316, -9.411301E-5, -0.011009131, -0.03113342, 0.0053841006, 0.013565659, -0.027385632, 6.9685455E-4, 0.0246551, -0.0017132751, -0.010761509, -0.012187008, -0.013599121, 0.009610402, -0.011457527, -0.009463168, -0.0076896604, 0.0116850715, -0.0048888572, -0.0031806014, 0.0093627805, 0.0054644104, -0.017253216, -0.00790382, 8.9009997E-4, 0.027158087, -0.013425116, -0.0075558107, -0.018337397, 0.021322245, -0.03900378, 0.0062373923, 0.021616712, 0.030062623, -0.007502271, -0.0010331518, 0.005109709, 3.714327E-4, -0.0066188634, 0.011765381, 0.010286343, 0.040181655, -0.03496152, 0.010112339, 0.0012916488, 0.012729098, -0.046499357, -0.013518811, -0.0046546203, -0.03501506, -0.010513888, -0.043206654, -0.017279986, 0.01394713, -0.013351499, -0.011899231, 0.0020529185, 0.014201445, 9.520054E-4, 0.019582199, -0.022125341, -0.011691764, 0.020719921, 0.004269803, -0.021763947, -0.009014771, 0.011109518, -0.01135714, -0.002506334, -0.023798462, 1.7557305E-4, -0.023677997, -0.008867537, 0.0030099433, -0.012287395, 0.016490273, 0.010139109, 0.020023903, -0.012006311, -0.008405756, -0.040261965, 0.025618816, 0.025163729, 0.0026067214, -0.039084088, -0.019622354, 8.177375E-4, 0.009811177, 0.023530763, -0.0187791, -0.017828768, -0.035416607, 8.2861277E-4, 0.0011000765, 0.01389359, 0.01556671, -0.0022603853, -0.01583441, 0.03148143, -0.016490273, 0.0069668726, -0.02800134, 0.025070034, 0.0068129455, -0.008860844, -0.034345813, -0.021683637, 0.010928821, -0.006217315, -0.036648024, 0.018738946, -0.019903438, 0.014268369, 0.00779674, 0.0027522827, 0.008559683, 0.018484632, -8.0979016E-4, 0.0073751137, -0.0044069984, -0.0113036, -0.007529041, 0.007194417, 0.003787944, 0.0014196425, -0.0069066403, 0.0014096037, -0.008860844, -6.060878E-4, -0.039780106, -0.030196473, 6.830513E-4, 0.015365936, 0.0021884413, 0.041386303, -1.8059241E-4, -0.021081315, -0.046097808, -0.0045341556, 0.04537502, -0.034533203, 0.021830872, 0.012508247, -0.0047148527, -0.020612841, 0.008900999, -0.16993548, 0.0223395, 0.005387447, -0.0315082, 0.013659353, 0.012126775, 0.035603996, 0.0063712415, 0.005829151, -0.025471581, 0.03145466, 0.002937999, -0.045883648, -0.0022620584, 0.0044772695, 0.020867156, -0.011109518, 0.032927006, 0.035282757, -0.010038721, 0.0444113, 3.0680842E-4, 1.1858239E-4, 0.0058659595, 0.027358862, 0.004704814, 0.01580764, 0.0050293994, 2.9823367E-4, -0.0029262872, -0.033060856, -0.012735791, 0.021830872, -0.0023490607, -0.010667815, -0.0038180603, -0.0031789283, -0.01125006, 0.0014079306, -0.009369473, 0.05123763, 0.007448731, 0.030758642, 0.022071801, 0.0035704386, 0.022085186, 0.043046035, -0.02800134, 0.018551556, -0.021978106, -0.014643148, -0.037263732, 0.041413072, -0.013257804, -0.0037410967, 0.02428032, 0.01227401, -4.885511E-4, -0.009931642, -0.008793919, -0.015058082, -0.012521632, 0.008405756, -0.0041426457, 0.0064113964, -0.023437068, -0.013732971, 0.0034700513, -0.030972801, 0.0116984565, -0.027091162, 1.914677E-4, 0.016731203, 0.011296907, 0.0063545103, -0.014268369, -0.041332763, 0.0059630005, 0.0077030454, 0.007154262, -0.003787944, 0.039646257, 0.003787944, 0.017440606, -9.821216E-4, -0.021710407, -0.004430422, 3.16638E-4, 0.0077030454, 0.0031605242, 0.016798127, -0.016891822, -0.040609974, 0.0010197668, 0.0015317416, 0.005079593, -6.6171907E-4, 0.011952771, 0.019997133, -0.020412067, 0.0045609255, -0.008593146, -0.011584684, 0.011832306, 0.029982314, 0.0060031554, 0.016543813, 0.0073483437, 0.012796023, 0.012454707, -0.0045575793, -0.016691048, 0.016583968, -0.0032542187, -0.034693822, 0.014576224, -0.020157753, -0.01591472, -0.004718199, 0.019916823, 0.046981215, -0.009369473, 0.006133659, -0.0012397821, -0.0038749464, 0.0023741575, -0.08930446, -0.013853435, 0.009396243, 0.047516614, -0.032819927, 0.029955544, -0.00779674, 0.0076762754, -0.028911518, 0.03498829, -0.0016689374, -0.03113342, 0.020157753, 0.005256944, 0.009583632, 0.0065753623, -0.026462069, -0.018016158, -0.005558105, 0.016824897, 0.0044672308, -0.0020345142, 0.012059851, -0.009650557, -0.0157541, 0.013906975, -0.025484966, 0.020130983, 0.014616378, 0.019515274, 0.018404322, -0.026073905, 0.010861896, -0.047034755, -0.02805488, -0.016891822, -0.011484297, -0.02810842, -0.010507195, -0.050327457, 0.012615327, 0.011751996, -0.007890435, -0.009704097, -0.011350447, -0.006374588, -0.037049573, 0.013364884, -0.010246188, -0.01910034, -0.01111621, -0.0061871987, -0.023651227, -0.0068029067, 0.0106209675, 0.020519147, 0.036755104, 0.006351164, 0.004470577, -0.022245806, -0.008760458, -0.011725226, -0.033997804, 0.016704433, 0.008198289, 0.020144368, 0.007749893, -0.0040723747, 0.020090828, -0.023811847, -0.02090731, 0.030517712, -0.034854442, -0.012575172, -0.01570056, 0.014991157, -0.015499786, -0.01896649, 0.019796358, -0.033971034, 0.0044605383, -0.03750466, 0.01570056, -0.0048219324, 0.02223242, 0.0074286535, 0.01942158, 0.015633635, -0.016383193, -0.036032315, -5.4292753E-4, 0.016035184, 0.015954874, -3.6285794E-4, -0.015406091, 0.0125283245, 0.015767485, 0.006776137, 0.012287395, 5.2159524E-4, -0.009878102, 0.0026753193, -0.06403366, 0.03180267, -0.025310963, -0.01748076, -0.0106075825, -0.017039057, 0.0076227356, -4.0845046E-4, -5.8391894E-4, 0.022018261, -0.0033529329, 0.008860844, -0.012280703, 0.013599121, 0.0011452507, 0.004256418, 0.016383193, -0.0030015777, 0.0054276017, 0.0036474022, -0.006809599, 0.006448205, 0.02789426, 0.009864717, 0.0014581243, 0.017895693, -9.0097525E-4, 0.0036708256, -0.025418041, -0.0068129455, 0.020238062, -0.03193652, -0.0015434534, -0.0058358433, 0.0012230509, -0.029366605, -0.008445911, 0.0031337542, 0.015138391, 0.0010833454, -0.017012287, -0.021215165, 0.012374397, 0.0021650176, -0.0055882214, 0.011370525, -0.0282155, 0.009095081, 0.009971797, 0.014763612, 0.036781874, 0.018163392, -0.0017567762, -0.022647355, 0.017306756, -0.0028459774, 0.04197524, 0.011263445, -5.2468004E-5, -0.027465941, 0.014482529, -0.0015200297, 0.025083419, -0.028724128, -0.0044103446, -0.01386682, 0.012601942, -0.0076227356, 5.006812E-4, -0.02632822, -0.019689279, -0.0048620873, 0.026207754, 0.04510732, 0.015633635, 0.027184857, -2.5201374E-4, 8.240117E-4, -0.0020763422, 0.033703335, 0.02786749, -0.009837947, -0.027626561, 0.012053158, 0.0067426744, 0.018364167, -0.009483245, 0.008653378, 0.005752187, 0.018578326, -0.011444142, 0.013672738, 0.023075674, -0.0019358001, 0.0101926485, 0.019434964, -0.03142789, -0.0017300063, 0.0025682396, 0.013016875, -7.700536E-4, -0.011136288, -0.016811512, -0.018471247, -0.017012287, -0.008245137, -0.009483245, -0.018029543, 0.009001386, 0.027626561, 0.02840289, 0.008793919, -0.021322245, 0.008693533, -0.047329225, 0.013786511, -0.009342703, -0.012675558, -0.008847459, 0.034533203, 0.017721688, 0.0029396722, 0.028590279, -0.008921077, 0.053994935, 0.014937617, 0.007027105, -0.040931214, 0.018551556, 0.008352216, -0.011598069, -0.014763612, -0.013759741, 0.0046010804, -0.0050327457, -0.008887614, -1.387644E-4, 0.026930543, -0.014482529, 0.07088675, 0.0028259, -0.0048219324, 0.01303026, -0.017146137, 0.012026388, 0.023892157, 0.01915388, -0.018176777, -0.013144032, -0.0047784313, -0.010286343, 0.013458579, -0.027238397, -0.0022720972, -0.008419141, 0.020492377, 0.013632583, -0.0065385536, -0.018096467, -0.0058224583, -0.017855538, 0.022138726, 0.0032542187, 0.004299919, -0.029205985, 0.015178546, -0.0049591283, -1.11367066E-4, -0.02816196, 0.018190162, -0.025310963, -0.0068999478, -8.6333003E-4, 0.02842966, -0.014254984, 0.0010088915, -5.433458E-4, 0.021268705, 0.011912616, -0.019595584, -0.011557914, -0.022165496, -0.015151776, 0.019167265, -0.02138917, 9.645538E-4, -0.035952006, -0.0041091833 ], + "id" : "ed323792-0abb-401a-8874-cc8a462f28c2", + "metadata" : { + "source" : "movies.csv" + } + }, + "0745b9a7-ac71-4884-ac3a-07ca36c685f0" : { + "text" : "343,8607,Will Smith-Charlize Theron-Jason Bateman-Jae Head-Eddie Marsan-David Mattey-Maetrix Fitten-Thomas Lennon-Johnny Galecki-Hayley Marie Norman-Dorothy Cecchi-Peter Berg-Darrell Foster-Brandon Ford Green-Daeg Faerch-Trieu Tran-Ryan Radis-Eddie J. Fernandez-Martin Klebba-Matt Bettinelli-Olpin-Samantha Cannon-Rico Devereaux-Alexa Havins-Edward M. Kelahan-AlgeRita Wynn-Rick Mali-Chris Mitchell-Scott Michael Morgan-Bryan Keith Ponton-Dawn Ressy-Nicholas Rich-Mark Simich-Nancy Grace-Brad Leland-Michael Mann-Atticus Shaffer-Michelle Lemon-Akiva Goldsman-Trieu Tran-Liz Wicker-Taylor Gilbert-Caroll Tohme-Barbara Ali-Elizabeth Dennehy-Darren Dowler,flying-alcohol-love of one's life-forbidden love-lovers-affection-advertising expert-alcoholism-invulnerability-superhero-pokies-los angeles california-duringcreditsstinger,/7DyuV2G0hLEqHeueDfOqhZ2DVut.jpg,/xh0ZRdnL4pSqfW73HBf97xiNEFP.jpg,2048-6479-608-9738-1979-602-607-1250-1593-8488-41154-787-1402-310-1858-8373-44912-8247-559-8909\r\n928123,The Battle at Lake Changjin: Water Gate Bridge,War-History-Action-Drama,zh,\"In the follow-up to \"\"The Battle At Lake Changjin\"\" brothers Wu Qianli and Wu Wanli undertake a new task for the People's Volunteer Army defending a bridge part of the American troops' escape route from the advancing Chinese.\",149.286,Bona Film Group,2/1/22,200000000,626203271,149,Released,,7,37,Wu Jing-Jackson Yee-Duan Yihong-Yawen Zhu-Jerry Lee-Elvis Han-Zhang Hanyu-Geng Le-Du Chun-Yang Yiwei-Hu Jun-Wang Likun-Li Zhuoyang-He Yuefei-Tang Zhiqiang-Liu Zhiwei-Zhuang Xiaolong-Xin Yubo-Zhang Yue-Tiger Xu-Wang Ning-ZhenWei Wang-ZeXuan Chen-Li Xiaofeng-James Filbird-John F. Cruz,korean war-historical-chinese communism-communist propaganda-chosin,/4W58wirZhbzcw2lNzRS2ErKnOGS.jpg,/mMA2YNddowV8MZtxpbn0a7Yilum.jpg,663712-779029-575322-532870-941520-86328-760204-848058-1024546-829799-436270-966220-37292-45509-717728-878183-438081-503235-972313-872177-84334\r\n51497,Fast Five,Action-Thriller-Crime,en,Former cop Brian O'Conner partners with ex-con Dom Toretto on the opposite side of the law. Since Brian and Mia Toretto broke Dom out of custody they've blown across many borders to elude authorities. Now backed into a corner in Rio de Janeiro they must pull one last job in order to gain their freedom.,12.571,Original Film-Universal Pictures-One Race,4/20/11,125000000,626137675,130,Released,Get the fifth gear.,7.", + "embedding" : [ 0.009558864, -0.024548747, -0.020878034, -0.025981553, -0.02117824, 0.03531526, -0.0107324, -0.0035035522, -0.02531291, -0.034714848, 0.025831448, 0.030948613, 0.01808065, 0.008385328, 0.008480848, 0.011858177, 0.019991057, -0.032640688, -0.007948663, -0.020332202, -0.0020195744, -0.011796771, -0.021737717, 0.017343778, -0.0025278796, 0.023197815, 0.025967907, -0.010391256, -0.016825238, -0.0068228864, 0.015133162, -0.005734636, -0.008849284, -0.025190098, -0.010827921, 0.001959874, -0.0039129253, -0.03212215, 0.031712778, 0.0025585825, 0.02469885, 0.0038685766, 4.6949988E-4, -0.0038992797, -0.0051444564, 0.002831498, 0.014055147, -0.010568651, -0.010595943, 0.024248539, 0.035533592, 0.020946262, -0.013099942, -0.023770938, -0.0048988326, 0.0056664073, -0.011380575, 0.013434264, -0.0020008115, 0.011366929, 0.0035444896, -0.0050966963, -0.0413194, -0.010370787, -0.020536888, -0.0047930777, -0.013598013, -0.00498753, -0.002973073, 0.018571896, 0.017630339, 0.0015368552, 0.02278844, -0.0017441004, 0.023648124, -0.043147936, -0.02508093, -0.008105589, -9.3899976E-4, 0.019090436, 0.016647844, -0.012772444, -0.016579615, 0.0047214376, 0.0042950073, 0.0018097707, -0.017152738, 0.017098153, -0.01855825, 0.015078579, -0.0010430488, 0.03722567, 0.007334603, 0.0011061605, 0.012895255, 0.01668878, -0.023770938, 0.025572179, -0.019363353, -0.03512422, 0.0038992797, -0.013372858, -7.786619E-4, -0.008883398, 0.0056459387, -0.018067004, 0.0031896995, -0.0038549309, 0.01623847, 0.0094769895, 0.0080851205, -0.01501035, 0.019649914, -0.042138148, -0.0096339155, -0.013768585, 0.023511667, -0.02879258, -0.01666149, -0.030648407, 0.037252963, 0.033841517, 0.019022208, -0.033050064, 0.031849235, 0.0272779, 0.008876575, -0.018312627, 0.0014686263, 0.0043734703, 0.034469225, -0.0047930777, 0.033022773, 0.016838884, -0.038617536, 0.042056274, -0.0234025, 0.005195628, -0.027946543, -0.01898127, 0.028546957, 0.037034627, -0.018817522, -0.020400431, -0.02327969, 0.004509928, 0.008098766, -0.004107378, 0.022733858, -1.7163824E-4, 0.030239033, 0.024862599, 0.025190098, 0.016893467, 0.01704357, -0.009156314, -0.0053389086, -0.0021765009, -0.011564793, -0.014860247, 0.0060041402, -0.016866175, -0.009388292, -0.009285948, 0.0046600318, 0.018490022, 0.021069074, -0.015556182, -0.005147868, -0.0034916122, -0.0048408383, 0.021492092, -0.016893467, 0.0139732715, -0.0045679226, 0.02117824, 0.008282985, -0.019800017, -0.027673628, -0.020263974, 0.022256257, 0.014027854, 0.03457839, 0.039627325, -0.0011590378, 0.004387116, 0.021341989, -0.03354131, 0.007048042, -0.010207038, -0.0012511468, 0.020905325, -0.0031112363, -0.01314088, -0.6375305, -0.007935017, -0.012124269, 0.0013441086, 0.018653773, 0.017234612, 0.0014532749, 0.0031641137, -0.019527102, -0.0146419145, -0.035861094, 0.005431018, 0.021341989, -0.020850742, -0.026186239, -0.008801524, 1.2537054E-4, -0.024344059, 0.0047691977, 0.013154525, -0.026186239, 0.014287124, 0.016279407, -0.0111281285, 0.013366035, 0.0146419145, -0.01089615, -0.012717861, 0.0037048275, 0.0070071043, -0.024002915, 0.024112081, 0.017098153, -0.0017620105, 0.036243174, -0.0032459884, -0.011141774, 0.03951816, 0.026049782, 0.01907679, -0.015815452, -0.0114897415, 0.017698567, -0.0023743645, -0.011469272, 0.031494446, 0.0026216942, -0.001820005, 0.0037184733, -0.005557241, -0.002229378, 0.004625917, -0.015542536, -0.01221979, -0.008617306, -0.015719932, 0.0031555851, -0.03490589, 0.031794652, 0.007382363, -0.017507527, 0.023156878, -0.0018541195, 0.0012767327, -0.0068911156, 0.024166664, -0.005703933, 0.008535431, 0.008685535, -0.023293335, 8.801524E-4, 0.015187746, -0.010862036, 6.976402E-4, 0.0027120975, 0.0033653888, 0.03632505, 0.009961414, -0.0060211974, 0.026240822, -0.0029645443, -0.0019257597, 0.0052058627, 0.0076211644, 0.012751975, -0.0035001407, -0.03654338, 0.001850708, 0.015870035, -0.005055759, 0.014096084, 0.0104049025, 0.01108719, 0.015515245, -2.0937734E-4, -0.011435158, -0.008712826, 0.00997506, 0.037007336, -0.06375305, -4.5670697E-4, -0.030320909, 0.03758046, -0.0060075517, 0.013406972, 0.0100432895, -0.012629163, -0.019117728, 0.033022773, -0.0053047943, -0.0086514205, -0.004063029, -0.008460379, 0.006072369, -0.0018472966, -0.023429792, 0.0024494163, 0.015678992, 0.0029389584, -0.02469885, -0.008051006, -5.807982E-4, 0.005761928, -0.017111799, 0.01879023, 0.0345511, -0.0072459057, 0.0050216448, 0.010159278, 0.006249764, 0.0035137867, 0.0019871658, 0.029966118, -0.019417936, 0.009640738, 0.0024477106, 0.020127516, -0.011469272, 0.019704496, 0.00164858, -0.008781055, -0.003646833, -0.016252115, -0.014287124, -0.00728002, -0.02443958, -0.04762375, -0.0013858988, -0.009695322, -0.028901748, -0.00165455, 0.012615518, -9.159725E-4, -0.0020690404, 0.007866789, -0.0025005878, -0.0217923, -0.03154903, 0.0012903784, -0.027073214, 0.005325263, 0.004718026, -0.0011786537, -0.008890221, 0.029010914, -0.0049977642, -0.009299595, 0.014532749, -0.012499528, -0.008337568, 0.0139732715, -0.018353565, 0.0029372526, 0.010909796, -0.016088367, 0.014082438, -0.015351495, 0.027059568, 0.021246469, 2.479693E-4, -0.0024562392, -0.004049383, -0.0225974, -0.009968237, 0.034851305, 0.017152738, 0.025776865, -0.0015974083, -0.025544887, 0.0038071708, -0.022010632, -4.62677E-4, -0.0038617537, -0.011482918, 0.015133162, 0.031849235, 0.0035513125, 5.1001075E-4, 0.003266457, 0.0021833237, 0.049261242, 0.022119798, 0.018612836, -0.010439017, 0.019322414, -0.020495951, -0.013829991, -0.019554393, 0.014137021, -0.0060553118, 0.013277337, -0.014450874, -0.010998493, 0.014027854, -3.8954418E-4, 0.017057216, -0.012615518, 0.005912031, -0.007969132, 9.7652565E-4, 0.0059290887, -0.016361281, 0.020154808, 0.0050523477, -0.029010914, 0.0055538295, 0.022843024, 0.004950004, 3.3410822E-4, -0.007225437, -0.0097362595, 0.005332086, 0.014764726, 0.015392432, 0.002824675, -0.023320626, 0.030457366, -0.012260728, 0.038099, -0.013045359, -0.0010711931, 0.029447578, 0.025299264, -4.96365E-4, 0.009313241, -0.024125727, 0.019772725, 0.023170523, -0.0060519003, 0.045495007, -0.010520891, 0.037635043, -0.0071367393, 0.015406078, 0.008282985, -0.018067004, -5.790925E-4, 0.008105589, 0.025381139, 0.016961696, 0.016252115, -0.01737107, 0.022529172, 0.0038651652, 0.013748117, 0.003198228, -0.022447297, 0.0066079656, -0.0077576223, -0.02514916, -0.013618481, -0.016525032, 0.014328062, 0.007778091, -0.0072595514, -0.007743976, -0.0034762607, 0.0051546907, 0.004086909, 0.014873893, -0.0023146642, -0.03534255, 0.009558864, 0.03493318, -0.025490304, -0.019254185, -0.027373422, -0.006758069, -0.03755317, -0.022106152, -0.01002282, 0.03706192, -0.013877751, 0.010425371, -0.020727929, 0.00534232, 0.008358036, -0.0035513125, 0.024412287, 0.011626199, -0.0010225801, 0.006225884, -0.007409655, -0.02276115, 0.035206094, -0.012451768, -0.0049977642, -0.006256587, 0.005925677, -0.0036263643, -0.002519351, 0.0039879773, -0.047732916, 0.009190428, -8.289807E-4, -0.006147421, -0.0130931195, -2.9189163E-4, 0.0041756066, -0.018653773, -0.016129304, -0.024221247, -0.029447578, -0.0021662666, 0.081437975, 0.04178336, 0.01959533, 0.0018609423, -0.015406078, 0.0040425602, -0.0034097375, -0.0027905607, -0.0034899064, -0.024207601, 0.027468942, -0.016061075, 0.025722282, -0.0025159395, 0.0141233755, -0.004370059, -0.011905937, -0.010131987, -0.0065772627, -0.019308768, -0.02418031, -0.021355635, 0.019295122, 0.028246751, 0.018148879, -0.007150385, 0.01704357, 0.016224824, 0.008828815, 0.016211178, -0.012874787, -0.0025108224, 0.0031231763, 0.011980989, -0.007286843, 0.001959874, 0.018640127, 0.0013006128, 0.0371165, 0.0010379317, -0.018994916, 0.0030003644, 0.008706003, -0.01879023, 0.009019856, -0.030320909, -0.0082898075, 0.01713909, 0.037280254, -0.034469225, 0.012997599, -0.0018882338, -0.018762939, -0.01659326, 0.006758069, 0.007382363, -0.015474306, -0.021928757, -0.032067567, 0.013645773, -0.004677089, -0.040336907, 0.024657913, -0.011844531, 0.0018148879, -0.0066079656, -0.016197532, -0.018217107, -0.010363964, -0.004683912, 0.007505175, -0.023156878, -0.017302841, -0.017643984, 0.02046866, -0.011094013, 0.040664405, -0.0054139607, 0.010568651, 0.0026626315, -0.0345511, -0.03193111, 0.013256868, -0.03105778, -0.011742188, 0.014942122, -0.0032749856, 0.019608976, 0.0044792253, 0.0066591376, -0.0039640972, -0.014409937, -0.008166995, -0.015037642, 0.034824014, 0.0075461124, 0.01151021, 0.012001458, 0.0091153765, 0.003077122, 0.013161348, -0.031849235, -0.005761928, -0.031303402, -0.0073618945, -0.018490022, 0.0059904945, -0.006410102, -0.026759362, -0.029665912, -0.01817617, -0.01727555, 0.0057244017, 0.0048510726, 0.01737107, 4.2173968E-4, 0.0319584, 0.010063758, -0.010486777, 0.007689393, 0.011196357, -0.019390645, 0.021573968, 0.028847165, -0.005833568, 0.023852812, 0.0058779167, -0.025544887, -0.0057312245, 0.04041878, -0.00834439, 0.009790842, -0.019267831, 0.012049218, -0.01718003, -0.027646337, 0.003314217, -0.001691223, -0.008610483, 0.01720732, -0.024862599, 0.0025961082, 0.015037642, 0.0078258505, -0.015910972, -0.029147372, 0.01084839, -0.008255693, 0.012861141, 0.020700637, -0.014587332, -0.002365836, -0.015638055, -0.012861141, -0.02075522, -0.036297757, -0.028574249, -0.0078053824, 0.04254752, 0.009606624, 0.039627325, -0.012936193, 0.039627325, 0.007334603, -0.0050182333, 0.01917231, -0.030375492, -0.010261621, -0.021219177, -5.735489E-4, 0.016129304, 0.014532749, 0.009279125, 0.011421512, -0.0035683697, 0.03154903, 0.004008446, 0.018258044, 0.0071708537, -0.021874174, -0.02821946, 0.0027359775, -0.015187746, -0.006403279, -0.029775077, -0.014027854, 0.03154903, -0.011421512, -0.001280997, 0.0033483317, 0.020864388, 0.00723226, 2.7845905E-4, -0.029420286, 5.095843E-4, -0.023961978, -0.0073960093, -0.017057216, -0.015597119, -0.0023675417, -0.013174994, 0.025804156, 0.010855213, -0.015215037, 0.0038753997, 0.031248821, -0.01859919, -0.02963862, 0.023634478, -0.0102002155, -0.0102002155, -0.020072933, 0.005257034, -0.04997082, -0.010834744, -0.00329716, -0.011100836, 0.0037218847, -0.013529784, -0.026677487, 0.023484375, 0.01058912, 0.037662335, 0.0070207505, 0.044894595, 0.022133444, 0.014341707, -0.0118035935, 0.0016409042, -0.009770374, -0.0041039665, 0.02630905, 0.02330698, -0.018162524, -3.8336095E-4, 0.0023300159, -0.0029031383, -0.04997082, -0.03247694, 0.026459154, 0.03070299, 0.012233436, -0.022420006, -8.3111285E-4, -0.030484658, 0.017603047, -0.0032920428, 0.0054344293, 0.008951628, -0.033022773, -0.028574249, 0.0012468825, -0.02004564, 0.011291877, 0.012711038, -0.023907395, 0.01439629, -0.023197815, -0.0023692474, -0.0070071043, 0.0046873232, 0.038672123, -0.014478166, 0.010145633, 0.0071299165, 0.01888575, -0.012649632, -0.0018831167, -0.002696746, 0.032258607, -0.011421512, 0.021724071, 0.0052468, 0.0104936, 0.018339919, 0.021942403, -0.015583473, -0.024999056, -0.018626481, 0.0068228864, 0.025517596, 0.010841567, -0.0014080732, 0.012779267, -0.024112081, -0.021301052, 0.0018797052, -0.0075324667, 0.0096339155, -0.04554959, 0.011223649, 3.562826E-4, 0.010984847, -0.0051205764, -0.010009174, -6.259998E-4, -0.0056595844, 0.0018455908, -0.0035035522, -0.0020997433, -0.02117824, -0.009804488, -0.042438354, -0.01855825, -0.0056425272, -0.008112412, 0.007982777, -0.02427583, 0.005680053, -0.008364859, 0.006403279, -0.01959533, -0.0014345119, -0.014478166, 0.0074847066, 0.010056935, -0.0015044465, -0.0078736115, 0.0015232094, 0.033077355, -0.012506351, 0.0031351163, 0.015023996, 0.008514962, 0.023839166, -0.024330413, 0.008139703, -0.0051546907, -0.013570721, -0.005239977, 0.006202004, 0.02498541, 0.008903867, 0.0076621016, -0.02947487, -0.0056459387, -0.012943015, 0.034441933, -0.005424195, 0.013243223, 0.03425089, 0.0209872, 0.028956331, 0.02037314, -6.396456E-4, -0.03515151, 0.006348696, -0.0032118738, -0.0225974, 0.009586155, 0.004625917, -0.0060211974, 0.0018524138, -0.008501316, -0.034605682, -0.009381469, -0.025940616, -0.029392995, -0.005239977, 0.0148466015, 0.022624692, 0.009313241, -0.0045815683, 0.007505175, 0.0049465927, -0.0042847726, -0.016088367, -0.00926548, 0.018476376, -8.119235E-4, 0.021669488, 0.019868245, -0.033077355, -0.0047112033, 0.018107941, 0.02046866, 0.01756211, 0.018640127, -0.017616693, -9.7652565E-4, -0.00728002, 3.8229488E-4, -0.0023180756, -0.006911584, 0.025367493, -0.032012984, -0.0016775773, 0.0070616878, 0.016361281, -0.0030754162, 0.01155797, 0.01765763, -0.011100836, -0.008944805, -0.0045201625, -0.024958119, -0.0011300406, -0.021546677, 0.01694805, 0.0015547653, -0.014505457, 0.032777146, 0.027332483, -4.262172E-4, 0.012247082, -0.011271409, 0.009361001, -0.0010217272, -0.0011624494, 0.016675135, 0.0209872, -0.04290231, 0.012779267, -0.030593824, 0.005478778, -0.0069934586, 0.0056595844, 0.0057244017, 0.034441933, 0.018162524, -0.06948428, 0.01013881, -0.00957251, 3.950878E-4, -0.0046668546, -0.00962027, -0.022515526, -0.0069218185, -0.0049465927, 0.008999388, -0.0073209573, -0.021164594, 0.006219061, -0.01456004, -0.011134951, 0.009408761, 0.18743834, 0.004073263, 0.009169959, 0.04410314, 0.01257458, 0.023607187, 0.017521173, 0.014887539, -0.0064476277, 0.011189534, -0.0069627557, -2.7227582E-4, -0.008869752, -5.60756E-4, 0.022119798, -0.012724684, -0.02224261, -0.02250188, -0.015747223, -0.020072933, -0.011462449, 0.004700969, -0.012349425, -0.024917182, 6.5073284E-4, -0.0033380974, -0.003824228, 0.0017185146, 0.027291546, -5.0532003E-4, -0.015542536, -0.012185675, -0.0014771549, 0.0076143416, -0.014969413, -0.0022191438, -0.0027462118, 0.012581402, 0.011885469, -0.0057823965, -0.0047043804, 0.0036127185, 0.0038583423, -0.008405796, 0.004257481, 0.019868245, -0.019649914, -0.0016153184, -0.023839166, 0.008583192, -0.048797283, -0.004612271, 0.011612553, 0.030266324, -0.009613447, -0.0056595844, 0.0061815353, -7.5691397E-4, -0.004755552, 0.007164031, 0.018640127, 0.03758046, -0.034687556, 0.01843544, -0.011885469, 0.01446452, -0.032204024, -0.013625304, 0.021560322, -0.027864669, -0.011373752, -0.046259172, -0.012315311, -0.0043359445, -0.0020178687, -0.01328416, 0.012001458, 0.0061610667, -6.6395215E-4, 0.028492374, -0.024221247, -0.013693534, 0.015583473, -0.015228683, -0.0011505092, -0.014532749, 0.013939157, -0.023443438, -0.006703486, -0.0139732715, -0.011865, -0.032940898, -0.016415866, -0.0047214376, -0.012738329, -0.0103571415, 0.021055428, 0.013106765, -0.015255975, -0.005014822, -0.036597963, 0.03122153, 0.019991057, -0.013406972, -0.017507527, -0.016061075, -0.006130364, 0.01859919, 0.030730281, -0.01314088, -0.011380575, -0.021669488, -0.00197352, -0.008856107, 0.0011564792, 0.0048442497, 0.0079896, -0.016347636, 0.03951816, -0.022474589, 0.009947768, -0.029884243, 0.0071844994, 0.018244399, -0.0067614806, -0.025463013, -0.027004985, 0.0023231928, -0.007341426, -0.023143232, 0.007771268, -0.029775077, 0.015283266, -0.010630057, -0.0043359445, 0.0067444234, 0.023538958, -0.0010259916, 0.0022396126, 0.010002351, 0.0012366482, -0.023579895, 0.006662549, 0.013045359, 0.010363964, -0.019800017, -0.0036673015, -0.0094769895, -0.017125444, -0.032640688, -0.026554674, 0.014532749, -4.5628054E-4, 0.017521173, 0.051280815, 9.637327E-4, -0.02108272, -0.03796254, -0.0146964975, 0.036297757, -0.04148315, 0.00737554, 0.015460661, -0.018230753, -0.03580651, -0.0073482487, -0.17553923, 0.01756211, 0.0112850545, -0.023689061, 0.019649914, 0.004731672, 0.034796722, 0.011830885, -0.006355519, -0.01160573, 0.023620833, 0.0078053824, -0.03796254, -0.007689393, -0.0018643538, 0.011271409, -0.016934404, 0.032067567, 0.020031994, -0.011325992, 0.03831733, 0.0044451104, -0.01160573, -0.010316204, 0.01846273, 0.0014166018, 0.019472519, 0.009558864, 2.2259667E-4, -0.005188805, -0.02982966, -0.01456004, 0.019213248, 0.0033312745, -0.011865, 0.00598026, 0.0040118573, -0.016415866, -0.014969413, -0.011094013, 0.033786934, 0.016716072, 0.0045576883, 0.005710756, 0.0038344623, 0.013584367, 0.025490304, -0.018640127, 0.025394784, -0.0037901136, -0.011360106, -0.03618859, 0.022010632, 0.010179747, 0.011366929, 0.025654053, -0.009436052, -0.007975955, -0.0046805004, 0.005239977, -0.030839447, -0.0082352245, -2.80378E-4, -0.026513737, -0.0104936, -0.010834744, -0.020673346, -0.0010865447, -0.03755317, 0.022979483, -0.025626762, 0.011694428, 0.03190382, -9.0488535E-4, -0.0015922912, -0.027687274, -0.016716072, 4.976443E-4, 0.021191886, 0.022638338, -0.022870315, 0.044266887, 0.0048988326, 0.015146809, -8.008363E-4, -0.0035137867, 0.018353565, -0.0031777595, 0.0138163455, -0.012622341, 0.008514962, -0.014096084, -0.037280254, 5.603296E-4, -0.0058369795, -3.00207E-4, -0.0033756231, 0.008358036, 0.013406972, -0.004700969, 2.255817E-4, -0.012001458, -0.01788961, 0.015910972, 0.010691463, 0.009777197, 0.010302559, 0.019513456, 0.023593541, 0.008051006, -0.017930547, -0.009381469, 0.018653773, 0.0042370125, -0.0032511055, 0.012308488, -0.010316204, -0.019063145, -0.0037150618, 0.031712778, 0.050762277, -0.007703039, 0.0043734703, -0.0011675665, 0.0062156497, -0.02750988, -0.08029173, 0.003143645, 0.0149011845, 0.050571237, -0.02079616, 0.03632505, -0.006362342, 0.02231084, -0.04077357, 0.02947487, -0.00697299, -0.030621115, 0.010459485, -0.0048340154, 0.017507527, -0.003871988, -0.01023433, -0.0036570672, -0.009094908, 0.03880858, 0.009606624, -0.015392432, -0.004080086, -0.031603612, -0.005618647, 0.010193393, -0.02860154, 0.020072933, 0.007559758, 0.006164478, 0.014218896, -0.028656123, 0.023238752, -0.043011475, -0.010937087, -0.03829004, -0.010036467, -0.019840954, -0.0013031714, -0.051799357, 0.011435158, 0.005287737, 0.0055128923, -0.022065215, -0.009367824, -0.011517033, -0.0303482, 0.025190098, -0.010479954, -0.018394502, -0.01552889, -2.5745736E-5, -0.029338412, -0.010855213, 0.013488847, 0.028983623, 0.034632973, 0.011482918, -0.016252115, -0.008105589, -0.004281361, -6.982798E-6, -0.024344059, 0.016579615, 0.018735647, 0.0125268195, -0.008262516, -0.015583473, 0.02198334, -0.02276115, -0.025804156, 0.038726706, -0.033104647, -0.012431299, -0.018490022, 0.010623234, -0.017016279, -0.01649774, 0.011271409, -0.023770938, -0.009047148, -0.028192168, 0.00803736, -0.012567757, 0.017029924, 0.015351495, 0.014137021, 0.009661207, -0.010978024, -0.041264817, -0.0017944191, 0.019991057, 0.004523574, 0.004063029, -0.0028280865, 0.018053358, 0.010609589, 0.014437228, -0.008876575, -0.0016349342, -0.004172195, -0.014423583, -0.072977595, 0.02056418, -0.024480518, -0.016293053, -0.0022020866, -0.011271409, 0.006491977, 2.3176493E-4, -0.0022259667, 0.01914502, -0.010514068, 0.0214648, -0.009845425, -0.003701416, -0.011885469, 0.018571896, 0.0064442162, -0.0011505092, 0.0060996604, -4.9849716E-4, -0.016920758, -0.004008446, 0.025190098, -0.009661207, 0.012158384, 0.023975624, 0.0037355304, 0.012028749, -0.025667699, -0.015760869, 0.027646337, -0.008999388, -0.0026506914, -0.0075392895, 2.2963277E-4, -0.022420006, -0.006300936, -0.008508139, -7.1597664E-4, -0.0028980211, -0.009122199, -0.011824062, 1.6524178E-4, -0.009511104, -0.0044212304, 0.0111281285, -0.01375494, 0.0027018632, 0.0030924734, 0.017766796, 0.022965835, 0.009872717, -0.016197532, -0.0055674757, 0.021833237, -0.0021747951, 0.043311685, 0.0043257102, 5.347437E-4, -0.021096366, 0.025913324, 0.01063688, 0.029201955, -0.027523525, 0.0151741, 0.00489201, 0.002923607, 0.0012554112, -0.004185841, -0.0319584, -0.019827308, -0.011353283, 0.016579615, 0.03919066, 0.015651701, 0.020072933, 0.014669206, -0.0010609588, -9.517927E-4, 0.020618763, 0.021000845, -0.011817239, -0.03138528, 0.005888151, -0.0024187134, 0.012131092, 5.9103256E-4, 0.020291265, 0.0025926968, 0.010131987, -0.0084467335, 0.018053358, 0.019963766, 0.005478778, 0.007866789, 0.012328956, -0.028874457, 0.0036945932, -0.0015974083, 0.02699134, -0.0040937318, -0.0047043804, -0.013939157, -0.001727896, -0.017057216, 0.0027683862, -0.016115658, -0.010050112, 0.007293666, 0.0030054816, 0.017780442, 0.0114897415, -0.016920758, 0.010432194, -0.029529452, 0.0154197235, -0.006648903, -0.018503668, -0.005881328, 0.04361189, 0.0135570755, 0.0076279873, 0.025872385, -0.0044621676, 0.061187647, 0.011926406, 0.011353283, -0.02550395, -0.01103943, 0.010070581, 8.1831997E-4, -0.0061576553, -0.019977411, 0.002217438, -0.01002282, 0.0048578954, 0.003314217, 0.035451718, -0.011482918, 0.08018256, 0.017862316, -0.009811311, 0.018585542, -0.016975341, 0.009715791, 0.016470449, 0.011407866, -0.018230753, -0.017603047, 0.009606624, -0.017998775, 0.005987083, -0.03476943, 0.010821098, -0.006966167, 0.015829097, 0.017125444, -0.0026882172, -0.02508093, -0.009818134, -0.0056220586, 0.016784301, 0.007696216, -0.006154244, -0.008453556, 0.012103801, -0.013393327, -0.0032613399, -0.024030207, 0.006580674, -0.018708356, -0.009695322, 8.1362925E-4, 0.026554674, 5.0830503E-4, -0.0038412851, 0.004854484, 0.041182943, 0.007054865, -0.008624129, -0.0038139937, -0.021041783, -0.01191276, 0.023839166, -0.014587332, 9.781247E-5, -0.028546957, -0.026158947 ], + "id" : "0745b9a7-ac71-4884-ac3a-07ca36c685f0", + "metadata" : { + "source" : "movies.csv" + } + }, + "5e8d276a-7390-4343-8eff-6c517e1033be" : { + "text" : "It's up to Papa Clumsy Grouchy and Vanity to return to our world reunite with their human friends Patrick and Grace Winslow and rescue her! Will Smurfette who has always felt different from the other Smurfs find a new connection with the Naughties Vexy and Hackus or will the Smurfs convince her that their love for her is True Blue?,28.639,Columbia Pictures-Sony Pictures-Sony Pictures Animation-Kerner Entertainment Company-Hemisphere Media Capital-NeoReel,7/30/13,105000000,347434178,105,Released,Get ready to get naughty!,5.8,1939,Hank Azaria-Neil Patrick Harris-Jayma Mays-Brendan Gleeson-Katy Perry-Jacob Tremblay-Nancy O'Dell-Karim Babin-Gaston Morrison-Jocelyn Blanchard-Erika Rosenbaum-Carolina Bartczak-James A. Woods-Henri Pardo-Vanessa Matsui-Dusan Dukic-Ruth Chiang-Andy Quesnel-Myl��ne Dinh-Robic-Martin-Guy B��langer-Robert Reynaert-Patrick Sabongui-Martin St-Antoine-Patrick Baby-Joshua Spreekmeester-Bruno Paviot-Gunther Love-Ga�lle Pietri-Janicke Askevold-Beatrice Rosen-Mathilde Snodgrass-Mr. Krinkle-Hank-Christina Ricci-Jonathan Winters-J.B. Smoove-George Lopez-Anton Yelchin-John Oliver-Frank Welker-Tom Kane-Fred Armisen-Jeff Foxworthy-Alan Cumming-Gary Basaraba-Adam Wylie-Joel McCrary-Kenan Thompson-Kevin Lee-Paul Reubens-Shaquille O'Neal-B. J. Novak-Jimmy Kimmel-Shaun White-Mario L�_pez-John Kassir-Sean Kenin-Patricia Summersett,based on cartoon,/4zu8hbjp7bedcbetQssylLhpguk.jpg,/aIyvMthA7UGV6ix6AUUM88ZXfeU.jpg,41513-137116-55301-23398-172385-77950-6477-109451-49519-661095-151960-51170-80321-50359-7484-10527-46195-93456-10192-116711-22794\r\n5175,Rush Hour 2,Action-Comedy-Crime,en,It's vacation time for Carter as he finds himself alongside Lee in Hong Kong wishing for more excitement. While Carter wants to party and meet the ladies Lee is out to track down a Triad gang lord who may be responsible for killing two men at the American Embassy. Things get complicated as the pair stumble onto a counterfeiting plot. The boys are soon up to their necks in fist fights and life-threatening situations. A trip back to the U.S. may provide the answers about the bombing the counterfeiting and the true allegiance of sexy customs agent Isabella.,44.304,New Line Cinema,8/3/01,90000000,347325802,90,Released,Get ready for a second Rush!,6.696,3432,Jackie Chan-Chris Tucker-John Lone-Zhang Ziyi-Roselyn S��nchez-Alan King-Harris Yulin-Kenneth Tsang-Lisa LoCicero-Meiling Melan�_on-Maggie Q-Lucy Lin-Cindy Lu-Audrey Quock-Ernie Reyes Jr.", + "embedding" : [ 0.01633437, -0.033762254, -7.291519E-4, -0.03452771, -0.011201687, 0.03152055, 0.023360198, -0.01083946, -0.012055995, -0.04073341, 0.03789027, 0.02359257, 0.020558069, 0.006021163, -0.0024569898, -0.0021921543, 0.019177506, -0.02513716, 0.0068139606, -0.02487745, 0.005313796, 0.008050999, -0.029470209, -0.012240525, 0.014844456, 0.0041280165, 0.019300526, -0.010818956, -0.0044834083, -0.0073402147, -0.0036871934, -0.004828549, -0.0027149909, -0.02308682, -0.025574565, -0.014830788, -0.0027696665, -0.02526018, 0.022581069, -0.008625094, 0.0073607177, 0.017919965, 0.0010730108, -0.0042612883, -0.004312547, 0.0045551704, -0.009520409, -0.021145832, -0.00995098, 0.033762254, 0.009411057, 0.017892627, -0.024125658, -0.027255842, -0.020202676, -0.005508578, 2.13577E-5, 0.0020281272, -0.0060109114, 0.011782616, 0.017769607, -0.02398897, -0.019601243, -0.0011755278, -0.005727281, -0.015418551, -0.008392722, -0.03597662, 8.239801E-4, 7.189002E-4, 0.012165346, 0.009171851, 0.016894795, -0.015978977, 0.02895079, -0.031684577, -0.024180334, -0.022745097, 0.0017940468, -2.9559058E-4, 0.0089189755, -0.010053497, -0.007230863, 0.023073152, 0.0057033603, 0.026586065, 0.0032463705, 0.01581495, -0.035648566, -0.004401395, 0.015719268, 0.03075509, 0.008727611, -0.0073402147, 0.0132861985, 0.0197516, -0.029989628, 0.017017815, 6.7490333E-4, -0.039612554, 0.006581589, -0.0018931465, 3.0498797E-4, -0.008816459, 0.009356381, 0.008782286, -0.01848039, -0.0034223578, 0.016990477, 0.010941977, 0.0010311498, 0.0019119413, 0.0067797885, -0.029934954, -0.00628429, -0.017236518, 0.03469174, -9.722025E-4, -0.025519889, -0.03715215, 0.010190186, 0.026736423, 0.009745946, -0.049426846, 0.04073341, 0.014174678, -1.3690286E-4, -0.022471718, -0.013969645, -0.017414214, 0.029278845, 0.005894725, 0.015582578, 0.010272199, -0.01887679, 0.023387536, -0.016908465, -0.008379053, -0.013791949, -0.0142840305, 0.019081824, 0.0187401, -0.004093844, -0.018125, -0.025547227, -0.0014523236, 0.011064998, -0.018781107, 0.018835783, 0.0013540782, 0.026353694, -0.003577842, 0.017578242, 0.0058058775, 0.031575225, 0.0051771067, -0.008044165, 0.0071761874, -0.0038512205, -0.017892627, -0.0113452105, 0.0067387815, -0.005539333, -0.014653091, -2.4497282E-4, 0.02181561, 0.013600584, -0.008372218, 8.5217226E-4, -0.0045551704, -0.0019939549, 0.032477375, -0.017619248, 0.024043646, 0.0077981236, 0.0142430235, 0.011748444, -0.012698434, -0.010825791, -0.0038375517, 0.011290534, 0.012541242, 0.029032804, 0.009622926, -0.0051155966, 0.010832625, 0.021241514, -0.026654411, -0.006099759, -0.01621135, 0.0031711913, 0.017332202, -0.005139517, -0.0018623915, -0.6359879, -0.0077229445, 0.007989489, -0.015650922, 0.006274038, 0.016949471, 0.012466063, -0.010231193, -0.03802696, -0.0075452486, -0.024713423, 0.028267344, 0.017947303, -0.014379713, -0.015855957, -0.021993306, 0.010552413, -0.02692779, 0.024836443, -0.0072035254, -0.033734914, 0.030645737, 0.010422558, 4.3591065E-4, 0.003694028, 0.015664592, 0.015418551, -0.017933633, -5.125848E-4, -0.011960313, -0.016156673, 0.02308682, 0.0069984915, -0.009998821, 0.031083142, -0.0028328854, -0.015418551, 0.04863405, 0.039694566, 0.029470209, -0.024399037, 0.0013745816, 0.01939621, 0.016922133, -0.0056315986, 0.008823293, 0.0049413177, -0.0046132635, -0.012944475, 0.009035162, 0.012199518, -0.0047157803, 0.01166643, -0.0055871746, 0.015268193, 0.009971484, 0.016252356, -0.002532169, 0.0031865689, -0.0010576333, -0.014161009, 0.027132822, 0.011147011, 0.03625, -0.013005985, 0.032559387, -0.010067166, -0.0029798264, -0.0014796614, -0.0064688204, 0.01377828, 0.018138668, -0.011044494, 0.006755868, 0.0056076776, 0.010764281, 0.004797794, -0.0023527644, -0.005170272, 0.007155684, -0.009711773, -0.020804109, -0.018042985, 0.01861708, 0.028349357, 0.0013147801, -0.037316173, 0.02040771, 0.012780448, 0.008488405, 0.0132725295, 0.038847093, -0.007169353, -0.008611425, -0.014051658, 0.010005656, -0.02781627, -9.2179835E-4, 0.006376555, -0.06254902, -0.009363216, -0.0132998675, -7.07367E-4, -0.0025116657, 0.022253016, 0.003960572, -0.015773943, 0.0147077665, 0.017796945, -0.025724923, 0.0045859255, 0.008331212, 0.0025577983, -0.02919683, -0.024002638, -0.028759426, 0.016676093, 0.0014232772, 0.0031301845, -0.010156014, -8.726756E-4, -0.008372218, 0.0017145962, -0.022376036, -0.0052454513, 0.041498866, 5.553002E-4, 1.5003785E-5, -0.0054675713, 0.009670767, 1.6274568E-4, -5.07459E-4, -0.0031250587, -0.018753769, 0.021747265, 0.008290205, 0.030126318, -0.004107513, 0.024809105, -0.012602752, -0.023606239, 0.006434648, -0.00771611, -0.010456731, 0.0012293493, -0.02692779, -0.010449896, -0.010183352, -0.023674583, -0.0055154124, -0.013087999, 0.011570748, 0.0033813512, 0.018070323, 0.007306042, 0.012445559, -0.019997641, -0.01722285, 0.001145627, -0.01454374, 0.015527902, 0.03559389, -0.003724783, -0.021692589, 0.009944146, 0.0030738004, -0.029060142, 0.010586585, -0.006366303, -0.029798264, 0.0013344291, -0.032696076, -0.0037316175, 0.0024706589, -0.0142840305, 0.031083142, -0.0044082296, -0.0030601313, -0.018179676, -0.010176517, -0.0042749573, -0.009083003, -0.032121982, -0.0018794776, 0.023824941, -0.011140177, 0.02792562, -0.016252356, -0.0054675713, 0.0018811863, -0.009260699, 0.004121182, -0.012999151, 0.003137019, -0.015459558, 3.398544E-5, 6.1894616E-4, 0.018343702, -0.005723864, 0.028349357, 0.03152055, -0.005816129, -0.005488075, -0.0013711643, 0.0035231663, -0.038491704, 0.007347049, -0.016238688, 0.007292373, -0.008317543, 0.0137714455, -0.0038238827, -0.0016060991, -0.012595917, 0.024207672, 0.019081824, -0.017646587, 0.008420059, -0.02487745, 0.0066499338, 0.003458239, -8.470464E-4, 0.011434059, 0.016607748, -0.027187498, 0.01722285, 0.004182692, 0.0020127497, -0.0022399956, -0.0065474166, 0.0037965449, 0.0057614534, 0.008720776, -0.0033249669, 0.014010652, -0.012910303, 0.014174678, -0.010525075, 0.02651772, -0.010436227, 0.0053855577, 0.04078808, 0.019068155, -0.019860953, 5.448883E-5, -0.014065327, 0.013621087, -0.0015471518, -0.0043364675, 0.046118964, -0.010818956, 0.030016966, -0.0054709883, 0.010313206, 0.014078996, -0.0036291005, -0.0032600395, 0.011434059, 0.03764423, 0.032559387, -5.6640623E-4, -0.020954467, 0.015869625, 0.012855627, 0.030180994, 0.003453113, -0.009253864, -0.0051907757, 2.1517884E-4, -0.034883104, -0.006701192, -0.023551563, -0.012240525, -0.010791619, 0.0068720537, -0.02717383, -0.019683257, -0.0049447347, -0.008146681, 0.03075509, -0.013539073, -0.04054204, 0.021610575, 0.022540063, -0.026599735, -0.015951639, 0.0025065397, 0.0017077618, -0.013361378, -0.004186109, -0.0073538832, 0.012431891, -0.009896304, 0.013566411, -0.020216346, -0.01364159, 0.0013045283, 0.00733338, 0.024029976, 0.027365195, -0.0024416123, 0.030126318, -0.012370381, -0.0072376975, -0.0016710265, -0.010415724, 0.0014847873, -0.006612344, 0.011092335, -0.0037726243, -0.00509851, 0.0026722755, -0.031465873, 0.009267533, -0.026545059, -0.0046200976, -0.015418551, 7.483738E-4, 0.01504949, -0.00564185, -0.022280354, -0.02207532, -0.035730578, -0.005378723, 0.09694004, 0.040378015, 0.009773284, 0.010142345, -0.01154341, 0.003355722, 0.006458569, -0.021596907, 8.7822863E-4, -0.017878959, 0.022717759, 0.01619768, 0.02985294, 0.012076498, 0.02092713, 0.012684765, 0.004312547, -0.00580246, 0.017263856, -8.2440725E-5, -0.0060929246, -0.011796285, 0.012561745, 0.026408369, -0.0068686367, -0.017291194, 0.011645927, 0.0045073293, 0.008666101, -0.006082673, -0.01746889, -0.012431891, 0.009363216, 0.006977988, -0.014817119, -0.016648754, 0.018781107, 0.02374293, 0.01670343, 0.014188347, 0.020353034, 0.009363216, -0.0026688583, -0.012732606, 0.027665911, -0.009199189, 8.731028E-4, 0.022471718, 0.0253832, -0.046857085, 0.035730578, -0.0030601313, 0.0027833355, 0.011304203, 0.0118372915, 0.0071898564, -0.0021682337, -0.02284078, 8.5516233E-4, -0.0023886452, 0.0019495309, -0.014516402, 0.0031267675, -0.02141921, -6.24072E-4, -0.020202676, -0.011946644, -0.008215026, 0.0010661765, 0.0060006594, 0.0022041148, -0.03214932, -0.022868117, -0.0017701262, 0.0137509415, 0.00602458, 0.014215685, -0.00290123, -0.008727611, 0.010531909, -0.027091816, -0.030591061, 0.003550504, -0.015104166, -3.139582E-4, 0.004138268, 0.015828619, 0.018425716, -0.013388716, -0.0026500635, 0.019341534, 0.00519761, -0.01083946, -0.021897623, 0.03813631, 0.0049994104, 0.024371698, 0.019437216, 0.006906226, 0.0103747165, 0.0059152287, -0.028294683, -0.009670767, -0.02409832, -0.013327206, -0.008994155, -0.005973322, -0.015514234, -0.009096672, -0.03851904, -0.004213447, -0.020722095, -0.012151677, 0.0018880208, 0.020708427, -0.0038785585, 0.006906226, 0.023674583, -5.9032685E-4, 0.0015548406, 0.010463565, -0.02933352, 0.0084337285, 0.037179485, -0.010771115, 0.012062829, -0.006745616, -0.04603695, 0.01811133, 0.017673925, 0.026217004, 0.0022058233, 0.004985742, -0.019204844, -0.025752261, -0.015992647, 0.008570418, 0.0018743518, -0.012336208, -0.017127167, -0.02154223, 0.004517581, 0.0076340963, 0.002007624, 0.010682267, -0.02167892, 0.01543222, -0.006315045, 0.005713612, 0.023278184, -0.0043638055, 8.54308E-4, -0.034664404, -0.0013967936, -0.0010268782, -0.03075509, -0.01619768, -0.0062193624, 0.023934294, 0.005563254, 0.038737744, -0.004517581, -0.005375306, -0.0033625565, 0.019778939, 0.018207012, -0.005535916, -0.0147077665, -0.031137818, 0.0054709883, -0.004903728, 0.016881127, 0.0057614534, 0.021063818, -0.019601243, 0.021350866, 0.0034360269, 0.0055290814, 0.0041895267, -0.0344457, -0.008399556, -0.0030379193, -0.028240006, -5.493201E-4, -0.022471718, -0.008071502, 0.008023661, -0.005682857, -0.023387536, 0.0016231852, 0.041362178, -0.017701263, 0.010791619, -0.0035231663, 0.010333709, -0.025806937, -0.006458569, -0.019464554, -0.0032121981, -0.005211279, -0.018535066, 0.016990477, -0.01608833, -0.004544919, 0.009677601, 0.021706259, -0.003858055, -0.034855768, 0.003306172, 0.013621087, 0.0036154315, -0.028622735, -0.0017718348, -0.0239753, -0.009219692, -0.0028277596, -0.012650593, 0.022266684, -0.024194004, -0.03687877, 0.011112839, -0.023045814, 0.039229825, 0.008290205, 0.04666572, 0.043767907, -0.0027850443, -0.0043057124, 0.02884144, -0.00688914, -0.016375376, 0.028021304, 0.011235859, -0.008092006, 0.011721106, -0.028568061, 0.0024638243, -0.028622735, -0.058503013, 0.0191365, 0.008994155, 0.016949471, -0.026244342, -0.015459558, -0.008898472, 0.029224169, -0.0028021303, 0.0055564195, 0.008590922, -5.339425E-5, -0.033871606, 0.0056042606, 0.018070323, 0.010347378, 0.012158512, -0.027433539, 0.009158182, -0.017304864, -1.9563653E-4, -0.025055146, 0.010880467, 0.03917515, -0.0053377165, 0.025806937, -0.0019461137, 1.9723836E-4, 0.007169353, 0.0041792747, 0.0066430992, 0.026886782, -0.020106994, 0.010627592, -0.012240525, 0.009841628, 0.03354355, 4.2421732E-5, -0.015568909, -0.007921144, -0.027624903, -0.005388975, 0.030126318, 0.00333351, -0.01543222, -0.009657098, -0.011632258, -9.260699E-4, 0.001877769, -0.009486237, 0.01990196, -0.053609535, 0.010470399, -0.026422039, 0.0061715213, -0.0053855577, -0.0051463516, -0.0043843086, -0.0045722565, 0.018412046, -0.0010747195, 0.0163207, -0.018261688, 0.0054539023, -0.035867266, -0.008625094, 0.012336208, -0.008426894, 0.02549255, -0.022868117, -0.003039628, 0.0060279975, -0.009322209, -0.019109162, -0.007415394, -0.009745946, 0.008324377, 0.0118441265, -0.0063423826, -0.026217004, 0.011488734, 0.030919116, 0.007319711, 0.006981405, 0.019027147, 5.0404173E-4, 0.036441363, -0.02284078, 0.009732277, 0.030727752, -0.032039966, -0.0030157072, 0.0037487035, 0.026900452, 0.0068686367, -0.014502733, -0.029524885, -0.003306172, 0.0049310657, 0.039612554, -0.015568909, -0.011673265, 0.018958803, 0.03925716, 0.00497549, 0.023168834, -0.014475395, -0.0024552813, 0.010736943, -0.014338706, -0.016348038, -0.016648754, 0.004770456, 0.014598415, 0.0044799913, -0.013914969, -0.026162328, -0.006848133, -0.023032144, -0.021405542, -0.03214932, 0.027132822, 0.032559387, -0.026217004, -0.013375047, 0.015090497, -0.0021682337, 0.034855768, -0.014748774, 0.019300526, 0.024070982, 0.008385887, 0.017441552, 0.04237368, -0.025916288, -0.010026159, -0.003936651, 0.017154505, -3.3937386E-4, 0.03149321, -0.029224169, -0.0142430235, -0.038190987, 0.0035607559, 0.0344457, -0.0128146205, 0.015117834, -0.019027147, -0.009944146, 0.01442072, 0.022581069, -0.003128476, -0.005242034, -0.0011430641, -0.0039879098, 0.008440563, -0.014475395, -0.019327864, -0.00981429, -0.0073607177, 0.016840119, 0.015131503, 0.008303874, 0.011652761, 0.02767958, -0.020243682, -0.0034684907, 0.012069664, 0.0056179296, -0.0019239016, 0.008782286, -0.018945135, 0.008727611, -0.015022152, 0.01567826, -0.011577582, -0.0044731568, -0.018958803, -0.002954197, -0.016184011, 0.024727091, 0.014434388, -0.04234634, 0.0034052718, -0.009944146, -0.016758107, -2.1347022E-4, 0.004551753, -0.03357089, -0.010162848, 6.0954876E-4, -0.013525405, -0.010798453, -0.024440045, 0.009985152, -0.006540582, -0.02691412, 0.031547885, 0.2037217, -0.011106004, 0.009527243, 0.042319003, 0.0017650004, -0.0011601503, 0.043193813, 0.022376036, -8.3679473E-4, 0.009171851, -0.010429393, 0.01377828, -0.0032190327, 0.0048046284, -2.3002243E-4, -0.015596247, -0.03329751, -0.03696078, -0.009329043, -0.03100113, -0.018015647, -0.011194852, 0.001788921, -0.007914309, 0.014106334, -0.009786952, -0.007845965, -0.0015300657, 0.03275075, 0.013422888, -0.024781767, -0.022608407, -0.0048832246, 0.01083946, 0.0018453053, -0.005669188, -0.0026756928, 0.020298358, 0.008666101, 0.018535066, 4.8225687E-4, 2.0588824E-4, -9.944146E-4, -0.013231522, -0.00545732, 0.013094833, -0.028130654, 0.01383979, -0.018917797, 0.009998821, -0.032586724, -0.007415394, 0.026340025, 0.011878299, -0.012035491, 0.00950674, 0.015855957, -0.0073402147, -0.015992647, -0.013873963, 0.008194523, 0.026804768, -0.03739819, -0.0026295602, -0.017250188, 0.01621135, -0.027228504, -0.030126318, 0.009718608, -0.033461537, -0.0016599204, -0.023319192, -0.014817119, 0.00350608, -0.010935143, -0.019204844, -0.014776112, 0.0015633837, 0.0077844546, 0.026640741, -0.030044304, -0.0043330505, -0.012739441, -0.02703714, -0.0038785585, -0.011427224, 0.024836443, -0.012274697, -0.014584746, 0.0040528374, -0.009041996, -0.017701263, -0.007921144, 0.0039537377, -0.006079256, 0.02501414, 0.021842947, 0.013224688, -0.017783275, 0.015937971, -0.008174019, 0.008358549, 0.047376506, -0.0024091487, -0.010053497, -0.027747925, 0.0108873015, 0.0018367623, 0.010477234, -0.023018476, -0.0099099735, -0.027187498, -0.013545908, -0.024152996, 0.009479402, 0.017031485, 0.012165346, -0.013573246, 0.01887679, -0.011762112, 0.0047191973, -0.0048832246, -0.0059699044, 0.015199848, 0.006479072, -0.029251507, -0.017332202, 0.006902809, -0.0035641731, -0.030536385, 0.009083003, -0.04844268, 0.0132656945, -0.0076135932, -0.0016240395, 0.011912471, 0.032832764, 0.008139847, 0.014885463, 0.0029747004, -0.00727187, -0.007914309, -0.0089531485, 0.01849406, -0.0013122171, -0.026599735, 0.016512066, -0.003089178, -1.4544594E-4, -0.024248678, -0.016525734, -0.011488734, 0.0147351045, 0.0039058963, 0.033844266, 0.009554581, -0.026326356, -0.025355862, -1.6530861E-4, 0.03608597, -0.039093137, 0.0061065936, 0.020981805, 0.0042886264, -0.018207012, -0.022526395, -0.17529033, 0.0015847414, 7.4068503E-4, -0.023701921, 0.02016167, 0.011112839, 0.023373868, 0.016115667, -0.0028943955, -0.0073538832, 0.012684765, 0.025273848, -0.041362178, -0.0057785395, -0.007832296, 0.01217218, -0.009807456, 0.039612554, 0.015637254, -0.020626413, 0.019122832, -1.207778E-4, -0.0063526346, 0.012773613, 0.015664592, 0.004315964, 0.01607466, 0.0046508526, -0.0215559, -0.019163838, -0.0123157045, -0.010053497, 2.0001487E-4, 0.023701921, 0.00701216, 0.0060314145, -0.024385368, -0.0062193624, -0.011393052, -0.006099759, 0.03633201, 0.016156673, 0.03914781, 1.3551461E-4, 0.004575674, 0.028212668, 0.011475066, -0.011762112, 0.00981429, -0.016553072, -0.009964649, -0.025314854, 0.03316082, -0.012643759, 0.015363876, 0.032559387, -0.012151677, 0.0030755089, 0.02232136, 0.0036632728, -0.01013551, -0.009534078, 0.025027808, 0.0022143663, -0.007463235, -0.046337668, -3.2186054E-4, 0.009096672, -0.04275641, 0.016744437, -0.020722095, -0.0010251696, 0.0142703615, -0.00564185, 0.010019325, -0.009089838, -0.04144419, -0.0052351994, 0.008584087, 6.595258E-4, -0.017291194, 0.03225867, -0.0024655329, 0.009923642, 0.024713423, 0.004387726, 0.010784784, -0.015473227, -0.008105675, -0.012602752, -0.014379713, -0.019464554, -0.014776112, -0.023168834, 0.0020264187, 5.441942E-4, -0.0016214766, 0.012199518, 0.013204184, -0.0046508526, -0.022608407, -0.018562404, -0.025629241, 0.008973652, 0.03124717, 0.013026489, 0.01109917, 0.014762443, 0.024576733, -0.01160492, 0.0030208332, 0.0012848793, 0.030973792, 0.015760275, -0.013293033, -0.0050609205, -0.0054436508, -0.021692589, 0.008782286, -0.0019990809, 0.037698906, -0.020831447, 0.001059342, -0.010709605, 0.0057477844, -0.017824283, -0.100657985, -0.012185849, 0.0025697586, 0.043139137, -0.034144983, 0.012548076, -0.013416053, 0.026381033, 0.0153092, 0.036632728, 0.01192614, -0.030591061, 0.019491892, -0.016484728, 0.023633577, 0.011379383, -0.014694098, -0.007558917, -0.013867128, 0.023045814, -0.010299537, -0.001170402, -0.01198765, -0.027652241, -0.0152408555, 0.0027354942, -0.027310519, 0.017263856, 0.017045153, 0.021323528, 0.015473227, -0.023141496, 0.023947962, -0.040897433, -0.010244862, -0.010265365, -0.017810613, -0.007005326, 0.020448716, -0.061838232, 0.00650641, -0.009130844, 0.005973322, -0.030126318, -0.006335548, -0.0071351808, -0.034992456, 0.030044304, -0.021624245, -0.012411387, -0.013614252, -0.0077844546, -0.019450884, -0.00164198, 0.004503912, 0.017509896, 0.009663932, 0.013696266, -0.005908394, -0.031219833, 0.0089531485, -0.012698434, -0.03332485, 0.004606429, 0.001542026, 0.0076614344, 0.01345706, -0.022936461, 0.02971625, -0.0020486307, -0.02475443, 0.023893287, -0.012103836, 0.010320041, -0.020571737, 0.008584087, -0.018289026, -0.021801941, 0.02411199, -0.030044304, -0.0026756928, -0.024945794, -0.0014335288, -0.019942967, 0.018398378, 0.0043364675, 0.02716016, 0.0038785585, 0.0059152287, -0.015022152, 0.01608833, 0.012397718, 0.008057834, -0.0016411257, 0.020257352, 0.03127451, -0.008324377, 0.0010132093, 0.008836962, 0.005535916, -0.010415724, -0.020312028, -0.07479638, 4.8524694E-4, 0.0072513665, -6.834464E-4, -0.004404812, -0.006800292, 0.0034872852, -0.011748444, -0.010709605, 0.011768947, -0.017537234, 0.037726242, -0.007818627, -0.002853389, 0.0113520445, 0.02692779, 0.012438725, -0.02166525, -0.006694358, -0.004377474, -0.01504949, -0.0046952767, 0.04669306, 0.008645597, 0.008092006, 0.02908748, 0.0089531485, 0.024125658, 0.0070941737, -0.0132861985, 0.030317683, -0.026804768, -5.087404E-4, 0.007066836, 0.003738452, -0.022020644, -0.021856617, -0.002745746, 0.020106994, 4.235232E-4, -0.018220682, -0.035511877, 0.0012626672, -0.012261028, 0.0026056394, 0.015008483, -0.016621416, 0.009499906, 0.019587575, 0.003711114, 0.04169023, -0.0014087539, 0.0018230933, -0.022922793, 0.019819947, -0.019806277, 0.04283842, 0.017154505, -0.0059528183, -0.007640931, 0.04300245, 0.018835783, 0.037534878, -0.018849453, 0.0047738734, -0.0019170672, -0.0010243154, -0.008044165, -0.01217218, -0.03622266, 0.0021477304, -0.0040562544, 1.8218119E-4, 0.042428352, 0.00411093, 0.009458899, -0.01442072, 0.019191176, -0.011064998, 0.01608833, 0.0039981618, -0.015951639, -0.042483028, 0.025178166, 0.022786103, 0.015978977, -0.007927978, 0.009486237, -0.024002638, 0.025916288, -0.011741609, -0.0035094973, 0.020940797, 0.009766449, 0.019204844, 0.040760744, 0.0014822244, -0.00558034, -0.0019187758, 0.027501883, -0.012903469, -0.0036154315, -0.025711253, -0.025396869, -0.019437216, -8.073211E-4, -0.025068814, -0.019819947, 0.015131503, 0.008666101, 0.023947962, 0.008187688, 0.018083991, 0.01607466, -0.032450035, 9.277785E-4, -0.026845776, -0.013252026, 3.6094515E-4, 0.03316082, 0.016662424, 0.002149439, 0.048798073, -0.016101997, 0.04073341, -0.007230863, 0.028868776, -0.018767439, 0.0033078806, -0.0073812213, 0.0066396818, -0.015199848, -0.018535066, 0.009923642, -2.9238692E-4, 0.010367882, 1.4864959E-4, 0.032614063, -0.009206023, 0.06429864, 0.010115007, -0.0075315796, 0.012363546, -0.009493071, -0.011393052, 0.02230769, -0.007627262, -0.01555524, 0.012773613, 0.0046611046, -0.010846294, 0.022895455, -0.022417042, 0.0011943226, -0.0031045554, 0.005833215, 0.0030191245, -0.026230674, -0.0142840305, -0.005272789, -0.015760275, 0.024809105, 0.0039947443, -0.015022152, -0.0077366135, 0.012035491, -0.020476054, -0.0050575035, -0.030645737, 0.01116068, -0.022171002, 6.78107E-5, 0.0031746086, 0.02590262, -0.008666101, -4.4552164E-4, 0.00912401, 0.020052318, 0.013381881, -0.008392722, 0.015199848, -0.014407051, -0.013190516, 0.0094178915, -0.010689102, -0.0057922085, -0.009499906, -0.030044304 ], + "id" : "5e8d276a-7390-4343-8eff-6c517e1033be", + "metadata" : { + "source" : "movies.csv" + } + }, + "6d80dcdf-9517-48dd-be38-4d22e9558b75" : { + "text" : "Reed-Granville Saxton-Judith Sharp-Ashley McGuire-Penelope McGhie-Bob Yves Van Hellenberg Hubar-Tony Kirwood-David Ryall-James Phelps-Oliver Phelps-George Harris-Andy Linden-Domhnall Gleeson-Frances de la Tour-Evanna Lynch-Matyelok Gibbs-Eva Alexander-Matthew Lewis-Jon Campling-Devon Murray-William Melling-Simon Grover-Freddie Stroma-Isabella Laughland-Jessie Cave-Anna Shaffer-Josh Herdman-Amber Evans-Ruby Evans-Katie Leung-Georgina Leonidas-Louis Cordice-Scarlett Hefner-Afshan Azad-Steffan Rhodri-Sophie Thompson-Daniel Tuite-Daisy Haggard-George Potts-Rose Keegan-Ned Dennehy-Kate Fleetwood-Daniel Hill-Rade ��erbed�_ija-Jamie Campbell Bower-Hazel Douglas-Adrian Rawlins-Geraldine Somerville-Miranda Richardson-Michael Byrne-Samuel Roukin-Toby Regbo-Lewis Young,london england-corruption-witch-isolation-radio-magic-teleportation-bravery-shelter-friendship-road trip-tension-attack-escape-werewolf-road movie-wizard-based on young adult novel,/iGoXIpQb7Pot00EEdwpwPajheZ5.jpg,/vcrgU0KaNj5mKUCIQSUdiQwTE9y.jpg,12445-767-675-674-672-673-671-1865-58-22-285-70160-121-585-12155-12-10138-8587-425-557-101299\r\n453395,Doctor Strange in the Multiverse of Madness,Fantasy-Action-Adventure,en,Doctor Strange with the help of mystical allies both old and new traverses the mind-bending and dangerous alternate realities of the Multiverse to confront a mysterious new adversary.,243.528,Marvel Studios-Kevin Feige Productions,5/4/22,200000000,952224986,126,Released,Enter a new dimension of Strange.,7.38,7408,Benedict Cumberbatch-Elizabeth Olsen-Chiwetel Ejiofor-Benedict Wong-Xochitl Gomez-Jett Klyne-Julian Hilliard-Sheila Atim-Adam Hugill-Michael Stuhlbarg-Rachel McAdams-Hayley Atwell-Anson Mount-Lashana Lynch-John Krasinski-Patrick Stewart-Charlize Theron-Bruce Campbell-Ross Marquand-Andy Bale-Ako Mitchell-Momo Yeung-Daniel Swain-Topo Wresniwiro-Eden Nathenson-Vinny Moli-Charlie Norton-Aliyah Camacho-Ruth Livier-Chess Lopez-David K.S. Tse-Yasmin Chadwick-Anthony Knight-Nuakai Aru-Victoria Grove-Joshua Peace-Nina Jalava-Joshmaine Joseph-Yenifer Molina-Kevin Dalton-Orphee Sidibe-Gregory Fung-Cecilia Appiah-Victoria Sterling-Jordan Alexandra-Bobbie Little-Gabriella Cooper-Parsons-Andr�� Layne-Michael Waldron-Bridget Hoffman-Scott Spiegel-Jessica Pennington-Andrew Morgado-Audrey Wasilewski-Christian Rummel-Richie Palmer,magic-superhero-based on comic-alternate reality-aftercreditsstinger-duringcreditsstinger-marvel cinematic universe (mcu)-multiverse,/9Gtg2DzBhmYamXBS1hKAhiwbBKS.", + "embedding" : [ 0.004734281, -0.020839045, -0.0144491345, -0.038394198, -0.01849927, 0.041240238, -0.0067011965, -5.7681947E-4, -0.008483393, -0.037217468, 0.022453627, 0.027311053, 0.017609883, 0.0012306052, -2.6959574E-4, 0.0015179459, 0.019922292, -0.005993107, 0.0025159419, -0.034453522, -5.7938497E-4, -0.005712608, -0.016652081, 0.01277298, -0.0036259666, 0.0073545547, 0.028980367, -0.0074161277, -0.011945166, 0.0038072648, -0.002909325, -0.013806039, 2.2314873E-6, -0.02947295, -0.020633802, 0.012711408, 0.0041835443, -0.03740903, 0.029773975, -0.01097368, 0.0095575005, 9.432644E-4, -0.011267862, -8.8938803E-4, -0.013559747, 0.013121895, 0.0093385745, -0.014982767, -0.0048882132, 0.036122836, 0.034727182, 0.029500317, -0.0077924076, -0.012307762, -0.0034275646, -0.010398999, -0.0058870646, 0.01692574, 0.0044195745, 0.009838, 0.013333979, -0.013210833, -0.021482142, -0.013566588, -0.011664666, 0.002199525, -0.008647588, -0.036697518, -0.0017616724, -0.0027399992, 0.02662691, 0.002724606, 0.018294027, -0.015803741, 0.019457074, -0.038531028, -0.027283689, 0.0015649808, -0.018458223, -9.687595E-6, -0.006636203, -0.006143619, -0.010398999, 0.009133331, 0.01480489, 0.010139024, -0.007833456, 0.025121791, -0.021358995, 0.010836851, -0.00401935, 0.041513897, 1.5895673E-4, 0.0022696499, 0.0037388504, 0.030731777, -0.014859621, 0.031799044, -0.032428455, -0.037682686, -0.0038483136, 0.0044572023, -0.019566536, -0.01314926, -0.007881346, -0.0060717836, -0.0013930895, 0.0010099686, 0.01509223, 0.019908609, -0.0074777007, -0.007881346, 0.00931805, -0.03149802, 0.0144765, -0.018061418, -0.0071219457, -0.021468459, -0.02762576, -0.015817424, 0.03324943, 0.026558494, -4.54101E-4, -0.022221018, 0.05051724, 0.04082975, -0.011616776, -0.023438795, -0.0059520584, -0.0062838686, 0.041267604, -0.0041356543, 0.018622417, 0.015160645, -0.018937124, 0.0320727, -0.020975875, 0.013936026, -0.024930231, -0.022070507, 0.015188011, 0.030458119, -0.03292104, -0.016734177, -0.024396598, 0.0064412216, 0.020373827, -0.0138744535, 0.0139565505, 0.020934826, 0.011746763, 0.020319095, 0.013060321, 0.023014626, 0.02928139, -0.014353354, -0.0015932018, -0.01934761, -0.01802037, -0.027735224, -0.0028289382, -0.013552905, 0.004768488, -0.019758098, 0.0012699434, 0.019388659, 0.018704515, -0.012362493, -0.003855155, 0.025272302, -0.023219869, 0.028980367, -0.038722586, 0.008326041, -0.0018181144, 0.006738825, 0.01206147, -0.007402445, -0.04602925, -0.0067764525, 8.047251E-4, 0.0030820717, 0.018061418, 0.038722586, -0.018813977, 0.012855078, 0.02724264, -0.0092154285, 0.012711408, -0.024861816, 3.7478298E-4, 0.02947295, -0.007525591, -0.011767288, -0.62525344, -0.019306561, 0.0062701856, -0.01588584, 0.01944339, 0.018088784, 0.0012750746, 0.0010031271, -0.027201591, -0.014640695, -0.03018446, 0.021605287, 0.027365785, -0.016310008, -0.020948509, -0.013203992, 0.009277001, -0.020565389, 0.033824112, -0.0024064789, -0.026900567, 0.027858369, 0.020743266, -0.005066091, -6.5207534E-4, 0.0049566277, -0.0060752044, -0.020428559, 0.002084931, 0.006427539, -0.013306613, 0.0038483136, 0.008353406, 0.007874505, 0.045673497, 0.0139018195, -0.016118448, 0.051009823, 0.021892628, 0.023904014, -0.015913203, 0.008763893, 0.005086615, -0.0089691365, -0.016487885, 0.020975875, 0.0092838425, 1.5820845E-4, -0.0028785386, -0.0062565026, -0.0014059172, 0.0016641818, 0.0016479334, 0.015037499, 0.009564342, 0.004005667, 0.01390866, -0.02502601, 0.017897224, 0.011083143, -0.030978069, 0.028542515, -0.004190386, 0.008490235, 0.0089828195, 0.032893673, 0.005760498, -2.5911978E-4, 0.0023021467, -0.008928088, 0.01490067, 0.009085441, -0.013108212, 0.0135050155, 0.00875021, 0.009345416, 0.02606591, 0.012615627, 0.009085441, 0.011644142, -0.007812932, -0.008223418, 0.0044948305, 0.0053397487, 0.03084124, -0.005527889, -0.040282436, 0.0050831945, 0.012731932, -3.6003112E-4, 0.010576876, 0.0031111478, 0.01457228, 0.0092017455, -0.017158348, -0.00685855, -0.015899522, 0.015584815, 0.019511806, -0.06288657, -0.0021533452, -0.017445689, 0.036724884, -0.016501568, 0.011007887, 0.01849927, -0.010652132, -0.025504911, 0.020962192, -0.023425112, -0.021687385, 0.0024800242, -0.016583666, -0.009030709, -0.017322542, -0.035383962, 0.0140933795, 0.0138881365, -0.008202895, -0.012745614, 0.0067627695, 0.0139975995, 0.012971383, -0.0052918587, 0.010843692, 0.014257574, 0.0061504603, -5.2166026E-4, -0.0041082883, 0.022686236, -8.102838E-4, -0.018348759, 0.016542617, -0.020455925, 0.015981618, 0.019566536, 0.0038517343, -0.009235953, 0.0070056412, -0.016501568, -0.019470757, 0.0019788884, -0.0035780764, -0.011869909, -0.0027177646, -0.010590559, -0.027215274, -9.3642296E-4, 3.873969E-4, -0.01986756, -0.0013939447, 0.010720546, -7.517039E-4, 0.01986756, 0.0029931327, -0.0019275775, -0.03122436, -0.017746711, 0.0053842184, -0.016255276, 0.0140386475, 0.019292878, -6.366821E-4, -0.03409777, 0.0070193238, -0.0043580015, -0.025573326, 0.006892757, -0.0090785995, -0.018061418, 0.007340872, -0.02398611, 5.3748116E-4, 0.009037551, -0.020113852, 0.021400044, 0.0016770095, 0.02317882, 0.003032471, -0.0057194494, -0.0092701595, -0.015160645, -0.016118448, -0.00794292, 0.02312409, 0.029965535, 0.008866514, -0.024150306, 0.019922292, -0.0023449056, -0.015064865, -0.02308304, 0.0069303853, -0.0048232195, -0.011322593, 0.014353354, 0.013422918, -0.0030512852, -0.005931534, -0.012998749, 0.018649783, 0.0201549, 0.021509508, -0.009865366, 0.013258724, -0.026544811, 0.0075940057, -0.029199293, -0.0048745307, -0.0074434937, 0.023370381, -0.018909758, -0.018978173, 0.010734229, 0.00714247, 0.024752352, -0.0023004364, 0.002772496, -0.01182202, 0.0028409106, -0.0038106856, -0.010214279, 0.017021518, 0.020141218, -0.04148653, 0.0035643936, 0.012930334, -0.027571028, 0.0046042935, -0.0067559285, -0.004809537, -4.8702548E-4, 0.008326041, 0.010248487, -0.0072929817, 0.008524442, 0.030540217, -0.023055675, 0.052569672, -0.021400044, -0.0028255174, 0.025860667, 0.022823066, 0.0022901741, -0.0010587139, -0.0068140808, 0.024287134, 0.007723993, -0.0019429708, 0.039707754, -0.0070330068, 0.034398794, -0.0036635946, 0.0014974215, 0.014941718, -0.019894926, -0.0021157174, 0.016829958, 0.015297474, 0.01588584, 0.0069098608, -0.029746609, 0.014736475, 0.0043203733, 0.0044777268, 0.010125341, -0.012766139, 0.010022719, -0.007785566, -0.026325885, -0.03070441, -0.0096806465, 0.0022491254, -0.0023859544, -0.0077992487, -0.007347713, -0.008141321, 0.0056407726, -0.004946366, 0.027516298, -2.5014038E-4, -0.023356698, 0.0076761027, 0.025463864, -0.011377325, -0.023356698, 0.01584479, -0.0039338316, -0.01698047, -0.022617823, -0.0035370279, 0.028870903, -0.0036088629, -0.0010647001, -0.013279247, 0.0035438691, 0.020729583, -0.02190631, 0.0136281615, 0.023767184, -0.004573507, 0.016611032, -0.007546115, -0.0089417705, 0.0263943, -0.0116373, -0.01509223, -0.012458274, -0.003415592, -0.004659025, 0.010932631, -0.0027143438, -0.033933572, 0.011958849, -0.0030290503, -0.015010133, -0.020551706, -4.6008726E-4, 0.013409235, -0.030540217, -0.013333979, -0.029117195, -0.01588584, 0.0036396494, 0.087679975, 0.0413497, 0.0059178513, 0.009003343, 0.001915605, 0.0046692872, 0.0021738696, 0.0010920658, -0.012417225, -0.024410281, 0.028487783, -0.009386464, 0.0160774, 0.01830771, 0.005267914, -0.004156179, -0.020962192, -0.007176677, -0.007908712, -0.020182267, -0.030293925, -0.010871058, 0.025299668, 0.038284734, 0.006735404, -0.004980573, 0.0071835187, -0.004094606, 0.0045256168, 0.011466264, -0.0042998493, 0.0025296248, 0.0043306355, 0.019320244, 0.0031744312, -0.0076761027, 0.033742014, 0.0057160286, 0.028214125, 0.010946314, -0.007080897, 0.011336276, 0.0072245672, -0.015078547, 0.0165563, -0.027174225, -0.00813448, 0.02256309, 0.027885735, -0.028706709, 0.023260918, 0.0097764265, -0.019197099, -0.018389808, 0.016091082, 0.0028699867, 0.0046008728, -0.017035201, -0.022398895, 9.7319577E-4, 8.1798044E-4, -0.024068208, 0.020319095, -0.0087228445, -0.010364791, -0.023247235, -0.013778673, -0.006721721, -0.0061230944, 0.0010236514, 0.0015316288, -0.026421666, 0.0015829396, -0.0019840195, 0.022809383, -4.1796963E-4, 0.023616673, 0.0015538635, 0.016638398, 0.007402445, -0.028378319, -0.03116963, 0.0048471647, -0.024902865, 0.004015929, 0.007176677, 0.0089691365, 0.030211827, -0.012807188, 0.02052434, 0.004217752, -0.002705792, -0.019320244, -0.013012431, 0.024601841, 0.0207159, 0.02454711, 0.0057057664, -0.002237153, 0.0032513973, -2.362437E-4, -0.021728434, -0.007997651, -0.02260414, -0.0092838425, -2.358161E-4, -0.0145585975, -0.0029965534, -0.01944339, -0.038476296, -0.021071656, -0.027256323, 0.015434303, -0.008989661, 0.010672656, -0.0020165164, 0.025669107, 0.012690883, -0.02908983, -0.0136418445, 0.0160774, -0.0207159, 0.022316799, 0.02029173, 0.0039201486, 0.044524133, -0.006649886, -0.017993003, -0.0022542565, 0.026873201, 0.004156179, 0.016296325, -0.03177168, 0.0038072648, 0.0042074895, -0.026161691, 0.0037285883, -0.0077992487, -0.008490235, 0.019607585, -0.015530083, 0.0039509353, 0.0053226454, 0.013361345, -0.01570796, -0.032838944, 0.020538023, -0.0072314087, 0.017445689, 0.028186759, 0.0018249558, 0.010132182, -0.023876648, -0.005226865, -0.023849282, -0.029883437, -0.022535725, -0.014695426, 0.029308757, 0.015571132, 0.0351924, -0.0058254916, 0.019949658, 0.010611083, 0.0057399734, 0.020592753, -0.011014729, -0.013949709, -0.02610696, 0.0027006608, -8.064355E-4, 0.024779718, 0.0016428023, -0.011172082, 0.0097764265, 0.028132027, 0.0045564035, 0.025614375, 0.016022667, -0.022344165, -0.03259265, 0.010939472, -0.015954252, 0.0038688378, -0.020031756, -0.002274781, 0.013128736, 0.011137875, -0.018909758, -0.022590457, 0.021249533, -0.012540371, 0.027283689, -0.017199397, 0.03201797, -0.032838944, 0.0023620094, -0.017883541, -0.019115001, -0.007956602, -0.0068893363, 0.016200544, -0.0014127587, -0.0071561527, -0.008291833, 0.026873201, -0.010433205, -0.020223316, 0.026517447, -0.018321393, -0.012656676, -0.021660019, -0.0025193626, -0.037244834, -0.0019805988, -0.012560896, -0.015543766, 0.010015878, -0.028953, -0.03051285, 0.0137649905, 0.002397927, 0.046850223, 0.010713705, 0.033276796, 0.037846882, 0.0217558, -0.015995301, 0.006030735, -0.0035096619, -0.010700022, 0.032784212, 0.023206186, -0.033030502, -0.018335076, -0.0071561527, -4.630804E-4, -0.03978985, -0.04069292, 0.023028309, 0.02346616, 0.022522042, -0.020223316, -0.0038962038, -0.019032903, 0.0052200234, -0.003571235, 0.0016624714, -1.5179459E-5, -0.021509508, -0.026667958, -5.443226E-4, -0.00931805, 0.014161794, 0.011815178, -0.016159497, 0.0072177257, -0.012075153, 0.004867689, 0.0092975255, -0.029308757, 0.03844893, -0.02421872, 0.020839045, 0.010570034, 0.0094617205, 0.021961043, -0.002563832, 0.012656676, 0.0331126, -0.0017283204, 0.034426156, 0.021673702, -0.008326041, 0.01763725, 0.015160645, -0.012663517, -0.015338522, -0.024601841, 0.0037114846, 0.01574901, 0.004487989, 0.00406724, 0.006253082, -0.012745614, -0.009071758, 0.010522145, -0.005312383, 0.013559747, -0.036806982, 0.0045564035, -0.0025809356, 0.008161846, -0.003680698, -0.009755903, 0.0025706736, -0.011418374, 0.007682944, -0.014257574, -0.0061983503, -0.013320296, -0.023343015, -0.03604074, -0.030020267, -0.006403594, -0.015188011, 0.00931805, -0.009619074, 0.004672708, 0.005804967, -0.014668061, -0.006489112, -0.007696627, -0.011835703, -0.0028220967, 0.012328287, -0.0022935949, -0.0039201486, -0.0143396715, 0.0141891595, -0.001631685, -0.0074434937, -0.011869909, -0.0018454802, 0.03557552, -7.0937246E-4, 0.01045373, 0.011165241, -0.02275465, 0.009578025, 0.0094617205, 0.018061418, 0.0140386475, -0.0059246924, -0.03297577, -0.014544915, 0.006492533, 0.021304265, -0.012889285, -0.0013392131, 0.011562045, 0.01688469, 0.041267604, 0.02133163, -0.020565389, -0.0036293874, -0.004050136, 0.0028460417, -0.019060269, 0.0028357795, 0.010528986, 0.009701171, 0.016816275, -0.003254818, -0.029773975, 0.003354019, -0.029308757, -0.016255276, -0.01149363, 0.029035099, 0.028706709, 0.012608786, -0.0052987, 0.0097901095, 0.017678298, -0.005808388, -0.019279195, -0.012348811, 0.03688908, 0.015406937, 0.028378319, 0.020236999, -0.037354298, 0.004217752, 0.017254127, 0.015051182, 0.018211931, 0.015105913, -0.019566536, -0.012239347, -0.0142986225, 1.9733296E-4, -0.008934929, -0.0046898113, 0.031525385, -0.028515149, -0.014969084, 0.0063591246, 0.011206289, -0.007265616, 0.020948509, 0.011274704, -0.017281493, 0.0020644064, -6.2043365E-4, -0.016665764, 0.0024560792, -0.038230002, 0.032620016, 0.014367037, -0.0017086512, 0.04121287, 0.024588158, -0.0041801236, 0.013279247, -0.0030068157, -0.0024372654, -0.013142418, 0.01381288, -0.004720598, 0.017705664, -0.023917697, -0.0072177257, -0.01944339, 0.0094617205, -0.0052473894, 0.0093522575, -0.003131672, 0.030403387, 0.015899522, -0.04676813, 0.0035370279, -0.017185714, 0.008811783, -0.021112703, 9.039261E-4, -0.023520892, -0.0014307175, -0.0093659405, 0.005274755, -0.021400044, -0.028624611, -0.002373982, 0.006615679, 0.004891634, 0.0105974, 0.19254567, -0.0038859416, 0.0018232454, 0.051912896, -0.0062257163, 0.0037149054, 0.038722586, 0.014859621, -0.004994256, 0.0068003978, 0.0024954176, 0.0059383754, 0.0017702243, 0.005090036, 0.0062565026, -0.018950807, -0.03357782, -0.024656573, -0.007881346, -0.019990707, 0.004238276, 0.013169784, -0.005148188, -0.02729737, 0.0013554615, -0.012547213, -0.0039851423, -0.0027263165, 0.009277001, 0.015530083, -0.0027588133, -0.024957597, -0.009879049, 0.017432006, -0.010734229, -0.0050216215, -0.007375079, 0.0055928826, 0.01262931, 0.018512953, -0.016871007, 0.004426416, -0.019621268, -0.001683851, -0.0053329077, 0.004169862, -0.02577857, -0.0026151428, -0.0141070625, 0.006615679, -0.050216217, -0.005117402, 0.014777524, 0.02369877, -0.0053944807, -0.0018677148, 0.006003369, 0.011199447, -0.014736475, -0.0140796965, 0.008059224, 0.027639443, -0.035493422, 0.0140523305, 0.010953155, 0.020250682, -0.03973512, -0.0138470875, 0.011466264, -0.014024965, -0.019676, -0.024519743, 8.427807E-4, 0.0059657414, -0.012725091, -0.021974726, 0.013012431, 0.0050216215, 0.01102157, 0.026941616, -0.025135474, -0.011452581, 0.0051242434, -0.015803741, -0.028104661, -0.018581368, 0.009892732, -0.012246189, -0.014613329, -0.017869858, -0.012841395, -0.021742117, -0.015776375, 0.003466903, -0.010980521, 0.010734229, 0.027926784, 0.008962295, -0.02086641, -0.0014076276, -0.031826407, 0.020182267, 0.005794705, 0.0022149184, -0.022193652, -0.014859621, -0.002710923, -0.001347765, 0.033468354, -0.013231358, -0.012882443, -0.017938273, -0.008079749, -0.013347662, 0.011568886, 0.049696267, 0.0013580271, -0.0020815101, 0.03765532, -0.012814029, -0.0014272968, -0.029883437, 0.02213892, -0.014668061, -0.003742271, -0.021208484, -0.008825466, 0.0027588133, -0.013231358, -0.024957597, 0.010563193, -0.030677045, 0.02610696, -0.010364791, 0.015502717, 0.012471957, 0.023616673, -0.015571132, 0.008380772, -0.008305516, 0.0016351057, -0.010604242, 0.015913203, 0.0045016715, -0.011890434, -0.026380617, 0.0033454674, 3.9530732E-4, -0.020428559, -0.035821814, -0.028624611, 0.0046487628, 0.010460571, 0.006796977, 0.027995199, 0.006167564, -0.011062618, -0.025313351, -0.0028306483, 0.050106753, -0.034727182, 0.029582415, 0.015201693, -0.005733132, -0.017623566, -0.00600679, -0.17514102, 0.02123585, 0.016734177, -0.0238356, 0.019429708, 0.005869961, 0.03448089, 6.6875137E-4, 0.0043785255, -0.019949658, 0.026490081, 0.0089554535, -0.038749952, 0.0015974777, 0.0029691877, 0.027488932, -0.010186913, 0.026613226, 0.03751849, -0.0060752044, 0.049969923, -0.017322542, -0.012506164, -0.0027023712, 0.031388555, -0.025285985, 0.017514102, 0.0015632705, -0.0025176522, 0.0022782017, -0.027215274, -0.016214227, 0.025108108, -0.02161897, -0.0061504603, 0.008524442, -0.0042245933, -0.018403491, -0.012088836, -0.012752456, 0.05248758, -0.0016556301, 0.018458223, 0.018718198, 0.012950858, -0.0025535699, 0.03751849, -0.015858473, 0.020496974, -0.017240444, -0.008503918, -0.03954356, 0.040090878, -0.02468394, -0.0022628084, 0.01428494, 0.021728434, 0.0068072393, -0.0036293874, -0.010665815, -0.022002092, -0.0051823957, 0.0035746556, -0.0027878894, 0.010604242, -0.0029862914, -0.012834554, -0.0037730576, -0.032948405, 0.018526636, -0.032346357, 0.031990603, 0.016487885, 0.011048936, 0.010460571, -0.006646465, -0.046713397, 0.008483393, -0.010193755, 0.0016735889, -0.015530083, 0.052569672, -0.007922395, 0.015379571, 0.0050216215, -0.021222167, 0.0140796965, 0.0075803227, 0.014914353, 0.0035472899, 0.0028135448, -0.020729583, -0.030348657, 0.005774181, 0.0069782753, 0.009441196, -0.0047034943, 0.006116253, 0.01626896, -0.012793505, 0.011520996, -0.015201693, -0.017883541, 0.019333927, 0.02795415, 4.994256E-4, 0.010371633, 0.01782881, 0.020797998, 0.0067901355, -0.00785398, -0.0012921782, 0.02908983, 0.0034001989, -0.02662691, 0.01182202, -0.016474202, -0.012143567, -0.007682944, 0.018102467, 0.05954795, 0.009427513, -0.0066943555, -0.014982767, -0.009796951, -0.009058075, -0.076514736, -0.006229137, 0.010296376, 0.038667854, -0.029856073, 0.023753501, -0.0031248305, -0.0053944807, -0.013032955, 0.035794448, 0.0057810224, -0.020305414, 0.013046638, 0.013135577, -0.0070740557, 0.0018574527, -0.013799197, -0.027789956, -0.012944017, 0.022918845, -0.013511857, 0.0023534575, 0.0042724833, -0.009625915, -0.018950807, 0.022645187, -0.023821916, 0.030622315, 0.011753605, 0.008544967, -0.0095575005, -0.013552905, 0.009673805, -0.03902361, -0.018389808, -0.03959829, -6.760204E-4, -0.020975875, 0.002705792, -0.04277272, 0.01740464, 0.016966786, 0.0069919582, -0.017473053, -0.018526636, 0.002146504, -0.029445585, 0.039625656, -0.0045290375, -0.013840246, 0.0027913102, -0.002748551, -0.028788807, -0.0067764525, 0.017883541, 0.016378423, 0.030978069, 0.0013913792, -0.0053226454, -0.03136119, -0.014681744, -0.011329435, -0.02710581, 0.0096395975, -0.0017146375, 0.0253544, 3.7713474E-4, -0.016296325, 0.02795415, -0.030458119, -0.022303116, 0.017158348, -0.030157095, -0.0063214963, -0.01584479, 0.015502717, -0.019115001, -0.013580271, 0.023137772, -0.031662215, -0.0053979014, -0.024396598, 0.010084292, -0.0227957, 0.018731881, 0.014599646, 0.01934761, 0.011165241, -0.0070877383, -0.053034894, -0.013395552, 0.021208484, -0.009974829, -0.0028836697, 0.0061846673, 0.02364404, 0.001603464, -0.0059144306, -0.008962295, 0.024177672, -0.0069372267, -0.010871058, -0.071588896, 0.035630252, -0.016829958, -0.004402471, -0.01594057, -0.016857324, 0.008887039, -0.006232558, -0.018813977, 0.016091082, -0.013546064, 0.012800346, -0.0061744056, -0.01069318, 0.0051994994, -0.0036841189, 7.333175E-4, -0.014914353, -0.009755903, 0.0034344061, -0.010515303, 0.029527683, 0.027228957, 0.0136144785, 0.0037730576, 0.022193652, -0.007361396, -0.009625915, -0.021687385, -0.01428494, 0.02662691, -0.02724264, 8.107114E-4, -0.0020182268, 0.003254818, -0.03836683, -0.014599646, -0.015803741, 0.014722792, 0.0093112085, -0.0088459905, -0.048163783, 0.011603093, 4.412733E-4, -0.0012690884, 0.023479844, -0.024902865, 0.022070507, 0.0027878894, 0.01570796, 0.034043036, 0.016186861, 0.0015778085, -0.027639443, 0.027256323, -0.020141218, 0.046959687, 0.010316901, 0.0013965103, -0.026503764, 0.019840194, -0.0015607049, 0.014627012, -0.03661542, 6.067508E-4, -0.0026288258, 0.012991907, -0.014503866, -0.0016539197, -0.024519743, -0.018102467, -0.0012767849, 0.02034646, 0.0548684, 0.014243891, 0.00288538, 0.00643096, -0.009550659, -0.017021518, 0.020620119, 0.016050033, 8.594567E-4, -0.03604074, 0.011315753, 0.004176703, 0.018595051, -0.025956448, 0.020360144, 0.008490235, 0.012608786, 0.0051550297, 0.013758149, 0.014004441, 0.0028460417, 0.0222347, 0.0048984755, -0.017254127, -0.008079749, 0.005633931, 0.016528934, -0.008647588, -0.0029760292, -0.008401296, -0.03333153, -0.02710581, 0.0033334948, -0.035931278, -0.020278048, 0.0046145557, 0.0142302085, 0.02468394, 0.013607637, -0.0135050155, 0.010050084, -0.037491128, 0.019853877, -0.005982845, -2.576232E-4, -0.0017112168, 0.04597452, 0.015242742, 0.013265564, 0.031279095, -0.0071082627, 0.05563464, -0.009153855, 0.02208419, -0.03385148, 0.0072792987, -0.0026236947, -0.003680698, -0.027831003, -0.020633802, 0.0017488447, -0.010816326, -0.012321445, 0.019580219, 0.034590352, -0.034562986, 0.07131524, 0.017486736, -0.012458274, 0.019073952, -0.012745614, 0.02360299, 0.011548362, 0.026873201, -0.028268857, -0.01045373, 0.0041835443, -0.013853929, 0.011958849, -0.02502601, 0.0073819207, 0.0014119035, 0.02520389, 0.017390957, -0.018882392, -0.02294621, -0.011076301, -0.01017323, 0.012902968, -0.008107114, -0.004327215, -0.015283791, 0.027557345, 0.006095729, -0.010576876, -0.044496767, 0.0038585758, -0.03253792, -0.0069645923, 0.0016120158, 0.022549408, -0.017007835, 0.00264935, 0.0037251676, 0.012656676, 0.014914353, -0.020606436, 0.003656753, -0.025614375, -0.020592753, 0.0138607705, -0.02341143, -0.014503866, -0.025860667, -0.01698047 ], + "id" : "6d80dcdf-9517-48dd-be38-4d22e9558b75", + "metadata" : { + "source" : "movies.csv" + } + }, + "6847413a-ad3d-403d-aaa9-ea9abba7064f" : { + "text" : "155,103,Jia Ling-Zhang Xiaofei-Shen Teng-Chen He-He Huan-Liu Jia-Ding Jiali-Qiao Shan-He He-Katherine Ackerman-Han Yunyun-Du Yuan-Xu Juncong-Feng Gong-Jia Wentian-Dong Ruoxi-Bao Wenjing-Ge Shanshan-Pan Binlong-Song Xiaofeng-Wang Xiaoli-Zhao Tingting-Wang Lin-Shi Ce-Bu Yu-Liu Honglu-Wei Xiang-Sun Jibin-Zhang Taiwei-Guo Yupeng-Zhu Tianfu-Wang Yu-Cao Hejun-Ji Qing-Guo Xiangpeng,,/3an3jssyu3BHkzqtSWvmqeOWfxj.jpg,/2jszhTgUZWAS9IsUTGhu5hBK2l.jpg,137562-25625-449924-233839-436969\r\n557,Spider-Man,Action-Science Fiction,en,After being bitten by a genetically altered spider at Oscorp nerdy but endearing high school student Peter Parker is endowed with amazing powers to become the superhero known as Spider-Man.,95.225,Marvel Enterprises-Laura Ziskin Productions-Columbia Pictures,5/1/02,139000000,821708551,121,Released,Go for the ultimate spin.,7.287,17969,Tobey Maguire-Willem Dafoe-Kirsten Dunst-James Franco-Cliff Robertson-Rosemary Harris-J.K. Simmons-Joe Manganiello-Gerry Becker-Bill Nunn-Jack Betts-Stanley Anderson-Ron Perkins-Michael Papajohn-K.K. Dodds-Ted Raimi-Bruce Campbell-Elizabeth Banks-John Paxton-Tim DeZarn-Taylor Gilbert-Randy Savage-Larry Joshua-Timothy Patrick Quill-Lisa Danielle-Natalie T. Yeo-Erica D. Porter-Kristen Davidson-Jason Padgett-Shan Omar Huey-Sally Levi-Evan Arnold-Jill Sayre-Jim Ward-David Holcomb-Octavia Spencer-Brad Grunberg-Shane Habberstad-Deborah Wakeham-Rachael Bruce-Mackenzie Bryce-Julia Barrie-Macy Gray-Myk Watford-Bill Calvert-Sylva Kelegian-Kristen Marie Holly-Ajay Mehta-Peter Appel-Scott Spiegel-Matt Smith-Sara Ramirez-Lucy Lawless-Jayce Bartok-Maribel Gonz��lez-Amy Bouril-Joseph D'Onofrio-Jim Norton-Corey Mendell Parker-Ashley Edner-William Joseph Firth-Alex Black-Laura Gray-Joe Virzi-Michael Edward Thomas-Jeanie Fox-Robert Kerman-Stan Lee-Una Damon-Rick Avery-Peter Aylward-Jillian Clare-Chris Coppola-Jesse Heiman-Leroy Patterson-Benny Urquidez-Scott L. Schwartz-Jophery C. Brown-Brian J. Williams-Mark De Alessandro-Tia Dionne Hodge-Loren Janes-Andray Johnson-Martin Pfefferkorn-Tammi Sutton-Lindsay Thompson-Sean Valla-Pete Macnamara-Al Goto-Joni Avery-Sam Raimi,new york city-adolescence-photographer-loss of loved one-photography-secret identity-hostility-superhero-spider-bad boss-villain-based on comic-teenage boy-teenage love-evil-super villain-taking responsibility,/gh4cZbhZxyTbgxQPxD0dOudNPTn.jpg,/jHxCeXnSchAuwHnmVatTgqMYdX8.", + "embedding" : [ 0.019144827, -0.020826558, -0.0013050233, -0.025979383, -0.020893827, 0.028575975, -0.0033735526, -0.010776533, -0.010648722, -0.050344303, 0.020934189, 0.01880848, 0.015593011, 0.017247835, 0.006383851, 2.1639149E-5, 0.01981752, -0.025791029, 0.024068937, -0.032208513, -0.012027741, 0.0013470666, -0.014355257, 0.010991795, -0.0028202632, 0.014489795, 0.03027116, -0.009410967, -0.018996835, 0.0016169845, 0.004759299, 0.0034307316, -0.01426108, -0.011913383, -0.0073996168, 0.023476966, 0.0070834514, -0.025602674, 0.016104257, -0.008025221, 0.016844219, 0.025804482, -0.005721249, 0.01102543, -0.018270327, -0.011799025, 0.010056752, -0.018754665, -0.006622657, 0.026948059, 0.01253226, 0.027661113, -0.022844635, -0.020355674, -0.014758873, -0.015297026, -0.0031868804, 0.008845906, 5.768338E-4, -0.010998522, 0.0034240047, -0.009935668, -0.042164363, -0.010964887, -0.019440811, -0.007850321, -0.011704849, -0.015054857, 0.0013243633, -0.0026470448, 0.03939287, 0.015458472, 0.012162279, -0.0022686552, 0.016548235, -0.01747655, -0.03761696, 3.540044E-4, -0.023584597, 0.012236276, 0.012007561, -0.016871126, -0.008119398, 4.427683E-5, 0.024378374, 0.011684668, -0.013312584, 0.03597559, -0.009767494, 0.0055631665, 0.02443219, 0.01218246, 0.008866087, 0.003059069, 0.009020805, 0.019373542, -0.012579349, 0.013077141, -0.029410115, -0.034065146, 0.0043556835, -0.008751729, -0.016036987, -0.011704849, -0.009969302, -0.0034425035, 0.009067894, -0.010561272, 0.02506452, 0.007574517, 0.0061080474, -0.003834347, 0.018162696, -0.03901616, 8.4086554E-5, -0.020463305, 0.022858089, -0.014691603, -0.023450058, -0.003558543, 0.017624542, 0.042756334, 0.0067336513, -0.017839804, 0.05502624, 0.039715763, 0.0041370587, -0.014247626, -0.0032558315, -0.011341595, 0.037159532, 0.0039688856, 0.047034655, 0.013272222, -0.029275576, 0.047384456, -0.034791652, -0.005364722, -0.03554507, -0.040253915, 0.026786614, 0.03414587, -0.02244102, -0.024203474, -0.016386788, -0.0034811834, 0.015216303, 0.0026789976, 0.008475925, 0.011146514, 0.022669736, 0.02314062, 0.010480548, 0.019158281, 0.021606881, -0.01286188, 0.0042009642, -0.017691812, 0.010588179, -0.016682772, -6.2350184E-4, -0.006467938, 0.014086179, -0.03323101, -0.01071599, 0.024055483, 0.015256665, -0.01625225, -0.0027361766, -0.005623709, -0.01067563, 0.026463721, -0.013749833, 0.0053209974, -0.008738275, -2.411182E-4, 0.011233964, -0.010177837, -0.03403824, -0.013157864, -0.004311959, 0.0017254561, 0.02279082, 0.017503457, 0.0030573872, -7.6350593E-4, 0.008523013, -0.023746043, 0.006242586, -0.023355883, 0.0041202414, 0.017557273, 0.0053344513, -0.016655864, -0.6466458, -0.016588597, -0.02453982, -0.009538779, 0.0029531198, -0.004305232, 0.0044195894, 7.3449605E-4, -0.018499043, -0.03567961, -0.017503457, 0.00426487, 0.025118336, -0.026087014, -0.030002084, -0.002990118, -0.005579984, -0.016158072, -0.0011587128, 0.025750667, -0.023100259, 0.018337596, 0.0044431337, -0.008428836, 1.2476342E-4, 0.0058456976, 0.008711367, -0.015431565, 0.006817738, 0.012713888, -0.045608547, 0.008805544, 0.019023743, 0.013157864, 0.036433022, 0.01157031, -0.020490212, 0.047007747, 0.03481856, 0.031616546, -0.029786821, 0.0018011341, 0.015014496, 0.001657346, -0.032908116, 0.003571997, 0.009807856, 0.0014908547, 0.011254145, 0.009713679, 4.982129E-4, -0.008348113, -0.007123813, -0.0063636703, -0.020813104, -0.002145889, 0.0084019285, -0.036029406, 4.4103398E-4, -0.0152835725, -0.003270967, 0.026154282, 0.0026436814, -0.0039386144, 0.0103258295, 0.04827241, -0.0025680035, 0.0018364504, 0.007924317, -0.0123909945, 0.011496314, 0.0047492087, -0.020544028, 0.0030876584, 0.0077965055, 0.023705682, 0.03414587, 0.015149034, 0.002682361, 0.012034468, 0.002821945, -0.005078828, 0.007991586, 0.006649565, 0.0050754645, -0.00695564, -0.040630624, 0.0075946976, 0.0047693895, -0.0147992335, 0.008691186, -0.003645993, 0.0034374583, 0.007931044, -0.017611088, 0.017355464, -0.008011767, 0.004271597, 0.019333182, -0.049833056, -0.016400242, -0.0116577605, 0.01642715, -0.021660697, 0.004829932, 0.02946393, -0.004570945, -0.02565649, 0.012956057, -0.022979174, 0.003038888, -0.00634349, -0.020140411, 0.0014673104, 0.0029178036, -0.02506452, 0.012612984, 0.021082181, -3.3529513E-4, -0.0023106986, -0.0038915258, 0.019212097, 0.004584399, -0.0045743086, 0.006306492, 0.035598885, -0.0018482225, -0.0014631061, 0.007836867, 0.0034240047, 0.0053445417, -0.014745419, 0.017987795, -0.021445435, 0.026625168, 0.0011780526, 0.0019592168, -0.0050115585, 0.013662384, -0.005865878, -0.017597634, -0.0032390142, -0.020476758, -0.015202849, -0.010446914, -0.009592595, -0.024445644, -0.0065957494, 0.0041269683, 0.0069892746, -0.011361776, -0.0012907287, 0.0043758643, 0.021781782, -0.0072785323, -0.0012184142, -0.005879332, -0.011758664, 0.0042884145, -0.011852841, -0.0059634186, 0.020301858, 0.0046819393, -0.02342315, 0.03516836, -0.009310064, -0.016978757, 0.0046516685, -0.013460576, -0.028683607, 0.01384401, -0.022400659, -3.4958986E-4, 0.0104536405, -0.019938605, 0.009828037, -0.016669318, 0.012956057, 0.005966782, -0.014287988, -0.0043792278, -0.012148825, -0.016373334, -0.009673317, 0.0098482175, 0.029141037, 0.011072517, -0.0061315917, 0.011543402, -0.0030472968, -0.024876166, -0.012922422, -0.0069825477, 0.0019810793, 0.0019558533, 0.031616546, 0.017759081, 0.010978341, -0.011792298, 0.010231652, 0.019319728, 0.012088283, 0.004116878, 8.152192E-4, 0.012834972, -0.024095843, -0.004934199, -0.030647868, -0.001495059, 0.005973509, 0.030674776, -8.454903E-4, -0.027096052, -0.010500729, 0.0070632705, 0.019467719, -0.0072448975, 0.0063132187, -0.017624542, 9.047713E-4, -0.0063031283, -0.016346427, 0.019481173, 0.014745419, -0.021943228, 0.017395826, 0.0056270724, -0.006356944, -0.0061315917, -0.015915904, -0.014449433, -0.010534364, 8.610463E-4, 0.003551816, -0.020180773, 0.015633373, 0.04466678, -0.023409698, 0.04127641, -0.0054588993, -0.005825517, 0.023396244, 0.019911697, -6.991797E-4, -0.008731548, 0.0065385704, 0.023328975, 0.009511871, -0.00417742, 0.05142061, -0.023100259, 0.029275576, -0.0077090557, -0.0035316353, 0.02051712, -0.01719402, 9.686771E-4, 0.013763287, 0.026221551, 0.012424629, 0.018714303, -0.048945103, 0.023073351, -0.007823413, 0.035383623, -0.008664278, -0.026692437, 0.0024099208, -0.01226991, -0.04348284, -0.005704432, -0.015202849, 0.009680044, -9.762449E-4, -0.017516911, -0.02097455, -0.021526158, -0.0017927254, 0.0039049797, 0.025535405, -0.009067894, -0.035948686, -0.00265209, 0.028656699, -0.0029363025, -0.021970136, -0.0060306876, 0.0042110546, -0.021822143, -0.0058456976, -0.0014160177, 0.016036987, 0.0012486854, 0.011617399, -0.033123378, 0.01071599, 0.013204953, -0.020611297, 0.011408864, 0.036755916, -0.009955849, 0.011180148, -0.0071910825, -7.15997E-4, 0.020153865, 0.009168798, 0.0030977486, 0.003077568, 0.0039621587, -0.009686771, -0.0062526762, -0.012538987, -0.040603716, 0.020059688, 0.005455536, -0.01128778, -0.012841699, -0.00955896, 0.011072517, -0.025602674, -0.011785571, -0.029948268, -0.011718302, 0.008785363, 0.06075758, 0.04170693, 0.0022602465, -0.0133462185, 0.0032911478, -5.4404E-4, -0.004338866, -0.0038982527, -0.007487067, -0.015687188, 0.016104257, -0.013460576, 0.013178045, 0.020988004, 0.024795443, -0.0073390747, -0.009108256, -0.021660697, 6.5629557E-4, -0.020221135, -0.023355883, -0.021028366, 0.03578724, 0.03274667, 0.0076081515, 0.00521673, 0.016454058, 0.005505988, 0.011980653, 0.017597634, -0.00504183, -0.0021997043, 0.006962367, 0.007951225, -0.014234172, 0.0022367025, 0.014099633, 0.0120142875, 0.021405073, 0.0147992335, -0.0013807012, 0.022763912, 0.009384059, -0.010534364, 0.010238379, -0.014718511, -0.0010266969, 0.010352736, 0.022952266, -0.027001875, 0.030540237, -0.0024183292, -0.013312584, -0.01922555, 0.027876375, -0.0012579348, -0.003270967, -0.030997667, -0.021391619, -0.0060205976, 0.01758418, -0.043455932, 0.0073996168, -0.011819206, -0.0030691593, -0.009693498, 0.0035080912, -0.02226612, -0.010911072, 0.0090073515, 0.0063468534, -0.021620335, 0.0016800493, -0.0011503041, 0.009377332, 0.0010224925, 0.03261213, -0.0071910825, 0.014839595, 0.006242586, -0.021526158, -0.044451516, 0.011301233, -0.027849467, 0.005273909, 0.014637788, -0.009545506, 0.01340676, -0.0022064312, -0.0011284415, 0.01496068, 0.005660707, -0.013171318, -0.0055362587, 0.03974267, 0.003013662, 0.0065015727, 0.015741004, -0.0013025007, -4.953224E-5, 0.004046245, -0.03158964, -0.010897618, -0.014772326, -0.019427357, -0.010769806, 0.010749625, 0.005267182, -0.024095843, -0.020988004, -0.007648513, -0.024243835, 0.023503873, 9.0981653E-4, 0.019023743, 0.015566103, 0.022548651, 0.016480966, -0.0027429035, -2.5099836E-4, -0.011186875, -0.002645363, 0.021956682, 0.029544652, -0.0063468534, 0.032800484, -0.007823413, -0.016440604, -0.011011976, 0.02121672, -0.009787675, 0.007904137, -0.008751729, -0.012296818, -0.012316999, -0.024311105, -0.0036897182, -0.0051393704, -0.009713679, 0.015929358, -0.011166695, -8.2573E-4, 0.0087584555, 0.014422526, -0.0017422735, -0.029975176, -3.6577653E-4, -0.012976238, 0.016548235, 0.018122334, -0.009740586, 0.017220927, -0.027257498, 0.0013016599, -0.026746253, -0.031616546, -0.032827392, -0.009928941, 0.02565649, 4.168591E-4, 0.03331173, -8.6020544E-4, 0.033069562, 0.0074332515, 0.0023039717, 0.041410945, -0.025965929, -0.007298713, -0.03086313, 0.004772753, 0.027405491, 0.04708847, -0.007291986, -0.01008366, 0.0123909945, 0.02279082, 0.0076283324, 0.02436492, 0.018902658, -0.039850302, -0.028818145, 0.019010289, -0.0300559, 0.008590283, -0.020759288, -0.01804161, 0.018714303, -0.0057178857, -0.015821727, -0.01321168, 0.015700642, 0.0029278938, 0.014826141, -0.03387679, 0.02758039, -0.03401133, 0.012787883, -0.015512288, -0.01356148, -0.005004832, -0.011435771, 0.016050441, -4.7382773E-4, -0.019306274, -0.008213575, 0.012276637, -0.0044330433, -0.04695393, 0.0062964014, -0.015619919, -0.009794402, -0.040738255, 0.016669318, -0.0433483, -0.010857256, -0.020073142, -0.017866712, 0.004345593, -0.024055483, -0.024647452, 0.026208097, 0.013682565, 0.031159114, -0.0019608985, 0.051339887, 0.035491254, 0.0140727265, -0.017449642, -0.0014059272, -0.006942186, -0.0070363632, 0.027082598, 0.012962784, -0.03519527, -0.011590491, 0.0026150919, -0.0056337994, -0.019709889, -0.03167036, 0.01537775, 0.03086313, 0.025952475, -0.015888996, -0.008213575, -0.029033406, 0.006935459, 0.00504183, 3.1196114E-4, -0.0064914823, -0.020369127, -0.006948913, 0.0045440374, -0.0073794364, 0.016131165, 0.008489379, -0.027163321, 0.002571367, -0.0102047445, 0.0025865026, -0.008428836, -0.007211263, 0.036056314, -0.022656282, 0.008327932, -0.00565398, 0.019804066, -0.012068102, -0.002033213, -0.0041269683, 0.03656756, -0.022306481, 0.02519906, 0.005014922, -0.010736171, 0.009955849, 0.023127167, -0.0072381706, -0.011032156, -0.027957099, -0.0036392661, 0.023355883, 0.013696019, 0.0073659825, -5.717886E-5, -0.017557273, -0.008112671, 0.01391128, -0.010124021, 8.9299923E-4, -0.039123792, 0.0126197105, 0.0042615067, -8.862723E-4, 0.018270327, -0.0016724817, -0.013992003, -0.009014078, 0.01443598, -0.015888996, 0.016373334, -0.009195706, -0.023867128, -0.04523184, -0.023826767, 6.962367E-4, -0.025293237, -0.001538784, -0.021257082, 0.005590074, -0.016723134, 0.00599369, -0.0061517726, -0.0028168997, -0.0105679985, 0.002815218, 0.0060441415, -0.0047895703, -0.0128686065, 0.0044061355, 0.024109297, -0.00243851, 0.005371449, -0.00435232, -5.616982E-4, 0.025414322, -0.010877437, 0.027082598, 0.0068715536, -0.025158698, -0.019629166, 0.0033600987, 0.020530574, 0.008899721, 0.016090803, -0.02827999, -0.010251833, 0.0034324133, 0.018566312, -0.008711367, 0.0023426514, 0.027445853, 0.009538779, 0.03247759, 0.03183181, -0.0112945065, -0.018835388, 0.004157239, -0.00964641, -0.024862712, 0.0066192937, 0.017422734, -0.0016043715, 0.012989691, 0.011556856, -0.029867545, -0.0028488524, -0.024512913, -0.018956473, -0.0016918215, 0.014866503, 0.016036987, -9.4513287E-4, -0.0072718053, 0.009215887, 0.0017557273, 0.010319103, -0.022589013, -0.004870293, 0.01071599, 0.0055564395, 0.017853258, 0.024903074, -0.025051067, -0.016400242, 9.880171E-4, 0.012915695, 0.0011191921, 0.032450683, -0.016440604, -0.009538779, -0.017597634, 0.0061215013, -0.0100903865, -0.011677941, 0.021458888, -0.035571977, -0.0046684854, 4.43977E-4, 0.0123775415, 0.0059835995, 0.0059264204, 0.0041505126, -0.015364296, 0.009336971, -0.00495438, -0.025104882, -0.0036224488, -0.01740928, 0.015418111, -0.012047921, -0.005398357, 0.04310613, 0.0076081515, 0.0132251335, 0.001469833, -0.0064645745, 0.007836867, -0.008973718, 0.009128436, 0.0051124627, 0.029867545, -0.035867963, 0.0072247167, -0.024270743, 0.015297026, 6.7059026E-4, -1.2318681E-4, -0.00273954, 0.02565649, 0.0129829645, -0.047599718, -0.0055295317, -0.006017234, -0.0039184336, -0.026759706, -0.008126125, -0.024687814, -0.00435232, -0.0052436376, 0.0033483268, -0.014166903, -0.021997044, -0.015539195, 0.0020618024, 0.0026874063, 0.008435563, 0.19341253, -0.0011519858, 0.015229757, 0.03904307, 0.0039554317, 0.00824721, 0.030728592, 0.020597843, -0.015350842, 0.013426941, 0.00669329, -4.2758015E-4, 0.0070296363, -0.0013680883, 0.0068009207, -0.014180357, -0.01625225, -0.010951433, -0.013265495, -0.031939436, -0.0060306876, -0.0075341556, -0.012834972, -0.020355674, 0.002514188, -0.0027967189, 5.4446043E-4, 0.0053445417, 0.012908968, -0.0019289457, -0.015848635, -0.0055766203, -0.006047505, 0.025024159, -0.02180869, -0.0049241087, 0.010285468, 0.01859322, 0.012821518, 0.004493586, -0.012370815, -0.0012739113, -0.016763495, -0.013130956, 0.0050687375, 0.032154698, -0.024970343, 0.0013933142, -0.014005457, 0.016386788, -0.02897959, 8.400247E-4, 0.027957099, 0.023571143, -0.014516703, 0.011368502, 0.016063895, 0.016750041, 0.009289883, 0.014139995, 1.8635683E-4, 0.029060313, -0.025817936, 0.0013479075, 0.009713679, 0.009545506, -0.032423776, -0.015646826, 0.017543819, -0.014718511, -0.009955849, -0.018364504, -0.012054648, 1.309648E-4, -0.011085971, -0.006367034, 0.013157864, 0.0042816876, 0.015566103, 0.011772118, -0.014166903, -0.0012486854, 0.0030220707, -0.001601008, -0.015229757, -0.012693707, 0.007823413, -0.013063688, -0.02793019, -0.018929565, -0.001138532, -0.014933772, -0.009868398, 0.008227029, 0.0041606026, 0.011765391, 0.022952266, 0.010944706, -0.012404448, -0.0027445853, -0.02967919, 0.035114545, 0.02086692, 0.0023006082, -0.011038883, -0.020463305, -0.0027008601, 0.002863988, 0.014516703, 0.0028858506, -0.0021357986, -0.027553482, -0.0018465407, -0.014503249, 0.0072650784, 0.021795236, 0.01233718, -0.011691395, 0.04243344, -0.015848635, -0.007991586, -0.019171735, 0.0070430897, 0.011334868, 0.0046819393, -0.010023117, -0.009310064, -8.913175E-4, 0.0067706495, -0.014543611, 0.022400659, -0.041572392, 0.0046146703, -0.004840022, -0.003733443, 0.008166486, 0.011408864, 0.013500937, 0.0050754645, -0.008018494, -8.5347856E-4, -0.030809315, 0.018606674, 0.00748034, -0.002902668, -0.0140727265, -0.0023359244, -0.008058855, -0.009357152, -0.037347883, -0.0132318605, -0.019346634, 0.013359672, 0.008173213, 0.04127641, -0.006293038, -0.03121293, -0.033473175, -0.0036123584, 0.055914197, -0.029598467, 0.024943436, 0.022064311, -0.019898243, -0.03772459, -0.025293237, -0.17220926, 0.022548651, 0.03541053, -0.028387621, 0.005522805, 0.03134747, 0.02073238, -0.0091217095, 0.0150414035, -0.0123909945, 0.04872984, 0.0063636703, -0.0339037, -0.0011267598, 0.0060205976, 0.012895514, -0.01964262, 0.028414529, 0.033365544, -0.010709263, 0.03158964, 8.223665E-4, -0.0071641747, 0.005472353, 0.023624958, 0.014543611, 0.021553066, -0.006330036, 0.0028808054, -0.0068749166, -0.023086805, -0.017436188, 0.0129829645, -0.0025562313, -5.806177E-4, 0.010070206, -0.011092698, -0.012148825, -0.0068143746, 8.887949E-4, 0.047841888, 0.012660072, 0.020947643, 0.015216303, 0.01950808, 0.011758664, 0.010009664, -0.018431773, -0.0034509122, -0.015243211, -0.015095219, -0.033365544, 0.04418244, -0.008496106, 0.025992837, 0.017799443, -0.0074399784, 0.013467303, 0.007332348, 0.0011116243, -0.008993898, -0.0067201974, 0.008825725, -0.009014078, 0.0015438292, -0.010541091, -0.00748034, 0.02537396, -0.03471093, 0.011725029, -0.025252875, 0.010890891, 0.028306898, 4.6541909E-4, 0.008953537, 0.0053748125, -0.027136413, 0.017543819, -0.0032390142, 0.008072309, -0.017866712, 0.033123378, -0.0030405698, 0.013870918, -0.005791882, 0.0061450456, 0.012579349, -0.0077763246, 0.019911697, -0.010070206, 0.005028376, -0.006118138, -0.04453224, 0.0013125911, 2.6213983E-4, 0.0014235853, 0.004073153, -0.0021492525, 0.006716834, -8.7365933E-4, -0.006535207, -0.00730544, -0.0121420985, 0.01635988, 0.006417486, -8.9299923E-4, 0.0053680856, 0.028441437, 0.024042029, -0.0048433854, -0.016521327, -3.791778E-5, 0.020153865, 0.0010485593, -0.0037637143, 0.02957156, -0.026477175, -0.021068728, -0.010063479, 0.010507456, 0.03331173, 0.0012478445, -0.008327932, 0.00920916, -0.007991586, -0.0065284804, -0.08782673, 0.02537396, 0.027069144, 0.039850302, -0.03928524, 0.02565649, -0.00783014, 0.017261289, -0.0065520243, 0.033015747, 0.0019255822, -0.02460709, 9.018283E-5, -0.012000834, 0.0029699372, -0.006740378, 5.56653E-4, -0.01052091, -0.020920735, 0.029302483, -0.006636111, -0.00374017, 0.0038175297, -0.01373638, -0.004897201, 0.0133462185, -0.036029406, 0.018203057, 0.0031128842, 0.00789741, 0.012734068, -0.021849051, 0.007332348, -0.03748242, -0.012478445, -0.022185396, -0.011429044, -0.012303545, -0.0026436814, -0.049537074, 0.013104049, 0.007137267, 0.015942812, -0.023288613, 0.0042884145, -1.718519E-4, -0.038424194, 0.031186022, -0.014247626, -0.031858716, 0.008852633, -0.021822143, -0.01810888, -0.0097271325, 0.021902867, 0.010944706, 0.026853882, 0.008677732, -0.022723552, -0.023826767, -0.0027849467, -0.021203266, -0.030997667, -0.0010359464, 0.019265912, 0.0128686065, 3.975192E-4, -0.012101737, 0.015270119, -0.026167735, -0.011913383, 0.023342429, -0.035760332, -0.022185396, -0.025669944, -0.01642715, -0.018229965, -0.007150721, 0.028306898, -0.039339054, -0.0070498167, -0.021203266, 0.01364893, -0.036190853, 0.020988004, 0.019252459, 0.01981752, -0.0016388469, 0.0028135362, -0.0443977, -0.007863775, 0.027661113, 1.5724186E-4, 1.1645988E-4, -0.0048198416, 0.028333806, 0.016023533, -0.009182252, -0.008603737, 0.02453982, -3.5106138E-4, -0.013070414, -0.06473992, 0.01880848, -0.018122334, -0.008422109, -0.021754874, -0.021418527, 0.014395619, -0.022252666, -0.021889413, 0.014853049, -7.235648E-4, 0.016454058, -0.010615087, 0.005149461, -0.0027731746, -0.008065582, 0.010985068, 0.009525325, -4.7508904E-4, 0.0026066832, -0.015996626, 0.028010914, 0.028333806, 0.012175733, -0.0049947416, 0.033688437, 0.0011158286, 0.016911488, -0.026840428, -0.025992837, 0.0374017, -0.01894302, 0.005872605, -0.0043355026, 7.646621E-5, -0.042271994, 0.0013865873, 0.0053445417, 0.009881852, 0.0026672257, 0.0027496305, -0.023934398, -0.0070699975, -0.0066899266, -0.020113504, 0.027714929, -0.020907281, 0.02519906, 0.0099625755, 0.010547818, 0.03645993, 0.0026352727, -0.014826141, -0.01988479, 0.024768537, -0.027324768, 0.04114187, 0.0025999562, -0.010843802, -0.0064073955, 0.018889204, 0.005273909, 0.004372501, -0.031159114, -0.014395619, 0.0011343276, 0.012357361, -0.009175525, -0.0030422516, -0.03331173, -0.006067686, -0.008112671, 0.0046920297, 0.024660906, 0.009532052, 0.031293653, -5.247001E-4, -0.0017843167, -0.0037704413, 0.014234172, 0.01583518, -0.00564389, -0.030943852, 0.009881852, 0.0058322437, 0.033123378, -7.542564E-4, 0.020544028, 0.010749625, 0.003376916, -0.004840022, 0.008832452, 0.026208097, -0.0015429883, 0.036190853, 0.017368918, -0.012256457, 0.0024116025, -4.3430706E-4, 0.022427566, 3.7754863E-4, -0.0035551796, -0.0057313396, -0.022414112, -0.030002084, 0.0015648508, -0.026409905, -0.0074399784, 0.017799443, 0.021270536, 0.019952059, 0.0104536405, -0.011792298, 0.0067067435, -0.03376916, 0.013130956, -0.0074332515, -0.011765391, -0.021405073, 0.054165196, -5.200753E-4, 0.014234172, 0.012956057, -0.017436188, 0.040227007, 0.015256665, 0.0314551, -0.02653099, 0.014476341, 9.0981653E-4, -0.008119398, 0.0012562531, -0.030244252, 0.0059398743, -0.00947151, 0.0011898248, 0.0045373105, 0.025252875, -0.015821727, 0.06603149, 0.014570518, -0.009982756, 0.015337388, -0.009229341, 0.0016531417, 0.0060037803, 0.01364893, -0.01163758, -0.006760559, -0.014718511, -0.022306481, -0.006928732, -0.025118336, -0.012115191, 0.010070206, 0.009868398, 0.011193602, -0.0024435553, -0.0070430897, 6.5251166E-4, -0.0072785323, 0.022858089, 0.0062627667, -0.03694427, -0.003376916, 0.031159114, -0.0031431555, -1.3317209E-4, -0.035948686, -4.105526E-4, -0.010709263, -0.017140204, -0.014583972, 0.018203057, -0.0048433854, -0.014476341, 0.0063737608, 0.026571352, 0.015431565, -0.005428628, -0.0019087648, -0.014933772, -0.011005249, 0.02020768, 0.004735755, -0.0055833473, -0.023867128, -0.019413903 ], + "id" : "6847413a-ad3d-403d-aaa9-ea9abba7064f", + "metadata" : { + "source" : "movies.csv" + } + }, + "afa97b71-faca-4b0d-86b3-5121cedfa6a5" : { + "text" : "Pictures-Heyday Films,7/12/11,125000000,1341511219,130,Released,It all ends.,8.1,19674,Daniel Radcliffe-Emma Watson-Rupert Grint-Ralph Fiennes-Alan Rickman-Michael Gambon-Warwick Davis-Helena Bonham Carter-Ciar��n Hinds-Matthew Lewis-John Hurt-Evanna Lynch-Robbie Coltrane-Kelly Macdonald-Tom Felton-Helen McCrory-Jason Isaacs-Maggie Smith-David Thewlis-Gary Oldman-David Bradley-Julie Walters-Gemma Jones-Dave Legeno-Miriam Margolyes-Nick Moran-James Phelps-Oliver Phelps-Cl��mence Po��sy-Natalia Tena-Mark Williams-Bonnie Wright-Domhnall Gleeson-Graham Duff-Anthony Allgood-Rusty Goffe-Jon Key-Ian Peck-Benn Northover-Hebe Beardsall-Devon Murray-Jessie Cave-Afshan Azad-Isabella Laughland-Anna Shaffer-Georgina Leonidas-Freddie Stroma-Alfred Enoch-Katie Leung-William Melling-Sian Grace Phillips-Ralph Ineson-Suzie Toase-Jim Broadbent-Scarlett Hefner-Josh Herdman-Louis Cordice-Amber Evans-Ruby Evans-George Harris-Chris Rankin-Guy Henry-Phil Wright-Gary Sayer-Tony Adkins-Penelope McGhie-Emma Thompson-Ellie Darcey-Alden-Ariella Paradise-Benedict Clarke-Leslie Phillips-Alfie McIlwain-Rohan Gotobed-Geraldine Somerville-Adrian Rawlins-Toby Papworth-Timothy Spall-Peter G. Reed-Judith Sharp-Emil Hostina-Bob Yves Van Hellenberg Hubar-Granville Saxton-Tony Kirwood-Ashley McGuire-Arthur Bowen-Daphne de Beistegui-Will Dunn-Jade Gordon-Bertie Gilbert-Helena Barlow-Ryan Turner-Paul Bailey-Sean Biggerstaff-Vinnie Clarke-David Heyman-Charlie Hobbs-Luke Newberry-Keijo J. Salmela-Pauline Stone-Spencer Wilding-Harrison Davis-Annabelle Davis,witch-dying and death-saving the world-self sacrifice-magic-school of witchcraft-sorcerer-school-battle-wizard-teenage hero-christmas-based on young adult novel-good versus evil,/c54HpQmuwXjHq2C9wmoACjxoom3.jpg,/n5A7brJCjejceZmHyujwUTVgQNC.jpg,12444-674-673-675-767-672-671-259316-1865-10681-165-49538-12-70160-11-585-1771-120-10195-2501-101299\r\n181808,Star Wars: The Last Jedi,Adventure-Action-Science Fiction,en,Rey develops her newly discovered abilities with the guidance of Luke Skywalker who is unsettled by the strength of her powers. Meanwhile the Resistance prepares to do battle with the First Order.,56.523,Lucasfilm Ltd.,12/13/17,200000000,1332698830,152,Released,Darkness rises... and light to meet it,6.", + "embedding" : [ 0.0035095508, -0.01648021, -0.026902108, -0.043689236, -0.015679551, 0.025567677, -0.0062618125, -0.015786307, -0.014171646, -0.031652678, 0.022485144, 0.03063851, 0.0047572427, 0.009067452, 0.016747095, 0.0245802, 0.019829629, -0.02635499, -0.0012810527, -0.02169783, 0.019749563, 0.002852344, -0.014104924, 0.00803994, 0.018321723, 0.0066121, 0.020243302, -0.0193092, 0.013357644, -0.008974041, 0.0111424895, -0.017868016, -0.013464398, -0.02371282, -0.02535417, -0.013177495, 0.008813909, -0.012230051, 0.024780365, 0.0013386001, 0.015345944, 0.016693719, -0.01673375, 0.0050674975, -0.020510187, 0.017534409, 0.009214238, -0.027249059, 0.0028640202, 0.031732745, 0.006468649, 0.04342235, -0.022111503, -0.04819961, -0.01694726, 0.008787221, -0.0087071555, 0.01104908, -0.002318572, 0.015452699, 0.011462753, -0.014945615, -0.02675532, -0.02687542, -0.017934738, 0.003879855, -0.014171646, -0.021631109, 0.016973948, 0.006788912, 0.017841328, 0.011963164, 0.015812995, -0.006905675, 0.013477743, -0.0306652, -0.009854765, 0.0010291791, 0.0064920015, -0.0024870439, 0.028049717, -0.0042201346, -0.02026999, 0.01399817, 0.034935374, -0.0023435925, -0.037871122, 0.021244124, -0.032079697, 0.013357644, 0.009300977, 0.037977874, -0.003876519, 0.021124026, 0.011689606, 0.014064891, 0.0010775522, 0.034001276, -0.008687139, -0.027756143, 0.0038931994, -0.0051342193, -0.0015871376, -0.012036558, 0.002043346, -0.019656153, -0.012190018, 0.012296772, 0.014038203, 0.005070834, -0.011562835, 0.008920664, 0.019095693, -0.023139015, -0.0027889586, -0.01185641, 0.02427328, -0.02026999, -0.008887303, -0.034374915, 0.028796999, 0.021430945, 0.015919749, -0.04838643, 0.033414125, 0.03867178, 0.01089562, -0.009821405, 0.006515354, -0.008560368, 0.031198971, -0.008880631, 0.02483374, 0.019696185, -0.017240835, 0.059302066, -0.012149985, 0.011469426, -0.023979707, -0.0048473165, 0.028636867, 0.02799634, -0.03669682, -0.015385977, -0.016907226, 0.0028306595, 0.004056667, 0.0049540712, 0.029624345, 0.0052343016, 0.032480024, -7.57706E-4, 0.014758795, 0.021297501, 0.03178612, -0.0147854835, -0.013631201, -0.015866373, -0.013524448, -0.011896443, -0.00781976, 0.001296899, -0.005220957, -0.007459463, 0.020136548, 0.014398499, 0.021110682, -0.02160442, -0.0025337487, -2.9607664E-4, -0.011642901, 0.030825332, -0.023646098, 0.011095785, -0.010455258, 0.018922217, -0.008587057, -0.012950642, -0.036269806, -0.027942963, -0.010008224, 0.012830543, 0.028823687, 0.028983818, -0.013484415, 0.0014203339, 0.022058127, -0.018895527, -0.0031709392, -0.004233479, -0.0020933868, 0.031412482, 0.009821405, -0.018441822, -0.64266145, -0.024566855, -0.006939036, -0.0027038886, 0.020096514, 0.02743588, 0.012183345, 0.002135088, -0.031332415, -0.02684873, -0.021297501, 0.022538522, 0.016893882, -0.0052109486, -0.013838039, -0.0043435693, -0.011209211, -0.0023752854, 0.00937437, -0.012163329, -0.02780952, 0.030051362, 0.0027472577, -0.0204835, -0.0011234232, 0.009320993, -0.009721322, -0.018788774, 0.0010617058, 0.0023485967, -0.018481854, -0.0050141206, 0.007539529, 0.023979707, 0.03659007, 0.0067155184, -0.021150714, 0.02951759, 0.017747918, 0.028103095, -0.03365432, -0.0046638325, 0.013464398, 0.0014945616, -0.022885473, 0.0147721395, 0.013784661, 4.9582415E-4, 0.006245132, -0.019883007, -0.004533726, -0.0041067083, -6.68049E-4, -0.0034061323, -0.0033377428, 0.006758888, 0.0072859875, -0.030131428, 0.015319255, 0.0010533656, -0.020937206, 0.016586963, -6.417774E-4, 0.015706241, -0.013310938, 0.019789595, -0.0030575127, -0.0040032896, 0.008340187, -0.028716933, 0.0091074845, -5.9090223E-4, 0.001689722, -0.00526099, 0.016400144, 0.0028807006, 0.047505707, 0.0011409376, -0.012316789, 0.01542601, 2.2455954E-4, -0.015439354, -0.0018948904, 0.004493693, 0.034881998, -0.009687961, -0.019042315, -0.007873137, 0.0077330214, 0.009734666, -0.0014920594, 0.017587787, -0.005914861, 0.016226668, -0.0045837667, 9.933163E-4, -0.005451146, 0.005841467, 0.02523407, -0.046731737, -0.0081934, -0.011442737, 0.0077396934, -0.0095144855, 0.0183751, 0.023165703, -0.014598663, -0.006291837, 0.036803577, -0.016987292, 0.0018531895, 0.0044403155, -0.016653685, -0.007459463, 0.007499496, -0.027729454, 0.049187087, 0.025554333, 0.0047672507, -0.0091008125, 0.01812156, 0.0073393644, 0.0035996248, -0.04342235, -0.0020767066, 0.026234893, -0.017747918, -0.011716295, -0.0015871376, 0.011062424, 0.017334245, -0.013537792, 0.0047972756, -0.028076407, 0.005661319, -0.004860661, 0.028610177, 0.008353531, 0.0025571014, -0.0010967345, -0.014652041, -8.89898E-4, -0.002135088, -0.005037473, 0.007225938, -0.009394387, -0.028076407, -0.0072392826, 0.010975686, -0.0041067083, -0.021831274, 0.0245802, -0.005474499, -3.2922887E-4, 6.0549757E-4, 0.0017631155, -0.042595003, -0.014225023, -0.006828945, -0.024286624, 0.009574534, 0.021617765, -2.2184898E-4, -0.011155834, 0.016146602, -0.015666207, -0.007532857, 0.027756143, -0.0049807597, -0.008246777, 0.015933093, 0.0014962296, -0.009727994, 0.033067174, -0.019682841, 0.02610145, -0.015786307, 0.0147721395, 0.021831274, -0.0043902746, 0.0076129227, -0.008053285, -0.021150714, -0.012990675, 0.01676044, 0.021524355, 0.017948082, -0.009361026, -0.009741339, -0.009227583, -0.025474267, -0.002989123, -0.006291837, 0.007566218, -0.0018565257, 0.02895713, 0.005878164, -0.012730462, 0.016400144, 0.013744628, 0.021978062, 0.01619998, 0.012003197, 0.0026138145, -0.008326842, -0.02722237, 8.502821E-4, -0.015065714, 0.0038665107, -0.0074661355, 0.020523533, -0.009320993, -0.023579378, -8.2442746E-4, 0.001425338, 0.037230596, -0.007713005, -0.0014945616, -0.026274925, 0.011502786, 0.0044403155, -0.009788044, 0.017027326, 0.007926513, -0.032907043, 0.0055545648, 0.024126492, -0.00249872, -6.0591457E-4, -0.02179124, -0.0053544003, 0.00401997, -0.013364316, 0.01579965, -0.010288455, 0.008693811, 0.03007805, -0.016306734, 0.047852658, -0.0021300837, -0.01257033, 0.015212501, 0.01648021, 0.006692166, -0.014425187, -0.008506991, 0.022044782, 0.027008861, -0.015105747, 0.034748554, -0.011769672, 0.025874596, -8.682135E-4, 0.010755505, 0.018214969, -0.017627819, 0.01272379, 0.007626267, 0.016346768, 0.018321723, 0.0025687777, -0.020283336, 0.021897996, 0.0072526266, 0.011616212, 0.006648797, -0.017974772, 0.012330133, -0.015319255, -0.033334058, -0.012910609, 0.0054644905, 0.0062618125, 0.005334384, -0.008553696, -0.015345944, 0.029971296, 0.010155012, 0.010788866, 0.024900462, -0.0010725481, -0.036616758, 0.018735396, 0.033574257, -0.01664034, -0.039258927, -0.016867194, -0.008426925, -0.026822042, -0.01760113, -0.01812156, 0.042728446, -0.017494377, -0.004146741, -0.023058949, 0.0076062507, 0.026808698, -0.036990397, 0.0074728075, 0.021524355, -0.002009985, 0.0051041944, -7.923178E-4, -0.017147424, 0.0119364755, -0.014692074, 0.009641256, 0.0034528375, -0.0095011415, -0.0012627044, -0.022645276, -0.0061684023, -0.04053998, 0.014585319, 0.0034228128, 0.0068789865, -0.0029641024, 0.004310209, 0.021404255, -0.0056479746, -0.0245802, -0.018428477, -0.020523533, -0.006912347, 0.07488821, 0.043102086, 6.2926713E-4, 0.0056513106, -0.008640434, -0.0014561967, -0.0037364038, -0.010668768, -0.01648021, 0.005844803, 0.025821218, 0.00875386, 0.026221547, 0.015359288, -0.009267616, -0.010928981, 0.0013928112, -0.008153367, -0.01769454, 2.3248271E-4, -0.03827145, -0.011456081, 0.016933916, 0.0068022567, 0.0051942687, -0.019442644, 0.03349419, 0.0075929062, -0.008533679, 0.012857232, -0.0013319278, 0.018295035, 0.0039866096, 0.0028623522, -0.004994104, -0.0076529556, 0.03432154, -0.0010833903, 0.013577824, 0.0013110774, -0.008773876, -0.0028373317, 0.006105017, 3.3819457E-4, 0.0011868086, -0.023459278, -0.028450046, 0.023579378, 0.02483374, -0.032453336, 0.019856317, 8.119172E-4, -0.026114793, 3.1442507E-4, 0.0034628457, 0.0052910144, -0.008240105, -0.006361895, -0.024073116, 0.0065954197, -0.0024286625, -0.033600945, 0.014745451, -0.0021267477, -0.001918243, -0.019576088, -0.028556801, -0.009447764, -6.505346E-4, -0.0027922946, -0.0015571129, -0.013571152, -0.0087138275, 2.502056E-4, 0.007306004, 0.006241796, 0.030264871, 0.0020783746, 0.012076591, -0.0087004835, -0.02169783, -0.026835386, 0.008853942, -0.02389964, -0.021671142, 0.0245802, 0.0016188303, 0.016667029, -0.01089562, 0.025954662, 0.010441914, -0.004820628, -0.010882276, -0.01247692, 0.024326658, 0.0073727253, 0.0011476098, 0.020550221, 0.0054644905, 0.0060916725, -0.004633808, -0.01008829, -0.017921394, -0.03712384, -0.0036930349, -0.012069919, 0.005407777, 0.0073927417, -4.9707515E-4, -0.012550313, -0.031545922, -0.02408646, -0.006064984, 0.0023285802, 0.002808975, 0.01563952, 0.023325834, 0.022538522, -1.0175028E-4, -0.0019732884, -0.00240531, -0.009034091, 0.009461109, -0.0019065668, -0.024153182, 0.030318247, -0.0065687313, -0.017801296, -2.6542644E-4, 0.013477743, -0.011502786, 0.012823871, 0.0059682378, 0.007999907, -0.016119914, -0.026261581, -0.002502056, 0.008974041, 0.0073860697, 0.03085202, -0.02135088, 0.011242572, -0.0012785507, -0.011335982, -0.0024303305, -0.028796999, 0.018335067, -0.015359288, 0.030771954, 0.020910516, 0.017240835, -0.012637052, -0.027515946, -0.0038965354, 0.0023852936, -0.034641802, -0.02095055, -0.0061550583, 0.009761355, 0.01610657, 0.04094031, -0.013317611, 0.030371625, -0.006872314, 0.0066754855, 0.019042315, -5.583755E-4, -0.010782193, -0.025727808, 0.008093318, 0.011622884, 0.010989031, 0.015079058, -0.019789595, 0.022138193, 0.033334058, 0.0043635857, 0.013384332, 0.002190133, -0.027355814, -0.028770309, 0.009381043, -0.01812156, 0.0020566902, -0.026862074, 0.0011876427, 0.017481033, 8.1441924E-4, -0.019002283, -0.015866373, 0.025113972, -0.014305089, 0.025367513, -0.03408134, 0.01563952, -0.0073260204, 1.3563229E-4, -0.014251712, -0.010702128, -0.0057247044, -0.0010325152, 0.010094962, -0.0016772116, -0.003394456, -3.9949495E-4, 0.016159946, -0.011969836, -0.012617035, 0.031492546, -0.012370165, -0.0072459546, -0.015759617, 0.0047305543, -0.025127316, -0.0013702927, -0.00909414, -0.008106662, 0.0046271356, -0.023979707, -0.035122197, 0.02743588, -0.014612008, 0.043529104, 0.019389266, 0.03755086, 0.037684303, 0.0024653594, -0.02160442, 0.0057180324, -0.0058147786, -0.006865642, 0.028049717, 0.028823687, -0.014865549, 0.014038203, -0.012937298, -0.0033327388, -0.033227306, -0.041580837, 0.020029793, 0.021430945, 0.0055378843, -0.015492732, 0.0027822864, -0.028423358, -0.0051508998, -0.010702128, 0.008780549, 0.011396032, -0.050201252, -0.015706241, -0.02191134, -0.0071925772, 0.008727171, -0.0023869616, -0.02783621, 0.016053192, -0.026248237, 0.0047539067, -0.010155012, -0.022858785, 0.016626997, -0.03432154, 0.013504431, 0.024233248, 0.010008224, 0.010001552, -0.010595374, 0.016773785, 0.03007805, -0.006615436, 0.014932271, -0.0010592038, -0.002538753, 0.0052009406, 0.0015446027, -0.019656153, -0.023912985, -0.027355814, -2.4812057E-4, 0.03392121, 0.0132242, -0.014865549, -0.016159946, -0.017334245, -0.018321723, 0.005844803, 0.003167603, 0.0048373085, -0.04243487, 0.005307695, 0.008453613, -0.015225845, 0.0017197466, -0.007959874, 0.006645461, -0.0010883944, 0.015265878, -0.018882183, -0.019109037, -0.013330955, -0.0095078135, -0.026341647, -0.016226668, -0.018481854, -0.0155994855, 0.0018164928, -0.010255094, -0.005087514, 0.0034861981, 0.0012268415, -0.0075128404, 8.498651E-4, -0.015239189, -0.010475275, 0.028743621, -0.01952271, -4.0303954E-4, -0.018948905, 0.023526, 0.015385977, -0.009981536, 0.012556986, 0.015412666, 0.025807874, -0.03389452, 0.012003197, -0.02588794, -0.010475275, -0.013918105, 0.010041585, 0.028556801, 0.017400967, 0.0011034068, -0.030318247, 0.006735535, -0.008480302, 0.046358097, -0.00294075, -0.0051308833, 0.023886295, 0.02544758, 0.038404893, 0.027569322, 0.0021734526, -0.0155727975, 0.010635407, -0.001114249, -0.013918105, 0.005451146, 0.0026872084, 0.020630287, 0.017000638, 7.347705E-4, -0.028156472, -0.015239189, -0.02219157, -0.023419246, -0.007806415, 0.01828169, 0.041394018, 0.015492732, -0.014958959, 0.00650201, 0.0060049347, -0.0030208158, -0.026435057, 4.88735E-4, 0.032426648, 0.020136548, 0.012463575, 0.019349234, -0.022711998, 0.0014511925, 0.015666207, 0.027088927, 0.0012718785, 0.0040967, -0.0038831912, -0.0039432403, -0.009020747, -0.018521888, -3.33399E-4, 0.0076462836, 0.012230051, -0.02265862, -0.008326842, 0.00741943, 0.019482678, -0.016346768, -0.0022485144, 0.016920572, -0.012036558, -5.9924246E-4, -0.0155727975, -0.026074762, -0.024099804, -0.015826339, 0.04280851, 0.024046427, -0.013611185, 0.022725342, 0.012116624, -0.014318434, 0.012350149, -0.012877249, -8.5278414E-4, -0.01989635, -0.013330955, -0.007859793, 0.028156472, -0.029437523, 0.012370165, -0.029597655, -2.6605197E-4, -0.0091275005, 0.002813979, -0.008053285, 0.037070464, 0.009681289, -0.036136363, -4.4286394E-4, -0.006058312, -0.009894798, 0.0010158347, 0.0010908964, -0.03146586, -3.4132216E-4, -0.016867194, 0.004053331, -0.014985648, -0.014878893, 0.006545379, -0.0060749925, -0.0099348305, 0.024593543, 0.18639317, -0.004246823, 0.014318434, 0.048119545, 0.008640434, 0.009954847, 0.023205737, -0.0031042176, -0.010455258, 0.003432821, -0.041420706, 0.010908965, -0.01080221, 0.0043368973, 0.016973948, -0.02436669, -0.025500955, -0.021110682, -0.031492546, -0.02799634, -0.008593729, -0.0019749564, -0.004046659, -0.019069003, 0.0068923305, 2.3623579E-4, -0.030425003, 0.0021134033, 0.029917918, -0.010862259, -0.013024036, -0.038191386, -0.0193092, 0.011823049, -0.02113737, -0.011029064, -0.014064891, -0.0057647373, 0.01142272, 0.016280046, 0.0041167163, -0.002937414, -0.015853027, -0.002979115, 0.012697101, 0.008533679, -0.008493646, -0.014545286, -8.048281E-5, 0.0042534955, -0.04302202, -0.0034661817, 0.040219717, 0.025754498, -0.0013594505, -0.001953272, 0.00856704, 0.02399305, -0.013064069, -0.011282605, 0.0076529556, 0.041447394, -0.029651033, 5.0166226E-4, 0.0012276756, 0.013878072, -0.044916913, -0.011976508, 0.015652863, -0.035362393, -0.009347682, -0.01834841, -0.026074762, -0.0032359925, -0.01713408, -0.008073301, 1.5252117E-4, 0.014291745, 0.0035095508, 0.013757973, -0.011282605, -0.022898817, 8.198404E-4, -0.00838022, -0.01998976, -0.02380623, 0.024553511, -0.006678822, -0.015385977, -0.011382687, -0.015559453, -0.010528652, -0.023939673, 0.007999907, -0.01294397, 0.005487843, 0.015265878, 0.015946439, -0.0077396934, -0.005301023, -0.02333918, 0.01089562, 0.018628642, 0.0026171508, -0.020456811, -0.011742983, -0.0028723604, 0.016133258, 0.022431767, -0.018548576, 0.0073994137, -0.029304082, 0.009427748, 0.0014061555, -0.013404349, 0.017561099, -0.008800565, 0.00464048, 0.031118905, -0.024593543, -0.005084178, -0.009494469, 0.011869755, -0.009147517, -0.0022635267, -0.025714464, -0.030051362, 0.0103284875, -0.0059348773, -0.041634213, 0.017801296, -0.017000638, 0.016680375, 0.008333514, -0.008660451, 0.0017130744, 0.021164058, 0.013170823, -0.008613745, 0.010261767, -0.013417693, -0.0036396575, 0.006241796, 0.008433597, 0.008306826, -0.0063552223, 5.4169516E-4, -0.0043435693, -0.0036229773, -0.02796965, -0.024646921, -0.016373456, -0.00471721, -0.007272643, 0.040299784, 0.01185641, -0.022765374, -0.042568315, 6.075826E-4, 0.05065496, -0.03469518, 0.018134903, 0.012310117, -0.0057614013, -0.023526, -0.0023102318, -0.1701665, 0.019055659, 0.0075528733, -0.039365683, 0.019722875, 0.015159124, 0.023499312, 0.007939858, 0.010628735, -0.019482678, 0.009694633, 5.2418077E-4, -0.051188733, -0.009054107, 0.016373456, 0.013250889, 0.0067555513, 0.038138006, 0.04037985, -0.0018548575, 0.04358248, -0.009461109, -0.003876519, 0.012029886, 0.0034128046, -0.011976508, 0.009034091, 0.009587879, -6.23846E-4, 0.011549491, -0.049053643, 0.007639611, 0.020069826, 0.0049540712, -0.02017658, 0.007005757, -0.02125747, -0.0099214865, -1.7305888E-4, -0.009848093, 0.040059585, 0.0018515215, 0.014652041, 0.02017658, -0.0014920594, 0.013597841, 0.024900462, -0.016400144, 0.0058714915, -0.023045605, -0.0017397631, -0.03696371, 0.029971296, -0.009240927, -0.010541996, 0.011803033, 0.010134995, -0.0016838837, -0.0032927059, -0.0153326, -0.020350056, -0.0016004819, 0.00571136, -0.0060082707, 0.011089113, -0.024553511, -0.005667991, 0.0030992136, -0.016626997, 0.013184167, 0.0037764367, -0.0065286984, 0.0021651126, 0.02836998, 0.0046971934, -0.006421944, -0.020910516, -0.0018048165, -0.0060783285, 0.021591077, -0.012149985, 0.04304871, -0.003254341, 0.0095278295, 0.0147854835, -0.01896225, 0.0026438392, 0.010588702, -0.011836394, 0.0010650419, 0.027596012, -0.011095785, -0.020683665, 0.0038264778, 0.017240835, 0.00561795, -0.0030408322, 0.010969014, 0.0099081425, -0.014011514, 0.006645461, -0.003436157, -0.01046193, 0.016546931, 0.040486604, 0.005878164, -0.0052509815, 0.010868932, 0.027649388, 0.01685385, 0.0017197466, 9.232587E-4, 0.0040299785, 0.0036830266, -0.012516953, 0.0112359, -0.007306004, -0.02439338, 0.004533726, 0.008747188, 0.050681647, -0.0028790326, -0.011989853, -0.008106662, -0.014905582, -0.01657362, -0.09031422, -0.023726163, 0.00838022, 0.035896163, -0.020470155, 0.034962066, -0.008373547, 0.016707063, -0.016186636, 0.014225023, -0.0151858125, -0.02967772, 0.009788044, 0.01052198, 0.034001276, -0.004450324, -0.015853027, -0.022164881, -0.0103017995, 0.022551866, -3.9595037E-4, -0.004590439, 0.017934738, -0.02396636, -0.029197326, -0.0061183614, -0.027649388, 0.028236538, 0.017974772, 0.01418499, 0.0062284516, -0.030505069, 5.2501477E-4, -0.033814453, -0.021190748, -0.019295856, -0.020710353, -0.03693702, -0.002939082, -0.072272725, 0.013184167, 0.018521888, -0.013304266, -0.011009047, -0.006912347, -0.010775521, -0.021270813, 0.014905582, -0.004280184, -0.011362671, -0.020430122, -0.018601954, -0.006251804, -0.0042501595, 0.009200894, 0.0048339725, 0.039365683, -0.012029886, -0.0049207103, -0.003167603, -0.0065186904, -0.016213324, -0.047158755, 0.0111358175, 0.003749748, 0.004787267, -0.0018548575, -0.019455988, 0.020096514, -0.024019739, -0.028823687, 0.018521888, -0.030558445, 0.0058548115, -0.022952195, 0.009614567, -0.023245769, 5.517034E-4, 0.02057691, -0.023205737, 0.015933093, -0.022925505, 0.004500365, -0.0019415956, 0.028530112, 0.024193214, 0.008180056, 0.0147854835, -0.005224293, -0.025274104, -0.027128961, 0.02017658, 0.030264871, -0.004090028, -0.0017481032, 0.018201625, 0.0091275005, 0.01868202, 0.008333514, 5.262658E-4, -0.013270905, 0.011989853, -0.071311936, 0.03234658, -0.022671964, -0.0022435102, -0.0048072836, -0.017107392, 0.017320901, -1.6899304E-4, 0.010341832, 0.027596012, -0.009461109, 0.00971465, -5.984084E-5, 0.008280138, -0.021297501, -0.016360112, 0.010702128, 0.0061650663, 0.0103284875, -0.008880631, -0.029063884, 0.0060483036, 0.013691251, -0.0091275005, -0.0015521088, 0.01399817, 0.009601223, -0.003394456, -0.00856704, -0.022231603, 0.032666843, -0.03442829, 0.005988254, 0.0038198056, -0.013177495, -0.012523625, -0.015412666, 0.006465313, 0.027649388, 0.007539529, -0.008780549, -0.018575264, 0.0024770356, -0.011062424, -0.004160085, 0.012029886, -0.022498488, 0.013731284, 0.009207566, 0.018255001, 0.05775413, 0.015039025, 0.010855587, -0.012029886, 0.016800473, -0.009761355, 0.036910333, 7.180901E-4, 0.004016634, -0.011195867, 0.018108213, -0.0028623522, 0.018081525, -0.025060594, 0.0050908504, -0.0034461652, 0.01563952, -0.0014295081, -0.0069323634, -0.026461745, -0.012016541, -0.008767204, 0.026314959, 0.037817743, 0.014718762, 0.019389266, -0.013204184, -0.0010667099, 0.007626267, 0.019856317, 0.023499312, -0.0054144496, -0.030398313, 0.015452699, 0.011869755, 0.020109858, 0.0035495837, 0.012957315, 0.0012268415, 0.014171646, -0.015479387, 0.022204913, 0.022578554, -0.001161788, -0.011082441, 0.008013252, -0.014905582, -0.022071471, -7.96553E-7, 0.019269168, -0.0037764367, 0.008093318, -0.018548576, -0.02970441, -0.019669497, 0.012450231, -0.0075595453, -0.03215976, 0.0223517, 0.024780365, 0.042568315, 0.001206825, -0.012577002, 0.008607073, -0.045584127, 0.027489256, 0.004817292, -0.00900073, -0.009881454, 0.028476736, 0.007926513, 0.0070991674, 0.011776344, -0.011022391, 0.045077045, -0.0012109951, 0.019869661, -0.015786307, 0.0055378843, 0.013704595, -0.014038203, -0.013584496, -0.012857232, 0.012270084, 0.006335206, -0.010014896, -0.0030108076, 0.018441822, -0.015239189, 0.06901672, 0.016066536, -0.009574534, 0.012423542, -0.031545922, 0.019149069, 0.0075995782, 0.01704067, 0.0047338903, -0.016600309, 0.011789689, -0.02287213, 0.005667991, -0.031332415, -0.011729639, -0.006655469, -0.0040800194, 0.0062718205, -0.002190133, -0.0057213684, 0.006768896, -0.014958959, -0.0021834609, -0.008280138, -0.002990791, -0.01561283, 0.031145595, 0.003067521, 0.0027522617, -0.030531757, 0.007826432, -0.012910609, 0.010275111, -0.0012610363, 0.04184772, -0.011182522, 0.004240151, 0.007005757, 0.0276227, 0.004246823, -0.010902292, -0.0076929885, -0.020136548, -0.015439354, 7.2059216E-4, -1.3302598E-4, 0.016400144, -0.024887118, -0.018228313 ], + "id" : "afa97b71-faca-4b0d-86b3-5121cedfa6a5", + "metadata" : { + "source" : "movies.csv" + } + }, + "3c86acbb-2a05-404a-94dd-b1b4ae4add5d" : { + "text" : "9,6204,Taissa Farmiga-Demi��n Bichir-Bonnie Aarons-Jonas Bloquet-Ingrid Bisu-Patrick Wilson-Vera Farmiga-Lili Taylor-Charlotte Hope-Sandra Teles-Maria Obretin-August Maturo-Jack Falk-Lynnette Gaza-Ani Sava-Michael Smiley-Gabrielle Downey-David Horovitch-Tudor Munteanu-Lili Bord��n-Scarlett Hicks-Izzie Coffey-Jared Morgan-Laur Dragan-Eugeniu Cozma-Manuela Ciucur-Beatrice P��ter-Ana Udroiu-Andreea Sovan-Dana Voicu-Andreea Moldovianu-Beatrice Rubica-Claudia Susanu-Boiangiu Alma-Gabriela Irina Dinca-Dee Bradley Baker-Debra Wilson-Mark Steger-Lidiya Korotko-Emma Appleton-Jonny Coyne-Natalie Creek-Flynn Hayward-Daniel Mandehr-Samson Marraccino-Jamie Muscato-Lourdes Nadres-Simon Rhee-Sandra Rosko-HayRae Rummel-Claudio Lee Smith,rome italy-nun-exorcism-father-supernatural-priest-spirit-demon-spin off-evil nun-demonic possession-romania-murder mystery-ancient evil-the conjuring universe,/sFC1ElvoKGdHJIWRpNB3xWJ9lJA.jpg,/fgsHxz21B27hOOqQBiw9L6yWcM7.jpg,396422-259693-138843-521029-250546-480414-17439-823991-406563-423108-424139-439015-15402-474350-460019-345940-91586-493922-442249-346910-447332\r\n509,Notting Hill,Romance-Comedy-Drama,en,William Thacker is a London bookstore owner whose humdrum existence is thrown into romantic turmoil when famous American actress Anna Scott appears in his shop. A chance encounter over spilled orange juice leads to a kiss that blossoms into a full-blown affair. As the average bloke and glamorous movie star draw closer and closer together they struggle to reconcile their radically different lifestyles in the name of love.,26.347,Notting Hill Pictures-Bookshop Productions-PolyGram Filmed Entertainment-Working Title Films-Universal Pictures,5/21/99,42000000,363889678,124,Released,Can the most famous film star in the world fall for the man on the street?,7.", + "embedding" : [ -0.009062736, -0.024073986, -0.004475382, -0.033843547, -0.017103728, 0.03221995, -0.010133469, -0.005000251, -0.017831545, -0.050499387, 0.0028920276, 0.019889032, 0.018265437, -0.0010261186, 0.020140968, 0.027307179, 0.017845543, -0.006504875, 0.019035244, -0.029364664, -0.0030844796, 0.007866035, -0.012281932, 0.020882783, -0.0062214457, 0.009657588, 0.039442148, -9.298927E-4, -0.027125224, -0.0019717575, -0.005147214, -0.020882783, -0.011799052, -0.028916776, -0.025753567, -0.013562612, 7.6674594E-4, -0.020392906, 0.020364912, 0.014059488, 0.008159962, 0.0034168966, -0.0074881297, -0.020448891, 0.0032699332, 0.009475633, 0.006270434, -0.0070542376, -0.017747566, 0.015620098, 0.029728575, 0.02834292, -0.016403902, -0.0148502905, -0.016529871, 0.0029637597, -3.0026873E-4, -8.655963E-4, 0.0088177975, -0.005532118, 0.021008752, -0.025207704, -0.039862044, -0.021820549, -0.01569008, 4.3236074E-4, -0.013394654, -0.017523622, 0.0017731821, 0.0049092737, 0.009237693, 0.0049897535, -0.0015588606, -0.019357165, 0.036838796, -0.028524874, -0.02373807, 2.1082234E-4, 3.916014E-6, 0.0017040743, 0.023724074, -0.0012229445, -0.011071234, 0.02337416, 0.013737569, 0.02750313, -0.025963515, 0.025809553, -0.024591858, 0.016753815, 0.014360413, 0.023752067, 0.020980759, -0.0022429398, 0.010938267, 0.0086008515, -0.024857791, 0.044452894, -0.019119224, -0.023094231, -0.0090347435, -0.020714825, -0.016991755, -0.007866035, 0.008782806, -0.016669836, -0.001585104, -0.0168098, 0.020224947, 0.025445644, -0.0041009756, -0.015914025, 0.020364912, -0.025753567, 0.0087128235, -0.0066518383, 0.024815802, -0.017677585, -0.006837292, -0.025053741, 0.027559116, 0.027601106, 0.0106863305, -0.039974015, 0.038154468, 0.027293183, 0.009342666, -0.020490881, 4.6057245E-4, 0.0016139718, 0.020406902, -0.008033993, 0.018797304, 0.01356961, -0.02662135, 0.033255693, -0.022310426, 0.0012518123, -0.030792309, -0.019287182, 0.029336672, 0.037258692, -0.022450391, -0.018839294, -0.008922772, 0.019595105, 0.004811298, -0.0014503876, 0.025767563, 0.0033014254, 0.014948266, 0.01949713, 0.003555112, 0.008362911, 0.023822049, -1.02404105E-4, -0.0039295186, 0.0014740068, -0.005311673, -0.010364411, -0.024675837, 0.0049512633, -0.0037860542, -0.004811298, 0.016109975, 0.027237196, 0.004384405, -0.01708973, -0.013338668, 0.0037475638, 0.0038280438, 0.015564112, -0.048175965, 0.011904026, 0.011442142, 0.020196956, -0.0051157223, -0.0113441665, -0.012526871, -1.0230843E-5, 7.5449905E-4, 0.025557615, 0.037454642, 0.048343923, -0.035719078, 0.019665089, 0.013758563, -0.030316427, 0.011575108, -0.011106226, -0.010861287, 0.017299678, 0.011981008, -0.011659088, -0.6297307, -0.0017128221, -2.604662E-4, -0.0067113237, 0.013324671, 0.020980759, 0.013023747, 0.0021397155, -0.025977511, -0.023612102, -0.027797056, 0.018783309, 0.02498376, -0.0072012013, -0.036390908, -0.020140968, 0.0027328173, -0.013233694, 0.002017246, -0.0013672834, -0.018083483, 0.014948266, 0.013940518, -4.4154594E-4, 0.014234444, 0.0038105482, -0.0034116479, -0.023024248, 0.013779558, -9.5263706E-4, -0.023514125, 0.018671336, 0.009566611, -0.0026803305, 0.039946023, -0.0012071985, -0.019329172, 0.046048496, 0.015830046, 0.018167462, -0.031996008, -0.007250189, 0.020784808, 0.013310675, -0.007803051, 0.03703475, 0.0041604606, -1.05684536E-4, -0.015634095, -0.016137969, 0.0023111727, 0.010231445, -0.0039575114, -0.009398652, -0.0063684094, -0.0012019498, 0.03174407, -0.031016253, 0.030792309, 0.0039610104, -0.022450391, 5.9703836E-4, -0.018027497, 0.024507878, -0.014808301, 0.028496882, 0.0046783313, -0.00588553, 0.0110152485, -0.023346169, 0.003178956, 0.006161961, -0.009706575, -0.00940565, -0.014808301, -0.008194953, 0.04487279, 0.0050177467, 0.0053396663, 0.0010751064, -0.003486879, -0.015186206, 0.006529369, 0.017859539, 0.021148717, 0.0062669343, -0.037174713, 0.016725821, 0.002053987, 0.008313923, -7.3864365E-5, 0.019315176, 0.0017731821, 0.016277933, -0.0020609852, 0.008740816, -0.0070542376, 0.011197203, 0.022912277, -0.06264835, -0.0020084982, -0.01216996, 0.01781755, 0.002045239, 0.021008752, 0.029364664, -0.0041604606, 0.008425895, 0.03090428, -0.01769158, 3.070483E-4, 0.0022604354, -0.01489228, -0.020910777, -0.0030005004, -0.030736322, 0.01549413, 0.023332171, -0.006081481, -0.002501875, -0.004496377, 0.01869933, -0.007229194, -0.007390154, 0.0013576609, 0.026089482, -0.004167459, 0.01128818, 0.0045173718, 0.012869786, 0.0023269188, -7.509999E-4, 0.025697581, -0.02625744, 0.023052242, -0.0090347435, 0.010266435, -0.00744614, 0.032667838, -0.010917273, -0.01452837, -0.0033294184, -0.0019332671, -0.0021922025, -0.003887529, -0.02261835, -0.015550116, 0.007943016, -0.0153961545, -0.007558112, -0.009062736, 0.007852038, -0.021246692, 0.013198703, 0.0057595614, -0.0030809804, -0.026131472, -0.023822049, -0.0018510376, -0.0025053741, -0.0046783313, 0.021386657, 0.005840041, -0.004352913, 0.018629346, -0.01084729, 0.0014591356, 0.010077483, -0.0105813565, -0.019847043, 0.020686833, -0.019217199, 0.0077120736, 0.013527621, 5.476132E-4, 0.026159465, -0.0034991258, 0.028440896, 0.0044543874, -0.007173208, -0.023108227, -0.023556115, -0.038854294, -0.017859539, 0.027307179, 0.016361913, 0.02061685, -0.011519123, 0.0024686332, -0.011351164, -0.004972258, -0.017803553, 0.0060045, -0.014682332, -0.004314422, 0.02950463, 0.022226447, 0.0062949276, -0.01517221, -0.0152841825, 0.038658343, 0.037258692, 0.013254689, 0.0064628855, 0.0032017003, -0.024549868, 0.01016846, -0.023150217, 0.028272938, 5.712323E-4, 0.029364664, -0.028748818, -0.01597001, 0.0024773811, 0.003170208, 0.029476637, -0.0039015254, 0.011785056, 0.0023181709, 0.0083839055, 0.019861039, -0.0035691084, 0.005346664, 0.0107983025, -0.028412903, 0.009265685, 0.019721074, -0.0052346922, -0.004422895, -0.0076560876, -0.018461388, -0.0053221704, 0.01573207, 0.013373659, -0.003502625, -0.03787454, 0.018027497, -0.0026978261, 0.04439691, -0.013821548, -0.012722822, 0.027769063, 0.019175211, -0.015298178, 0.0011118472, 6.477757E-4, 0.0047273193, 0.027349168, -0.009188705, 0.029336672, -0.006452388, 0.035047244, -0.007278182, 0.018713325, 0.0063859047, -0.01517221, 0.005336167, 0.0052661845, 0.031240197, 0.029728575, 0.013079733, -0.012351914, 0.034207456, 0.0019647593, 0.009090729, 0.008572859, -0.01577406, 0.018475385, -0.023668088, -0.047784064, -0.021582609, -0.030148469, 0.013576608, 0.0037650594, -0.006417397, -0.009685581, -0.0013576609, 0.009139717, 0.017117724, 0.014206451, -0.018223448, -0.034459393, 0.02709723, 0.009790555, -0.015802052, -0.00828593, 0.00856586, -0.017481633, -0.038770314, -0.01272982, -0.015130221, 0.027699081, -0.024367914, 0.018209452, -4.0567992E-4, -0.0035201206, 0.018265437, -0.013996503, 0.0067113237, 0.003182455, -0.008579857, -3.0070613E-4, -0.012253939, -0.011582107, 0.011022246, -0.014556364, -0.021330671, 0.003639091, -0.0074881297, 0.0076001016, -0.0022254442, 0.0011135968, -0.042745322, 0.023318175, -0.01965109, 7.671834E-4, -0.0064103985, 0.011295179, 0.013394654, -0.01172907, -0.022240445, -0.034739323, -0.03675482, 0.007467135, 0.07737267, 0.039694086, 0.0030529874, 0.018643344, -0.012162962, 0.005493628, -0.016781809, 0.013786556, 0.0055706087, -0.0089297695, 0.024843793, -0.022590358, 0.025949517, 0.0053011756, -0.0024318926, -0.011057238, -0.007117222, -0.006270434, 0.01585804, -0.014514375, -0.015998004, -0.012498878, 0.002249938, 0.022772312, 0.002386404, -0.018601354, 0.020644844, 0.0056335926, 0.006417397, 0.015914025, -0.0065713585, -0.01028743, 0.0059310184, 0.009104726, 0.009272683, -0.011624096, 0.02117671, -0.0033696583, 0.02438191, -2.1158777E-4, -5.3492887E-4, 0.022170462, 0.015802052, -0.0022149468, 0.009629594, -0.032359917, -0.007866035, 0.039526127, 0.035971016, -0.026285434, 0.019805053, 0.002750313, -0.022198455, -0.012505876, 0.012862787, -0.012379908, 0.013247691, -0.002906024, -0.020364912, 0.013177708, -0.006025495, -0.039330177, 0.01657186, -0.005973008, 0.0036320926, -0.026999256, -0.025879536, -0.0016270935, -0.005721071, 0.008145965, 0.0051857047, -0.019105228, -0.021890532, 0.0023916527, 0.016473886, 0.007278182, 0.016795805, 0.0024038996, 0.007943016, 0.012967761, -0.049547624, -0.037958518, 0.0062074494, -0.0073481645, -0.025613602, 0.020196956, 0.0037650594, -4.6144723E-4, -0.0016148466, 0.0032751819, 0.007110224, 0.011372159, -0.015298178, -0.03378756, 0.03398351, 0.0107913045, 0.012596853, 0.020770812, 0.0032314428, 0.018433396, 0.01088928, -0.014836294, -0.019315176, -0.022590358, 3.261295E-5, -0.008642841, 0.0010899777, -0.0107983025, -0.0122189475, -0.02894477, -0.011365161, -0.0015833544, 0.003154462, 0.008894778, 0.0019140219, 0.01228893, 0.014360413, 0.023934022, -0.016389906, -0.0016437144, -0.004891778, -0.004664335, 0.018601354, 0.00728518, -0.0033679088, 0.01717371, -0.0021449642, -0.027629098, -0.0046048495, 0.012638843, -0.002269183, -0.0029515128, -0.011757063, -0.014696329, -0.022478385, -0.025389658, -8.174833E-4, 0.00472382, -0.007001751, 0.009223696, -0.0068722833, 0.006088479, -0.0032401907, 0.0061864546, -0.022632347, -0.028440896, 0.003051238, -0.018559365, 0.023108227, 0.03395552, 0.002125719, 0.0022534372, -0.026005505, -0.0036460892, -0.005056237, -0.013436643, -0.023668088, 0.0019350166, 0.013723572, -0.005161211, 0.032667838, 0.015018249, 0.013233694, -1.2585918E-4, 0.0026068487, 0.03714672, -0.016305927, -0.010182456, -0.04067384, 0.014864287, 0.011820047, 0.030792309, 0.021106727, 0.015270186, -0.011092229, 0.038518377, 3.6084736E-4, 0.0018457889, -0.001257061, -0.014255439, -0.011036243, 0.0024388907, -0.044256944, -0.0030529874, -0.01549413, -0.005899526, 0.03518721, -0.017957514, 0.0019770062, -0.007078732, 0.028832797, -0.0011354664, 0.0030354918, -0.020154966, 0.0082789315, -0.016235944, -0.014374409, -0.012477883, -0.0065923533, 0.016179958, -0.027335173, 0.0020557365, 0.01569008, -0.029924525, 0.0057805562, 0.026201455, 0.008243941, -0.009384655, 0.020630846, -0.0059870044, -0.015760062, -0.031492133, -0.015144217, -0.027167214, 0.0037370664, -0.015480133, -0.01452837, -0.00876881, -0.02537566, -0.025977511, 0.023276186, -0.011750065, 0.039722078, 0.02741915, 0.036278937, 0.02914072, 0.016529871, -0.020364912, 0.015634095, -0.007922021, -0.015256189, 0.022394406, 0.025725573, -0.012260937, -7.7286945E-4, -0.0012220697, 0.0111272205, -0.045404658, -0.034375414, 0.022702329, 0.032024, 0.013303677, -0.020350916, 9.6488395E-4, -0.026467388, 0.022786308, -0.010315423, 0.010693328, 6.490879E-4, -0.024661839, -0.015270186, -0.016725821, -0.001345414, 0.027195206, 0.011750065, -0.029896531, 0.009111724, -0.029168714, 0.0050457395, -5.4673845E-4, -0.021162713, 0.03955412, -0.026089482, 0.018041493, 0.011498128, 0.021316675, 0.01857336, -0.001849288, 0.014199453, 0.026173461, -0.0090417415, 0.022688333, 0.00844689, 9.788804E-4, 0.011813049, 0.014122472, -0.018685332, -0.01077031, -1.1638695E-5, -0.0069807563, 0.027153216, -4.2558118E-4, 0.0108053, 0.020322923, -0.03331168, -0.010679333, 0.0025001254, -0.028384909, -0.00772607, -0.032863792, 0.016711826, -0.012596853, 0.0012299428, 0.0035008756, 0.011225196, -0.0068687843, 0.0055706087, 0.017635595, -0.013282682, -0.016151965, -0.0038420402, -0.0048812805, -0.032919776, -0.0132057015, -0.020966763, -0.005511123, 0.008187954, -0.00772607, 0.008006, 0.0014153965, 0.011694079, -0.008075982, -0.0024353915, -0.03126819, 0.0023234196, 0.025361665, -0.01781755, -0.0071242205, 1.793302E-5, 0.024157966, 0.006119971, -0.0123309195, 0.00170145, 0.014458388, 0.040057994, -0.012806801, 0.0031807055, -0.012708825, -0.025753567, -0.007950014, 0.008222946, 0.023486134, -0.006732318, 0.010490379, -0.022520375, -0.010133469, 0.0010838542, 0.03958211, -0.012204952, -0.021232696, 0.009874533, 0.022450391, 0.032667838, 0.034711327, 0.009951514, -0.022436395, -0.0076630856, -0.026873287, -0.014059488, -0.017047742, 0.0022621849, 0.007614098, -0.0054621357, -0.013156714, -0.030484386, 0.0037825552, -0.040141974, -0.034823302, -0.0011538367, -0.0011083481, 0.03034442, -0.003919021, -0.0049827555, 0.0136116, 0.014584357, 0.0026348417, -0.018111477, -0.0104693845, 0.0051717083, 0.0031649594, 0.015298178, 0.027601106, -0.03417946, -0.009937517, 0.01573207, 0.01433242, 0.008040992, 0.016221948, -0.014360413, -0.027713077, -0.004051988, -0.0064243954, -0.018209452, 0.0031562117, 0.027293183, -0.033087734, -0.009573609, -0.0018737819, 0.01028743, -0.012603852, 0.004814797, 0.019945018, -0.018097479, 0.0029165214, -0.016599853, -0.014584357, -0.0017889282, -0.01489228, 0.026607353, 0.012232944, -0.0064243954, 0.03919021, 0.018993255, -0.02130268, 0.0024843793, -0.012421897, 2.7577486E-4, -0.0061794566, 0.011540118, -0.010693328, 0.021722574, -0.018279433, -0.0017880533, -0.017369661, -0.0014075234, -0.015480133, 0.0038175464, 0.008509874, 0.026929272, 0.027797056, -0.062984265, 0.010399402, -0.007747065, -0.007852038, -0.011953014, -0.0065958523, -0.021428647, -0.021806553, -0.008677832, 0.0027835546, -0.009482631, -0.017033745, -0.0032419402, -0.004184955, -0.028888784, 0.019973012, 0.18508977, -0.006105975, -0.0054341424, 0.04674832, -0.0015361162, 0.021148717, 0.01629193, 0.015102227, -0.0080549875, -0.008894778, 3.4641346E-4, -0.004755312, 0.006585355, 1.3427896E-4, 0.01545214, -0.03611098, -0.030372413, -0.033647593, -0.012960763, -0.02610348, -0.009419647, 4.3148597E-4, -0.008145965, -0.034851294, 0.0049827555, 0.0067953025, -0.020070987, -4.061173E-4, 0.031156218, -0.0017408151, -0.01461235, -0.023444144, -0.008201951, 0.008201951, -0.015382158, -0.00832792, -0.0014670085, 0.014325421, 0.010567361, 0.015578109, -0.0116101, -0.004891778, -0.017943518, -0.0112321945, -0.0069982517, 0.026887283, -0.026789308, 0.00304249, -0.0014188956, 0.0065433653, -0.051983014, 0.0026575862, 0.006784805, 0.029896531, -0.018111477, 0.0021484634, 0.0048008007, 0.0068058, -0.008243941, 0.001709323, 0.009356663, 0.041989513, -0.03294777, 0.021848543, 6.8845303E-4, 0.014346416, -0.03714672, -0.0125548635, 0.0035166217, -0.0244239, -0.0016568361, -0.0292247, -0.011204201, 0.0027853043, -0.012561862, -0.024213951, 0.014402403, 0.010672334, 0.0030547369, 0.014584357, -0.02830093, 0.0036565866, 0.0028622851, 3.6522126E-4, -0.025081735, -0.01865734, 0.013835544, -0.019035244, -0.022968262, -0.042661343, -0.01116921, -0.0034116479, -0.01165209, -3.1098482E-4, -0.013079733, -0.008999752, 0.0232202, 0.014920273, -0.02774107, -0.0020137469, -0.026915276, 0.030876286, 0.032751817, 0.011981008, -0.041093733, -0.021722574, 0.002846539, 0.016081983, 0.037734576, -0.025515627, -0.0051787063, -0.026719326, -0.0011520872, -0.016109975, 0.0013629096, 0.019987008, -0.00544464, -0.022716325, 0.020672835, -0.0125478655, -9.902526E-4, -0.01669783, 0.023864038, 0.0052416907, -0.0014678834, -0.023514125, -0.02625744, 0.0014302677, -0.015004252, -0.033451643, 0.022786308, -0.02545964, 0.0031124726, 0.01312872, 0.002893777, 0.006693828, 0.0072012013, -0.02350013, 0.0012666836, 0.0114491405, -0.0052906782, -0.03006449, 0.015844041, 0.0022324424, 0.012561862, -0.02330418, 0.0051507135, -0.0062424405, -0.014185457, -0.03686679, -0.017663587, -0.005584605, 0.009363661, 0.016137969, 0.036726825, 0.011673084, -0.030008504, -0.04663635, -0.01792952, 0.020826798, -0.034711327, 0.017425647, 0.027993007, 0.007243191, -0.016823797, -0.004870783, -0.18072286, 0.033535622, 0.0015527371, -0.023430148, 0.03154812, 0.009097727, 0.03098826, 0.0084049, -0.004891778, -0.018349417, -0.0014215199, 0.0069632605, -0.029308679, -0.015088231, -0.010336418, 0.010616348, -0.0061479644, 0.038462393, 0.029728575, 0.0019280184, 0.040421903, -0.014458388, -0.006784805, -0.011582107, 0.017117724, 0.0046363417, 0.030764315, -0.001460885, 0.022912277, 0.0022341919, -0.041849546, -0.01261085, 0.009433644, -4.065547E-4, 0.0013769061, 0.009090729, -0.0023076735, -0.020714825, -0.0013786557, -0.01021045, 0.036194958, 0.0110082505, 0.007761061, 0.008740816, 0.010441392, 0.010987256, 0.027433148, -0.02578156, 0.015340168, -0.014374409, -0.01289078, -0.028720826, 0.045376666, -7.833668E-4, -0.025851542, 0.034011506, -0.008999752, 0.011302177, 0.007922021, 0.0037335674, -0.032639846, -0.008614848, -1.9737257E-4, -0.0017644343, 0.0020679834, -0.017593605, -3.589338E-5, 0.013716574, -0.029840546, 0.00984654, -0.026733322, -0.0025228697, 0.007838042, 0.010840292, -0.0044088988, -0.009090729, -0.038014505, 0.013681582, 0.0051332177, 0.03070833, -0.008922772, 0.03594302, -0.009986506, 0.0062739328, -0.006119971, -0.020980759, 0.020644844, 0.0049337675, 0.016137969, -0.016515875, 0.01373057, -0.023556115, -0.011435144, -4.345477E-4, -0.0030372413, -2.8364788E-4, -0.007502126, 0.016711826, 0.025907528, -0.011435144, -0.00792902, -0.010945266, -0.018685332, 0.03879831, 0.030932274, 0.013065736, 0.020966763, 0.018587356, 0.004996752, 0.0053151725, -0.017621597, -0.0072081992, 0.0308203, 2.0972887E-4, -0.024311926, 0.01965109, -0.019987008, -0.02029493, -0.006802301, 0.0052066995, 0.041485637, 0.002914772, -0.0036565866, -0.00872682, -0.012827796, -0.019973012, -0.08812199, 0.0031614602, 0.0040099984, 0.022002503, -0.027755067, 0.025641594, -0.01084729, 0.012379908, -0.0075091245, 0.034627352, 9.150214E-4, -0.03742665, 0.008642841, -0.0034238948, 0.00644539, 0.011981008, -0.02914072, 0.0023129222, 0.0021187207, 0.02149863, -3.870908E-4, -0.00984654, 0.0102454405, -0.008691829, -0.015746066, 0.007523121, -0.0084958775, 0.013401653, 0.0076001016, 0.01128818, -0.0031334672, -0.03238791, 0.013114724, -0.03219196, -0.0038945272, -0.01261085, -0.019637095, -0.014136469, -0.0071627107, -0.046972267, 0.017705576, 0.0101404665, 0.0062669343, -0.012176958, -0.0026978261, -0.012309925, -0.040421903, 0.026803305, -0.018139469, -0.007873033, -0.0058155474, -0.016963763, -0.028566863, -0.0053431652, 0.015018249, 0.0125478655, 0.039722078, -0.0134226475, -0.020980759, -0.018797304, -0.0072571873, 8.975258E-4, -0.024073986, 0.018027497, 0.021344667, 0.009090729, -0.0014810051, -0.013688581, 0.01969308, -0.019357165, -0.028328924, 0.018069487, -0.030260442, -6.3902786E-4, -0.0063124234, 0.006112973, -0.036166966, -0.013856539, 0.009867535, -0.019385157, -0.019119224, -0.03630693, 0.013772559, -0.013282682, 0.025851542, 0.009496627, 0.01965109, 0.010917273, -0.009426645, -0.040729824, -0.0028395406, 0.017159713, 0.008460887, 0.00584354, -0.0062914286, 0.012113974, 0.0011503376, 0.009993504, 0.014262437, -8.0961024E-4, -0.024157966, 0.006420896, -0.07328569, 0.03347964, -0.012470885, -0.005108724, -0.0035131224, -0.017957514, 0.007894028, 0.0072571873, -0.009734568, 0.016431896, -0.0066588367, 0.02438191, 0.002666334, 0.004615347, -0.0068862797, 0.006889779, 0.004426394, -0.007614098, 0.0013165461, -0.0035498634, -0.008691829, 0.017383657, 0.01973507, -6.1628356E-4, 0.0055146227, 0.014794304, 3.300113E-4, -0.0042479387, -0.007747065, 0.005147214, 0.03919021, -0.03166009, 2.5215576E-4, 0.014003502, -0.010385406, -0.017705576, -0.013583607, 0.0026505878, 0.026733322, 0.004615347, -0.011176208, -0.037482638, -0.009279682, -0.010966261, -0.007957012, 0.018643344, -0.0014197703, 0.004023995, 0.025907528, 0.0033854044, 0.036502883, 0.02453587, -0.012631845, -0.025683584, -0.005304675, -0.01969308, 0.04159761, 0.014514375, 0.0010164961, -0.027587108, 0.01885329, -0.0022954266, 0.016543867, -0.009300677, 0.011183207, -0.0013830295, 0.02089678, 0.0042094486, 0.0031019752, -0.018083483, -0.024507878, -0.01597001, -0.0069002765, 0.03611098, 0.010784307, 0.023864038, -0.002057486, 0.0108053, -0.0035796058, 0.02978456, 0.009615598, 0.0091537135, -0.023122225, 0.03863035, 0.008922772, 0.013030745, 0.0107913045, 0.005948514, 0.014654339, 0.0077120736, -0.0125548635, 0.013338668, 0.019623099, -0.010959262, -0.0035691084, 5.9835054E-4, -0.015900029, -0.013898528, 0.0048008007, 0.031100232, 0.006840791, -0.02317821, -0.013954515, -0.022912277, 0.0018562863, 0.0033014254, -0.026789308, -0.011736068, 4.938141E-4, 0.0017320673, 0.019189207, 0.010553364, -0.006634343, 0.011785056, -0.044732828, 0.012064986, -0.0074321437, -0.0041184714, -0.010595353, 0.051143225, -0.0040974766, 0.0015273684, 0.031492133, -8.9052756E-4, 0.037090734, 0.014948266, 0.021638595, -0.019861039, 0.0052101985, 0.01300975, -0.011176208, 8.6297194E-4, -0.027349168, 0.012085981, -0.0052451896, -0.009475633, 0.021554615, 0.030372413, -0.003887529, 0.08369909, 0.011533119, 0.0033224202, 0.015564112, -0.023486134, 0.011554114, 0.016795805, 0.020112976, -0.011582107, 0.0013760313, 0.010693328, -7.8599114E-4, 0.017439643, -0.03557911, 0.009706575, -0.0035901032, -0.00436341, 0.0038735324, -0.006336917, -0.015130221, -0.018951265, -6.403674E-6, 0.02418596, 0.002610348, 0.011428146, 0.009839542, 0.0055776066, 2.5149967E-4, -0.019567112, -0.029644595, 0.001193202, -0.02141465, 0.007943016, -0.0091537135, 0.03767859, -0.011407151, -0.0153961545, 0.025739571, 0.030148469, 0.0074251452, -0.016515875, 0.010294428, -0.028972764, -0.015424147, 0.027111229, -0.015256189, -0.013310675, -0.026187459, -0.038266443 ], + "id" : "3c86acbb-2a05-404a-94dd-b1b4ae4add5d", + "metadata" : { + "source" : "movies.csv" + } + }, + "cf608b1d-992c-4e55-a04b-3964eb419de1" : { + "text" : "Gillooly-Calvin Gadsden-Aaron Izbicki-Michael Burgess-Steven Griffith-Bill Roberson-Michael McFall-Eric Underwood-Steve DeRelian-Byron Minns-Stephen Bridgewater-Bonnie Ann Burgess-Scott Oliver-John William Galt-Hilary Chaplain-Isabel Rose-Jay Ross-Richard D'Alessandro-Dick Stilwell-Kevin Davis-Michael Jace-Geoffrey Blake-Tim Perry-Vanessa Roth-Emily Carey-Paul Raczkowski-Valentine-Dick Cavett-Joe Stefanelli-Tiffany Salerno-Marla Sucharetza-Aloysius Gigl-Jack Bowden-Joe Alaskey-Lazarus Jackson-W. Benson Terry-Matt Rebenkoff-Peter Bannon-Joe Washington-Nora Dunfee-Natalie Hendrix Tate-Hallie D'Amore-Jim Hanks-Chiffonye Cobb-Juan Singleton-Bobby Richardson-Michael Mattison-Lenny Herb-Charles Boswell-Timothy McNeil-Lonnie Hamilton-Teresa Denton-Kurt Russell-Mary Ellen Trainor-Robb Skyler-Michael J. Oliver-Beau Lotterman-Todd Adamson-Marcus Batton-John-Michael Steele-Bryan Hanna-Jim Boeke-Rob Adams-Greg Brown-Darren W. Conrad-Brendan Shanahan-Troy Christian-James Ent-Jacqueline Lovell-Zach Hanner-John Glenn Harding-Beth Aylward-Aaron Michael Lacey-Christopher James Hall-Grand L. Bush-Conor Kennelly-Teddy Lane Jr.-William Shipman-John Simmit-Joe Abby-Jim Keller-Keri-Anne Bilotta-Jenny Inge Devaney-Jim Damron-Ellsworth Hanna-Jeanne Hanna-Dick Clark-Elvis Presley-John Lennon-Bob Hope-Neil Armstrong-John Connally-John F. Kennedy-Robert F. Kennedy-Lyndon B. Johnson-Gerald Ford-Richard Nixon-Ronald Reagan-George Wallace,vietnam veteran-hippie-china-washington dc usa-single parent-mentally disabled-based on novel or book-waitress-usa president-optimism-parent child relationship-1970s-autism-drug addiction-alabama-vietnam war-john f. kennedy-black panther party-ping pong-bus stop-friendship-stripper-bullying-moon landing-ronald reagan-richard nixon-cancer-singer-family relationships-death of lover-death-illness-leg brace-physical abuse-dying mother-ill mother-death of mother-historical event-military-disability-shrimping-anti war protest-low iq-false history-assassination attempt-vietnam flashback-intellectual disability-1960s-mother son relationship-monument valley-child sexual abuse-dying in arms-ptsd-elvis presley-single mom-disabled veteran-war rally-lyndon b. johnson-dick cavett-single dad-ping pong diplomacy-college football-slow-witted-bob hope-neil armstrong-gerald ford-robert f. kennedy,/arw2vcBveWOVZr6pxd9XTd1TdQa.jpg,/3h1JZGDhZ8nzxdgvkxha0qBqi05.jpg,497-680-857-550-278-424-807-105-122-155-121-27205-603-120-37165-597-16869-637-98-274-238\r\n745,The Sixth Sense,Mystery-Thriller-Drama,en,Following an unexpected tragedy a child psychologist named Malcolm Crowe meets an nine year old boy named Cole Sear who is hiding a dark secret.,37.", + "embedding" : [ 0.011675046, -0.03449225, -0.0063392664, -0.05857593, -0.025910713, 0.042077225, -0.003226728, -0.009391249, -0.025509318, -0.020872518, 0.022312002, 0.031004272, 0.009522741, -5.7484204E-4, -0.00754345, 0.013107609, 0.024208246, -0.009889532, 0.0062423777, -0.019571446, 0.01137746, 0.0077441474, -0.013010721, -0.0019550684, 0.016512543, 0.007301229, 0.031087318, -0.0093428055, -0.004200802, -0.008775316, 0.012726977, -0.020734107, -0.0028720475, -0.026035283, -0.026256742, 0.008138621, 0.00243605, -0.02519097, 0.017093873, 0.0028063017, 0.021841401, 0.012284058, -0.025384746, -0.011156001, 0.004979369, 0.015848165, 0.0032769023, -0.024471229, -0.007633418, 0.023820693, 0.038727656, 0.01997284, -0.008976013, -0.030229164, 0.009924135, -0.004263087, -0.007100532, -0.007010564, 0.00522159, 0.013419036, 0.01439484, -0.030312212, -0.031502556, -8.4777304E-4, -0.0042873095, -0.0037648045, -0.016803209, -0.020623377, -0.02054033, -3.393255E-4, 0.017675202, 0.020941725, 0.003667916, -0.003051983, 0.029924659, -0.03153024, -0.018837864, -0.00139277, -0.0037855662, -0.0022440033, 0.010969145, -0.00858154, -0.0157928, 0.005789079, 0.0033391877, -0.020277347, -0.009799564, 0.032111567, -0.030948907, 0.0037821059, 0.00545689, 0.049994387, 0.006124728, 0.01067848, -3.3413505E-4, 0.028817363, -0.023073269, 0.0350459, -0.014782393, -0.02737788, 0.003330537, -0.0036021704, -0.0027024928, -0.016083466, 0.0021574958, -0.0035000916, -0.008339318, -0.006294282, 0.035461135, 0.008498493, 0.0013503814, -0.016927779, 0.0201943, -0.028955774, -0.0032803626, -0.021979814, 0.010353212, -0.017605998, -0.025578525, -0.034187745, 0.019280782, 0.014124937, 0.0056921905, -0.039641175, 0.017868979, 0.03097659, -0.011439745, -0.013100689, -0.008713031, 0.0016756494, 0.03189011, -0.0027561274, 0.0062804413, 0.018021233, -0.01939151, 0.051793743, -0.019433035, 0.018076597, -0.022201274, -0.017426062, 0.020554172, 0.026865754, -0.028402127, -0.01323218, -0.008332398, -8.3522947E-4, 0.026838072, 0.021592261, 6.998453E-4, 0.008761475, 0.009190552, 0.009764961, -6.7951606E-4, 0.017135397, 0.021426165, 0.0093635665, -0.014616299, 0.010159436, -0.01265085, -0.020152776, -0.02681039, -0.01903164, 0.0025952237, -0.010200959, 0.004446483, 0.013045324, 0.0036955983, -0.012083361, 0.009467375, 0.008062495, -0.004616038, 0.030838177, -0.0378695, 0.014069572, 0.009488137, 0.01833958, 0.00162461, 0.0012197552, -0.021038612, -0.015405247, -0.019945158, 0.00800713, 0.023225522, 0.041800402, -6.604844E-4, 5.8479037E-4, 0.03424311, -0.0097442, 0.012803103, -2.571434E-4, 0.008290875, 0.012588564, 0.014823917, -0.008283954, -0.63027257, -0.030035388, -0.011176763, -0.014976171, 0.014823917, 0.020678742, 0.010782289, 0.0035952497, -0.025329383, -0.0068202475, -0.0032682517, 0.031308778, 0.0194884, -0.012782342, -0.02287949, -0.015308359, -0.0039828033, -0.006578027, 0.026284425, -0.012602406, -0.027087213, 0.018948592, 0.023363933, -0.017453743, 0.013855034, 0.033634096, 0.0011860172, -0.018948592, -0.0018097359, 0.0068756123, -0.017315332, 0.017619839, 0.006685296, -2.9628802E-4, 0.045177653, 0.0029395232, -0.03028453, 0.048111986, 0.037066713, 0.030699765, -0.009315123, -0.0046956246, 0.008519254, -0.009965659, -0.027211785, 0.032775946, 0.007578053, 0.0012361915, 0.00162461, -0.010297847, -0.011398222, 0.0013720082, -5.558104E-4, -0.0155990245, -0.0066783754, 0.0038270897, 0.020415759, -0.03587637, 0.026727343, 0.0019741, -0.033274226, 0.021315437, -0.006190473, 0.0031315698, 9.619629E-4, 0.0306444, -0.01403497, -0.02333625, -0.002411828, -0.02679655, 0.01763368, 0.03141951, -0.026062965, -0.007716465, 0.006827168, -0.0035087424, 0.047309197, 0.005771777, 0.01601426, 0.018616404, -0.010546989, -0.007841036, 0.012401708, 0.014768553, 0.030090753, 0.0077579883, -0.023377774, -0.0022543843, 0.008048654, -0.0053669224, -4.710331E-4, -4.8011637E-4, 0.0054465095, -0.009848009, 7.136865E-4, 0.0035295042, -0.0076957033, -6.9119455E-4, 0.04188345, -0.06366949, -0.01172349, -0.02646436, 0.017481426, -0.0053323195, 0.0073842765, 0.0022301623, -1.8025991E-4, -0.021896766, 0.03249912, -0.008249351, -0.015612865, -0.003261331, -0.02179988, -0.0029412534, -0.0023616536, -0.02528786, 0.0041731196, 0.028512856, -0.012595485, -0.0016505623, 0.009086743, 0.0059932363, -0.0033720606, 0.006522662, 0.01624956, 0.027488608, -0.005706032, 0.004536451, 0.0011704458, 0.011709649, -0.015751278, -0.011654284, 0.030699765, -0.010851495, 0.0051904474, 0.006142029, 0.012754659, -0.011245969, 0.014671664, -0.006055522, -0.037205126, 0.02101093, -0.0098549295, -0.006578027, -0.011924188, -0.017439902, -0.027543973, -0.0018841324, -0.0075918944, -0.001136708, -0.012374026, 0.010540068, -0.004038168, 0.01102451, -0.005315018, -0.00835316, -0.03712208, -0.013093769, 0.009266678, -0.0056091435, 0.005048575, 0.02494183, 0.0022474637, -0.032748263, 0.019889794, -0.007944845, 0.0058409832, 0.009619629, -0.011633523, -2.9434162E-4, 0.011515873, -0.026049124, 0.019986682, 0.012872309, -0.014976171, 0.030450623, -0.0074258, 0.025467794, 0.012401708, -0.00684447, 0.008913728, -0.002832254, -0.018035075, 0.0068963743, 0.023640757, 0.021633783, 0.018394945, -0.01137746, -0.0070866905, 0.0139588425, -0.0053911447, -0.0010104071, -0.011571237, -0.003470679, 0.005896348, 0.03922594, -0.008104018, -0.0043461346, -8.1057486E-4, 0.030450623, 0.041108344, 0.005242352, 0.016540226, -0.009688835, 0.0054811123, -0.024983352, -0.0046575614, -0.031198049, 0.0014282381, 0.00429077, 0.015197629, -0.0020381156, -0.0018806721, -0.004003565, 0.0015467532, 0.006287362, -0.017730568, 0.018422628, -0.0061939335, -0.003214617, 0.0116819665, -0.008387763, 0.02633979, 0.014408682, -0.02564773, 0.029260281, 0.009764961, -0.02192445, 0.0026315567, -0.020000523, 0.008367001, 0.009896453, 0.014090334, 0.017273808, -0.02135696, -0.0260076, 0.010200959, -0.0060416805, 0.04642336, -0.011017589, -0.018076597, 0.014436364, 0.0127685005, -0.0052285106, 3.352164E-5, -0.017218444, 0.02402831, 0.010290926, -0.018367263, 0.04304611, -0.007785671, 0.027723908, -0.013059165, 0.0014645712, 0.0021713371, -0.02157842, 0.013633574, 0.023267046, 0.018685611, 0.028706634, -0.002877238, -0.029841611, 0.009377408, 0.002425669, 0.010429339, 0.012512438, -0.026962643, 0.008733792, -0.02552316, -0.039890315, -0.027114896, -0.010623115, 0.0031748235, 0.009709597, -0.0082147475, -0.0050935587, 0.0115989195, 0.0036852176, 0.011017589, 0.0087891575, -0.009785723, -0.024734212, 0.013246021, 0.033744827, -0.020291189, -0.01892091, -0.0122771375, -0.019280782, -0.022990221, -0.0064015514, -0.019945158, 0.03817401, -0.016803209, 0.010415497, -0.004917084, -0.0060762838, 0.008339318, -0.006626471, 0.0042873095, 0.011591999, 2.0372505E-4, 0.010650798, -0.0014221825, 0.0054741916, 0.029204916, -0.004446483, -0.002519097, -0.0038132486, -2.0177863E-4, -0.006142029, 0.006522662, 0.016526384, -0.027114896, 0.019419193, -0.008837601, -0.010027944, -0.0049862894, -0.005955173, -0.0030571735, -0.0197237, -0.023363933, -0.03631929, -0.022727238, 0.0057302536, 0.09090895, 0.041994177, 0.009079822, 0.0074950056, -0.0036852176, 7.093611E-4, -0.020346554, -0.014630141, 0.0069655804, -0.018962434, 0.019211575, -0.0024637324, 0.015612865, -0.009730359, 0.00998642, -0.010353212, -0.01659559, -0.003076205, 0.002517367, -0.0192531, -0.027267149, -0.007557291, 0.009183631, 0.019820588, -0.0035883293, -0.029620152, 0.02193829, 0.012325582, -7.4915454E-4, 0.00649844, -0.013356751, 0.012865389, 0.013128371, -0.004259627, -0.010401656, 0.0056160637, 0.032665215, 0.009197473, 0.031059636, 0.009841088, 0.023017904, -0.016747843, 0.011841141, -0.0074327206, 0.018644087, -0.03296972, -0.022547303, 0.032554485, 0.048001256, -0.02750245, 0.016955461, 0.006429234, -0.00905214, -0.018727133, 0.02030503, -0.022533461, -0.006187013, 0.013536686, -0.008311636, 0.020221982, -0.012117964, -0.043544393, 0.010367054, -0.020152776, 0.00894141, -0.0139588425, -0.013647416, -0.008401604, -0.023654599, -0.009889532, 0.019059323, -0.023045586, -0.0075711324, -0.014111096, 0.01369586, 0.008027892, 0.027364038, -0.0041731196, 0.0041177548, 0.0044499435, -0.02611833, -0.031281095, 0.023737645, -0.015308359, 0.0061558704, 0.0045814347, 0.0056921905, 0.018644087, -0.010457021, 0.003470679, -0.009882611, 0.0029966182, -0.031308778, -0.028568221, 0.023142474, 0.006975961, 0.024457388, 0.018533356, 0.017592156, -0.017107714, 0.01323218, -0.021412324, -0.014464046, -0.012692373, -0.01739838, -0.005706032, -0.008802999, 0.012630088, -0.025246335, -0.03817401, -0.021329278, -0.029896976, 0.010969145, -0.011502031, 0.012976118, -0.012401708, 0.011626602, 0.017619839, 0.0013079927, -0.010277086, 0.010131753, -0.03576564, 0.012470915, 0.033357274, -0.019931318, 0.018228851, 0.00835316, -0.028056098, -0.01660943, 0.020401917, -0.011245969, 0.032305345, -0.036097832, -0.0155990245, -0.01576512, -0.014657823, 0.017121555, 0.016291084, -0.021398485, -0.0037232807, -0.0088099195, 0.0026782707, 0.01588969, 0.0034983614, 8.170629E-4, -0.030201482, -0.0031713634, -0.020775631, 0.0132806245, 0.01799355, -0.017855138, 0.013031483, -0.021149343, -0.0015303169, -0.010830733, -0.035488818, -0.024388181, 0.0073427525, 0.036734525, 0.013792749, 0.043931946, 0.015197629, 0.052264344, 0.0051316223, 0.012353265, 0.01684473, -0.010311688, -0.005176606, -0.025232494, 0.012021076, 0.011225207, 0.011508952, 0.016678637, 0.004917084, -0.006301203, 0.026381314, 0.018464152, 0.023059428, -0.0067648827, -0.025218653, -0.030035388, 0.014685505, -0.014547094, 0.003968962, -0.026076807, -0.017965868, 0.039419718, -0.013218339, -0.012526279, -0.01415954, 0.043239884, -0.009827247, 0.018159645, -0.016263401, 0.010982987, -0.028457493, -0.015931213, -0.01717692, -0.02646436, -6.67405E-4, -6.4707577E-4, 0.011792696, -0.008955251, -0.016318766, -0.008422365, 0.021260072, -0.032111567, -0.007349673, 0.029537106, -0.0250664, -0.012837706, -0.02297638, -0.009121346, -0.021066295, -0.014464046, 0.0150869, -0.0057371743, 0.013197578, -0.012637009, -0.043793533, 0.019419193, 0.003086586, 0.044347182, 0.017246125, 0.037675727, 0.022436574, -0.0011271922, -0.017813616, 0.031364143, 0.019709859, 5.0996145E-4, 0.01937767, 0.018533356, -0.009294361, -0.0045156893, -0.007218182, 0.0050866385, -0.042990744, -0.03213925, 0.019668335, 0.039917998, 0.019073164, -0.034630664, 0.005290796, -0.03042294, 0.011010669, -0.0038028676, -0.008526174, 0.00243605, -0.03330191, -0.023322409, 0.0030658243, -0.02343314, -0.0021073215, 0.00905906, -0.030893542, 0.0040866123, -0.020332713, 0.002659239, -0.01684473, -0.004519149, 0.038644608, -0.01416646, 0.009522741, 0.0054707313, 0.0069344374, 0.010726924, 0.00962655, -0.0071904995, 0.03075513, -0.012927674, 0.007183579, 1.713929E-4, 0.0021436547, 0.007605735, 0.023931421, -0.016387973, -0.027668545, -0.018381104, -0.015723595, 0.03097659, 0.013605893, -0.0071628173, 0.02054033, -0.0204296, -0.0059932363, -0.005695651, -0.01137054, 4.3059085E-4, -0.041634306, 0.014339476, -0.025135607, 0.014519411, -0.011585078, -0.011820379, 0.0060416805, -0.0010138673, 0.017038507, -0.003145411, -0.0018789419, -0.027184103, -0.014671664, -0.03576564, -0.022671873, -0.008865284, -0.010982987, 0.0050278134, -0.0060243793, 0.013169895, -5.51485E-4, 0.008200906, -0.0023997168, 0.0064050118, -0.0052388916, 0.006996723, 0.035461135, -0.020360393, 0.009557343, 2.965043E-4, 0.015474454, -0.0102148, -0.009149028, -0.0059274905, 0.011176763, 0.03886607, -0.007605735, 0.016900096, -0.002994888, -0.03595942, -0.017924344, 0.017135397, 0.014616299, 0.022574985, 0.011335936, -0.025440112, -0.007114373, -0.010650798, 0.039890315, 0.0016747843, 0.020318871, 0.02020814, 0.0059586335, 0.02937101, 0.03189011, -0.0037578838, -0.030229164, 1.2078603E-4, -0.0066230106, -0.049191598, 0.005211209, -0.0033357274, 0.013564369, 0.016332608, 6.189608E-4, -0.039613493, -0.009751121, -0.010664639, -0.029675517, -0.0061316486, 0.020471124, 0.033025086, 0.0036263925, -1.726905E-4, 0.016969303, 0.007612656, -0.0014792775, -0.02124623, -0.0011920728, 0.021619942, 0.008623063, 0.0192531, 0.016734002, -0.017010827, -0.008041733, 0.0015977927, -0.003609091, 0.011792696, 0.020111253, -0.016775526, -0.020249665, 0.0011245969, 0.00800713, -0.012837706, -0.017689044, 0.013377513, -0.024927989, 0.011612761, 0.001647102, 0.011564316, -0.010311688, 0.017190762, 0.008422365, -0.015806641, 0.0028720475, -0.014810076, -0.0201943, 0.012671612, 0.0015406978, 0.02287949, 0.019128527, 0.0030502528, 0.023322409, 0.035931736, 0.006093585, -0.0025225573, -0.0041523576, 0.005117781, -0.015017694, -0.0038513117, 0.0032353788, 0.028900411, -0.027557814, 0.014657823, -0.017481426, 0.0013616274, -0.022824127, 0.007709544, 7.854877E-4, 0.03321886, 0.013882716, -0.058188375, 0.0010052166, -0.001357302, -0.001961989, -0.0070036435, -0.018990116, -0.011543554, -0.03842315, -0.01032553, -0.005145463, -0.008623063, 0.0021488452, 0.0010104071, -8.819435E-4, -0.0041835005, 0.010865336, 0.19012262, 0.0025242874, 0.011730411, 0.032748263, -0.012969198, 0.013529765, 0.021675307, 0.017481426, 0.009266678, 0.027903844, -0.0038340103, -0.00673028, -0.0047440687, 0.0072873877, 0.013079927, -0.01439484, -0.01566823, -0.03141951, -0.028595904, -0.039392035, -0.001868561, 0.015142265, -0.013142212, -0.029675517, 0.009578105, 0.015017694, -0.0050866385, 0.034519933, -0.0031038874, 0.010546989, -0.012976118, -0.013502084, -0.0025813824, 0.0024377801, -0.015059218, -0.0047336877, -0.011737332, 0.009377408, 0.024983352, -0.011432826, 0.00615241, -0.0025813824, -0.0069067553, -0.014976171, -0.005128162, 0.018394945, -0.02750245, -0.005349621, -0.01346748, 0.010166356, -0.040333234, 0.0042181034, 0.015003853, 0.020830994, -0.012630088, -0.0033703304, -0.011875743, -5.510525E-4, -0.010021023, 0.009778802, 0.0058063804, 0.028166827, -0.035101265, 0.024291294, 0.013142212, 0.027723908, -0.042769287, -0.0048547983, 0.008062495, -0.045675937, -0.006360028, -0.020249665, -0.011218287, 0.003086586, -0.015252994, -0.014616299, -0.004446483, 0.0034516475, -0.011391302, 0.029537106, -0.032831308, -0.002529478, -0.006287362, -4.3534877E-4, -0.016692478, -0.024402022, 0.017121555, -0.017218444, -0.01926694, -0.011038351, -0.003958581, -0.01915621, 0.0016202846, 0.0061454894, 0.0018080057, 9.308202E-4, 0.017689044, 0.024332816, -0.021855243, -0.009155949, -0.027170261, 0.023377774, 0.02681039, 0.0032907436, -0.016180355, -0.019349987, -0.014685505, -0.0018408786, 0.026298266, -0.030312212, -0.03341264, -0.0153222, -0.002283797, -0.001751776, 0.006709518, 0.020927884, 0.023114791, -0.006986342, 0.02809762, -0.015308359, 0.0017336094, -0.018173486, 0.018754816, 0.007356594, 0.0023132092, -0.025550842, -0.03189011, 0.0037232807, -0.012657771, -0.040471647, 0.030090753, -0.021453848, 0.007834115, -0.0035675673, -0.0073427525, 0.010733845, 0.02239505, 0.0048547983, -0.0048374967, -0.01903164, -0.009093664, -0.012913832, -2.4611372E-4, -0.0046125776, 0.0049862894, -0.020332713, 0.006854851, 0.00209002, -0.029896976, -0.021329278, -0.01392424, -0.014464046, 0.009135188, 0.011495111, 0.029647835, -0.021965973, -0.00847081, -0.028042257, -0.019349987, 0.034215428, -0.033025086, 0.023377774, 0.024581958, -0.0011929378, -0.019446876, -0.011820379, -0.17827456, 0.016623272, 0.009827247, -0.036485385, 0.02065106, 7.314205E-4, 0.022865651, 0.017619839, -0.010643877, -0.02564773, 0.019889794, 0.004013946, -0.037371222, 0.017813616, 0.006571106, 0.011225207, -0.025011035, 0.022671873, 0.03330191, -0.0058306023, 0.0403886, -0.020706424, -0.006685296, 0.007854877, 0.013038403, -0.0022249718, 0.016318766, 0.0066887564, -0.005872126, -0.008629983, -0.049274646, -5.3764385E-4, -0.005176606, -0.0023616536, -0.0127477385, -0.0067475815, -0.020249665, -0.029758563, -0.004225024, 0.003517393, 0.037758775, 0.014380999, 0.026561249, 0.031087318, 0.02179988, 0.020484965, 0.03690062, -0.015778959, 0.017702885, -0.01811812, -0.021398485, -0.051350825, 0.016913937, 0.0028149525, 1.684192E-5, 0.012090282, 0.016138831, 0.002610795, -0.0025087162, 4.143707E-4, -0.02448507, -0.012284058, 0.011751172, -0.005439589, -0.01009715, -0.016983144, -0.020318871, 0.016927779, -0.030948907, 0.006685296, -0.021896766, -0.009294361, 0.011508952, -0.009612708, 0.005304637, -0.02494183, -0.031640965, 0.0076887826, -0.013287545, 0.020817153, -0.0038928355, 0.04780748, -0.012270217, -0.0052354313, -0.0076749413, -0.023087109, 0.003875534, 0.006567646, 0.013972684, -0.02261651, 0.0014187222, -0.022118226, -0.033551052, 0.0026021441, 0.005512255, 0.0073427525, -0.016221877, 0.0073289117, 0.01033245, -0.011557396, 0.014810076, 0.0033634098, -0.013488242, 0.008858363, 0.02819451, 0.0069171363, 0.003539885, 0.0046852436, 0.008180145, 0.0030796654, -0.010138674, -0.006429234, 0.01730149, 0.0010813432, -0.030782813, 0.009841088, -0.013273704, -0.0297032, 0.020291189, 0.03177938, 0.038699973, -0.0094050905, 0.016747843, -0.020332713, 0.004280389, -0.0024758433, -0.088915825, 0.0046921642, 0.0071628173, 0.027986892, -0.0028755078, 0.051793743, -0.016208036, -0.010720003, -0.026685819, 0.034104697, 0.0035675673, -0.026851913, 1.7777282E-4, 0.0068686916, 0.0020450363, 0.002055417, -0.0022924475, -0.026478201, -0.012851547, 0.016000418, -4.3816026E-4, -0.0024222087, -0.0070278654, -0.0134259565, -0.014062651, 0.006321965, -0.026478201, 0.026948802, 0.018616404, 0.016387973, 0.015197629, -0.032665215, 0.011052192, -0.021093978, -0.0072458643, -0.023723803, -0.008408524, -0.035821006, 0.010360133, -0.02112166, 0.0046264185, 0.013716622, 0.015626706, -0.009432773, -0.00348106, 0.009439694, -0.03272058, 0.02528786, -0.0047994335, -0.011425905, -0.010581592, -0.012740818, -0.014339476, -0.011315175, 0.01612499, 0.015640547, 0.023419298, 0.0110452715, -0.01033245, -0.015280677, -0.007626497, 0.0066922167, -0.011612761, 0.017080031, 0.013751225, 0.008913728, 0.009294361, -0.014083413, 0.00894141, -0.018837864, -0.01648486, 0.029813929, -0.02275492, -0.0081939865, -0.0121318055, 0.0022318922, -0.022727238, -0.0033115053, 0.0133013865, -0.036706842, 0.005536477, -0.028374445, 0.01879634, -0.011979552, 0.009661152, 0.016983144, 0.0038962958, 0.022436574, -0.0026782707, -0.03224998, 0.012484755, 0.01997284, 2.586573E-4, -8.689674E-4, -0.0011635253, 0.003422235, 0.014754712, -0.0019429574, 0.00858154, 0.008491572, -0.009488137, 0.0031038874, -0.07762141, 0.031751696, -0.030589037, 0.01474087, -0.012816944, -0.01056083, -0.010145594, -0.0073150704, -0.00869919, 0.02948174, -0.009377408, 0.018754816, 0.0014230476, -0.0059828553, -2.4438355E-4, 8.4215007E-4, -0.01706619, 0.001728419, 0.007093611, 0.004453404, -0.014055731, 0.0197237, 0.0065365033, 0.01474087, -0.0054465095, 0.025689254, 0.007121294, 0.024900306, -0.025453953, -0.013183736, 0.028761998, 0.004166199, 0.0026229061, 0.002413558, -0.010277086, -0.032083884, 0.01265085, -0.011329016, 0.029564787, 0.00533924, -0.0042769285, -0.018948592, -0.0027076832, -0.012090282, 0.024263611, 0.007847956, -0.018325739, 0.0071351347, 0.007937924, 0.009550423, 0.015571342, 0.009709597, -0.006522662, -0.02588303, 0.019405352, -0.012512438, 0.03413238, 0.010623115, -0.0026073346, -0.011100637, 0.039281305, -0.0023633835, 0.034215428, -0.010297847, 0.011135239, -9.238996E-4, -0.0039620413, 0.0023357014, 0.012097202, -0.01739838, -0.038118646, -0.0022561145, 0.018090438, 0.04041628, 0.014055731, 0.011398222, 0.005231971, 0.024097517, 0.0034481871, 0.018630246, 0.026312107, -0.015543659, -0.013827352, 0.020595694, -0.010886098, 0.015156106, -2.2924475E-4, 0.011204446, 0.019585287, 9.6109783E-4, 0.0012093742, 0.005432668, 1.7917856E-4, -0.0055018743, 0.0148516, 0.020235823, -0.037731092, -0.009557343, -0.0011548746, 0.017772092, -0.007827194, -0.016443336, -0.018630246, -0.015017694, -0.02310095, 0.0048824805, -0.0073289117, -0.02206286, 0.012367106, 0.0115989195, 0.011675046, -5.9733394E-4, -0.008422365, 0.017592156, -0.024429705, 0.023502344, -1.8382834E-4, -0.02101093, -0.005813301, 0.01728765, 0.0060139983, 0.0071558966, 0.034519933, -0.006360028, 0.039668858, 0.005328859, 0.021190867, -0.043738168, 0.004595276, -0.02343314, 0.002135004, -0.01194495, -0.022021338, 0.009598867, -0.0022440033, -0.0019083545, 0.022491938, 0.009730359, -0.012934594, 0.05857593, 0.011612761, 0.009578105, 0.010270165, -0.02239505, 0.015183789, 0.0062146955, 0.018228851, -0.027253307, -0.013329068, 0.020332713, -0.013322148, 0.01984827, -0.03424311, 0.006664534, -0.006723359, 0.016872413, 0.029841611, 0.0104916245, -0.0110452715, -0.008346239, -0.012318661, 0.029149551, 6.20691E-4, -0.007460403, -0.012484755, 0.03216693, -0.017799774, -0.0011643904, -0.026768867, -4.0290848E-4, -0.010304768, 0.008180145, 0.0048374967, 0.005778698, -0.028734315, -0.009716517, 0.007335832, 0.012934594, 0.0063738693, -0.021675307, -0.0074673234, -0.025343224, -0.0052250503, 0.020111253, -0.024983352, -0.00464372, -0.03086586, -0.011972631 ], + "id" : "cf608b1d-992c-4e55-a04b-3964eb419de1", + "metadata" : { + "source" : "movies.csv" + } + }, + "c2a80a5d-d205-439c-9342-ed262e639cfb" : { + "text" : "7,3,Takahiro Sakurai-Ryotaro Okiayu-Mugihito-Tomohisa Aso-Tadashi Miyazawa-Ryuzou Ishino-Daisuke Kageura-Hiroshi Shimozaki-Daisuke Egawa-Nobuyuki Kobushi-Yumiko Kobayashi-Eriko Kigawa-Yoshiro Matsumoto-Hiroto Kazuki,video game-based on video game-anime,/aeazw0wgTNWyvt48oA3OaM9dZXV.jpg,/rpfHBSzExhIFcHHfSu1pelxqWkT.jpg,\r\n603692,John Wick: Chapter 4,Action-Thriller-Crime,en,With the price on his head ever increasing John Wick uncovers a path to defeating The High Table. But before he can earn his freedom Wick must face off against a new enemy with powerful alliances across the globe and forces that turn old friends into foes.,659.169,Thunder Road-87Eleven-Summit Entertainment-Studio Babelsberg,3/22/23,90000000,426978565,170,Released,\"No way back, one way out.\",7.827,4159,Keanu Reeves-Donnie Yen-Bill Skarsg��rd-Ian McShane-Laurence Fishburne-Lance Reddick-Clancy Brown-Hiroyuki Sanada-Rina Sawayama-Scott Adkins-Aim��e Kwan-Marko Zaror-Natalia Tena-Shamier Anderson-George Georgiou-Yoshinori Tashiro-Hiroki Sumi-Daiki Suzuki-Julia Asuka Riedl-Milena Rend�_n-Ivy Quainoo-Irina Trifanov-Iryna Fedorova-Andrej Kaminsky-Sven Marquardt-Raicho Vasilev-Marie Pierra Kakoma-Gina Aponte-Christoph Hofmann,new york city-martial arts-hitman-sequel-organized crime-osaka japan-aftercreditsstinger-hunted-professional assassin-neo-noir-berlin,/vZloFAK7NmvMGKE7VkF5UHaz0I.jpg,/fgw4rFs4XMWdJTWp1eMacHKQqbZ.jpg,1098239-802401-385687-19603-24791-502356-781009-525644-569094-384093-203579-1103694-649336-1076605-697843-12354-325358-347196-594767-493529-840326\r\n715904,\"Metallica: WorldWired Tour - Live in Manchester, England - June 18, 2019\",Music,en,Filmed at Etihad Stadium in Manchester England on June 18 2019. This concert is part of the WorldWired Tour by American heavy metal band Metallica in support of their tenth studio album Hardwired... to Self-Destruct which was released on November 18 2016. It is also their first worldwide tour after the World Magnetic Tour six years earlier. Set-List: 1. Hardwired / 2. The Memory Remains (with extended outro) / 3. Disposable Heroes / 4. The God That Failed / 5. The Unforgiven / 6. Here Comes Revenge / 7. Moth Into Flame / 8. Sad but True / 9. Welcome Home (Sanitarium) (followed by Kirk & Rob's solos incl. 'I Wanna Be Adored' 'ManUNkind' & 'Orion') / 10. St. Anger / 11. One / 12. Master of Puppets / 13.", + "embedding" : [ 0.013152058, -0.02359064, -0.019229693, -0.02615183, -0.0084657725, 0.023687549, -0.006094941, -0.012868251, -0.025445772, -0.038071748, 0.027425503, 0.015824003, 0.0138996495, -0.0060672523, 0.0063337544, 0.015644027, 0.009697912, -0.012549832, 0.004578993, -0.029239103, -0.016682347, -0.0070501957, -0.020046506, 0.009151064, 0.010203228, 0.029488299, 0.017928332, -0.018703612, -0.0073859193, -0.010673934, 0.0075035957, -0.009421027, -7.8047084E-4, -0.02168013, -0.022413876, -0.005174297, 0.0060395636, -0.025155043, 0.036382746, -0.013505087, 0.012819796, 0.009192596, -0.0017807195, -0.021458622, -0.014169613, 0.014245756, -0.006264533, 0.0029592132, -0.0012875173, 0.03571822, 0.018108308, 0.019894218, -0.030678907, -0.013844272, -0.014924125, -0.012944395, -0.0064306646, 0.008832646, 0.00499086, -0.008528071, 0.007628194, -0.017513005, -0.03995457, -0.023922902, -0.0038348634, -0.0047243577, -0.034721434, -0.0030630452, -0.015422519, 0.013525854, 0.03785024, 0.020378768, 0.022566164, -6.1433954E-4, 0.025971854, -0.027854675, -0.034915254, -0.01730534, 0.007856624, 0.0064721974, 0.02395059, -0.0044647777, 0.011352303, 0.0057799835, 0.011767631, 0.0059599592, -0.007662805, 0.024227476, -0.0056069302, 0.0073928414, 0.0045651486, 0.045104638, 0.013345879, 0.0046136035, 0.001882821, 0.020143416, -0.01931276, 0.022289278, -0.026871732, -0.03652119, 0.004170587, -0.009296428, -0.0034887565, -0.010376282, -0.016405463, -0.0011231166, -0.0077112596, -0.0023085324, 0.021306334, 0.0041844314, 0.0057384507, -1.4601381E-5, 0.017526848, -0.041338995, -0.0131174475, -0.014702617, 0.031814136, -0.022413876, -0.0084657725, -0.03344776, 0.02310609, 0.052552857, 0.01403117, -0.029239103, 0.037324157, 0.016474683, -0.0258611, -0.017637603, 0.010874676, -0.015699405, 0.03042971, -0.017319184, 0.028463824, 0.021569375, -0.010085552, 0.03937311, -0.02530733, 0.0155886505, -0.01931276, -0.020364923, 0.028436136, 0.007642038, -0.022483097, -0.021472465, -0.021832418, 0.024352074, 0.013913494, -7.392625E-5, 0.024296697, -0.002507544, 0.014398043, 0.029903628, 0.01718074, 0.015464052, 0.030928103, -0.0023310294, 0.0061814673, -0.0100924745, 0.0022721912, -0.013276657, 0.0032810925, -0.0034004992, -0.008638826, -0.016253175, -0.015145633, 0.018523635, 0.022995336, -0.003907546, -0.0064272033, -0.012653665, -0.004388634, 0.008410395, -0.025528837, 0.020295702, -0.008645748, 0.0026529087, 0.0077181817, -0.0032066796, -0.043055687, 3.6476413E-5, 0.0050047045, -0.0052192905, 0.019811153, 0.030568153, -0.002313724, 0.008181965, 0.026068764, -0.01996344, 0.01723612, -0.012210648, 0.0018222523, 0.026581002, 1.2481476E-4, 0.007475907, -0.63572896, -0.014993346, 0.002971327, -0.006094941, 0.009005699, 0.014245756, 0.019022029, 0.010140929, -0.009054154, 0.0032672482, -0.018565169, 0.022995336, 0.01050088, -0.02100176, -0.035856664, -0.019202005, -0.0062126173, -0.025459616, 0.0066971667, 0.0059876475, -0.002855381, 0.016571594, 0.009504093, -0.00936565, -9.630422E-4, -0.014951814, -0.019617334, -0.028200783, 0.005482332, -0.0040321443, -0.025750346, 0.020074194, 0.023466041, 7.5624336E-4, 0.03574591, -0.004835112, -0.014896437, 0.03289399, 0.039096225, 0.04377559, -0.025279641, -0.01986653, 0.0011144639, -9.1977883E-4, -0.020877162, 0.022856893, 0.018855898, -0.007316698, 0.013394333, -0.01711152, -0.018482104, -0.01636393, -0.0024158254, -0.0060326415, -0.0025421544, 0.010223995, -0.0033451223, -0.014439575, 0.020143416, 0.0031599551, -0.0241721, 0.01976962, 0.0011715716, 0.012999771, -0.019686555, 0.013235124, -0.011144639, -0.013809661, 0.016613126, -0.038376324, 0.0041463594, 0.0074136076, -0.011553045, -0.017429939, 0.015090257, 0.036936518, 0.031869516, 0.0030128597, -0.015422519, 0.008126588, -0.0074066855, -0.0041186707, 0.006396054, -0.010874676, 0.017277652, -0.008417318, -0.03178645, 0.01260521, 0.015353298, 0.010071708, 0.007275165, 0.0013792356, 0.011096184, 0.01098543, 8.998777E-4, 0.009130297, -0.003962923, 0.004533999, 0.029682118, -0.048095003, -0.033558514, -0.0055653974, 0.017734513, -0.011116951, 0.009220285, 0.009794823, -0.02624874, -0.017983709, 0.041782014, -0.008126588, -0.0115668895, 0.010348594, -0.019797308, -0.0021406705, -0.0073997634, -0.0285192, 0.02197086, 0.019188162, 2.0777225E-4, -0.0048178066, 0.0063372157, 0.011878385, 0.02112636, -0.022635385, 0.0024262087, 0.023632172, 0.0029367162, -0.0031547635, 0.021250958, 0.015754782, 0.0046066814, 0.010023253, 0.022538476, -0.013878883, -0.0065587237, -0.005354272, 0.014578018, -0.002061066, 0.02890684, -0.027522413, -0.030318955, -0.009407183, 2.7775072E-4, -0.022109302, 0.0016924622, -0.008611137, -0.021043293, 0.0057730614, -0.009213363, 0.008701125, 0.0076074274, 0.02035108, -0.0084034735, 0.01066009, 0.003962923, 0.0047970405, -0.026082609, -0.0065310355, -0.017679136, -0.012023751, -0.009455638, 0.0067940764, -0.017803734, -0.014591862, 0.014536486, -0.002796543, -0.007669727, 0.004087521, 0.00897801, -0.00884649, 0.005748834, -0.0023985202, -0.019824998, 0.009815589, -0.00551002, 0.013145137, 0.0054061883, 0.022566164, 0.01396887, -0.01004402, 0.0016734264, -0.017623758, -0.02071103, -0.011608422, 0.022303123, 0.021112515, 0.014155768, -0.027536256, 0.0035510557, 0.0031616855, -0.029543677, -0.004000995, -0.012985927, -0.0027896208, -7.971272E-5, 0.022413876, 0.013851195, -0.009206441, 0.0020281859, 0.0062714554, 0.040619094, 0.019022029, -0.0067975377, -0.0035302893, 0.014425731, -0.025293484, 0.0013212627, -0.033696957, 0.021347867, 0.0072613205, 0.025487306, -0.033780023, -0.0074066855, 0.0032620565, 0.008216576, 0.044246294, -0.021347867, 0.010064785, -0.03333701, 0.0049562496, 0.0078012473, -0.002796543, 0.030928103, 0.012494455, 9.4746734E-4, 0.01610089, 0.0105078025, 0.020406457, -0.0018689767, -0.0066417893, -0.01610089, -0.009711757, -0.002621759, 0.016197799, 0.0056207743, -0.012397545, 0.023673706, -0.017817577, 0.040093012, -0.020046506, 0.009144141, 0.019340448, 0.019257382, -0.015491741, 0.009697912, -0.009774056, 0.022676917, 0.009822511, -0.014785683, 0.03768411, -0.01921585, 0.021057138, -0.003665271, 0.017056143, 0.009164908, -0.029959004, -0.009102609, 0.008929555, 0.029515987, 0.015491741, 0.01646084, -0.028311536, 0.020475678, -0.0033382, -0.010701622, -0.008763424, -0.012674431, 0.0223585, -0.005634619, -0.008278875, -0.019561956, -0.003665271, 3.4151006E-5, 0.006524113, -0.008915711, 0.0034454933, 0.006783693, 0.008292719, 0.0051569915, 0.028186938, -0.0031322665, -0.034638368, -3.4069887E-4, 0.027203994, -0.022704607, -0.03023589, 0.0019174317, -0.03322625, -0.045326147, -0.006257611, -0.0054165716, 0.044384737, -0.008673436, -0.027591635, -0.014730305, 0.0073720748, 0.031121923, -0.0267056, 0.006942902, 0.0117814755, 0.005499637, 0.005797289, -0.014688773, -0.010992352, 0.038293257, -0.00176601, -0.0049320217, -0.0020731797, 6.7058194E-4, 0.0086803585, 0.007178255, 0.0052158297, -0.048427265, 0.013802739, -0.0032395597, -0.007884313, -0.0077181817, 0.005669229, 0.015962446, -0.009954032, -0.020586433, -0.03671501, -0.031924892, -0.010632401, 0.072543986, 0.009587158, 0.004260575, 0.0057315286, 0.006548341, -0.0028276925, -0.013650452, -0.013858116, -0.01539483, 0.007468985, 0.010715467, 0.0034991398, 0.021140203, 0.0021302875, -0.0020056888, -0.02946061, 0.00430903, 3.7985222E-4, 0.002324107, -0.0147441495, -0.019921908, -0.015990134, 0.0051050754, 0.02887915, 0.0027688544, -0.007628194, 0.02281536, 0.015727093, -0.004381712, -0.01435651, -0.0049320217, 0.011649955, 0.009351806, 0.0087565025, -0.018468259, 0.014951814, 0.048787214, 0.033724647, -5.650194E-4, 0.0038417855, -0.010265527, 0.015422519, 0.010099396, -0.0135466205, 0.011684566, -0.024698181, -0.005451182, 0.006662556, 0.0046516755, -0.035552092, 0.018648235, 0.0026113759, -0.024670493, -0.014993346, -1.9425244E-4, -0.0035891274, -0.0023466041, -0.0105078025, -0.008368863, 0.023133779, 0.019658865, -0.042474225, 0.012861329, 0.002647717, -0.01040397, -0.03364158, 0.0018983958, 0.0039248513, -0.010632401, 0.008528071, 0.0028501896, -0.017360717, -0.012092971, 0.009767134, 0.01863439, -0.0116015, 0.0285192, -0.009074921, -0.0022548859, 0.008223497, -0.051417626, -0.011303849, 1.1118681E-4, -0.01050088, -0.0107846875, -0.005447721, 0.0048662615, 0.025611904, -4.6940736E-4, 0.016890012, -0.0077181817, -0.01720843, -0.0032326374, 0.008915711, 0.024047501, 0.002087024, 0.023244534, 0.009490249, 0.016017823, 0.0066798613, 0.00965638, -0.01299285, -0.010777766, -0.0063199103, -0.019105095, -0.017568382, 0.0044128615, 0.005039315, -0.0027584713, -0.014384199, -0.017291496, -0.005240057, 0.0098778885, 0.0070882672, 0.016059356, 0.013484321, 0.022787672, 0.0038383245, 0.0010737963, 0.012307558, 0.0077666366, -0.0115392, 0.012432156, 0.02748088, -0.008929555, 0.013034382, -0.012065283, -0.028823774, 0.003966384, 0.013373567, 0.014910281, 0.017886799, -0.006929058, -0.0039006236, -0.0054234937, -0.023119934, 0.005935732, 0.009185675, -0.008161198, 0.015851691, -0.019617334, 7.8176876E-4, 0.004080599, 0.0026563697, -0.040397584, -0.02784083, -0.0095248595, -0.00551002, -0.0011707062, 0.018260594, 0.012972083, 0.0026840582, -0.028090028, -0.010673934, -0.009794823, -0.04945174, -0.034887567, -0.011691487, 0.005246979, 0.015491741, 0.04050834, -0.0032447514, 0.0147441495, 0.0046516755, -0.003490487, 0.016682347, -0.025141198, -0.0058284383, -0.03308781, -0.012549832, 0.008888023, 0.015021035, -0.0073443865, 0.0024037117, 0.0025906095, 0.04225272, -0.0019503118, 0.011912996, 0.007378997, -0.031537253, 0.007932768, 0.01785911, -0.017651446, -0.0022341195, -0.021527844, -0.0036029718, 0.021015605, -0.00897801, 4.7113787E-4, -0.0049077943, 0.021430934, -0.0017106328, 0.021638596, -0.023632172, 0.01636393, -0.02339682, -0.001957234, -0.02874071, -0.0013515471, 0.005229674, -0.0065587237, 0.01610089, -0.02012957, -0.0057211453, -0.008763424, 0.02395059, -0.024601271, -0.028934529, 0.018786678, -0.014674928, -0.00784278, -0.037767176, 3.681711E-4, -0.029682118, -0.018966652, 0.007988145, -0.008271952, 0.006607179, -0.02187395, -0.03821019, 0.031038858, -0.014605707, 0.044024784, 0.0059115044, 0.037517976, 0.01909125, 0.014661084, -0.021209424, -0.0059668813, -0.022483097, -0.010646245, 0.022593852, 0.03447224, -0.03195258, -0.0017469741, -0.006043025, -0.0030509315, -0.041255932, -0.038763963, 0.037379533, 0.03726878, 0.01455033, -0.014633396, 0.0066590947, -0.036604255, 0.01604551, -0.01817753, -0.011746865, 0.022081614, -0.019728087, 0.0011092722, 0.01827444, -0.0052331346, 0.018315973, 0.009677147, -0.04507695, 0.0015609417, -0.022538476, -0.0036479656, -0.018579014, -0.008375784, 0.041865077, -0.015519429, 0.017540693, 0.02112636, -3.3247884E-4, 0.007077884, -0.0048074233, 0.012342169, 0.028270004, -0.01713921, 0.02388137, -0.0051708356, -0.0061399345, -0.0062195393, 0.014301133, -0.006562185, -0.014045014, -0.034333795, 0.015062568, 0.025099665, -0.00635106, 0.013691985, -0.001691597, -0.020724876, -0.024393607, -0.0050047045, 0.0073720748, 0.016751569, -0.036631946, 0.012979005, -0.008396551, -0.015408675, -0.0061883894, -0.0070398124, 0.009607925, -0.0071298, 0.015560961, -0.024808936, -0.0075658946, -0.0016440073, 0.004080599, -0.024102878, -0.023286065, -0.022247745, -0.00884649, 0.016530061, -0.0155886505, 0.0014623012, 0.0027065552, -0.0029557522, 0.0025559987, 0.0116015, 0.00874958, 0.005648463, 0.0070882672, -0.022787672, -0.018288283, -0.010590868, 0.041975833, -0.00764896, -0.0026892498, 0.011096184, -6.649577E-4, 0.021929327, 0.0037102648, 0.004295185, -0.003487026, -0.013269735, -0.021347867, 0.009441794, 0.022206211, -8.6094067E-4, -0.009511014, -0.016765414, 8.769481E-4, -0.0066314065, 0.015076412, -0.0062056947, -0.0010149583, 0.020600276, 0.03447224, 0.027785454, 0.0020074195, -0.022303123, -0.028685331, 0.014245756, -0.0116015, -0.049728625, -0.008438084, -0.012092971, 0.018357504, -0.018938964, 0.0018776294, -0.04164357, -7.4802333E-4, -0.028934529, -0.027245527, -0.019340448, 0.014398043, 0.041034423, 0.0058838157, -0.008701125, 0.0050566206, 0.0040252223, -0.004336718, -0.022690762, 0.0043401793, 0.021015605, 0.0020229942, 0.01759607, 0.025514994, -0.025847256, -0.01387196, 0.005388883, 0.014425731, 0.015602495, 0.026871732, -0.004495927, -7.43697E-4, -0.002187395, -9.613116E-4, -0.009213363, 0.005561936, 0.028034652, -0.043471016, 0.0048178066, -0.0022773826, 0.0070121237, -0.0021008684, 0.024961222, 0.021057138, -0.016848478, -7.735487E-4, -0.019617334, -0.03571822, 0.008867256, -0.034832187, 0.032617103, 2.2237362E-4, -0.00784278, 0.03881934, 0.034693744, -0.0061745453, 0.0030249734, -0.016986921, 4.311193E-4, -0.0065275743, -0.0067871544, 0.0029297941, 0.025653437, -0.00534735, 0.028228471, -0.020337235, 0.007475907, -0.0064341254, -0.0127644185, 9.725601E-4, 0.028657643, 0.013588153, -0.057093777, -0.02112636, -0.014245756, 0.009483326, -0.009933265, -0.007877391, -0.018329816, -0.012612131, -0.0064375866, 0.0036998817, -0.012252181, -0.01464724, 0.0014588402, -0.015574806, -0.022510786, -0.0033953078, 0.19348754, -0.016876169, -0.0053127394, 0.030318955, 0.016986921, 0.010549336, 0.02537655, 0.011061573, -0.004530538, 0.009234129, -0.009690991, -5.1699702E-5, 0.0047451244, -0.0014934508, 0.018191373, -0.008154276, -0.030734284, -0.02365986, -0.017609915, -0.008161198, -0.004080599, 0.017928332, -0.01040397, -0.015754782, 0.005243518, 0.012715964, -0.010833143, 0.007787403, 0.027439347, 0.013020538, -0.017277652, 0.0064445087, -0.007468985, 0.009303351, -0.026179519, -0.0031582245, 0.0058318996, -0.0012494456, 0.024421295, 0.010514725, 0.0016440073, 0.0013160711, -0.006361443, -0.0039040847, 0.0031063086, 0.011712254, -0.021749351, -0.0011014849, -0.027882364, -0.00430903, -0.0338354, -0.024559738, 0.023009181, 0.014688773, 0.0029955544, -0.022829205, 0.011442291, 5.6761515E-4, -0.017831422, 0.004527077, -0.0015868996, 0.031066546, -0.03200796, 0.008140432, -0.020212637, 0.009670224, -0.021347867, -0.002035108, 0.027536256, -0.031094234, 0.0023050713, -0.024767403, -0.0062437668, -0.010064785, -0.026470248, -0.0067352382, 0.02825616, -0.0042986465, 0.0013515471, 0.013892727, -0.017443784, -0.031509563, 0.023023024, 0.006762927, -0.015851691, -0.008604215, 0.009552548, -0.015311765, -0.007905079, -0.0022306584, -0.0107985325, -0.009815589, -0.015436363, -0.0061918506, -0.018039087, -0.00191224, 0.03898547, -5.0445064E-4, -0.004219042, -0.006617562, -0.016308552, 0.0391516, 0.012356013, -0.005084309, -0.031288054, -0.011476901, 0.016087044, -0.0011447483, 0.03078966, -0.020835629, -1.9241375E-4, -0.03685345, -0.007295931, -0.005094692, 9.829433E-4, 0.022552319, -0.020877162, -0.013145137, 0.028436136, -0.020461835, 0.011165406, -0.03289399, 0.0038798572, -0.01108234, -0.011906074, -0.037628733, -0.02204008, 0.0058595883, -0.01853748, -0.04701515, 0.030097447, -0.008008911, 0.02102945, -0.0068390705, -0.01302746, 0.0045063104, 0.025335018, -0.005274668, 0.013096682, -3.5865317E-4, 6.355386E-4, -0.0015834386, 0.015187167, 0.022441564, 0.004080599, -0.028823774, 0.0012182959, 0.010134007, -0.014245756, -0.026456404, -0.023839837, 0.002057605, 0.008015834, 0.014979502, 0.036299683, -0.011262315, -0.011629188, -0.029128348, 0.00382448, 0.032644793, -0.04867646, 0.0011360956, 0.02359064, 1.2557187E-4, -0.042834178, -0.014799527, -0.17897876, 0.020004973, 0.0133320335, -0.033170875, 0.028657643, 0.019700399, 0.007884313, 0.014633396, 0.008188887, -0.0057592173, 0.011290004, 0.016668504, -0.024933534, -0.013089759, 0.008853412, 0.0039248513, -2.2064308E-4, 0.041172866, 0.02689942, 0.0087565025, 0.042695735, -2.060417E-4, -0.012203726, -0.0014406695, -0.0018032164, 0.015076412, 0.016793102, 0.009061076, 0.0030128597, -0.004533999, -0.031177301, -0.0355244, 0.021984704, 0.006582951, -0.022081614, 0.0072405543, -0.018689767, -0.007295931, -0.015713248, 0.012037595, 0.03228484, 0.002725591, 0.024158254, 0.009857122, 0.012729808, 0.017609915, 0.012418312, -0.032977056, -6.1390694E-4, -0.018094463, 0.006825226, -0.023092246, 0.013158981, -0.0017737973, 0.0069878963, 0.014924125, 0.018232906, -0.011788398, 0.0039248513, -0.004887028, -0.03654888, -0.015740937, 0.005904582, -0.021361712, -0.007337464, -0.01095082, -0.008714969, 0.03364158, -0.018219061, 0.013262813, -0.010943897, 0.0039836895, 0.015436363, -0.010743155, -0.0042640357, -0.008175042, -0.03042971, 0.01749916, -0.0026788667, 0.020226482, -0.018842055, 0.04086829, -0.0024192866, -0.0027636627, -0.0059876475, -0.0055723195, 0.029017594, 0.0014181726, 0.0040425276, -0.016294708, 0.020101883, -0.011836853, -0.026594847, -0.007468985, 0.021957016, 0.001834366, -0.008216576, 0.01102004, -0.022759983, -0.013581231, -0.0053681163, -0.011733021, -0.016862324, 0.020074194, 0.008313485, 0.01662697, 0.013366644, 0.025722658, 0.023009181, 0.010756999, -0.017817577, 0.015021035, 0.027910052, 0.019202005, -0.0024452445, 0.01050088, -0.010182462, -0.01198914, 0.024102878, 0.022538476, 0.058976598, -0.0029453689, 0.012279869, -0.009303351, -0.01730534, -0.017222274, -0.078413956, 0.021763196, 0.016225487, 0.029599054, -0.025335018, 0.04504926, 0.008867256, 0.03724109, -0.004748585, 0.01940967, 0.0029470995, -0.027771609, -5.360329E-4, 0.001785911, 0.0081127435, 7.160084E-4, -0.008355018, -0.007953534, 0.0022323888, 0.04388634, 0.0015574807, 4.0732443E-4, 0.0014804718, -0.008971089, -0.01532561, 0.0073928414, -0.03726878, 0.030706596, 0.0051985243, 0.006101863, 0.0103693595, -0.004129054, 0.011968373, -0.043055687, -0.023286065, -0.004983938, -0.007337464, -0.021652441, 0.0170423, -0.052386727, 0.009067998, 0.016322397, -0.0024625498, -0.017776046, 4.8714533E-4, -1.613723E-4, -0.037628733, 0.027826987, -0.013228202, -0.021237113, 0.00861806, -0.026774822, -0.014924125, -0.0077181817, 0.0148825925, 0.023341443, 0.02044799, -0.001387023, -0.036659632, -0.0067040888, -0.00275501, -0.016433151, -0.0134081775, 0.010521647, 0.015630184, 0.029072972, 5.529056E-4, -0.019326603, 0.01895281, -0.016737726, -0.020669498, 0.018426726, -0.030097447, -0.020475678, -0.018025242, -0.0066383285, -0.011871464, -0.019589646, 0.040951356, -0.017263807, 0.0024573582, -0.03616124, 0.0077112596, -0.01740225, 0.022898426, 0.0088188015, -0.006209156, 0.009116453, -0.0050047045, -0.049562495, 5.888142E-4, 0.017429939, 0.010452425, 0.009573314, 0.006683322, 0.019285072, 0.022178523, 0.008583449, -0.0018707073, 0.0142596, -0.009545625, -0.009933265, -0.08732967, 0.02579188, -0.017249962, -0.0058284383, 5.9703423E-4, 8.2200364E-4, -9.543895E-4, 0.015671715, 0.011248471, 0.018205218, -0.016336242, 0.011359225, -0.021458622, -0.0038106358, -0.010729311, 0.004336718, 0.0070052017, -0.0028328842, -0.003256865, -0.01131077, -0.009414105, 0.017388405, 0.027273215, 0.008015834, -4.7979056E-4, 0.024185942, -0.014231912, 0.019423515, -0.016765414, -0.009067998, 0.0427788, -0.03549671, -1.4482407E-4, 0.012376779, -0.0036998817, -0.031260367, -0.018219061, -0.0043574846, 0.0069602076, 0.0043990174, -0.01296516, -0.021929327, -0.015616339, 0.0025352323, -0.0066660168, 0.010777766, -0.014003481, 0.012785185, 0.015560961, 0.015270232, 0.017900644, 0.021887794, -0.010480114, -0.013941182, 0.0021666286, -0.0096633015, 0.039400797, 0.010646245, 0.004887028, -0.008839568, 0.010743155, -0.0030734283, 0.027010174, -0.02064181, 0.0029920933, -0.01079161, 1.9025058E-4, -0.01455033, 0.0075935833, -0.024864312, -0.005201985, -0.008922634, -0.008098899, 0.032063335, 0.0031097697, 0.009690991, 0.0074136076, 0.011760709, -0.021458622, 0.01464724, 0.024061345, -0.0055307867, -0.03519214, 0.03541365, 0.0102309175, 0.009407183, 0.0045859152, 0.015824003, -0.00285192, 0.013297424, -0.017485315, 0.016253175, 0.017969865, -0.0014147116, 0.004662059, 0.021070981, -0.023203, -0.023867525, 0.017831422, 0.02303687, 0.0034368406, -0.004630909, -0.015907068, -0.01931276, -0.017083831, 0.009061076, -0.014578018, -0.018205218, 0.010535491, 0.018565169, 0.019852687, 0.020960229, -0.007275165, 0.010424737, -0.019617334, 0.017194586, 0.0011836853, -0.016017823, -0.03325394, 0.043969408, 0.009296428, 0.009573314, 0.018122151, -0.010715467, 0.04092367, -0.0038106358, 0.021638596, -0.016654659, 0.011200016, -0.011158483, 0.017125364, 0.010687778, -0.025625747, 0.011269238, -0.014522641, -0.0116015, 0.003156494, 0.036936518, -0.023521418, 0.07918923, 0.028463824, 0.0036098938, 0.014398043, -0.016336242, 0.020212637, 0.012979005, 0.007642038, 0.002414095, -0.013428944, 0.0072405543, -0.022192368, 0.0087426575, -0.03065122, -0.0013878882, -0.0012961699, 0.0045028497, 0.033060122, 0.019271227, -0.023895213, -0.006807921, -0.021057138, 0.020004973, 0.011338458, 0.0062056947, -0.014813371, 0.014564174, -0.0111377165, 0.011089262, -0.03081735, 1.2211081E-4, -0.009898654, -0.008770347, -0.005741912, 0.012674431, -0.011366148, -0.0016803485, 0.0063302936, 0.023119934, 0.010376282, -0.007946612, 0.004734741, -0.03042971, -0.016986921, 0.016239332, -0.005080848, -0.014190379, -0.016834635, -0.014785683 ], + "id" : "c2a80a5d-d205-439c-9342-ed262e639cfb", + "metadata" : { + "source" : "movies.csv" + } + }, + "deec596e-5122-457a-a7d3-6f8ee2a34be3" : { + "text" : ",787-652-37799-12405-162-1402-896559-11324-640-44214-6479-297-8358-16869-807-11321-118-591-745-310-45269\r\n9802,The Rock,Action-Adventure-Thriller,en,When vengeful General Francis X. Hummel seizes control of Alcatraz Island and threatens to launch missiles loaded with deadly chemical weapons into San Francisco only a young FBI chemical weapons expert and notorious Federal prisoner have the stills to penetrate the impregnable island fortress and take him down.,33.256,Don Simpson/Jerry Bruckheimer Films-Hollywood Pictures,6/7/96,75000000,335062621,137,Released,Alcatraz. Only one man has ever broken out. Now five million lives depend on two men breaking in.,7.1,4235,Sean Connery-Nicolas Cage-Ed Harris-William Forsythe-David Morse-John Spencer-Michael Biehn-Vanessa Marcil-Claire Forlani-Tony Todd-Gregory Sporleder-John C. McGinley-Bokeem Woodbine-Steve Harris-Greg Collins-Brendan Kelly-Danny Nucci-Celeste Weaver-Todd Louiso-David Bowe-Raquel Krelle-Jim Maniaci-Billy Devlin-Jim Caviezel-Ingo Neuhaus-John Laughlin-Willie Garson-John Enos III-Xander Berkeley-Raymond Cruz-Matthew James Gulbranson-Philip Baker Hall-Pat Skipper-Stuart Wilson-Stanley Anderson-David Marshall Grant-Anthony Clark-Raymond O'Connor-Harry Humphries,san francisco california-war veteran-fbi-mercenary-gas attack-alcatraz prison-prison escape-shootout-u.s. navy seal-terrorism-british spy-chemist-commando-hostage situation-tourist attraction-u.s. marine-military-island prison-tourists in peril-nerve gas-disillusioned-terrorist threat-chemical weapon-fbi agent-chemical warfare-navy seals,/j5mxLNWjUlXUUk8weFBtnF4afIR.jpg,/1SsHEx1sCfVZY6Nj0sMyFTlEDql.jpg,1701-754-9679-36955-1669-9798-5503-861-1637-95-2059-9705-1572-941-6637-602-2503-1571-1573-1830-563\r\n291805,Now You See Me 2,Crime-Thriller-Action-Mystery,en,One year after outwitting the FBI and winning the public��s adulation with their mind-bending spectacles the Four Horsemen resurface only to find themselves face to face with a new enemy who enlists them to pull off their most dangerous heist yet.,30.832,Summit Entertainment-Lionsgate-K/O Paper Products-TIK Films,6/2/16,90000000,334901337,129,Released,You haven't seen anything yet.,6.", + "embedding" : [ 0.016882826, -0.03568354, 0.014978442, -0.0519991, -0.018679157, 0.02271753, -0.0075499993, -0.009852816, -0.021056259, -0.029983897, 0.041194092, 0.034062788, 0.017261, -0.015761806, -0.0034981214, 0.012250178, 0.029740784, -0.00787415, -0.011406036, -0.01130474, -0.0027181348, 0.004609011, 0.004936538, -0.0041801874, -0.010332289, 0.016599193, 0.011534346, 0.0023635954, 0.0012754974, 8.7284204E-4, 0.007387924, 0.0022048969, -0.019016813, -0.0072123427, -0.025378263, 0.009332825, 0.007333899, -0.024959568, 0.020353934, -0.014249104, 0.008279338, 0.010805008, -0.006483005, -0.008029471, -0.0022369742, 0.012871466, 0.0016334133, -0.014100536, -0.009994633, 0.018098388, 0.0170449, 0.020516008, -0.013465741, -0.03246905, -0.006280411, -0.02347388, 0.011946287, -0.0046866722, 0.004416547, 5.588215E-4, -0.008029471, -0.026620839, -0.023838548, -7.808306E-4, -0.018827727, 0.002719823, -3.777532E-4, -0.010642933, -0.012391994, 0.005618604, 0.014978442, 0.021393916, 0.019313952, 0.0036905855, 0.036088727, -0.0245949, -0.02289311, 0.0032550087, 0.022042217, 0.019422002, 0.009447629, -0.017868781, -0.0040451246, -0.0038627903, 0.013816904, 0.0090627, -0.020853665, 0.015518692, -0.015586223, 0.008353622, -0.0028481325, 0.030821284, 0.017004382, 0.019840695, -0.0032482555, -2.737128E-4, -0.03508926, 0.0023635954, -0.028903397, -0.037466366, 0.005115496, -0.0038864263, 0.0011421231, -0.0150594795, -0.009765026, -0.019854203, 0.0058482103, -0.0117572, 0.0010712153, 0.008441413, -0.0034407198, 0.0067362473, 0.033711623, -0.042436667, 0.018895257, -0.021610016, 0.016166992, -0.018152414, -5.360297E-4, -0.037385326, 0.02852522, 0.018030858, 0.012520303, -0.026458763, 0.026809925, 0.016464131, 0.01473533, -0.011534346, 0.012398747, -0.007799865, 0.025607869, -0.021326384, 0.030416097, 0.024689443, -0.01907084, 0.049567975, -0.0066822222, -0.0037648699, -0.024081662, -0.014924417, 0.0362508, 0.022258317, -0.010791502, -0.011156171, -0.029038459, 0.011804471, 0.012243425, -0.0072798743, 0.00942737, -0.004163305, 0.04054579, 0.016072448, 0.011075133, 0.030010909, 0.011338505, 0.0077796057, -0.011277727, -0.004703555, -0.009758273, -0.027687833, 0.0023433361, -0.008833094, -0.011129159, -0.013020035, 0.01251355, 0.032009836, 0.03719624, -0.02368998, -0.01214888, -0.016058942, 0.014654292, 0.0104943635, 0.004298367, 0.018976295, 0.0052100397, 0.035332374, -0.009218022, -0.0092788, -0.015289086, -0.008286091, 0.0023163236, 0.01251355, 0.024459837, 0.029119497, -0.0077120746, 0.02036744, 0.021758584, -0.01939499, -0.0011530969, -0.032739174, -0.014721823, -0.007374418, -0.013702101, -0.0034981214, -0.6400887, -0.017747225, -0.037007153, -0.0029916365, 0.022528442, 0.008873613, 0.007111046, 0.013992486, -0.03022701, -0.013594051, 0.003710845, 0.020664578, 0.03076726, -0.0343059, -0.02604007, -0.007799865, -0.00929906, -0.005621981, 0.015113505, 0.012277191, -0.041869406, 0.0055476963, -0.002856574, 0.0030794272, 0.023744006, 0.011784212, -0.009555679, -0.036683, -0.0011311492, 0.007685062, -0.016518155, 0.010798255, 0.006874686, -0.013195616, 0.037655454, -0.009900088, -0.0052471817, 0.045705184, 0.018949283, 0.035818603, 0.0072866273, 0.004352392, 0.03130751, -0.003310722, -0.024797494, 0.003906686, 0.0166127, 0.004936538, 0.011817978, -0.011885509, 0.008090249, -0.014033004, -0.019422002, -0.005085107, -9.513472E-4, -0.001697568, 0.005176274, -0.040140603, 0.02683694, 0.0031672178, -0.0127769215, 0.013445482, 5.7148363E-4, 0.002468269, -0.021096777, 0.032117885, 0.0016697114, 0.0038087652, 0.027269138, -0.023784524, 0.002331518, 0.00475758, -0.026202144, -0.011770706, 0.01072397, 0.0030912452, 0.03141556, -0.006054181, -0.011399283, 0.007691815, 0.013857422, 0.0060879467, -0.015842842, 0.019948745, 0.01361431, -0.0038661668, -0.031550623, 0.007826878, 0.0036399371, 0.001960096, 0.0069422177, 0.01104812, 0.029848834, 0.0075432463, -0.02830912, -0.008610241, 0.0018655522, 0.0072393552, 0.028282108, -0.050567437, -0.0019854202, -0.017679695, 0.024243737, 0.0015515316, 0.021947673, 0.001039982, -0.008893872, -0.019489532, 0.045408044, -0.01736905, -0.024270749, 0.01117643, -0.005145885, 0.0039472044, 0.009744766, -0.020218872, 0.030037923, 9.369968E-4, -0.004787969, -0.008454919, 0.021312878, 0.0065100174, 0.0039607105, -0.015842842, 0.030821284, 0.016815294, 0.008117262, -0.009177503, 0.002307882, 0.0059360014, -0.0010239433, 0.022339353, 0.009744766, -0.013458988, -0.009211269, 0.019435508, 0.009481395, -0.02166404, 0.017855275, -0.0056557464, -0.02863327, -0.0018030857, -0.01866565, -0.013134838, -2.9397217E-4, -0.034576025, -0.040788904, -0.0065843016, -0.0105146235, 0.0052505587, -0.01106838, 5.402504E-4, 0.0047542034, 0.02509463, 0.0010906305, -0.010669946, 0.0036230541, -0.030172985, 0.025850981, -0.02015134, -0.0018621755, 0.028444184, 0.00785389, -0.011108899, 0.017801251, 0.0053923745, 0.008400894, 0.02390608, -0.008191546, -0.025324237, 0.003906686, -0.0045516095, 0.007192083, 0.01564025, -0.025391769, 0.020245884, -0.0159644, 0.03163166, 0.0265398, -0.004237589, 0.0043253796, -0.007002996, -0.010588908, -0.0032009836, 0.019908227, 0.029443646, 0.025324237, 0.005757043, -0.02368998, 0.0056557464, -0.004457066, -0.0057637966, 4.1784992E-4, 0.0075094807, 0.0073541584, 0.030308047, 0.003741234, 0.009758273, 3.7733113E-4, 0.03676404, 0.039789442, 0.03870894, 0.022420391, -0.016261537, 0.014721823, -0.016950356, 0.005129002, -0.016842306, 0.029794808, -0.0056793825, 0.025472807, -0.0034711089, -0.016599193, -0.0027350176, -0.005946131, 0.016545169, -0.0245949, 0.024500355, -0.0048487475, -0.012155634, -0.0010079046, 0.004237589, 0.023352323, 0.019503038, -0.019962251, 0.018111894, 0.025378263, 0.0075972714, -0.007799865, -0.017612163, 0.016626205, -0.0020867172, -0.0021677548, 0.0022673635, 0.016383093, 0.012817441, 0.0133576915, -0.0011877067, 0.028822359, 0.002527359, -0.0027586536, 0.009602951, 0.04278783, 0.003275268, -0.012108362, -0.002750212, 0.009393604, 0.015532199, -0.022920122, 0.026755901, -0.020880679, 0.035818603, -0.008340116, 0.011203443, 0.0133441845, -0.0012214724, 2.5007685E-4, 0.016207512, 0.012662118, 0.0061385953, 0.01754463, -0.015127011, 0.005517307, 0.0032803328, -0.0024952814, -0.0032482555, -0.030416097, -0.005301207, -0.0055645793, -0.00552406, -0.0063276826, -0.022636492, 0.013101072, 0.020840159, 0.012364981, -0.025661893, -0.0024463213, 0.0039303214, 0.019232914, 0.0025189174, -0.021542484, -0.021083271, 0.02075912, 0.0139249535, 0.013006528, -0.02166404, -0.01827397, -0.008259078, -0.039492305, 0.0029139756, -0.01251355, 0.013675088, -0.024365293, -0.0015988036, -0.027984971, -0.021069765, 0.010595661, -0.018355006, 0.0062365155, 0.009103219, 8.631344E-4, 0.0030912452, 0.0052201697, -0.006543783, 0.03611574, -0.010791502, 0.0055409432, -0.016923344, 0.011730187, -0.008664265, 6.909296E-4, 0.043436132, -0.03427889, 0.011021108, -0.018476564, -0.01216914, -0.008927638, -0.0094138635, 0.023649462, -0.016004918, -0.0059022354, -0.022231303, -0.017017888, -0.00996762, 0.06850375, 0.02213676, 0.016788282, -1.8610677E-5, 5.02264E-4, 0.008616994, 0.005757043, -0.014640786, -0.009292306, -0.01715295, 0.003113193, -0.0013936772, 0.011014355, -0.010642933, 0.036223788, -0.0036770792, -0.008758809, -0.003663573, -0.018976295, -0.009096466, -0.03055116, -3.366013E-4, 0.030605186, 0.02947066, 0.0042578485, -0.019651609, 0.02198819, 0.022055723, 0.012446019, 0.0059663905, -0.0037446106, -3.669904E-4, 0.023716992, -0.006513394, -0.01072397, -0.0015118569, 0.018044364, -0.0110616265, 0.012675625, 0.008596734, -0.005875223, -5.892106E-4, 0.018219944, -0.012013818, 0.032117885, -0.020299908, -0.032442037, 0.024027636, 0.03773649, -0.023730498, 0.013884435, -0.0066248206, -0.012641859, -0.003180724, -0.008995169, 0.018030858, -0.0039235684, -0.006125089, -0.022177279, -0.0013278342, -0.0015042596, -0.030902322, 0.007806618, -0.002085029, 0.008596734, -0.01939499, -0.01581583, -0.009589445, -0.017909301, -0.009339578, 0.006347942, -0.03249606, -0.004244342, 0.012391994, 0.0139384605, -6.580081E-4, 0.015262074, -0.011817978, 0.0023737252, 0.022758048, -0.040140603, -0.03816869, -0.01732853, -0.03173971, -0.007441949, 0.021056259, -2.1459653E-5, -0.007171824, 0.010710464, 0.015532199, 0.02751225, 0.008515697, 0.0015608171, -0.010426832, 0.027188102, -0.012378487, 0.011331752, 0.01881422, 0.030470122, -0.013033541, 0.02239338, -0.023257779, -0.0021728196, -0.017423075, -0.029632734, -0.028930409, -0.008333363, 0.008083496, -0.025499819, -0.012007065, -0.016977368, -0.019705633, 0.0068274145, 0.004284861, 0.013290159, -0.004426677, 0.013431976, 0.007057021, -0.003287086, 0.0030220256, -1.0129695E-4, 0.0010999161, 0.016477637, 0.034008764, -0.009231528, 0.028552234, -7.930707E-4, -0.04213953, 9.1589324E-4, 0.026715383, -0.011966546, 0.012540562, -0.026283182, -0.020651072, -0.011507333, -0.024108674, 0.019840695, 0.0145192295, 0.0069827363, 0.0041194092, -0.020975221, 7.6690235E-4, -0.0060474277, 9.554624E-5, -0.029308584, -0.02968676, -0.0020765874, -0.001846981, 0.015127011, -0.004936538, -0.014087029, -7.7323336E-4, -0.011480321, -0.0049162786, -0.015343111, -0.036385864, -0.03268515, 0.007124552, 0.056996416, 0.0174771, 0.021650534, -2.4163543E-4, 0.028011983, 0.0050108223, -0.002767095, 0.028201072, -0.018314488, 0.0076783085, -0.029902859, 0.0071515646, 0.023892574, 0.009616457, 0.019962251, 0.0028346262, 0.011216949, 0.017976832, 0.012425759, 0.0037614934, -0.0012223165, -0.017963326, -0.0044671954, 0.019381482, -0.027215114, -0.032415025, -0.03808765, -0.023433361, 0.018881751, -0.004828488, -0.016990876, 0.0069118286, 0.025769943, -0.017666187, -0.01372236, -0.019557064, 0.0016047125, -0.03568354, -0.01603193, -0.011331752, 0.0017043211, -0.0061014527, 6.183334E-5, 0.009697495, 0.0063918373, -0.030821284, -0.0010129695, 0.026202144, -0.02228533, -0.01935447, 0.0075297398, -0.0032853978, -0.012391994, -0.0312805, -0.004821735, -0.03354955, 0.009866322, -0.008360375, 0.0122299185, -0.003616301, -0.012364981, -0.045624144, 0.040032554, -0.010332289, 0.018692663, 0.017517619, 0.04332808, 0.02593202, 0.017963326, -0.014978442, 0.011014355, 0.02069159, -0.009805544, 0.027579783, 0.009501654, 0.0018385396, -0.0025206057, -0.016842306, -0.0026928105, -0.028714309, -0.031361535, 0.020272896, 0.01917889, 0.019003307, -0.036710013, -0.0035521463, -0.034251876, 0.007333899, -0.009521913, -0.004919655, 0.01516753, -0.03795259, -0.027255632, 0.020070301, -0.0030557914, 0.0034137073, 0.008380635, -0.026634345, 0.011291233, -0.017193468, 0.010359301, -0.021096777, -0.019611089, 0.031901784, -0.014613773, 0.012277191, 0.0067632594, 0.013695347, 0.009130232, -0.023946598, -0.0015295839, 0.030632198, -0.011865249, -3.8487564E-5, 2.3868094E-4, 0.0066687157, -0.0056557464, 0.025607869, -0.01527558, -0.014910911, -0.017666187, 0.005193157, 0.022298835, 0.0024935931, 7.2596146E-4, -0.016747762, -0.007327146, -0.016855812, -0.012425759, -0.0166127, 2.2137605E-4, -0.017504113, 0.007975446, -0.010656439, 0.019259926, 0.010305276, -0.010886045, 0.005365362, 0.0011075133, 0.022649998, -0.02625617, 0.009488148, -0.0043962877, -0.013047047, -0.045462072, -0.0051492616, -0.0013303666, -0.009629963, 0.0025982668, -0.030578172, -0.001715295, -0.02228533, -0.0062365155, 0.0030338436, 0.012743156, -0.019530052, 0.012101609, 0.037790515, -0.008495438, -0.0056557464, -1.2113427E-4, 0.032766186, 0.010035151, 0.010683452, 0.013769632, -0.0028599505, 0.022298835, -0.03165867, 0.024513861, 0.0033309814, -0.010271511, -0.016585687, 0.018652145, 0.015505186, -0.008569722, -0.012358228, -0.025297225, 0.010453845, -0.029767796, 0.03719624, -0.006604561, -0.0031368288, 0.027795883, 0.024946062, 0.02914651, 0.020488996, 0.010642933, -0.021799104, 0.01426261, -0.01754463, -0.015518692, -0.011237208, 0.015302593, 0.00763779, -0.0015051039, 0.0082455715, -0.022406885, 0.006618067, -0.029173521, -0.004625894, 2.139898E-4, 0.0183415, 0.048811622, 0.027714845, -0.0038290247, 0.039735418, 0.0015641937, 0.016342575, -0.016855812, 0.011926028, 0.019881215, -0.01063618, 0.0061689843, 0.017261, -0.031172447, -0.0063344357, 0.013452235, 0.010406573, -0.0044975844, 0.023635956, -0.014235598, -0.0023669722, -0.003592665, -0.010676699, 0.0020225623, 0.0052978303, 0.038816992, -0.03033506, 0.0032972158, 0.007813372, 0.03463005, 0.0041194092, 0.006611314, 0.0018419162, -0.0072190957, 0.010325536, 0.006854427, -0.0245949, 0.014424685, -0.02914651, 0.025959032, 0.027984971, -0.013391457, 0.0065471595, 0.021731572, -0.011345258, 0.0032279962, -0.0013540025, -0.011770706, -5.4489315E-4, -0.0011716681, 0.0133509375, 0.011899015, -0.037169226, 0.029119497, -0.027984971, 0.026512789, 0.013283406, -2.3055607E-5, -0.025945526, 0.036574952, 0.00731364, -0.038411804, -0.015113505, -0.01195304, -0.011365518, 0.011399283, -7.987687E-5, -0.023838548, -0.012385241, 0.003406954, -0.008198299, -0.014114042, -0.020178352, 7.246953E-4, -0.008515697, -0.015099999, 0.010555143, 0.17266403, -0.020961715, 0.023055186, 0.037007153, 0.0069422177, 0.004163305, 0.009035688, 0.016666725, -0.0067362473, 0.035440426, 0.008097003, 0.007806618, 1.07944565E-4, -0.0015962711, 0.005628734, -6.4703426E-4, -0.0012628353, -0.016004918, -0.026958495, -0.006665339, -0.0034812384, 0.007941681, -0.009778532, -0.009245035, 0.025756437, -0.012142127, -0.0032111134, -0.007975446, 0.019313952, 0.010777995, -0.009326072, -0.013141591, -0.0040856437, 0.00785389, -0.037142213, -0.003920192, -0.009461135, -0.0061217123, 0.004041748, -0.0051053665, -9.150491E-4, -0.0072055897, -0.012993022, 0.001715295, -0.005395751, -0.006209503, -0.010676699, 0.0064694984, -0.02086717, 5.009978E-4, -0.036845077, 0.0057941857, 0.020988727, 0.02138041, -0.0032482555, -0.030199997, 0.01096033, -0.0054902947, -0.0061149593, 0.010622674, 0.017639175, 0.03957334, -0.018327994, 0.0035285105, -0.011433049, 0.01473533, -0.032415025, -0.0037040918, 0.02578345, -0.021650534, -0.0046056346, -0.008927638, -0.030470122, 0.0045279735, -0.007968693, -0.0047609564, 0.02019186, 0.02621565, 0.008583228, 0.0064796284, -0.01978667, -0.024257243, 0.010764489, -0.02047549, -0.014573255, -0.011189937, 0.026850445, -0.005230299, -0.018044364, 0.0054362696, 0.0046427767, -0.030010909, -0.011520839, 0.0013472494, 8.057328E-4, 0.004487455, 0.016423613, 0.02224481, -0.011122405, -0.020407958, -0.028444184, 0.019921733, 0.029632734, 0.009015429, -0.0013151721, -0.017463595, 0.0067733894, 0.02830912, 0.011568111, -0.018908763, -0.01173694, -0.031469587, -0.0069692302, -0.02036744, -0.0021711313, 0.01564025, -0.004480702, -0.025175668, 0.04837942, -0.027053038, -0.016963862, -0.022487924, -9.673859E-4, -0.01039982, 0.01885474, -0.038627904, -0.03119946, 0.014964936, 0.014451698, -0.027147582, 0.004744074, -0.0071042925, 0.0031115047, -0.007367665, -0.009927101, 0.019719139, 0.01184499, -0.0015363371, 0.017058406, 0.003508251, 0.0030254023, -0.025810463, 0.016275043, 0.0030574796, 0.020826653, -0.023879068, 0.008340116, 6.9008546E-4, -0.010696958, -0.035845615, 0.0073609115, -0.011318246, 0.005787432, 0.011682915, 0.03997853, -0.014330142, -0.035656527, -0.057752766, -0.023554917, 0.022150267, -0.041761357, 0.015829336, 0.023595436, -0.0105146235, -0.02246091, -0.011487074, -0.17233987, 0.023014667, -0.0054835416, -0.018733183, 0.010372807, 0.0070367614, 0.030686222, 0.0043996642, -0.0017017887, -0.0110886395, 0.015559211, 0.012101609, -0.041896418, -0.010919811, 0.0028042372, -0.010730724, 0.003364747, 0.026283182, 0.037169226, -0.023838548, 0.030686222, -0.0068172845, -0.0042072, 0.016788282, -0.0010171902, -0.016383093, 0.016639711, -0.004933161, 0.023500891, -0.008529203, -0.016288549, -0.0036095479, 0.0057300306, -0.004943291, -0.011021108, 0.0012172516, -0.018314488, -0.008562969, -0.007482468, -0.001535493, 0.01635608, 0.032739174, 0.011642396, 1.3915141E-5, -9.226464E-4, 0.019530052, 0.02300116, -0.019165384, -5.8245746E-4, -0.027822895, -0.013013282, -0.04351717, -0.0025543715, 0.008833094, 0.012088102, 0.01732853, -0.0025661893, -0.012304203, -0.0075432463, 8.589137E-5, -0.040437743, -0.010994095, 0.014316635, -0.021474954, -0.0071515646, -0.023757512, -0.03860089, 0.015235061, -0.03290125, 0.0021424305, -0.04157227, 0.014613773, 0.014073523, -2.469113E-4, -0.0020158093, -0.027255632, -0.029173521, -0.010433585, -0.0034272135, 0.02429776, -0.009873076, 0.028768333, -0.020218872, -0.0077188276, 0.018773701, -0.021002235, 0.007117799, -0.0047103083, -0.0019449014, -0.015572717, 0.028147046, -0.019449014, -0.019921733, -0.0027417708, 0.013155097, 0.014316635, 0.008448166, 0.010919811, 0.0060339216, -0.039168153, -0.011270974, -0.013816904, -0.020299908, 0.023379335, 0.01361431, 0.016558675, -0.020732109, 0.015221555, 0.022798566, 9.5894444E-4, -0.02015134, 0.010386314, 0.017098924, 0.0029257936, -0.015775312, 0.0070975395, -0.008198299, -0.023190249, -0.0021356773, 0.023554917, 0.032793198, 0.0041430453, -0.014316635, 0.0041734343, -5.0986133E-4, -0.02008381, -0.0936254, 0.017531125, 0.007002996, 0.0314966, -0.005838081, 0.03806064, 0.0054835416, 0.023825042, -0.0250271, 0.021515472, 0.0128039345, -0.032415025, 0.011811224, -0.0012467966, 0.025607869, 0.004278108, -0.011446555, -0.004274731, 6.495667E-4, 0.026175132, 0.008610241, 0.0037209745, 0.0041362923, -0.027876921, -0.003173971, -0.0016283485, -0.019611089, 0.024095168, 0.019759659, 0.0071380585, 0.028336134, -0.018935777, 0.015451161, -0.03987048, -0.011352011, -0.025189174, -0.018084882, -0.017098924, 0.014384166, -0.0694762, -0.018084882, 0.011439802, -0.0034744854, -0.038844004, -0.006908452, -0.003460979, -0.014802861, 0.024932556, -0.024946062, -0.026458763, -0.019746153, -0.01141279, -0.018327994, -0.010116189, 0.02250143, 0.025189174, 0.016437119, 0.0235144, -0.012371734, -0.011257468, 0.0036905855, -0.009143738, -0.020880679, 0.0024243738, 0.022339353, 0.0145192295, -0.007907915, -0.004919655, 0.012479784, -0.013256394, -0.01801735, 0.025648387, -0.039708406, 0.0011328375, -0.021042753, -0.0020664579, -0.026202144, -0.012452772, 0.0059123654, -0.0039911, -0.0023889197, -0.022447404, -0.014802861, -0.0076107774, 0.0027468356, 0.007860643, 0.02019186, 0.0029916365, 0.010224239, -0.047109835, -0.001069527, 0.0174771, 0.005169521, 9.066077E-4, -0.011237208, 0.0314966, 0.029848834, 0.012587834, -0.0110616265, 0.0017060095, -0.034251876, -0.0012560822, -0.066558845, 0.007928175, -0.012040831, -0.01624803, 0.0039336984, -0.007826878, -0.02086717, -0.017976832, 0.013951967, 0.015397136, -0.028552234, 0.0110818865, -0.00953542, -0.0027535888, -0.016423613, -0.002647227, 0.0058144447, -0.005598345, 0.0110548735, -2.1884362E-4, -0.023311805, -0.004727191, 0.0047710864, -0.018773701, -0.005875223, 0.022339353, 0.0062196325, 0.039600354, -0.008556216, -0.018517083, 0.023852056, -0.010480857, -0.012094855, -6.0398306E-4, -0.034035776, -0.029875847, -5.7865883E-4, -0.01018372, -0.0048791366, 0.022812072, 0.008164534, -0.008907379, 0.004781216, -0.001924642, 0.0018689287, 0.010258004, -0.018787207, 0.008671019, 0.019624596, 0.009812298, 0.02224481, 0.019259926, 0.002659045, 0.003437343, 0.0093733445, -0.019800177, 0.034819137, 0.009089713, -4.596349E-4, -0.0013269901, 0.025661893, 0.011379024, 0.03592665, -0.031145435, -0.0030338436, 0.016450625, -0.016990876, -0.0069894893, 0.01823345, -0.02239338, -0.0014401049, -0.006587678, 0.016747762, 0.022123253, 0.0068274145, 0.022812072, 0.0052573117, 0.012054337, 0.004075514, 0.012682378, 0.02025939, -0.030145973, -0.014303129, 0.015140518, 0.016801788, 0.017706707, 0.0025661893, 0.023865562, 6.9008546E-4, 0.0064863814, -0.009582692, -4.1742786E-4, 0.017625669, 0.0028278732, 0.0040620076, 0.010791502, -0.01272965, -0.019003307, -0.010663192, 0.037493378, 0.0059663905, -0.0013464052, -0.0077728527, -0.0051323785, -0.028714309, 0.010568649, 0.0061453483, -0.04200447, 0.010953576, 0.010690205, 0.025499819, 0.015505186, 0.003244879, 0.0055713323, -0.048892662, 0.0077660996, -0.02228533, -0.029335596, -0.0099203475, 0.048163325, -0.0033259166, 0.007833631, 0.031793736, -0.009582692, 0.03752039, -0.007192083, 0.021353398, -0.013067306, 0.003346176, -0.021907153, -0.007178577, 0.0041666813, -0.029416634, -0.003018649, -0.007327146, 0.00519991, -0.0027451473, 0.02202871, -0.02509463, 0.059751693, 0.033792663, -0.0069827363, 0.016599193, -0.033711623, 0.014978442, -0.016477637, 0.02418971, -0.016572181, -0.014127548, 0.026566813, -0.015397136, -0.0029443647, -0.022258317, -0.0015793883, -8.9732214E-4, 0.016437119, 0.033738635, -0.016666725, -0.023568423, 0.0099608665, -0.0041801874, 0.0139384605, 0.0069692302, -0.01859812, -0.008515697, 0.045921285, -0.016342575, -0.0054193866, -0.028984433, -0.014235598, -0.022487924, -8.90569E-4, -0.011581617, 0.026472269, 0.002875145, -0.023176743, 0.0048622536, 0.037547402, 0.007117799, -0.016923344, 0.0022926875, -0.012358228, -0.007988953, -1.6840617E-4, 3.7543182E-4, 0.004511091, -0.024567887, -0.007995706 ], + "id" : "deec596e-5122-457a-a7d3-6f8ee2a34be3", + "metadata" : { + "source" : "movies.csv" + } + }, + "a5a55e90-c97e-462c-bed3-0fefb4ef7fbb" : { + "text" : "995,16091,Rami Malek-Gwilym Lee-Ben Hardy-Joseph Mazzello-Lucy Boynton-Aidan Gillen-Allen Leech-Tom Hollander-Mike Myers-Aaron McCusker-Meneka Das-Ace Bhatti-Priya Blackburn-Max Bennett-Dermot Murphy-Dickie Beau-Jack Roth-Neil Fox-Roberts-Jess Radomska-Michelle Duncan-Ross Green-Bruce Mackinnon-Joshua Higgott-Pat Lally-William Owen-Philip Andrew-Tim Plester-Felipe Bejarano-Kieran Hardcastle-Martin Oelbermann-Ian Gabriel Dumdum-Matt Greenwood-Royce Cronin-James MacLaren-Andrew Bowerman-Drew P.-Haf Gibson-Honor Hellon-Rosy Benjamin-Leila Crerar-Katherine Newman-Adam Rauf-Peter Howe-John Ottman-James Wallace-Matthew Houston-Scott Morrison Watson-Devlin Lloyd-Stefan Kopiecki-Garry Summers-Matthew Fredricks-Ian Jareth Williamson-Adam Lazarus-Johanna Thea-Adam Lambert-Andreea Helen David-Jason Lines-Adam James Johnston,london england-aids-musician-1970s-queen-biography-based on true story-singer-hiv-male homosexuality-fame-rock band-lgbt-1980s-gay theme-music movie,/lHu1wtNaczFPGFDTrjCSzeLPTKN.jpg,/dcvbs8z0GEXslC1kCT77x19XDeR.jpg,493092-332562-9303-490132-338952-487558-16664-375262-17979-426426-369972-297802-9444-335983-475557-260513-284054-504608-299536-404368-324857\r\n779029,The Battle at Lake Changjin,Drama-War,zh,Korean War winter 1950. In the frozen and snowy area of Changjin Lake a bloody battle is about to begin between the elite troops of the United States and China.,14.573,Shanghai Film Group-China Film Group Corporation-Bona Film Group-Beijing Dengfeng International Culture-Alibaba Pictures Group-Distribution Workshop-Huaxia Film Distribution-August 1st Film Studio,9/30/21,200000000,902540935,178,Released,Do they fall out of the goddamn sky?,6.3,56,Wu Jing-Jackson Yee-Duan Yihong-Yawen Zhu-Jerry Lee-Zhang Hanyu-Hu Jun-Elvis Han-Oho Ou-Shi Pengyuan-Huang Xuan-Tang Guoqiang-Liu Jin-Lu Qi-Zhou Xiaobin-Wang Wufu-Liu Sha-Yang Yiwei-Lin Yongjian-Geng Le-Wang Ning-Wang Tonghui-Guo Siming-Zhao Yihan-Bai Xuanshuo-James Filbird-Steven John Venn-Yi Gang-Wu Weidong-Wang Yanyang-Li Mincheng-Wang Hongtao-Tiger Xu-Thomas Fiquet-Li Zhuoyang-He Yuefei-Tang Zhiqiang-Liu Zhiwei-Zhuang Xiaolong-Xin Yubo-Zhang Yue-ZhenWei Wang-ZeXuan Chen-Li Xiaofeng,korean war-chinese communism-communist propaganda,/5q22mBfsFVvtxscYI52dicYchuK.jpg,/dwNeWkccTWJCgfc6yqpkuH93nSu.", + "embedding" : [ 0.017819751, -0.028997594, -0.011974333, -0.039257452, -0.027593615, 0.04506237, 0.0011272342, -0.002826523, -0.029942581, -0.036179494, 0.027134622, 0.033290535, 0.0042726905, 7.129588E-5, -0.0011179531, 0.018481242, 0.020249717, -0.007789391, 0.015173788, -0.026878124, -0.0076476433, -0.005858918, -0.022571685, 0.0060681654, -0.0025548392, 0.008653379, 0.03809647, -0.0105298525, -0.0215052, -0.0059196674, 0.0091258725, -0.0030965193, -0.011009096, -0.020938206, -0.010982096, 0.0062571624, 0.0060580405, -0.03631449, 0.009969611, -0.0045899358, 0.0098278625, 0.016375272, 0.002762399, -0.0011002346, -0.0071009006, -0.005221052, 0.015565283, -0.004151192, -0.003187643, 0.035639502, 0.028673599, 0.020911207, -0.011974333, -0.021964192, -0.022072192, 0.008444132, 0.00855213, 0.003503201, -7.1338064E-4, 0.0034762013, 2.7421492E-4, -0.0056699207, -0.034424517, -0.017698253, -0.013702309, -0.015632782, -0.011906833, -0.015875777, 0.0105298525, 8.437382E-4, 0.033452533, 0.015592282, 0.014458298, -6.4799096E-4, 0.034856513, -0.0286466, -0.030590573, -0.011171094, -0.02076271, 0.0021009082, 0.019588226, -0.011947333, -0.012102581, 0.0036213244, 0.013655059, 0.0040398184, -0.018305745, 0.024637155, -0.020654712, -0.0065507833, -0.0033462658, 0.030509574, -8.407851E-4, -0.009463368, 0.013135317, 0.019912222, -0.031967554, 0.0286466, -0.034667514, -0.039203454, 0.0016807265, -0.0099898605, -0.023813667, -0.01214983, -0.007944639, -0.007836641, -0.0016452895, -0.010570352, 0.021046206, 0.022612184, 0.0022713433, -0.016591268, 0.018859236, -0.046250354, -0.0074316463, -0.022031693, 0.031157564, -0.02286868, -0.017212259, -0.02644613, 0.030185578, 0.026189635, 4.8641508E-4, -0.032615542, 0.038987454, 0.04230841, -0.008828877, -0.018670239, 0.0046034358, 0.0019642226, 0.03229155, -0.008295634, 0.024448158, 0.03077957, -0.019439729, 0.034964513, -0.018994235, 0.015970277, -0.019777223, -0.0058825426, 0.030590573, 0.03491051, -0.029807582, -0.024731655, -0.02010122, 0.008106637, 0.010867348, -0.0046810596, 0.01568678, 0.0053358003, 0.011704337, 0.012048582, 0.019655725, 0.03207555, 0.01931823, 0.0028822096, -0.019615225, -0.012082331, -0.017441757, -0.014039804, -0.009800863, -0.012737072, -0.004070193, -0.021154204, -0.008680379, 0.019210232, 0.018089747, -0.026270634, -0.003422202, -0.0032213924, 0.011778586, 0.016955763, -0.028484602, 0.014876792, -0.007445146, 0.013385063, 0.0057711694, -0.02282818, -0.031265564, -0.017455256, -1.0061578E-4, 0.0060985396, 0.024556156, 0.026878124, -0.011657087, 0.012035082, 0.0097738635, -0.013081317, 0.0033783277, -0.00789739, 0.007087401, 0.019453228, 0.007006402, -0.013081317, -0.64107907, -0.01141409, -0.010266607, 0.007991889, 0.014147802, 0.015133289, 0.0031606434, -7.585207E-4, -0.01717176, -0.013391813, -0.030968567, 0.015470784, 0.028889596, -0.025541643, -0.01644277, -0.005764419, 0.0026797126, -0.022058692, 0.0022662808, 0.0021734696, -0.016901763, 0.01291932, 0.020911207, 0.00430644, 0.0028636474, 0.005092804, -0.008680379, -0.014228801, -1.714898E-4, 0.0094768675, -0.034073524, 0.010455604, 0.013837307, 0.015848778, 0.037961468, -0.01287882, -0.019169733, 0.057563197, 0.021910194, 0.01570028, -0.019885221, -0.001037798, -0.0044718124, -0.008180886, -0.019912222, 0.02926759, 1.1337732E-4, 0.021289203, -0.0027725238, -0.0033833901, -0.0029429588, -0.0043975636, -0.015497783, 1.7707955E-4, 9.162997E-4, 0.014417798, 0.012035082, -0.049004316, 0.016253773, 0.0037765722, -0.029456588, 0.021721197, -0.0020772836, -6.5558456E-4, 2.4152006E-4, 0.027512616, -0.00285521, -9.63549E-4, 0.010907847, -0.02583864, -0.007809641, 0.0098278625, -0.018184246, 2.7337117E-4, 0.00788389, 0.020978706, 0.03950045, 0.0010774537, 0.0010934847, 0.016685767, -0.010077609, 0.0051704277, 0.031859554, 0.013115067, 0.021397201, 0.0025109649, -0.031805556, 0.014809293, 0.017536255, -0.0068207798, 0.015605782, 0.010867348, 0.01653727, 0.0014883542, -0.012460326, -0.004934181, -0.011306092, 7.4459895E-5, 0.028970595, -0.06371911, -0.009902111, -0.022450186, 0.03731348, -0.015889278, 0.009382369, 0.018089747, -0.015983777, -0.02996958, 0.023125177, -0.0029918957, -0.0067499056, 0.009517367, -0.01719876, -0.0026965872, -0.0062132883, -0.021275703, 0.005345925, 0.026230134, 0.0069051534, -0.016132275, 0.0027961484, -0.0038103217, 0.017617254, -0.018872736, 0.014849792, 0.036827486, -8.76644E-4, -0.004151192, 0.007816391, 0.023908166, 0.0053864247, -0.011103595, 0.024259161, -0.027512616, 0.016658768, 0.00927437, 0.009578116, 0.0023185925, 0.014633795, -0.00789739, -0.008687128, -0.014498797, -0.0063044117, -0.018386742, -4.5393116E-4, -0.0036955734, -0.04066143, -1.7138432E-4, -0.006739781, -0.019115733, -0.008977374, 0.010847098, 0.0049274312, 0.0065507833, -0.0034762013, 0.008491381, -0.027175121, 0.0013179191, 0.0105298525, -0.017050263, 0.0045528114, 0.015430285, -0.0023152176, -0.020965207, 0.031211564, 0.0012495763, -0.01139384, 0.004444813, 0.0062706624, -0.006155914, 0.022450186, -0.0060445406, 0.0019456603, 0.010334105, -0.024961151, 0.017954748, -0.0093688695, 0.029456588, -0.0019709724, -0.0018258495, 0.01360106, 5.281801E-4, -0.025501143, -0.028160606, 0.024623657, 0.020330716, 0.010334105, -0.004205191, 0.002262906, 0.002291593, -0.023354674, -0.008423883, -0.0046236855, -0.01498479, 0.008275384, 0.026675627, 0.013351314, -0.0012841695, 0.008356383, -0.0077151423, 0.03148156, 0.012109331, 0.012689822, 0.008356383, 0.014147802, -0.019480228, -0.0071346504, -0.02500165, 0.010948347, -0.0019743475, 0.028835597, -0.016186275, -0.016982762, 0.00197266, -0.0061322893, 0.026810626, -0.004205191, 0.010185608, -0.016199773, 0.0034728264, -0.0010158608, -0.010428605, 0.0047620586, 0.028862597, -0.03077957, -0.009193371, 0.018535241, -0.010502853, 0.003796822, -0.013459312, -0.015524783, 0.008045888, -0.0043840636, 0.010988846, -0.016766766, -0.011015846, 0.0214242, -0.021613197, 0.03339853, -0.013736058, -0.00932162, 0.01141409, 0.021856194, -7.124314E-5, 0.018886236, -0.013661809, 0.009915612, 0.014755294, -0.01003036, 0.042092413, -0.015349286, 0.040148437, 0.006061415, -0.010131609, 0.01856224, -0.005160303, 0.012635823, 0.01144784, 0.033533532, 0.023381673, 0.006868029, -0.024731655, 0.01939923, -4.5814985E-4, 0.012419826, 0.0031792056, -0.024164662, 0.0048059328, -0.00857238, -0.028457602, -0.020614212, -0.013236565, 0.0038575712, 0.007991889, -0.007654393, -0.013405313, -0.0034306396, 0.0053256755, 3.6976827E-4, 0.027782612, -0.01644277, -0.02780961, 0.010037109, 0.027593615, -0.027526116, -0.027067121, -0.026284132, 0.0028248355, -0.04865332, -0.029294591, 0.0018005373, 0.025015151, -0.020533213, 0.005578797, -0.027404618, -0.005210927, 0.023908166, -0.01850824, 0.01144784, 0.02359767, -0.014552796, 0.013661809, -0.011339841, -0.011150844, 0.01578128, -0.013749558, -0.022450186, -0.014768793, 0.01285182, 0.007937889, -0.0043334393, -0.0076881424, -0.037583474, 0.007931139, -0.0058285436, -0.0054302993, -0.015119788, 0.0011356716, 0.002581839, -0.021613197, -0.014741794, -0.041066427, -0.030968567, -0.009429618, 0.088612765, 0.04733034, 0.011407341, 0.0012158267, -0.017117761, 0.0076678926, 6.007416E-4, -0.008376633, -0.012392826, -0.026905123, 0.03007758, -0.0095038675, 0.019007735, 0.0076273936, 0.011967583, -0.010219357, -0.011650337, -0.0056462963, -0.006277412, 0.009267621, -0.025852138, -0.023800168, 0.012480576, 0.02654063, -0.0023776542, 0.004215316, 0.025946638, 0.007006402, 0.0037326978, 0.015160288, -0.016901763, 0.005777919, -0.0014014492, 0.0035572003, -0.0032720168, 0.021491699, 0.038447462, 0.010151858, 0.02570364, -0.012406327, -0.005740795, -0.0033901401, 0.011218343, -0.0101248585, 0.02647313, -0.025393145, -0.02070871, 0.025339145, 0.03296654, -0.039662447, 0.02010122, 0.010948347, -0.015916277, -0.023651669, 0.028160606, 2.90035E-4, -0.014093803, -0.0103948545, -0.0097468635, 0.0068342793, 0.014012804, -0.033830527, 0.005501173, -0.010793099, -0.016996263, -0.014134303, -0.024853153, -0.00789064, -0.011400591, 0.0026982748, -0.0012968256, -0.0054741735, -3.32011E-4, -0.0016933826, 1.1854522E-4, -0.0087208785, 0.029213592, -0.018265245, 0.016726267, -2.5501987E-4, -0.029375589, -0.028916596, 0.010772849, -0.013418812, 0.0013255128, 0.021248704, 0.0047620586, 0.018710738, -0.014417798, 0.0056462963, -0.00858588, 0.0092878705, -0.028835597, -0.015578782, 0.038879458, 0.019952722, 0.003580825, 0.022477185, 0.0041781915, 0.0043941885, 0.006868029, -0.026297633, -0.012980069, -0.021275703, -0.02722912, -0.0042726905, -6.290068E-4, 0.00641241, -0.020141719, -0.025852138, -0.033209536, -0.027458616, 9.3444E-5, 0.0018444117, 0.008187636, -0.0032433297, 0.024920652, 0.032399546, -0.018481242, 0.006506909, 0.003364828, -0.023746168, 0.014417798, 0.021694196, -0.006469785, 0.039149452, -0.018211246, -0.018089747, -0.008282134, 0.010239607, -0.011130595, 0.007013152, -0.02220719, 0.0051974272, -5.547579E-4, -0.023192676, 0.0042119413, -0.005275051, -0.023881165, 0.012811321, -0.01714476, 0.008700629, 0.0095308665, 0.016618269, -0.012284828, -0.029564587, 0.0073506474, -0.016888265, 0.014660795, 0.015470784, -0.008106637, 0.012541325, -0.018913236, -0.01216333, -0.0019220356, -0.029780583, -0.017077262, 0.01578128, 0.017522756, 0.0036246993, 0.0429564, -6.60647E-4, 0.030185578, 0.017023262, -0.0077623916, 0.020344216, -0.010232857, -0.019939221, -0.038312465, -0.0069659026, 0.018211246, 0.029564587, -0.004367189, 0.0040971925, 0.0092878705, 0.023057677, 0.014417798, 0.014957791, 0.0022899054, -0.020965207, -0.028673599, -5.2100833E-4, -0.023044178, -0.0024249037, -0.021113705, -0.021073205, 0.0215592, -3.0965192E-4, -0.0032348924, -0.013236565, 0.017428257, -0.0046101855, 0.021950694, -0.015983777, 0.030563572, -0.021100204, -8.673629E-4, -0.011096844, -0.008761378, -0.00303577, -0.0028670225, 0.016982762, 0.009632115, -0.029240591, -0.010934847, 0.023692168, -0.022679683, -0.030347576, 0.017995248, -0.023827167, -0.012345578, -0.019534227, 0.008700629, -0.034073524, -0.008383383, 0.0028450852, -0.014377299, -0.005943292, -0.019115733, -0.023111677, 0.027067121, -0.0042794403, 0.028403603, 0.016132275, 0.04876132, 0.027013123, 0.005153553, -0.019372229, 0.015335785, -0.0070469016, -0.006436035, 0.027607115, 0.01930473, -0.014863293, 0.0046034358, -0.0024603405, -0.0070469016, -0.025150148, -0.024583157, 0.030914567, 0.02575764, 0.019088734, -0.019993221, -0.0037698224, -0.047465336, 0.008531881, -0.0067566554, -8.6187857E-4, 0.020438714, -0.028835597, 7.2688045E-4, 0.017293258, -0.004225441, 0.0019507228, -2.0102062E-4, -0.023395173, 0.009625365, -0.023435673, -0.009193371, 0.0086398795, -0.014579796, 0.031184563, -0.0358825, 0.011947333, 0.010698601, 0.014039804, 0.01570028, 0.0023489671, 6.758343E-4, 0.029996581, -0.016631767, 0.027485617, 0.013985804, -0.00680053, 0.02573064, 0.028079608, -0.008545381, -0.009895362, -0.024488658, -0.0026645253, 0.018994235, 6.277412E-4, 0.005649671, 0.016240273, -0.018724238, -0.018400243, 0.011164344, -0.004870057, 0.016982762, -0.034640517, 0.011859585, 0.0031353312, 0.0011162657, -0.006719531, 0.0027792735, -0.0039689443, 0.0010032047, 0.011312841, -0.0066014077, 0.0021481575, -0.016240273, -0.019210232, -0.035342507, -0.022153191, 0.010874098, -0.018710738, 0.008673629, -0.025852138, -0.0023557171, -0.006162664, -0.010428605, 2.0745413E-4, -0.0042591905, -0.016091775, -0.0038339463, 0.014431299, -0.007789391, -0.019331729, -0.0021194704, 0.029159592, -0.0087748775, -0.006716156, -0.0069659026, 0.014687794, 0.024218662, -0.0016503519, 0.019102233, 2.9847238E-4, -0.02786361, -0.009335119, 0.018035747, 0.0215187, 0.029645586, -0.0060546654, -0.021829195, -0.013351314, -0.008943625, 0.029186592, -0.0067127813, 0.012507576, 0.02222069, 0.012345578, 0.03237255, 0.02570364, -0.0061187893, -0.023962164, 3.3390938E-4, -0.0087208785, -0.03356053, 7.704384E-5, -0.0013069505, 0.017279759, 7.568332E-4, -0.004573061, -0.03639549, -0.006371911, -0.020587211, -0.025811639, 0.0043368144, 0.02004722, 0.020141719, 0.019331729, -0.0019507228, 0.018130247, 0.006945653, -0.0024772154, -0.008329384, -0.014417798, 0.015457284, 0.010894348, 0.022720182, 0.024934152, -0.018305745, -0.0075666443, 0.011643588, 0.021586198, -0.0011736399, 0.023921665, -0.01505229, -0.012946319, -0.010597352, 0.0052716765, -0.017576754, -0.017590255, 0.028430603, -0.023071177, 0.0016410708, 8.656754E-4, 0.016955763, -0.0034795764, 0.0096388655, 0.012838321, -0.010948347, -0.012406327, 0.004309815, -0.016888265, -0.0028889596, -0.026581129, 0.027620614, 0.006000666, -0.0051974272, 0.036341492, 0.013918306, 0.0092878705, 0.0028332728, -0.02438066, 0.011893334, -0.018211246, 0.0049645556, 0.0051873024, 0.023813667, -0.025568642, 0.023287175, -0.026851125, -0.002097533, -0.004957806, 0.0039081955, 0.0039081955, 0.03269654, 0.01291257, -0.051920276, 7.0620887E-4, -0.020398214, 0.0032045178, -0.018211246, 0.004650685, -0.019021234, 2.7695706E-4, -0.007937889, -0.002394529, -0.011306092, -0.027755613, -0.0089368755, -0.0028282104, -0.011387091, 0.005575422, 0.17722553, -0.020209217, 0.011400591, 0.0356125, 0.006925403, 0.0034019526, 0.03221055, 0.023908166, 0.002968271, 0.017009763, -0.0037326978, 0.009463368, 0.002178532, 5.5001183E-5, 0.014660795, -0.022612184, -0.027377617, -0.016051276, -0.016820764, -0.030833568, -0.005413424, 0.003445827, -0.007377647, -0.025433645, -0.0029378964, -0.0026223382, -5.38305E-4, 0.011933833, 0.013439062, 0.0074721454, -0.008963875, -0.01576778, -0.01148159, -0.0035470754, -0.023233175, 0.0058521684, -0.017765751, 0.0011576088, 0.016240273, 0.003007083, -2.4194193E-4, 0.0053729247, -0.014498797, -0.0065474086, -7.6063E-4, 0.016888265, -0.025636142, 4.0140844E-4, -0.021545699, 0.022747181, -0.041768417, -9.500492E-4, 0.017684752, 0.027458616, 0.013769807, -0.012575074, -5.796481E-4, 0.005443799, -0.0024485283, 0.0062639127, 0.025271647, 0.027755613, -0.025460644, 0.020317215, -0.010867348, 0.010280106, -0.039365448, -0.0050388044, 0.007971639, -0.023435673, -0.0066992813, -0.028025609, -0.017077262, 0.0076206434, -0.015403285, -0.012676323, 0.024448158, 0.019007735, -0.0033445782, 0.030455574, -0.030617572, -0.022639183, 0.007951389, -0.010219357, -0.003793447, -0.0102598565, 0.006284162, -0.01722576, -0.018778238, -0.020600712, -0.01790075, -0.03793447, -0.008545381, 0.01934523, 0.0020064095, 0.0022055316, 0.036287494, 0.0022139691, -0.0045291865, -0.016307771, -0.036125496, 0.03712448, 0.01579478, 0.0017920999, -0.011852834, -0.031427562, -0.007661143, 0.0012327015, 0.018346244, -0.004195066, -0.0092878705, -0.031913552, 0.010118108, -0.011171094, -0.0055551725, 0.019669225, 0.01145459, -0.01792775, 0.026068136, -0.003790072, -0.0016064775, -0.028079608, 0.0286196, 0.001156765, -0.009173122, -0.029105593, -0.032642543, 0.012487326, -0.0027758987, -0.026203133, 0.0069861524, -0.036179494, 0.0026476504, -0.014620296, 0.002040159, 0.009024624, 0.015268287, -0.010354355, 8.3361333E-4, -0.0065777833, -0.0086398795, -0.013790057, 0.009551116, 0.010887598, 0.00429969, -0.018211246, -6.935528E-4, 0.0017043512, -0.020843709, -0.03445152, -0.03086057, -0.011319592, 0.015200787, 0.024637155, 0.04506237, -5.070867E-4, -0.02288218, -0.024137663, -0.017468756, 0.05783319, -0.03358753, -0.0018224745, 0.027674614, -0.012406327, -0.021329703, -0.0012723572, -0.17268959, 0.02367867, 0.0014132615, -0.012406327, 0.009807613, 0.026932124, 0.02780961, -0.0025059024, -0.002078971, -0.019034734, 0.022490686, 0.009659115, -0.028916596, -0.008558881, -0.0035403254, 0.022733683, -0.022517685, 0.038447462, 0.039608445, -0.0065541584, 0.028268605, -0.008963875, -0.012473825, -0.00678703, 0.01791425, 0.003574075, 0.021356702, 0.002755649, -0.007445146, 0.009517367, -0.03437052, -0.008106637, 0.02587914, 0.004093818, -0.013817057, 0.013027318, -0.012750572, -0.0051569277, -0.010300356, -0.01001686, 0.041660417, 0.0046000606, 0.018332744, 0.02354367, 0.0064866594, 0.020884208, 0.025892638, -0.037340477, 0.015916277, -0.020465715, -0.02278768, -0.029888581, 0.03879846, -0.018184246, 0.003358078, 0.029483588, 0.019804223, 0.0019743475, 5.9747214E-5, 0.008437382, -0.020465715, -0.009551116, 0.001344075, -0.01794125, 0.0022814681, -0.011164344, -0.015133289, 0.008747878, -0.03223755, -6.074915E-4, -0.020330716, 0.01578128, 0.020411715, -0.007073901, 0.01642927, -0.008882876, -0.04133642, 0.0074653956, -0.0039689443, 0.011373591, -0.014917292, 0.04487337, 0.0036280742, 0.023030678, 5.89773E-4, -0.0037056983, 0.004411063, 0.007445146, 0.0025902763, -0.011785335, 0.014188302, -3.99721E-5, -0.042389408, -0.0061221644, 0.0024535907, 0.0055450476, -0.008795127, 0.0019102233, 0.012784321, -0.0107256, 0.005808294, -0.020533213, -0.02434016, 0.009895362, 0.024880152, 0.007708392, 0.006655407, 0.019156232, 0.016928764, 0.011657087, -0.029456588, 0.011832585, 0.008194385, 0.005079304, -0.0077826413, 0.012467076, 0.0017617254, -0.03226455, 0.003719198, 0.025892638, 0.049004316, -0.003064457, 0.018845737, -0.008012138, -7.4122404E-4, -0.005210927, -0.08326684, 0.014957791, 0.017279759, 0.03366853, -0.0285656, 0.03339853, -0.0051839277, 0.015119788, -0.032021552, 0.027647614, 0.0020165343, -0.01780625, 0.01003036, -0.011177843, 0.004411063, 0.010826848, -0.023651669, -0.007526145, -0.02220719, 0.032507546, 0.0022443435, -0.0029125842, -0.0048329323, -0.027836611, 2.381451E-4, 0.0072156494, -0.024826152, 0.02934859, 0.0076206434, 7.55673E-5, 0.006891654, -0.026756626, 0.018062748, -0.04203841, -0.013445812, -0.028916596, -0.0034188272, -0.022112692, 0.003184268, -0.049625307, 0.010475853, 0.030914567, 0.014606796, -0.030374575, -0.013756308, 8.8697976E-5, -0.029645586, 0.028754598, -0.009065123, -0.027472116, 0.0052649262, -0.010948347, -0.0429564, 0.0033530158, 0.017279759, 0.008754628, 0.027269619, 0.015335785, -0.02290918, -0.033452533, -0.006797155, -0.0038879456, -0.019939221, 0.0010251419, 0.009956111, 0.025150148, 0.0016022589, -0.014012804, 0.009699615, -0.009760364, -0.026257133, 0.015673282, -0.040499434, -0.016078275, -0.027728612, 0.005794794, -0.015322286, -0.015092789, 0.037043482, -0.024097163, 0.0014081991, -0.024758654, 0.012014832, -0.006024291, 0.02575764, 0.013817057, 0.011184594, 0.003064457, -0.009429618, -0.043361396, 0.003496451, 0.022625683, 0.0015322285, 0.002865335, 8.357227E-4, 0.027094122, 0.01217008, 0.0019861597, 0.009726614, 0.010226107, -0.01071885, 0.002603776, -0.069659024, 0.044117384, -0.019129233, -0.004222066, -0.007586894, -0.00428619, 0.006513659, 9.162997E-4, -0.0035673252, 0.012548075, 0.012689822, 0.014201801, -0.010455604, -0.0016376958, -0.0031859556, 0.0039621945, 0.0098278625, 5.5897655E-4, 0.0054640486, -6.391317E-4, 4.38322E-4, 0.011137344, 0.011663837, 0.022004692, 0.001994597, 0.02574414, -0.012831571, 0.016253773, -0.023786668, -0.012743822, 0.03285854, -0.0213837, -0.0092068715, -0.007445146, 0.0030155203, -0.033290535, 0.017495755, -0.002769149, 0.0015676656, 0.004195066, 0.004505562, -0.018359743, 0.003064457, 0.0011517026, -0.009490367, 0.013229815, -0.013972305, 0.020897709, 0.0070469016, -0.0031505185, 0.0286466, 0.0036415742, -0.004863307, -0.027040122, 0.019007735, -0.013493061, 0.047600336, 0.0037056983, 6.7794364E-4, -0.011474839, 0.026932124, 0.00467431, 0.025339145, -0.026810626, -0.0027269619, 0.0093148695, 0.014120802, -0.008079637, -0.00393182, -0.0357745, -0.022477185, -0.0038879456, 0.0013407, 0.036773484, 0.0215052, 0.026743127, 0.009875112, -0.0020199092, -0.0053763, 5.281801E-4, 0.022625683, -0.0067532808, -0.015065789, 0.01355381, -0.009004374, 0.011650337, -0.002143095, 0.023732668, 0.004006069, -0.0015491033, -0.0036651988, 0.015659781, 0.023273675, 0.008126887, 0.0056699207, 0.01572728, -0.023476172, -0.004164692, 0.013918306, 0.01657777, -8.0492627E-4, -0.0034795764, -0.013904805, -0.024542658, -0.017684752, 0.0054775486, -0.03218355, 0.008646629, 0.016699266, 0.030401574, 0.021316202, 0.013432312, -0.012541325, 0.015187288, -0.027674614, 0.0051873024, -0.0092878705, 0.001856224, -0.017671254, 0.033533532, 0.01570028, 0.0041444423, 0.029375589, -0.01575428, 0.04627735, 0.013958805, 0.018481242, -0.008963875, 0.0025227773, 0.012345578, 0.003287204, -0.012008082, -0.016712766, 5.011805E-4, -0.014458298, 0.0072696484, 0.018157246, 0.028457602, -0.035909496, 0.06674307, 0.023395173, -0.016618269, 0.018089747, -0.01583528, 0.026149135, 0.002401279, 0.019021234, -0.02208569, -0.026027637, -0.006992902, -0.01640227, -4.6658723E-4, -0.036287494, -0.0022156565, -0.008518381, 0.013344564, 0.016969264, -0.008079637, -0.023030678, 0.0011787022, -0.0028096482, 0.028268605, 0.002365842, -0.0070536514, -0.012953069, 0.016091775, -0.008835627, -0.009240621, -0.010563603, 0.006662157, -0.021154204, 0.004141067, -0.0064529097, 0.020209217, -0.0073506474, 0.0030948317, 0.0031623307, 0.021626698, 0.011913584, -0.01217008, -0.00786364, -0.015092789, -0.018143747, 0.024110664, -0.019453228, -8.7073783E-4, -0.027121121, -0.015389785 ], + "id" : "a5a55e90-c97e-462c-bed3-0fefb4ef7fbb", + "metadata" : { + "source" : "movies.csv" + } + }, + "ccbe2892-db3a-45e8-a92a-51b844ac152f" : { + "text" : "8,6487,Lily James-Cate Blanchett-Richard Madden-Stellan Skarsg��rd-Holliday Grainger-Sophie McShera-Derek Jacobi-Helena Bonham Carter-Nonso Anozie-Ben Chaplin-Hayley Atwell-Richard McCabe-Rob Brydon-Jana P��rez-Alex MacQueen-Tom Edden-Gareth Mason-Paul Hunter-Eloise Webb-Joshua McGuire-Matthew Steer-Mimi Ndiweni-Laura Elsworthy-Ella Smith-Ann Davies-Gerard Horan-Katie West-Daniel Tuite-Anjana Vasan-Stuart Neal-Tomiwa Edun-Joseph Kloska-Andy Apollo-Craig Mather-Jonny Owen-Last-Nari Blair-Mangat-Michael Jenn-Josh O'Connor-Elina Alminas-Janet Dawe-Robert J. Fraser-Alex Gillison-Rajesh Kalhan-Joe Kennard-Jo��o Costa Menezes-Gino Picciano-Julian Seager-Sarah Sharman-Zizi Strallen-Tom Swacha,magic-prince-fairy tale-kingdom-royalty-orphan-lost shoe-evil stepmother-based on fairy tale-retelling-live action and animation-live action remake,/ryKwNlAfDXu0do6SX9h4G9Si1kG.jpg,/q7vmCCmyiHnuKGMzHZlr0fD44b9.jpg,102651-11224-321612-109445-224141-222935-262500-4523-62764-10020-8966-58595-12155-286565-216015-38757-157350-50620-150540-18239-131631\r\n190859,American Sniper,War-Action,en,U.S. Navy SEAL Chris Kyle takes his sole mission���protect his comrades���to heart and becomes one of the most lethal snipers in American history. His pinpoint accuracy not only saves countless lives but also makes him a prime target of insurgents. Despite grave danger and his struggle to be a good husband and father to his family back in the States Kyle serves four tours of duty in Iraq. However when he finally returns home he finds that he cannot leave the war behind.,90.64,Village Roadshow Pictures-Malpaso Productions-Warner Bros. Pictures-Mad Chance-RatPac Entertainment-22 & Indiana Pictures,12/25/14,58800000,542307423,133,Released,The most lethal sniper in U.S. history.,7.434,11667,Bradley Cooper-Sienna Miller-Kyle Gallner-Cole Konis-Ben Reed-Elise Robertson-Keir O'Donnell-Luke Sunshine-Kevin Lacz-Troy Vincent-Brandon Salgado Telis-Chance Kelly-Marnette Patterson-Billy Miller-Leonard Roberts-Reynaldo Gallegos-Jake McDorman-Cory Hardrict-Eric Ladin-Brando Eaton-James Ryen-Luke Grimes-Sammy Sheik-Evan Gamble-Tim Griffin-Brian Hallisay-Navid Negahban-Fehd Benchemsi-Eric Close-Zack Duhame-Mido Hamada-Kathe Mazur-Sam Jaeger-Assaf Cohen-Fahim Fazli-Hector Bucio-Jonathan Groff-Melissa Hayden-Pamela Denise Weaver-James D. Dever-Owain Yeoman-Greg Duke-Max Charles-Robert Clotworthy-Anthony Jennings-Vincent Selhorst-Jones-Emerson Brooks-E.R.", + "embedding" : [ -0.012990256, -0.013024694, -0.00785201, -0.030306004, -0.0053138826, 0.04342024, -0.008726751, -0.0068877283, -0.017935645, -0.035485577, 0.026076939, 0.031573348, 0.0030409321, -0.0017856435, 0.013231326, 0.019230537, 0.013410407, -0.014298924, 0.021723894, -0.03650496, -0.009897665, 0.013933875, -0.006743086, 0.017839216, -2.1717868E-4, 0.0047525326, 0.016475447, -0.012680308, -0.0078037963, -0.025002453, 0.005861457, -0.010917049, -0.014932595, -0.027661117, -0.020842265, 0.008843843, 0.005224342, -0.035210066, 0.0066845403, -0.0015988139, 0.013300204, 0.0218892, -0.010765519, -0.010441796, -0.010111185, -0.0063298224, -0.010145624, -0.009587718, -0.003932893, 0.02186165, 0.023087665, 0.0109446, -0.02431368, -0.011144345, -7.1675424E-4, -3.5945332E-4, -0.0068429583, -0.0056479373, 0.017729012, -0.0044494723, 0.013189999, -0.009877003, -0.03711108, 0.004738757, -0.005351765, -1.1913617E-4, -0.022577973, -0.0196438, -0.023142766, 0.0032010716, 0.01949227, 0.015772898, 0.015648918, 0.0066845403, 0.010531337, -0.020773388, -0.019533597, 0.011943321, -0.0044391407, 0.009656595, 0.026724385, -0.017274423, -0.030306004, 0.008561446, 0.015869327, -3.7043064E-4, -0.01267342, 0.026311122, -0.028033054, 0.0028084712, 0.020112166, 0.03587129, 0.004690543, 0.0066604335, -0.004284167, 0.025415717, -0.0046698796, 0.029975394, -0.018514214, -0.03942536, -0.009828788, -0.014670861, -0.005950997, -0.012714746, -0.0046044462, -0.0054791877, -0.0092915455, -0.0124047985, 0.025718778, 0.02537439, 0.0015161611, -0.010827509, 0.016075958, -0.031903956, 0.006915279, -0.017536156, 0.025236636, -0.04038964, 0.0077900207, -0.029837638, 0.03567843, 0.02577388, 8.338456E-4, -0.043998808, 0.03744169, 0.046616144, 0.006309159, -0.0115300575, 0.006646658, 0.0014033746, 0.032537628, 0.002104201, 0.012873164, 0.0046870993, -0.01646167, 0.04584472, -0.02761979, 0.010379806, -0.02786775, -0.017963195, 0.017673912, 0.029424375, -0.022385117, -0.0134379575, -0.012687195, 0.0011072024, 0.02140706, -0.004184295, 0.0036298328, 0.035237618, 0.010111185, 0.009952768, 0.011681587, 0.00852012, 0.016392794, -0.0077762455, -0.009505065, -0.008954047, -0.00663977, -0.025415717, -0.0058339057, -0.014808616, -2.9832474E-4, -0.0029582793, 0.008843843, 0.024644291, 0.011419853, -0.010620877, 0.0040706475, -0.0017555098, 0.010228276, 0.025085106, -0.027178977, 0.025567247, 0.0010787904, 0.0010245496, -5.002213E-4, -0.0074594095, -0.02274328, -0.016020857, -0.010400469, 0.011426741, 0.032702934, 0.039976373, -0.012542553, 0.01673718, 0.015635144, -0.02817081, -0.0018441892, -0.005858013, 8.893779E-4, 0.007404308, -0.00824461, -0.02219226, -0.6330098, -0.019698903, -0.009036699, 0.013286428, 0.010159399, 0.024065722, 0.0076178275, 0.0057684723, -0.011185671, 0.0049970467, -0.03942536, 0.0188586, 0.022536647, -0.018335132, -0.03413558, -0.027054997, 0.007748694, -0.003473137, -0.0125632165, 0.0046526603, -0.019450944, 4.920421E-4, 0.014436679, -0.003626389, 0.006353929, -5.881474E-5, -0.008265274, -0.030994777, 0.0034335325, 0.008072417, -0.008747415, 0.024630517, 0.011592046, 0.012184392, 0.039700866, -0.010393582, -0.017288199, 0.054798767, 0.032730486, 0.02771622, -0.030994777, 0.0018941252, 0.0036229452, -0.01779789, -0.012528778, 0.003371543, -0.0035643994, -0.0037228172, -0.01139919, -0.00827905, 0.017908094, -0.020249922, -0.02577388, -0.017412176, -0.014863717, 0.009594605, 0.018624417, -0.032179467, 0.015511164, -0.0050349296, -0.035458025, 0.013864997, -0.0041774074, -0.0025983956, -0.012632093, 0.036670264, -0.0093741985, -0.0017055738, -0.0024985233, -0.021007571, 0.016626976, 0.012921378, -0.016034631, -0.00821706, 0.0046010027, 0.007190788, 0.025994286, 0.008168845, -0.016985139, 0.005468856, -0.001166609, -0.015745347, 0.0062058433, 0.0054447493, 0.019960636, 0.002054265, -0.020208595, 0.020029513, 0.021572364, 0.0034421422, 0.023941744, 0.0029324503, 0.0046457727, 0.005527402, -0.014133618, -0.012990256, -0.009415525, -0.008699201, 0.015883101, -0.06430383, -0.017122893, -0.0014886103, 0.034907006, -0.015924428, 0.010627765, 0.03286824, -0.0044494723, -0.014684637, 0.033088647, -0.02746826, -0.0075902767, 0.006591556, -0.015290757, -0.0028790704, 0.011054804, -0.02274328, 0.019244313, 0.01570402, 0.0045011304, -0.004790415, 0.0020955913, -0.0059234463, 0.0152769815, -0.025429493, -0.0053345454, 0.027054997, 0.004483911, -0.012466788, 0.006515791, 0.0073147677, 0.008981598, -0.033749867, 0.029920291, -0.033446807, 0.01956115, -0.0027085992, 0.023514705, 0.007424971, 0.0088162925, 0.012831838, -0.0104073575, -0.011454293, -0.025608573, -0.01956115, -0.009601493, -0.0019578368, -0.027826423, 0.0061782924, 6.440026E-4, -0.009959655, -0.0018717402, 0.005351765, 0.006243726, 0.0043943706, 0.004404702, 0.008148182, -0.026311122, -0.010042308, 0.013479284, -0.021999404, 0.0173433, 0.011929546, -0.015621368, -0.002558791, 0.029314172, -0.01124766, 0.0017589537, 0.0074111954, 0.0043289373, -0.014891269, 0.017398402, -0.0049832715, 0.0071356865, 0.015442287, -0.01106858, 0.012108627, -0.024024397, 0.03140804, 0.022605523, -0.0023159985, 0.0046733236, -0.011054804, -0.0301407, -0.01109613, 0.015759122, 0.039921273, 3.03921E-4, -0.0035179073, -0.015662694, 8.0242037E-4, -0.011350976, -0.025567247, -0.016379017, 0.010193838, 9.4964553E-4, 0.02244022, 0.011729801, 0.0071081356, 0.0047973027, -0.003495522, 0.04102331, 0.028404992, 0.013417295, -0.0027533693, 0.005372428, -0.023941744, 0.00406376, -0.013988976, 0.0241346, -0.020759612, 0.02989274, -0.0055377334, -0.010834397, -0.0050280415, 9.444797E-4, 0.030609064, -4.9290305E-4, 0.010545112, -0.010138736, 3.5536374E-4, 0.0073974202, -0.031656, 0.013561937, 0.011240773, -0.028597848, 0.002381432, 0.019850433, -0.007053034, -1.1579993E-4, -0.0019285639, -0.012411687, 0.0015376854, 0.0059441095, 0.0014911932, 0.0022522872, -0.011585159, 0.022123383, -0.008382365, 0.037551895, -0.011833117, -0.0147948405, 2.069547E-4, 0.0077418066, -0.0068257386, -0.00177359, -0.027027447, 0.010779295, 0.011895107, -0.0075902767, 0.037000876, -0.02143461, 0.032537628, 0.020663185, 0.023211645, 0.015662694, -0.024602966, 3.1123922E-4, 0.00700482, 0.025236636, 0.017288199, 0.012694083, -0.0346866, 0.023018789, -0.003929449, 0.006691428, -0.002254009, -0.041794736, -5.286331E-4, -0.0056686006, -0.042152897, -0.025760103, -0.010930825, 0.008554558, 0.017453503, -0.004029321, 0.002381432, 0.011357864, 0.0061989557, 0.004614778, 0.008898945, -0.01252189, -0.033143748, 0.017784115, 0.015745347, -0.022095833, -0.017136669, -0.0073836446, -0.007838235, -0.03986617, -0.0043805954, 0.0043943706, 0.026807038, -0.04278657, 0.0058339057, 0.004291055, 3.7258305E-4, 0.033446807, -0.021310631, 0.012397911, 0.01585555, 0.00278953, -0.013024694, 0.0031356383, -0.0015781508, 0.023790214, -0.010551999, -0.0045252377, -0.0066776527, 0.008189509, -8.7947684E-4, 0.0038605717, -0.011888219, -0.05154776, 0.0055101826, -0.012411687, -0.006446914, -0.0019509491, 0.0023056671, 0.007686705, -0.010779295, -0.028818255, -0.026076939, -0.016930036, 0.001444701, 0.086785376, 0.032785587, 5.501573E-4, 0.0012923101, -0.021668794, -0.015896877, 0.006415919, -3.5945332E-4, -0.0074111954, -0.012997143, 0.025939185, -2.7873775E-4, -0.0011941598, 0.003497244, 0.01764636, -0.012942041, -0.004356488, -0.0027757545, -0.0030478197, -0.008540783, -0.005096919, -0.009594605, 0.019960636, 0.025085106, 0.0017210711, -0.021682568, 0.024244804, 0.002383154, 0.009105577, 0.013665253, -0.0044219214, -0.0018476332, 0.0023521592, -1.7851593E-5, 7.817572E-4, 0.0050762556, 0.03259273, -0.0010021644, 0.028790705, -0.017481055, 0.0063194907, -0.021200428, 0.004256616, -0.0035402924, 0.028515195, -0.03526517, -0.008774966, 0.036394756, 0.022412667, -0.025457043, 0.029038662, 0.008981598, -0.017122893, -0.009250219, 0.0055859475, 0.0049385014, 0.008499457, -1.6186162E-4, -0.018266255, 0.012273932, 5.734034E-4, -0.025153983, 0.0064538014, -0.009635932, -0.005248449, -0.013424182, -0.017301973, -0.010558887, -0.019354517, -0.010744856, 0.012184392, -0.011240773, -0.0134379575, -0.0056169424, 0.022178486, -0.0052897753, 0.026448878, -0.015332083, 0.003523073, 0.016930036, -0.033639666, -0.012990256, 0.013313979, -0.0301407, 0.0014748349, 0.0064296946, -0.009415525, 0.0020973133, -0.021613691, -0.0022109607, 0.003044376, 5.699595E-4, -0.013534386, -0.009050475, 0.029011112, 0.013940762, 0.0010667369, 0.022936136, 0.020318799, 2.1093668E-4, 0.012122402, -0.016819833, -0.020511655, -0.035843737, -0.007810684, -0.006698316, -0.0023435496, 0.0151116755, -0.017522382, -0.025085106, -0.020084616, -0.02249532, 0.010531337, -0.010613989, 0.018872375, 0.0053620967, 0.018872375, 0.0165581, -0.013892548, 0.014422903, -0.0037469242, -0.013982088, 0.0066810963, 0.006164517, -0.0083341515, 0.031573348, -0.019092783, -0.019519823, 0.002612171, 0.024961127, 0.0072183395, 0.0037400364, -0.013217551, -0.0073147677, -0.0150979, -0.02383154, 0.006092196, 0.0051038065, -0.012211942, 0.016723404, -0.020098392, 0.011385415, 0.011750464, 0.031573348, -0.004459804, -0.0301407, 0.011626486, -0.0067017595, 0.0039397804, 0.02249532, -0.008389253, 2.2643407E-4, -0.031545796, -0.022784606, -0.0077142557, -0.01688871, -0.031876408, -0.0014429791, 0.037882507, 0.019120334, 0.025360616, -0.011874444, 0.024010621, 0.003423201, 0.004848961, 0.031656, -0.01643412, -0.0065605612, -0.030361107, 0.01931319, 0.03617435, 0.015235655, -0.005406867, 8.4503816E-4, 0.0037882505, 0.029479478, -0.0011821063, -0.0039879945, -0.009188229, -0.015497388, -0.021489711, 0.0033560456, -0.025181534, -1.9304473E-5, -0.02113155, -0.021668794, 0.031160083, -0.00824461, 0.008843843, -0.0173433, 0.026448878, -0.0028721828, 0.0037434804, -0.025594799, 0.02279838, -0.019960636, -0.00827905, -0.015745347, 0.014491781, -0.0135826, -0.024795823, 0.015607593, -0.014684637, -0.026751937, -0.022688176, 0.025484595, -0.019478496, -0.0054378617, 0.013238214, -0.013403519, -0.011509394, -0.014312699, -0.013837446, -0.017549932, 0.0010434908, -0.0016711351, -2.7507864E-4, -0.0139958635, -0.034493744, -0.047194716, 0.026793264, -0.0015867604, 0.03198661, 0.025925409, 0.045321252, 0.026435101, 0.0044253655, -0.022715729, 0.0030994778, 0.0059131146, -0.0011115072, 0.013665253, 0.031600896, -0.021462161, 0.0012320424, -0.006867065, -0.0023039451, -0.035402924, -0.02531929, 0.031022329, 0.012177504, 0.016103508, -0.037248835, 0.004074091, -0.041161064, -0.0032751148, 0.001775312, 0.013968313, 0.0087336395, -0.02865295, -0.015580041, 0.01388566, -0.009153791, 0.0065295664, -0.0034524738, -0.030912125, 0.0021885757, -0.027302954, 0.012652757, -0.015552491, -0.01913411, 0.04405391, -0.024107048, 0.009973431, 0.0010357421, 0.010441796, 0.009250219, -0.0037159293, 0.008602773, 0.03471415, -0.001422316, 0.024671843, 0.00860966, 0.0032992219, 0.009615269, 0.010434909, -0.028625399, -0.022233587, -0.008554558, -0.007652266, 0.01625504, 0.0047215377, -8.738805E-4, 2.85195E-4, -0.02489225, -0.018004522, -0.00618518, -0.010090522, 0.0063814805, -0.037055977, 0.013265764, -0.0077280314, -0.0043771514, -0.0037365926, 0.003998326, -0.0019509491, 0.001494637, 0.007982877, -0.020401452, 0.004487355, -0.0165581, -0.0026001174, -0.04193249, -0.0188586, -0.010848172, -0.008898945, 0.010290266, -0.008313488, -0.008134407, -0.013107347, -0.0102489395, -0.0013715189, 0.021214204, -0.0051554646, 0.008471906, 0.011412966, -0.0140785165, -0.015153002, -5.8158254E-4, 0.030967226, -0.009505065, -0.01507035, 0.008196397, 0.01161271, 0.016502997, -0.037579447, 0.023101442, 7.843401E-4, -0.0027705887, -0.019864209, 0.006526123, 0.015800448, 0.018472888, -0.010662204, -0.010207613, 6.650963E-4, -0.012935154, 0.030058047, 0.0029290065, 0.0013327755, 0.022398893, 0.011757352, 0.038350873, 0.026600407, -0.0018527989, -0.026931018, -0.0022247361, -0.008726751, -0.03628455, -0.0044976864, -0.010049196, 0.00800354, 0.022426443, -0.0025674007, -0.0377172, 0.0029772206, -0.034493744, -0.031215185, -0.015938204, 0.014174945, 0.022729503, 0.054220196, 0.008588998, 0.004993603, -0.021090224, -0.007989765, -0.016930036, -0.019506047, 0.010710417, 0.013871885, 0.03857128, 0.021682568, -0.029975394, -0.010813734, 0.017150443, 0.013231326, 0.010207613, 0.019079007, -0.029286621, -0.019905536, 0.0041980706, 0.0033422702, -4.6363022E-4, -0.015029023, 0.022385117, -0.029947843, -0.008802516, 0.008933384, 0.02456164, -0.0014059575, 0.0032079595, 0.019877983, -0.012983368, -0.0083066, -0.011350976, -0.0081757335, -0.0058958954, -0.0075902767, 0.023266746, 9.1865077E-4, 0.0057168147, 0.044494726, 0.020415226, -0.01704024, 0.012342809, -0.01706779, -0.0030977558, -0.006085308, -0.0045321253, 0.005854569, 0.05399979, -0.024602966, 0.01686116, -0.0054137544, -0.016089734, -0.010207613, 0.0047353134, 0.007583389, 0.034190685, 0.0032010716, -0.056479372, -0.0031993499, -0.007982877, -0.0018235261, -0.010441796, 0.008230835, -0.014657086, 8.239445E-4, -0.008657875, -0.008389253, -0.027964177, -0.047304917, -0.011702251, -0.01418872, -0.016998913, 0.016199937, 0.17930134, -0.0060370937, -0.0011175339, 0.041436575, 0.005131358, 0.013258877, 0.030609064, 0.037055977, -0.0045286813, 0.020263696, 0.014546882, 0.0065054595, 0.0026001174, 0.0021248641, 0.010613989, -0.017481055, -0.0128800515, -0.041794736, -0.011984647, -0.01648922, -0.00936731, 0.016516773, 7.554977E-4, -0.028900908, -0.0046457727, 0.020704512, -0.011950209, 0.014326475, 0.02186165, -0.0036883785, -0.020125942, -0.001672857, 0.013258877, -0.014973922, -0.016682077, 0.0070599215, -0.019120334, 0.0061197467, 0.017122893, 0.0115300575, -0.0033043877, -2.1298147E-4, -0.00633671, -0.0130384695, 0.005751253, 0.019023906, -0.018899927, -0.012225717, -0.020291248, 0.019175436, -0.039755967, 0.005021154, 0.0068257386, 0.011027253, -8.1490434E-4, -4.3737073E-4, 0.019519823, 0.0023504372, -0.008079305, 0.0059751044, 0.010221389, 0.031573348, -0.026173368, 0.01643412, 3.5514848E-4, 0.02865295, -0.02204073, -0.015965754, 0.0010236886, -0.016530547, -0.010345368, -0.02837744, -0.022701953, 0.0027085992, -0.006508903, -0.021751447, 0.0028859582, 0.0030340443, 0.008774966, 0.019574923, -0.025153983, -0.018775947, 0.0062678326, -0.0046561044, -0.010607102, -0.018514214, 0.010441796, -0.0119226575, -0.029121315, -0.010180063, -0.0015945091, -0.024107048, -0.012012199, 0.011929546, -0.0026982676, -0.0058821198, 0.045624312, 0.0377723, -0.02294991, -0.022082057, -0.040362086, 0.041601878, 0.015552491, 0.0035816187, -0.018348908, -0.022371342, -7.7486946E-4, 0.016144834, 0.032344773, -0.013451734, -0.009498177, -0.040940657, 0.004335825, -0.0056961514, -0.015290757, 0.023156542, 0.012756073, -0.02731673, 0.036367204, 0.0030650392, -0.008561446, -0.014016527, 0.024906026, 0.018500438, 0.004229065, -0.034190685, -0.029093765, -0.0045286813, -0.013513723, -0.026228469, 0.004091311, -0.007831347, 0.007893337, -0.0021231424, -0.002663829, 0.0017159053, 0.009174454, 0.0044976864, 0.009973431, -0.007328543, 0.011826229, -0.028542746, 0.010448684, 0.010090522, 0.0050762556, -0.0043254932, 0.018927477, -0.0013542996, -0.017701462, -0.023363175, -0.019822882, -0.0052346736, 0.006157629, 0.011123681, 0.040610045, 0.0032423981, -0.023252971, -0.044219214, -0.01903768, 0.043668196, -0.040830452, 0.030967226, 0.028033054, -0.0068119634, -0.023087665, -0.0043254932, -0.17676666, 0.034245785, 6.83607E-4, -0.031903956, 0.013348417, 0.01749483, 0.026159592, 0.0073354305, 0.009160679, -0.026200918, 0.027041221, -0.00836859, -0.028625399, -0.013892548, 0.0062988275, 0.010717305, 2.2966269E-4, 0.050583478, 0.041767184, 0.0027843642, 0.039755967, -0.0148774935, -0.006867065, 0.0039742193, -3.47346E-5, -0.016268814, 0.020015739, -0.005548065, -0.0023934855, -0.0063918117, -0.031876408, -0.010448684, 0.011226997, 0.0033612114, -0.019781556, 3.6892394E-4, -0.018183602, -0.0073905326, -0.009098689, 0.004738757, 0.039673313, 0.01940962, 0.017866768, 0.019877983, 0.01903768, 0.010042308, 0.028818255, -0.027068771, 0.020759612, -0.020511655, -0.007659154, -0.046891656, 0.031876408, -0.007886449, -0.0029117872, 0.02143461, 0.019326966, 0.014781065, 5.96219E-4, 0.019175436, -0.030912125, -0.0056479373, 0.0058373497, -0.0075076236, 0.0040396526, -0.018045848, -0.016172387, 0.016020857, -0.033639666, 5.0883094E-4, -0.027110098, 0.013017806, 0.009911441, 0.016530547, 0.020594308, -0.017591259, -0.019547373, 0.0077762455, -0.002508855, 0.015208104, -0.015001472, 0.026090715, 0.007328543, 0.0017787558, 0.017274423, -0.02004329, 0.0052622245, 0.008120632, 0.029121315, -0.010173175, 0.01327954, -0.014464229, -0.023927968, 5.303551E-4, 0.002202351, -0.0019130665, 0.008210172, 0.0033749868, 0.0073078796, 4.8084953E-4, -0.0014670861, -0.016874934, -0.018927477, 0.0155938165, 0.012859389, -0.0032423981, -8.48482E-4, 0.016943812, 0.010138736, -0.001418011, -0.007886449, 0.010579551, 0.024506537, 0.0014705299, -0.020497879, 0.0148774935, -0.0033371043, -0.028033054, -0.001267342, -0.009897665, 0.049068175, -0.012129289, 0.007838235, -0.012446125, -0.005675488, -0.0088162925, -0.09753023, 0.0030977558, 0.034052927, 0.03256518, -0.0332815, 0.040003926, -0.003981107, 0.013720355, -0.0026156148, 0.025098883, 0.008037979, -0.027633566, 0.015497388, 0.0013861554, 0.0131211225, 0.008836956, 0.0038674595, -0.033694766, -0.016186161, 0.03768965, -0.004990159, 0.0028515195, 0.0034817467, -0.029534578, -0.015015247, 0.0063332664, -0.015717795, 0.023445828, 0.00812752, 0.011798679, 0.020787165, -0.012845613, 0.0059441095, -0.030388657, -0.031132532, -0.02244022, -0.006663877, -0.026614182, 6.7112304E-4, -0.04047229, 0.0055411775, 0.019905536, 0.0027275404, -0.01913411, -0.02007084, 0.0061782924, -0.026751937, 0.03532027, 0.0013250267, -0.022095833, -0.0021816879, -0.027399383, -0.027991727, 0.008403028, 9.4361877E-4, 0.042951874, 0.030719269, 0.0052450052, -0.01364459, -0.021462161, -0.0043978146, 0.011757352, -0.008892057, 0.004618222, -1.3775457E-4, 0.011013477, -0.007500736, -0.015332083, -0.0010865391, -0.0020697624, -0.034190685, 0.03402538, -0.043998808, -0.007562726, -0.020484105, 0.009394862, -0.021641243, 0.0045286813, 0.027550913, -0.02865295, 0.001395626, -0.026614182, 0.012921378, -0.006973825, 0.0060818642, 0.018899927, 0.011509394, 0.015332083, -0.01719177, -0.04697431, -0.0060956394, 0.021489711, -0.006794744, -0.00228156, 0.0030977558, 0.031270288, -0.004738757, 0.0075213993, 0.0023504372, 0.008768078, -0.004311718, 0.013486172, -0.0724038, 0.027537137, -0.02113155, 0.0069807125, -0.022302464, 0.0019561148, -0.011502506, 0.003953556, -7.701341E-4, 0.026063165, -0.0046044462, 0.0016418622, -0.003802026, 0.0047318693, 0.0018855156, 0.004025877, -0.008788741, 0.0038089138, 0.004559676, 0.014698412, -0.01701269, 0.0071632373, 0.010242052, -0.0015686802, -0.0051589087, 0.027578464, 0.004311718, 0.019395843, -0.025429493, -0.0074662976, 0.024120824, -0.011674699, -0.014491781, -0.0061231903, -0.008072417, -0.042428408, 0.0031304725, 0.0015919262, 0.017026464, -4.4985476E-4, -0.008871394, -0.00821706, -0.017439729, -0.0037159293, -0.012384135, 0.0043151616, -7.0340926E-4, 0.024107048, 0.009091801, 0.01956115, 0.02128308, 0.0074318587, -0.012046637, -0.021379508, 0.005145133, -0.017660135, 0.059509974, 0.010366031, 0.0062678326, -0.031793755, 0.018500438, -0.002455475, 0.0035816187, -0.023748888, 0.005999211, -8.3815044E-4, 0.013169336, -0.0017494829, 0.010724193, -0.01628259, -0.010021645, 0.001243235, 0.004573452, 0.034879457, 0.0021989073, 0.016682077, 0.006646658, 0.009443075, -0.017577482, 0.0064779087, 0.0064055873, -0.00912624, -0.011412966, 0.014767289, -0.005303551, 0.003016825, -2.2664931E-4, 0.023432052, 0.008926496, 0.01382367, -0.003774475, 0.0049040625, 0.017632585, 5.95358E-4, 0.00979435, 0.016750956, -0.034548845, -0.022853483, -4.713789E-4, 0.023762662, -0.0011347532, -0.0043737073, -0.0027929738, -0.017233096, -0.024396334, -5.699595E-4, -0.020429002, -0.022577973, 0.007576501, 0.009484402, 0.035788637, 0.011233885, -0.009539504, 0.0135826, -0.048985522, 0.016172387, -8.639794E-4, -0.0075558377, -0.0152769815, 0.04107841, 0.015125452, 0.010062971, 0.030609064, -0.0147948405, 0.049508993, -0.002663829, 0.025098883, -0.01673718, 0.009422412, 0.007528287, -0.01676473, 0.0017124615, -0.014085405, 0.021489711, -0.0045665638, 0.015800448, 0.012756073, 0.046946757, -0.0030495417, 0.07207319, 0.01570402, 0.0030581513, 0.0036436082, -0.01779789, 0.006495128, 0.029589681, 0.027178977, -0.015001472, -0.020856041, 0.0022161265, 0.004060316, 0.011165008, -0.044604927, 0.0030960338, -0.005630718, -0.0032837244, 0.024175927, 0.0027447597, -0.014119843, -0.004990159, -0.0032303445, 0.017026464, 0.0055411775, -1.9178019E-4, -0.022674402, 0.03807536, 0.002763701, -0.0022918915, -0.018762171, 0.009284657, -0.022550423, -0.0030495417, -0.01018695, 0.0249198, 0.003524795, -0.012845613, -0.0018424673, 0.01779789, 0.017301973, -0.013458621, -0.009815013, -0.0218892, -0.033749867, 0.0166132, -0.009071138, -0.021448387, -0.02580143, -0.008678538 ], + "id" : "ccbe2892-db3a-45e8-a92a-51b844ac152f", + "metadata" : { + "source" : "movies.csv" + } + }, + "38ebf7ff-c9e3-43c1-a4b0-d46b527015b0" : { + "text" : "259,Blue Sky Studios-20th Century Fox Animation-20th Century Fox,6/26/09,90000000,886686817,94,Released,You Won't Believe Your Ice!,6.735,7646,Ray Romano-John Leguizamo-Denis Leary-Queen Latifah-Simon Pegg-Seann William Scott-Josh Peck-Chris Wedge-Karen Disher-Kristen Wiig-Eunice Cho-Harrison Fahn-Maile Flanagan-Jason Fricchione-Bill Hader-Kelly Keaton-Joey King-Lucas Leguizamo-Jane Lynch-Regan Mizrahi-Clea Lewis-Allegra Leguizamo-Carlos Saldanha-Claudia Besso-Bea Miller-Christian Pikes-Avery Christopher Plum-Joe Romano-Manoela Scarpa Saldanha-Sofia Scarpa Saldanha-Cindy Slattery-Matt Adler-Steve Alterman-Anthony Amorim-Holly Dorff-Nicole Ehinger-David H. Kramer-Selenis Leyva-Matt McCarthy-David McCharen-Tim Nordquist-Devika Parikh-Alexandra Pisacane-Jake Schwencke-Amanda Scott-Johnathan Tchaikovsky-Pamala Tyson-June Christopher-Frank Welker-G��rard Lanvin-�lie Semoun-Vincent Cassel-Christophe Dechavanne,ice age-bridge-insanity-sequel-prehistory-jungle-dinosaur-creature-birth-duringcreditsstinger,/cXOLaxcNjNAYmEx1trZxOTKhK3Q.jpg,/gkxSIlZPEwGPimQ8TEE8C52cOSO.jpg,950-57800-425-278154-10527-953-810-9502-80321-10192-809-46195-49444-13053-808-38757-920-49013-22794-2062-12\r\n206647,Spectre,Action-Adventure-Thriller,en,A cryptic message from Bond��s past sends him on a trail to uncover a sinister organization. While M battles political forces to keep the secret service alive Bond peels back the layers of deceit to reveal the terrible truth behind SPECTRE.,31.663,Columbia Pictures-Metro-Goldwyn-Mayer-Eon Productions,10/26/15,245000000,880674609,148,Released,A Plan No One Escapes,6.", + "embedding" : [ -1.1172773E-5, -0.027817663, -0.009429035, -0.046380654, -0.008362736, 0.017624112, -0.0032609303, -0.004905646, -0.015893891, -0.02921257, 0.038655017, 0.05633278, 0.016805947, -0.007122073, 0.00408748, 0.0051906635, 0.0059752986, -0.020762654, 0.013244909, -0.023337865, -0.015303738, -0.0034973267, -0.020816304, 0.0039500007, 0.020883366, -0.007933533, 0.022747712, -0.017315624, -0.009717405, -0.0056198654, 0.017033959, -0.0026808367, -0.011722583, 0.008416385, -0.007571394, -0.008342616, 0.01160187, -0.019729886, 0.029239396, -0.011635401, 0.01084406, 0.005468974, -0.009402209, 0.0021091262, 6.2536093E-4, 0.0072830236, 0.015223263, -0.0013085635, -0.008107897, 0.01651087, 0.0152769135, 0.021902721, -0.019475047, -0.025591178, -0.012426743, -0.007363499, -0.017355861, -0.006059127, 0.006320672, -0.003856113, 0.009710698, -0.017288798, -0.020883366, -0.022063673, -0.020266388, -0.010374621, -0.011863415, -0.02141987, -4.7363125E-4, 0.0053348485, -9.5229223E-4, 0.006927591, 0.027844489, -0.00250815, 0.023753656, -0.027495762, -0.03004415, -0.0022415752, -0.005532684, 0.010019187, 0.010877592, -0.0120847225, -0.0073031425, 0.008074366, 0.02053464, 0.02257335, -0.027160447, 0.009496097, -0.034845848, 0.021674708, 0.01661817, 0.03385332, 0.0027395168, 0.0059484732, -0.007215961, 0.009985656, -0.018576404, 0.027522586, -0.027079972, -0.043859094, -0.002437734, -0.0053449078, -0.010079544, -0.005727166, -0.013560105, 0.005230901, -0.0043188464, 0.0037052215, 0.027468937, 0.0058612917, -0.0054555614, 5.406941E-4, 0.024987612, -0.037394237, -0.0077524637, -0.009254671, 0.011715877, -0.0057238126, 4.8620554E-4, 0.007095248, 0.023954844, 0.021862485, -4.162087E-4, -0.028300516, 0.04195451, 0.006059127, 0.008322498, -0.025255863, 0.0053415545, -0.0015776531, 0.02482666, -0.0055930405, 0.021661295, 0.014297796, -0.041686255, 0.044395596, -0.011273262, -8.793614E-4, -0.0077725826, -0.003856113, 0.017074198, 0.042973865, -0.026221568, -0.012037778, -0.012145079, 0.016269444, -0.0031083624, -0.008382854, 0.024464522, -0.023364691, 0.03685773, 0.016148731, 0.014378271, 0.03428252, 0.014981837, 0.021486932, -0.00513366, -0.005113541, -0.015867066, -0.023928018, -0.008711462, -0.0018257856, -0.0059719454, -0.012574282, 0.008034128, 0.026986085, 0.013278441, -0.031787783, -0.0113135, 0.0028920847, -0.014673348, 0.044020046, -0.012145079, 0.019515285, 0.011487863, 0.023297628, 4.296213E-4, -0.023860956, -0.009670461, -0.02805909, 0.02378048, 0.013211378, 0.037421063, 0.018791005, -0.0025500644, 0.008885825, 0.026114268, -0.030983029, 0.011903653, -0.005059891, -0.007913414, 0.007973771, 0.0013328738, -0.0020420633, -0.6403696, -0.0040304763, -0.0073031425, -0.018938543, 0.010502039, 0.02545705, -0.007410443, 0.0048352303, -0.042034984, -0.016416982, -0.02341834, 0.013949069, 0.016524281, -0.012131667, -0.010904416, -0.0023522289, 0.002933999, -0.02805909, 1.449186E-4, -0.0048654084, -0.03726011, 0.021567408, -0.001956558, 0.0068538217, 0.028863844, -7.9427543E-4, -0.002179542, -0.02221121, 0.0047748736, -0.00658557, -0.005636631, 0.016551107, 0.011065368, 0.011487863, 0.033638716, 0.013325385, -0.010528865, 0.045254, 0.03157318, 0.03908422, -0.036535833, -0.009576573, 0.014042958, 0.0043691434, -7.041597E-4, 0.02199661, 0.018630056, 0.005750638, 0.007383618, -0.011367151, -9.430711E-4, -0.010046013, -7.0583634E-4, 0.0069007655, -0.013466217, 0.013660699, 0.016644996, -0.022278273, 0.018308153, 1.2270403E-4, -0.011279969, 0.011628696, -0.0014192172, 0.011856709, -0.014887949, 0.014190496, -0.010401445, -0.024504758, 0.01719491, -0.034362994, 0.01777165, 0.0068940595, -0.023015965, -0.007101954, 0.0016061548, -0.0057975817, 0.032056034, -0.0061999587, -0.006441385, 0.028756542, -0.0028266984, -0.010649578, 0.002343846, 0.0033162571, 0.026530057, -0.004409381, -0.02152717, 0.004167955, 0.011635401, 0.006464857, 0.014083195, 0.016752295, 0.019340921, -0.0013882007, 0.008315791, -0.0087517, -0.012198729, 0.002957471, 0.032753486, -0.06336097, -0.018106965, -0.007497625, 0.017342448, -0.003996945, 0.028917493, 0.015478102, -0.0038661724, -0.0014192172, 0.0353287, -0.01457946, 0.006441385, -0.015330563, -0.015652465, -0.022117322, -0.011642108, -0.032431588, 0.022653826, 4.4219557E-4, 0.004882174, 0.0017939308, -0.0035677426, 0.0033648778, 0.0043859095, -0.011662227, 0.007169017, 0.023539055, -0.004070714, -5.025521E-4, 0.0083023785, 0.0030111212, 0.007148898, 0.013908831, 0.020413926, -0.020709002, 0.017288798, 0.008771819, 0.032753486, -0.0019146439, 0.016712058, -0.011823177, -0.03302174, -0.007175723, -0.01411002, -0.004050595, -0.021245506, -0.01620238, -0.041927684, 0.0022600174, -7.506846E-4, -0.009710698, -0.004902293, 0.020252977, 2.319955E-4, 0.0150489, -2.2803983E-5, -0.0037655781, -0.021004079, -0.030607477, 0.007953652, -0.026919022, 0.003277696, 0.02105773, 0.007215961, -0.019327508, 0.018683705, -0.008436505, -0.011568339, 0.005985358, -0.009878355, -0.020615116, 0.010864179, -0.001306887, -0.007101954, 0.004617276, -0.0127888825, 0.03224381, -0.00815484, 0.020266388, 0.00437585, -0.014525809, 0.01026732, 0.015115962, -0.020883366, -0.0015357389, 0.03736741, 0.016390156, 0.03763566, 0.0018391982, -0.0059618857, -0.009938712, 0.0024477935, -0.0021929548, 0.0020521227, 0.010797116, -0.0038460535, 0.024773011, -0.0067096367, -0.008456623, 0.0075848065, 0.016162142, 0.051075052, 0.019716473, 0.002699279, 7.376912E-4, -0.0020772712, -0.038386766, 0.00542203, -0.018710531, 0.004875468, -0.01241333, 0.013338798, -0.00844321, -0.014405097, 0.0015617257, 0.01740951, 0.015370801, -0.022358749, 0.009945418, -0.009663754, 0.010837354, -0.008979714, -0.01026732, 0.023914607, -0.006505095, -0.026409343, 3.5983403E-4, 0.022975726, -5.7527337E-5, -0.002675807, 9.087014E-4, 0.006887353, 0.013761293, 0.0017972839, -5.838658E-4, 0.0088791195, -0.004117658, 0.048473015, -0.01499525, 0.0453613, -0.012312736, -0.005606453, 0.019407984, 0.032726664, -0.008597455, 0.0061496617, -0.009361971, 0.023297628, 0.0075311563, -0.017476574, 0.05853244, -0.032646187, 0.021674708, -0.017838713, 0.01447216, -2.1648721E-4, -0.002719398, 2.8208306E-4, 0.015330563, 0.026462995, 0.01178294, 0.026530057, -0.015223263, 0.014847712, 0.012292617, 0.0032223691, 0.0017838713, -0.0200652, -0.0032005736, -0.00943574, -0.02482666, -0.02408897, -0.0019682941, -0.002937352, 0.010381327, -2.6950878E-4, -0.0052811983, -0.012983365, 0.018106965, 0.0030362697, 0.021272331, -0.011662227, -0.032431588, 0.008275554, 0.0069745346, -0.013177847, -0.022908663, -0.014887949, -0.014512397, -0.026623946, 0.007906708, -0.0073031425, 0.027603062, -0.029963674, 0.013151022, -0.020145675, -0.017865539, 0.0075646876, -0.012024366, 0.013640581, 0.014673348, -0.009791174, 0.019676235, 0.009073601, -0.005214135, 0.028917493, -0.009361971, 0.012909596, -0.009502804, -0.010220376, -0.019770123, 0.008107897, 0.005536037, -0.04541495, 0.0303124, -0.02089678, -1.5895987E-4, -0.020574877, -0.020494401, 0.021232093, -0.0053382018, -0.021084554, -0.022331923, -0.02419627, 0.0010612693, 0.061644156, 0.04828524, 0.011239731, -0.0025299455, -0.0056902813, -0.0132918535, -0.0300978, -0.0038997037, -0.0074372683, -0.015867066, 0.0019079376, -0.01411002, 0.010113075, 0.00658557, -0.0031217749, -0.0035945678, 0.0023723477, 9.1456936E-4, -0.010106369, -0.0151562, -0.0302051, 7.7499484E-4, 0.02545705, 0.034979973, 0.013338798, -0.008322498, 0.0105892215, 0.019340921, -0.011306793, 0.011957304, -0.00700136, -0.005576275, 0.011863415, 0.006481623, 0.0040204166, -0.009663754, 0.019555522, 0.0016489074, 0.013499748, 0.014713585, -0.005445502, 0.005110188, -0.009174196, 0.0053650266, 0.009207727, -0.028407816, -0.017288798, 0.018053316, 0.04222276, -0.030178275, 0.03975485, -0.0020219444, -0.017101023, -0.008664518, 0.00904007, 0.013620461, -0.026275218, -0.022157561, -0.013332091, -0.018951956, 0.0011367151, -0.025524115, 0.021097967, -0.013620461, -0.010367914, -0.014767236, -0.0028300516, -0.004523388, -0.015075725, 0.009033363, -0.0023220505, -0.030634303, -0.02665077, -0.011018423, 0.023391517, 0.01272182, 0.0017025577, -0.007410443, -0.0055293306, 0.01688642, -0.017583875, -0.029534472, 0.014257559, -0.032377936, -0.017932601, 0.012051191, -0.008550512, 0.009717405, -0.0097978795, 0.0118969465, 0.009301615, 0.0033061977, -0.023941431, -0.015263501, 0.039567072, 0.010200257, 0.011514689, 0.032726664, 0.017101023, 0.004281962, -0.006176487, -0.016537694, -0.013244909, -0.015223263, -0.031170804, -0.021339394, -0.0033196101, 0.002793167, -0.039540246, -0.024531584, -0.026462995, -0.030580653, 0.006421266, -0.008557217, -0.0020957135, -0.00390641, 0.02744211, 0.019220209, -0.009864943, -0.0040103574, 0.021580819, -0.010931242, 0.020910192, 0.025846016, -0.016081667, 0.015183025, -0.002843464, -0.018039903, -0.0013286824, 0.037018683, 0.014297796, 0.016752295, -0.014539222, -0.010971479, -0.03463125, -0.022479462, 0.0040338296, 0.0025064733, -0.010381327, 0.0037454593, -0.0127017, 0.014150258, 0.01055569, 0.0010101339, 0.009321733, -0.024705948, 0.01687301, -0.0067062834, 2.7914904E-4, 0.028246865, -0.013251616, -0.006746521, -0.026771484, -0.009999068, 0.0032039268, -0.03594568, -0.026462995, -0.005898176, 0.034604423, 0.014230733, 0.0352214, -0.0041511892, 0.014941599, 0.013687524, -0.0012532367, 0.011608576, -0.012601106, -0.009771055, -0.021366218, 0.008429798, 0.014552635, 0.02174177, 0.012996777, 8.2319626E-4, -0.011085486, 0.030527001, 0.016752295, 0.013546692, 0.011427507, -0.017785063, -0.0033883497, 0.009703992, -0.02163447, -0.015652465, -0.023123264, -0.016913246, 0.018791005, 0.0070483037, -0.010978186, -0.0016899834, 0.039835323, 0.005063244, 0.018361803, -0.013647286, -0.008094484, -0.027267748, -0.016913246, -0.026798308, -0.0036046272, 0.0023891134, -0.015384214, 0.025322925, -2.8438834E-4, -0.003762225, 0.007926827, 0.019367747, -0.015759766, -0.014713585, 0.016215794, -0.010307558, -0.01510255, -0.037447885, -0.005391852, -0.03709916, -0.009569867, 3.7806673E-4, -0.021352807, 0.0031569828, -0.005629925, -0.03219016, 0.032163333, 0.006028949, 0.04509305, 0.006256962, 0.03886962, 0.03771614, 0.013895419, -0.021822246, 0.016148731, -0.015411039, -0.0036113337, 0.03296809, 0.028246865, -0.020521227, -0.011950597, -0.008543805, -0.0113939755, -0.020413926, -0.03825264, 0.009066895, 0.013130902, 0.027951788, -0.027764013, -0.011561632, -0.018106965, 0.021379631, -0.010884298, 0.007309849, -0.0061463085, -0.017221736, -0.007497625, -0.009657048, 4.235961E-5, 0.013935657, 0.017463163, -0.022466049, 0.019448223, -0.010515452, 0.0071287793, -0.012876064, 0.0016111846, 0.023887781, -0.030017324, 0.014150258, 0.0028535235, 0.016980309, 3.1268047E-4, 4.5728468E-4, 0.015531752, 0.029507646, -0.020990666, 0.017570462, -0.0059082354, -0.009127252, 0.0109915985, 0.024062146, -0.027321398, -0.015947541, -0.012010953, 0.0030563886, 0.03377284, 0.0015902275, -0.0077524637, -0.0059216483, -0.016537694, -0.011803059, 0.0039868853, 3.2169203E-4, -0.002675807, -0.03940612, 0.025939904, -0.013935657, 0.008040833, -0.00676664, -0.0057875225, 0.0020621822, 0.0013094018, 0.019005608, -0.009724111, -0.003398409, -0.015263501, -0.015719527, -0.034497123, -0.020360276, -0.027898138, -0.009402209, 0.0082889665, -0.011279969, 0.014713585, -0.0036515712, -0.004566979, -0.012265792, 0.020655353, -0.022908663, -3.386673E-4, 0.025792366, -0.0032139863, 8.215197E-4, -0.002887055, 0.024129208, 0.014820886, 0.005616512, 0.020990666, 0.013895419, 0.03259254, -0.021017492, 0.0034872673, -0.008322498, -0.014311208, -0.010206963, 0.012654756, 0.02289525, 0.005536037, -0.0127888825, -0.032807138, -0.019327508, -0.0042283116, 0.03731376, -0.018106965, -0.01578659, 0.04399322, 0.034470297, 0.031653658, 0.013311973, -0.016390156, -0.034094743, 0.011320206, -0.022036847, -0.018428866, -0.010709935, 0.019635998, 0.0077591697, -0.0027395168, -0.018884894, -0.028461466, -0.011689052, -0.021191856, -0.024786424, 0.0036381588, 0.019917661, 0.047668263, 0.024544997, -0.0049123527, 0.014726998, 0.0048419368, 0.009576573, -0.012359681, -0.0039164694, 0.026623946, -0.0070483037, 0.019421397, 0.021178443, -0.008798644, -0.014914774, 0.0016371714, 0.026932433, 0.0037018685, 0.024960786, -0.031117154, -0.012272499, -0.008630986, -0.0037991095, 0.004949237, -0.0023606117, 0.018804418, -0.030392876, -0.0049391775, -7.1673404E-4, 0.018992195, -0.012560869, 6.924238E-4, -2.9947745E-4, -0.022600174, -0.0038963505, -0.019273859, -0.008054246, -0.0038427003, -0.02744211, 0.0228416, 0.021580819, 0.0010981539, 0.03862819, 0.0059484732, -0.0037253404, -0.007973771, -0.014955012, -0.0015122669, 0.004047242, -0.0034872673, 0.006609042, 0.016846184, -0.032726664, 0.008242022, -0.028756542, 0.010817235, -0.012916301, 0.0036314523, -0.019877424, 0.029775899, 0.0077591697, -0.049089994, 0.006833703, -0.027160447, -0.0018962016, -0.007557981, 0.015290326, -0.04064008, -0.01719491, -0.013311973, 0.007383618, -0.021486932, -0.025899665, 0.0073031425, 2.0003585E-4, -0.0046005105, 0.032270636, 0.17296846, -0.002519886, 0.0056466907, 0.057674035, 0.014753823, -0.0061396025, 0.013157728, 0.012547456, -0.0043624374, 0.015263501, -0.0043423185, 0.007973771, -0.014297796, 0.0037756376, 0.015142788, -0.017248562, -0.03312904, -0.015773179, -0.008161547, -0.039003745, -0.018831244, 0.008315791, -0.0048922338, -0.007893295, -0.007940239, -0.007430562, -0.012044485, 0.013493042, 0.029078444, 0.0150891375, -0.014968424, -0.028568767, -0.008369441, 1.0352825E-4, -0.023659768, -0.01329856, -0.0274287, 0.009388797, 0.0078865895, 0.023646355, -0.0057238126, 2.3974963E-4, -0.006914178, -0.010294145, -0.009871649, 0.016269444, -0.017047372, 7.045789E-4, -0.022506287, 0.012225554, -0.055688977, 0.0022583408, 0.013962482, 0.033370465, -0.007242786, 0.0027981966, 0.016336506, -0.01400272, -0.009127252, -6.6178704E-6, -0.014955012, 0.035033625, -0.033611894, 0.0138820065, 0.004335612, 0.020829717, -0.021178443, -0.00658557, 0.0248669, -0.039486594, -0.00869805, -0.016859597, -0.017570462, -0.0012247349, -0.008114602, -0.01808014, -9.2965853E-4, 0.021647882, 0.0025785659, 0.016631583, -0.03774296, -0.008657812, -0.007242786, -0.0024243214, -0.01629627, -0.021097967, 0.017329035, -0.02482666, -0.0033011679, -0.020172501, -0.006565451, -0.035516478, -0.026932433, 0.0054320893, -0.018361803, 0.001812373, 0.016497457, 0.015236676, -0.02141987, -0.005180604, -0.030124625, 0.02466571, 0.027817663, 0.012520631, -0.010408152, -0.010019187, 0.0044462658, 0.0076988135, 0.03589203, -0.01813379, -0.011829884, -0.02910527, -0.007390324, -0.010025893, -0.009838117, 0.010850767, -0.0100862505, -0.008402973, 0.053516142, -0.025537526, -0.008456623, -0.007967064, 0.009911886, 0.005958533, 0.009958831, -0.027053148, -0.020507814, 0.005328142, -0.0040103574, -0.028595593, 0.0014636463, -0.0032508709, 0.029346695, -0.0022918724, 0.005629925, 0.027012909, 0.024786424, 0.02717386, -0.008356029, -0.014029545, 0.0023455226, -0.020212738, -0.0014929863, 0.005512565, 0.013016896, -0.031063505, 0.0019632645, 0.0012104842, -0.014861124, -0.02576554, -0.012949833, -0.0019666175, -0.012674876, 0.034041096, 0.04179356, -0.0043657906, -0.0150891375, -0.032297462, -0.018039903, 0.049546022, -0.043456715, 0.026382519, 0.0027428698, -0.007946946, -0.029668598, -0.0025601236, -0.17114435, 0.002851847, 0.004285315, -0.022653826, 0.014726998, 8.097837E-4, 0.020507814, 0.0038762318, 0.002675807, -0.013526574, -0.005046478, 0.013083959, -0.037850264, -0.021285743, 0.0071623106, 0.0254034, -0.01557199, 0.02800544, 0.019931074, -0.009361971, 0.029293045, -0.0070684226, -0.0175034, -0.008248729, 0.025296101, 0.0037756376, 3.1561445E-4, -0.019394571, -0.0054589147, -0.025926491, -0.033799667, -0.007819527, -0.0019196736, 0.017436337, -0.002652335, 0.008597455, -0.018402042, -0.0010478568, -0.0015055606, -9.1540767E-4, 0.042142283, 0.011561632, 0.00961681, 0.010709935, 0.0047413423, 0.012614519, 0.023190327, -0.007967064, 0.015813416, -0.010535571, -0.0017905777, -0.044717498, 0.018884894, -0.008550512, 0.0075110374, 0.022640413, -0.0046239826, 0.001248207, 0.009429035, -0.011145843, -0.03897692, -0.013110784, 0.0038594662, -0.019381158, -0.0128894765, -0.0111927865, 8.63434E-4, 0.012567575, -0.03886962, 0.011776233, -0.010642871, 0.016658409, -0.0036046272, 0.022747712, -0.0036113337, -0.009013245, -0.0248669, 0.0018157262, 0.009019951, 0.017422924, -0.012668169, 0.048043814, -0.015558577, 0.018254504, 0.019394571, -0.011279969, -1.8809029E-4, -0.0059317076, 5.817701E-4, -0.013432685, -6.773346E-4, -0.0042383713, -0.010052719, -0.0014393361, 0.00338332, 0.007008066, -0.011219612, 0.0044429125, 0.007061716, 0.004137777, -0.024786424, -0.019287271, -0.017905777, 0.017463163, 0.034255695, 0.03146588, 0.01829474, 0.033477765, 0.013130902, -0.012983365, -0.006565451, 0.0030463291, 0.01896537, 0.019367747, -0.027629888, -0.0042014867, -0.004489857, -0.016470632, -0.010582515, 0.013788119, 0.04530765, 0.009154077, -0.001956558, 0.006132896, -0.017624112, -0.006438032, -0.08187031, 0.00513366, -0.0078865895, 0.05804959, -0.02361953, 0.030231925, 0.002137628, 0.039835323, -0.017744826, 0.023686593, 0.010924536, -0.019045845, 0.022063673, -0.019300684, 0.014847712, 0.0024762952, -0.022586763, 0.001404128, -0.016591346, 0.02926622, -0.003254224, -0.005536037, -0.005418677, -0.011742702, -0.025926491, 0.0065889233, -0.0251888, 0.014297796, 0.006132896, 0.027576238, 0.037340585, -0.014740411, 0.013057134, -0.041364357, -0.030580653, -0.0077055194, -0.019568935, -0.020789478, -0.0045569194, -0.045066223, 0.0060725394, 0.014083195, -0.005438796, -0.034148395, -0.0051504257, -0.010173432, -0.028649243, 0.025913078, -0.011816471, -0.019676235, -0.013043721, -0.0097844675, -0.009019951, -0.018402042, 0.005616512, 0.022170972, 0.0031988972, 0.01411002, -0.02288184, -0.014324621, -0.005968592, -0.002363965, -0.0142843835, 0.0067331083, 0.006679458, 0.004214899, -0.010864179, -0.0114208, 0.029453997, -0.016685233, -0.015759766, 0.03747471, -0.018737355, 0.003530858, -0.020655353, 0.0076317503, -0.023646355, -0.019528696, 0.018764181, -0.032673012, -0.006887353, -0.037125986, -0.016323093, -0.0056902813, 0.014458747, 0.022828188, 0.023217153, 0.009610104, 0.007008066, -0.023485404, 0.009348559, 0.011776233, 0.002094037, -0.0055595087, -0.0076250443, 0.008731581, 0.009898474, 0.0021275685, -0.0014133492, 0.011561632, -0.017208323, -0.005884764, -0.07645163, 0.02706656, -0.011038543, -0.020132262, 0.005375086, 0.0042920215, 0.0039432948, -0.009187608, 0.0027898138, 0.017731413, -0.011454332, 0.018428866, 8.19424E-5, -0.010703228, -0.00594512, 0.016497457, 0.015719527, -0.00414113, 0.0033900263, 0.010642871, -0.015250089, 0.018630056, 0.023337865, 0.005438796, 0.011769528, 0.033155866, 0.0074909185, 0.014861124, -0.005613159, -0.0075915125, 0.025389988, -0.01829474, -0.0025517407, 0.015853655, -0.017060785, -0.025027849, -0.005398558, -0.014552635, 0.023217153, 0.0016774092, -0.0066358675, -0.023029378, -0.0086913435, -0.01907267, -0.0036549245, 0.014123432, -0.01948846, -0.0012398241, 0.0146867605, 0.026060617, 0.037072334, 0.012936421, -0.008919356, -0.011279969, 0.011615283, -0.032994915, 0.045012575, 0.023136677, 0.004265196, -0.013365623, 0.03125128, -1.5759766E-4, 0.023552466, -0.043671317, -0.0040338296, 0.0044462658, 0.0026087442, 5.0590525E-4, -0.011306793, -0.020682178, -0.0012062928, 0.0010696521, 0.025899665, 0.032270636, 0.0064078537, 0.0048888805, 0.00542203, -0.0032743427, 2.1240057E-4, 0.018925132, 0.034094743, -0.018522754, -0.013265029, 0.018214265, 2.5714404E-4, 0.039164696, -0.01620238, 0.008496861, -0.0090937205, 0.0057774633, -0.014861124, 3.2273988E-4, 0.013539986, 0.0068471152, 0.008449917, 0.009932006, -0.0038024627, -0.014123432, 2.4331234E-4, 0.027898138, -0.002249958, 0.0034084686, -0.016376743, -0.016188968, -0.016537694, 0.0146867605, -0.0066626924, -0.026932433, 0.017275386, 0.008664518, 0.025175387, 0.023270803, -0.016470632, 0.0077524637, -0.040988803, 0.013499748, -0.0051571317, -0.018750768, 7.7373744E-4, 0.036723606, 0.017047372, -0.008329204, 0.033719193, -0.010046013, 0.032297462, -0.0018023136, 0.020494401, -0.038038038, 8.127177E-4, -0.006032302, 7.97419E-5, 0.009992362, 0.0036851028, 0.0023572587, -2.0422728E-4, 0.0046474542, 0.0115817515, 0.033611894, -0.0040338296, 0.08246046, 0.013560105, -0.010274026, 0.012118254, -0.027361635, -0.005442149, 0.016846184, 0.031787783, -0.005935061, -0.009610104, 0.0049291183, -0.010200257, 0.013318678, -0.02816639, -7.8337773E-4, -0.019515285, 0.0066660456, 0.009341853, -0.019475047, -0.015746353, 0.002734487, -0.0062301373, 0.026033793, 0.009817999, -0.011635401, -0.007075129, 0.026623946, -0.0088925315, -0.011870122, -0.038306292, 0.015893891, -0.029856373, 3.5260382E-5, 6.463181E-4, 0.021258919, -0.0030848903, -4.0132913E-5, -5.7045324E-4, 0.016376743, 0.014311208, -0.020400515, 0.0071153664, -0.021674708, 6.438032E-4, 0.023083027, -0.004895587, -0.005851232, -0.0200652, -0.029400347 ], + "id" : "38ebf7ff-c9e3-43c1-a4b0-d46b527015b0", + "metadata" : { + "source" : "movies.csv" + } + }, + "2d5228f3-b703-4ef5-96f9-2613fa63310b" : { + "text" : "2,17074,Anthony Gonzalez-Gael Garc�_a Bernal-Benjamin Bratt-Alanna Ubach-Ren��e Victor-Jaime Camil-Alfonso Arau-Herbert Siguenza-Lombardo Boyar-Ana Ofelia Murgu�_a-Sof�_a Espinosa-Dyana Ortelli-Gabriel Iglesias-Selene Luna-Natalia Cordova-Buckley-Edward James Olmos-Carla Medina-Luis Valdez-Blanca Araceli-Polo Rojas-Montse Hernandez-Octavio Solis-Cheech Marin-Salvador Reyes-John Ratzenberger-Antonio Sol-Liliana Barba Meinecke-Emmanuel Bernal-David Ber�_n-Denise Blasor-Wilma Bonet-Alex Castillo-Vicki Davis-Roberto Donati-Efrain Figueroa-Deb Fink-Libertad Garc�_a Fonzi-Emilio Fuentes-Daniella Garcia-Lorido-Mike Gomez-Lillian Groag-Joshua Guerrero-Montse Hernandez-Marabina Jaimes-Jossara Jinaro-Christian Lanz-Constanza Lechuga-Luisa Leschin-Ruth Livier-Maria Dominique Lopez-Valeria Maldonado-Richard Miro-Adrian Molina-Daniel Edward Mora-Vivianne Nacif-Adriana Sevahn Nichols-Jonathan Nichols-Arthur Ortiz-Jessica Pacheco-Juan Pacheco-Jacqueline Pinol-James Ponce-Al Rodrigo-J. Francisco Rodriguez-Polo Rojas-Eduardo Roman-Eddie Santiago-Melissa Santos-Luis Sol�_s-Rosalba Sotelo-Chris Triana-Trujo-Lee Unkrich-Ruth Zalduondo-James Zavaleta-Bernardo Cubria-Gary Carlos Cervantes-Johnny A. Sanchez-Levi Nunez-��scar Bonfiglio-Lalo Alcaraz-Marcela Davison Aviles-Carolina �ngel,mexico-guitar-musician-skeleton-afterlife-singer-life after death-child-day of the dead-fairy tales,/gGEsBPAijhVUFoiNpgZXqRVWJt2.jpg,/askg3SMvhqEl4OL52YuvdtY40Yb.jpg,85133-150540-2062-862-585-12-14160-9806-928123-269149-663712-62177-260513-284053-84228-808-10681-109445-863-284054-10193\r\n166426,Pirates of the Caribbean: Dead Men Tell No Tales,Adventure-Action-Fantasy,en,Thrust into an all-new adventure a down-on-his-luck Capt. Jack Sparrow feels the winds of ill-fortune blowing even more strongly when deadly ghost sailors led by his old nemesis the evil Capt. Salazar escape from the Devil's Triangle. Jack's only hope of survival lies in seeking out the legendary Trident of Poseidon but to find it he must forge an uneasy alliance with a brilliant and beautiful astronomer and a headstrong young man in the British navy.,85.865,Walt Disney Pictures-Jerry Bruckheimer Films-Infinitum Nihil,5/23/17,230000000,795922298,128,Released,All pirates must die.,6.", + "embedding" : [ 0.0010021202, -0.02232227, 0.0040288973, -0.041268975, -0.02341116, 0.025030885, -0.007982933, -0.006577583, -0.013951418, -0.04047953, 0.030298397, 0.036015075, 0.010310438, 0.001573788, 0.01766726, 0.018102815, 0.021995602, -0.018905872, 0.023370327, -0.015285309, 0.002189692, 0.0039336192, -0.018102815, 0.017013924, 0.012569888, 0.016905036, 0.021246988, -0.006751125, -0.007751544, -0.020688932, 0.02817506, -0.01033766, -0.004971469, -0.013679195, -0.014890587, -0.0072070984, 0.013577112, -0.034626737, 0.0046243845, 0.01685059, -5.5242086E-5, 0.0069518895, -0.010956967, -0.019314207, -0.0037770912, 0.0020450738, 0.0021267405, -0.014495864, -0.0070845983, 0.02377866, 0.020090042, 0.016768923, -0.019450318, -0.031251177, 0.0038689664, -0.0035218825, -0.024295883, 0.0024908385, -0.007322793, 0.011453774, 0.014495864, -0.021913934, -0.017980315, -0.021192545, -0.018674484, -0.014945031, 0.0048319544, -0.016020311, -0.003862161, 0.004491676, 0.02950895, 0.01802115, 0.015584755, 0.011304052, 0.017095592, -0.023914773, -0.018606428, -0.0041854256, -0.017231703, 0.0083844615, 0.017816981, -0.017463092, -0.0068600145, -0.0023955605, 0.013617945, 0.005774526, -0.005066747, 0.014591142, -0.031822845, 0.004141189, 0.010255993, 0.036015075, 0.011072662, -0.001302416, 0.0078059887, 0.018551983, -0.018919485, 0.017231703, -0.014713642, -0.033265624, -0.013032666, -0.0020859072, -3.8727946E-4, -0.010113076, -0.0055125114, -0.009861271, 0.008697518, -0.009384881, 0.009718354, 0.023996439, 0.0076154326, -0.0010157312, 0.019518374, -0.027031723, -0.017041147, -0.019273374, 0.024690608, -0.006843, 0.0045018843, -0.028828394, 0.021383101, 0.019191707, 0.008364045, -0.02831117, 0.023098104, 0.025643386, 1.4653242E-4, -0.014645586, -0.0066660554, -0.002159067, 0.022281436, 0.013284472, 0.013216416, 0.007023348, -0.0065061245, 0.04216731, -0.01033766, -0.004100356, -0.016496701, -0.023574494, 0.034109514, 0.028256726, -0.029890062, -0.027957281, -0.016210867, 0.008132656, 0.006768139, -0.0066694585, 0.013658779, -0.0023087896, 0.03440896, 0.011698774, 0.007935294, 0.00438619, 0.015925033, -1.7800818E-4, -8.62606E-4, -0.005927651, 0.0029604228, -0.019082818, -0.012467803, -0.025725054, -0.00949377, -0.013127944, 0.0068668197, 0.041976754, 0.01672809, -0.030026173, -0.022989215, -0.0018136844, -0.010555439, 0.028392836, -0.018837817, 0.020198932, -0.009003769, 0.010521411, -0.0010829363, -0.007826406, -0.025303109, -0.013849335, -2.2564718E-4, -0.0052573024, 0.022172546, 0.031741176, 4.5554782E-4, 0.0041548004, 0.019736152, -0.005788137, 0.010977384, -0.019913098, -0.01033766, 0.011542247, 0.011174746, 0.0074725156, -0.6393969, -0.006264527, -0.011535441, -0.01337975, 0.024309495, 0.008609045, 0.0105009945, -0.009126269, -0.02915506, -0.025725054, -0.019041983, 0.02198199, 0.025343942, -0.017503925, -0.020008376, -0.012760444, 0.0012386137, -0.013352528, 0.020021986, 0.0058629983, -0.042630088, 0.004525704, 0.023138937, 0.01158308, 0.010854884, 0.0039438275, 5.384907E-4, -0.016755313, -8.1922044E-4, 0.01468642, -0.026215054, 0.016319755, 0.003889383, -0.0021811852, 0.034055073, -0.0066184164, -0.0062066796, 0.042493977, 0.030135063, 0.031605065, -0.02628311, 0.0054308446, 0.011848497, -0.0063461936, -0.013338917, 0.016945869, 0.0035388963, 0.018252539, -0.015475865, -0.0067443196, 0.0017167049, -0.012113914, -0.013168777, -0.010916134, -0.0012445686, 0.0017490315, 0.023955606, -0.03797508, 0.015652811, 0.010977384, -0.012692387, 0.007955711, 0.00992252, 0.0158842, -0.003281986, 0.02460894, 0.0072207097, 0.0042670923, 0.013747251, -0.020865876, 0.010555439, -0.0038995915, -0.0315234, 6.7077397E-4, 0.0011637524, -9.729838E-5, 0.03342896, 0.0152444765, -0.011310857, 0.012066275, 0.007799183, 0.008745157, 0.0025691027, 0.01981782, 0.02436394, 0.0059208455, -0.035606742, 0.011970997, 0.015040309, -0.0057030674, 0.0020365668, 0.02652811, 0.02232227, 0.0062407074, -0.003394278, 0.0023394146, -0.031713955, 0.005696262, 0.0370223, -0.073119044, -0.012835304, -0.017122814, 0.025942832, -0.0097455755, 0.04001675, 0.0138357235, -4.4619016E-4, 0.003307507, 0.041405085, -0.020403098, -0.0038723692, 0.0092759915, -0.0120050255, -0.006608208, 0.0065095276, -0.030516176, 0.003954036, 0.010841273, -0.006370013, -0.012392943, -0.007799183, 0.007656266, 0.0013874855, -0.021845879, 0.005441053, 0.03593341, -0.006577583, -0.009439325, 0.005835776, -0.0035048684, 0.008779185, -0.0014725551, 3.7728378E-4, -0.015788922, 0.025044497, 0.0158842, 0.033020623, 0.006751125, 0.015543921, -0.0061488324, -0.017367814, -0.013890168, -0.016986702, -8.523976E-4, -0.0049476493, -0.020702543, -0.036831744, -0.00323775, -0.0011212176, -0.008282378, -0.016796146, 0.0032751805, -0.002128442, 0.009990577, 0.018674484, -2.360682E-4, -0.025534498, -0.013699612, 0.014359753, -0.016346978, 0.014223641, 0.004964663, 0.0037872996, -0.010432938, 0.022512825, -0.015652811, -0.0026933043, 0.0067477226, -0.0014708538, -0.010004188, 0.0327484, -0.00564522, 0.008119045, 0.008690713, -0.0090446025, 0.032040622, -0.034354515, 0.035307296, 0.011623913, -0.006502722, -0.0025180608, -0.007070987, -0.015353366, 0.007002931, 0.035307296, 0.021042822, 0.017367814, -0.012985027, -0.024581717, 0.0019821222, -0.023833105, -0.0077719605, -0.01224322, 0.0015661317, -0.0043998007, 0.033238403, -0.013638361, 0.007418071, 0.002189692, 0.0038961887, 0.036695633, 0.031360064, 0.009915715, 0.0021131295, -0.0043895924, -0.039009526, 0.014223641, -0.014427808, 0.03116951, -0.00847974, 0.028991727, -0.016047534, -0.0122840535, 0.0068736253, 0.017517537, 0.028392836, -0.0063495967, -0.0035354935, 0.005886818, 0.026882, 0.0051348023, 0.0073295985, 0.011773636, 0.023710605, -0.025970055, -0.015952256, 0.016551146, -0.011555857, -0.019450318, -0.027058946, 0.0056282063, -7.796631E-4, 0.0054784836, 0.010371689, -0.0065571666, -0.0038247302, 0.0015746386, 0.005488692, 0.03454507, -0.022989215, -0.008466129, 0.022417547, 0.016809758, 0.016877813, -0.003559313, -0.002921291, 0.015639199, 0.009473353, -0.0109229395, 0.045379538, -0.012433776, 0.017816981, -0.016197257, -0.002996152, 0.016033923, -0.023914773, 0.0071594594, 0.0206481, 0.014523086, 0.020130875, 0.018810594, -0.02173699, 0.020280598, 0.0078059887, 0.006220291, -0.0026847972, -0.03234007, -0.0011543948, -0.008888074, -0.019586429, -0.012692387, -0.018415872, 0.012338498, 0.011528635, -0.018769762, -0.0070777927, 1.283488E-4, -0.0070369593, 0.010412522, 0.015802532, -0.0109705785, -0.026623389, 0.028038947, 0.029808396, -0.01230447, -0.029427284, -0.0035831325, 0.0014878677, -0.040043972, -0.0070573757, 0.008983352, 0.03949953, -0.016905036, 0.01683698, -0.006710292, -0.01505392, 0.0021182336, -0.017871426, 0.01886504, 0.009452936, -0.006560569, 0.010296827, -0.008153073, -0.002024657, 0.018783372, 0.005965082, -0.009990577, -0.007241126, 0.016210867, -0.0039029943, 0.0011501412, 0.009520992, -0.04371898, 0.0066354307, -0.013236833, -0.017612815, -0.0074725156, 8.949324E-4, 0.016564757, -0.0046584127, -0.022853103, -0.022512825, -0.013931002, -0.007860433, 0.06740236, 0.0494901, 0.0015048817, 0.005869804, -0.014631975, 0.019504763, 0.0033789654, -0.009704743, -0.014958642, -0.02149199, 0.021873102, -0.0041071614, 0.035416186, 0.006958695, 0.024690608, -0.011222385, -0.00558397, -0.015448644, 7.2436786E-4, -0.0071118204, -0.018647261, -0.014945031, 0.010419328, 0.039853416, -0.0015584754, -0.034817293, 0.019899486, 0.017966704, 0.010364883, 0.020811433, 2.245838E-4, 0.0070573757, 0.009228352, 0.0014308711, -7.031004E-4, -0.007390849, 0.027984504, 0.00973877, 0.024391161, 0.008881268, 5.7847344E-4, -0.007635849, -3.4187353E-5, -0.01056905, 0.015353366, -0.02855617, -0.036858965, 0.033973403, 0.037294522, -0.035552297, 0.014795309, 0.0056588314, -0.022594491, -0.024772273, 0.03454507, -0.0023870536, -0.0064891106, 0.0094665475, -0.010616689, 0.007118626, 0.0057166787, -0.03860119, 0.01875615, -0.0071322373, 0.011746413, -0.013665584, -0.029481728, -0.0049578575, -0.033864517, 0.006883834, -0.0039370223, -0.024799496, -0.02210449, -0.0062270965, 0.012998639, -0.0030591036, 0.034055073, -0.0070369593, 0.009820437, 0.024867551, -0.019749764, -0.024459219, -0.001859622, -0.029590618, 0.01791226, 0.016823368, 0.0059310542, 0.016660035, -0.013822112, 0.001439378, 0.0025435816, -3.5686707E-4, -0.011392524, -0.025806721, 0.04505287, 0.020335043, 0.022608103, -0.0027817767, 0.0046107736, 0.023996439, 0.004634593, -0.029781174, -0.0105486335, -0.027766725, -0.012141136, -0.01623809, -0.015734477, -0.0028600406, -0.008071406, -0.014999475, -0.03258507, -0.015230865, -0.003719244, 0.003498063, 0.006284944, 0.007948905, 0.009241964, 0.012882943, -0.0060059153, 0.016142812, -0.0068089725, 0.0030795203, 0.008758768, 0.019368652, -0.013522667, 0.024554497, -0.019600041, -0.019450318, 0.0035525074, 0.019790597, 0.014727253, 0.0069348756, -0.022077268, 1.3015652E-4, -0.013590723, -0.023628939, 0.005441053, 0.0010455056, -0.023601716, 0.004008481, -0.013815307, 0.016891424, 0.012637943, 9.076929E-4, -0.010684744, -0.030271174, 0.013801696, -0.01623809, 0.027725892, 0.016823368, -0.010657522, 0.017571982, -0.022022823, -0.011610302, -0.011576274, -0.017762536, -0.036967855, -0.0041037584, 0.044535648, 0.011086273, 0.034898963, 0.005481886, 0.030870065, 0.010364883, 0.0059242486, 0.028338393, -0.020076431, -0.0138833625, -0.03675008, 0.022730604, 0.011038634, 0.03179562, 0.0050803577, 0.007513349, 0.008486546, 0.008153073, 0.010603078, 0.009874882, -0.0020042404, -0.012107109, -0.03451785, 4.1173698E-4, -0.03797508, -0.004828552, -0.017013924, -0.007336404, 0.03155062, -0.015680032, 0.007976128, -0.0036103548, 0.027249502, -0.010596273, 0.021451157, -0.016782535, 0.022158936, -0.022689769, -0.015040309, -0.012617527, -0.016442256, -0.024867551, -0.0151491985, 0.018225316, -0.0052981363, -0.034490626, 0.004100356, 0.031060621, -0.019423096, -0.014740864, 0.02279866, -0.013291278, -0.0105009945, -0.038982302, -0.009786409, -0.033102293, -0.023969216, 0.0072819595, -0.011235995, 0.00188174, -0.018674484, -0.062556796, 0.019981153, 0.0049204268, 0.037376188, 0.021451157, 0.03715841, 0.0360423, 0.0028974714, -0.0040595224, 0.005539734, 0.0030148674, -0.011746413, 0.016074756, 0.010487383, -0.029753951, 3.304423E-5, 0.023751438, 3.9195828E-4, -0.031087842, -0.031251177, 0.031060621, 0.009255575, 0.025221441, -0.03620563, 0.007098209, -0.042684533, 0.018075593, -0.011031829, 0.0060535544, 0.022703381, -0.035035074, -0.03046173, 0.0064584855, 0.0015397602, 0.0011212176, 0.012671971, -0.027630614, 0.027058946, -0.017095592, 0.0020450738, -0.01505392, -0.0075541823, 0.032911737, -0.032557845, 0.02053921, 0.008425295, 0.024309495, 0.013488639, 0.01408753, 0.015856978, 0.026419222, -0.011794052, 0.009405297, 0.0058595957, 6.269631E-4, 0.0027341377, 0.015380587, -0.028229503, -0.022512825, -0.021178933, -0.006533347, 0.025343942, 0.0028515337, -0.0015925033, 0.0093236305, -0.009548214, -0.021873102, -5.46147E-4, -0.0055125114, 0.010535022, -0.024785886, 0.01350225, -0.009310019, -0.0013347424, 8.4474136E-4, -0.011181551, 0.0047673015, -0.023383938, -0.009391686, -0.015121976, 0.010882106, -0.021900324, -0.032421734, -0.046250653, -0.017953092, -0.008581824, 0.002878756, 0.014414197, -0.024078107, 0.008139461, -0.0021080251, 0.004573343, -0.0024908385, 0.003923411, -0.007846822, 0.0038009107, 0.0068770284, -0.012583499, -0.016197257, -0.0032462568, 0.02937284, 3.862161E-4, -0.013815307, 0.0011867213, 0.013522667, 0.021301433, -0.033129513, 0.012923777, 0.007431682, -0.0066014025, -0.0089016855, 0.008724741, 0.014727253, 0.009378075, -0.0030471939, -0.019940319, -0.011977803, -0.0054512615, 0.034490626, -0.003654591, -0.0142100295, 0.032557845, 0.011310857, 0.030679509, 0.01923254, 5.7336927E-4, -0.028420059, 0.0012318081, -0.015489477, -0.02758978, -0.0018732331, -0.0018238927, 0.013570306, 0.0068464032, -0.021070044, -0.0157617, -0.002184588, -0.011657941, -0.025275886, -0.011195162, 0.028147837, 0.032122288, 0.01081405, 0.0014002459, 0.018061982, 0.0016928855, 0.008343629, -0.016973091, -0.01671448, 0.01791226, 0.0067749447, 0.010024604, 0.011787247, -0.03329285, -0.013495445, 0.015693644, 0.02496283, 0.007241126, 0.031305622, -0.028447282, -0.013801696, -0.011794052, 0.0070165424, 0.0047502876, -0.013842529, 0.03582452, -0.030135063, -0.011630719, 2.2904995E-4, 0.030978953, -0.013100722, -0.0048727877, 0.012311276, -0.015584755, 0.0017915663, -0.007322793, -0.024813108, 0.008874463, -0.022825882, 0.020688932, 0.0161292, -0.0045903567, 0.032122288, 0.03500785, -0.0035797297, 0.001153544, -0.0075541823, 0.008677102, -0.0020127473, -0.0056554284, 0.0027375405, 0.013651973, -0.037076745, 0.009582242, -0.024159772, 0.00740446, -0.027671447, 0.010045021, -0.0036886188, 0.02556172, 0.013842529, -0.054662336, -0.0017439272, -0.0063019576, 0.0046448014, -0.0016367395, -0.010882106, -0.027657835, -0.0097932145, -0.0062917494, 0.009990577, -0.015108365, -0.027208667, 0.01660559, -0.014713642, -0.009500575, 0.026718667, 0.1810826, -0.0077583496, -0.0036273687, 0.034572296, -0.003913203, 0.015230865, 0.02316616, 0.032312844, 0.0027103182, 0.015135587, -9.2810957E-4, -0.0014768087, 0.0034878545, 0.0028243114, 0.02330227, -0.006312166, -0.021464767, -0.021832269, -0.02674589, -0.024295883, -0.016210867, 6.4998508E-6, -0.014781698, -0.020348653, -0.0053525805, -0.004375981, -0.011569468, 0.0076970994, 0.007241126, -0.002193095, -0.00309143, -0.0157617, -0.003685216, 0.007098209, -0.030733952, -0.010623494, -0.0069348756, 0.0064006383, 0.016156422, 0.0059991097, 0.0109229395, -0.0026524707, -0.010167521, -0.01984504, 0.0032785833, 0.01636059, -0.031577844, 6.981026E-5, -0.007976128, -0.006434666, -0.046903986, 0.012215998, 0.026228666, 0.019545596, -0.0062066796, -0.013080305, -0.0012462699, 0.009956549, -9.4087E-4, 0.013937807, 0.018674484, 0.03155062, -0.025480052, 0.0055737616, -0.007629044, 0.018742539, -0.024636162, -0.014237252, 0.015353366, -0.05041566, 0.00752696, -0.025330331, -0.010446549, 0.00800335, -0.010378494, -0.009670715, -0.003190111, 0.0078195995, 4.810687E-4, 0.011174746, -0.018688094, 0.0050871633, -0.0019089623, -0.015856978, -0.020688932, -0.029699506, 0.0010097764, -0.020389486, -0.008214323, -0.022295047, -0.006029735, -0.039009526, -0.010725578, 0.0032479581, -0.011385718, 0.016864201, 0.020103654, 0.016156422, -0.014727253, -0.006598, -0.023043659, 0.033973403, 0.022172546, -2.3766326E-5, -0.034000628, -0.014005862, -0.005822165, 0.0026830959, 0.026323944, 0.010514605, -0.016537534, -0.020825043, 0.001361114, -0.022213379, 0.007275154, 0.005662234, 0.017599203, -0.005110983, 0.0367773, -0.00459376, 0.0020314625, -0.014754475, 0.018075593, 0.011562663, 0.009820437, -0.028610615, -0.028637838, 0.011086273, -0.0026286512, -0.02018532, 2.1341842E-4, -0.027644224, 0.013828917, -0.0073500155, -0.0010387001, 0.0270045, 0.01921893, 0.0078672385, -0.010616689, -0.010521411, -0.0128489155, -0.023002826, 0.010058632, 0.0040765363, 0.0067341113, -0.028447282, 0.017422259, -0.017395036, -0.0070641814, -0.028392836, -0.015952256, -0.0010650717, -0.004951052, 0.022485603, 0.04897288, -0.00483876, -0.021478377, -0.054117892, -0.012297665, 0.032231178, -0.040942308, 0.020158097, 0.023492826, 1.5658128E-5, -0.024813108, -0.015026698, -0.17454925, 0.025235053, -0.009684326, -0.030080618, 0.016387813, -3.25923E-5, 0.027303945, 0.010480577, 0.009731965, -0.028283948, 0.012855722, 0.0031577845, -0.023438383, -0.008738352, 9.842556E-4, 0.010099466, -0.0057234843, 0.044345092, 0.02674589, -0.004158203, 0.052375663, 7.7540963E-4, -0.011542247, -0.00955502, 0.001254777, -0.011120301, 0.01480892, 0.008472934, -0.011099884, -0.0045154956, -0.036123965, -0.0051313997, 0.021655323, 0.012597109, -0.010895717, 0.016074756, -0.021696156, -0.017857814, 0.0020025389, -0.009214741, 0.041268975, 0.012712805, 0.019436708, 0.012733221, 0.0049476493, 0.0206481, 0.019518374, -0.028338393, 0.017163647, -0.014754475, -0.020893099, -0.036831744, 0.01379489, -0.006757931, -0.0070301536, 0.022771437, -0.0048183436, -0.0017158543, 0.011753219, 0.0058766096, -0.022567268, -0.014740864, 0.0127059985, -0.018796984, -5.1679794E-4, -0.018688094, -0.008867658, 0.004746885, -0.031850066, 0.008309601, -0.021832269, 0.02196838, 0.0051960526, 0.0054342477, 0.024268663, -0.026133388, -0.035742853, -0.0040867445, 0.010562244, 0.022608103, -0.0044542453, 0.021709768, 0.007166265, 0.013754057, 0.0033024028, 0.0013117736, 0.0023036853, 0.0023989633, 0.0048319544, -0.012386137, 0.020035597, -0.024391161, -0.02891006, -0.007969323, 0.0049408437, 0.010249188, -0.0036954244, -0.0015856978, 0.011304052, -0.01743587, 0.012991833, -0.017844204, -0.023220604, 0.022961993, 0.02413255, 0.0033058056, 0.006421055, 0.017163647, 0.014386974, -0.0049782745, 0.0037056326, 0.014019473, -0.0044100094, 0.0136928065, -0.017585592, 0.013951418, -0.02258088, -0.026337555, -0.0016205763, 0.013515862, 0.0412962, 0.0013789786, 0.011515024, -0.007908072, 0.004641399, -0.014754475, -0.085369065, 0.015516699, 0.017871426, 0.03234007, -0.024840329, 0.03979897, -0.0076154326, 0.02852895, -0.007840016, 0.031033399, 0.0069076535, -0.021369489, 0.013454611, -0.008935713, 0.041268975, -0.0040765363, -0.017571982, -0.013264055, -0.0045052874, 0.017490314, -0.011964192, -0.010535022, 0.0010599674, -0.0162517, -0.013815307, 0.0036613964, -0.028283948, 0.024309495, 0.0023853523, 0.0029723325, 0.012277248, -0.017449481, 0.026555333, -0.04001675, -0.0325034, -0.022431158, -0.015666422, -0.02459533, -0.009330437, -0.036396187, 0.020280598, 0.008561407, 0.0026762902, -0.028692283, -0.0128489155, 0.009772798, -0.026078943, 0.025112553, -0.022403935, -0.03391896, -0.0063461936, -0.014795309, -0.018225316, 2.5350746E-4, 0.01577531, 0.017340591, 0.014468641, 0.020756988, -0.012406554, -0.024350328, -0.013475028, 0.003715841, -0.014836142, 0.003069312, 0.012386137, 0.002363234, -0.013182389, -0.022689769, 0.010895717, -0.011834886, -0.036586743, 0.031713955, -0.0360423, -0.011494608, -0.031468954, 0.0021165323, -0.020239765, -0.010997801, 0.0322584, -0.02937284, 0.006472097, -0.030679509, 0.011453774, 0.0047877184, 0.014659197, 0.015856978, 0.024826718, 0.014904198, -0.008670296, -0.030352842, -0.01923254, 0.015993088, -0.002873652, 0.0025401788, -0.010228772, 0.03010784, 0.011719191, 0.0041071614, -0.0077583496, 0.0023275048, -0.019041983, -0.004338551, -0.0795435, 0.021723378, -0.011433357, 0.009173908, -0.0036579939, 0.0015814443, 0.0064618886, 0.0015031802, -7.788124E-4, 0.0089493245, -0.005556748, 0.018306982, -0.0017235106, -7.120327E-4, -0.0069076535, 0.018606428, 0.0018528163, 0.008506962, 0.007247932, -0.007070987, -0.025194218, 0.014904198, 0.011868914, 0.0034946601, -0.0063972357, 0.024813108, 0.001660559, 0.0066014025, -0.004712857, -0.027031723, 0.031033399, -0.014917809, -0.0024023661, 0.0060467487, -0.022744214, -0.03285729, 0.0010480577, -0.0061420267, 0.007948905, 0.011984608, -0.0018783372, -0.018279761, -0.00901738, -0.019300595, 0.0046890373, 0.0053729974, -0.021709768, 0.010950162, 0.0113448845, 0.00835724, 0.029046172, 0.011412941, -0.009160297, -0.013223222, 0.014250863, -0.031850066, 0.043909535, 0.008643074, 0.0025588942, -0.021410322, 0.030543396, -0.0019957332, 0.02616061, -0.038655635, -0.012413359, 0.0057234843, -0.005049733, -0.011984608, 0.0118144695, -0.032884512, -0.017150035, -0.01176683, 0.0054036225, 0.014536697, 0.020838656, 0.018851427, -0.005301539, 0.013495445, 0.0029076796, 0.020280598, 0.02149199, -0.004903413, -0.019613652, 0.015911423, 0.0036443826, 0.017708093, 0.014904198, 0.014386974, -1.0878278E-4, 0.0029042768, -0.015353366, 0.017993927, 0.005059941, -0.015258088, -0.01056905, 0.01105905, -0.017966704, -0.021709768, 0.001980421, 0.019150874, -0.0097932145, 0.008091822, -0.025003664, -0.0043453565, -0.02279866, 0.0067477226, -0.019640874, -0.0221181, 0.03141451, 0.014373363, 0.034762852, 0.020825043, -0.02783478, 0.010997801, -0.029753951, 0.0046720235, -0.013141555, -0.018606428, -0.009643492, 0.031033399, 0.0072547374, 0.008908491, 0.024772273, -0.017286148, 0.050470106, 0.005162025, 0.011807663, -0.024513662, 0.016551146, -0.0017064966, -0.0048659826, 2.0671918E-4, -0.018905872, 0.009765993, -0.009167102, 0.0060943877, 0.015312532, 0.018483927, -0.0098884925, 0.07377238, 0.025970055, -0.0015559234, 0.022199769, -0.010126688, 0.016700868, 0.028828394, 0.027644224, -0.00800335, -0.015530311, 0.01887865, -0.00606036, 0.011018218, -0.020498376, -0.0012054365, 0.0011952282, 0.007846822, 0.022880325, -0.021886712, -0.010167521, -0.011549052, -0.00477751, 0.019150874, 0.015040309, -0.030897288, -0.007840016, 0.020212542, 0.0024874357, -0.0018783372, -0.0425212, 0.0077583496, -0.02473144, -0.004573343, -0.004634593, 0.019137261, -0.008139461, -0.010351271, -0.0078672385, 0.02173699, 0.021777824, -0.0024244841, 0.0019174693, -0.026201444, -0.001092294, 0.036559522, -0.020906711, -0.009221547, -0.021941157, -0.0035695212 ], + "id" : "2d5228f3-b703-4ef5-96f9-2613fa63310b", + "metadata" : { + "source" : "movies.csv" + } + }, + "ae02dda5-2c18-4205-b696-4da51c1db2f6" : { + "text" : "Marco Rodr�_guez-Ram�_n Franco-Ra�_l Cardona-Courtney Hoffman-Dreama Walker-Rachel Redleaf-Rebecca Rittenhouse-Rumer Willis-Spencer Garrett-Clu Gulager-Martin Kove-Rebecca Gayheart-Kurt Russell-Zo� Bell-Michael Madsen-Perla Haney-Jardine-James Remar-Monica Staggs-Craig Stark-Keith Jefferson-Omar Doom-Kate Berlant-Victoria Truscott-Allison Yaple-Bruce Del Castillo-Brenda Vaccaro-Lew Temple-Daniella Pick-David Steen-Mark Warrack-Gabriela Flores-Heba Thorisdottir-Breanna Wing-Kenneth Sonny Donato-Sergio Gonzalez-Casey O'Neill-Michael Graham-Emile Williams-Vincent Laresca-JLouis Mills-Gilbert Saldivar-Maurice Compte-Eddie Perez-Hugh McCallum-Zander Grable-Ed Regine-Michael Bissett-Lenny Langley Jr.-Gillian M. Berrow-Chad Ridgely-Chic Daniel-Corey Burton-Michaela Sprague-Ryan Ramirez-Kayla Jenee Radomski-Kerry Westcott-William DeAtley-Brianna Joy Chomer-Quentin Tarantino-Johnny Otto-Gina Aponte,movie business-male friendship-celebrity-based on true story-fame-hollywood-los angeles california-historical fiction-buddy-struggling actor-satanic cult-revisionist history-western filmmaking-1960s-stunt double-old hollywood,/wQKeS2JrsRF8XSfd9zqflrc5gad.jpg,/xwgBHC2FgoIrQitl8jZwXXdsR9u.jpg,475557-496243-398978-594040-492188-515001-530915-16869-546554-359724-500-106646-68718-273248-680-419704-393-24-11324-429617-103\r\n272,Batman Begins,Action-Crime-Drama,en,Driven by tragedy billionaire Bruce Wayne dedicates his life to uncovering and defeating the corruption that plagues his home Gotham City. Unable to work within the system he instead creates a new identity a symbol of fear for the criminal underworld - The Batman.,93.893,Warner Bros. Pictures-DC Comics-Syncopy-Legendary Pictures-Patalex III Productions Limited,6/10/05,150000000,374218673,140,Released,Evil fears the knight.,7.703,19888,Christian Bale-Liam Neeson-Katie Holmes-Michael Caine-Gary Oldman-Cillian Murphy-Morgan Freeman-Tom Wilkinson-Mark Boone Junior-Linus Roache-Ken Watanabe-Rutger Hauer-Gus Lewis-Emma Lockhart-Larry Holden-Colin McFarlane-Christine Adams-Vincent Wong-Sara Stewart-Richard Brake-Gerard Murphy-Charles Edwards-Tim Booth-Rade ��erbed�_ija-Risteard Cooper-Andrew Pleavin-Jo Martin-Shane Rimmer-Jeremy Theobald-Jack Gleeson-Jonathan Patrick Foo-Spencer Wilding-Dave Legeno-Khan Bonfils-Mark Strange-Grant Guirey-Rodney Ryan-Dean Alexandrou-Hayden Nickel-Catherine Porter-John Nolan-Karen David-Jonathan D.", + "embedding" : [ 0.0013354666, -0.038988158, -0.004469656, -0.041893266, -0.022059804, 0.033015043, -0.0027608695, -0.0043067527, -0.01869314, -0.03953117, 0.02029502, 0.027666388, 0.028616657, -0.0010843242, -3.440481E-4, 0.015435075, 0.017593542, -0.008993613, 0.008722107, -0.04325079, 0.006166564, -0.0011428676, -0.028318001, 0.0050703613, -0.0049040643, 0.014620559, 0.032091923, -0.009896368, -0.0048429756, -0.008878223, 0.005701611, -0.010676946, 0.0011097778, -0.01745779, -0.011124929, -8.7390764E-4, 0.0020905908, -0.021693273, 0.016969081, 0.002211071, 0.0024401539, 0.01080591, 6.1979564E-4, -0.021584671, -0.0035193872, 0.0034582985, 0.02748991, -0.015597979, -0.021679698, 0.02155752, 0.038282245, 0.03239058, -0.009665588, -0.019860612, -3.3853317E-4, -0.0011963202, -0.005881483, 0.0031969748, 0.003953796, -0.0072831293, 0.0016044265, -0.015353624, -0.031033054, -0.0032970924, -0.007921167, -0.005755912, -0.016249591, -0.0019412627, -0.0044391113, 0.012896501, 0.033422302, 0.016602548, 0.015245022, 0.001605275, 0.016385345, -0.025562223, -0.017471366, 0.002068531, -0.0076903873, -0.0048735198, 0.006261591, -0.0060409927, -0.023037223, -0.0018682957, 0.013487025, 0.0031307954, -0.021000935, 0.0145662585, -0.02176115, 0.015611554, -0.0064686136, 0.04164891, -0.005518345, -0.0030374655, 9.986304E-4, 0.029729828, -0.02387889, 0.028100798, -0.019127548, -0.028046496, 0.008661019, -0.015285748, -0.008403089, -0.016181715, 0.0031867933, 0.005684642, 4.240149E-4, -6.63491E-4, 0.01702338, -0.0032920016, -0.0044187484, 0.0033310305, 0.008728895, -0.04010133, -0.011511824, -0.0123602785, 0.012692872, -0.042219073, 8.497267E-4, -0.022521364, 0.021829026, 0.026539642, 0.004673285, -0.039395418, 0.027177678, 0.022860745, 0.002786323, -0.014742737, 0.0038689503, 0.004333903, 0.02565725, -0.016507521, 0.019507654, 0.009685951, -0.0075206966, 0.040725794, -0.02075658, 0.01490564, -0.029729828, -0.017064108, 0.032173377, 0.030164238, -0.024462627, -0.025412895, -0.026648244, 0.011484673, 0.012984741, -0.009699526, 0.017471366, 0.010568343, 0.020865181, 0.012204163, 0.013181582, 0.009461959, 0.024231847, 4.976183E-4, -0.00988958, 0.0014508563, -0.004608802, -0.0193176, -0.0011564428, -0.010317201, -7.9797104E-4, -4.8277035E-4, 6.032508E-4, 0.016181715, 0.02720483, -0.0046698907, -0.0046223775, 5.8543327E-4, 7.0156544E-5, 0.02588803, -0.0488981, 0.021163838, -0.010133935, 0.008403089, -0.00604778, -0.01373138, -0.037141923, -0.021584671, 0.010419016, -0.0015450348, 0.014606984, 0.051558852, -0.0063837683, 0.0038316185, 0.037739236, -0.030055635, 0.01003212, -0.009753827, -0.0025555436, 0.019955639, 0.007989043, -0.0043508722, -0.6364084, -0.006370193, -0.00897325, -0.013168006, 0.024530502, 0.010595494, 3.2029138E-4, 0.007839715, -0.037820686, -0.020960208, -0.016290316, 0.016331043, 0.029594077, -0.022236284, -0.026037358, -0.014824188, 0.008613505, -0.025087088, 0.011376072, 0.012903289, -0.014756313, 0.0036890781, 0.0024418507, -0.010330776, -0.0053045345, 0.0120548345, 0.0019785948, -0.035702944, 0.012563908, 0.013296971, -0.028535206, 0.020498648, 0.017118407, -0.0012345006, 0.042409126, -0.0032580635, -0.012529969, 0.050147027, 0.012190588, 0.033123646, -0.029974183, -0.0022602815, 0.0102696875, -0.01117923, -0.020593677, 0.010697308, 0.017186284, 7.037926E-4, -7.7209313E-4, 0.008362363, 5.1755697E-4, -0.003432845, -0.022195557, -0.016548248, 0.0024367599, 0.012516393, 0.005705005, -0.03697902, 0.011457523, 0.008118008, -0.034155365, 0.020770155, 0.008504903, 0.003872344, 0.003193581, 0.031603217, 0.0056914296, 0.007323855, 0.010371502, -0.0231051, 0.0031698241, 0.0029118941, -0.027096227, -0.014484807, 0.0034192698, 0.016249591, 0.027164103, -0.0058068195, -0.008477753, 0.0180008, 5.341018E-4, -0.0021482855, -0.005939178, 0.015584404, 0.021408191, -0.009271906, -0.040780094, 0.006903022, 0.009733465, 0.011803692, 0.008830709, 0.013527751, -5.0016365E-4, 0.0034888429, -0.008681381, -0.008131583, -0.010934875, 0.012516393, 0.008328425, -0.07216611, -0.0025334838, -0.017674994, 0.030218538, -0.007927954, 0.012509606, 0.010785547, -0.0019039308, -0.008145158, 0.01745779, -0.02307795, -0.018801741, 0.010357927, -0.009088639, -0.0017444214, -0.01037829, -0.031494614, 0.011674727, 0.0032648512, -0.0024248816, -0.009210817, -0.0016290317, 0.014131851, -0.0024995455, -0.013195157, 0.021666123, 0.029512625, -0.004666497, -0.0017562999, 0.01281505, 0.0077175377, 0.012937227, -0.019616257, 0.025752276, -0.013344485, 0.011376072, 0.013778893, 0.0046698907, -0.010154298, 0.018367333, 0.0034566016, -0.005077149, -0.0042354823, -0.014023248, -8.386968E-4, -0.005148419, -0.030137086, -0.022928622, 0.0030459499, -0.018326607, -0.0047886744, -0.0068589025, 0.010697308, -0.009977819, 0.008294486, 0.0053724106, 5.934936E-4, -0.037847836, -0.021218138, 0.019480504, -0.018733865, 0.005494588, 0.020661552, -0.01246888, -0.016860478, 0.025806578, -0.0016689091, -0.005990085, 0.011097779, 0.0060817185, -0.013785681, 0.02029502, -0.028888162, -0.0054878006, 0.0096045, -0.019969214, 0.034644075, -0.010018545, 0.035159934, 0.0049244273, -0.0037976801, 0.011084204, -0.014729162, -0.022005504, 0.0025640281, 0.028318001, 0.024788432, 0.025290718, -0.0027829292, -0.0020345927, 0.01132177, -0.026322437, -0.023417331, -0.0032495789, -0.0051959325, 0.006991261, 0.019331176, 0.009950669, 0.018340182, -0.003651746, 0.005277384, 0.033123646, 0.016154565, 0.0069301724, -0.004303359, 0.0047750995, -0.03228198, 0.0050975117, -0.021964777, 0.019059671, -0.015543678, 0.024856308, -0.01691478, -0.0073781563, 0.007785414, 0.008681381, 0.02393319, -0.018082252, 0.017851472, -0.014308329, 0.007228828, 0.020892331, -0.004978728, 0.014539108, 0.015747307, -0.019602682, -0.004819219, 0.004985516, -0.01983346, 0.0029797705, -0.02648534, -0.004540926, 0.016738301, -0.0038825255, 0.0029220756, -0.008104432, -0.016575398, 0.020159267, -0.009210817, 0.042680632, -0.016602548, -0.0018733864, 0.014769888, 0.028725259, 0.0025521496, 0.019018946, -0.021747574, 0.012550332, 0.015625129, -0.008735683, 0.03646316, -0.009923519, 0.013751742, -0.003953796, 0.007955105, 0.016846903, -0.010799123, -6.59673E-4, 0.009292268, 0.021435343, 0.027829291, 0.024530502, -0.022467062, 0.020240718, 0.010364714, 0.00409973, -0.004853157, -0.018883193, -0.0040759733, -0.01094845, -0.033720955, -0.019331176, -0.009475535, 0.0013914646, 0.007547847, -0.011885144, -0.0016561822, -0.009699526, 0.018340182, 0.002161861, 0.01825873, 4.683466E-4, -0.02594233, 0.014946366, 0.020498648, -0.009563774, -0.010656582, -0.012828625, -0.012149862, -0.04102445, -0.010860211, 0.0015552163, 0.021326741, -0.008206247, 7.763354E-4, -0.010459742, 0.0018920525, 0.018733865, -0.010826273, 0.0067095743, 0.00328182, 0.0068317517, 0.012638571, -0.01089415, -0.0047717053, 0.00634983, -0.005355442, 0.0017376338, -6.817328E-4, 0.0037331977, -0.0031392798, 1.5950935E-4, 0.012238101, -0.046508856, 0.02929542, 0.0024418507, -0.0044526868, -0.0016739998, -0.00857278, -0.01103669, -0.015041393, -0.0075410595, -0.03076155, -0.03790214, -0.005104299, 0.085361265, 0.040861547, -0.008952887, 0.0192633, -0.006590791, -0.0021601638, -0.013568477, -0.007846503, 0.003098554, -0.020770155, 0.036055904, -0.012828625, 0.032254826, 0.008002618, 0.019942064, -0.019724859, -0.016005237, 0.002029502, 0.0046970416, -0.018326607, -0.033150796, -0.011824056, 0.023607384, 0.039884128, 0.0013795863, -0.013079767, 0.022738568, 0.0025521496, -0.0012081985, 0.010676946, -9.1463345E-4, 0.0012480759, 0.01235349, 0.032173377, 0.002638692, 8.497267E-4, 0.034236815, 0.007547847, 0.03450832, 0.008056919, -0.0011649274, 0.022439912, 0.012618208, -0.0100524835, 0.0145662585, -0.032254826, -0.015720157, 0.015625129, 0.031223107, -0.03890671, 0.009176878, 0.0032648512, -0.028562356, -0.003453208, 0.030843, -0.017009806, -0.0031341892, 0.0038791317, -0.03746773, 0.02519569, -0.011600063, -0.029349722, 0.019629832, -0.010934875, 0.007106651, -0.021435343, -0.010622645, -0.0035363564, -0.026159534, 0.0025911785, 0.01312728, -0.018665988, -0.016018812, -0.010459742, 0.01694193, 0.0043983855, 0.018435208, -0.006682424, 0.006906416, -2.5389987E-4, -0.03746773, -0.0360016, 0.0019276876, -0.027150529, 5.786456E-4, 0.0054911943, -0.0063057104, 0.0033717563, -0.012496031, 0.017104832, -0.01037829, 0.003672109, -0.02032217, -0.01441693, 0.027992195, 0.024951335, 0.009570561, 0.008335212, 0.015760882, -0.0118376305, -7.9754675E-5, -0.013147644, -0.012896501, -0.013996097, -0.014226877, -0.008789984, -0.0051348438, 0.011152079, -0.020688703, -0.01593736, -0.019276876, -0.028019346, -2.572937E-4, 0.0032444883, 0.016588973, -0.007473183, 0.021679698, 0.010839849, -0.009896368, 0.0047479486, -0.0028270488, -0.0054097427, 0.025467196, 0.02926827, -0.0020736216, 0.04164891, -0.005229871, -0.018923918, 0.0022433125, 0.029404022, -0.0021788299, 0.017240586, -0.026186684, -0.018136553, -0.005022848, -0.02106881, 0.0093397815, 0.0015747306, -0.020213569, 0.029132517, -0.0145798335, 0.012964377, 0.022249859, 0.014213302, -0.009176878, -0.030137086, 0.010812698, -0.0039775525, 0.013758531, 0.020797305, -0.008667806, 0.010670158, -0.032553483, -0.011844418, -0.01983346, -0.016534671, -0.008708532, -0.015177146, 0.030055635, 0.008375938, 0.036626063, -0.0038587688, 0.029458323, 4.5180175E-4, -5.7535788E-5, 0.019928489, -0.028046496, -0.001375344, -0.017579967, 0.01642607, 0.0033276367, 0.029594077, -0.005996873, -0.008593142, 0.02055295, 0.0075410595, 0.004079367, 0.026091658, -0.0041031237, -5.7397917E-4, -0.023023648, 0.010127148, -0.028508056, -0.011233531, -0.01694193, -0.0019107185, 0.037169073, 0.0052129016, -0.014919216, -0.014267603, 0.015380775, -0.012882926, 0.009618075, -0.019996364, 0.018285882, -0.03377526, 0.0034498142, -0.015855908, -0.014294754, 0.0048837014, -0.015109269, 0.02408252, 0.0019175061, -0.024109669, -0.0023570054, 0.025779426, -0.009102215, -0.018883193, 0.028915312, -0.009584136, -0.02405537, -0.024381176, -0.0068622963, -0.025059938, -0.018774591, -0.008145158, -0.009801341, 0.012197375, -0.016955506, -0.047377672, 0.015177146, -0.001661273, 0.041703213, 0.019358328, 0.028725259, 0.023268003, 0.0037535606, -0.008952887, 0.0041404557, 2.4562745E-4, -0.0044934126, 0.017905774, 0.019195424, -0.02176115, -0.01258427, -0.0015407925, -0.0010724459, -0.034644075, -0.034155365, 0.032743536, 0.032987893, 0.021340316, -0.027598513, -0.0013176491, -0.028073646, -7.572452E-5, -0.013955371, -0.007676812, 0.0078600785, -0.043929555, -0.025032787, -0.0017036956, -0.022697842, 0.007398519, 0.019358328, -0.040209934, 0.008504903, -0.025507921, 0.011498249, -0.0027014776, -0.009855642, 0.0462102, -0.027096227, 0.01918185, 0.013147644, 0.004316934, 0.0015077027, -0.0017189678, 0.0062581967, 0.027041927, -0.010466529, 0.023525933, 0.0017333915, -0.009665588, 0.0044764434, 0.03649031, -0.0072831293, -0.0082809115, -0.014552684, -0.0089189485, 0.019629832, -9.400871E-4, 0.0011513521, 8.8154373E-4, -0.015122845, -0.012170224, 0.007934742, -0.018869618, 0.009204029, -0.030924452, 0.0058000316, -0.018353757, 0.020240718, -0.0016604245, -0.0010809305, 9.274663E-5, -0.010296838, 7.8481995E-4, -0.0066145477, 0.0024231847, -0.027584936, -0.020376472, -0.02387889, -0.0128422, 0.0012209254, -0.0056337346, 0.012516393, -0.005922209, -0.008823922, -0.023213701, 0.004673285, -0.019670557, 0.0065500652, -0.028100798, 0.0021533764, 0.009943881, -0.0068181767, -0.007303492, 4.3907497E-4, 0.023539508, -0.0073510054, -0.0044017793, 0.0014007976, 0.0019853825, 0.017118407, -0.015950935, 0.01874744, 0.011688302, -0.023213701, 0.01103669, 0.0066959993, 0.027530637, 0.017430639, -0.0049210335, -0.039368268, 0.0032037625, -0.017322037, 0.030625796, -0.01192587, 0.010025333, 0.032119077, 0.02393319, 0.028589508, 0.031657517, -0.0072424035, -0.027734265, 0.01665685, 0.0014729162, -0.031711817, -8.369999E-4, -2.793535E-4, -0.0016765451, 2.1540126E-4, -0.01052083, -0.031684667, -0.007588573, -0.021000935, -0.022752143, -0.009842067, 0.020539375, 0.030109936, 0.012937227, -0.0047343737, 0.0137381675, 0.007873653, 0.018530237, -0.02408252, 0.01725416, 0.02723198, 0.013622778, 0.018598111, 0.010561556, -0.037739236, 0.001272681, 0.011158868, 0.007269554, 0.01063622, 0.024924185, -0.019534806, -0.022344885, 0.0026098446, -0.0025148178, -0.012665722, -0.003027284, 0.031956173, -0.026132384, -0.0044153547, 0.010663371, 0.029566925, -0.020512225, 0.010649795, 0.012529969, -0.008559204, 0.004449293, -0.007880441, -0.023172976, 0.018014375, -0.024611954, 0.022942197, 0.019276876, 8.8239217E-4, 0.039694075, 0.02029502, 0.0059866915, 0.014186151, -0.010629432, 0.011932657, -0.015353624, 8.3784835E-4, -0.0026879024, 0.024666255, -0.034779828, 0.01874744, -0.024666255, 0.0100660585, -0.008185884, 4.7810384E-4, 0.0036755027, 0.03955832, 0.012115924, -0.04200187, 0.018543812, -0.013018679, 0.01639892, -0.010357927, -0.008980038, -0.032010473, 0.0069403537, 0.008986825, -0.007507121, -0.027340582, -0.02264354, -7.1694364E-4, -0.0218969, -0.0028355333, 0.016113838, 0.18527521, -0.01565228, 0.0019480505, 0.042762082, 0.0051925387, 0.006417706, 0.030082786, 0.026403889, -0.0062785596, 0.0036551398, 0.0010139026, 5.782214E-4, 6.2446215E-4, 0.0026336012, 0.016643275, -0.015557253, -0.023172976, -0.026281713, -0.008667806, -0.022222707, -0.007839715, 0.016317468, -0.006624729, -0.025725126, 0.019209, 0.0074935458, -0.007276342, 0.008355576, 0.023892466, 0.011199594, -0.01694193, 5.2604148E-5, 0.009828491, 0.0055658584, -0.024041792, -1.4847945E-4, -0.009183667, 0.0067469063, 0.014756313, -4.0640947E-4, 0.0034243604, -0.0026794178, -0.005474225, -0.004167606, 0.004537532, 0.020457923, -0.024964912, -0.0048260065, -0.0057083988, -9.570561E-4, -0.03890671, -0.0027354157, 0.025385745, 0.02539932, -0.0071881027, -0.016032387, 0.0026166323, 0.0026319043, -0.01433548, 3.109584E-4, 0.014213302, 0.036164504, -0.033503752, 0.028372303, 0.0010478407, 0.016317468, -0.02233131, 0.005939178, 0.011077416, -0.027272707, -0.007907592, -0.023403756, -0.01614099, -0.0016655152, -0.0020074423, -0.012855776, 0.0016196987, 0.0065229144, 0.008213035, 0.024041792, -0.030137086, -0.009665588, 0.022860745, -0.014308329, -0.032037623, -0.015000667, 0.0062581967, -0.008823922, -0.0091225775, -0.031141656, -0.0018139947, -0.029865582, -0.014959942, 0.006797814, 0.0021941022, -0.006882659, 0.029621227, 0.017552817, -0.013656716, 0.0011827449, -0.035377137, 0.02362096, 0.030435743, -0.008246973, -0.024489777, -0.0145798335, -0.002416397, 0.02081088, 0.0333137, -0.02668897, -0.010975601, -0.014118275, -0.009964244, -0.014009673, 0.018923918, 0.014213302, 0.023946766, -0.0039300392, 0.019032521, -0.02104166, 0.0066552735, -0.020715853, 0.021489643, -0.0040284595, -0.010819485, -0.033069342, -0.036273107, -0.0017817535, 0.010419016, -0.027788566, 0.023376605, -0.038580902, 0.0025334838, -0.011057053, 0.0068589025, -8.081524E-4, 0.024231847, 0.0029661953, 0.015082119, -0.0020956814, -0.016643275, -0.0033361213, 0.0052909595, 0.007106651, 0.003010315, -0.017851472, -0.007880441, -0.015082119, -0.0269469, -0.012489243, -0.020444348, 0.007894016, 0.014797038, 0.014702011, 0.042680632, 0.0052739903, -0.01539435, -0.04471692, -0.004282996, 0.041757513, -0.025467196, 0.01487849, 0.029512625, -0.02212768, -0.025263567, -0.0054674377, -0.17365478, 0.033965312, 0.004537532, -0.035838697, 0.017267736, 0.01665685, 0.026213836, -3.472298E-4, -0.0071134386, -0.010235749, 0.033938162, 0.017498516, -0.028915312, 0.0076496615, 0.008464177, 0.012835412, -0.016086688, 0.036843266, 0.046780363, 0.0051552067, 0.044906974, -0.019901337, -0.013249458, -2.199617E-4, 0.0105887065, -0.013120493, 0.01946693, 0.018068677, 0.003926645, -0.018475935, -0.04354945, -0.014742737, 0.016806178, 0.0062072896, -0.012726811, 0.0141047, -0.0048667323, -0.016819753, -0.025494346, -0.012502818, 0.03953117, -9.391325E-5, 0.018313032, -3.2517E-4, 0.006662061, 0.026960475, 0.035675794, -0.02565725, -0.0027048714, 2.876259E-4, -0.011199594, -0.038227946, 0.018285882, -0.010412227, -6.499158E-4, 0.02591518, 0.006051174, -0.0024859703, 0.0066858176, 0.006584003, -0.02880671, -0.007398519, 0.0047717053, -0.0038655566, -0.0022959167, -0.011152079, -0.020349322, 0.009081852, -0.015475801, 1.6714544E-4, -0.025236417, 0.01232634, 0.011919082, -0.003706047, 0.015299323, -0.027802141, -0.03906961, -0.0096452255, 0.009109003, 0.017389914, -0.0015093997, 0.033476602, -0.0019802917, 0.009380507, 0.0087017445, -0.015190721, 0.013168006, 0.0048972764, 0.01258427, -0.012563908, 0.0036212017, -0.030951602, -0.039205365, 5.6591886E-4, -0.010480104, 7.51306E-4, 0.003081585, 0.003451511, 0.013364848, -0.025494346, -5.2476884E-4, -0.015828758, -0.018638838, 0.011471098, 0.017539242, 0.012950802, -0.0035736884, 0.026281713, 0.012720022, 0.005514951, -0.012414579, 0.005701611, 0.011600063, -0.0014525533, -0.023498783, -0.0016171534, -0.02003709, -0.030924452, -5.0005758E-5, 0.009197242, 0.06271772, -0.010480104, 0.0137245925, -0.014199726, -0.015502952, -0.012733598, -0.09399513, 0.015163571, 0.015543678, 0.032227676, -0.028019346, 0.04059004, -0.0029475293, 0.019724859, -0.0129983155, 0.020132117, -0.0041913628, -0.02720483, 0.020905906, -0.0075139087, 0.0057491246, 0.007866866, -0.009977819, -0.009706314, -0.02210053, 0.029838432, -0.007276342, -0.014308329, -0.0012005625, -0.026403889, -0.028345153, 0.011342133, -0.023444481, 0.016113838, 0.007011624, 0.007527484, -0.0071881027, -0.024611954, 0.023919616, -0.040807243, -0.012387428, -0.040888697, -0.017091257, -0.02818225, 0.0074053067, -0.04300644, 9.7487366E-4, 0.014199726, 0.01295759, -0.017349187, -0.014376205, 0.0076836, -0.036354557, 0.016249591, -0.01567943, -0.01665685, -0.0066654547, -0.006753694, -0.027652813, -0.017620694, 0.014254028, 0.020430773, 0.025182115, 0.0056167655, -0.010527617, -0.019358328, -0.0014245543, 0.004449293, -0.013093342, 0.018055102, 0.019724859, 0.009909943, -0.0070184115, -0.0068555083, 0.014919216, -0.025222842, -0.015720157, 0.020376472, -0.028345153, -0.025046363, -0.02163897, 0.0076496615, -0.025480771, -0.013819619, 0.023281578, -0.043440845, 0.012706447, -0.02519569, 0.022738568, -0.018598111, 0.013527751, 0.021190988, 0.020457923, 0.018788166, -0.022344885, -0.031738967, -0.01513642, 0.018788166, -1.0934451E-4, 0.0037874987, -0.008253761, 0.008151947, 0.012217738, 0.018150128, -0.008735683, 0.0075546345, -0.0028474117, -0.009237967, -0.07401234, 0.026498916, -0.026987625, 0.0036619275, -0.0051416312, -0.020240718, -0.0061394135, 0.004815825, -0.0024876671, 0.021177413, -5.417379E-4, 0.022114106, -0.007880441, -0.007921167, -0.021082386, 0.019561956, -0.014172576, -0.0018479328, -0.007547847, -0.0011963202, -0.012407792, 0.018883193, 0.016684, 0.0026760239, 0.0050262418, 0.02207338, -0.0023570054, 0.0071541644, -0.020430773, -0.012231314, 0.0282094, -0.008532054, -0.0036890781, 0.00782614, 0.009482322, -0.024544079, -0.014226877, 0.0039945217, 0.01748494, 0.018394483, -0.005280778, -0.0145662585, -0.00991673, -0.0127946865, -0.009760615, 0.008586355, -0.024598379, 0.005114481, 4.4925642E-4, 0.004812431, 0.010357927, 0.007656449, -0.006051174, -0.019358328, 0.033069342, -0.009611287, 0.044852674, 0.011946233, -0.016208865, -0.0145798335, 0.035757247, 0.003193581, 0.018299457, -0.03404676, 0.00716774, 0.00276596, 0.012991528, -0.014321904, 0.010534405, -0.03029999, -0.027584936, -0.007642874, -0.0011818964, 0.035893, 3.3323033E-4, 0.012930439, 0.014511958, 0.0021262257, -0.017620694, 0.013894283, 0.011057053, -0.018041527, -0.029892731, 0.026919749, -0.005772881, 0.005297747, -9.859035E-4, 0.010351139, 0.011104566, 0.017702146, -0.023254428, 0.007303492, 0.028073646, 0.011715453, 0.013439512, 0.005355442, -0.011776541, -0.014254028, 0.012964377, 0.016236017, -0.01040544, -0.0017817535, -0.017471366, -0.017009806, -0.012937227, 0.010235749, -0.020281445, -0.01954838, 0.0127946865, 0.018706715, 0.0411602, 0.005705005, -0.017919349, 0.012876138, -0.03592015, 0.011077416, -0.020444348, -0.019996364, -0.008063707, 0.036843266, 0.0192633, 0.006224259, 0.042924985, 3.2283674E-4, 0.040399987, 0.010575131, 0.018883193, -0.026851872, -0.012434942, 0.0013125584, 0.021679698, -4.192556E-6, -0.025616525, 0.013792468, -0.016901204, 0.011966595, 0.007011624, 0.037603483, -0.01565228, 0.06570428, 0.037169073, -0.0049923034, 0.026906174, -0.017064108, 7.9754676E-4, 0.009550199, 0.003763742, -0.014620559, -0.008050132, 0.004870126, -0.009149728, 0.01691478, -0.030327141, 0.003818043, 0.00794153, 0.02444905, 0.004890489, -0.003709441, -0.009299056, 0.0040488224, -0.01771572, 0.018991794, 0.0096045, -0.01487849, -0.007099863, 0.02235846, 0.004958365, -0.0060240235, -0.011158868, 0.0011403222, -0.030571496, 0.010256113, -0.003305577, 0.03749488, 0.010554768, 0.004042035, 0.009149728, 0.009183667, 0.019222574, -0.015312898, -0.013704229, -0.017294887, -0.02519569, 0.021856176, -0.010127148, 0.0064109187, -0.031141656, -0.016588973 ], + "id" : "ae02dda5-2c18-4205-b696-4da51c1db2f6", + "metadata" : { + "source" : "movies.csv" + } + }, + "ff73f2fc-82ed-4ad3-8753-92a4e809deda" : { + "text" : "Stevens-Natalie Imani-Camryn Ray Cavaliero-Sandra Rosko-Arthur Horowitz-Reshma Gajjar-Candice Coke-Hunter Hamilton-Damian Gomez-Amanda Balen-Lou Becker-Dominic Chaiduang-Cindera Che-Chris Moss-Marissa Labog-Tiffany Daniels-Melinda Sullivan-Stephanie Landwehr-Britt Stewart-Clarice Ordaz-Nathan Prevost-Mecca Vazie Andrews-Scott Hislop-KC Monnie-Krystal Ellsworth-Sarah Mitchell-Khasan Brailsford-Morgan Larson-Becca Sweitzer-Gakenia Muigai-Michael Stein-Mario Diaz-Julie Schmid-Samantha Abrantes-Lexie Contursi-Eartha Robinson-Sybil Azur-Tara Nicole Hughes-Kayla Kalbfleisch-Martha Nichols-Anthony Marciona-Bill Prudich-Robert Roldan-Ryan Novak-Demian Boergadine-Gustavo Vargas-Robert Haynes-Jesse Houk-Ana Flavia Gavlak-Kristin Slaysman-Cameron Brinkman-Jordan Ray Fox-C.J. Stussi-Margaret Newborn-Nadia Tumanova-Crystal Nichol-Kristin Elliott-Andrea Lareo-Christopher Aber-Anna Lunberry-Shannon Leann-Jenna Curtis-Noah James-Tommy Cooley-Morgan Cohen-Jeremy Nathan Tisser-Patty Tobin-Heather Turman-Ottavio Taddei-April Martucci-Trent Kerpsack-Kaye L. Morris-Vince Donvito-Steffen Dziczek-Melvin LaThomas Brimm-Kelly Kennedy-Destinee Handly-Tommy Otis-Doran Butler-Matt Cady-Carol Connors-Patrick Cook-Aaron 'Deuce' Cooke-Bubba Dean Rambo-Nick Drago-Shaun Evaristo-Dana Fukagawa-Daniel Gaymon-Liz Imperio-Casey Johansen-Cris Judd-Yoori Kim-Bradley M. Rapier-Dana Wilson-Terrance Yates-Tracy Shibata-Dominique Domingo-Asiel Hardison-Corey Anderson-Nick Baga-Leah Adler-Noel Bajandas-Denzel Chisolm-Montana Efaw-Natalie Gilmore-Shannon Holtzapffel-Galen Hooks-Jeremy Hudson-George Lawrence Jr.-Scott Myrick-Cassidy Noblett-Brittany Parks-V�_ctor Rojas-Tony Bellissimo-Ryan Ramirez-Catalina Cat Rendic-Bryan Tanaka-Ava Bernstine-Quinn Lipton-Monie Adamson-Matthew Aylward-McKenzie Anderson-Pamela Chu-Mallauri Esquibel-Michael Higgins-Chris Jarosz-Matthew Kazmierczak-Paul Kirkland-Megan Lawson-Michael Munday-Brandon O'Neal-Chelsea Thedinga-Danny Valle-Emily Williams-Deniz Altunay-Holly Houk-Clarence Robinson-Dapo Torimiro-Sasha Fine-Eren Kayak۱ran-Ali Arda �_zdeniz-Phillip E. Walker-Susie Ganiere-Lynn Moore-Nilla Elizabeth Watkins-Andres Perez-Molina-Milica Govich-Frederick Keeve-Amanda Fields,dancing-dance-jazz-musical-ambition-casting-coffee shop-jazz club-traffic jam-hollywood-los angeles california-pianist-pier-audition-planetarium-aspiring actor-movie set-sunset-one woman show-pool party-griffith observatory,/uDO8zWDhfWwoFdKS4fzkUJt0Rf0.", + "embedding" : [ 0.0099610295, -0.022583822, 0.0076422775, -0.0405027, -0.018083522, 0.040338054, 1.4052718E-4, 0.0010667632, -0.014557373, -0.031035606, 0.01254047, 0.022391737, 0.017617028, 9.1412343E-4, -0.0016001448, -0.00515202, 0.025684638, -0.028154315, 0.0064142994, -0.038307432, -0.014310405, -0.011593761, -0.008986879, 0.0237775, -0.011669223, 0.0073404284, 0.033505283, -0.01510619, -0.014584813, -0.022570102, 0.0064211595, -0.009741503, -0.006949396, -0.044509064, -0.020717844, -9.913008E-4, 0.0038417194, -0.020196468, 6.628681E-4, -0.001090774, -0.0019740264, 0.001510962, -0.021952683, -0.005042257, -0.006297676, 7.760616E-4, 0.010105094, -0.0037182355, -0.01865978, 0.034959648, 0.0482959, 0.027742703, -0.018056082, -0.017520985, 7.1951845E-6, 0.015270835, -0.026823433, 0.0042224615, -0.009714062, 0.0044488483, 0.0061090197, -0.0096042985, -0.023640295, -0.00209065, -0.016519394, -0.029883089, -0.015668727, 0.002831553, -0.009528836, 0.015161071, 0.024587004, -0.0033889455, 0.01092832, 4.8150122E-4, 0.00514173, -0.021115737, -0.020182747, -0.010057073, 0.0018368221, 0.0062187836, 0.0057762996, -0.008911417, -0.014529931, 0.008842815, 0.0049119126, 0.014502491, -0.015558964, 0.027509455, -0.01608034, 0.0040440955, 0.0147768995, 0.038773924, -0.015778491, -0.0011370804, -0.0064211595, 0.023571692, -0.027152725, 0.026549026, -0.016011737, -0.02381866, -0.007587396, -0.006273665, -0.005505321, -0.017987479, -0.004699246, 0.011017502, -0.004990805, -0.011113546, 0.016546834, 0.013939953, 0.004685526, -0.017973758, 0.009117223, -0.029553799, -0.023009155, -0.0151336305, 0.029142186, -0.029059863, -0.021115737, -0.03023982, 0.027646659, 0.036468893, 0.0096042985, -0.030294701, 0.029773327, 0.035288937, -0.018714663, -0.010681352, -0.0074090306, -0.002251865, 0.022062445, -0.01319905, 0.016491953, 0.0076697185, -0.013315674, 0.0430547, -0.02831896, 0.00771774, -0.02347565, -0.020223908, 0.035316378, 0.033560164, -0.037731174, -0.021129457, -0.033340637, 0.0061844825, 0.017493544, 0.0041298484, 0.005844902, 0.010722513, 0.011415395, 0.0119230505, -0.0016910426, 0.016560555, 0.008390041, 0.0029396014, -0.003574171, 0.007985288, -0.004249902, -0.023942145, -0.0075462344, -0.0015126771, 0.0012082551, -0.020210188, 0.010111954, 0.023214962, -0.0016130076, -0.022638705, -0.010873438, -0.00706602, -0.007175783, 0.0106744915, -0.05430545, 0.010386363, -0.0121014165, 0.0052960846, 0.0035878916, -0.0065069124, -0.03290158, -0.016656598, 0.008060751, 0.003725096, 0.03471268, 0.04338399, 0.0020614942, -0.001447505, 0.027921068, -0.011532019, 0.0077451807, -0.01349404, -0.0014938115, 0.0192772, 0.017205415, -0.0018042361, -0.63399345, -0.031447217, 0.0042910636, -0.02316008, 0.018234447, 0.009357331, 0.005182891, -0.0070934608, -0.020361112, 0.0076902993, -0.037703734, 0.02479281, 0.023297284, -0.008328299, -0.018261887, -0.022268252, 0.017932598, -0.009172105, 0.019729974, 0.007007708, -0.007889246, 0.0062599448, 0.013987975, 2.373205E-4, 0.024628166, 0.005402418, -0.027207606, -0.0173975, 0.005217192, 0.008513525, -0.02053948, 0.024490962, 9.1240834E-4, 0.0091858255, 0.041957065, 0.0049016224, -0.020141587, 0.05367431, 0.015215953, 0.026754832, -0.040996633, -1.5371165E-4, -0.0049290634, 0.002186693, -0.0016078625, 0.021390146, 0.0041881604, -0.006681848, -0.013336254, -0.012307223, 0.0012451287, -9.612874E-4, 0.008252837, -0.012808018, -0.006987127, -0.00547788, 0.01835793, -0.03051423, 0.02831896, 0.0070317187, -0.02058064, 0.013624383, 0.011497717, 0.0035878916, -0.006781321, 0.034191303, -0.0076422775, -0.0021798327, -0.0041572894, -0.015476641, 0.0018385372, 0.016711479, -0.0128766205, 0.010077653, 0.010235438, 0.016148942, 0.030925842, 6.1956304E-4, 0.0017733652, 0.022995435, -0.0053818375, 0.0023581984, 0.007429611, 0.0065206327, 0.0056768265, 0.002761236, -0.039953884, -0.0044488483, 0.007875524, -0.0015667012, 0.01254733, 0.020429716, 0.014282964, -0.0045894827, 0.0075805355, 0.009233847, 0.0020803597, 0.0173975, 0.025533713, -0.0662971, -0.012053395, -0.016807523, 0.040475257, -0.02154107, 0.0044454182, -0.002800682, -0.010743094, -0.009453374, 0.021403866, -0.0026943488, -0.027632939, -0.009082923, -0.02701552, -0.020127866, -0.016533114, -0.027495734, -3.0785208E-4, 0.016299866, -0.01864606, -0.011525159, 0.006527493, 0.01511991, 0.009686621, -0.011237029, 0.0011199298, 0.02922451, -0.0064417403, -0.0040029343, 0.009439654, 0.011429115, 0.0064486004, -0.014282964, 0.029691003, -0.015778491, 0.011072384, -0.013741007, 0.009028041, -0.005059407, 0.008095052, -0.013789029, -0.017781673, -0.0064931917, -0.016560555, -0.0060404176, -0.006266805, -0.005172601, -0.04371328, 0.005217192, -0.0069425358, -0.009830685, -0.012938363, 0.015215953, -0.009631739, 0.025176983, 0.0042979238, 0.0035192894, -0.031117927, -0.026302058, 0.0014157766, -0.021829199, 0.0020117576, 0.022707306, -0.0049667945, -0.015023867, 0.0128148785, -0.011977932, -0.010887158, -0.01731518, -0.009178965, -0.008396901, 0.022748467, -0.019236038, 0.008136213, 0.016752642, -0.018467695, 0.042917494, -0.0122797815, 0.028977541, -0.0065343534, -0.0102766, -0.0017733652, -0.018769544, -0.031063046, -0.01966137, 0.030761197, 0.040585022, 0.005824321, -0.0062222136, -0.009398492, 0.008931998, -0.014968986, -0.013295094, -3.755967E-4, -0.0023873542, 0.0048776115, 0.023187522, -7.7005895E-4, -0.0024902574, -0.009913009, -0.007848084, 0.04566158, 0.023338446, -0.0019448705, 0.0024353757, 0.010797976, -0.043905366, 0.0011182148, -0.031117927, 0.0102011375, -0.010427524, 0.021403866, -0.018234447, -0.012375825, 0.0061021596, 5.8204623E-5, 0.01737006, -0.007498213, 0.0057042674, 0.0014500776, 0.018920468, 0.0034369668, 0.003978924, 0.030047733, 0.012341524, -0.023654016, 0.001090774, 0.008479224, -0.021033414, 0.0137684485, 0.001273427, -0.0036702142, 0.0036633539, 0.009940449, 0.004754128, -0.0035535905, -0.01834421, 0.0074776323, -0.0068087615, 0.044234656, -0.007841224, -0.0065240627, -0.0026549026, 0.020704124, 0.0062187836, 0.009453374, -0.01734262, 0.023132639, 0.02152735, -0.0027269349, 0.046786655, -0.012320943, 0.019784855, -0.008074471, 0.003409526, 0.008794794, -0.005440149, -0.0010684782, 0.014077158, 0.030459346, 0.023297284, 0.010969481, -0.013473459, 0.02316008, -0.0038794507, 0.005844902, 8.85825E-4, -0.0102011375, 0.008733052, -0.010105094, -0.036139604, -0.037566528, -0.015600125, -8.0607506E-4, 0.021705715, -0.010516707, -0.025245585, -0.012739416, 0.012958943, 0.011552599, 0.004788429, 0.014255524, -0.022556381, 0.01543548, 0.023612855, -0.018385371, -0.0145985335, 0.0052480632, -0.00771774, -0.041929625, -0.019976942, 0.0068430626, 0.036798183, -0.019990662, 0.019249758, -0.02800339, -0.001867693, 0.015558964, -0.022597542, 0.021815479, 0.030047733, 0.012602212, 0.008266557, -6.264232E-4, 6.933103E-4, 0.016944727, -0.018179566, 0.011017502, -0.009405352, -3.6402006E-4, -0.009775804, 0.0074776323, 0.0024336607, -0.049722824, 0.012773717, -0.005244633, -0.021170618, -0.007621697, 0.010873438, 0.0068259123, -0.028181756, -0.017726792, -0.029526358, -0.027715262, 0.0045140204, 0.0855057, 0.04088687, 0.0015675587, 0.0205532, -0.0073404284, 0.010324621, -0.0036633539, -0.013068707, -0.0068567833, -0.03281926, 0.020141587, -0.010564729, 0.00579002, 0.0038348592, 0.01741122, -0.0030682303, -0.005632235, -7.8718266E-8, 0.0048158695, -0.0024233703, -0.031090487, -0.023997026, 0.023105199, 0.038362313, 0.0052343425, -0.005110859, 0.026507864, 0.0048090094, 0.0031951442, 0.0111478465, -0.015984297, 0.01767191, 0.0061158803, 0.014639695, -0.009021181, 0.015366877, 0.030404465, 0.0054572998, 0.03891113, 1.5489076E-4, 0.0052480632, -0.004730117, 0.010475546, 0.008335159, 0.016190104, -0.029965412, -0.0047129667, 0.020484596, 0.033011347, -0.022775909, 0.009034901, 0.017960038, -0.0103177605, -0.033587605, 0.021966403, 0.011682943, -0.01414576, 0.013068707, -0.009947309, -0.0019465855, 0.00482273, -0.023077758, 0.0040715365, -0.012025954, -0.006599525, -0.009810105, -0.03087096, 0.0016919001, -0.027235046, -0.0045414614, 0.013672405, -0.011175288, -0.0154903615, 0.0050971387, 0.011854448, 0.010653911, 0.02927939, 0.007875524, 0.0076285573, 0.01636847, -0.04563414, -0.028758014, 0.011538879, -0.0186735, 0.0029687574, 8.729621E-4, -0.011840728, 0.020210188, -0.017081931, 0.01415948, -0.0122180395, 0.0063902885, -0.031556983, -0.023118919, 0.026260896, 0.010839137, 0.013425438, 0.008136213, -0.013747867, 0.00675045, -0.001463798, -0.03281926, -0.006362848, -0.020155307, -0.021623392, -0.013391136, 0.0011876745, 0.004740407, -0.020690404, -0.022103608, -0.011237029, -0.01835793, 0.017452383, -0.0017562147, 0.0099610295, 0.005402418, 0.010228578, 0.021788038, -0.020649241, 0.021307822, 0.01187503, -0.006342267, 0.021266662, 0.021280382, -0.004767848, 0.03858184, -0.002505693, -0.016203824, -1.7547139E-4, 0.019181157, 0.0020460587, 0.020827608, -0.022926833, -0.021376425, -0.016244985, -0.015915696, 0.009069202, 0.009302449, -0.0015478357, 0.005083418, -0.0088290945, 0.018783264, 0.013864491, 0.011998513, -0.01957905, -0.024340037, 0.01061275, -0.0237775, 0.012478728, 0.013898792, 0.0072649657, 0.01610778, -0.020457156, 8.978304E-4, -0.0058071706, -0.019826017, -0.016176382, 0.005632235, 0.017822834, 0.010461825, 0.031117927, 0.010441245, 0.031721625, 0.0041950205, 0.016203824, 0.031310014, -0.01769935, -0.016697759, -0.017863996, 0.005217192, 0.020210188, 0.019414404, 0.003889741, 0.018536296, 0.0011713814, 0.017658189, 0.010715653, 0.0044900095, 0.0034575474, -0.03438339, -0.043548632, 0.0068979445, -0.02960868, -8.313721E-4, -0.019222317, -0.006366278, 0.02475165, -0.008348879, 1.637876E-4, -0.0053235255, 0.035782874, -0.00933675, 0.013596943, -0.014571093, 0.02829152, -0.04080455, -0.015723608, -0.0147768995, -0.01352148, -0.0044282675, -0.01543548, 0.030404465, 2.8148314E-4, -0.022748467, -0.0022707307, 0.027783863, -0.019181157, -0.025273025, 0.020512037, -0.014859222, 0.0032517412, -0.011799566, -4.8192998E-4, -0.024641886, -0.021760596, -0.0075668152, -0.011127266, -0.010070793, -0.02542395, -0.038526956, 0.015860813, -0.0030082036, 0.01929092, 0.013349975, 0.03515173, 0.015353157, 0.010976342, -0.020004382, 0.010338342, -0.0012708545, -0.008307719, 0.02539651, 0.03441083, -0.019016512, -0.012513029, 0.011099825, -0.013103007, -0.044618826, -0.032023475, 0.028181756, 0.027783863, 0.015696168, -0.040996633, 0.0045277406, -0.02605509, 0.0321058, -0.011291911, 0.006681848, 0.012060255, -0.0205532, -0.018426534, 0.009082923, -0.0077314605, 0.015394319, 0.004736977, -0.023997026, 0.015092469, -0.006530923, 0.0070591597, -0.019002791, -0.0076148366, 0.039679475, -0.029855648, 0.012170019, 0.011195868, 0.020731565, -0.0070317187, 0.010749954, 0.006342267, 0.03312111, -0.0016627442, 0.006688708, 0.018508855, 0.0018059511, 0.009281869, 0.008897697, -0.014831781, -0.01349404, -0.017177975, -0.0077726217, 0.022913113, -0.012917781, 0.015627567, 0.018248167, -0.008307719, 0.0060747187, 0.007457052, -0.017191695, 0.0075393743, -0.041380808, -0.0020683543, -0.01738378, 0.02573952, -0.01255419, -0.013404856, -0.005272074, -0.001800806, -0.001173954, 0.0011971073, -0.0033306335, -0.031145368, -0.025190704, -0.04214915, -0.010098234, -0.01963393, -0.009947309, 0.007361009, -0.002539994, -0.0032448808, -0.014968986, 0.00930931, -0.007134622, -0.0014689432, -0.017781673, -0.0020151876, 0.02278963, -0.0057522887, -0.011429115, 0.0036153323, 0.032956466, -0.0025622896, -0.0078823855, -0.008424342, 0.013130448, 0.040694784, -0.023242403, 0.012451287, 0.01126447, -0.042341236, 0.0027475154, 0.014845502, 0.026576467, 0.022227092, -0.003766257, -0.014900384, -0.008101912, -0.012574771, 0.020512037, -0.0048021493, -0.0012279782, 0.026795993, 0.015600125, 0.037566528, 0.03515173, -0.015668727, -0.014118319, 0.008191095, -0.008808514, -0.025863005, 0.009686621, 0.015161071, 0.00579345, -0.0027852466, -0.012629652, -0.030184938, 0.0018505425, -0.023311004, -0.027152725, -0.006249654, 0.0206218, 0.024312597, 0.007525654, 0.0065412135, 0.017246576, 0.007889246, -0.0018779833, -0.02218593, 0.0036530637, 0.029773327, 0.0076079764, 0.0289501, 0.0064177294, -0.022350576, 3.9360474E-4, 0.013253932, 0.018412812, 0.025355348, 0.018879307, -0.015572684, -0.010839137, 0.0018882737, 0.0042979238, -0.019798575, -0.0048913322, 0.028085712, -0.032956466, -0.008767352, 0.010996922, 0.012389545, -0.0059683854, 0.01959277, 0.004692386, -0.013459738, -0.001398626, -0.01095576, -0.013397996, -6.9416786E-4, -0.017617028, 0.019784855, 0.0014054863, 0.014042856, 0.030459346, 0.028538488, 0.0026737682, 0.0053029447, -0.01830305, 0.007498213, -0.022460338, 0.0022758758, 0.0017596447, 0.019181157, -0.017424941, 8.579554E-4, -0.011216449, 2.902728E-4, -0.0049462137, -0.007587396, 0.005519042, 0.021445027, 0.0023376176, -0.03860928, 0.00836946, -0.019139996, 9.698627E-4, -0.015408039, 0.0010821987, -0.018947909, -0.014763179, -0.014516211, -0.0022947413, -0.030102616, -0.0077589015, 5.7154155E-4, -0.022583822, -0.008911417, 0.004795289, 0.18495135, 0.0010607605, -0.010221718, 0.03954227, 0.0064417403, -0.018042361, 0.0353987, 0.029416595, -0.0085958475, 0.02609625, 0.0071620625, -7.0188555E-4, 0.007854944, -0.0011808142, 0.032983907, -0.022281973, -0.025204424, -0.019798575, -0.014337846, -0.033532724, -0.011971072, -8.686745E-4, -1.076196E-4, -0.018604899, 0.007127762, 1.3849056E-4, -0.012581632, 0.027180165, 0.0064897616, 0.006589235, -0.010502987, -0.014982706, 0.013267652, -0.0051931813, -0.01479062, -0.018248167, -0.0014535077, 0.0026600477, 0.022172209, 0.0057454286, -0.021733155, -0.010077653, -0.017150532, -0.014927824, -0.0069391057, 0.031337455, -0.040255733, -0.008451783, -0.015723608, 0.015311996, -0.033834573, 0.0075805355, 0.018412812, 0.020223908, -0.012416986, -9.561422E-4, 0.008204815, 0.006362848, -0.010894019, 0.0077657616, 0.018220726, 0.031117927, -0.014914104, 0.01731518, 0.006012977, 0.005663106, -0.026727391, -0.0016781797, -0.009028041, -0.027207606, -0.016162662, -0.022721026, 0.003725096, 0.009768943, -0.006174192, -0.02284451, 0.006362848, 0.01741122, 0.005910074, 0.026206015, -0.03726468, -0.004321934, 3.095671E-4, -0.013734147, -0.022611262, -0.019345801, 0.015737329, -0.028373843, -6.2277875E-5, -0.015229673, -0.012211179, -0.027495734, -0.0042293216, 0.0015538383, 0.008376321, -0.003407811, 0.028483605, 0.0044282675, 0.0010024486, 0.0015066743, -0.035865195, 0.031255133, 0.024724208, 0.0044762893, -0.025780682, -0.027440853, 0.0011379379, 0.013583222, 0.024545843, -0.010564729, -0.020045543, -0.0068945144, -0.011154707, -0.012396405, -8.870041E-5, 0.031364895, 0.0056150844, -0.025012339, 0.023050318, -0.002893295, -8.2451187E-4, -0.02089621, 0.0042944937, 0.015078749, 7.764904E-4, -0.02476537, -0.02409307, 0.0037045153, -0.015696168, -0.027715262, 0.019784855, 0.011552599, 0.018824425, -0.012787438, -0.003145408, -0.0151336305, 0.019194877, -0.0083557395, 0.012121997, -0.017438661, -0.0076697185, -0.02285823, 0.018179566, 0.0065206327, 0.005107429, -0.030184938, -0.0024250853, 1.2637798E-4, -0.026590187, -0.03858184, -0.023228683, -0.0044762893, 0.012650234, 0.023352167, 0.04316446, -0.0019997521, -0.028456165, -0.033313196, -0.021431306, 0.04368584, -0.028044552, 0.035563346, 0.01870094, -0.00803331, -0.0141869215, -0.015078749, -0.17595075, 0.02283079, 0.0144201685, -0.02796223, 0.008472363, 0.018385371, 0.02925195, -0.00289501, 0.009734643, -0.0071895034, 0.025972767, 0.009295589, -0.030322142, 0.012410126, -0.001864263, 0.006263375, -0.02053948, 0.025698358, 0.039953884, -0.008143073, 0.031447217, -0.0063216863, -0.009082923, -0.0015409754, -0.005371547, 0.008390041, 0.011497717, 0.003975494, -0.0011233599, -0.0076148366, -0.03441083, 0.0077040195, 0.0056528156, 0.008218535, -0.022048725, 0.0073747295, -0.020484596, -0.026809713, 8.0982674E-5, -0.006043848, 0.024367478, 0.003280897, 0.012067115, 0.013089287, 0.02283079, 0.011799566, 0.029032422, -0.020072984, 0.017946318, -0.019908339, -0.006945966, -0.041627776, 0.037923258, -0.013542061, -0.0065515037, 0.02281707, 0.008945718, 0.011319352, 0.0085341055, -0.011518298, -0.017575866, -0.017081931, 0.0068705035, -2.7698113E-4, -0.005817461, -0.012732556, -0.011422255, 0.0030459347, -0.046182957, 0.005759149, -0.022158489, 0.018056082, 0.0048638913, 0.0060507082, 0.023846101, -0.030651433, -0.033889454, 0.020786446, -0.01317847, 0.0027783865, -0.0065377834, 0.049174007, 5.6896894E-4, 0.008005869, 0.001494669, 0.0021009403, 0.010324621, 0.0061982027, 0.007909826, -0.0041332785, 0.006465751, -0.034191303, -0.02601393, -0.0064177294, -0.0021026554, -1.7986621E-4, 0.0021283813, 0.008643868, 0.01413204, -0.00998161, 0.005083418, -0.026137413, -0.020855049, 0.015037588, 0.019181157, 0.007532514, 0.0072855465, 0.028785454, 0.028565928, -0.0059683854, -0.019894619, 0.013912513, 0.017534705, 0.010461825, -0.0038039882, 0.012910921, -0.018893028, -0.027687822, 0.004016655, 0.015531523, 0.06712033, -0.0015564109, -0.0033940906, -0.009954169, 0.0070591597, -0.009823825, -0.08457271, 0.0014329271, 0.010461825, 0.043905366, -0.03309367, 0.050655816, -0.0173289, 0.026576467, -0.02608253, 0.03441083, 0.0032208702, -0.031694185, 0.007114041, 0.0068259123, -0.0029430315, -0.0022467198, -0.016711479, -0.022775909, -0.016958447, 0.0167252, -0.0050045257, -9.072632E-4, 0.01094204, -0.007470772, 0.00866445, 0.026137413, -0.027797583, 0.01993578, 0.013123588, 0.010873438, -0.01256791, -0.003924042, 0.021047134, -0.03740188, -0.031611864, -0.027111564, -0.016587995, -0.0379507, 0.0068053314, -0.04601831, 0.009398492, 0.013164749, 0.008630148, -0.009364191, -0.019400682, 0.010619611, -0.034273624, 0.029910529, -0.019043952, -0.02609625, -0.009062341, -0.01510619, -0.037703734, -0.013370556, 0.012327803, 0.019057672, 0.01768563, 0.014818061, -0.012725696, -0.036084723, -0.0030596552, 0.00865759, -9.698627E-4, 0.016656598, 0.014818061, 0.008492944, -0.0024919724, -0.007841224, 0.0036256227, -0.023859821, -0.010763675, 0.014612255, -0.038719043, 0.0014226367, -0.010818556, 0.012643373, -0.034218743, -0.01734262, 0.02600021, -0.029745884, 0.007052299, -0.03498709, 0.023571692, -0.016903566, 0.0037731172, 0.001963736, 0.0065789446, 0.024175392, -0.007484493, -0.04385048, 1.2226455E-5, 0.0340541, -0.020182747, -0.005831181, -0.008842815, 0.009233847, -0.013617523, -0.0060335575, -0.0036702142, 0.0022604403, -0.006712719, -1.3656112E-4, -0.072004795, 0.028977541, -0.021143178, -0.006949396, -0.016862404, -0.007463912, 0.0014080588, 0.01643707, -0.0074776323, 0.011868169, -0.003927472, 0.01352148, 3.6637826E-4, 0.001987747, -0.0043871063, 0.021760596, 0.00868503, -0.015366877, -0.005090278, 3.7966992E-4, -0.020676684, 0.02192524, 0.026109971, 0.0018351071, 0.024655607, 0.023297284, -0.002124951, 0.0049222033, -0.017809113, -0.0070248586, 0.029004982, -0.012890341, -0.0012691395, 0.007553095, 9.484245E-4, -0.030322142, 0.0040646764, 0.0024405208, 0.014612255, 0.003339209, -0.009158385, -0.014543653, -0.0034712679, -8.815374E-4, -0.0060644285, 0.024394918, -0.009213267, 0.006558364, 5.2737887E-4, 0.016697759, 0.023873542, 0.0042258915, 0.0036427733, -0.019085113, 0.011072384, -0.018069802, 0.048954483, -0.0045071603, -0.008787933, -0.0067984713, 0.022103608, -0.0013300239, 0.013795889, -0.019208597, 0.009034901, 0.010173696, 0.0088908365, -0.0018316769, 0.002251865, -0.03243509, -0.027934788, 0.0026206016, -0.004730117, 0.032654617, 0.006650977, 0.011429115, 0.01610778, 0.01480434, 0.0069253854, 0.009103503, 0.030102616, 0.006654407, -0.01737006, 0.03707259, -0.010413804, 0.011820148, -0.0061330306, 0.017109372, 0.015613846, -0.008259697, -0.0068602134, 0.004709536, 0.0135283405, -0.001159376, 0.014722018, 0.010118814, -0.023612855, -0.014900384, 0.011799566, 0.03474012, -0.0030082036, -0.0020186177, -0.0072238045, -0.015051308, -0.023379607, 0.014379007, -0.023681456, -0.011278191, 0.013734147, 0.011408535, 0.035179175, 0.0026686229, -0.024573283, 0.0048776115, -0.020868769, 0.008074471, -0.0076971594, -0.010050212, -0.007992148, 0.033615045, -0.0054504396, 0.005865482, 0.04349375, -0.010036492, 0.057076976, 0.009000599, 0.014022276, -0.02409307, 0.007450192, -0.0021438166, 0.0016798947, -0.0023993596, -0.023132639, 0.014667136, -0.018467695, 0.013734147, 0.013301954, 0.0072169444, -0.020786446, 0.07244385, 0.026768552, -0.008849675, 0.018742103, -0.01350776, 0.031035606, 0.026288338, 0.009014321, -0.021280382, -0.0048981924, -0.008561546, -0.013741007, -0.0069082347, -0.030075176, 0.015339437, 2.6797707E-4, 0.02542395, 0.017836554, -0.007944127, -0.0076697185, -0.003117967, 0.0047747083, 0.024230273, 0.019455565, 0.0057145576, -0.007868664, 0.0076971594, -0.007834364, 0.0016961878, -0.0391581, -0.001833392, -0.017863996, -4.5105902E-4, -0.004352805, 0.013267652, -0.008733052, -0.008067611, 0.0065000523, 0.024971176, 0.013356836, -0.009864987, -0.02283079, -0.025561154, -0.0135900825, 0.031694185, -0.010797976, -0.012348384, -0.02380494, -0.016286146 ], + "id" : "ff73f2fc-82ed-4ad3-8753-92a4e809deda", + "metadata" : { + "source" : "movies.csv" + } + }, + "8986d31e-ac18-4afb-bc12-92f06de7e408" : { + "text" : "53,9725,Daniel Craig-Christoph Waltz-L��a Seydoux-Ralph Fiennes-Naomie Harris-Ben Whishaw-Monica Bellucci-Dave Bautista-Andrew Scott-Rory Kinnear-Jesper Christensen-Alessandro Cremona-Stephanie Sigman-Tenoch Huerta Mej�_a-Adriana Paz-Marco Zingaro-Ian Bonar-Pip Carter-Simon Lenagan-Alessandro Bressanello-Marc Zinga-Brigitte Millar-Adel Bencherif-Peppe Lanzetta-Francesco Arca-Matteo Taranto-Emilio Aniba-Dai Tabuchi-George Lasha-Sargon Yelda-Andy Cheung-Antonio Salines-Nigel Barber-Patrice Naiambana-Stephane Cornicard-Gary Fannin-Sadao Ueda-Wai Wong-Joseph Balderrama-Eiji Mihara-Junichi Kajioka-Victor Schef��-Tristan Matthiae-Detlef Bothe-Bodo Friesecke-Noah Saavedra-Francis Attakpah-Michael Glantschnig-Marlon Boess-Lara Parmiani-Amra Mallassi-Ziad Abaza-Derek Horsham-Nari Blair-Mangat-Pezhmaan Alinia-Judi Dench-Kim Adis-Steve Barnett-Romeo Visca-Domenico Fortunato-Taylor Murphy,spy-based on novel or book-secret agent-sequel-mi6-british secret service-united kingdom,/672kUEMtTHcaVYSVY4eiHEliHFa.jpg,/8lBViysvNJBPkl6zG1LVAaW3qhj.jpg,37724-10764-36557-140607-177677-286217-36669-714-87101-710-131634-36643-135397-207703-102899-281957-700-122917-76341-168259-127585\r\n315635,Spider-Man: Homecoming,Action-Adventure-Science Fiction-Drama,en,Following the events of Captain America: Civil War Peter Parker with the help of his mentor Tony Stark tries to balance his life as an ordinary high school student in Queens New York City with fighting crime as his superhero alter ego Spider-Man as a new threat the Vulture emerges.,117.558,Marvel Studios-Pascal Pictures-LStar Capital,7/5/17,175000000,880166924,133,Released,Homework can wait. The city can't.,7.345,20181,Tom Holland-Michael Keaton-Robert Downey Jr.-Marisa Tomei-Jon Favreau-Gwyneth Paltrow-Zendaya-Donald Glover-Jacob Batalon-Laura Harrier-Tony Revolori-Bokeem Woodbine-Tyne Daly-Abraham Attah-Hannibal Buress-Kenneth Choi-Selenis Leyva-Angourie Rice-Martin Starr-Garcelle Beauvais-Michael Chernus-Michael Mando-Logan Marshall-Green-Jennifer Connelly-Gary Weeks-Christopher Berry-Jorge Lendeborg Jr.-Tunde Adebimpe-Tiffany Espensen-Isabella Amara-Michael Barbieri-Josie Totah-Hemky Madera-Zach Cherry-Kirk R. Thatcher-Yu Lew-Sondra James-Bob Adrian-Gary Richardson-Stan Lee-Joe Hang-Wayne P��re-Chris Evans-Alexa Laraki-Liza Fagin-Kerry Condon-John Penick-Ethan Dizon-Amy Hill-Miles Mussenden-Martha Kelly-Kevin LaRosa Jr.", + "embedding" : [ 0.008490792, -0.022175632, -0.0071048145, -0.04182152, -0.014613312, 0.05465863, -0.006263809, -0.0038585332, -0.029980164, -0.039991494, 0.03364022, 0.024328606, 0.010367916, 0.004494333, 0.019188382, 0.00617298, 0.01719688, -0.019766994, 0.0020100032, -0.036412172, -0.0031268585, -0.002309401, -0.014384558, 0.007932364, -0.005368979, 0.008114021, 0.03129886, -0.010549573, -0.018179175, -0.011108001, 0.013281159, -0.018663594, -0.006754956, -0.026293196, -0.0030074357, 0.0023430414, 0.0029519293, -0.026293196, 0.023776907, -0.001233755, 6.749069E-4, 0.019282574, -0.010139163, -0.003538951, -0.019686257, 0.008854106, 0.0071720947, -0.0056145526, -0.018771242, 0.033586394, 0.017614018, 0.040045317, -0.028419258, -0.023373224, -0.012426697, -0.00369706, -0.020399429, 0.014263453, -0.001846848, -6.084675E-4, 0.012716003, -0.0196728, -0.03660056, -0.009412534, -0.02122025, -0.018421384, -0.0060384194, -0.016524076, -0.0011479725, 0.01830028, 0.033801693, 0.010771599, 0.022242913, 0.0050090286, 0.01785623, -0.022054529, -0.025580022, 0.0017072412, -0.0112694735, -0.0015550192, 0.01595892, 7.7425066E-5, -0.0067953244, 0.010266995, 0.024328606, 0.011377122, -0.008625353, 0.024786115, -0.022296738, 0.0012413241, 0.0038719892, 0.034474496, -0.01258817, -0.0075286813, -0.008120749, 0.018555945, -0.0117538925, 0.023386681, -0.031460334, -0.040502824, 0.0031890927, -0.0066540353, -0.013819402, -0.012473794, 0.004430417, 0.0019158105, 0.0033455198, -0.012877476, 0.02314447, 0.017775493, 0.009970961, -0.0097085675, 0.021758495, -0.032267697, -0.011296386, -0.012689091, 0.012810196, -0.025580022, -0.008457151, -0.024853393, 0.025162885, 0.04257506, 0.014021244, -0.03651982, 0.049033985, 0.029791778, 8.4857456E-4, -0.02435552, -9.654743E-4, 0.011874998, 0.029011326, -9.014528E-6, 0.027854102, 0.010401556, -0.01929603, 0.05159064, -0.027800277, 0.011854813, -0.0300609, -0.024463167, 0.031325772, 0.041633137, -0.024059486, -0.023548154, -0.014290365, -0.008658992, 0.007690154, -2.6470647E-4, 0.014855521, 0.008208213, 0.017210336, 0.031029738, 0.01936331, 0.014505663, 0.013361895, -0.012608354, -0.009089587, -0.011498227, 0.011182009, -0.02858073, 3.017107E-4, -5.0712633E-4, 0.0045246095, -0.018044613, -0.004268944, 0.019201837, 0.016456796, -0.021314444, -0.018434841, 0.011619332, -0.007656514, 0.027934838, -0.018596314, 0.022135265, -0.0023178111, -0.00336234, 0.004908108, -0.030464582, -0.03907648, -0.008645536, 0.0049720244, 0.014774784, 0.024974499, 0.04042209, -0.00426558, 0.015178467, 0.021099146, -0.01503045, 0.011922094, -0.020749288, 0.0036028675, 0.019134557, 0.0019158105, -0.01706232, -0.6346968, -0.0160262, -0.010993624, -0.002607117, 0.0275177, 0.01606657, 0.014169261, -0.0038080728, -0.028499994, -0.0160262, -0.021987248, 0.014384558, 0.020682007, -0.027423507, -0.026400844, -0.010785054, -0.0037946168, -0.024570817, 0.011289658, 0.0074479445, -0.038565148, 0.018286824, 0.009197236, -0.0032883314, 0.005675105, -0.010341004, -0.008060196, -0.029415008, 0.0044808774, -0.008921387, -0.017412178, 0.011235833, 0.0022538947, 0.011208922, 0.04031444, 0.009506726, -0.0069971657, 0.049922086, 0.018878892, 0.027423507, -0.03350566, 0.006152796, 0.013435904, -9.965915E-4, -0.03415155, 0.019242207, 0.0018636682, 0.012467066, -0.010415012, -0.0024052758, 0.010529389, -0.011444403, -0.017143056, -0.007178823, -0.008665721, 2.8888538E-4, 7.968527E-4, -0.044512738, 0.014424927, 0.0029485652, -0.007986188, 0.013886683, -0.0019511328, -0.0045044255, 0.006950069, 0.029361185, -0.0038484412, -0.005167138, 1.8985699E-4, -0.012911117, 0.007286472, 0.002748406, -0.021973792, -0.004292492, 0.01465368, 0.008645536, 0.040018406, -0.0024136857, -0.013563736, 0.020560902, 0.00550354, -0.00732684, 4.2702054E-4, 0.013368623, 0.026293196, -1.686216E-4, -0.041390926, 0.002746724, 0.0136512015, 0.0038921735, 0.0011555415, 0.015366852, 0.010785054, 0.021126058, -0.006869333, 0.004847556, -0.0037374285, -7.863402E-5, 0.024880307, -0.059529733, -0.02152974, -0.026145179, 0.034555234, -0.02249858, 0.026441213, 0.018273367, -3.0675676E-4, -0.013637745, 0.019242207, -0.02572804, -0.005977867, -0.0096143745, -0.027114017, -0.010670678, -0.008302406, -0.03364022, -0.003666784, 0.011087816, -0.0052445102, -0.0038618972, -0.01351664, 0.02469192, -8.2250335E-4, -0.009163596, 9.822944E-4, 0.03216005, -0.0028325066, -0.016725916, 0.0108321505, 0.01682011, 0.015487957, -0.0058668545, 0.0061628884, -0.02418059, 0.020964585, 0.01819263, 0.0025246984, -0.0027080376, 0.013476272, 3.9290726E-6, -0.018448297, -0.012790011, -0.013227334, -0.014815153, -0.0069769816, -0.011848086, -0.03364022, -0.0044876053, 0.010785054, -3.1537705E-4, -0.00337916, 0.02325212, 0.005183958, 0.018703962, 0.0139943315, -0.0020100032, -0.022673508, -0.012567986, 0.006744864, -0.03264447, 0.0013035585, 0.011404035, 0.0031419965, -0.01520538, 0.022619683, 0.008658992, -0.009816216, 0.004245396, 0.0061998926, -0.0196728, 0.014828609, -0.017304529, -0.0046625347, 0.013967419, -0.007481585, 0.020830024, -0.011397307, 0.029011326, 0.003200867, -0.0108321505, 0.0016450067, -0.009499998, -0.027692629, -0.009991146, 0.031110475, 0.029791778, 0.015837815, -0.0035591351, 0.003522131, 0.007373936, -0.019793905, -0.02435552, -0.011827901, 0.0034363484, 0.009103043, 0.02280807, 0.007057718, -0.010939799, -0.0105832135, -0.0021597021, 0.035927754, 0.03565863, 0.021502828, -0.01045538, 0.0073133837, -0.032267697, -2.218152E-4, -0.014344189, 0.011895182, -0.01606657, 0.041121803, -0.007481585, -0.031137388, 0.007501769, 0.021543197, 0.019820817, -0.01079851, 0.002311083, -0.007205735, 0.01375885, 0.012998581, -0.016254954, 0.0125343455, 0.009567278, -0.02466501, 0.0042554876, 0.019699713, -0.008672449, -0.008349502, -0.002928381, -0.010341004, -5.8029377E-4, 0.0030309837, -0.0016601449, -0.011020536, -0.0064757424, 0.022283282, -0.01317351, 0.03894192, -0.01651062, -0.0034615786, 0.01351664, 0.017291073, -0.0030141636, -0.0015062408, -0.014828609, 0.024409343, 0.021341356, -8.3806197E-4, 0.05985268, -0.022296738, 0.026669966, -0.011195465, -6.13934E-4, 0.015245748, -0.008174573, -0.012756371, 0.011733709, 0.02658923, 0.030599143, 0.016524076, -0.018071527, 0.031137388, -0.004571706, 0.009446174, 0.008605168, -0.021354811, 0.012574714, -0.013153326, -0.036896594, -0.0148689775, -0.015111187, -0.0043160403, 0.017089231, -0.00970184, -0.013731938, 0.0051065856, 0.003993094, 0.0014599855, 0.017842773, 0.002901469, -0.0342592, 0.009378893, 0.02590297, -0.014061612, -0.030491496, 0.007865083, -0.0023531334, -0.031648718, -0.005665013, -0.009917137, 0.0371388, -0.019457502, 0.004427053, -0.023965292, -0.0022219366, 0.012641994, -0.012890932, 0.020937672, 0.023427049, -0.009190508, 0.01344936, -0.0016046385, -0.013126413, 0.01812535, -0.009533638, 0.004305948, 0.0014246634, -0.008712817, -0.009378893, 0.003670148, 0.002773636, -0.044512738, 0.022444755, -0.0028526906, -0.0010016375, -0.013718481, -0.0061628884, 0.010004601, -0.019107645, -0.014586399, -0.03081444, -0.022781156, 0.0022135265, 0.0742776, 0.04424362, 0.009648015, 0.0020621454, -0.01812535, 0.0013271066, -6.0173945E-4, 0.001533994, -0.010576485, -0.028876765, 0.014344189, -0.022740789, 0.011639516, 0.020695463, 0.01176062, -0.006146068, -0.013819402, -0.015824359, -0.007932364, -0.011457859, -0.02091076, -0.012837108, 0.022619683, 0.03649291, 0.015097731, -0.002443962, 0.018636681, -0.0021092417, 1.31407105E-5, 0.012016286, 0.0033959802, 0.00615616, 0.012998581, 0.0041882074, 0.0062167128, -1.3245837E-4, 0.019618977, 0.019713169, 0.013072589, 0.00608888, -0.0100516975, 0.0031134023, 9.351981E-4, -0.0061023356, 0.004030098, -0.022754245, -0.006452194, 0.033936255, 0.020789655, -0.026629599, 0.02610481, 0.0072662877, -0.012070111, -0.02060127, 0.018448297, 0.0011303114, 0.0049518403, -0.018475208, -0.013927051, -0.00168117, 0.0066439435, -0.031460334, 0.006754956, -0.015474501, -0.017075775, -0.0129716685, 0.0032277792, -0.0072730156, -0.014949714, 0.003670148, 0.010818695, -0.024611184, -0.010623582, -0.0019208565, 0.0083965985, -0.003505311, 0.024961043, -0.0071317265, 0.004743271, 0.014882433, -0.04564305, -0.029630305, 0.008739729, -0.026508493, 6.69125E-5, 0.001523061, -0.0045077894, 0.010838878, -0.016497163, 0.0042723077, -0.008362958, 0.0063647297, -0.025028324, -0.005981231, 0.028042488, 0.015541782, 0.01317351, 0.01633569, 0.0075757774, 0.01595892, 0.007999645, -0.01943059, -0.01812535, -0.020883849, -0.023009911, -0.013328255, 0.0039998223, -0.00337916, -0.01785623, -0.027665718, -0.026387388, -0.0342592, 0.0019427227, -0.0053891633, 0.009123228, -8.0820627E-4, 0.028042488, 0.009170324, -0.005352159, 0.0010588259, 0.0025785228, -0.006401734, 0.022686964, 0.029657219, 0.007622874, 0.031756368, -0.017762035, -0.014613312, 0.005940863, 0.02449008, -3.990571E-4, 0.005046033, -0.01503045, -0.011928822, -0.0041848435, -0.03194475, 0.0012699183, 0.0033438378, -0.008658992, 0.015851272, -0.021852687, 0.020237956, 0.013442632, 0.010724502, -0.0026222551, -0.026360476, 0.010825423, -0.020439798, 0.006576663, 0.037300278, -6.984551E-4, 0.023898013, -0.037165716, -0.009580734, -0.016766286, -0.02992634, -0.028634556, -0.005644829, 0.030841354, 0.009849857, 0.033478748, -0.009082859, 0.019417135, -0.0060115075, 0.008504247, 0.019390224, -0.020803113, -0.016120393, -0.019322943, 0.01788314, 0.029172799, 0.03067988, -0.00859844, -0.008753185, 0.0039123576, 0.020332148, -0.0019141285, 0.016591357, 0.008652264, -0.012675635, -0.029441921, 0.015783992, -0.025216708, 0.00739412, -0.0202245, -0.00825531, 0.012729459, 0.0073133837, -0.0029435193, -0.016147306, 0.033101976, -0.006596847, 0.018434841, -0.029361185, 0.023588521, -0.036304526, -0.0036028675, -0.017533282, -0.006008143, 0.0039190855, -0.015514869, 0.019686257, 0.0034783988, -0.013664657, -0.008679177, 0.023467418, 0.0010554619, -0.021045322, 0.019174926, -0.021718126, -0.004534702, -0.0311643, -0.009358709, -0.024019117, -0.034097727, -0.01564943, -0.010172802, 1.2961998E-4, -0.022417843, -0.046073645, 0.02404603, 0.016174218, 0.024099853, 0.017210336, 0.0477422, 0.025701128, 0.021718126, -0.0065632067, -0.0029536113, -0.016954672, -0.0071115424, 0.030706793, 0.027800277, -0.025149427, -0.0011790897, -0.014007787, 6.8647074E-5, -0.02906515, -0.030222373, 0.02771954, 0.023857644, 0.028365433, -0.027490787, 0.007340296, -0.023279032, 0.0071519106, -0.0024826482, 0.016725916, 0.010677406, -0.032106224, -0.024301695, -0.01135021, -0.0024321878, 0.016228043, 0.017291073, -0.019376766, 0.01991501, -0.019309485, 0.008181302, -0.015824359, -0.013570464, 0.035389513, -0.02126062, 0.014155804, 0.0043530446, 0.017802404, 0.007966004, 6.2108255E-4, 0.0058904025, 0.02957648, -0.021623934, 0.01974008, 0.0042319396, -0.010240083, 0.010502476, 0.009372165, -0.012904388, -0.014357646, -0.019444047, -0.0048542838, 0.027665718, 9.301521E-4, 0.0028123225, 0.0060956078, -0.0071451827, -0.005984595, 0.017963877, -0.0060653314, 0.0053420668, -0.022512035, 0.009230876, -0.006068696, 0.008719545, 0.013227334, -0.0055674566, 0.004887924, -0.0027669081, 0.006744864, -0.015945464, -0.0043530446, -0.020305237, -0.017667843, -0.034528323, -0.020520534, -0.0238711, -0.012695819, -8.746457E-4, -0.010677406, -0.0032782394, -0.011182009, -0.012049926, -0.012857292, 0.0038888094, -0.025095604, -0.0039123576, 0.014424927, -0.0146267675, 3.342997E-4, 0.001543245, 0.02122025, -0.0021041958, -0.0014557805, -0.0058937664, 8.729637E-4, 0.015070818, -0.015434133, 0.01385977, 0.00853116, -0.017237248, -0.013045677, 0.012857292, 0.014438382, 0.009042491, -0.013698298, -0.027262034, -0.0028106403, -0.004094015, 0.031729456, -0.009452902, -0.0014885797, 0.022000704, 0.01675283, 0.05309772, 0.010811967, -0.009103043, -0.011330026, 0.006277265, -0.0066540353, -0.020816568, 0.004033462, 0.0036499638, 0.0098364, 0.010408284, -0.006633851, -0.026414301, -0.005368979, -0.028984413, -0.033882428, -0.012500705, 0.013886683, 0.03576628, 0.0046591703, 0.0017257433, 0.0227677, 0.0077776187, 0.001974681, -0.018973084, -0.009244332, 0.01671246, 0.010468836, 0.02418059, 0.01891926, -0.026669966, -0.0023346313, 0.009997874, 0.0121441195, 0.007488313, 0.022256369, -0.02046671, -0.02707365, -0.007999645, 0.0031554527, -0.020009203, -0.014895889, 0.035685547, -0.01533994, -0.0074277604, 0.013496456, 0.015972376, -0.0042319396, 0.0013725209, 0.022094896, -0.01940368, -6.5304077E-4, -0.011552052, -0.030599143, -4.5204046E-4, -0.02091076, 0.015851272, 0.011484771, 0.0014641905, 0.038161464, 0.01633569, -1.7177538E-4, 1.9963368E-4, -0.0023279032, 0.0026407572, -0.008867562, 0.00770361, 0.0076968824, 0.032294612, -0.019834274, 0.0037307004, -0.018084982, 0.0101458905, -0.018327191, 0.009244332, 0.00818803, 0.02400566, 0.01162606, -0.053366844, 0.009358709, -0.028876765, 0.013207151, -0.03030311, 0.007643058, -0.025808776, -0.006596847, -0.005833214, -0.0033202898, -0.029468833, -0.011989375, 0.017237248, 0.0048610116, 0.0017694755, 0.01135021, 0.18558636, -0.002898105, 0.0050258487, 0.049518403, -0.0026928997, 0.009499998, 0.027800277, 0.015676342, -3.372432E-4, 0.013287887, 0.007165367, 0.0017778856, 0.0021008318, 2.6176297E-4, 0.016739374, -0.022713877, -0.019161468, -0.031487245, -0.010919616, -0.01465368, -0.01860977, 0.007030806, -0.007199007, -0.03189093, 0.011067633, 0.0045279735, -0.0118009895, 0.0048071872, 0.015434133, 0.014344189, -0.0050292127, -0.0025432005, -0.0044606933, 0.021825774, -0.010677406, -4.22395E-4, -0.005957683, 0.0015701572, -0.0011437675, 0.013617561, -0.012662179, 0.009089587, -0.020385973, -0.0105832135, -0.005987959, 0.017492915, -0.027262034, 0.006421918, -0.016389515, 0.016039656, -0.046181295, -0.011020536, 0.02504178, 0.017694756, -0.009055947, -0.014303821, 0.016860478, 0.0075623216, -0.0115587795, 0.0060485117, -0.0015482911, 0.019834274, -0.019793905, 0.0061898003, -0.0052781506, 0.012985125, -0.027907927, -0.008040013, 0.013705025, -0.034932002, -0.007878539, -0.021879598, -0.009883497, 0.0073133837, 1.7461377E-4, -0.0022942629, 0.0048273713, 0.0033976622, 0.012702547, 0.013503185, -0.012662179, -0.015609062, 0.025122516, -0.0058769463, -0.01599929, -0.00553718, 0.0038652613, -0.012830379, -0.012783283, -0.019201837, 0.0024405979, -0.024826482, -0.016591357, 0.0028207325, -0.008100565, -0.011155097, 0.029872514, 0.009358709, -0.020237956, -0.009008851, -0.031729456, 0.037677046, 0.0238711, 0.0013170146, -0.026737247, -0.026508493, -0.00835623, 0.0095134545, 0.021839231, -0.010092066, -0.0076766983, -0.021745037, 7.8718114E-4, -0.014707504, 0.015528325, 0.030141637, 0.0061595244, -0.02771954, 0.04849574, -0.029361185, -0.0022824889, -0.027315859, 0.006401734, 0.009896953, -0.003962818, -0.026683422, -0.029953253, 0.008625353, 0.0028089583, -0.026629599, 0.02318484, -0.01527266, 0.007656514, 0.0017677936, 0.007939092, -3.5348512E-5, 0.016147306, 0.004157931, 0.0055708205, -0.010038242, 0.007838171, -0.0224313, 0.021300986, 0.013220606, -0.013469544, -0.011841358, 0.01675283, -0.0021714761, -0.021650845, -0.043732285, -0.01706232, -0.011336754, 0.0049854806, 0.0036331438, 0.04157931, 0.0040031862, -0.007811259, -0.024234414, -0.008524432, 0.05156373, -0.03415155, 0.020628182, 0.021677757, 4.0158012E-4, -0.021852687, -0.0060720597, -0.17137673, 0.034582146, 0.013220606, -0.040449, 0.016012745, 0.01978045, 0.033048153, -3.4144823E-4, 0.012426697, -0.011511683, 0.030114725, -0.0012539392, -0.041471664, 0.005163774, 0.0020133671, 0.009392349, -0.010704318, 0.030383846, 0.035201125, -0.011175281, 0.048791774, -0.010475565, -0.009311613, 0.001526425, 0.025216708, 0.004110835, 0.019753536, -0.014142348, 0.0055708205, -0.0060720597, -0.03415155, -0.015528325, 0.017048864, 0.010300635, -0.0028695108, 0.006401734, -0.010610125, -0.015070818, -0.008167845, -0.0046087103, 0.045320105, 0.013429176, 0.018488664, 0.008645536, 0.016039656, 0.010394827, 0.030330023, -0.02349433, 0.004470785, -0.018206086, 0.003066306, -0.039803106, 0.040852685, -0.014895889, -0.006452194, 0.030249286, 0.008053469, 0.0064723785, 0.007622874, -0.005924043, -0.033209626, -0.0036903322, 0.003054532, -0.013267702, -6.656558E-4, -0.012668907, -0.014317278, 0.012615083, -0.028499994, 0.019955378, -0.026333565, 0.01750637, 0.0011698386, 0.009109772, 0.0049282922, -0.012527618, -0.03477053, -0.010966712, -0.005086401, 0.024638098, -0.010522661, 0.03477053, -0.003549043, 0.0185694, -0.0037004242, -0.008975211, 0.012332505, 0.0041680234, -0.0026458034, 0.009190508, 0.0066304873, -0.019807361, -0.03969546, -0.0088339215, -0.008336047, 0.0029737954, -0.0059745032, 0.00613934, -0.0020234592, -0.010347731, -0.0017593835, -0.0012060018, -0.020870393, 0.014895889, 0.020291781, 0.015461045, 0.010744686, 0.022754245, 0.0072124633, -0.00949327, -0.008860834, 0.0029939795, 0.020022659, -0.002571795, -0.024638098, 0.022727333, -0.022108352, -0.020439798, -0.017627476, 0.009109772, 0.051160045, -0.013967419, -0.0055910046, -0.001836756, -0.011700069, -0.005543908, -0.09236259, 0.0152592035, 0.02307719, 0.041498575, -0.02011685, 0.033101976, -0.0050695813, 0.011693341, -0.0077170664, 0.023265576, 0.0049249283, -0.029361185, 0.015622518, 5.7735026E-4, 0.007246103, 0.00366342, -0.012594898, -0.010838878, -0.01135021, 0.014761329, -0.009082859, -0.0037004242, 0.01011225, -0.008551344, -0.016981583, 0.030599143, -0.012130663, 0.02469192, -0.0045145173, 0.010314091, 0.0017459274, -0.018717417, 0.015932009, -0.03549716, -0.024705376, -0.03202549, -0.0046860827, -0.029764866, 0.005964411, -0.044539653, 0.009695112, 0.014976626, -0.0021597021, -0.022283282, -0.012399785, -0.0037710685, -0.027396595, 0.03129886, -0.0075488654, -0.024974499, -0.004891288, -0.03364022, -0.025095604, -0.025512742, -0.0011975918, 0.01527266, 0.0227677, 0.0038383491, -0.019269118, -0.024368975, -0.0064757424, -0.0089819385, -0.016833566, 0.017291073, 0.0098565845, 0.012615083, -0.007804531, -0.011666428, 0.025391638, -0.02617209, -0.01675283, 0.0202245, -0.035954665, -0.021449003, -0.014317278, 0.007508497, -0.021381723, -0.014801697, 0.032429174, -0.035900842, 0.00853116, -0.02893059, 0.016429882, -0.014586399, 0.015985832, 0.011424218, 0.029280446, 0.024934132, -0.004238668, -0.049895175, -0.015286116, 0.018098438, -0.005651557, 0.0054631718, -0.004955204, 0.020453254, 0.01668555, -0.0016214586, -0.0012783284, -9.1406786E-5, -0.016591357, -0.0066035753, -0.07255523, 0.034420673, -0.023400137, -0.0049585686, -0.015609062, -0.023951836, 0.0059004948, -0.0040401905, -0.003219369, 0.027127473, -0.011148369, 0.0092712445, 0.0033371097, 0.004161295, 0.005099857, 0.021435548, 0.011430947, 0.0011521776, 0.0075623216, 0.013368623, -0.020883849, 0.025580022, 0.030033989, -0.0051301336, 0.003683604, 0.017291073, 0.005476628, -0.0022000703, -0.017910052, -0.013462816, 0.032456085, -0.027060192, -0.003670148, 0.0060148714, -0.0063781855, -0.038538236, -0.003821529, 0.0062268046, 0.02466501, 0.004763455, 0.0025684307, -0.029899428, 0.0073806643, 0.0012430061, -0.014936257, 0.02208144, -0.019645888, -0.0022236186, 0.0038854454, 0.023050278, 0.025337813, -6.749069E-5, -0.00701735, -0.015151555, 0.02349433, -0.013119685, 0.050379593, 9.20901E-4, 0.0011706797, -0.020399429, 0.03563172, 0.0063781855, 0.020560902, -0.029845603, -0.010300635, 0.0033202898, 0.0064353743, -0.0026996275, -5.6431466E-4, -0.028365433, -0.006489198, -6.770094E-4, 0.014936257, 0.028526906, 0.01874433, 0.026077898, 0.0018855343, 5.840783E-4, -0.0019780449, 0.022337105, 0.028876765, -0.0016635088, -0.020937672, 0.01427691, -0.003226097, 0.03154107, -0.005792846, -0.0030713521, 0.015124643, -0.003358976, 0.0024843302, 0.013731938, 0.018152263, 0.0041915714, 0.02893059, 0.010058425, -0.013402264, -0.019349854, -0.015138099, 0.031110475, -0.01620113, -9.2762907E-4, -0.010717774, -0.015757078, -0.02758498, 0.010778327, -0.017291073, -0.01682011, 0.01781586, 0.017587107, 0.0300609, 0.002437234, -0.013112958, 0.010872519, -0.03896883, 0.02122025, -0.022512035, -0.00766997, -0.015245748, 0.03635835, 0.008537888, 0.009062675, 0.014667136, -0.019820817, 0.054120384, -5.1669274E-5, 0.02318484, -0.039157216, 0.009499998, 0.0031352686, 0.003986366, -0.010058425, -0.012722732, 0.0042319396, -0.01702195, 0.01313987, 0.014990082, 0.028607642, -0.018905804, 0.075407915, 0.030572232, 0.006593483, 0.011827901, -0.009230876, 4.7811161E-4, 0.015124643, 0.026441213, -0.007542137, -0.015972376, -0.0086388085, -0.0024977864, 0.013940507, -0.0331558, -0.006300813, 0.0045145173, 0.019807361, 0.006546387, -0.012641994, -0.019578608, -0.002147928, 0.005190686, 0.00644883, 0.01200283, -0.00493502, -0.008362958, 0.03880736, 6.0510344E-4, -0.0049888445, -0.040126055, 0.0067044958, -0.028230872, -0.005823122, -0.014990082, 0.021300986, -0.0027786822, -0.0069164294, -0.007972732, 0.010751414, 0.016470252, -0.024961043, -0.0014860567, -0.024516992, -0.022242913, 0.018313736, -0.004766819, -0.0037508844, -0.030841354, -0.006428646 ], + "id" : "8986d31e-ac18-4afb-bc12-92f06de7e408", + "metadata" : { + "source" : "movies.csv" + } + }, + "3fc1ccf5-e7b4-4da7-8267-4c738fdd63ee" : { + "text" : "Denham-Frazer Diamond-Peter Diamond-Warwick Diamond-Sadie Eden-Kim Falkinburg-Harry Fielder-Ted Gagliano-Salo Gardner-Steve Gawley-Barry Gnome-Rusty Goffe-Isaac Grand-Reg Harding-Alan Harris-Frank Henson-Christine Hewett-Arthur Howell-Tommy Ilsley-Joe Johnston-Annette Jones-Linda Jones-Joe Kaye-Colin Michael Kitchens-Melissa Kurtz-Tiffany Hillkurtz-Al Lampert-Anthony Lang-Laine Liska-Derek Lyons-Mahjoub-Alf Mangan-Grant McCune-Geoffrey Moon-Mandy Morton-Lorne Peterson-Marcus Powell-Shane Rimmer-Pam Rose-George Roubicek-Erica Simmons-Angela Staines-George Stock-Roy Straite-Peter Sturgeon-Peter Sumner-John Sylla-Tom Sylla-Malcolm Tierney-Phil Tippett-Burnell Tucker-Morgan Upton-Jerry Walter-Hal Wamsley-Diana Sadley Way-Bill Weston-Fred Wood-Colin Higgins-Ron Tarr-Anthony Forrest-Frances Alfred Basil Tomlin-Ronny Cush,android-galaxy-hermit-smuggling (contraband)-superhero-space-rescue mission-empire-rebellion-planet-desert-super power-space opera-galactic war-wizard-totalitarianism-star-star-wars,/6FfCtAuVAW8XJjZ7eWeLibRLWTw.jpg,/aDYSnJAK0BTVeE8osOy22Kz3SXY.jpg,1891-1892-1893-1894-1895-140607-120-121-122-181808-330459-85-603-105-155-89-13475-280-272-1726-348\r\n370172,No Time to Die,Action-Adventure-Thriller,en,Bond has left active service and is enjoying a tranquil life in Jamaica. His peace is short-lived when his old friend Felix Leiter from the CIA turns up asking for help. The mission to rescue a kidnapped scientist turns out to be far more treacherous than expected leading Bond onto the trail of a mysterious villain armed with dangerous new technology.,89.622,EON Productions-Metro-Goldwyn-Mayer-Universal Pictures,9/29/21,250000000,774153007,163,Released,The mission that changes everything begins��_,7.397,5666,Daniel Craig-L��a Seydoux-Rami Malek-Lashana Lynch-Ralph Fiennes-Ben Whishaw-Naomie Harris-Jeffrey Wright-Ana de Armas-Billy Magnussen-Christoph Waltz-Rory Kinnear-David Dencik-Dali Benssalah-Lisa-Dorah Sonnet-Coline Defaud-Mathilde Bourbin-Hugh Dennis-Priyanga Burford-Joe Grossi-Nicola Olivieri-Pio Amato-Javone Prince-Davina Moon-Mattia Lacovone-Giansalvatore Duca-Amy Morgan-Lizzie Winkler-Andrei Nova-Ernest Gromov-Gediminas Adomaitis-Andy Cheung-Brigitte Millar-Hayden Phillips-Winston Ellis-Adnan Rashed-Rae Lim-Chi Chan-Denis Khoroshko-Lourdes Faberes-Philip Philmar-Raymond Waring-Eliot Sumner-Rod Hunt-Michael Mercer-Gemmar Mcfarlane-Leighton Laing-Kimo Armstrong-Gordon Alexander-Steve Barnett-Tuncay Gunes-Clem So-Ahmed Bakare-Douglas Bunn-Toby Sauerback-Zoltan Rencsar-John Farrer-Paul O'Kelly-Michael G.", + "embedding" : [ 0.007739451, -0.027926287, -0.016861945, -0.047721956, -0.0305387, 0.050683625, -0.0051514846, -0.013166846, -0.019516269, -0.043167695, 0.013390368, 0.032438636, 0.014284456, -5.7102897E-4, 0.002533832, 0.0072504967, 0.016652392, -0.015423021, 0.0074670333, -0.020913282, -0.018985404, -0.007439093, 3.1170849E-4, 0.007990913, -0.007187631, 0.008493838, 0.02510432, -0.0047428585, -0.019264806, 0.0014232068, 0.0075438693, -0.007697541, -0.0031834429, -0.011343744, -0.009632403, 0.006335453, 0.0048162015, -0.0016327588, 0.020144925, -0.0022980862, 0.0026281304, 0.0068488554, -0.003504756, 0.0033685472, -0.017770004, 0.011134192, 0.021094894, -0.0032707562, -0.020466238, 0.023148503, 0.01955818, 0.04579408, -0.015632574, -0.023092622, -0.010114373, 0.0103588505, -0.0013647069, 0.008885002, -0.0037893972, 0.011923504, 0.0023784144, -0.018356748, -0.018678062, -0.0057731555, -0.010631268, -0.01098052, 0.009702254, -0.012608041, -0.005926827, 0.011937475, 0.0047638137, -0.0011149909, 0.008074734, 0.0093669705, 0.015506842, -0.029951954, -0.024503605, -0.0042434265, -0.0021426685, 0.0029581746, 0.008312226, -0.0068174223, -0.021611787, 0.0125731155, 0.02162576, 0.01252422, -0.014878186, 0.02604032, -0.009024703, 0.0022456981, 0.012384519, 0.05006894, -0.0068628252, 0.0030734283, -0.0044529783, 0.02507638, -0.0022701458, 0.03249452, -0.024154352, -0.04347504, 4.7236495E-4, -0.008458912, 0.007725481, -0.0072435113, 0.00926918, 0.0073552723, 0.011706968, -0.017267078, 0.002690996, 0.0010049761, 0.014864217, -0.004229456, 0.02073167, -0.038836956, -0.015325231, -0.016973706, 0.01946039, -0.038836956, -0.0059757223, -0.0059966776, 0.015143619, 0.023637457, 0.010107388, -0.026655005, 0.03375183, 0.023623487, 7.3037576E-4, -0.009569538, 0.01751854, 1.8095682E-4, 0.032187175, 0.0051305294, 0.019013345, 0.011532341, -0.023344085, 0.04691169, -0.036350273, -0.0014074905, -0.019013345, -0.025006529, 0.039842807, 0.04590584, -0.031153386, -0.019376568, -0.019348627, 0.0027870405, -0.010226134, -0.012943324, 0.015506842, 0.0056055137, 0.018957464, 0.031907775, 0.011455505, -0.0025949513, 0.017700152, 0.0021094894, -0.017057527, 0.0026071751, -0.007983929, -0.010393775, 0.0013009682, 0.0039151283, 0.002684011, -0.01962803, 9.6743135E-4, 0.03288568, 9.028195E-4, -0.010798909, -0.012356578, -0.01085479, 0.0043621724, 0.025760917, -0.03187983, 0.021695608, -6.2647293E-4, 0.014067919, -0.0042504114, -0.0071527055, -0.021793399, -0.032354817, 0.00271719, 0.0046590376, 0.027870405, 0.037970807, -0.015073768, 0.012691861, 0.01838469, -4.4879038E-4, 0.015800215, -0.020410357, -0.008305241, 0.017364869, 0.005245783, 2.684884E-4, -0.6213913, -0.02612414, -0.0023225339, -0.011846669, 0.01852439, 0.0138024865, -0.0033371144, 0.011057356, -0.029113747, -0.0054832753, -0.04070895, 0.012670906, 0.013152876, -0.013320517, -0.01730899, -0.01302016, -0.0073762275, -0.010100403, 0.016694304, 0.013313532, -0.023288203, 0.030203417, 0.017588392, -0.008878017, 0.027409391, 0.0066986764, -0.02074564, -0.022561757, 0.017225169, -0.004470441, -0.016303139, 0.011916519, 0.0075927647, 0.0047253957, 0.040848654, -0.0055426485, -0.0035833379, 0.046157304, 0.021472087, 0.027423361, -0.022072803, 0.008018853, 0.008207451, -0.0014013784, -0.012887443, 0.022589697, 0.010736044, -5.4079675E-5, -0.009373956, -0.0011996848, 0.002100758, 0.0030210402, -0.016610483, -0.0033440995, -0.012754727, 0.006335453, 0.017867794, -0.032270998, 0.014738485, -0.006419274, -0.020396387, 0.014172695, -0.0016895124, 0.0063249758, -0.0018300868, 0.02840127, -0.008410017, 0.01139264, -0.0028656225, -0.028038047, 0.008794196, 0.013048099, -0.013718666, -0.0013158114, 0.005759185, 0.004760321, 0.04995718, 0.0059198416, -0.014808336, 0.026529273, 0.0062725875, 0.00569632, -0.0049070073, 0.014822306, 0.046380825, 0.009031688, -0.03933988, 0.0011778565, 0.00382083, -0.004823187, 0.006978079, 0.021025043, 0.008060764, 0.009597478, -3.5061748E-6, -9.2814036E-4, -0.0032375772, -7.2251755E-4, 0.03383565, -0.06985064, -1.5727308E-4, -0.013327503, 0.023749217, -0.017867794, 0.009387926, 0.023064682, -0.00626211, -0.016806064, 0.02503447, -0.03503708, -0.02395877, -3.4030358E-4, -0.02618002, -0.0032393234, -0.02618002, -0.031209266, 0.008794196, 0.013921233, -0.004299307, 0.0038627405, 5.893648E-5, 0.0061363787, 6.1817816E-4, -0.023511726, 0.010617297, 0.022701459, -0.010456641, -0.01648475, 0.0017619825, 0.023595547, -0.0053715142, -0.0075648245, 0.012712817, -0.025397694, 8.2838495E-5, -0.0026997272, 0.0059512747, -0.001168252, 0.0011376924, -0.0056893346, -0.019362597, -0.015409051, -0.014375262, -0.0052562607, -0.0069361688, -0.014270486, -0.028946105, 0.0012057967, 7.085474E-4, -0.023665396, -0.008912941, 0.01751854, -0.0027189362, 0.025942529, 0.011120222, -0.0033423533, -0.019125106, -0.018119257, -0.006695184, -0.011776818, 0.003971009, 0.017686183, -0.01839866, -0.032270998, 0.019488329, -0.0048196944, -0.0042050085, -0.008333181, -0.0013131921, -0.01040076, 0.015632574, -0.012119086, -0.0099746715, 0.01037282, -0.011630132, 0.024838887, -0.018161166, 0.027535122, 0.0051689474, -0.0041980236, 0.009332046, -0.02302277, -0.031209266, -0.015856095, 0.036462035, 0.023511726, 0.018300869, 0.013271621, 0.0041596056, 0.0044459933, -0.002053609, -0.015548753, 0.0054658125, -0.00812363, -0.009318075, 0.015576693, 0.024433754, -0.012154011, -0.012398489, 0.0136558, 0.036322333, 0.0052178428, 0.018887613, -0.007634675, 0.017770004, -0.018971434, -0.0011141177, -0.027074108, 0.016526662, -0.0077673914, 0.01955818, -0.004117695, -0.034087114, 0.023679366, 1.8641389E-4, 0.012684876, -0.025900617, 0.004044352, -0.015478902, 0.006716139, 0.007187631, 0.004589187, 0.017728092, 0.009765119, -0.02939315, -0.004941933, 0.01742075, -0.029784312, -0.0031974132, -0.01359992, -0.011280878, -0.0035274574, -0.001057364, 0.0045053666, -0.011595206, -0.015325231, 0.026906466, -0.015409051, 0.04881163, -0.014668634, -9.936254E-4, 0.007121273, 0.016750183, -0.0027625929, 0.0066637513, -0.004397098, 0.0125731155, 0.024810947, -0.0143333515, 0.061636206, -0.02611017, 0.041994207, -0.00926918, -0.0012485802, 0.008486853, -0.010491566, 0.0103588505, 0.015618604, 0.0042888294, 0.019376568, 0.014948037, -0.024238173, 0.006387841, -0.002350474, 0.007271452, 0.013753591, -0.009688284, 0.007976944, 0.010547447, -0.029896075, -0.0057731555, -0.010302969, -0.009967687, -0.004777784, 0.0033720396, -0.023176443, 7.111668E-4, 0.009730195, -0.0016048185, 0.023344085, -0.0028184734, -0.040653072, 0.024321994, 0.023511726, -0.012314668, -0.031237207, 0.0014013784, -0.0026613094, -0.025691066, -0.0057906182, 5.225701E-4, 0.021094894, -0.020047134, -0.0014319381, -0.013704696, -0.010966551, 0.007439093, -0.015325231, 0.01638696, 0.026207961, -0.0066637513, 0.0086754495, -0.0023033249, -0.014459083, 0.039814867, -0.02066182, 0.011602191, 3.1170849E-4, 0.013683741, -0.009164404, 0.0033912486, 0.012335624, -0.04132364, 0.018747913, -0.0062551247, -3.5536513E-4, -0.022114713, 0.003754472, 0.0069745863, -0.034450337, -0.020019194, -0.012992219, -0.026920438, 0.013201771, 0.07823272, 0.03355625, 0.0072016013, 0.0023399964, -0.0106661925, 0.0031607414, -0.0035868303, -0.021947071, 0.0016161692, -0.009611448, 0.025746945, -0.015814185, -0.0016432364, 0.02837333, 0.008947867, -0.0065170648, -0.021793399, -0.0075927647, 0.0032602786, -0.009290135, -0.028722584, -0.01091067, 0.018747913, 0.020480208, -0.007299392, -0.009471747, 0.015436992, 0.0023731755, 0.0073971828, 0.013676755, 0.006038588, 0.0026752795, 0.02055006, 0.013124935, 0.008361122, -0.014724515, 0.033360668, 0.0038417852, 0.03892078, -0.007983929, -0.008256346, 0.0016126767, 0.008619569, -0.007962973, 0.025872678, -0.024824917, -0.01756045, 0.019977283, 0.0351209, -0.029616673, 0.02613811, 0.0048371567, -0.0070933327, -0.027954226, 0.012188937, 0.0054867677, 0.0024901754, -0.022226473, -0.023833038, 0.008780225, -0.0027538615, -0.017281048, 0.026780736, -0.013055085, 0.0036846213, -0.02390289, -0.00871736, -0.0059652445, 0.0022160115, 0.0059896926, 0.01841263, 0.0043447097, 0.0013481174, 0.0069152135, 0.022002952, 0.0023993696, 0.021513997, -0.013404338, 0.006328468, 0.0011883341, -0.033500366, -0.023134531, 0.00816554, -0.014542904, -0.017839855, 0.011183088, -0.012705832, 0.014081889, -0.019418478, 0.019334657, -0.008249361, 0.009415867, -0.028890224, -0.0064367363, 0.029728433, 0.012112102, 0.0039186208, 0.020368448, 0.010337895, 0.016834004, -1.2343918E-4, -0.020326536, -0.021388266, -0.027018229, -0.0028673687, -8.5959944E-4, 0.0014921844, 0.0061747967, -0.02067579, -0.028694643, -0.03509296, -0.027409391, -0.007858197, -0.007404168, 0.016736213, 5.31738E-4, 0.016079618, 0.018775852, -0.014962007, 0.005535663, 0.013145891, -0.011497416, 0.028247599, 0.03294156, 1.8925159E-4, 0.044648528, -0.0058464985, -0.04028985, -0.0029424583, 0.02503447, 9.176628E-4, 0.01860821, -0.018035436, -0.023860978, -0.008745301, -0.011148162, 0.009080583, -0.006992049, -0.010847804, 0.012999204, -0.018077346, 0.0045961724, 0.023385994, 0.009422852, -0.009387926, -0.025327843, 0.006185274, -0.024866829, 0.008598614, 0.010302969, -0.014836276, 0.01524141, -0.024391843, -0.004617127, -0.0023277726, -0.022673517, -0.020075073, -0.0013027145, 0.018203078, 0.013138905, 0.03612675, -0.008333181, 0.036070872, 0.011867624, 0.023595547, 0.012670906, -0.01139264, -0.0012171475, -0.025788857, -0.0061992444, 0.016694304, 0.01849645, 0.010931625, -3.911636E-4, 0.0077045257, 0.019851552, 0.0028376824, 0.0059896926, 0.020019194, -0.037663467, -0.03056664, 0.011148162, -0.024252143, -0.008710375, -0.024294052, -0.008004883, 0.029560791, 0.0027678316, -0.008626554, -0.025467543, 0.021919131, 0.002986115, 0.028247599, -0.016624453, 0.01732296, -0.014989948, -0.020158894, -0.019194957, -0.015953887, 0.003635726, -0.02722778, 0.018426599, 0.0061538415, -0.01841263, 0.00549026, 0.026962347, -0.015548753, -0.011015446, 0.019069225, -0.0038138449, -0.014473053, -0.029728433, -0.0091364635, -0.012119086, -0.01623329, 0.0021042505, -0.008186495, 0.015534783, -0.031740133, -0.041714802, 0.024154352, -0.0049139927, 0.036406156, 0.017043557, 0.045486737, 0.021388266, 0.0069012432, -0.02282719, 0.019111136, 5.439619E-4, -0.010498552, 0.02604032, 0.030985745, -0.03137691, -0.012433414, -0.007494974, 0.0021618772, -0.027465273, -0.025746945, 0.036042932, 0.02196104, 0.014417172, -0.019432448, 0.011218013, -0.035651766, 0.007411153, -0.009290135, 0.010582372, 0.0047219032, -0.035372365, -0.01637299, -0.016554601, -0.013949173, 0.02627781, 0.015981827, -0.01947436, 0.010708103, -0.020899313, 0.0015052813, 7.039635E-6, -0.011923504, 0.034170933, -0.022449996, -4.764032E-5, -0.00515847, 0.015604633, 0.0056439317, -0.006558975, 0.016680334, 0.0329695, -0.014277471, 0.0076276897, 0.014060934, -0.025732975, 0.017700152, 0.022142652, -0.014389232, -0.012307683, -0.0146406945, 0.005043216, 0.010163268, -0.0023277726, 0.003880203, -4.69309E-4, -0.01859424, -0.0042888294, 0.010261059, -0.013055085, 0.018999374, -0.04001045, -0.011092282, -0.016959736, 0.008961837, -0.0037649495, -0.016834004, 0.0035763527, 0.008396047, 0.012999204, 0.0019488329, 0.005343574, -0.010519506, -0.008933897, -0.029001987, -0.021234594, -0.008046794, 6.919579E-4, 0.0012765204, -0.025551364, -0.007976944, -0.004320262, -0.002100758, -0.01147646, -0.0019907432, -0.020005224, -0.001720072, 0.014305411, 0.006167812, -0.0061992444, -0.014612754, 0.014626724, 0.007900108, 0.009101539, -0.004830172, -0.004599665, 0.019879492, -0.029113747, 0.004173576, -0.0024168321, -0.014389232, -0.004142143, 0.011902549, 0.022617638, 0.020843431, -0.012321653, -0.025244022, -0.00925521, -0.0011630132, 0.031293087, -0.017574422, 0.0103588505, 0.028261568, 0.021444147, 0.055265825, 0.02053609, -0.022128683, -0.026990287, -0.015423021, 0.00464856, -0.026990287, -0.0060804985, 0.019055255, 0.003768442, 0.008787211, -0.014878186, -0.02936521, -0.009283151, -0.020927252, -0.034701798, -0.0032759951, 0.03246658, 0.046352886, 0.018985404, 0.0015209977, 0.031265147, 0.0047812765, 0.013299562, -0.012174967, 0.0036531885, 0.03187983, 0.007222556, 0.030007835, -0.0031677266, -0.030315178, 0.0094438065, -0.0040583224, 0.0027887868, 0.002764339, 0.007983929, -0.007858197, 0.0010075954, -0.009772104, 0.0055321706, 0.0015515573, -0.014892156, 0.017504571, -0.021667669, 0.0026159065, 0.0065345275, 0.02616605, -0.006164319, 0.009248225, 0.01093861, -0.019739792, 0.005584559, 0.0076905554, -0.009262195, 0.009555568, -0.025998408, 0.028582882, 0.0021444147, 0.007222556, 0.042804472, 0.021220624, -0.011169118, 0.007746436, -0.008654495, -0.011008461, -0.03168425, 0.0017244377, -3.7064496E-4, 0.0325504, -0.02604032, 0.015856095, -0.034087114, 0.014766426, -0.01146249, -0.009017718, -0.005741723, 0.043000054, 0.002921503, -0.036909077, -0.0021374295, -0.011266909, 2.39675E-4, -3.3702934E-4, 0.009716224, -0.019264806, -0.008074734, -0.013795502, -0.0137256505, -0.024866829, -0.017281048, 0.0041386504, 0.004365665, -4.116822E-4, 0.0031170847, 0.1961406, -0.009520642, 0.005305156, 0.04677199, -0.003216622, -0.006492617, 0.03813845, 0.020452268, 0.0032847263, 0.015702425, -0.0057172747, 0.021164743, -9.054389E-4, 0.004673008, 0.006845363, -0.020116985, -0.021919131, -0.02285513, -0.021276506, -0.014626724, -0.01858027, 0.0020047133, -0.013767561, -0.018021466, 0.008186495, 0.004666023, -0.022687487, 0.005741723, 0.024587426, 0.0075438693, -0.008465897, -0.034310635, 0.0037439943, 0.0027852943, -0.004582202, -0.007187631, -0.01739281, 0.011385654, 0.007969958, 0.010952581, -0.0034418902, -0.0059198416, -0.027730705, -0.014019024, -0.0062376624, -2.2166665E-4, -0.026557213, -2.997029E-4, -0.026627064, 0.015381111, -0.057389285, -0.015884036, 0.023385994, 0.01205622, -0.018119257, -0.015828155, 0.00463459, 0.0033318757, -0.014892156, -0.013376398, -0.010645238, 0.035428245, -0.007858197, 0.010302969, -0.0073552723, 0.026920438, -0.038445793, -0.012133056, 0.018566301, -0.02950491, -0.016596513, -0.020605939, -0.015311261, 0.005067664, -0.010917655, -0.023469815, 0.011679027, -2.8274503E-6, 0.010288999, 0.027283661, -0.023595547, -0.013523084, 0.012119086, 0.0068313926, -0.027702764, -0.012174967, 0.004267874, -0.022296324, -0.013180816, -0.02729763, -0.004218979, -0.017909704, -0.018747913, 0.02053609, -0.02170958, -8.312226E-4, 0.027437331, 0.013516099, -2.6390445E-4, -0.021891192, -0.034366515, 0.0152553795, 0.014878186, 0.015073768, -0.028610822, -0.022254415, -0.0065624677, 0.011692997, 0.036741436, -0.024084501, -0.01623329, -0.008263331, 0.0028533987, -0.011951445, 0.006178289, 0.023204383, -0.0065484974, -0.006241155, 0.02184928, -0.017085467, -0.0058395136, -0.027283661, 0.01965597, 0.0039360835, -0.014822306, -0.03140485, -0.029085808, -0.004774291, -0.0023138025, -0.03171219, 0.02303674, -0.018300869, 0.01751854, -0.016750183, 0.011972399, 0.0077953315, 0.023064682, 0.0071457205, 0.009143448, -0.016903855, 0.015898006, -0.0074810036, 0.012209892, 0.0057172747, -0.005692827, -0.028946105, 0.014878186, -0.012831563, -0.0069815717, -0.034310635, -0.028862284, -0.010449656, 0.011497416, 6.587789E-4, 0.029281389, -0.0070060194, -0.0023452353, -0.03707672, -2.0780566E-4, 0.03595911, -0.047666077, 0.03168425, 0.02733954, -0.03137691, -0.011769833, 0.0075718095, -0.17971173, 0.03403123, 0.016750183, -0.04693963, 0.030119596, 0.016959736, 0.039507523, 1.8685046E-4, -0.0040932475, -0.010756998, 0.03187983, 0.0038487704, -0.030007835, -0.009122494, -7.8276376E-4, 0.024922708, -0.01947436, 0.020214776, 0.034981202, -9.010733E-4, 0.02497859, -0.013355442, -0.013711681, 0.002776563, 0.017085467, -0.0028795926, 0.024545515, -0.015409051, -0.0075648245, -0.0020239223, -0.028079957, -0.007037452, 0.014445112, 0.0016537139, -0.010072462, -2.6193992E-4, -0.011720938, -0.015381111, -0.009611448, -0.017057527, 0.026724854, 0.00919933, 0.027493212, -1.9416296E-4, 0.013977113, 0.011497416, 0.041435402, -0.0056020212, 0.009800045, -0.009380941, -0.016931795, -0.032047473, 0.02613811, -0.008710375, 0.004477426, 0.017378839, 0.0028446673, 0.014361292, 0.008242375, 0.013970128, -0.028918166, 0.0042958143, -2.492795E-4, -0.012091146, -0.0011953191, -0.009548582, -0.02063388, 0.0069745863, -0.025593275, 0.02278528, -0.02517417, 0.017113406, 0.01359992, 0.007411153, 0.011015446, -0.0099746715, -0.037356123, -0.01848248, -0.0056090066, 0.02285513, -0.016303139, 0.048783686, 0.007844227, 0.0013743114, 0.009911806, -0.015115678, 0.0064297514, 0.008885002, 0.0018754897, -0.0015279828, 0.008654495, -0.016009767, -0.017225169, -0.008451927, 0.008745301, 0.01744869, -0.014228576, 6.133759E-4, 0.012112102, -0.013502128, -0.006269095, -0.011595206, -0.010233119, 0.03162837, 0.02070373, 0.023763187, 0.005626469, 0.014654664, 0.013236697, 0.00656596, -0.017211199, 0.009143448, 0.009646374, 0.012559145, -0.017867794, 0.009597478, 0.003768442, -0.03601499, -0.0115812365, 0.02162576, 0.05546141, -0.012202907, 0.0068698106, -0.0044355155, -0.010694133, 0.010833834, -0.09477335, 0.021444147, 0.0076765856, 0.023819068, -0.009164404, 0.041016296, 6.587789E-4, 9.159165E-4, -0.021276506, 0.025565334, -0.012566131, -0.014864217, 0.01838469, -0.007809302, 0.004379635, -0.01311795, -0.018664092, -0.0151715595, -0.021276506, 0.030147536, -0.011623147, 0.0013673262, -0.004117695, -0.013634845, -0.014319382, 0.011322789, -0.030818103, 0.015898006, 5.828163E-5, -0.0035414274, 0.005567096, -0.022589697, 0.0026560705, -0.039814867, -0.03277392, -0.026585154, -0.004962888, -0.02497859, 0.01851042, -0.045458797, -0.0015655275, 0.026221931, -0.005909364, -0.0076696, 0.006621841, -0.004239934, -0.03361213, 0.037328184, -0.002573996, -0.014012039, -0.024545515, -0.026878526, -0.028610822, -0.013006189, 0.015381111, 0.018021466, 0.023637457, 0.008668465, -0.011741892, -0.015450962, -0.022715429, -0.0047149183, -0.028121868, 0.010219148, 0.0011333267, 0.01526935, -0.0070164967, -0.014808336, 0.018692032, -0.004610142, -0.030398998, 0.022226473, -0.04266477, -0.005378499, -0.011720938, -0.0015646544, -0.02077358, 0.0019208926, 0.028834345, -0.03168425, 0.003565875, -0.021039013, 0.009003747, -0.018971434, 0.029141687, 0.03506502, 0.010365835, 0.027800554, 0.013278606, -0.0477499, -0.018077346, 0.026221931, -0.008472883, -0.0128036225, -0.0063773636, 0.024908738, 0.008654495, -0.002814981, -8.312226E-4, 1.2682258E-4, -0.023316143, -0.017029585, -0.08186495, 0.047638137, -0.020298596, -0.005535663, -0.0020571013, -0.011238968, -0.011071326, 0.002736399, 0.0054308875, 0.023148503, -0.008808166, 0.015856095, 0.004351695, -0.010212163, -0.0146406945, 0.0032986966, 0.0091364635, 0.014375262, 0.0024989066, 0.025271961, -0.027283661, 0.041044235, 0.017951615, 0.007886137, 0.017183257, 0.013103981, 0.012929354, -0.007306377, -0.021695608, -0.014242546, 0.032243054, -0.018021466, -0.001666811, -0.011169118, -0.007746436, -0.015031858, -0.0043027997, -0.00651008, 0.02395877, 0.012426429, -0.0037998748, -0.014417172, -2.580108E-4, 5.435253E-4, -0.0041526207, 0.008158555, -0.02395877, 0.0036427109, 0.0104356855, 0.020130955, 0.012642966, -5.57168E-5, -0.012405474, -0.00312407, 0.016414901, -0.008025839, 0.05442762, 0.003347592, 0.0076835705, -0.01746266, 0.021318415, -0.00438662, 0.013711681, -0.03567971, 0.0014590053, -0.012321653, 0.010736044, -0.014514963, -0.0054448573, -0.014710545, -0.034394454, -0.006597393, 0.010491566, 0.04699551, 0.01409586, 0.019069225, 0.014514963, -0.0070793624, -0.001431065, 0.0077673914, 0.029309329, -0.016219318, -0.038557556, 0.013481174, 0.003242816, 0.014019024, -0.01306207, 0.0041875457, 0.012279742, 0.020228745, 0.008151569, 0.013620875, 0.024084501, -9.508419E-4, 0.0031747117, 0.0074740187, -0.019334657, -0.005909364, 0.0059233345, 0.024713157, 0.011364699, -0.002645593, 0.002842921, -0.018021466, -0.017001646, 0.026892496, -0.012063205, -0.029784312, 0.02390289, 0.008654495, 0.03263422, -0.002343489, -0.026207961, 0.016428871, -0.02939315, 0.008682434, -0.01754648, -0.015870066, -0.008347152, 0.027437331, 0.0144870225, 0.008933897, 0.039731044, -3.9858522E-4, 0.058506895, 0.009681298, 0.03621057, -0.021122834, -0.007858197, -0.0040268893, -0.012489295, -0.011176103, -0.001752378, 0.0016851467, -0.008682434, -0.005926827, 0.010708103, 0.034534156, -0.030203417, 0.081306145, 0.025970468, -0.014431142, 0.0066078706, -0.024266113, -0.0016956243, 0.011176103, 0.013844397, -0.032438636, -0.027171899, 0.0027800554, 1.8619561E-4, -0.007536884, -0.033220965, 0.011888579, -0.0025355783, 0.011616162, 0.02828951, -0.020829462, -0.022589697, -0.011923504, -0.012761712, 0.014766426, 0.0108966995, 0.0077883466, -0.0046765003, 0.0273116, -0.0031502638, 0.0038941733, -0.02288307, 0.0032986966, -0.033304784, -0.00464856, 0.0016781617, 0.01647078, -0.017630301, -9.2726725E-4, 0.007830257, 0.016205348, 0.011427565, -0.029197568, -0.015702425, -0.011029416, -0.03718848, 0.011294848, 0.0056823497, -0.002684011, -0.029728433, 0.0019855045 ], + "id" : "3fc1ccf5-e7b4-4da7-8267-4c738fdd63ee", + "metadata" : { + "source" : "movies.csv" + } + }, + "48189297-c67b-48a1-81ea-f6d02c976a77" : { + "text" : "5,14182,Hugh Jackman-James McAvoy-Michael Fassbender-Jennifer Lawrence-Nicholas Hoult-Patrick Stewart-Ian McKellen-Halle Berry-Elliot Page-Peter Dinklage-Anna Paquin-Evan Peters-Josh Helman-Shawn Ashmore-Omar Sy-Daniel Cudmore-Fan Bingbing-Adan Canto-Booboo Stewart-Evan Jonigkeit-Famke Janssen-James Marsden-Kelsey Grammer-Lucas Till-Mark Camacho-Zehra Leverman-Alexander Felici-Jan Gerste-Massimo Cannistraro-Mike Dopud-Lee Villeneuve-Andreas Apergis-Robert Montcalm-Gregg Lowe-Jaa Smith-Johnson-Alex Ivanovici-Alain Dahan-Freddy Bessa-Patricia Tougas-Michael Lerner-Chris Claremont-Len Wein-Fran�_ois Paquette-Zabryna Guevara-Angela Galuppo-Milo Chang Sigel-Kiana Chang Sigel-Victor Cornfoot-Brent Skagford-Kyle Gatehouse-John-S��bastien C��t��-St��phane Julien-Taris Tyler-Darryl Scheelar-Thai-Hoa Le-Johnny Tran-Hryhoriy Hlady-Dang Quoc Thinh-Vladimir Aksenov-Jimmy Chan-Julian Casey-Robert Crooks-Matt Cooke-Tim Post-Jason Deline-Karine Vanasse-Pierre Leblanc-Jude Beny-Arthur Holden-Susanna Fournier-Andrew Peplowski-John Sanford Moore-Moe Jeudy-Lamour-Harry Standjofski-Brianna Bone-Neil Napier-Jason Koehler-Miya Shelton-Contreras-Mizinga Mwinga-Christian Jadah-Brendan Pedder-Bryan Singer-Morgan Lily-Sean Curley,1970s-mutant-time travel-based on comic-superhuman-storm-political intrigue��-extinction-beast-claws-aftercreditsstinger-changing the past or future,/tYfijzolzgoMOtegh1Y7j2Enorg.jpg,/fctQU5MoXgJ5pNMljFzlEFXwfSu.jpg,246655-468015-803843-758982-477295-600360-750741-49538-919459-107488-36658-36668-76170-100402-36657-2080-56497-76338-44090-102382-118340\r\n80321,Madagascar 3: Europe's Most Wanted,Animation-Family-Comedy-Adventure,en,Animal pals Alex Marty Melman and Gloria are still trying to make it back to New York's Central Park Zoo. They are forced to take a detour to Europe to find the penguins and chimps who broke the bank at a Monte Carlo casino. When French animal-control officer Capitaine Chantel DuBois picks up their scent Alex and company are forced to hide out in a traveling circus.,70.042,DreamWorks Animation,6/6/12,145000000,746921274,93,Released,They Have One Shot to Get Back Home.,6.", + "embedding" : [ 0.009995218, -0.018325686, -0.012640025, -0.04446496, -0.014955907, 0.045189932, 0.008478147, -0.0076726223, -0.028945185, -0.031522863, 0.023856955, 0.020675132, 0.023830105, -0.0024299994, 0.008746655, 0.015721155, 0.0145531455, -0.022944028, 0.002873038, -0.022219054, -0.009344086, 5.0135516E-4, -0.019829331, 0.0049338383, 0.020070989, 0.014298063, 0.027710048, -0.006118631, -0.011834499, 0.007289998, 0.005490993, -0.012364803, -0.0061790454, -0.027011925, -0.017775243, 0.008108948, 0.010706765, -0.036409713, 0.040115125, -0.01037113, 0.019077508, 0.010176461, -0.0060212966, -0.017547011, -0.007041628, 0.015103587, -0.0037826095, -0.013989278, -0.018567342, 0.033966288, 0.020755684, 0.027844302, -0.012344665, -0.024743032, -0.012948808, -0.017036846, -0.023400491, -0.007397401, -0.0016353829, 0.0012460459, 0.008202926, -0.013962427, -0.035094023, -0.01702342, -0.03442275, -0.016741486, 0.0046686865, -0.01684889, 0.004245786, 0.015291543, 0.022756072, 0.008129086, 0.017869221, -0.017828945, 0.018446514, -0.016083643, -0.031146953, 0.0013333111, -0.015251267, 4.1031413E-4, 0.028569274, -0.013505963, -0.0042222915, 0.004635123, 0.014324913, 0.005645385, -0.013814747, 0.016513254, -0.03136176, 0.018030327, 0.0013962428, 0.021749165, -0.011599555, -0.003567803, 0.015922537, 0.018540492, -0.010236876, 0.0146068465, -0.01761414, -0.037537448, 0.0022017674, -0.006987926, -0.016137343, -0.011968753, 0.008800357, -0.01143845, -0.0032892255, 0.0030140048, 0.010357704, 0.021923695, 0.011532428, -0.0030190393, 0.020030713, -0.04803612, -0.006642222, -0.037430044, 0.021077896, -0.016929442, -0.016043365, -0.006484473, 0.03893369, 0.043901093, 0.010203312, -0.020178393, 0.04543159, 0.031522863, 0.0037255515, -0.015103587, -0.0057628574, 0.006853672, 0.024917562, -0.029992368, 0.01866132, 0.0023444123, -0.018809, 0.04970087, -0.023400491, 7.9000153E-4, -0.020983918, -0.014835079, 0.037403192, 0.02691795, -0.022420436, -0.008793644, -0.02501154, 0.008565412, 0.01731878, -0.004235717, 0.028085958, 0.009411213, 0.030771041, 0.022366734, 0.020527452, 0.022997728, 0.004339764, 0.009109141, -0.009042014, -0.0065616695, 0.0014356798, -0.022890326, -0.0016630727, -0.003675206, -0.009491765, -0.02600502, -0.004843217, 0.022608392, 0.02650176, -0.018540492, -0.008176075, 0.0079814065, -0.009525329, 0.033751484, -0.014942482, 0.015586901, 0.009719998, 0.014660548, 0.0011596199, -0.015694305, -0.035443082, -0.0154660735, 0.0022151927, 0.011968753, 0.043901093, 0.03796706, -0.011834499, 0.011156516, 0.027871152, -0.029589605, 0.014955907, -0.016902592, 0.0013912081, 0.013774471, 0.011451875, -0.0050513106, -0.6345386, -0.008672816, -0.0076189204, 0.0045747086, 0.011653257, 0.020057563, 0.0062864483, -0.013089775, -0.034154244, -0.008800357, -0.016714636, 0.010465108, 0.025870766, -0.025629109, -0.019090934, -0.013989278, 0.0023192398, -0.026783694, 0.0019852826, 0.016217897, -0.027575793, 0.022326458, 0.0146068465, -0.01069334, -0.004148452, 3.721356E-4, -0.0023544815, -0.018862702, 0.021145022, -0.0035845847, -0.0228769, 0.010250301, 0.0066657164, 0.0014524616, 0.032731153, 0.0067227744, 0.0023813322, 0.055044185, 0.037215237, 0.03624861, -0.022433862, 0.012861543, 0.0071154675, 0.015023035, -0.025749939, 0.01652668, 0.0058064903, 0.0098542515, 0.0060682856, -0.0012124825, -0.0039336453, 0.0068872357, -0.019198338, -0.017184526, -0.01866132, -0.0014340017, 0.009585743, -0.03600695, 0.02749524, 0.0014885424, -0.012519196, 0.015372096, 0.0038329547, 0.02285005, 0.008048533, 0.02211165, 0.002681726, -0.0020255588, 0.0067127054, -0.025226347, 0.012022455, 0.017761819, -0.025320325, 0.0035174575, 0.01863447, 0.0044169603, 0.0068570287, -0.0038833, -0.010122759, 0.009666296, 0.008370743, -0.0047525954, -0.0015925893, 0.019990437, 0.023856955, -0.003025752, -0.04349833, 0.013761046, 0.008202926, -4.455558E-4, 0.0108678695, 0.023776403, 0.014056405, -0.003816173, -0.023655573, -0.010525522, -0.011143091, 0.0013727483, 0.013405273, -0.06846959, -0.017681265, -0.02302458, 0.03442275, -0.020983918, 0.018849276, 0.008840633, -0.019990437, -0.008169362, 0.023494469, -0.014311488, -0.017828945, 0.0020037426, -0.014110107, -0.014794802, -0.02873038, -0.034530155, 0.0054339347, 0.013519389, -0.012982372, -0.0056487415, 0.0013022649, 0.019319165, 0.008444583, -0.020836238, 0.024112038, 0.0342885, -0.004557927, -0.02846187, 0.007310136, 0.02056773, 0.001189827, 0.0011906661, 0.016714636, -0.027871152, 0.010384555, 0.011700246, 0.019627951, -0.008780219, 0.011055825, -7.2371354E-4, -0.029106291, -0.01833911, -0.008270053, -0.021104746, -0.02389723, -0.013989278, -0.021158447, 0.0029972228, -0.0047525954, -0.011720384, -0.010606075, 0.013096488, -7.027363E-4, 0.004396822, 0.0065079676, 0.002617955, -0.0043833964, -0.016217897, 0.0067999703, -0.03168397, 0.008847346, 0.017197952, 0.008914473, -0.019815907, 0.017184526, 0.0038598056, -0.0042860624, 0.013922151, -0.007202733, -0.016714636, 0.0068469592, -0.023091706, -0.0040611867, 0.0036819188, -0.016110493, 0.017922923, -0.00933066, 0.015586901, -0.004302844, -0.0122574, 9.003416E-4, -0.014512869, -0.020930216, -0.021708889, 0.02617955, 0.014056405, 0.027105903, -0.014083256, -0.014123532, 0.0010882973, -0.00980055, -0.0126937255, -0.0023528032, -0.020514028, -0.00972671, 0.019332591, 0.010981986, 0.006262954, 0.005118438, -0.0068301777, 0.040088277, 0.023575021, 0.012539334, 0.006424059, 0.016164195, -0.034906067, 0.005615178, -0.020164967, 0.0032573403, -0.008417732, 0.03340242, -0.009693147, -0.02875723, 0.0019869609, -4.3590632E-4, 0.022192204, -0.0079478435, 0.0089815995, -0.018110879, 0.011425025, 0.0025525063, -0.0049640457, 0.012311102, 0.02240701, -0.014512869, 0.0012896785, 0.0025273336, -0.01165997, -0.009189693, -0.009129279, -0.017157676, -0.0010354348, 0.003769184, 0.011384748, 0.010136185, -0.01863447, 0.0204469, -0.010981986, 0.040625293, -0.024474524, -0.0021732384, 0.012096295, 0.024904137, 0.008531849, 0.0049371948, -0.021118172, 0.017090548, 0.01831226, -0.0012384942, 0.042988166, -0.0077128983, 0.028220214, 0.004970758, 0.012888394, 0.0034335488, -0.010169748, -0.002559219, 0.020822812, 0.03361723, 0.018043753, 0.016137343, -0.02781745, 0.019547397, 0.010391268, 0.00848486, 0.001341702, -0.018285409, -1.4348408E-4, 0.008223064, -0.031522863, -0.024501374, -0.0136536425, 0.0098743895, 0.004900275, -0.013505963, -0.01054566, -0.0033764907, 0.0018527067, 0.0063435067, 0.030958997, 0.011129665, -0.041699324, 0.004393466, 0.023601873, -0.025468005, -0.029992368, -0.0014340017, -0.009015163, -0.03326817, -0.014808228, -0.0089010475, 0.029616456, -0.01684889, 8.2356506E-4, -0.003102948, 0.005970951, 0.022205628, -0.02015154, 0.008370743, 0.018003475, -0.012163422, 0.01193519, -0.00523591, -0.010733616, 0.020634856, -0.01282798, -0.012572897, -0.017708117, -0.0098743895, -0.010820881, -0.014687399, 0.007182595, -0.03785966, 0.012156709, -0.021950547, -0.0050680926, -0.0145531455, 0.030019218, 0.030475682, -0.013922151, -0.027079053, -0.02746839, -0.027065627, -0.012760852, 0.08065987, 0.03785966, 0.010961847, 0.0055547636, -0.0065818075, 8.650999E-4, -0.0022823198, -0.0080015445, -0.012888394, -0.023467617, 0.010337566, -0.021722315, 0.023507895, 0.0034603996, 0.021279275, -0.0054775677, -0.016244747, -0.010431544, -0.0027354273, -0.005007678, -0.019171486, -0.013922151, 0.023856955, 0.03858463, 0.009706572, -0.006940937, 0.0014776343, 1.20618926E-4, -0.0030861662, 0.0063401503, -0.0074108266, -1.74845E-4, 4.8536007E-5, 0.026662866, 0.0077666, -0.009089003, 0.022205628, 0.013062924, 0.024058336, -0.001084941, -0.00251223, 0.020326072, 0.001188988, 1.1946518E-4, 0.014915631, -0.026380932, -0.010552373, 0.030985847, 0.028488722, -0.02632723, 0.014781377, 0.003863162, -0.0145665705, 2.1627497E-4, 0.014727675, 0.012478919, -0.011485439, -0.007867291, -0.019480271, -0.006491186, 0.0024669191, -0.032274686, 0.015130438, -0.017211376, -0.0155197745, -0.009042014, -0.0117875105, -0.01240508, -0.023494469, 0.0024132177, -0.0026062077, -0.036087506, 0.002369585, -0.0029351304, 0.015331819, -1.0231631E-4, 0.03332187, -0.0053500263, 0.009954942, 0.020003863, -0.032811705, -0.021950547, -0.0037389768, -0.027159605, -0.0018258558, 0.012794416, -0.011277345, 0.014432317, -0.008491572, 0.0030677062, 0.0054708547, -0.007699473, -0.024112038, -0.0025642535, 0.03632916, 0.0106195, 0.008357318, 0.01602994, 0.0026800476, 0.0045478577, 0.011425025, -0.029562755, -0.0054238657, -0.010337566, -0.019614525, -0.0046787555, -6.691728E-4, -0.0039537833, -0.02272922, -0.0360338, -0.021239, -0.024434248, -0.006427415, -0.004252499, 0.009659583, -0.0032237768, 0.023601873, 0.018849276, -0.014727675, 0.0042290045, -0.007907567, -0.02141353, 0.009464915, 0.03463756, -0.00890776, 0.040786397, -0.017211376, -0.020930216, -0.0010530556, 0.027320711, 0.012458781, 0.02781745, -0.020164967, -0.0075316555, -0.018500216, -0.018755298, 0.007706186, -0.0013677137, -0.019184912, 0.015398946, -0.019775629, 0.012364803, 0.014754526, 0.004786159, -0.016043365, -0.033429272, 0.009666296, -0.0136469295, 0.010163036, 0.026904523, -0.0049036313, 0.013445549, -0.018070603, -0.01453972, -0.025051815, -0.039094795, -0.024125462, -6.410634E-4, 0.024716182, 0.024608778, 0.040383637, -0.007679335, 0.018553918, 0.018245133, 0.01158613, 0.025293473, -0.027898004, -0.007061766, -0.034449603, 0.005541338, 0.011317621, 0.01851364, 7.27909E-4, -0.0012494023, 0.0055279126, 0.021118172, 0.016687786, 0.016191045, -0.0011831144, -0.0136737805, -0.019990437, 0.0075316555, -0.035040323, 0.0053533823, -0.02650176, -0.01833911, 0.024890712, 0.010324141, -0.010391268, -0.0053600953, 0.012532621, 0.0039940597, 0.017721541, -0.028381318, -9.632732E-4, -0.029240545, -0.0032120296, -0.01233124, -0.0055077747, -0.0034335488, -0.01761414, 0.032247838, 0.002122893, -0.008860771, -0.011223643, 0.026850821, -0.0050143907, -0.029831262, 0.026260104, -0.01848679, -0.011720384, -0.031227505, -0.0042290045, -0.02317226, -0.011498864, -0.0052560484, -0.026206402, 0.001313173, -0.02252784, -0.030287726, 0.01863447, 0.006387139, 0.041940983, 0.009444776, 0.043390926, 0.037295792, 0.013532814, -0.019869607, 0.008766793, -0.0061320565, 0.010706765, 0.026018446, 0.023521319, -0.023668999, -0.011216931, -0.003190213, 0.004104819, -0.0253069, -0.033885736, 0.036221758, 0.030314578, 0.030663637, -0.029240545, -0.0126803005, -0.02354817, 0.007229584, -0.005034529, 0.0066925674, 0.003540952, -0.029025737, -0.021145022, 0.008035108, 4.8876886E-4, 0.002752209, 0.011572704, -0.013700631, 0.018876128, -0.027374413, 0.021494083, -0.005736007, -0.016298449, 0.013599941, -0.016325299, 0.016956294, 0.004880137, 0.0117539475, 0.0060884235, -0.0072631473, 0.008531849, 0.028193362, -0.03197933, 0.016137343, -0.0011764016, 0.0042659245, 0.013975852, 0.011411599, -0.014915631, -0.018365962, -0.020178393, -0.0011252172, 0.028676677, -0.007155744, -0.0036852753, 0.0108544445, -0.018768724, -0.004339764, 0.0024736319, -0.009471627, 0.0021430312, -0.030341428, 0.01670121, -7.4343215E-4, 0.0053600953, -0.00641399, 1.845994E-4, -0.0073436997, -0.008108948, 0.0031784659, -0.004863355, -0.0016723027, -0.009377649, -0.011143091, -0.049137004, -0.02091679, -0.014405466, -0.006967788, 0.0032288113, -0.018943254, -0.0027404618, -0.00420551, -0.012371516, -0.0058669043, 0.0018208213, -0.026877671, -0.0037859657, 0.010236876, -0.0063300813, -0.009216544, 0.0063636447, 0.031281207, 0.0036282171, -9.2551426E-4, 0.0063737137, 0.008236489, 0.034154244, -0.016150769, 0.0127138635, 0.005957526, -0.0122574, -0.01568088, 0.0077666, 0.029884964, 0.013787896, -0.0074645285, -0.0342885, -0.016432703, -0.006101849, 0.034798663, -0.0012905176, 0.01488878, 0.036866177, 0.029723858, 0.0375643, 0.021749165, -0.012760852, -0.018003475, 6.230229E-5, -9.565605E-4, -0.022178778, -0.0040511177, 0.0032573403, 0.00858555, 0.020111265, -0.004235717, -0.03501347, -8.8104256E-4, -0.025427727, -0.032435793, -0.008404307, 0.027401263, 0.028837781, 0.017265078, 0.001723487, 0.008464721, 0.015076736, 0.013828173, -0.019439995, -0.01781552, 0.010800743, 0.0039839908, 0.020111265, 0.026542038, -0.023856955, -0.016070217, 0.015278118, 0.027374413, 0.013734195, 0.027683197, -0.013707344, -0.01004892, -0.01746646, 0.015868835, -0.0023007798, -0.0036987006, 0.03173767, -0.028247064, -0.008135799, 0.0070550535, 0.006863741, 0.0012980694, 0.0072832853, 0.010934997, -0.011096102, 0.009337373, -0.010740329, -0.018540492, 0.0028898197, -0.027763749, 0.009276959, 0.010236876, -0.006612015, 0.031952478, 0.016593808, -0.0014675652, 0.01265345, 0.0015078414, 0.004980827, -0.0029183486, 0.004645192, 0.004823079, 0.027629495, -0.02711933, 0.0039705653, -0.02468933, 5.3072325E-4, -0.009411213, -0.0021900202, -0.006518037, 0.034234796, 0.0047425264, -0.055742305, 0.0079679815, -0.009585743, 0.011505577, -0.011485439, 0.002045697, -0.027629495, -0.017009996, -0.0074376776, 0.006531462, -0.025561983, -0.037107836, 0.015197565, -0.003282513, -0.004557927, 0.018218283, 0.18892238, -0.020675132, 0.010934997, 0.031871926, 0.016647508, 0.015573476, 0.027052203, 0.026823971, 0.007289998, 0.011324334, -1.20618926E-4, 0.010095909, -0.006051504, 9.355833E-4, 0.016916018, -0.021198723, -0.033536676, -0.014754526, -0.013203891, -0.015962813, -0.00477609, 0.013096488, -0.0012284251, -0.027374413, 0.010008643, -6.1840797E-4, -0.009612594, 0.0016622336, 0.0045277197, -0.001284644, -0.002361194, -0.010565798, -0.013599941, 0.01406983, -0.025320325, -0.010129472, -0.012955521, 0.01585541, 0.008162649, 0.01582856, 0.0053600953, 2.3284697E-4, -0.004759308, 0.0018443158, 0.0018258558, 0.016660934, -0.02191027, 0.0034436178, -0.02515922, 0.020903364, -0.05002308, 0.0013786219, 0.014177234, 0.02319911, -0.016875742, -0.01635215, 0.014177234, 0.0029636594, -0.0040511177, 0.0066489344, 0.013277731, 0.034798663, -0.02907944, 0.009525329, -4.8667114E-4, 0.025199495, -0.040571593, -0.0030979135, 0.016607232, -0.022433862, -0.021735739, -0.0245148, -0.012143284, 0.009793837, -0.010069058, -0.018473364, 0.005373521, 0.0037926785, 0.016862316, 0.018688172, -0.016540106, -0.01332472, 0.016043365, -0.0033513182, -0.017090548, -0.02153436, 0.02419259, -0.012022455, -0.012606461, -0.016687786, 1.5218962E-4, -0.030932147, -0.0015221059, 0.010183174, -0.0021094678, 0.005148645, 0.023507895, 0.017963199, -0.016781764, -0.0044975127, -0.036490265, 0.020379774, 0.009686434, -0.016271599, -0.025749939, -0.02106447, -0.0089547485, -0.005860192, 0.022621818, -0.006585164, -0.031952478, -0.03267745, -0.0080283955, -0.008813782, 0.003302651, 0.018285409, 0.008887622, -0.011277345, 0.042531703, -0.01315019, -0.0028562562, -0.026689716, 0.024058336, -0.004722388, 0.001341702, -0.035174575, -0.030019218, 0.0039839908, 0.007786738, -0.026877671, 0.010478533, -0.014016129, 0.008867484, -0.0031868569, -0.011230356, 0.013801322, 0.020218669, -0.0110424, 0.004843217, 0.003198604, -9.993541E-4, -0.016580382, 0.020970492, 0.011552566, 0.0012015742, -0.02272922, 0.025468005, -2.708157E-4, -0.016983144, -0.029670158, -0.026609164, 8.3992723E-4, 0.0066355094, 0.0079881195, 0.04932496, -0.004255855, -0.010216737, -0.043713138, -0.0048667113, 0.042665955, -0.027428115, 0.009988505, 0.0196011, -0.005749432, -0.01781552, -0.002216871, -0.17120084, 0.011955328, 0.0073638377, -0.024796734, 0.011203505, 0.010592649, 0.026689716, -0.0056588105, 0.0038900129, -0.023507895, 0.029025737, 0.0052392664, -0.049808275, -0.0021178585, -0.0027001856, 0.02528005, -0.01635215, 0.035389382, 0.018822426, -0.0063737137, 0.050237887, -0.0061891144, -0.006974501, -0.0014910597, 0.016714636, 0.009498478, 0.026998501, -0.0061219875, 0.004433742, -0.02176259, -0.032006178, -0.006565026, 0.01729193, 0.004074612, -0.013492538, 0.006007871, -0.011270632, -0.014660548, -0.01339856, -0.016338725, 0.04446496, 0.019050658, 0.015922537, -0.007222871, 0.024434248, 0.008129086, 0.03356353, -0.014472593, 0.017734967, -0.013331433, 0.0040041287, -0.03302651, 0.041511368, -0.0080216825, 0.005037885, 0.021628337, 0.0070550535, 0.016217897, 0.022192204, 0.011948615, -0.034261648, -0.014902206, 0.011317621, -0.018768724, -0.015613752, -0.033482973, -0.017197952, 0.023387065, -0.034771815, 0.018030327, -0.026166126, 0.015694305, 0.017936349, 0.0041350266, 0.009813976, -0.022125077, -0.03356353, -0.003937002, -0.0035845847, 7.354608E-4, -0.021480657, 0.03560419, -0.015976239, 0.022219054, -0.0010924928, -0.009760274, 0.008451296, 0.0030895227, -0.0045377887, -0.011216931, 0.0032523058, -0.012948808, -0.030287726, 0.0012233906, 0.009223257, 0.00922997, -0.017063698, 0.015291543, 0.008786932, 0.0018862702, -0.0023662287, -0.011082676, -0.021843143, 0.016392427, 0.014284637, 0.009585743, 0.011854637, 0.018970106, 0.022299606, 0.0037289078, 0.00409475, -0.0038900129, 0.027213307, 0.013626792, -0.027401263, 0.016607232, -0.019627951, -0.018849276, 0.0089480365, 0.017479885, 0.03399314, 8.9939764E-5, 0.0108477315, -0.0107873175, -0.010888008, -0.004910344, -0.0884466, -0.011425025, -0.0022319746, 0.041511368, -0.026434634, 0.03662452, -1.08032604E-4, 0.023762977, -0.014136957, 0.040034574, 0.011646544, -0.024850436, 0.018527066, -0.0017671196, 0.015117012, 0.010404693, -0.016486404, -0.0019617882, -0.012149997, 0.023575021, 0.0016714636, -0.009766987, 7.535012E-4, -0.0069610756, -0.0117606595, 0.016607232, -0.023400491, 0.021507507, 0.015170714, 0.0145934215, 0.008766793, -0.031925626, 0.020795962, -0.052547056, -0.026823971, -0.027079053, -0.008061959, -0.020715408, 0.008491572, -0.055473797, 0.0068066833, -4.6946984E-4, -0.010008643, -0.02691795, -7.18679E-4, -0.011955328, -0.025105517, 0.03600695, -0.011089389, -0.034557007, -0.0056588105, -0.011216931, -0.034744963, -0.0077196113, 0.006967788, 0.025414303, 0.011874775, 0.008625827, -0.017345631, -0.033080213, -0.0074645285, -0.0077666, -0.017238228, 0.022675518, 0.005215772, 0.014378615, 4.0716754E-4, 0.0025441153, 0.017211376, -0.01602994, -0.01518414, 0.036866177, -0.021010768, -0.01925204, -0.015627177, 0.015895687, -0.027710048, -0.001227586, 0.023507895, -0.024971263, -0.0033513182, -0.03498662, 0.0057225814, -0.010230163, 0.01325088, 0.0014407143, 0.015492924, 0.006501255, -0.010189887, -0.033214465, -0.0013265983, 0.02873038, 0.014177234, -4.3548676E-4, -0.005682305, 0.017224802, 0.018285409, -0.0117405215, 0.0014155417, 0.023655573, -0.011351185, 0.008350605, -0.07308794, 0.030153472, -0.012942096, -0.011169942, -0.0032237768, -0.012230549, 0.0064945426, -0.00462841, 0.008236489, 0.00933066, -0.0037993912, 0.009203119, -0.012089582, 0.0072362963, 0.010411406, 0.010579224, 0.004208866, -0.006605302, 0.0012796095, 0.007659197, -0.008592263, 0.013586516, 0.03557734, 0.0039168634, -0.0056957304, 0.025629109, 0.0035946537, 0.01942657, -0.021037618, -0.00167482, 0.02875723, -0.020003863, -0.009733423, 0.008102235, -0.004635123, -0.03726894, -0.009968367, 0.0023158833, 0.013499251, 0.011398174, -0.007860578, -0.021977397, 0.011062538, -0.007900855, -0.0014591743, 0.015667453, -0.019614525, 0.024447672, 0.006575095, 0.00801497, 0.03203303, 0.006158907, -0.010122759, -0.021346403, 0.0064978986, -0.015372096, 0.040061425, 0.0079814065, 0.006417346, -0.024474524, 0.020836238, 0.010626213, 0.025186071, -0.03732264, -0.0107940305, 0.0044303853, 0.00900845, -0.0021849857, -0.0019584317, -0.036812477, -0.0034704686, -0.002789129, 0.012613174, 0.044948276, 0.022044525, 0.014808228, -0.010156323, 0.0025340463, -6.255402E-4, 0.021547785, 0.011082676, -0.0108544445, -0.02454165, 0.021977397, -0.0021614912, 0.017345631, -0.006716062, 0.011176654, -0.0029284176, 0.007907567, -0.017667841, 0.013432124, 0.006407277, 0.016070217, 0.0050143907, 0.020675132, -0.009558893, -0.021037618, -0.010653064, 0.024622204, -0.013096488, -0.0010622856, -0.013163615, -0.019668227, -0.027898004, -0.0036483554, -0.012935383, -0.021319551, 0.0016689464, 0.013855024, 0.025172645, 0.026112424, -0.008847346, 0.0010144575, -0.04309557, 0.012123146, 0.008283478, 0.003926933, -0.014660548, 0.04446496, 0.0138953, 0.009679721, 0.021346403, -0.009652871, 0.052573908, -0.0051989905, 0.017372482, -0.029401649, 0.0057326504, -0.0136536425, -0.0058165593, -0.0022873543, -0.009639445, 0.009532042, -0.009505191, 0.004403535, 0.0069140866, 0.04113546, -0.020232094, 0.070188046, 0.004141739, -0.0017453034, 0.01816458, -0.012606461, 0.019211764, 0.023494469, 0.026958225, -0.0237227, -0.006578451, -0.0032573403, -0.0127205765, 0.002542437, -0.036705073, 0.0016773372, 0.0035980102, 0.005756145, 0.0010698374, -0.014486019, -0.014579996, -0.0010169749, -0.0010975273, 0.022970878, 0.0030660282, -0.020930216, -0.011163229, 0.015895687, -0.008444583, 0.0020977205, -0.01945342, 0.0034201234, -0.024179164, -0.010216737, 1.1768212E-4, 0.027334137, 3.8199488E-4, -0.007907567, 0.007961269, 0.015815133, 0.010679915, -0.01565403, -0.0010203312, -0.010465108, -0.0108477315, 0.0261527, -0.011331047, -0.0048096534, -0.017547011, -0.013338146 ], + "id" : "48189297-c67b-48a1-81ea-f6d02c976a77", + "metadata" : { + "source" : "movies.csv" + } + }, + "426d0be5-fe8b-4f36-9a70-acaa01fb71ac" : { + "text" : "564,The Mummy,Adventure-Action-Fantasy,en,Dashing legionnaire Rick O'Connell stumbles upon the hidden ruins of Hamunaptra while in the midst of a battle to claim the area in 1920s Egypt. It has been over three thousand years since former High Priest Imhotep suffered a fate worse than death as a punishment for a forbidden love���along with a curse that guarantees eternal doom upon the world if he is ever awoken.,79.812,Universal Pictures-Alphaville,4/16/99,80000000,415885488,124,Released,The sands will rise. The heavens will part. The power will be unleashed.,6.916,8555,Brendan Fraser-Rachel Weisz-John Hannah-Arnold Vosloo-Patricia Vel��squez-Oded Fehr-Kevin J. O'Connor-Jonathan Hyde-Erick Avari-Stephen Dunham-Corey Johnson-Mohamed Sa��d Afifi-Tuc Watkins-Omid Djalili-Bernard Fox-Taylor Murphy-Aharon Ipal��-Carl Chase-Abderrahim El Aadili-Jake Arnott-Mason Ball-Isobel Brook-James Traherne Burton-Peter Chequer-Porl Smith-Ian Warner,egypt-cairo-library-secret passage-pastor-pyramid-sandstorm-solar eclipse-mummy-foreign legion-nile-secret society-treasure hunt-remake-archaeologist-tomb-book of the dead-ancient egypt-opposites attract-1920s-pharoah-good versus evil,/yhIsVvcUm7QxzLfT6HW2wLf5ajY.jpg,/nCd8G7C5mbiABQuATgos1OeAshu.jpg,1734-1735-282035-603-10193-9738-607-605-22970-772-863-12437-9334-1893-6479-37135-95-24021-87-13448-2668\r\n10140,The Chronicles of Narnia: The Voyage of the Dawn Treader,Adventure-Family-Fantasy,en,This time around Edmund and Lucy Pevensie along with their pesky cousin Eustace Scrubb find themselves swallowed into a painting and on to a fantastic Narnian ship headed for the very edges of the world.,47.398,Fox 2000 Pictures-Walden Media,12/2/10,155000000,415686217,113,Released,Return to magic. Return to hope. Return to Narnia.,6.4,4984,Ben Barnes-Skandar Keynes-Georgie Henley-Will Poulter-Anna Popplewell-William Moseley-Simon Pegg-Liam Neeson-Tilda Swinton-Laura Brent-Gary Sweet-Terry Norris-Bruce Spence-Bille Brown-Colin Moody-Shane Rangi-Arthur Angel-Arabella Morton-Rachel Blakely-Steven Rooke-Tony Nixon-David Vallon-Jared Robinsen-Roy Billing-Neil G. Young-Greg Poppleton-Nicholas Neild-Nathaniel Parker-Daniel Poole-Mirko Grillini-Ron Kelly-Laurence Coy-Douglas Gresham-Michael Maguire-Catarina Hebbard-Tamati Rangi-Lucas Ross-Megan Peta Hill-David Sachet-Ross Price,based on novel or book-lion-magic-epic-anthropomorphism-dragon-king-fantasy world-snowing-sea voyage-quest-high fantasy-father son relationship-brother sister relationship-turned into animal-based on young adult novel-good versus evil,/z6LVJXEmY8E6s57uf8cV3RlWvws.", + "embedding" : [ 0.015624887, -0.041519914, 9.508115E-4, -0.038746428, -0.020306863, 0.02437098, -0.0010795315, -0.034380246, -0.012748426, -0.012981838, 0.031085014, 0.04217896, 0.033364214, 1.4781342E-4, -0.0018140934, 0.0071533974, 0.020389242, -0.0034926017, 0.017629487, -0.017464725, -0.00527237, -0.017629487, -0.025057487, 0.009652281, 0.0024542606, 0.016283933, 0.010929183, -0.0081694275, 0.0013326807, -0.011478389, 0.008574466, -0.0044451295, -0.007894824, -0.015583698, -0.014732429, 0.0021693604, -0.004664812, -0.027171927, 0.03501183, -0.0063089947, -0.0052895327, 0.025963675, -0.015130603, 0.014595128, -0.0038135436, 0.009061886, 0.0045240778, -0.010510414, -0.0149109205, 0.024700504, 0.018178692, 0.028146766, -0.030508349, -0.01795901, -0.00661449, 0.0022156998, -0.010819342, 7.8604993E-4, -0.0045034825, -0.011952078, 0.019661546, -0.012048189, -0.02011464, -0.0092747025, -0.0071465326, 0.0031115906, -0.0031030094, -0.0153640155, 0.013929217, -0.00798407, 0.024178758, 0.022846935, 0.016242744, 0.012549339, 0.019400673, -0.027762322, -0.01898877, 0.008292998, -0.016338855, -0.0014073383, -0.0020423569, -0.019620355, -0.0212817, 0.006724331, 0.016407505, 0.024947645, -0.0026705102, 0.016448695, -7.723198E-4, -0.0083959745, 0.006418836, 0.028943114, -0.0064565935, 0.0110596195, 0.00838911, 0.012412038, -0.015652347, 0.045831174, -0.015995601, -0.027954545, -0.012089379, -0.0061476654, -0.018590596, -0.009363948, -0.018370913, 0.0017814843, -0.0024405306, -0.019716466, 0.027707402, 0.0023941915, 6.8092864E-4, -5.0442137E-5, 0.017066551, -0.02748772, -0.009254107, -0.024727963, 0.021446463, -0.011203786, -0.01054474, -0.022489952, 0.016860599, 0.009151132, 0.021624954, -0.032842472, 0.032183424, 0.038966108, 0.008183157, -0.010077915, 0.007874229, -0.011011564, 0.011780451, -0.0036110242, 0.024631852, 0.0070366915, -0.023492252, 0.04970307, -0.024110109, -0.0014382311, -0.026677642, -0.008883394, 0.036604527, 0.03720865, -0.02968454, -0.018782817, -0.02960216, 0.010894858, 0.0073662144, -0.015515047, 0.01780798, -7.0967607E-4, 0.01703909, -1.2389297E-4, 0.0015643766, 0.025235979, 0.025606692, -0.020279402, 0.017011631, -0.010283867, -0.01897504, -0.026636451, -0.013531043, 0.0033501517, -0.012274736, -0.02858613, 5.86963E-4, 0.01481481, 0.02968454, -0.031771522, -0.014279335, 0.011725531, 6.8350305E-4, 0.005049255, -0.021570034, 0.012123705, -0.0072357785, 0.03297977, 0.009920019, -0.014238144, -0.047066886, -0.01112827, 0.0034891693, 0.0019805713, 0.029245177, 0.037565634, -0.013750725, 0.0083685145, 0.014100843, -0.015981872, 0.017725598, -0.016311394, 0.0012322791, 0.012652314, -0.02636185, -0.0056499485, -0.6520164, -0.017519645, -0.026224548, -0.013874296, -0.007833039, 0.012981838, 0.006865065, -0.0023907588, -0.024233678, -0.015034492, -0.038114842, 0.025895026, 0.020746225, -0.034407705, -0.020499084, -0.0028919086, -3.22229E-4, -0.0104074385, 0.026993435, -0.0038204086, -0.04451308, 0.022036858, 0.0045034825, 0.008354784, 0.004544673, 0.029190255, -0.02858613, 0.0014605426, -0.004239178, -0.002334122, -0.020814877, 0.010565335, -0.0053341556, 0.007881095, 0.03594548, -0.003765488, -0.0039886027, 0.04734149, 0.015432666, 0.04011944, -0.013331956, -0.010826208, 0.006422268, -0.001063227, -0.017533375, 0.014897191, 0.031249775, -0.0014614007, 0.009363948, -0.005536675, 0.0020406405, -0.0017480172, 0.012494418, -0.0057151667, 0.004867331, 0.027350418, 0.02839391, -0.04649022, 0.018769087, -0.008258673, -0.026224548, 0.031030094, 0.001089829, -0.003204269, -0.021803446, 0.020238211, 0.01570727, 0.0031956877, 0.005402806, -0.031881362, -0.0020663845, 0.009171727, -0.010881128, 0.003635052, -0.00317166, 0.013476122, 0.031771522, 0.003293515, 0.003216283, 0.018233612, 0.017464725, -0.0042769355, -0.002437098, 0.021666145, 0.037263572, -0.0037483254, -0.02861359, 0.012178625, 0.018714167, 0.009377679, -0.009240378, 0.006240344, 0.00854014, -0.0033484355, -0.008917719, 0.0023907588, -0.020334322, 0.0040194956, 0.024755424, -0.05936908, -0.0018106608, 0.0024525444, 0.010579065, -0.025661612, 0.004036658, 0.005248342, -0.008190023, -1.9050555E-4, 0.030563269, -0.029382478, -0.00897264, -0.009837638, 0.0015128887, -0.009666012, 0.010537875, -0.02968454, 0.015515047, -0.004119039, 0.0052037193, -0.010283867, 0.009267838, 0.0015969857, 0.013894891, -0.015144333, -0.0027837837, 0.032046124, 9.4909524E-4, -0.0058936584, 0.007627087, 0.012055054, 0.015048223, 2.0970628E-4, 0.021597493, -0.008801013, -0.004294098, 0.0018741627, 0.03190882, -0.01267291, 0.016572267, 0.0038924918, -0.010682041, -0.018370913, -0.014581398, -0.023931617, 0.018178692, -0.027803512, -0.026183357, -0.0051934216, -0.007592762, -0.009782718, -0.0318539, 0.002327257, -0.0016484737, 0.001373013, -0.0100024, -0.002179658, -0.02122678, -0.0010117389, 0.026883595, -0.023464791, 0.014471557, 0.015089412, -0.014856, -0.00790169, 0.00741427, -0.019167261, -0.0295747, 0.014965842, -0.01115573, -0.026306929, 0.017409805, -0.012569934, 0.006298697, 0.028805813, -0.008162562, 0.01589949, -0.020828607, -0.003248892, 0.004881061, -0.0029245177, 0.005049255, 0.0057391943, -0.010338788, -0.004860466, 0.022174159, 0.01795901, 0.0047162995, -0.022174159, -0.015556237, 0.020595195, 0.0045481054, -0.009521845, -0.009096211, 0.002275769, 0.0016064252, 0.024769153, -0.0059073884, 0.0018535675, 0.0076888725, 0.011965808, 0.035286434, 0.0033999234, -0.0016991035, 4.4193855E-4, 0.01009851, -0.022901857, 0.008828473, -0.012254141, 0.017519645, -0.011574499, 0.018769087, -0.00905502, -0.006336455, -0.023409871, 0.0039233845, 0.019565435, -0.0036075916, -0.012357117, -0.0076820077, 0.003494318, 0.014485287, -0.0030189124, 0.030261206, 0.02231146, -0.029382478, -0.0015618022, 0.014210684, -0.017450996, -0.008890259, -0.009844503, 0.007846769, -0.007283834, -0.01570727, 0.0074554603, 0.010627121, 0.011492118, 0.015405206, -0.013613423, 0.04108055, -0.009817042, -0.0027923652, 0.020650115, 0.021927018, 0.0050526876, -0.014347985, -0.010009265, 0.003751758, -0.007936015, -0.003101293, 0.02531836, -0.0027322958, 0.015075683, 0.0026584964, 0.007633952, -0.007839904, -0.0019445296, -0.0013575666, 0.0025126138, 0.031963743, 0.024837805, 1.337615E-4, -0.029437399, 0.020279402, 0.005413104, 0.012796481, -0.008794148, -0.02224281, -0.007709468, -0.0057426267, -0.03561596, -0.02645796, -0.028366448, 0.0016330273, 0.0032797847, 0.0039062218, -0.011979538, 0.02538701, 0.0072426433, 0.0051007434, 0.015034492, -0.008203752, -0.02108948, 0.012913187, 0.018192422, -0.0066865734, -0.030123904, -0.023066618, -0.005214017, -0.034407705, -0.009453194, -0.013695804, 0.0117667215, -0.030810412, -0.009631686, -0.03492945, -0.00478495, 0.017588297, -0.01804139, 0.009535575, 0.016187822, -0.0074760555, 0.0055538374, -0.015336555, 0.0062952647, 0.015446396, -0.009391408, 0.0024920185, 0.008629386, 3.3553006E-4, 0.007805579, -0.008519545, 0.0077506583, -0.031167395, 0.017368615, -0.025675343, -0.006054987, -0.008649982, -0.004925684, 0.01912607, -0.0014811377, -0.0025280602, -0.023711935, -0.017107742, 3.9302497E-4, 0.07705349, 0.024467092, -9.1906055E-4, 0.008814744, 2.2869247E-4, -0.008842204, -0.016325124, -0.01908488, 0.002056087, -0.001927367, 0.021885827, 0.0070504216, 0.018439565, 0.020897258, 0.015720999, -0.0054817544, 3.202982E-4, 0.002855867, -0.027254308, -0.016421236, -0.02117186, -0.016393775, 0.023094079, 0.045034826, -0.0036865398, -0.022723366, 0.022009399, -1.8256782E-4, -0.018425833, 0.018920118, -0.001444238, 0.0041430667, 0.021940747, 0.0064840536, 0.0033793282, -0.005402806, 0.030728031, 4.955719E-4, 0.018700438, -0.009391408, 0.0034908855, 0.007881095, 0.0024542606, -0.013915487, 0.036549605, -0.014100843, -0.012769021, 0.011238111, 0.035561036, -0.036192622, 0.032540407, -1.9812149E-4, -0.029107874, -0.0065938947, 0.024865266, 0.007270104, -0.009604226, 0.018123772, -0.01480108, 0.0077849836, 0.020375513, -0.030508349, 0.01600933, -0.004544673, -0.009137401, -0.012679775, -0.019592896, -0.00165019, -0.027295498, 0.025565501, -0.004074416, -0.009817042, -6.697729E-4, -0.009597361, 0.013373147, 0.005382211, 0.018123772, -0.015748458, 0.027968274, -0.011814777, -0.0076476824, -0.023203919, -4.2005617E-4, -0.02864105, -0.0124189025, 9.053304E-4, 0.0022894992, 6.813577E-4, -0.0126454495, -0.004067551, 0.007860499, 0.005032093, -0.025510581, -4.711687E-5, 0.028091846, 0.01994988, 0.009178592, 0.008299864, 0.012425767, 0.0065595694, 0.015542507, -0.019881228, -0.012363981, -0.01790409, 0.0035664013, -0.016421236, -0.006175126, 0.021556303, -0.0015154631, -0.025043758, -0.027391609, -0.015679808, 0.008718632, -7.0753077E-4, 0.005519512, 0.0072632385, 0.022229081, 0.02005972, 0.0033089612, -0.0039405474, -0.009357084, -0.012315926, 0.02007345, 0.02644423, 0.008464625, 0.027199388, -0.0013489852, -0.020279402, -0.0029313827, 0.035451196, -3.3746083E-4, 0.00951498, -0.02124051, 0.007290699, -0.014718699, -0.0054680244, 0.0129269175, -0.012542473, -0.0018518512, 0.028256606, -0.0144578265, 0.0015849719, 0.002855867, -8.6928887E-4, -0.0075515714, -0.026004866, 0.015405206, -0.012254141, 4.925684E-4, 0.030206285, -0.0097003365, -0.009041291, -0.02548312, -0.0129269175, -0.007194588, -0.028201686, -0.014663778, -0.0012400023, 0.04033912, 0.0036693772, 0.037373412, 0.012707235, 0.030975172, 0.004040091, 0.017354883, 0.019840037, -0.00584217, -0.013441797, -0.05294338, -0.007318159, 0.013023028, 0.012034459, 0.017615756, 0.0073730797, -0.008739227, 0.02737788, 0.010929183, 0.024494551, -0.0027082681, -0.042618323, -0.043277368, -0.0059520113, -0.024137568, -0.0025194788, -0.034435164, -0.021858366, 0.063543044, 0.0026550638, -0.014361716, -0.024673043, 0.029025495, -0.00635705, -0.0031030094, -0.01207565, 0.021432733, -0.024947645, 0.020677576, -0.02327257, -0.032128505, -0.005382211, 0.00317166, 3.3746083E-4, 0.0050080647, 0.0015137468, 0.0031836738, 0.011457793, 0.0058250073, -0.023533443, 0.012906322, -0.0041396343, -0.016023062, -0.024618123, -0.009563035, -0.04217896, -0.00790169, 0.014224415, -0.0050526876, 0.014128303, -0.0318539, -0.026306929, 0.022435032, -0.005639651, 0.031359617, 0.008526411, 0.03805992, 0.03487453, -0.0022654715, -0.026760023, 0.009961209, -0.0030515213, -0.020897258, 0.029025495, 0.022284001, 0.0023959076, -8.744376E-4, -0.0034188023, -0.006298697, -0.031332158, -0.030316127, 0.030398507, 0.019798847, 0.011450929, -0.017739328, -4.0589695E-4, 0.0015188956, -5.4577267E-4, -0.008560736, -0.0017188407, 0.006755224, -0.014691239, -0.018082581, 0.008752958, -0.004575566, 0.003583564, 0.018618057, -0.04039404, 0.02424741, -0.008567601, -0.002231146, -0.02216043, -0.009453194, 0.02748772, -0.020334322, 0.021611225, 0.016695838, 0.01595441, 0.0038307062, 0.0050767157, 0.0017866332, 0.030096445, -0.00525864, 0.014650049, 0.0038993568, 0.013043623, -0.0022414436, 0.002126454, -0.033611357, 0.0040469556, -0.02864105, -0.0019222181, 0.029245177, -0.0016639201, -0.018096311, -0.0028266904, -0.019647816, -0.012652314, 0.024041457, 0.0101808915, -0.0030463724, -0.048027992, 0.009309028, -0.008286133, 0.010730096, 0.0066247876, -0.022805745, 0.0067140334, -0.004115606, 0.019235913, 0.0032883661, 0.016709568, -0.004191122, -0.018370913, -0.03278755, -0.010984104, 0.007084747, -0.02655407, 0.0077506583, -0.026952244, 0.0017051105, 5.8825023E-4, -0.010894858, 0.008759823, 1.430937E-4, -0.029135335, 0.0070160963, 0.022792015, -0.0070366915, 0.0070641516, -0.003339854, 0.038307063, 0.015624887, 0.012240411, 0.009480654, 0.0026190223, 0.03915833, -0.019483054, 0.002727147, 0.0018690139, -0.020636385, -0.012817076, 0.0065527046, 0.025908755, 0.016077982, -0.018769087, -0.03369374, -0.0072495085, -0.0072289133, 0.0338585, 0.0023427033, -0.0029107875, 0.018631786, -0.005749492, 0.03273263, 0.017437264, -0.0012563069, -0.009439465, 0.014704969, -0.020746225, -0.017643217, 0.0061339354, 0.0069714733, 0.037153732, 0.0023753124, 0.0071739927, -0.015734728, 0.020471623, -0.023505982, -0.027268037, 0.0099543445, 0.02875089, 0.05838051, 0.018755358, 0.024000267, 0.018494485, 7.281259E-4, 0.020938449, -0.016352585, 0.004376479, 0.013345686, 0.0061202054, -0.0022277136, 0.025730263, -0.024659313, 0.0055607026, 0.0038410039, 0.010270137, 0.0036281869, 0.03720865, -0.011142001, -0.019579165, -0.00954244, -0.003947412, 0.0023804612, -0.00854014, 0.04341467, -0.031194855, -0.014196955, -0.0061648283, 0.024727963, 0.009556171, -0.0029708568, 0.001218549, -0.013023028, 0.015020762, 0.0010340504, -0.022833206, -0.0028387043, -0.028366448, 0.020402974, 0.009597361, 0.0062575066, 0.019771388, 0.020567734, -0.015542507, -0.005718599, 0.0018226748, 0.01110081, -0.013036759, -0.0019874363, 0.024000267, 0.022805745, -0.041794516, 0.019235913, -0.016270204, 0.0012597394, 0.004942847, 0.0083685145, -0.005032093, 0.028778352, 0.017272504, -0.043826573, 0.0036934048, -0.010551604, -0.0013206669, 0.0011747843, 0.010853668, -0.026622722, 0.003796381, -0.0018123771, -0.0072769686, -0.012576799, -0.016160363, -0.0018672977, -0.02762502, -0.02325884, 0.016640916, 0.16607966, -0.009899423, 0.008011531, 0.032101043, 0.014018463, 0.014169494, 0.009933749, 0.021968208, -0.018851468, 0.003559536, -0.023670744, 0.0020389243, -0.0034977505, 5.590737E-4, 0.006724331, -0.011354817, -0.029876763, -0.016791949, -0.020883527, -0.036522146, -0.015185524, -0.006408538, -0.016531076, -0.011897158, 0.017203853, -0.007805579, 0.011320492, -0.005667111, 0.013585963, -0.004009198, -0.012865132, -0.012274736, -0.022874396, 0.0020921286, -0.0357258, 0.0025040323, 0.007702603, 0.013414336, -0.0050973105, 0.007194588, -0.008238078, 2.700974E-4, -0.0024147865, -0.002675659, 6.9852034E-4, 0.024755424, -0.01683314, -0.011849102, -0.01218549, -0.00145711, -0.032540407, -9.911438E-4, 0.019757656, 0.011018429, -0.010215216, -0.008478356, 0.0071328026, 0.008478356, 0.011533309, 0.008286133, 0.0010083064, 0.028888194, -0.032842472, 0.008636252, -0.007894824, 0.035451196, -0.03803246, -0.021885827, 0.009686607, -0.0401469, -0.017052822, -0.03075549, -0.025661612, 0.0062266137, 0.006254074, 0.0024885861, -0.0017497335, -7.7403605E-4, 0.0035629687, 0.0019788549, -0.012288466, -0.028888194, 0.021309162, -0.01897504, -0.0029777219, -0.028421368, 0.00171455, -0.0078124437, -0.0032403106, -0.0128719965, -0.009206052, -0.012370847, -0.006796414, -0.004603026, 0.0052311793, 0.010105375, 0.04451308, 0.005577865, -0.004448562, 0.0049943347, -0.035533577, 0.016146632, 0.012803346, -0.0052174493, -0.021295432, -0.022091778, -0.013929217, 0.025647882, 0.027089546, -0.025579233, 0.009109941, -0.010448629, -0.0111145405, -0.011794182, 0.0012914903, 0.020554004, -0.006188856, -0.0022483089, 0.025071217, -0.017643217, -0.025002567, -0.02644423, 0.026306929, -0.014224415, -0.0036693772, -0.021487653, -0.0075241113, 0.012425767, 0.008224348, -0.028723432, 0.016036792, -0.035561036, 0.005447429, 0.002268904, 0.0029039225, 0.013819376, 0.012878862, -0.003120172, 0.0041808244, 0.01007105, -0.0047506248, 0.012151165, 0.009109941, 0.014196955, 0.0039611426, -0.02338241, 0.0049497117, -2.443534E-4, -0.008354784, -0.033446595, -0.014347985, -0.011011564, 0.003559536, 0.00790169, 0.052558936, -0.0026550638, -0.04011944, -0.0382796, -0.02107575, 0.022503683, -0.035341356, 0.019675275, 0.016819408, -0.011025295, -0.014251875, -0.004894791, -0.17651455, 0.011780451, 0.0071259374, -0.032046124, 0.019167261, 0.020897258, 0.026842404, 0.0028781784, -0.008924584, -0.029492319, 0.021103209, 0.012048189, -0.06244463, -0.0026001434, 0.0022122671, 0.010819342, -0.011052755, 0.019908689, 0.023203919, -0.009322758, 0.032210883, 0.009686607, -0.011450929, 4.9857533E-4, 0.019826308, -0.014526477, 0.023766855, 0.0068170093, 0.0014991586, -0.008835339, -0.02844883, -2.552946E-4, -1.2275326E-5, 0.0038410039, -0.012947513, 7.353128E-5, -0.012851401, -0.002965708, 0.01061339, -0.0137781855, 0.03308961, 0.013915487, 0.028778352, 0.0010941197, 0.0039886027, 0.012611125, 0.0019410971, -0.029300097, 0.014142034, -0.008361649, -0.021597493, -0.028888194, 0.018920118, -0.0117118005, 0.0079428805, 0.017286234, 0.016146632, -0.021432733, 0.01051728, -0.005622488, -0.03394088, -0.0040332256, 0.004874196, -0.0023135268, -0.010853668, -0.03893865, -0.0129269175, 0.017245043, -0.02216043, -0.0025366414, -0.042508483, 0.011780451, 0.017450996, 0.0051487987, 0.017931549, -0.009604226, -0.00498747, 0.015295365, -0.008636252, 0.015556237, -0.028805813, 0.040586263, -0.019867498, 0.012096244, 0.029300097, -0.026375579, -0.0010134552, -0.0052380445, -0.0031424835, -0.00844403, -0.00890399, -0.01595441, -0.034709767, 0.0031699438, 0.014704969, 0.014650049, -0.021981938, -0.0013584247, 0.015569967, -0.014622589, -0.0018981905, -0.014965842, -0.018247342, 0.012322792, 0.027913354, 0.0016081415, 0.013853701, 0.01691552, 0.032128505, -0.010311328, 0.009693472, 0.0017746193, 0.019222181, 0.025030026, -0.02216043, -0.0025743993, -0.014636318, -0.017835438, -0.0032214317, 0.020773686, 0.034490086, -0.010077915, -0.008052721, -0.0068684975, 0.0016493319, -0.007201453, -0.10044963, 0.021995667, -0.00582844, 0.038114842, -0.0339958, 0.021501383, -0.017341154, 0.009151132, -0.008011531, 0.019235913, -0.0071877227, -0.022380112, 0.0066110576, -0.0024782885, 0.033254374, 0.014128303, -0.013057353, -0.007544706, -0.013977272, 0.016242744, -0.003216283, 0.017766789, 0.0052655046, -0.019620355, -0.013407472, 0.0026001434, -0.03594548, 0.011045889, 0.017341154, 0.0015240444, -0.0019067718, -0.018837739, 0.008464625, -0.04860466, -0.025016297, -0.0075858966, -0.025538042, -0.006195721, 0.0099268835, -0.053520046, 0.0111145405, 0.008107642, 0.0065321093, -0.009645416, -0.00897264, 0.006202586, -0.033528976, 0.016160363, -0.0095012495, -0.029052954, -0.006254074, -0.0050183623, -0.021885827, -7.7918486E-4, 0.0020423569, 0.014499017, 0.0040915785, 0.005368481, 0.009460059, -0.0059211184, -0.010311328, -0.011045889, -0.0200048, 0.008080182, 0.017313695, 0.01480108, 0.0068067117, -0.011142001, 0.0071465326, -0.012281601, -0.014142034, 0.033226915, -0.022888126, -0.0053890757, -0.036412302, 0.0031562136, -0.005879928, 0.0010434899, 0.027927084, -0.03473723, -0.008725498, -0.025661612, 0.005601893, -0.016668377, 0.011732396, 0.024810344, 0.032046124, 1.4491723E-4, 0.0013687223, -0.023753125, 0.0074554603, 0.013160329, 0.001772903, -0.008814744, 0.0027082681, 0.042014197, 0.027638752, 0.009343353, -0.011293032, 5.0586945E-4, -0.009947479, -0.00951498, -0.06760716, 0.019881228, 0.0015849719, -0.010345653, -0.009810178, -0.0232863, 0.013984137, -0.006264372, 0.012295331, 0.019565435, -0.01164315, 0.010963509, 0.007963475, 0.008629386, -0.009844503, 0.0051144734, -0.0060961777, -0.01112827, -0.00845776, 0.008814744, -0.027020896, 0.013860566, 0.009947479, -0.010819342, -0.009309028, 0.021707335, 0.00954244, 0.015185524, -0.008869664, -0.007077882, 0.03803246, -0.010956643, 0.0018055121, -0.0046064584, -0.0180002, -0.019208452, -0.020457894, -0.0059279837, 0.02210551, 0.03281501, -0.0021436166, -0.01677822, 0.0060446896, -0.0130985435, 0.0072357785, 0.033171993, -0.025895026, 0.032128505, 0.011917752, 0.0060137967, 0.029821841, 0.023904156, -0.008004665, -0.01801393, 0.014581398, -0.015185524, 0.045529112, 0.012377712, 0.007579032, -0.01381251, 0.034709767, -0.0133525515, 0.02861359, -0.038224682, -0.009494385, -0.0040847138, -2.61087E-4, -0.009336488, -0.0045652683, -0.011444063, 0.011107675, -0.0144578265, 0.007517246, 0.030508349, 0.022709634, 0.006387943, -0.013386876, 0.008217483, -0.0039062218, 0.016421236, 0.01677822, -0.023945346, -0.038389444, 0.01268664, 0.0030292098, 0.010942914, -0.002119589, 0.010839937, -0.007057287, 0.02432979, -0.006051555, 0.009714067, 0.012006998, -0.0029536942, 0.0020217616, 0.012013864, -0.010936049, -0.014897191, -0.0074554603, 0.026320659, -0.012968107, 0.0034462626, -0.0069920686, -0.028805813, -0.0026928217, 0.004654514, -0.025249708, -0.039789915, 0.011107675, 0.015775919, 0.021940747, 0.024110109, -0.010510414, 0.010112241, -0.03273263, -0.002540074, -0.0063810777, -0.0076614125, -0.017753057, 0.037538175, 0.012027593, 0.017670678, 0.038471825, -0.012281601, 0.05170767, 0.0056636785, 0.034380246, -0.0049737394, -0.008135102, -0.016558537, -0.00854014, 0.0059794714, -0.017450996, 7.281259E-4, -0.012466958, -0.013441797, 0.0121443, 0.03462739, -0.013819376, 0.050087515, 0.006336455, -0.0180002, 0.014416636, -0.017794248, -9.3193253E-4, 0.0124189025, 0.010668311, -0.00895891, -0.004119039, 0.012796481, -0.0026567802, 0.020554004, -0.01794528, -0.011313627, 0.0062266137, -0.0026018596, 0.020869797, -0.018151231, -0.0067449263, 0.0049359817, -0.011450929, 0.016682107, 0.007627087, -0.011169461, -0.006995501, 0.044046257, 0.007290699, -0.021377811, -0.028105576, 0.006981771, -0.021954477, 0.010400574, 1.7613183E-4, 0.016283933, -0.006841037, 0.005457727, -0.013736995, 0.01802766, 0.01595441, -0.026155896, 0.01600933, -0.012398307, -0.020608924, -0.0059966343, -0.014142034, -0.004273503, -0.006264372, -0.029959144 ], + "id" : "426d0be5-fe8b-4f36-9a70-acaa01fb71ac", + "metadata" : { + "source" : "movies.csv" + } + }, + "9b996014-608b-4673-8a5a-a52e203d83d1" : { + "text" : ",2300-927-9340-196-10144-12092-879-9354-9325-165-601-10693-12230-2978-928-620-10895-4011-11360-10112-11886\r\n44214,Black Swan,Drama-Thriller-Horror,en,A journey through the psyche of a young ballerina whose starring role as the duplicitous swan queen turns out to be a part for which she becomes frighteningly perfect.,45.569,Fox Searchlight Pictures-Cross Creek Pictures-Protozoa Pictures-Phoenix Pictures-Dune Entertainment,12/3/10,13000000,329400000,108,Released,Perfection is not just about control. It's also about letting go.,7.68,13837,Natalie Portman-Mila Kunis-Vincent Cassel-Barbara Hershey-Winona Ryder-Benjamin Millepied-Ksenia Solo-Kristina Anapau-Janet Montgomery-Sebastian Stan-Toby Hemingway-Sergio Torrado-Mark Margolis-Tina Sloan-Abraham Aronofsky-Charlotte Aronofsky-Marcia Jean Kurtz-Shaun O'Hagan-Chris Gartin-Deborah Offner-Stanley B. Herman-Michelle Rodriguez Nouel-Kurt Froman-Marty Krzywonos-Leslie Lyles-John Epperson-Arkadiy Figlin-Tim Fain-Sarah Lane-Liam Flaherty-Patrick Heusinger-Marina Stavitskaya-Olga Kostritzky-Christine Redpath-Alexandra Damiani-Rebecca Azenberg-Laura Bowman-Holly L. Fusco-Abigail Mentzer-Barette Vance-Lillian di Piazza-Megan Dickinson-Jessy Hendrickson-Genevi��ve Lebean-Rachel Jambois-Ryoko Sadoshima-Kaia A. Tack-Lauren Fadeley-Sarah Hay-Adrianna de Svastich-Jamie Wolf-Carrie Lee Riggins-Gina Artese-Daralina Komar-Tim Lacatena-Alyson Cambridge-Anne Bergstedt Jordanova,new york city-dancing-dancer-nightmare-competition-obsession-insanity-paranoia-hallucination-ballet dancer-ballet-female protagonist-psychological thriller-fear-heartbreak-mental illness-madness-reality vs fantasy-swan lake-ballerina-stage performance-self-harm-mother daughter relationship-self destructiveness-theater-pointe shoes,/rH19vkjAzCZ0HIUvrgB3rowm68h.jpg,/hqh5O4KssfJWI62HGAgrjHXbxhD.jpg,11324-162-641-683841-694-194-350-122928-65754-10681-141-752-10528-1124-807-4922-27205-24-37799-14160-12\r\n9671,Crocodile Dundee,Adventure-Comedy,en,When a New York reporter plucks crocodile hunter Mick Dundee from the Australian Outback for a visit to the Big Apple it's a clash of cultures and a recipe for good-natured comedy as na��ve Dundee negotiates the concrete jungle. He proves that his instincts are quite useful in the city and adeptly handles everything from wily muggers to high-society snoots without breaking a sweat.,17.114,Paramount-Rimfire Films,9/26/86,5000000,328203506,104,Released,There's a little of him in all of us.,6.", + "embedding" : [ 0.004214099, -0.04661112, -3.8469222E-4, -0.029754722, -0.017659081, 0.031941347, -0.0051413393, -0.017326936, -0.018198818, -0.040466424, 0.021340365, 0.03407262, 0.015223347, -0.01677336, -0.0038127564, 0.030778838, 0.015195668, -0.014171552, 0.03097259, -0.02305645, -0.01628898, 0.012185597, -0.014655931, 0.013894764, -0.010566386, 0.02257207, 0.02167251, -0.0031969028, -0.016219784, -0.0146420915, 0.0088503, -0.007833104, -0.014517536, -0.007756987, -0.018890789, 0.0033906545, 0.0031467348, -0.019250613, 0.02093902, 0.007660111, 6.461273E-4, 0.0116596995, -0.017742118, -0.004816113, 0.0022489035, 0.013908603, 0.0024668742, 0.005944025, -7.425706E-4, 0.031055627, 0.02237832, 0.01630282, -0.026488623, -0.019984102, -0.018115783, -3.271722E-4, -0.005456186, 0.007756987, 0.01141059, 0.011375992, 0.01796355, -0.017520688, -0.025741294, -0.028010957, -0.015195668, -0.01865552, -0.011798093, -0.0151264705, 0.013334268, -0.0036259242, 0.018987665, 0.008628869, 0.021257328, 0.0027523118, 0.027443541, -0.031332415, -0.030335978, 0.007971498, 0.009832898, 0.019610438, 0.013680252, -0.02376226, -0.011694298, 4.1301976E-4, 0.0010898532, 0.006701732, -0.010199642, 0.02420512, -0.028509175, 0.027222112, 0.019942584, 0.029007394, -0.007957659, 0.0058817477, 0.014572894, 2.457035E-5, -0.01583228, 0.029727044, -0.021603312, -0.021714028, -4.1496594E-4, -0.002375188, -0.008435118, -0.012448546, -0.008137571, -0.004165661, 0.009127088, -0.017977389, 0.0097982995, 0.0147943245, -0.011555904, -0.010123526, 0.020440802, -0.05079062, -0.0051897774, -0.009943613, 0.017520688, -0.016911754, -0.012801451, -0.022489034, 0.022807341, 0.03797533, 0.016731841, -0.03742175, 0.040798567, 0.026502462, 3.256585E-4, -0.014960398, 0.004048026, -0.0053004925, 0.024606464, -0.0025101223, 0.028675249, 0.016441215, -0.027042199, 0.040521782, -0.029671686, -0.002235064, -0.028564533, -0.017271578, 0.020579197, 0.045974508, -0.021603312, -0.0060927984, -0.015500135, 0.012552341, 0.012393188, -0.0052762735, 0.016634965, -6.6342653E-4, 0.029284183, 0.014877361, 0.016801039, 0.027831046, 0.002124349, 0.018669358, 0.007521717, 0.017257739, -0.0074732793, -0.015209507, -0.02493861, -4.4891573E-4, -0.00792306, -0.013389625, -3.0727807E-4, 0.028785964, -6.2277325E-4, -0.024578786, 0.006784769, -0.010559467, -0.016814878, 0.010427992, -0.0032851289, 0.018821592, 0.0058367695, 0.026959162, 0.018018907, -0.0075286366, -0.018254176, -0.0055772807, 0.017105505, 0.008635789, 0.04151822, 0.037836935, -0.012365509, 0.017091665, 0.032550283, -0.03742175, 0.005376609, 0.0040930044, -0.019914905, 0.018793913, 0.01536174, -0.0020395825, -0.63949126, -0.01884927, -0.005006405, -0.002072451, 0.014323785, 0.013009042, 0.017894352, 6.9283525E-4, -0.028675249, -0.006546039, -0.020413123, 0.01118224, 0.011597422, -0.0051136604, -0.029201146, -0.007597834, 0.011431349, -0.014738968, 0.023831457, -0.004525486, -0.027042199, 0.017382294, -0.0074732793, 0.013694092, 0.0070407977, -0.0017991228, 0.0017904731, -0.0064560827, 4.8827153E-4, -0.005373149, -0.026377907, 0.004961427, 0.0064872215, -0.006414565, 0.032494925, -0.013140515, -0.01793587, 0.05214688, 0.041158393, 0.038335156, -0.03609317, -7.0061994E-4, 0.0051344195, 0.021880101, -0.018780073, 0.009030213, 0.009971292, -6.2234077E-4, 1.0952592E-4, -0.013597216, -0.0023423193, 0.011459028, 0.013355027, -0.011161481, -0.017437652, -0.0072795274, 0.025298433, -0.03675746, 0.020177854, -0.0027073338, -0.01536174, 0.0061135576, 0.011292955, 0.005944025, -0.0021987355, 0.017908191, -0.0046223616, -0.007895381, 0.014988077, -0.013251231, 0.014849682, 0.01840641, -0.015721565, -0.008476636, -0.005238215, 0.0036397637, 0.040466424, 0.00582639, -0.013334268, 0.009244723, -0.010393394, -0.01864168, 0.010151204, 0.015444777, 0.017174702, -0.0104625905, -0.031221699, 0.013237392, 0.02791408, -0.013777128, 0.02121581, 0.008282884, 0.010587146, 0.002051692, -0.011030006, 0.015790762, -0.0039788294, -0.017742118, 0.025298433, -0.058513008, -0.015804602, -0.031802956, 0.024523428, -0.010275759, 0.026917644, -0.0014816814, -0.014738968, 0.008781103, 0.036369957, 0.001998064, -0.003236691, -0.00698198, -0.027111396, -0.011375992, 0.01514031, -0.02283502, 0.023333238, 0.028426139, 0.016842557, -0.00977754, -0.00489569, 0.0028474578, -6.915378E-4, -0.010531788, -0.0036916614, 0.029311862, -0.016247462, 4.1539842E-4, 0.0076324325, 9.5232413E-4, 0.00279729, 0.001537904, 0.031304736, -0.016897915, -0.008926417, -0.011251437, 0.012573101, 0.005425047, 0.011119963, 0.0024616844, -0.026751572, -0.026903804, -0.01605371, -0.007500958, 0.0030671584, -0.021243488, -0.03324225, 0.0070996154, 0.0019011884, -0.0022160348, -0.019167578, 0.002399407, -0.01585996, 0.008635789, -0.003352596, 0.0024755236, -0.019375168, -0.025519865, 0.0031951729, -0.009673744, 0.0144898575, 0.018323373, -0.009016373, -0.008573512, 0.023499312, -0.0044597485, 8.4679865E-4, 0.002939144, 0.0051344195, -0.028329264, -0.00174463, 0.018586323, 3.998291E-4, 0.017326936, -0.011860371, 0.026696214, -0.03291011, 0.0025654798, -0.008172169, -0.0018786993, 0.011251437, 2.4262209E-4, -0.03354672, -0.010296518, 0.03609317, 0.023969851, 0.0046189018, 3.7452893E-4, -0.010040489, -0.0062588714, -0.018475607, -0.011666619, -0.012213276, 0.0071411333, -0.0015180098, 0.014012398, -0.01372869, 0.0025551002, -0.005940565, 0.0128844865, 0.052285276, 0.02001178, 0.0013709661, 0.010040489, -8.692877E-4, -0.014738968, -0.003375085, -0.002421896, 0.0149465585, -0.005847149, 0.017313097, -0.0066809733, 4.917314E-4, -0.0035013696, -0.0016235353, 0.02051, -0.014545215, 0.01491888, -0.0046500405, 0.010760138, 0.005573821, -0.02027473, 0.0066048563, 0.013258151, -0.00978446, -6.379101E-4, 0.018503286, -0.008635789, 0.0050513833, -0.0010396853, 5.747678E-4, -0.0074663595, 0.012766852, 0.0047088577, -0.0063176886, 0.0011062875, 0.02911811, -0.008324402, 0.052755814, -0.010850094, -0.014822003, 0.012953684, 0.025685938, -0.005006405, 4.3637375E-4, -0.015389419, -0.0012299772, 0.029533291, -0.008186009, 0.03232885, -0.020067139, 0.026640857, 5.58766E-4, 0.018184979, 9.7048836E-4, -0.007625513, 0.0063176886, 0.011860371, 0.04492271, 0.029173467, 0.003937311, -0.015237186, 0.022807341, 0.0045531644, 0.007078856, -8.72315E-4, -0.016551929, 0.0040618656, -0.0019063782, -0.028785964, -0.027651133, -0.010559467, 0.01327199, 0.015057273, -0.0076462715, -0.0021693269, 0.0067363307, 0.010725539, 0.017977389, 0.020634554, -0.027581936, -0.022295283, 0.016012192, 0.015915317, 0.0013424223, -0.024260478, -0.0051793978, -0.01280837, -0.047330767, -0.019444365, -0.013624895, 0.020689912, -0.021686349, 0.0039719096, -0.017105505, -0.010850094, 0.020676073, -0.014822003, -0.0012861998, 0.012746093, -0.00651836, 0.004497807, -0.008186009, -0.010594065, 0.026765412, -0.018281855, 0.01070478, -0.011140722, 0.0051793978, -0.0053593097, -0.0011218569, 0.0025689397, -0.05491476, -0.0030221802, -0.0139293615, -0.006452623, -0.0041552815, 0.012462385, 0.019430526, -0.018309534, -0.027651133, -0.02492477, -0.019292131, -0.01396396, 0.06892024, 0.05638174, 0.01956892, 1.3590729E-4, -0.0015283894, 0.012206356, -0.011486707, -0.011472868, 0.007542476, -0.0031294357, 0.024094405, -0.013590297, 0.019084541, 0.016482733, 0.017063987, 0.004522026, 0.0014955208, -0.0028197789, -0.010365715, 0.0044286097, -0.014974237, -0.0093415985, 0.015057273, 0.036425315, -0.010275759, -0.015776923, 0.024440391, -0.0072449287, 0.023001092, 0.0138255665, -0.032024384, 0.012054122, 0.009223964, 0.0127806915, -7.058097E-4, 0.008241367, 0.014600573, 0.0059959227, 0.024122084, 0.005874828, 0.0061100977, -0.0037228002, 0.0072172503, -0.003119056, 0.015693886, -0.034294046, -0.013092078, 0.020676073, 0.028093994, -0.029588649, 0.02373458, 0.00396845, -0.022004655, -0.0042521576, 0.021727867, 0.013299669, -0.010725539, -3.9788292E-4, -0.021755546, -0.008179089, -0.0014557325, -0.04212715, 0.015666207, 0.0025464506, -9.1426575E-4, -0.004006508, -0.042044114, -7.3911075E-4, -0.019361328, 0.0025032025, 0.008400519, -0.037532467, -0.011279115, 0.014254588, 0.009459234, 0.0033197275, 0.015154149, -0.016551929, -0.0019392468, 0.027609615, -0.02628103, -0.041795004, 0.024993967, -0.020579197, -0.010137365, -0.0012438166, -0.010504109, 0.017423812, -0.022973415, 0.012953684, 0.0036605229, 0.0016010463, -0.03257796, -0.012552341, 0.033159215, -0.017576046, 0.023264041, 0.025021646, 0.0037573986, 0.009459234, 0.009528431, -0.029394899, -0.004383632, -0.024135923, -0.0041137636, -0.019181417, 7.3089363E-4, 0.004144902, -0.0045497045, -0.009016373, -0.010912372, -0.014531376, 0.007542476, 0.01630282, 0.013707931, 0.0017800935, 0.015652368, 0.012718414, -0.009998971, 0.011126882, -0.0031951729, 0.0027367426, 0.0063246083, 0.029782401, -0.009729102, 0.021976976, -0.010739379, -0.020897502, 0.005200157, 0.034570836, -6.811583E-4, -9.99032E-4, -0.01721622, -0.010822415, -0.02630871, -0.03191367, 0.009479993, -0.0016581338, 0.0016278601, -0.002399407, -0.0074110017, -0.008248286, 0.002349239, -0.008995614, -0.007819264, -0.030252941, -0.0042521576, -0.014628252, 0.012607698, 0.025049325, -0.0043005953, 0.0013216633, -0.011632021, 0.002702144, 6.7380606E-4, -0.024135923, -0.033602078, 0.0049994853, 0.05009865, 0.0059717037, 0.03614853, 0.002423626, 0.028952036, 0.02628103, -0.0012887947, 0.035954777, -0.02774801, 0.015167989, -0.025782812, 0.023803778, 0.015181828, 0.024288157, 0.022336802, 0.03166456, -0.020593036, 0.023208683, 0.013313509, 0.013908603, -0.011362152, -0.027180593, -0.022641268, 0.0017601994, -0.028315425, -0.0046673394, -0.01911222, -0.009196285, 0.029893117, 0.0053420104, -0.0022540933, -0.013645655, 0.033408325, -6.517495E-4, -0.007258768, -0.018669358, 0.01976267, -0.028398462, -0.014960398, -0.026585499, 0.0022956114, 0.0016036412, -0.022184568, 0.007168812, -0.0069266227, -0.02164483, -0.0047849747, 0.026184157, -0.01812962, -0.032245815, 0.014434501, -0.019153738, -0.009486913, -0.038473547, -0.012061042, -0.01864168, -0.0064803017, 0.0054804045, -0.013922443, 0.0028561074, -0.012074881, -0.040411066, 0.023499312, -0.0021831663, 0.04262537, 0.018738555, 0.054195113, 0.032245815, -0.016012192, -0.023720741, 0.018088104, -0.012898326, -0.018309534, 0.023374757, 0.029256504, -0.011971086, -0.0036086251, -0.006331528, -0.0065806373, -0.03742175, -0.031249378, 0.021022057, 0.015209507, 0.040853925, -0.02401137, -0.0047918945, -0.031138662, 0.031221699, -0.018821592, 0.02794176, 0.008801862, -0.03938695, -0.0121164, 0.0011824042, -3.5787838E-5, 0.012953684, 0.0077431477, -0.031526167, 0.01186729, -0.01491888, 0.0024409252, -0.010857014, -0.010061248, 0.036010135, -0.028758286, -6.4699224E-4, 0.021437239, 0.01210256, 0.012552341, 0.0036916614, -0.0045773834, 0.03404494, -0.010870853, 0.016122907, -0.0038577344, 0.003798917, -0.003632844, 0.013666413, -0.018627841, -0.020994378, -0.029035073, -0.0070477175, 0.02139572, 0.025755133, 0.00814449, 0.0026865746, -0.018323373, -0.019001504, 0.0043178946, -1.1158021E-4, 0.012912165, -0.035954777, 0.01233783, -0.019942584, 0.008068373, -0.0015690427, 0.0076739504, -0.0049095294, 0.005684536, 0.027540417, 2.9451985E-4, -0.007054637, 0.0031553844, -0.018697036, -0.04445217, -0.022295283, -0.017202381, -0.0069750603, 0.0051828576, 0.002864757, 0.0031882531, -0.0037158804, 0.0047884346, -0.005172478, 0.018005067, -0.016233623, 0.016897915, 0.032744035, -0.011978006, -0.012047202, -0.012649217, 0.018198818, -0.010732459, -0.0023094509, 0.003516939, 0.006867805, 0.02911811, -0.032993145, 0.016648805, 0.009390037, -0.03052973, -0.023360917, 0.009092489, 0.027069878, 0.007369484, -0.006546039, -0.015444777, 9.713533E-4, -0.010414152, 0.022973415, -0.015334061, -0.00792998, 0.02539531, 0.007895381, 0.020247051, 0.040383387, -0.0077223885, -0.028536854, 2.1483515E-4, -0.03003151, -0.021547955, 0.004473588, -0.0047157775, 0.015071113, -0.0052243755, -0.010649423, -0.030419014, 0.0059717037, -0.021146612, -0.033878867, 0.0019081081, 0.023513151, 0.028426139, 0.02586585, -0.012863727, -0.0041968, -0.013147435, 0.005338551, -0.019970262, -0.004335194, 0.012434706, 0.01305748, 0.011978006, 0.029948475, -0.02565826, -0.007950739, 0.025284594, 0.017728278, 0.012898326, 0.023194844, -0.03404494, -0.019914905, 0.00675017, -0.01955508, 6.565068E-4, -0.0031138663, 0.020593036, -0.039968204, -0.0042659966, 0.020593036, 0.011694298, -0.0068574254, 0.016953273, 0.015001916, -0.023665383, 0.0034287127, -0.031055627, -0.013714851, 0.008718826, -0.022765823, 0.014503697, 0.0147943245, 0.0057156747, 0.027761849, 0.011742736, -0.0010206562, 0.01585996, -0.012711494, 0.0065321997, -0.0012239225, -0.007168812, 3.6782544E-4, 0.02539531, -0.031581525, 0.014974237, -0.005099821, 0.007798505, -0.02139572, -0.0047123176, -0.012199436, 0.03263332, 0.011355232, -0.058568366, -0.0019669256, -0.0053004925, 0.0025083923, -0.0050894413, 0.0032193917, -0.036702104, -0.022668947, -0.01232399, 0.008026855, -0.0070684766, -0.01746533, -0.009694504, -0.011555904, -0.014157712, 0.010137365, 0.17548366, -0.003750479, 0.020343926, 0.054471903, 0.009701423, 6.024466E-4, 0.007943819, 0.01812962, 0.0015733674, 0.00956303, -0.006241572, -0.0026398667, -0.008248286, -0.0089333365, 0.021174291, 4.727022E-4, -0.0363146, -0.01767292, -0.012490064, -0.03825212, -0.01703631, -0.004027267, -0.0041137636, -0.011161481, 0.01024808, 0.003657063, 0.0012022983, -0.0011997035, 0.02583817, -0.0025481805, -0.024620302, -0.023610026, 0.0036501433, 0.009846738, -0.009971292, -0.008538913, 0.013237392, 0.01142443, 0.0139293615, 0.0056084194, -0.0017524147, 9.1686065E-4, -0.0038992525, -0.018683197, 0.023208683, 0.020233212, -0.034515478, -0.0024374654, -0.016731841, 0.006808988, -0.04605754, 0.010109686, 0.008704986, 0.021105094, 0.0028941657, -0.0038508147, 0.0070926957, -0.005878288, 0.003560187, -9.3934964E-4, 0.016344339, 0.02702836, -0.028343104, 0.0058125504, -0.0037643183, 0.015776923, -0.029394899, -0.0056222584, 0.008282884, -0.04007892, -0.0043767123, -0.010967729, -0.021492597, 0.014545215, -0.0078123445, -0.018005067, -0.005006405, 0.02190778, 0.013839406, 0.022904217, -0.035041377, -0.023070289, 0.0089333365, -0.0074110017, -0.018946147, -0.022170728, 0.018544804, -0.013846326, -0.002518772, -0.015444777, -0.010427992, -0.02539531, -0.015998352, 0.0093139205, 0.014067756, 0.010863934, 0.021921618, 0.010870853, -0.0063211485, -0.024620302, -0.021077415, 0.031830635, 0.027775688, -0.0020395825, -0.015790762, -0.015998352, 0.008518155, 0.01282913, 0.021077415, -0.03288243, -0.00838668, -0.03003151, 0.002420166, -0.008718826, -0.001699652, 0.017396133, 0.011431349, -0.031360094, 0.021976976, -0.009396956, 0.004957967, -0.025104683, 0.0237761, 0.010310357, 0.010988488, -0.039469987, -0.017382294, 0.0042002597, -0.009016373, -0.041711967, 0.008656548, -0.0024651443, 0.009943613, 0.004241778, -0.0041276026, 0.005490784, 0.041435182, 0.0034079538, 0.010427992, -0.00861503, -9.1361704E-5, -0.029671686, 6.110963E-4, 0.005515003, 0.0026018084, -0.044811998, 0.001674568, -0.008303643, -0.013528019, -0.028536854, 3.766913E-4, -0.0246895, -3.3171327E-4, 0.004677719, 0.041961078, 0.015500135, -0.044424493, -0.03210742, -0.021118933, 0.029727044, -0.043455735, 0.025921207, 0.017340776, -0.009348518, -0.023333238, 0.0012178677, -0.1785837, 0.005006405, 0.0015898017, -0.011576663, 0.019222934, 0.005072142, -0.0011529955, 0.021755546, 0.0053281714, -0.013299669, 0.01491888, 0.008919497, -0.035677988, -0.018918468, -0.0042694565, 0.0037400995, -0.0047469162, 0.043511093, 0.023568507, -0.013140515, 0.046666477, 0.005933645, -0.011431349, -8.995614E-4, 0.01794971, 0.0067640096, 0.008324402, -0.0016719733, 6.591017E-4, -0.019859547, -0.031277057, 0.00349445, -0.004812653, 0.0069958195, -0.003404494, 0.003563647, -0.010621744, -0.015527814, 0.012199436, -0.0025948887, 0.04218251, 0.021520276, 0.012676896, 0.011133802, 0.018364891, 0.02539531, 0.027844885, -0.0127806915, 0.0049406677, -0.025713615, -0.00884338, -0.031166341, 0.019831868, -0.012234035, -5.8871534E-5, 0.034875304, 0.0061585354, 0.011555904, 0.00860811, -0.013908603, -0.037809256, -0.020399284, 0.0025706696, -0.0071826517, -0.010497189, -0.007286447, -0.0064803017, 0.015666207, -0.030834196, 0.006130857, -0.015569331, 0.02259975, -0.0033283771, 0.0046292813, -7.09702E-4, -0.015735405, -0.029588649, 0.017908191, 0.002818049, 0.0094938325, -0.011036926, 0.04215483, -0.013604136, -4.3961738E-4, 0.011798093, -0.008801862, 0.0045497045, -0.0047711353, 0.024551107, -0.0041518216, 0.011728897, -0.004103384, -0.016399696, -0.002748852, 0.015444777, 0.008338242, 0.016690323, -0.005054843, 0.013846326, -0.014725128, -0.009286242, -0.02819087, -0.016012192, 0.024952449, 0.027374344, 0.020828305, 0.006362667, 0.021603312, 0.030391335, -0.0038265956, -8.753424E-4, 0.018198818, 0.031138662, -1.774255E-4, -0.023388596, 0.012074881, -0.008269045, -0.021880101, 0.004079165, -0.005217456, 0.035235126, -0.011258356, -0.011957247, -0.01232399, 0.0068608853, -0.019056862, -0.08093285, 0.009742942, 0.011465948, 0.022212246, -0.037560146, 0.03376815, -0.017548367, 0.034155652, -0.01931981, 0.030363657, 0.004733077, -0.028592212, 0.01118224, -0.0024288157, 0.020800628, -0.0042625368, -0.009113248, -0.011749656, 0.004006508, 0.03617621, 0.009998971, -0.007888461, -0.0063211485, -0.005404288, -0.018461768, 0.0137494495, -0.039857488, 0.022959575, 0.016856397, -0.0022229545, 0.013659493, -0.017368454, 0.009203205, -0.050209366, -0.043178946, -0.00651836, -0.05256206, -0.027831046, 0.009251643, -0.043400377, 0.01796355, 0.014185391, 0.01814346, -0.02190778, -0.0019427066, -5.319522E-4, -0.038694978, 0.020648394, -0.025768973, -0.028080154, -0.006781309, 0.004525486, -0.025685938, -0.01395704, 0.0063246083, 0.0026502463, 0.024357354, 0.004221019, -4.0566758E-4, -0.0039511505, -0.0029080051, -0.004027267, -0.010137365, 0.015652368, 0.007798505, 0.011092284, -0.015513974, 0.0070027392, 0.013092078, 3.8425977E-4, -0.01584612, 0.01814346, -0.03235653, -0.010718619, -0.010607905, 0.0048853103, -0.02538147, -0.0033958443, 0.009922854, -0.03257796, 0.005663777, -0.033712793, -0.008476636, -0.018835431, 3.957205E-4, 0.022973415, 0.027208272, 0.004099924, -0.006469922, -0.029477935, 0.0074386806, 0.02075911, -0.0032522604, -0.01232399, -0.006331528, 0.021091254, 0.015541653, 0.0035809462, 0.018005067, 0.005238215, -0.026834607, -0.0015084952, -0.07384707, 0.017838994, -0.017091665, -0.005539222, -0.01396396, -0.0037677782, 0.01163894, -8.459337E-4, -0.0013156085, 0.010836255, -0.0086773075, 0.0140054785, -0.01884927, 0.0010370904, -0.009618387, 0.0060409005, -0.0066013965, -0.011673539, -0.010497189, -0.0057571926, -0.015887639, -0.012898326, 0.013403464, 0.010670182, 2.607863E-4, -0.008130651, -0.0022437137, 0.0056464775, -0.005494244, -0.0039200117, 0.039857488, -0.019181417, 0.007061557, 0.0046050623, -0.020191694, -0.034819946, -0.009362358, 0.0035065594, 0.020399284, 0.007078856, -0.012517743, -0.015209507, -0.007085776, -0.021686349, -0.0061792945, 0.036397636, -0.010600985, 0.011749656, -4.295081E-5, 0.0037885373, 0.0279556, 0.005317792, -0.003446012, -0.025893528, 0.016219784, -0.030391335, 0.023001092, 0.0057468135, -8.022531E-4, -0.010303438, 0.019402847, 0.005795251, 0.019624278, -0.02239216, 0.004027267, 0.01842025, -0.0014090245, -0.0033128078, 0.0042659966, -0.023817617, 0.012898326, -0.0015880718, 0.022544391, 0.033214573, 0.013784048, 0.0025395309, -0.007082316, 0.0025723996, 0.01631666, 0.018530965, 0.013002122, 1.8488581E-4, -0.027083717, 0.011334473, 0.0075355563, 0.024108244, -0.0022886917, 0.009396956, 0.012891406, -0.0026260272, -0.02747122, 0.007950739, 0.02536763, 0.004528946, -0.0049718064, 0.012669976, -0.0062554115, -0.010427992, 0.001280145, 0.009915934, -0.005265894, 0.0018112322, -0.014711289, -0.03617621, -0.017755957, 0.009590709, -0.0059717037, -0.030778838, 0.015209507, 0.017991228, 0.01911222, 0.0023440493, -0.0056741564, 0.012891406, -0.03678514, -0.0012230575, -0.0028353482, -0.015555492, -0.016247462, 0.03938695, -0.0045739235, 0.01909838, 0.0377539, -0.011452109, 0.031027948, 0.010490269, 0.014572894, -0.03072348, 0.0017359805, -0.0035774864, -0.0022696625, -0.0054596458, -0.03819676, 0.014988077, -0.016621126, -0.008864139, 0.011562823, 0.019513562, -0.0011201269, 0.07091311, 0.018434089, 0.008345162, 0.021520276, -0.020786788, 0.0038784936, 0.020786788, 0.0059059663, -0.019029183, -0.011147642, 0.0028249687, -0.011459028, -0.0042556175, -0.028121673, -0.0023267502, -0.008089133, -0.012566181, 0.005290113, -0.03260564, -1.5277407E-4, -0.0032488005, 0.016579608, 0.02140956, 0.011071525, -0.01677336, -0.016275141, 0.019209094, -0.001070824, -0.024523428, -0.029505612, -0.005802171, -0.018890789, 0.0038023768, -0.0015240646, 0.015555492, -0.0010094116, -0.008746505, 0.008365921, 0.00837976, 0.01702247, -0.013562618, 0.018780073, -0.02140956, -0.0080406945, 0.01700863, -0.012787611, -0.010165043, -0.014420661, -0.024039049 ], + "id" : "9b996014-608b-4673-8a5a-a52e203d83d1", + "metadata" : { + "source" : "movies.csv" + } + }, + "3b871118-a7a1-4dee-ad93-f0fb8bee78f9" : { + "text" : "Carnegie-Shanti Correa-Alberto Costa-David Cowgill-Holly Dorff-Harry Hitner-Rif Hutton-Vanessa Lemonides-Hope Levy-Henry Leyva-Anselmo Martini-Renata Becker-Ron McClary-Brian Scott McFadden-Phil Miler-Edie Mirman-Heber Moreira-Leo Nobre-Mina Olivera-Jackeline Olivier-Kleber Jorge Pimenta-Byron Thames-Annie Maginnis Tippe-Natalie Morales,sequel-travel-jungle-audition-amazon rainforest-parrots-personification,/gVNTBrjxh2YRmQFjlaqrNbHVvrd.jpg,/eg2jxQ1FFi6ENDfyMIMC5odpcU0.jpg,46195-109451-80321-13053-77950-41513-10527-57800-8355-77931-49519-22794-151960-82703-10192-15512-49444-950-810-278154-953\r\n274284,Rocket Power: Island of the Menehune,Animation,en,Armed with a spirit for adventure Otto Rocket Reggie Twister and Sam embark on a Hawaiian extreme sporting escapade. But amid the killer surfing and skating the gang also finds a spooky spirit in the jungle.,1.81,Nickelodeon Animation Studio-Nickelodeon Productions-Klasky-Csupo,1/1/04,0,500000000,75,Released,,0,0,Joseph Ashton-Shayna Fox-Sean Marquette-Gilbert Leal,extreme sports,/1ADnmOLJJJdE4jIvyC7hJpp8mjX.jpg,,\r\n747121,Alha Sahma,,en,A bounty hunter has a mission kill a jew but things don't go according to plan.,0.6,,4/12/19,0,500000000,7,Released,Youpin !,10,1,Lil K-Prometheus II-Gropor,,/m7sGOqpSDGxk23qxBPkZ4qcZ2v9.jpg,,\r\n894260,The Inexplicable Joy of Film - A Trenz Core,Drama,en,See it there : https://www.youtube.com/watch?v=OAhwdLd6CnU A tribute to a handful of films that means a lot to Trenz.,0.6,,,10000000,500000000,5,Released,The inexplicable joy of film - a Trenz core,0,0,,,/2r9rewJqNpSst1vNcMews0yuSNT.jpg,,\r\n932541,Venom: tiempo de carnicer�_a,,pt,,0.6,,,250000000,500000000,0,Released,,0,0,,,,,\r\n535928,Wooden Slippers (2007),,tl,The best movie of 2007,0.6,,,100,500000000,33,Released,Oh nang gewa mu?,10,1,,,/ejtnZGYX8NnQUHFMsPWqPtliFff.jpg,,\r\n354373,Love and Germophobia,,en,If your girlfriend had the flu would you still kiss her? What about if she might have viral Meningitis? For David the answer is simple. Absolutely not. Unfortunately David's girlfriend doesn't see it this way.,0.6,,1/1/12,99999999,499999999,10,Released,\"If your girlfriend had the flu, would you still kiss her? What about if she might have viral Meningitis?\",5,1,T. J. Miller-Tanya R.", + "embedding" : [ 0.0057889237, -0.025554014, 0.007966344, -0.027980383, -0.025610115, 0.036465663, 0.0057398356, -0.011935492, -0.019228624, -0.039242662, 0.018892018, 0.035511944, 0.02335205, -0.0054733558, 0.009803653, 0.0031626949, 0.02973354, -0.01619917, 0.01924265, -0.025301559, 0.006160593, 0.014586265, -0.021907447, 4.1768962E-4, 0.0109467115, 0.008863961, 0.032258086, -0.010476865, -0.0040427796, -0.01622722, 0.022454433, 0.006283314, 0.0029978983, -0.01102385, -0.020715302, -0.0100981835, 0.0107223075, -0.017461441, 0.015175326, -0.007987383, -0.0015383951, 0.01211782, -0.018962145, -0.0091935545, -0.023380099, 0.0072230063, 0.009698464, -0.014824694, -0.0060554035, 0.027559625, 0.030070147, 0.041065946, -0.01619917, -0.014586265, -0.017573643, -0.0058835945, -0.013927078, -0.0030750372, 0.010904635, 0.010806459, 0.01791025, -0.013260879, -0.022777013, -0.003353789, -0.001933732, -0.0021178136, -0.02086958, -0.013050499, -0.0032485996, 0.014158495, 0.020112215, 6.8066316E-4, -0.0021633955, 0.018162705, 0.027180944, -0.030518955, -0.019396927, 4.509996E-4, -0.0046528783, 0.008387103, 0.017784024, -0.008548393, -0.014088368, -0.0044880817, 0.013653586, 3.267446E-4, 0.0034694974, 0.022201978, -0.023660604, 0.016143069, 0.014992997, 0.03694252, 0.00347651, 0.008899024, 0.003253859, 0.021640968, -0.0081767235, 0.020490898, -0.0013946362, -0.038849954, -0.013085563, 3.5545256E-4, 0.006483174, -0.014235633, 0.009530161, 0.0017014387, 0.0037938314, -0.00665849, 0.018920068, 0.006616414, 0.0019880799, -0.0063429214, 0.0043793856, -0.045834534, 0.0011693556, -0.024460044, 0.029985994, -0.0023264391, -0.011991593, -0.023464251, 0.020897629, 0.020701276, 0.00867462, -0.032230034, 0.022356257, 0.037279125, -0.002536818, -0.016633952, -0.004225108, -0.011991593, 0.023828907, -0.008043484, 0.0145161385, 0.0071598925, -0.015596083, 0.052201997, -0.019607306, 5.535593E-4, -0.026002822, -0.020841528, 0.031023864, 0.039747573, -0.027293146, -0.020995807, -0.032173935, 0.0033555422, 0.013113613, 0.012671818, 0.019845735, 0.009551198, 0.021921473, 0.011283318, 0.0019758078, 0.019158497, 0.019845735, 0.0051928507, -0.009424971, -0.0053155716, -2.9211974E-4, -0.021683043, -0.005687241, -0.022117827, 0.0031346444, -0.010364663, -0.0069179568, 0.021823296, 0.023856958, -0.018723715, 0.0016812774, -0.0039165523, -0.013730724, 0.03809259, -0.037671834, 0.022216003, -0.0068162736, 0.02180927, -0.010315575, 0.0020389215, -0.028527368, -0.020252468, -2.780945E-4, 0.0073281955, 0.028471267, 0.029901844, -0.0040603112, -0.0077279154, 0.017601695, -0.022159902, 0.011760176, -0.014908846, -0.004449512, 0.009978969, 0.018036477, -0.011451621, -0.65032303, -0.019873787, 0.0010431283, -0.021837322, 0.011886403, 0.021178134, 0.0014726517, -0.015105199, -0.035343643, -7.595552E-4, -0.01604489, 0.011788227, 0.01211782, -0.019214598, -0.021612918, -0.013625535, 0.003553649, -0.008394115, 0.01596074, 0.009698464, -0.021795245, 0.01702666, 0.018541386, 0.004740536, 0.022833114, -0.0026823299, -0.0019968457, -0.02415149, 0.015231427, 0.0047089793, -0.03265079, 0.012061719, 0.009095377, 0.0029891324, 0.050126262, -0.00585905, -0.012664805, 0.053688675, 0.012741944, 0.029340833, -0.034474075, -0.0029260188, 0.01430576, 0.0082889255, -0.01678823, 0.019340826, 0.0048913076, 0.0049684467, 0.0038499325, -0.013576446, -3.0570672E-4, -0.0013210037, -0.011437595, -0.0055610137, -0.007833105, -0.018190755, 0.02143059, -0.03907436, 0.026339428, 0.008485279, -0.014488088, 0.019158497, 0.0080084205, 0.0060694288, 0.009095377, 0.02612905, -0.0013280163, -0.007657789, 0.017152887, -0.038990207, 0.013422169, 0.00463184, -0.027896231, -0.00963535, 0.006122024, 0.012208984, 0.019971963, -0.008934087, 0.0025666216, 0.016016841, 0.0013858705, -5.7109084E-4, 6.469149E-4, 0.013394118, 0.01563816, -0.012924273, -0.045469876, 0.0026665516, 0.008029458, 0.008709683, 0.00907434, 0.015932688, -0.0024526664, -6.578721E-4, -0.012608704, -0.00165498, -0.022917267, -0.0059081386, 0.023127645, -0.066984616, -0.0020774908, -0.027713902, 0.02399721, -0.018274907, 0.012657792, -0.006034366, -0.015834512, -0.0029190062, 0.030042095, -0.007861155, -0.032706894, 0.0052033695, -0.012594678, 0.0029137467, -0.0100981835, -0.040673237, 0.0067356285, 0.012952323, -0.006931982, -0.013751762, 0.006763679, 0.0074964985, 0.0038744765, -0.016325396, 0.013450219, 0.025105206, 0.0035291046, -0.014326798, 0.011122027, -0.003734224, 0.01684433, -0.008352039, 0.021963548, -0.012005618, 0.011100989, 0.014530164, 0.015217401, -0.0038499325, 0.0027349247, -0.00784713, -0.010455827, -0.017124835, -0.012482476, 0.008751759, -0.004649372, -0.010518941, -0.03744743, -0.005150775, -0.008295938, -0.014431987, -0.015806463, 0.010399726, 0.0032433402, 0.024417968, 0.008730721, 0.0031101003, -0.03200563, -0.018457236, 0.008716696, -0.016395522, 0.019817686, 0.021444615, 0.005915151, -0.016900431, 0.015525957, 0.013267891, 0.0014358355, 1.748774E-4, 5.4961466E-4, -0.025259484, 0.0031556822, -0.019467054, 0.014389912, 0.015245452, -0.016774205, 0.024908852, -0.0117952395, 0.024754575, -0.0033958647, 6.6400814E-4, 0.004740536, -0.011711088, -0.015652183, -0.008990188, 0.03691447, 0.019649383, 0.017826099, -0.0015077149, -0.012720906, -6.4297026E-4, 0.0028629052, -0.01294531, -0.014102394, -0.0036956547, 0.0022615723, 0.01619917, -0.0068127676, 0.0060518975, 0.013422169, 0.014165508, 0.03472653, 0.016325396, 0.010126234, -0.002784013, 0.02669006, -0.015610108, 0.0072791073, -0.031809278, 0.019453028, -0.0061676055, 0.021444615, -0.014186545, -0.013499307, 0.004561714, 0.0054277736, 0.012601691, -0.016619926, 0.014810669, -0.01619917, 0.015974766, -0.0032906753, -0.0014568734, 0.024417968, 0.023141671, -0.005690747, 0.012910247, 0.0056837345, -0.017545594, -0.006676021, -0.013401131, -0.004169007, -5.820481E-4, -0.0037377304, -5.912521E-4, -0.0051963567, -0.0052594705, 0.008611507, 0.010189348, 0.03921461, -0.006707578, -3.6772466E-4, 0.023211796, 0.015539982, 0.0064235665, 0.006774198, 5.2622097E-5, 0.011879391, 0.015946714, -0.017461441, 0.040561035, -0.01983171, 0.010021045, -0.006441098, -0.0025087674, 0.005354141, -0.010000006, -0.006616414, 0.0120266555, 0.02669006, 0.015245452, 0.00695302, -0.030350652, 0.025764393, -0.007524549, 0.0044214614, 0.0011816277, -0.026143074, 8.735104E-4, -0.0063639595, -0.025217408, -0.020280518, -0.015862564, -0.013856951, 0.0037377304, -0.0030136765, -0.010112208, 0.0013297695, 0.0028892024, 0.009922868, 0.014151482, -0.0098737795, -0.028667621, 0.017798048, 0.026563833, -0.010469853, -0.014460037, -0.010792433, -0.0050455853, -0.037840135, 0.002314167, 0.0048597506, 0.027110817, -0.0037377304, 0.018555412, -0.018835917, -0.0046458654, 0.005504912, -0.014950922, 0.016409548, 0.020014038, -0.020799452, 0.02068725, -0.0072861197, -0.0028558925, 0.025217408, -0.0059081386, 0.001251754, -0.008934087, -0.0045792456, -3.4822078E-4, 0.015413755, 0.008043484, -0.03416552, 0.010848534, -0.00645863, 0.0020862566, -0.003678123, 3.1775967E-4, 0.011388507, -0.031500723, -0.025077155, -0.025946721, -0.025189357, -0.007531562, 0.09037874, 0.040448833, 0.008997201, 0.00503156, -0.0040603112, 0.009298744, -0.015848538, -0.02447407, -0.0046774223, -0.027798055, 0.023323998, -0.008387103, 0.021318387, 0.001320127, 0.011676025, -0.011647974, -0.012727919, -0.006272795, -7.753336E-4, -0.015343629, -0.024922878, -0.015245452, 0.015175326, 0.034586277, -0.015539982, -0.025694266, 0.03856945, 0.018793842, 0.009957931, 0.0117391385, -0.008892012, 0.0077629783, 0.012636755, 0.015413755, -0.0069249696, -0.010140259, 0.037223026, 0.017812073, 0.032061733, 0.0012464945, 0.0041093994, 0.006777704, 8.678126E-4, 0.0019354852, 0.013632547, -0.02527351, -0.008204774, 0.029368883, 0.023155695, -0.03856945, 0.03413747, 0.005063117, -0.007952319, -0.021388514, 0.013352042, -0.002359749, -0.0075525995, -1.859442E-4, -0.013744749, 0.0027296653, -2.1684359E-4, -0.04134645, 0.0010764383, -0.0057258103, -0.0072931326, -0.011605898, -0.015063124, -0.0036360472, -0.025932696, 0.0031574355, -0.00390954, -0.022945317, -0.009396921, -0.008429178, 0.01158486, 0.0109958, 0.015876587, -0.003923565, 0.013085563, 0.0055014063, -0.032173935, -0.01737729, 0.015764385, -0.030490903, 0.008457229, 0.0062447446, -0.008800847, 0.028443217, -0.0027997915, 0.011640961, 0.0027647284, 0.01174615, -0.022720912, -0.010652181, 0.037755985, 0.020995807, 0.028835924, 0.026465656, 0.006227213, -0.012363262, 0.013758775, -0.028779823, -0.010455827, -0.008534367, -0.02095373, -0.016619926, -0.009488084, 0.008436191, -0.009284719, -0.024446018, -0.011409544, -0.021458639, -0.00135782, 0.012734931, 0.015175326, 0.0073141702, 0.013001411, 0.0032696375, -0.0075175366, -0.0047124857, 0.01956523, -0.017517542, 0.017152887, 0.027629752, -0.019929888, 0.029873792, -0.013513333, -0.025049105, -0.0036956547, 0.023239847, -6.1141344E-4, 0.026605908, -0.014137457, -0.021711094, -0.02284714, -0.02917253, 0.008162698, -0.0026788237, -0.016129043, 0.0034151494, -0.013765788, -9.4834824E-5, 0.014950922, 0.0027138868, -0.0067812107, -0.026746161, 0.00569776, -0.007177424, 0.021893423, 0.0064936928, -0.0050105224, 0.0074614356, -0.015525957, 0.0011597133, 1.3740367E-4, -0.013267891, -0.030631157, -0.0048106625, 0.035624146, 2.6319266E-4, 0.038990207, -0.0040182355, 0.015624134, 0.009116416, 0.016339421, 0.023309974, -0.011669012, -0.007475461, -0.028976176, 0.010554004, 0.023856958, 0.014403936, 0.0023211797, 0.0023509832, 0.0015787177, 0.023899034, 0.007026653, 0.0060869604, -0.003755262, -0.03705472, -0.02287519, 0.0193268, -0.032875195, -0.0034151494, -0.02116411, -0.019144472, 0.036746167, -0.018485285, -0.0053331032, -0.015610108, 0.023239847, -0.0021704081, 0.008870973, -0.017096786, 0.019256674, -0.018302957, -0.01211782, -0.020546999, -0.0131066, -0.00867462, -0.022594685, 0.011465645, 0.011451621, -0.029144479, -0.007201968, 0.019621331, -0.018990194, -0.033324003, 0.0219916, -0.007636751, -0.010967749, -0.031809278, -0.0017093279, -0.02855542, -0.010981774, -0.007433385, -0.0100420825, 0.008983175, -0.0247125, -0.02784013, 0.031220216, 0.0018355552, 0.052622754, 0.0076507763, 0.042917278, 0.024165513, 0.0016909197, -0.022622736, 0.015806463, 0.0017321189, 0.007643764, 0.04089764, 0.02293129, -0.008197761, -0.0033222323, 0.011072938, 0.01118514, -0.0385975, -0.04075739, 0.018653588, 0.030182349, 0.022945317, -0.035708297, -2.7502648E-4, -0.036269307, 0.007587663, 1.6129043E-4, 0.008071534, -6.1097514E-4, -0.044824716, -0.015413755, 0.02231418, 0.0048317, 0.010736332, 0.0024666917, -0.025764393, -0.0074053346, -0.017040685, -0.0021949525, -0.0024386412, -0.007812067, 0.034474075, -0.022300156, 0.007363259, 0.0075596124, 0.0021037883, 0.010140259, 0.018821891, 0.009649375, 0.032678843, -0.0021090477, 0.01102385, 0.010813471, -0.011879391, 0.008092572, 0.009796641, -0.017517542, -0.017040685, -0.028387116, 0.0014656391, 0.02316972, 0.009719501, 0.0015655691, 0.005108699, -0.015119225, 0.0068899062, -4.8606272E-4, -0.017517542, 0.005967746, -0.03239834, 0.013990192, -0.014474063, 9.3180285E-4, -0.005154281, 0.005087661, -3.7912017E-4, -0.0059817713, 0.017251063, -0.015736336, 0.0081767235, -0.015049098, -0.016830307, -0.03248249, -0.020504922, -0.00585905, -0.0032836627, 0.009333807, -0.017699871, -0.014095381, -0.01983171, 6.1097514E-4, -0.0036816294, -0.0028138168, -0.0066690086, 0.009614312, 0.024894826, -0.014698467, -0.021472665, -3.114045E-4, 0.0384853, -0.004235627, -0.006185137, -0.010245449, 0.004183032, 0.019789634, -0.032173935, 0.0051227245, -0.0049894843, -0.027349247, -0.016437598, 0.019186549, 0.034361873, 0.02340815, -0.013863964, -0.027391322, -0.014698467, -0.0029242656, 0.018892018, -0.0017058216, -0.0033713207, 0.030378701, 0.016746154, 0.026339428, 0.016367473, -0.01953718, -0.029929893, 0.021388514, 0.004463537, -0.025876595, 0.0026227226, 0.012419363, 0.009747552, 0.004221602, -0.0148527445, -0.025301559, 0.003990185, -0.020490898, -0.023043493, -0.016129043, 0.016437598, 0.042917278, 0.0024842233, 2.634118E-4, 0.010687244, 0.0022650787, 0.01820478, -0.01347827, 0.0029119935, 0.019761585, 0.022594685, 0.017812073, 0.028485293, -0.029845743, -0.0036921483, 0.01619917, 0.013976166, 0.012938297, 0.025231434, -0.033492308, -0.009039276, -0.0038429198, 0.0053155716, -0.0023124139, 0.0023895528, 0.015091174, -0.032819096, -0.003597478, -0.0041093994, 0.014298747, 0.0089130495, 0.0015568032, 0.013008424, -0.011353443, 0.0054768617, -0.014151482, -0.018134654, 0.011619924, -0.022973368, 0.016746154, 0.017868174, -0.0037061735, 0.027419373, 0.021977574, 0.004649372, 0.004943902, -0.008429178, 0.0049088392, -0.016774205, 0.006234226, 0.0118513405, 0.018134654, -0.026171125, 0.015147275, -0.017980376, 0.010918661, -0.014642366, -0.012180934, -0.0059817713, 0.029621338, 0.006970552, -0.052734956, -8.6693605E-4, -0.001033486, 0.016381497, -0.0081206225, -0.008043484, -0.011774201, -0.0043758797, -0.01950913, 0.0024421476, -0.02396916, -0.030603105, 0.0080645215, -0.00950211, -0.022762988, 0.0072931326, 0.19489494, -0.011472658, 0.009586262, 0.038793854, -0.010077146, 0.0060974793, 0.025077155, 0.01764377, 0.0031276317, 0.018064529, 0.0048106625, 9.116416E-4, -0.009859754, -2.164053E-4, 0.0072861197, -0.010350638, -0.031697076, -0.035511944, -0.019186549, -0.045357674, -0.0106101055, -0.0023527364, -0.0106662065, -0.014319785, 0.0045126257, 0.0028804366, -0.007973357, 0.0063744783, 0.027685853, 0.008162698, -0.011388507, -0.0064936928, -0.008997201, 0.009971956, -0.0148527445, -0.0051928507, -0.0048667635, 0.016030867, 0.022889215, 0.0069249696, 0.012826095, -0.0043302975, -0.00798037, -0.007356246, -0.0034905353, 0.023450226, -0.023716705, -2.1585744E-4, -0.024642373, 0.0022265092, -0.05396918, 0.012671818, 0.015497906, 0.0192707, -5.522444E-4, -0.004000704, -0.0037762998, -0.008660595, -0.020182341, 0.016451623, 0.012826095, 0.029453035, -0.01563816, 0.009698464, 0.0017575397, 0.016563825, -0.031640973, -0.012363262, -0.0052138884, -0.029424984, -0.006875881, -0.032931298, -0.014474063, 0.0062763016, -0.012650779, -0.011192153, -0.0055715325, 0.008590468, 0.005599583, 0.020490898, -0.034221623, -0.011640961, -0.0022931292, -0.00851333, -0.01929875, -0.024417968, 0.026942514, -0.015539982, -0.008295938, -0.0145722395, -0.012110807, -0.019719508, -0.011108002, 0.0072370316, -0.0043618544, -4.5406763E-4, 0.02415149, 0.014544189, -0.0049123457, -0.0068583493, -0.035652198, 0.026970565, 0.0234923, -0.0030785433, -0.013436194, -0.01278402, -0.008583456, 0.013443206, 0.029705489, -0.012398325, -0.011528759, -0.00910239, -0.001967042, -0.018821891, -0.0076507763, 0.02284714, 0.0060203406, -0.013716699, 0.03253859, -0.017447418, 0.00543128, -0.007622726, 0.008920062, 0.010350638, -0.0040743365, -0.03469848, -0.032819096, 0.0020529467, 0.0024754575, -0.02340815, 0.017419366, -0.018429184, 0.007657789, -0.010252461, 4.9280145E-5, 0.012510527, 0.023239847, -0.012363262, 0.011725113, -0.017433392, -0.0025175333, -0.018429184, -0.0035080668, -0.0038534387, 0.006048391, -0.0330996, 0.015077149, -0.006027353, -0.016493699, -0.028457241, -0.0067356285, -0.010168309, -0.0036956547, 0.009431983, 0.037784036, -0.009389908, -0.023562428, -0.03747548, -0.0145722395, 0.019074347, -0.029228631, 0.015750362, 0.012475464, 0.0011369222, -0.017110812, -0.008934087, -0.18300152, 0.024516145, 0.0017654289, -0.03245444, 0.013983179, 0.021795245, 0.026676035, 0.008625532, 0.019018246, -0.016325396, 0.039326813, -0.0028856962, -0.037587684, -0.016774205, -0.0031328914, 0.0074614356, -0.021150084, 0.023506327, 0.03253859, -0.007187943, 0.03584855, -0.005161294, -0.01950913, -0.009649375, -0.0034432, 0.006146568, 0.016086968, 0.01155681, -0.009221605, 0.00284888, -0.030603105, -0.0066479705, 0.00681978, 0.014144469, -0.004316272, 4.6633973E-4, -0.020911654, -0.017840125, -0.0014051552, -0.009200567, 0.03147267, 0.0069740578, 0.013183739, 0.009284719, 0.008225812, 0.011318381, 0.0178822, -0.023941109, 0.020771403, -0.0120266555, -0.018218806, -0.022412358, 0.019116422, -4.7422893E-4, -0.011283318, 0.01430576, 0.010364663, 0.010007019, 0.011858352, -0.008723709, -0.011577847, -0.015834512, -0.002123073, -0.0192707, 0.0035361173, -0.030911662, -0.02143059, -0.00974054, -0.038906056, 0.00974054, -0.017293138, 0.019971963, 0.015511932, -0.0013727217, 0.010603093, -0.017419366, -0.043955147, 0.0128751835, -0.008099585, 0.013969154, -0.0036500725, 0.041711107, -0.0045126257, 0.0055084187, 0.0067601725, -0.0041199187, -0.004281209, -0.006472655, -0.00125789, -0.01347827, 0.0013008424, -0.021346437, -0.026830312, -0.00407083, -0.016830307, 0.014586265, -0.008422165, 0.009894817, 0.013969154, -0.009389908, -0.001748774, -0.016297346, -0.021037882, 0.026662009, 0.024095388, 0.010820484, 0.007356246, 0.022496508, 0.02420759, 0.0021143071, -0.008955125, 0.0040603112, 0.020645175, 0.01542778, -0.016802255, 0.0045091193, -0.020827504, -0.034866784, 0.011227217, 0.009978969, 0.043814894, -0.00830295, 0.0031539293, -0.014908846, -0.0026332415, -0.016535776, -0.07988785, 0.010448814, 0.0061676055, 0.03694252, -0.034978986, 0.036718115, -0.008920062, 0.015385704, -0.020504922, 0.020729326, 0.0193268, -0.023772806, 0.008695658, -0.0014121678, 0.012727919, -0.003653579, -0.010210386, -0.013695661, -0.021500716, 0.026746161, -0.008450216, -0.0064375917, -0.011542785, -0.014712492, -0.005645165, 0.016030867, -0.024460044, 0.018639563, 0.01681628, 0.0060694288, 0.0060448847, -0.022889215, 0.008737734, -0.03921461, -0.032061733, -0.025876595, -0.013842926, -0.020546999, 0.0024333817, -0.04911644, 0.017657796, 0.01291726, 0.017769998, -0.014361861, -0.007945307, 0.003366061, -0.042552624, 0.023141671, -0.018751765, -0.030603105, 0.004183032, -0.017489493, -0.024165513, 0.0018302958, 0.016030867, -3.238957E-4, 0.023590479, 0.015273502, -0.018274907, -0.023842933, -0.0029943918, -0.003948109, -0.013758775, 0.025960747, 0.020336619, 0.011339419, -0.011220204, -0.01460029, 0.01988781, -0.024586271, -0.01817673, 0.021893423, -0.03741938, -0.026353454, -0.015680235, -0.0039200587, -0.03138852, -0.026002822, 0.0193268, -0.036830317, -6.9600326E-4, -0.03517534, 0.017180936, -0.014333811, 0.0015015788, 0.023856958, 0.021206185, 0.015343629, -0.012938297, -0.035091188, 0.009579249, 0.026016848, -0.010483878, -0.009754565, -0.0030329614, 0.037110824, 0.00974054, 0.011704075, 8.082053E-4, 0.009277706, -0.017573643, -4.9614336E-4, -0.07971955, 0.0234362, -0.013169714, -0.01681628, -0.006676021, -0.004775599, -6.854843E-4, 0.0107223075, 0.015736336, 0.029817691, -0.012265085, 0.021472665, -0.0038920082, 0.008190748, 0.0018828905, 0.010371676, 0.008899024, -0.002201965, 0.001923213, 0.008352039, 4.220725E-4, 0.013499307, 0.024502119, 0.022748964, 0.0020529467, 0.023632554, 0.015105199, 0.019845735, -0.0097615775, -0.00440393, 0.031556822, -0.019172523, -0.0033345043, -1.6896048E-4, 0.003867464, -0.026844338, -0.009677426, -0.0017803308, 0.005220901, 0.020771403, -0.010147272, -0.010336612, -0.0130995875, -0.012040681, -0.006115011, 0.018793842, -0.028022459, 0.0115147345, 0.0028068041, 0.012777007, 0.025666216, 0.01254559, -0.02725107, -0.020238442, 0.02541376, -0.02335205, 0.046563845, 0.0038183755, -0.008534367, -0.013962141, 0.023688655, 0.015582058, 0.02967744, -0.024095388, 0.006672515, 6.469149E-4, 0.011605898, -0.0151613, 0.0035361173, -0.01569426, -0.015469856, -0.010175322, 0.0066549834, 0.044796664, 0.0034379405, 0.009312769, -0.0034922885, 0.02447407, 0.0020038583, 0.012286123, 0.0131556885, -0.0044354866, -0.036465663, 0.020462846, 0.006304352, 0.028625544, 0.006346428, 0.017657796, 0.008316976, -6.451617E-4, -0.013225815, 0.010399726, 0.020084165, -0.0146283405, 0.02639553, 0.016465649, -0.016325396, -0.024081362, -0.002661292, 0.026942514, 0.0109467115, 0.0037377304, -0.006504212, -0.01363956, -0.014130444, 0.010497903, -0.017363265, -0.024838725, 0.01019636, 0.010799446, 0.030490903, 0.0040988806, -0.021598892, 0.008316976, -0.03312765, -5.294534E-4, -0.0064446046, -0.015077149, -0.0083450265, 0.0384853, 0.011402532, 0.016662002, 0.029845743, -0.006370972, 0.045357674, 0.010750358, 0.013702674, -0.026577858, 0.0089411, 1.7893157E-4, -2.3952505E-4, 0.004225108, -0.028302964, -3.7079267E-4, -0.0031363976, 0.00784713, 0.015343629, 0.011535772, -0.021276312, 0.07180931, 0.01046284, 0.007321183, 0.020504922, -0.007994395, 0.007699865, 0.02479665, 0.011143065, -0.003923565, -0.0030785433, 0.004929877, -0.0034607316, 0.0028769304, -0.04370269, 0.0019652888, -0.0034607316, 0.007030159, 0.007791029, 0.004558208, -0.016690053, -0.015764385, 0.01129033, 0.018316982, 1.15270064E-4, -0.004849232, -0.007755966, 0.020981781, -0.0145161385, -5.136749E-4, -0.024025261, 0.0032328211, -0.02260871, -0.011633948, -0.0056206207, 0.020434797, -0.015890613, -0.011486684, 0.0178822, 0.012938297, 0.008983175, -0.007208981, 0.0011895169, -0.021318387, -0.0247686, 0.018807866, -4.1582687E-5, -5.4698496E-4, -0.02976159, -0.015904639 ], + "id" : "3b871118-a7a1-4dee-ad93-f0fb8bee78f9", + "metadata" : { + "source" : "movies.csv" + } + }, + "d18f3e1a-d26a-41c1-95b9-ddb0397d3444" : { + "text" : "Barbara Hartnett-Diane Lampone-Mary Stein-Mitch Suskin-Ted Grossman-James Kahn-Anne Lockhart-Melissa Mathison-Debra Winger-Pat Welsh,farewell-loss of loved one-homesickness-nasa-extraterrestrial technology-operation-space marine-riding a bicycle-flying saucer-prosecution-halloween-flowerpot-finger-single-alien-single mother,/an0nD6uq6byfxXCfk6lQBzdL2J1.jpg,/mXLVA0YL6tcXi6SJSuAh9ONXFj5.jpg,813257-329-607-578-87-602-165-162-85-89-196-608-812-105-927-10020-840-620-425-863-808\r\n353081,Mission: Impossible - Fallout,Action-Adventure,en,When an IMF mission ends badly the world is faced with dire consequences. As Ethan Hunt takes it upon himself to fulfill his original briefing the CIA begin to question his loyalty and his motives. The IMF team find themselves in a race against time hunted by assassins while trying to prevent a global catastrophe.,90.371,Paramount-Bad Robot-Skydance-TC Productions,7/13/18,178000000,791657398,147,Released,Some missions are not a choice.,7.414,7445,Tom Cruise-Henry Cavill-Ving Rhames-Simon Pegg-Rebecca Ferguson-Sean Harris-Angela Bassett-Vanessa Kirby-Michelle Monaghan-Wes Bentley-Frederick Schmidt-Alec Baldwin-Yang Liang-Kristoffer Joner-Wolf Blitzer-Dean Ashton-Alix B��n��zech-Joey Ansah-Velibor Topic-Alexandre Poole-Andrew Cazanave Pin-Christophe de Choisy-Guy Remy-Jean Baptiste Fillon-Maximilian Geller-Olivier Huband-Raphael Desprez-Raphael Joner-Thierry Picaut-Vincent Latorre-Harvey Djent-Grahame Fox-David Mumeni-Charlie Archer-Caspar Phillipson-Ffion Jolly-Lolly Adefope-Ross O'Hennessy-Russ Bain-Nigel Allen-Tracey Saunders-Alicia Menc�_a Casta��o-Conny Sharp-Jessie Vinning-Stuart Davidson-Julianne Binard-Hiten Patel-Jag Patel-Godiva Marshall-Pamela Cook-Gina Aponte-Robert Ryan,paris france-london england-spy-helicopter-plutonium-norway-gun-countdown-race against time-sequel-motorcycle-bomb remote detonator-handgun-hand to hand combat-kashmir,/AkJQpZp9WoNdj7pLYSj1L0RcMMN.jpg,/aw4FOsWr2FY373nKSxbpNi3fz4F.jpg,177677-956-56292-954-955-363088-345887-351286-447200-345940-383498-260513-348350-335983-744013-346910-284054-78312-400535-333339-299536\r\n14161,2012,Action-Adventure-Science Fiction,en,\"Dr. Adrian Helmsley part of a worldwide geophysical team investigating the effect on the earth of radiation from unprecedented solar storms learns that the earth's core is heating up. He warns U.S. President Thomas Wilson that the crust of the earth is becoming unstable and that without proper preparations for saving a fraction of the world's population the entire race is doomed. Meanwhile writer Jackson Curtis stumbles on the same information.", + "embedding" : [ 0.0027132274, -0.029416913, -0.027555615, -0.04635053, -0.02274143, 0.040052906, 0.0010644738, -0.01732547, -0.011125807, -0.03414713, 0.021062061, 0.034287076, 0.002464821, -0.0028724174, 0.010132181, 0.013483918, 0.028423287, -0.0022251613, 0.0050905813, -0.01360987, -0.0030735915, -0.003789072, 0.009859284, 0.029948713, 0.008354851, -5.694104E-4, 0.017451422, -0.015030336, -0.009901268, -0.01531023, 0.012140424, -0.01684965, -0.0040024915, -0.010594008, -0.017171528, 1.1698716E-4, 0.002597771, -0.027079795, 0.033951204, -0.01806719, 0.0047931937, 0.0101041915, -0.012112435, 0.0057518324, -0.013700836, 0.01605195, 0.009775315, 0.014876394, -0.016989596, 0.024574738, 0.035518613, 0.025596352, -0.024070928, -0.021887751, -0.017465418, -1.3415256E-4, -0.007466186, 0.008788687, 0.008095949, -0.014197649, -0.0034776893, -0.012329353, -0.037477873, 0.022223623, -0.0058567924, -0.018053196, -0.014918378, -0.007858038, -0.0046917317, 0.008074957, 0.021663835, 0.015870018, 0.004555283, 0.008634746, 0.02292336, -0.028171383, -0.009327484, -0.00952341, 0.0062626395, 0.0104400655, 0.0054124603, -0.0032432775, -0.014043707, 0.017017586, 0.0100482125, 0.004215911, -0.010992857, 0.025540374, -0.011867527, 0.008956624, 0.008578767, 0.025540374, 0.0015245504, 0.020586241, -0.011916509, 0.037953697, -0.019200763, 0.021635845, 0.0036526234, -0.044083387, -0.009754323, -0.009089574, -0.010489047, -0.015422188, 0.01507232, -0.0012385332, 0.012749195, 0.0044083386, 0.030424533, -0.008123938, 0.0072352733, -0.016737692, 0.010628994, -0.0315721, -0.009698344, -0.021048067, 0.028031435, -0.01286815, -0.004229906, -0.025148522, 0.0321039, 0.020530263, -0.0025750294, -0.0262681, 0.031460144, 0.024392806, -0.006574022, -0.009194534, 0.015660098, -0.0013050082, 0.022489524, -0.002485813, 0.023847012, -0.002408842, -0.022825398, 0.043019786, -0.024882622, -0.003897531, -0.024000954, -0.03708602, 0.032971572, 0.036414277, -0.032131888, -0.014022715, -0.033979192, 0.005297004, 0.002305631, -0.0022741428, 0.016751686, 0.011440688, 0.018584995, 0.018724943, 0.005590893, -0.0142886145, 0.0144005725, -0.009971242, -0.007466186, -0.0011790557, 9.227772E-4, -0.026911857, -0.0032852618, -0.016919624, 0.01934071, -0.011643612, 0.0028356812, 0.022867382, 0.00727026, -0.028129399, -0.011853533, -0.0072352733, -0.01263024, 0.025638336, -0.023357198, 0.016163908, 0.008578767, 0.026128152, 0.005027605, 0.005951257, -0.034343056, -0.020544257, 0.007014856, 0.009292497, 0.019522643, 0.03014464, -0.007347231, 0.009992234, 0.021509893, -0.032999564, 0.021048067, -0.011699591, -0.0051325657, 0.016639728, -0.0024420796, 0.010915886, -0.64756393, -0.018025206, -0.008928635, -0.012889142, 0.008991611, 0.0055069244, 0.0023336206, -0.0036631194, -0.022349577, 0.015450177, -0.037953697, 0.009488424, 0.012994102, -0.015016341, -0.016905628, -0.015100309, -0.01337196, -0.017815286, 0.019802537, -0.0037855732, -0.031991944, 0.035350677, 0.020166399, -0.004884159, 0.016247876, 0.010929881, -0.0033937208, -0.02274143, 0.011048836, -0.0021971718, -0.022517513, 0.02120201, -0.0070218537, -0.012427316, 0.049317412, 0.0064515686, -0.018780923, 0.044111375, 0.026534, 0.030928344, -0.018431054, -8.779504E-5, 0.014106683, -0.0049436367, -0.01427462, 0.023259234, 0.005426455, -0.0023511138, 0.009103569, -0.008977616, 0.009803305, 0.014106683, 0.0011589382, 0.013350968, -0.004579774, 0.005982745, 0.022321587, -0.02496659, 0.010034218, 0.005415959, -0.005216534, 0.037645813, -0.0029546365, 0.015058325, -0.017521396, 0.016303856, -0.015730072, -0.0015630359, 0.0070533417, -0.048673656, 0.0102301445, 0.0041214465, -0.020614231, -5.549783E-4, 0.017381448, 0.01554814, 0.028997071, -0.005643373, -0.005832302, 0.02401495, 0.0044853096, -0.016765682, -0.0076061334, 0.016219886, 0.04797392, -0.016387824, -0.025218496, 0.013455928, 0.001761586, -0.004194919, 0.010922884, 0.006664988, 0.0041214465, -0.006773447, -0.00878169, -0.004653246, -0.020768173, 0.009390461, 0.046714395, -0.055838954, -5.0375544E-5, -8.055714E-4, 0.04078063, -0.009600381, -0.0030211115, -5.090581E-4, -0.01085291, -0.0047582067, 0.025484394, -0.02241955, -0.022167645, -0.008823674, -0.017241502, -0.002751713, -0.018151158, -0.03417512, 0.008326862, -0.008739706, -0.008704719, -0.0067104707, 0.008123938, -0.0076691094, 0.010356097, 8.6461165E-4, 0.0029686312, 0.012462303, -2.847052E-4, -0.010034218, -0.0061751725, 0.011685596, 4.5701527E-4, 0.0036771141, 0.015436182, -0.013749817, 0.0102301445, 0.0104050785, 0.0034549478, -0.015506156, 0.014862399, -0.0037470877, -0.024126906, -0.007480181, -0.010943876, -0.020054441, -0.014610494, -0.016765682, -0.02499458, -0.0059022754, 0.0037645812, -0.017675338, -0.01260225, 0.014680467, 0.0046602436, 0.0144145675, 0.013280994, -0.01957862, -0.028633209, -0.025344448, -0.0056818584, -0.020628225, 0.0038940324, 0.020054441, 0.00535998, -0.015086314, 0.015702082, 0.01186053, -0.016009966, -0.0030176127, -0.009068582, -0.023902992, 0.0036491246, -0.019620605, -0.0053564813, 0.008333859, -0.015702082, 0.021104045, -0.012077448, 0.027205747, -0.0032030428, -2.9388923E-4, 0.0021919238, -0.020320341, -0.019886505, -0.004096956, 0.016373828, 0.012854155, 0.020348331, -0.0043768506, 0.008774693, 0.018403064, -0.0038415522, -0.020754177, 0.0027954464, -0.002337119, 0.010461058, 0.009243516, 0.0073962123, -0.0025505386, 0.003491684, 0.014092688, 0.04383148, 2.8557988E-4, 0.01782928, -0.00817292, 0.003978001, -0.011314736, 0.0018490531, -0.039940946, -0.0035896471, -0.012707211, 0.011538651, -0.006140186, -0.023651086, -0.014498536, 0.008802682, 0.015995972, -0.015058325, 0.013029089, -0.031851996, 4.6313796E-4, -0.004709225, 0.015702082, 0.024910612, 0.0066055106, -0.019018833, 0.009299495, 0.01186053, -0.028297335, 0.0065285396, -0.019914495, 0.009187537, 0.0041249455, 0.0034881853, 0.0077040964, 0.00801198, -0.0064725606, 0.022055687, -0.0031190745, 0.055139218, -0.01350491, 0.0023528633, -0.0019627602, 0.015939992, 0.002223412, 0.0062206555, -0.008739706, 0.012840161, 0.011083823, -0.0193687, 0.036918085, -0.025218496, 0.010943876, -0.013099063, 0.0042788875, 0.002377354, -0.011398704, 0.002382602, 0.01148967, 0.030788396, 0.033419404, 0.013546894, -0.02748564, 0.021719813, -0.0036211351, 0.014484541, 0.0011633115, -0.015450177, 0.01557613, -0.0067909406, -0.011615622, -0.022531508, -0.016891634, -0.009733331, 7.027976E-4, 0.024392806, -0.015114304, 0.0020064937, 0.024826644, 0.0102441395, 0.014680467, -0.004919146, -0.035770517, 0.021579867, 0.02324524, -0.011888519, -0.0064305766, -0.0102861235, -0.010929881, -0.01981653, -0.008837669, -0.003091085, 0.008900645, -0.0034759399, 0.007844044, -0.0016076441, -1.3218456E-4, 0.004796692, -0.012140424, 0.025568364, 0.024602728, -0.0052340273, -0.008886651, -0.0035424149, -0.015212267, 0.020922115, -0.012644234, -0.002618763, -0.015632108, 0.007949004, -0.0010688471, 0.01159463, -0.0060352255, -0.029556861, 0.007014856, -0.0102721285, -0.006556529, -0.012427316, -0.0012656479, 0.0071548033, -0.009215527, -0.012224393, -0.03168406, -0.034091152, -0.0010251136, 0.09415651, 0.031516124, 0.0102931205, 0.01109082, 0.008893648, -0.0057798214, -0.0143026095, -0.04327169, -9.875029E-4, -0.026673947, 0.0315721, -2.8426785E-4, -5.322369E-4, -0.005373975, 0.019592615, -0.006203162, 0.009999231, -0.0019015333, -0.0053319903, -0.012875147, -0.031292208, -0.021299973, 0.013176034, 0.03571454, 0.003680613, -0.021034073, 0.024714686, 0.0064200806, 0.0069238907, 0.0101811625, -0.0027797024, 0.014736446, 0.0141766565, 0.014974357, -0.014148667, -0.0072072838, 0.034986813, 0.015590124, 0.039661054, -0.01095787, 0.008634746, 0.005559405, -6.335893E-5, -0.021313967, 0.01652777, -0.02143992, -0.004093457, 0.022097671, 0.025890242, -0.030788396, 0.035014804, 0.011552646, -0.012805174, -0.0342311, 0.012014472, 0.003456697, 0.007655115, -0.0073962123, -0.026603973, 0.020278357, 3.568655E-4, -0.033475384, 0.017227506, -0.011958493, -0.0014729449, -0.016807666, -0.015939992, 0.0072982493, 8.803557E-4, 0.016247876, 0.01337196, -0.020614231, 6.564401E-4, 0.01398073, 0.015394198, 0.002342367, 0.026589978, -0.008998608, 0.018934865, 0.0027604597, -0.03515475, -0.01886489, 0.021649841, -0.02703781, -0.0018560505, 0.0072002863, -0.011867527, 0.014750441, -0.0040339795, 0.026366062, -6.498801E-4, -0.008284877, -0.03207591, -0.0056958534, 0.027947467, 0.012518282, 0.0144705465, 0.016835654, 0.005286508, -0.0037086022, 0.0075081703, -0.032803636, -0.015268246, -0.020628225, -0.016177902, -0.017605364, -0.014638483, 0.012357343, -0.013211021, -0.024616722, -0.01310606, -0.021299973, 0.015870018, -0.009936255, 0.0047372147, 0.002156937, 0.027471647, 0.011678599, -0.0025347946, 0.0060037374, 3.003946E-5, -0.021132035, 0.018878885, 0.024868628, 0.0034881853, 0.015716076, -0.0063501066, -0.0331675, -0.0064270776, 0.0214959, -0.017773302, 0.03221586, -0.009894271, -0.019970473, -0.017647348, -0.018724943, -0.0010880899, 0.0011641863, 1.60584E-5, 0.005898777, -0.018151158, 0.002751713, 0.0071128192, 0.02013841, -0.0028636707, -0.0262681, -3.535855E-4, -0.019662589, 0.010370092, 0.032999564, -0.01111881, 0.010552023, -0.0326357, 0.0030998318, -0.020796163, -0.036358297, -0.02146791, 0.00238785, 0.021663835, 0.02393098, 0.029668817, -0.0052235313, 0.029472891, -0.013462926, 0.011503665, 0.02544241, 0.0019190267, -0.012427316, -0.03014464, 0.0051640538, 0.021719813, 0.012140424, 0.016751686, 2.6546244E-4, 0.011867527, 0.01260225, -0.0064410726, -0.0035826496, 0.0077460804, -0.031768028, -0.028157387, 0.008445817, -0.033867236, -0.008193912, -0.027877493, -0.011363717, 0.033811256, -0.0102301445, -0.006993864, -0.008158925, 0.027639583, -0.005965252, 0.027093789, -0.0057728244, 0.008431822, -0.021369945, -0.018724943, -0.025274474, 0.0013889765, -0.010475052, -0.028367309, 0.015254251, 9.5076667E-4, -0.02526048, 0.009012603, 0.028829135, -0.012413322, -0.010090197, 0.012770187, -0.0061191935, 7.6752325E-4, -0.021034073, -0.022993334, -0.032299828, -8.5499027E-4, -0.012014472, 0.0036666181, 0.020026453, -0.017703328, -0.03988497, 0.020852141, -0.012917132, 0.04083661, 0.021243993, 0.04649048, 0.024406802, 0.004194919, -0.034566972, 0.0051325657, -0.02268545, 0.004982122, 0.03168406, 0.028857123, -0.0078020594, -0.002762209, -0.0038485494, 0.0041039535, -0.022573492, -0.020614231, 0.035518613, 0.025372438, 0.019480659, -0.009887273, 4.0934572E-4, -0.029332945, 0.011083823, -4.047537E-4, -0.001191301, 0.0053774733, -0.031068292, -0.012924129, 0.010845913, -0.012182409, 0.007249268, 0.0010303616, -0.015856024, 0.018948859, -0.03059247, 0.029304955, -0.020026453, -0.018976849, 0.037393905, -0.015128299, 0.021034073, -0.008445817, 0.01212643, -0.004632254, -0.007767073, -5.2917557E-4, 0.03112427, -0.011664604, 0.023315214, 0.009138556, -0.01363786, 0.02146791, 0.014764436, -0.0101391785, -0.012196403, -0.0051115733, 0.0036036419, 0.022377566, 0.020544257, -0.0046952306, -0.004369853, -0.027709557, -0.005548909, 0.009166545, -0.019466663, -1.7176339E-4, -0.028913103, -0.008179917, -0.008578767, 0.0025645334, -0.017689332, 0.0038135627, -0.0059442595, -0.0054754363, 0.011881522, 0.0027814517, 0.009852286, -0.01350491, -0.0027114782, -0.032943584, -0.011566641, -0.012371337, -0.013427939, 0.00535998, -0.01836108, -0.0061017005, -0.019298727, 0.009355474, -0.0057483334, 0.010628994, -0.0101951575, 0.0019260241, 0.02647802, -0.014764436, -0.014106683, -0.008102946, 0.028619213, -0.008333859, 0.010866905, 0.0053075, 0.0022776416, 0.021397935, -0.034287076, 0.014946367, 0.0015446679, -0.024644712, 0.0012866401, 0.008935632, 0.019466663, 0.008823674, -0.019760553, -0.021579867, -0.0064725606, -0.013798799, 0.01109082, -6.927389E-4, 0.014554515, 0.03431507, 0.009369468, 0.038317557, 0.025820268, -0.014946367, -0.02964083, -0.0028934095, 3.8704162E-5, -0.03319549, -5.8821583E-4, 0.012322356, 0.03143215, 0.0011082073, -0.0033709796, -0.031712048, 0.0012586507, -0.030564481, -0.028003445, -0.009740329, 0.028423287, 0.053767737, 0.0048806607, -0.0018105676, 0.007732086, 0.008753701, 0.019704573, -0.022083677, 0.0020677208, 0.024000954, 4.0628438E-4, 0.025904236, 0.008193912, -0.019942485, -0.0036141379, -0.002905655, 0.010545026, -0.006028228, 0.025358442, -0.0031330693, -0.020530263, -0.012448308, -0.007501173, 0.0030665942, -0.0144705465, 0.015058325, -0.034986813, 0.00350218, 0.013148044, 0.009453437, -0.00432437, 0.009124561, 0.029500881, -0.010859907, 0.0055419113, 0.009446439, -0.022811403, 0.01557613, -0.034007184, 0.028661197, -0.0071932888, -4.5395392E-4, 0.031516124, 0.027737547, -0.013749817, -0.0029721297, -0.0061436845, -0.002002995, -0.0102301445, 0.005877785, -0.0014956862, 0.029472891, -0.0023651086, 0.015016341, -0.017759306, 0.004159932, -0.011832541, 0.008963622, -9.936255E-4, 0.026897863, 0.013868773, -0.046042647, -0.008151928, -0.009691347, 0.009950249, -0.01363786, -0.007697099, -0.014624489, -0.015422188, -0.004268391, 0.0144705465, -0.022727434, -0.021873755, -0.003507428, -0.0072562653, -0.0014545767, 0.020306347, 0.1929033, -0.009040592, 0.0056748614, 0.042487986, -0.018025206, 4.0519104E-4, 0.019704573, 0.0071583022, -0.0053774733, 0.006836423, -0.017731316, 0.016807666, 0.01310606, 0.0018193143, 0.0052550193, -0.018137164, -0.027863499, -0.015590124, -0.0061891675, -0.012595253, -0.009957247, 0.007997986, 0.0070533417, -0.02804543, 0.018822907, 9.306492E-4, -0.009229521, 0.006136687, 0.011678599, 0.0014108432, -0.015086314, -0.03680613, -0.0011230768, 0.008130936, -0.004971626, -0.0058253044, -0.010510039, 0.020698199, -0.00827788, -0.0052095368, -0.013735823, 0.013301986, 0.011734577, -0.008865658, 0.0010697219, 0.006727964, -0.02223762, -0.010831918, -0.019858515, 0.0039465125, -0.05267615, -0.0038625442, 0.01610793, 0.02451876, -0.023259234, -0.0042124125, 0.02300733, 0.0127352, -0.013497912, 0.002233908, 0.004565779, 0.049205456, -0.022769418, 0.010684973, -0.0014082192, 0.03115226, -0.015436182, -0.02191574, 0.014820415, -0.03064845, -0.02120201, -0.02910903, -0.011608625, 0.011216773, -0.0183051, -0.011167791, 8.908517E-4, 0.006280133, -0.0012061704, 0.017129544, -0.03666618, -0.0214959, 0.00141959, -0.004040977, -0.01981653, -0.01703158, 0.011272752, -0.012427316, -0.004719721, -0.014043707, -0.0021236995, -0.019410685, -0.0124693, 0.010461058, -0.002485813, 0.0068644127, 0.026617968, 0.0068993997, -0.017689332, -0.0075291623, -0.036526233, 0.033755276, 0.019396689, -0.013364963, -0.01729748, -0.023329208, -0.016093934, 0.011741575, 0.013350968, -0.028661197, 0.0014379581, -0.02748564, 0.006434075, -0.010964868, -0.006325616, 0.026925853, -0.0013811045, -0.0018245623, 0.023259234, -0.026520004, -0.0053669773, -0.011881522, 0.019172775, -0.0016303855, -7.188697E-5, -0.033979192, -0.03459496, 0.013315981, 0.0016111428, -0.030284585, 0.017185522, -0.021118041, 0.017465418, -0.0074521913, -0.0016758684, -5.50605E-4, 0.037981685, 0.00573084, -0.006948381, 0.008613753, -0.0070113577, -0.011216773, 0.012168414, 0.019900499, 0.009516413, -0.028689187, 0.0040269825, 0.00727026, -0.016191898, -0.025876248, -0.01411368, -0.0036281326, 0.004257895, 0.009831294, 0.043075766, 0.0027884492, -0.018319096, -0.03221586, -0.018612985, 0.02120201, -0.034566972, 0.033307448, 0.0024175888, -0.009887273, -0.021803783, -0.008060962, -0.18204339, 0.008298872, 0.011867527, -0.028941093, 0.037897717, 0.004149436, 0.025694316, 0.0063186185, -0.019116795, -0.0037155997, 0.015268246, 0.0053354893, -0.03868142, -0.005338988, -0.012644234, 0.024714686, -0.012945121, 0.039465126, 0.022363571, -0.005317996, 0.03160009, -0.015002346, -0.008032972, 0.005503426, 0.0058253044, 0.0018735438, 0.022195635, 0.01960661, 0.021271983, -0.0013058828, -0.02594622, -0.021859761, 0.022643466, -0.0050765867, -0.011454683, -0.0042194095, -0.0050101117, -0.013336973, -0.015016341, -0.006521542, 0.02695384, 0.027527625, 0.013973733, -0.0017834528, 0.021090051, -0.0029179002, 0.01705957, -0.0066265026, -0.002741217, -0.013434936, -0.0067349616, -0.035042793, 0.0045377896, -0.009425447, -1.2507786E-4, 0.0067594526, -0.0014038458, 0.018934865, 0.012952118, 4.863167E-4, -0.028339319, -0.009586387, 0.0143725835, 0.0013260002, -0.004936639, -0.03467893, -0.0066230036, 0.009537405, -0.029165007, 0.013099063, -0.00992226, 0.0016907378, 0.014057701, -1.7132606E-4, 0.004677737, -0.01880891, -0.041508354, 0.009229521, 9.323986E-4, 0.012140424, -0.018724943, 0.03364332, -0.0056048874, 0.002501557, 0.0027884492, -0.009208529, 0.028605219, -0.014218641, 0.009999231, -0.008221901, 0.014442557, -0.029892733, -0.03521073, 0.006192666, -1.5897134E-4, 0.008627748, -0.0040374785, 0.009803305, 0.02854924, 0.0014073446, 0.004842175, -0.008753701, -0.018710949, 0.020278357, 0.024910612, 0.0049016527, -6.5654946E-5, 0.02470069, 0.005965252, 0.004338365, -0.019536637, -0.010971865, 0.0142676225, 0.02721974, -0.014722452, 0.0019067813, -0.005262017, -0.027583605, -0.011643612, 0.016443802, 0.047945928, -0.0035669056, -0.0103211105, -0.0015411691, 0.0028916602, -0.012224393, -0.09628371, 6.3282397E-4, 0.007214281, 0.029192997, -0.011377712, 0.031264216, -0.003722597, 0.011328731, -0.02295135, 0.034091152, -0.013861775, -0.03862544, 0.0058392994, -0.004411837, 0.012147422, -0.009880276, -0.010503042, -0.016429808, -0.009264508, 0.025064554, -0.0015595373, -0.006192666, -0.0014020966, -0.008788687, -0.009061585, 0.0055174204, -0.019270737, 0.027191753, 0.011510662, -6.048345E-4, 8.427449E-4, -0.01761936, 0.011034841, -0.03887735, -0.0070393467, -0.019466663, -0.018319096, -0.015562135, 0.0143236015, -0.03680613, 0.008109943, 0.014498536, 0.009873278, -0.007522165, -0.0038835364, -0.012280372, -0.02775154, 0.033923216, -0.0102091525, -0.023273228, -0.018640975, -0.02964083, -0.029192997, 0.0070113577, 0.009306492, 0.022867382, 0.027555615, -0.0026205124, -0.015688088, -0.009768318, -0.008396835, -0.0025715309, -0.01981653, 0.022811403, 0.008627748, 5.0555944E-4, -0.004838676, -0.009306492, 0.018165154, -0.016373828, -0.017997216, 0.020768173, -0.032271836, -0.0064515686, -0.01955063, 0.0024998079, -0.025036564, -0.0144005725, 0.032243848, -0.03781375, -0.007893025, -0.023063308, 0.006245146, -0.022783414, 0.0029336442, 0.02549839, 0.015744066, 0.013525902, 0.009880276, -0.027373683, 0.013036087, 0.018011212, 0.005272513, 0.00302461, 0.0016942364, 0.020600235, 0.0101391785, -0.007014856, -0.0011694343, -0.0016050201, -0.026575984, 0.01058701, -0.079601996, 0.03613438, -0.03675015, -0.0018910373, -0.002326623, -0.00803997, -0.010132181, 0.0051990408, -0.006902898, 0.029220987, -0.008319864, 0.012140424, 0.011762567, -0.0020187392, -0.017339464, 0.013567886, 0.011657607, -0.016653724, -7.05859E-4, 0.013819791, -0.032831628, 0.03521073, 0.02549839, -0.0025103039, 0.0056188824, 0.020250367, -0.0056048874, 0.008382841, -0.015338219, -0.018417059, 0.028479267, -0.0103071155, -0.018892879, -0.0065390356, -0.019284733, -0.02422487, -0.011818546, 0.014099686, 0.011384709, 0.017661344, -0.014666473, -0.017381448, 0.0020012457, -0.0010006229, -0.009887273, 0.016919624, -0.012413322, -0.0021954225, 0.006497051, 0.009810302, 0.02197172, 0.0039605075, -0.012609248, -0.014610494, 0.023063308, -0.006993864, 0.04741413, 0.01984452, -2.6743047E-4, 0.006105199, 0.020642221, 0.008137933, 0.014610494, -0.027681567, 0.001894536, 0.0047791987, 0.010873902, -0.0045482856, -0.0047267186, -0.025246484, -0.017101554, 0.0033674808, 0.016485786, 0.035098772, 0.009929257, 0.010433068, 0.0063536055, 0.01045406, 0.012007475, -0.003029858, 0.02603019, 0.004905151, -0.024154896, 0.008347854, 0.0030018687, 0.02398696, 3.7260956E-4, 0.013357965, -0.004030481, 0.004268391, 0.011181786, 0.0101741655, 0.025218496, 6.214533E-4, 0.015953988, 0.013350968, -0.001268272, -0.011062831, 0.0143305985, 0.02576429, 0.006203162, -0.013721828, -0.0038310562, -0.021034073, -0.022895372, 0.009173542, -0.021831771, -0.032831628, 0.0011423195, 0.0027289714, 0.014064699, 0.030284585, -0.004663742, 0.017955232, -0.03148813, 0.0040899585, -0.0033150006, -0.009124561, -0.008263885, 0.04581873, 0.028885113, 0.0035756524, 0.015016341, -0.0060912045, 0.056258798, 0.026799899, 0.02777953, -0.028003445, -0.00241409, 0.0051290668, 0.012329353, -0.007291252, -0.008816677, 0.005797315, -0.013651854, -0.006895901, 0.004971626, 0.031935964, -0.016695708, 0.063927904, 0.01684965, -0.0032590218, 0.01581404, -0.02146791, -0.011013849, 0.0029563857, 0.018892879, -0.022279603, -0.019228753, 0.004597267, -0.0056818584, 0.008928635, -0.03910126, 0.010782936, 0.0011440688, 0.0056923544, 0.027205747, -0.012875147, -0.022853388, -0.0018752932, -0.0058497954, 0.0262681, 0.004894655, -0.009845289, 0.0037925707, 0.012854155, -0.013777807, -0.015632108, -0.0191028, 0.009376466, -0.01732547, -0.015478167, -0.008704719, 0.032271836, -0.021985713, -0.0023598606, 0.0045377896, 0.02472868, 0.0050206077, -0.011384709, -0.0035809004, -0.018137164, -0.032383796, 0.0180392, 8.8472903E-4, -0.0031505625, -0.029780775, -0.027933473 ], + "id" : "d18f3e1a-d26a-41c1-95b9-ddb0397d3444", + "metadata" : { + "source" : "movies.csv" + } + }, + "61b71c88-7a59-472b-bc26-98b5007aa026" : { + "text" : "Paleoclimatologist Jack Hall tries to warn the world while also shepherding to safety his son trapped in New York after the city is overwhelmed by the start of the new big freeze.,38.677,The Mark Gordon Company-Centropolis Entertainment-20th Century Fox-Lionsgate,5/26/04,125000000,552639571,124,Released,Where will you be?,6.516,7554,Dennis Quaid-Jake Gyllenhaal-Emmy Rossum-Dash Mihok-Jay O. Sanders-Sela Ward-Austin Nichols-Arjay Smith-Tamlyn Tomita-Sasha Roiz-Ian Holm-Richard McMillan-Nassim Sharara-Carl Alacchi-Kenneth Welsh-Michel 'Gish' Abou-Samah-Kenneth Moskow-Glenn Plummer-Adrian Lester-Nestor Serrano-John Maclaren-Richard Zeman-Perry King-Mimi Kuzyk-Vitali Makarov-Russell Yuen-Chris Britton-Christian Tessier-Rick Hoffman-Alan Fawcett-Sheila McCarthy-Amy Sloan-Karen Glave-Joe Cobden-Caroline Keenan-Matt Adler-Nobuya Shimamoto-Robin Wilcock,government-saving the world-cataclysm-library-climate-climate change-greenhouse effect-tornado-twister-hurricane-hail-temperature drop-ice age-polar zone-meteorology-gulfstream-barrier ice-ice melting-third world-exodus-evacuation-natural disaster-disaster-snow-los angeles california-antarctica-scientist-cell phone-environmental-doomsday-disaster movie-helicopter crash,/kNKy8eJemg6sCAMBgh4xrD0lleX.jpg,/fXJhA3pjLMDkHPgZ2GVhRDXA5M3.jpg,74-602-14161-9738-95-8960-2048-2059-1593-608-254-9543-1979-1734-331-1858-330-7131-8373-652-6637\r\n72105,Ted,Comedy-Fantasy,en,John Bennett a man whose childhood wish of bringing his teddy bear to life came true now must decide between keeping the relationship with the bear or his girlfriend Lori.,63.412,Universal Pictures-MRC-Fuzzy Door Productions-Bluegrass Films-Smart Entertainment,6/29/12,50000000,549368315,107,Released,Ted is coming.,6.392,11089,Mark Wahlberg-Mila Kunis-Seth MacFarlane-Joel McHale-Giovanni Ribisi-Patrick Warburton-Matt Walsh-Jessica Barth-Aedin Mincks-Bill Smitrovich-Patrick Stewart-Norah Jones-Sam J. Jones-Tom Skerritt-Bretton Manley-Ralph Garman-Alex Borstein-John Viener-Laura Vandervoort-Robert Wu-Ginger Gonzaga-Jessica Stroup-Melissa Ordway-Max Harris-Zane Cowans-T.J.", + "embedding" : [ 0.011290292, -0.039095964, -0.016788589, -0.03671906, -0.009111464, 0.031118313, -0.007547352, -0.010655085, -0.009664709, -0.025012128, 0.034041632, 0.03210186, 0.01831855, 0.0024434978, 0.013312026, -0.0019380643, 0.019752888, -0.010559462, 0.009446142, -0.028222315, 0.0022676208, 0.0031692048, -0.0102794245, 0.0051158066, 0.004825524, -0.005955919, 0.022867452, -0.0068609184, 0.0018783002, -0.0012115036, 0.014903459, -0.015846023, -0.025572203, -0.025353638, -0.01008135, -0.020695454, 0.0029250258, -0.020312963, 0.024397412, -0.021433113, -0.0056178253, 0.013284706, 0.009671539, -0.010511651, -0.0039068647, 0.017020816, 0.01197331, -0.011290292, -0.007158031, 0.015859684, 0.020271983, 0.032402385, -0.005269486, -0.013414479, -0.02314066, -0.0071990127, -0.011297123, -0.0041595814, 0.008045956, -0.005532448, 0.0042449585, -0.036008723, -0.027785184, -0.0045147506, -0.013154931, -0.009295879, -0.014042855, -0.017580891, 7.043626E-4, 0.011208329, 0.0140701765, 0.020490548, 0.013236894, -9.895227E-4, 0.0081688985, -0.024643298, -0.01794972, 0.014821497, -0.0010586783, 0.026938241, 0.016733948, -0.014712214, -0.009316369, 0.011782065, 0.026665034, 0.015545496, -0.018864965, 0.01121516, -0.04294819, 0.010040369, 0.020244662, 0.033085406, 0.0075336914, 0.027252428, 0.002146385, 0.022198094, -0.0062598623, 0.015941646, -0.011003424, -0.039505776, -0.008858747, -0.014671233, 0.021911226, -0.010573123, -0.021159906, 0.006136919, 0.019151833, -0.0016554656, 0.017048135, -0.010299915, -0.0081688985, -0.0015504515, 0.0024178848, -0.054641463, -0.013325687, -0.02542194, 0.022006849, -0.0027081675, -0.01160448, -0.012936366, 0.03322201, 0.018496135, -0.0074244086, -0.033112727, 0.016146552, 0.01159765, -0.011208329, -0.017007155, 0.0069360505, -0.0068984847, 0.0021019888, -0.0026313278, 0.013407649, 0.0064545227, -0.027785184, 0.044614755, -0.028522843, -0.00374294, -0.011631801, -0.02021734, 0.027184127, 0.040462002, -0.015244967, -0.004565977, -0.018851304, 0.0023956865, 0.0020985736, 0.005908108, 0.02133749, -5.630632E-4, 0.021856584, 0.02169266, 0.008353313, 0.025462922, 0.0108599905, 0.003886374, -0.0069736163, 0.0033399593, -0.0028942898, -0.027908126, -0.0026159598, -0.016679306, 0.0049587125, -0.0041015246, -0.012301159, 0.022143451, 0.01348278, -0.02207515, 0.007813729, -0.0054197498, -0.013380328, 0.032402385, -0.027744202, 0.021132585, 0.008565049, 0.042456415, -0.01868738, -0.0042722793, -0.013974554, -0.024424734, 0.006133504, 0.002112234, 0.012669989, 0.044095658, -0.009138784, 0.010422858, 0.022293717, -0.032757554, 0.0070350883, -0.006574051, 0.009521275, 0.027033864, 0.0148761375, 0.013790139, -0.64739203, 0.0055939197, -0.011986971, -0.014534629, -0.0019448946, 0.017048135, 0.0023649507, 0.020832058, -0.03103635, 0.0068643335, -0.0082508605, 0.01271097, -4.123723E-4, -0.010033539, -0.020394925, -0.021569718, 0.0060447115, -0.0057373536, 0.009985727, 0.007950333, -0.028222315, 0.028741408, 0.021364812, -0.008571879, 0.026760656, -0.0031316387, 0.008633351, -0.028331598, 0.0021258944, 0.016529042, -0.012813423, 0.019916812, 0.021351151, -2.484479E-4, 0.042866226, -0.004743562, -0.010982933, 0.031992577, 0.036445856, 0.023468507, -0.031227594, -0.018564437, 0.0122260265, 0.0010305038, -0.005279731, 0.024957487, -9.652969E-5, 0.0121235745, -4.806741E-4, 0.007588333, -0.007998144, 0.013503271, -0.0040298076, 0.009022672, -0.0018253663, 0.009090973, 0.019739227, -0.020080738, 0.0034543648, -0.008148408, -0.022047829, 0.016774928, 0.01868738, 0.008865577, -0.023167979, 0.033850387, -0.005269486, 0.0024076393, 0.015504515, -0.03587212, 0.014042855, 0.011980141, -0.012130405, 0.0055085425, -0.0039751665, 0.012089423, 0.032648273, -0.0012200414, 0.0066013713, 0.019957794, 0.014548289, -0.019561643, 0.015791383, 0.016255835, 0.023331905, -0.013257384, -0.018209267, 0.01867372, 0.008578709, -0.010060859, 0.0023137245, 0.033823065, -0.018113645, -0.010040369, -0.0049621277, -0.008421615, -2.0426515E-4, 0.018496135, 0.022621565, -0.055570368, -0.0038624683, -0.010422858, 0.0142341005, 0.003773676, 0.0077522574, 0.012560706, 0.008886067, -3.319042E-4, 0.02166534, -0.0014147016, -0.009541765, -0.008325993, -0.03480661, -0.018427832, -0.0141111575, -0.025380958, 0.03210186, 0.025859071, 0.005979825, -0.007185352, 0.021146245, 0.018113645, -0.013011498, -0.022580585, 0.005679297, 0.015805043, 0.0021395548, -0.00503726, 0.0015769184, -0.0115020275, -0.007000937, 0.0017997532, 0.020422246, -0.008551389, 4.3542415E-4, 0.013011498, 0.01868738, 6.445985E-4, 0.015846023, 0.009651048, -0.028331598, -0.008305502, -0.011980141, -0.016132891, -0.0025049695, -0.018769342, -0.018919606, -0.0013045649, -0.019657265, -0.019384058, -0.0154362125, 0.0034321668, 0.008442106, 0.011877688, -0.0072263335, 0.0023632431, 0.00196197, -0.028959975, -0.002450328, -0.023687074, 0.016091911, 0.021446774, -0.004405468, -0.01605093, 0.0239193, 0.0046479395, -0.0033519121, 0.005867127, 0.005873957, -0.009452973, 0.012424102, -0.016009947, -0.01532693, 0.008517237, -0.011877688, 0.016406098, -0.0014471449, 0.012506064, -0.0065330695, -0.008469426, -0.0030206484, -0.0065535605, -0.009534935, -0.0022454225, 0.032265782, -0.0017314513, 0.017157419, 0.0027098749, -0.026350845, 0.015982628, -0.0023154318, -0.010511651, -0.013523762, -0.0030086956, 0.012068933, 0.015818704, 0.002913073, 0.01048433, 0.005839806, 0.008066446, 0.040571284, 0.0082372, 0.014698553, -0.021569718, 0.009548595, -0.018468814, 0.0039717513, -0.027498316, -3.6690888E-4, -0.011413235, 0.028686767, -0.01947968, -0.01753991, 0.0075063705, 0.009903765, 0.021774622, -0.014083836, 0.017266702, -0.017130097, -0.003777091, 0.011256141, 0.006280353, 0.025859071, -0.016242174, -0.036828347, 0.0064101266, 0.013475951, -0.018632738, 0.009295879, -0.015832363, 0.005610995, -0.0023154318, -0.013107121, 0.020886699, -0.0052524107, -0.021760961, 0.023058698, 0.0051089767, 0.017294023, -0.008565049, -0.005351448, 0.0082508605, 0.038385626, -0.014766855, -0.019957794, -0.0039580907, 0.017826777, 0.009015841, -0.020135378, 0.039369173, -0.004337166, 0.025298996, -0.005197769, -0.0019312341, 0.0057066176, -0.0069667865, 0.005542693, -0.0012277253, 0.03223846, 0.026733335, 0.010142821, -0.01082584, -0.0052763163, 0.009002181, 0.014725874, -0.019261114, -0.024520356, -0.010634595, 0.0017416966, -0.02166534, -0.013421309, -0.010887311, -0.0140701765, -0.0065364847, -0.016966173, -0.0020456398, 0.0063452395, 0.015873345, 0.014780515, -0.0031060255, 0.018878626, -0.04253838, 0.0154362125, 0.01868738, -0.0254356, -0.023960281, -0.013277875, -0.022881111, -0.03032601, -0.005832976, -0.018946927, 0.012936366, -0.018113645, 0.00784105, 0.015067383, -0.007513201, 0.023058698, -0.0156821, 0.001710107, -0.0028857521, -0.0052080145, 0.028358918, 0.0024759413, -0.017649192, 0.024656959, -0.0016708334, 0.015887005, 0.0070487484, -0.005884202, -0.0120825935, 0.012376291, -0.013940403, -0.024411073, 0.018045343, -0.022689866, -0.004866505, 0.013373498, -0.007950333, -0.013182253, -0.011372254, -0.006498919, -0.015163005, -0.04723754, -0.017089117, 0.09059554, 0.03262095, 0.012465083, 0.01534059, -0.001356645, -0.0019158663, -0.016228514, -0.019356737, 0.0066799186, -0.018933266, 0.017089117, -0.0035756007, 8.5633417E-4, -0.0031401764, 0.0062222965, -0.0021651678, -0.009104634, -0.01573674, -0.0037566004, -0.0069326353, -0.014712214, -0.007670295, 0.013284706, 0.042429093, 0.013353007, -0.019343078, 0.03483393, 0.0065638055, 0.009890105, 0.025913713, -0.017717494, 0.009931086, -9.118294E-4, 0.020135378, 0.010026708, -0.010689236, 0.021132585, -0.008114257, 0.04147287, 0.0011679613, 0.002612545, 0.014807836, 0.003814657, -0.024342772, 0.0075815027, -0.004893826, -0.011495197, 0.04226517, 0.047346827, -0.034697328, 0.040926453, -3.1824384E-4, -0.033440575, -0.006761881, 0.0038214873, 5.724547E-4, 0.013557913, -0.015026402, -0.025599524, 0.013592063, -0.001484711, -0.04180072, 0.004449864, -0.004180072, -0.0050782408, -0.011283462, -0.009999387, 0.010327236, -0.01643342, -0.0029250258, 0.019957794, -0.033030763, -0.014398025, 0.0032340914, 0.019643605, 9.391501E-4, 0.007861541, -0.01309346, 0.022949414, -0.0034099687, -0.023400206, -0.026569411, 0.012492404, -0.011092217, -0.0035551102, 0.0107370475, -0.013359837, -0.0025596109, -0.009493954, 0.019862171, 5.716009E-4, -0.017048135, -0.014493648, 0.003780506, 0.014739534, 0.004381562, 0.021979528, 0.02579077, 0.009056822, -0.006877994, -0.009487124, -0.015654778, -0.021214547, -0.01010867, -0.030708501, -0.012526555, -0.009534935, 0.011310782, -0.0164744, -0.02244398, -0.0076361443, -0.011269801, 0.01834587, -0.013168592, -0.0011636923, 7.116197E-4, 0.031692047, 0.013646705, -0.019356737, -0.004139091, -0.00897486, -0.020681793, 0.021528736, 0.027853485, -0.0039102794, 0.012751951, 0.0060754474, -0.029096577, -0.020668132, 0.01531327, -0.024247149, 0.010252104, -0.003780506, -0.0059490893, -0.020367606, -0.009528105, 0.017294023, 0.004005902, -0.028249636, 0.008715313, -0.013271045, -0.0028379408, -0.0045728073, 0.0044191284, 0.010668745, -0.022006849, -0.006509164, -0.017034475, 0.014083836, 0.014589271, -0.036172647, -0.0142341005, -0.014452667, 0.0012217489, 0.0045898827, -0.036445856, 0.0051772785, 0.0056178253, 0.020381264, 0.008687993, 0.041117698, -0.017116439, 0.035271063, 0.0034321668, 0.011037575, 0.020121718, -0.016242174, 0.0037668457, -0.043357998, 0.0058193156, -0.0043576565, 0.019862171, 0.015627459, 0.010163312, -0.011181009, 0.023536809, 0.016242174, -8.8706997E-4, 0.0036131667, -0.032757554, -0.022785489, 0.023167979, -0.019903153, -0.008401125, -0.012027952, -0.011577159, 0.051882066, 0.0018236588, -9.1609824E-4, -0.010047198, 0.03447876, -0.010962443, 0.013551082, -0.011918669, 0.0060344664, -0.013783309, -0.0031555444, -0.02506677, -0.012512894, 0.016269496, -0.0060720323, 0.0048425994, -0.016911533, -0.008687993, -0.008947539, 0.027552957, -0.010409199, -0.0072946353, 0.025613185, -0.0063042585, -3.3766715E-4, -0.019015228, -6.5398996E-4, -0.03666442, 0.03262095, -0.009371011, -0.0076361443, 0.0075951633, -0.018455153, -0.02882337, 0.02920586, -0.009924255, 0.03778457, 0.013250554, 0.06393051, 0.0239876, -0.004405468, -0.030735822, 0.017471608, -0.003893204, 0.005194354, 0.019370398, 0.023113338, -0.008865577, -0.010491161, -0.0038385626, 0.016583683, -0.009698859, -0.018222928, 0.035380345, 0.029615672, 0.012287498, -0.02133749, -0.014220441, -0.0122260265, 0.0026381582, 6.6252775E-4, -0.016392438, 0.015832363, -0.025995675, -3.0415657E-4, 0.004364487, -0.001127834, 0.017375985, 0.004910901, -0.033303972, 0.028113032, -0.038658835, 0.010115501, 0.0022283471, 0.007000937, 0.021474095, -0.015832363, -9.937916E-4, -0.0028874597, -0.010641425, -0.0022864037, -0.012786102, -0.020504208, 0.029724956, -0.0088314265, 0.024356432, -0.0025715637, 0.0056178253, 0.0062257117, 0.0072263335, -0.020681793, -0.0013148101, -0.018796662, -0.010190632, 0.027129486, 0.012062103, -0.02170632, -0.0051192218, -0.022362018, -0.007041918, -0.0014368996, -0.008093767, -0.0115430085, -0.031965256, 0.015367911, 0.012635838, -5.0415285E-4, -0.028878013, -0.002954054, -0.006314504, -0.014643911, 0.023263602, 9.340275E-4, 0.012724631, -0.009302709, -0.004634279, -0.04188268, -0.020955, -0.013318856, -0.00523875, 0.007888861, -0.009562256, -0.0070487484, -0.0025391204, -0.0027371957, 0.00970569, 0.009097803, -0.016638326, -6.5569754E-4, 0.018632738, -0.015149345, -0.01570942, 0.0010014755, 0.042046603, -0.001868055, -0.0031213935, 0.0082508605, 0.0076088235, 0.0396697, -0.010129161, 0.0067550507, -0.0012217489, -0.027033864, 8.704214E-4, 0.01494444, 0.034560725, 0.034970537, -0.0069053145, -0.029642994, -0.011037575, -0.006953126, 0.02771688, -0.006840428, 0.025080431, 0.016966173, 0.02920586, 0.009275388, 0.011775235, -0.009022672, -0.04491528, -0.009610067, -0.002732073, -0.029451748, -0.01460293, 0.018509796, 0.013749158, -0.0014599515, -0.03297612, -0.046445243, 3.9700437E-5, -0.045106526, -0.032784875, -0.005955919, -0.0019551397, 0.03737476, 0.013318856, -0.01346229, 0.013933573, -2.3179932E-4, 0.024192506, -0.019998774, -0.0010270887, 0.012676819, 0.0049313917, 0.027006542, 0.020627152, -0.0141521385, -0.008114257, 0.016310476, 0.012745121, -0.0075678425, 0.033467896, -0.0057032024, -0.010347727, -0.02361877, 0.005095316, -0.00674139, 0.020285642, 0.010586783, -0.035243742, 0.014712214, 0.021146245, 0.019547982, -0.011413235, -0.006058372, 0.012792932, -0.017526248, -0.0072399937, 0.001093683, -0.036036044, -0.004641109, -0.042756945, 0.015149345, 0.011474707, -0.0052489955, 0.027102165, 0.031172954, -0.01534059, 0.012150895, 0.0014334846, 0.0069053145, 0.003520959, -0.004671845, 0.0201627, 0.019124512, -0.012526555, 0.024397412, -0.024520356, -0.0068677487, -0.02129651, -0.01234214, -0.007779578, 0.0359814, 0.024861865, -0.048494298, -0.006628692, -0.004828939, -0.003852223, -0.0036609778, -0.0026962147, -0.029642994, -0.008339653, -0.004794788, 0.012267008, -0.017854098, -0.033085406, 6.480136E-4, 0.0059661646, -0.00933003, 0.017020816, 0.1862181, -0.0149581, 0.014042855, 0.03625461, 0.013209573, 0.01941138, 0.01007452, 0.011488367, -0.026842618, -0.0035790156, -0.0058090705, 0.011700103, 0.008080106, 0.004333751, -0.0056622215, -0.024588658, -0.019657265, -0.0088724075, -0.016228514, -0.037893854, 0.011891348, -7.4320927E-4, -0.0023239697, -0.02094134, 0.027061183, -0.0037053742, -0.0022607904, 0.001559843, 0.022894772, 0.007772748, -0.018619077, -0.010190632, 0.0026962147, -0.005511957, -0.007697616, -0.022512281, 4.0511522E-4, 0.011665952, 0.013988215, -0.012560706, 0.0036473176, -0.018031683, -0.00280379, -0.01159082, 0.017813116, 0.012594857, -0.017526248, -0.0073219556, -0.0239876, 0.01121516, -0.042374454, -0.0037292796, 0.012574366, 0.031446163, -0.023864659, -0.0076771253, 0.006683334, 8.8109355E-4, 0.0012541923, -0.0020610075, 0.0062325415, 0.029615672, -0.016597344, 0.019889493, -0.0140701765, 0.012465083, -0.025886392, 4.0084636E-4, 0.026309863, -0.01531327, 0.0036370722, -0.016611004, -0.031309556, -0.005494882, 0.008817766, -0.023700735, 0.0147531945, 0.015518175, 0.012444593, 0.013120781, -0.02696556, 0.021515075, 0.015996289, -0.026309863, -0.018400513, -0.045734905, 0.019124512, -0.012075763, -0.02014904, -0.021228207, -0.014124818, -0.0154771935, -0.006239372, 0.010368218, 0.0024930167, 0.0121235745, 0.011631801, -3.773676E-4, -0.013680856, -0.010716557, -0.025831752, 0.016037269, 0.031965256, -0.019001568, -0.021228207, -0.011631801, -0.007301465, 0.011058066, 0.03289416, -0.024069564, -0.0028294032, -0.022225413, 0.0032221386, -0.018578097, -0.010436519, 0.02058617, 0.01606459, -0.021077944, 0.04007951, -0.019534322, -0.0032494594, -0.00898852, 0.025763448, 0.018878626, 0.009746671, -0.03139152, -0.022662546, 0.016556364, 0.00935735, -0.019315757, 0.022676207, 0.0032392142, -6.8942155E-4, -0.0020763755, 0.0044430336, 0.0031828652, 0.037292797, -0.012792932, -0.013721837, 0.0171984, -0.004634279, -0.012403612, 0.0037873362, 0.0154362125, 0.01978021, -0.033549856, 0.010627764, 0.0015922863, -0.010361387, -0.00861286, -0.008080106, -0.019985115, -0.009104634, 0.0068267677, 0.022635225, -0.0012755366, -0.01942504, -0.03559891, -0.0077112764, 0.025927374, -0.026405485, 0.03100903, 0.012383121, -0.025900053, -0.021146245, 0.0074927104, -0.17572694, 0.0018629323, 0.0056929574, -0.02953371, -0.0049894485, 0.002202734, 0.0112015, 0.002863554, -0.014479987, -0.016706627, 0.018851304, 0.016720288, -0.029642994, 0.015545496, -0.013359837, 0.007670295, -0.0082918415, 0.03248435, 0.010982933, -0.01834587, 0.02238934, -0.015163005, -0.016365118, -0.020613492, 0.01681591, 0.021815604, 0.017266702, 0.005682712, 0.00933686, -0.025681486, -0.052783653, -0.0062325415, 0.021241868, -0.0068950695, -0.0038727135, -0.004695751, -0.01984851, -0.015490854, -0.013025158, 0.0042859395, 0.021774622, -0.007998144, 0.010887311, 0.0039000344, -0.0026313278, 0.017744815, 0.013557913, -0.0102384435, 0.002018319, -0.018168285, -0.005573429, -0.032839518, 0.001412994, 0.0061061834, 0.0045420714, 0.020818397, 0.0029557615, 0.002728658, 0.005170448, -0.006918975, -0.03068118, -0.004552317, 0.0044259583, -0.008701652, -0.010969274, -0.029014615, -0.005484637, 0.010996594, -0.024083223, 0.021077944, -0.007827389, -3.547426E-4, 0.014261422, -0.0024161772, -0.0016033854, -0.020353945, -0.0358448, -0.0012388243, -0.0032716575, 0.008920219, -0.018113645, 0.040953774, -0.028577484, -0.0024896015, 0.010122331, -0.030244049, -0.004627449, -0.0074175783, 0.0069087297, -0.009753501, -0.0013583526, -0.008701652, -0.029397106, 0.0019892908, 3.5580984E-4, 9.1609824E-4, -7.632729E-4, 0.0094734635, 0.019261114, -0.0072263335, -0.0064374474, -0.008339653, -0.012007461, 0.018113645, 0.01797704, 0.02469794, -0.004565977, 0.022006849, 0.015081043, -0.0038453927, -0.005272901, 0.0089133885, 0.01231482, 0.017649192, -0.013216403, 0.003235799, 0.0059183533, -0.020504208, 0.006587711, 0.025203373, 0.03699227, -0.0072331633, -0.009999387, -0.018086324, -0.009883274, -0.02017636, -0.09616897, 0.008285011, 0.005464146, 0.034642685, 0.0014573903, 0.03997023, -0.0016879089, 0.027689561, -0.018140966, 0.03180133, -0.01755357, -0.026514769, 0.026282543, -0.015900666, 0.021241868, 3.0116836E-4, -0.010299915, -0.016624665, -0.03483393, 0.02361877, 0.005597335, -0.020094397, -0.017430626, -0.01942504, -0.017799456, 0.0026552335, -0.028249636, 0.024534017, 0.012792932, 0.019397719, 0.009043162, -0.01979387, 0.0076839556, -0.040243436, -0.018796662, -0.018277569, -0.022840131, -0.039014004, 0.0049587125, -0.048166446, -0.0026945071, 0.02618692, 0.0054095048, -0.029998163, 0.012567536, -0.03333129, -0.029724956, 0.03177401, -7.2698755E-4, -0.025176054, -0.025312657, -0.022006849, -0.015203986, 0.006010561, 0.006498919, 0.033795744, 0.030954387, 0.013544252, -0.017526248, -0.021911226, 0.009746671, 0.0017434041, -0.039369173, 0.035680875, 0.013578403, 6.2069285E-4, 0.0019073285, 0.003814657, 0.015545496, -0.019520663, -0.027143145, 0.03931453, -0.017854098, -0.009029501, -0.011262971, 5.29766E-4, -0.03445144, -0.010989764, 0.027812503, -0.020982321, -0.008086937, -0.03251167, 0.009248068, -0.013127611, 0.011297123, 0.0078752, -0.0031111483, 1.7961246E-4, 0.007950333, -0.024055904, 0.015272289, 0.015367911, -0.009131954, 0.019534322, -0.016788589, 0.023741715, -0.009049992, 0.013947233, 0.0052524107, 0.023427527, -0.030380653, -0.0014932487, -0.0697225, 0.029779596, 0.00486992, -0.0041288454, -0.0036029213, -0.014548289, 0.0038385626, -0.0119938, 0.0011645461, 0.010258934, -0.019602625, 0.021678999, 0.0010108671, -0.0072331633, 0.0059764097, -3.724584E-4, -0.0024264224, 0.012396782, 0.013516932, -0.001409579, -0.013230064, 0.0022744508, 0.002168583, 0.011392744, 0.008708483, 0.0072741443, 0.009951577, 0.003251167, 0.0016674183, -0.0074244086, 0.021747302, -0.008763124, 0.004627449, 0.004040053, -0.017212061, -0.022375679, 9.750086E-4, -0.006881409, 0.029096577, 0.01870104, -0.0089338785, -0.023359224, 0.0023051866, -0.02580443, -0.008606031, 0.021036962, -0.020695454, -2.785434E-4, 0.03029869, -0.015422553, 0.048385013, 0.012963687, -0.0038009966, -0.013120781, -0.0016887627, -0.009657878, 0.039150607, 0.01984851, 0.006273523, -0.0077385968, 0.023304584, 0.023263602, 0.018222928, -0.020285642, 0.016788589, -0.020859377, -0.002597177, -0.008879238, -0.0014565365, -0.013475951, -0.008824596, -0.018878626, 0.034697328, 0.027170466, 0.021351151, 0.011208329, -0.0046206187, -1.3329528E-4, -0.008756294, 0.01569576, 0.023769036, 8.939002E-4, -0.043822452, 0.02244398, -0.0021019888, 0.018099984, 0.012861234, 0.0057749194, -0.0067379754, 0.012840743, -0.004753807, 0.0054095048, 0.012799762, -0.012260178, 0.012963687, 0.02652843, 0.0026022997, -0.015955307, 0.014712214, 0.02096866, 0.009131954, 2.4212464E-5, -0.015408892, -0.009241237, -0.029397106, 0.0010527018, -0.014807836, -0.034232877, 0.0101974625, 0.010702896, 0.014548289, 0.010696066, -0.005870542, 0.010518481, -0.04404102, 0.025326317, -0.009698859, -0.007185352, -0.018496135, 0.023222622, 0.0039819963, -0.0061608246, 0.034560725, -0.005867127, 0.042975508, -4.964689E-4, 0.023687074, -2.2838423E-4, 0.0019978285, 0.0017946305, 0.0154362125, 0.011235651, -0.0067379754, -0.017389646, -0.013988215, -8.1876817E-4, 0.0074107484, 0.015135685, -0.012731461, 0.06092523, 0.015600137, -0.0029813747, 0.0194387, -0.015818704, 0.018578097, 0.021678999, 0.018783003, 0.0011577159, -0.019739227, 0.0061949757, 0.009951577, 0.021501414, -0.038057778, 0.018195607, -0.015217647, 0.03559891, 0.0025169223, -0.011870857, -7.897399E-4, 0.0047742976, -0.004156166, 0.023605112, 0.019602625, -0.009493954, -0.0142341005, 0.023960281, -0.012062103, -0.014520968, -0.0058056554, -5.528179E-4, -0.035271063, -0.001127834, 0.004378147, 0.024069564, 0.01008818, -0.018851304, 9.124697E-5, 0.020285642, 0.0049518826, -0.023386545, 0.018045343, -0.021405792, -0.024206167, 0.0030718746, 4.5335336E-4, -0.001202966, -0.035817478, -0.03409627 ], + "id" : "61b71c88-7a59-472b-bc26-98b5007aa026", + "metadata" : { + "source" : "movies.csv" + } + }, + "9635fcba-e793-4448-9a25-16d7395c27eb" : { + "text" : "550988,Free Guy,Comedy-Adventure-Science Fiction,en,A bank teller called Guy realizes he is a background character in an open world video game called Free City that will soon go offline.,88.432,Berlanti Productions-21 Laps Entertainment-Maximum Effort-Lit Entertainment Group-20th Century Studios,8/11/21,110000000,331526598,115,Released,Life's too short to be a background character.,7.59,6912,Ryan Reynolds-Jodie Comer-Joe Keery-Lil Rel Howery-Utkarsh Ambudkar-Taika Waititi-Channing Tatum-Aaron W Reed-Britne Oldford-Camille Kostek-Mark Lainer-Mike Devine-Sophie Levy-Vernon Scott-Naheem Garcia-Anabel Graetz-Ric Plamenco-Kenneth Israel-Michael Malvesti-Colin Allen-Michael Tow-Hugh Jackman-Dwayne Johnson-Tina Fey-John Krasinski-Chris Evans-Alex Trebek-Lara Spencer-Matthew Cardarople-Jonathan De Azevedo-Destiny Claymore-Ninja-Pokimane-Lannan Eacott-Se��n McLoughlin-DanTDM-Charlotte Levy-Colette Levy-Mariama Conde-Olivia Z. Cote-Ryan Doyle-Bob Gilliam-Terri Schwartz-Eugene Nomura-Euri Nomura-Octavia Chavez-Richmond-Raj Jawa-Charlie Lehmer-Elainy Mata-Jack McLaglen-Jose Guns Alves-Minh-Anh Day-Ella Faria-Francisco Marquez-Owen Burke-Timothy John Smith-Justin Johnston-Patrick Vincent Curran-Lily Steven-Gabrielle Lorthe-Briana Mitchell-Rosario Corso-Regina Taufen-Liam Campos-Piper Acord-Brett Schneider-Omar Ghonim-Tait Fletcher-Emma Jonnz-Janelle Feigley-Brandon Scales,video game-artificial intelligence-gun-hero-virtual reality-code-gamer-breaking the fourth wall-bank robbery-bank teller-programmer-heroic,/xmbU4JTUm8rsdtn7Y3Fcm30GpeT.jpg,/7py8kUCYaOdFn1TfVS87BDBySOz.jpg,566525-436969-438631-451048-497698-512195-580489-524434-370172-696806-385128-568620-425909-631843-634649-335787-999115-940270-337404-688177-476669\r\n187017,22 Jump Street,Crime-Comedy-Action,en,After making their way through high school (twice) big changes are in store for officers Schmidt and Jenko when they go deep undercover at a local college. But when Jenko meets a kindred spirit on the football team and Schmidt infiltrates the bohemian art major scene they begin to question their partnership. Now they don't have to just crack the case - they have to figure out if they can have a mature relationship. If these two overgrown adolescents can grow from freshmen into real men college might be the best thing that ever happened to them.,29.272,Columbia Pictures-Original Film-MRC-LStar Capital-Metro-Goldwyn-Mayer-Stephen J. Cannell Productions-75 Year Plan Productions-Storyville Films-JHF Productions,6/5/14,50000000,331333876,112,Released,They're not 21 anymore,6.", + "embedding" : [ 0.02407506, -0.034435283, -0.010616198, -0.041898955, -0.020424057, 0.009403688, 8.4075774E-4, -0.017554449, -0.028291898, -0.03465084, 0.035432234, 0.015789574, 0.013809141, 0.0044694464, 0.01911724, 8.9338404E-4, 0.021879068, -0.031228866, -0.0027365675, -0.028803848, 0.011693985, 7.519246E-4, -0.037587807, 0.011390857, 0.009895428, 0.00996279, 0.02910024, -0.0147522045, 9.750601E-4, 0.002387971, 0.0020949477, -0.014967762, -0.021609621, -0.013202886, -0.009464313, -0.013223095, -4.2353646E-4, -0.0064936643, 0.0223506, -0.0075647146, 0.020235443, 0.011296551, -0.009935846, -0.02222935, -0.0028830792, -4.9089815E-4, 0.005173376, -0.008204651, -0.011545789, 0.025152845, 0.02010072, 0.028130231, -0.006840577, -0.01238781, 0.0027433038, -0.0024182838, -0.021057256, 0.019548355, -0.0047591017, -0.013169205, 0.0013455492, -0.030878587, -0.027133279, -0.005210425, -0.025610905, 0.009100561, -0.027618282, -0.017460143, -0.0073087406, 0.0113167595, 0.006998877, 0.015425821, 0.023361025, -0.00938348, 0.0144692855, -0.025597433, -0.025799517, 0.0066452282, 0.001174619, 0.022377545, 0.02535493, -0.008986046, -0.012610103, 0.010899117, 0.005361988, 0.009780914, 0.010670087, 0.03015108, -0.025381874, -0.016678749, 0.012091419, 0.021623094, 0.014657898, 0.032522213, 0.0037116276, 0.008763753, -0.025422292, 0.009652927, -0.005223897, -0.024169365, -0.0034354448, 0.0039810743, -0.015627906, -0.0073895743, -7.6371286E-4, 0.0073895743, 0.004812991, -0.010811547, 0.028884681, 0.0072615873, 0.008312429, -0.00307506, 0.008352846, -0.031848595, -0.0014516439, -0.0033293501, 0.01507554, -0.01409206, -0.01634194, -0.025072012, 0.029558297, 0.02540882, 0.007571451, -0.023765195, 0.037884198, 0.02315894, -0.005395669, -0.018982517, 0.0142133115, -0.005308099, 0.02038364, -0.028399678, 0.028291898, 0.021582676, -0.012428227, 0.036132798, -0.027995508, 0.026176743, -0.022862548, -0.021259341, 0.032091096, 0.04087506, -0.02899246, 0.0021757816, -0.024735203, -6.719326E-4, 0.012414754, -0.0075849234, 0.040740333, -0.00852125, 0.020868644, 0.027294947, 0.01031307, 0.006897834, 0.0059278263, 0.010845228, -0.0014406976, 0.011646831, 0.007618604, -0.008298957, 0.015452766, -0.0026978345, 0.006594707, -0.016570969, -0.002830874, 0.01790473, 0.0046041696, 0.0045637526, 0.015412348, 0.0013842821, -0.002025902, 0.04637177, -0.008339374, 0.015196791, 0.01547971, 0.032414433, 0.0021522052, -0.03303416, -0.023468804, -0.016274577, 0.023886446, 0.014388451, 0.032549154, 0.02535493, 2.4187047E-4, 0.024627425, 0.015978187, -0.0257591, -0.009450842, -0.012960384, -0.0034135524, 0.016207216, 0.0039069764, -0.0053720926, -0.63632524, -0.013735043, -0.0013809141, -0.009908901, 0.008103608, 0.023118524, 0.0013708099, 0.007975621, -0.027402725, -0.006763111, -0.029261908, 0.020936005, 0.022633519, -0.012832397, -0.03368083, 0.0052744183, 0.009120769, -0.019157657, -0.0024553325, 0.0053215716, -0.03818059, 0.013007537, -0.006035605, -0.0047692056, 0.0014693263, 0.014348035, -0.0077129104, -0.016126383, 0.00648356, -0.013148997, -0.009073616, 0.021151563, 0.009538411, -0.009794386, 0.03494723, 6.571972E-4, -0.0022128306, 0.032279707, 0.036240574, 0.006884362, -0.015803047, -0.012199197, 0.0015695267, 0.0023627104, -0.027968563, 0.026527023, 0.0033007215, -0.007086447, -0.012771771, -0.009174659, 0.010723976, -0.0041730553, 0.015291098, -0.017298475, 0.0050319163, 0.015196791, 0.009477786, -0.024708258, 0.02287602, -0.017567921, -0.0170425, 0.009282437, -0.0058065755, 0.016382357, -0.0094710495, 0.03823448, -0.016409302, -0.020087248, 0.029234963, -0.032845546, -0.0026591017, -0.010151403, -0.017635284, -0.0046210103, 0.007254851, 0.014644425, 0.011134883, 0.015789574, -0.0044391337, 0.034058057, 0.00664186, -0.0018591819, 0.011559262, 0.0068338406, 0.0073895743, -0.010697032, -0.022579629, 0.0034623896, 0.010811547, -0.0043145143, -0.0060625495, 0.006510505, 0.007167281, 0.007463672, -0.005628067, 0.006517241, -0.032387488, 0.009376744, 0.01692125, -0.05572157, -0.0117007205, -0.01772959, 0.01836279, 0.005173376, 0.010643143, 0.0069045704, -0.019063352, -0.017069446, 0.019076822, -0.019144185, -0.010461266, 0.0023391338, -0.018281955, -0.0012537689, -0.0089321565, -0.029666077, 0.016449718, 0.008110344, 0.0028595026, -0.0071066557, -0.0036779467, 0.010609462, -0.010825019, -0.0013480753, 0.020208498, 0.036456134, -0.0016966719, 0.011330232, -0.007463672, 0.0026927826, -0.0018894947, 0.020895587, 0.021178506, -0.011741138, -0.002025902, 0.0073424214, 0.005311467, -0.010306334, 0.019305853, -0.020760864, -0.032710824, -0.02096295, 0.007557979, -0.021434482, -0.01825501, -0.009477786, -0.019817801, 0.002716359, 0.0037082597, -0.0011114675, -4.1090616E-4, 0.018793903, 0.0071942257, 0.014455813, 0.0017564554, -0.011417802, -0.01952141, -0.018982517, 0.0047894143, -0.019009462, -0.0031340015, 0.009316118, 0.005058861, -0.014536647, 0.009619245, -0.0011948275, -0.004162951, 0.018079871, -0.004873616, -0.020424057, 0.017770007, -0.001987169, 0.0030161184, 0.0071336003, -0.015600962, 0.029962469, -0.0054091415, 0.02899246, 0.009080352, -0.017365837, -0.018874738, 0.005887409, -0.021744344, -0.02252574, 0.01785084, 0.021919485, 0.002103368, 0.005624699, -0.016180271, 0.011990376, -0.01207121, -3.1891538E-4, -0.022983799, -0.01674611, 0.0019147553, 0.03540529, 0.024883399, -0.0034236566, 0.0028645548, 0.0042740977, 0.045967598, 0.03766864, -0.0036139532, -0.007914996, 0.003846351, -0.031902485, 0.01203753, -0.02737578, -0.00941716, -0.0057627903, 0.02605549, -0.013202886, -0.01027939, 0.0018558138, 0.00550008, 0.02338797, -0.013155733, 0.016018603, -0.024506174, 0.0059716115, -0.010569045, -0.022714352, 0.022094626, -0.0010836808, -0.029154127, 0.01836279, 0.008083399, -0.005439454, -0.008325902, -0.026473133, -0.0056179627, 0.0073761023, -0.0011897754, 0.014065116, 0.009107297, -6.8203686E-4, 0.038773373, -0.002992542, 0.032899436, -6.7109056E-4, -0.012744827, 0.017285002, 0.037560865, -0.0055809137, -0.0043246187, -0.034327503, 0.023078106, 0.0032114673, -0.007490617, 0.03777642, -0.018942099, 0.049174014, -0.00186255, 0.0019635926, 0.011599679, -0.015722211, -3.363873E-4, 0.006918043, 0.027564393, 0.03206415, -0.0048331995, -0.026715636, 0.007975621, -0.0067765834, 0.008622293, 0.0195753, -0.0045132316, -0.017365837, -0.0014836406, -0.030447472, -0.0050723334, 0.003960866, -0.010622934, 0.0147252595, -0.006449879, 0.0020764233, -0.006146752, 0.011390857, 0.018403206, -0.0031777865, -0.006352205, -0.018874738, 0.018457096, 0.03287249, -0.008871531, -0.0111887725, -0.010353488, -0.01904988, -0.023778668, -0.009632718, -0.014267201, 0.027470086, -0.028723013, 0.014186366, -0.016624859, 5.0494935E-5, 0.01570874, -0.0067024855, 0.0034691256, 0.00869639, 0.0073963106, 0.020235443, -0.0051632714, -0.02616327, 0.022741297, -0.0016958299, -0.0074771447, 8.016038E-4, -0.0079082595, -0.008898476, -0.010791338, 0.019225018, -0.03858476, 0.0037924617, -0.011141619, -0.021717401, -0.029369686, -0.0010845228, -9.2538085E-4, -0.018793903, -0.029585242, -0.028830793, -0.035216678, -0.015035124, 0.07862453, 0.040740333, 0.004688372, -0.007820689, -0.0057998393, -0.0024906974, -0.0042235763, 6.07097E-4, 3.1786284E-4, -0.007867842, 0.018780433, 0.007975621, 0.012003848, 0.010171611, -0.006486928, 9.817963E-4, 0.00534178, -0.029612187, 0.0050858054, -0.02495076, -0.0075040893, 0.0039911787, 0.018942099, 0.03799198, -0.0093430625, -0.0063724136, 0.029827744, 0.01813376, -0.017985564, 0.01698861, -0.012616839, 0.0039642337, 6.306736E-4, 0.009848275, -0.0036105851, -6.424619E-4, 0.027119806, 0.0025715316, 0.03933921, 0.008076663, 0.007652285, 0.0045267036, 0.0071470723, -0.0040753805, 0.024061587, -0.025206735, -0.009114034, 0.021528788, 0.027160224, -0.039689492, 0.022431433, -0.002878027, -0.027645227, 0.007645549, 0.006598075, -0.013202886, -0.008224859, -0.016301522, -0.017864313, -0.015856935, 0.0021538893, -0.055182673, 0.03575557, -0.01100016, -0.009093825, -0.0127515625, 0.018780433, -0.0077937446, 7.5529265E-4, 0.015371932, -0.00906688, -0.03136359, -0.020424057, -0.007685966, 0.011714193, -0.0029470727, 0.01328372, 0.0019299117, -0.0010180031, -0.0023323975, -0.017473616, -0.033923335, 0.014967762, -0.02315894, 0.007409783, 0.010697032, 3.6712107E-4, 0.014428868, -0.014873455, 0.0077533275, -0.00453344, -0.011916278, -0.0037958298, -0.018457096, 0.02864218, -0.012360865, 0.012010585, 0.0056381715, 0.010764394, -0.0025698475, 0.007888051, -0.02755092, -0.007160545, -0.034219727, -0.036051963, -0.018497514, 0.01904988, 0.008474098, -0.030932477, -0.014361506, -0.02010072, -0.0027820368, 0.014051643, -0.0011224137, 0.019817801, -0.016948195, 0.03262999, 0.01732542, 0.0036240574, -0.012859342, 0.0011123095, -0.010252445, 0.011788291, 0.026230631, -0.012421491, -0.004823095, 0.008999518, -0.03095942, 0.0042707296, 0.016045548, 0.0132904565, 0.0032586204, -0.01547971, -0.012320449, -0.026324939, -0.039931994, 0.014482758, 0.0015745789, -0.007254851, -0.0043515633, -0.035971127, 0.024708258, 9.784282E-4, 0.0078072166, -0.0029858057, -0.031659983, 0.007167281, -0.008581876, 0.002382919, 0.035593905, -0.0111618275, 0.013074899, -0.018335845, -0.024910344, -0.018389734, -0.035728626, -0.021461425, -0.014267201, 0.032495268, 0.007665757, 0.031525258, -0.0024553325, 0.033950277, 0.003073376, 0.014280673, 0.0110338405, -0.015385404, -0.007571451, -0.027968563, 0.015196791, 0.0100099435, 0.021326702, 0.00323336, -0.022512268, -0.004277466, 0.021218924, 0.00672943, 0.016961668, -0.007894787, -0.012953648, -0.019130712, -0.0060659177, -0.020989895, -0.019763913, -0.019211546, -0.023374498, 0.023536166, 0.008177706, -0.0046344823, 0.005715637, 0.031498313, -2.3450279E-4, 0.01432109, -0.005836888, 0.0060894946, -0.027887728, -0.0048500397, -0.029181072, -0.005058861, 0.0085481955, 0.0024873295, 0.024061587, -0.010595989, -0.015331514, 0.00648356, 0.01871307, -0.00802951, -0.026675219, 0.025597433, -0.0049948674, -0.0072211702, -0.041090615, 0.012280031, -0.0176757, -0.015924297, -0.0028072973, -0.0065307133, 0.0039406572, -0.020936005, -0.033114992, 0.011411066, 0.008817642, 0.0176757, 0.017460143, 0.042195346, 0.018093342, 0.017231114, -0.02899246, 0.023199357, -0.0042471527, 0.0014541699, 0.024869926, -0.0011215718, -0.0028561344, -0.024007697, -0.018605292, 0.0061400156, -0.03818059, -0.036132798, 0.038153645, 0.032414433, 0.013580112, -0.033384442, 0.007557979, -0.035028066, 0.001945068, 0.0048399353, 0.0075040893, 0.006715958, -0.01739278, -0.010885645, 0.012542741, 0.020302806, -0.007288532, 0.017514033, -0.029019404, 0.02679647, -0.014563591, 0.01256295, -1.3356555E-4, 0.003937289, 0.02546271, -0.006924779, 0.02315894, 0.0029032878, 0.010602726, -0.011586206, -0.002231355, 0.0123676015, 0.028022451, -0.018039454, 0.027065916, 0.0049578184, -0.009114034, 0.012246351, 0.026944665, -0.015695268, -0.018025981, -0.03562085, -0.0075108255, 0.035674736, 0.007611868, -0.0033815554, -0.0082922205, -0.007618604, -0.020989895, -0.015964715, -0.0027786687, 0.010979951, -0.028103286, 0.027887728, -0.012690937, 0.014145949, -6.950882E-4, -0.0061736964, 0.016126383, 0.003272093, 0.032037206, -0.0052441056, -0.022283237, -0.03632141, 0.0021639934, -0.053242657, -0.0053518843, 0.001378388, -0.03136359, 0.01126287, -0.016355412, -2.269246E-4, -0.005021812, -0.018457096, -0.015587489, -0.008083399, 0.0067024855, -2.8649758E-4, 0.02697161, -0.01547971, -0.009026463, -3.9811795E-5, 0.025974657, 0.0069854045, -0.009585565, 0.016368885, 0.015371932, 0.014226783, -0.015021651, 0.028264955, 0.0010348435, -0.013438652, -0.018106814, 0.010858701, 0.021340175, 0.010481475, -0.002313873, -0.027753005, -0.014994706, -0.0014524859, 0.03920449, -0.017419726, -0.018928627, 0.024209782, 0.029585242, 0.025327986, 0.026958138, 0.0019736968, -0.021474898, -0.012657257, -0.0089321565, -0.019763913, 0.01215878, 0.0070797107, 0.012448436, -0.0023206093, -0.018241538, -0.023751723, -0.013660945, -0.01108773, -0.036887247, 0.0014145949, 0.03206415, 0.04815012, 0.015318043, -0.024236726, 0.003809302, 0.0037385724, 0.0012630312, -0.020262389, 0.007685966, 0.0144423405, 0.03298027, 0.02581299, 0.017123334, -0.014280673, -0.007665757, 0.017891258, 0.027968563, 0.0029504409, 0.021474898, -0.016193744, 0.013708099, -0.005153167, -0.009531676, -0.0195753, -0.012805453, 0.015466238, -0.046075378, 0.004930874, 0.0032889333, 0.02460048, 0.01108773, 0.004031596, -0.0015518443, -0.015897352, -0.0011552526, -0.012327185, -0.017648757, -0.0036914193, -0.02222935, 5.307362E-5, 0.004658059, -0.014940817, 0.020693503, 0.025732156, -0.010919326, -0.012253087, 4.4653414E-5, 0.0073491577, -0.011054049, -0.010481475, 0.012455172, 0.05130264, -0.02460048, 0.017945148, -0.0168, -0.00259174, -0.015803047, -0.011390857, 1.4893243E-4, 0.021757817, 0.010501684, -0.05938604, 0.00226672, 0.008945629, 0.013809141, -0.011606415, -0.010939534, -0.030420527, -0.017514033, -0.009268965, 0.011006895, 0.0017278267, -0.012994065, 0.007867842, 0.010306334, -0.01207121, 0.010555573, 0.174817, -0.0024452284, 0.031121088, 0.048904568, -9.161186E-4, 0.029773856, 0.015371932, 0.00534178, -0.01045453, 0.024587007, -0.011774818, 0.02177129, 0.015412348, 0.0019989575, -0.0016739373, -0.020302806, -0.01686736, -0.02553007, -0.0134184435, 7.2582194E-4, 0.004536808, 0.013728307, -0.008507778, -0.018012509, -0.0035398554, 0.009093825, -3.483861E-4, 0.0067395344, 0.039177544, 0.01588388, -0.008245068, -0.016570969, 0.0041528465, -0.006998877, -0.024357978, -0.005941299, -0.015587489, -7.409783E-4, 0.011653568, 0.0115727335, 0.016018603, 0.0026826782, -0.012441699, -0.013371291, -0.0037048915, 0.015142902, -0.024398394, -0.003886768, -0.022835605, 0.0019720127, -0.04488981, 0.018025981, 0.009969526, 0.026324939, -0.0013665997, -0.009181395, 0.012684201, -0.009538411, -0.0025984761, 0.003997915, 0.014145949, 0.029477464, -0.030124135, 0.01651708, -0.020828227, 0.02540882, -0.02899246, -0.0021151563, 0.026028547, -0.019952524, -0.020760864, -0.012960384, -0.005425982, 0.0015425821, -0.016611386, -0.01036696, 0.0019551723, 0.0067765834, 0.0068170005, 0.020397112, -0.015776101, -0.017594866, 0.008972574, -0.021636566, -0.02558396, -0.021111146, 0.021528788, -0.006470088, -0.017473616, -0.03378861, -0.009956053, -0.024587007, -0.02142101, 0.0036139532, -0.01698861, -0.009922373, 0.024842981, 0.02096295, -0.0060052923, -0.004701844, -0.02356311, 0.024007697, 0.023037689, -0.008184442, -0.018618764, -0.018632237, -0.008581876, 0.028723013, 0.033869445, -0.011828708, -0.020397112, -0.013445388, 0.011303287, -0.023131995, 0.010629671, 0.036698636, 0.010043624, -0.020208498, 0.033222772, -0.0366178, -0.015156374, -0.014172894, -0.015008179, -0.016193744, 1.2135625E-4, -0.033357497, -0.012866078, 0.006001924, 0.008885004, -0.01036696, 0.00825854, -0.015196791, 0.030258859, -0.005156535, -0.006230954, 0.01732542, 0.014307617, 0.01530457, -0.005311467, 0.0102389725, 0.0033478746, 1.0739054E-6, 7.3634717E-4, -0.0010390537, 0.026661746, -0.034327503, 0.015560544, 0.0057998393, -0.007948676, -0.015021651, 0.0019501202, -0.020612668, -2.625E-4, 0.017285002, 0.045320928, -0.010811547, -0.01686736, -0.039581712, -0.0113167595, 0.031633038, -0.03761475, 0.01883432, 0.015062068, -0.010609462, -0.025220206, -0.009706816, -0.1716914, 0.022539213, -0.0027264634, -0.016126383, 0.029234963, 0.017055973, 0.003853087, -0.001012951, 0.0075916597, -0.025085483, 0.010804811, 0.005308099, -0.031201923, -0.0014053327, -0.0014516439, 0.013849558, -0.015681796, 0.028723013, 0.01969655, 0.0022768243, 0.037749477, -5.843624E-4, -0.015843464, 0.017338892, 0.01135044, 0.009033199, 0.017540976, 0.0029083397, -0.018079871, -0.012596631, -0.03475862, -0.007962149, 0.013223095, 0.0142133115, -0.003960866, 0.015776101, -0.019507937, 0.0017109863, -6.4625096E-4, -0.001580473, 0.033465274, 0.023468804, 0.005190216, 0.011862389, 0.013822613, 0.007733119, 0.028103286, -0.00875028, 0.009733761, -0.013586847, 9.186447E-4, -0.046102323, 0.003977706, 0.006564394, 0.0033158779, 0.02730842, -0.011936487, -0.005813312, 0.005338412, -0.007126864, -0.02477562, -0.015964715, 0.008642501, -0.004765838, -0.023509221, -0.023253247, -0.022727825, -0.0048635122, -0.043192297, 0.004873616, -0.01778348, -0.0037048915, 0.019184602, 0.005156535, -0.0020983159, -0.00929591, -0.020828227, -3.9132917E-4, -0.0023307137, 0.021380592, -0.016773054, 0.0474765, -0.004557017, 0.010198556, 0.018066399, 0.0040619085, 0.01825501, -0.012185725, 0.008245068, -0.025516598, -0.0048769843, 0.008554932, -0.030258859, -0.0069786683, 0.005702165, 0.011505372, -0.008851322, -0.006032237, 0.0050016036, -0.005873937, -0.010360224, -0.017473616, -0.01952141, -0.0025243782, 0.033707775, 0.020451002, 0.004105693, 0.02414242, 0.02222935, -0.010959743, -0.003647634, 0.004327987, 0.012172253, 0.013088372, -0.005830152, 0.015008179, -0.027079388, -0.019130712, 0.0023189252, 0.0019905372, 0.04206062, -0.0042471527, 0.0033024056, -0.0029723335, -0.016692221, 0.0022953488, -0.0853607, -1.5893142E-4, 0.0028241377, 0.052137926, -0.0170425, 0.031848595, -0.016624859, 0.028264955, -0.010804811, 0.03287249, -0.0018558138, -0.031794704, 0.015196791, -0.012859342, 0.0038968723, 0.001663833, -0.009073616, 0.014253728, -0.02003336, 0.0113167595, -0.009518203, -0.01588388, -0.0029268642, -0.011182036, -0.038153645, 0.034192782, -0.03834226, 0.02136712, 0.0058941455, 0.029019404, 0.0011906174, -0.017082918, 0.027753005, -0.037695587, -0.010481475, -0.02280866, -0.005793103, -0.038611706, 0.017540976, -0.062296066, 0.0057661585, 0.021057256, 0.0063858856, -0.028938571, -0.011815236, -0.0041932636, -0.029234963, 0.033626944, -0.007840898, -0.033950277, -0.01871307, -0.02610938, -0.035270568, -0.030070247, 0.032549154, 0.03575557, 0.015358459, 0.013721571, -0.013957337, -0.017244587, -0.005964875, -0.006732798, -0.03365389, 0.014294145, 8.597032E-4, 0.005045389, -0.0059749796, -0.015547072, 0.036995027, 0.013250039, -0.022714352, 0.01952141, -0.03211804, -0.012771771, -0.025085483, 0.008278748, -0.021932958, -0.003684683, 0.026998555, -0.027914673, 0.003994547, -0.036806412, -0.01570874, -0.007733119, 0.0060591814, 0.01143801, 0.013330873, 0.027726062, -0.006810264, -0.03748003, -0.0074771447, 0.027753005, 0.0016326783, -0.004668163, -0.014348035, 0.015250681, 0.015668323, 0.011707457, -0.003960866, 0.009659663, -0.008474098, -0.007423255, -0.0661761, 0.01904988, -0.009444105, 0.01836279, -0.010818283, -0.006806896, 0.010649879, -0.0010070569, -0.011390857, 0.0048096227, -0.0036274255, 0.01911724, -0.01639583, 0.008635765, -0.0011005212, -0.006187169, 0.010171611, 1.3661788E-4, 0.0023778668, 0.004331355, -0.015466238, 3.435445E-4, 0.039743382, 0.0016242581, 0.007335685, 0.042599518, -0.009390216, 0.014105532, -0.003356295, -0.018726543, 0.014253728, -0.018928627, 0.0033226141, -0.0025429027, -0.0038935042, -0.021569205, -0.010319807, 0.0030683237, 0.01888821, -0.0052979947, -0.007032558, -0.023724778, -0.003728468, -0.01692125, -0.016597914, 0.015843464, -0.03995894, 0.012401282, 0.04087506, 0.011363912, 0.038153645, 0.007861106, -0.014523175, -0.038557816, 9.994787E-4, -0.026890775, 0.022983799, -0.0011038893, -0.004179791, -0.0111618275, 0.027618282, 0.009700079, 0.02103031, -0.032468323, 0.015762629, -0.013714835, 0.0031306334, 0.018335845, 0.010851964, -0.023131995, 0.0055977544, -0.027914673, 0.011498636, 0.022108098, 0.021501843, 0.011249398, -0.005941299, 0.001092101, -0.010043624, 0.024357978, 0.029154127, -0.015897352, -0.018093342, 0.004614274, 0.008285484, 0.040632557, -0.0131624695, 0.009504731, -0.015789574, 0.011080993, -0.021730872, 0.0079082595, 0.005466399, 0.0040753805, 0.02460048, 0.02268741, -0.0084, 0.009491258, -0.0025210103, 0.020006415, -0.014698315, -0.00646672, -0.023428386, -0.016719164, -0.011633359, 0.0058503603, -0.019251963, -0.016355412, 0.010845228, 0.030393582, 0.030231915, 0.013270248, -0.022579629, 0.005422614, -0.022215877, 0.025031595, -0.01611291, -0.020828227, -0.016907778, 0.033276662, 0.0071066557, 0.003920449, 0.032603044, -0.014401924, 0.056799356, 0.0063286284, 0.017891258, -0.011283078, -0.012441699, -0.009929109, 0.002830874, -8.3570566E-4, -0.012731355, 0.012899758, 0.00883785, 0.0071538086, 0.0065846024, 0.045267038, -0.03933921, 0.08255845, 0.009902164, -0.0056886924, 0.016692221, -0.0023391338, -0.0044020847, 2.719727E-4, 0.008453889, -0.00941716, 0.0032923012, -0.0015265837, -0.016449718, 0.012738091, -0.02437145, -0.016651804, -0.007200962, 0.018106814, 0.020302806, -0.010232237, -0.013499278, 0.0042, -0.011114675, 0.017190697, 0.008453889, -0.0105218915, 0.012697673, 0.016665276, -0.016422773, -0.014954289, -0.023953808, 0.0066519645, -0.023751723, -0.003997915, -0.005143063, 0.036995027, 0.0058469926, 0.0012402966, -0.006318524, 0.0055270246, 0.012266559, 0.016759582, 0.0028645548, -0.030716918, -0.016274577, 0.0100099435, -3.528067E-4, -0.02685036, -0.011882598, -0.01818765 ], + "id" : "9635fcba-e793-4448-9a25-16d7395c27eb", + "metadata" : { + "source" : "movies.csv" + } + }, + "ef523f14-1493-4cf0-ac5b-b51292722121" : { + "text" : "As the journey finally brings them face to face Caesar and the Colonel are pitted against each other in an epic battle that will determine the fate of both their species and the future of the planet.,47.623,20th Century Fox-TSG Entertainment-Chernin Entertainment,7/11/17,150000000,490719763,140,Released,For freedom. For family. For the planet.,7.166,8171,Andy Serkis-Woody Harrelson-Steve Zahn-Karin Konoval-Amiah Miller-Terry Notary-Ty Olsson-Michael Adamthwaite-Toby Kebbell-Gabriel Chavarria-Judy Greer-Sara Canning-Devyn Dalton-Aleks Paunovic-Alessandro Juliani-Max Lloyd-Jones-Timothy Webber-Lauro Chartrand-Shaun Omaid-Roger Cross-Mercedes de la Zerda-Doug Chapman-James Pizzinato-Chad Rook-Dean Redman-Steve Baran-Sandy Robson-Levi Meaden-Billy Wickman-Albert Nicholas-Kyle Horton-Paul Luongo-Thomas Potter-Mathew Yanagiya-Skye Notary-Willow Notary-Finn Notary-Phoenix Notary-Sadie Aperlo-Matilda Aperlo-Andrew Alexander Reeves,suicide-based on novel or book-slavery-sequel-anthropomorphism-revenge-ape-avalanche-virus-father son relationship-2040s,/mMA1qhBFgZX8O36qPPTC016kQl1.jpg,/ulMscezy9YX0bhknvJbZoUgQxO5.jpg,119450-61791-315635-49679-263115-339964-297762-335988-353491-339403-293167-374720-283995-166426-282035-869-343668-341013-126889-335984-141052\r\n808,Shrek,Animation-Comedy-Fantasy-Adventure-Family,en,It ain't easy bein' green -- especially if you're a likable (albeit smelly) ogre named Shrek. On a mission to retrieve a gorgeous princess from the clutches of a fire-breathing dragon Shrek teams up with an unlikely compatriot -- a wisecracking donkey.,207.13,DreamWorks Pictures-Pacific Data Images-DreamWorks Animation,5/18/01,60000000,487853320,90,Released,The greatest fairy tale never told.,7.716,14992,Mike Myers-Eddie Murphy-Cameron Diaz-John Lithgow-Vincent Cassel-Peter Dennis-Clive Pearse-Jim Cummings-Bobby Block-Chris Miller-Cody Cameron-Kathleen Freeman-Michael Galasso-Christopher Knights-Simon J. Smith-Conrad Vernon-Jacquie Barnbrook-Guillaume Aretos-John Bisom-Matthew Gonder-Calvin Remsberg-Jean-Paul Vignon-Val Bettin-Andrew Adamson-Jack Angel-Bob Bergen-Rodger Bumpass-Patty Cornell-Aleksandar Cvjetkovic-Charles Dennis-Paul Eiding-Bill Farmer-Susan Fitzer-Elisa Gabrielli-Gary A. Hecker-Richard Steven Horvitz-Phillip Ingram-Carole Jeghers-Mickie McGowan-Phil Proctor-Frank Welker-Patrick Pinney,magic-liberation-lordship-prince-castle-fairy tale-robin hood-enchantment-swamp-princess-parody-anthropomorphism-dragon-woman director-ogre-cartoon donkey,/jhTVNBVkdS4Wf6NXYA9kRKQU3YM.", + "embedding" : [ 0.027975695, -0.045149963, -0.035914745, -0.026747033, -0.006865657, 0.015851093, -0.012009837, -0.019793615, -0.03110811, -0.017970873, 0.038480084, 0.041207444, 0.015459542, -0.0053399554, 0.018416433, 0.012016587, 0.022682996, -0.021386825, 0.008418362, -0.013569293, -0.001492791, 0.009147459, -0.023182562, 0.0019341304, 0.007108689, 0.0150139835, 0.03988427, -0.018537948, 2.1771625E-4, -0.008067315, 0.0018126144, -0.018456938, -0.014770951, -0.019199537, -0.02748963, -0.013987848, 0.010119587, -0.022507474, 0.016215643, -0.003891889, 0.0037501203, 0.01613463, -0.0036927378, -0.012522904, -0.017444305, 0.0029923327, 0.011854566, -0.009599769, -1.7372998E-4, 0.027813675, 0.018051885, 0.0514958, -0.024816278, -0.0280027, -0.0073314686, -0.0057652616, -0.032134246, 0.0018345548, 0.0025839037, -0.009133956, 0.012387887, -5.5441697E-4, -0.012023338, -0.0057551353, -0.027381618, -0.0078107817, -0.008215835, -0.02202141, -0.008607387, 0.003380509, 0.026639018, 0.026558008, 0.0150139835, 0.013252, 0.01998264, -0.03429453, -0.030514032, -0.0015881473, -0.015500047, 0.0066800076, 0.006889285, -0.022791011, -0.011969331, 0.020036647, 0.020576717, 0.020630725, -0.014514417, 0.014095862, -0.03348442, 0.0018564953, -0.006150062, 0.024762271, 0.012441893, 0.018227408, -0.008803163, -4.9534667E-4, -0.00968753, 0.025707396, -0.022169929, -0.045879062, 0.0038345065, -0.0036016006, 0.011625036, -0.00810107, -0.018510945, 0.011854566, 0.0010379496, -0.01582409, 0.031783197, 0.0071356925, 0.010835181, -0.0057517597, 0.018645963, -0.03567171, -0.01309673, -0.034186516, 0.020711737, -0.015081492, -0.02088726, -0.0068082744, 0.026855048, 0.010025075, 0.008762658, -0.032512296, 0.030216992, 0.028974827, 0.0013543976, -0.006501109, -0.0010421689, -0.0018649339, 0.030216992, 0.0020185167, 0.027732663, 0.0042193076, -0.022129424, 0.038642105, -0.029271867, 0.007979554, -0.006727264, -0.015608062, 0.030406017, 0.025045808, -0.0189295, -0.02149484, -0.045095958, 0.003289372, 0.0062648277, -0.0050462917, 0.027071076, 0.006413347, 0.029406885, 0.010551644, 0.012880702, 0.014797955, 0.045447003, 0.010099334, -0.009343234, 0.010679911, 0.018605458, -0.021467837, -0.0027931815, -0.0028066833, -0.008607387, -0.0053500817, 0.008438615, 0.025086313, 0.024100684, -0.014068859, -0.011111968, -0.004681743, -0.024222199, 0.0401273, -0.002334121, 0.00983605, 0.002892757, 0.031459156, -0.0027307358, -0.009147459, -0.029244862, -0.014892467, -0.006177066, 0.01825441, 0.024019673, 0.022520974, 0.004445462, 0.009674028, 0.016998746, -0.023790143, -0.003702864, -0.0043273214, 0.005481724, 0.016971743, -0.0018970006, -0.021022277, -0.635988, -0.024330214, -4.2720488E-4, -0.017201273, -0.0033737582, 0.01824091, -0.0053939624, -8.939657E-6, -0.037453946, 0.0011020831, -0.012833445, 0.013657054, 0.0020117657, 0.0030345258, -0.023763139, -0.005748384, 0.006730639, -0.022777509, 0.03110811, 0.007979554, -0.027435625, 0.010308612, 0.022129424, -0.0019391937, 0.011915324, 0.0143658975, -0.0017130388, -0.019942135, 0.0015628315, 0.006187192, -0.0064977333, 0.012178609, 0.010936445, -0.009586266, 0.034267526, -0.00863439, -0.01393384, 0.040370334, 0.01695824, 0.023520106, -0.02862378, -0.014068859, 0.015608062, -0.006842029, -0.027570643, 0.003702864, 0.02027968, -0.007932298, -0.0050901724, -0.0102073485, -0.0046007326, 0.004064037, 0.008188832, -0.011415758, -0.0047357506, 0.0045838556, 0.031162117, -0.040019285, 0.016215643, 0.011773556, -0.0055391067, 0.03270132, -0.006457228, 0.010794676, -0.02824573, 0.043016683, -8.5356587E-4, -0.014865464, 0.0057956404, -0.012232616, 0.011982833, 0.010558395, -0.007858038, -0.0079187965, -0.0070681837, 0.018564953, 0.009923811, 0.0106259035, -0.0042193076, 0.02997396, 0.012144854, -0.0068386532, -0.005049667, 0.025450861, 0.018375928, 0.0068487795, -0.032809336, 0.011976082, 0.013137235, -0.006072427, 0.0034227022, 0.024883786, -0.011179477, 0.01355579, -0.0020421448, -0.010436879, -0.010943196, -0.014811456, 0.01636416, -0.06167615, 0.0039560227, -0.025342848, 0.009795544, 0.0044488376, 0.007479988, 0.0067947726, -0.016310155, 0.0107406685, 0.02808371, -0.012752434, -0.009059696, 0.011105217, -0.02816472, -0.002784743, 0.005734883, -0.023358086, 0.020833252, 0.020387692, -0.004806635, -0.006214196, 0.02050921, -0.006150062, 0.006187192, -0.023115054, 0.018456938, 0.034024496, -0.0038176293, -0.023655124, -0.0017256967, -0.0048707686, 0.0029130098, -0.0071829488, 0.011111968, -0.007155945, -0.0024168193, 0.012259619, 0.024627253, -0.0034935866, 0.010706915, -0.009417494, -0.017012248, 0.0012919519, -0.009849551, -0.025909923, -0.012968463, -0.011395506, -0.027165588, -0.0010792988, -0.021899892, -0.0066935094, -0.008060565, -0.0038176293, 0.0022953032, 0.0030649048, 0.0031037226, 0.022156427, -0.048039347, -0.017201273, 0.012259619, -0.02233195, 0.025707396, 0.010619152, -0.012671424, -0.019199537, 0.019820618, -6.7255757E-4, -0.013218246, 0.019969137, 0.0013138923, -0.015702574, 0.014568425, -0.01680972, -0.011631787, 0.045528013, -0.017282283, 0.011841064, -0.020158162, 0.015284019, -4.3965183E-4, -0.0038615102, 0.0046884944, 0.0072504575, -0.014946475, -0.028218728, 0.02505931, 0.0051509305, 0.01756582, -0.0035847235, -0.01787636, 0.016404668, -0.015797086, -0.005147555, -0.02027968, 0.0014970102, -0.013150738, 0.018497443, -0.0060521746, 0.01695824, 0.023223069, 0.019402063, 0.037345935, 0.015351528, -0.006261452, -0.018038383, 0.013879834, -0.039641235, 0.0010463882, -0.028434755, 0.0060521746, -0.00939049, 0.01915903, -5.269915E-4, -0.016323656, -0.005707879, 0.009403992, 0.019483075, -0.008546629, -0.0059407847, -0.013920339, -3.3227046E-4, -0.013353264, -0.010949946, 0.020090654, 0.005886778, -0.03324139, 0.022466969, 0.008499373, 0.0010936444, -0.008107821, -0.0023661875, -0.004705372, -3.7425256E-4, -0.0014691629, -0.0074462336, -0.0014944787, 6.371154E-4, 0.022615487, -0.009829299, 0.03278233, -0.008749155, -0.012327128, 0.01952358, 0.028974827, 0.001065797, -0.016796218, 0.011253737, 0.020198667, 0.0061331852, -0.00939049, 0.03110811, -0.01521651, 0.027651653, -0.0015392033, 0.011463014, 0.007317967, -0.0014421593, 0.0031661682, 0.013346513, 0.024316711, 0.020023145, 0.0065821195, -0.025396856, 0.014716944, 0.022615487, 0.0021889766, 0.0067407656, -0.014325392, -0.0060555497, -0.0045095957, -0.018686468, -0.0065146107, 0.0021906644, -0.0019391937, 0.015459542, -0.016796218, -0.007365223, -0.0046277363, 0.002978831, 0.014176873, 0.020117657, 2.9957082E-4, -0.025680393, 0.009701031, 0.020077152, -0.011679043, -0.009599769, -0.014068859, -7.7635254E-4, -0.032377277, 0.0020910888, -0.014581926, 0.028569775, -0.023196064, 0.014433406, 2.936638E-4, -0.0061736903, 0.0023796894, -0.020333687, 0.019550582, -6.004074E-4, -0.003039589, 0.02225094, 0.0061939433, -0.0032539298, 0.025909923, -0.03186421, -0.014217378, -0.0032674316, -6.253013E-4, -0.0029822064, -0.0013940592, 0.00840486, -0.039236184, 2.1877109E-4, -0.008890924, -0.005397338, -0.003149291, -0.0067812707, 0.029919952, -0.0013729626, -0.009782042, -0.028407753, -0.03005497, -0.011078213, 0.08036262, 0.02686855, 0.0068217763, 0.018132895, -0.02080625, 0.010659658, -0.016782718, -0.019402063, 0.0062411996, -0.00465474, -0.006183817, -0.016755713, 0.03596875, -0.009370238, 0.013974346, -0.0010404811, -0.0028370623, -0.013380268, -0.009356736, -0.0031779823, -0.020306682, -7.1390683E-4, 0.018105892, 0.031540167, 4.212715E-6, -0.03110811, 0.013758318, 0.020873757, -0.012300124, 0.0126106655, -0.0042496864, -0.0022277944, -0.0030716558, 0.009322981, -0.0033433791, -2.1191471E-4, 0.014487414, 0.023074549, 0.032917347, -0.0015113559, 0.002131594, 0.015999613, 0.0048100105, -0.019658597, 0.008843668, -0.026747033, -0.017619828, 0.029190857, 0.013089979, -0.03186421, 0.02179188, 0.01052464, -9.0124406E-4, 0.007675764, -1.9788551E-4, -0.00393577, 0.0030530908, -0.0026564759, -0.013515285, 0.01725528, 0.0043644514, -0.025477866, 0.01612113, -0.0053568324, -0.006328961, -0.008762658, -0.0013687433, -0.004445462, -0.015986111, 0.014433406, 0.01347478, -0.028029703, -0.006048799, -0.0047357506, 0.012630918, -0.009113704, 0.0028843186, -0.027759667, -0.002654788, 0.010693412, -0.017700838, -0.030216992, -0.0015257015, -0.013224997, -0.017511813, 0.020185167, -0.0073854756, 0.016337158, -0.0069534187, 0.023034044, 0.008296846, 0.006804899, -0.021251807, -0.0076487605, 0.034483556, -0.0055998648, 0.008904426, 0.0196856, 0.023290576, -0.0070951874, 0.0049889092, -0.015392033, -0.012880702, -0.02006365, 0.016391166, -0.01551355, -0.0044927183, 0.0011586217, -0.026504, -0.015176005, -0.0257344, -0.018146398, -0.0076217568, -0.0150139835, 0.0060150446, -0.0027206093, 0.016593693, 0.01521651, -0.0100520775, -3.8775435E-4, 2.0062807E-4, -1.4577707E-4, 0.018510945, 0.04323271, -0.016485678, 0.03459157, -0.007979554, -0.023722634, -0.006646253, 0.033430416, -0.006261452, 0.009451249, -0.011253737, -0.0063087083, -0.021440832, 0.002808371, 0.012428392, 0.0062344484, -0.023317581, 0.01899701, -0.01832192, 0.0030986592, 0.006177066, -0.0052521937, -0.0023678753, -0.026152955, 0.0053028255, 0.006713762, 0.025707396, 0.024546243, -0.00953901, 0.005745009, -0.014419905, 0.013062975, 0.007425981, -0.039155174, -0.023155559, -0.017052753, 0.0272601, 0.015027485, 0.04134246, 0.005937409, 0.04185553, -0.0045973575, 5.91125E-4, 0.019483075, -0.01689073, -0.018916, -0.047337253, -0.0014818207, 0.015257016, 0.013866331, 0.016472176, 0.014325392, 0.016445173, 0.025045808, -0.00503279, -4.5020008E-4, -0.012158356, -0.009890056, -0.021400327, 0.0056673735, -0.019105025, -0.00795255, -0.017538818, -0.026558008, 0.05103674, 0.014959976, -0.0060319216, -0.012502652, 0.024721766, 0.011625036, 0.01521651, -0.020077152, -2.784743E-4, -0.02050921, 9.079949E-4, -0.028299738, -0.0151355, -0.008843668, -0.008472369, 0.01089594, -0.006409972, -0.0025501493, -0.013771819, 0.02732761, -1.8069184E-4, -0.0069736713, 0.014109364, -0.007601504, 2.5569E-4, -0.03731893, 0.01574308, -0.044690903, -0.026909055, -0.0061331852, -0.0056673735, 0.005670749, -0.015932105, -0.043016683, 0.026247468, 0.007939049, 0.039695244, 0.01036937, 0.048390392, 0.012219114, 0.014878966, -0.026504, 0.023101551, -0.014811456, -0.005586363, 0.031621177, 0.025126819, 7.4892706E-4, -0.00999132, -0.016944738, -0.007979554, -0.042557623, -0.038426075, 0.026747033, 0.020603722, 0.028326742, -0.020333687, -0.0204417, -0.007628508, -0.0011079902, -0.0028860061, -0.0049011474, 0.009721284, -0.024991801, -0.024654256, -0.015149001, -0.002722297, 0.016607193, 0.0025737775, -0.035941746, 0.009120455, -0.011226733, 0.0056910017, -0.0128672, 0.009302729, 0.024573246, -0.023142057, -0.0027324234, -0.011159224, 0.021157295, -0.0058023916, -0.010355868, -0.0019341304, 0.027921688, -0.01636416, 0.024546243, 0.0049315263, 0.0059306584, 0.025194328, 0.008384608, -0.026031438, -0.007905294, -0.023466099, -0.0070074257, 0.023614619, 0.013204744, -0.011409007, -0.011645288, -0.00824959, 0.004610859, -0.002747613, 0.008506124, -0.0027459252, -0.033133376, 0.02634198, -0.0022547978, 0.015446041, -0.009795544, 0.0046749925, 0.02673353, -0.012455395, 0.016013116, -0.006366091, 0.011915324, -0.016445173, -0.007479988, -0.04436686, -0.012921207, -0.011382003, -0.010349117, 0.011517022, -0.027152088, -0.014959976, -0.005231941, -0.008438615, -0.0055053523, -0.0075069917, -0.024384221, 0.010099334, 0.032809336, -0.010018324, -0.009545761, -0.002357749, 0.024883786, 0.012921207, -0.006048799, 0.0011468077, 0.0029146976, 0.0401003, -0.02913685, 0.0041112932, 0.009923811, -0.020698234, 0.0018936251, 0.009910309, 0.02528884, 0.013825826, -0.021292312, -0.03534767, -0.01613463, -6.513556E-5, 0.03451056, -0.0129549615, -0.008344103, 0.025936926, 0.013960844, 0.028596777, 0.022588484, -0.0032269263, -0.025396856, 0.007405728, -0.017241778, -0.04047835, -0.0105111385, 0.009471501, -7.9660525E-4, -0.011746552, -0.01029511, -0.03324139, -0.004482592, -0.02225094, -0.021508342, -0.01559456, 0.011287491, 0.046932198, 0.016080623, -0.0066665057, 0.030162985, -3.236209E-4, 0.01636416, -0.015324525, 0.0049754074, 0.015648568, 0.009593017, 0.020860255, 0.013312759, -0.026085446, -0.013731314, 0.026233966, 0.01620214, 0.016107628, 0.024046676, -0.02913685, -6.658067E-4, -0.018861992, 0.0018834989, 0.011098466, 0.0055762366, 0.029946957, -0.025315844, -0.0073112156, 0.014203876, 0.029541902, -0.0028201852, -0.015189506, -0.0017273844, -0.022237437, 3.8079248E-4, -0.011631787, -0.03110811, -0.0058530234, -0.023871154, 0.028650785, 0.012374384, -0.0040235315, 0.011868068, 0.02080625, -0.017201273, -0.0018008003, 0.0014809769, 0.01551355, -0.013164239, -0.006565242, -0.011652039, 0.03353843, -0.01612113, 0.027516635, -0.024424726, -0.003679236, -0.012556659, 0.011672292, -0.009079949, 0.03337641, 0.02141383, -0.056977525, 0.0077230204, -0.014703442, 0.0036421062, -0.007304465, -0.0039222683, -0.042800654, -0.0019510078, -0.008499373, -0.008283344, -0.017295785, -0.020698234, -0.007108689, -0.012563409, -0.022615487, 0.010868936, 0.20231073, -0.018916, 0.020401195, 0.04428585, -0.006646253, 0.013481531, 0.0151355, 0.019118525, -0.01672871, 0.0120773455, -0.00976179, 0.031972222, 0.0033535054, 5.3078885E-4, 0.013785321, -0.014959976, -0.016296653, -0.014649435, -2.8163876E-4, -0.025477866, -0.0023712507, -8.5609744E-4, -0.015891599, -0.023331081, 0.0056876265, -0.013427524, -0.014352396, 0.0087559065, 0.024289709, 0.007891793, -0.02407368, -0.006025171, -0.0072774612, 0.0060758027, -0.012198862, -0.011672292, 0.006798148, 0.01521651, -0.006170315, 0.004300318, 0.011746552, -0.009127205, -0.017322788, 0.0045365994, 0.0013687433, 0.006062301, -0.014811456, 0.011530523, -0.014716944, 0.015351528, -0.041747514, 0.0050901724, 0.025680393, 0.03656283, -0.0054547205, -0.001559456, 0.007128942, -0.01613463, 4.4809043E-4, 0.01234063, 0.011901822, 0.029190857, -0.01929405, 0.013731314, 0.0019712604, 0.017012248, -0.04109943, 1.5484857E-4, 0.011179477, -0.011989584, -0.011908573, -0.026598513, -0.0159051, 0.0024066928, -0.013468029, -0.019658597, 0.011645288, -3.53367E-5, 0.00885717, 9.333108E-4, -0.017471308, -0.015230012, -0.014784453, -0.009282476, -0.023547111, -0.024627253, 0.030838074, -0.023317581, -0.02029318, 0.0018058636, -0.020644227, -0.021629857, -0.012428392, -0.0037534959, -0.013758318, 0.012293374, 0.0141363675, 0.0060555497, -0.011935577, -0.024870286, -0.028866813, 0.0066800076, 0.015945606, -0.0053028255, -0.030757062, -0.010619152, 0.013393769, 6.8985677E-4, 0.03383547, -0.0048775193, -0.013987848, -0.033430416, -0.0016624071, -0.023385089, 0.0064707296, 0.016161636, 0.024640756, -0.009971067, 0.05541132, -0.03240428, -0.0014843523, -0.020981772, 0.005593114, 0.001851432, -0.00923522, -0.034861606, -0.019739607, 0.02536985, 0.0032269263, -0.030973092, 0.009498505, -0.027449125, -7.447077E-5, 0.0107811745, -0.02021217, 5.590582E-4, 0.013508534, -0.0027999324, -0.0074462336, 0.006426849, -0.005549233, -0.0021653485, 0.010315362, -6.1011186E-4, 0.016715208, -0.013062975, 0.011820812, -0.0036724852, -0.0023594366, -0.024195196, -0.020644227, -3.3248143E-4, 0.0011003953, 0.0056268685, 0.040694375, -0.003912142, -0.024789274, -0.040397335, -0.015189506, 0.03791301, -0.031756196, 0.014109364, 0.010112836, -0.024762271, -0.02680104, -0.015432538, -0.17249879, 0.0124959005, 0.010538142, -0.01651268, 0.017214773, 0.030703057, 0.019577587, 0.011287491, 0.010875687, -0.037048895, 0.01536503, 0.012806442, -0.045203973, -0.0014446909, 0.013569293, 0.020468704, -0.030216992, 0.025936926, 0.022075417, 0.006879159, 0.037129905, -0.010011572, -0.013387019, -0.006561867, 0.021062782, 0.0018868742, 0.013744815, 0.005120551, -0.0166612, 0.002911322, -0.038048025, 0.005208313, 0.007169447, 0.0020235798, -0.016067123, -0.005670749, -0.021994404, -0.018065386, -0.016188638, 0.0035003375, 0.032431286, 0.014473912, 0.023479601, 0.002642974, 0.0037737484, 0.02111679, 0.023574114, -0.008317099, 0.025599381, -0.020563217, -0.0083373515, -0.025072811, 0.01748481, 0.014892467, 0.01567557, 0.027651653, 0.0054277168, -0.0019358182, 0.004701996, -0.0074462336, -0.03723792, -0.011577779, -0.0089854365, -0.013657054, -0.010227601, -0.014541421, -0.024181694, 0.012678174, -0.023601118, 0.016404668, -0.010436879, 0.018510945, 0.028731795, 0.009829299, 0.011300993, -0.02627447, -0.037372936, 0.0049922843, -0.0026564759, -0.0047661294, -0.01044363, 0.02233195, -0.014946475, 0.004479217, 0.012468897, -0.016634198, 0.0053264536, 0.00938374, -0.009032693, -0.003891889, 0.020320185, -0.015810588, -0.030703057, -0.009079949, 0.004026907, 0.011793808, 5.434468E-4, -0.007290963, 0.01914553, -0.0048235124, 0.0031104733, -0.0046648663, -0.020549715, 0.010045327, 0.030595042, 0.02778667, 0.0067576426, 0.013893335, 0.018578455, 0.005110425, -0.0073989774, 0.01385283, 0.014689941, 0.008809914, -0.021008775, 0.005964413, -0.004442087, -0.04207156, 0.012050342, 0.01605362, 0.051522806, 0.009228469, 0.002929887, -0.025990933, 0.0058563985, -0.019105025, -0.09926511, -0.009620021, -0.007317967, 0.041153435, -0.020684732, 0.026504, -0.01355579, 0.030000962, -0.023655124, 0.019564085, -0.0017552319, -0.01847044, 0.028434755, -0.0117330495, 0.021980904, -0.00215691, -0.01952358, -0.007378725, -0.0059846654, 0.0059441603, -0.014203876, -0.0028893817, 0.0039391452, -0.025032306, -0.018132895, 0.029541902, -0.03899315, 0.013596296, 0.01112547, -0.00204552, 0.024897289, -0.030298002, 0.019051017, -0.03929019, -0.023358086, -0.02027968, -0.015878098, -0.017282283, 0.010288359, -0.05103674, 0.0039864015, 0.0073854756, -0.010632655, -0.018227408, -0.006585495, -0.007831034, -0.01082168, 0.02021217, -0.015662069, -0.01945607, -0.021170797, -0.0099035585, -0.024276206, -0.002722297, 0.017835855, 0.022561481, 0.011982833, 0.005285948, 0.012671424, -0.014959976, 0.011679043, 0.00495853, -0.026220463, 0.014649435, 0.005123927, 0.009944064, -6.607435E-4, -0.006440351, 0.02308805, -0.030081974, -0.02103578, 0.03148616, -0.023439096, 0.004610859, -0.015054489, -0.002369563, -0.020873757, -0.010558395, 0.032350272, -0.028137717, 0.004934902, -0.031513162, 0.025396856, -0.030271, 0.025005303, 0.029352877, 0.007466486, 0.018510945, -0.0058327704, -0.038777124, -0.012907705, 0.018605458, 0.0022379206, -0.01975311, -0.0069095376, 0.026206963, 0.0037940012, 0.008060565, 0.011949078, 0.006177066, -0.017457806, 0.005859774, -0.07447584, 0.02233195, -0.0047593787, -0.00856013, -0.013049474, -0.01022085, 0.005019288, -0.006139936, -2.9271445E-5, 0.011111968, 0.0033771335, 0.010754171, -1.13393886E-4, 0.005937409, -0.012023338, 0.016188638, 0.0015020734, -0.02096827, -0.0052488185, 0.002479265, 2.8417035E-4, 0.013495033, 0.043178704, -5.632775E-4, -0.0024134438, 0.026747033, 0.010767672, 0.014190375, -0.011982833, -0.0166612, 0.029433887, -0.016215643, -0.0027138584, 0.016094126, -0.009073199, -0.017430803, -0.002052271, 0.011598032, 0.007351721, 0.027084578, -0.020900762, -0.017889863, 0.0038851383, -0.02142733, -9.290915E-4, 0.029055838, -0.012826694, 0.014325392, 0.02067123, 0.015189506, 0.013130484, 0.026760535, -7.5567793E-4, -0.011969331, 0.018807985, -0.022845019, 0.049767572, 0.025612883, -0.010990452, -0.011348249, 0.030135982, 0.01863246, 0.0272466, -0.018686468, 0.0035442181, 0.0052555692, 0.0015552366, -0.006541614, -0.0042868163, -0.03148616, -0.007047931, -0.004256437, 0.022466969, 0.009336484, 1.9896672E-5, 0.01983412, -0.012428392, 2.1602854E-4, 3.9112978E-4, 0.011854566, 0.023844149, -0.024424726, -0.03567171, 0.026814543, 0.005434468, 0.025504868, 0.0034868356, 0.019969137, -0.008803163, 0.015810588, -0.010632655, 0.006001543, 0.008587134, 0.008465618, 0.005495226, 0.030216992, -0.011017456, -0.0036758606, 0.009275725, 0.033646446, -0.0063188346, -0.0016716896, -0.019820618, -0.012482399, -0.028110713, 1.7394095E-4, -0.01975311, -0.019618092, 0.016593693, 0.03680586, 0.016566688, 0.0062479503, -0.01006558, 0.01022085, -0.03575272, 0.017997878, -0.009059696, -0.017903365, -0.014028353, 0.026287973, 0.01787636, 0.0016522808, 0.022534477, -0.013879834, 0.035239656, 0.0070344293, 0.026314976, -0.0097482875, -0.0015206384, 0.0018463689, -0.011557527, -0.005383836, -0.024168193, 0.0011915324, -0.018875493, 0.0027881183, 0.0068454044, 0.011240235, -0.023425594, 0.059461854, 0.030406017, -0.003405825, 0.011159224, -0.012239367, 0.019510077, 0.007466486, 0.023574114, -0.03118912, -0.0066361264, 0.0068082744, -0.009802295, 0.007547497, -0.026382485, 0.0032134245, 0.0013805573, 0.022142924, 0.01674221, -0.011348249, -0.01567557, 0.021076284, -0.018807985, 0.01582409, 0.020927764, -0.002442135, -0.022291444, 0.021278812, 0.0055424822, -0.004647989, -0.032917347, -8.7339664E-4, -0.01824091, 0.0039087664, 0.0048741437, 0.028596777, 0.017093258, 0.015203008, -0.0034868356, 0.02013116, 0.0045872307, -0.011078213, -0.007999807, -0.024438228, -0.021008775, 0.001066641, 0.0019982639, 0.0066327513, -0.023007039, -0.027125083 ], + "id" : "ef523f14-1493-4cf0-ac5b-b51292722121", + "metadata" : { + "source" : "movies.csv" + } + }, + "698537d1-244c-4aac-94fc-1b32a28a7620" : { + "text" : "6,63,Michael York-Malcolm McDowell-John Rhys-Davies-Billy West-Grey DeLisle-Phil LaMarr-Kath Soucie-Jeff Bergman-Greg Ellis-Jess Harnell-Richard McGonagle,london england-england-detective-cartoon-anthropomorphism-animal-sherlock holmes,/8TAd3Cky2D8dHzWIirna1IHa2N3.jpg,/8rrUYhHEq3KKWP0kZjl0OaBm3D2.jpg,24696-14787-403850-343977-42246-661728-42313-5917-104711-405204-184352\r\n2059,National Treasure,Adventure-Action-Thriller-Mystery,en,Modern treasure hunters led by archaeologist Ben Gates search for a chest of riches rumored to have been stashed away by George Washington Thomas Jefferson and Benjamin Franklin during the Revolutionary War. The chest's whereabouts may lie in secret clues embedded in the Constitution and the Declaration of Independence and Gates is in a race to find the gold before his enemies do.,34.916,Walt Disney Pictures-Jerry Bruckheimer Films-Saturn Films-Junction Entertainment,11/19/04,100000000,347512318,131,Released,The greatest adventure history has ever revealed.,6.608,5860,Nicolas Cage-Diane Kruger-Justin Bartha-Sean Bean-Jon Voight-Harvey Keitel-Christopher Plummer-David Dayan Fisher-Stewart Finlay-McLennan-Oleg Taktarov-Stephen A. Pope-Annie Parisse-Mark Pellegrino-Armando Riesco-Erik King-Don McManus-Ron Canada-Hunter Gomez-Deborah Yates-Arabella Field-Sharon Wilkins-Alexandra Balahoutis-Dior Raye-Yves Michel-Beneche-Jason Earles-Terrence Currier-Rod McLachlan-Elizabeth Greenberg-Jody Halse-Liam Noble-Joshua Bitton-Michael Russo-Fern D. Baguidy Jr.-Thomas Q. Morris-Antony Alda-John Travis-Heidi Albertsen-Adriana Alveario,new york city-philadelphia pennsylvania-riddle-washington dc usa-treasure-translation-expedition-secret society-constitution-wall street-historical figure-treasure hunt-historical fiction-church-archaeologist-based on myths legends or folklore-revolutionary war-father son conflict-father son relationship-decipher-archaeology-declaration of independence-secret history-hidden clues-arctic circle,/pxL6E4GBOPUG6CdkO9cUQN5VMwI.jpg,/xXWT0je8dTFFNBq6P2CeTZkPUu2.jpg,6637-1250-9679-1734-1593-27022-9738-1701-754-564-1735-13811-8960-591-217-1979-9802-435-74-9654-254\r\n77931,The Smurfs 2,Fantasy-Family-Comedy-Animation,en,The evil wizard Gargamel creates a couple of mischievous Smurf-like creatures called the Naughties that he hopes will let him harness the all-powerful magical Smurf-essence. But when he discovers that only a real Smurf can give him what he wants and only a secret spell that Smurfette knows can turn the Naughties into real Smurfs Gargamel kidnaps Smurfette and brings her to Paris where he has been winning the adoration of millions as the world�_s greatest sorcerer.", + "embedding" : [ 0.0060500014, -0.038795132, -0.0052015255, -0.044965863, -0.022885371, 0.036273178, -0.0057649403, -0.030290252, -0.025434151, -0.029109763, 0.024508541, 0.025568299, 0.018176833, -0.00572805, -0.010570734, 0.021906102, 0.017224394, -0.016352443, 0.007163416, -0.027500005, -0.003779574, 0.0015737046, -0.019250004, 0.006603355, 0.0033888728, 0.022871956, 0.03474391, -0.0018109761, -0.009215856, 0.0062445137, 0.009510978, -0.011617076, -0.0016952747, -0.016768297, -0.025326835, 0.010751831, 0.01265671, -0.031578057, 0.019156102, -0.006033233, -0.0027583847, 0.010248783, -0.011053661, -0.010423173, -0.005671038, 0.016271954, 2.0216277E-4, -0.012696954, 0.0029411593, 0.014380491, 0.017210979, 0.019142687, -0.016003663, -0.028921958, -0.010034149, -0.0045140255, -0.01643293, -0.011590246, 5.407776E-4, -0.005057318, 0.01700976, -0.021718297, -0.032409765, -0.008276831, -6.040779E-4, -0.010691466, -0.012495735, -0.023985371, 0.007176831, 0.003357013, 0.015721954, 0.01403171, -1.1234759E-4, 0.011570125, 0.037158545, -0.024696346, -0.020578053, -0.010953051, -0.008062197, -0.0061472575, 0.011348783, -0.0064088427, -0.0075054895, 0.0034810985, 0.015654882, 0.019343907, -0.00795488, 0.02629269, -0.02548781, 0.009598173, -6.948363E-5, 0.045019522, 0.0034240861, -0.0016994668, 8.061359E-4, 0.032678057, -0.02881464, 0.029136593, -0.006975611, -0.039117083, 0.004111586, -0.0097926855, -0.007706709, -0.01268354, -0.011778051, 0.0041987817, -0.014514637, -0.007371343, 0.020524396, 0.008216465, 0.009987198, -5.717989E-4, 0.020698786, -0.034824397, -0.0068817087, -0.036809765, 0.005181404, -0.016768297, -0.010885978, -0.021678053, 0.027258543, 0.016406102, 0.0060969526, -0.027580494, 0.035307325, 0.029082933, 0.0043027448, -0.019867077, -0.0072573186, -0.004520733, 0.017707322, -0.012945125, 0.017720737, 0.012844515, -0.024803665, 0.05623416, -0.018257322, 0.001978659, -0.0070695137, -0.018378053, 0.033187814, 0.022026835, -0.017573174, -0.030665861, -0.021597566, 0.012140247, 0.013750003, -0.0069823186, 0.003779574, 0.006449087, 0.016110979, 0.0022301835, 0.019236589, 0.019639028, 0.019652443, 0.018404882, -0.015668297, -0.012294515, -0.007726831, -0.0037426837, -0.004369818, 0.0026611288, 0.006663721, -0.029297568, -0.0064222575, 0.020282932, 0.02919025, -0.008068904, -0.0023509152, 0.0018579273, -0.015426833, 0.020497566, -0.01248232, 0.020685371, -0.0038667691, 0.026896348, 0.0059493915, -0.020350005, -0.037587814, -3.1964566E-5, -0.0015334607, 0.016298784, 0.02806342, 0.03251708, -0.0048393304, 0.016406102, 0.021007322, -0.014353662, 0.02051098, -0.007726831, -6.732471E-4, 0.019893907, 0.004111586, -0.007150002, -0.6494831, -0.026400005, -0.009853051, -0.013475003, 0.0055670743, 0.021852445, 0.0049734768, -0.023797566, -0.020765858, -0.006814636, -0.023650005, 0.019129273, 0.028680494, -0.01663415, -0.019974396, -0.0066201235, 0.01605732, -0.017908541, 0.036300007, -0.0020256103, -0.03401952, 0.023918299, 0.02273781, 2.1431979E-5, 0.0125091495, 0.0117176855, -0.010389636, -0.023556102, 0.008196344, 0.0032228667, -0.023381712, 0.010020734, 0.015654882, -0.007411587, 0.032651227, 0.0068750014, -0.010557319, 0.0502244, 0.035897568, 0.02884147, -0.01625854, -0.009926831, 0.02554147, -0.0027231714, -0.014045125, 0.017492687, 0.00504055, 0.012200613, 0.010309149, -0.0023207322, -0.008048782, -0.004534147, 0.0013171497, 9.3430855E-5, 0.0122811, 0.010577441, 0.023730494, -0.041182935, 0.014085369, -0.0013012198, -0.011985978, 0.020121956, 2.661967E-4, 0.020443907, -0.012348173, 0.032463424, 0.012227442, -0.011342076, 0.0034542691, -0.019853663, 0.018834151, 0.021530492, -0.012569515, -0.0025135677, 0.008196344, 0.010289026, 0.029351227, -0.004832623, -0.0031474093, 0.009450612, -4.060024E-4, -0.0046682935, -0.012690247, 0.012723783, 0.026078055, 0.0017103662, -0.031256106, 0.017760979, 0.009819514, 0.016607322, 0.014876832, 0.011744515, 0.013065857, 0.0029243908, -0.016365858, 0.0030350618, -0.014018296, 0.0020021347, 0.029860983, -0.057521965, -0.015654882, -0.011174393, 0.0122341495, -0.019491468, 0.017492687, -0.0029310982, -0.010946344, 8.5141027E-4, 0.029029274, -0.03509269, 0.006170733, 0.005107623, -0.012435368, -0.014045125, -0.024280494, -0.033214644, 0.023676835, 0.008377441, 0.004061281, 0.0010161587, 0.014165857, 0.011603661, 0.004074696, -0.01663415, -3.565359E-4, 0.031095129, -0.0017640248, -0.015587809, 0.0022368908, 0.012790857, -0.010543905, -0.006281404, 0.024776835, -0.014045125, 0.01135549, 0.00840427, 0.038204886, -0.0091554895, 0.0047152448, 0.004457013, -0.018337809, -0.010154881, -0.010262198, -0.013790247, -0.0058890255, -0.019384151, -0.025984153, -0.011241466, -0.023234151, -0.013669515, -0.021798786, 0.0076664654, 0.012287808, 0.005208233, 0.003799696, 0.002853964, -0.022724396, -0.010751831, 0.02198659, -0.014165857, 0.017130492, 0.01478293, -0.004510672, -0.029029274, 0.017465858, -0.006506099, -0.013978052, 0.01210671, 0.008444514, -0.01570854, 0.006449087, -0.009618294, 0.008162807, -1.9954273E-4, -0.019920737, 0.027178055, -0.007646343, 0.007585977, -0.0012416923, -0.006365245, 0.0032111288, 3.3641394E-4, -0.015507321, 0.002360976, 0.02528659, 0.014648784, 0.021718297, -0.010369514, -0.013253662, 0.0112884175, -0.0048158546, -0.012884759, -0.004658233, -0.008457929, 0.006093599, 0.010610978, 0.0013381101, 0.005600611, 0.018176833, 0.010590856, 0.03069269, 0.014662199, 0.016781712, -0.003719208, 0.017962199, -0.035173178, 0.011778051, -0.026225615, 0.0091554895, -0.0044335374, 0.011918905, -0.0030987812, 0.005479879, -0.0047689034, 0.01220732, 0.025259761, -0.01570854, 0.0015837656, -0.023918299, -0.00452744, 0.011275003, -0.0118719535, 0.022080492, 0.009631709, -0.014340247, 0.0106512215, 0.011060368, -0.015400004, -0.01285793, -0.013924394, 0.0016298784, -0.004074696, 0.0059359767, 0.0039003058, -0.003140702, -0.017197564, 0.015400004, -0.008538417, 0.037373178, -0.0119926855, -0.0113219535, 0.020135371, 0.022442687, 0.0012928357, -3.5234384E-4, -0.0039707324, 0.016848784, 0.0023458847, -0.0038131105, 0.045743912, -0.021597566, 0.014823174, -0.003937196, 0.017774394, 0.008162807, -0.01275732, 0.010181709, 0.019867077, 0.033590253, 0.018082932, 0.016580492, -0.033134155, 0.022228055, 0.01190549, 0.025823176, 3.6471046E-4, -0.010778661, -0.0028606714, 0.006566465, -0.04327562, -0.02354269, -0.013501832, 5.4496963E-4, -0.00531555, -0.0026829275, -0.022402445, -0.016218297, 0.009061587, 0.004359757, 0.037131716, -0.011469515, -0.02253659, 0.015171954, 0.027607324, -0.0118384175, -0.021919517, -0.0062847575, -0.013978052, -0.027459763, -0.009088417, 0.0024532017, 0.031604886, -0.0119926855, 0.0010002289, -0.020242687, -0.0058890255, 0.0152256135, -7.80145E-4, 0.018525613, 0.025702445, -0.015185369, 0.014045125, -3.676449E-4, -0.0055100624, 0.02308659, -0.022120737, -0.0065832334, -0.004755489, -0.0034509155, -0.0053490866, -0.010879271, 0.011617076, -0.03399269, 0.004782318, -0.022375615, 0.0030920738, -0.017613418, -0.009571344, 0.02259025, -0.011952442, -0.021678053, -0.040539034, -0.026051225, -0.004805794, 0.07598051, 0.040753666, 0.008390856, 0.0028371958, -1.5950842E-4, 0.008739636, -0.0073445137, -0.017921954, -0.0051143304, -0.015641468, 0.025796348, -0.009893295, 0.0343683, -6.187501E-4, 0.019021956, -0.011791466, -0.0043295743, 4.2674005E-6, -0.006968904, -0.008538417, -0.017653663, -0.012046345, 0.02719147, 0.03031708, -0.0054262206, -0.016996345, 0.01478293, 0.0010102899, -0.010161588, -0.003150763, -0.020390248, 0.007894514, 0.006227745, 0.010973173, -0.012019515, 1.3708082E-4, 0.02881464, 0.024750005, 0.0093969535, 0.0090012215, 0.0030635677, -0.0041685984, 0.0052250014, -0.012603052, 0.026426835, -0.016003663, -0.014729272, 0.021798786, 0.038124397, -0.041585375, 0.020618297, -0.0061070137, 0.004721952, -0.013830491, 0.032275617, -0.014863418, -0.0074048797, -0.0012567838, -0.013052442, 0.0069152457, -0.0018780492, -0.039492693, 0.013575613, -0.017680492, -0.005681099, -0.0035414642, -0.0118719535, 0.006261282, -0.020081712, 0.013548784, -0.0010840704, -0.024347566, -0.012012808, -0.0016265247, 0.012334759, 0.009604881, 0.027500005, -0.016446345, 0.0042692083, 0.013267077, -0.029002445, -0.026373176, 0.02218781, -0.016647564, -0.010839026, 0.0064926846, 0.008243294, 0.011892076, -0.017103663, 0.0043027448, 9.566313E-4, 0.008994514, -0.009739026, -0.003910367, 0.033536594, 0.008068904, 0.0063451235, 0.017318297, 0.014917077, -0.0071432944, 0.0010605948, -0.009075002, -0.010470124, -0.015359759, -0.008585367, 0.001087424, -0.0040176837, 0.008558539, -0.005117684, -0.026359763, -0.028921958, -0.021356102, 0.007049392, -0.0039170743, 0.0047487817, -0.018874394, 0.023207322, 0.011194515, -0.008692685, -0.005778355, 0.0063317087, -0.030451227, 0.010040856, 0.025232933, -0.016929273, 0.025957324, -0.0031675312, -0.03361708, 0.0152256135, 0.012998783, 0.0061204284, 0.010148173, -0.02316708, -0.0011234758, -0.0061170748, -0.004762196, 0.019826833, 0.0039640255, -0.016526833, 0.011000003, -0.015346345, 0.0051612817, -0.0034878056, -0.008384149, -0.005282013, -0.02846586, 0.01295854, -0.022442687, 0.0061975624, 0.034582935, -0.020457322, 0.0057615866, -0.017828053, -0.008753051, 0.0016902443, -0.04255123, -0.027795129, -0.004047867, 0.036917083, 0.009222563, 0.037560984, 0.008672563, 0.034448788, 0.0093969535, 0.020832932, 0.018968297, -0.017439028, 0.0030635677, -0.034529276, 0.0053256107, 0.016231712, 0.026708543, 0.005952745, 0.017841468, -0.005184757, 0.02334147, 0.023435371, 0.024924396, 0.0056140255, -0.029753665, -0.014300004, 0.008162807, -0.02328781, 0.002441464, -0.020645127, -0.018592687, 0.042765863, 0.009772563, -0.009665246, -0.0047521354, 0.03141708, -0.0035884154, 0.020900005, -0.0123884175, 0.0071097575, -0.014836589, 0.004074696, -0.017586589, -0.019800004, -0.0037829278, -0.0020105187, 0.018565858, 1.690454E-4, -0.008417685, 0.006251221, 0.014340247, -0.011409149, -0.030934153, 0.017130492, -0.02461586, -0.018981712, -0.030639032, -0.0056240866, -0.032302447, -0.005228355, 0.014367077, 1.3823365E-4, 7.9062517E-4, -0.03184635, -0.044241473, 0.014219515, -0.008431099, 0.048292693, 0.019867077, 0.052290257, 0.037158545, 0.0038432935, -0.030048788, 0.017398784, -2.892531E-4, -0.0032161593, 0.029297568, 0.010966466, -0.0047152448, 0.013495125, -0.0011838417, -0.0138841495, -0.02183903, -0.037856106, 0.019370737, 0.008632319, 0.013978052, -0.030075617, -0.0021010675, -0.023274396, 0.01245549, -9.826222E-4, -0.014273174, 0.0015410065, -0.019934151, -0.023757322, 0.004571038, -0.01625854, 0.015171954, 0.01403171, -0.01755976, 0.017170735, -0.020202443, -0.009846344, 0.0057448186, -0.0046381108, 0.043141473, -0.022375615, 0.015279272, 0.00113186, 1.3697603E-4, 0.01810976, 0.0073378067, 0.011368905, 0.027956104, -0.014192686, 0.016245125, 0.0021731711, 0.00614055, 0.014890247, 0.014756101, -0.021490248, -0.012334759, -0.019732932, -0.010215246, 0.027526835, -0.0067844526, 0.0018981711, 0.006210977, -0.019169517, -0.004809147, 0.006626831, 0.0041987817, 0.014460979, -0.038312204, 0.019102443, -0.016969517, 0.009685368, 0.0069152457, -0.015507321, -0.006781099, 6.22523E-4, 0.025300005, -0.0034542691, 0.0095176855, -0.018270737, -0.0075524407, -0.041263424, -0.02591708, -0.009329881, -0.007867685, 0.010389636, -0.023032932, 0.0056341477, -0.017251223, -0.0065329284, -0.0072707334, -0.0014303357, -0.020765858, 0.0019149395, 0.015829273, -0.0010404728, 8.944838E-5, -0.002560519, 0.042417083, 0.0066570137, -0.0043932935, -0.0041082324, -0.0040713423, 0.039063424, -0.018190248, 0.002037348, 0.015279272, -0.024468299, -0.016982932, 0.0049365866, 0.019545127, 0.009873173, -0.0017942077, -0.031202447, -0.017090248, -0.011590246, 0.033858545, -0.0088804895, -0.005127745, 0.018190248, 0.012636588, 0.029082933, 0.018404882, -0.019826833, -0.031604886, 0.012167076, -0.019276833, -0.026601225, -0.0048393304, -0.0016709608, 0.016231712, -0.005000306, -0.002894208, -0.033831716, -0.001151982, -0.022576835, -0.037319522, -0.008625612, 0.023582932, 0.04944635, 0.01718415, -0.0011922258, 0.0082969535, -0.0016608997, 0.0058219526, -0.015493906, -0.013045735, 0.0084512215, -0.0014655491, 0.01738537, 0.016687809, -0.019343907, 0.010027441, 0.0010480186, 0.0042960374, -0.0024096041, 0.038204886, -0.031229276, -0.024629274, -0.020671956, 1.6558693E-4, 0.0054865866, -0.015252442, 0.027902445, -0.013065857, -0.007076221, -0.0050740866, 0.011811588, -0.005060672, 0.0073445137, -0.0017455796, -0.02461586, 0.0077536604, -0.007539026, -0.015346345, -6.3468004E-4, -0.019196346, 0.03367074, 0.009417076, -0.011067076, 0.023381712, 0.019598786, -0.0014496192, 3.682737E-4, -0.009343294, 0.014823174, -0.0084512215, 0.0044033546, -0.0025923785, 0.019384151, -0.020645127, 0.012395125, -0.014970735, 0.0034509155, -0.009987198, 0.009464026, -0.015064637, 0.028600007, 0.023918299, -0.05070733, -0.003336891, -0.0050237817, -0.0070225624, -0.0034878056, -7.625383E-4, -0.040109765, -0.0030652445, 6.2042696E-4, 0.0013808692, -0.016030492, -0.035441473, 0.0017673784, -0.0076530506, -0.016956102, 8.0529746E-4, 0.18619516, -0.019773176, 0.01941098, 0.039734155, 0.0053021354, 0.011489637, 0.021530492, 0.023904884, 0.0019568603, 0.013394515, 0.0023710371, 0.017532932, -0.013360979, 0.0058018304, 0.007928051, -0.020148786, -0.026332933, -0.029619519, -0.021597566, -0.036139034, -0.009698783, -0.0053121964, -0.018069517, -0.016607322, -0.003886891, -0.0074451235, -0.003504574, -0.0019518298, 0.01645976, 0.00867927, -0.014568296, -0.015453662, -0.0024649396, 0.008625612, -0.020819517, -0.013615857, -0.004782318, -0.0031809458, 0.016660979, 0.018498784, 0.0029176837, -0.011342076, -0.007773782, 0.0031121958, -0.0012911588, 0.01158354, -0.025031714, -0.0029881105, -0.029512202, -4.531632E-4, -0.040163424, -0.0034878056, 0.017519517, 0.025796348, -6.828889E-4, -0.011194515, 0.006975611, 0.004919818, -0.008806709, -0.0010295734, 0.0025219517, 0.035521958, -0.026574396, 0.012328052, -0.007572563, 0.043195132, -0.05290733, -0.018069517, 0.0022754578, -0.038687814, -0.00360183, -0.014514637, -0.010168295, 0.0034576228, -0.009148782, -0.016553663, 0.009007929, 0.011965856, 0.0043362817, 0.008317075, -0.030263422, -0.017506102, 0.0035548788, -0.017063418, -0.0130926855, -0.027634153, 0.00702927, -0.015185369, -0.004212196, -0.014165857, -0.021315858, -0.021490248, -0.009638417, 8.426069E-4, -0.009712197, 0.017412199, 0.036326837, 0.02279147, -0.0117311, -0.0023207322, -0.024132932, 0.021691468, 0.021731712, -0.008800002, -0.02331464, -0.011697563, 0.002510214, -0.0015653205, 0.0136561, -0.017814638, -0.013360979, -0.034207325, -0.003575001, -0.007498782, -0.001265168, 0.030182933, 0.0149841495, -7.67988E-4, 0.028600007, -0.013589027, -6.5815565E-4, -0.01590976, 0.017479273, 0.007659758, -0.011985978, -0.030773178, -0.034207325, 0.019934151, -0.0015686741, -0.04697806, 0.014045125, -0.03069269, 0.014850004, 0.009142076, -0.008665856, 0.020779273, 0.018136589, 0.001265168, 0.007284148, -0.013515247, -0.0044335374, -0.014756101, 0.006556404, 0.0071701235, 0.0010941314, -0.030960983, -1.7135103E-4, 0.0029009152, -2.087653E-4, -0.030021958, -0.007746953, -0.010389636, 0.015748784, 0.0027600615, 0.044563424, -0.0033704275, -0.017063418, -0.030558543, -0.03364391, 0.038902447, -0.036112204, 0.012475613, 0.02548781, -0.012294515, -0.008343904, -0.007438416, -0.17213662, 0.016406102, 0.006080184, -0.0273122, 0.028251225, 0.024951225, 0.039063424, 0.010168295, 1.7952558E-4, -0.024280494, 0.0234622, 0.019263418, -0.04947318, -0.004309452, -0.0063551846, 0.014286589, -0.020417077, 0.030236593, 0.018136589, -0.011476222, 0.043731716, -0.0059896354, -0.010309149, 0.0011251527, 0.018834151, 0.005650916, 0.018069517, 0.014863418, -0.0094304895, -0.009879881, -0.0155341495, -0.010000612, 0.012167076, 0.0071701235, -0.003199391, 0.0013858997, -0.015936589, -0.024025615, -0.009497563, -0.009390246, 0.015721954, 0.02183903, 0.037319522, 8.195505E-4, -7.4157794E-4, 0.01303232, 0.02348903, -0.021932932, 0.011368905, -0.008082319, -0.0059862817, -0.026547568, 0.014259759, -0.009953661, -0.0117311, 0.011550003, 0.008732929, -0.0013783539, 0.015695125, 0.0023358236, -0.031309765, -0.016043907, 0.021651225, -0.008732929, -0.008182929, -0.031202447, -0.020054882, 0.017841468, -0.02418659, 0.0063317087, -0.021678053, 0.009222563, 0.017412199, 2.200839E-4, -0.0030233238, -0.0065094526, -0.04145123, -0.0040545743, -0.01163049, 0.00655305, -0.0031859763, 0.035656106, -0.019504882, 0.016339028, 0.030075617, -0.017117077, 0.0021329273, -0.019048784, -4.4462187E-5, -0.0026024396, -0.0012349851, -0.022751225, -0.017828053, 0.003139025, 0.010000612, 0.013448174, -0.0030467995, -0.0028439031, 0.014098784, -0.008538417, 0.0053222575, -0.0084512215, -0.02381098, 0.019759761, 0.03367074, 0.011590246, 0.012321345, 0.031229276, 0.017921954, 0.0092762215, -0.00720366, -0.00205747, 0.017841468, 0.023006102, -0.032007325, 0.014447564, -9.4070146E-4, -0.025581714, 0.014179272, 0.016942687, 0.033456106, -0.010698173, -0.0054094526, -0.011026831, -0.009215856, 0.0021832322, -0.08209758, 0.006006404, -0.001255107, 0.041934155, -0.022228055, 0.038929276, -0.008826831, 0.012851222, -0.020175613, 0.035951227, 0.013246954, -0.019920737, 0.024307322, -0.0068682944, 3.4773254E-4, -5.617379E-4, -0.0031490861, -0.0034173788, -0.011053661, 0.018337809, -0.01978659, 0.0041987817, -6.854041E-4, -0.02638659, -0.016030492, 0.013964637, -0.03139025, 0.025018299, 0.019115858, 0.017573174, 0.019612199, -0.02661464, -0.0015862809, -0.04695123, -0.014447564, -0.012093295, 0.0043027448, -0.030639032, 0.013448174, -0.03659513, 0.0053088428, 0.002991464, 0.012227442, -0.020309761, 0.0010756862, -0.004675001, -0.042792693, 0.020363418, -0.016580492, -0.022134151, -0.011073783, -0.012804272, -0.028680494, -0.0061942087, 0.018726833, 0.031658545, 0.010262198, 0.0133341495, -0.007284148, -0.022630492, 0.0044234768, -0.009987198, -0.0146756135, 0.017425613, 0.009403661, 0.019343907, -0.005520123, -0.018002443, 0.008075612, -0.013542077, -0.017023174, 0.037587814, -0.04067318, -0.01238171, -0.025621956, 0.018029273, -0.032839034, -0.013468295, 0.036756106, -0.046387814, 0.01295854, -0.0321683, -0.0019283541, -0.005422867, 0.021530492, 0.019518297, 0.027660983, 0.013475003, -0.001968598, -0.030639032, 0.013542077, 0.035790253, -0.003642074, -0.009014636, 0.004182013, 0.04330245, 0.006227745, 0.0075189043, 0.0046213423, -0.009450612, -0.008350612, -0.014139027, -0.08032685, 0.024924396, -0.007860977, 0.003652135, 0.0028807933, -0.014165857, -2.1107093E-4, -0.010899393, 0.007961587, 0.014648784, -0.0076932944, 0.020323176, -0.011134149, 0.0033939031, 0.0045442083, -0.0026460371, 0.0023324701, 0.007089636, 6.0030504E-4, 0.0052216477, 0.0012802595, 0.027473178, 0.0071231723, 0.009095124, -0.006811282, 0.021892687, -0.015896345, 0.024521956, -0.01183171, -0.016674394, 0.019800004, -0.020403663, -0.007250611, 0.0052753063, -0.008075612, -0.02641342, -0.006781099, -0.013897564, 0.01608415, 0.0155341495, -0.009960368, -0.021369517, -0.010926222, -0.010175003, -0.006449087, 0.010751831, -0.022067077, 0.02088659, 0.016110979, 0.0042088423, 0.025098786, 0.006153965, -0.0046045743, -0.025729274, 0.0025521347, -0.016446345, 0.04510001, 0.009336587, 0.011187808, -0.020417077, 0.014273174, -0.0022754578, 0.029512202, -0.031578057, 8.032014E-4, -0.007814026, 0.010121344, -0.008350612, 0.0055167694, -0.019692687, -0.0044033546, -0.009631709, 0.01978659, 0.039626837, 0.010926222, 0.011295125, -0.0073579284, 0.009148782, -5.261053E-4, 0.026051225, 0.008833539, -0.011898783, -0.034904886, 0.017492687, 0.012448783, 0.016178053, -0.0069420747, 0.011550003, 8.518295E-4, 0.010577441, -0.006200916, 0.0040814034, 0.017465858, -0.009296344, 0.00795488, 0.016218297, 0.0016952747, -0.015145126, -0.0023157017, 0.022228055, -0.0033670738, -0.009068294, -0.018767077, -0.018418297, -0.015319516, 0.0039170743, -0.019048784, -0.004044513, 0.003662196, 0.013327442, 0.008525002, 0.015762199, -0.010812198, 0.006428965, -0.04652196, 0.011254881, -0.004842684, -0.01793537, -0.010597563, 0.032731716, 0.0051713428, 0.0015963418, 0.03173903, -0.01460854, 0.05360489, 0.0037862814, 0.014769516, -0.03587074, 0.005208233, -0.018136589, -0.00675427, 0.0077804895, -0.024897566, 0.004098172, -0.021382932, 0.0040310984, 0.0061338427, 0.029378055, -0.02314025, 0.06852197, 0.011328661, 0.00720366, 0.021973176, -0.019196346, 0.0067676846, 0.02919025, 0.02166464, -0.03176586, -0.016406102, 0.011301832, -0.016728053, 0.019357322, -0.018632932, -0.0011192838, 0.004567684, 0.0062579284, 0.028626835, -0.007237197, -0.014487809, 0.0012282777, -0.016781712, 0.015279272, -0.0076932944, -0.0040009157, -0.022992687, 0.025501225, -0.0106311, 0.00624116, -0.013112808, 0.0091219535, -0.012750613, -0.004557623, -0.006214331, 0.018015858, -0.010678051, 0.0032111288, -0.004171952, 0.018378053, 0.0024632628, -0.012059758, -9.993905E-4, -0.013521954, -0.007572563, 0.020189028, -0.0125091495, 0.011489637, -0.025152445, -0.0106176855 ], + "id" : "698537d1-244c-4aac-94fc-1b32a28a7620", + "metadata" : { + "source" : "movies.csv" + } + }, + "6248b854-fc85-490a-806b-43fe4969b7da" : { + "text" : "72545,Journey 2: The Mysterious Island,Adventure-Action-Science Fiction,en,Sean Anderson partners with his mom's boyfriend on a mission to find his grandfather who is thought to be missing on a mythical island.,76.422,New Line Cinema-Contrafilm-Walden Media,1/19/12,79000000,355692760,94,Released,Believe the Impossible. Discover the Incredible.,6.1,3765,Dwayne Johnson-Josh Hutcherson-Michael Caine-Vanessa Hudgens-Luis Guzm��n-Kristin Davis-Anna Colwell-Stephen Caudill-Branscombe Richmond-Walter Bankson-Cody Easterbrook-Paul Leo Klink,giant lizard-mission-missing person-duringcreditsstinger,/hLZHJjsZ83Wfn3MRteNb6ew0WC7.jpg,/9f33P2UvXw8HnLNB3cHdzI64Xpq.jpg,88751-65404-32657-18360-220638-13836-1593-76285-6795-38575-27022-46529-50619-44912-46195-1265-58595-1979-1735-49529-24021\r\n568,Apollo 13,History-Drama-Adventure,en,The true story of technical troubles that scuttle the Apollo 13 lunar mission in 1970 risking the lives of astronaut Jim Lovell and his crew with the failed journey turning into a thrilling saga of heroism. Drifting more than 200000 miles from Earth the astronauts work furiously with the ground crew to avert tragedy.,22.112,Imagine Entertainment-Universal Pictures-TF1 International,6/30/95,52000000,355237933,140,Released,\"Houston, we have a problem.\",7.4,4800,Tom Hanks-Bill Paxton-Kevin Bacon-Gary Sinise-Ed Harris-Kathleen Quinlan-Roger Corman-Chris Ellis-Xander Berkeley-Tracy Reiner-Joe Spano-David Andrews-Mary Kate Schellhardt-Emily Ann Lloyd-Miko Hughes-Max Elliott Slade-Jean Speegle Howard-Michele Little-Andrew Lipschultz-Mark Wheeler-Endre Hules-Clint Howard-Christian Clemenson-Brett Cullen-Thom Barry-Gabriel Jarret-Jim Lovell-Neil Armstrong-Jules Bergman-Pope Paul VI-Marc McClure-Ben Marley-Loren Dean-Tom Wood-Googy Gress-Patrick Mickler-Ray McKinnon-Max Grod��nchik-Ned Vaughn-Andy Milder-Geoffrey Blake-Wayne Duvall-Jim Meskimen-Joseph Culp-John Short-Ben Bode-Todd Louiso-Christopher John Fields-Kenneth White-James Ritz-Karen Martin-Maureen Hanley-Meadow Williams-Walter von Huene-Brian Markinson-Steve Rankin-Austin O'Brien-Louisa Marie-Arthur Senzy-Carl Gabriel Yorke-Ryan Holihan-Rance Howard-Jane Jenkins-Todd Hallowell-Matthew Michael Goodall-Taylor Goodall-Misty Dickinson-Lee Anne Matusek-Mark D. Newman-Mark McKeel-Patty Raya-Jack Conley-Jeffrey Kluger-Bruce Wright-Ivan Allen-Jon Bruno-Reed Rudy-Steve Bernie-Steve Ruge-Herbert Jefferson Jr.-John Dullaghan-John Wheeler-Paul Mantee-Julie Rowen-Thomas Crawford-Frank Cavestani-John M.", + "embedding" : [ 0.016995346, -0.030398402, -0.010974177, -0.028983258, -0.012885984, 0.024628965, 0.0021023068, -0.021458497, -0.009490997, -0.032629978, 0.014518843, 0.037120342, 0.0094978, -0.0043168725, 0.011232713, 0.011042213, 0.024424858, -0.016219739, 0.016097274, -0.0029799687, -0.0010460507, -0.0049700164, -0.0142739145, 0.009130406, 0.01890035, 0.0035208536, 0.023472358, -0.013559538, 0.0062695006, -0.023145786, 0.013164931, -0.011001391, 0.005844277, 0.005402044, -0.013137716, -0.0044121225, 0.0067899744, -0.0038984523, 0.024873894, -0.013423467, 0.008844656, 0.017975062, -0.0128723765, -0.004769311, -0.010668016, 0.0188051, 0.01031423, -0.012049143, -0.0010043788, 0.03214012, 0.013647985, 0.024071071, -0.028221257, -0.02408468, -0.009320907, -0.0021397264, -0.006017768, 0.010497927, 0.008960317, -0.015661845, 0.014831808, -0.017090596, -0.025309324, -0.0012960823, -0.020995853, 0.0013003346, -0.004694471, -0.02379893, 9.418708E-5, 0.01084491, 0.016464667, 0.012770323, 0.0076132077, 0.0045584, 0.021050282, -0.036766555, -0.026370682, -0.010477516, -2.4216498E-4, 0.015838739, 0.0011583098, -0.0125458045, -0.0107020335, 0.011640929, 0.008279959, 0.027132684, -0.013750038, 0.027799435, -0.035133697, -0.0050040344, 0.009028353, 0.043325208, -0.009198442, 0.009109996, 0.0063545452, 0.019798422, -0.026533969, 0.012743109, -0.0142467, -0.038399413, -0.022342961, -0.0053033917, 0.008409227, -0.0040753456, -0.008980728, 0.0051264986, 0.013586752, -0.014886237, 0.034698267, -0.007368279, 0.013797663, -0.0069396533, 0.015933989, -0.016491883, -0.026710862, -0.02446568, 0.027853863, 0.0077356724, 2.5003162E-4, -0.027608935, 0.023036927, 0.006650501, 0.00157673, -0.023785321, 0.028656686, 0.028602257, -0.006259295, -0.017145026, 0.016219739, 4.101284E-4, 0.02950033, -0.007966994, 0.028166829, 0.01890035, -0.010810891, 0.045202997, -0.025731146, 0.0038746397, -0.02321382, -0.032602765, 0.043107495, 0.032031264, -0.03132369, -0.0075383685, -0.023676464, 5.687369E-5, 0.01764849, -0.0025598477, 0.0053238026, 0.011436821, 0.016682383, 0.014328343, 0.010014872, 0.010824499, 0.016750418, 0.020927817, -0.0059123123, 0.002243481, 0.011287142, -0.02235657, -0.008824245, -0.0021499319, 0.0011319459, -0.022383783, 0.010484319, 0.02518686, 0.011280338, -0.026751682, -0.012069554, -0.014614093, -0.021131925, 0.02522768, -0.027132684, 0.027799435, 0.012824751, 0.023567608, 0.0035106482, 0.0027095263, -0.019798422, -0.021444889, 0.0060858037, 0.009565836, 0.020301888, 0.03137812, -0.008021423, 0.013403056, 0.008436441, -0.017730134, 0.013743235, -0.022315748, 0.0057796426, 0.00575583, -0.0098856045, 0.0068886266, -0.6357267, -0.011443624, 0.0057388213, -0.023662858, 0.02292807, 0.016900096, 0.0051401057, 0.013756842, -0.015280845, -0.010076105, -0.029663617, 0.030670546, 0.024424858, -0.01981203, -0.037528556, -0.0047727125, 0.016410239, -0.018723456, 0.017526027, 0.0023693473, -0.05981709, 0.034290053, 0.0150903445, -0.005191133, 0.006994082, 0.010389069, -0.009695104, -0.031024333, 0.023730893, -0.005606151, -0.0091168, 0.018968387, 0.008892281, 0.0025241289, 0.040658206, 0.0016243551, -0.004680864, 0.04503971, 0.015593809, 0.019213315, -0.016314989, -0.001495087, 0.028792758, -0.0138997175, -0.025336538, 0.030724974, 0.03341919, -0.008096262, -0.0073206536, -0.006061991, 0.0024782047, 0.014722951, -0.009354925, -0.013511913, -0.012988037, -0.0074635292, 0.0142467, -0.029391473, 0.032058477, -9.0062415E-4, -0.01343027, 0.022914464, 0.0074771363, 0.016627954, -0.009450175, 0.037773486, -0.011144266, -0.013090091, 0.0065586525, -0.0398962, 0.01947185, 0.009667889, -0.00248841, 0.0045890156, 8.955214E-4, 0.019499065, 0.021023067, -0.0041399794, -0.004143381, 0.02873833, 0.007885351, -0.012110376, -0.0023982625, 0.017308312, 0.04220942, 0.0075859935, -0.028030757, 0.004014113, 0.0054530706, 0.0026653032, 0.016423846, 0.013253377, -0.00328613, 0.009280086, -0.015716273, -0.012273661, -0.0152536305, -0.0071437606, 0.038725987, -0.06504224, -0.00830037, -0.01040948, 0.021621782, -0.012396126, 0.01059998, 0.0060892054, -0.010518338, -0.011498053, 0.027853863, -0.026996613, -0.0098788, -6.8886264E-4, -0.018124742, -0.0034102954, -7.0459594E-4, -0.022819214, 0.015525773, -0.010708838, 0.0060075624, 5.2132446E-4, 0.0098788, 0.0014908349, -0.0011455531, -0.011375588, 0.0050448556, 0.038072843, 6.4761593E-4, -0.021159139, 0.009654283, 0.014736558, -0.004374703, -0.0079942085, -0.0030360983, -0.0047420966, -0.011409607, 0.0027129282, 0.009075978, -0.0029136338, 0.006636894, 0.0035004427, -0.031623047, 0.0014440602, -0.004194408, -0.016151702, -0.0032419066, -0.03306541, -0.0237445, 0.005177526, 0.008286762, -0.014396379, -0.028874401, 0.0032793263, 0.013110502, 0.02186671, 0.011647732, -0.0010749659, -0.023104964, -0.01388611, 0.019825637, -0.027255148, 0.0076812436, 0.01890035, -0.0039732917, -0.029146545, 0.022234105, -0.0104230875, -0.022696748, 0.014124235, -0.010906141, -0.03094269, 0.0018318644, -0.0031959824, -7.811362E-4, 0.021798676, 0.009273282, 0.026710862, -0.0061708484, 0.01170216, 0.004228426, 0.0045958194, 8.11646E-5, 0.011001391, -0.015539381, -0.0012799238, 0.0019764404, 0.004476757, 0.008416031, -0.0019781413, -0.012647858, 0.021744248, 0.012028732, -0.0111918915, 0.010137336, -0.008565709, 0.010355052, 0.02403025, -0.0038440237, -0.0064463937, -0.0020921014, 0.0188051, 0.052442007, 0.010620391, 0.009150817, -0.016995346, 0.0041195685, -0.03377298, -0.014722951, -0.023975821, 0.019458244, -0.0191861, 0.018941171, -0.0193766, -0.020778138, -0.013518717, 0.03045283, 0.009844783, -0.0023472356, -0.0023931598, -0.006133429, 0.0070553143, -0.00803503, -0.003367773, 0.024860287, 0.0071301535, -0.018138349, 0.017308312, 0.011940286, -0.0074091004, -0.003010585, 0.0071301535, 0.017335527, 0.0033473622, -0.012817948, 0.010878927, 0.008007816, 0.0055891424, 0.028411757, 0.004225024, 0.041120846, -0.0141106285, 0.004003908, 0.015743488, 0.034943197, 8.253595E-4, -0.004932597, 0.0029680624, 0.026452325, -0.0031942816, -0.0060585896, 0.04604664, -0.013307806, 0.011994715, 5.28128E-4, 0.0011293945, 0.0031245449, -0.0120083215, -0.0031160405, 0.014872629, 0.031731904, 0.028819973, 0.0078105116, -0.025499824, 0.014559665, 0.014409986, 0.014491629, -0.0015665247, -0.024452072, -0.011430018, -0.004031122, -0.010872124, 0.008905889, -0.03439891, 8.45345E-4, -0.0017995473, 0.0035378626, -0.016097274, 0.01607006, 2.7915946E-4, 1.2086988E-4, -0.0018386679, 0.006732144, -0.03668491, 0.016219739, 0.016614346, -0.020750925, -0.03333755, 0.0018641814, -8.759611E-5, -0.02786747, -0.014940665, -0.02283282, 0.0127567155, -0.02566311, -0.009865194, -0.014886237, 0.0027775622, 0.012436947, -0.0062014647, 0.027554506, 0.0077152615, -0.0036603268, 0.013777253, 0.0049530077, -0.011348374, 0.032357834, -0.011613714, 0.0054530706, -0.0072662253, 0.012988037, 0.0038508272, -0.008252745, 1.16086114E-4, -0.022206891, -2.513073E-4, -0.012253251, -0.010919749, -0.013137716, -0.013301002, 0.025105216, -0.013164931, -0.009620264, -0.033718552, -0.013471092, 0.0072798324, 0.07532926, 0.03728363, 0.020655673, 0.0033711747, 0.0035174517, -9.780149E-4, -0.015716273, -0.008538495, -0.014750165, -0.02930983, -4.4478415E-4, 0.0041739973, 0.016246952, -0.0077560833, 0.006147036, -0.0030122858, 0.0020257665, 0.0032265985, -0.008259548, -0.008545298, -0.027119076, -0.017716527, 0.020778138, 0.03981456, 0.007334261, -0.03306541, 0.016913705, 0.0044495426, -0.005902107, 0.014995094, -0.0037215592, 0.01096057, 0.019607922, 0.0083207805, -0.014069807, 0.005646973, 0.023145786, 0.0065178312, 0.023880571, -0.0042828545, -0.0024339813, 0.016927311, 0.0037827913, -0.0076608327, 0.01827442, -0.013022055, -0.027472863, 0.026928576, 0.03189519, -0.030207902, 0.025622288, -0.0052217487, -0.0022706953, -0.020655673, 0.010144141, -0.0014355558, -0.017403562, -0.006909037, -0.016532704, 0.0019815431, 0.016192524, -0.05233315, 0.014409986, -0.019349387, 0.0054394635, -0.032167334, -0.014913451, -0.0014074909, -0.022424605, 0.005480285, -0.006813787, -0.019104457, -0.009252871, -0.0035888893, 0.008633745, -0.008919495, 0.012144393, -0.011232713, 0.0182336, 0.00959305, -0.012661465, -0.02408468, 0.006242286, -0.013307806, 0.008307173, 0.016083667, -0.012015125, 0.013892914, 0.0026942184, 0.0041910065, 0.001023939, 0.0039937026, -0.019594315, -0.0018913957, 0.045447927, 0.011885857, 0.016274167, 0.013110502, 0.020410744, -1.8816156E-4, 0.008817442, -0.029935759, -0.005265972, -0.016287774, -0.02178507, -0.009960444, -0.0027690576, 0.0038100057, -0.024343215, -0.03094269, -0.03382741, -0.019743994, 0.013314609, -0.0076336185, 0.025540646, 0.011777, 0.026125753, -0.0068886266, 0.0186146, 0.0025088207, -4.4887693E-5, -0.011402803, 0.009314103, 0.025050787, -0.0012374014, 0.01635581, 0.0023200214, -0.037120342, -0.0016201029, 0.025771968, -0.0037963986, 0.017430777, -0.0139473425, 0.005150311, 7.5434713E-4, -0.015797917, 0.0049972306, 0.008667763, 0.016246952, 0.0039596846, -0.024792252, 0.010341444, 0.022519855, 0.009014745, -0.0023557402, -0.027758613, -0.012260054, -0.014899843, 0.005218347, 0.032929335, 0.006194661, 0.008728995, -0.028003542, -0.024601752, -0.008409227, -0.020995853, -0.017321918, -0.004214819, 0.032194547, 0.013654788, 0.027268756, -0.006051786, 0.023513177, -0.004633239, 0.0186146, 0.024329608, -0.009361728, -0.025649503, -0.04373342, -0.0021822487, 0.031296477, 0.0070485105, 0.01616531, -0.0012935309, -4.6647058E-4, 0.0051741237, -0.006198063, 7.2160485E-4, 0.015471345, -0.024724215, -0.015648238, 0.0030122858, -0.025091609, -0.0093481215, -0.023472358, -0.031623047, 0.043624565, -0.019403815, -0.014423593, -5.862774E-5, 0.042318277, -0.009463782, 0.013450681, -0.01645106, -0.006507626, -0.014899843, -0.00813028, -0.03113319, 9.091286E-4, -5.612955E-4, -0.008191512, 0.0018845921, -4.2479864E-4, -0.0088582635, 0.0022706953, 0.029228186, -0.018151956, -0.0071437606, 0.023145786, -0.011715768, -0.016002024, -0.03401791, -0.0072798324, -0.03214012, -0.0074227075, 0.0073954933, 0.01626056, 0.009178031, -0.030425617, -0.04528464, 0.027064648, 0.0027928702, 0.04169235, 0.019104457, 0.058129802, 0.026302647, 0.01434195, -0.034943197, -0.002131222, 0.0011021802, -0.004959811, 0.026166575, 0.032493904, 0.010171355, -0.0018233599, -0.0060892054, -0.020995853, -0.019621529, -0.031595834, 0.013933735, 0.011695357, 0.010116926, -0.017349133, -0.002779263, -0.020927817, 0.019485459, -0.0056197583, 0.01808392, 0.008375209, -0.010436694, -0.010457105, 0.0014610692, 0.004568605, 0.010184961, 0.0142739145, -0.019294957, 0.012300876, -0.014205879, 0.018818706, -0.02398943, -0.0039290683, 0.021431282, -0.028765542, 0.023975821, -0.0059633395, 0.021213567, 0.0093957465, -0.0053782314, 0.01764849, 0.032820478, -0.030861046, 0.009715514, 0.013988164, 0.009844783, -0.006538242, 0.020546816, -0.028983258, -0.0130356625, -0.029908545, 0.0074907434, 0.024506502, -0.0020699897, -0.012824751, -0.012620644, -0.010361855, -0.014491629, 0.0046740607, -0.0150903445, -0.009293692, -0.024887502, 0.020206638, -0.016233345, 0.0034562196, 0.0028183837, -0.022696748, 0.0130832875, -0.0063851615, 0.011933482, -0.0014355558, 0.0066947243, -0.0149270585, -0.0057524284, -0.04024999, -0.016246952, 0.014015378, -0.028819973, 0.009157621, -0.03189519, -0.006878421, -0.02178507, 5.5321626E-4, -0.015539381, -0.002081896, -0.013443877, 0.0033082415, 0.005578937, -0.018124742, -0.008865067, -0.012817948, 0.0397057, 0.011307552, 0.01194709, -0.009382139, 0.019703172, 0.027377613, -0.036576055, 0.015920382, -0.011375588, -0.020778138, 0.0067219385, 0.0048543555, 0.030833833, 0.011926679, -0.012123982, -0.046563715, -0.024016643, -0.009674693, 0.030915475, -0.0052217487, 0.002163539, 0.026030503, -0.0015886363, 0.045502353, 0.02178507, 0.0064123757, -0.03472548, 0.0052115438, -0.0104230875, -0.0065484475, -0.001301185, 0.024492893, 0.0283029, -0.009286889, 0.0118926605, -0.01369561, -0.01333502, -0.013566342, -0.023268249, 0.010008069, 0.011919875, 0.047325715, 0.031786334, -0.0030020804, 0.02245182, -0.0022706953, 0.009620264, -0.022179676, -0.015212809, 0.023077749, 0.01654631, 0.026166575, 0.016383024, -0.03728363, -3.8270147E-5, 0.0043202746, 0.02873833, 3.6250334E-4, 0.019294957, -0.030806618, -0.009899211, 0.0012408032, -0.0047999267, 0.016872883, -0.005776241, 0.028384542, -0.03554191, -0.012130786, 0.0086949775, 0.015471345, 0.011457232, 0.0020614853, 0.009218853, -0.012089965, 0.007708458, 0.001983244, -0.02192114, 4.5116252E-4, -0.026370682, 0.008164298, 0.0019985521, 0.0039460775, 0.01251859, 0.018192777, -0.008599727, 0.0037861932, -0.012967627, 0.011212302, -0.012266858, -0.0027265353, 0.02522768, 0.0024697, -0.030915475, 0.024860287, -0.035950124, 1.6828233E-4, 0.0038678362, 0.023186605, -0.020315494, 0.015525773, 0.002718031, -0.047897216, -0.013198948, 0.003041201, 0.00484415, 0.010674819, 0.0043304795, -0.012661465, -0.0072254036, -0.0017221567, -0.0056979996, -0.015484951, -0.017117811, 0.010946963, -0.010715641, -0.017294705, 0.02503718, 0.18070313, -0.00712335, 0.019294957, 0.038862057, 0.00813028, 0.009001139, 0.02786747, 0.029636402, 0.0051060882, 0.024683394, -0.0010366958, 0.012913198, 0.005157115, 0.0035514697, -0.0011327964, -0.020397138, -0.028275685, -0.002598968, -0.012450554, -0.022057211, -0.00630692, -0.005177526, 0.0065178312, -0.020873388, 0.006266099, -0.015770702, -0.0037759878, 0.0044631497, 0.026942184, 0.010674819, -0.024288787, -0.026683647, -0.013382645, 0.007946583, -0.026547575, -0.008674567, -0.012049143, 0.007415904, -8.9297007E-4, -0.001162562, 5.8723416E-4, 0.0062524914, -0.004112765, -6.586717E-4, 0.0029952768, 0.013763646, -0.015580202, -0.0032436075, -0.028139614, 0.0088582635, -0.05138065, -0.004782918, 0.013396252, 0.020846175, -0.024098286, -0.019131672, 0.014614093, -0.0031500582, 0.001700045, 0.014450807, 0.002306414, 0.036195055, -0.03156862, 0.008109869, 0.0014882835, 0.03056169, -0.025771968, -0.013437074, 0.0035548713, -0.043325208, -0.011879054, -0.030207902, -0.021499317, 2.7830902E-4, -0.0013726226, -0.013437074, 0.0046910695, 0.0021516327, 0.009463782, 0.0090215495, -0.02182589, -0.025976075, 0.0071845823, -0.0372292, -0.024928324, -0.0241255, 0.0073410645, -0.015498559, 6.221025E-4, -0.0071641714, 0.0019611325, -0.02359482, -0.013273788, -0.0075179576, -0.013471092, 0.008844656, 0.022615105, 0.013042466, -0.012253251, -0.0064361882, -0.032820478, 0.01660074, 0.012015125, -0.025200466, -0.02192114, -0.022465426, -0.013348627, 0.016342204, 0.03156862, -0.014124235, -0.018532956, -0.020846175, -0.009926425, -0.012899591, -0.013750038, 0.024669787, 0.010416283, -0.005902107, 0.04373342, -0.020478781, -6.926897E-4, -0.029826902, 0.011055821, 0.008239137, -0.0035174517, -0.03007183, -0.018737065, 0.0091848355, 0.009150817, -0.0383722, -0.0016201029, -0.031432547, 0.013253377, -0.0039256667, 0.008715388, 0.0075451722, 0.022302141, 0.0045345873, 0.007497547, -0.014083414, -0.001464471, -0.004354292, -0.0012203924, 0.015049523, 0.018777885, -0.03339198, 0.013593556, 0.0036671306, -0.018873135, -0.026602004, -0.0052625705, -0.022900855, 0.0014100423, 0.022220498, 0.047706716, 0.01764849, -0.02417993, -0.028221257, -0.008865067, 0.021172747, -0.03660327, 0.036766555, 0.012981234, -0.005680991, -0.033310335, -0.004680864, -0.17384511, 0.012845162, -0.0012297474, -0.026302647, 0.0142467, 0.0050380523, 0.024479287, 0.01314452, 0.014654915, -0.015648238, 0.024805859, -0.0066266884, -0.05407487, -0.020710103, -0.0072662253, 0.014505236, -0.016219739, 0.016178917, 0.03341919, -0.026683647, 0.028819973, 0.013933735, -0.0056503746, -0.005721812, 0.016845668, 0.0075179576, 0.010457105, 0.0049019805, 0.0036127018, -0.0043644975, -0.032684408, -4.7582548E-4, 0.016804846, 0.0035276571, -0.0013326516, 0.0045788107, -0.020846175, -0.008075851, -0.009946836, -0.008327584, 0.01832885, 0.018628206, 0.024247965, 0.020560423, 0.0025445395, 0.013416663, 0.0015265536, -0.0013215957, 0.015811523, -0.015811523, -0.015648238, -0.043243565, -0.008735799, -0.0017468196, 0.013620771, 0.013579949, 0.0046230336, -0.0019815431, 0.010321033, -0.0059599373, -0.03439891, -0.007960191, 0.0029527545, -0.0122192325, -0.015144773, -0.016777633, -0.004687668, 0.0044121225, -0.040032275, 0.016641561, -0.021444889, -0.013056073, 0.009579443, 0.0042896583, 0.0072117965, -0.00657226, -0.015348881, 0.024261571, -0.008191512, 0.013607163, -0.030289546, 0.029527545, -0.018097527, 0.017498812, 0.0091848355, -0.012334893, 0.004031122, -0.0025462403, 0.0038100057, -0.0023319277, 0.006670912, -0.021254389, -0.023200214, -0.0024611957, 0.011300749, 0.013130913, -0.009606658, 0.01268868, 0.014886237, -0.0015401609, -0.009259675, -0.014573272, -0.020737316, 0.022560677, 0.021989176, 0.014369165, 0.014450807, 0.016913705, 0.025840003, -6.901383E-4, -0.011402803, -0.008518084, 0.011627321, 0.02805797, -0.011994715, 0.0064497953, -0.029337045, -0.020655673, -0.0027911693, 0.021989176, 0.051407862, -0.0076744403, -0.011178285, -0.02758172, -7.645525E-4, 0.0018692841, -0.09378057, -0.0014440602, 0.011014999, 0.040549345, -0.02379893, 0.034616623, -0.011661339, 0.017226668, -0.02139046, 0.020859782, -0.0065178312, -0.02518686, 0.015906774, 0.0018522751, 0.01434195, 4.8390473E-4, -0.009627068, -0.004180801, -0.0035854876, 0.01607006, 0.001284176, -0.008885478, -0.0076676365, -0.0073954933, -0.026928576, 0.006864814, -0.037256412, 0.012205626, 0.025050787, -6.606916E-5, -0.0046434444, -0.013484699, 0.011001391, -0.036875412, -0.024887502, -0.02197557, -0.02556786, 0.0013666694, 0.031786334, -0.04125692, 0.012192018, 0.0055074994, -0.01088573, -0.020465173, -0.006177652, 0.005055061, -0.026710862, 0.024111893, -0.015144773, -0.025962468, -0.019526279, -0.027214326, -0.028656686, -0.00839562, 0.0045481944, 0.020560423, 0.021961961, 0.0074363146, -0.009708711, -0.023812536, -0.007252618, -0.009681497, -0.031731904, 0.021499317, 0.007089332, 0.011756589, -0.011647732, -0.0086949775, 0.012947216, -0.011212302, -0.020070566, 0.03554191, -0.044168852, -0.006442992, -0.028847186, 0.00793978, -0.021131925, -0.0074499217, 0.033500835, -0.03477991, 0.01079048, -0.026275432, 0.004150185, -0.024492893, 0.013811271, 0.029745258, 0.017580455, 0.009674693, 0.0039937026, -0.017621277, -0.004599221, 0.022220498, -0.008511281, 0.0035174517, -0.013103698, 0.014382771, 0.01261384, 0.0024288786, -0.005429258, -0.01793424, -0.011593303, 0.012212429, -0.0767444, 0.0286839, -6.835473E-5, -0.016532704, -0.013158127, -0.01688649, -0.0024986153, -0.011674946, 0.011586499, 0.024384037, -0.0149270585, 0.025254896, 0.005449669, -0.00547008, 0.002779263, 0.010402677, -0.005279579, -0.0059599373, -0.015267237, -0.002442486, -0.04049492, 0.009273282, 0.027949113, -0.014192271, -0.0012246447, 0.025894431, 0.019621529, 0.0048713647, -0.0049087843, -0.016383024, 0.031486977, 0.0076608327, -0.008259548, 0.0032010851, -0.023703678, -0.0197576, -0.0024118696, 0.0054734815, 0.008361602, 0.020451566, -0.0017281098, -0.007157368, 0.005504098, 0.008286762, -0.007170975, 0.02081896, -0.016015632, 0.013321413, 0.01717224, 0.024615359, 0.01654631, 0.010497927, -0.018560171, -0.010191766, 0.022342961, -0.007837726, 0.05045536, 0.0062695006, -0.003219795, 0.0010588074, 0.030697761, -0.011777, 0.025989681, -0.023581214, 0.018682634, -0.008443245, -0.0025564458, -0.0142739145, -0.004803329, -0.011450428, 0.0019458244, -4.545643E-4, 0.011123856, 0.021349639, 0.0060755983, 0.025009966, -0.0071437606, -0.012198822, 0.0113551775, 0.0073410645, 0.035759624, -0.0077628866, -0.050700292, 2.2656459E-5, -0.009871997, 0.023445142, 2.1925605E-5, 0.022370176, 0.0017238575, 0.008191512, -0.002928942, 0.009525014, 0.02484668, -8.5852697E-4, 0.0026653032, 0.02389418, -0.016015632, -0.02537736, -0.011600107, 0.041665133, -0.0069022337, 0.0031959824, 0.0067763673, -0.021131925, -0.021744248, 0.00634434, -0.017947849, -0.03458941, 0.019199707, 0.01626056, 0.02245182, 0.018342456, -0.014913451, 0.006732144, -0.03823613, -0.0057864464, -0.0068035815, -0.025799181, -0.013627574, 0.040032275, 0.01779817, 0.014845415, 0.038834844, -0.016709596, 0.06460681, 0.016151702, 0.0389437, -0.019444637, -0.009470586, -0.012743109, -0.004694471, 0.009837979, -0.018151956, 0.015893167, -0.001301185, 4.702976E-4, -0.0139473425, 0.026493147, -0.033119835, 0.068852246, 0.002959558, -0.004731891, 0.0056163566, -0.024833074, 0.003332054, 9.610059E-4, 0.018437706, -0.015838739, -0.00442573, 0.0020631861, -0.013906521, 0.035133697, -0.022669533, 0.008660959, -0.00813028, 0.013280591, 0.021893926, -0.0047727125, -0.012069554, -0.0073138503, 0.004143381, 0.015226415, -0.0047420966, -0.02417993, -0.0025768566, 0.019308565, -0.014750165, -0.011661339, -0.032004047, 0.012967627, -0.029037686, -0.018560171, 0.008089459, 0.030779403, -0.018560171, -0.0039630863, -0.0029663616, 0.025200466, 0.009980855, -0.009409353, -0.0026431915, -0.019403815, -0.026629219, -0.0039800955, -0.010463908, -0.012192018, -0.02824847, -0.023200214 ], + "id" : "6248b854-fc85-490a-806b-43fe4969b7da", + "metadata" : { + "source" : "movies.csv" + } + }, + "72d19cd6-3779-4710-a82b-450913966e0f" : { + "text" : "Lee Ermey-Teddy Newton-Richard Kind-Bud Luckey-Javier Fern��ndez-Pe��a-Charlie Bright-Amber Kroner-Brianna Maiwand-Erik von Detten-Jack Willis-Woody Smith-Carlos Alazraqui-Teresa Ganzel-Jess Harnell-Danny Mann-Mickie McGowan-Laraine Newman-Colleen O'Shaughnessey-Bob Peterson-Jerome Ranft-Lee Unkrich-Colette Whitaker-Constantino Bravos-Taiana Huff-Adam Joshua Jastrow-Leo Jergovic-Theodore F. Kayser-Gia Michailidis-Nikolas Michailidis-Aram�� Scott-Hannah Unkrich-Godfrey Gao-Sherry Lynn-Jim Ward-Frank Welker,escape-hostage-college-sequel-buddy-daycare-teddy bear-duringcreditsstinger-toy comes to life-personification-inanimate objects come to life,/AbbXspMOwdvwWZgVN0nabZq03Ec.jpg,/uAfhsySkr1UzQg1zdg3dZQRz9Fd.jpg,863-862-585-12-9806-2062-14160-10681-920-62211-49013-808-62177-9487-38757-8587-953-10191-425-9502-20352\r\n58,Pirates of the Caribbean: Dead Man's Chest,Adventure-Fantasy-Action,en,Captain Jack Sparrow works his way out of a blood debt with the ghostly Davy Jones to avoid eternal damnation.,95.856,Walt Disney Pictures-Jerry Bruckheimer Films-Second Mate Productions,7/6/06,200000000,1065659812,151,Released,Captain Jack is back!,7.337,14283,Johnny Depp-Orlando Bloom-Keira Knightley-Stellan Skarsg��rd-Bill Nighy-Jack Davenport-Kevin McNally-Jonathan Pryce-Lee Arenberg-Mackenzie Crook-Tom Hollander-Naomie Harris-David Bailie-Martin Klebba-David Schofield-Alex Norton-Dermot Keaney-Andy Beckwith-Clive Ashborn-Reggie Lee-Christopher Adamson-Jonathan Linsley-John Boswall-Max Baker-Steve Speirs-Lauren Maher-Vanessa Branch-Luke de Woolfson-Jonathan Kite-Ho-Kwan Tse-Peter Donald Badalamenti II-Christopher S. Capp-Donald Dowd-Barry McEvoy-Claudia Adams-Filip Cvijetic-Michael Enright-Geoffrey Rush,witch-fortune teller-bondage-exotic island-monster-captain-east india company-compass-ship-daughter-sword fight-pirate-cannibal-swashbuckler-kraken-aftercreditsstinger-based on theme park ride,/uXEqmloGyP7UXAiphJUu2v2pcuE.jpg,/14F9FtM2DOPex5zrZkauJwWobtl.jpg,285-1865-22-166426-675-12444-767-674-672-12445-673-425-607-557-10138-121-671-10528-12155-862-12\r\n330459,Rogue One: A Star Wars Story,Action-Adventure-Science Fiction,en,A rogue band of resistance fighters unite for a mission to steal the Death Star plans and bring a new hope to the galaxy.,44.122,Lucasfilm Ltd.,12/14/16,200000000,1056057273,133,Released,A Rebellion Built on Hope,7.", + "embedding" : [ 5.7466805E-4, -0.03990122, -0.022686219, -0.05078839, -0.03147333, 0.0282956, 6.8174367E-4, -4.5852552E-4, -0.0036198474, -0.023653354, 0.031970713, 0.018320296, 0.0073295003, 0.010762828, 0.0057820845, 0.01848609, 0.014451757, -0.019992057, 0.001601817, -0.032744423, 0.009567726, 9.861321E-4, -0.022478975, 0.015778113, 0.02206449, 0.006877019, 0.03271679, -0.0070946245, -0.00680103, -0.0016259954, 0.019978242, -0.011847401, -0.005163809, -0.021691453, -0.028765352, 0.0069633704, 0.0016501738, -0.046919852, 0.02100064, 0.0019929884, 0.009975305, 0.008372624, -0.020282198, -0.008269003, -0.014071811, 0.0073018675, 0.007322592, -0.017850544, 0.0020689776, 0.02464812, 0.014893875, 0.022879645, -0.021829614, -0.02698306, -2.94458E-4, 4.978154E-4, -0.019812448, 0.01101152, 0.0017287534, -0.0016562183, 0.0036060312, -0.016344579, -0.031169374, -0.01126712, -0.013608968, -0.001601817, -0.006338187, -0.017311713, 0.0012046009, 0.0077647106, 0.024717202, 0.015253098, 0.016924858, 0.0050083767, 0.022520425, -0.031114109, -0.016524188, 0.0076679974, 0.003205361, 0.012724731, 0.0030343854, -1.5705146E-4, -0.021346046, -0.0025110964, 0.013387909, -0.0017270264, -0.0053883223, 0.011702331, -0.02800546, 0.011501996, 0.013560612, 0.043714494, 0.002345302, -0.00267171, 0.0045489874, 0.016289312, -0.031224638, 0.025021158, -0.007391673, -0.045786925, 0.004397009, 0.0012693644, -0.002811599, -0.011239488, -0.003992885, -0.0020102588, 0.0044660904, -0.006604149, 0.018002523, 0.012614201, -0.0088354675, -0.0074400296, 0.0046146144, -0.035783987, -0.0118059525, -0.021525657, 0.015032038, -0.013063228, -0.006276014, -0.024012575, 0.029152205, 0.032827318, 0.009816418, -0.029456163, 0.018803863, 0.032772053, 0.004652609, -0.0034177853, -0.0016458562, -0.0073433165, 0.022326998, -0.006521252, 0.026167905, 0.009816418, -0.011667791, 0.05269503, -0.028185071, 0.008731846, -0.013622784, -0.027287018, 0.03445763, 0.02457904, -0.020517074, -0.02520077, -0.02359809, -0.010051293, 0.015294546, -0.008538418, 0.007978862, 0.011191132, 0.019384144, 0.019853896, 0.007253511, 0.013104676, 0.019591387, -0.010755921, -0.014507022, -0.010272353, -0.005747544, -0.017463692, -0.0017753831, -0.020862479, 0.0024990072, -0.009857867, 0.012393141, 0.035176072, 0.020586155, -0.008331176, 0.014285962, 0.023611905, -0.009602267, 0.026444228, -0.017809097, 0.020544706, 0.012683282, 0.023335582, -9.4446756E-7, -0.010811185, -0.042388137, -0.017063022, 0.011619434, 0.003018842, 0.01966047, 0.033324704, 0.0017114832, 0.012344785, 0.009726613, -8.419254E-4, 0.009913132, -0.013788579, -0.018983474, 0.015667584, -0.014907692, 3.7239006E-4, -0.62869287, -0.017242631, -0.0024679208, -0.015722848, 0.011018429, 0.00680103, -0.0044591823, 1.612611E-4, -0.0464501, -0.015653767, -0.019646652, 0.0033020745, 0.04081309, -0.01185431, -0.023169786, -0.0033815177, 0.004624977, -0.013070136, 0.016800513, 0.0024627396, -0.024675753, 0.017449874, 0.029566692, -0.0049427496, 0.0071567977, -0.0064245383, -0.01852754, -0.021898694, -0.0012866347, 0.01126712, -0.0037580095, 0.02246516, 0.019052556, 0.0054608574, 0.038713023, 0.0060929493, -0.023003992, 0.04255393, 0.023915863, 0.028682455, -0.019812448, -0.015515605, 0.0011476091, -0.015833378, -0.011729963, 0.020254565, 0.01094244, 0.014686633, -0.01323593, -0.0030931043, -1.0275807E-4, -0.011073694, -0.006079133, -0.0047596847, -0.009284494, 0.005536847, 0.017339345, -0.034429997, 0.011177315, -0.004372831, -0.018430825, 0.024509959, -1.9957949E-4, 0.005875344, -0.019384144, 0.02388823, -0.00497729, -0.010679931, 0.020378912, -0.041117046, 0.019646652, 0.0065730624, -0.008531511, 0.008973629, -0.014272146, 0.017214999, 0.04186312, 3.7131069E-4, -0.01382312, 0.019522307, -0.0025318207, 1.4220983E-5, -7.0074096E-4, 0.016828146, 0.022934912, 0.005229436, -0.027839666, 0.0014619279, 0.008973629, -0.009381208, -0.0011951022, 0.021346046, 0.0076610893, -0.0034868664, -0.0066594137, -0.0031155557, -0.01837556, 0.0077370782, 0.029400898, -0.060017623, -0.008227554, -0.012496763, 0.019964425, -0.018790048, 0.013305011, 0.012621109, 0.007592008, -0.013539887, 0.031860184, -0.021746717, -0.027991645, 0.01586101, -0.004521355, 0.00667323, 0.00904271, -0.032136507, 0.018154502, 0.011322386, 0.008952905, -0.008579867, 0.009768061, 0.00417595, 0.021498024, -0.013767854, 0.019563755, 0.023390846, -0.006348549, -0.0022175019, 0.009374299, 0.01057631, -3.8663804E-4, -0.015501789, 0.00795123, -0.00393762, 0.005353782, 0.009312127, 0.018693333, -0.013470806, 0.019936793, -0.00665596, -0.014465573, -0.0047458685, -0.0037752797, -0.0076749055, -0.008759478, -0.02100064, -0.028226519, -0.00616203, -0.0010154916, -0.007723262, -0.013629693, 0.009830235, 0.0044799065, 0.008490062, 0.012952698, -0.0039445283, -0.042360503, -0.010168731, 0.017463692, -0.013277379, 0.0041552256, 0.026416596, -0.013519163, -0.0137816705, 0.016980125, -0.011343109, -0.0022537694, 0.004659517, -0.0073640407, -0.014327412, 0.024206003, -0.010258537, -7.3290685E-5, 0.0038823553, -0.02815744, 0.016676167, -0.024413245, 0.019992057, 0.015557054, 2.3206917E-4, -0.004580074, 0.007495295, -0.01703539, 0.0031207367, 0.014355044, 0.029235104, 0.022879645, -0.0050705494, -0.009754245, 8.4796996E-4, -0.022852013, -0.016358394, -0.0032157232, 0.0055333925, 0.007902873, 0.025670521, -0.007958137, 0.011329293, 0.012158266, 0.0069461004, 0.023529008, 0.020917743, 0.019853896, -0.011073694, -0.003336615, -0.035535295, -0.009933856, -0.026098823, 0.014962957, -0.0024990072, 0.014106352, -0.016841961, -0.007170614, 0.007315684, 0.010783553, 0.020669052, -0.0034540528, 0.009173964, -0.023142153, 0.00973352, -0.00243338, -0.0021691453, 0.014728081, 0.015087303, -0.022700036, 0.003588761, 0.028958779, -0.028143622, -0.019024923, -0.021995408, 0.0050740037, -0.0070220893, 0.0045973444, 0.015584687, -0.009913132, 0.007826883, 0.0177262, -0.0056059277, 0.03625374, -0.017878177, -0.007163706, 0.02669292, 0.015418892, -0.0015595049, -0.019936793, -0.009996029, 0.010790461, 0.02148421, -0.013408633, 0.029732486, -0.01837556, 0.017546589, -0.0050083767, 0.006213841, -0.0076679974, -0.018693333, 0.012524395, 0.007826883, 0.020475626, 0.027563341, 0.03456816, -0.018886762, 0.027701505, 0.0047285985, 0.017090654, 0.0015301454, -0.018541357, -5.7466805E-4, 0.018265031, -0.022893462, -0.013608968, -0.008199922, -0.01984008, 0.016178783, -0.013906017, -0.0050152848, 0.0065419762, -0.008483154, 0.0014291144, 0.01932888, -0.003726923, -0.031749655, 0.023473743, 0.025173137, -0.012724731, -0.010134191, -0.020586155, -0.0062414734, -0.024371797, 0.007453846, -0.016026806, 0.039735425, 0.0017926535, 0.014327412, -0.009284494, -0.021304598, 0.021912511, -0.04299605, 0.019176902, 0.013788579, 0.0015007859, 0.015184016, -0.012779996, -0.017961076, 0.011149682, -0.006465987, -0.007868333, -0.018914394, 0.020558523, 0.010914807, 0.007253511, -0.005498852, -0.052114747, 7.573011E-4, -0.016717616, -4.6629715E-4, -0.023611905, 6.752673E-4, 0.015322179, -0.00483222, -0.007902873, -0.0063865436, -0.032025978, 0.010327618, 0.07516019, 0.03810511, 0.010148007, 0.006058409, 7.68095E-4, -0.0054090465, -0.0058062626, -0.0066421437, -0.0066283275, -0.013567519, 0.024054024, -0.0132497465, 0.034126043, -0.0057613603, 0.015930092, -0.013975098, -0.009726613, -9.82678E-4, 0.009574634, -0.021235516, -0.024509959, -0.006915014, 0.015957724, 0.013684957, 0.0054643117, -0.022313181, 0.020447994, 0.009464105, 0.006883927, 0.014893875, -0.012510579, 0.016316945, 0.002039618, 0.012151358, -3.52961E-4, -0.0041345013, 0.026029741, 0.023819149, 0.01163325, 5.988464E-4, -0.0026613476, 3.7951407E-4, 0.004241577, -0.019577572, 0.020323647, -0.026969245, -0.012254979, 0.010044386, 0.021124987, -0.048356738, 0.022078305, 0.0025266397, -0.015805745, -0.01630313, 0.017270263, -0.0036785663, -0.009484829, -0.0013816211, -0.010327618, 0.0029083125, 0.004852944, -0.036447167, 0.016123518, -3.4044008E-4, -0.0044142795, -0.018444642, -0.022962544, -0.0048633064, -0.018886762, -0.0053054253, -0.014576103, -0.007177522, 0.0029756664, -0.0077716187, 0.012697098, -0.0026268072, 0.030727254, -0.0056508305, 0.02987065, 0.012241163, -0.021857247, -0.020461809, 0.0013168576, -0.030589093, 0.009249954, 0.021470392, 0.012172082, 0.016717616, -0.0018669156, 0.018762415, 0.021898694, -0.0073295003, 0.0011268847, -0.023819149, 0.046588264, 0.007633457, 0.020572338, 0.0028547747, 0.017822912, 0.0031259179, 0.004953112, -0.021097355, 0.0030533827, -0.013139217, -0.019080188, -0.014741898, -0.011260212, 0.0017909264, -0.013429358, -0.014949141, -0.0272732, -0.015529421, 0.0060445922, -0.0074607544, -0.0026337153, -0.002231318, 0.0064590788, 0.017933443, 5.988464E-4, 0.014023455, -0.009719704, -0.021636186, 0.015930092, 0.026430413, -0.011274029, 0.031169374, -0.015639951, -0.032053612, -0.009243045, 0.02920747, -0.009878591, 0.0032329934, -0.034319468, -0.013505346, -0.016759064, -0.02789493, 0.004110323, 0.011204948, -0.01232406, 0.011274029, -0.0282956, 0.0063692736, 0.013788579, -0.014507022, 4.7838633E-4, -0.024565224, -0.0037165608, -0.009243045, 0.015018222, 0.020738134, -0.007847608, 0.013222114, -0.020047322, -0.004566258, 0.003865085, -0.034706324, -0.028378498, 0.0019895344, 0.036474798, 0.0128352605, 0.033601027, -7.3787203E-4, 0.02651331, 0.009657532, 0.017021572, 0.026043558, -0.025283666, -0.0054608574, -0.031887814, 0.00654543, 0.010831909, 0.019094003, 0.012600385, 0.02030983, 0.00432102, 0.012987238, 0.011080601, 0.011419099, -0.008358808, -0.024827732, -0.024924446, 0.015695216, -0.02742518, -0.0038823553, -0.030146973, -0.006794122, 0.02035128, -0.003854723, -0.0029653043, -0.009899315, 0.024993526, -0.008952905, 0.030036444, -0.026458045, 0.017864361, -0.018472275, -9.308672E-4, -0.012779996, -0.010348342, -0.0029843017, -0.0011657429, 0.0064970735, -0.008137749, 0.0066352356, -9.602267E-4, 0.026568575, -0.018624254, -0.017546589, 0.016607085, -0.021650003, -0.012469131, -0.02366717, -0.0036992906, -0.02647186, -0.006020414, 0.012393141, -0.002804691, 0.006932284, -0.027812034, -0.033518128, 0.021111172, -0.004711328, 0.044211876, 0.011453639, 0.033518128, 0.036806386, 0.017518956, -0.020765767, 0.01505967, -0.0012987239, 0.00216051, 0.03092068, 0.022713851, -0.019370329, 0.010127283, 0.010666115, -0.0053952304, -0.033822086, -0.041144677, 0.032329936, -0.0036302095, 0.0077370782, -0.019881528, -0.006469441, -0.032108877, -4.567985E-4, -0.0069702785, 0.0050463714, 0.023611905, -0.032882582, -0.026499493, 0.012420774, -0.020682868, 0.016496556, -8.4624294E-4, -0.028129807, 0.012165174, -0.015184016, -0.009961489, -0.016427476, -0.01476953, 0.03180492, -0.018361745, 0.01921835, 0.012952698, 0.0067664897, -0.002934218, -0.019715734, 0.008607499, 0.032136507, -0.012517488, 0.025449462, 0.015294546, -0.0033158907, 0.015253098, 0.015253098, -0.028240336, -0.01126712, -0.020365095, -0.004117231, 0.019176902, 0.0048633064, 3.911715E-4, -0.006811392, -0.020005874, -0.013560612, 0.010548677, -9.4554696E-4, 0.0038961717, -0.036889285, 0.0071153487, 0.009581543, 0.0128698, -0.01188885, -0.011094417, 0.0038305447, -0.010762828, 0.0062449276, -0.003802912, -0.0035352232, -0.030948313, -0.020392727, -0.04117231, -0.031418066, -0.011101326, -0.0024437425, 0.007882149, -0.027052142, -0.009091067, 1.8964909E-4, 0.002996391, 0.0018859128, 0.007992678, -0.010914807, -6.52816E-4, 0.024261268, -0.008393348, -0.0068355706, -0.0015310089, 0.035977416, 0.011937207, -0.015874827, 0.004507539, 0.007868333, 0.02942853, -0.0232665, 0.0057026413, 0.0025646342, -0.021815797, -0.00798577, 0.0101134665, 0.025117872, 0.00627256, -0.012738547, -0.021580921, -0.016026806, -0.005685371, 0.035756353, 0.010438148, 0.0022986722, 0.016386027, 0.022257917, 0.024938261, 0.020061139, 0.0028444126, -0.030368032, 0.0080064945, -0.005961695, -0.03011934, 0.00561629, -0.0023435748, 0.0140303625, 0.0065074353, -0.021815797, -0.03445763, 8.911456E-4, -0.03970779, -0.031970713, -0.02104209, 0.030174606, 0.028461395, -3.5058637E-4, 0.008849284, 0.017449874, -0.0013626239, 0.009353575, -0.019674284, -0.01655182, 0.030865416, 0.007384765, 0.014728081, 0.021594739, -0.042830255, 4.3240425E-4, 0.008103208, 0.033158906, -0.0069737327, 0.020973008, -0.02439943, -0.008794018, -0.019632837, 0.0013177212, 0.0037027446, 0.011653975, 0.042940784, -0.034126043, -0.004203582, 0.003599123, 0.029677222, -0.005364144, 9.82678E-4, 0.029235104, -0.019011106, -0.0018047426, -2.2472932E-4, -0.010825002, -0.0097818775, -0.014562286, 0.0192598, 0.0091186995, -0.0054504955, 0.02286583, 0.03705508, -0.005965149, -0.012427682, -0.003789096, -0.004455728, -9.679983E-4, -0.0113914665, 0.021801982, 0.024192186, -0.024634305, 0.021194069, -0.030478563, 0.009236137, -0.014410309, 0.0060445922, 0.0019135453, 0.031362798, 0.013698773, -0.04357633, 0.003654388, -0.0029601234, -1.04754945E-4, -0.012621109, -0.007384765, -0.024952078, -0.004659517, -0.016717616, 0.0067699435, -0.025836315, -0.033518128, 0.010092743, -0.019038739, -0.004241577, 0.01761567, 0.19055319, -0.015598503, 0.015184016, 0.035424765, 0.014410309, 0.017698567, 0.017588036, 0.025767235, -0.01305632, 0.011881942, 1.8619503E-4, 0.013387909, 0.0020845209, 0.005346874, 4.7493225E-4, -0.012773087, -0.016358394, -0.015322179, -0.014797162, -0.031998344, -0.006096403, 0.007253511, -0.0072258785, -0.015722848, 0.0066525056, 5.491944E-4, -0.0012538212, 0.014216881, 0.018430825, -0.0023245777, -0.020171668, -0.02399876, 0.0031276448, -0.0061758463, -0.031003578, -0.011322386, -0.010624667, 0.018113052, 0.021608554, -0.01072138, 0.020047322, -0.018361745, -0.008075575, -0.016800513, 0.0020672507, 0.007868333, -0.0273561, -0.010244721, -0.014451757, -0.012206622, -0.043852653, 0.01228952, 0.022326998, 0.024040207, -0.008372624, -0.009021986, -0.004255393, 0.013836936, 0.0023902045, 0.013263563, 0.01819595, 0.02862719, -0.04026044, 0.0105279535, -0.012738547, 0.018665701, -0.02862719, -0.009429565, 0.013132309, -0.027991645, -0.010845726, -0.018720966, -0.020213118, 0.0048840307, -0.0076679974, -0.018030155, 0.0066248733, -0.010659207, 0.0013453536, 0.0120891845, -0.013153033, -0.03603268, 0.0039272583, -0.028958779, -0.011467456, -0.022672404, 0.0060273223, -0.013215207, -0.008966722, -0.012489855, -0.012883618, -0.035286605, -0.014783346, -4.1961346E-5, -9.999482E-4, 0.01885913, 0.04584219, 0.00432102, -0.0167038, -0.004918571, -0.027853481, 0.023860596, 0.016717616, -0.0117230555, -0.03376682, -0.010299985, -0.013429358, 0.010790461, 0.021428945, -0.018513722, -0.016012989, -0.016178783, 0.0033176178, -0.017601853, 0.005688825, 0.028102174, 0.014064903, -0.0049876524, 0.034236573, -0.012904341, 7.236241E-4, -0.017670935, 0.027729137, 0.008117024, 0.0021294237, -0.036226105, -0.023487559, 0.0019878075, 0.0040965066, -0.024302715, 0.008959813, -0.016814329, 0.02691398, -0.0073502245, -0.001566413, 0.010597034, 0.024040207, 0.0033780637, 0.002875499, 0.006877019, -6.670639E-4, -0.014493206, -0.0021985045, 0.012793812, 0.01425833, -0.021926327, 0.006089495, -0.0060480465, -0.008331176, -0.028323233, -0.01382312, -0.0042312145, 0.0010897537, 0.014437941, 0.03921041, -0.0021138804, -0.032578625, -0.04073019, -0.017753832, 0.04026044, -0.059354443, 0.012434591, 0.017712383, -0.0066076033, -0.022271732, -0.016924858, -0.17817385, 0.015653767, -0.0016752157, -0.01881768, 0.022105938, 0.018292664, 0.033932615, 0.024634305, -0.007170614, -0.028682455, 0.02964959, 0.015114935, -0.029704854, 1.6503896E-4, 0.003015388, 0.020365095, -0.0021225156, 0.036087945, 0.02013022, -0.007274235, 0.049047552, -0.002550818, -0.008994354, 5.88916E-4, 0.0025698154, -0.0126694655, 0.016966308, 0.015529421, 0.0030827422, -0.011695423, -0.036585327, -0.010907899, 0.03056146, 0.015087303, -0.017822912, 0.005367598, -0.014728081, -0.0043555605, -0.010983888, 0.0026561667, 0.023487559, 0.011356926, 0.026844898, 0.01852754, 0.011750688, 0.01848609, 0.017919626, -0.014424125, 0.01108751, -0.028350865, -0.019936793, -0.047279075, 0.006141306, 0.0035783988, -0.006811392, 0.026416596, 0.009084159, -0.0032399015, 0.0020033508, 0.00406542, -0.023031624, -0.020544706, -0.0021121532, -0.0117230555, -0.0047976794, -0.023722434, -0.011149682, 0.015004406, -0.03959726, -0.0013444901, -0.020434177, 0.024938261, 0.02497971, 0.011405283, 8.63945E-4, -0.011591801, -0.031279903, -0.0015301454, -0.004970382, 0.020088771, -0.003654388, 0.049047552, -0.0095331855, 0.007398581, 0.009850958, -0.024040207, 0.011322386, -0.020282198, 0.010990796, -0.020171668, 0.012344785, -0.01779528, -0.03832617, -0.0055403006, -0.008386441, 0.020185485, -0.014161617, -0.010369067, 0.007142981, 0.0039134417, 0.009616083, -0.023639537, -0.02611264, 0.023750067, 0.012296428, 0.007889057, -0.00273561, 0.01950849, 0.030533828, -0.0023988397, -0.008324267, 0.013070136, 0.020378912, 0.025504727, -0.0069840946, 0.012779996, -0.027687687, -0.019715734, 0.0043244744, 0.019563755, 0.05609382, -0.005668101, 5.2199373E-4, -0.012206622, 0.0070324517, -0.0151702, -0.081957765, -0.0020447993, 0.0034367826, 0.03548003, -0.029925914, 0.041448634, -0.0085867755, 0.020116404, -0.010051293, 0.029732486, 0.017491324, -0.01954994, 0.027563341, -0.012607293, 0.017919626, 0.0068321167, -0.01407872, 0.0042001284, -0.013208298, 0.032799687, -0.004248485, -0.0051396308, 7.737078E-4, -0.0222441, -0.00904271, 0.02399876, -0.03321417, 0.036198474, 0.013767854, 0.0048771226, 0.01546034, -0.02035128, 0.009477921, -0.046560634, -0.027950196, -0.013574428, -0.01648274, -0.02242371, -0.005619744, -0.061786097, 0.019052556, 0.014700449, -0.0020758857, -0.038851187, -0.02691398, 0.004372831, -0.015833378, 0.029069308, -0.023915863, -0.013132309, -0.018099237, -0.0177262, -0.024178369, 0.008655856, 0.021705268, 0.040094644, 0.023529008, -0.010631574, -0.015308362, -0.03730377, -8.0824835E-4, -8.00045E-4, -0.014161617, 0.014216881, 0.016386027, 0.02115262, 0.003916896, -0.011916482, 0.0068424786, 0.0058269873, -0.023805331, 0.041697327, -0.033711556, -0.011115142, -0.034043144, -0.0030136611, -0.030202238, -0.018734783, 0.036419533, -0.026098823, -1.3265722E-4, -0.025145505, 0.012172082, -0.015114935, 0.025629072, 0.028033093, 0.023238868, 0.019826263, -0.0018237398, -0.040177543, -0.011792136, 0.009761154, -0.009111792, 0.007861424, 7.048427E-5, 0.026789634, 0.01217899, 0.020365095, 0.0013496712, -5.1508565E-4, -0.004970382, -0.0018617344, -0.073170654, 0.031003578, -0.020144036, -0.013422449, -0.0027995098, -0.009505553, 0.003531769, 0.0031552773, 0.001729617, 0.016538005, -0.013595152, 0.012406957, 0.002882407, 0.0056542847, -0.015363627, 0.01276618, 8.168835E-4, -0.0062483815, 0.0011994198, 0.003592215, -0.009173964, 0.02399876, 0.018043973, 0.0030533827, -0.01126712, 0.015584687, 1.552165E-4, 0.009381208, -0.0074262135, -0.0323023, 0.022686219, -0.016123518, -0.0018703697, -0.0033193447, -0.015667584, -0.028903514, -0.0030568368, 0.0051292684, 0.018099237, 0.0057026413, 5.004059E-4, -0.028074542, 0.0019498129, -0.017698567, -0.008199922, 0.0049323873, -0.019743366, 0.010845726, 0.021650003, 0.005958241, 0.033739187, 0.008358808, -0.0028409585, -0.009422656, 0.011426006, -0.020544706, 0.05363453, -0.0020568885, -0.0120891845, -0.035314236, 0.01630313, -0.010272353, 0.017532771, -0.032744423, -0.006082587, 0.0017080292, 0.009477921, 0.007778527, 0.01137765, -0.023294132, -0.008303543, -0.0053779604, 0.008358808, 0.0217329, 0.018057788, 0.010120375, -0.0029393989, 0.015653767, -0.010617758, 0.012310244, 0.016054438, -0.021456577, -0.036999814, 2.9014045E-4, 0.0064314464, 0.027162671, 0.0044280956, 0.009243045, 0.004093053, 0.0073571326, -0.014714265, 0.021055907, 0.013608968, -0.0011994198, 0.01382312, 0.012731639, -0.02093156, -0.021967776, -0.002093156, 0.023045441, -0.007163706, 0.0021898695, -0.011736872, -0.020807214, -0.013305011, 0.0013868022, -0.022506608, -7.4996124E-4, 0.031086475, 0.010825002, 0.030754887, 0.016178783, -0.033822086, 0.015101119, -0.0273561, 0.0101134665, -0.012628017, -0.024081657, -0.0112256715, 0.04470926, 0.012476039, -9.023713E-4, 0.037276138, -0.015142567, 0.05040154, 0.009526278, 0.025670521, -0.015446524, 0.009484829, 0.007322592, -0.0023435748, -0.006925376, -0.0106453905, -0.0036889284, -0.008925272, 0.013899108, 0.012538211, 0.020226933, -0.028226519, 0.08123932, 0.030727254, -0.010887175, 0.025325116, -0.023791516, 0.027964013, 0.015626134, 0.0043555605, -0.0036060312, -0.022686219, 0.011757595, -0.004842582, 0.010831909, -0.030423297, 0.007868333, -0.020945376, 0.021926327, 0.030064076, -0.0032347206, -0.029621957, 5.2501605E-4, -0.015045854, 0.024054024, 0.009146332, -0.01217899, -0.021180252, 0.027383732, -0.012628017, -0.0053710523, -0.028378498, 0.0027839665, -0.027577158, -0.0064314464, -0.0035283149, 0.020061139, 0.0010957982, 0.0022295911, 3.5080223E-4, 0.015266914, 0.0035024097, -0.003331434, -0.0038409068, -0.027535709, -0.030478563, 0.023404662, -0.011260212, 0.0023850235, -0.017822912, -0.022810565 ], + "id" : "72d19cd6-3779-4710-a82b-450913966e0f", + "metadata" : { + "source" : "movies.csv" + } + }, + "2ed8cd24-c523-4f9c-8868-654b32985f66" : { + "text" : ",36668-36657-2080-36658-127585-76170-246655-1771-1930-10138-10195-38356-13475-1726-558-56292-68721-10528-1858-1865-41154\r\n329996,Dumbo,Family-Fantasy-Adventure,en,A young elephant whose oversized ears enable him to fly helps save a struggling circus but when the circus plans a new venture Dumbo and his friends discover dark secrets beneath its shiny veneer.,26.865,Walt Disney Pictures-South Australian Film Corporation-Tim Burton Productions-Moving Picture Company-Infinite Detective-Secret Machine Entertainment-British Film Commission,3/27/19,170000000,353284621,112,Released,Soar to new heights.,6.7,3945,Colin Farrell-Michael Keaton-Danny DeVito-Eva Green-Alan Arkin-Nico Parker-Finley Hobbins-Roshan Seth-Deobia Oparei-Joseph Gatt-Miguel Mu��oz Segura-Sharon Rooney-Zenaida Alcalde-Michael Buffer-Phil Zimmerman-Ragevan Vasan-Frank Bourke-Zelda Rosset Colon-Benjamin French-Jana Posna-Jo Osmond-Jewels Good-Lars Eidinger-Tom Seekings-Douglas Reith-Sandy Martin-Heather Rome-Scott Haney-Erick Hayden-Greg Canestrari-Chris Rogers-Max Gill-Peter Brookes-Simon Connolly-Nick Bartlett-Harry Taylor-Vincent Andriano-Liam Bewley-Ben Crowe-Josef Davies-Clive Brunt-Richard Leeming-Angela Ashton-Alice Bonifacio-Philip Rosch-Joseph Macnab-Rob Heanley-Amerjit Deu-Lucy DeVito-Richard James-Clarke-Matthew Castle-Bret Jones-Zee Asha-Carol Been-Jessica Barker-Wren-Arabella Neale-Rosie Akerman-Tim Southgate-Anatoli Akerman-Kamil Lemieszewski-Zo� Scott-Suan-Li Ong-Bern Colla�_o-Paul Riddell-Will Rowlands,circus-elephant-missouri-remake-live action and animation-1910s-live action remake-dumbo,/deTOAcMWuHTjOUPQphwcPFFfTQz.jpg,/5tFt6iuGnKapHl5tw0X0cKcnuVo.jpg,726166-662018-872325-287947-450647-579955-800377-526213-549087-420817-611059-725867-613689-11360-420818-611740-664524-251735-645488-811741-510276\r\n402,Basic Instinct,Thriller-Mystery,en,A violent police detective investigates a brutal murder that might involve a manipulative and seductive novelist.,33.585,Carolco Pictures-Canal+,3/20/92,49000000,352927224,127,Released,A brutal murder. A brilliant killer. A cop who can't resist the danger.,6.887,3379,Michael Douglas-Sharon Stone-George Dzundza-Jeanne Tripplehorn-Leilani Sarelle-Denis Arndt-Bruce A.", + "embedding" : [ -0.008321296, -0.02775555, -0.0019041676, -0.045928184, -0.031862512, 0.020883769, -0.0039358386, -0.007999182, -0.02786292, -0.035432614, 0.01772973, 0.035781574, 0.013220123, -0.015246762, -0.009428565, 0.019192666, 0.020991141, -0.009777523, 0.019340303, -0.022803035, -0.0011097857, -0.0024393476, -0.018655809, 0.011763897, 0.012012193, -8.8497654E-5, 0.026158396, -0.0057879984, -0.012864456, -0.008200503, 0.0073348195, -0.010448595, 0.002410827, -0.0130993305, -0.026534198, -0.014522004, 0.0053383796, -0.029339278, 0.030842481, 0.00343589, 9.7221596E-4, 0.031540398, -0.020091902, -0.017434457, 0.0032597336, 0.01995769, 0.021044826, -0.0077039097, 0.005073306, 0.013958303, 0.017796837, 0.034681015, -0.013723427, -0.03446627, -0.011213617, 6.756859E-4, -0.015246762, 3.7999466E-4, 0.0057443785, 0.008844732, 0.016401006, -0.018977923, -0.018843709, -0.009153426, -0.021608526, -0.025661804, -0.020494547, -0.0130523555, 0.011663236, 0.0033436175, 0.01940741, 0.00956949, 0.012132986, 0.010381488, 0.032238312, -0.028963478, -0.026144976, -0.006230906, 0.019259773, -0.009643308, 0.016387584, -0.010294248, -0.029044008, 0.0011785707, 0.014414632, 0.022588292, -0.01885713, 0.02127299, -0.018078687, 0.029473493, 0.00501291, 0.039163776, -6.182253E-4, 0.009952001, 0.012106144, 0.0021021338, -0.012495365, 0.029231908, -0.011971929, -0.03129881, -0.009509094, -0.0104955705, -0.0068180943, -0.0068617137, 0.0026138264, -0.0011777318, 0.02470888, -0.010555967, 0.0145488465, -0.008931972, 0.006026229, 5.6621723E-4, 0.03800953, -0.052128892, 0.0012641323, -0.010676759, 0.0037210956, 0.0028453465, -0.013998567, -0.019904003, 0.014803854, 0.022896985, 0.0226554, -0.036184218, 0.022494342, 0.0021122, 0.013528816, -0.026789205, 0.0017531762, -0.00664026, 0.04447867, -0.0035835258, 3.785267E-4, 0.019179245, -0.027809234, 0.047001902, -0.010750578, 0.026171818, -0.013206702, -0.007596538, 0.021595106, 0.037043188, -0.015032019, -0.03553999, -0.021595106, 0.009079607, 0.02516521, -0.0030030482, 0.020843504, 0.0053450903, 0.022977514, -0.002169241, 0.0050967936, 0.01951478, 0.02674894, 0.009186979, 0.013669742, 2.3844036E-4, 0.010522413, -0.011602839, -0.0045364485, 0.005147124, -0.010300959, -0.008348139, 0.017286822, 0.02805082, 0.017031813, -0.018373959, 0.0011886368, -0.00297285, -0.016588906, 0.028668206, 0.006717433, 0.020172432, 0.0053383796, 0.035620514, 0.010361356, -0.0117504755, -0.018803444, -0.0058651716, -0.0107371565, 0.014052253, 0.023004357, 0.040049594, -0.009683573, 0.010274116, 0.014186467, -0.029580865, 0.008864865, -0.008784336, -0.0043720356, 0.003445956, -0.006539599, -0.018118951, -0.64122295, -0.011669947, -0.0067912512, -0.013797246, -1.4564364E-4, 0.0014503549, -5.3371215E-5, 0.0055128587, -0.036506332, -0.0022497696, -0.01262958, 0.013770402, 0.031406183, -0.008770915, -0.024413608, -0.010079505, 0.019152403, -0.010522413, 0.0056437175, 2.1400914E-4, -0.025393374, 0.022507763, 0.012871166, 0.018910816, 0.0077844383, -9.336293E-4, -0.001103075, -0.005999386, -0.0075629842, 0.002378951, -6.4087403E-4, 0.013126173, 0.020964297, 0.0045062504, 0.028480306, 0.004227755, -0.02646709, 0.04614293, 0.009582912, 0.030439837, -0.009703705, -0.010535834, 0.025715489, 0.0033318738, -0.0025383309, 0.004986067, 0.015890991, -0.0032513451, 0.015756777, -0.008603146, -0.020400597, 0.0035902367, -0.003539906, -0.009918448, -0.012387994, 0.013985146, 0.011112956, -0.029580865, 0.023071464, -0.026185239, 0.008334718, 0.0048719845, 0.008401825, 0.014226732, -0.0061537325, 0.03352677, -0.002469546, -0.007401927, 0.02425255, -0.011998772, 0.011683368, 5.469239E-4, -0.006717433, -5.0665956E-4, 0.01587757, 0.010945189, 0.0347347, -0.00909974, -0.001586247, 0.018226322, -0.0026289255, -0.0039895247, 0.008710518, -0.008294453, 0.0176492, 0.0014520326, -0.018320272, 0.0061067576, 0.014199889, 0.006811383, 9.1014174E-4, 0.017340507, 0.016052049, 0.0055195694, -0.012703398, -9.61311E-4, -0.008395114, -0.009079607, 0.011569286, -0.046572413, -0.015273605, -0.027071055, 0.0027329416, -0.009509094, 0.023890173, 0.0097708125, 9.935015E-6, 0.0072408696, 0.041982282, -0.008093132, -0.008207214, -0.0038184011, -0.018306851, -0.0056604943, 0.010992164, -0.031325653, 0.026440246, 0.0047981665, 0.003955971, 0.012495365, -0.002637314, -0.0010602942, 0.0027044213, -0.015354133, 0.0036472776, 0.030251937, 0.0025400084, 0.020400597, 0.0075361417, -0.015770199, -0.006479203, 0.01087137, 0.016266791, -0.0032664442, 0.01105256, 0.008415246, 0.028319249, -0.0013211735, 0.008750782, -0.0046740184, -0.02739317, -0.009824498, -0.010696892, -0.014347524, 0.0077978596, -0.01234773, -0.018843709, 0.015555455, -0.007609959, -0.009764101, -0.03545946, -0.01011977, 6.9833454E-4, 0.0059557664, -0.011287435, 2.4829674E-4, -0.028158192, -0.010938478, 0.033848885, -0.0122336475, 0.008878286, 0.010636495, -0.015380976, -0.009140004, 0.009482251, -0.03137934, -0.015260183, -0.0061537325, -0.004895472, -0.026104711, 0.014240153, -0.007140209, 0.0044190106, 0.020414017, -4.1711336E-4, 0.022185648, -0.019152403, 0.009636598, 0.007549563, -0.011388096, 0.016588906, -0.009764101, -0.020118747, 0.0017733084, 0.050867278, 0.021487733, 0.01801158, -0.0073415306, -0.021702476, 0.0034056916, 0.005331669, -0.0068684244, -0.0117035005, -2.5123268E-4, 0.0031959817, 0.039995905, -0.009831209, 0.010146612, 0.01568967, 0.013025513, 0.037741102, 0.033016756, 9.202078E-4, 0.016924443, 0.004281441, -0.025876546, 0.007972338, -0.031164596, 0.017863944, 0.0033603944, 0.021219304, -9.3111274E-4, -0.006355054, -0.0056504286, 0.0071804733, 0.028480306, -0.013387891, 0.004529738, -0.016964708, 0.011153221, 0.014280418, -0.013864352, 0.01997111, 0.006707367, -0.012401415, -0.0014436442, 0.021970905, -0.007113366, -0.0058920146, -0.018709494, -0.0017867299, -0.0036338563, 0.0031171306, -0.0122336475, 0.002180985, -0.021165619, 0.02805082, -0.015300447, 0.05258522, -0.006207418, -0.008583014, 0.02944665, 0.05277312, -0.0044995393, -0.011663236, -0.010274116, 7.817992E-4, 0.030949853, -0.02182327, 0.034063626, -0.017353928, 0.019340303, -0.0097708125, 0.01087137, -0.002758107, 0.0023739182, -7.77605E-4, 0.020440862, 0.027970292, 0.024735723, 0.00975068, -0.017863944, 0.020762976, 0.006643615, 0.014669639, -0.0016927797, -0.021662213, -0.006371831, -0.0033654273, -0.018373959, -0.028104506, -0.0047881007, -0.016454691, 0.012736951, 0.0135355275, -0.007965628, -0.006402029, 0.006402029, 0.023205679, 0.02748712, -0.027782392, -0.033580456, 0.0043250606, 0.029768765, -0.01123375, -0.0025282647, -0.0075294306, -0.023487529, -0.02748712, -0.0038083352, -0.016145999, 0.035405774, -0.017863944, 0.0047142827, -0.014602533, -0.007838124, 0.001202897, -8.792095E-5, -0.00431835, 0.026319453, 0.0041942014, 0.019434253, -0.013220123, -0.0029040652, 0.037580047, -0.008039446, 0.008180371, -0.0032547005, 0.008609857, 0.016213106, 0.0035835258, 7.335659E-4, -0.042787567, 0.007576406, -0.024547823, 0.005992675, 0.0011114634, -0.002479612, 0.012830902, -0.0037580046, -0.027044212, -0.026869733, -0.018320272, 0.0010695214, 0.061416533, 0.025957074, 0.0148843825, 0.004653886, -0.005845039, 0.0034761543, -0.021098511, -0.012408126, -4.844303E-4, -0.002679256, 0.011441782, -0.0144012105, 0.031003539, -0.0050229756, -5.976737E-4, -0.013253677, -0.010529123, -9.873151E-4, 0.014897804, -0.020414017, -0.023326471, 0.02025296, 0.019071873, 0.028185034, -0.0028252143, -0.027272377, 0.0077844383, 0.01691102, -0.002935941, 0.018118951, -0.01951478, 0.009891605, 0.008770915, 0.01681707, -0.02293725, -0.008005892, 0.021944063, 0.0072878445, 0.023809643, 0.015152812, 0.010717024, 0.01021372, -4.3409987E-4, -0.0030349244, 0.01681707, -0.026279189, -0.014146203, 0.022762772, 0.031889353, -0.022306442, 0.026091289, -0.009274218, -0.01913898, -0.006294658, 0.032211468, -3.5692655E-4, -0.009905026, 0.00965673, -0.02963455, -0.016052049, 0.015904412, -0.027997134, 0.012911431, -0.013173148, -0.005751089, 0.0024410253, -0.036908973, -0.011367964, -0.028614521, 0.022413813, 0.0076837773, -0.01895108, -0.015421241, 2.5689485E-4, 0.009629887, -0.013770402, 0.0337952, 1.8467594E-5, 0.0151259685, 0.00617722, -0.007972338, -0.04300231, 0.0048250095, -0.02544706, -0.010059373, 0.014280418, 0.0074824556, 0.016736543, -0.01885713, 0.004301573, 0.01997111, 0.0070999446, -0.0061369557, -0.017850522, 0.044263925, -0.011468625, 0.009119872, 0.028319249, 0.01782368, -0.003925773, 0.028292406, -0.01680365, -0.009374879, -0.01625337, -0.0031792049, -0.021783005, 0.007133498, 0.012797348, -0.010750578, -0.030896166, -0.019930845, -0.009522515, 0.0032345683, 0.0030768663, 0.0067375656, -0.021675633, 0.009280929, 0.008207214, 0.0029376189, -0.016588906, 0.008965526, -0.013475131, 0.0045733573, 0.021662213, -0.012059169, 0.034976285, -0.016333899, -0.024131758, -0.008052867, 0.03315097, 0.023581479, 0.011502178, -0.0082743205, -0.010945189, -0.020172432, -0.037580047, 0.015555455, 0.003224502, -0.022601714, 0.0013807311, -0.012542341, 0.002295067, 0.018400801, -0.020695869, 0.0052511403, -0.027916607, 0.018977923, 0.008529329, 0.012958406, 0.027701862, -0.0015837306, 7.054647E-4, -0.010717024, -0.0065463097, -0.020601919, -0.042384923, -0.029500335, 0.0039358386, 0.04595503, 0.019581888, 0.051430978, 0.003556683, 0.020924034, 0.023487529, 0.015622562, 0.025473902, -0.026238926, 0.0030349244, -0.03156724, 0.01217325, 0.0055027925, 0.022896985, 0.011690078, 0.015273605, 0.0042311107, 0.022990936, 0.014938069, 0.006053072, -0.0059859646, -0.013018802, -0.013522106, -0.01141494, -0.011106246, 0.016843913, -0.014240153, -0.014253574, 0.04310968, 8.153528E-4, -0.008119974, -0.0035264846, 0.024118338, -0.012669845, 0.018239744, -0.020722711, 7.7959725E-5, -0.036694232, -0.0016038627, -0.022454077, -0.0025232318, -0.008965526, -0.005590032, 0.0023571413, -0.0074086376, -0.02061534, 2.2355095E-4, 0.019823475, -0.021004561, -0.038116906, 0.017327085, -0.0047981665, -0.02712474, -0.042894937, -0.028802421, -0.028265564, -0.011381386, 0.013434866, -0.009327904, 0.003420791, -0.012777216, -0.032238312, 0.014991754, 0.0015988296, 0.042035967, 0.011367964, 0.045820814, 0.034761544, 0.0010166744, -0.016374163, 0.010837817, -0.014777011, 0.0074824556, 0.027191848, 0.022883564, -0.008187082, -0.015313869, 0.011428361, 0.007489166, -0.034788385, -0.035137344, 0.02061534, 0.0148843825, 0.017595515, -0.009039343, 0.001502363, -0.01644127, 0.011676657, -0.015917834, 0.0044726967, 0.0130053805, -0.030037194, -0.018548436, 0.022185648, -0.0011894755, 0.013622766, 0.009764101, -0.02646709, 0.00993858, -0.021715898, -0.017380772, -0.028238721, -0.0028050821, 0.0058551054, -0.027889762, 0.007039548, 0.009146715, 0.0060195182, -6.2074186E-4, 0.0044190106, -0.012750373, 0.028641364, -0.008314585, 5.842523E-4, -0.0073415306, -0.00984463, -0.022722507, 0.012387994, -0.03983485, -0.019179245, -0.025044417, -0.010629784, 0.032453053, 0.014213311, 0.002711132, 0.0086367, -0.014240153, -0.01578362, -0.0018370603, -7.994148E-4, 0.008213924, -0.037660576, -0.0022078278, -0.012582605, -0.0042982176, 0.007932074, -0.016937863, 0.006673814, 0.001681036, 0.022870142, -0.013045644, 0.0082743205, -0.023393579, -0.01393146, -0.051108863, -0.030198252, -0.021809848, -0.009200401, -0.0029426517, -0.020494547, 0.0065261777, -0.003268122, -0.0044626305, -0.01002582, 0.00854946, -0.022615135, 0.019004766, 0.026735518, -0.0037345171, -0.0057141804, -0.007791149, 0.032936227, 0.012830902, -0.020588497, 0.004422366, 0.011542443, 0.024534402, -0.031084066, 0.009213822, 0.0015417885, -0.024131758, -0.018535016, 0.0031792049, 0.033687826, 0.0044324324, -0.001581214, -0.046008714, -0.011388096, -0.0050934386, 0.033204656, -0.02629261, 0.011287435, 0.022964092, 0.009173558, 0.019071873, 0.022534607, 0.002274935, -0.028668206, -7.4195425E-4, -0.024775987, -0.024829673, 0.001964564, -0.0055397013, 0.003157395, 0.0027396525, 0.0025299424, -0.028507149, 0.009119872, -0.034788385, -0.034493115, -0.003724451, 0.014173046, 0.046196613, 0.0043787463, 0.006519467, 0.026010761, -0.0019578533, 0.008207214, -0.02701737, 0.010468727, 0.00724758, 0.0074824556, 0.021407206, 0.029231908, -0.013904617, -0.009341326, -0.010287537, 0.011864558, 0.014709904, 0.0228433, -0.028158192, -0.018548436, -0.004059987, 0.0031657834, 0.0047344146, -0.0022044724, 0.023474108, -0.021796428, -0.0071066553, 0.0065899296, 0.012025615, -0.013079198, -0.00881789, 0.0024594797, -0.019850317, 0.0010972031, -0.02202459, -0.004838431, 2.6066962E-4, -0.02183669, 0.015112547, 0.0048417863, -0.01234773, 2.1115184E-5, 0.019675838, -0.0059423447, -0.01866923, 0.0062141293, -0.00984463, -0.0056437175, -5.074984E-4, -0.00687178, 0.031030381, -0.056799557, 0.031245124, -0.021568263, 0.008676964, -0.0156091405, -0.0040566316, -0.030251937, 0.034868915, -0.005254496, -0.057229042, -0.016333899, -0.007905231, 0.003724451, -0.016964708, -0.0053719333, -0.025742332, -0.027366327, -0.0046941503, 0.013663031, -0.016884178, -0.021957485, -0.0018739692, -0.018333694, -0.018508174, 0.0156091405, 0.16374163, -0.009817787, 0.035862103, 0.039351676, -3.6321787E-4, 0.025487324, 0.008119974, 0.015595719, -0.006462426, 0.004529738, -0.008502485, 0.016857335, 0.0030634447, 0.003882153, 0.023621744, -0.017340507, -0.018602123, -0.018561859, -0.028909793, -0.023943858, -0.018212901, -0.01644127, -0.022494342, 0.005375289, 0.012287333, -0.00562023, -0.005647073, 0.008576304, 0.009093029, 0.0073952163, -0.018186059, -0.02172932, -0.025688646, 0.015568877, -0.03400994, -0.018535016, -0.010441884, 0.0049927775, 0.0066369046, 0.011831004, 0.015018597, -0.007851546, -0.0053652227, -0.021662213, 0.0036640544, 0.028963478, -0.0049156044, -0.0027916606, -0.02748712, 0.009958712, -0.042465452, 0.012502076, 0.02952718, 0.014441475, -0.010535834, -0.014253574, 0.010233852, -0.0013958303, -0.007160341, 0.010576099, 0.003466088, 0.029231908, -0.011582707, 0.0013723428, -0.021434048, 0.00854946, -0.035969473, 0.010676759, 0.014334103, -0.036184218, -0.0043686805, -0.0040734084, -0.033580456, -8.673609E-4, -0.02136694, -0.016360741, 0.0056403624, 0.020561654, 0.0056437175, 0.014777011, -0.019112138, -0.026319453, 0.0023554636, -0.016293634, -0.013770402, -0.017528407, 0.027701862, -9.478896E-4, 0.01096532, -0.029580865, -0.01217325, -0.019702682, -0.016790228, -0.006100047, 0.010079505, 0.003445956, 0.010656628, 0.030117722, -0.0061436663, -0.008972236, -0.018910816, 0.04050592, 0.029097693, -0.014146203, -0.0172734, -0.016239949, -0.0042982176, 0.005600098, 0.02183669, -0.026601303, -0.016521798, -0.03355361, 0.009341326, -0.01234773, -0.012555762, 0.0117035005, 0.023326471, -0.023514371, 0.03438574, -0.0073482413, -0.009126583, -0.015568877, 0.018830288, 0.0017951183, -1.268746E-4, -0.02767502, -0.0030768663, 0.027339485, 0.009683573, -0.022091698, 0.003788203, -0.018333694, 0.004439143, -0.0014579045, -0.010133191, 0.004459275, 0.024735723, 0.007160341, 0.011777318, -0.011636393, 0.006073204, -0.020924034, 0.0073146876, 9.235632E-4, 0.017863944, -0.031271968, 0.014146203, -3.9907827E-4, -0.017031813, -0.039405365, -0.015890991, -0.026829468, 0.028721893, -0.0015896024, 0.04421024, -0.0011425006, -0.0224675, -0.04021065, -0.014468318, 0.02117904, -0.031728297, 0.012394705, 0.012247069, -0.017219715, -0.022440657, -0.015568877, -0.17115027, 0.017434457, 0.013475131, -0.019259773, 0.0075898273, 0.013998567, 0.009797655, 0.0023906948, -7.193056E-4, -0.017031813, 0.018977923, 0.00664026, -0.051404133, -0.0078045703, 0.0071670515, -0.0038385333, -0.010072795, 0.027446855, 0.0336073, -0.00209039, 0.025876546, -0.005328314, 3.6279846E-5, 0.00881789, 0.01402541, 0.025500746, 0.027836077, 0.008354849, -0.0018857131, -0.024923624, -0.03355361, -0.008931972, 0.0050498187, -5.2888884E-4, -0.018360537, 0.0018504817, -0.017904207, -0.02794345, 0.013347628, -0.0038519548, 0.021621948, 0.018548436, 0.028265564, 0.0072140265, 0.0239707, 0.028211877, 0.030627739, -0.020212697, 0.0148843825, -0.02982245, -0.006110113, -0.05097465, 0.01848133, -6.5219833E-4, -0.0048518525, 0.027044212, -0.0039593265, 0.0032429567, 0.0073616626, -0.023917016, -0.026896575, -0.030520367, 0.025299424, -0.0042109783, -0.013723427, -0.021326676, -0.013522106, 0.020400597, -0.033956256, 0.001811895, -0.022346705, 0.0053551565, 0.0072878445, -0.015528612, -0.005137058, -0.01087137, -0.038492706, -0.0088246, -0.003882153, 0.035432614, -0.037472676, 0.061684962, -0.011918243, 0.00418078, 0.012018904, 0.0013421446, 0.00454987, -0.007234159, 0.016414428, -0.012052458, 0.019246353, -0.016682856, -0.019662417, -0.003845244, 0.014481739, 0.020816661, -0.009535937, -0.004707572, 0.0061503774, -0.0012582605, -4.307445E-4, -0.02210512, -0.007126787, 0.03298991, 0.025769174, 0.028587678, 0.007623381, 0.0036606991, 0.026144976, 0.012616158, 0.0026809336, 0.0073012663, 0.018320272, 0.005210876, -0.026534198, 2.541686E-4, -0.01393146, -0.013985146, 0.016414428, 0.004996133, 0.02917822, -0.01625337, -0.02516521, -0.0030315688, -0.017904207, -0.00807971, -0.093252204, 0.004865274, 0.0035633936, 0.04160648, -0.0336073, 0.031594083, -0.020870347, 0.027567647, -0.018051844, 0.027621334, 0.0055329907, -0.012361151, 0.02478941, 0.0066637476, 0.037580047, 0.009334615, -0.031057224, -6.350021E-4, -0.011904822, 0.018736338, 0.0026608014, -0.011730343, -4.1145118E-4, -0.018441066, -0.011716922, 0.0136294775, -0.03409047, 0.029661393, 0.010670049, 0.021326676, 0.012179961, -0.016239949, 0.008281032, -0.029500335, -0.033016756, -0.007569695, -0.020628762, -0.019662417, 0.017850522, -0.055403724, 0.015595719, 0.009609755, 0.009609755, -0.011106246, 0.01262287, -0.002452769, -0.017528407, 0.0347347, -0.019380568, -0.028668206, -0.012757083, 0.0034761543, -0.02163537, -0.0023772735, 0.029741922, 0.023581479, 0.035217874, 0.017689465, -0.002800049, -0.017796837, 0.0028268918, -0.0107841315, -0.027513962, 0.025876546, -9.814432E-4, 0.008099842, -0.0068482924, 0.011649814, 0.014387789, -0.00566385, -0.022990936, 0.022118542, -0.029017163, -0.0026121486, -0.034868915, 0.009670151, -0.020172432, 0.0015686314, 0.019340303, -0.026614726, 0.013495263, -0.036479488, -0.0023940504, -0.008609857, -0.009884894, 0.020118747, 0.0050196205, 0.004167359, 0.0014520326, -0.036264744, -0.003115453, 0.025916811, 0.004559936, -0.01904503, -6.534566E-4, 0.033419397, 0.021165619, -0.011388096, 0.0033771712, 0.015944676, -0.019635575, 0.0012909753, -0.06549665, 0.017421035, -0.0034224684, 0.005878593, -0.0044190106, 0.006069849, 0.020776397, -0.0056068087, 0.028909793, 0.0062577487, -0.013770402, 0.012730241, -0.0017246557, -0.0028705115, -0.01644127, -0.008435378, 0.008529329, -0.0071670515, -0.0067375656, 0.005180678, -0.012656422, 2.1746935E-4, 0.013401313, -5.645395E-4, -0.0070328373, 0.017394193, 0.013226834, 0.015770199, -0.009066186, 0.003986169, 0.018642386, -0.019461095, -0.0119920615, 0.006230906, -0.020789819, -0.025755754, -0.010374777, -0.011971929, 0.019192666, 0.009334615, -9.384526E-5, -0.017340507, -0.012864456, -0.014978332, 0.006509401, 0.024641773, -0.018790023, 0.011274014, 0.016790228, -0.0051504797, 0.018065264, 0.016078891, -0.0048854062, -0.026051026, 0.03009088, -0.017689465, 0.03857323, 0.009945291, 0.011763897, -0.013387891, 0.019716103, 0.0013622767, 0.02478941, -0.01681707, -0.015340712, 3.8586656E-4, -0.0021893731, -0.003982814, 0.011274014, -0.02015901, 0.00993858, -0.009643308, 0.014199889, 0.021876955, 0.009207112, 0.006308079, -0.012790637, 0.018588701, -0.0023370092, 0.019300038, 0.024950467, -0.032936227, -0.021192461, 0.007133498, 0.014079096, 0.016414428, 0.0018337049, 0.0074623236, 0.007609959, 0.008314585, -0.03129881, 0.0053350246, -4.7688073E-4, 0.0087574925, 0.012307465, 0.016213106, -0.010938478, -0.022212492, 0.003352006, 0.012797348, -0.0022917117, 0.0045632916, -0.009294351, -0.02433308, -0.021044826, 0.0032731548, -0.0069053336, -0.038063217, 0.020091902, 0.021809848, 0.012911431, -0.0031641056, -0.02282988, 0.007126787, -0.04450551, 0.012247069, -0.009851341, -0.0170855, -0.014226732, 0.04633083, 0.0017196226, -1.914653E-4, 0.03231884, -0.010300959, 0.033580456, 0.010066084, 0.009509094, -0.032667797, 0.011227039, -0.0066369046, -0.004865274, -0.0073415306, -0.03250674, -0.0049726455, -0.0016374163, -0.019031608, 0.017890787, 0.026547618, 0.0020652248, 0.06710722, 0.009582912, 5.6045017E-5, 0.032238312, -0.02907085, -0.002862123, 0.0032479898, 0.023326471, -0.01801158, 0.008623279, 0.005358512, -0.0064557153, 0.0051404135, -0.014280418, -0.00362379, 0.01383751, -0.01244839, 4.7688073E-4, 0.007495877, -0.0135825025, 0.008099842, -0.01951478, 0.018373959, 0.010576099, -0.012153119, -2.1621109E-4, 0.014454897, 0.004700861, -0.021903798, -0.027809234, 0.0027430078, -0.01216654, 0.0040264335, 0.0026188595, 0.010549256, 0.0059020803, -0.011918243, 0.0028218587, 0.025098102, -0.005499437, -0.023675429, 0.024373345, -0.01754183, 0.013213413, 0.001959531, -0.017796837, 0.0078045703, -0.039056405, -0.019635575 ], + "id" : "2ed8cd24-c523-4f9c-8868-654b32985f66", + "metadata" : { + "source" : "movies.csv" + } + }, + "62c08916-a8d3-499e-920e-176ba1f73a31" : { + "text" : "Adam Leigh-Kevin Corey-Daniel Rampanen-Javier Botet-Haysam Kadri-Jordan Crawford-David Rampanen-Brad Carter-Rootie J. Boyd-Ray Chase-Glenn Ennis-Charles Fathy-Mark Krysko-Stephen Richard Lofstrom-T. Michael Morris-Bruno Stephane-Jay Tavare-Michael Villar-Jay Cardinal Villeneuve-Del Zamora-Duff Zayonce-Tighe Gill,rape-based on novel or book-parent child relationship-mountain-winter-grizzly bear-wilderness-forest-fur trapping-frontier-liar-based on true story-remake-revenge-murder-gore-native american-survival-bear-snow-scalping-nature-wild west-bear attack-indian attack-dead horse-starvation-19th century-wolves-child killing,/ji3ecJphATlVgWNY0B0RVXZizdf.jpg,/3uM41OT0RfBkE6Gb6U89LEskJBr.jpg,273248-286217-106646-76341-11324-68718-16869-194662-318846-293660-640-1422-27205-140607-49047-597-314365-64682-157336-228150-24\r\n72190,World War Z,Action-Drama-Horror-Science Fiction-Thriller,en,Life for former United Nations investigator Gerry Lane and his family seems content. Suddenly the world is plagued by a mysterious infection turning whole human populations into rampaging mindless zombies. After barely escaping the chaos Lane is persuaded to go on a mission to investigate this disease. What follows is a perilous trek around the world where Lane must brave horrific dangers and long odds to find answers before human civilization falls.,86.827,Paramount-Plan B Entertainment-GK Films-Hemisphere Media Capital-Apparatus Productions-Latina Pictures-2DUX�_-Skydance Media,6/20/13,200000000,531865000,116,Released,Remember Philly!,6.", + "embedding" : [ 0.017234595, -0.025156949, -0.013989209, -0.03274573, -0.018374301, 0.039167006, -0.0043399213, -0.008443561, -0.02157104, -0.04033451, 0.019138739, 0.031105664, 0.008492207, -2.358464E-4, 0.010563139, 0.0233223, 0.017220696, -0.020181155, 0.008248977, -0.01606709, 0.002705067, 0.0065150936, -0.015163664, -0.0040758424, 0.019889278, 0.008652044, 0.027033295, -0.008443561, 8.612954E-4, -0.010806369, 9.972437E-4, -0.015789112, 0.0068451916, -0.018110223, -0.012710514, 7.457611E-4, 0.011876581, -0.034358, 0.024045039, -0.0060738046, 0.008040494, 0.0056846365, -0.009757005, -0.01669254, -0.0013803312, -0.006633234, -4.1723746E-5, -0.015372147, -0.01986148, 0.027519755, 0.025226442, 0.03016054, -0.011237234, -0.021862917, -0.0052468223, 0.01373903, -0.010417201, -0.008381017, 0.0050313896, -0.006987655, 0.012821704, -0.014579911, -0.020598121, -0.0055004763, -0.003267971, -0.007310804, -0.0076930225, -0.00808914, 0.0014072602, 9.01689E-4, 0.03591467, 0.0044545867, 0.028631665, 0.012682715, 0.02549052, -0.026421746, -0.020751009, -0.007081473, 0.0037839664, 0.009701408, 0.016775932, -0.020139458, -0.016720336, 0.020403536, 0.020764906, -0.009868195, 0.004343396, 0.015803011, -0.027630948, -0.0034486563, -9.946376E-4, 0.022905333, -7.3359953E-4, 0.0116542, 0.0094303815, 0.011417919, -0.024239624, 0.009729207, -0.012112862, -0.040306713, 8.721539E-4, 9.086384E-4, -6.938575E-5, -0.013502749, -1.3269074E-4, 5.6898483E-4, 0.0038604103, -0.001415947, 0.022099199, 0.018235313, 0.0027797734, -0.012932896, 0.015163664, -0.048256867, -0.010236516, -0.016219977, 0.02807571, -0.023947747, -0.008360168, -0.016539652, 0.038416468, 0.02268295, 0.010861964, -0.03210638, 0.03338508, 0.039444983, 0.004503233, -0.0071301186, 0.007665225, -0.008874427, 0.019889278, -0.011494363, 0.017192898, 0.014885686, -0.02526814, 0.054149985, -0.016942719, 0.012773058, -0.044809945, -0.019402817, 0.03335728, 0.03763813, -0.025685105, -0.0069007874, -0.0153026525, 0.015789112, 0.01987538, 0.009777852, 0.012147609, -0.0036693008, 0.026894307, 0.0141004, 0.020556424, 0.012981541, -0.0027068043, -0.012133711, -0.014677203, 0.0066506076, -0.011327576, -0.01189048, -0.0057089594, -0.008902224, -0.011070447, -0.008193382, 0.0033617883, 0.016372865, 0.02221039, -0.01986148, -0.0048993505, -0.015441641, -0.007178765, 0.041140646, -0.018429898, 0.0080821905, -0.005788878, 0.024642691, 0.010250414, 0.0029517717, -0.029243216, -0.015552832, 0.0062058438, 0.0061641475, 0.034135617, 0.040084332, -0.008617298, -0.008235078, 0.026199363, -0.039139207, 0.008436612, -0.010813318, -0.0024653114, 0.019708592, 0.0027988842, 0.0024653114, -0.6538027, -0.0075331856, -0.0055838698, 0.016734235, 0.015914202, 0.028854048, 0.009173252, -0.0075331856, -0.02467049, -0.001510633, -0.024948465, 0.018179718, 0.012432536, -0.025004061, -0.020445233, -0.0068486664, -0.0053545386, -0.029215418, 0.0028579545, 0.004485859, -0.020056065, 0.031328045, 0.009798701, -0.013648687, 0.008791033, 0.016136585, -0.003592857, -0.020820502, -6.873424E-5, 0.003909056, -0.017067809, 0.018124122, 0.0145243155, 0.016386764, 0.049924728, -0.005542173, -0.013141379, 0.057207733, 0.033913236, 0.028103508, -0.035747886, -0.016539652, -0.0066123856, 0.0028874895, -0.016720336, 0.031494834, 5.125207E-4, 0.019444514, -0.0053371647, -0.010604835, -0.0040932163, 0.011688947, 0.0029882563, -0.02746416, 0.0054900525, -0.0011232021, 0.010743824, -0.034524783, 0.020667614, 0.002724178, -0.030549709, 0.012793907, 0.012376941, 0.0014367953, -0.0147188995, 0.01997267, -0.0057193837, -0.0048854514, 0.005003592, -0.028965238, 0.0045727273, 0.010083628, -0.013322064, -0.018346503, 8.7171956E-4, 0.0070536747, 0.03741575, 0.0072830063, 0.0034834035, 0.011959975, -0.0020778805, -0.014190743, 0.0039681266, 0.015594528, 0.030605305, -0.005639465, -0.021237468, 0.0057193837, 0.028214699, -0.0041036406, 8.095004E-5, 0.006796546, -0.007296905, 0.002312424, 0.001919781, -0.003530312, -0.0075470847, 0.0039959243, 0.03029953, -0.055011716, -0.006584588, -0.008749337, 0.024253523, -0.008992567, 0.0019962247, 0.010139223, -0.010236516, -0.021251367, 0.042780712, -0.014927383, -0.028464878, -0.004096691, -0.014385327, -0.009458179, -0.00125611, -0.028256396, 0.010577038, 0.0069946046, 0.015997596, -0.018207515, -0.0021942835, 0.0024201402, 0.0031793658, -0.0065428913, 0.019583503, 0.017095607, -0.008867477, -0.0056881113, 0.0040515196, 0.007637427, 0.007665225, -0.012488131, 0.019917076, -0.022849737, 0.0023158987, 0.018082425, 0.008478309, -0.0067478996, 0.009916841, -0.0074358936, -0.026324453, -0.0032714456, -0.0061467737, -0.016873224, -0.010875863, -0.014788394, -0.019958772, 0.008193382, -0.014301933, -0.011271981, 1.646147E-4, 0.01127893, 0.0026703198, -0.0011258082, 0.023363994, 0.0072621577, -0.013141379, -0.027088892, 0.0032836073, -0.015427742, 0.014496518, 0.014677203, -0.006139824, -0.020459132, 0.02758925, -0.008923072, 0.008672893, 0.0013499274, 0.0072274106, -0.015789112, 0.012828654, -0.018652279, -0.010062779, 0.011633351, -0.026574632, 0.018652279, -0.011105195, 0.010062779, -0.011953025, 0.009110707, -0.0061085518, 0.012425587, -0.016511854, -0.007699972, 0.01189743, 0.00980565, 0.0039959243, 0.0015766526, -0.016331168, 0.009951589, -0.008978668, -2.5278563E-4, -0.015163664, 0.0014289772, -0.011494363, 0.035970267, 0.011383172, 0.005323266, 0.005382336, 0.003021266, 0.035108536, 0.0050835107, 5.420558E-4, -0.013655636, 0.014329731, -0.029521193, 0.009923791, -0.036109254, 0.02857607, -0.0106743295, 0.022168692, -0.013057985, -0.019236032, 0.015052472, -0.008693741, 0.02612987, -0.0084713595, 0.011807087, -0.01691492, 0.004291275, 0.010646532, -0.010952307, 0.021529345, 0.004774261, -0.034219008, 0.008763235, 0.006094653, -9.051637E-4, 0.0108689135, -0.014927383, 0.0030855483, 0.016358966, 0.0022672527, 0.024086736, -0.008714589, -0.018860763, 0.013996159, 0.0037318456, 0.03480276, -0.0086659435, 0.0045449296, 0.023711467, 0.016664742, -0.0076930225, 0.0092357965, -0.013940563, 0.007394197, 0.017234595, -0.0030334278, 0.031050067, -0.011633351, 0.034774963, 0.0047777356, -1.9490988E-5, -0.0018850338, -0.015372147, 0.00668188, -0.002764137, 0.03616485, 0.0107785715, 0.012710514, -0.020250648, 0.012939845, -0.007077998, 0.0067235767, -0.010834167, -0.022988725, -0.0048958757, 0.0040862667, -0.02882625, -0.015024675, -0.011820986, -8.778003E-4, 0.015914202, -0.011230284, 0.0051669036, 0.008436612, 0.00472214, 0.01348885, 0.018374301, -0.0058062514, -0.016414562, 0.011320627, 0.027061094, -0.030827686, -0.009583268, -1.2411254E-4, -0.028117407, -0.024739983, -5.490052E-4, -0.015747417, 0.0208622, -0.021654435, 0.013725131, -0.0074011465, 0.004621373, 0.02318331, -0.016748134, 0.015191461, 0.011987773, -0.019805886, 0.012585424, 0.0062266923, -0.0016643893, 0.025448825, -0.0149134835, 0.003606756, -0.013447153, -0.0022707274, -0.0056220917, 0.01692882, -0.005521325, -0.03324609, 0.008797983, -0.009388684, -0.014996877, -0.010848066, 0.0042878003, 0.005601243, -0.018290909, -0.011021801, -0.019138739, -0.026102072, -0.008936971, 0.09106538, 0.05679077, 0.011855734, 0.026185464, 0.0043989914, 0.0049584205, -0.019249931, -0.008499157, 1.7710196E-4, -0.009840397, 0.020306244, -0.020347942, 0.0047256146, 4.2434977E-4, 0.027172284, 0.0023089491, -0.01312053, -0.0220714, 9.045122E-5, -0.01066043, -0.004305174, -0.011598604, 0.023280602, 0.017345786, 0.021237468, -0.02133476, 0.025768498, 0.002899651, 0.004774261, 0.012717463, -0.014051754, 0.013433254, -7.9049804E-4, 0.0059000687, 0.007345551, 0.011723694, 0.034385797, 0.004006348, 0.03886123, 0.006278813, 0.012495081, 0.012036419, -0.0042600026, -0.012925946, 0.025560016, -0.027575351, -0.0053614876, 0.020820502, 0.03911141, -0.037693728, 0.029354407, 1.9577857E-4, -0.027269576, -0.0064768717, 0.016289473, -0.011716745, -0.008693741, 0.0071301186, -0.018582786, 0.0112580815, -0.0049723196, -0.04011213, 0.017179, -0.015622326, 2.508311E-4, -0.005910493, -0.023725366, 0.008255927, -0.014899585, -2.1847281E-4, 0.009263595, -0.022293782, 6.6757994E-4, -0.0048402804, 3.0686092E-4, 0.003922955, 0.01558063, -0.0069598574, 0.0124116875, 0.009360887, -0.03594247, -0.021376457, 0.01951401, -0.006619335, 0.006424751, 0.0030438518, -0.015650123, 0.016887123, 0.002425352, 0.01066738, -0.013044086, -0.010180919, -0.025170848, -0.015858607, 0.031355843, 0.0026703198, 0.02280804, 0.010952307, 0.010528391, -0.0072274106, 0.00539276, -0.014232439, -0.015914202, -0.020264547, -0.016484056, -0.014705, -0.009798701, -0.001692187, -0.015747417, -0.027394665, -0.010465846, -0.022293782, 2.3888677E-4, 0.0067374757, 0.008311522, 0.003384374, 0.021306962, 0.0133707095, 6.4673164E-4, -6.567215E-4, 0.0067652734, -0.01804073, 0.018346503, 0.03077209, -0.014114299, 0.018318707, -0.005330215, -0.024503702, -0.001529744, 0.013822423, -0.009763954, 0.030243933, -0.007394197, 0.016331168, -0.028631665, -0.016275574, 0.0058201505, 0.0071162195, -0.0072065624, 0.011410969, -0.027144486, -0.0027606625, 0.001524532, 4.577939E-4, -0.003763118, -0.021974107, -1.5940263E-4, -0.0035407364, 6.801758E-4, 0.023739263, -0.024990162, -0.012592373, -0.0078042136, -0.010500594, -0.019778088, -0.044226192, -0.020917794, 0.0033913234, 0.02366977, 0.0076930225, 0.024045039, -0.014051754, 0.021988006, 0.010875863, 0.008485258, 0.031884, -0.026949903, -6.132875E-4, -0.027130587, 0.007734719, 0.016414562, 0.019472312, 1.4050886E-4, -0.007255208, 0.015358248, 0.028103508, 0.0067062033, 0.01263407, 0.007859809, -0.028103508, -0.019361122, 0.010806369, -0.028965238, -0.004868078, -0.022516163, -0.011292829, 0.04013993, -0.009777852, -0.007790315, -0.021932412, 0.025045758, -0.012814755, 0.022988725, -0.020473031, 0.0196252, -0.012821704, 0.006730526, -0.01729019, -0.004583151, -0.004524081, -0.015955899, 0.01827701, 0.0026199364, -0.017929537, -0.014927383, 0.022377176, -0.012342193, -0.01569182, 0.025434926, -0.011695896, 0.0027485008, -0.029993754, 0.0025365432, -0.017026111, -0.0154972365, -0.011730643, -0.0058271, 0.0015697032, -0.023350095, -0.04375363, 0.019013649, 2.7933464E-5, 0.04525471, 0.009569369, 0.03633164, 0.024197927, 2.0652846E-4, -0.015983697, 0.020903895, -0.010764672, 0.010257363, 0.009562421, 0.020751009, -0.009048162, 0.002628623, -0.005177328, 0.0034243332, -0.03521973, -0.039139207, 0.030104944, 0.0392226, 0.020764906, -0.022265984, -0.0050070668, -0.025532218, 0.0062058438, -0.01802683, 0.007734719, 0.013933614, -0.039333794, -0.005813201, 0.008735438, -0.015260955, 0.0031116088, -0.0051321564, -0.015761314, 0.024336915, -0.018930256, 0.024323016, 0.0038187136, -0.00920105, 0.028881844, -0.016706437, 0.008714589, 0.014579911, 0.012335245, -0.01348885, -0.0027919349, 0.0057437066, 0.035608895, -0.019541806, 0.017456977, 0.004676969, -1.7645046E-4, 0.0024288269, 0.01704001, -0.022613456, -0.010521442, -0.0124116875, -0.009868195, 0.024614893, 0.0033478895, -8.282856E-4, 0.0076721744, -0.015316551, -0.013454103, -0.007713871, -0.017498674, 0.007064099, -0.027519755, 0.013558344, -0.006779172, 0.0031289824, -0.0055004763, 5.5812637E-4, -0.0043850923, -0.012314396, 0.021849018, -0.015121967, -0.0039889747, -0.022252085, -0.0061988947, -0.040056534, -0.014260237, -0.012647969, -0.011070447, 0.019680794, -0.025796296, -0.009986335, 0.006330934, -0.011598604, -0.0038708344, -0.0043781428, -0.021974107, 0.009395634, 0.028464878, -0.010709077, -0.01201557, -0.002414928, 0.03016054, -0.010201768, -0.015094169, 0.010500594, -1.7351867E-4, 0.040640287, -0.02343349, 0.016011495, -0.0030195287, -0.025323736, -0.014982978, 0.025657307, 0.047228348, 0.021265266, -1.344281E-4, -0.018541088, -0.014037855, -0.009527673, 0.036109254, 0.009798701, -0.0020448708, 0.038333073, 0.019917076, 0.013996159, 0.03455258, 0.005351064, -0.028117407, 0.0075470847, -0.018054627, -0.025726803, -0.01066043, -3.5680996E-4, 0.015344349, -0.0064560235, -0.011827935, -0.04130743, 0.0056846365, -0.03138364, -0.014774495, -0.011209436, 0.013544446, 0.036887594, 0.014663304, -0.0067409505, 0.018596683, 0.004350345, 0.007331652, 9.216686E-4, -0.007623528, 0.014802293, 0.005907018, 0.020987289, 0.029743575, -0.037721526, -0.014030905, 0.010959256, 0.020528626, 0.020639816, 0.017220696, -0.017345786, -0.012085064, 0.008867477, 0.015942, -0.006907737, -0.013016288, 0.024448106, -0.025907487, 0.0059174425, 0.00834627, 0.023975546, 3.1120432E-4, -0.006768748, 0.015608427, -0.017568167, 0.0077694664, -0.0025070081, -0.01729019, 0.008005748, -0.030688697, 0.015413843, 0.003704048, 0.0050557125, 0.037860513, 0.019764189, -0.0085617015, 0.009298341, -0.015455539, 0.0054865777, -0.0101044765, -0.003330516, 0.018944155, 0.031995192, -0.024628792, 0.016748134, -0.03238436, -8.58255E-4, -0.009034263, 0.0093400385, 0.015566731, 0.039444983, 0.0074011465, -0.05959834, 0.007470641, -0.012168458, 0.0027015922, -0.003592857, 0.0023089491, -0.015719619, -0.0011362324, -0.010764672, -0.005271145, -0.028089609, -0.023447389, 0.021668334, -0.012071165, -0.029132025, 0.022696849, 0.18869102, -0.010438049, 0.017860044, 0.039389387, -0.006525518, 0.016567448, 0.028492676, 0.011445717, -0.0081725335, 1.444179E-4, -0.0016617832, -0.0033392026, -0.0019562654, -0.0011440505, 0.003292294, -0.019944873, -0.035775684, -0.028798452, -0.01385717, -0.025323736, -0.007540135, -4.1740033E-4, -0.0059556644, -0.021293065, 0.012050318, -0.0017529946, -0.012043368, 0.0028249447, 0.018235313, -0.0023489085, -0.0018746096, -0.023836557, -0.0032280118, -0.0072830063, -0.014635507, 4.4910712E-4, -0.009416482, 0.018985853, 0.026588531, -0.011119094, 0.002225556, 0.004430264, 0.0011066973, 0.0045136567, 5.724596E-4, 0.03227317, -0.021181872, 0.00251222, -0.024392512, 0.026421746, -0.02636615, 0.0058271, 0.0061884704, 0.026032576, -0.009763954, -0.0076582753, 0.0045136567, 0.0071162195, -0.01681763, -0.0019944874, 0.009868195, 0.031189056, -0.03652622, 0.01704001, -0.0053545386, 0.013843271, -0.03077209, -0.0068764645, 0.020639816, -0.029910361, -0.021793423, -0.034886155, -0.024100635, 0.017206797, -0.006827818, -0.024489803, -0.005740232, 0.0033200919, 0.00944428, 0.023850456, -0.02465659, -0.02476778, 0.010278212, -0.017901741, -0.028631665, -0.027519755, 0.016636943, -0.010528391, -0.015733518, -0.019222133, 0.0054553053, -0.020431334, -0.01583081, -0.0028145204, 0.0062961867, 0.0072691073, 0.018221414, 0.0018832964, 0.006560265, -0.0023211108, -0.024114534, 0.019333323, 0.026102072, -0.010771622, -0.027436363, -0.016789831, -0.014830091, 0.012286598, 0.024045039, -0.007866759, -0.017345786, -0.020778805, -0.0037804917, -0.01116079, 0.0055352235, 0.00361718, 0.015914202, -0.013398508, 0.02672752, -0.018596683, 0.009263595, -0.027700441, 0.019194335, 0.005444881, -0.004242629, -0.039583974, -0.03360746, 0.0031498307, 0.01876347, -0.0441706, -7.570539E-4, -0.010799419, 0.0025365432, -0.023600275, 0.002724178, 0.012231003, 0.01459381, -0.0021404254, -0.001456775, 0.0139544625, 0.007866759, -0.011473514, 0.010820268, -0.010799419, 0.015399944, -0.027491959, 0.013912765, 0.0017286715, -0.019361122, -0.029743575, -0.012043368, -0.008103039, 0.0038708344, 0.00134819, 0.030549709, -0.016748134, -0.019402817, -0.038194086, -0.008158634, 0.032717932, -0.04219696, 0.022710748, 0.008832729, -0.017943436, -0.024211826, -0.012237952, -0.18101884, 0.009680561, 0.0033287785, -0.0090412125, 0.010577038, 0.01681763, 0.019416716, 0.0060772793, -6.936403E-4, -0.02157104, 0.023614174, -0.00416966, -0.03360746, 0.013419356, -0.0028614292, 0.008054393, 0.0034642925, 0.04914639, 0.020792704, -0.00416966, 0.03947278, -0.002288101, -0.023141613, -0.0032662337, 0.010994003, -0.0039403285, 0.02095949, 0.008714589, 0.0011614241, -0.009611066, -0.03163382, -0.009889044, 0.014260237, 0.01667864, -0.015121967, -0.0019719016, -0.020250648, -0.009902943, -0.017248493, 0.0034625551, 0.036720805, -0.0049375724, 0.0024983212, 0.011751492, 0.02550442, 0.017679358, 0.032439955, -0.017637663, 0.009770903, -0.021821221, -0.022363277, -0.024197927, 0.0054726787, -0.008436612, 0.010146173, 0.022891434, 0.017582066, -0.01127893, 0.004979269, -0.01398226, -0.043336667, 0.0025139574, -0.0043816175, 0.0068729897, -0.010834167, -0.03702658, -0.009166302, 0.017484775, -0.02144595, 0.020514727, -0.03016054, 0.01804073, 0.0072621577, -0.0037804917, 0.010257363, -0.016511854, -0.01397531, 0.0076304777, 0.011334525, 0.013933614, -0.023363994, 0.036248244, -0.01459381, 0.005236398, -0.001280433, -0.004489334, 0.0031619922, -0.0066679814, 0.016581347, -0.015163664, -0.0044754352, -0.008658994, -0.017707156, -0.009479027, 0.0032488601, 0.015219259, -0.009367836, 0.0010797682, 0.01558063, 0.0050522382, -0.0030247408, -0.005371912, -0.029354407, 0.005959139, 0.028742855, -3.2749205E-4, 0.011681997, 0.03369085, 0.031439237, -0.0071648657, -0.0039681266, -0.005236398, 0.010118375, 0.014885686, -0.019222133, 0.011522161, -0.011438767, -0.016970515, 0.01177929, 0.015386045, 0.05212075, 0.0027623998, 0.00993769, -0.018290909, -0.002560866, -0.020181155, -0.07616579, 0.016748134, 2.8427524E-4, 0.0282008, -0.030883282, 0.035831276, -0.013308165, 0.009451229, -0.010861964, 0.035886873, -0.009513774, -0.031494834, 0.010910611, -0.0042878003, 0.017915638, 0.008916123, -0.013801575, -0.015677921, -0.026824813, 0.036609616, -0.001895458, -0.02428132, -0.0036797249, -0.022113096, -0.021849018, 0.011563857, -0.0245315, -0.001018092, 0.007901506, 0.007296905, 0.009958538, -0.029326608, 0.0233084, -0.03210638, -0.015677921, -0.020806603, -0.017498674, -0.028298093, 0.0073872474, -0.049035203, 0.009242746, 0.029632384, 0.005778454, -0.026268858, -0.0107785715, -0.005114783, -0.023155512, 0.027033295, -8.860527E-5, -0.012564575, -0.0042808508, -0.02685261, -0.028298093, -0.009861246, 0.018596683, 0.003811764, 0.01704001, 0.0062822876, -0.011209436, -0.0184021, -0.007908455, -0.0055491226, -0.019110942, 0.018819066, 0.0050452887, 0.0018780844, -0.009089859, -0.0068451916, 0.02343349, -0.024990162, -0.02514305, 0.007248259, -0.018985853, -0.007665225, -0.025476623, 0.0050591873, -0.030605305, -0.0035581097, 0.022349378, -0.03911141, 4.695211E-4, -0.03202299, 0.016122686, -0.014427024, 0.009666662, 0.017109504, 0.006584588, 0.001389018, -0.014135147, -0.035108536, -0.0070154527, 0.017443078, -0.0020483455, -0.010590936, -0.0017686308, 0.0089508705, 0.011313678, 0.011953025, -0.016247775, 0.024323016, -0.0129954405, 0.007084947, -0.075109474, 0.03346847, -0.026588531, 0.0015575418, -0.020208953, -0.005371912, 0.011105195, 1.8274838E-4, -6.732264E-4, 0.018235313, 0.004979269, 0.021279166, -0.0041661854, -0.008228129, -0.0044823843, -0.009291393, 9.7378937E-4, -0.0018207516, 0.012161508, 0.003354839, -0.015538933, 0.01189048, 0.0036727756, -0.0040271967, 0.003538999, 0.0116472505, -0.0062266923, 0.011800137, 0.0018798218, -0.0069007874, 0.033524066, -0.018610582, 0.0062093185, 8.355608E-5, 0.0013169176, -0.020042166, -0.0023732316, -0.0017477825, 0.019583503, 0.019180436, -0.0044754352, -0.02097339, -0.011508262, -0.017985133, -0.0018937206, 0.009333089, -0.007213512, 0.014232439, 0.016581347, 0.011119094, 0.026519038, 0.005027915, -0.012092014, -0.02022285, 0.008026595, -0.01680373, 0.05073086, 0.0024948465, 0.0045310305, -0.013419356, 0.026741419, 0.0026199364, 0.028798452, -0.02279414, 0.0039750757, -0.002826682, 0.008818831, -0.0010363342, -0.0045206062, -0.026421746, -0.009284443, -0.01362089, 0.008325421, 0.03396883, 0.009451229, 0.012675767, -2.738511E-4, 0.0060008354, -0.016859325, 0.0119321775, 0.021626636, 0.0025382806, -0.022599557, 0.015969798, -0.008332371, 0.005118258, 8.778003E-4, 0.016372865, -0.00297262, 0.024990162, -0.018318707, 0.023113815, 0.013405457, 0.0067409505, -0.009590218, 0.026143769, -0.022905333, -0.018457694, 0.0071162195, 0.014746698, -0.019305525, 0.0034729794, -0.009256645, -0.025073556, -0.023767062, 0.006007785, -0.027853329, -0.01091756, 5.5030826E-4, 0.009485977, 0.043586846, 0.0029500343, -0.013224771, 0.0053267404, -0.025184747, 0.0032210622, 0.0059765126, -0.01238389, -0.012557626, 0.028437082, 0.019791987, 0.0038604103, 0.032161977, -0.0072830063, 0.04647781, 0.009298341, 0.026949903, -0.010319908, 0.009840397, 0.0067027286, 0.010924509, -0.0063413577, -0.015594528, 0.0022029704, -0.009652763, 0.0037283709, 0.014802293, 0.03224537, -0.017818347, 0.070328265, 0.021862917, -0.0019371546, 0.008957819, -0.014260237, 0.014705, 0.015386045, 0.02979917, -0.0046283226, -0.025421027, 0.007248259, -0.01570572, 0.01508027, -0.032412156, -0.010722975, -0.0101948185, 0.014086502, 0.0114526665, 0.00993769, -0.014566013, -0.0013064934, 0.005969563, 0.029632384, 0.006890363, -0.01862448, -0.006914686, 0.02293313, -0.01938892, -0.0040306714, -0.023336196, -0.005875746, -0.023002625, -0.0030560133, -0.0073594498, 0.022738546, -0.006942484, -0.003839562, 0.0012552413, 0.010201768, 0.0023888678, -0.016539652, -0.019180436, -0.016372865, -0.028409284, 0.017818347, -0.0042113564, -0.014260237, -0.02857607, -0.030633101 ], + "id" : "62c08916-a8d3-499e-920e-176ba1f73a31", + "metadata" : { + "source" : "movies.csv" + } + }, + "da7b0f8b-e3d2-4da1-90cb-ee479013a337" : { + "text" : "1735,The Mummy: Tomb of the Dragon Emperor,Adventure-Action-Fantasy,en,Archaeologist Rick O'Connell travels to China pitting him against an emperor from the 2000-year-old Han dynasty who's returned from the dead to pursue a quest for world domination. This time O'Connell enlists the help of his wife and son to quash the so-called 'Dragon Emperor' and his abuse of supernatural power.,49.785,Universal Pictures-China Film Co-Production Corporation-Shanghai Film Group-Relativity Media-Alphaville Films-Sommers Company The-Beijing Happy Pictures-Giant Studios-Internationale Filmproduktion Blackbird Dritte-Nowita Pictures-Mel's Cite du Cinema-Hivemind,7/1/08,145000000,403449830,112,Released,A New Evil Awakens.,5.5,3934,Brendan Fraser-Jet Li-Maria Bello-John Hannah-Michelle Yeoh-Luke Ford-Isabella Leong-Anthony Wong-Russell Wong-Liam Cunningham-David Calder-Jessey Meng-Liang Tian-Albert Kwan-Wu Jing-Wei Binghua-Jing Guo-Alison Louder-Marcia Nasatir-Emerald Starr-Helen Feng-Stella Maryna Troshyna-James Bradford-Daniel Richard Giverin-Ken Tran-Allan Yuk-lun Chou-Fernando Chien-Mac Jeffrey Ong-Chris Mark-James Mark-Mike Ching-Darryl Quon-Alex Chiang-Paul Wu-Larry Lam-Brian Ho-Vi-Hung Luv-Huy Phong Doan-Kyle Burnett Cashulin-Charles Esposito-Michael Scherer-Scott Taylor-Kham Tri Vixaysy-Don Lew-Regis Attiow-Tony Wai-Wu Yungstun-Xiang Guangxu-Lam Cong-Quyen-Freda Foh Shen,china-sword-pyramid-mummy-yeti-chinese emperor-tomb-great wall of china-terracotta army-1940s-3rd century bc,/A3acM1lX5PNWQa6r5qeMAJOxbnT.jpg,/z1btePhD1jIDLbjy5OCnO0KVf5O.jpg,1734-564-841755-9334-6637-1979-88751-18823-1250-1996-217-561-57165-2059-9738-9543-7131-8960-19267-71676-36648\r\n70981,Prometheus,Science Fiction-Adventure-Mystery,en,A team of explorers discover a clue to the origins of mankind on Earth leading them on a journey to the darkest corners of the universe. There they must fight a terrifying battle to save the future of the human race.,114.592,Dune Entertainment-Scott Free Productions-Brandywine Productions-20th Century Fox,5/30/12,130000000,403354469,124,Released,The Search for Our Beginning Could Lead to Our End.,6.5,10820,Noomi Rapace-Michael Fassbender-Logan Marshall-Green-Charlize Theron-Idris Elba-Guy Pearce-Sean Harris-Rafe Spall-Kate Dickie-Benedict Wong-Emun Elliott-Patrick Wilson-Ian Whyte-Lucy Hutchinson-Branwell Donaghey-Vladimir Furdik-C.C.", + "embedding" : [ 0.009664865, -0.04207298, -0.007409504, -0.04014949, -0.024856381, 0.015049286, -0.012015047, -0.024666741, -0.012516238, -0.019560007, 0.03497503, 0.029367102, 0.026427684, 0.004707135, -0.005926249, 0.021916961, 0.019221365, -0.0062005497, 0.0070302244, -0.012583966, -0.0014426183, -0.018042888, -0.022418153, 0.027213335, -8.6946535E-4, 0.016972777, 0.02179505, -0.0113580795, -0.0011996421, -0.015564023, 0.014073995, -0.007917468, -0.0038435957, -0.0095226355, -0.00416192, 0.0013325594, -0.0052354177, -0.024409372, 0.025885856, -0.0056146975, 0.0034778614, 0.023583084, -0.011364852, 0.012841335, 0.0011733973, 0.010504699, 0.020332113, -0.02245879, -0.014778372, 0.013417028, 0.015631752, 0.04415902, -0.023528902, -0.018950451, -0.016986322, 0.0142500885, -0.014439729, 0.01567239, -0.0043888106, -0.0066272393, 0.006552738, -0.009637774, -0.024978293, -0.0064748502, -0.015821392, 0.005286214, -0.0036505694, -0.013979174, 0.025967129, 0.002785337, 0.02167314, 0.018760812, 0.014778372, 0.018232528, 0.024219733, -0.033349544, -0.025316935, -0.002698983, -0.012353689, -2.3789656E-4, 0.0088182585, -0.018042888, -0.0044362205, 0.0053844205, 0.021293858, 0.02990893, -0.01866599, 0.0017372376, -0.0012834562, -0.007693964, 0.009339768, 0.028473087, -0.0058348156, 0.021903416, 0.00383005, 0.005706131, -0.014778372, 0.037033975, -0.018422168, -0.035625223, 0.003117207, -7.492472E-5, -0.026021313, -0.005397966, -0.021050036, 0.007429823, 0.0036539556, -0.03879492, 0.023542447, 0.010870433, -0.007050543, -0.0068812217, 0.020738484, -0.03386428, -0.013477983, -0.026495412, 0.028662726, -0.011717041, -0.010538564, -0.011581584, 0.020697847, 0.036492147, 0.021090673, -0.035923228, 0.03464993, 0.025601394, 0.008615073, -0.0026922103, 0.0062479596, -0.0026871306, 0.020982308, 0.0010294741, 0.021998236, 0.01942455, -0.03806345, 0.05475177, -0.024341645, 0.0028242809, -0.028120898, -0.006708514, 0.037521623, 0.029556744, -0.029014915, -0.028066715, -0.03310572, 0.008147745, 0.0031595372, -0.006989587, 0.022634884, 0.0074230502, 0.019763194, 0.006549352, 0.006942177, 0.028635634, 0.030369487, -0.016769592, 0.016999869, -0.012502692, -0.0064545316, -0.026725689, 0.002461933, -0.006915086, -0.00685413, -0.022905799, -0.0020792668, 0.015645297, 0.02855436, -0.023014164, -0.013295116, -0.0013308661, -0.0049814354, 0.019207818, -0.013796307, 0.0103489235, -0.015062831, 0.021618957, 0.013924992, -0.0143720005, -0.03865946, -0.015523385, 0.004290604, -0.007693964, 0.03638378, 0.028500177, -0.013037748, 0.025371118, 0.0019116385, -0.016999869, 0.022025328, -0.030586217, 0.00979355, 0.02122613, -0.016132943, -3.4393408E-4, -0.646293, -0.019641282, -0.028689817, -0.00633262, -0.0039993715, 0.0057027447, 0.009183993, 5.8966177E-4, -0.016783137, -0.025249207, -0.02454483, 0.011676404, 0.018042888, -0.033999737, -0.018489897, -4.5589785E-4, -0.0034202922, -0.0025516734, 0.016322583, 0.0044904035, -0.047653813, 0.02198469, 0.0061125024, -0.0026549594, 0.0037386164, 0.018164799, -0.023623722, 0.0049915947, 0.004053554, 0.011798315, -0.017555242, 0.01408754, 0.011500309, 0.0012834562, 0.029963115, -0.0045716777, -0.0043176957, 0.0461096, 0.017799065, 0.03291608, -0.021199038, -0.0057027447, 0.01759588, -0.0037521622, -0.017731337, 0.012841335, 0.015591114, -9.7529124E-4, 0.018814994, 0.0028310537, -0.0069252453, 0.010795932, 0.0058517475, 0.0072469558, -0.0027599388, 0.019654827, 0.028066715, -0.046353426, 0.02236397, -0.012604285, -0.011947318, 0.03272644, 0.0037521622, -0.0029614312, -0.0113580795, 0.025912946, 0.0016034737, -0.009536181, 0.008791167, -0.036085777, -0.00151204, -0.0041991705, -0.017419785, -0.0022367355, -0.0071114986, 0.03446029, 0.035869043, 0.004531041, -0.008804712, 0.027606161, 0.015970394, 2.3302858E-4, 0.00699636, 0.023488265, 0.027010148, -0.0061903903, -0.035462674, 0.010829796, 0.00737564, 0.00628521, 0.0051202793, -0.0052726683, 0.011500309, 0.0135457115, -0.0013969016, 0.014791917, -0.0147241885, -0.009725821, 0.042696085, -0.04678689, -0.0080393795, -0.004564905, 0.010633384, -0.015658842, 0.0077413744, 0.014453274, -0.01456164, -0.0078700585, 0.04280445, -0.018178346, 0.0027328474, -0.0063800304, 0.004402356, -0.011656085, 0.014453274, -0.02625159, 0.01942455, 0.004056941, 0.02018311, -0.021117765, 0.0037961858, -0.0030901155, 0.01026765, -0.01778552, 0.0020301635, 0.036194142, -0.00378264, 0.004012917, -0.002240122, 0.0075991442, 0.011994728, 3.3356316E-4, 0.021077128, -0.011466445, 0.0028784638, 0.002539821, 0.028202172, -0.016620588, 0.009007898, 0.006434213, -0.015631752, -0.023583084, -0.006962496, -0.010762068, 0.019546462, -0.012956473, -0.024328098, 0.0037453894, 4.575911E-4, -0.012055684, -0.033186994, 0.008337386, 0.0018896268, 0.006600148, 0.0019217979, 1.9461378E-4, -0.016160034, -0.008587982, 0.015496294, -0.0070844074, 0.00699636, 0.015062831, -0.00732823, -4.5166482E-4, 0.02046757, -0.016634135, -0.02757907, 0.026834056, -0.0022722932, -0.020264385, 0.0046224743, -0.019072361, 0.006969269, 0.024179095, -0.00747046, -0.002343408, -0.020941671, -0.003315313, 1.865181E-5, -0.01022024, 0.0034084397, 0.0055029453, -0.011703495, -0.0070234514, 0.034758296, 0.024978293, 0.002358647, -0.021686684, -0.009353314, 0.012157276, -0.0072672744, -0.0036370235, -0.017609425, -0.016065214, 0.002263827, 0.02445001, -0.009515863, 0.006549352, 0.013003883, 0.006732219, 0.03933675, 0.0022485883, 0.006671263, -0.005391193, 0.00889276, -0.016688317, 0.0033661094, -0.01036247, 0.00969873, -0.005848361, 0.023298625, -0.0039993715, -0.013464438, -0.018313803, -5.058477E-4, 0.024246825, -0.008825031, -0.020955216, -0.013599895, 0.0016187126, 0.006606921, -0.021740867, 0.013796307, 0.015455657, -0.02451774, -0.004239808, 0.003718298, -0.001626332, -0.0017355443, -0.009312677, 0.0031307526, -0.013633759, -0.010030599, -0.0024839449, 0.017446877, 0.011351306, 0.034189377, -0.0072605014, 0.025872309, 0.0034507702, -0.0013342527, 0.023799816, 0.033837188, 0.008059698, -0.012238551, -0.005232031, 0.009095945, 0.00704377, 0.006305529, 0.0325368, -0.0103489235, 0.020481117, 0.00368782, 0.0047545447, 0.008411887, -0.003599773, -0.011364852, 0.013078385, 0.0315886, 0.012285961, 0.00927204, -0.0162684, 0.013173205, 0.0052794414, 0.03142605, 1.4170085E-4, -0.012685559, -0.011601903, 0.0018997861, -0.031832423, -0.021199038, -0.01541502, 0.006275051, -4.846825E-4, 0.0061362074, -6.1886973E-4, 0.017866794, -0.0031070476, 0.004405743, 0.014344908, -0.008974034, -0.023718541, 0.013884354, 0.021632502, -0.00936686, -0.034243558, -0.02274325, 0.007856512, -0.04261481, -0.011412262, -0.01031506, 0.01567239, -0.029367102, -0.006495169, -0.037792537, 0.005475854, 0.017352058, -0.022187876, 0.017812612, 0.01639031, 0.00420933, 0.015266017, -0.012631376, -0.0056925854, 0.017866794, -0.007829421, 0.0017152257, 0.0070099058, 0.0023281693, 0.014155269, -0.012448509, 0.0067457645, -0.034920845, 0.008127427, -0.013085158, -0.0047003618, -0.018977541, -6.425747E-4, 0.026116133, -0.0062005497, -0.007104726, -0.028120898, -0.020426933, -0.008838577, 0.06908313, 0.034216467, 0.009542954, -0.0021182108, -7.8438135E-4, -0.0037250707, -0.02539821, -0.025750399, -0.0057704733, -0.013125795, 0.00756528, 0.0029089416, 0.0036776608, 0.022607792, 0.017744882, -0.020779122, -0.0036844336, -0.006258119, -0.0306404, -0.0086353915, -0.03502921, 8.347545E-4, 0.025831671, 0.04470085, 0.0080393795, -0.0071589085, 0.019316185, -5.2024E-4, -0.0070302244, 0.012455282, -0.0072401827, 0.014060449, 0.012875199, 0.016444495, -0.008736984, -0.0034880207, 0.0157943, -0.002016618, 0.018395077, 0.0035151122, -0.0013046213, 0.02217433, 0.016430948, -0.019275548, 0.024368735, -0.015753662, -0.026427684, 0.0060041365, 0.030802948, -0.04646179, 0.028202172, 0.004002758, -0.03540849, -0.026495412, 0.025086658, 2.846716E-4, -0.008059698, -0.0011894829, -0.012976792, -7.170761E-4, 0.029367102, -0.04930639, 0.016051669, -0.0059634997, -0.011398717, -0.006231027, -0.014832554, -0.0017575561, -0.013376391, 0.026210953, -0.0044091293, -0.0071656816, -0.004036622, 3.1768926E-4, -0.005292987, 0.0026160155, 0.025669124, -0.014995103, 0.022865161, -0.011696722, -0.022418153, -0.031263504, -0.006180231, -0.033783004, -0.009976417, 0.011134575, 0.0025618328, 0.0065798294, -0.010206694, -0.013369617, 0.0025262753, 0.0056451755, -0.011723814, 0.011446127, 0.030477852, 0.004869683, 0.00941427, 0.012130185, 0.006197163, 0.0026177089, -1.6469152E-5, -0.016674772, -0.011554492, -0.014480365, 0.008581208, -0.01252301, 0.0025093432, 0.017487515, 0.013525393, -0.028012533, -0.019316185, -0.02321735, 0.014819008, -0.0013630373, 0.020779122, -0.003347484, 0.013288343, 0.025614941, -0.0033440976, -0.0014595505, -0.015564023, -0.003101968, 0.007192773, 0.041720793, 0.009556499, 0.028120898, -0.019207818, -0.016674772, -1.11434645E-4, 0.02533048, 0.0043549463, 0.01214373, -0.0098748235, 0.0041246694, -0.012536556, -0.020399842, 0.010674021, -0.003347484, -0.015279563, 0.016254853, -0.022824524, 0.0019488892, 0.0049611167, 0.0021486885, -0.012177595, -0.030802948, -6.6246995E-4, -0.0083441585, 0.010619838, 0.027849983, -0.008770849, -0.012292733, -0.023908181, -0.012739742, -0.007016679, -0.031669874, -0.025411755, -0.0074230502, 0.028256355, 0.009773231, 0.041856248, 0.016430948, 0.03676306, 0.01645804, 0.013715033, 0.030206937, -0.018340893, -6.8151864E-4, -0.047301624, -0.020169565, 0.006583216, 0.008438978, 0.00751787, 0.016525768, -0.00894017, 0.018991088, 0.01724369, 0.03464993, 0.006234414, -0.03386428, -0.03706107, 0.005966886, -0.019085908, 0.004293991, -0.022580702, -0.020034108, 0.057379633, 0.0015535238, -0.0015408247, -0.012516238, 0.028418904, -0.013261252, 0.0012081082, -0.020047653, 0.024626104, -0.025899401, 0.020318568, -0.020941671, -0.023339262, 0.009353314, 1.4307658E-4, 0.012136958, 0.00832384, -0.0054961727, -0.0035388172, 0.005895771, 0.003704752, -0.015713025, -6.049007E-4, -0.015062831, -0.027646797, -0.031507324, 0.0011259873, -0.03846982, 5.172769E-4, 0.01408754, -0.013694715, 0.01866599, -0.018530535, -0.031886604, 0.038578186, -0.0012157277, 0.036248326, 4.7748635E-4, 0.047599632, 0.039282564, -0.0011962557, -0.034541566, -0.0017177656, -0.0032797554, -0.026861146, 0.020237293, 0.036790155, -0.010003508, 0.007883605, -0.006363098, -0.0012682172, -0.031290594, -0.014995103, 0.019343276, 0.020955216, 0.013281571, -0.013078385, 4.8087275E-4, -0.008337386, 0.0055639013, -0.014642915, 0.008872441, 0.016471585, -0.026874691, -0.013552485, 0.0013232467, -0.0025872309, -0.0027430067, 0.016579952, -0.02369145, 0.02207951, -0.015184743, -0.0043718787, -0.009529408, -0.0026803578, 0.024951201, -0.026685052, 0.021253223, 0.0035015666, 0.026495412, 0.0010227013, 0.008330612, -0.008730211, 0.034297742, -0.0195871, 0.019939288, 0.0039180974, 2.5736852E-4, 0.004144988, 0.010308287, -0.024720924, -0.006187004, -0.029610926, -0.010037373, 0.018896269, -0.0039655073, -0.01456164, -0.008310294, -0.0221066, -0.019316185, 0.013911446, -0.001068418, -0.0045479727, -0.041395694, 0.011676404, 0.020711394, 0.011114256, 0.015875574, -0.0019319571, 6.523107E-4, -0.002707449, 0.020982308, -3.754702E-4, 0.026766326, -0.010755295, -0.016065214, -0.033539183, -0.014521003, 0.005841588, -0.023583084, 0.0012055683, -0.02814799, 0.004178852, -0.01069434, -0.0013537245, 0.0038910056, 0.0040196897, -0.027660344, 0.0142500885, 0.024775106, -0.009116264, -0.013437346, -0.003995985, 0.044484116, 0.02075203, 0.0077820113, -6.4638443E-4, -0.0037453894, 0.027308155, -0.0029461924, 0.0044904035, -0.0012275801, -0.016783137, -0.0013427187, 0.0045411997, 0.024599012, 0.016620588, -0.008493161, -0.0407455, 0.0014045209, -0.005211713, 0.03297026, -0.0074975514, 0.012970019, 0.023881089, -0.0059296354, 0.024612559, 0.019167183, 2.446694E-4, -0.01299711, 0.005083028, -0.01828671, -0.009353314, 0.0073688673, -0.0069354046, 0.026427684, 0.0064443722, 0.006732219, -0.025696214, 0.017541697, -0.020779122, -0.023488265, 0.005418285, 0.033810098, 0.049550213, 0.008005516, 0.0018286711, 0.021903416, -0.001036247, 0.023366353, -0.021876324, -0.0051778485, 0.014710643, -0.012069229, 0.003274676, 0.034081012, -0.014155269, -0.003078263, 0.0010667248, 0.00633262, -0.009854505, 0.04245226, -0.00747046, -0.0018269778, -0.006708514, -0.008127427, -0.0023704995, -0.013254479, 0.03828018, -0.029827658, -0.0038402092, 0.00912981, 0.01819189, -0.004009531, -0.0122453235, 0.006813493, -0.018042888, 0.010342151, -0.0032171065, -0.017907431, 0.00732823, -0.025059566, 0.024490647, 0.0036844336, -0.010335378, 0.031724058, 0.020792667, -0.019180728, -0.01664768, -0.0149680115, 0.0043888106, -0.01854408, -0.011202304, 0.023989456, 0.014588731, -0.041639518, 0.031913698, -0.012326597, 9.295745E-4, -0.02046757, 0.0072198645, 4.4319875E-4, 0.026983058, 0.019004634, -0.057758916, -0.015875574, -0.0051744618, -0.013003883, -0.009976417, 0.0021960984, -0.033755913, -0.0041720793, 0.004876456, -0.0075788256, 0.0034592361, -0.014629369, -0.015902666, -0.02378627, -0.022634884, 0.015266017, 0.16753337, -0.0016542701, 0.011689949, 0.04640761, 0.028418904, 0.011459672, 0.014805463, 0.028852366, -0.018774357, 8.521099E-4, -0.0133018885, 0.007964878, 0.0063495524, 0.0055097183, 0.0081342, -0.0103489235, -0.040312037, -0.009441361, -0.016864412, -0.035923228, -0.02644123, -0.015157651, -0.021117765, -0.02157832, 0.008926624, -0.013383163, 0.0019996858, 0.00383005, 0.013735352, -0.006518874, -0.016877957, -0.017731337, -0.0084051145, 0.011351306, -0.03427065, -0.0030427056, -0.0052218717, 0.0011827099, 0.0049340255, 0.0021402224, 0.00364041, -0.013715033, 0.0026651188, 4.914554E-4, 0.015631752, 0.021564772, -0.024409372, -0.0027921097, -0.012292733, -0.006386803, -0.040420406, -0.0013029282, 0.017514605, 0.018340893, -0.00709118, -0.0035049529, 0.004788409, 0.002475479, 0.006969269, 0.005506332, 0.0055842195, 0.032482617, -0.030396577, -0.0031053545, -0.0070640887, 0.025967129, -0.048060186, -0.011032982, 0.025547212, -0.047518358, -0.0144939115, -0.032157518, -0.02990893, -0.0025279685, -7.6152297E-4, -0.0035726815, 0.018218983, -0.009529408, 0.0051778485, 0.015211835, -0.016986322, -0.033945553, 0.017920977, -0.008188383, -0.0073688673, -0.024829289, 0.004788409, -0.011412262, -0.009332995, -0.00146717, 2.891163E-4, -0.015306654, -0.016593497, 0.013457664, 0.004527654, 0.01750106, 0.027010148, 0.0012961553, -0.00378264, -0.010850115, -0.042181347, 0.03936384, 0.017677154, -0.00865571, -0.024558375, -0.0142500885, -0.0074569145, -0.0018371372, 0.02931292, -0.019695465, 0.0040941914, -0.016038124, -0.001329173, -0.017663607, -0.006054933, 0.018340893, 0.004710521, 0.004605542, 0.026671506, -0.018923359, -0.01576721, -0.03294317, 0.009671638, -0.010152511, -0.0031307526, -0.024111368, -0.01576721, 0.014304272, 0.013444119, -0.023325715, 0.014886737, -0.030586217, -0.001048946, -0.0016568098, 0.0052286447, 0.020968761, 0.032184612, 0.00870312, 0.00775492, 0.010084783, -0.0075314157, 0.002240122, 1.2791703E-5, 0.00780233, 0.01121585, -0.0073959585, -0.007917468, 7.3485484E-4, -0.0091094915, -0.028093806, -0.024599012, -0.011825406, 0.004629247, 0.006291983, 0.05629598, -0.0032983809, -0.038388547, -0.025059566, -0.032455526, 0.03370173, -0.03863237, 0.0049611167, 0.019871559, -0.023799816, -0.017988706, -0.0062953695, -0.17349347, 0.019668374, 0.008310294, -0.041151874, 0.011452899, 0.021266768, 0.022160785, -0.002485638, -0.005238804, -0.018977541, 0.01569948, 0.016105851, -0.06539869, -0.009644547, 0.0048595243, 0.01873372, -0.0022045646, 0.025357572, 0.0273217, -0.0038808463, 0.029583834, 0.004950958, -0.022418153, 0.007795557, 0.013579576, -6.578136E-4, 0.025262753, -0.009664865, -0.007524643, -0.0138979005, -0.045919962, 8.704178E-5, -0.005032232, 0.011405489, 0.0011268338, 0.004375265, -0.009265267, -0.009089173, 5.892385E-4, -0.010023827, 0.022905799, 0.0214835, 0.024856381, 0.002382352, 0.010044145, 0.02634641, 0.0024111366, -0.022756796, 0.013389936, -0.010098328, -0.017568788, -0.024368735, 0.023136076, -0.004233035, 0.015428565, 0.004012917, 0.009929007, -0.0135457115, 0.018584717, -0.011540947, -0.0205353, -0.011060074, -0.0019319571, -0.011534174, -0.017121779, -0.029150372, -0.0084051145, 0.023298625, -0.020413388, 0.011669631, -0.035083394, 0.0075585074, 0.013830172, -1.8837006E-4, 1.673107E-4, -0.01456164, 0.008425432, 0.025831671, 0.0052896, 0.0076397816, -0.02520857, 0.01939746, -0.016430948, 0.013213842, 0.024273915, -0.0077684657, 0.0073214574, -0.0059296354, -0.0048561376, -0.025750399, -0.0058009513, -0.013159659, -0.04069132, -8.334846E-4, 0.014521003, 0.011317442, -0.024585467, -0.0075585074, -0.0089875795, -0.00837125, -0.0031984812, -0.01031506, -0.02836472, 0.026725689, 0.019790284, 0.009989962, -0.00492048, 0.024748016, 0.031913698, -0.00416192, -0.0025364344, 0.008621845, 0.022973526, 0.026712144, -0.011601903, 0.019289093, -0.009448134, -0.019993471, -0.008709893, 0.015807845, 0.025181478, -0.0072198645, 0.0048019546, -0.0031138205, -0.002477172, -0.0024196028, -0.08615073, 0.016566405, -0.0043312414, 0.03142605, -0.022865161, 0.020616574, -0.006545965, 0.023379898, -0.012577194, 0.014168815, -0.0020064586, -0.029096188, 0.010078009, -0.013037748, 0.023908181, -0.0042228755, -0.012211459, 0.0021690072, -0.0016805149, 0.02852727, -0.0035286578, 0.006911699, 0.014805463, -0.022214968, 0.0010514859, 0.00799197, -0.032238793, 0.01157481, 0.014101086, -0.002880157, -4.180122E-4, -0.027308155, 0.013511848, -0.042343896, -0.018083526, -0.015875574, -0.02063012, -0.01731142, 0.004906934, -0.05309919, 0.017650062, 7.0903334E-4, 0.0032475844, -0.017352058, -0.01567239, -0.0020691075, -0.0315886, 0.014155269, 0.004737613, -0.036844335, -0.016607042, -0.002722688, -0.0125975115, 0.017948069, 0.015049286, 0.0050119134, 0.016566405, 0.010768841, -6.80672E-4, -6.696661E-4, -0.0031324457, -0.016945686, -0.037602894, 0.011866043, 0.026915329, 0.013626986, 0.0022756795, -0.012130185, -0.0052828277, -0.024219733, -0.013227387, 0.032401342, -0.022404607, -0.0149680115, -0.033214085, 0.0027277677, 0.0063529387, -0.0019929127, 0.028012533, -0.03502921, -0.0046461793, -0.025520122, -0.01017283, -0.020264385, 0.028716909, 0.03635669, 0.023935273, -0.0028530655, 0.008967261, -0.0369527, 0.0075449613, 0.0195871, -0.0019573553, -0.013952083, -0.003244198, 0.041964617, 0.032211702, 0.010951708, -0.016011031, 0.006955723, -0.009393951, -0.024219733, -0.06957077, 0.0041483743, -0.003901165, -0.012008273, -0.012814243, -8.093563E-4, 0.0125975115, -0.007016679, 0.01598394, 0.008858896, -0.0075991442, 0.0023281693, 0.0013715033, 0.003995985, -0.011148121, -0.0037995721, 0.0011606981, -0.012983564, 0.0016593497, 0.0031696965, -0.019275548, -8.330613E-4, 0.0049611167, -0.010640156, -0.012468828, 0.01110071, 0.00704377, 0.021916961, -0.02220142, -0.018232528, 0.01968192, -0.010904298, 0.0062242546, -0.0016779751, -0.014480365, -0.011452899, -0.019790284, -0.008452524, 0.020061199, 0.033349544, 0.0028344402, -0.021551227, 0.0069354046, -0.0131935235, -0.009868051, 0.025885856, -0.034568656, 0.021524137, 0.010111874, -0.009969644, 0.03332245, 0.019383913, -0.015062831, 0.003951961, 0.023339262, -0.024382282, 0.037955083, 0.014873192, -0.010423426, -0.011385171, 0.033810098, -0.004239808, 0.019641282, -0.04321082, 0.009827414, -0.00354559, -0.009143355, -0.019112999, -0.010186375, -0.014128177, 0.0032408116, -0.013274797, 0.0072198645, 0.01838153, 0.005841588, 0.012807471, -0.0035591358, -0.00780233, 3.860528E-4, 0.028987823, 0.022377515, -0.023528902, -0.024829289, 0.0060583195, -0.0012639842, 0.02132095, -7.733755E-4, 0.002453467, -0.0020877328, 0.013979174, -0.012970019, 0.014006266, 0.011561265, -2.0768328E-5, -0.010863661, 0.005320078, -0.009231403, -0.01724369, 0.0047985683, 0.027457157, 0.0027328474, 0.0104708355, -0.018395077, -0.021212585, -0.01299711, 0.0012030285, -0.016146488, -0.02170023, 0.012739742, 0.020034108, 0.0063597118, 0.024301007, -0.01629549, 0.0064545316, -0.031155137, 0.004415902, -0.011750905, -0.014412637, -0.013166432, 0.037359074, 0.013464438, 0.013552485, 0.022729704, -0.02245879, 0.05079642, 0.004053554, 0.02896073, -0.015929757, -0.0022570542, -0.008872441, -0.0140198115, 0.008052926, -0.031886604, 6.628933E-4, -0.016160034, -0.0063732574, 0.0027565523, 0.026238043, -0.0077413744, 0.06631981, 0.012150504, -0.011398717, 0.012672014, -0.010111874, 0.009597137, 0.012021819, 0.024219733, -0.011405489, -0.009068854, 0.011446127, 3.0345569E-5, 0.005374261, -0.020074746, -0.010877207, 0.009685184, 0.00231801, 0.01819189, -0.020901034, -0.009102718, 0.0050525507, -0.011561265, 0.011540947, 0.0074230502, -0.017731337, 0.00680672, 0.044104837, 0.008919851, -0.013681169, -0.02931292, 4.4489198E-4, -0.015022194, 0.0023501809, 0.004771477, 0.022242058, -3.4139428E-4, -7.450141E-5, -0.009346541, 0.031155137, 0.019966379, -0.016579952, 0.017744882, -0.01752815, -0.004737613, -0.011419035, -0.02198469, 0.0018896268, -0.017121779, -0.028825274 ], + "id" : "da7b0f8b-e3d2-4da1-90cb-ee479013a337", + "metadata" : { + "source" : "movies.csv" + } + }, + "3ed5dd03-a856-44ed-9291-87a973166526" : { + "text" : "Sigur��sson-��lafur Darri ��lafsson-Kevin Guthrie-Brontis Jodorowsky-Derek Riddell-David Sakurai-Fiona Glascott-Wolf Roth-Victoria Yeates-Poppy Corby-Tuech-Cornell John-Sabine Crossen-Claudius Peters-Bart Soroczynski-Danielle Hugues-Alfie Simmons-Isaac Cortinovis Johnson-Olivia Popica-Alfie Mailley-Simon Wan-Morrison Thomas-Andrew Turner-Linda Santiago-Alfrun Rose-Maja Bloom-Olwen Fou��r��-Simon Meacock-David Wilmot-Ed Gaughan-Jamie Campbell Bower-Toby Regbo-Hugh Quarshie-Isaura Barb��-Brown-Keith Chanter-Jemima Woolnough-Hollie Burgess-Thea Lamb-Joshua Shea-Isaac Domingos-Ruby Woolfenden-Johanna Thea-Liv Hansen-Israel Ruiz-Jag Patel-Deepak Anand-Alexandra Ford-Andrew Blackall-Christopher Birks-Phil Hodges-Michael Haydon-Tim Ingall-Stephen McDade-Jeremy Oliver-Dave Simon-Jason Redshaw-Callum Forman-Ryan Hannaford-Donna Preston-Nasir Jama-Aykut Hilmi-Natalie Lauren-Deano Bugatti-Connor Wolf-Adrian Wheeler-Andy Summers-Al Clark,paris france-new york city-witch-magic-school of witchcraft-sequel-prison escape-old flame-wizard-magical creature-1920s-good versus evil-dark magic-follower,/fMMrl8fD9gRCFJvsx0SuFwkEOop.jpg,/qrtRKRzoNkf5vemO9tJ2Y4DrHxQ.jpg,259316-297802-424694-338953-335983-363088-12444-404368-767-12445-672-675-674-260513-673-671-383498-375588-299537-299536-324857\r\n131634,The Hunger Games: Mockingjay - Part 2,Action-Adventure-Science Fiction,en,With the nation of Panem in a full scale war Katniss confronts President Snow in the final showdown. Teamed with a group of her closest friends ��� including Gale Finnick and Peeta ��� Katniss goes off on a mission with the unit from District 13 as they risk their lives to stage an assassination attempt on President Snow who has become increasingly obsessed with destroying her. The mortal traps enemies and moral choices that await Katniss will challenge her more than any arena she faced in The Hunger Games.,97.654,Lionsgate-Color Force-Studio Babelsberg,11/18/15,160000000,653428261,137,Released,The fire will burn forever.,6.891,11776,Jennifer Lawrence-Josh Hutcherson-Liam Hemsworth-Woody Harrelson-Elizabeth Banks-Julianne Moore-Philip Seymour Hoffman-Jeffrey Wright-Stanley Tucci-Donald Sutherland-Willow Shields-Sam Claflin-Jena Malone-Mahershala Ali-Natalie Dormer-Wes Chatham-Michelle Forbes-Elden Henson-Patina Miller-Evan Ross-Paula Malcomson-Eugenie Bondurant-Sarita Choudhury-Stef Dawson-Meta Golding-Omid Abtahi-Joe Chrest-Misty Ormiston-Kim Ormiston-Gwendoline Christie-Robert Knepper-Mark Jeffrey Miller-April Grace-David Hallyday-Linds Edwards-Thomas Blake Jr.", + "embedding" : [ -0.009510889, -0.023729188, -0.025334923, -0.045674227, -0.008090432, 0.041611854, -0.018143427, -0.008090432, -0.026803413, -0.040568814, 0.032169588, 0.026556378, 0.017031765, -0.012290045, 0.004666237, 0.004841221, 0.022850838, -0.016867075, 0.0016237475, -0.036780927, 0.0031102528, 0.0057298644, 0.0014856475, 0.014726095, -0.005873969, 0.020215785, 0.022260696, -0.016098518, -0.004594185, 0.0045289947, 0.016469073, -0.023139047, -0.0020929445, -0.035930026, -0.022850838, 0.0023073857, 0.014122229, -0.025087886, 0.029616881, -0.018733568, 0.0077404636, 0.0060832635, -0.0024669296, -0.014245747, -0.023605669, 0.0025818702, 0.0038496456, -0.010643138, -0.004378028, 0.040349226, 0.030056056, 0.04699175, -0.014630025, -0.020984342, -0.010663724, -0.0038462144, -0.014328092, -0.0019351159, 0.0072807022, 0.01640045, 0.012207699, -0.012626288, -0.031318683, -0.022864562, -0.013195843, -0.021176482, -0.010101031, -0.025897615, -0.020956894, 0.012557668, 0.01961192, 0.0151240975, 0.022727318, -0.008001224, 0.0098539945, -0.030769715, -0.019433504, -0.0030656492, -0.0084678475, -0.0045633055, 0.012996842, -0.019200193, -0.0075689107, 0.0069856313, 0.008975644, 0.018637499, -0.0084747095, 0.015741687, -0.029013015, 4.4217744E-4, -9.6584245E-4, 0.033047937, -0.0035614367, 0.0020534873, -0.005530863, 0.0065087145, -0.020654961, 0.03000116, -0.028546391, -0.036643684, 0.0069444585, -0.0038873872, 0.001905952, -0.013003704, -0.015824033, -0.0041412855, -0.010704896, -0.0028151819, 0.014341816, 0.018692397, 0.008543331, -0.005575467, 0.018939432, -0.032032344, -0.0014144531, -0.011898904, 0.02678969, -0.038565077, -0.0060969875, -0.017127834, 0.025952512, 0.03867487, 0.0062205056, -0.03000116, 0.031016752, 0.028958118, 0.00396287, -0.01344288, -0.0038942492, -0.003691817, 0.025856443, 0.0031891672, 0.01526134, -0.007514014, -0.028820876, 0.04221572, -0.032032344, -8.4146665E-4, -0.014328092, -0.013113499, 0.02640541, 0.027873904, -0.02289201, -0.013099774, -0.01409478, 0.012715496, 0.015041752, -0.0047451514, 0.010746069, 0.01500058, 0.011521488, 0.014616301, 0.013140947, 0.015961275, 0.008419813, -0.013971263, 0.00578133, 1.3231012E-4, -0.0050539463, -0.025417268, 0.0055548805, -0.011253865, -0.0131683955, -0.021903865, -0.0070130797, 0.026309343, 0.024799677, -0.015508376, -0.016057344, 0.005815641, -8.4146665E-4, 0.012283183, -0.04188634, 0.019584471, 0.010574517, 0.016318105, -0.008207087, 0.0010353214, -0.019735437, -0.011747938, 7.3596166E-4, 0.011363659, 0.03052268, 0.045482088, -0.026377963, 0.01113721, 0.019296262, -0.01763563, 0.0084404, -0.006323437, 0.00883154, 0.014177126, 0.010039272, 0.0057950546, -0.6324124, -0.017498389, 0.02279594, -0.018239496, 0.007390496, 0.016578866, 0.021025514, 0.0017429767, -0.018225772, 0.0049475837, -0.03052268, 0.008330606, 0.008371778, -0.01782777, -0.020888273, -0.022027383, -0.010608827, -0.022315592, 0.011871456, -7.3338836E-4, -0.008618814, 0.023880154, 0.016537692, -0.0017772873, 0.009380509, 0.0039868876, -0.010855863, -0.019570747, 0.008817815, 0.006608215, -0.01087645, 0.015220167, 0.011418557, 0.020929445, 0.040678605, 0.0060180733, -0.022315592, 0.052563787, 0.029616881, 0.034502704, -0.03705541, 0.0015122382, 0.012420425, 0.010052996, -0.021478415, 0.02429188, 0.0065876287, 0.013504639, 0.009812822, -0.007939465, -0.01214594, -0.009394233, -0.009757925, -0.011727352, 0.011487178, 0.0073081506, -0.009229543, -0.023550773, 0.0230567, 0.018417912, -0.0355183, 0.025691751, 0.0039491463, 0.014039883, -0.0022387644, 0.013278189, 0.007870844, 0.0025115334, 0.009716752, -0.02597996, 0.012591978, 0.015563273, -0.010471585, 6.9564674E-4, 0.016359277, -0.008762918, 0.039168943, 0.005935728, -0.0016760712, 0.01616714, -0.004130992, -0.011802834, 0.0071983566, 0.01419085, 0.029397294, -0.023880154, -0.029314948, 0.0063302997, 0.014575128, 0.012187113, -0.010842139, 0.023825258, 0.0019711421, 0.012948807, -0.0076581184, -0.0024823695, -0.009311887, 0.008756056, 0.041282475, -0.064119585, -0.0037775934, -0.028491493, -0.0011768524, -0.007946327, 0.027352383, 0.02405857, -0.027489625, -0.0058465204, 0.037878864, -0.013051739, -0.020929445, -0.0041069747, -0.016112242, -0.015220167, 0.0022421954, -0.030056056, 0.02156076, 0.0075483248, -0.002909536, 0.0076649804, 0.01068431, 0.021190206, 0.009490303, -0.019831507, 0.003959439, 0.036973067, -0.013038015, -0.011082313, -0.014218299, 0.008817815, -0.0015722817, -0.002844346, 0.019296262, -0.01861005, 0.0069410275, -0.0021907296, 0.0028683634, -0.00435058, 0.03496933, -7.462548E-4, -0.021080412, 0.0027345521, -0.018843362, -0.019982474, 0.010094169, 0.0013192412, -0.030220747, -0.008412951, -0.0024703608, -0.00785712, -0.019145295, 0.017978737, -0.0045324257, 0.009085438, -0.0039800256, -0.003959439, -0.008618814, -0.008159053, 0.0068998546, -0.023838982, 0.011857731, 0.01585148, -0.018431636, -0.023331186, 0.010759793, 0.004048647, -0.0070199417, 0.011075451, 0.0062582474, -0.0137379505, 0.0226038, -0.016771005, 0.007328737, 0.022246972, -0.0054965527, 0.02510161, -6.94789E-4, 0.051191363, 0.0024326192, -0.008618814, 0.009723615, -0.023042977, -0.03656134, -0.0042888205, 0.00870116, 0.026679896, 0.002382869, -0.001709524, 0.007678705, -0.0037089721, -0.028711082, -0.013017429, -0.008968782, -0.0027808715, -0.006532732, 0.019172745, 0.010821553, -0.011590109, -8.573353E-4, 0.008282571, 0.04043157, 0.0065841977, 0.016002448, -0.013463466, 0.010574517, -0.04100799, 0.004679961, -0.02136862, 0.0040692333, -0.009339336, 0.029232603, -0.010464722, -0.01613969, -0.0030244763, -0.0055068457, 0.037274998, -0.012166527, 0.009956926, -0.021698002, 1.2930794E-4, 2.1980207E-4, -0.009160921, 0.017443491, 0.01837674, -0.03233428, 0.007514014, 0.020202061, -0.001941978, 0.0062273676, -0.0040726643, -0.021382345, -0.0040280605, -0.0064435243, 0.0023863, -0.022137178, -0.014822165, 0.018061083, -0.014506508, 0.04202358, -0.008330606, -0.0028975273, 0.013648743, 0.00802181, 4.7262805E-4, -0.0033692976, -0.01321643, 0.0027362676, 0.021917589, -0.016455347, 0.046470232, -0.026144652, 0.046964303, -0.0037089721, -0.0031222615, 0.011253865, -0.0117753865, 0.0027877335, 0.007767912, 0.0049407217, 0.022878285, 5.1851844E-4, -0.025842719, 0.013511501, 0.0040966817, -2.5046713E-4, 0.0039422843, -0.011768525, 9.70989E-4, -0.011054864, -0.0416942, -0.017553285, -0.015233891, -0.0012523356, 0.021780347, -0.0062273676, -0.0056749675, 0.0049132733, 0.013463466, 0.011960663, 0.017292526, 0.002243911, -0.0181846, 0.0142731955, 0.02500554, -0.016359277, -0.040568814, -0.0011871456, -0.027201416, -0.026707346, -0.0058430894, -0.008495296, 0.025787821, -0.016345553, 0.0054313624, -0.005932297, 0.019625643, 0.017333698, -0.017196456, 0.022425385, 0.027736662, -0.016606314, 0.007040528, 0.0011013692, 0.0025767235, 0.02672107, -0.005692123, -0.003436203, 0.0022490576, 0.009812822, -0.01613969, 0.01162442, 4.1883013E-6, -0.036808375, -0.0037673002, -0.0042750966, -0.013971263, -0.013991849, 0.01542603, 0.007459117, -0.022096004, -0.02681714, -0.037192654, -0.016661212, -0.008028672, 0.08426675, 0.034447808, 3.2316265E-4, 0.021601932, -0.010993105, 0.006790061, -0.0053627416, -0.030083504, -0.013875193, -0.010464722, 0.020078544, 0.0037089721, 0.015673067, 0.0010421835, 0.013799709, -0.012777255, -0.0057984856, -0.019529574, -0.009455992, -0.00993634, -0.030193299, -0.009483441, 0.023688015, 0.014931958, -3.2959587E-4, -0.007397358, 0.016057344, -0.0038942492, 0.004683392, 0.013765399, 0.0067008534, -0.001011304, 0.012152802, 0.010505895, 0.015563273, 0.002640198, 0.030056056, -0.0018973743, 0.01899433, -0.0012334648, -0.0023331186, 0.0037432828, 0.009867718, -0.005311276, 0.011164658, -0.0328009, -0.023935052, 0.036643684, 0.022466559, -0.016798453, 0.0203942, -0.0069787693, -0.018733568, -0.0084472615, 0.01282529, 0.0012523356, -0.0050573773, 0.008261984, -0.010155927, 0.006838096, -0.015137821, -0.023907602, 0.01224201, -0.0031805895, -0.002130686, -0.023729188, -0.0013329654, -0.006426369, -0.016798453, 0.012193975, -0.0064709727, -0.028793426, 0.0060352287, -0.0021032377, 0.01889826, -1.8066658E-5, 0.043368556, -6.6433835E-4, 0.009003093, 0.013984987, -0.035792783, -0.026515206, 0.020188337, -0.031263787, 0.0048721004, 0.01003241, -0.006920441, 0.017951287, -0.02003737, 0.018308118, -2.5840144E-4, 0.0012188829, -0.024827126, -0.013566398, 0.038949355, 0.018404188, 0.008577641, 0.00467653, 0.011349935, -0.003959439, 0.011418557, -0.025019266, -0.023893878, -0.020174613, -0.014684922, -0.014506508, -0.0058774, 0.0040726643, -0.029754123, -0.017704252, -0.025430992, -0.022576353, 0.017429767, -0.006110712, 0.016345553, 0.0068826997, 0.009078576, 0.009483441, -0.008522744, -0.010800966, -0.0051774643, -0.020105992, 0.013628157, 0.030056056, -0.012859601, 0.03192255, -0.008858988, -0.020270683, -0.010286308, 0.015906379, -0.0155221, 0.024827126, -0.007287564, -0.0117548, -0.011679317, 2.5904478E-4, 0.0030930976, -2.9099648E-4, -4.0465023E-4, 0.028518943, -0.014039883, -0.0059117107, 0.021121584, 0.0062651094, -0.015275064, -0.024456572, 0.012132216, -0.006745457, -0.009462854, 0.018788466, 3.7226966E-4, 0.0054965527, -0.025856443, -8.749194E-4, -0.017882667, -0.034338016, -0.04240786, -0.0053696036, 0.030056056, 0.023399806, 0.028271906, 0.0013072325, 0.022205798, 2.5690036E-4, -0.0010344635, 0.01347719, -0.011459729, -0.016153414, -0.043533247, 0.004556443, 0.0025441286, 0.0235096, 0.00483779, 0.005572036, 0.01295567, 0.020778479, -0.008920747, 0.0032577883, 0.002513249, -0.022425385, -0.017223904, 0.02422326, -0.022782216, -0.013628157, -0.031675514, -0.012495908, 0.04133737, -0.003305823, -0.007507152, -0.015055477, 0.024827126, -0.027791558, 0.017690528, -0.021409793, 0.011603833, -0.019721713, -0.0031651498, -0.024868298, -0.0055068457, 0.009167783, -0.009490303, 0.0062102126, -0.008207087, -0.022425385, -0.00957951, 0.028134665, -0.028793426, -3.8084728E-4, 0.029726675, -0.022878285, -0.0049956185, -0.014355541, -0.013820296, -0.022192074, -5.5926223E-4, -0.001578286, -0.017690528, 0.008989369, -0.018555155, -0.03845528, 0.012578254, -0.012873325, 0.04528995, 0.024044845, 0.03033054, 0.02574665, 0.018953158, -0.019845232, 0.013003704, 0.0023211099, -0.005819072, 0.017127834, 0.023001803, -0.03175786, -0.017429767, -0.0050367913, 0.007973775, -0.034832086, -0.032389175, 0.022562629, 0.028711082, 0.014259472, -0.01685335, -0.005088257, -0.030605026, 0.0012652022, -0.017951287, 0.0037226963, 0.0019008054, -0.017745424, -0.01282529, 0.002698526, 0.014602577, 0.017196456, 0.0017369724, -0.030467782, 0.008708022, -0.02405857, 0.0056612436, -0.027434729, -0.013209568, 0.043560695, -0.031730413, 0.015631894, 0.0019865818, 0.0025818702, 0.016729832, 9.838555E-4, -0.0037947486, 0.030550128, -0.0037124034, 0.01685335, 0.0024532054, 0.008858988, 0.008296295, 0.011391108, -0.015535824, -0.016647486, -0.00957951, -0.009366784, 0.02821701, -0.006199919, -0.01542603, 0.011988112, -0.025389818, -0.021643106, 0.008419813, -0.012646874, 0.0074179443, -0.016825901, 0.005331862, 0.0069856313, 0.0033521424, -0.002218178, -3.5146886E-4, -0.0032680815, 0.0059082797, 7.59979E-4, -0.02659755, -0.002825475, -0.019653093, -0.00678663, -0.019502126, -0.016908247, -0.014039883, 8.367489E-4, 0.025938788, -0.007081701, 0.0048206346, 0.0071228733, 7.4893534E-5, -0.0041584405, 0.0016906532, -0.019021777, 0.015343686, 0.012180251, -0.002276506, -0.0068861307, -0.0029901657, 0.028011147, -0.012262597, 0.0048172036, 0.0019625644, 0.0038359214, 0.033130284, -0.01987268, 0.014630025, 0.0023554203, -0.015041752, -0.017251352, 0.036973067, 0.019488402, -3.997181E-4, -0.0021358328, -0.01623576, 0.001981435, -0.010505895, 0.023811532, -0.008653125, 0.005695554, 0.014616301, 0.022452835, 0.031071648, 0.027421005, -0.015892655, -0.01259884, -0.007767912, -0.004000612, -0.016276933, 0.00399375, 0.0017481233, 0.0020054525, 0.011837145, -0.01828067, -0.029589431, 0.011308762, -0.020929445, -0.031263787, -0.004041785, 0.016180864, 0.03159317, 0.014671198, -0.0027740092, 0.020078544, 0.011576385, -0.006292558, -0.017978737, -0.017045489, 0.020984342, 0.008351192, 0.022864562, 0.011535212, -0.031291235, -0.0027499918, 0.016743556, 0.021094136, -0.0064400933, 0.019982474, -0.010245135, -0.0032749434, -0.0062582474, 2.294519E-4, -0.005987194, -0.010348067, 0.030824613, -0.010313756, -1.6951564E-4, 0.019062951, 0.015288788, -0.011006829, -0.0065807668, 0.024662435, -0.0123380795, 0.013367397, -0.0051946198, -0.013038015, -0.0038976802, -0.017182732, 0.020243235, 0.0051774643, 0.0035305573, 0.04188634, 0.026515206, -0.009126611, 0.002367429, -0.009435406, 0.0017875805, -0.016963145, 0.011919491, 0.0040898193, 0.042627446, -0.029067911, 0.013140947, -0.040733505, 0.001393009, -0.008193363, -0.0062582474, -0.012427287, 0.03175786, 0.005867107, -0.04575657, 0.0181846, -0.0078914305, 0.012688047, 0.0058979862, -0.004463805, -0.0213, 0.007507152, -0.008310019, -0.0059220036, -0.012386114, -0.022288144, -0.011871456, -0.005349017, -0.01045786, 0.01951585, 0.19411546, -0.011747938, 0.015384858, 0.04811714, -0.0017961581, 0.0104166875, 0.033322424, 0.023564497, -0.0065601803, 0.006196488, -0.016125966, 0.0055994843, -0.00448096, 0.0036540753, 0.01607107, -0.023784084, -0.025513338, -0.020188337, -0.0058430894, -0.017196456, -0.0041001127, 0.026158376, 0.0074453927, -0.020654961, 0.009956926, 0.0023193944, -0.0056097778, 0.010128479, 0.016647486, 0.013744812, -0.006158747, 0.012358666, 0.0030656492, 0.0028923808, -0.014218299, -0.0031102528, 0.0031256925, 0.018527705, 0.026775965, -0.0058053476, 0.0051157055, 0.0045701675, -0.010265721, -0.0039045424, 0.008179639, 0.023180218, -0.03334987, 0.008488434, -0.009256991, 0.015439754, -0.040211983, -0.012180251, 0.01626321, 0.02156076, -0.004422632, -0.006659681, 0.009902029, -0.0031068218, -0.018623775, -0.0021512725, -0.0021598502, 0.026707346, -0.014643749, 0.02184897, -0.003058787, 0.02165683, -0.041639302, -0.006965045, 0.0104098255, -0.022686146, -0.031483375, -0.029479638, 0.001589437, 0.008838402, -0.0072807022, -0.01763563, -0.002490947, -0.0029078205, 0.0035048244, 0.027544523, -0.02581527, -0.016414175, 0.024978092, -0.0069890623, -0.016729832, -0.029726675, 0.0087286085, -0.015316237, -0.020901997, -0.0074316687, -0.006611646, -0.0069993553, -0.007170908, -0.012420425, -0.0072395294, -0.013909504, 0.028656185, 0.012193975, -0.0062754024, -0.014890785, -0.030248195, 0.030550128, 0.008639401, 0.0046387888, -0.022837114, -0.010567654, -0.0016091656, 0.002552706, 0.031126546, -0.011734214, -0.013058602, -0.043368556, 6.331372E-5, -0.015055477, -0.0044089076, 0.021286275, -0.013387983, -0.015933827, 0.02331746, -0.019529574, -0.0044432185, -0.026940657, 0.022837114, 5.867107E-4, -0.0051740333, -0.034886982, -0.03085206, 0.018953158, -0.021382345, -0.022658698, 0.01003241, -0.017470941, -0.0011802835, -0.0023331186, 0.016304381, 0.0036197647, 0.016825901, -0.013607571, 0.004590754, 0.0010533343, -0.006841527, -0.021354897, 0.015686791, 0.025019266, 0.0131821195, -0.02003737, 1.3188124E-4, -0.026117204, -0.015055477, -0.03656134, -0.023235116, 0.007376772, 0.007383634, 0.005808779, 0.032389175, 0.0032715125, -0.018006185, -0.040211983, 0.0038530766, 0.033047937, -0.042105928, 0.0346125, 0.0039045424, -0.016510244, -0.016469073, -0.0043299934, -0.17610927, 0.014588852, 0.001381858, -0.041419715, 0.0074453927, -0.0039011114, 0.032965593, 0.004120699, 0.019296262, -0.004789755, 0.030797165, -0.003331556, -0.038071003, 0.0072258054, 0.0031479944, 0.012605702, -0.009744201, 0.02964433, 0.020202061, 0.0065670423, 0.048693556, -0.010540206, -3.240204E-4, 0.009133473, 0.014369265, -0.012715496, 0.03411843, 0.0017584165, 0.011089175, -0.0038016108, -0.030220747, -2.23662E-4, 0.020627512, -0.0023279719, -0.014959407, 0.0037844554, -0.017072938, -0.019309986, -0.009757925, 0.009401095, 0.041035436, -0.0028889496, 0.0056029153, 0.015302513, 0.018939432, 0.009099162, 0.023619393, -0.0145614045, 0.005150016, -0.025444716, -0.0020140302, -0.029863916, 0.020380476, -0.01961192, -1.7369725E-4, 0.023084149, 0.0043231314, -0.0039114044, 0.010945071, 0.011823421, -0.015233891, -0.0026539222, 0.008893299, -0.010999967, 9.924332E-4, -0.0024429122, -0.016716108, -0.004007474, -0.032389175, 0.00522893, -0.016016172, 0.019474678, 0.024154639, 0.009154059, 0.0060386597, -0.0052014817, -0.031510822, 0.004251079, -0.0060455217, 0.01880219, -0.006498421, 0.03620451, -0.013353673, 0.0038599386, 0.0056166397, -0.028546391, 7.0250884E-4, 0.013147809, -0.010149065, 0.0015585575, 0.018513981, -0.02165683, -0.039059147, 0.0016777867, -0.0035305573, 0.0027002415, -0.012784117, 0.005733296, 0.027256314, -0.012866463, 0.017690528, -0.026062306, -0.019927576, 0.024360502, 0.025636856, -0.0043334244, 0.0033950305, 0.02217835, 0.0065910597, 0.0018562017, -0.005510277, -0.008412951, 0.01626321, -0.0011425419, 0.0015182425, 0.005733296, -0.009634407, -0.02714652, 0.0011948654, 0.007692429, 0.07213453, 0.009099162, 0.011555798, 0.0061038495, -0.00418932, -0.0109519325, -0.09524613, -0.011727352, 0.026542654, 0.04474098, -0.026734794, 0.028848324, -0.003921698, 0.010251997, -0.023715463, 0.02184897, -0.013566398, -0.034365464, 0.017169008, 0.011157796, 0.014451611, 0.010842139, -0.011823421, -0.026775965, 0.0041104057, 0.021711726, -0.011734214, -0.0028975273, -0.0071228733, -0.031181442, -0.033102833, 0.027517075, -0.019337434, 0.011699903, 0.016743556, 0.010608827, 0.0078982925, -0.017978737, 0.017292526, -0.0261721, -0.019488402, -0.029561983, -0.02165683, -0.035216365, 0.003185736, -0.048254382, -0.005510277, 0.016908247, 0.0048686694, -0.010739207, -0.020751031, 0.017814046, -0.022439111, 0.023893878, 0.0084747095, -0.02893067, -0.005108843, -0.025993684, -0.023948776, -0.0012652022, 4.987898E-4, 0.012804703, 0.021492139, 0.0046319263, -0.011844007, -0.022933183, -0.001880219, 0.014026159, -0.0037329895, 0.00886585, 0.0131615335, 0.012193975, 0.0011485462, -0.011651868, 0.029754123, -0.026130928, -0.009531476, 0.03178531, -0.03411843, -0.0076100836, -0.014959407, 7.2909956E-4, -0.024895746, -0.021162758, 0.023042977, -0.03208724, -7.5955014E-4, -0.033898838, 0.01899433, -0.029891366, 0.018239496, 0.003822197, 0.022727318, -0.0015259624, -0.0019454091, -0.034173325, -0.008646263, 0.0030073212, 5.6183554E-4, -0.008776642, -0.0042064753, 0.024923196, 0.021505862, -0.0034928157, 0.0039834566, -7.393927E-4, -0.018623775, 0.0030639335, -0.08014948, 0.03831804, -0.014437886, -0.010835277, -0.025156507, -0.004594185, -0.01321643, -8.350334E-4, -0.008694298, 0.037714176, -0.014259472, 0.015755411, -0.016894523, -0.003564868, -0.0031514254, 0.0036849547, -2.9764418E-4, -2.251631E-4, 0.014822165, 0.009442268, -0.016455347, 0.02094317, 0.019035501, -5.1808957E-4, -0.007953189, 0.018637499, 2.8027443E-4, -8.47471E-4, -0.020256959, -0.005750451, 0.040678605, -0.02510161, 0.0022473421, -8.888581E-5, -0.007507152, -0.040568814, -0.011741076, 0.014492783, 0.025019266, 0.011027416, -0.0053627416, -0.0092775775, 0.0026968105, -0.015069201, 5.2966934E-4, 0.027270038, -0.018308118, 0.014959407, 0.024621263, 0.020147165, 0.029177705, 0.023331186, -0.0011922922, -0.005565174, 0.021478415, -0.01188518, 0.06911521, 0.014890785, -0.007033666, -0.03686327, 0.036122166, -0.0016434761, 0.031565722, -0.0328009, 0.016414175, -0.0070679765, 0.006289127, -0.008955058, 9.735623E-4, -0.026652448, -0.022315592, -0.009106024, 0.006800354, 0.035957474, 0.031263787, 0.018033633, 0.01065, -4.8163458E-4, -0.009236405, 0.009902029, 0.013058602, -0.0049578766, -0.0355183, 0.035216365, -0.0015645619, 0.005647519, -0.0059597455, 0.005276965, 0.0056200707, 0.007088563, -0.0014504791, 0.017361147, 0.015741687, 0.0033298405, 0.0045358567, 0.013923228, -0.014849613, -0.012578254, 0.00837864, 0.013209568, 6.613362E-4, -0.0069959243, -0.011054864, -0.023166494, -0.039992396, -0.0033161163, -0.011075451, -0.031812757, 0.003156572, 0.020366753, 0.027517075, 0.0065773358, -0.009915753, 0.0112332795, -0.04539974, 0.017800322, -0.011370522, -0.0014290351, -0.016002448, 0.033102833, 0.02545844, -0.0012368959, 0.033651803, -0.008666849, 0.04559188, -0.0021821521, 0.024593813, -0.015549549, 0.0029541398, 0.018459085, 0.004182458, -0.011178383, -0.017155282, 0.008200225, 0.0036026095, -0.009888305, 0.013038015, 0.024758505, -0.02405857, 0.06719381, 0.023111597, -0.004055509, 0.008165915, -0.009895167, 0.016963145, 0.014849613, 0.010540206, -0.015041752, -0.015178994, -0.006193057, -0.013463466, 0.002971295, -0.04325876, -0.011940077, 0.0026522067, 0.0043231314, 0.014437886, -0.014575128, -0.017196456, 0.0029764415, 0.008220811, 0.024415398, 0.009915753, -0.007294426, -3.986459E-4, 0.036835823, -0.01675728, 0.0022885147, -0.02013344, -0.0025647148, -0.017292526, -0.0012995127, -0.004933859, 0.027846456, -3.630487E-4, 0.006062677, 0.008522744, 0.019557023, 0.0044020456, -0.022150902, -0.013676192, -0.02802487, -0.026748518, 0.0031136838, 6.888918E-5, -0.01272922, -0.029671777, -0.006323437 ], + "id" : "3ed5dd03-a856-44ed-9291-87a973166526", + "metadata" : { + "source" : "movies.csv" + } + }, + "0e946bd4-16a9-4cc2-b647-f9e385874617" : { + "text" : "9,7558,Bill Skarsg��rd-James McAvoy-Jessica Chastain-Bill Hader-Isaiah Mustafa-Jay Ryan-James Ransone-Andy Bean-Jaeden Martell-Jack Dylan Grazer-Finn Wolfhard-Sophia Lillis-Chosen Jacobs-Jeremy Ray Taylor-Wyatt Oleff-Teach Grant-Nicholas Hamilton-Javier Botet-Xavier Dolan-Taylor Frey-Molly Atkinson-Joan Gregson-Stephen Bogaert-Luke Roessler-Stephen King-Peter Bogdanovich-Will Beinbrink-Jess Weixler-Martha Girvin-Ryan Kiera Armstrong-Jackson Robert Scott-Jake Weary-Katie Lunman-Kelly Van der Burg-Jason Fuchs-Joe Bostick-Megan Charpentier-Juno Rinaldi-Neil Crone-Ry Prior-Owen Teague-Jake Sim-Logan Thompson-Connor Smith-Amanda Zhou-Rob Ramsay-John Connon-Doug MacLeod-Brandon Crane-Erik Junnola-Josh Madryga-Peter George Commanda-Kiley May-Lisa Cromarty-Kevin Allan Hess-Stephen R. Hart-Rocky L. Burnham Jr.-Billy Merasty-Sladen Peltier-Ari Cohen-Alex Bird-Brody Bover-Edie Inksetter-Martin Julien-Sonia Maria Chirila-Colin Mcleod-Declan Prior-Marko Vujicic-Eric Woolfe-Kate Corbett-Shawn Storer-Janet Porter-Scott Edgecombe-Anthony Ulc-J. Bogdan-Louise Stratten-Laura Thorne-Thomas Duhig-Carla Guerrier-Liam MacDonald-Chris D'Silva-Tristan Levi Cox-Torian Matthew Cox-Lola Del Re Hudson-Thiago Dos Santos-Divan Meyer,clown-carnival-sequel-remake-maine-creature-fear-ancient evil-loss of a friend-2016,/zfE0R94v1E8cuKAerbskfD3VfUt.jpg,/8moTOzunF7p40oR5XhlDvJckOSW.jpg,346364-475557-17439-299018-15402-418950-521029-420818-429617-48209-501170-466272-177330-525702-567609-804706-439079-138843-320288-338967-530385\r\n82690,Wreck-It Ralph,Family-Animation-Comedy-Adventure,en,Wreck-It Ralph is the 9-foot-tall 643-pound villain of an arcade video game named Fix-It Felix Jr. in which the game's titular hero fixes buildings that Ralph destroys. Wanting to prove he can be a good guy and not just a villain Ralph escapes his game and lands in Hero's Duty a first-person shooter where he helps the game's hero battle against alien invaders. He later enters Sugar Rush a kart racing game set on tracks made of candies cookies and other sweets. There Ralph meets Vanellope von Schweetz who has learned that her game is faced with a dire threat that could affect the entire arcade and one that Ralph may have inadvertently started.,88.88,Walt Disney Animation Studios-Walt Disney Pictures,11/1/12,165000000,471222889,101,Released,The story of a regular guy just looking for a little wreck-ognition.,7.3,11170,John C. Reilly-Sarah Silverman-Jack McBrayer-Jane Lynch-Ed O'Neill-Dennis Haysbert-Edie McClurg-Alan Tudyk-Jess Harnell-Mindy Kaling-Joe Lo Truglio-Raymond S.", + "embedding" : [ 3.7813798E-4, -0.03072266, -0.0056223813, -0.017773326, -0.012349701, 0.029482972, -0.010705768, -0.022354776, -0.010160037, -0.03355238, 0.031854548, 0.02027965, 0.021465436, 0.008772127, 0.01986193, 0.01792155, 0.017328657, -0.005777342, -5.2888785E-4, -0.03231269, -0.0012742155, 0.0040020305, -0.03495376, 0.006548777, 0.0024894786, 0.018217998, 0.03878062, -0.0044837566, -0.0016978311, -0.0151996305, 0.010557545, -0.021047715, -0.0040929858, -0.013757822, -0.013077342, 0.0013137979, 0.020252699, -0.025629165, 0.024039133, 0.0018376327, 0.008967513, 0.0045982925, -0.0011099908, -0.013070605, -0.010921366, 0.007761514, 0.0042715273, -0.027583018, -0.014054269, 0.03131555, 0.025804337, 0.02208528, -0.013865621, -0.026841901, -0.012565298, -0.0018932164, -0.0014258076, -5.3741493E-5, 0.0097692665, 0.0060569453, 0.020576097, -0.014013845, -0.02977942, -0.008691278, -0.013690447, -0.011332349, -0.0067205816, -0.01978108, 0.001148731, 0.006060314, 0.029860267, 0.020966867, 0.011130226, -0.010719243, 0.012275589, -0.02425473, -0.026922751, 0.0050564376, -0.0038976003, -0.0067542684, 0.021182464, -0.008927088, -0.0014611791, 0.016937887, 0.027192248, 0.023958284, -0.02556179, 0.0056425934, -0.03762178, 0.003550623, 0.0145258885, 0.04387411, -0.003247439, -6.387921E-4, 0.01986193, 0.007815413, -0.0314503, 0.020495247, -0.01677619, -0.043685462, 0.009014674, 0.0017222543, -0.020037102, -0.01616982, 0.011446885, 0.0018847947, -0.017611628, 0.014323765, 0.0021357636, 0.02205833, 0.0021121828, -0.005309091, 0.015954223, -0.024187356, -0.0031379557, -0.0108000925, 0.02286682, -0.0028718275, -0.0062994924, -0.018083248, 0.04120609, 0.035897, -0.008260083, -0.022354776, 0.028000738, 0.028890079, -0.00245916, -0.009048362, 0.0015858214, -0.014445039, 0.032689985, -0.0107596675, 0.025696538, 2.1728195E-4, -0.009257222, 0.038268574, -0.023513613, 0.008900139, -0.016991787, -0.017840702, 0.023540564, 0.023432765, -0.014121643, -0.014458514, -0.024685925, 0.0039211814, 0.022664698, 0.007209045, 0.017207384, 0.0053158286, 0.014674112, 0.017234333, 0.011312136, 0.020306598, 0.029105676, 0.0031615368, -0.0026899169, -6.6489965E-4, -0.013717397, -0.024402954, -0.0101263495, 0.01483581, -0.0029897324, -0.0040323487, -0.011366036, 0.022462575, 0.024376003, -0.015415229, -0.010058976, 0.022233503, -0.011231287, 0.033067282, -0.031153854, 0.01833927, 0.0030200507, 0.012282326, -0.019269036, -0.013232303, -0.03964301, 0.0073168436, 0.0013121135, 0.0048105214, 0.03250134, 0.029456023, 0.005433733, 0.009722104, 0.03878062, -0.029482972, 0.0014215967, -0.020832118, 0.018258423, 0.042499676, -0.0015546608, -0.01522658, -0.63515055, -0.0034040841, 0.0134950625, 0.0035539917, 0.0122688515, 0.028351085, -0.002169451, -0.007215782, -0.02383701, -0.006265805, -0.0139329955, 0.021842731, 0.030021966, -0.029213475, -0.029402124, -0.010018551, 0.009290909, -0.02558874, 0.002009437, -2.8991982E-4, -0.035331056, 0.01947116, 0.003276073, -0.020454822, -7.9122634E-4, 0.014350715, 0.004170466, -0.015253531, -0.001049354, -0.0050429627, -0.017988926, 0.014000369, 0.007067559, 0.009391971, 0.03883452, 0.0090955235, -0.015967697, 0.056971665, 0.03333678, 0.019026488, -0.025602216, 0.0033821873, 0.019646332, -0.007215782, -0.013838671, 0.019794555, 0.002993101, 0.014552838, -0.004352377, -0.0055920626, -0.010476696, -0.0051608677, -0.011069589, -0.014512413, -0.0018157361, -0.010180249, 0.013744347, -0.028431933, 0.01101569, 0.013218828, -0.023459714, 0.016088972, 0.0023328334, 0.022489525, 0.0051002307, 0.028917028, -0.004746516, -0.001488971, 0.0138925705, -0.01611592, 0.009142686, 0.019740656, -0.026464606, -0.017140009, -0.0012506346, 0.015536502, 0.028378034, -0.006353392, -0.0124238115, 0.007498754, 0.0073774806, -0.008839502, 0.0097692665, 0.026275957, 0.017544255, -5.9531467E-5, -0.013730872, 0.002949308, 0.01758468, 8.884979E-4, 0.014660637, 0.01122455, 0.00416036, -0.011177388, -0.009351546, -0.0064645596, -0.018932164, 0.015213106, 0.02164061, -0.06839834, -0.014215967, -0.011238025, 0.027165297, -0.014781911, 0.023648363, 0.027488694, -0.0017988925, -0.013252515, 0.017679004, -0.010146562, 0.0074785417, 0.00852958, -0.014714536, -0.013481587, -0.004941901, -0.028512783, 0.011547946, 0.0015571874, -0.013420951, -0.004338902, 0.01786765, 0.0121475775, -0.0040761423, -0.016830089, -8.169128E-4, 0.030749608, -0.0021239733, -0.019228611, 0.016142871, 0.012524873, -0.0019504846, -0.007465067, 0.009439132, -0.0313964, 0.027623443, 0.008994463, 0.012161052, -0.001371066, 0.026572404, -0.024119982, -0.028243287, -0.004941901, -0.006067051, -0.008199446, -0.030345362, -0.009829903, -0.011339086, 0.005369728, 8.586006E-4, -0.009762529, -0.01077988, 0.005777342, -0.0090955235, 0.012855007, 0.0012455814, 8.79234E-4, -0.012632672, -0.01169617, 0.009802953, -0.021061191, 0.0021761884, 0.008266821, -0.0050126445, -0.016412368, 0.033498477, 3.637157E-5, -0.0034495615, 0.0062556993, -0.008650854, -0.023904385, 0.0063803415, -0.010234148, -0.0069462853, 0.0025922244, -0.011595109, 0.035870053, -0.006595939, 0.008024273, -0.007101246, -0.009607568, -0.015684726, 0.008031011, -0.028297186, -0.0038639132, 0.015509552, 0.014067744, 0.014323765, 0.001985856, -0.008044486, -0.0047734655, -0.030480111, -0.012592248, -0.010153299, -0.0057604983, -0.0063365484, 0.010907891, 0.0028027687, -0.00719557, 0.007997324, 0.010786617, 0.03239354, 0.037082788, 0.00811186, 0.011312136, 0.009526719, -0.044493955, 0.0104834335, -0.015186156, 0.013070605, -0.0031834333, 0.018703092, -0.015617351, -0.0019201662, 0.0025383248, -0.0013365367, 0.023122843, -0.0027303414, 0.013063868, -0.0068452237, 0.008428519, -0.0021290262, -0.016210245, 0.025912138, 0.0049250578, -0.032177944, 0.008509368, 0.0053158286, -0.010193724, -0.010139825, -0.009984864, -0.0036281033, -0.0018544763, -0.003333341, 0.016466267, -0.0047161975, -0.01051712, 0.023769636, -0.013090817, 0.032070145, -0.010813567, -0.0053124595, 0.0151187815, 0.02870143, 0.0156443, 0.007525704, -0.012470974, 0.024146931, 0.009284172, -0.0048812646, 0.03799908, -0.0049755885, 0.039104015, 0.012437287, 0.022233503, -0.002794347, -0.024618551, 0.003692109, 0.0201449, 0.020832118, 0.01980803, 0.019457683, -0.020953393, 0.014000369, 0.017611628, 0.012625935, -0.0076267654, -0.030480111, 0.002817928, -0.014283341, -0.028000738, -0.021721458, -0.002619174, 0.0017753115, 0.01441809, -0.007040609, 0.0040491926, 0.005053069, 0.0022553531, 0.021061191, 0.028674481, -0.0033266037, -0.03417222, 0.01619677, 0.02506322, -0.013656761, -0.026734103, -0.0047060912, -0.022381727, -0.02653198, 0.0070001846, -0.009957914, 0.04322732, -0.00497222, 0.0036954777, -0.0111167515, 0.001531922, 0.024146931, -0.019053439, 0.0035304108, 0.007842363, 0.011298662, 0.017422982, 8.3038764E-4, -0.017988926, 0.023041993, -0.021964006, -0.014135118, -0.0022401938, -0.016344992, -0.01439114, -0.014579788, 0.008354407, -0.0313964, 0.018204523, -0.025898661, -0.0012413706, 0.005447208, -0.010995477, 0.019242086, -0.01397342, -0.020400923, -0.013427688, -0.020805169, -0.021492386, 0.089257404, 0.050072543, 0.0013255884, 0.019322935, -0.021869682, 0.006680157, -0.0040256116, 9.316595E-5, -0.010678818, -0.020832118, 0.036570743, -0.009102262, 0.03667854, 0.0030149978, -0.013986895, -0.013191878, -0.009243747, -0.00832072, 2.6297013E-4, -5.1372866E-5, -0.021398062, -0.012733733, -4.391959E-4, 0.050988834, 0.0028347715, -0.014930134, 0.026855376, 0.0128213195, -0.010638394, -0.0023917858, -0.008010798, 0.005928934, 0.0041435165, 0.01656059, 0.010766406, -0.0030756346, 0.0051002307, 0.018581819, 0.013245777, 0.023634886, -0.0077952007, 0.0056156437, -7.0658745E-4, 0.005117074, 0.0066835256, -0.017382557, -0.0055482695, 0.038133826, 0.017679004, -0.05142003, 0.020400923, -0.004173835, -0.012592248, -0.0044702813, 0.011871343, -0.01214084, -0.011332349, -0.006899123, -0.008334195, 0.017611628, -0.008226396, -0.023554038, 0.008489155, -0.018581819, -0.008219658, -0.012700046, -0.012518136, -0.0051810797, -0.010234148, 0.003144693, 0.007862575, -0.035304107, -0.01656059, -0.0015841371, 0.008927088, -0.0024810568, 0.034091372, -0.011190863, 0.006892386, 0.0024423166, -0.02608731, -0.012700046, 0.008933825, -0.023176743, -2.3665205E-4, 0.007997324, 0.0052113985, 0.015765574, -0.024079558, 0.0037830642, 0.009203322, 0.0035910476, -0.016371943, -0.021438487, 0.037325334, 0.0054000462, 0.014135118, 0.021020766, -1.727518E-4, -0.0052248733, -0.0027202354, -0.013865621, -0.011399724, -0.006912598, -0.01656059, -0.030938257, 0.0073235813, -0.0022806183, -0.012801108, -0.017382557, -0.036220398, -0.010624919, -0.010139825, -0.0035944162, 0.0060064145, -0.005962621, 0.024160406, 0.030857407, -0.021990955, 0.0057840794, 0.009257222, -0.031207753, 0.008152285, 0.024699401, -0.0361126, 0.024888048, -0.0053124595, -0.019767605, 0.0021121828, 0.025831288, 0.02533272, 0.0040727733, -0.020899493, -0.019902354, -0.019686757, -0.029186526, 0.0012784264, 0.0045039686, -0.009823166, 0.0108000925, -0.019700231, 0.018703092, 0.002817928, -0.0038133827, 0.0022772497, -0.03449562, 0.011871343, 0.0069260728, 0.019242086, 0.029509922, 0.003985187, 0.0044702813, -0.025036272, -0.012484449, 0.0028263498, -0.03252829, -0.0069462853, 0.0048442087, 0.04762012, 0.0122688515, 0.043415967, 0.005383203, 0.019592432, -6.6742615E-4, -0.0012422127, 0.010867466, -0.018312322, -0.008287033, -0.040208954, 0.012086941, 0.021303738, 0.030372312, -8.826027E-4, 0.0022738809, 0.0015992962, 0.03066876, 0.011480573, 0.019376835, -0.013171666, -0.012349701, -0.010685557, -0.008468944, -0.020576097, -0.0031329026, -0.028458884, -0.011062852, 0.038295522, -0.0012868482, -0.006912598, -0.008091647, 0.024901522, -0.015374804, 0.005928934, -0.01899954, 0.019457683, -0.009365021, -0.0075998153, -0.006811537, 0.0069530224, -0.0063129673, 5.1836064E-4, 0.014404614, -0.0033383942, -0.007923212, 0.001834264, 0.020427873, -0.008051223, -0.019430734, 0.033606276, -0.028162437, -0.021815782, -0.036409047, -0.0016127711, -0.041691188, -0.01716696, 0.01237665, -0.01881089, 0.0067071067, -0.021600185, -0.039481312, 0.0037999076, 0.01747688, 0.034711216, 0.02236825, 0.04508685, 0.034387816, 0.014013845, -0.024106506, -8.6828566E-4, -0.010665344, -0.0139329955, 0.013313152, 0.024416428, -0.02108814, -0.005854822, -0.0020448086, -0.022503, -0.037217535, -0.05055764, 0.013906045, 0.020441348, 0.025979511, -0.019929303, -0.016237194, -0.02203138, 0.0075863404, -0.004335533, -0.004628611, -0.006080526, -0.029752469, -0.01844707, 0.0026899169, -0.00902815, 0.013414213, 0.018137148, -0.032878634, 0.023378866, -0.0152804805, -0.009587356, -0.009964651, -0.002103761, 0.04053235, -0.026936226, 0.031531148, -3.0697393E-4, -0.0048475773, 0.01127845, -0.0057234424, 0.0032558606, 0.026316382, -0.027785141, 0.022314351, -0.008637379, 0.0023665205, 6.7879556E-4, 0.007842363, -0.013879095, -0.023405815, -0.039050117, -0.0065285647, 0.047135025, -0.00855653, -0.014566313, -8.6028496E-4, -0.018662667, -0.016237194, 0.002061652, -0.0070136595, 6.2910706E-4, -0.03872672, 0.01266636, 0.005319197, -0.0019942778, 0.0064915093, -1.461179E-4, -1.6769872E-4, -0.0067475312, 1.2537927E-4, -0.02797379, -0.006636364, -0.021896632, -0.007215782, -0.042850025, -0.017840702, -0.0017753115, -0.01266636, 0.01939031, -0.012127365, -0.01750383, -0.008159022, -0.0049654823, -0.017786803, -0.0011857868, -0.011426673, 0.0064477157, 0.018379696, -0.0100455005, -0.013387264, 0.0037695894, 0.024955422, 0.0043793265, 0.00528551, -0.006686894, 0.013353577, 0.022907246, -0.025130596, 0.0094526075, -0.006552146, -0.0076941396, -0.01276742, 0.010052239, 0.03414527, 0.014404614, 0.0015664513, -0.0316659, -0.0063668666, 6.190009E-5, 0.035708353, -0.017746378, -0.02595256, 0.022004431, 0.0201988, 0.02872838, 0.020037102, -0.019552007, -0.045006, 0.00947282, -0.014660637, -0.037972126, -0.019700231, -0.013104292, 0.014242916, 5.777342E-4, -0.017894601, -0.032959484, 8.9607754E-4, -0.016156346, -0.03395662, -0.0070877713, 0.013319889, 0.028890079, 0.008839502, 7.65961E-4, 0.020104477, 0.0057133366, -8.7670743E-4, -0.03250134, -0.00829377, 0.009567143, 0.010180249, 0.011675958, 0.02519797, -0.012080203, 0.0057470235, 0.027219197, 0.034765113, 0.016331518, 0.009108999, -0.00902815, -0.003191855, -0.008415044, 0.0100455005, -0.0071686204, 0.004217628, 0.029213475, -0.021721458, -0.010476696, -0.005376465, 0.009782741, -0.017396031, -0.016008122, 0.01098874, -0.025763914, -0.009937702, -0.013036918, -0.0156443, -0.01397342, -0.025521366, 0.020239225, 0.011547946, -0.01303018, 0.035789203, 0.019565482, -0.008091647, 0.012915644, 0.012080203, 0.010085925, -0.001356749, 0.015186156, -0.0050261193, 0.035465807, -0.015172681, 0.007512229, -0.021829257, 0.015037932, -0.013023443, 0.018689618, -0.009937702, 0.033606276, -0.008724965, -0.04158339, 0.0077210893, -0.02289377, 0.010712506, 9.5503003E-4, -0.0023580987, -0.023500139, -0.0072359946, -0.006582464, -9.036571E-4, -0.018554868, -0.013023443, 0.013697186, -0.0032086987, -0.015590401, 0.019255562, 0.18131758, -0.0066228886, 0.010395847, 0.045518044, 0.0058177668, -0.0049250578, 0.023877434, 0.014283341, -0.0139329955, 0.010038763, 0.010207199, 0.019295985, 0.0025989618, 0.005868297, 0.0072562066, -0.01842012, -0.02297462, -0.025548317, -0.0074044303, -0.0315042, 0.0011007268, 0.0019134288, -0.0138925705, -0.0315042, 0.017665528, -0.009156161, -0.01833927, 0.0097288415, 0.023890909, 0.01881089, 0.0011841025, -0.006353392, 0.0020869174, 0.009425658, -0.02964467, -0.010968528, -0.022260452, 0.0047060912, 0.0036281033, 0.021910107, 0.0156982, -0.004490494, -0.011291925, -0.0029661513, -3.3076547E-4, 0.016156346, -0.01975413, -0.0035203046, -0.010638394, 0.0135018, -0.03864587, -0.0037426397, 0.011150438, 0.03686719, 0.009270697, -0.0045780805, 0.0038942317, -3.6234714E-4, -0.005868297, 0.0054236273, 0.013414213, 0.037460085, -0.028054638, 0.023109367, -0.0032390172, 0.0064915093, -0.03883452, -0.0063601295, 0.0025939087, -0.03781043, -0.012551823, -0.026855376, -0.015172681, -0.0032962852, 0.0020212275, -0.023459714, -4.981484E-4, 0.0045679742, -7.777515E-4, 0.023527088, -0.029105676, -0.015186156, 0.007977111, -0.017625105, -0.00968168, -0.02506322, 0.020859068, -0.0013685395, -0.016102446, -0.025305768, -0.008468944, -0.014566313, -0.021303738, -9.255538E-4, -0.009183111, -0.0022469312, 0.031800646, 0.015792524, -0.01577905, -0.0062388554, -0.016883988, 0.017261283, 0.007889525, 0.006222012, -0.034765113, -0.016614491, -0.007828888, 0.0041266726, 0.026410706, -0.021829257, -0.02292072, -0.033848822, 2.93078E-4, -0.012059991, 0.022529949, 0.024497278, 0.0074920165, -0.0094121825, 0.03500766, -0.017126534, 0.0031076374, -0.006457822, 0.03244744, 0.0014948662, 0.0018881634, -0.043928012, -0.037460085, 0.011655745, -0.009829903, -0.024470327, 0.009324596, -0.006151269, 0.008159022, 0.0017214121, -0.011386248, 0.011494047, 0.01101569, 0.0010998846, 0.011945454, -0.010692294, -0.012336225, -9.742948E-5, 0.0041401475, 0.00876539, 0.016843563, -0.014957083, 0.0070069223, -0.007896262, -0.018608768, -0.030237563, -0.02391786, -0.0040020305, -0.0025383248, 0.008098385, 0.04403581, 0.013360314, -0.009014674, -0.054034147, -0.016897462, 0.034765113, -0.034845963, 0.024793724, 0.021209415, 0.006269174, -0.021883156, -0.014849285, -0.17193909, 0.009304384, 0.0019134288, -0.036489893, 0.021937056, 4.467755E-4, 0.023244116, 0.004382695, -0.01101569, -0.016277619, 0.012006092, -9.474504E-4, -0.03406442, 0.010058976, 0.0027303414, 0.012713521, 0.0014098062, 0.03045316, 0.011527734, -0.0030436318, 0.050746284, 0.005133918, -0.008145547, 6.354234E-4, 0.008010798, -6.585833E-4, 0.011662483, 0.007970374, 0.01486276, -0.0051979236, -0.04104439, -0.010732718, 9.390286E-4, 9.626096E-4, -0.01441809, 0.0015470813, -0.019242086, -0.011554684, -0.00921006, -8.586006E-4, 0.05670217, 0.012080203, 0.033687126, 0.015549977, -0.003725796, 0.032905582, 0.024376003, -0.0225569, 0.013427688, -0.024173882, -0.009856853, -0.03433392, 0.032070145, 0.0027775036, 0.0016531957, 0.025359668, 0.011318875, 0.0042378404, -6.5268803E-4, -0.006656576, -0.031638946, -0.0045107063, 0.013468113, -0.023082418, -0.00986359, -0.02742132, -0.021600185, 4.6867214E-4, -0.032555237, -0.0025214814, -0.010341948, -5.8320834E-4, 0.0024288418, 0.019053439, -0.0035101986, -0.013778035, -0.037513983, 0.0029678356, 0.0069530224, 0.0073774806, -0.008799077, 0.03320203, 0.0017146746, 0.0138925705, 0.0062489617, -0.011467097, -0.005053069, -0.0067441626, 3.772958E-4, -0.01439114, 0.007929949, 0.005773973, -0.03260914, -0.0013525381, 0.0015866637, 0.0034630364, -0.009156161, 0.0016801454, 2.642334E-4, -0.0039211814, -0.0018932164, -0.008152285, -0.015846424, 0.014108168, 0.023041993, -0.0034411398, 0.022408675, 0.040855747, 0.01972718, -0.0033922936, 2.7012863E-4, -0.0023631519, 0.021964006, 0.005339409, -0.0068957545, 2.4465274E-4, -0.012470974, -0.024227781, 0.016681865, 0.008852976, 0.05476179, 0.0020397555, 5.1372865E-4, -0.010186987, -0.0104834335, -0.012356438, -0.090443194, 2.9602562E-4, -8.666013E-4, 0.045895338, -0.028000738, 0.03506156, 0.0030436318, 0.020400923, -0.016331518, 0.033794925, 0.01098874, -0.03142335, 0.010496908, 0.009183111, 0.011480573, 0.009418921, -0.012673097, 0.007653715, -0.0062186434, 0.03414527, -0.014310291, -0.008718228, 0.00146539, -0.01323904, -0.02478025, 0.021101614, -0.026693678, 0.017638579, -0.0024069452, 0.019538533, 0.017854176, -0.0137712965, 0.010914628, -0.031611998, -0.028539732, -0.022678172, -0.015940748, -0.025683064, -0.006104107, -0.046299584, 0.021883156, 0.01711306, -0.016075496, -0.02883618, -0.028512783, -0.00405593, -0.029375173, 0.028917028, -0.0027859253, -0.01980803, -0.010382372, -0.02203138, -0.023109367, -0.014404614, 0.010186987, 0.014189017, 0.02600646, 0.008192709, -0.016035073, -0.03670549, -0.002737079, 0.007909737, -0.011642271, 0.009304384, -0.004749885, 0.0025046377, 0.013360314, -0.010005076, 0.024066083, -0.025979511, -0.027097924, 0.029240426, -0.030884357, -0.010833779, -0.0134546375, 0.012342962, -0.039184865, -0.004325427, 0.028620582, -0.044197507, -0.002142501, -0.035196308, 0.0020768114, -0.0038740195, 0.026936226, 0.013313152, -0.0014872865, 0.008435256, -0.024820674, -0.023001568, 0.0021896632, 0.02108814, 0.008913613, 0.0069395476, -0.0011975773, 0.009425658, 0.014445039, 0.0201988, -0.0032828103, -0.0012868482, 0.0044736504, 0.0025130596, -0.071093306, 0.037864327, -0.018568344, 0.006636364, -0.015523028, -0.00463198, 0.01650669, -0.007047347, 1.2748472E-4, 0.024173882, -0.007545916, 0.027380895, 0.0020902862, 0.0046218736, 8.342827E-5, 0.01672229, 0.008846239, -0.01933641, -0.0021391325, 0.010901154, -0.007687402, 0.016830089, 0.028863128, 0.0124036, 0.012888694, 0.0075593907, 0.0045006, 0.016883988, -0.0056156437, -0.0091359485, 0.01939031, -0.019902354, 0.00586156, 0.018312322, 0.0050564376, -0.026154684, -0.027340472, -0.004086248, 0.0049284264, 0.0014367559, -0.008367882, -0.03565445, -0.008954038, -0.017409507, -0.017611628, 0.015549977, -0.01666839, 0.006494878, 0.0065117213, 0.017018735, 0.044493955, 0.019969728, -0.011601846, -0.01724781, 0.0094526075, -0.024551177, 0.046083987, 0.007033872, -0.0025753807, -0.020441348, 0.03244744, 3.1602735E-4, 0.040505398, -0.03244744, -0.012127365, -0.014728012, 0.026289433, 0.013205353, -0.0050833873, -0.025777388, -0.006892386, -0.0024288418, 0.018191047, 0.027017074, 0.004756622, 0.03064181, -0.012282326, -0.0016666705, -0.019834979, 0.02703055, 0.030264514, 0.0010375634, -0.029617721, 0.012956069, -7.2848407E-4, 0.011763544, 0.0031547993, 0.011110014, 0.0072966316, 0.020293124, -0.024618551, 0.018123673, -0.0031177434, -0.0031514305, 0.016358469, 0.03403747, -0.005639225, -0.0049149515, 0.004018874, 0.026828427, -0.022408675, -0.015267005, -0.027273096, -0.016897462, -0.009607568, -0.0011369404, -0.013279465, -0.015765574, 0.010618182, 0.004463544, 0.010422797, 0.0062489617, -0.0138925705, 0.011136964, -0.042014584, 0.011500784, 0.012201477, -0.02247605, -0.019686757, 0.044709552, 0.010928104, -0.00583461, 0.034819014, -0.0057975543, 0.03689414, -0.0057840794, 0.010294786, -0.022988094, -0.0035438857, -0.020333549, -0.0042614215, -0.00852958, -0.027313521, 0.006265805, -0.008024273, 0.0054168897, 0.005029488, 0.049883895, -0.011615321, 0.068021044, 0.004217628, -0.003843701, 0.009257222, -0.018164098, 0.024295155, 0.021303738, 0.007215782, -0.004699354, -0.0069462853, 0.009594093, -0.016385417, 0.019619381, -0.024551177, 0.0025905399, -0.0046825106, 0.0125046605, 0.0023429396, -0.007134933, -0.010537333, -0.0045039686, -9.2639594E-4, 0.026788002, 0.0053865714, -0.0138925705, -0.019430734, 0.020629996, -0.006302861, 4.4172243E-4, -0.012208214, 0.003001523, -0.02116899, 6.1184244E-4, 0.012100415, 0.022624273, -0.004089617, 0.0025214814, 0.024874574, 5.419416E-4, 0.015805999, -0.001555503, 0.0029139363, -0.01988888, -0.017854176, 0.0224491, -0.0117904935, -4.7288302E-4, -0.029024826, -0.01933641 ], + "id" : "0e946bd4-16a9-4cc2-b647-f9e385874617", + "metadata" : { + "source" : "movies.csv" + } + }, + "cf790068-0c0d-4e03-9281-a427cf2677ce" : { + "text" : "Crawford-Henry Strozier-Lisa Kron-Scott Burn-Julie Halston,new york city-city portrait-hotel-new year's eve-forgiveness-fashion journal-saint louis-female friendship-fashion designer-malibu-loss of libido-botox-couples therapy-romantic comedy-best friend-wedding-break-up-fashion-manhattan new york city-desire to have children-female sexuality,/AhNfnsGW95RKHQNLdgFH48UN0Zy.jpg,/osHKguxvXPIUJJzsO3DEORZZ8QD.jpg,37786-501190-34604-269381-853584-44221-518244-385281-803104-619105-4568-234951-25128-547205-87584-251266-70642-85509-702701-452006-118417\r\n207703,Kingsman: The Secret Service,Crime-Comedy-Action-Adventure,en,The story of a super-secret spy organization that recruits an unrefined but promising street kid into the agency's ultra-competitive training program just as a global threat emerges from a twisted tech genius.,80.72,20th Century Fox-Marv Films-Cloudy Productions-TSG Entertainment,12/13/14,81000000,414351546,129,Released,Manners maketh man.,7.637,15143,Taron Egerton-Colin Firth-Samuel L. Jackson-Mark Strong-Sophie Cookson-Sofia Boutella-Michael Caine-Mark Hamill-Samantha Womack-Jonno Davies-Jack Davenport-Adrian Quinton-Alex Nikolov-Velibor Topic-Geoff Bell-Jordan Long-Theo Barklem-Biggs-Tobi Bakare-Morgan Watkins-Paul Kennington-Ralph Ineson-Edward Holcroft-Nicholas Banks-Jack Cutmore-Scott-Nicholas Agnew-Rowan Polonski-Tom Prior-Fiona Hampton-Bj�rn Floberg-Hanna Alstr�_m-Johanna Taylor-Lily Travers-Richard Brake-Andrew Bridgmont-Corey Johnson-Anne Wittman-Andrei Lenart-Simon Green-Lazara Storm-Sarah Hewson-Jayne Secker-Lukwesa Burak-James Clayton-Nick English-Charles Filmer-Bimbo Hart-Chester King-Alastair MacIntosh-Carlos Peres-Jude Poyer-Daniel Chapple,spy-great britain-secret organization-secret agent-based on comic-united kingdom-duringcreditsstinger,/ay7xwXn1G9fzX9TUBlkGA584rGi.jpg,/qzUIOTk0E3F1zjvYjcBRTKUTgf9.jpg,343668-99861-127585-135397-102899-76341-100402-75656-177572-118340-198663-137113-122917-168259-240832-131631-286217-198184-76338-205596-101299\r\n45269,The King's Speech,Drama-History,en,The King's Speech tells the story of the man who became King George VI the father of Queen Elizabeth II. After his brother abdicates George ('Bertie') reluctantly assumes the throne. Plagued by a dreaded stutter and considered unfit to be king Bertie engages the help of an unorthodox speech therapist named Lionel Logue. Through a set of unexpected techniques and as a result of an unlikely friendship Bertie is able to find his voice and boldly lead the country into war.,18.", + "embedding" : [ -9.5675015E-5, -0.004461733, -0.002654887, -0.02787112, 0.017653095, 0.029657198, 0.0047871037, 5.555533E-4, -0.027178843, -0.047019538, 0.0012495621, 0.032758605, 0.010128031, 0.005860135, -0.009089613, 0.03605385, 0.023149783, -0.014828599, 0.020186832, -0.03624769, -0.0045898044, -0.0014027287, -0.012495622, 0.0046417257, -6.650198E-4, -0.0047213375, 0.026278881, -0.011304904, -0.022111366, -0.0020214524, 0.010031112, 0.0041363626, -0.0099341925, -0.020034531, -0.012883298, -9.0515375E-4, -0.017431566, -0.02316363, 0.014925518, -0.010038034, 0.0034112008, -5.546879E-4, -0.01117337, 0.0012443701, -0.02122525, 0.007905818, 0.013077135, -0.010494938, -0.0043786597, 0.011214907, 0.034973897, 0.020906802, -0.0031429431, -0.019093033, -0.005638606, 0.011754884, -0.011180293, 0.0050570923, -0.006656255, -0.0042194356, 0.021156022, -0.010854922, -0.023855908, -0.01657314, -0.015299349, -0.014703989, -0.024022054, -0.009989575, -0.01034956, 0.014579379, 0.04095518, 0.018857658, 9.544786E-4, 0.0018379986, 0.02896492, -0.023039019, -0.023468232, -0.013617112, 0.0026185424, 0.012204865, 0.0071096974, -0.0026739247, -0.010287254, 0.0063758823, 0.01853921, 0.015063974, 0.0064381873, 0.023537459, -0.022679035, 0.014371696, 0.0068847067, 0.0368292, 0.006870861, -0.009491134, -0.019106878, 0.024451267, 0.0015792596, 0.027012696, -0.001338693, -0.031263284, -1.1206254E-4, -0.02331593, -0.014094785, -0.013894024, -0.0034129317, 0.0019453018, -0.008521945, -0.016877742, -0.0044409647, 0.016850052, -0.008175806, 0.008577327, 0.033700105, -0.039321404, 0.0041190553, -0.02194522, 0.020145297, -0.015299349, -0.019494554, -0.024022054, 0.015008592, 0.012073332, 0.011055683, -0.026901932, 0.032038637, 0.010488015, -0.008951157, -0.018705357, -0.008127347, -0.0060401275, 0.039598316, -0.015991626, 0.023828216, -0.009913424, -0.02990642, 0.037438408, -0.027511137, 0.001960878, -0.025517376, -0.026029661, 0.009241914, 0.03284168, -0.01097261, -0.0073312265, -0.011574891, 0.0060643572, 0.018982269, -0.009719586, 0.023219012, 0.007248153, 0.021862146, 0.028826466, 0.013430198, 0.00803735, 0.023703607, 0.014828599, -3.355386E-4, 0.0058566737, -0.009664204, -0.0047905655, -0.00890962, -0.0034873516, 0.0044444264, -0.0026895008, 0.0054828436, 0.012827915, 0.011138757, 9.328449E-4, 0.0049774805, 0.010134953, -0.011457205, 0.023025174, -0.01460707, 0.005555533, 0.0160747, 0.026583483, 0.0052509303, -0.0026514255, -0.014662453, -0.022762109, -0.01557626, 0.02734499, 0.02368976, 0.024769714, 0.0011491819, 0.011443359, 0.030737152, -0.038684506, 0.0045067314, -0.019826848, -0.014620916, 0.016213156, 0.016296228, -0.018705357, -0.64642173, -0.016254693, -0.025641985, -0.009871887, 0.03317397, 0.01754233, -0.004593266, 0.0049601733, -0.037023038, -0.0071996935, -0.014011711, 0.015908554, 0.010328791, -0.007691211, -0.028494172, -0.016060855, -0.015991626, 0.002826226, 0.031263284, 0.002853917, -0.007968122, 0.014800908, 6.3862663E-4, -0.0055728396, 0.017126963, 0.004302509, -0.010107262, -0.027704975, 0.008044273, 0.0073312265, -0.019189952, 0.008501177, 0.0098788105, -0.012710229, 0.04040136, 0.018054616, -0.029380288, 0.04389044, 0.03555541, 0.030986372, -0.039902918, -0.0025908512, 0.011429514, 0.008106578, -0.014164013, 0.021488316, 0.0059189787, -0.007019701, 0.011027992, -0.020089913, -0.010377251, 0.003120444, 0.0029179526, -0.014004788, -0.005849751, 0.0013534039, 0.013928638, -0.034890823, 0.003627538, -0.0023468232, -0.0100034205, 0.009463443, 0.0011362017, 0.011311826, 6.892495E-4, 0.049428664, -0.012364089, -0.021266786, 0.016586985, -0.02284518, -0.0058809035, 0.018649975, -0.008078887, -0.025143545, 0.0039806, 0.012454085, 0.022042139, 0.017057735, -0.0036033082, 0.001696947, 0.01092415, -0.0010609163, 0.0017912699, 0.015783943, 0.011055683, -0.009733432, -0.03660767, -0.006805095, 0.013776337, -6.0682512E-5, 8.9044287E-4, 0.022028293, -0.0019972227, 0.00457942, -0.01092415, 0.013194823, -8.138596E-4, 0.007628906, 0.049207136, -0.05496689, -0.013174054, -0.034475457, 0.017846933, 0.0049947873, 0.022997482, 0.018843813, -0.01739003, 1.1541576E-4, 0.02488048, -0.017874625, 0.012038718, 0.019992994, -0.0032208245, -0.009290374, -0.014399387, -0.026541946, 0.014800908, 0.00833503, -0.007400454, -0.010321869, 0.0051193973, -0.0021737537, -0.0044444264, -0.01323636, 0.011747962, 0.03530619, -0.020962184, -0.011789498, 0.008078887, 0.017971542, 0.004461733, 0.0017151193, 0.030515624, -0.01667006, 0.014067094, 0.007379686, 0.01654545, -0.008826547, 0.0037383025, -0.017126963, -0.024645105, -0.009068845, -0.0047247987, -6.1223353E-4, -0.009622667, -0.013589421, -0.023745144, -0.0061405078, -0.0097818915, -0.0034094702, -0.016310075, -0.010391096, -0.0047317217, 0.010751081, 0.014454769, 0.010107262, -0.02540661, -0.007621983, 0.005133243, -0.018677667, 0.011207985, 0.016406994, -0.008521945, -0.019079188, 0.020796038, -0.0052613146, 0.0051540113, 0.017528484, -0.017279264, -0.028231107, 0.017874625, -0.014690144, 9.475558E-4, 0.013153287, 0.005396309, 0.014330159, -0.008383489, 0.012343321, 0.022332896, -6.6069304E-4, 5.3608295E-4, 1.3164103E-4, -0.02110064, -0.0053582336, 0.0276219, 0.016240846, 0.002371053, -0.021959065, -0.025766596, -0.0035825397, -0.0131879, -0.011581815, -0.011138757, -0.0071373885, 0.0013793644, 0.033949323, -6.377613E-4, 0.005337465, 0.0097403545, 0.0044305804, 0.044001203, 0.012024873, -0.0013932099, -0.0038248373, 0.009650358, -0.016282383, 0.008778088, -0.013277897, 0.018705357, -0.014579379, 0.019079188, -0.005936286, -0.006555875, 7.009317E-4, 0.0060574342, 0.022471352, -0.0056316834, 0.0036344607, -0.027248072, 0.005143627, 0.005780523, -0.006434726, 0.0054205386, 0.022734417, -0.025323538, 0.006123201, 0.011159525, -0.015867017, 0.0013473465, -0.016974661, -0.015410113, 0.004524038, 0.018857658, -0.010764927, -0.014385541, 8.9303893E-4, 0.025212772, -0.0076981336, 0.040650576, -0.013679418, -0.011083375, -0.0041640536, 0.01739003, -0.0024004746, 0.008508099, -0.018123845, 0.016808515, 0.008438871, -0.0074835275, 0.037161496, -0.019646855, 0.019674547, -0.021640617, 0.003904449, 0.011159525, -0.007248153, 0.0063239615, 0.0051574726, 0.028854156, 0.035444643, 8.810322E-5, -0.033977017, 0.024811251, -0.0076150605, 0.012696383, -0.008971926, -0.019522246, 0.0010219758, -0.009380369, -0.023703607, -0.028231107, 0.0015212814, 0.013624036, -0.0046590324, -0.0040636733, -0.0013196553, 0.016157774, 0.010591857, 0.009421906, 0.02244366, -0.0014122475, -0.017694632, 0.009941115, 0.018649975, -0.012523313, -0.035416953, -0.014101707, -0.014745526, -0.021045258, 0.0068604774, 0.0014961862, 0.03408778, -0.014870136, 0.0019037651, -0.02266519, -0.004115594, 0.022402123, -0.010093416, 0.027428063, 0.019937612, 0.0062512723, 0.0066251024, -0.004586343, -0.0069781644, 0.044998083, -0.014620916, 0.003456199, -1.8064135E-4, -0.003246785, -0.01595009, 0.011138757, 6.243484E-4, -0.03361703, 0.01306329, -9.086151E-6, 0.015105511, -0.009920347, -0.0011137025, 0.022651343, -0.026085043, -0.02047759, -0.033561647, -0.02515739, 0.004025598, 0.08141192, 0.029767964, 0.009941115, -0.0056351447, 0.008376567, 0.007185848, -0.015063974, -0.021294478, 0.005963977, -7.2948815E-4, 0.024215892, -0.004451349, 0.020865265, 1.176873E-4, 0.014787063, -0.005531303, -0.021682154, -0.018262299, -0.0028037268, -0.0061093555, -0.0229421, -0.007891972, 0.014440924, 0.029546434, -0.0072066165, -0.018926887, 0.004337123, 0.007002394, 0.0049705575, -0.006947012, -0.021308323, 0.022734417, -5.365156E-5, 0.018096153, 0.009408061, 0.0051609343, 0.03757686, 0.002898915, 0.032287855, 0.009567285, 0.016143927, 0.011927954, 0.0054655364, -0.016517758, 0.023039019, -0.036663055, -1.3769846E-4, 0.03131867, 0.011651043, -0.017279264, 0.029020304, 0.010017266, -0.020560663, -0.014800908, 0.019688392, -0.010931073, 0.0060435887, -0.0018414601, -0.03093099, 0.027608056, 0.013707109, -0.04926252, 0.012931758, -0.005247469, -0.0052820826, -0.015908554, -1.8023571E-5, -0.011394899, -0.01435785, 0.033395503, 0.017805396, -0.023371313, 0.0011941799, 0.0032692838, 0.011526433, 0.0045690364, 0.025032781, -0.013693263, -0.0069158594, 0.0076773656, -0.032094017, -0.030294094, 0.0122256335, -0.028051114, -0.010910305, 0.0121840965, -0.010183413, 0.025115853, -0.03574925, 0.011512587, 0.00684317, 0.015299349, -0.015036283, -0.021294478, 0.024146665, -0.015728561, -1.3521059E-4, 0.021169867, -4.7118188E-4, -0.010010343, 0.00589821, -0.025531221, -0.02206983, -0.031983253, -0.005752832, -2.0660178E-5, -0.0024195125, -0.011187216, -0.029324906, -0.01704389, 0.012634077, -0.028411098, -0.0070439307, 0.0014174397, -0.004679801, -0.0015394537, 0.009068845, 0.015230121, 0.0055278414, 0.006645871, 0.007559678, 0.0029058377, 0.004108671, 0.03267553, -0.010820309, 0.039016802, -0.0065074153, -0.0052163163, -0.00967805, 0.026057351, -0.011207985, 0.009470366, -0.023897445, -0.022623653, -0.034420073, -0.022803644, 0.02291441, 0.009186532, -0.014496306, 0.003421585, -0.027829584, -0.0072066165, -0.01184488, -0.008480408, 0.008078887, -0.02590505, -0.0018258838, -0.02159908, -2.1287556E-4, 0.031207902, -0.020214524, 0.0016779093, -0.013651727, -0.0044028894, -0.0023174013, -0.030792534, -0.042644337, -0.0055451486, 0.027386526, 0.011152602, 0.033755485, 0.0051886253, 0.02550353, 0.018608438, 0.0064035733, 0.018303836, -0.022554424, -0.0025164313, -0.03317397, 0.007338149, 0.015465495, 0.022277514, 0.0012114869, 0.014579379, -0.008141192, 0.012301784, 0.009885733, 0.009733432, -7.9309125E-4, -0.026985005, -0.028854156, 0.012834839, -0.020408362, -0.011159525, -0.024423575, -0.011235676, 0.020048378, -0.005576301, -0.008196574, -0.016406994, 0.024229737, -0.013049444, 0.013949406, -0.013270973, 0.0043855826, -0.021142177, -0.004825179, -0.030349476, -1.6182003E-4, 0.007995813, -0.012807147, 0.020269906, -0.013990942, -0.019411482, -0.0032831295, 0.012945603, -0.004008291, -0.021640617, 0.015742406, -0.010910305, -0.011353362, -0.026071198, -0.0053790016, -0.020962184, -0.02366207, -0.0037763778, -0.0063205003, 0.0012071602, -9.769776E-4, -0.04785027, 0.019480709, 0.0018328066, 0.030127948, 0.0050328625, 0.041536693, 0.013014831, -0.0034233157, -0.01754233, 0.01691928, 0.006168199, -0.025309691, 0.018179227, 0.021239096, -0.01331251, -0.0076358286, -0.0034198544, 0.021294478, -0.03674613, -0.042838175, 0.016905434, 0.035887703, 0.017985389, -0.02709577, 0.0042713564, -0.02341285, 0.031789415, -0.015894707, -0.0011985067, -0.002904107, -0.01903765, -0.02334362, 0.017473102, -0.0013681148, -0.0012651385, 0.0032208245, -0.01704389, 0.002371053, -0.019245334, 0.015063974, 0.0040913643, -0.011228752, 0.020117605, -0.018096153, 0.016850052, 0.016614677, 0.011657965, -0.004700569, 0.005195548, -0.0015498379, 0.03358934, -0.022291359, 0.0047559515, 0.0055347644, -0.010398019, 0.021460624, 0.0066147186, -0.012121792, -0.008251957, 0.005835905, 0.0010306292, 0.021571388, 0.006292809, 0.003592924, -0.0065177996, -0.0041190553, -0.004427119, 0.008722706, 0.0028902616, 0.0029525666, -0.050065562, -0.0010063995, -0.009041154, 0.001497917, 0.009401138, -0.008653478, -0.0014944556, 0.012585618, 0.028134188, -0.011277212, 5.7112955E-4, -0.017154654, -0.018109998, -0.03068177, -0.021405242, -0.016351612, -0.017251574, 0.03605385, -0.023648225, -0.017126963, -0.00821042, 0.0035513872, -0.0125163905, 0.015534723, 0.009144995, 0.0030996758, 0.00821042, -0.017431566, -0.009048076, -0.010488015, 0.015797788, 0.011187216, -0.010584934, 0.013305588, -0.017251574, 0.03973677, -0.0058255214, 0.024451267, 0.014046325, -0.01448246, -0.003928679, 0.0054032314, 0.030266404, 0.014150167, 0.006240888, -0.01520243, -0.012841761, -0.010266486, 0.020020686, -0.014468615, -0.006490108, 0.024977399, 0.018816123, 0.047490288, 0.035998467, -0.025697367, -0.03408778, -0.0030685232, -0.011270289, -0.03328474, -0.0065801046, 0.017126963, 0.010771849, 0.005070938, -0.01617162, -0.022374433, 0.00447904, -0.033893943, -0.012869452, 0.0021529852, 0.024645105, 0.03361703, 0.01398402, -0.011381054, 0.010944919, -0.0066251024, 0.0030442935, -0.024991244, -0.0066008726, 0.018913042, -0.008743474, 0.012620232, 0.015257812, -0.022249822, -0.0026739247, 0.016766978, 0.014025557, 6.1050284E-4, 0.036441527, -0.018373065, -0.02035298, 0.0071720025, 0.007781207, -0.0064208806, -0.0030858302, 0.012827915, -0.03018333, 0.0035652327, 0.015465495, 0.017722322, -0.020560663, 0.0025493146, -0.0016900242, -0.0077050566, 0.010439555, -0.01122183, -0.018857658, 0.016240846, -0.011554124, 0.02734499, 0.012287938, -0.015119356, 0.030737152, 0.022526734, 8.0823485E-4, 0.0034942743, -0.022388278, -0.0046244184, -0.016490066, -0.005167857, -0.027428063, 0.0230944, -0.029546434, 0.031983253, -0.021322168, -2.3277855E-4, -0.015188584, -0.015091665, -0.002217021, 0.03851836, 0.023052866, -0.06308039, 0.01072339, -0.019162262, -0.016088545, -0.019674547, 0.0044825017, -0.02500509, -0.031263284, -0.0055901464, 0.0022706725, -0.024465112, -0.025697367, -0.0035998467, -0.0011656234, 0.0015359923, 0.021723691, 0.1957209, -0.013824796, 0.009061922, 0.048681006, -0.0015273389, 0.012398703, 0.026265036, 0.024686642, -5.006037E-4, 0.013617112, 7.0958515E-4, -0.008044273, -0.016185464, 0.003928679, 0.01667006, -0.01122183, -0.023135938, -0.04222897, -0.015008592, -0.03976446, -0.012135637, 0.01532704, 0.012107946, -0.016130082, 0.010758003, -7.5891E-4, -0.0159224, 5.893018E-4, 0.020643737, 0.014032479, -0.023011329, -0.0022810567, 2.2801914E-4, 0.011360286, -0.021169867, 0.008272725, 0.0019245334, 0.014994746, 0.008099656, 0.0075112185, 0.01913457, -0.013714031, -0.010951841, -0.013693263, 0.030709462, 0.026209654, -0.022263668, 0.013589421, -0.014440924, 0.007054315, -0.03118021, -0.0012711958, 0.013132518, 0.02587736, 0.008812701, 0.0040221363, 0.009892656, 0.01997915, -6.914129E-4, -0.016130082, -0.0011716809, 0.03018333, -0.036358453, -0.0013759029, 0.010494938, 0.030211022, -0.025821978, 2.6479643E-4, 0.017957697, -0.033727795, -0.019189952, -0.031290974, -0.0070820064, 0.010619548, -0.009234992, -0.015340885, 0.005614376, 0.0035029277, 0.011263367, 0.020796038, -0.019231489, -0.010197259, 0.021903683, -0.013928638, -0.0032606304, -0.02331593, 0.016877742, -0.006002052, -0.0184146, -0.027635746, -0.0041190553, -0.020906802, -0.010910305, 0.0070127784, 0.0034406227, 0.0011526432, 0.016503913, 0.01754233, -0.009061922, -9.4669044E-4, -0.015479341, 0.024769714, 0.041785914, 0.0032052482, -0.014087861, -0.007185848, -0.0068847067, 0.0053859246, 0.028314179, -0.018926887, -0.011332595, -0.005842828, 0.007684288, -0.0075804465, 0.0024627799, 0.034060087, 0.0064728013, -0.016268538, 0.03115252, -0.020325288, -0.0071927705, -0.014814754, 0.011782575, 0.009885733, -0.001813769, -0.035693865, -0.027704975, 0.004468656, -0.01067493, -0.04186899, 0.016351612, -0.017860778, 0.008965003, 0.0025891205, 0.0028643012, 0.012121792, 0.02231905, 0.0062235813, 0.004700569, 7.7491894E-4, 0.0066701006, -0.011401822, 0.0098372735, 0.0057736, 0.0014676298, -0.021834455, -0.0031117906, -0.005143627, -0.019397635, -0.004098287, -0.027524982, -0.014032479, 0.013914792, 5.966573E-4, 0.044582717, -0.0053166966, -0.007753516, -0.019203797, -0.004108671, 0.039598316, -0.037521478, 0.019286871, 0.028826466, -0.013028676, -0.014011711, -0.023883598, -0.17943852, 0.018954577, 0.011090297, -0.024811251, 0.0074489135, 0.015216275, 0.012717151, 0.02259596, -4.1450158E-4, -0.010591857, 0.026334263, 0.020685274, -0.04533038, -0.001813769, -0.011152602, -0.0070231627, -0.020436052, 0.015257812, 0.01791616, -0.0013906138, 0.03854605, -0.010529552, -0.003911372, -0.0034285078, 0.011062606, 0.001278984, 0.025808131, 7.5112184E-4, -0.011803344, -0.01813769, -0.020366825, -0.010543398, -4.923829E-4, 0.005496689, -0.012571773, 0.00962959, -0.016476221, -0.024783561, -0.008646555, 0.007317381, 0.037410714, 0.011069529, 0.019799158, 0.013963251, -6.546356E-4, 0.018234609, 0.034226235, 7.108832E-4, 0.010578011, -0.00355831, -0.01448246, -0.026085043, 0.017708477, -0.012467931, 0.0026739247, 0.02206983, -0.003200056, 0.013540962, 0.018234609, 5.0666113E-4, -0.028549554, -0.0011431244, 0.010169567, -0.008563481, -0.005451691, -0.013693263, -0.008078887, 0.015271657, -0.016739286, 0.027234225, -0.010148799, -0.011235676, -0.0045067314, -0.008944235, -0.0032364007, -0.021142177, -0.052170087, 0.014551688, 0.009151918, 0.01788847, -0.00564899, 0.033257045, -0.019536091, 0.004520577, 0.020311443, -0.009144995, 0.0019626087, 0.00992727, 0.004087903, -0.014101707, 0.0016363726, -0.03311859, -0.01888535, -0.012696383, 0.00539977, 0.013824796, 0.0018795354, -0.002684309, 0.008134269, -0.018469984, -0.008847316, -0.010093416, -0.008854238, 0.028881848, 0.037327643, 0.0073935315, 0.0020508743, 0.020671427, 0.019425327, 0.004974019, -0.018982269, -4.9514118E-5, 0.020339133, 0.012717151, -0.026597328, 0.006628564, -0.010439555, -0.016227001, 0.015742406, 0.0044375034, 0.03430931, -5.036324E-4, 0.0014338812, -0.011761807, -0.0024818175, -0.015908554, -0.09381755, -0.02259596, 0.013430198, 0.02547584, -0.015991626, 0.05593608, -0.008431949, 0.004046366, -0.017334647, 0.026237344, -0.0064139576, -0.013617112, 0.015507032, -0.0013473465, 0.020269906, -0.008902698, -0.016697751, -0.007968122, -0.015243966, 0.031429432, -0.008722706, -0.019549936, -0.005680143, -0.019660702, -0.0030667926, 0.015991626, -0.030100256, 0.0099065015, 0.021696, 0.016033163, 0.018580748, -0.024755869, 7.537179E-4, -0.034918513, -0.009885733, -0.013222514, -0.013644803, -0.027649593, 0.005209394, -0.052336235, 0.005583224, 0.019729929, 0.021875992, -0.032454003, -0.012668692, -0.0047317217, -0.045911893, 0.024354348, -0.005652452, -0.012717151, -0.02231905, -0.008549636, -0.012024873, -0.01306329, 0.018580748, 0.021488316, 0.011263367, -0.008175806, -0.004520577, -0.020671427, -0.006964319, -0.004468656, -0.013554808, 5.6810083E-4, 0.00517478, 0.022111366, -0.002199714, -0.012917912, 0.004177899, -0.007829667, -0.029324906, 0.015548569, -0.027815739, 0.013354047, -0.017971542, -0.005645529, -0.031207902, -0.017016198, 0.017943852, -0.040844414, -0.0032710147, -0.033257045, 0.021488316, -0.01654545, 0.009297296, 0.033533957, 0.021862146, 2.0898148E-4, -0.018276146, -0.036386143, 0.013326356, 0.037216876, -0.0020093375, -0.015243966, -0.009615744, 0.018400755, -0.011318749, 0.008985771, 0.012066409, 0.013665572, -0.0098372735, -0.012454085, -0.07731363, 0.008653478, -0.008667324, -0.01005188, -0.0028383406, -0.005707834, 0.0026393107, -0.016863897, -0.010778772, 0.015382422, -0.0121148685, 0.0017056004, -2.9400192E-4, -0.0029317983, -0.0045724977, 0.0035617715, 0.008404258, -0.008875007, -0.0053859246, -2.5441224E-4, -0.0074142995, 0.02159908, 0.024963552, 0.0014875329, -0.0121979425, 0.031595577, 0.0070473924, 0.025641985, -0.009165764, -0.01925918, 0.021363705, -0.039875224, -7.480931E-4, 0.0065454906, -0.0016164697, -0.022277514, -0.013651727, 0.019273026, 0.007255076, 0.011927954, -0.004295586, -0.03663536, -0.0027500752, -0.003354088, -0.005690527, 0.026278881, -0.0011154333, 0.021640617, 0.02094834, 0.008771165, 0.023745144, 0.007071622, -0.0033212048, -0.01900996, 0.0060678185, -0.016780823, 0.044001203, 0.011678734, -0.0018414601, -0.018940732, 0.03574925, 0.018193072, 0.015396267, -0.008182729, 0.019522246, -0.007469682, 0.0077742846, -0.0055001504, -0.005894749, -0.025198927, 0.0019349176, -0.014773217, 3.9849264E-4, 0.040179826, 0.011602583, 0.01117337, 0.004382121, -0.008895775, 0.0038698353, 0.02391129, 0.0046590324, -0.025337383, -0.01268946, 0.012329475, 0.007407377, 0.03364472, -0.006940089, 0.009401138, -0.003762532, 0.011879494, 0.0022637497, 0.005230162, 0.024478957, -0.012786379, 0.007026624, 0.009664204, -0.011907185, -0.0048286407, -0.008065041, 0.02269288, -0.011498741, -8.0434076E-4, -0.013568653, -0.02256827, -0.018829968, 0.00711662, -0.020712964, -0.020616045, -0.0017436758, 0.01092415, 0.020574508, 0.014523997, -0.002416051, 0.012474854, -0.052668527, 0.014101707, -0.014759372, -0.026458874, -0.011865648, 0.020740656, 0.015063974, 0.0061474307, 0.03998599, 0.002916222, 0.044001203, 0.013596344, 0.023648225, -0.026611175, -0.0055382256, 0.0027379603, 0.010529552, -0.008466562, -0.035527717, -2.418647E-4, 4.6858581E-4, -0.010155722, 0.015008592, 0.018649975, -0.028383408, 0.07969507, 0.017930007, 0.0074904505, 0.0073312265, -0.027926503, 0.024215892, 0.015991626, 0.017750014, -0.004167515, -0.0012746573, 0.0061647375, -0.015493186, -0.013125595, -0.04142593, 0.012011027, -0.0038490668, 0.004468656, 0.008695015, -0.0015186854, -0.016310075, 0.006548952, 0.001420901, 0.01005188, -0.0022585576, -0.011055683, -0.007684288, 0.017777706, -0.011651043, 0.0032987057, -0.0446381, 1.5067868E-4, -0.009054999, -0.0115472, -0.008688091, 0.0230944, 0.0034250466, -0.010536474, -0.008895775, 0.020242216, 0.02231905, -0.017625403, 0.0015792596, -0.029491052, -0.027801894, 0.0031862105, -0.004963635, 0.0054759206, -0.012793302, -0.027234225 ], + "id" : "cf790068-0c0d-4e03-9281-a427cf2677ce", + "metadata" : { + "source" : "movies.csv" + } + }, + "fa195203-e66a-44b9-8fcf-3ba3fe5aa3f1" : { + "text" : ",/nofXR1TN1vgGjdfnwGQwFaAWBaY.jpg,244786-329865-376867-334541-324786-381288-259316-334543-263115-11036-381284-64690-77338-277834-269149-597-194662-340666-274870-50646-297761\r\n608,Men in Black II,Action-Adventure-Comedy-Science Fiction,en,Kay and Jay reunite to provide our best last and only line of defense against a sinister seductress who levels the toughest challenge yet to the MIB's untarnished mission statement ��� protecting Earth from the scum of the universe. It's been four years since the alien-seeking agents averted an intergalactic disaster of epic proportions. Now it's a race against the clock as Jay must convince Kay ��� who not only has absolutely no memory of his time spent with the MIB but is also the only living person left with the expertise to save the galaxy ��� to reunite with the MIB before the earth submits to ultimate destruction.,36.032,Columbia Pictures-Amblin Entertainment-Parkes+MacDonald Image Nation,7/3/02,140000000,445135288,88,Released,Back in black.,6.354,8862,Will Smith-Tommy Lee Jones-Lara Flynn Boyle-Rosario Dawson-Johnny Knoxville-Rip Torn-Tony Shalhoub-Patrick Warburton-Jack Kehler-David Cross-Colombe Jacobsen-Derstine-Peter Spellos-Michael Rivkin-Michael Bailey Smith-Lenny Venito-Howard Spiegel-Alpheus Merchant-Jay Johnston-Joel McKinnon Miller-Derek Cecil-Sean Rouse-Peter Spruyt-Kevin Cotteleer-Marty Belafsky-Rick Baker-Martha Stewart-Michael Jackson-Sid Hillman-Tom Whitenight-Nick Cannon-Andre Blair-Jeremy Howard-Mary Stein-Martin Klebba-John Alexander-Denise Cheshire-Ernie Grunwald-Chloe Sonnenfeld-John Andrew Berton Jr.-William E. Jackson-Doug Jones-Biz Markie-Peter Graves-Linda Kim-Paige Brooks-Stephanie Kemp-Barry Sonnenfeld-Victoria Jones-Michael Garvey-Michael Dahlen-Kevin Grevioux-Derek Mears-Sonny Tipton-John Richardson-Philip Goodwin-Tim Blaney-Greg Ballora-Carl J. Johnson-Thom Fountain-Brad Abrell-Richard Pearson-Rick Avery-John D. Bair-Michael Beardsley-Michael Buonomo-Kristin Charney-Patrick Coleman Duncan-Darrell Foster-Ned Gorman-Gene LeBell-Pete Macnamara-Drew Massey-Matthew McGrory-Christopher Metas-Bart Mixon-Alexandra O'Hara-David Patykewich-Martin Pfefferkorn-David C. Roehm Sr.-Leo Rogstad-Thomas Rosales Jr.-Brandee Sanders-Hannah Sim-Peter Siragusa-Daniel Browning Smith-Brian Steele-Mark Steger-Alan Tuskes-Shannon Watson-Bo Welch,saving the world-new york city-secret identity-undercover-space marine-illegal immigration-deportation-new identity-flying saucer-light-firearm-superhero-based on comic-alien-buddy cop-fictional government agency,/enA22EPyzc2WQ1VVyY7zxresQQr.jpg,/o1l6OCqA3pYDZHIc5L1s7CEzCMv.", + "embedding" : [ 0.0023910247, -0.049831126, -0.013204977, -0.058471423, -0.022592466, 0.023353247, 0.0063545555, -0.038663957, -0.012892514, -0.031572394, 0.032469027, 0.009733915, 0.020024832, -0.002691601, 6.2832325E-5, 0.005617549, 0.023067953, -0.003021046, 0.013510648, -0.012811001, 0.0038616406, 0.01310988, -0.011099245, 0.008966343, 0.020228611, 0.0059469948, 0.01829949, -0.0119619155, 5.786517E-4, -0.011771721, 0.0069896714, -0.008450098, -0.008694635, -0.01700888, -0.026043149, 0.0053492384, 0.0047820495, -0.015473734, 0.03439815, -0.015120514, 0.011778514, 0.0098154275, -0.0062254947, -8.028103E-4, -0.010800367, 0.0056752875, 0.0058077443, -0.012912892, -0.014753709, 0.018530441, 0.013340831, 0.020812783, -0.012790623, -0.023910247, -0.013911416, 1.4126659E-4, -0.013979343, 0.009272013, 0.009543721, -0.009856184, 0.00369522, -0.022510953, -0.032713566, 0.0011683416, -0.0076349764, -0.0070168423, -0.014740123, -0.015582416, 0.011513599, -0.0038990004, 0.017103978, 0.018761393, 0.012417026, 0.0042284457, 0.023543442, -0.030050833, -0.021301856, -0.0045477017, -0.0022076222, 0.008307452, 0.012450989, 0.0034201161, -0.02308154, 0.015011831, 0.01774249, 0.010039587, -0.0133204525, 0.031219175, -0.018435344, 0.01156794, 0.017837588, 0.028719466, 0.011574733, 0.019345563, -0.010399599, 0.02313588, -0.021668661, 0.013143843, 0.0064802202, -0.04393508, 0.002621976, -0.021247515, -0.014957489, -0.013062331, 0.0043541105, 0.003932964, -0.006385123, -0.006031903, 0.027605467, -0.004194482, 0.010202611, 0.008538404, 0.024032515, -0.039424736, -0.0056515126, -0.03214298, 0.013863867, -0.02566276, -0.0103928065, -0.018571198, 0.0093874885, 0.031137662, -0.0054986775, -0.047575958, 0.039044347, 0.035648003, 0.015120514, -0.024358563, 0.00888483, -0.008674257, 0.030213857, 2.4878205E-4, 0.010148269, 0.0156911, -0.013476685, 0.02507859, -0.022510953, 0.0045748726, -0.017239831, -0.03064859, 0.038990006, 0.032740735, -0.022347929, -0.02199471, -0.018489685, 0.008708221, 0.002236491, -0.0050130007, 5.294048E-4, 0.0073293056, 0.01404727, 0.0010757913, 0.004968848, 0.0078930985, 0.008273489, 0.00582133, -0.014522757, 0.0023570613, 0.00847727, -0.019019514, -0.0048329947, -0.011432087, 0.0031467108, -0.021247515, 0.015500904, 0.031192003, 0.0043744883, -0.02146488, 4.958659E-4, 0.0023672502, -0.0035084211, 0.025581246, -0.008436513, 0.020255784, -0.0043031652, 0.022714734, 0.011201136, -0.013694051, -0.023163052, 8.104521E-4, 0.0014077837, 0.0134630995, 0.03591971, 0.020106344, -0.00397372, 0.021981124, 0.027442442, -0.040864784, 0.00784555, -0.018163636, 0.008796525, 0.019712368, -0.01645188, -0.009944489, -0.6486198, -0.011934745, 0.009129367, -0.008395757, 0.01227438, 0.0116766235, 0.0031025582, -6.372386E-4, -0.013218562, 0.004129952, -0.02607032, 0.015568831, 0.005491885, -0.010161855, -0.024358563, -0.01695454, 0.010875086, -0.0092516355, 0.0138910385, 0.005203196, -0.04841825, 0.018992344, 0.019196125, 0.0031942595, -0.006191531, 5.480847E-4, 8.444155E-4, -0.01999766, -0.0059062387, 0.0046733664, -0.024888393, 0.012362684, 0.011615489, -0.01938632, 0.03624576, -0.008253111, -0.013245733, 0.032278832, 0.033528686, 0.026437124, -0.00944183, -0.005383202, 0.023801563, -0.004870354, -0.01037922, 0.02996932, 0.0074787447, -0.004360903, 0.0044084517, -0.0021838478, 0.0029684028, 0.011017733, 2.579097E-4, 0.008694635, -0.0059130313, 0.016261686, 0.014441245, -0.0153922215, 0.013938587, 0.0051318724, -0.01108566, 0.0218181, -0.0028325492, -9.025778E-4, -0.018245148, 0.0440981, -0.004805824, -0.012464575, -0.0022025276, -0.02586654, 0.010902258, 0.007431196, -0.019725954, -0.0058281226, 0.003746165, 0.02088071, 0.031056149, -0.010997355, -0.010365635, 0.005386598, 0.002801982, -0.016044319, -0.012919684, 1.8223497E-4, 0.032306004, -8.1215025E-4, -0.03070293, 0.0073836474, 0.006548147, -0.0076078055, 0.023584198, -0.0019902564, 0.001678642, -0.001242212, -0.012851758, -0.0047243116, -0.008789733, -0.009543721, 0.0402942, -0.0414082, -0.022470197, -0.018217977, 0.034180783, -0.0013619331, 0.0155280745, 8.613972E-4, -0.0035321955, 0.008083293, 0.029099857, -0.009822221, -0.011038111, -4.2900044E-4, -0.0089595495, 0.003953342, -5.820481E-4, -0.02882815, 0.014522757, 0.007295342, 0.022673978, 0.0019121404, 0.009333148, -9.4333396E-4, -0.009020684, -0.020296538, 0.020975808, 0.03469703, 0.0063647446, -0.004143537, -0.021206759, 0.010664513, -0.0040824027, 0.035050247, 0.031164832, -0.0052133845, 0.008728598, 0.002623674, 0.018408174, -0.021070905, 0.0145363435, 0.0056583057, -0.013021574, 0.0012006068, -0.011873611, -0.003566159, -0.0076961108, -0.024249882, -0.015609588, -0.0020683722, -0.007193452, 8.134239E-4, -0.017049637, 0.020513905, 0.009509757, 0.007899892, 0.019304806, -0.01891083, -0.033474345, -0.017715318, -0.0061745495, -6.869101E-4, 0.0034914394, 0.008572367, -0.009007098, -0.02680393, 0.01829949, 0.011703794, -0.017606637, 0.018815733, -0.0052677263, -0.023054369, 0.008355001, -0.0133883795, -0.00749233, 0.017375685, -0.005145458, 0.008293867, -0.017728904, 0.019264052, 0.0026338631, -0.0039974945, 0.0048805433, -0.01184644, -0.0075942203, -0.0067926836, 0.036680494, 0.023326077, 0.018978758, -0.013809526, -0.00282236, 0.002693299, -0.0071662813, -0.012281172, -9.798446E-4, -0.0037495615, -0.0035220066, 0.010943013, 0.0058451043, 0.0022313965, 0.004360903, 0.02389666, 0.03844659, 0.009856184, 0.0042454274, -0.0063749338, 0.008830489, -0.027904345, -0.0019427076, -0.038011856, 0.013911416, -0.019005928, 0.031110492, 0.0022110185, 0.00661947, -0.011269062, 0.012899307, 0.006578714, -0.024562344, 0.0077640372, -0.022782661, -0.005009604, -0.0055122627, 0.0019596892, 0.022510953, -0.00470733, -0.019739538, 0.008083293, 0.013612538, -0.009869769, -0.00613719, -0.021451294, 0.009896941, 0.0023706467, 0.017131148, 0.012681941, -0.0023281923, 0.005654909, 0.036001224, 9.628629E-4, 0.04173425, -0.019101027, -0.008973136, 0.02050032, 0.010861501, 0.014074441, 0.005335653, -0.0116766235, 0.013687258, 0.009292391, -0.025024246, 0.04436981, -0.02310871, 0.012899307, -0.007974611, 0.003963531, 0.019780295, -0.00787272, 0.0041265553, 0.0027476405, 0.033583026, 0.02196754, 0.018897247, -0.019155368, 0.015541661, 0.009108989, 0.022415856, -0.0028800978, -0.007601013, -7.268172E-4, 9.3654124E-4, -0.010026001, -0.002920854, -0.024114028, 0.006300214, 0.011316611, 0.0036001224, -0.016207343, 0.0010800367, 0.004225049, 0.01609866, 0.0018493081, -0.010943013, -0.026179003, 0.015269953, 0.030159516, -0.015786197, -0.022225661, -0.0146042695, -0.008253111, -0.030458394, -0.0065413546, -0.009842599, 0.029154198, -0.022823418, -0.0038039028, -0.021070905, -0.0076553547, 0.021451294, -0.013503855, 0.033936247, 0.017063221, -0.00298029, 0.010515074, 0.009869769, -0.018747807, 0.027754905, -0.013911416, 0.026532222, -0.0016404331, 0.010915843, -0.021505637, -0.005617549, -0.0048669577, -0.033311322, 0.01867988, -0.009896941, -0.016003562, -0.021981124, -0.021532807, 0.007838757, -0.012926477, -1.1473267E-4, -0.048309565, -0.013279697, 0.013707636, 0.077816986, 0.016533392, 0.011561148, 0.0014069346, -0.01683227, 0.008028952, -0.008361794, -0.01192116, -0.009407867, -0.012525708, 0.009204087, -0.0075059156, 0.0064904094, 0.018720636, 0.022891345, -0.00881011, -0.01227438, -0.0017134545, -0.010623758, -0.009238049, -0.027904345, -0.015935635, 0.011975502, 0.04447849, 0.016288856, -0.030241027, 0.016153002, 0.008647086, -0.002424988, -0.004282787, -5.285557E-4, 0.009346733, 0.00505036, -0.0015835444, 0.009115782, 0.007451574, 0.022239245, 0.0035627626, 0.018924417, 0.008130843, 0.017239831, -0.0021583752, -0.0018527044, -0.018041369, 0.007173074, -0.030920297, -0.023475515, 0.021138832, 0.035838198, -0.041544054, 0.026817515, 0.0052813115, -0.01865271, -0.007044013, 0.006955708, 0.011941538, -0.006616074, -0.011574733, -0.020024832, 0.01037922, 0.002773113, -0.03553932, 0.024005344, -0.008626708, 0.00665683, -0.017199075, -0.015935635, -0.012240416, -0.0071255253, 0.013558197, 0.009054648, -0.028936833, -0.012281172, -1.1416219E-5, 0.00641569, 0.0026746192, 0.023421174, -0.017878344, 0.009856184, 0.004180897, -0.045266446, -0.02647788, 0.016139416, -0.025649173, -8.6691626E-4, 0.0162481, -0.0013152334, 0.0026966955, -0.01645188, 0.017688148, -0.004085799, -0.005882464, -0.01285855, 0.00787272, 0.040267028, -0.0068096654, 0.017878344, 0.02090788, 0.010623758, 0.006429275, -2.9399584E-4, -0.015799783, -0.0038582443, -0.01577261, -0.013157428, -0.008395757, 2.8953815E-4, 0.011445672, -0.017144734, -0.020106344, -0.021098075, -0.018924417, 0.0067213606, -0.013524233, 0.025065003, -0.0043982626, 0.023095125, 8.613972E-4, -3.2413838E-4, 0.001599677, 0.013395173, -0.012131733, 0.0032214304, 0.033256978, 0.014060855, 0.02812171, -0.0024198936, -0.03217015, -0.017525123, 0.011140001, -0.004819409, 0.012138526, -0.006300214, 0.0041605188, -0.021206759, -0.016234513, 0.01685944, 0.017443612, 0.0014943904, -0.00254386, -0.015025416, -4.05969E-5, 0.009435038, -0.0011038111, 0.0013661785, -0.024358563, -0.0012549483, -0.0049722446, -0.01698171, 0.02325815, -0.02011993, 0.0036171041, -0.021247515, -0.0032961497, -0.009978453, -0.04290259, -0.05944957, -8.4908545E-4, 0.049776785, 0.019644441, 0.02401893, -0.004999415, 0.02953459, 0.011228306, 0.0140336845, 0.020391636, -0.00508772, 0.00393636, -0.021383367, 0.008117257, 0.008565574, 0.015989978, 0.014658611, 0.02607032, -0.006857214, 0.026355613, -0.0077029034, 0.012715904, 0.002881796, -0.018054953, -0.008524818, 0.0075534643, -0.019984076, -3.209543E-4, -0.029371563, -0.012138526, 0.03469703, -0.003406531, -0.009115782, 0.0024793295, 0.033148296, 5.128476E-4, 0.012254002, -0.008708221, 0.005254141, -0.014658611, -0.0028580218, -0.021478467, -0.0038718297, 0.012926477, -5.404429E-4, 0.011404916, 0.0020921465, -0.017660977, 0.007241001, 0.017348515, -0.0037597504, -0.017158318, 0.017131148, -8.019612E-4, -0.0065005985, -0.029779125, -0.020663343, -0.050809275, -0.01622093, -0.01010072, 0.0014052364, 0.02052749, -0.018217977, -0.03738693, 0.03434381, -0.016750759, 0.047874834, -4.107451E-4, 0.058743127, 0.038337905, 0.014740123, -0.023720052, 0.009740708, -0.015935635, -0.0038072993, 0.022103393, 0.0347242, -0.017226245, -0.013429136, -0.005148854, -0.014617856, -0.022035467, -0.046869516, 0.024168368, 0.010284123, 0.021166002, -0.020187857, -0.008789733, -0.03703371, -8.3804736E-4, 0.0035254029, 0.009727123, 0.01574544, -0.022008294, -0.020038417, -0.004819409, -0.013789148, 0.0056277383, 0.011370952, -0.034316637, 0.009013891, -0.016614905, 0.019399904, -0.013714428, -0.002256869, 0.03211581, -0.0070304275, 0.015324295, 0.0024810277, 0.0068775923, 0.006853818, 0.0019291221, 0.011051697, 0.029262882, -0.027129978, 0.014631441, -0.011907575, 0.00721383, 0.0016344895, 0.023760807, -0.026314856, -0.021247515, -0.006419086, 0.0103180865, 0.023271734, 0.02996932, -0.009869769, -0.013728014, -0.019291222, -0.023611369, 0.0025710308, -0.0048329947, 0.013055538, -0.03575669, 0.0010664513, -0.0052405554, -0.002396119, 0.0029038722, -0.0047548786, 6.745984E-4, -0.0068096654, 0.027415272, 5.243103E-4, 0.0012362684, -0.015962807, 2.6958462E-4, -0.037848834, -0.021301856, -0.007933854, -0.014386904, 0.009129367, -0.013395173, 0.0076621473, -0.01888366, -0.019725954, -0.010005623, 3.8803206E-4, -0.01718549, -0.0012770245, 0.028637955, -0.01647905, -0.012953647, -0.0018628935, 0.035702344, -0.0012804209, 0.0010307898, 0.0033946438, -0.012444196, 0.018435344, -0.022497369, 0.0137483915, 0.0054443358, -0.032767907, -0.008035745, 0.0036171041, 0.030050833, 0.016669245, -0.0148895625, -0.007736867, 0.0058043483, -0.012539295, 0.025295954, 2.28404E-4, 0.00282236, 0.034289468, 0.020772027, 0.03477854, 0.019264052, -0.014115197, -0.019019514, -9.3770876E-5, -0.008110465, -0.005553019, -0.0065753176, 0.011588318, 0.02123393, 0.0063545555, -0.00739044, -0.032577712, -0.009041062, -0.018842904, -0.041652735, -0.0074855373, 0.017579466, 0.04257654, 0.007512708, -0.001153058, 0.015555246, 0.010290916, 0.014712953, -0.010515074, -0.0067009823, 0.006072659, 0.016873026, 0.025622003, 0.030241027, -0.0391802, 7.552615E-4, -0.0040076836, -0.005712647, 0.020568246, 0.043092784, -0.023557028, -0.00592322, -0.0025489544, -0.004401659, 0.004690348, 0.0012158904, 0.011914367, -0.037685808, -0.007736867, 0.0055564153, 0.02260605, 0.0038242808, 0.0010494696, 0.0207041, -0.0029565156, -0.009733915, 0.0023468721, -0.02586654, 0.013612538, -0.030349711, 0.01098377, 0.013014782, 0.0049314885, 0.019399904, 0.013184599, -0.0032333175, 0.0015088249, -1.8127974E-4, 0.0058960496, -0.01571827, -0.005026586, -0.010684892, 0.047440104, -0.025037833, 0.018163636, -0.026409954, 0.0041061775, -0.008565574, 0.004666574, 0.007533086, 0.009088611, 0.017348515, -0.04627176, -0.023244563, 0.013585367, -0.0059945434, -0.007621391, 0.010481111, -0.023991758, -0.003111049, -0.0053220675, 0.009299184, -0.004221653, -0.02020144, -0.0071391105, -0.017307758, -0.012192867, 0.009197294, 0.18584782, -0.013694051, 0.020962222, 0.0476303, -0.025065003, 0.0034846468, 0.021030148, 0.00868105, 0.013612538, 0.017076807, -0.02958893, 0.020364465, 0.0057194396, -0.0034337016, 0.019196125, -0.021152416, -0.017660977, -0.027469613, -0.020826368, -0.01885649, -0.010616965, 0.005726232, -0.021125246, -0.021981124, 0.01313705, -0.0041469336, -0.0033895492, 0.011989087, 0.018965174, -0.001232023, -0.01622093, -0.03956059, 0.012335514, 0.004449208, -0.011194343, -0.0054171653, -0.011737757, 0.008667464, -0.0026797138, 0.006290025, -0.020853538, 0.004262409, 1.0618875E-4, -0.009299184, 9.5437205E-4, 0.02551332, -0.028230393, -0.010148269, -0.0061745495, 0.010256953, -0.041924443, -0.0043575065, 0.0026083905, 0.033827566, -0.018177222, -0.012559672, 0.013687258, 0.0017796832, -0.004710726, -0.01695454, 0.0072342083, 0.024114028, -0.03591971, 0.003735976, -0.0059164274, 0.040158346, -0.022361515, -0.01349027, 0.02255171, -0.02257888, -0.00536622, -0.018842904, -0.034968734, -0.0068470254, 1.2853032E-4, -0.012824587, 0.0040552323, 0.028964004, 0.0075534643, 0.021709418, -0.027795661, -0.018285904, -0.0055292444, -0.0072613787, -0.025771443, -0.014482002, 0.018476099, -0.010990562, -0.011493221, -0.011370952, -0.021396954, -0.024589514, -0.016560562, 0.013381586, -0.013992928, 0.009829014, 0.017715318, 0.0091769155, -0.028040199, -0.008613123, -0.04070176, 0.023720052, 0.023787979, -0.019522173, -0.009611648, -0.023149466, 0.0017847776, 0.015147685, 0.022103393, -0.0162481, 0.0024300825, -0.022497369, -0.011527184, -0.018027782, -0.014522757, 0.02639637, 0.0029904789, -0.0017440215, 0.04388074, -0.021573564, -0.0021023357, -0.0018510063, 0.0014553325, -0.0013899528, 6.7035295E-4, -0.03882698, -0.019956905, 0.0027578296, 0.0024385734, -0.0313822, 0.0086063305, -0.019549344, 0.022402272, 4.5171345E-4, 0.0019138387, 0.017905515, 0.044288296, 0.002791793, -0.0053016897, 7.4846885E-4, -0.0044254335, -0.0012260794, 0.012573257, -0.0013992928, 0.012634392, -0.022239245, 0.012844965, 0.010419977, -0.007145903, -0.02624693, -0.017701734, -0.012124941, -0.0023587595, 0.0052507445, 0.042277664, 0.009489379, -0.024942735, -0.03244186, -0.021301856, 0.043337323, -0.032686394, 0.014482002, 0.019698782, -0.024562344, -0.024698198, -0.008789733, -0.17497954, 0.015093343, 0.013021574, -0.015623173, 0.025214441, -0.006429275, 0.014251051, 0.02272832, -0.0028682107, -0.012627599, 0.01045394, 0.020296538, -0.04040288, -0.007227415, 0.0030312352, 0.012892514, -0.0116019035, 0.025486149, 0.011452464, -0.008280281, 0.04135386, -0.012050221, -0.010263745, -0.012294757, 0.0048669577, -7.4592157E-4, 0.00242329, 0.024942735, -0.011404916, -0.0036103113, -0.020187857, -0.004652988, 0.01285855, 0.009183709, 0.007132318, -0.00840255, -0.014821636, -0.014617856, -0.018992344, -0.023720052, 0.02695337, 0.017497953, 0.023597782, 0.0024538569, 0.0201471, 0.012389855, 0.018992344, -0.016411124, 0.008830489, -0.021573564, -0.0058179335, -0.0436362, 0.007091562, -0.006925141, 0.017674563, 0.01632961, -0.022429442, -0.0050435676, 0.0043846774, 0.0034218144, -0.036028393, -0.006130397, -0.0025914088, -0.008450098, -0.008259904, -0.023883076, -0.0076145986, 0.014631441, -0.025540492, 0.009129367, -0.024290636, 0.010549038, 0.013952172, 4.8864866E-4, 0.0011292837, -0.016873026, -0.022945685, -0.0033606803, 0.0013101388, 0.001974973, -0.019549344, 0.033854734, -0.0033742655, 0.013721221, 0.024834052, -0.016519807, 9.6710835E-4, -0.02333966, 0.008239525, -0.0062288907, -0.0011573035, -0.02847493, -0.02533671, 0.006853818, 0.012444196, 0.0047277077, 0.0038378662, 0.005590379, 0.0031670888, -0.0027391496, -5.4712946E-5, 0.0012608919, -0.033012442, 0.016710002, 0.017294172, 0.022266418, 0.009455415, 0.019209709, 0.021532807, -0.0036918237, 5.4638647E-4, -0.0068606106, 0.024725368, 0.02715715, -0.0062968177, 0.009788257, -0.01589488, -0.016003562, -0.0060624704, 0.0057771774, 0.041897275, -0.014332563, -0.0153922215, -0.023027198, 0.011031318, -0.022293588, -0.09324996, 0.006127001, 0.01498466, 0.030594246, -0.024806881, 0.014332563, -0.0031823723, 0.025880124, -0.011235098, 0.02703488, -0.007961025, -0.022334345, 0.0056107566, -0.013252526, 0.015731856, -0.01174455, -0.013361209, -0.013055538, -0.01642471, 0.028991174, -0.0010460733, 0.002384232, -0.007200245, -0.017688148, -0.019685198, 0.022932101, -0.031355027, 0.018951587, 0.01888366, 0.0074447813, -0.0022313965, -0.01941349, 0.003654464, -0.040864784, -0.004717519, -0.013938587, -0.011900782, -0.027401686, 0.019182539, -0.04572835, 3.3347833E-4, 0.008205562, 0.010413184, -0.03333849, 0.01627527, -0.012206453, -6.352221E-5, 0.029398736, 3.735976E-4, -0.033093955, -0.012403441, -0.021668661, -0.04624459, 0.0016395841, 0.016791513, 0.012838172, 0.013028367, 0.0063647446, -0.0071119396, -0.002136299, -0.0047039334, -0.0042454274, -0.0363001, 0.025472565, -0.003338604, -0.009958074, -0.01685944, -0.010827538, 0.02204905, -0.018245148, -0.010644135, 0.026722418, -0.031952783, -0.020079173, -0.010718855, 0.010195818, -0.019549344, -0.007994989, 0.029697614, -0.031898443, 0.0017126054, -0.026966954, 0.0043744883, -0.02695337, 0.013510648, 0.01695454, 0.013673672, 0.0073972326, -0.0034710614, -0.02313588, 0.0068809884, 0.031898443, 0.0019410093, -0.014726538, -0.011649452, 0.021532807, 0.0030957656, 0.0054171653, 0.0051114946, -0.0044560004, -0.01577261, -0.0059945434, -0.07423045, 0.019725954, -0.014291806, -0.0118192695, -0.018041369, -0.002007238, 0.004792238, 0.0029768937, -8.465382E-4, 0.029860638, -0.0058688787, 0.01815005, -0.0055020736, 0.0016310932, -0.006996464, 0.009930903, 0.009686367, -3.536441E-4, -0.0014884468, -0.0063409703, -0.018720636, 0.018516855, 0.036897857, -0.0140336845, -2.0505414E-4, 0.03214298, -0.015541661, 0.013802733, -0.027306588, -0.0086063305, 0.0324962, -0.003428607, -0.0011437181, 2.7850003E-4, -0.021695832, -0.018489685, -0.0036578602, -0.0025370673, 0.017919099, 0.0016650566, -0.018951587, -0.024277052, -0.0066840006, -0.006218702, -0.016723588, 0.022850588, -0.0156911, 0.020989392, 0.0133883795, 0.007295342, 0.03877264, -0.0033436986, -0.032333173, -0.0027272624, 0.019793881, -0.019780295, 0.04852693, 0.015283538, 0.010012416, -0.0022772471, 0.02642354, 0.0033029425, 0.025499735, -0.026722418, 3.075812E-4, 0.0064224824, -0.0018934606, 0.005661702, 0.00212611, -0.03545781, 0.012946855, -0.00578397, 0.015568831, 0.023230977, 0.0036035187, 6.894574E-4, 0.0016115642, -0.003545781, 0.0028648144, 0.011112831, 0.019834636, -0.011608697, -0.02958893, 0.0064904094, -0.0047277077, 0.039777957, 0.0016243005, -0.0014196709, 0.009788257, 0.007933854, -0.009047855, 0.012566465, 0.026437124, -0.0032231284, 0.0030346315, 0.03513176, -0.0053730127, -0.0070372205, -0.009733915, 0.028148882, 0.0033148297, -0.013619331, -0.015351465, -0.035430636, -0.015704684, 0.018625539, -0.022741904, -0.016574148, -0.0056481166, 0.03217015, 0.0049824333, 0.014848807, -0.017864758, 0.016085075, -0.04067459, 0.015596001, -0.00470733, -0.021098075, -0.012817794, 0.045619663, 0.014549929, 0.010915843, 0.030268198, -0.021505637, 0.043391664, 0.029208539, 0.031735417, -0.022986442, 0.008803318, -0.008932379, 0.003328415, -0.0024368754, -0.016180173, 0.010046379, -0.029235711, 0.01589488, 0.019114612, 0.031192003, -0.009591269, 0.0665683, 0.008511232, 0.0014493889, 0.020432392, -0.016873026, -0.013075916, -0.008925586, 0.016655661, -0.011690209, -0.009197294, -0.0055564153, -0.013782355, 0.014903148, -0.033311322, -0.0016429804, 0.0131030865, -7.938949E-4, 0.020867124, -0.0065753176, -0.016995294, -0.0042997687, -0.010026001, 0.028013028, 0.0025642382, -7.968667E-4, -0.015419392, 0.02366571, -0.0033470949, -0.008789733, -0.019875392, 0.009000306, -0.016913783, 0.006524373, -0.014930319, 0.03621859, -0.018041369, 0.0019189331, 0.009645611, 0.03401776, 0.020513905, -0.002306116, 0.00739044, -0.019807465, -0.0085316105, 0.012946855, -0.008660671, -0.003966927, -0.023095125, -0.02328532 ], + "id" : "fa195203-e66a-44b9-8fcf-3ba3fe5aa3f1", + "metadata" : { + "source" : "movies.csv" + } + }, + "e3a9f069-472a-4d33-b33a-8631a6949d1d" : { + "text" : ",91314-8373-38356-1858-716255-424783-166426-25565-315635-282035-281338-337339-76934-297762-315267-283995-293167-673025-246655-196798-268092\r\n10527,Madagascar: Escape 2 Africa,Family-Adventure-Animation-Comedy,en,Alex Marty and other zoo animals find a way to escape from Madagascar when the penguins reassemble a wrecked airplane. The precariously repaired craft stays airborne just long enough to make it to the African continent. There the New Yorkers encounter members of their own species for the first time. Africa proves to be a wild place but Alex and company wonder if it is better than their Central Park home.,64.592,DreamWorks Animation,10/30/08,150000000,603900354,89,Released,Still together. Still lost!,6.471,6087,Ben Stiller-Chris Rock-David Schwimmer-Jada Pinkett Smith-Sacha Baron Cohen-Cedric the Entertainer-Andy Richter-Bernie Mac-Alec Baldwin-Sherri Shepherd-Will.i.am-Elisa Gabrielli-Tom McGrath-Chris Miller-Christopher Knights-Conrad Vernon-Quinn Dempsey Stiller-Declan Swift-Fred Tatasciore-Eric Darnell-Willow Smith-Thomas Stanley-Zachary Gordon-Meredith Vieira-Lesley Stahl-Al Roker-David Soren-Phil LaMarr-Stephen Kearin-Dan O'Connor-Edie Mirman-Fergie-Harland Williams-Danny Jacobs-Bridget Hoffman-Terrence Hardy Jr.-Conner Rayburn-Holly Dorff-David P. Smith-Lynnanne Zager-Jackie Gonneau-John Eric Bentley,africa-jealousy-dance-hunger-lion-zoo-hippopotamus-giraffe-chimp-penguin-volcano-madagascar-airplane-friendship-cartoon-zebra-slapstick comedy-sequel-friends-shark-animal-duringcreditsstinger-lemur-talking animals,/agRbLOHgN46TQO4YdKR462iR7To.jpg,/8xcm94SLAxvNmJYuGh42ziydu70.jpg,80321-953-8355-950-810-10192-9502-49444-46195-57800-425-13053-809-22794-15512-5559-38055-9836-10555-7518-49013\r\n74,War of the Worlds,Adventure-Thriller-Science Fiction,en,Ray Ferrier is a divorced dockworker and less-than-perfect father. Soon after his ex-wife and her new husband drop off his teenage son and young daughter for a rare weekend visit a strange and powerful lightning storm touches down.,39.555,Paramount-DreamWorks Pictures-Cruise/Wagner Productions-Amblin Entertainment,6/28/05,132000000,603873119,117,Released,They're already here.,6.", + "embedding" : [ 0.01695166, -0.038766384, -0.010347834, -0.041557122, -0.0010396189, 0.034400675, 0.0043967934, -0.019811474, -0.0058577857, -0.014160921, 0.034925666, 0.035201978, 0.019134512, -0.011017888, 0.0031775725, 0.0031862073, 0.017670067, -0.030919163, 0.012806999, -0.011308013, -0.0012226746, 0.010499805, -0.014589203, -0.009180422, 0.01914833, 0.012979693, 0.0116257705, 0.003491876, -0.015183271, -0.006631456, 0.013041863, -0.013055678, -5.9709005E-4, -0.027078444, -0.029261298, -0.0031568492, 0.008759048, -0.03600328, 0.034345414, -0.008386028, 0.004175745, 0.014354339, -0.017573358, -0.009304761, 0.005032308, 0.022906153, -0.0045073177, -0.0078265, -0.009422193, 0.028902095, 0.016772056, 0.011494523, -0.009491271, -0.015514843, -0.016164174, -0.012938246, -0.021054871, 0.011508339, 0.0046869195, -0.002277836, 0.014865513, -0.009373839, -0.030311279, -0.010755393, -0.023417328, -0.007108092, 0.014768804, -0.018043086, 0.009829751, 0.005584929, 0.027106075, 0.0035713152, 0.021441707, -0.00330882, 0.021980513, -0.019687135, -0.024550201, 0.008828126, -0.008130441, 0.015418135, 0.0067592496, -0.016371407, -0.0136013925, 0.017338494, 0.017518096, 0.01199879, -0.014064212, 0.022464056, -0.031554677, 0.029979706, -0.00301524, 0.033046756, -0.0040444974, 0.0110247955, 0.019548979, 0.005115201, -0.018581891, 0.0069941133, -0.009981723, -0.052277975, -0.0053086183, -0.0039063417, 0.019438455, -0.009180422, 0.009318577, -0.015777338, 0.0048941523, -0.009242591, 0.01490696, -0.016357591, 0.008696878, -0.0031205835, 0.038600598, -0.04642019, -0.0093116695, -0.02186999, 0.023044309, -0.001377236, -0.029896813, -0.018139794, 0.012986601, 0.03191388, 0.0065209316, -0.02631859, 0.034400675, 0.004593665, 0.009940276, -0.03580986, -0.008593261, -5.150603E-4, 0.028377105, -0.015279979, 0.0394019, -0.0076676207, -0.022629842, 0.049653023, -0.024785066, 0.0032241999, -0.019314114, -0.034262523, 0.04177817, 0.030421803, -0.008565631, -0.016647717, -0.038020346, 0.013007324, 0.015072746, -0.01258595, 0.022118669, 0.0010171686, 0.029233668, 0.007971562, 0.0030066054, 0.022533134, 0.006482939, 0.010955717, 0.008565631, -0.0030584135, -0.007570912, -0.012344179, -0.0076538054, 0.004852706, 3.8942535E-4, -0.016716795, 0.002396995, 0.031223103, 0.017214155, -0.02344496, -0.008116625, -0.018264135, -0.017683882, 0.015722075, 0.0019410824, 0.018761493, 0.003105041, 0.038462445, -0.00810281, 0.0029686126, -0.016523378, -0.005360427, 0.013290542, 0.008807402, 0.010292572, 0.050150383, -0.0048941523, -0.004666196, 0.022160115, -0.027382387, 0.0076745283, -0.0012131765, -0.003930519, 0.00236591, 0.012447795, -0.0078817615, -0.63838816, -0.0077436063, -0.0065831016, -0.010527436, 0.011308013, 0.01172248, -0.0029444355, -0.0021396806, -0.035174347, -0.0010741577, -0.015694445, 0.013532314, 0.026926473, -0.01997726, -0.014229999, -0.017297046, 0.018761493, -0.028846832, 0.01837466, 0.018982543, -0.039540056, 0.022588396, 0.03138889, 0.0036473006, -0.0061928127, 1.329745E-4, 0.0048596137, -0.017310863, 0.01255832, 0.007412033, -0.01827795, 0.010624145, 0.0146444645, -0.010603421, 0.030781006, -0.0030066054, 0.0012667116, 0.054902926, 0.024937037, 0.02851526, -0.014326707, 0.0030618676, 0.01675824, 0.016067464, -0.010182047, 0.00525681, 0.0148378825, 0.012606674, 0.017241785, -0.015072746, -0.01199879, 0.011687941, -0.0054813125, -0.015197086, -0.002718206, 0.007715975, 0.013186926, -0.04354656, 0.020488435, -0.005350065, 0.001153597, 0.014506309, 0.015362873, 0.020184493, -0.004265546, 0.03083627, 0.002163858, -0.0020930532, 3.7431458E-4, -0.032162562, 0.012413256, 0.00881431, -0.02616662, -0.001742484, 0.008275504, 0.012385625, 0.015335241, -0.003315728, -0.011390907, 0.015887862, 0.009442917, 0.004165383, 0.0016656352, 0.015791154, 0.0123303635, -0.012302732, -0.032052036, 0.0053120726, 0.015874047, 0.00514974, 0.013159295, 0.029344192, 4.7231853E-4, -0.010009354, -0.016357591, -0.020833824, -0.007798868, -0.009850475, 0.027354755, -0.05984889, -0.015832601, -0.032273084, 0.015625367, -0.021206843, 0.008683062, -0.014112567, -0.0073774946, -0.009691596, 0.041557122, 0.0065623783, -0.02264366, -0.0016380041, -0.021496968, -0.014437232, -0.010810655, -0.027796851, 0.021054871, 0.016523378, 0.015197086, 0.0072324313, -0.004075582, 0.0062549827, -0.0070528295, -0.023320619, 0.020571329, 0.017490465, -0.0029599778, -0.017131262, 0.0021483153, 0.0057196305, 0.0057783467, 0.018485183, 0.009380747, -0.004693827, -0.011681033, 0.022035776, 0.030781006, 7.132269E-4, 0.011639587, 0.009097529, -0.030698113, 0.00621699, -0.014084936, -0.01892728, 0.0025696892, -0.028902095, -0.021483153, -0.0012822541, -0.01595694, -0.010334019, -6.4069533E-4, -0.0052913493, -0.0030048783, -9.765854E-4, -0.009456732, 0.0041964683, -0.0059026866, -0.02137263, 0.0119780665, -0.011839911, 0.015445766, 0.012862261, -0.0032984584, -0.015072746, 0.012282008, 0.0069768443, -0.008026824, 0.013290542, -0.0058094314, -0.02344496, 0.004617842, -0.013414882, -0.018416105, 0.01747665, -0.005260264, 0.03498093, -0.021331184, -0.0041342983, -0.015639184, -0.012572135, 0.01342179, -0.0022951055, -0.0033312703, -0.019770028, 0.030007338, 0.0069043124, 0.015583921, 0.0050012227, -0.025475843, 0.025448212, -0.008987004, 9.308215E-4, -0.014174737, -0.0065485626, -0.013283635, 0.012523781, -0.018554261, 0.018333212, 0.015874047, 0.014851698, 0.04039662, 0.02424626, -1.6864664E-5, -0.0011112869, 0.032687552, -0.025821231, -0.0121024065, -0.03503619, 0.016302329, 0.011121504, 0.022961415, -0.0121369455, -0.013912242, 0.003403802, -0.0018288312, 0.009449825, -0.02372127, -0.0020982341, -0.027935008, 0.011542878, -0.007930116, 0.002068876, 0.009885014, 0.008531092, -0.020391727, 2.4630505E-4, 0.0048976066, -0.0066625406, -8.885115E-4, -0.013249096, -0.001773569, -4.097169E-4, 0.005374242, 0.010776116, 0.01617799, -0.016689165, 0.019839104, 4.116597E-4, 0.033240173, -0.02127592, 0.005636737, 0.01695166, 0.027686328, 0.0016060557, -0.015528659, -0.0068490505, 0.010320203, 0.026180435, -0.024508756, 0.053852946, -0.01892728, 0.017020736, -0.011287291, 0.018554261, -0.0028166417, -6.122008E-4, 0.0017407571, -0.0027112984, 0.03390332, 0.01590168, 0.0029081698, -0.02758962, 0.02322391, 0.017324679, 0.011080057, -0.017131262, -0.02269892, -0.0016362772, 0.017241785, -0.0064104074, -0.013580669, -0.019797659, -0.003937427, 0.007073553, -0.0013409702, -0.01673061, -0.015583921, 0.0030808637, 0.020833824, 0.024439678, -0.0013841437, -0.032687552, 0.015279979, 0.022353532, -0.019493718, -0.017366124, -0.011052426, -0.0022553857, -0.032577027, -0.006828327, -0.017338494, 0.019797659, -0.011653402, 0.0071909847, -0.0076399897, -0.020336464, 0.010506713, -0.0076192664, 0.017435202, 0.025199533, 0.0011993609, 0.024826512, 0.0044727786, -0.0017407571, 0.024591649, -0.009698504, 0.024342969, -0.013905333, 0.0043380773, 0.014713543, 0.0078265, 0.011542878, -0.033544112, 0.016067464, -0.020087784, -0.016606271, -0.014464863, 0.0075294655, 0.009125159, -0.0011639587, -0.016813504, -0.026857397, -0.01543195, -0.017573358, 0.07178551, 0.033848055, 0.020336464, 0.01595694, 0.0068248734, 0.010693222, -0.013256004, -0.016399037, -0.0015879228, -0.013711916, 1.97411E-4, -0.013815532, 0.0365559, 0.003761279, 0.021386445, 0.0015766977, -0.014423416, -0.01590168, -0.0035005107, -0.010444542, -0.014796436, 0.001421273, 0.021193027, 0.041142657, 0.0035056914, -0.009809028, 0.0130902175, 0.0077712373, -0.0037681866, -0.0045971186, -0.0073291403, -0.0070251985, -0.004407155, 0.011867543, 0.006831781, 0.0054847663, 0.009456732, 0.016827319, 0.03241124, 0.0012218112, -0.0049770456, 0.02217393, -0.008862664, -0.020156862, 0.014920776, -0.013553037, -0.010264941, 0.01840229, 0.040092677, -0.024204813, 0.03238361, -0.008033732, -0.0023261902, 0.0051324703, 0.024757436, 0.003282916, -0.017849669, -4.7949612E-5, -0.02322391, -0.008116625, -0.0066072787, -0.03194151, 0.001865097, -0.013642838, -0.013145479, -0.004707643, -0.01617799, 0.007246247, -0.023113387, -0.0011320102, 0.0027389294, -0.036638793, -0.008151164, -0.017324679, 0.0043588006, -0.001125966, 0.018913465, -0.0118537275, 0.006123735, 0.012088591, -0.0026404937, -0.013097125, 0.0020326104, -0.011895174, -0.008420567, 0.02372127, -0.002775195, 0.019687135, 0.0015931036, 0.0038407182, 0.007550189, 0.0039443346, -0.019245038, 0.0052499026, 0.03578223, -0.0029599778, 0.011860635, 0.027327124, -0.0063724145, 0.006317152, 0.016164174, -0.02167657, -0.00940147, -0.002573143, -5.5693864E-4, -0.0031741187, 0.009076805, -0.0019238129, -0.03522961, -0.029150775, -0.015252348, -0.022767998, 0.0074051255, 0.008524184, 0.008054456, -8.6908333E-4, 0.016578639, 0.017974008, -0.0013349259, 0.0034763333, 0.009774489, 0.0011760473, 0.002837365, 0.02501993, -0.0041791988, 0.03945716, -0.012503057, -0.016592454, -0.025821231, 0.024315339, 0.001951444, 0.027700143, -0.009304761, 0.011777742, -0.019162145, -0.012779368, 0.018512813, 0.0020291563, -0.0119780665, 0.009332392, -0.016150357, 0.003196569, 0.013718824, -7.4085797E-4, -0.025752153, -0.028598152, -0.0036749318, -0.0081649795, -0.0016993105, 0.029178405, -0.017725328, 0.008054456, -0.014326707, -0.006707441, -0.026028464, -0.032577027, -0.020405542, 0.00785413, 0.038103238, 0.014271446, 0.03578223, -9.1614254E-4, 0.030504696, 0.021441707, 0.013338897, 0.018913465, -0.034069102, 9.1150134E-5, -0.037522987, 0.0046247495, 0.013041863, 0.015943125, 0.009470548, 0.010492898, 0.010561975, 0.015763523, 0.0127724605, 0.004493502, -0.0033571746, -0.014741174, -0.010624145, 0.02489559, -0.024605464, -0.003782002, -0.024605464, -0.016164174, 0.04642019, -0.008088995, -0.020295018, 0.005070301, 0.02186999, 0.002068876, 0.018181242, -0.019369377, -0.009228776, -0.031665202, -0.009035358, -0.02699555, -0.0035350495, 9.498179E-4, -0.019217405, 0.010803747, -0.004013412, -0.004289723, 0.0045142253, 0.025558736, -0.011404722, -0.027948823, 0.013629023, -0.004849252, -0.021980513, -0.03967821, -0.010769208, -0.037246678, 0.00307741, 0.0028891733, -0.00450041, 0.0071771694, -0.007211708, -0.04357419, 0.009484364, 0.0055711134, 0.03884928, 0.00986429, 0.048409626, 0.022312086, 0.0036162157, -0.025296241, 0.017614804, -0.014824066, 0.009995538, 0.0308639, 0.030753376, -0.010092246, -0.024232445, 0.0011820915, 0.010541252, -0.02127592, -0.030034969, 0.034594093, 0.018222688, 0.03194151, -0.02186999, -2.7717414E-4, -0.031720463, 0.02671924, -0.009601795, 0.0011086966, 0.011743203, -0.03346122, -0.020640407, 0.01623325, -0.0022726553, 0.014243814, 0.006859412, -0.012903708, 0.006531293, -0.005018492, 0.014920776, -6.350828E-4, 0.004344985, 0.009111344, -0.012033329, 0.013518499, 0.009843567, 0.009498179, 6.2515284E-4, 0.003927065, 0.010271849, 0.03136126, -0.01670298, 0.0068801353, -0.014547756, 0.0073429556, -0.004407155, 0.014713543, -0.034400675, -0.021952882, -0.033046756, -0.0032932777, 0.033654638, 0.015321426, 0.012378718, -0.008517276, -0.016399037, 7.5078785E-4, 2.2579762E-4, -0.021331184, 0.00986429, -0.021662755, 0.016592454, -0.008924834, 0.0055296673, -0.013069494, -0.0052775335, 0.012523781, -0.00940147, 0.019604241, -0.0017355763, 0.0011484162, -0.014575387, -0.015238533, -0.04274526, -0.025006114, -0.018112164, -0.0062480746, 0.010078431, -0.032024406, -0.0094360085, -2.0982341E-4, 1.4786937E-4, -4.900197E-4, -0.004255184, -0.021013426, 0.018512813, 0.029095512, -0.010382373, -0.012786276, 0.0035505919, 0.024715988, 0.003757825, 4.8008977E-4, 0.004521133, 0.013325081, 0.027106075, -0.0130902175, 0.013642838, 0.016578639, -0.027147522, -0.024674542, 0.018581891, 0.020115416, 0.018968727, -0.011432353, -0.039319005, 0.0021966698, -0.012019513, 0.027548172, -3.76905E-4, -0.008883388, 0.024342969, 0.015183271, 0.034649357, 0.016329959, 0.0040963055, -0.029150775, 0.0014100479, 0.002483342, -0.020612774, -0.010859009, 0.009518902, 0.021731833, -0.005287895, 0.00609265, -0.03790982, -0.011964251, -0.029869182, -0.015293795, -0.010230402, 0.021427892, 0.051531937, 0.0194799, -3.8446038E-4, 0.017835854, 0.0047249123, 0.027534356, -0.015860232, -0.00893865, 0.0024919768, 0.0064725773, 0.006821419, 0.021441707, -0.027423833, -0.0035436843, 0.037025627, 0.00918733, 0.010665592, 0.026097542, -0.027548172, -0.014243814, -0.013587576, 0.015694445, 0.008765955, 9.897534E-5, 0.029565241, -0.03448357, -0.017946377, 0.019397007, 0.007108092, 0.013048771, 0.0020205218, 0.008386028, -0.019894367, 0.0060201185, -0.013539222, -0.0017088087, 0.0060477494, -0.03232835, 0.014015858, 0.009829751, 0.010209679, 0.012765552, 0.017283231, -0.005084116, 0.0076538054, -0.014299076, 0.007909393, -5.219681E-4, 0.0021500422, 0.01088664, 0.02319628, -0.029150775, 0.027838299, -0.021662755, -0.003519507, -0.012537596, 0.002633586, -0.020695668, 0.02699555, 3.6308946E-4, -0.05841207, -0.0011820915, -0.0027423832, 0.010085339, -0.015735893, 0.0037647327, -0.018208873, -0.0033830786, -0.0013288816, 0.0054674973, -0.028045531, -0.031223103, 0.007460388, 8.5829E-4, -0.0068628658, 0.008178796, 0.17075999, -0.008137349, 0.029648133, 0.032770444, -0.015003669, 0.012731014, 0.016896397, 0.026650162, 0.0028166417, 0.024508756, -0.0062826136, 0.023790348, -0.0076192664, -0.0036162157, 8.9196535E-4, -0.006773065, -0.027921192, -0.016371407, -0.020212125, -0.02814224, -0.0024401685, -0.009774489, -0.0049252375, -0.009408378, 0.0034089827, -0.0056954534, -0.008551815, -0.0048354366, 0.011218213, 0.0015870593, -0.023693638, -0.020902902, -0.02486796, 0.016012203, -0.038628228, -0.01271029, -0.0074189412, 0.027050814, 0.0077436063, 0.01623325, -0.0045763953, -0.0045971186, 0.0015922402, -0.010617237, -0.008268597, 0.024536386, -0.019079251, 0.0053673345, -0.028763939, 0.019189775, -0.0345112, 0.002013614, 0.007128815, 0.018305581, -0.007798868, -0.015114193, 0.018913465, -0.021317367, -0.0061479122, 0.0013694647, 0.012841538, 0.031195473, -0.029979706, 0.0055469363, -0.0030014245, 0.016606271, -0.034815144, -0.0042137373, 0.013283635, -0.018830571, -0.00301524, -0.027064629, -0.022284454, 4.58503E-4, -0.013186926, -0.022781814, 0.019866737, 0.009636334, 0.016329959, 0.004728366, -0.027396202, -0.011508339, 0.0066107325, -0.011356368, -0.013463236, -0.017587174, 0.023624562, -0.013490868, -0.01029948, -0.009035358, -0.014029673, -0.032715183, -0.017172707, 0.009263315, 0.006517478, 0.008731416, 0.01175011, 0.012316547, -0.011563601, -0.013995135, -0.05026091, 0.017918747, 0.027879745, -0.017490465, -0.024978483, -0.020377912, -0.0016190078, 0.024785066, 0.023417328, -0.012993509, -0.029952075, -0.03420726, 0.009021543, -0.016053649, 0.010617237, 0.009263315, 0.016288513, -0.03318491, 0.049404345, -0.012744829, -0.016564824, -0.028902095, 0.010016262, 0.0014903506, -0.00971232, -0.032798074, -0.0430492, 0.018416105, 0.013663562, -0.02127592, 0.005004677, -0.0039546965, -0.0035367764, -0.010078431, -0.019272668, 0.014699727, 0.021759463, 0.0014074574, 0.017407572, -0.005698907, 0.01710363, -0.01648193, 0.0077574216, 7.719429E-4, 0.0014281807, -0.03934664, 0.013815532, 0.0012606673, -0.018471368, -0.041557122, -0.0135668535, -0.024481123, 0.02536532, 0.0077366983, 0.040092677, 0.0027734681, -0.024743618, -0.032715183, -0.023389697, 0.024577834, -0.03790982, 0.017739145, 0.012841538, -0.019093066, -0.025973203, -0.0076399897, -0.17794406, 0.008551815, 0.0046834657, -0.012945155, 0.018941095, 0.010976441, 0.019935815, 0.0078126835, 0.0077919606, -0.01598457, 0.018775309, 0.01172248, -0.045038637, -0.0057783467, -7.1409036E-4, 0.033571746, -0.025089007, 0.020543698, 0.0084827375, -0.00697339, 0.03288097, -0.014879329, -0.015915494, 0.012724106, 0.009325485, 0.008738325, 0.007778145, -0.011964251, -0.01082447, -0.036141433, -0.030366542, -0.0017269416, 0.021331184, 0.0037025628, -0.013767178, 0.0013962323, -0.010679407, -0.013995135, -0.009221869, -0.016164174, 0.031250734, 0.016689165, 0.012178392, -0.0062826136, 0.022505503, 0.014768804, 0.023707455, -0.01394678, 0.0033589015, -0.01957661, -0.008185703, -0.038075607, 0.0069284895, -0.005526213, 0.016689165, 0.022229193, -0.021455523, -0.0072669704, 0.014810251, -0.011162951, -0.031499416, -0.016095096, 0.012178392, -0.025462028, -0.004407155, -0.022533134, -0.012440887, 0.01945227, -0.036169063, 0.020737115, -0.014126383, 0.0011777742, 0.013311266, -0.004493502, -0.003937427, -0.018416105, -0.048133317, 5.6427816E-4, 6.618504E-4, 0.0056298296, -0.0300626, 0.041087396, -0.017545726, 0.021483153, 0.023113387, -0.015653, 0.0024747073, -0.018609522, 2.2817215E-4, -0.008240965, 0.0015689265, -0.023873242, -0.011791557, -0.020143047, 0.012371809, 0.012675751, -0.011957344, 0.012862261, 0.011984975, -9.7140466E-4, -0.013967504, -0.016675347, -0.014796436, 0.01320765, 0.024273891, 0.019231223, 0.016965475, 0.033129647, 0.036721688, -0.0034158905, 0.0016500927, 0.018195057, 0.01673061, 0.017559541, -0.020060154, 0.008821217, -0.0054882206, -0.018043086, 0.023154832, 0.013387252, 0.016039833, -0.01283463, -0.00847583, -0.0059924875, -0.0048388904, -0.013331989, -0.08587735, 0.0032293808, -0.0038096332, 0.030173123, -0.0373572, 0.01590168, -0.0069112205, 0.0251719, -0.016440485, 0.033682268, 0.011694849, -0.017020736, 0.020612774, -0.011370184, 0.03473225, -0.0027872839, -0.018388474, 4.697281E-4, -0.018333212, 0.02022594, 0.005028854, -0.0014687638, 0.009353116, 0.0021172303, -0.033599377, 0.006061565, -0.028045531, 0.020377912, 0.009532718, 0.009525809, 0.012661936, -0.016039833, 0.021137765, -0.0454531, -0.023679823, -0.017449018, -0.016689165, -0.022560766, 0.028542891, -0.045563627, 0.013104033, 0.012758644, 0.009132068, -0.038130872, 0.00785413, -0.010686315, -0.016468115, 0.0454531, -0.021966698, -0.041861065, -0.02486796, -0.004113575, -0.03395858, 0.010133693, 0.023956133, 0.015570105, 0.02000489, 0.026594901, 0.008786679, -0.014409601, 0.0056574605, -0.0036542085, -0.011812281, 0.021358814, 0.0013858706, 0.014616834, 0.0020481527, 0.008655432, 0.01920359, -8.64766E-4, -0.008620893, 0.022077221, -0.030725745, -0.013166203, -0.028404735, 0.012938246, -0.023113387, -0.002371091, 0.013677377, -0.022602212, -0.0015179816, -0.03196914, -0.012206024, -0.022118669, 0.004047951, 0.008544907, 0.025227163, 0.0073429556, 0.0017036279, -0.026083726, 0.004493502, 0.02384561, -0.008047548, -0.014851698, -0.0046247495, 0.026705425, 0.009035358, -0.014934591, 9.6622383E-4, 0.019507533, -0.024550201, -0.0107070375, -0.07830644, 0.017338494, -0.0034504293, -0.021814726, 0.0062964293, -0.0055400287, 0.008330766, -0.009539626, 0.0018305581, -0.0022951055, -0.017614804, 0.01852663, -0.009380747, 0.0030687752, 0.007937023, 0.025158085, 0.005726538, -0.0063067907, -0.010161324, -0.014713543, -0.0065865554, -0.002635313, 0.034649357, 0.0039443346, 0.0037509173, 0.014451047, 0.001492941, 0.02019831, -0.01695166, 0.011667217, 0.028984988, -0.009449825, -0.01379481, 0.0045418562, -0.014962222, -0.014464863, -0.003578223, -0.011812281, 0.014140198, 0.015086561, -0.016551008, -0.019797659, -0.009076805, -0.007121907, 0.017366124, 0.024398232, -0.01029948, 0.02291997, 0.011805373, -0.0066072787, 0.030007338, 0.010796839, -0.020018708, -0.018623339, 0.011681033, -0.02412192, 0.05785945, 0.014243814, 0.007108092, -0.0052533564, 0.028004086, 0.0023572752, 0.030559959, -0.024785066, -0.016288513, 0.003699109, -0.0015844689, -0.0032621927, -0.0042966306, -0.024080474, 0.0068145115, -0.011404722, 0.013000417, 0.040672928, 0.017145077, -0.0025783237, -0.023983765, 0.010347834, 0.00887648, 0.018471368, 0.008392937, -0.019065436, -0.03658353, 0.0076399897, 0.011991883, 0.023210095, -1.2120971E-4, 0.0072600627, -0.0068455967, 0.014672096, -0.023555484, 0.0026214973, 0.010023169, 0.0069250357, -0.014851698, 0.010485989, -0.0054260506, -0.01623325, -0.0030549597, 0.030698113, 0.014533941, -0.0030687752, -0.02412192, -0.02344496, -0.022118669, 0.0011544605, -0.0027613796, -0.035423025, 0.012033329, 0.009601795, 0.032300714, 0.016012203, -0.0121024065, 0.003899434, -0.030311279, 0.011432353, -0.005446774, -0.004790536, -0.015874047, 0.036915105, 0.0065865554, 0.016882582, 0.04199922, -0.009028451, 0.037136152, 0.014658281, 0.026802134, -0.027561989, 0.0018668239, -0.014478679, -0.0030601404, 0.003227654, -0.019991076, 0.005374242, -0.012199116, -0.0040030507, 0.006693626, 0.027824484, -0.02684358, 0.06460143, 0.014368154, 0.0121024065, 0.03473225, -0.029012619, 0.008931742, 0.018416105, 0.025489658, -0.022464056, -0.01880294, 0.003813087, -0.01880294, 0.008828126, -0.027119892, -0.0031240373, -0.0046385652, 0.0043380773, 0.0025368773, -0.015252348, -0.011501431, 0.012806999, 0.008648523, 0.025793599, -0.0011061061, -0.027603434, -0.02307194, 0.019162145, -0.0067281644, -0.027796851, -0.031167842, 0.0010404823, -0.026152804, -0.007798868, 0.0045729415, 0.017725328, -0.008904111, -0.014810251, 0.0038648953, 0.019037804, 0.020018708, -0.0021517694, -0.0038648953, -0.01762862, -0.009090621, 0.009380747, -0.0070804604, -6.670312E-4, -0.029592872, -0.040037416 ], + "id" : "e3a9f069-472a-4d33-b33a-8631a6949d1d", + "metadata" : { + "source" : "movies.csv" + } + }, + "42dbc8a1-bd6e-4d42-a09c-f49a782916af" : { + "text" : "949,13194,Owen Wilson-Larry the Cable Guy-Bonnie Hunt-Paul Newman-Tony Shalhoub-Cheech Marin-Michael Wallis-George Carlin-Paul Dooley-Jenifer Lewis-Guido Quaroni-Richard Petty-Michael Keaton-Katherine Helmond-John Ratzenberger-Joe Ranft-Jeremy Piven-Dale Earnhardt Jr.-Mario Andretti-Michael Schumacher-Jay Leno-Tom Hanks-Tim Allen-Billy Crystal-John Goodman-Dave Foley-Bob Costas-Darrell Waltrip-Richard Kind-Edie McClurg-Humpy Wheeler-Tom Magliozzi-Ray Magliozzi-Lynda Petty-Andrew Stanton-Mike Nelson-Jan Rabson-Jonas Rivera-Lou Romano-Adrian Ochoa-E.J. Holowicki-Elissa Knight-Lindsey Collins-Larry Benton-Douglas Keever-Sherry Lynn-Mickie McGowan-Jack Angel-Michael Bell-Bob Bergen-Susan Blu-Andrea Boerries-Marco Boerries-Rodger Bumpass-Torbin Xan Bullock-Richard Cawood-Scott Clark-Kathy Coates-John Cygan-Jennifer Darling-Paul Eiding-Bill Farmer-Brian Fee-Teresa Ganzel-Craig Good-Jess Harnell-Artie Kempner-Hooman Khalili-Sonoko Konishi-Erik Langley-Danny Mann-Laraine Newman-Teddy Newton-Colleen O'Shaughnessey-Bob Peterson-Steve Purcell-A.J. Riebli III-Dan Scanlon-Stephen Schaffer-Ken Schretzmann-Bob Scott-Matt Staudt-Jay Ward-Jim Ward-Colette Whitaker-Frank Welker,friendship-car race-success-route 66-porsche-retirement-road trip-anthropomorphism-rural area-los angeles california-aftercreditsstinger-duringcreditsstinger,/abW5AzHDaIK1n9C36VdAeOwORRA.jpg,/sd4xN5xi8tKRPrJOWwNiZEile7f.jpg,49013-12-863-585-9806-862-10193-2062-260514-953-14160-9487-62211-950-425-10681-9502-808-62177-809-8355\r\n508935,The Eight Hundred,War-History-Drama-Action,zh,In 1937 eight hundred Chinese soldiers fight under siege from a warehouse in the middle of the Shanghai battlefield completely surrounded by the Japanese army.,26.787,Beijing Diqi Yinxiang Entertainment-Huayi Brothers Pictures-Fin Design & Effects-Notorious Pictures-Eagle Pictures-Huayi Brothers Media Corporation-Golden Screen Cinemas-Mirada Distribution-Shaw Organisation-BGFilm-CMC Pictures-GEM Entertainment-IPA Asia Pacific-Koch Media-Look Film-Youplanet Pictures-DNEG-The Monk Studios-Far East Film Festival Udine (IT)-Shaw Organisation Release,8/14/20,80000000,460919368,147,Released,Based on the true story of one of the greatest battles of WWII.,7.", + "embedding" : [ 0.012134732, -0.025006142, -0.0055932994, -0.040844727, -0.02044965, 0.023955693, 0.015456606, -0.009842843, -0.02686148, -0.04433713, 0.022823391, 0.037979867, 0.015715808, 0.010211182, 0.005651279, 0.012612209, 0.01660255, -0.017025458, 0.010402173, -0.017762136, -0.008083, -0.00559671, -0.020504218, 0.007237184, 0.013137433, 0.014365231, 0.027093397, -0.0014835886, -0.0049214214, -0.032386567, -0.0035265072, 0.010654554, -0.0054295934, -0.014992772, -0.014801781, -0.0016097788, 0.015211047, -0.025169848, 0.022673326, -2.0751056E-4, 0.018498816, 0.026220297, -0.018430604, 0.0058968384, -0.03170446, 0.007864725, 0.0232463, -0.012816842, 0.008369486, 0.029767267, 0.01995853, 0.019003576, -0.011916457, -0.023519142, -0.007428175, 0.018444246, -0.008683257, 0.011984668, -0.007796514, 0.0016114842, 0.0062140194, -0.018676164, -0.032932255, 0.0038880252, -0.019371916, -0.013573983, -0.0038880252, -0.014556221, -0.0031479362, 0.0014273146, 0.00957682, 0.012503071, 9.2170073E-4, 0.011138852, 0.02450138, -0.03519686, -0.036042675, -0.0040380894, -0.0038164037, 0.0013949143, 0.017666642, -0.014951845, -0.0042665964, -0.0013514298, 0.018512458, 0.0025971327, -0.019058146, 0.036861207, -0.036233667, 0.00814439, 0.0052181394, 0.043382175, 0.003270716, -0.013744511, 0.017816706, 0.024828793, -0.022168566, 0.028457617, -0.016561624, -0.031186055, 0.009037954, -0.004184743, -0.0030251564, -0.009720063, 0.015251973, 0.006671033, 0.0060946504, -0.012578103, 0.019112714, 0.0064664, 0.0052454234, -0.015879514, 0.014924561, -0.046847295, -0.0019082018, -0.02195029, 0.024160326, -0.016275138, -0.012632672, -0.012489429, 0.025579114, 0.015306542, 0.010436279, -0.024515023, 0.030722221, 0.019972172, -0.0033610954, -0.011432159, -6.292462E-4, 0.010313499, 0.01038171, 0.006868845, 0.02144553, 0.009897412, -0.028321195, 0.038580123, -0.019917604, 0.011739108, -0.018171402, -0.009501788, 0.02834848, 0.025811031, -0.024092115, -0.019562906, -0.036288235, 0.016138716, 0.007728303, 0.0023959102, 0.015934082, -0.0060844184, 0.03244114, 0.01971297, 0.016179642, 0.024133042, 0.0074008903, -0.0011877235, -0.0018809175, 0.0039016674, -0.0072576473, -0.011288916, -0.003550381, -0.0022100355, 0.0074622803, -0.01373769, -0.010115687, 0.01803498, 0.026138443, -0.01908543, -0.0040073944, 0.005334098, -0.009836022, 0.030394807, -0.024842435, 0.009890591, -0.004079016, 0.009999728, 0.010108866, -0.009590463, -0.042208947, -0.014815423, 0.015674882, 0.0062447144, 0.02617937, 0.033123247, 0.0061151134, 0.019167282, 0.0062958724, -0.038607407, -4.2994227E-4, -0.01864888, -0.001144239, 0.021800226, 0.009331261, -0.016397918, -0.6426019, -0.017257376, -0.024924288, -2.0964215E-4, 0.016889036, 0.011684539, -0.0043484494, 0.003642466, -0.03656108, -0.010688659, -0.03587897, 0.018580668, 0.031622607, -0.012694062, -0.026247581, -0.010729586, 0.006203788, -0.0065175584, 0.0016814005, 0.0034293064, -0.017748494, 0.015183762, 0.00491119, 0.002300415, 0.014624432, 0.009303977, 5.8490905E-4, -0.019658402, 0.0056478684, 0.01815776, -0.019631118, 0.009924696, 0.010811439, -0.009331261, 0.03626095, 0.003717498, -0.022646042, 0.048457075, 0.027939213, 0.023259941, -0.024133042, -0.010886471, -0.0068108654, -0.011391232, -0.02853947, 0.017366514, 0.0010547121, 0.013915038, 0.0026892175, -0.017994054, 0.006657391, 0.009133449, -0.023832913, -0.020245016, -0.009379009, 9.737116E-4, 0.0064800424, -0.03290497, 0.015101909, 4.796084E-4, -0.017734852, 0.029958257, 0.009849664, 0.0152929, 0.0017334113, 0.02747538, -0.022427768, -0.01019754, 0.021104474, -0.01721645, -3.9604996E-4, 0.024255821, -0.022018502, -0.00814439, 0.013819543, 0.016179642, 0.029303433, 0.014078745, -0.0035469704, 0.022468694, 0.0035981287, -0.008219422, 0.014965487, 0.015033698, 0.010470384, -0.004300702, -0.041253995, 0.008001147, 0.00832856, -0.005439825, 0.004856621, 0.009508609, 0.00870372, 0.011841425, -0.0051431074, 0.008083, -0.012639493, 0.014829065, 0.027407167, -0.06766528, -0.013205644, -0.027707295, 0.025947453, -0.0065618954, 4.5402927E-4, 0.015947726, 0.00105727, -0.019917604, 0.025101637, -0.0034310117, -0.003935773, 0.01119342, -0.007380427, -0.016698046, 0.0071962574, -0.023164446, 8.611635E-4, 0.021745658, 0.006827918, -0.002300415, 0.0013761563, -0.007714661, 0.0071416884, -0.009126628, 0.005501215, 0.026165728, 3.4361277E-4, -4.3015543E-4, 0.003033683, 0.011234347, 0.0011894288, -0.008717362, 0.023600996, -0.01566124, 0.008601404, 0.006831329, 0.020681566, -0.011138852, 0.024146684, -0.004645167, -0.02051786, 0.0031308834, -0.003717498, -0.012844126, 0.012803199, -0.013512593, -0.024583234, 7.0172036E-4, -0.01050449, -0.014651717, -0.004798642, -0.007803335, 0.0034787594, 0.012891874, 0.0048600314, 0.007005267, -0.037161335, -0.02268697, 0.016397918, -0.019876678, 5.776617E-4, -0.0021656982, 0.0068927184, -0.009999728, 0.039889775, -0.009467683, 0.0010913755, 0.010054297, -0.0076805553, -0.015756734, 0.018539742, -0.008028431, -0.003860741, 0.007373606, -0.02020409, 0.016957248, 0.0045223874, 0.01684811, 0.004048321, -0.012025594, 0.0077487663, -6.646306E-4, -0.02530627, -0.020176806, 0.029630845, 0.010947861, 0.027570873, -0.015115551, -4.1800537E-4, 0.005085128, -0.020858916, -7.2474155E-4, -0.015906798, -0.01025893, 0.005913891, 0.028566753, -9.1829017E-4, 0.008028431, 0.014542579, -0.0054978044, 0.03345066, 0.015320184, 0.005003275, 0.0070734774, 0.03252299, -0.010272572, 0.003922131, -0.024269463, 0.011916457, 0.010981966, 0.02443317, -0.0069541084, -0.013314782, -0.007905652, 3.8262093E-5, 0.03538785, -0.017434724, 0.0013156191, -0.013437561, -2.9245453E-4, 0.014351588, 0.008076179, 0.028184773, 0.021281824, -0.020231374, -7.6865236E-4, 0.022550547, -0.005054433, -0.013567162, -0.001348872, -0.011241168, -0.0071348674, 0.0017820116, 0.0019508337, -7.2261E-4, -0.009494967, 0.030012827, -0.0017308533, 0.05582386, -0.015347469, 0.003761835, 0.022714254, 0.03481488, -0.003021746, -0.006732423, -5.3844036E-4, 0.019944888, 0.006708549, -0.013819543, 0.030667651, -0.004730431, 0.03418734, -0.015715808, 0.004246133, -0.0022714252, -0.00789883, 0.004501924, 0.0032860634, 0.02859404, 0.014883634, 0.024160326, -0.033668935, 0.026083875, -7.364653E-5, -0.002032687, -0.002840987, -0.014201524, 0.0069984454, 0.0011169546, -0.02032687, -0.015784018, -0.0067426544, 7.0129405E-4, 0.006572127, 0.0017956538, 0.005893428, -0.012237048, 0.020626998, 0.010484026, 0.014924561, -0.02834848, -0.018444246, 0.018812586, 0.027707295, -0.029003305, -0.013996891, -0.01249625, -0.0018502226, -0.030040111, -0.023109877, -0.01249625, 0.024392243, -0.019781182, 0.02722982, -0.012366649, 0.0056308154, 0.02275518, -0.008410413, -3.0268618E-4, 0.01753022, -0.015251973, 0.0031172414, -0.01379908, -0.0029893457, 0.016206926, -0.009856485, -0.006957519, -0.012318901, 0.014788139, -0.004614472, 0.0053818454, -0.01597501, -0.04128128, 1.8598148E-4, -0.002474353, -0.009938339, -0.008731004, 0.010852366, 0.015238331, -0.018266898, -0.019917604, -0.038852967, -0.03849827, -0.0058525014, 0.07956128, 0.04365502, 0.0057842904, -8.4880023E-4, -0.01225069, -0.003158168, -0.020927126, -0.009535894, -0.007244005, -0.016015936, 0.022291346, -0.008083, 0.018430604, 0.0033406322, 0.013689942, -0.007735124, -0.015688524, -0.021527382, 0.018676164, -0.0062685884, -0.04512838, 0.003679982, 0.016466128, 0.028921451, -0.0017734852, -0.013846827, 0.034351043, 0.019167282, 0.019903962, 0.012353007, -0.021813868, -0.0029671772, 4.9452955E-4, 0.005930944, -0.009876949, 0.0032809477, 0.038689263, 0.010784155, 0.03394178, 0.0011612917, 3.951973E-4, 0.008349023, 0.0022168565, -0.007319037, 0.02667049, -0.028730461, -0.008164853, 0.02219585, 0.025415407, -0.029958257, 0.018635238, -0.0020156342, -0.009290334, -0.0028461027, 0.017557504, -0.0028051762, -0.013880933, -0.013287497, -0.006684675, 0.010470384, 0.0038573304, -0.03928952, 0.019426484, -0.02424218, -0.012769094, -0.004836158, -0.015538459, 0.0016490002, -0.01268042, 0.012659956, 0.009358545, -0.014569864, -0.015620312, -0.006752886, 0.014760854, -0.008096642, 0.02579739, 9.865011E-4, 0.024405885, 0.012578103, -0.019535622, -0.02467873, 0.009208481, -0.027802791, -2.6879387E-4, 0.02064064, 0.0015756735, 0.02070885, 0.009372187, 0.010565879, 0.002182751, -0.019576548, -0.014119671, -0.020122236, 0.036943063, -0.0026465857, 0.0016873688, 0.017311944, 0.011691361, 0.0028614502, -0.006694907, -0.014788139, -0.010102045, -0.02623394, -0.018758018, -0.009051596, 0.0075509544, -0.0027932392, -0.0136763, -0.009911054, -0.01777578, -0.022605116, -6.015355E-4, 0.0043552704, -0.015074625, 5.282087E-4, 0.015483891, 0.03083136, -0.022605116, 0.0014281672, -4.958085E-4, -0.012796378, 0.0029313664, 0.008369486, -0.010900113, 0.026779627, -0.006708549, -0.025278986, 0.002187867, 0.019781182, 0.008007968, 0.02076342, -0.01871709, 0.0010333962, -0.004300702, -0.025224417, 0.007878367, -0.008874247, -0.007919294, 0.025715536, -0.014406157, 0.004010805, 0.02455595, 0.0073258583, -0.016466128, -0.032332, 0.00385392, -0.008321739, 0.03102235, 0.012605388, 0.011554939, 0.008819679, -0.025033426, -0.010961503, -0.010279393, -0.04223623, -0.034050915, -0.0019388968, 0.01920821, 0.010872829, 0.0408993, -0.015620312, 0.03688849, 0.0061219344, 0.01137759, 0.03083136, -0.027338957, -0.007012088, -0.03465117, -0.016111432, 0.014965487, 0.022332272, 0.0071826153, 0.0077487663, -1.565655E-4, 0.0226324, 0.01709367, 0.022959813, -0.004798642, -0.022932528, -0.026343077, 0.005569426, -0.040462747, -0.0031735154, -0.012359828, -0.006664212, 0.019426484, -0.0026772807, -0.008717362, -0.005651279, 0.019753898, -0.0025169847, 0.019221852, -0.015702166, 0.002063382, -0.02859404, -0.015347469, -0.024405885, -0.02139096, -0.005620584, -0.0029569454, 0.010838723, 0.0058797854, -0.032468423, -9.7030104E-4, 0.03227743, -0.011841425, -0.031076917, 0.01323975, -0.0061219344, -0.016138716, -0.03525143, -0.0056717424, -0.0200131, -0.0054295934, 0.014992772, -0.010545416, -0.0028563344, -0.016056862, -0.045401223, 0.020913484, -0.0024692372, 0.037597887, 0.009303977, 0.04712014, 0.030422093, 0.0050646644, -0.009590463, 0.004184743, -0.0042734174, 0.0015475363, 0.023819271, 0.025210775, -0.015524817, 0.0072098994, -0.010538595, -0.002885324, -0.037270475, -0.029739983, 0.030967781, 0.026956975, 0.019985814, -0.037461463, 0.004546261, -0.028184773, 0.01504734, 0.0048907264, -3.1398362E-4, 0.00957682, -0.010893292, -0.013996891, 0.013983249, -0.011725466, 0.0027386704, 0.0020258657, -0.030885927, 0.010388531, -0.033914495, 0.0031786312, 0.0035674337, -0.012100626, 0.042918343, -0.02834848, 0.018785302, -0.0044098394, 0.013983249, -0.0048907264, -0.012257512, -0.008710541, 0.027966497, -0.012598566, 0.015088267, -0.008294454, 0.00858094, 0.03315053, -6.407568E-4, -0.012578103, -0.026615921, -0.026261223, -0.002008813, 0.028894167, 0.0034582962, 0.017925844, 0.001346314, -0.026193013, -0.006514148, -0.009747348, 7.1578886E-4, 0.017080028, -0.040681023, 0.015620312, -0.009958802, 0.004403018, -0.011432159, 0.0031189467, -0.006926824, -0.0028307552, 0.017994054, -0.011882351, 6.586622E-4, -0.026083875, -0.0031104202, -0.048757203, -0.027407167, -0.013478488, -0.011404874, 0.010640912, -0.025892884, -0.0041506374, -0.010415815, 0.014583506, -7.2527444E-5, -4.303686E-4, -0.0059786914, 0.0069984454, 0.0193992, -0.0054125404, -0.026970617, -0.0036254132, 0.030940495, -0.008219422, 0.0013650721, -0.005317045, 0.010709123, 0.03083136, -0.020968052, 0.0010154909, -0.0020787292, -0.02530627, 1.7628273E-4, 0.0063367994, 0.015784018, 0.015320184, -0.0104431, -0.04706557, -0.011186599, 0.0045428504, 0.035578843, -0.0016677582, 0.005651279, 0.028566753, 0.030476661, 0.03650651, 0.034623887, -0.0045599034, -0.04433713, 0.017271018, -0.004948706, -0.032386567, 0.0050339694, 0.012414397, 0.022018502, -0.011302558, 0.016138716, -0.03164989, -0.011268452, -0.028266625, -0.029385285, 0.0012687241, 0.020695208, 0.019753898, -6.7827286E-4, -0.010067939, -0.0045155664, 0.0075441333, 0.0055114464, -0.006503916, -0.002927956, 0.014201524, -0.0022475515, 0.025347197, 0.02231863, -0.014665359, -0.01579766, -0.011786856, 0.027625443, 0.015879514, 0.028566753, -0.010715944, -0.02294617, -0.00876511, -0.003649287, -6.134724E-4, -0.005552373, 0.012707704, -0.023928408, -0.004512156, 0.015060983, 0.022659684, 0.00783062, 0.005743364, 0.0053238664, 0.0056990264, -0.005757006, 0.0063061044, -0.012748631, -0.0017922432, -0.02834848, 0.01156176, -0.0034088432, 0.0031359994, 0.033368807, 0.020381438, -0.012291617, -0.008260349, -0.012714525, 0.007298574, -0.007953399, 9.94388E-5, 0.0031820417, 0.024487738, -0.02306895, 0.013137433, -0.02747538, -0.00509877, -0.0044473554, -0.0018314646, -0.0037277294, 0.038470987, 0.017980412, -0.055059895, 0.011432159, -0.017912202, -0.0014989361, -0.010286215, -6.271146E-4, -0.045292083, -0.025388123, -0.0031070097, 0.0020616765, -0.0038027617, -0.030231101, -0.015374753, -0.007012088, -0.009344903, 0.022045786, 0.1766937, -0.0076055233, 0.015333826, 0.038198143, -0.008574119, 0.015279258, 0.022182208, 0.021786584, -0.012653135, 0.008874247, -0.0044166604, 0.0032877687, -0.0012167132, 0.003966468, 0.023096234, -0.035824403, -0.024692371, -0.022618758, -0.028021067, -0.017625716, -0.010224825, -0.004829337, 0.0068927184, -0.023410005, 0.0035469704, -0.0045905984, -0.0060707764, 0.005763827, 0.02990369, 0.0034429487, -0.02518349, -0.009924696, -0.002878503, 0.00758506, -0.014719928, -0.0061901454, -0.011036535, 0.016261496, 0.008110285, 0.00758506, 0.016206926, -0.005750185, 0.0062140194, -0.012591745, 7.02573E-4, 0.024201252, -0.028757745, 0.004897548, -0.012237048, 0.009249408, -0.04327304, 0.009419935, 0.025047068, 0.034487467, -0.0058354484, -0.016166, 0.0061082924, 0.0010223119, -0.010190719, 0.011554939, 0.01504734, 0.032741267, -0.029194295, 0.0032877687, -0.0070530144, 0.01137759, -0.028212057, -0.0060469024, 0.0031598732, -0.03219558, -7.02573E-4, -0.021309108, -0.017352872, -0.010368068, -0.004072195, -0.015279258, 0.013035117, 0.008212601, 0.0018758017, 0.019740256, -0.036397375, -0.019999456, 0.002605659, -0.010866008, -0.014324304, -0.014951845, 0.017653, -0.012796378, -0.008321739, -0.009112986, -0.018225972, -0.03576983, -0.0063367994, 0.014638074, 0.004171101, -0.002965472, 0.029167011, 0.003724319, -0.020504218, 0.0038061722, -0.025538187, 0.033614367, 0.011800498, -0.013205644, -0.027993781, -0.025906526, 0.006316336, 0.0056308154, 0.02829391, -0.011056998, -0.023014382, -0.02032687, 7.997736E-4, -0.014146955, 4.7790312E-4, 0.012789557, -2.6138658E-5, -0.013819543, 0.02946714, -0.014024176, -0.0012260922, -0.026602278, 0.015429322, 0.0027199124, -0.013328424, -0.020940768, -0.033914495, 0.019781182, -0.0028495132, -0.032632127, 0.01560667, -0.023587354, 0.0037413717, -0.008185317, 0.004750894, -0.0012209764, 0.0074827434, 0.00802161, -0.009904233, -0.011548117, 6.492832E-4, -0.015279258, 0.0013505772, -7.643892E-4, 0.019440126, -0.029003305, 0.004147227, -0.012202943, -0.015565744, -0.03699763, -0.011793677, -0.010429458, 0.016616192, 0.01964476, 0.045919627, -0.008198959, -0.020927126, -0.03841642, -0.017066386, 0.038716547, -0.036206383, -0.004147227, 0.03265941, -0.004897548, -0.0297127, -0.014542579, -0.17527491, 0.018048624, -0.006193556, -0.01983575, 0.015934082, 0.019249136, 0.026888764, 0.003581076, -3.711103E-4, -0.030503945, 0.02418761, 0.015374753, -0.03787073, -0.005153339, 0.0042495434, 0.019180926, -0.019508338, 0.034160055, 0.013819543, -0.0013591036, 0.03009468, -0.0053613824, -0.009897412, -0.0014955255, 0.010647733, 0.014119671, 0.029276147, -0.004177922, -0.0015560627, -0.0060946504, -0.026329434, -0.0017419376, 0.015129193, 0.008990206, -3.826209E-4, 0.0028000604, -0.016329706, -0.016493412, -0.016015936, -0.005433004, 0.019044504, 0.010156614, 0.029439855, 0.017311944, 0.0017393797, 0.015879514, 0.026643205, -0.029821835, 0.016575266, -0.017980412, -0.011466264, -0.04799324, 0.03241385, 0.0031564627, -0.017953128, 0.022495978, -0.0031786312, 0.003922131, 8.223685E-4, 0.013355708, -0.034787595, -0.013062401, -0.006019618, -0.02057243, -2.9607824E-4, -0.029958257, -0.014965487, -0.0065448424, -0.026643205, 0.003905078, -0.014597148, 0.011473085, 0.030722221, 0.0040619634, 0.010586343, -0.019112714, -0.029876405, 0.0077692294, -0.015374753, 0.02244141, -0.013983249, 0.041335847, -0.0016796951, 8.3686336E-4, -0.007871546, -0.011343485, -0.0022714252, 0.0019559495, 0.0073940693, -0.028130203, -0.015006414, -0.017707568, -0.031076917, -0.016179642, -0.004232491, 0.0048395684, 0.0052181394, -0.0038505092, 0.00976099, -0.014951845, -0.0069302344, -0.022646042, -0.015156478, 0.029958257, 0.029958257, 0.005153339, 0.007434996, 0.02791193, 0.01050449, 0.0028000604, -0.014583506, 0.020026742, 0.024828793, 0.021786584, -0.01473357, 0.00344977, -0.011022893, -0.025156206, -0.0030166302, 0.027734581, 0.043682307, 8.206633E-6, 0.005109002, -0.02268697, 0.0044234814, -0.0037413717, -0.07885188, 5.6114182E-5, 0.023955693, 0.041554123, -0.042563647, 0.0491119, -0.009747348, 0.016520698, -0.015033698, 0.04215438, 0.010947861, -0.030040111, 0.005173802, -0.0015168415, 0.018989934, -0.005733132, -0.010027013, -0.009351724, -0.012441681, 0.034542035, 0.003320169, -0.012216585, -0.005637637, -0.027584516, -0.0039562364, 0.0032673054, -0.032495707, 0.0349513, 0.013028296, -6.3436205E-4, 0.014310662, -0.02450138, 0.01709367, -0.043627735, -2.0499929E-6, -0.025974737, -0.006943877, -0.016929964, 0.008874247, -0.046656303, 0.019262778, 0.012318901, 0.012243869, -0.01833511, -0.013219286, -0.005869554, -0.04395515, 0.031813595, -0.020163164, -0.013826364, -0.008628688, -0.003506044, -0.02051786, 0.0013377876, 0.021923006, 0.011234347, 0.024324032, -3.61305E-4, -0.026124801, -0.016998174, -0.004836158, -0.0072644684, -0.015074625, 0.011459443, 0.010013371, 0.01871709, 0.01000655, -0.012823663, 0.013144254, -0.017202808, -0.03132248, 0.023137162, -0.031486183, -0.00714851, -0.017666642, 2.2381725E-4, -0.020626998, -0.011207063, 0.027761865, -0.02368285, -9.2766917E-4, -0.029548991, -0.0037106767, -0.021295466, 0.019590192, 0.017120954, 0.008048895, 0.012005131, -0.011793677, -0.041745115, 0.0039187204, 0.02207307, 0.013144254, -9.489851E-4, 0.010988788, 0.01585223, 0.023573712, 0.0012448502, -0.0072712894, 0.01343074, -0.00441325, 0.013730869, -0.0707757, 0.022223134, -0.019849392, -9.5239567E-4, 0.004488282, -0.0064561684, 0.008028431, -0.022141282, 0.0021520562, 0.016056862, -0.014515295, 0.03377807, -4.6980305E-4, 0.0021793405, -0.013096507, 0.01777578, 0.012025594, -0.009849664, 0.0031001887, 0.0013744511, 0.0012363238, 0.010456742, 0.02100898, -0.0013591036, 0.0063811364, 0.008171674, -0.001858749, 0.024978857, -0.02132275, -0.015456606, 0.038689263, -0.023287226, -0.0019388968, 0.0024538897, 0.0031820417, -0.03257756, 0.006012797, -0.01007476, 0.017489294, 0.0017649588, -0.011043356, -0.015988652, -0.006023029, -0.005129465, -0.02100898, 0.006821097, -0.011493549, 0.014283377, 0.006445937, 0.008655972, 0.028675891, 0.014583506, -0.008055716, -0.01355352, 0.014651717, -0.01592044, 0.043000195, 0.008130748, -0.005855912, -0.011595865, 0.018457888, 0.0059650494, 0.033668935, -0.027871002, -8.95269E-4, -0.0076873763, 0.010559058, -0.021923006, 0.0055557834, -0.02455595, -0.014378873, 0.0034582962, -0.0046588094, 0.032550275, 0.01697089, 0.02853947, 0.0072712894, -0.0010351015, -0.012114269, 0.0058354484, 0.01255764, -0.008628688, -0.032359283, 0.01087965, 0.0041438164, 0.019139998, -0.010743228, 0.02008131, 0.0031428204, 0.0037004452, -0.004986222, 0.011111567, 0.02356007, 0.0012005131, 0.008301275, 0.017830348, -0.024446812, -0.0063879574, -0.0062754094, 0.024487738, -0.004208617, -0.0069165924, -0.019426484, -0.014078745, -0.013969607, 0.0055864784, -0.017421082, 3.736682E-4, 0.01087965, 0.013423919, 0.027939213, 0.02815749, -0.0046860934, 0.009379009, -0.02766637, 0.012591745, 2.423621E-4, -0.016889036, -0.013642194, 0.03912581, 0.00870372, 0.017366514, 0.015579386, -8.104316E-4, 0.041199427, 0.01019754, 0.023259941, -0.029194295, 0.00478841, -0.0010069645, 0.004440534, -0.012946442, -0.025483618, -2.2927945E-5, -0.009003848, 0.004880495, 0.006104882, 0.024201252, -0.03593354, 0.07677827, 0.015429322, 0.0028733872, 0.041581407, -0.014583506, 0.014078745, 0.014924561, 0.01927642, 0.0025647325, 7.5884705E-4, 7.857051E-4, -0.027693653, 0.01106382, -0.03083136, 0.010518132, -0.007973863, 0.02319173, 0.009958802, -3.8773674E-4, -0.024446812, -0.012052879, -8.731004E-4, 0.020681566, 0.002063382, 0.0059411754, -1.1521259E-4, -0.0067051384, -0.009542715, -0.007864725, -0.04327304, -0.005494394, -0.013062401, -0.002138414, 0.0013036822, 0.028894167, -0.007912473, -0.0023583942, 0.008540014, 0.026124801, 0.0013130612, -0.0037038557, 0.004730431, -0.025579114, -0.022332272, 0.03189545, -0.011841425, 0.0021026032, -0.021336392, -0.016547982 ], + "id" : "42dbc8a1-bd6e-4d42-a09c-f49a782916af", + "metadata" : { + "source" : "movies.csv" + } + }, + "c2de76b9-996b-4031-bdac-322476b613fb" : { + "text" : "7,3170,Anna Kendrick-Justin Timberlake-Zooey Deschanel-Russell Brand-James Corden-Gwen Stefani-Iris Dohrn-Liam Henry-Aino Jawo-Caroline Hjelt-Ron Funches-Kunal Nayyar-Glozell Green-Meg DeAngelis-Ricky Dillon-Kandee Johnson-Christine Baranski-John Cleese-Christopher Mintz-Plasse-Walt Dohrn-Jeffrey Tambor-Quvenzhan�� Wallis-Rhys Darby-Grace Helbig-Curtis Stone-Mike Mitchell-Nina Zoe Bakshi-Zo� Crawford-Riley Crawford-Ollie Mitchell-Emmett Mitchell-Phoebe Dohrn-Um Sang-hyun,based on toy-troll,/zKu5MNy9QW1a5ZHgv7iAp3kRZpE.jpg,/gWCWHybWuVg3GmZpdY8qWGb85HR.jpg,484510-332210-335797-892409-277834-326911-328111-153518-295693-446893-651166-278154-228161-525702-127380-140300-159824-378236-172385-49519-77950\r\n47971,xXx: Return of Xander Cage,Action-Adventure-Crime,en,Extreme athlete turned government operative Xander Cage comes out of self-imposed exile thought to be long dead and is set on a collision course with deadly alpha warrior Xiang and his team in a race to recover a sinister and seemingly unstoppable weapon known as Pandora's Box. Recruiting an all-new group of thrill-seeking cohorts Xander finds himself enmeshed in a deadly conspiracy that points to collusion at the highest levels of world governments.,125.625,Rox Productions-Revolution Studios-Maple Cage Productions-Huahua Media-Roth-Kirschenbaum Films-Shanghai Film Group-One Race-Paramount,1/13/17,85000000,346147658,107,Released,\"There are no more patriots, just rebels and tyrants.\",6.139,8586,Vin Diesel-Donnie Yen-Ruby Rose-Toni Collette-Samuel L. Jackson-Ice Cube-Rory McCann-Nina Dobrev-Deepika Padukone-Tony Jaa-Kris Wu-Hermione Corfield-Michael Bisping-Shawn Roberts-Tony Gonzalez-Ariadna Guti��rrez-Andrey Ivchenko-Nicky Jam-Neymar Jr-Al Sapienza-Helena-Alexis Seymour-Megan Soo-Kristen Kurnik-Bailey Rose King-Pilar Cruz-Charles Carroll-H��ctor An�_bal-Curtis Fletcher-Terry Chen-Jenny Itwaru-Julie Abcede-Josh Pagcaliwangan-Nyjah Huston-Roberta Mancino-Nina Buitrago-Dani Lightningbolt-Courtney Friel-Jelena Saviۈ-Glorianna Sulbaran-Rebecca Leung-Daniel Kash,airplane-tattoo-spy-extreme sports-parachute-secret agent-swimming pool-sequel-back from the dead-dominican republic-free fall,/hba8zREJpP1AYhaXgb2oJLQeO0K.jpg,/4QLdZ2A8mkDWp2rpfgDrwmeCtUW.jpg,1015606-8965-43641-899082-635744-433460-125521-101180-38554-388523-40721-38931-89403-120657-503210-152736-143901-378142-43311-163521-454181", + "embedding" : [ 0.0038620248, -0.029212926, -0.01812233, -0.027991194, -0.02025357, 0.03822658, -1.7551765E-4, 0.0020769413, -0.018882519, -0.03133059, 0.022995675, 0.019697005, 0.01757934, -0.012319112, 4.189092E-4, 0.009034015, 0.016629104, 7.911551E-4, 0.008429938, -0.030217458, -0.006183312, -0.005558872, -0.014497864, 0.010724075, -0.0038552373, 0.015027281, 0.021108782, 6.299546E-4, -0.0017986583, -0.0047409916, 0.005826974, 3.2600682E-4, -0.009997825, -0.040670037, -0.023484368, 0.001634064, -0.0023654052, -0.029674467, 0.019615555, 0.0055656596, 0.007771561, 0.007024948, -0.018733196, -0.010615477, -0.0026623535, 0.0068349014, 0.0015543122, -0.004605244, 0.005015881, 0.02490972, 0.03635326, 0.027773999, -0.031221991, -0.013656228, -0.015407374, 0.0019751303, -0.022669882, 0.0030068136, -0.006651642, 0.013690165, 0.0074661286, -0.00954307, -0.026484394, -0.017755812, -0.01570602, -0.005283983, -0.0121697895, -0.026742315, 0.008864331, 0.0076968996, 0.030543253, 0.013479755, 0.023850886, 0.0017850834, 0.022045441, -0.023307895, -0.03562022, -0.0037771822, -0.007635813, 0.0027743455, 0.033285357, -0.006926531, -0.015312351, 0.012638119, 0.011850783, 0.0057624937, -4.937826E-4, 0.020538641, -0.012617758, 0.008158443, 0.009665242, 0.033964097, 0.006183312, 0.0018987722, 0.0031205025, 0.011402815, -0.027407479, 0.011226342, -0.018366676, -0.037222043, 0.0184074, 0.006081501, 7.224328E-4, -0.010873398, 0.001401596, -0.008185592, 0.0013311767, -0.0053281006, 0.015393799, 0.002124453, 0.0037568202, -0.0074797035, 0.011368877, -0.045312613, -0.0025944796, -0.0107987365, 0.023144998, -0.0050837547, -0.020687964, -0.020484341, 0.035973165, 0.025316963, 0.010228596, -0.038498074, 0.0430592, 0.034126993, 0.0027387117, -0.012977489, 0.010133573, 2.7785875E-4, 0.030054562, -0.004123339, 0.02834414, 0.018828219, -0.013954873, 0.048109017, -0.017823685, 0.018611021, -0.01960198, -0.010676564, 0.030353205, 0.03499578, -0.019072564, -0.012529521, -0.011850783, -0.005769281, 0.021923268, -0.012577033, 0.01627616, 0.0138055505, 0.020660814, 0.021285255, 0.030298907, 0.015882492, 0.0016892116, 0.0050498177, 0.0015441311, -0.0036685842, 0.0056505017, -0.006179918, -0.011877932, -0.0044966456, -0.00569462, -0.004360898, 0.003257947, 0.022425536, 0.028534185, -0.0076629627, -0.012081553, -0.010527241, -0.0030203883, 0.030869048, -0.02618575, 0.015163029, 0.0032664312, 0.0117082475, -0.0074321916, -0.01783726, -0.026199324, -0.0035464112, 0.0023144998, 0.009658455, 0.032335125, 0.03996415, -0.008429938, 4.657846E-4, 0.0246518, -0.013941298, 0.0025164247, -0.018271653, -0.006957074, 0.011015933, 0.0053450693, -0.009963888, -0.638992, -0.0059321783, 0.008545323, 0.0026725347, 0.022697031, 0.01339152, -0.01029647, -0.019031841, -0.039122514, -0.004326961, -0.025710631, 0.022289786, 0.03152064, -0.011491051, -0.016941324, -0.011626799, 0.006437839, -0.018651746, 0.0043982286, 0.006750059, -0.014484289, 0.017362142, 0.018230928, -0.01136209, 0.00876252, 0.0029491207, -0.015095155, -0.015190178, 0.011504625, 0.0023840705, -0.016316885, 0.016371183, 0.0027862233, 0.016968474, 0.03627181, 0.0020531854, -0.010853036, 0.0491407, 0.024828272, 0.038959615, -0.043765087, 0.011138107, -0.0075000655, 0.0035498047, -0.013181111, 0.024339579, -0.001790174, 0.017077072, 0.0018478668, -0.015393799, -0.00101726, 0.007635813, 0.0025045467, -0.006858657, -0.0102828955, -0.012475222, 0.009196913, -0.032823816, 0.034642838, -6.545589E-4, -0.026579417, 0.014864383, -0.0045102206, 0.008599622, -0.015407374, 0.021149507, -0.007717262, -0.015624571, 0.0068518696, -0.037792183, 0.016181137, 0.013567992, -0.02119023, 0.004673118, 0.01339152, 0.022303361, 0.014212794, 0.0023094092, -0.0084503, 0.019221887, -0.012054404, 0.005222896, 0.007907309, 0.010954847, 0.0184074, -1.2980883E-4, -0.03828088, 0.008355277, 0.0067873895, 0.0059966585, 0.010099635, 0.009067953, 0.013839487, 0.017104222, -0.023525093, -0.0022092953, -0.0050362432, 0.007282869, 0.021298828, -0.05090542, -0.00622743, -0.02834414, 0.026036426, -0.018896092, 0.026117874, 0.0031815888, -0.021122357, -0.016289735, 0.02121738, -0.013683378, -0.029402971, 0.0023823737, -0.009719542, -0.0028388258, -0.004880133, -0.027543226, 0.026918788, 0.02121738, 3.8433593E-4, -0.015353075, 0.001790174, 0.004859771, 0.0012989367, -0.009013654, 0.016452633, 0.027909746, -0.0058643045, -0.0047206297, 0.011185618, 0.005188959, -0.008117718, 0.0047749286, 0.02116308, -0.030869048, 0.014416415, 0.0062206425, 0.004734204, -5.402073E-6, 0.012312325, -0.00894578, -0.03206363, -0.023253597, -0.021040907, -0.018230928, -0.0214753, 0.0033784232, -0.039502606, 0.0035633796, 5.625049E-4, -0.015977515, -0.0066584293, 0.016846301, -0.0041267327, 0.021624623, 0.020090673, 0.0050532115, -0.016493356, -0.024149531, 0.017565764, -0.007927671, 0.014945832, 0.020687964, 0.004836015, -0.0368148, 0.028181242, 0.0016213377, -0.014334966, 0.0073982547, -1.7053317E-4, -0.015013706, 0.010588327, -0.009285149, -0.0038043319, 0.006237611, -3.438237E-4, 0.02280563, -0.012997851, 0.026362222, 0.00800912, -0.012549884, -0.0017884772, -0.009665242, -0.034615688, -0.015135879, 0.029810214, 0.019724155, 0.013785188, 0.004869952, -0.007717262, -0.004167457, -0.029620169, -0.01367659, 0.0029185775, 0.0054977858, 0.0017324812, 0.017538615, 0.0063326345, -0.004038497, -0.008966141, -0.01229875, 0.032823816, 0.017430017, 0.011368877, -0.008871119, 0.01786441, -0.024638224, -0.0074864905, -0.015773894, 0.0055860216, -0.008538536, 0.022968527, -0.007052098, -0.008694646, 0.0014720152, -0.008810031, 0.02681019, -0.013968448, 0.016004665, -0.016642679, 1.2789987E-4, -0.0034191476, -0.010941272, 0.02337577, 0.027909746, -0.019004691, 0.0047443854, 0.0019920988, -0.010255746, 0.010303257, -0.011070233, -0.016669828, 0.008681071, -0.00682472, 0.002457035, 0.004333748, -0.018923242, 0.018013733, -0.008049844, 0.041213028, -0.011355303, 0.0014363814, 0.019778453, 0.018950392, 0.0142806675, 0.009495558, -0.0169006, 0.014592888, 0.020497916, -0.0013625685, 0.041701723, -0.012590608, 0.025262663, -0.0036923399, 0.009746691, -9.281755E-4, -0.009434472, 0.011334941, 0.0012904524, 0.03689625, 0.0114706885, 0.021095207, -0.022303361, 0.032823816, 3.0543254E-4, 0.014728636, 0.008104143, -0.02116308, 0.006339422, -0.010004613, -0.018991116, -0.017769385, -0.014620037, 0.012543096, 0.013825913, -0.007751199, -0.0036380407, 0.0034887183, 0.009658455, 0.019534107, 0.027570376, 0.015515973, -0.031602085, 0.014565738, 0.032715216, -0.020565791, -0.026945937, -0.012801017, -0.0050837547, -0.037466392, -0.009509133, -0.005436699, 0.037900783, -0.010561178, 0.009034015, -0.0030102073, -0.0046629366, 0.013744464, -0.012597395, 0.009000079, 0.022656307, -0.01170146, 0.014090621, -0.013466181, 0.008884693, 0.019642705, -0.013982022, -6.019566E-4, -0.012862103, -0.0024536413, -0.00478511, 0.0054400926, 0.009380172, -0.04417233, 0.008300978, -0.019235462, -0.004181032, -0.01058154, 0.00616295, 0.008463874, -0.016072538, -0.024760397, -0.018285228, -0.024923295, 0.0065905554, 0.07889662, 0.039068215, 0.0014143223, 0.013893787, -0.0077783484, 0.006807752, 5.854124E-4, -0.012244451, -0.010941272, -0.018054456, 0.0093869595, -0.0065430435, 0.016452633, 0.0057591, 0.026850913, -0.004880133, -0.017755812, -0.010330407, -0.006892594, -0.010092848, -0.028452737, -0.027936896, 0.020620089, 0.027828297, 0.018936817, -0.010248958, 0.018896092, 0.023104275, 0.004428772, 0.007024948, -0.014674337, 0.017796535, 0.006471776, 0.010330407, 0.0029762704, -0.013730889, 0.031792134, -0.0013702043, 0.033638302, 0.0056776516, -0.015597422, 0.010676564, 0.010812311, -0.0044355593, 0.021380277, -0.03814513, -0.007961608, 0.01914044, 0.018814644, -0.03442564, 0.02124453, 0.0072421446, -0.008015907, -0.016642679, 0.020620089, 0.0022059015, -0.014077046, -0.009685605, -0.025344113, -0.0022177796, 0.0045441575, -0.027000235, 0.010201447, -0.015488823, -0.017715087, -0.0056233522, -0.016995624, -0.0036041038, -0.010961634, 0.0013710527, 0.003926505, -0.016982049, -0.005324707, -0.005935572, -5.535965E-4, 0.0075883013, 0.024583925, -3.9303227E-4, 0.022819204, 0.014728636, -0.02891428, -0.027624676, 0.0060781073, -0.012543096, -0.006957074, 0.0030543252, 0.0045645195, 0.018230928, -0.016642679, 0.0026385977, 0.00629191, 0.006923137, -0.015665295, -0.009991038, 0.052670144, 0.01658838, 0.019221887, 0.023430068, 0.006050958, -0.0100860605, 0.00860641, -0.018203778, 8.913752E-5, -0.015285201, -0.017728662, -0.016887026, 0.006281729, -0.001439775, -0.020810137, -0.027597526, -0.024068084, -0.009644881, -0.00785301, -0.003079778, 0.018393826, -0.016873451, 0.011402815, 0.011070233, -0.01812233, 0.010717289, 0.004201394, -0.01752504, 0.017850835, 0.037819333, -0.010968422, 0.025982127, -0.029973112, -0.02738033, -0.008681071, 0.035457324, 0.0019649493, 0.027964044, -0.02613145, -0.0023535274, -0.0018614416, -0.021638198, 0.006492138, 0.013472969, 0.007873372, 0.00585073, -0.026430095, 0.015407374, 0.016710553, 0.005840549, -0.02488257, -0.027217433, 0.0027777392, -0.0016612136, 0.008558898, 0.029348673, 0.0043439292, 0.016208285, -0.015746744, -0.017769385, -0.01273993, -0.031764984, -0.01536665, -0.005351857, 0.021339552, 0.017742237, 0.03502293, -0.002725137, 0.030380355, 0.01417207, 0.013398307, 0.02493687, -0.02542556, -0.0042081815, -0.01962913, 0.004157276, 0.0034853246, 0.018543148, -0.00319177, 0.009325873, -0.014810084, 0.0061358004, -0.010703714, 0.00265896, -0.004836015, -0.014063471, -0.016887026, 0.00663128, -0.041565973, -0.01229875, -0.022425536, -0.0042421184, 0.016968474, -0.008545323, -8.454542E-4, -0.009305511, 0.025520585, -0.010432218, 0.017389292, -0.022534134, 0.026457245, -0.025072617, -0.0032477658, -0.022900652, -0.017647212, -0.0075000655, -0.023497943, 0.0245975, 0.002725137, -0.016099688, -0.010981997, 0.023172148, -0.013479755, -0.029077178, 0.027909746, -0.022384811, -0.0047579603, -0.031656384, -0.0032528564, -0.032307975, -0.028154092, 0.0046289996, -0.0073371683, -0.003909536, -0.02019927, -0.032335125, 0.015814617, 0.0022042047, 0.052045703, 0.016819151, 0.044823922, 0.010574753, 0.01814948, -0.012488796, 0.011043083, -0.00904759, -0.0027200463, 0.022235489, 0.03019031, -0.018190203, -0.011450326, 8.7133114E-4, -0.00319177, -0.034778584, -0.041213028, 0.02155675, 0.016099688, 0.021611048, -0.030353205, -0.017945858, -0.013730889, 0.002489275, -0.0035328362, -0.0013998991, 0.010289683, -0.03312246, -0.017416442, 0.010785162, -0.004944613, -0.0024366728, -0.0069197435, -0.012386986, 0.023918761, -0.024366729, 0.010459367, -0.0070113735, -0.01624901, 0.02493687, -0.019642705, 0.011565712, 0.014647187, 0.011226342, -0.0062172487, -0.0016035208, 0.01364944, 0.027516078, -0.019615555, 0.015977515, 0.0067432714, -0.009556645, -0.003168014, 0.009577007, -0.015583847, -0.015298776, -0.012963914, -0.008769307, 0.030054562, -0.008565686, 0.0075679393, 0.004459315, -0.020321444, -0.0030068136, -0.0052941637, -0.026022851, 0.018814644, -0.048489112, 0.011287428, -0.0021719646, 0.002134634, -0.0023077126, -0.0028507037, -0.0024689129, -0.009448046, -0.008341702, -0.009061165, 9.2478184E-4, -0.014823658, -0.012027254, -0.03749354, -0.020470766, -0.004591669, -0.0018071425, 0.010248958, -0.024339579, -0.009278362, 0.018000158, 0.013995597, -0.011789695, -0.00863356, -0.016751278, 0.005840549, 0.022995675, -0.008287403, -0.0091358265, -0.0052296836, 0.027203858, -0.010174297, -0.0040995833, 0.006580374, 0.012054404, 0.024095234, -0.015407374, 0.02022642, 0.015624571, -0.01942551, -0.013737677, 0.008558898, 0.03241657, 0.016792001, -0.0033869075, -0.032335125, -0.0142942425, -0.0105340285, 0.046425745, -0.00353623, 0.005168597, 0.027909746, 0.021936843, 0.035294425, 0.030950496, -0.01442999, -0.03266092, 0.01248201, -0.009936739, -0.027149558, -0.006061139, 0.01138924, -0.0012217301, 0.007886947, -0.013900574, -0.019493382, -0.011138107, -0.021882543, -0.029864514, -0.011789695, 0.019764878, 0.032742366, 0.008049844, -0.001289604, 0.00722857, 0.0063190595, 0.015746744, -0.022262638, -0.0034225413, 0.03990985, 0.005073574, 0.02678304, 0.030516103, -0.02837129, -0.01658838, 0.012129066, 0.02283278, 0.0184617, 0.026660867, -0.0038111194, -0.008090569, -0.0013982023, 0.0024655194, 4.4372558E-4, 0.0025995702, 0.02670159, -0.016520506, -0.014796509, 0.008389213, 0.021339552, 0.020538641, 0.003437813, 0.015624571, -0.003013601, 7.126759E-4, -0.014375691, -0.016629104, 0.0046086377, -0.01973773, 0.020755837, -0.0053416756, 0.00816523, 0.035430174, 0.012807804, -0.014837233, 0.00653965, -0.0011063445, 0.0014754088, -0.009373385, 0.0023789802, -0.01445714, 0.009807778, -0.024054509, 0.0018716226, -0.030516103, -4.369382E-4, -0.0088982675, -9.383566E-4, 0.005983084, 0.027828297, -0.0064989254, -0.05663398, 5.3153746E-4, 0.005171991, 0.0072692945, -0.018692471, -0.0025927827, -0.033421107, -0.01945266, -0.005789643, -0.0043201735, -0.025411986, -0.02831699, 0.008300978, 0.014484289, -0.011334941, 0.017823685, 0.19200167, -0.0052330773, 0.003259644, 0.038389474, 0.006193493, 0.0011843995, 0.017687937, 0.014416415, -0.0063869334, 0.00585073, 0.0026945937, 0.013031788, -0.006957074, -0.006183312, 0.01624901, -0.0103100445, -0.026484394, -0.02724458, -0.01505443, -0.022194764, -0.023565816, -0.005935572, -0.013411881, -0.023837313, 0.008477449, 0.002270382, -0.0121697895, -0.0022618975, 0.026267197, 0.0045984564, -0.002044701, -0.0062545794, 0.0038620248, -0.0036923399, -0.0135815665, -0.009088315, 0.0014431687, 0.015502398, 0.019805603, 0.014579313, -0.009882439, -5.497786E-4, 0.0018393826, 0.0012743324, 0.0076968996, 0.018651746, -0.021706073, 0.004476283, -0.02095946, 0.020172121, -0.03505008, 0.016764853, 0.01914044, 0.026850913, -0.010092848, 8.212741E-4, 0.007649388, -0.005993265, -0.017280694, 0.013398307, 0.020742262, 0.029701617, -0.03323106, 0.008708221, 0.0084503, 0.0038959617, -0.032905266, 0.0053790063, 0.0016696978, -0.025371263, -0.031737834, -0.023430068, -0.01601824, 0.013350795, -0.021312403, -0.018448126, 0.011253492, 0.0052296836, 0.02150245, 0.024095234, -0.025927829, -0.013663015, 0.022221914, -0.006061139, -0.026362222, -0.008056631, 0.03019031, -0.015882492, -0.0045780945, -0.01783726, -0.002148209, -0.030841898, -0.002214386, -0.010045337, -0.023104275, -0.0031968604, 0.01362229, 0.010703714, -0.013038576, -0.004476283, -0.023226447, 0.022954952, 0.03249802, -0.005168597, -0.026226474, -0.019208312, -0.012604183, 0.0052432586, 0.026864488, -0.014267093, -0.025683481, -0.034642838, 0.004866558, -0.00813808, 0.008484237, 0.015896067, 0.011538562, -0.022140466, 0.040344242, -0.013120024, 0.0019954925, -0.031602085, 0.021230955, 0.0065532248, -0.0031968604, -0.025927829, -0.027529651, 0.0073711053, 0.010927698, -0.031194843, 0.0011911868, -0.004072434, 0.013011426, -0.011314578, -0.0013286315, -0.023144998, 0.024353154, -0.013120024, 0.012672056, -0.0084231505, 1.6968475E-4, -0.013031788, 0.026606567, 0.009862077, 0.008843969, -0.029402971, 0.004113158, -0.010466155, -0.0047783223, -0.031059096, -0.020104248, -0.003468356, 0.015855342, 0.0053111324, 0.045176864, 0.005803218, -0.019982075, -0.0430049, -0.017511465, 0.051502712, -0.026823763, 0.027964044, 0.019534107, -0.014687911, -0.020769412, -0.016927749, -0.17397436, 0.013846274, 0.012013679, -0.029864514, 0.0032867934, 0.0021991143, 0.02144815, -0.0054434864, 0.013778401, -0.023715138, 0.04178317, -0.003746639, -0.03819943, -0.0024061296, -0.0046459683, 0.016846301, -0.0057455255, 0.032145076, 0.040181346, 0.0014007476, 0.048163317, -0.008518174, -0.008090569, 0.012115491, -0.014131345, 0.01336437, 0.018801069, -0.0014584403, 0.01573317, -0.01934406, -0.040860087, -0.013527268, 0.018339526, 0.0107580125, -0.013303284, 0.008402788, -0.018285228, -0.01806803, -0.01104987, -0.002869369, 0.03439849, 0.022859927, 0.014728636, 0.0061052567, 0.022154039, 0.014307817, 0.03211793, -0.008497812, 0.021855395, -0.021203805, -0.008402788, -0.036977697, 0.031031946, -0.010907335, -0.005867698, 0.021828245, 0.006502319, 0.009481983, 0.013656228, -0.0045102206, -0.017755812, -0.011307791, 0.008857544, -0.016031815, -0.008864331, -0.018950392, -0.02579208, 0.016411908, -0.030977646, 0.008979716, -0.023307895, 0.023253597, 0.0047206297, 4.403319E-4, 0.019330485, -0.012705993, -0.03244372, 0.006804358, 0.018841794, 0.011565712, -0.019154014, 0.045421213, -0.0053111324, 0.019004691, 0.008518174, -0.0013209957, 0.011083807, -0.0029626957, 0.0010062305, -8.683617E-4, 0.010540816, -0.0184074, -0.045855604, -0.008097356, -0.0040181344, 0.0028286446, -0.008151655, 0.010242171, 0.011301003, -0.012271601, -0.009190125, -0.01760649, -0.014823658, 0.020077098, 0.030543253, -9.867167E-4, 0.0110227205, 0.01786441, 0.019303337, 0.0039638355, -0.0026097512, -0.0031069275, 0.02823554, 0.008993291, -0.016289735, 0.020430043, -0.032796666, -0.02275133, 0.004802078, 0.012108703, 0.05609099, 6.940106E-4, 5.777765E-4, -0.022289786, 3.7012485E-4, -0.003478537, -0.09127682, -0.016683403, 0.01812233, 0.021746796, -0.031737834, 0.032715216, -0.004591669, 0.018963967, -0.026253622, 0.032335125, -0.0046968735, -0.016208285, 0.011837208, 0.005793037, 0.01289604, -0.0040961895, -0.009481983, -0.0064106896, -0.011287428, 0.027651826, 6.117135E-4, -0.006940106, 0.0031272897, -0.013398307, -0.015190178, 0.027828297, -0.03317676, 0.021312403, 0.0040758275, -0.01326256, 0.0044525275, -0.013927723, 0.011273854, -0.05028098, -0.037357792, -0.028018344, -0.019615555, -0.024556775, 0.008328127, -0.042027514, 0.010357557, 0.0200228, 0.0053756125, -0.010493305, -0.013425456, -0.0029745735, -0.040805787, 0.03510438, -0.011280642, -0.021963993, -0.015787467, -0.0038993554, -0.034371343, -0.0077783484, 0.0023637083, 0.0055385097, 0.038498074, 0.0023263777, 0.0049378257, -0.029375821, 0.005148235, -0.0077919234, -0.013004638, 0.019778453, 0.0015806133, -7.194633E-4, -0.0037432453, 0.0021074845, 0.0018105361, -0.017986583, -0.029755916, 0.026647292, -0.03190073, -0.008531748, -0.0033173366, 0.002701381, -0.033855498, -0.021488875, 0.014267093, -0.03203648, 0.003492112, -0.040371392, 0.020945884, -0.014049896, 0.025099767, 0.006560012, 0.02059294, 0.0053993682, -0.013187898, -0.038362324, -0.019574832, 0.028968578, -0.0050633927, -0.0028303415, 0.0086878585, 0.0043676854, 0.008396001, 0.0010130178, -0.013011426, 0.021068057, -0.013846274, 0.0074186167, -0.0734124, 0.03578312, -0.020009225, -0.0022075984, -0.015380225, -0.012359836, 0.0029847545, 0.009271574, 0.0017027863, 0.013873424, -0.010500092, 0.016466208, -0.008742157, 0.0024655194, 0.004391441, 0.0068179327, 0.0033376988, -0.017402867, 0.008348489, 0.0015907944, -0.0096109435, 0.016982049, 0.029755916, -1.0456822E-4, 0.010981997, 0.024461752, -0.014484289, 0.015475248, -0.0031154118, -0.008748945, 0.034371343, -0.01905899, -0.0018648353, -0.009305511, -0.0096109435, -0.029457271, 0.0057794624, 2.7658613E-4, 0.011667523, 0.006037383, -0.003168014, -0.029430121, -0.0013184504, -0.008755732, -0.009773841, 0.009522707, -0.00785301, -0.0013489936, 2.5558763E-4, 0.00826704, 0.017104222, 0.006095076, -0.010153934, -0.023742288, 0.021176655, -0.02360654, 0.053891875, 0.0031849826, -0.0025045467, -0.016914174, 0.032905266, 0.008253465, 0.029783066, -0.037303492, -0.003868812, -0.003736458, 0.0033292146, -0.012699206, 0.0015051037, -0.030434655, -0.020294296, -0.0062986976, 0.0114978375, 0.037547838, 0.006692366, 0.015719594, -0.0063020913, 0.0075883013, -0.0068179327, 0.02613145, 0.0100114, 9.7483885E-4, -0.015841767, 0.025941404, -0.00811093, 0.008769307, -0.011192406, 0.0031205025, 0.01354763, 4.6154248E-4, -0.021122357, 0.01755219, 0.009237637, -4.942068E-4, 0.020063523, 0.0086878585, -0.026362222, -0.011429964, 0.004815653, 0.021678923, 0.0036719777, -0.021122357, -0.0069774366, -0.020674389, -0.0047104484, 1.3542963E-4, -0.006783996, -0.004425378, 0.008443513, 0.0078122853, 0.021665348, 0.0019208313, -0.017104222, -2.294986E-4, -0.03211793, -0.0064412327, 0.0061697373, -0.01814948, -0.016371183, 0.0462357, 0.02283278, -0.004751173, 0.028479887, -0.0061324066, 0.06016342, 0.012285175, 0.008178804, -0.027516078, 0.009414109, -0.011151681, 0.0022873504, -0.00531792, -0.018230928, 0.008382427, -0.01656123, 0.00644802, 0.008233104, 0.030869048, -0.008076994, 0.082534656, 0.015095155, -0.008396001, 0.025004743, -0.011972955, 0.014565738, 0.021665348, 0.017185671, -0.024543202, -0.0054061557, -0.0061018635, -0.02428528, 0.009210488, -0.016859876, 0.0031425613, -0.017090647, 0.019289762, 0.0035837416, -0.0058439425, -0.016805576, 6.8170845E-4, -0.022887077, 0.022506984, -0.0091358265, -0.009495558, -0.016696978, 0.019262612, -0.013663015, 0.005501179, -0.023810163, 0.0049378257, -0.02176037, 0.0029847545, -0.003682159, 0.029728767, 3.4870213E-4, -0.01942551, 0.005334888, 0.010690139, 0.007703687, -0.018773919, -0.018475274, -0.03450709, -0.014945832, 0.026253622, -0.0027862233, -0.0017223001, -0.032742366, -0.023511518 ], + "id" : "c2de76b9-996b-4031-bdac-322476b613fb", + "metadata" : { + "source" : "movies.csv" + } + }, + "12db3251-fbb2-4b40-a9cb-24e106a5e343" : { + "text" : "Harrison-Mattie Hawkinson-Karin Konoval-Terry Notary-Richard Ridings-Christopher Gordon-Devyn Dalton-Jay Caputo-Leah Gibson-Tracy Spiridakos-Chris Shields-Lauren Watson-Ivan Wanis-Ruiz,intelligence-zoo-cage-dystopia-alzheimer's disease-golden gate bridge-ape-monkey-medical research,/cjLsuP75UDlRdJVMXzXg3TJ4umX.jpg,/v7JTQy194gRbljdlK4OJhwnOypQ.jpg,119450-281338-1858-8373-6479-1865-49538-38356-20526-285-58574-58-39254-557-607-2048-559-41154-1771-36668-10528\r\n857,Saving Private Ryan,Drama-History-War,en,As U.S. troops storm the beaches of Normandy three brothers lie dead on the battlefield with a fourth trapped behind enemy lines. Ranger captain John Miller and seven men are tasked with penetrating German-held territory and bringing the boy home.,87.283,Paramount-Amblin Entertainment-Mutual Film Company-DreamWorks Pictures-The Mark Gordon Company,7/24/98,70000000,481840909,169,Released,The mission is a man.,8.204,13987,Tom Hanks-Tom Sizemore-Edward Burns-Matt Damon-Barry Pepper-Adam Goldberg-Vin Diesel-Giovanni Ribisi-Ted Danson-Jeremy Davies-Paul Giamatti-Dennis Farina-Joerg Stadler-Max Martini-Dylan Bruno-Daniel Cerqueira-Demetri Goritsas-Ian Porter-Gary Sefton-Julian Spencer-Steve Griffin-William Marsh-Marc Cass-Markus Napier-Neil Finnighan-Peter Miles-Paul Garcia-Seamus McQuade-Ronald Longridge-Adam Shaw-Rolf Saxon-Corey Johnson-Loclann Aiken-John Barnett-Maclean Burke-Victor Burke-Aiden Condron-Paschal Friel-Shane Hagan-Paul Hickey-Shane Johnson-Laird Macintosh-Brian Maynard-Martin McDougall-Mark Phillips-Lee Aaron Rosen-Andrew Scott-Matthew Sharp-Vincent Walsh-Grahame Wood-John Sharian-Glenn Wrage-Crofton Hardester-Martin Hub-Raffaello Degruttola-Nigel Whitmey-Sam Ellis-Erich Redman-Tilo Keiner-Stephan Grothgar-Stephane Cornicard-Michelle Evans-Martin Beaton-Anna Maguire-Nathan Fillion-Leland Orser-Michael Mantas-David Vegh-Ryan Hurst-Nick Brooks-Sam Scudder-John Walters-Dorothy Grumbar-James Innes-Smith-Harve Presnell-Dale Dye-Bryan Cranston-David Wohl-Eric Loren-Valerie Colgan-Amanda Boxer-Harrison Young-Kathleen Byron-Rob Freeman-Thomas Gizbert-Nina Muschallik-Taylor Murphy-Mac Steinmeier-Derek Lea-Leo Stransky-Vincent Ventresca,war crimes-self sacrifice-war veteran-world war ii-war ship-airplane-bravery-normandy france-parachute-troops-waffen ss-omaha beach-army-epic-cowardice-d-day-based on true story-rescue mission-war memorial-deserted town-soldier-death-military-military operation-1940s,/1wY4psJ5NVEhCuOYROwLH2XExM2.jpg,/bdD39MpSVhKjxarTxLSfX6baoMP.", + "embedding" : [ 0.008092938, -0.037050694, -0.011262105, -0.031392436, -0.017301206, 0.03348708, 0.0042844964, -0.0018940195, -0.01388721, -0.033813518, 0.011398121, 0.033759113, 0.0019314238, 0.006273727, 0.008208551, 0.011962586, 0.016933963, -0.022537813, 0.011472929, -0.041566417, -0.015220163, 0.004995179, -0.005059786, 0.012642665, 0.003546611, 0.0016228381, 0.015315375, -0.018239714, -0.0025213922, -0.015764227, -2.1273716E-4, -0.018062893, -0.003235475, -0.02693112, -0.016906759, 0.008616598, 7.1238255E-4, -0.018321324, 0.016593924, -0.01819891, 0.017913276, -0.0041926857, 0.005600449, -0.0073788553, -0.015111351, 0.017491627, 0.004930571, -0.014431273, -0.004580331, 0.033677503, 0.027883232, 0.024714064, -0.0148801245, -0.022565015, -0.0054066265, 0.0077801016, -0.0053692223, 0.011336914, -0.010133174, -0.007542074, 0.012112204, -0.0069062, -0.028100856, 0.002881834, -0.0077665, -0.010643234, -0.025230924, -0.011806169, -0.015002538, 0.011744961, 0.022252178, 0.012955502, 0.021517694, 0.00647435, 0.024020383, -0.03063075, -0.015152156, -0.012384235, -0.0061751157, 0.01113289, 0.0081133405, -0.016675532, -0.0079909265, -0.0024720866, 0.027325567, 0.0021677513, -0.0035908162, 0.032616578, -0.029705843, -1.2273298E-4, 0.014594492, 0.029216185, 0.011962586, -0.0037166306, -0.0070184134, 0.023163484, -0.014281655, 0.032779798, -0.008834224, -0.04262734, -0.0049747764, -0.0025689977, 0.0029804455, -0.013397553, 0.0041654827, -0.00578407, -0.001846414, -0.0011510334, 0.013227533, -0.0073380503, 0.01269027, 0.0054576322, 0.012833087, -0.033813518, 0.0021422482, -0.015464992, 0.016403502, -0.031038797, -0.0074128592, -0.024129197, 0.029705843, 0.019695083, 0.00207254, -0.030249905, 0.029270591, 0.050434645, 0.0056072497, -0.0013737592, 0.013186729, 0.0034565006, 0.031093203, -0.008453379, 0.027420778, 0.020143934, -0.018538948, 0.04279056, -0.02916178, 0.02218417, -0.017478025, -0.016675532, 0.028944153, 0.03754035, -0.028264076, -0.021803327, -0.019151019, 0.011166894, 0.0057262634, 0.009595912, 0.015845837, 0.0074604647, 0.019314239, 0.017872471, 0.01043921, 0.0053896247, 0.009806736, -0.008235754, -0.016430704, -0.0061581135, -0.007800504, -0.007827708, -0.008324165, 0.001044771, -0.0071408274, -0.006195518, 0.01156134, 0.021232061, 0.010139975, -0.019627074, -0.01388721, -0.008208551, -0.01018078, 0.008412575, -0.028318482, 0.008664204, 0.0036792264, 0.021966545, -0.0030773566, -0.011472929, -0.037077896, -0.021599304, -0.0121326065, 0.003546611, 0.029515421, 0.038628478, -0.017192392, 0.0035398102, 0.019083012, -0.011445726, 8.0036774E-4, -0.007977325, -0.007664488, 0.007834508, 0.009813537, -0.0032303743, -0.63894767, -0.023258695, 2.0625515E-4, -0.010065166, 0.02864492, 0.01519296, -9.7070624E-5, 0.0063961414, -0.026591081, 0.012227817, -0.03441199, 0.01864776, 0.012309426, -0.009874744, -0.021368077, -0.01993991, -0.0016143371, -0.0121870125, 0.027842427, 0.010996874, -0.019749489, 0.021300068, 0.01932784, 0.0013168026, 0.005746666, 0.0062669264, -0.006402942, -0.014567289, 0.0044987216, 0.009623115, -0.012758278, 0.0052400073, 0.015437789, -0.0017750057, 0.044041906, -0.0037268319, -0.009725127, 0.05299174, 0.0063281334, 0.02097363, -0.020075927, -0.015464992, 0.013853205, 1.5248642E-4, -0.0072088353, 0.026795106, 0.009568709, -0.009208268, -0.0045871316, -0.01708358, -0.008446579, 0.0028886348, -0.019001402, -0.018620558, -4.365256E-4, -0.011615746, 0.002623404, -0.044912405, 0.023693945, -0.0065185553, -0.024958892, 0.02995067, 0.0015769327, 0.016403502, -0.021164052, 0.032562174, -0.005321617, -0.008405774, 0.008351368, -0.031365234, 0.0038118418, 0.013982421, -0.014132038, -0.008004528, 0.0044205124, 0.026591081, 0.03332386, 0.002682911, -0.006311131, 0.0198583, -0.010962871, -0.017899673, -0.0018243114, 0.020239145, 0.032698188, 0.0036282204, -0.037676368, 0.0068619954, 0.016920362, -0.0050257826, -0.004434114, 0.016770743, 0.0050767884, 0.01026239, -0.0038220428, 5.8444275E-4, 0.0061003068, -0.010602429, 0.03158286, -0.05418868, 9.3510834E-4, -0.0029991476, 0.027883232, -0.0073380503, -0.0036214197, -0.0016848953, -0.0121190045, -0.012350231, 0.031555656, -0.005229806, -0.022279382, 0.018593354, -0.024877284, 0.0148257185, 0.00578407, -0.025992611, 0.019817496, 0.017926877, -0.007725695, -0.0014519682, -0.0017665047, -0.0046891435, 0.0077665, -0.017750056, 0.024115594, 0.024482837, 0.002132047, -0.00750807, 0.010330397, 0.015070546, 0.017478025, -0.021150451, 0.0067429813, -0.015533, -0.0023190686, 0.008813822, 0.004175684, -0.012601861, 0.0146625, 0.0051447963, -0.025516557, 0.0023105678, -0.009582311, -0.021259263, -0.0013780097, -0.0037744374, -0.030249905, -0.015138554, -0.005161798, -0.00379824, 0.012030594, 0.013982421, -0.0198583, 0.0028512303, 0.0038288438, 0.00750807, -0.02924339, -0.013608377, 0.016893158, -0.016321892, 0.004440915, 0.017722854, -0.0055970484, -0.019436652, 0.02631905, -0.0034616012, -0.011268906, 0.0067497822, -0.011928583, -0.0081405435, 0.02321789, -0.020157536, -0.009378287, 0.009262674, -0.020932825, 0.02752959, -0.0081541445, 0.025842994, 0.023149883, -0.006532157, 0.010854058, -0.006572962, -0.016036259, 0.0013992621, 0.016226681, 0.0148257185, 0.014988937, 6.4097426E-4, 0.014526484, 0.011024077, -0.01942305, -0.017818065, -0.005947289, 0.006324733, 0.006219321, 0.018226111, 9.1045554E-4, 0.0041994867, -0.004046469, 0.012357032, 0.022197772, 0.017192392, 0.019436652, -0.01579143, 0.025502956, -0.024360424, -0.005719463, -0.026971925, 0.022469804, -0.012751478, 0.011840172, -0.0065185553, -0.022850648, 0.0029549424, -0.010745245, 0.018090097, -0.021476889, 0.0080725355, -0.024741268, 0.0068483935, 0.006600165, -0.004366106, 0.025162917, 0.021558499, -0.023748351, 0.0031266625, 0.015233765, -0.019708684, -0.0011603845, -0.015233765, 0.0057092616, 0.0050767884, -0.007997727, 0.0035534117, 0.014376866, -0.007739297, 0.013322744, -0.014036827, 0.036697052, -0.0079909265, 0.0020232345, -0.006090106, 0.011656551, -0.0039580585, -0.0037302324, -0.009521103, 0.016349094, 0.019395847, -0.028971357, 0.033895127, -0.013587975, 0.035010457, -0.0022493608, -0.008004528, 0.008500985, -0.00457013, 0.013234334, -0.0065525593, 0.03182769, 0.022714632, 0.015328976, -0.025584565, 0.021599304, -0.013227533, 5.857179E-4, -0.0147305075, -0.014172843, 0.005124394, -0.010500417, -0.019096613, -0.015383382, -0.0122414185, -0.009344283, 0.016213078, -0.010058366, -0.023313101, 0.006606966, 0.0134995645, 0.006851794, 0.015941048, -0.008147344, -0.032398954, 0.017641244, 0.026944723, -0.014621695, -0.010990074, -0.017205995, -0.002613203, -0.057017807, -0.0039274553, 0.007127226, 0.028318482, -0.0057772696, -0.002856331, 0.0023802759, -0.0058690803, 0.02002152, -0.017913276, 0.022469804, 0.020402364, -0.0015267769, 0.0041212775, -0.0053352183, -0.0081541445, 0.018933395, -0.016729938, -0.0074672652, -3.685177E-4, 0.0049815774, -0.013744392, 0.010928866, 0.004002264, -0.039498977, 0.02321789, -0.0032932817, -3.24897E-5, -0.010894863, 9.716626E-4, -0.0062329224, -0.015124952, -0.01303031, -0.025176518, -0.027135145, 0.0094530955, 0.08721331, 0.047034252, 0.0017478026, 0.0035602127, -0.0060186973, 0.0053182165, -0.010656835, -0.01320033, 0.004668741, -0.012629064, 0.022728235, -0.0050801886, 0.026781503, 0.0021014435, 0.02425161, 0.0045939325, -0.0012122404, -0.0049577747, 0.01087446, -0.026767902, -0.03054914, -0.026903918, 0.0052774115, 0.015519398, 0.010949269, -0.028345685, 0.024999697, 0.003220173, -0.003692828, 0.015342578, -0.01181977, 0.012125805, 0.0065695615, -0.0028019247, -0.0121734105, 0.00535222, 0.04262734, 0.016838752, 0.036370616, -0.011214499, 0.0015429289, 0.005100591, 0.009684322, -0.0061581135, 0.02493169, -0.031637266, -0.016716337, 0.02104164, 0.025217323, -0.024142798, 0.015709821, 0.0011416823, -0.013275138, -0.019205425, -0.007895715, 8.54774E-4, 0.01328874, -6.9410546E-4, -0.016457908, 0.028400091, -0.010942468, -0.027339168, 0.015750626, -0.019967115, -0.0032830804, -0.01604986, -0.029869061, -0.0055630445, -0.020756006, -6.6605216E-4, 0.020143934, -0.018974198, -0.006964007, 0.0011382819, 0.021259263, -0.005943889, 0.019137418, -0.019314239, 0.014920929, 0.01708358, -0.032507766, -0.019300636, 0.010922066, -0.012867091, -0.013649181, 0.018715769, -0.006712378, 0.011187296, -3.8275684E-4, 0.0181173, 0.0037302324, 0.0018090096, -0.024006782, -0.014036827, 0.03411275, 0.0147849135, 0.007956922, 0.018688565, -0.003442899, -0.001423065, 0.0109152645, -0.023544328, -0.010459612, -0.034874443, -0.0036724256, -0.004995179, -0.005117593, 0.0029991476, -0.021871334, -0.020660793, -0.011731359, -0.027842427, 0.0054746345, 0.0018838183, 0.006368938, 0.0051719993, 0.029841859, 0.01302351, -0.002208556, 0.018674964, 0.0026506071, -9.3340816E-4, 0.013016708, 0.007317648, -0.0043185004, 0.025244525, -0.012350231, -0.024578048, 0.00828336, 0.02425161, -0.021476889, 0.018226111, -0.02451004, -0.0036078182, 0.006651171, -0.024918087, 0.011928583, 0.015845837, -0.009745529, 0.017437221, -0.021422483, 0.007800504, 0.01545139, 0.017450823, -0.003408895, -0.018062893, 4.31425E-4, -0.010996874, 0.006076504, 0.025434949, -0.014390468, 0.0063995416, -0.019817496, -2.2506359E-4, -0.018090097, -0.024877284, -0.028617717, 0.014254452, 0.0276248, 0.010241987, 0.016702736, -0.013730791, 0.022945859, 0.0133499475, 0.015750626, 0.02804645, -0.011479731, -0.01682515, -0.032045312, -0.017423619, 0.02924339, 0.028971357, 0.01406403, 0.001423065, 0.017205995, 0.02441483, 0.0108064525, 9.623115E-4, 0.0048795654, -0.042736154, -0.028372888, 8.7900186E-4, -0.022442602, -0.011200898, -0.017899673, -0.01666193, 0.03316064, -0.0077120936, -0.0015947848, -0.021463288, 0.032480564, 0.0030688557, 0.014553687, -0.01716519, 0.025244525, -0.016362697, -0.0041382797, -0.02045677, -0.020334357, 0.009459896, 0.005270611, 7.7699E-4, 0.0018430136, -0.012778681, -0.0043899086, 0.015260968, -0.029406607, -0.038030006, 0.006498153, -0.0047775535, -0.013438357, -0.021640107, -0.0040226663, -0.014635296, -0.015560203, -0.00595409, 0.004179084, -0.003243976, -0.026237441, -0.0379756, 0.006402942, -0.006314532, 0.04858483, 0.019776693, 0.05184921, 0.001768205, 0.014077632, -0.02649587, 0.01760044, -0.007038816, -0.0021898537, 0.027733615, 0.02614223, -0.005420228, -0.006005096, -0.0057092616, -0.016525915, -0.030113889, -0.0422737, 0.03547291, 0.024918087, 0.0014026626, -0.02089202, -5.134595E-4, -0.05418868, 0.0022969663, -0.0034616012, -0.011112488, 0.024047587, -0.026727097, -0.026509471, 0.0015650314, -0.014159241, 0.011255304, 0.005270611, -0.017219596, -0.0025247927, -0.02261942, 0.0033357865, -0.021028036, -0.002631905, 0.02494529, -0.04004304, 0.014363265, 0.007970524, 0.022660226, -0.008684606, -0.0121734105, 0.0063723386, 0.02995067, -1.2167035E-4, 0.012833087, 0.0072768433, -0.003097759, 0.021123247, 0.010303194, -0.014240851, -0.012234618, -0.017423619, -0.004927171, 0.026264643, 0.005821475, 0.0121870125, 0.0018498143, -0.014159241, -0.0066885753, 0.0029906465, -0.014227249, -4.3270015E-4, -0.024686862, -0.0021864534, 0.0042606937, 0.0055120387, -0.007732496, -0.014227249, 0.005325017, 0.0032167728, 0.028998561, -0.010391604, 5.0878397E-4, -0.019899106, -0.006049301, -0.031446844, -0.017627643, -0.003235475, -0.010418807, 0.015941048, -0.029787453, -0.012581458, 0.007800504, 0.018008487, -4.322751E-4, 9.869643E-4, -0.015165757, 0.006872196, 0.017627643, -0.0094802985, 0.004967976, -0.006368938, 0.023598734, -6.358737E-4, 5.755167E-4, -0.011160093, 0.008943036, 0.02485008, -0.022796242, 0.0040668715, 0.008412575, -0.01700197, -0.0072836443, 0.025271729, 0.02381636, 0.006185317, -0.008664204, -0.02027995, -0.0044919206, -0.0077188946, 0.023979578, 0.01829412, 0.0047197468, 0.0362618, 0.014621695, 0.047061455, 0.024101993, -0.023326702, -0.032235734, 0.015260968, 0.008677806, -0.02320429, 0.0015582306, 0.006283928, 0.0055732457, 0.0066817743, 0.006379139, -0.035880957, -0.0074672652, -0.022374593, -0.015764227, -0.015927445, 0.011894578, 0.053971056, 0.031474046, -6.656271E-4, 0.01000396, -0.0017563035, 0.0011229801, -0.009867944, -0.0045089223, 0.018933395, 0.0051788003, 0.024741268, 0.017845267, -0.038710088, 0.007351652, 0.016988369, 0.017872471, 0.018770175, 0.022891453, -0.018022088, -0.014948132, -0.01320713, 0.010731644, -0.018334925, 0.0012130906, 0.04616375, -0.03762196, -0.00474695, 0.0069266027, 0.01940945, -0.007759699, 0.012533853, 0.024523642, -0.0029107374, 0.0017835067, 0.0035398102, -0.0276248, 0.006572962, -0.035092067, 0.03234455, 0.0057330644, -0.007956922, 0.029188983, 0.026264643, -0.0034309977, 0.0148665225, -0.018457338, -6.2227214E-4, -0.016308289, -0.0036214197, -0.0077460976, 0.03054914, -0.02812806, 0.021898538, -0.032208532, -0.0014358164, 0.0022051556, 0.003237175, 0.007501269, 0.029270591, -0.005297814, -0.05307335, 0.0060391, -0.014553687, -0.0025570963, 0.010996874, -0.002822327, -0.022156967, -0.00940549, -0.012608661, 0.0039648595, -0.020429568, -0.02528533, 0.009174263, -0.020157536, 1.8967823E-4, 0.01406403, 0.18389331, -0.021966545, 0.015614609, 0.039063726, -0.009772733, 0.011690555, 0.024673259, 0.020252747, -7.475554E-5, 0.016117867, 0.0026098024, 0.010065166, 0.007759699, 0.0042504924, 0.02709434, -0.023190688, -0.011948985, -0.028182466, -0.019123817, -0.0071544293, -0.01664833, 0.0058282753, -9.776133E-4, -0.017069979, -0.0042572934, -0.0047673522, -0.005916686, 0.015383382, 0.016240282, -0.0013176528, -0.030086687, -0.02149049, -0.004631337, -0.0070524174, -0.034983255, -0.01001076, 0.008943036, 0.015247367, 0.011806169, -0.0016415402, 0.009174263, -0.0049815774, -0.003235475, 0.0025740983, 0.009099455, 0.016553119, -0.010466413, -0.007997727, -0.013043911, 0.012323028, -0.04075032, 5.34712E-4, 0.009038247, 0.026903918, -0.0070456164, -0.012309426, 0.009840741, -0.0043253014, -0.005841877, 0.0010753747, 9.026984E-5, 0.02693112, -0.023775555, 0.023190688, -3.7170557E-4, 0.016852353, -0.041267183, 0.0019467256, -0.0044511156, -0.036452223, -0.014485679, -0.023775555, -0.023612337, 0.008330965, -0.014077632, -0.0049407724, 0.01821251, -0.0011612346, 1.570557E-4, 0.015206562, -0.029977875, -0.027992044, 0.013275138, -0.005814674, -0.019994317, -0.020347958, 0.011914981, -0.009833939, -0.0048183585, -0.0135539705, -0.013139123, -0.031202016, -0.011615746, 0.0056480546, -0.012601861, 0.002234059, 0.0457285, 0.02908017, -0.0033867925, -0.0015905343, -0.033813518, 0.012785481, 0.026115026, -0.0049475734, -0.033731908, -0.022333788, -0.0080181295, 0.022252178, 0.021993749, -0.013710389, -0.027992044, -0.028400091, -0.0018243114, -0.010480015, 0.0012776981, 0.02631905, 0.0016432405, -0.010112772, 0.034466393, -0.008228954, 0.00880702, -0.03348708, 0.009799936, -1.5588681E-4, -0.007800504, -0.022510609, -0.037213914, 0.019273434, -0.0019433252, -0.0500266, 0.0149345305, -0.020851217, 0.019491058, -0.02485008, -0.014444874, -0.005787471, 0.0045089223, -4.973076E-4, 0.0076168827, 0.0016797946, 0.0026030017, -0.026019815, 0.0032116722, 0.010153577, 9.6316164E-4, -0.014336062, 0.010962871, -0.0037778378, -0.0148121165, -0.028944153, -0.021463288, -0.0042674947, 0.018919792, 0.025081307, 0.03571774, -0.007202035, -0.027366372, -0.046190955, -0.009793135, 0.039118133, -0.041185573, 0.025679776, 0.029705843, -0.018688565, -0.026359854, -0.006549159, -0.1743178, 0.035500113, 0.0051753996, -0.032154128, 0.02596541, 0.026074221, 0.026455065, 0.0061343107, 0.0121870125, -0.01785887, 0.0353641, 0.0023802759, -0.02856331, -0.005131195, -0.0061921175, 0.010405206, -0.018457338, 0.028100856, 0.02649587, -3.600167E-4, 0.039254148, -0.015696218, -0.0028665322, 0.003941057, 0.005886082, -0.02208896, 0.0119965905, 0.011078483, -6.184467E-4, 0.00880702, -0.028481701, -0.0076100817, 0.018566152, 0.011364117, -0.023911571, -0.0020045324, -0.00940549, -0.014744109, -0.02820967, -0.0072496403, 0.026699895, 0.004944173, 0.021721717, 0.0044579166, 0.014295257, 0.009119857, 0.020824013, -0.020157536, 0.0027679207, -0.024401227, -0.027910434, -0.04064151, 0.02037516, 0.0024295815, -2.4121546E-4, 0.0093714865, 0.002218757, -0.006481151, -0.0063621374, 0.00500198, -0.035690535, -0.0035398102, 0.0060969065, 0.0059030843, -0.0070524174, -0.03288861, -0.019627074, 0.0012972504, -0.022986664, 0.013968819, -0.010037963, 0.0021711516, 0.014186444, -0.01666193, 0.018824581, -0.017042775, -0.02097363, 0.007875313, -0.0074196598, 0.021177655, -0.021123247, 0.046136547, 0.008725411, -0.0021949543, 0.01828052, -0.020483974, 0.0055766464, 0.003917254, 0.016553119, -0.005059786, -0.009024646, -0.040369477, -0.015002538, -0.0057262634, 0.011574942, -0.0029362403, -0.016797947, 0.006637569, 0.0020657394, -0.029433811, -0.0039920625, -0.019953512, -0.014975335, 0.020116732, 0.030521937, 0.009657119, 9.300078E-4, 0.021898538, 0.014798515, -0.00664097, -0.018185308, 0.007358453, 0.021082444, 0.012955502, -0.0025655974, 0.016770743, -0.012282223, -0.023367507, -0.0074332613, 0.022537813, 0.067463815, -0.005882682, -0.0058894823, -0.030413125, 0.022469804, -0.005756867, -0.096135944, 0.010928866, 0.016852353, 0.035989773, -0.04540206, 0.034901645, -0.0120645985, 0.0042844964, -0.022728235, 0.019368645, -0.0060118968, -0.017151589, 0.019355044, -0.016933963, 6.656271E-4, 0.011370918, -0.01596825, -0.032507766, -0.007093222, 0.029297795, -0.0053692223, -0.01044601, -0.012622262, -0.034303177, -0.017137986, -0.00241598, -0.034711223, 0.015723422, 0.010949269, 0.0031657668, 0.009201466, -0.024836479, 0.008671005, -0.03841085, -0.016090665, -0.020687997, -0.006022098, -0.022224976, 0.012751478, -0.032480564, 0.0069844094, 0.019083012, 0.013363549, -0.025938205, 8.143944E-4, -0.010126374, -0.026441464, 0.035608925, -0.02486368, -0.007134027, 0.0035432107, -0.014553687, -0.03098439, -0.013798799, 0.022510609, 0.013309143, 0.01656672, 0.007637285, -0.016498713, -0.020293552, -0.009901947, 0.0019620273, -0.029352201, 0.0064845514, 0.019640677, 0.022823445, 0.004937372, -0.0232859, 0.008460181, 0.0015208262, -0.02829128, 0.029488217, -0.029188983, -0.009697923, -0.015396984, -0.0058044726, -0.031011594, -0.014485679, 0.019790294, -0.015505797, 0.010901663, -0.02510851, 0.021898538, -0.009983557, 0.011921782, 0.021857733, 0.007038816, 0.021245662, -0.0050189816, -0.032725394, -0.003347688, 0.032589376, -0.0015029742, -5.963441E-4, -0.0031368635, 0.014200046, 0.009589111, 0.009051849, -0.011268906, -5.202603E-4, -0.020864818, 0.002104844, -0.08155505, 0.03963499, -0.017450823, -8.063184E-4, -0.005818074, -0.004236891, -0.015328976, -0.0033119838, -0.011622547, 0.021204857, -1.02224345E-4, 0.019708684, -0.008684606, 0.0029957471, -0.034384783, 0.005127794, 0.012044196, -0.010636433, 0.0024601852, 0.009072252, -0.00931708, 0.01863416, 0.016335493, 0.002829128, 0.0018838183, 0.0276248, 0.004502122, 0.0063927406, -0.004869364, -0.0039036523, 0.016090665, -0.016077064, -0.0019297237, 0.004471518, -0.014975335, -0.019599872, -0.0063893404, 2.8435796E-4, 0.016009055, 0.010309995, -0.012710673, -0.016294688, -0.01113289, 0.0017257, -0.002373475, 0.013234334, -0.003917254, 0.020647192, 0.0036690251, -0.0039240546, 0.009011044, 0.0038764493, -0.0045429263, -0.019110214, 0.01855255, -0.011153293, 0.056963403, 0.0035874157, 0.011357316, -0.008915833, 0.033351064, 0.012656267, 0.019151019, -0.021368077, 0.007100023, 0.019314239, 0.022537813, -0.0046177353, -0.004529325, -0.032807004, -0.02061999, 4.9348216E-4, 0.0055120387, 0.027407177, 0.02276904, 0.02829128, 0.015206562, 0.0062363227, -0.0026540076, -0.0036384217, 0.0138124, -0.002699913, -0.035772145, 0.02727116, -0.010235186, 0.013295541, -0.0037166306, 0.022129765, 0.009500701, 0.010051565, -0.008528188, 0.01716519, 0.025938205, -0.0046925438, 0.009174263, 0.004264094, -0.026455065, 0.005909885, 0.0119693875, 0.02562537, 0.005566445, 0.005127794, -0.017913276, -0.02494529, -0.01346556, 0.012377434, -0.015519398, -0.022850648, 0.010024361, 0.023190688, 0.035173677, 0.014172843, -0.005488236, 0.016349094, -0.033759113, 0.017573237, -0.009908748, -0.032562174, -0.0146625, 0.0465718, 0.01190138, 0.009616314, 0.024918087, -0.021368077, 0.052175645, 0.016811548, 0.02665909, -0.020089528, -0.0034888042, 0.0029345402, -0.005651455, -0.0029957471, -0.007902516, 6.350236E-4, -0.025176518, 0.0036180192, 0.0062295217, 0.02010313, -0.025951808, 0.064090624, 0.030249905, 0.00241768, 0.016362697, -0.00992235, 0.0121190045, 0.016281087, 0.01700197, -0.010384804, -0.012207415, 0.016716337, -0.02165371, 0.010037963, -0.03424877, -0.009072252, -0.008718611, 0.017396417, 0.009867944, -7.8804133E-4, -0.028889747, -0.0036384217, -0.009609514, 0.018878987, -0.0020674395, 0.0046857432, -0.0011399821, 0.014336062, -0.024496438, -0.0038560468, -0.017750056, -0.0057942714, -0.017478025, -0.015342578, 0.0015403786, 0.02485008, 0.005107392, -0.0027305165, 0.0023139683, 0.0397166, 0.006253325, 0.0043525044, -0.020334357, -0.017233197, -0.026767902, 0.020402364, 0.00880702, -0.00578067, -0.027148746, -0.010758847 ], + "id" : "12db3251-fbb2-4b40-a9cb-24e106a5e343", + "metadata" : { + "source" : "movies.csv" + } + }, + "3a14d89e-8bee-4d90-9b1a-cb78e654f01a" : { + "text" : ",/psYeKwKclG4XaIop5suj1J0Kg2C.jpg,899082-1891-10366-11-11285-1894-1893-1895-15969-10925-283564-359983-615774-950445-125521-16234-34204-13155-16690-628866-8965\r\n216015,Fifty Shades of Grey,Drama-Romance-Thriller,en,When college senior Anastasia Steele steps in for her sick roommate to interview prominent businessman Christian Grey for their campus paper little does she realize the path her life will take. Christian as enigmatic as he is rich and powerful finds himself strangely drawn to Ana and she to him. Though sexually inexperienced Ana plunges headlong into an affair -- and learns that Christian's true sexual proclivities push the boundaries of pain and pleasure.,168.905,Focus Features-Michael De Luca Productions-Trigger Street Productions,2/11/15,40000000,571006128,125,Released,Are you curious?,5.9,10758,Dakota Johnson-Jamie Dornan-Jennifer Ehle-Eloise Mumford-Victor Rasuk-Luke Grimes-Marcia Gay Harden-Rita Ora-Max Martini-Callum Keith Rennie-Andrew Airlie-Dylan Neal-Elliat Albrecht-Rachel Skarsten-Emily Fonda-Anthony Konechny-Anna Louise Sargeant-Raj Lal-Matthew Hoglie,based on novel or book-eroticism-bad smell-perversion-romance-spanking-billionaire-rich-bdsm-woman director,/63kGofUkt1Mx0SIL4XI4Z5AoSgt.jpg,/mgY8An5qVCgLh97KOWeJVJarskL.jpg,341174-337167-982549-207780-222935-812340-8966-50620-24021-667854-18239-50619-157350-262500-150689-286565-102651-296096-131631-198663-597\r\n575264,Mission: Impossible - Dead Reckoning Part One,Action,en,Ethan Hunt and his IMF team embark on their most dangerous mission yet: To track down a terrifying new weapon that threatens all of humanity before it falls into the wrong hands. With control of the future and the world's fate at stake and dark forces from Ethan's past closing in a deadly race around the globe begins. Confronted by a mysterious all-powerful enemy Ethan must consider that nothing can matter more than his mission���not even the lives of those he cares about most.,455.243,Paramount-Skydance-TC Productions,7/8/23,291000000,567500000,164,Released,We all share the same fate.,7.", + "embedding" : [ 0.008461315, -0.036368567, -0.032144766, -0.045885835, -0.012486268, 0.021201285, -0.006579118, -0.009126427, -0.02401258, -0.04130548, 0.033187006, 0.04168946, -0.0017450604, -0.0049437666, 0.021626407, 0.020447034, 0.023573745, -0.025987344, -8.403889E-4, -0.022435512, -0.0038741028, 0.012787968, -0.028688932, 0.013768493, 0.0014956436, 0.005139186, 0.012266849, -0.016223233, -0.004443219, -0.008036192, 0.0035518324, -0.023765735, -0.014646166, -0.028826067, -0.02205153, -0.0019439082, 0.0041140914, -0.008660163, 0.014989006, -0.016977483, 0.0065345485, 0.009098999, -0.0100795245, -0.0072270874, -0.01692263, 0.021434417, 0.01230799, -0.017608311, -0.0014853585, 0.024081148, 0.022188667, 0.044459615, -0.023436608, -0.039029013, -0.018458556, -4.915482E-4, -0.011032622, 0.004998621, -0.0018719116, 2.353014E-5, 0.0107926335, -0.024698263, -0.030032868, -0.02800325, -0.023162335, -0.0059551476, -0.010758349, -0.005091188, -0.0015882107, -0.014755875, 0.023176048, 0.007851058, 0.014138761, 0.008845297, 0.023642313, -0.02461598, -0.022833208, -0.0060991407, -0.004319796, 0.020735022, 0.011690876, -0.004343795, -0.018129429, 0.027015867, 0.0030649982, 0.008337892, -0.0100795245, 0.010525217, -0.022243522, 0.0064488384, 0.016977483, 0.010394937, 0.0010662354, 0.01756717, -0.006870533, -0.0024324565, -0.013288516, 0.019308802, -0.008701303, -0.03159622, 0.0027272997, 1.13458926E-4, -3.2355616E-4, -0.0062157065, -0.013281658, -0.010333226, 0.0092361355, -0.0137547795, 0.012945674, 0.003030714, -0.0011476601, -0.02129728, 0.018293994, -0.0418266, -0.001272797, -0.02250408, 0.024177143, -0.0059722895, -0.006462552, -0.022229807, 0.01666207, 0.029374612, 0.018006006, -0.02951175, 0.019994484, 0.020282472, -0.0029415754, -0.009524122, 0.006476266, -0.012493124, 0.041031204, -0.014618739, 0.015935248, 0.026810164, -0.019802494, 0.05408659, -0.02450627, 0.01409762, -0.027646694, -0.020076767, 0.033653267, 0.040345524, -0.03143166, -0.026563317, -0.03143166, -0.0017844872, 0.022737212, -0.0068362486, 0.026974726, 7.349653E-4, 0.03211734, 0.012445127, 0.026947299, 0.029758595, 0.026398754, 0.013411938, 0.014344466, -0.006184851, 0.01172516, 4.118377E-4, -0.022243522, -0.0019079099, -0.009016717, -0.014262184, 0.013939913, 0.023025198, 0.008118474, -0.03140423, 0.007665924, -0.017608311, -0.022641217, 0.038178768, -0.0068293917, 0.012225709, 0.020515602, 0.019116811, 0.0059140064, -0.0036306856, -0.034777787, -0.008955006, -0.0012187996, 0.012232565, 0.044541895, 0.03203506, 0.0058968645, 0.012259993, 0.018266566, -0.025973631, 0.011910295, -0.018554553, -0.019130526, 0.011066906, 8.853868E-4, -4.6712082E-4, -0.63762933, -0.009064714, 0.0072613712, -0.0010559502, 0.01515357, 0.019240234, 0.013651927, 0.013014243, -0.020940725, -0.008989289, -0.025191953, 0.024945108, 0.013507933, -0.009558406, -0.015811825, -0.013130808, -7.413936E-5, 2.4963106E-4, -0.011238326, 0.009304703, -0.03162365, 0.009969815, 0.0011082334, -0.0015924963, 0.008886438, 0.002528452, -0.014893011, -0.018527126, 0.0051117586, -0.010490933, -0.003582688, 0.03162365, 0.012527408, 0.0037369665, 0.034366377, 0.004964337, 0.0018787684, 0.04352709, 0.043746505, 0.03433895, -0.029292332, 0.0033941255, 0.018197998, 0.005248895, -0.02024133, 0.017745448, 0.0055094543, -0.009496694, 0.0090852855, 0.0037541084, 0.0066922554, 0.01465988, 0.007467076, -0.0067265397, 0.004539214, 0.0077893464, 0.019802494, -0.020735022, 0.013535361, -0.006352843, -0.023093767, 0.007569928, 0.009510408, 0.0021890395, -0.010826917, 0.04201859, 6.513978E-4, -0.014769589, 6.0382864E-4, -0.030444277, 0.008043049, 0.0061334246, -0.009071572, -0.008468172, 0.011663449, -0.0032792736, 0.037822213, 0.018499698, -0.01157431, 0.008351605, -0.003088997, -0.0062157065, 7.1439485E-4, 0.016867775, 0.014413034, 0.0020999007, -0.025301663, 0.0074533625, 0.020927012, 0.0051871836, 0.010223517, 0.017128333, 0.010298942, 0.008783585, -0.0106075, 0.0016559218, -0.012712543, -0.0032089914, 0.042347714, -0.04753147, 0.0032792736, -0.013603929, 0.009702399, -0.010463506, 0.020364752, 0.01168402, -0.006719683, 0.009181281, 0.039056443, -0.011128617, -0.016483793, 0.0038295335, -0.023176048, -6.539691E-4, -0.00795391, -0.029155195, 0.018266566, 0.009174424, 0.0051426142, -0.007268228, 7.5896416E-4, 0.02382059, 0.0015787826, -0.017306611, 0.012397129, 0.028688932, -0.015235852, -0.0015496411, -0.0059002927, 0.00538946, 0.018527126, -0.02065274, 0.01349422, -0.016593503, -0.010511504, 0.0036889687, 0.011999434, -0.0046180678, 0.0038021063, -0.00538946, -0.036670268, -0.017745448, -0.005290036, 0.008193899, -0.011690876, -0.0040866644, -0.025425086, -0.0067505385, 0.004237514, -0.017320326, -0.021914395, 0.01232856, -0.0032364186, 0.013658783, 0.0011682305, -0.0066648284, -0.027495844, -0.026014771, 0.00532432, -0.020419607, -0.009716113, 0.026097054, -0.015071289, -0.006260276, 0.014989006, -0.010017813, -0.017169476, 0.02668674, 0.0037986778, -0.018280279, 0.027153004, -0.009784681, -0.013809633, 0.027070722, -0.020666452, 0.022888063, -0.024807971, 0.015085002, 0.0133227995, -0.0034506943, 0.0050397622, -0.0037438232, -0.020981867, -0.015085002, 0.028222667, 0.018006006, 0.005636305, -0.011718304, -0.009016717, 6.9586E-5, -0.01470102, -0.021036722, -0.009332131, -0.0067608235, 0.004539214, 0.034393806, 0.007083094, 0.010730922, -0.014344466, -0.011313751, 0.040756933, 0.0085230265, 0.005866009, -0.0028592935, -7.041096E-4, -0.024492558, 0.02114643, -0.011615451, -0.006537977, -0.010010956, 0.028771212, -0.017937439, -0.016716925, -0.011128617, 0.0049540517, 0.02713929, -0.01092977, 0.024245713, -0.025658216, -5.202612E-4, -0.006719683, -0.01232856, 0.021804685, 0.0060374294, -0.015880393, -0.007542501, 0.026138194, -0.011121761, -8.352463E-4, -0.018170571, 0.0051083304, -1.2277992E-4, -1.5427843E-4, 0.0027050152, 0.0028575794, -0.007275085, 0.02366974, -3.554832E-4, 0.035765167, -0.023998868, -0.014022195, 0.0102852285, 0.034092106, 0.0012693687, -0.0057562995, -0.015235852, 0.009428127, 0.018993389, -0.010120665, 0.04240257, -0.027180431, 0.03403725, 0.0074122213, 0.0086738765, 0.0038158197, -0.016442653, 0.0061162827, 0.009949245, 0.025959916, 0.0096475445, 0.0025473083, -0.023642313, 0.01560612, -9.248135E-4, 0.022092672, -0.0013945056, -0.03310472, 0.013768493, -0.007851058, -0.018924821, -0.013315943, -0.017128333, 0.007665924, 0.0155924065, -0.019322516, -0.008639592, 0.011999434, -0.0025250237, 0.008769872, 0.023998868, -0.003832962, -0.032885306, 0.01200629, 0.02125614, -0.012691972, -0.027715262, 4.98405E-4, -0.0146735925, -0.04179917, -0.008049905, -0.014193616, 0.017978579, -0.028016962, -0.0045906403, -0.021914395, 0.014947866, 0.0024221714, -0.026851304, 0.025164526, 0.026193049, -0.0012153712, -0.0026347328, -0.008420174, -5.206897E-4, 0.019473366, -0.0041655176, 0.006236277, 0.0056054494, 0.007851058, -0.003908387, 0.013672497, 0.0068773897, -0.05759728, 0.022723498, -0.010401795, -0.003030714, -0.0017227757, 0.009325274, 0.02280578, -0.02024133, -5.266894E-4, -0.027084436, -0.02114643, -0.0042477995, 0.07975852, 0.052468378, 0.008879581, 0.013823347, -0.0104360785, 0.005464885, -0.006572261, -0.01564726, -0.0139262, 0.006627116, 0.017635738, -0.00614371, 0.033982396, 0.015057575, 0.010353797, -0.008001908, 0.014975293, 1.8963391E-4, -0.01424847, -0.010470362, -0.0069905273, -0.003959813, 0.00735051, 0.018458556, 0.010676067, -0.03129452, 0.021160144, 0.0072202305, -0.01722433, 0.024519986, -0.0065276916, 0.00823504, 0.0070350966, -0.004000954, -0.00538946, 0.010662354, 8.433887E-4, 0.010957197, 0.032281905, -0.0017587742, 0.0039529563, -0.008625878, 0.0041963733, -0.0014133619, 0.005307178, -0.026083339, -0.018568266, 0.02382059, 0.02739985, -0.028579222, 0.03280302, -0.0010842346, -0.024999963, 0.0013953627, 0.012342274, 0.0019559076, 0.0029055772, -0.0053448905, -0.039632414, 0.0026638743, 0.008159615, -0.044651605, 0.01715576, -0.0040455232, 0.0015016433, -0.014371892, -0.028016962, -0.0061814226, -0.0042512277, 0.009537836, -0.0015564979, -0.023340613, -0.004446647, -0.0019713354, 0.01594896, -0.0012976531, 0.01435818, -0.009044144, 0.006321987, 0.011210899, -0.038699888, -0.015016434, 0.011142331, -0.024890253, -0.010511504, -2.4555984E-4, -3.3469847E-4, -0.003214134, -0.009064714, 0.02280578, 0.0129113905, -0.002435885, -0.030691123, -0.017772876, 0.027358709, -0.01077892, 0.012513695, 0.008111617, 7.6582097E-4, 2.0259758E-4, 0.009386986, -0.005543738, -0.007240801, -0.028016962, -0.015016434, -0.01289082, -0.0025747356, 0.008982433, -0.026892444, -0.010957197, -0.012691972, -0.02080359, 0.0016944915, 0.0025473083, 0.009126427, -0.0017013482, 0.016730638, 0.011368606, 0.004309511, 0.0037301097, -0.0012856536, -0.015619834, 0.016236948, 0.039659843, -0.0029604316, 0.012390272, -0.03359841, -0.021475557, -0.011793729, 0.036971968, 0.0077139214, 0.011882868, -0.012794824, -0.01455017, -0.03483264, -0.016689498, 8.425317E-4, -0.008824727, -0.0010516646, -8.0396206E-4, -0.00689796, 0.009585833, -0.010881772, -0.007281942, 0.010381225, -0.034503512, 0.010189233, -0.015359275, 0.01049779, 0.036560558, -0.0041072345, 0.004018096, -0.02291549, -0.010621212, -0.015345561, -0.04580355, -0.034174386, -0.01707348, 0.02811296, 0.012205138, 0.04429505, -0.011759445, 0.028826067, 0.014975293, -0.01017552, 0.026714167, 0.008543597, 0.0036546846, -0.032583605, 0.024040008, 0.02901806, 0.01183487, 0.022174953, 0.0073779374, -0.0056054494, 0.030526558, 0.0038192482, 0.0065928316, 2.3848873E-4, -0.03091054, -0.015619834, 0.005046619, -0.02713929, 0.0077482057, -0.03431152, -0.024094863, 0.020885872, -0.0012393701, -0.0034455515, -0.019253949, 0.037273668, -0.003274131, 0.009640688, -0.029347185, 0.014975293, -0.015633548, -5.93972E-4, -0.015921533, 0.0075219306, 0.0017450604, -0.005074046, 0.009037288, 0.01594896, -0.014989006, -0.0014716448, 0.029072912, -0.013405082, -0.013871345, 0.03192535, -0.012979958, -8.8367256E-4, -0.023093767, -0.017388893, -0.021352135, -0.0059620044, -7.344296E-5, -0.014687306, 0.0069905273, -0.033653267, -0.03554575, 0.02155784, -0.0020981866, 0.04821715, 3.741252E-4, 0.045446996, 0.03340642, 0.0041895164, -0.029264905, 0.008495599, -0.023642313, 0.016456366, 0.036395997, 0.01655236, -0.01439932, -0.009359558, -0.0139604835, -0.003791821, -0.033488706, -0.02261379, 0.029923158, 0.021969248, 0.024190858, -0.019144239, -0.0043060826, -0.025013676, 0.021475557, -0.013151379, 0.0034146958, 0.02054303, -0.04369165, -0.015811825, 0.0073642237, -0.006270561, 0.012815395, -4.654066E-4, -0.02325833, 0.0050363336, -0.020447034, 0.02140699, -0.019116811, -0.0103606535, 0.02774269, -0.018444844, 0.0036512562, 0.008159615, 0.025411371, -0.008413317, -0.018595694, -0.008475028, 0.03170593, -0.009345844, 0.015057575, 0.010538931, -0.021845825, 0.008550453, 0.007206517, -0.027303854, -0.019802494, -0.012575407, -0.017183188, 0.028688932, 0.021077862, -0.0033392708, -0.009414413, -0.0074876463, -0.014989006, -0.003592973, -0.0019679072, 0.01004524, -0.026645599, 0.0047826315, -0.019322516, 0.0117114475, 0.0059722895, 0.00311471, 0.014303325, 0.0015436414, 0.015249566, -0.0020776163, -0.019061957, -0.018197998, -0.009544692, -0.04371908, 0.008111617, -0.016483793, -0.011018909, -9.762396E-4, -0.012068002, -0.012856536, -0.014275897, -0.01692263, -0.007892199, -3.2269905E-4, -0.019967057, -6.2054215E-4, 0.028688932, -0.015770683, -0.0019130525, -0.00390153, 0.025150813, -0.0013216519, -0.0056054494, 0.017169476, 0.0025061674, 0.030060295, -0.01455017, 0.023176048, 0.006243134, -0.018348848, -0.011142331, 0.014179902, 0.025041103, -0.0049677654, -8.425317E-4, 5.2197534E-4, -0.010463506, -0.008989289, 0.029758595, 3.5848308E-4, -0.004388364, 0.024259426, 0.014426747, 0.024245713, 0.02366974, -0.004436362, -0.018691689, -0.015962675, -0.013261088, -0.019130526, 0.0021633264, 0.004384936, 0.027811259, 0.011519456, -0.014865584, -0.028661504, -6.171137E-4, -0.02155784, -0.030197432, -0.0076727807, 0.023025198, 0.050274197, 0.022216095, -0.0052866074, 0.0069870986, -0.013055383, 0.0030564272, -0.011066906, 0.004621496, 0.025191953, 0.010710351, 0.014029052, 0.033378996, -0.028140387, -0.006184851, 0.018883679, 0.010868059, 0.0093664145, 0.0209133, -0.0020227616, -0.008742444, -0.0017964866, -0.009345844, 0.0054306006, -0.015263279, 0.026769022, -0.038123913, 7.5039314E-4, 0.012575407, 0.033872686, 0.007816774, 0.0053346055, 0.0067573953, -0.021845825, -0.012623404, -0.026508464, -0.025548508, -0.017018626, -0.010840631, 0.020063052, 0.0078853415, 0.0060374294, 0.032144766, 0.029182622, -0.008996147, 0.012575407, 9.4966945E-4, -0.013199377, -0.00199362, 0.0037061106, 5.8240106E-4, 0.043554515, -0.030170005, 0.019500794, -0.015770683, 0.018815111, -0.011258897, 0.003832962, 0.0077687763, 0.026494749, 0.015729543, -0.053346053, 0.00629456, -0.0026724453, -1.48493E-4, -0.0066682566, -0.0012316562, -0.02174983, -0.018801399, -0.013391368, -0.0032569892, -0.014385606, -0.01903453, -4.064808E-4, -0.0028352947, -0.01450903, 0.027276427, 0.1952822, -0.0027770118, 0.013219947, 0.057871554, 0.001950765, 0.01455017, 0.012986816, -0.0012933675, -0.01217771, 0.028743785, -0.00202619, 0.01631923, -0.00900986, -0.0029930016, 0.0138302045, 0.0040386664, -0.02190068, -0.016442653, -5.2368955E-4, -0.04108606, -0.021571552, 0.015276993, -0.005759728, -0.02830495, 0.007830488, -0.0019679072, -0.0037266812, -8.553882E-4, 0.025918776, -0.0017193474, -0.0125548355, -0.029621458, -0.005386031, 1.1463744E-4, -0.019665357, -0.010470362, -0.013206233, 0.008619022, 0.0063665565, 0.009832678, 0.004693493, 0.004319796, 0.002261036, 0.002427314, -6.02543E-4, 0.01017552, -0.020680167, -0.011821156, -0.026261616, 0.008159615, -0.057871554, -9.770967E-5, 0.007172233, 0.025411371, -0.007425935, -8.922436E-4, 0.002069045, 0.014577597, -0.00689796, -0.007857915, 0.00795391, 0.025466226, -0.026467321, 0.008029335, -0.0010945197, 0.021845825, -0.034914922, -0.028085532, 0.024547413, -0.024931394, -0.013418795, -0.01655236, -0.016003815, 0.010868059, -0.0074053644, -0.011629165, 0.030883113, 0.0051254723, 0.011910295, 0.012595977, -0.03102025, -0.036505707, 0.0092155645, -0.0020124763, -0.01420733, -0.03543604, 0.019445939, -0.021310994, -0.018856253, 0.0016610645, -0.003976955, -0.01485187, -0.008982433, -0.00702824, -0.003097568, 0.010813204, 0.025082244, 0.011457745, -0.004477503, -0.0029090056, -0.02638504, 0.034256667, 0.027811259, -0.0022798923, -0.01662093, -0.008022479, -0.016428938, 0.005770013, 0.015427843, -0.022984058, -0.0061882795, -0.025946204, 0.003162708, -0.00450493, -0.014824443, 0.020008199, -0.0053688893, -0.01771802, 0.032089915, -0.02216124, -0.0033289858, -0.024711976, 0.0025627362, 0.00987382, -9.282419E-4, -0.02951175, 0.004018096, 0.002194182, 0.006411126, -0.030883113, 0.012342274, -0.021763545, 0.012355988, 0.0019250519, 0.0033615555, 0.023313185, 0.03189792, -0.008420174, -1.4195758E-5, 0.0012522266, -8.6824474E-4, -0.032089915, 0.020899585, 0.011807443, 0.01575697, -0.02910034, 0.004343795, 0.006644258, -0.012623404, -0.03200763, -0.0054306006, -0.015537553, 0.016799206, 0.015208425, 0.047092635, 0.009037288, -0.02159898, -0.04130548, -0.018211711, 0.04089407, -0.032748166, 0.02901806, -0.0031592795, -0.0045700697, -0.026865017, -0.011951435, -0.17674138, 0.02901806, 0.004995193, -0.01978878, 0.020639025, 0.008564167, 0.022558935, 0.010730922, -0.008756158, -0.02420457, 0.014125047, -0.011759445, -0.029648885, -0.0049026255, -0.004662637, 0.01651122, -0.006472837, 0.034174386, 0.028853495, 0.0014039337, 0.031678505, 0.0029998585, -0.01140289, 0.01515357, 0.019308802, 0.005440886, 0.009661258, 0.008036192, 0.0011999434, -0.0017536315, -0.027454704, -0.0039221006, 0.014989006, 0.0103058, -0.014906725, 0.009270419, -0.020488175, -0.013672497, -0.01767688, -0.012383415, 0.033077296, 0.017622026, 0.013123952, 0.006102569, 0.0072339443, 0.01666207, 0.023628598, -0.010621212, 0.01168402, -0.017937439, -0.01726547, -0.03200763, 0.015098716, -0.0034455515, 0.005372318, 0.04262199, 0.0031798498, 0.00704881, 0.009921817, -0.008317322, -0.035682887, -0.010538931, 0.017128333, -0.0010902343, -0.0034026965, -0.018417416, 0.008310465, 0.027728977, -0.03233676, 0.016305516, -0.027372422, 0.009393842, 0.0036066868, 0.005684303, 0.006102569, -0.020831017, -0.022284662, 0.011999434, 0.0068842466, 0.023834303, -0.0124039855, 0.029648885, -0.009729826, 0.014947866, 0.020707594, -0.021420702, 0.017978579, -0.010292086, 0.0077824895, -0.010141236, 0.010340083, -0.016607216, -0.01564726, 0.002778726, -0.005845438, 0.008310465, -0.0077756327, -0.0013867917, -0.0029947157, -0.011745731, -0.0032775595, -0.003013572, -0.023477748, 0.014234756, 0.023957726, 0.016566075, 0.005046619, 0.020213902, 0.025137099, -9.856677E-4, -0.014920439, 0.002929576, 0.005317463, 0.0053963168, -0.01379592, 0.026234189, -0.009112713, -0.021873252, -0.008660163, 0.005365461, 0.045255005, -0.0039392426, 0.009414413, 9.008146E-4, -0.013679354, -0.009674972, -0.08008765, -0.00532432, -0.0010525218, 0.030142577, -0.026577031, 0.028880922, -0.013110238, 0.018540839, -0.011773159, 0.032748166, 0.0029398613, -0.022243522, 0.013261088, -0.012095429, 0.022120098, -0.0040078107, -0.012541122, -0.024972536, -0.003716396, 0.025493653, -0.013878202, -0.0013550789, -0.009489838, -0.013336513, -0.012506838, 0.018691689, -0.03354356, 0.015167284, 0.0072339443, 0.0097983945, 0.015372989, -0.018924821, 0.015633548, -0.042731695, -0.030361995, -0.03121224, -0.013219947, -0.035079487, 0.0014185044, -0.050575897, 0.012424557, 0.015085002, 0.0043815076, -0.007734492, -0.012561693, 0.005464885, -0.02299777, 0.022270948, -0.018691689, -0.020035626, -0.004000954, -0.022435512, -0.027989537, -0.0023604599, 0.010106951, 0.023697168, 0.037931923, -0.0010336655, -0.0055883075, -0.020885872, -0.0038946732, -0.018677976, -0.031075105, 0.03211734, -0.009188138, 0.004059237, -0.0023673167, -0.0035758312, 0.012897677, -0.010271515, -0.03433895, 0.024753118, -0.034064677, -0.015660975, -0.03392754, -1.6777779E-4, -0.025164526, -0.004532357, 0.017238043, -0.03151394, 0.0010328083, -0.033378996, 9.085285E-4, -0.014179902, -0.00812533, 0.01741632, 0.008303608, 0.01640151, -0.008022479, -0.02910034, -0.0066099735, 0.025411371, 0.008680733, -0.012691972, -0.013823347, 0.015839253, 0.01586668, 0.02254522, -0.022517795, 0.0014382178, -0.02231209, 0.0025575936, -0.0716949, 0.03241904, -0.019665357, -0.0077002076, -0.001866769, -0.0013636498, 0.0049334816, -0.0033461277, -0.0022318945, 0.018458556, -0.007343653, 0.012541122, -0.012383415, -0.00562602, -0.0076042125, 0.0051151873, 0.0041998015, -0.0024513127, -0.009037288, 0.009866963, -0.031486515, -0.0018804827, 0.018883679, 0.0042752265, -0.004744919, 0.019116811, 0.010511504, 0.022819495, -0.013370797, -0.008228183, 0.025109671, -0.010237231, 0.008228183, -0.0054991688, -0.0071585192, -0.023614885, -0.011588024, 0.008420174, 0.018252853, 0.011457745, -0.01183487, -0.016264375, -7.246801E-4, -0.007830488, -0.0025953061, 0.016264375, -0.026398754, 0.006647686, 0.01579811, 0.01439932, 0.034695506, 0.023285758, -0.015578693, -0.010422365, 0.012033718, -0.019871062, 0.03532633, 0.014193616, 0.013267945, -0.01485187, 0.027674122, -0.0019421941, 0.012218852, -0.03071855, 0.0035861165, -0.0012419414, 0.002787297, 0.005283179, 0.014893011, -0.032995015, -0.011032622, 0.0036958256, 0.01715576, 0.03573774, 0.0063562714, 0.0124794105, -0.01062807, 0.018485984, 0.013254232, 0.014330752, 0.030581413, 8.7510154E-4, -0.016428938, 0.004539214, -0.001464788, 0.020940725, -0.0029072913, 0.013487363, -0.004751776, 0.011320609, -0.013789063, 0.010909199, 0.02506853, -0.009866963, 0.0045152153, 0.007988194, -0.013055383, -2.3610492E-5, -0.021228712, 0.024094863, -4.8597704E-4, -0.0074122213, -0.013706781, -0.026220476, -0.027715262, 0.006712826, -0.0103058, -0.026165621, -0.004971194, 0.018074576, 0.034393806, 0.010484076, -0.010580072, 0.016785493, -0.040318098, 0.023436608, 0.0019216236, -0.031047678, 4.302654E-4, 0.051234152, 0.0109229125, 0.012959388, 0.020707594, -0.0101549495, 0.056280773, 0.015372989, 0.03532633, -0.018842539, 0.008262467, 0.01677178, -0.0129113905, 0.002420457, -0.0055883075, 0.016072383, -0.0070556668, 0.001004524, 3.951242E-4, 0.024849113, -0.010737779, 0.073779374, 0.018472271, -0.011821156, 0.012547979, -0.022490367, -0.010264658, 0.008584738, 0.005235181, -0.020556744, -0.016977483, -0.0018050576, -0.008715017, 0.0025935918, -0.038809597, 0.0019559076, 0.0018050576, -0.011361749, 0.022243522, -0.021804685, -0.015976388, -0.012150284, -0.018828826, 0.01185544, 0.00281301, -0.0044843596, -0.015318134, 0.023464035, -0.008639592, -0.018636834, -0.013507933, 0.017649453, -0.01200629, -0.0027118719, -0.00269473, 0.03181564, -0.007988194, -0.0077962033, 0.0039563845, 0.015414129, 0.007878485, -0.017855156, -0.010614356, -0.013487363, -0.03121224, -0.0048751985, 0.002459884, 0.0042992258, -0.02114643, -0.029731167 ], + "id" : "3a14d89e-8bee-4d90-9b1a-cb78e654f01a", + "metadata" : { + "source" : "movies.csv" + } + }, + "1a74c5e6-ecdc-41dd-a1d8-264f5c792d33" : { + "text" : ",604-605-120-121-27205-122-155-550-11-680-280-98-105-1891-272-1726-857-49026-807-218-13\r\n114,Pretty Woman,Comedy-Romance,en,When a millionaire wheeler-dealer enters a business contract with a Hollywood hooker Vivian Ward he loses his heart in the bargain.,55.083,Touchstone Pictures-Silver Screen Partners IV,3/23/90,14000000,463406268,119,Released,\"She walked off the street, into his life and stole his heart.\",7.4,6914,Richard Gere-Julia Roberts-Ralph Bellamy-Jason Alexander-Laura San Giacomo-Alex Hyde-White-Amy Yasbeck-Elinor Donahue-Hector Elizondo-Judith Baldwin-Jason Randal-Bill Applebaum-Tracy Bjork-Gary Greene-Billy Gallo-Abdul Salaam El Razzac-Hank Azaria-Larry Hankin-Julie Paris-Rhonda Hansome-Harvey Keenan-Marty Nadler-Lynda Goodfriend-Reed Anthony-Frank Campanella-Jackie O'Brien-Cheri Caspari-Scott Marshall-Patrick Richwood-Kathleen Marshall-Laurelle Mehus-Don Feldstein-Marvin Braverman-Al Sapienza-Jeff Michalski-James Patrick Stuart-Lloyd T. Williams-R. Darrell Hunter-James Patrick Dunne-Valorie Armstrong-Steve Restivo-Rodney Kageyama-Douglas Stitzel-Larry Miller-Dey Young-Shane Ross-Carol Williard-Minda Burr-Robyn Peterson-Mariann Aalda-RC Everbeck-Michael French-Allan Kent-Stacy Keach Sr.-Lucinda Crosby-Nancy Locke-Calvin Remsberg-Lloyd Nelson-Norman Large-Tracy Reiner-Tom Nolan-John David Carson-Daniel Bardol-Karin Calabro-Bruce Eckstut-Amzie Strickland-Mychael Bates-Gary Bohn-Paul Bradley-Robert Buckingham-Selby Dessner-Rio Hackford-Robert Liguori-Garry Marshall-Charles Minsky-Blair Richwood-Randall Rutledge-John Simone,prostitute-capitalism-hotel-expensive restaurant-sports car-workaholic-fire escape-friendship-los angeles california-beverly hills-piano-bubble bath,/hVHUfT801LQATGd26VPzhorIYza.jpg,/3tuWpnCTe14zZZPt6sI1W9ByOXx.jpg,509-4806-88-251-621-8874-634-745940-462-350-978148-18240-1824-544-11820-9880-11631-4951-788-9489-9441\r\n920,Cars,Animation-Adventure-Comedy-Family,en,Lightning McQueen a hotshot rookie race car driven to succeed discovers that life is about the journey not the finish line when he finds himself unexpectedly detoured in the sleepy Route 66 town of Radiator Springs. On route across the country to the big Piston Cup Championship in California to compete against two seasoned pros McQueen gets to know the town's offbeat characters.,58.241,Pixar-Walt Disney Pictures,6/8/06,120000000,461983149,117,Released,Ahhh... it's got that new movie smell.,6.", + "embedding" : [ 9.5409347E-4, -0.030068813, -9.107642E-4, -0.03199909, -0.0072997073, 0.009304748, 0.0073744715, -0.014748943, -0.02760839, -0.044151675, 0.01711421, 0.04537509, 0.020213528, -0.007490016, 0.0033032196, 0.01621704, 0.015523773, -0.03126504, 0.0140692685, -0.033385627, -0.009284358, 0.0032658374, -0.032461267, -0.005532553, 0.013579902, 0.0056175124, 0.02188553, -0.0054543903, -0.008930927, -0.016774373, 0.010127154, -0.012879837, -0.0014417601, -0.0084211705, -0.015415024, -0.004458667, 0.007524, -0.018840585, 0.022116618, -0.005804423, 0.014245983, 0.0128730405, -0.02597717, 0.014844097, -0.022198178, 0.028573528, 0.0043601138, -0.0068409266, 9.286057E-4, 0.035941202, 0.015550959, 0.030666927, -0.009039675, -0.035370275, -0.011207838, 0.0067049917, -0.014844097, 0.016611252, -0.012927415, 0.0017399675, 0.023000196, -0.014490667, -0.03732774, -0.022198178, -0.013817788, -0.015795643, -0.020730082, -0.010371838, 0.010392227, -0.0011681911, 0.02760839, 0.01061652, 0.004370309, -0.0065860488, 0.016964683, -0.035207156, -0.02955226, 0.0056718863, 0.007224943, 0.013566309, 0.015836423, -0.01807935, -0.014082862, 0.013695447, -3.4514736E-4, 0.0077618863, -0.013865366, 0.037164617, -0.028138537, 0.008346407, 0.025175154, 0.034391545, 0.008475545, 0.009726146, 0.022198178, 0.017440455, -0.017467642, 0.029171642, -0.011058309, -0.029688194, -0.0050771707, 0.0018436179, -0.009624195, -0.008414374, 0.002363569, -0.017318115, 0.0019166829, -0.0064297235, 0.016026732, 0.013885756, 0.0045130407, 0.007925008, 0.03172722, -0.036077138, -0.0063923416, -0.015088781, 0.019194016, -0.0013211179, -0.025963577, -0.027635576, 0.014789724, 0.03670244, 0.020553365, -0.027227772, 0.030177562, 0.008618277, 0.0042037885, -0.019683382, -0.011126276, -2.5084248E-4, 0.022266146, -3.64688E-4, 0.018745432, 0.0041562114, -0.038170535, 0.032923445, -0.022334114, 0.015700487, -0.029851317, -0.029144455, 0.017331706, 0.02710543, -0.02760839, -0.011846731, -0.02900852, 0.0016125285, 0.008869756, -0.00925717, 0.021763187, 0.0037246179, 0.030965984, 0.012424455, 0.016339382, 0.021491317, 0.016964683, 0.024386732, 0.015442211, -0.009420292, -0.010371838, -0.0018674065, -0.0064229267, 0.0068986993, 0.005053382, -0.00599813, -0.010861203, 0.018990114, 0.026072325, -0.00781626, 0.0019421707, -0.009542634, -0.03634901, 0.026330601, -0.02029509, 0.010711675, 0.011717593, 0.009855284, 0.0056243087, -0.0031825772, -0.030775674, -0.018052163, 0.011364163, 0.01339639, 0.02854634, 0.040128, 0.002161366, 0.007612358, 0.013389593, -0.034500293, 0.008054147, -4.821443E-4, -0.012628358, 0.024373138, 0.0023975528, -0.01166322, -0.6477029, -0.011500098, -0.026384976, -0.0061544552, 0.020825235, 0.024210015, 0.0129070245, 2.2323069E-4, -0.04175922, -0.0125060165, -0.014096456, 0.0075375936, 0.029878505, 3.5916566E-4, -0.0160947, -0.021097105, 0.017209366, -0.026303414, -0.006514683, 0.017562797, -0.007700715, 0.016203446, 0.007829853, 0.016393756, 0.012200163, -0.007938602, -0.0034323577, -0.010378634, 0.010446602, -0.00781626, -0.007490016, 0.007061821, 0.015958764, -0.009168813, 0.037817106, 0.0024451301, -0.02453626, 0.034717787, 0.03651213, 0.038469594, -0.030259121, -0.0058995774, 0.0065758536, 2.0592022E-4, -0.013675056, 0.0042921463, 0.0120098535, -3.5109452E-4, 0.0029293983, -0.006191837, 0.010691284, 0.015917983, 0.008332813, -0.013301236, -0.009393105, 0.016706407, 0.016067512, -0.039529886, 0.008183285, 0.0021545691, -0.0011902804, 0.008659057, 0.015809236, -0.0010687886, -0.009712553, 0.03822491, 2.6762194E-4, -0.012336098, 0.01749483, -0.015374244, -5.8197154E-4, 0.0066302274, -0.006171447, 6.4186787E-4, -9.158618E-4, 0.009311545, 0.020363057, 0.010766049, -0.006151057, 0.010997138, 0.002299, 0.0032522439, 5.2674796E-4, 0.01780748, 0.00892413, -0.012974991, -0.047142245, -6.155305E-4, 0.01707343, 0.004271756, 0.006324374, 0.01932995, 0.0045266342, -0.0015768455, -0.010677691, 0.014055675, -0.014613008, -0.0057670404, 0.01812013, -0.06894621, -0.022660358, -0.027621984, 0.0070754145, 0.006378748, 0.027200585, -0.004044065, -0.008196878, -0.008958113, 0.007476423, 0.0039319186, 3.544929E-4, -0.0068477234, -0.015048, -0.008461951, -0.0075036096, -0.03107473, 0.0240333, 0.018826991, -0.0066302274, -0.0054475935, -0.006062699, 0.0047611217, 0.009094048, -0.018826991, 9.7437754E-5, 0.023217691, 0.0042785527, -6.495142E-4, 0.014028488, -0.005743252, 0.01991447, 3.3282826E-4, 0.024046894, -0.012451642, -6.236016E-4, -0.012383674, 0.020621333, 0.005787431, 0.01835122, -8.364248E-4, -0.021518504, -0.0051111546, -0.013777008, -0.007891024, -0.0040270733, -0.021817561, -0.020213528, 0.002954886, -0.0055597397, -0.0059573497, -0.021368975, -0.014096456, -0.0071637724, 0.014096456, -0.00405426, 0.0028036586, -0.017698731, -0.012125398, 0.019615414, -0.020866016, 6.4611586E-4, 0.003999886, 3.8380385E-4, -0.0077279024, 0.025351869, -0.010874797, -0.013525529, 0.007279317, -0.013613886, -0.016652033, 0.013226472, -0.010589333, -0.011690406, 0.016203446, -0.027621984, 0.041188292, -0.008013366, 0.008196878, 0.0023159918, -0.017753106, 0.0067185853, -0.011323382, -0.032950632, -6.2105287E-4, 0.032488454, 0.015428618, 0.01621704, -0.0010594431, -0.029661007, 0.00779587, -0.00725213, -0.008020163, -0.014653789, 0.005733057, 0.0049582277, 0.025215935, -5.343943E-4, 5.607317E-4, 0.001408626, 0.011771968, 0.03585964, 0.02714621, -0.009630992, -0.017399674, 0.013158504, -0.02714621, 0.0036736422, -0.025351869, 0.018283252, -0.008305626, 0.020553365, 0.00238226, -0.010433008, -0.01030387, -0.0062020323, 0.020363057, -0.013158504, 0.017358894, -0.003418764, 0.006569057, 0.009664975, 0.0015267195, 0.017087024, 0.012132195, -0.011513691, -0.0043261303, 0.014830504, -0.012172976, -0.0048834635, 0.0012166179, -0.005362634, 0.0037484064, 0.017318115, -0.0037959837, -0.0076803253, -0.017454049, 0.020498991, -0.010405821, 0.033086568, -0.005189317, 0.0072997073, 0.0148984715, 0.018038569, -0.009250374, -0.01419161, -0.008271642, 0.010840813, 0.029307578, -0.016053919, 0.055162407, -0.0070210407, 0.028736651, -0.010582536, 0.014300358, -0.008461951, -0.012240943, 0.017413268, 0.009141626, 0.052171838, 0.03273314, 0.007388065, -0.024753757, 0.0025742683, -0.004417886, 0.011948683, -0.0036226667, -0.01625782, 0.0051111546, 0.0011588455, -0.015238309, -0.0023890568, -0.0015997846, -0.001981252, 2.4829368E-4, -0.008659057, -0.0065996423, 6.919939E-4, -0.005206309, 0.019438699, 0.029117268, -0.02317691, -0.026425757, 0.016978277, 0.01824247, -0.0261267, -0.011071903, -0.021137886, -4.8639227E-4, -0.023584716, -0.010466992, -0.0075987643, 0.04208546, -0.013029366, 0.0016821951, -0.006086488, -0.005498569, 0.02018634, -0.0020322276, 0.01454504, 0.020349463, -0.004706748, 0.015075187, -0.011187447, -0.004598, 0.030558178, -0.014381919, 0.012451642, 0.0025912602, -0.0013822886, -0.006433122, 0.008169691, 0.0040304717, -0.043227315, 0.0021154878, -0.024210015, -0.016964683, 0.003124805, 0.00610348, 0.017698731, -0.0095834145, -0.023516748, -0.020267902, -0.025243122, -0.0064535122, 0.06818497, 0.024291577, 0.015048, 0.00725213, -0.008489138, 0.0015284187, -0.02656169, -0.02892696, 0.0038911381, 0.0012081219, 0.036376193, -0.02317691, 0.037463676, 0.0034935283, 0.032406893, -0.0055359513, -0.005644699, -0.0034374553, 0.008869756, -0.018269658, -0.025338275, -0.010344651, 0.009297951, 0.026779186, -0.014055675, -0.013824585, 0.03273314, 0.018215284, 0.01663844, 0.00952904, -0.007435642, -5.7984755E-4, -0.0035818862, 0.009243577, 0.011683609, -5.615813E-4, 0.037164617, 0.010752455, 0.040345497, 0.019071674, 0.0152654955, 0.003398374, -0.010235902, -0.0141372355, 0.026738407, -0.025841236, -0.005185919, 0.02488969, 0.029932877, -0.03091161, 0.019166829, 8.487439E-4, -0.014871284, -0.010174732, 0.02909008, 0.010127154, -9.2350814E-4, -0.018215284, -0.028954146, -0.0027679757, 0.013872162, -0.038687088, 0.008427967, -0.0108476095, -0.0015895894, -0.007224943, -0.01370904, -0.008162894, -0.011391349, 0.025025627, 0.030041626, -0.02624904, -0.015333463, 0.0025147968, 0.013267252, 0.013070147, 0.021600066, -0.010460195, 0.003318512, 0.02372065, -0.016434537, -0.04453229, 0.00869304, -0.024944065, -0.015238309, 0.008638667, 8.3897356E-4, 0.017331706, -0.010222309, 0.022184586, 0.008393983, -0.010854406, 0.0042751543, -0.025732487, 0.05184559, -0.0065214797, -0.010732065, 0.028573528, 0.0019982439, -0.0039319186, 0.016855935, -0.012356488, 9.4559754E-4, -0.018962927, -0.010473789, -0.010725268, -0.0012956301, -0.0019421707, -0.0125060165, -0.023475967, -0.02710543, -0.0075443904, 0.0044552684, 0.014164423, -0.004207187, 0.0062360163, 0.00838039, 0.022986602, -0.0029650813, 0.0028478373, 0.008890146, -0.010004813, 0.008448358, 0.025365463, -0.015917983, 0.010446602, -0.015469398, -0.027635576, -0.0044960487, 0.032923445, 0.023190504, 0.013885756, -0.021600066, -0.012302114, -0.011255414, -0.04031831, 0.016298601, -0.009603805, -0.02472657, 0.009889268, -0.01531987, 0.009841691, 0.011466114, -0.001180935, 0.00804735, -0.03180878, -0.008060943, -0.0016363171, 0.008414374, 0.035642147, 0.007789073, 0.012023447, -0.032841887, -0.006796748, 0.00831922, -0.030449431, -0.016652033, -0.013783805, 0.0223613, 0.014762537, 0.0395027, 0.00572626, 0.019493073, -0.0016940894, 8.665854E-5, 0.028491966, -0.017127804, 0.0020560164, -0.021314602, 0.012465236, 0.02247005, 0.021899123, 0.002662626, 0.025882017, -0.0026643253, 0.032216586, 0.0031265041, 0.024128456, -0.006096683, -0.019860098, -0.018527934, -0.0035343089, -0.03422842, 0.012995382, -0.029117268, -0.018568715, 0.035560586, -0.018881366, -6.1977847E-4, 0.011649626, 0.031591285, 4.6345324E-4, 0.012376878, -0.012628358, 0.011833138, -0.020363057, -0.010371838, -0.024060488, -0.014042081, -0.0087202275, -0.018147318, 0.022062244, -3.132876E-4, -0.012091415, 0.001199626, 0.02539265, -0.025283903, -0.04537509, 0.016434537, -0.007333691, -0.0028359431, -0.031319413, -0.011989463, -0.033195317, -0.0134711545, -0.0059063737, -0.0055767316, 0.001475744, -0.036865562, -0.04121548, 0.0011019227, -0.014993626, 0.03254283, 0.0032216585, 0.056005202, 0.032325335, -0.019098861, -0.013437171, 0.0031638863, -0.025555773, -4.0929165E-4, 0.020675708, 0.02123304, -0.013348813, -0.009875675, -0.010704878, -0.0011817846, -0.03822491, -0.051356226, 0.02760839, 0.02919883, 0.028274471, -0.024427513, -0.0024587235, -0.030449431, 0.026140293, 0.0021868537, -0.009658179, 0.0037925853, -0.025093593, -0.014381919, 0.010433008, 0.010711675, -9.903074E-5, 0.003016057, -0.040644553, 0.01648891, -0.020267902, 0.0023958536, -0.0015853414, -0.01889496, 0.03199909, -0.028274471, 0.020240715, 0.006171447, 0.010901984, -3.262439E-4, -0.011771968, 0.0075579835, 0.028981334, -0.014980032, 0.008468748, -0.0014969837, 0.011670016, 0.0042479676, 0.01143213, -0.0155645525, -0.03126504, -0.03757242, -0.012091415, 0.021124292, 0.028356032, 0.00486987, -0.0056107156, -0.0090192845, -0.007061821, 0.013008975, 0.0018504147, 0.007150179, -0.032461267, 0.0063991384, -0.020131968, -0.0012276625, 0.010460195, 0.0019098861, -2.739939E-4, -0.001663504, 0.016815154, -0.008414374, 0.009291154, -0.004781512, -0.006507886, -0.042710762, -0.025514992, -0.010201919, -2.5296645E-4, 0.005661691, -0.022225365, -0.0031689836, -9.141626E-4, 0.01454504, -0.008060943, -0.0031095122, -0.012166179, -0.014218797, 0.035370275, -0.014735349, -0.007136585, 0.017005464, 0.014300358, -0.002443431, -0.0050024064, 0.02142335, 0.0077754795, 0.018283252, -0.012764293, -0.0022650163, 0.007279317, -0.020417431, -0.009671772, 0.0044858535, 0.011255414, 0.009610602, 0.0058214148, -0.03379343, -0.010793236, -0.007014244, 0.043145757, -0.009957235, -0.009977626, 0.036104325, 0.014640195, 0.035805266, 0.022769105, -0.012981788, -0.025229529, -0.005852, -5.938659E-4, -0.023829399, -0.003588683, 0.00808813, 0.01847356, -0.005787431, -0.022402082, -0.02503922, -2.222218E-5, -0.02854634, -0.035750896, -0.0034374553, 0.023856586, 0.043635122, 0.004006683, -6.142561E-4, 0.007333691, -0.010942765, 0.018065756, -0.022918634, 0.0040270733, 0.007136585, -0.0024757155, 0.012050634, 0.02426439, -0.02367987, -0.002463821, 0.006552065, 0.013810992, 0.0064942925, 0.030123187, -0.004088244, -0.0134711545, -0.008196878, -0.006208829, 0.0051315445, 0.0025198944, 0.020662114, -0.033739056, -0.009780521, 0.013131317, 0.012682731, 8.86126E-4, 0.003598878, 0.0024791139, -0.013314829, -0.023802212, -0.008665853, -0.004190195, -0.0027883658, -0.024631415, -8.9207315E-4, -0.0020118374, -3.4700584E-5, 0.03830647, 0.019098861, 0.007714309, 0.013865366, -7.123841E-4, 0.0062835934, 1.13420734E-4, 5.649797E-4, 0.0049140486, 0.015972357, -0.030014439, 0.01757639, -0.021001952, -0.006168049, 0.0061408617, 0.010208716, -0.010861203, 0.03346719, -0.0020254308, -0.048746277, 3.655376E-4, -0.011683609, 0.003016057, -0.02620826, -0.004907252, -0.01792982, -0.018881366, -0.0034867318, 0.012336098, -0.009209594, -0.01975135, 0.002309195, -0.014313951, -0.0051417397, 0.029769756, 0.16671063, 0.0011478008, 0.014653789, 0.03985613, 0.008781399, 0.0061306665, 0.027486049, 0.008162894, -0.007394862, 0.016978277, -0.008713431, -0.0017688536, -0.017589984, 0.0022752113, 0.00670839, -0.008176488, -0.025093593, -0.025107186, -0.026534503, -0.029905692, -0.004716943, -0.012240943, 0.0019761545, -0.02204865, 0.0014867886, -0.0036838374, -0.012798277, 0.005926764, 0.026915122, 0.004727138, -0.020553365, 0.004336325, -0.018691057, 0.010256292, -0.004424683, -0.010963154, 0.0069394796, 0.03172722, 0.026480129, 0.0110447155, 0.014844097, -0.023353625, -0.010127154, -0.023408, -0.0016609553, 0.016502503, -0.03390218, 0.0066234306, -0.035479024, 0.012138992, -0.038931772, 0.014205203, 0.027975414, 0.028736651, -0.019003708, -0.0049718213, 0.0031333007, -0.0026966098, -0.026969496, 0.009780521, 0.007952195, 0.027010277, -0.0355334, 0.010235902, -0.010358244, 0.014327545, -0.02679278, -0.02453626, 0.008706634, -0.032678764, 3.9017582E-4, -0.018188097, -0.010901984, -0.007911415, -0.0196426, -0.008550309, 5.131545E-4, 0.0049038534, -0.0026694227, 0.010589333, -0.03542465, -0.0013873861, -0.004489252, -0.022388488, -0.0023006992, -0.026928715, 0.019275578, -0.0071637724, -7.429695E-4, -0.0053660325, -0.013498342, -0.031700034, -0.011921496, -0.0025402845, -0.014952846, 0.0010900284, 0.01333522, 0.009481464, -0.021219447, -0.0036872358, -0.021586472, 0.028491966, 0.024753757, -0.020553365, -0.01780748, -0.014354732, 0.018677464, 0.018867772, 0.025718894, -0.012390471, -0.016121887, -0.042792324, 0.012709918, -0.011751577, -9.5324387E-4, 0.006361756, 0.01335561, -0.031835966, 0.03477216, -5.174024E-4, -0.0027662765, -0.018555121, 0.021355381, 0.015088781, -0.0023023984, -0.028410407, -0.015795643, 0.018650277, 1.4549289E-4, -0.020403838, 0.009304748, -0.033630308, -0.0039760973, 0.0025793659, -0.0051553333, 0.006161252, 0.041432977, 0.0151975285, 0.0032131625, -0.0038571544, 0.01594517, -0.031564098, 0.00666761, 0.013376, 0.005763642, -0.030558178, 0.00727252, -0.011717593, -0.0019047887, -0.024944065, -0.014150829, -0.02255161, 0.009794114, -5.390671E-4, 0.03335844, 9.948739E-4, -0.025555773, -0.027309334, -0.0154965855, 0.037164617, -0.03335844, 0.022374894, 0.025922796, 0.0039862925, -0.02741808, -0.018813398, -0.17486674, 0.02620826, 0.01598595, -0.030313496, 0.023312846, 0.019166829, 0.002399252, 0.02123304, -0.004846081, -0.013076943, 0.009032878, -0.0039557074, -0.017753106, -0.004614992, -0.0010237602, 0.008896943, -0.041378602, 0.040291123, 0.015836423, -0.0014833902, 0.036131512, -0.0024927072, 0.0024196422, -0.0048902603, 0.004363512, 0.02290504, 0.010589333, -0.0062462115, 0.005005805, -0.027730731, -0.029171642, -0.0025487805, 9.846789E-4, 0.022687545, -0.00363626, -1.4655487E-4, -0.033222504, -0.019221203, 0.0053422437, -0.0060389107, 0.031917527, 0.018215284, 0.014640195, 0.0099504385, 0.0039115283, 0.03080286, 0.028328845, -0.016543284, 0.015238309, -0.021328194, -0.0038775448, -0.02963382, 0.02359831, 0.0015929878, -0.0019234796, 0.023149723, -0.012594374, 0.013824585, 0.008937724, -0.0105485525, -0.036185887, -0.01312452, 0.023462374, -0.01450426, 0.0021460732, -0.035125595, 0.004689756, 0.013661464, -0.035914015, 0.0016889919, -0.010582536, -0.009223187, 0.01722296, -0.0031010162, -0.0047203414, -0.014993626, -0.022578796, -3.680864E-4, -4.7917073E-4, 0.01952026, -0.022035057, 0.049725007, -0.0037993821, 0.007958991, 0.013702244, -0.00892413, 0.022918634, 0.004669366, 0.0073744715, -0.015061594, 0.0014222196, -0.011201041, -0.024971252, -0.020893203, -0.0047373334, 0.0017051342, 2.1388516E-4, 0.007972585, 0.010806829, -0.005250488, -0.0030925204, -0.020757267, -0.018446375, 0.0066472194, 0.021436943, 0.015415024, 0.018595902, 0.022130212, 0.034500293, 0.014178016, -0.004397496, -0.005943756, 0.023040976, 0.015482992, -0.030612553, 0.01559174, -0.0155645525, -0.020363057, 0.015115967, 0.008896943, 0.014436292, -0.011425333, 0.005569935, 0.0022225366, 1.4113872E-4, -0.0011775366, -0.086780876, 0.0028121544, 0.0024383334, 0.028274471, -0.03452748, 0.041813593, -0.011520488, 0.019928064, -0.019683382, 0.033847805, 0.017046243, -0.017304521, 0.007877431, -0.0074628294, 0.025229529, -0.0072657233, -0.008468748, -0.013348813, -0.009277561, 0.037382115, -0.006660813, -0.01932995, -0.01590439, -0.009148423, -0.014218797, 0.0068817073, -0.032461267, 0.01640735, -0.0010016707, 0.008747415, 0.014993626, -0.011622439, 0.0126759345, -0.040427055, -0.02527031, -0.026425757, -0.011534081, -0.03227096, 0.01009317, -0.052824326, 0.023815805, 0.016869528, 0.007061821, -0.017100617, 0.0031944716, -0.0038469592, -0.034908097, 0.04001925, -0.019493073, -0.025365463, -0.007048228, 0.0023057968, -0.013722634, -1.8892836E-4, 0.02146413, 0.009026081, 0.03346719, 0.005417008, -0.012193366, -0.014980032, 0.003189374, -0.008278439, -0.03251564, 0.017127804, 0.0039557074, 0.0033609918, 0.016937496, -0.0047033494, 0.019357137, -0.013722634, -0.027866667, 0.02290504, -0.039203644, 0.0036328617, -0.01726374, -0.00181813, -0.019941658, -0.0076803253, 0.02566452, -0.024509072, -0.0026694227, -0.029389137, -0.0021596667, -0.009719349, -0.01220696, 0.02301379, 0.013511935, 0.005797626, -0.013233269, -0.036022764, 0.007789073, 0.016380163, 0.01116026, -0.011398146, -0.0071229916, 0.022075837, 0.015578146, 0.0056209103, -0.007992975, -0.008985301, -0.012635155, -0.0098213, -0.07258927, 0.027091837, -0.008944521, -0.009338732, 0.005070374, -0.010534959, 0.008835772, -0.014517854, 0.0014867886, 0.0058384063, -0.022823479, 0.027173398, -0.0042139837, 0.0050669755, -0.010460195, 0.028437594, 0.0012506016, -0.00896491, -0.028763838, 0.0052844714, -0.018092943, -0.014640195, 0.03515278, 0.01145252, 0.011357366, 0.01792982, 0.013049756, 0.027336521, 0.0051383413, -0.005586927, 0.035098407, -0.012689528, 0.004081447, 0.0038367643, -0.0066574146, -0.015347057, -0.019724162, -0.0059947316, 0.012941008, -0.0068035447, -0.017059837, -0.03172722, -0.016978277, -0.00808813, -0.009073659, 0.011805952, -0.015931576, -0.0022667155, 0.015714081, 0.023068162, 0.017522017, 0.0099164555, -0.009066862, -0.022306927, 0.009012488, -0.020702895, 0.027214179, 0.001672, -0.006127268, -0.021083511, 0.03517997, 0.011296195, 0.027757918, -0.026493723, 0.007041431, 0.0017977399, 0.010487382, -0.0060117235, 0.0073812683, -0.023204098, -0.012091415, 4.1035365E-4, 0.014762537, 0.04817535, 0.019724162, 0.007884228, 0.0031282033, 0.011527284, 0.011948683, 0.01862309, 0.023149723, -0.010099967, -0.039747383, -0.0048902603, 0.011037919, 0.019030895, -0.021069918, 0.011126276, -0.001999943, 0.024930472, -0.0035580976, 0.0011656423, 0.01835122, -0.0028189512, 0.0041833986, -0.005243691, -0.0086522605, -0.025786862, -0.004835886, 0.023883773, -0.005542748, -0.009100845, -0.019887285, -0.02838322, -0.022225365, -0.010140748, -0.013158504, -0.006878309, 0.011636033, 0.008074537, 0.029688194, 0.002771374, -0.0015912886, 0.00838039, -0.016013138, 0.0069394796, 7.4849185E-4, -0.023897367, -0.018568715, 0.049208455, -5.352439E-4, 0.014572227, 0.020838829, 0.015088781, 0.03659369, 0.0102494955, 0.007490016, -0.023054568, 0.006851122, -0.010038797, 0.0018300244, -0.020417431, -0.014422699, 0.0025572765, -0.0032267561, -0.007530797, 0.013946927, 0.031292226, -0.0060389107, 0.07199115, 0.022578796, 0.0026065528, 0.017168585, -0.008373593, -0.0038095773, 0.014871284, 0.009753333, -0.025474211, -0.0075443904, -0.0020458212, -0.0022361302, 0.022673951, -0.024386732, 0.009889268, -0.002334683, 0.0062462115, -0.0027203984, -0.007388065, -0.010664097, 4.4816057E-4, -0.010772846, 0.02430517, 0.010568943, -0.005879187, -0.02741808, 0.014110048, -0.013743024, -0.00629039, -0.0313466, 7.5316464E-4, -0.01419161, -0.0014069268, -0.004540228, 0.010922374, -0.0016821951, -0.008373593, 0.0036838374, 0.02558296, 0.005852, -0.01009317, 0.013042959, -0.021736, -0.011024325, 0.023489561, 0.0042955447, 0.001467248, -0.020172749, -0.03732774 ], + "id" : "1a74c5e6-ecdc-41dd-a1d8-264f5c792d33", + "metadata" : { + "source" : "movies.csv" + } + }, + "fd1d2112-9f37-4c6a-aca0-8ecf571bdf33" : { + "text" : "95,Armageddon,Action-Thriller-Science Fiction-Adventure,en,When an asteroid threatens to collide with Earth NASA honcho Dan Truman determines the only way to stop it is to drill into its surface and detonate a nuclear bomb. This leads him to renowned driller Harry Stamper who agrees to helm the dangerous space mission provided he can bring along his own hotshot crew. Among them is the cocksure A.J. who Harry thinks isn't good enough for his daughter until the mission proves otherwise.,45.61,Jerry Bruckheimer Films-Touchstone Pictures-Valhalla Motion Pictures,7/1/98,140000000,553799566,151,Released,The Earth's Darkest Day Will Be Man's Finest Hour,6.8,7004,Bruce Willis-Billy Bob Thornton-Ben Affleck-Liv Tyler-Will Patton-Steve Buscemi-William Fichtner-Owen Wilson-Michael Clarke Duncan-Peter Stormare-Ken Hudson Campbell-Jessica Steen-Keith David-Chris Ellis-Jason Isaacs-Grayson McCouch-Clark Heathcliffe Brolly-Marshall R. Teague-Anthony Guidera-Greg Collins-J. Patrick McCormack-Ian Quinn-Christopher J. Worret-Adam Smith-John Mahon-Grace Zabriskie-K.C. Leomiti-Eddie Griffin-Deborah Nishimura-Albert Wong-Jim Ishida-Stanley Anderson-James Harper-Ellen Cleghorne-Udo Kier-John Aylward-Mark Curry-Seiko Matsuda-Harry Humphries-Dyllan Christopher-Judith Hoag-Sage Allen-Steven Ford-Christian Clemenson-Andy Ryan-Duke Valenti-Michael Taliferro-Billy Devlin-Kathleen Matthews-J.C. Hayward-Andrew Glassman-Shawnee Smith-Dwight Hicks-Odile Corso-Vic Manni-Jim Maniaci-Layla Roberts-Joe Allen-Bodhi Elfman-Alexander Johnson-Kathy Neff-Victor Vinson-Joseph Patrick Kelly-Peter White-Rudy Mettia-Frank Van Keeken-Frederick Weller-Jeff Austin-Googy Gress-Matt Malloy-H. Richard Greene-Brian Brophy-Peter Murnik-Brian Hayes Currie-Andy Milder-Michael Kaplan-Patrick Richwood-Brian Mulligan-John H. Johnson-Charles Stewart-Scarlet Forge-Michael Tuck-Patrick Lander-Anne Var��ze-Fritz Mashimo-Dina Morrone-Ruben Olague-Wolfgang Muser-Jim Fitzpatrick-Franky-Charlton Heston-Michael Bay-Lawrence Tierney-Mark Boone Junior,saving the world-paris france-moon-washington dc usa-loss of loved one-cataclysm-asteroid-self sacrifice-nasa-space marine-u.s. air force-race against time-natural disaster-daughter-space-end of the world-disaster-wedding-astronaut-duringcreditsstinger-disaster movie-heroic mission-space centre-daring rescues,/eTM3qtGhDU8cvjpoa6KEt5E2auU.jpg,/sODk4VuMTt8S56zYFOr1Kx8BFqu.jpg,602-128242-215676-1572-564-621875-185605-398397-607-1573-954-197-9679-1571-1701-18-1734-2048-605-608-604\r\n435,The Day After Tomorrow,Action-Adventure-Science Fiction-Thriller,en,After years of increases in the greenhouse effect havoc is wreaked globally in the form of catastrophic hurricanes tornadoes tidal waves floods and the beginning of a new Ice Age.", + "embedding" : [ -0.003413592, -0.044344507, -0.017903145, -0.028433612, 0.0047976635, 0.024950562, -0.011540143, -0.012183897, -0.016100634, -0.015395893, 0.011513038, 0.030845996, 0.007338799, 0.00888381, -0.0026986857, 0.01627682, 0.02448977, -0.014758915, 0.006938994, -0.03260785, 0.019041575, -5.6540262E-5, 0.006413826, 0.017740514, 0.012841204, 0.003655847, 0.012488834, -0.03464076, 0.013735684, -0.0064985305, 0.015328129, -0.018282622, 0.012888639, -0.004987402, -0.018052226, -0.0014374356, -0.008179068, -0.02394766, 0.015653394, -0.017618539, 0.0023564796, 0.012685348, 0.0048315455, -0.008849927, -0.014813125, 0.0014213418, 0.04266397, -0.025601093, -0.0121229105, 0.021779224, 0.02862335, 0.03450523, -0.02668531, -0.031144155, -0.013972857, 0.0054854644, -0.013051271, 0.003621965, 0.007359128, -0.014420097, -0.018404597, -0.020735664, -0.027606895, 0.025804384, 0.005441418, -0.0016568203, -0.013525616, -0.014392991, -0.019624341, -0.011099679, 0.021196458, 0.019095786, 0.0129835075, 0.005421089, 0.009514011, -0.02802703, -0.021589486, -0.0048010517, 0.002193847, 0.013972857, 0.022876995, 0.0043741413, -0.0046248664, 0.00731847, 0.024625296, 0.0014594587, -0.011926396, 0.009947699, -0.00821295, -8.029988E-4, 0.014203253, 0.01027974, 0.008931244, 0.026563335, -0.0058818813, 0.013620486, 2.1027896E-4, 0.021196458, -0.008355253, -0.054671682, -0.0025800995, -0.0035711422, 0.0020667901, -0.007108403, -0.0061122775, 0.00687123, 0.023229366, 0.005129705, 0.018174201, -0.025709514, 0.0060275733, 4.874745E-4, 0.01871631, -0.046756893, -0.006081784, -0.022660151, 0.028948614, -0.007115179, -0.012685348, -0.029111248, 0.032119952, 0.030629152, 0.020369742, -0.024191609, 0.026170306, 0.030439414, 7.538702E-4, -0.012183897, 0.02329713, -0.0071219555, 0.019949608, 0.018648546, 0.03016836, -0.013274891, -0.025845041, 0.04719058, -0.04057685, -0.0023175154, -0.021874094, -0.01897381, 0.032526534, 0.032526534, -0.027024128, -0.013512064, -0.032228373, 0.020098686, 0.011241983, -6.9118885E-4, 0.015029969, 0.0018262293, 0.026753074, 0.024760824, -0.003095103, 0.010571123, 0.015029969, -0.018391045, -0.005441418, -0.011120008, 0.0127124535, -0.016520768, 0.0011053939, -0.013850882, 0.023934107, -0.022578835, 0.008544992, 0.020451058, 0.011560472, -0.02310739, -0.007623406, -0.024760824, -0.0074336682, 0.020654349, -0.016805375, 0.013769566, -0.0058886576, 0.04992823, 0.01677827, -0.0049433555, -0.021331985, -0.017632091, 0.001725431, -0.004353812, 0.040360007, 0.026739521, 0.0071558375, 0.007867355, 0.012129687, -0.016886692, 0.024706613, -0.012244885, 0.018675651, -7.9495186E-4, -0.009785065, -4.5105154E-4, -0.6461938, -0.03355654, -0.00938526, -0.0025665467, 0.0013806836, 0.020789877, 0.012698901, 0.013254562, -0.027891502, -0.0037642687, -0.019773422, 0.027999924, -0.003169643, -0.0060512903, -0.03762236, -0.012075475, -0.008294266, -0.006210535, 0.012617584, 0.011370734, -0.037378408, 0.031225473, 0.012448176, -0.017117089, 0.01737459, 0.0076301824, -2.4691367E-4, -0.025777278, 0.007372681, -0.0093784835, -0.00513987, 0.019204207, -0.0049636844, 0.0011740045, 0.040251587, -0.00813841, 0.0011147114, 0.044425823, 0.039438423, 0.03396312, -0.016114186, -0.0047773346, 0.024679508, 0.005421089, -0.01951592, 0.0052618445, 0.01612774, -0.0171713, 0.02603478, 1.9185572E-4, 0.008978679, 0.027390052, 0.017455906, 0.022565283, -0.0014916465, 0.012997061, 0.023202261, -0.0328518, 0.008951573, -0.011445274, -0.01433878, 0.031577844, -5.3236785E-4, 0.0034017332, -0.013918646, 0.03390891, -0.017022219, -0.002232811, -0.0043199304, -0.037297092, 0.01398641, 0.009554669, -9.597021E-4, -0.023744369, 0.015924448, 0.023432657, 0.04401924, 0.0033254991, 0.008633084, 0.015341681, 0.010713427, -0.018309727, -0.019488815, 0.02011224, 0.03445102, -0.013864435, -0.012007712, 2.795249E-4, 0.011763763, 0.0026512514, 0.0074743265, 0.024665954, -0.020437505, -0.01197383, -0.0037405514, -0.0038896312, -0.008382359, -0.004672301, 0.024909904, -0.029328091, -0.015666947, -0.01175021, 0.015016416, -9.935839E-4, -0.0063901087, -0.009520788, 0.006850901, -0.004929803, 0.028108345, -0.0022717752, 0.005332996, -3.0832444E-4, -0.015816027, -0.01294285, 0.011126785, -0.01897381, 0.019122891, 0.008524662, 1.3965656E-4, -6.975417E-4, 0.011696, -0.010733756, 0.002946023, -0.02409674, 0.016371688, 0.01130297, 0.0030425861, -0.012387188, -0.017957358, -0.014514966, -9.046442E-4, 0.014420097, 0.0034999906, -0.003228936, 0.0049230265, 0.010489807, 0.010625334, -0.025858594, 0.018906048, 0.0034203683, -0.020451058, 0.008389135, 3.8307617E-4, 0.0034102038, -0.022863442, -0.013722131, -0.030032832, 0.011756986, -0.01005612, -0.003208607, -0.03171337, 0.010848954, 0.0015797392, 0.010842178, -0.006078396, 0.008944796, -0.024923457, -0.02493701, 0.023242919, -0.012312648, -0.0043233186, 0.023012523, -0.004465622, -0.024422005, 0.024571085, -0.011289418, -0.020573033, 0.015450103, -0.005129705, -0.039248683, -2.4352547E-4, -0.0058073415, -0.011635012, 0.045022145, -0.009547893, 0.021047378, -0.028650455, -0.002962964, 0.019773422, 0.0028968945, 0.0038523613, 0.0021904588, -0.019095786, 0.0074065626, 0.02469306, 0.019448156, 0.020234214, -0.008090975, -0.027755976, 0.0046655247, -0.002627534, 0.009100653, 0.0020430728, -0.020329084, 0.010964152, -0.0037032813, -0.002776614, 0.007311694, 3.724881E-4, 0.024476217, 0.06592044, 0.01618195, 0.0032475712, 2.515724E-4, 0.0026427808, -0.008944796, -0.0069457702, -0.019827632, -9.4276125E-4, -0.023215814, 0.015653394, -0.018540123, -0.013024166, -0.018689204, 0.011594354, 0.0075149843, -0.024083188, -1.4209183E-4, -0.036511034, 0.005614215, 0.0019803916, 0.002720709, 0.035968926, 0.008870257, -0.031035734, 0.012854757, 0.021752119, -0.01577537, 9.791842E-4, -0.006251193, 0.031333894, 0.003954007, -0.0025563822, -0.0019278747, 0.019041575, 0.0027478144, 0.009317497, -5.5640277E-5, 0.029436512, 0.0051432583, -0.01776762, -0.008199397, 0.033095747, -0.006190206, -0.018133542, -0.0013180022, 0.016236162, 0.012129687, -0.015151943, 0.021928305, -0.019624341, 0.0048552626, -0.0062918514, 0.0033153347, 0.008931244, -0.019949608, 0.009154864, 0.0014221888, 0.037378408, 0.017279722, 0.014745362, -0.012475281, 0.010679545, 0.0033458283, 0.033827595, -0.007941895, -0.005905599, 0.009818947, 0.0087144, -0.0069085, -0.010239081, -0.019854737, 0.006044514, -0.01558563, -0.02444911, -0.009249733, -0.006640834, 0.012475281, 0.011682447, -0.00409631, 0.006681492, -0.03808315, 0.004052264, 0.021237116, -0.012685348, -0.013376537, -0.018011568, -0.014189701, -0.010225529, -0.0069457702, -0.022294229, 0.030710468, -0.021630146, -0.007982553, -0.0039065722, -0.025302932, 0.013159693, -0.0031798074, 0.014189701, 0.0029036708, 0.0025038654, -0.0010799826, 0.012312648, -0.025275826, 0.021115141, -0.00776571, 0.024869245, -0.019786974, -0.0098325, -0.014406544, -4.7138063E-4, 0.012116133, -0.028108345, 0.010937047, 0.0029392466, -0.018756967, -0.022592388, -0.018851837, 0.0021802941, 0.010835402, 0.008531439, -0.020166451, -0.009669867, -0.008910915, 0.06976941, 0.025316484, 0.017781172, 0.021250669, 0.0029561876, -0.0014103302, -0.02031553, -0.013335879, -8.245984E-4, -0.0056006624, 0.010211976, 0.0034474737, 0.018377492, 0.011492709, 0.029707568, -0.011804421, 0.013051271, -0.001689855, -0.004292825, -0.02305318, -0.016453005, -0.016114186, 0.0096292095, 0.035779186, 0.014813125, -0.03339391, 0.024313584, -0.0024073024, 0.0038388085, 0.03339391, -0.010001909, 0.03160495, 0.009920592, 9.6309034E-4, -0.007332023, -0.0050551654, 0.02031553, 0.0112623125, 0.025614645, -0.014447202, 0.0021498005, -0.012014489, 0.0019261807, -0.023486868, 0.0024056083, -0.026468467, 3.1192438E-4, 0.028948614, 0.011953501, -0.033041537, 0.021521723, -8.7330356E-4, -0.028352294, -0.00858565, -0.0071219555, 0.0074404445, 0.007826697, -0.001368825, -0.0438024, 0.0026919094, 0.0030358098, -0.030683363, 0.014569176, -0.0060004676, 0.009703749, -0.016236162, -0.006993205, -0.0011435109, 4.0552288E-5, 0.0156805, 0.011885737, -0.03474918, -0.02394766, 0.014745362, 0.020681454, -0.011770539, 0.021115141, -0.002102366, -0.003225548, 0.0071558375, -0.02659044, -0.021372642, 0.0066306693, -0.023825686, -0.01100481, 0.024191609, -0.017144194, 0.016141292, -0.01227199, 0.023812134, 0.001914322, -0.010645663, 0.00409631, -1.7597363E-4, 0.024733718, -0.007894461, 0.02299897, 0.015707605, 0.01946171, 0.00675942, -0.0059767505, -0.013484959, -0.017754067, -0.009568222, -0.028352294, 0.0014467532, -0.0012316037, 0.03100863, -0.0069728754, -0.021494618, -0.0057463543, -0.016751165, 0.023757922, -0.017415248, -0.005156811, 0.016629191, 0.028379401, 0.0052008573, -0.012217779, 0.00843657, -0.0012502386, -0.005905599, 0.0020701783, 0.021331985, 0.01271923, 0.0042894366, -0.013667921, -0.03176758, -0.0057463543, 0.03171337, -0.005983527, 0.008904139, -0.011858632, 0.003926901, -0.014067725, -0.022890547, 0.014704703, 0.0020769546, 0.008118081, -0.010706651, -0.015816027, 0.010455925, -0.011858632, 0.010184871, -0.0063562267, -0.020979615, -0.02106093, 0.0032509593, 0.0066713276, 0.030683363, -0.016493663, -0.006830572, -0.02558754, -0.006173265, -0.008802493, -0.027945714, -0.006190206, -0.0036050242, 0.02897572, 0.022172254, 0.034369703, -0.024733718, 0.047380317, -3.2425945E-5, 0.0013933893, 0.010537242, 0.0050043426, -0.017008666, -0.025357144, -0.0029477172, 0.024245821, -0.0075353137, 0.013918646, -0.0046858536, 0.007562419, 0.012732782, 0.012353307, -6.8017724E-4, 0.0057666833, -0.039357107, -0.004130192, 0.0050212834, -0.021630146, 0.00480444, -0.018147094, -0.015409445, 0.053750098, -0.0070677446, -0.008301042, -0.009073547, 0.027403604, 0.012990285, -0.006169877, -0.005793789, 0.015802475, -0.026116095, 8.5890375E-4, -0.020085134, -0.0050382246, -0.003869302, -0.006938994, 6.043667E-4, 0.003189972, -0.02026132, -0.011363958, 0.022470413, 0.0011706164, -0.0026580277, 0.015301024, -0.013871212, -0.026197413, -0.024191609, -6.1622536E-4, -0.021033825, 0.020979615, -0.0016093857, 0.0021531887, 0.008755059, -0.03201153, -0.03249943, 0.031035734, -0.024882797, 0.030629152, 0.013261339, 0.054237995, 0.020329084, 0.0096292095, -0.021630146, 0.007847026, -0.023527525, 0.0041742385, 0.031252578, 0.014569176, 1.9016163E-4, -0.004540162, -0.0049196384, -0.0017923475, -0.022470413, -0.040739484, 0.028433612, 0.023188708, 0.021115141, -0.023080286, -0.015179049, -0.010855731, 0.011946725, 0.0054685236, -0.0060343496, 0.014691151, -0.024245821, 4.211932E-4, -0.0066950447, -0.016398793, 0.0066713276, -3.8688787E-4, -0.03439681, 0.021982515, -0.027837291, 0.009974804, -0.021765672, -0.0036998931, 0.024272926, -0.028785981, 0.012583703, -0.008314596, 0.019583683, -0.0011528285, -0.014284569, 0.0050958237, 0.033881806, -0.014582729, 0.01981408, 0.0042487783, 0.004987402, 0.010632111, 0.027945714, -0.02593991, 0.0108760595, -0.03439681, -0.019204207, 0.03339391, 0.016046423, -0.005495629, -0.02608899, -0.017103536, -0.001856723, 0.010062897, -0.0055464515, -3.960598E-6, -0.035860505, 0.010415267, 0.011133561, -7.136355E-4, -0.01147238, -6.996593E-4, 0.016805375, -0.010916717, 0.03558945, 0.0030595271, -0.0016288678, -0.0017279721, 0.01100481, -0.028704666, -0.02519451, 0.003266206, -0.014365885, 0.013471406, -0.027999924, -0.0043267068, -0.020735664, -0.012902192, 0.008680519, 0.0047299, -0.011906067, 0.015301024, 0.015287471, -0.018445255, -0.018363938, -0.0040285466, 0.034288388, 0.011865408, -5.382972E-4, 0.0100357905, -0.001183322, 0.03176758, -0.028867299, 0.009778289, -0.023798581, -0.013850882, -0.0061800415, 0.009934145, 0.029409407, 0.019353287, -0.0033610752, -0.04147133, 7.022004E-4, -0.015436551, 0.016574979, 0.0046316427, 0.01130297, 0.03117126, 0.017130641, 0.024964115, 0.017469458, -0.0075759715, -0.03843552, 0.0042555546, -0.012739559, -0.021115141, -0.010388162, 0.010591452, 0.018147094, -9.021031E-4, -3.966289E-4, -0.03361075, -9.95278E-4, -0.018784072, -0.015436551, -0.0038388085, 0.002534359, 0.054671682, 0.009785065, -0.0034102038, 0.029599145, -0.01242107, 0.024137398, -0.0036660114, 0.0016458087, 0.007304917, -0.0017110312, 0.011770539, 0.012868309, -0.027024128, -0.0029290821, 0.0054278653, 0.001689008, -0.0013459547, 0.027566237, -0.011309747, 0.0015043522, 0.0064951424, 0.0033695456, -0.006041126, 0.018282622, 0.015355234, -0.04469688, 0.009622433, 0.0013264727, 0.017198404, -0.010320398, -0.0019244866, -0.00199225, -0.022741469, -0.010476254, 0.005502405, -0.02051882, 0.009717301, -0.037649464, 0.010713427, -0.003337358, -0.004031935, 0.028460717, 0.022416202, -0.017848935, 0.0030002338, -0.015016416, 0.0052449037, -0.0062986277, -0.018634994, 0.017794725, 0.012908968, -0.02150817, 0.031984426, -0.022971865, 0.019936055, -0.008599202, -0.0048654275, -0.028596245, 0.023635948, 0.02305318, -0.029544935, -0.011133561, -0.0013679779, -0.013213905, -0.015965106, -0.006285075, -0.00998158, -0.018756967, -0.0072303773, 0.008253608, -0.010618558, -0.026021227, 0.021074483, 0.0013722131, -0.018445255, 0.02200962, 0.17846225, -0.012881863, -9.2666736E-4, 0.05003665, 0.004038711, 0.01826907, 0.009724078, 0.011499485, -0.014176147, -0.0015653394, -0.011763763, 0.011492709, 0.0016051505, -0.0032611238, 0.006901724, 6.3316623E-4, -0.013064824, 4.928744E-5, -0.021264222, -0.025411354, 0.013640815, 0.004746841, -0.019976713, -0.013010614, 0.019434603, 0.007223601, -0.009168416, -0.0042894366, 0.03076468, -0.00532622, -0.032092847, -0.036754984, -0.003189972, 0.008456899, -0.005797177, -0.01558563, -0.0033881806, 7.331176E-4, 0.011506261, -0.014108384, -0.0020142733, 6.5010716E-4, 0.0016669849, -0.002552994, -0.0011545225, 0.018513018, -0.0021531887, -0.0025191123, -0.016859587, -0.0030442802, -0.042826604, -0.0037473277, 0.018485913, 0.015802475, -0.024435557, -0.01683248, 0.0045875963, -0.0036084123, 0.005105988, 0.03046652, 0.007806368, 0.045970835, -0.033773385, 0.0027681435, -0.0076708407, 0.0068441248, -0.032526534, -0.012678572, 0.035426818, -0.024801482, -0.008863481, -0.023798581, -0.029924411, -0.012319424, 0.004384306, -0.021426855, -0.018485913, 0.02046461, -0.00664761, 0.013796671, -0.023703711, 0.009175193, -7.801286E-4, -0.02070856, -0.004353812, -0.019244866, 0.010794743, -0.010754085, -0.0119196195, -0.014176147, -0.013356208, -0.015450103, -0.0017381366, -0.0047942754, -0.008104528, 0.0028884239, 0.027755976, 0.004760394, -0.015463656, -0.010469478, -0.039167367, 0.0129835075, 0.012543044, 0.0021243892, -0.01376279, -0.020640796, 0.003954007, 0.016805375, 0.020722112, -0.027810186, 0.0034593323, -0.020749217, 0.0067492556, -0.012502386, -0.016547874, 0.029138353, -0.0031933603, -0.005536287, 0.024923457, -0.026739521, -0.0033526046, -0.016412348, 0.013674697, -0.00517714, 0.01627682, -0.03897763, -0.044046346, 0.0061495476, 0.002251446, -0.018878942, 0.026522677, -0.018391045, 0.0014238829, 7.8732846E-4, 0.0035033787, 0.008111305, 0.01538234, -0.017117089, -0.0056548733, 0.0014907995, 0.0021413302, -0.015206154, 0.015165497, 0.018404597, 0.009398812, -0.010706651, 3.2971232E-4, -0.0041200276, -0.017455906, -0.014664046, -0.014962206, -0.014420097, -0.006705209, 0.010171318, 0.025452012, -0.007562419, -0.03022257, -0.04122738, -0.01622261, 0.03464076, -0.039302893, 0.021481065, 8.478922E-4, -0.016846035, -0.022145148, 6.0775486E-4, -0.17390853, 0.009419142, 0.010760861, -0.021833435, 0.03933, 0.003886243, 0.005502405, 0.019285524, 4.624337E-5, -0.03111705, 0.004577432, 0.0034796614, -0.05860197, -0.006705209, 0.012089028, 0.028650455, -0.004242002, 0.021196458, 0.024815034, -0.0045672674, 0.018513018, -0.0012832733, -0.0133019965, -0.012305872, -1.651738E-4, 0.011878961, 0.006400273, 0.012258437, 0.0036050242, 0.0038354204, -0.036321297, -0.006735703, 9.588551E-4, 0.0039336774, -0.004103087, -0.002568241, -0.008856704, -0.01603287, -0.023974765, -0.0029968456, 0.03230969, 0.009324273, 0.025479117, -0.0012561679, 0.009324273, 0.01078119, 0.01577537, -0.009954475, 0.0042013437, -0.020207109, 0.013566275, -0.023717264, -0.02055948, 0.011641788, 0.0034440856, 0.01577537, -0.0069322176, 0.009588551, 0.02404253, -0.020301977, -0.038652364, -0.0047163474, -0.003923513, -0.012461728, -0.02310739, -0.045618463, -0.018933153, 0.032580744, -0.04103764, 0.008849927, -0.0031611724, -0.007894461, 0.02564175, -0.0077182753, -0.006420602, -0.021088036, -0.02897572, 0.030602047, -0.011025139, 0.00458082, -0.02409674, 0.048057955, -0.0037879858, 0.005969974, 0.008856704, -0.01986829, -0.011804421, 8.059635E-4, -0.0075217606, -0.019028023, 0.005573557, -0.012339754, -0.03575208, -0.002720709, 0.0021481065, -0.0014298122, 0.0050178953, 0.0062986277, 0.020437505, 0.008355253, -0.0090599945, 0.0023988318, -0.024422005, 0.006020797, 0.027308736, 0.025546882, 0.0050348365, 0.007332023, 0.021291327, -9.1650285E-4, -0.008429794, -0.013308773, 0.013105483, 0.006244417, -0.0018685816, 0.009093877, 0.010076449, -0.015463656, -8.893974E-5, 0.009317497, 0.026766626, 0.006813631, -0.016696954, -0.0110793505, 0.00843657, -0.030195465, -0.08738796, 0.0032424887, 0.007826697, 0.03355654, -0.0030595271, 0.04301634, 0.004540162, 0.023988318, -0.021426855, 0.040251587, -0.021386195, -0.0236495, 0.002981599, -0.018499466, 0.02659044, -0.01117422, -0.01404062, -0.0110793505, -0.011797645, 0.013274891, 0.0010655827, -0.018038673, -0.011086127, -0.024123846, -0.023066733, 0.015165497, -0.029653355, 0.01748301, 0.027634, -0.0042860485, 0.006718762, -0.035209972, 0.003301782, -0.0343426, -0.030656258, -0.029138353, -0.023256471, -0.0094598, 0.0062410287, -0.050416127, 0.0032458769, 0.021020273, -0.008395911, -0.014664046, 0.010964152, -0.031577844, -0.025709514, 0.028650455, -0.02011224, -0.015788922, -0.016656296, -0.026766626, -0.028596245, -0.004594373, 0.019448156, 0.021020273, 0.026671758, 0.009019337, -0.011845079, 0.0070880735, -0.0055972743, -0.0076437355, -0.016371688, 0.019149996, 0.015260365, 6.5773056E-4, -0.023622395, -0.0033830984, 0.010211976, -9.00409E-4, -0.010896388, 0.0343426, -0.03022257, 1.5564455E-4, -0.023066733, -0.0036727877, -0.026671758, 0.0031781134, 0.031876, -0.016209057, 8.34763E-4, -0.021996068, 0.0028985885, 9.783371E-4, 0.016087081, 0.019488815, -0.005268621, -2.4797246E-4, 0.023879897, -0.021765672, 0.015788922, 0.018540123, 0.0018651934, 0.0010350891, -0.023961212, 0.02359529, 0.026725968, 0.006772973, 4.326283E-4, -0.0028071075, -0.023568183, 0.00776571, -0.074702606, 0.01906868, -0.0079961065, 2.505136E-4, -0.014243911, -0.004350424, 0.0046248664, -0.007162614, 0.0110793505, 0.015748262, -0.013342655, 0.0027918608, -0.011987383, 0.008077422, -0.006644222, 0.010828625, -0.010442372, -0.002270081, 0.0015814332, -0.013044495, -0.03390891, 0.0054075364, 0.0032983937, -0.005797177, -0.0034322268, 0.022470413, 0.01175021, 0.006193594, -0.006251193, -0.008619531, 0.03599603, -0.00754209, -0.01622261, -0.007955448, -0.025831489, -0.018228412, -0.023785027, -0.00968342, 0.013864435, 0.022361992, -0.008558544, -0.03016836, 0.002590264, -0.011092903, 0.003095103, 0.008673742, -0.003679564, 0.0039099604, 0.018377492, -0.002869789, 0.04819348, 0.018458808, 3.1954778E-4, -0.013003837, 0.011018363, -0.03843552, 0.040685274, 9.1480877E-4, 0.0069525465, 0.010869283, 0.022958312, 0.01301739, 0.025967015, -0.032526534, 0.0075691952, 5.022978E-4, -0.013105483, -0.015924448, 0.0069288295, -0.007203272, 0.0070677446, -0.0033187228, 0.018580781, 0.029084142, 0.018499466, -0.007277812, -0.01767275, 0.0052076336, 0.016913798, -0.0032712882, 0.026278729, 0.0011138644, -0.02897572, 0.027606895, -0.0017669362, 0.030493625, -0.018228412, 0.009995133, -2.566547E-4, 0.016940903, -0.025221616, 0.009175193, 0.036429718, 0.01376279, 9.3513785E-4, 0.01722551, -0.002891812, -0.01117422, 0.0010537242, 0.038598154, 0.016466558, -0.0091074295, 0.0039845, 7.026239E-4, -0.023907002, 0.024015425, -0.024882797, -0.017591434, 0.01448786, 0.012915744, 0.01147238, 0.009005784, 0.0018736639, 0.016805375, -0.042474233, 0.011120008, -0.013850882, -0.010103554, 0.0010621946, 0.034884706, 0.016046423, 0.019055128, 0.03862526, -0.020532373, 0.061149884, 0.016520768, 0.021711461, -0.028758876, 0.021331985, -0.009934145, 0.015179049, -0.0021277773, -0.026725968, 0.007887685, -0.017916698, 0.004109863, -0.001819453, 0.043206077, -0.0129835075, 0.06288463, 0.021860542, 0.0036456822, -4.5486324E-4, -0.019597236, 0.01404062, 0.009473353, 0.018729862, -0.01078119, -0.011275865, -0.011811198, 0.007284588, 0.010903165, -0.027376499, -0.0029290821, 5.9547275E-4, 0.01448786, 0.012312648, 0.0022023174, -0.011906067, 0.009283614, -0.018878942, 0.018906048, 0.009263285, -0.039465528, -1.4082126E-4, 0.016249714, 0.0021531887, -0.0014162594, -0.017591434, -0.0012544738, -0.031279683, 0.0032136892, -0.00754209, 0.009696973, 0.01627682, -0.018214859, -0.016629191, 0.027349394, 0.0052449037, -0.006115666, 0.012407517, -0.021318432, -0.015260365, -0.0020549316, -0.0055227345, 0.005183916, -0.028189663, -0.022389097 ], + "id" : "fd1d2112-9f37-4c6a-aca0-8ecf571bdf33", + "metadata" : { + "source" : "movies.csv" + } + }, + "ca0b8428-154e-45b2-ac98-b8da1ba930aa" : { + "text" : "616,12723,Mia Wasikowska-Johnny Depp-Anne Hathaway-Helena Bonham Carter-Crispin Glover-Matt Lucas-Alan Rickman-Stephen Fry-Michael Sheen-Timothy Spall-Marton Csokas-Lindsay Duncan-Geraldine James-Tim Pigott-Smith-Leo Bill-Frances de la Tour-Christopher Lee-Paul Whitehouse-Barbara Windsor-Michael Gough-Imelda Staunton-Eleanor Tomlinson-Rebecca Crookshank-Jemma Powell-Eleanor Gecks-Holly Hawkins-Lucy Davenport-Joel Swetow-Jessica Oyelowo-Ethan Cohn-Richard Alonzo-Harry Taylor-Chris Grabher-Simone Sault-Caroline Royce-Bonnie Parker-Cortney Palm-Amy Bailey,based on novel or book-queen-fantasy world-live action remake-based on young adult novel,/o0kre9wRCZz3jjSjaru7QU0UtFz.jpg,/20pkC7yJdCV4J1IMKfsCT9QU7zV.jpg,241259-118-812-162-12-1865-285-58-12444-62213-675-767-3933-12092-674-14160-425-12445-58595-953-38757\r\n269149,Zootopia,Animation-Adventure-Family-Comedy,en,Determined to prove herself Officer Judy Hopps the first bunny on Zootopia's police force jumps at the chance to crack her first case - even if it means partnering with scam-artist fox Nick Wilde to solve the mystery.,111.664,Walt Disney Pictures-Walt Disney Animation Studios,2/11/16,150000000,1023784195,109,Released,Welcome to the urban jungle.,7.746,14669,Jason Bateman-Ginnifer Goodwin-Idris Elba-Jenny Slate-Nate Torrence-Bonnie Hunt-Don Lake-Tommy Chong-J.K. Simmons-Octavia Spencer-Alan Tudyk-Shakira-Raymond S. Persi-Della Saba-Maurice LaMarche-Phil Johnston-Fuschia!-John DiMaggio-Katie Lowes-Gita Reddy-Jesse Corti-Tom 'Tiny' Lister Jr.-Josh Dallas-Leah Latham-Rich Moore-Kath Soucie-Peter Mansbridge-Byron Howard-Jared Bush-Mark Rhino Smith-Josie Trinidad-John Lavelle-Kristen Bell-Evelyn Wilson Bresee-Hewitt Bush-Jill Cordes-Madeleine Curry-Terri Douglas-Melissa Goodwin Shepherd-Zach King-Dave Kohut-Jeremy Milton-Pace Paulsen-Fabienne Rawley-Bradford Simonsen-Claire K. Smith-Jackson Stein-David A. Thibodeau-Hannah G. Williams-Daveed Diggs,allegory-lion-hippopotamus-fox-elephant-sheep-cartoon-polar bear-bullying-revenge-conspiracy-con artist-urban-female protagonist-anthropomorphism-rabbit-animal-rookie cop-missing person-racial prejudice-injustice-reconciliation-buddy cop-stereotype-discrimination,/hlK0e0wAQ3VLuJcsfIYPvb4JVud.jpg,/p2fRZzxla6NoRbIH2KOZq0gHb5S.jpg,150540-177572-109445-127380-2062-38757-9806-14160-72962-12-585-277834-10681-293660-10193-862-425-259316-8587-278927-808", + "embedding" : [ 0.0010246811, -0.017003097, -0.012481278, -0.033450883, -0.026364055, 0.037787598, 0.0069942754, -0.0030624745, -0.026998697, -0.041040134, 0.02226533, 0.021260481, 0.01132438, -0.01437198, 0.0049184696, 0.0064654076, 0.019779652, -0.0058175446, 0.01906568, -0.028373752, -0.0013634871, -1.7157212E-4, -0.03466728, 0.0096320035, 7.209954E-4, 0.0010089804, 0.03585723, -0.011826804, -0.003450862, -0.0074239806, 0.0035665515, -0.01312253, -0.016857658, -0.03493171, -0.026509494, -0.005592776, 0.015509046, -0.031123865, 0.032578252, -0.0049316916, 0.010788901, 0.0035665515, -0.020255633, -0.01929045, -0.0074570347, 0.01734686, -0.007827242, -0.0015428063, -0.0019121873, 0.029114168, 0.028135762, 0.023693273, -0.015099173, -0.025967404, -0.012289563, 5.2804133E-4, -0.02180257, -0.002406348, -0.0027897772, 0.009955934, 0.017386526, -7.495047E-4, -0.035804342, -0.022199223, -0.011463207, -0.020414293, -0.0127391005, -0.019396223, 0.011972243, -0.012600273, 0.025478201, 0.004488765, 0.029114168, 0.0016427953, 0.034878824, -0.013895999, -0.027924215, 8.6602086E-4, 0.011562371, -0.0050440757, 0.024513017, -0.0017865812, -0.011945799, 0.009770831, 0.014649635, 0.013089476, -0.023693273, 0.032710467, -0.014305872, 0.030885873, -0.0020146554, 0.041225236, 0.0070868274, -0.0048226123, 0.007258709, 0.009903048, -0.013519181, 0.027844885, -0.021829015, -0.035566352, 0.009955934, -0.0104054725, -0.014715744, -0.016130464, 0.013433239, -0.0075033107, 0.0011767306, 0.013816669, 0.020189526, 0.020136638, 0.009407234, -0.0045813164, 0.011423542, -0.049634233, -0.0111921625, -0.021908345, 0.014252985, -0.025332764, -7.627264E-4, -0.01890702, 0.035169702, 0.027897771, 0.005599387, -0.046064377, 0.038871776, 0.027871327, 0.012058184, -0.020533288, 0.0010676517, 0.0080850655, 0.029907469, -0.011112832, 0.0363861, 0.010974005, -0.031679176, 0.044107568, -0.025716193, 0.0011998686, -0.015601598, -0.021141486, 0.02234466, 0.029510818, -0.014094325, -0.020731615, -0.020295298, 0.0070339404, 0.017095648, -0.016037913, 0.021366255, 0.017201422, 0.020321742, 0.016421342, 0.0068025608, 0.022661982, 0.024962556, -0.007470256, 0.0029666172, -0.008144563, -0.0042309416, -0.023653608, 4.8713674E-4, 0.0054936134, -0.007787577, -0.0021848846, 0.0063398015, 0.015985027, 0.02390482, -0.0049151643, 0.0013180375, 0.011423542, -0.015337164, 0.020639062, -0.021273704, 0.017849285, 0.007754523, 0.008527991, -0.003100487, 0.003368226, -0.018312044, -0.011959021, -0.008111509, 0.0146893, 0.011555759, 0.03712651, -0.01851037, -0.0013337382, 0.016037913, -0.024156032, -0.0021633995, -0.0020609314, -0.005724993, 0.032631136, 0.015416494, -0.010742625, -0.6507188, -0.019343337, -2.970749E-4, -0.009810496, 0.02296608, 0.026760707, -0.0039830348, -0.01812694, -0.031070977, -0.006660428, -0.028400196, 0.006653817, 0.031864278, -0.007959459, -0.016011469, -0.022291774, 0.012064795, -0.027554007, 0.0023782519, 0.004905248, -0.020361407, 0.011985464, -0.0020510152, -0.012838264, 0.011264882, 0.012534165, 0.0044557103, -0.01523139, 0.0066439006, 0.004743282, -0.012078016, 0.0013106003, 0.009308072, 0.0096716685, 0.032022938, 0.020784501, -0.027236687, 0.057911012, 0.016751885, 0.041198794, -0.043472927, 0.008415608, 0.007952848, 7.540497E-4, -0.018854134, 0.021379476, 0.011985464, 0.014332315, -0.010041876, -0.0032855906, -0.010101373, 0.01069635, -0.008481716, -0.009169244, -0.011278104, -0.0060555353, 0.005374618, -0.029695923, 0.024565905, 0.0025187326, -0.017095648, 0.018219493, -0.011040113, 0.011026892, -0.012395337, 0.04484798, 0.008184228, 5.854731E-4, 0.006514989, -0.029669479, 0.019277228, 0.012137514, -0.027501121, -0.009876604, 0.010888064, 0.0146893, 0.01765096, -0.0068223933, -0.0017700541, 0.019858982, -0.0049019423, 6.941389E-4, 0.006234028, 0.0073314286, 0.032922015, -0.0053613964, -0.022833863, 0.010293088, 0.015852809, 0.008455273, 0.005787796, 0.012223455, 0.007384315, 0.012230066, -0.017677404, -0.013829891, -0.011126054, 0.0087395385, 0.011238439, -0.072560646, -0.00460776, -0.025266655, 0.016923767, -0.011185552, 0.017095648, 0.0056588845, -0.013115919, -0.0039830348, 0.024473352, -0.0029583538, -0.020083752, -0.009228742, -7.387621E-4, -0.008369331, -0.00296827, -0.026654933, 0.02834731, 0.017386526, 0.0014750451, 0.006481935, 0.015085951, 0.0025815356, 1.7776979E-4, -0.01187308, 0.012435002, 0.02490967, -0.015337164, -0.009903048, 0.0028691073, 0.026998697, 0.009341126, -0.0036359655, 0.019039238, -0.023891598, 0.024711344, -0.006928167, 0.018774804, -0.0047168387, 0.015561933, -0.007919794, -0.02554431, -0.020731615, -0.022939637, -0.029246384, -0.0055828597, -0.014874404, -0.024314692, -0.0030624745, -0.008878367, -0.005225874, -0.00624725, 0.0028393585, -0.010332753, 0.0050969627, 0.024169255, 0.010101373, -0.024433687, -0.0017865812, 0.0213927, -0.013505959, 0.011112832, 0.010570743, -0.006736452, -0.025755858, 0.013010145, -0.007060384, -0.002589799, 0.012408558, -0.013089476, -0.025094772, 0.0034706944, -0.020982826, -0.002022919, 0.011840026, -0.013347299, 0.024724565, -0.009486564, 0.022186, 4.9297287E-5, -0.009288239, 0.011390489, -0.01102028, -0.018735139, -0.02850597, 0.022199223, 0.00921552, 0.01453064, -0.006475324, -0.001965074, 4.7184917E-4, -0.007093438, -0.0028624965, -0.0020824166, -0.0023749466, -0.006171225, 0.018404596, 0.012170568, -0.006531516, 0.0151785035, 0.0011568981, 0.032789797, 0.010088151, 0.010107984, -0.004697006, 0.022410769, -0.04989867, -0.0015411535, -0.020202747, 0.0077280793, -0.008627155, 0.019330114, -0.014438088, -0.014385202, -0.006124949, 0.002756723, 0.02412959, -0.019753208, 0.018695474, -0.023984151, 0.009744387, 0.008428829, -0.012990313, 0.010299698, 0.027950658, -0.001765096, -0.0010527773, 0.022992523, -0.013102697, -0.0034409454, 0.0014246374, -0.0151917245, 3.0802411E-4, -0.003267411, -0.007020719, -0.007952848, -0.0152578335, 0.02196123, -0.010848399, 0.03757605, -0.009797274, -0.0014717396, 0.019753208, 0.009413845, 0.010141038, 0.009228742, -0.012864707, 0.0059398455, 0.020480402, -4.036748E-4, 0.054129608, 4.8341815E-4, 0.018259158, -0.003335172, 0.011899523, 0.004865583, -0.004521819, 0.012461445, 0.008058622, 0.030674327, 0.027924215, 0.025451759, -0.034111965, 0.033768203, 0.004938302, 0.0033731842, -0.016844437, -0.019515218, 0.012223455, 6.57366E-4, -0.03458795, -0.017981501, -0.008970918, -0.009823718, 0.0066372897, 8.494938E-4, -0.009896437, -0.010722793, 0.0058175446, 0.020414293, 0.032234486, -0.011007059, -0.03421774, 0.019594548, 0.03850157, -0.022000896, -0.014332315, -0.016989876, -0.014676079, -0.020202747, -0.0111524975, 0.0045581786, 0.03678275, -0.005563027, 0.007007497, -0.012725879, -0.02085061, 0.015390051, -0.0062769987, 0.008580878, 0.008871756, -0.008164396, 8.1974495E-4, -0.007569419, -1.5473513E-4, 0.022635538, -0.021035712, -0.016540337, -0.0049217753, -0.013724117, 0.021300146, -0.0031500682, 0.0024344441, -0.034270626, 0.019383002, -0.009156022, 0.004290439, -0.01023359, 0.01852359, 0.007437202, -0.008561046, -0.023838712, -0.035090372, -0.026271503, 0.003897094, 0.076527156, 0.028849734, -1.5628454E-4, 0.005837377, -0.006855448, -0.0048721936, -0.0063100527, -0.0018113719, 0.0016477534, -0.017016318, 0.025795523, -0.0060158703, 0.024261806, 0.008144563, 0.015760258, -0.0035896895, -0.021220816, -0.011350824, 0.0036855468, 0.0020130028, -0.009909659, -0.028955506, 0.007516532, 0.019475553, 0.010293088, -0.014861182, 0.015654484, 0.009638614, -0.0041053356, 0.002761681, -4.5532204E-4, 3.9375853E-4, -0.0018064138, -0.0025749246, 0.008574268, 0.008402386, 0.019832538, 0.015495824, 0.031361856, -0.0027583756, -0.006710009, 0.012058184, 2.0906802E-4, -7.143846E-4, 0.016156908, -0.01890702, -0.0013874514, 0.017677404, 0.030409893, -0.034482174, 0.018483926, 0.015482602, -0.009817107, -0.002412959, 0.01844426, -0.0031979969, -0.017756734, -0.008871756, -0.016976653, 0.007053773, 5.941498E-4, -0.022476878, 0.003897094, -0.01679155, -0.0047234497, -0.013340688, -0.022437213, 0.007840464, -0.0069942754, -0.0025402177, 1.7074577E-4, -0.025821965, -9.288239E-4, -0.0014676079, 0.0046738684, 0.016593223, 0.03789337, -0.0072851526, 0.011806971, 0.0026195478, -0.022860307, -0.027395347, 0.009506397, -0.006610846, -0.0152181685, -0.0012469708, -0.006078673, 0.022186, -0.023799047, 0.0025749246, -1.587636E-4, 0.0040888083, -0.019105345, -0.017902171, 0.03609522, 0.012897762, 0.0015469381, 0.026681377, 0.012322618, -0.005067214, 0.013241525, -0.013314244, -0.017703846, -0.022714868, -0.019250784, -0.0119920755, -0.0026955726, -0.007152936, -0.020202747, -0.022794198, -0.026535938, -0.013975329, -9.808843E-4, 1.6806011E-4, -2.1010096E-4, -0.016223017, 0.008408996, 0.011840026, -0.0028145679, 0.011681366, 0.0074636457, -0.019158233, 0.0071727685, 0.021366255, -0.017558407, 0.04193921, -0.010683128, -0.01405466, -0.010498024, 0.023719717, 0.0036194383, 0.016196573, -0.014398423, -0.0070008864, -0.023521392, -0.012435002, -0.0010990532, -0.007999124, -0.021736464, 0.019832538, -0.021048935, 0.0023567667, 0.016249461, -0.011304547, -0.004082198, -0.031229638, 0.008970918, -0.013710896, 0.012368893, 0.030039685, -0.0065480433, 2.6835906E-4, -0.021115042, -0.008891588, -0.008488326, -0.029484374, -0.016751885, 0.0018989656, 0.029722365, 0.01733364, 0.04246808, -0.0027600282, 0.028876176, 0.014715744, 0.00913619, 0.03374176, -0.012230066, -7.577683E-4, -0.02115471, 0.0056357463, 0.0066802604, 0.026218617, 0.0044491, 0.003513665, -4.1751628E-4, 0.028717516, 0.0024377496, 0.008561046, -0.005873737, -0.018179828, -0.02366683, 9.19734E-4, -0.028400196, 4.0698022E-4, -0.013400186, 9.2386577E-4, 0.03725873, 0.0025055108, -9.089914E-4, -0.016209796, 0.023851933, -0.013082865, 0.015548711, -0.010286476, 0.0035202757, -0.013492737, -0.004578011, -0.020982826, -0.022199223, -0.0053283423, -0.018179828, 0.030383449, -3.43764E-4, -4.995321E-4, -0.0016262681, 0.030171903, -0.015046286, -0.015945362, 0.030330563, -0.011066557, -0.0030079351, -0.033953305, -0.012937427, -0.032340262, -0.011879691, -0.006736452, -0.00718599, 0.008177617, -0.022225665, -0.028849734, 0.020453958, -0.013221692, 0.03601589, 0.013935664, 0.039955955, 0.022873528, 0.0073248176, -0.027739111, 0.017227866, -0.014715744, 0.009869994, 0.028479526, 0.019594548, -0.016659332, -0.014834739, -4.2288756E-4, 2.7889508E-4, -0.0437638, -0.038157806, 0.022463655, 0.032446034, 0.020956382, -0.02258265, 0.0027401957, -0.022780977, 0.00535148, -7.4785197E-4, -0.0065050726, 3.0368575E-4, -0.039532863, -0.019435888, 0.0032227875, -0.003202955, 0.006574487, -0.0054638647, -0.015376829, 0.012719268, -0.009460121, -0.0044788485, -0.0071264924, -0.016328791, 0.030991647, -0.025597196, 0.020665506, 0.014808296, -0.0039433697, -3.5657253E-4, -0.0034078914, 0.012375505, 0.033768203, -0.019224342, 0.012170568, -0.01094095, 0.01086162, 0.0030624745, 0.010914507, -0.02147203, -0.018814469, -0.023640387, -0.0058142394, 0.036438987, 1.1011191E-4, 0.008580878, 0.011635089, -0.008250336, -0.004343326, 0.004485459, -0.0031979969, -0.0035500245, -0.03641254, 0.0088453125, -0.0076487493, 0.0022014119, -0.0020196135, -0.0070339404, -0.0035334975, -0.0052126525, 0.015390051, -0.012871318, 0.0087924255, -0.014940512, -0.0038805667, -0.02710447, -0.031917166, -0.01757163, -0.0027319323, 0.0057712686, -0.016580002, -0.0010618672, 0.012388726, -5.986948E-4, -0.011588814, 1.1816888E-4, -0.015310721, 0.0071661575, 0.023970928, -0.0096320035, -0.003678936, -0.005103573, 0.031441186, -0.006855448, -0.011701198, 0.01023359, 0.013895999, 0.040511265, -0.029801695, 0.00441274, 0.009585727, -0.026192173, -0.011628479, 0.001028813, 0.023851933, 0.018721918, -0.009156022, -0.03905688, -0.0021766212, -0.0027054888, 0.025570754, -0.011813583, -0.004773031, 0.023190849, 0.029907469, 0.026364055, 0.031732064, -0.0014163739, -0.046249483, -0.0023782519, -0.0119259665, -0.0371794, -0.0056357463, 1.681634E-4, 0.014596749, 0.007258709, -0.0029748809, -0.020890275, -0.002039446, -0.028029988, -0.046223037, -0.012983702, 0.012553997, 0.023574278, -0.0011453291, 0.0112186065, 0.0061877524, 0.0045714, -0.008944475, -0.02250332, -0.016302347, 0.004654036, 0.0061513926, 0.027686225, 0.027210243, -0.028849734, -0.008686652, 0.014543862, 0.016355233, 0.0037979311, 0.022622317, -0.023098297, -0.009704722, -0.009645225, 0.0013560499, 0.0044160453, -0.0028691073, 0.023785826, -0.012639938, -0.011866469, 0.015271055, 0.003857429, -0.0038871777, 0.0031616373, 0.021339811, -0.014385202, 0.003221135, -0.027011918, -0.012864707, -0.002938521, -0.02546498, 0.017902171, -0.0048358343, 0.008693263, 0.02584841, 0.0030327258, 0.008475105, -9.5692003E-4, -0.0066769547, 0.012758933, -0.014649635, 0.013049811, -0.011099611, 0.027844885, -0.034244183, 0.015548711, -0.041754104, -0.0020675422, 7.4526964E-5, 0.0039830348, -0.0023815574, 0.038104918, 0.0065116836, -0.05185548, 0.010974005, -0.019264007, 0.016738662, -0.014345537, -0.0010866579, -0.04381669, 0.004773031, 0.0026178951, 0.0037913204, -0.037073627, -0.01523139, 1.2829174E-4, -0.0027286268, -0.0063133584, 0.0213927, 0.17970924, -0.01765096, 0.021458806, 0.043314267, -0.003569857, 0.007390926, 0.028849734, 0.009169244, -0.0032327038, 0.014953734, -0.001265977, 0.010597187, -0.0024394023, 0.002875718, 0.026959032, -0.008223893, -0.021617467, -0.032736912, -0.009446899, -0.039162654, -0.017703846, 0.004584622, 0.0030922233, -0.022397548, 0.0030955288, 0.01257383, -0.0042606904, -0.00624725, 0.02296608, -0.0071264924, -0.014120768, -0.017214645, -0.0020444042, 0.009446899, -0.0152049465, -0.0021782739, -0.008653598, 0.027025139, 0.0061976686, -0.0052853716, -0.011370656, 0.013962108, -0.009499786, -0.010253423, 0.0036458818, 0.03125608, -0.016024692, -0.007675193, -0.030938761, 0.03514326, -0.03702074, 0.0046275924, 0.013710896, 0.027474677, -0.003609522, 3.6153066E-4, 0.00616792, -0.0020444042, -0.012210233, 0.008527991, 0.017042762, 0.03712651, -0.0185897, 0.01796828, 0.0053779236, 0.014570305, -0.039850183, -0.004892026, -4.0326163E-4, -0.017518742, -0.018655809, -0.034244183, -0.01851037, 0.009717944, -0.0044623213, -0.016381677, 0.007357872, 0.01866903, 0.0071132705, 0.01726753, -0.025187325, -0.014239763, 0.023137962, -4.916817E-4, -0.008408996, -0.014464532, 0.022463655, -0.01787573, -0.0021534832, -0.025795523, -0.0075826407, -0.025041886, -0.010808733, -0.014239763, -0.01007493, 0.0018031084, 0.017241087, 0.016262682, -0.02046718, -0.0028872872, -0.034323514, 0.017558407, 0.015826367, 0.00181633, -0.019184677, -0.01460997, -0.013254747, 0.003300465, 0.019356558, -0.009003973, -0.018470705, -0.035513468, 0.0050110216, -0.0047928635, 0.0035665515, 0.02250332, 0.019184677, -0.013373742, 0.034270626, -0.008408996, 0.0028459693, -0.022688424, 0.024420466, 0.0020427515, -0.024327915, -0.028029988, -0.02516088, 0.007384315, 0.0033269085, -0.037470277, 0.020784501, -0.019303672, 0.005873737, 0.0045416513, 0.0076090842, 0.0019981284, 0.017690625, 0.0017865812, 0.011410321, -7.114923E-4, -0.0053283423, -0.0057051606, 0.010517856, 0.004521819, 0.010636852, -0.027157357, 0.021749685, -0.011959021, -0.0079660695, -0.031520516, -0.028717516, 9.982378E-4, 0.0049250806, -0.002510469, 0.049316913, 0.003576468, -0.010207146, -0.050030883, -0.004743282, 0.052543007, -0.033635985, 0.017307196, 0.003369879, -0.0011899524, -0.01187308, -0.009427067, -0.16807416, 0.0022956163, 0.0067959502, -0.022119893, 1.6867988E-4, 0.016223017, 0.014226541, -0.0015180156, 0.007271931, -0.023217293, 0.028162206, 0.010967394, -0.037549607, -0.009162633, 0.0034145021, 0.023349509, -0.014900847, 0.032922015, 0.029854583, -0.0064092157, 0.039030436, -0.010240201, 0.004736671, -0.003639271, 0.013340688, 0.010121206, 0.029986799, 0.014543862, 0.015363607, -0.011846636, -0.03493171, -0.021524915, 0.012395337, 0.016143687, -0.021829015, 0.005030854, -0.01952844, -0.02030852, 0.0063563287, -5.966289E-4, 0.04950202, 0.01795506, 0.0025203852, 0.0045185136, 0.006726536, -6.350544E-4, 0.033477325, -0.02115471, 0.010656685, -0.014041438, -0.014067881, -0.029881025, 0.036914967, -0.018973129, -0.0072851526, 0.025293099, 0.007919794, 0.009757609, 0.0076289168, -0.009413845, -0.016831215, -0.0136051215, 0.010293088, -0.004075587, 0.0022047171, -0.019660657, -0.016315568, 0.010048486, -0.037523165, 0.0022708257, -0.024089923, 0.015323942, 0.0151520595, 0.007714858, 0.0013742297, -0.022371104, -0.03366243, 0.0012163958, -0.0018031084, 0.0063067474, -0.009757609, 0.046434585, -0.006895113, 0.012058184, 0.0057382146, -0.036280323, -6.6852185E-4, -0.0063860775, 0.0030690853, 0.0052126525, 0.0119656315, -0.016064357, -0.05045398, -0.0052126525, 6.7885127E-4, -7.792535E-4, -0.0051696817, 0.010293088, 0.016566781, -0.017082427, -0.0063067474, -0.02522699, 0.0056423573, 0.010504635, 0.03662409, 0.0039565917, 0.019237563, 0.01960777, 0.020110194, 0.0073710936, -1.1641287E-4, 0.0018361625, 0.018999573, 0.009407234, -0.032234486, 0.013644787, -0.008375943, -0.018655809, 0.0054241996, 0.007139714, 0.0421772, 0.003444251, 0.0010858316, -0.0019915174, -0.004786253, 0.0021567887, -0.09762898, -0.017902171, 0.004154917, 0.041516114, -0.038078476, 0.026231838, -0.017439412, 0.015509046, -0.0285853, 0.028558856, 0.011423542, -0.035883673, 0.009023805, 6.507552E-4, 0.02147203, 0.01296387, -0.019462332, -0.007959459, 0.012897762, 0.02155136, 0.0015287582, -0.021128265, 0.0064554913, -0.014900847, -0.024103146, 0.019779652, -0.020348186, 0.02444691, 0.013763782, 0.022159558, 0.004290439, -0.029193498, 0.018536814, -0.04201854, -0.018708695, -0.020586176, -0.013935664, -0.018378153, 0.012620105, -0.04254741, 0.008375943, 0.018325265, 0.0027600282, -0.018100496, -0.0151520595, -0.004475543, -0.025041886, 0.014874404, -0.01265316, -0.021776129, -0.011701198, 0.0057448256, -0.020956382, -0.003678936, 0.014477753, 0.024592347, 0.032816242, 0.0011064904, 0.007053773, -0.010848399, 7.0240244E-4, 0.0014345536, -0.023217293, 0.017902171, 0.006458797, 0.017016318, -0.0025286488, -7.1562413E-4, 0.02234466, -0.008600711, -0.028294422, 0.022595873, -0.029087724, -0.0045581786, -0.01936978, -0.001082526, -0.030119017, -0.008250336, 0.015522267, -0.03429707, 1.6485798E-4, -0.036438987, 0.017598072, -0.007853686, 0.00616792, 0.0072454875, 0.031758506, 0.01765096, -0.024063481, -0.044821538, -0.009116357, 0.016368456, 0.008243726, -0.0072917636, -0.0012337492, 0.016910546, 0.019911868, -0.0027352376, 0.018219493, 0.012725879, -0.0085941, 0.0073777046, -0.06801239, 0.026879702, -0.0343764, -0.010716182, 0.0021303452, -0.004207804, 0.019845761, -0.002016308, 0.0011626825, 0.011284715, -0.007278542, 0.017690625, -0.012758933, -3.1050318E-4, -4.6854373E-4, 0.016170131, 0.010537689, -0.0032475782, -0.0022592568, 0.013241525, -0.0033500465, 0.023627166, 0.033054233, 0.0096320035, 0.0055332785, 3.3880587E-4, -0.003873956, 0.0075760297, -0.023389174, 0.009228742, 0.023812268, -0.028611744, 0.0019617686, -0.0045416513, -0.008316444, -0.032842685, 3.514078E-4, -0.0026625183, 0.015522267, 9.4152914E-5, -0.019687101, -0.020982826, -0.0028327478, -0.022331439, -0.013320856, 0.017465856, -0.015879253, 0.008111509, 0.009559284, -5.34239E-4, 0.025504645, 0.016844437, 2.8529935E-4, -0.014411645, 0.01148304, -0.010736015, 0.050665528, 0.01835171, -0.005179598, -0.02280742, 0.017928615, 6.858753E-4, 0.015879253, -0.024341136, -0.003002977, 0.0069612213, 0.01038564, -0.012375505, 0.0079925135, -0.02194801, -0.01843104, -0.001521321, 0.014120768, 0.031943608, 0.010564133, 0.017082427, -0.013644787, 0.016897323, -0.012474667, 0.032340262, 0.013420018, -0.013763782, -0.027011918, 0.027897771, 0.0079660695, 0.0074173696, -0.010583965, 0.0023980846, 0.0080850655, 0.013539013, -0.0095526725, 5.268018E-4, 0.020348186, -0.009334515, 0.01734686, 0.020136638, -0.013882778, -0.0046672574, 0.0060158703, 0.016619667, -0.007020719, -0.007906572, -0.011079779, -0.019488774, -0.007886739, -0.008012346, -0.020493623, -0.017822841, 0.010960783, 0.01952844, 0.027950658, -0.0015221473, -0.02194801, 0.005420894, -0.038263578, 0.024169255, 0.0017964975, -0.011522705, -0.02124726, 0.03702074, 0.012547386, 3.8962674E-4, 0.029828139, -0.0037119903, 0.0427854, -1.4554191E-4, 0.014424867, -0.026787149, 0.003678936, 0.0019617686, -9.164286E-4, -0.015720593, -0.023851933, 0.006881891, -0.006881891, -0.009559284, 0.022225665, 0.024473352, -0.017095648, 0.0707625, 0.015033064, 0.0020543204, 0.022133114, -0.023851933, 0.013763782, 0.020916717, 0.03434996, -0.022675203, -0.0025947571, 0.007615695, -0.02280742, 0.007311596, -0.03054211, -9.007278E-4, -0.0033913641, 0.00867343, -9.80058E-4, -0.015720593, -0.011701198, 0.0039731185, -0.010081541, 0.011278104, 0.0046903957, -0.011800361, -0.014319093, 0.018814469, -0.011132665, 0.0028178731, -0.016394898, 0.009446899, -0.014623192, -0.0021452196, -0.009189077, 0.019343337, -0.00710666, 0.0068686693, 0.009479954, 0.012078016, 0.0016568433, -0.014887626, -0.012725879, -0.020810945, -0.018060831, 0.023296623, -0.010947562, 0.005219263, -0.023918042, -0.01445131 ], + "id" : "ca0b8428-154e-45b2-ac98-b8da1ba930aa", + "metadata" : { + "source" : "movies.csv" + } + }, + "d8de6a03-ac9f-4423-b36b-1e3e62621fc9" : { + "text" : "Lloyd Napier-Kiara Rashawn-Onye Eme-Akwari-Sanna Erica-Vince Canlas-Tonea Stewart-Meghna Nagarajan-Patrick Sabongui-Alex Parkinson-Joseph Gatt-Kamen Casey-Dennis Dawson-Mike Senior-Jermaine Rivers-Regina Ting Chen-Sekou Laidlow-Cameron Moir-Donny Carrington-Boone Platt-Philip Fornah-Derek Russo-Angel Rosario Jr.-Tang Nguyen-Christopher Matthew Cook-Natasha Ellie-Daniel Danca-Yssa Mei Panganiban-Ben Jenkin-Viola Davis-Henry Cavill-Natalie Burn-Maurice T. Johnson-Tre Ryan,lightning-anti hero-superhero-based on comic-demon-superhero team-duringcreditsstinger-dc extended universe (dceu),/pFlaoHTZeyNkG83vxsAJiGzfSsa.jpg,/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg,485470-663712-505642-642721-829799-724495-49046-76600-365297-887731-631132-1023803-963954-1035806-965839-267805-238-792775-616820-899294-1077280\r\n348350,Solo: A Star Wars Story,Science Fiction-Adventure-Action,en,Through a series of daring escapades deep within a dark and dangerous criminal underworld Han Solo meets his mighty future copilot Chewbacca and encounters the notorious gambler Lando Calrissian.,44.469,Lucasfilm Ltd.-Walt Disney Pictures-Allison Shearmur Productions-Imagine Entertainment,5/15/18,250000000,392952373,135,Released,Never tell him the odds.,6.", + "embedding" : [ 0.016135745, -0.031546913, -0.013739071, -0.039210696, -0.01376694, 0.02065041, 0.0049744914, -0.0011286661, -0.02945679, -0.033553433, 0.033748507, 0.017738173, 0.022447914, 8.795932E-4, 0.020343857, 0.012199348, 0.013871445, -0.033163276, 0.012262051, -0.0318256, -0.007914597, -0.00871581, -0.024120012, 0.014031688, 0.0013951567, 0.00591853, 0.029122371, -0.013279244, -0.0075105065, -0.022252835, 0.0128403185, -0.006723227, 0.012659174, -0.02750601, -0.022796268, -0.001166985, 0.016804583, -0.009858411, 0.03196494, 0.0015867512, 0.01524396, 0.010443645, -0.01628902, -0.007949432, -0.0159128, 0.0022573322, 0.013307112, -0.023353634, 4.968395E-4, 0.0318256, 0.018866839, 0.024760984, -0.020120911, -0.02488639, 0.00518002, 6.003659E-5, -0.00900146, 0.0023235194, 4.3816366E-5, 5.242724E-4, 0.0044380263, 0.0044554444, -0.028648611, -0.017250476, -0.018309472, -0.0061414763, -0.0023026182, -0.0104715135, -0.00501281, 0.010318237, 0.023214292, 0.013662433, 0.010081357, -0.012680076, 0.010729295, -0.028467467, -0.028565006, 0.01395505, -0.01874143, 0.008876053, 0.009976851, -0.0122481175, -0.019424204, -0.006691875, 0.020106977, 0.0017940217, -0.005005843, 0.018894706, -0.046595793, 0.016707044, 0.0049187546, 0.054287445, -0.0038980783, 1.5915411E-4, 0.0022712664, 0.028105179, -0.024538036, 0.015996404, -0.014310371, -0.040381163, -0.009252275, -0.00444151, -0.014602988, -0.018086527, 0.0048212158, 0.0032309808, -0.0031386672, 0.0122481175, 0.025708506, 0.018574221, -0.0047167097, 0.012819417, 0.014714462, -0.037566464, -0.009663332, -0.018044723, 0.019438138, -0.022350375, -0.014491515, -0.014784132, 0.03781728, 0.021806944, -0.003922463, -0.03160265, 0.043669622, 0.03486324, 0.0029488143, -0.01036004, -3.2200947E-4, -0.00450073, 0.023632318, -0.01121699, 0.023534779, 0.0025203393, -0.016832452, 0.040548373, -0.030348577, 0.01088257, -0.020943027, -0.004187212, 0.022893807, 0.021667602, -0.030320708, -0.016330823, -0.028899426, 0.014672659, 0.01098011, 0.0057931226, 0.021374986, 0.005430835, 0.033748507, 0.024342958, 0.015299696, 0.012561635, 0.009245308, -0.009517024, 0.0020309023, -0.0037239015, -0.010548151, -0.01088257, -0.009398583, -0.008458029, -0.012275985, -0.0017278345, 0.005005843, 0.021082368, 0.021235643, -0.03458456, -0.00938465, 0.006820766, -0.012018204, 0.028620742, -0.0267675, 0.031379703, -0.0018462747, -0.008785481, 0.007280593, -0.023297897, -0.050218675, -0.023047082, 0.006270367, 0.013523092, 0.03210428, 0.027310932, -0.014247668, 0.0025185975, 0.032160018, -0.024161814, 0.013153837, -0.0096702995, -0.005127767, 0.020845488, 0.007273626, -0.022224968, -0.63361365, -0.01860209, 0.004546016, -0.014254634, 0.01524396, 0.0040618046, -0.001000646, -0.008792448, -0.02343724, -0.012422294, -0.04311226, 0.023074951, 0.01514642, -0.012101809, -0.025401954, -0.011042813, 0.0050546126, -0.011850994, 0.018894706, -5.7260646E-4, -0.029568264, 0.015634116, 0.028676478, -6.9148216E-4, 0.0024071243, 0.003561917, -0.008464996, -0.012540734, 2.6387794E-4, -0.004033936, -0.017570961, 0.019535678, 0.013794808, 0.01662344, 0.03550421, 5.1774073E-4, -0.0039189793, 0.051054724, 0.01900618, 0.02488639, -0.041189346, 0.0028669513, -0.010332172, 0.0079773, -0.013523092, 0.01786358, 0.011864928, -0.009112934, -0.0057687378, -0.001340291, -0.005570176, 0.0013829643, -0.013878413, -0.013056298, -0.010297337, 0.0065664677, 0.017417686, -0.01555051, 0.020901224, 0.0122481175, -0.028620742, 0.016247218, 0.0028199235, -0.004546016, 0.018086527, 0.025137205, -0.0056781657, -0.0026631642, 0.014909539, -0.034194402, 0.0087227775, 0.008534666, 0.0030968646, 0.0016015563, 0.009098999, 0.005329812, 0.03271738, -7.571251E-5, -0.007552309, 0.020873355, -0.008437127, -0.0040896726, -0.002100573, 0.0019316215, 0.011976401, 0.0047933473, -0.030014157, 0.0044763456, 0.021193841, -0.0061554103, 0.022977412, 0.009565793, 0.012213281, 0.018727496, -0.0022224968, 0.0068625687, -0.017793909, 0.00338774, 0.016428363, -0.06448724, -0.01383661, -0.014561186, 0.028049443, -0.023660185, 0.021751206, 0.0043613887, -0.010569052, -0.019229125, 0.024022473, -0.023715923, -0.018239802, -0.0048595346, -0.014393976, -0.0101440605, 0.007196988, -0.035114057, 0.010562085, 0.014164062, -0.002936622, -0.01874143, 0.005260141, 0.019424204, 0.00677548, -0.009719069, 0.008680975, 0.047376107, -0.010401842, -0.0043265535, 0.018086527, 0.014352174, 0.013516124, -0.014310371, 0.026321609, -0.022336442, 0.012638274, 0.0020761883, 0.0027920553, 2.8891588E-4, 0.020343857, -0.010004719, -0.027784694, 7.22834E-5, -0.0057826717, -0.007092482, -0.02041353, -0.022447914, -0.028955162, -0.004002584, -0.004103607, -0.023562646, -0.0133140795, 0.018950444, 0.0025569163, 0.02478885, 0.010137093, 0.0063052024, -0.017180806, -0.014965276, -0.0016572928, -0.014310371, -5.525761E-4, 0.0051765363, -0.0022904258, -0.023325766, 0.019047981, -0.0054378016, -0.008060905, 0.0040687714, -0.008088774, -0.0141431615, 0.013056298, -0.008235082, -0.00398865, 0.022503652, -0.014393976, 0.013996853, -0.0055597257, 0.0150906835, 0.012108776, -0.0065455665, -0.010771098, -0.0087227775, -0.026001122, 0.005305427, 0.028704347, 0.030515786, 0.022211034, -0.0017374143, 0.0022294638, -0.002997584, -0.02350691, -0.008855152, -0.003027194, 0.001415187, -0.0074338685, 0.030822339, 0.008555568, 1.6623005E-4, -0.01093134, -2.4452798E-5, 0.015843127, 0.016943926, 0.014533318, 8.0818066E-4, 0.0067197434, -0.023855263, -5.952494E-4, -0.026405213, 0.009405551, -0.014198898, 0.026656028, -0.0014622147, -0.022629058, 0.009308011, 0.010283402, 0.025610967, -0.010185863, -0.0011878862, -0.029819079, 0.011405101, 0.0059289807, -0.0031717606, 0.018058658, 0.015202157, -0.029791212, 0.00392943, 0.010854702, -0.0036611976, 0.005430835, -0.016247218, -0.0143800415, 0.0075453417, -0.0017365434, 0.012707944, -0.012826384, -7.380745E-4, 0.025680637, -0.0019385885, 0.033469826, -0.015327564, 0.005995168, 0.010276435, 0.03257804, 0.010854702, 0.0121296765, -0.023367569, 0.018351274, 0.017208675, -0.0034434765, 0.04732037, -0.011154287, 0.025931451, -0.009419485, -0.0049431394, 0.015898865, -0.02653062, 4.4676365E-4, 0.0054761204, 0.03834678, 0.009064164, 0.010987077, -0.023562646, 0.010178896, -5.4691534E-4, 0.01224115, 0.002476795, -0.012422294, 0.011314529, -0.016498033, -0.023534779, -0.01759883, -0.0074269017, -3.211386E-4, -0.0023496458, -0.010408809, 0.0010023878, -0.010332172, 0.013725137, 0.017752105, 0.020176647, -9.597145E-4, -0.034110796, 0.008423193, 0.018713562, -0.01178829, -0.024175748, -0.009976851, -0.005336779, -0.03720418, 0.0044693784, 0.0032571075, 0.03845825, -0.007252725, 0.0165259, -0.014491515, -4.5416618E-4, 0.020009438, -0.013307112, 0.021542195, 0.013153837, -0.0026527136, 0.016163614, 0.004946623, -0.017849645, 0.019466007, -0.012777614, 0.006838184, -0.009935048, 0.003086414, -0.020943027, 0.0015162096, -0.0057408693, -0.03734352, 0.025555229, -0.0016895155, -0.0055841105, -0.010959208, -0.0016163613, 0.0028686929, -0.017320147, -0.025067534, -0.02024632, -0.026851105, 0.0078936955, 0.09748331, 0.03798449, 0.0015466906, 0.010109225, -0.015759522, 0.0030602876, -0.0043648724, -0.019591413, 0.003786605, -0.0092871105, 0.02065041, -0.0037726709, 0.016790649, -0.0028112147, 0.020260252, -0.012436228, 0.0044589275, -0.0048978534, 0.0069670747, -0.010081357, -0.028202718, -0.011237891, 0.035615686, 0.03569929, 0.001935105, -0.010373974, 0.02441263, 0.0062076636, -0.0049292054, 0.0099977525, 8.2472747E-4, 0.012373525, 0.0032153048, 0.019730756, -0.0059289807, -0.00826295, 0.031881332, 0.009921114, 0.033999324, 0.0010537701, -0.011990336, 0.009022362, 0.008033037, 0.00728756, 0.019702887, -0.030404314, -0.0066222046, 0.02317249, 0.021152038, -0.035337, 0.021583997, 0.0056955833, -0.021848746, -0.014756264, 0.031240363, -0.0025238227, -0.0023600964, -0.005998651, -0.0130981, 0.005497022, -0.010778065, -0.020274187, 0.01897831, -0.009719069, -0.012784582, -0.009544892, -0.012638274, -0.01012316, -0.02515114, -0.005970783, 0.0060578715, -0.009510057, -0.0040896726, 0.003974716, 0.029819079, -6.305202E-4, 0.025569163, 9.400108E-5, 0.010987077, 0.0030393864, -0.022420047, -0.01302843, 0.017403752, -0.030125631, -0.0053681307, 0.010408809, -0.003342454, 0.02260119, 0.0030777052, -0.0022033374, 0.0024193167, -0.011244859, -0.010081357, -0.010840768, 0.036758285, 0.0146169225, 0.0029470725, 0.010088324, 0.0036786154, -0.0028112147, 5.660748E-4, -0.030878074, 0.0047027753, 0.0026927744, -0.018574221, -0.0011913697, 1.1800483E-4, 0.0023252612, -0.017724238, -0.014240701, -0.026683895, -0.02784043, 0.014491515, -0.003845825, -0.0027798628, 0.0059115626, 0.02512327, 0.016163614, -0.006437577, 0.0011452129, -0.008437127, -0.013871445, 0.011760422, 0.012582537, -0.01100101, 0.03221575, -0.0051939543, -0.014658725, 0.0058871782, 0.027199458, 0.0036751318, 0.018086527, -0.020636475, -8.54773E-4, -0.011307562, -0.024217552, 0.009440386, -0.013362849, -0.0050093266, 0.016135745, -0.025708506, 0.010206765, 0.023799527, 0.0038005393, 3.544499E-4, -0.025847847, 0.0076080454, -0.012763681, -0.0019368468, 0.011133385, -0.0040234854, 0.012903023, -0.029568264, -0.009119901, 0.0023949319, -0.02945679, -0.0089596575, -0.014839869, 0.03536487, 0.004472862, 0.057046406, -0.01571772, 0.02750601, -0.0014587312, 0.007068097, 0.02343724, -0.018825036, -0.020929093, -0.016093941, 0.016846387, 0.01612181, 0.022447914, 0.009294078, 0.0057478365, 0.005963816, 0.012164513, 0.004026969, 0.005395999, 0.005141701, -0.013996853, -0.039238565, 0.011161254, -0.02736667, -0.012387458, -0.019939767, -0.010819867, 0.03126823, -0.012826384, -0.001996067, -0.015508708, 0.026015056, -0.006273851, 0.019730756, -0.01750129, 0.030738734, -0.016553769, -0.00847893, -0.021347117, -0.0062912684, -0.0064549944, -0.008848185, 0.01514642, 0.007461737, -6.919176E-4, -0.011725587, 0.028927295, -0.028495336, -0.025638834, 0.016776716, -0.012833351, -0.0093149785, -0.03260591, -0.020441396, -0.04436633, -0.013571861, -0.0010154512, -0.009628497, 0.012617372, -0.027589615, -0.030097762, 0.025485558, -0.00809574, 0.046763003, 0.0070297783, 0.0307666, 0.022392178, 0.0077195186, -0.019758623, 0.0037030003, -0.014965276, -0.016177548, 0.023381501, 0.033497695, -0.02260119, 0.0053646476, 0.0057025505, -0.0060334867, -0.04144016, -0.03572716, 0.033525564, 0.009872344, 0.018114394, -0.034500953, -0.011293628, -0.022740532, 0.017779974, 0.005444769, -0.0010171928, 0.006388807, -0.033720642, -0.012310821, -0.011648948, 0.006782447, 0.003741319, 0.0110915825, -0.021988088, 0.017891448, -0.0101440605, 0.010032588, 2.5976846E-5, -0.009914147, 0.030042026, -0.0075383745, 0.00826295, 0.016135745, 0.026168332, 3.4530563E-4, 0.010067423, 0.007280593, 0.031184627, -0.012666142, 0.020566804, 0.008604337, -0.003817957, 0.016414428, 0.013425552, -0.015299696, -0.02179301, -0.030599391, -0.005866277, 0.02072008, -0.013829643, -0.005803573, -0.007928531, -0.014825935, -0.006907854, 0.0132862115, -0.0069601075, 0.022824137, -0.038263172, 0.008778514, 0.0015292729, -0.0013498707, -0.009942016, -0.006517698, 0.009043263, -0.005880211, 0.0012453645, -2.6344252E-4, -0.0017043207, -0.029735474, -0.007183054, -0.04620564, -0.0042638495, -0.011969434, -0.010562085, 0.005336779, -0.011614113, 3.2658162E-4, -0.00146744, 0.0070576468, -0.011112484, -0.010715361, -0.004556467, 9.004944E-4, 0.02807731, -0.0077055846, -0.010652657, -0.0068799863, 0.026948644, 0.0017652825, -0.009301045, 0.0074129673, 0.004817732, 0.023534779, -0.013996853, 0.010666591, 0.0016999661, -0.030850206, -0.0069601075, 0.012185413, 0.027046183, 0.022350375, -0.013537026, -0.01769637, -0.01212271, -0.014310371, 0.030682996, -0.02014878, -0.008639173, 0.045425326, 0.01924306, 0.04375323, 0.026809303, -0.013132935, -0.028537137, 0.0075035393, -0.006758062, -0.027380602, -0.003650747, -3.8471314E-4, 0.0142337335, 0.00660827, -0.013794808, -0.029233845, -0.012749746, -0.015843127, -0.029679738, -0.012875154, 0.03274525, 0.026558489, 0.0025917517, 0.0037970557, 0.0128403185, 0.0015850095, -0.0048734685, -0.018309472, -7.0193276E-4, 0.017320147, 0.0015867512, 0.015508708, 0.018379143, -0.02884369, 0.0036611976, 0.018072592, 0.023729855, 0.017793909, 0.019089784, -0.013697268, -0.014853803, -0.010701426, 0.014770198, -0.015843127, -0.001475278, 0.020706145, -0.039768063, -0.0021667602, 0.0108129, 0.01719474, 0.004922238, 0.013599729, 0.016316889, 0.011258792, -0.0013150353, -6.535987E-4, -0.026015056, 0.0011173446, -0.026892908, 0.023520844, 0.008409259, -0.014066524, 0.03461243, 0.025095403, -0.0141431615, 0.008987526, -0.020831553, 0.0038075063, -0.0023496458, 2.6888555E-4, -0.010171928, 0.03277312, -0.018866839, 0.0030254521, -0.0347239, -0.009029329, 3.429107E-4, 6.618721E-4, 3.2875882E-4, 0.034194402, 0.0072596916, -0.051194064, 0.009085066, -0.009781772, 0.0050720302, -0.017166872, -0.017445555, -0.013209573, -0.022057759, -0.0065664677, 0.008611304, -0.025429823, -0.0319092, -0.0068416675, -0.013599729, -0.0023217776, 0.018685695, 0.18917, -0.0010955725, 0.0075592757, 0.037092704, 2.4406533E-4, 0.009942016, 0.022712663, 0.01388538, -0.010130126, 0.01947994, -0.0073293624, 0.0073502637, 0.01514642, -0.0023426788, 0.0082490165, -0.0049431394, -0.027450275, -0.023130687, -0.017961118, -0.017306214, -0.011648948, -0.0010450612, -0.011983369, -0.021068433, -0.013174738, -0.0059882007, 0.0061693448, 4.5068265E-4, 0.017515225, -3.3376642E-4, -0.008917855, -0.020469265, 0.0015179514, 0.011307562, -0.023186425, -0.016804583, -0.014909539, 0.011203056, 0.01326531, 2.8113234E-5, 0.002952298, -0.022127429, -0.018462747, -0.009886279, -0.0056955833, 0.016609507, -0.029930552, 0.005016294, -0.0153833, 0.010499381, -0.046428584, -0.0016895155, 0.023047082, 0.022420047, -0.009830542, -0.011586245, 0.007580177, 0.022629058, -0.021416787, -0.0029627485, -0.0071342844, 0.03720418, -0.029874817, 0.0059882007, 0.0038806605, 0.0077195186, -0.02078975, -0.001483116, 0.01793325, -0.031491175, -0.009245308, -0.029122371, -0.008590403, 0.006886953, -0.015620181, -0.01371817, 0.0068172826, 9.684234E-4, -0.0046435553, 0.01931273, -0.009753904, -0.015661983, -0.0051974375, -0.008033037, -0.024329025, -0.024844589, 0.009809641, -0.012164513, -0.01745949, -0.014268569, -0.02457984, -0.0370091, -0.010450612, -8.3212997E-4, -0.0115374755, -0.009231374, 0.024301156, 0.017654566, -0.005037195, 0.0056816493, -0.028927295, 0.02021845, 0.010304303, 0.002778121, -0.034974713, -0.017069332, 0.01002562, 0.0071691195, 0.022322508, -0.014658725, -0.0044240924, -0.014993144, 0.0037169342, -0.018643891, -0.010297337, 0.036368128, -2.6167352E-5, -0.005730419, 0.04617777, -0.019925833, 0.0033703223, -0.021834811, 0.011816159, -0.011042813, -0.012471063, -0.017877514, -0.025680637, 0.008123609, -0.0017670243, -0.04322373, 0.019925833, -0.023952803, 0.017988987, -0.0063504884, -0.0015310147, 0.0014813743, 0.019089784, -0.0071551856, 0.0065072477, -0.015634116, -0.0030533203, -0.014853803, 0.0088133495, -0.0011095066, 0.01104978, -0.023618383, 0.01036004, -0.008917855, 0.0025795593, -0.033804245, -0.018811101, -0.004936172, 0.019633217, 0.026586358, 0.02767322, -0.0033894817, -0.0018811101, -0.039935272, -0.0060857395, 0.040715583, -0.03238296, 0.021597931, 0.026349476, -0.014951342, -0.021319248, -0.008123609, -0.18014067, 0.023492975, 0.0056816493, -0.03829104, 0.010443645, 0.018058658, 0.02965187, 0.008165412, 0.012673109, -0.008165412, 0.026084727, 9.004944E-4, -0.025638834, -0.0034574107, 0.0013542251, 0.020566804, -0.014519383, 0.038235307, 0.02898303, 0.0036716482, 0.04361389, -0.005246207, -0.008848185, 0.011830092, 0.016107876, -0.004706259, 0.013174738, 0.0055910773, 0.0045843353, -0.017961118, -0.03048792, -0.0080121355, 0.016665243, 0.009523991, 0.002259074, 0.012589504, -0.014150129, -0.006528149, 3.2440442E-4, -0.0065385997, 0.04308439, 0.00409664, 0.030738734, 0.020329924, 0.026391279, 0.020636475, 0.031881332, -0.009468255, 0.00933588, -0.02155613, -0.004058321, -0.044728618, 0.025597032, -0.004925722, -0.012087874, 0.017320147, 0.006378357, -0.0023217776, 0.007747387, -0.01621935, -0.029428924, -0.012784582, 0.00888302, -0.016344758, -0.012540734, -0.019368468, -0.011920664, 0.02055287, -0.034500953, 0.015996404, -0.016846387, 0.011405101, 0.009851444, 0.0077334526, 0.0065211817, -0.015675917, -0.03503045, 0.001776604, -0.0020674793, 0.008116642, -0.021834811, 0.042722102, 0.004079222, 0.015689852, 0.0074060005, -0.020873355, 0.007580177, -4.4632822E-4, 0.008541633, -0.011363299, -0.0102625005, -0.009830542, -0.025415888, -0.009914147, -0.019661084, 0.008186312, -0.002259074, 0.009022362, 2.4036407E-4, 0.006340038, -0.010631756, -0.015034947, -0.017041465, 0.02193235, 0.022447914, 0.008402292, 0.0046888413, 0.025945386, 0.010199797, -0.0035427574, -0.013488256, 0.0023165522, 0.014052589, 0.01598247, -0.009928081, 0.008172379, -0.018532418, -0.02884369, 0.0073432964, 0.009656365, 0.06471019, -0.016902123, 0.010346105, -0.013007528, 0.016846387, -0.015494774, -0.08561141, 0.009816608, 0.023618383, 0.021709405, -0.021096302, 0.036061577, -0.0031891784, 0.01810046, -0.019619282, 0.025499493, 0.012032138, -0.03555995, 0.012269018, 0.0073502637, 0.0073432964, 0.0015022755, -0.01178829, -0.0074199345, -0.0062459824, 0.032968197, 0.00364378, 0.0018654342, 0.00769165, -0.010527249, -0.016609507, 0.015940666, -0.032522306, 0.019507809, 0.015843127, 0.010903472, 0.019661084, -0.015271828, 0.0065699513, -0.026447015, -0.030376446, -0.027283063, -0.016344758, -0.030682996, 0.0038040227, -0.06108731, 0.014965276, 0.022378244, -0.0027223844, -0.030599391, -0.021974154, 0.013537026, -0.02464951, 0.04093853, 0.012903023, -0.02367412, 0.009301045, -0.028509269, -0.025011798, -0.020037306, 0.034194402, 0.013362849, 0.026015056, 0.0058314414, -0.01726441, -0.042610627, -0.012847286, -0.012199348, -0.021012697, 0.015745588, 0.0013315821, 0.005441285, -0.004939656, -0.011363299, 0.013871445, -0.0070959656, -0.026809303, 0.0034974713, -0.032494437, -0.01571772, -0.020831553, 0.003546241, -0.032494437, -0.024217552, 0.027617484, -0.023883132, 0.0061379927, -0.027380602, -0.006423643, -0.019939767, 0.022211034, 0.030264972, 0.0059742667, 0.022447914, 0.010785031, -0.022865938, -0.008945724, 0.018323407, 0.008283852, 0.0014726653, 0.020845488, 0.020970894, 0.0101161925, 4.4850542E-4, -0.009914147, 7.250112E-4, -0.0022399144, 0.0044589275, -0.07825418, 0.033469826, -0.013035396, -3.9647007E-4, -0.013007528, -0.0051312502, -0.00444151, -0.0040861894, 0.008123609, 0.02431509, -0.003448702, 0.025806045, -0.0080121355, -7.5113773E-4, -0.014825935, 0.0017043207, 0.0030411282, -0.0038075063, 0.004796831, 0.0044101584, -0.01628902, 0.021904482, 0.016302954, 0.005765254, 0.0011678559, 0.016539834, 0.005814024, -5.004183E-6, -0.013125968, -0.013662433, 0.027659286, -0.019326665, -0.0066500725, 0.015355432, 0.0031508594, -0.02669783, 0.0057130014, 0.0027833462, 0.024273288, -6.305202E-4, -0.00973997, -0.027074052, -0.008583436, -0.013202607, -0.021277446, 0.0018358241, -0.018852904, 0.0176685, 0.016762782, 0.024301156, 0.01786358, -0.0021319247, -0.0069357227, -0.0113842, 0.0187693, -0.023632318, 0.060529944, 0.0028686929, 0.010255534, -0.02931745, 0.02260119, 0.0012148836, 0.031212494, -0.025861781, 0.002259074, -0.006618721, 0.01376694, 0.0017670243, -0.010422744, -0.04224834, -0.00506158, -0.004176761, 0.0076080454, 0.041551635, 0.012589504, 0.018365208, 0.005395999, 0.003192662, -0.005995168, 0.010032588, 0.02038566, -0.0066013034, -0.029902684, 0.015940666, -0.0066570397, 0.022322508, -0.0088133495, 0.027589615, 0.004674907, 0.0114190355, -0.0060578715, 0.013794808, -0.0035845598, -0.0012061748, 0.018532418, 0.008994494, -0.016874254, -0.02464951, 0.0012174962, 0.028481402, -0.018044723, 0.0053193616, -0.006632655, -0.024760984, -0.028620742, 0.0066222046, -0.012227216, -0.02774289, 0.01736195, 0.008527699, 0.023924934, 0.016916057, -0.022461848, 0.007068097, -0.030181367, -9.623272E-4, -0.012847286, -0.016302954, -0.02595932, 0.042805705, 0.013230475, 0.0064758956, 0.033553433, -0.015926732, 0.038597595, 0.018030789, 0.01947994, -0.02726913, 0.018476682, 0.002010001, 0.0076846834, -0.016302954, -0.016943926, 0.012143611, -0.014561186, 0.015216091, 5.8915326E-4, 0.036618944, -0.03179773, 0.07741813, 0.018657826, -0.03553208, 0.02172334, -0.017487356, 0.013530059, 0.0059080794, 0.0052044047, -0.017877514, -0.0021092817, -0.012345656, -0.010109225, 0.0017827002, -0.039071355, -4.5449277E-5, -0.010332172, 0.02898303, 0.024705246, -0.012930891, -0.02660029, -0.0117743565, 7.250112E-4, 0.02488639, 0.0071203504, -0.0040304526, -0.0038667263, 0.02209956, -0.009349814, -0.0035880434, -0.042889312, -0.008527699, -0.024133947, 0.011474771, -0.009677267, 0.027561747, -0.010687493, 0.012687042, 0.0046992917, 0.013181705, 0.016762782, -0.009349814, -0.0031891784, -0.026098661, -0.023186425, 0.028565006, -0.003786605, -0.012896055, -0.022629058, -0.018462747 ], + "id" : "d8de6a03-ac9f-4423-b36b-1e3e62621fc9", + "metadata" : { + "source" : "movies.csv" + } + }, + "6ca8bac9-e32e-49be-8c83-bf588812159a" : { + "text" : "Matherne-Kenneth Israel-Justice Leak-Al Vicente-Rose Bianco-Gabriel L. Silva-Skylar Denney-Kelli Garner-Tyler Crumley-Lexi Rabe-Zac Zedalis-Tracie Garrison-Natalie Shaheen-Jesse O'Neill-Joshua Leary-Vince Foster-Shauna Rappold-Fiona Hardingham-Orelon Sidney-Paul Ryden-Laurie Dhue-Kevin Shinick-T.J. Storm-Jason Liles-Alan Maxson-Richard Dorton-Seth Green-Eli Roth-James William Ballard-Joey Beni-Gerardo Bosco-Madeline Brumby-John David Bulla-Hans Bush-Marko Caka-Andrea Antonio Canal-Timothy Carr-Greg Clarkson-Michael Dougherty-Robin Dyke-Fred Galle-Christopher Bryan Gomez-Clare Grant-Anthony B. Harris-Kasia Hart-Cecil M. Henry-Maxwell Highsmith-Mallory Hoff-Brian Kayode-Patrick Johnson-Andrea Maiuro-Van Marten-Shaun McLane-Shaun McMillan-Roger K. Moore-Tony Morgan-Stephen Moyer-Leiloni Arrie Pharms-Sasha Rionda-Diana Rombola-Andres Salgado-Zach Shields-Beverley Simmons-Max Soliz-Thomas W. Stewart-Joey Thurmond-Robert Tinsley-Miguel Angel Varela Fimbres-Buddy Watkins-Benjamin Weaver-Jamie Wedel-Michael David Yuhl,mexico-boston massachusetts-giant monster-cryptozoology-eco terrorism-creature feature-gojira-rodan-kaiju-aftercreditsstinger-global threat-animal horror-king ghidorah-sunken city-mothra-godzilla-monsterverse,/fQ40gmFM4p03tXwMxQQKh2cCBW4.jpg,/uovH5k4BAEPqXqxgwVrTtqH169g.jpg,124905-788106-320288-458156-399566-479455-420817-447404-693841-456740-429617-586574-287947-293167-384018-571679-299534-531309-299537-864507-399579\r\n13475,Star Trek,Science Fiction-Action-Adventure,en,The fate of the galaxy rests in the hands of bitter rivals. One James Kirk is a delinquent thrill-seeking Iowa farm boy. The other Spock a Vulcan was raised in a logic-based society that rejects all emotion. As fiery instinct clashes with calm reason their unlikely but powerful partnership is the only thing capable of leading their crew through unimaginable danger boldly going where no one has gone before. The human adventure has begun again.,47.338,Paramount-Spyglass Entertainment-Bad Robot,5/6/09,150000000,385680446,127,Released,The future begins.,7.434,9367,Chris Pine-Zachary Quinto-Karl Urban-Zoe Salda��a-John Cho-Simon Pegg-Anton Yelchin-Leonard Nimoy-Bruce Greenwood-Eric Bana-Ben Cross-Winona Ryder-Chris Hemsworth-Jennifer Morrison-Rachel Nichols-Faran Tahir-Clifton Collins Jr.", + "embedding" : [ 0.023521857, -0.02833157, -0.010049114, -0.04662789, -0.023466414, 0.035456046, 0.0043453756, -0.0013644272, -0.020222975, -0.03778467, 0.018254735, 0.036426306, 0.01915569, 0.0042344886, 0.021317983, 0.025725732, 0.01555187, -0.021803113, 0.010825321, -0.025074271, 0.0035795637, 0.010714435, -0.02112393, 0.015801365, 0.0050522787, 0.004272606, 0.033903632, -0.014276672, -0.0067814193, -0.01569048, 0.0087600555, -0.0032954162, -0.008462047, -0.027111817, -0.029579047, 0.0048824833, 0.011476781, -0.020749688, 0.016341938, -0.004795853, 0.013292552, 0.0077274223, -0.0073601096, -0.014332116, -0.018795308, 0.007990778, 0.004927531, -0.012509414, -0.004892879, 0.021387286, 0.033099703, 0.027139539, -0.020417027, -0.0051146527, -0.0058007645, -0.010097627, 0.0040508327, -0.011580737, -0.012052006, 0.0025573263, 0.0074848575, -0.010652061, -0.02618314, -0.0010075103, -0.012862866, -0.01506674, -0.017894354, 5.210812E-4, -0.013431161, 0.0077482136, 0.024298064, 0.014914271, 0.015496427, 0.00589779, 0.031186905, -0.030881967, -0.017034981, -0.0046503143, -0.015039019, -0.0016087246, 0.01359056, -0.0043280493, -0.021886278, -0.0051597003, 7.731754E-4, 0.004078554, -0.019266577, 0.022523876, -0.023605023, 0.005727995, 0.014955854, 0.033182867, -0.0018105732, 0.013112362, -0.0077274223, 0.02239913, -0.020347724, 0.023660466, -0.0151360445, -0.042580523, -0.007755144, -0.0068195364, -0.011857955, -0.018587396, 7.26395E-4, 0.0040473673, 0.0061784727, -0.008143247, 0.027860302, 0.0068645845, 0.01227378, -0.0062269852, 0.013188596, -0.03043842, -0.012571788, -0.012502484, 0.030327532, -0.02471389, -0.0042795367, -0.028664231, 0.035982758, 0.012176754, 0.0046260576, -0.032683875, 0.039364804, 0.04188748, -0.0023130288, -0.017159728, -8.290519E-4, 0.0067502325, 0.01686865, -0.009681801, 0.031353235, 0.026404914, -0.014858828, 0.031519566, -0.0076373266, 0.0113312425, -0.014443003, -0.018559674, 0.026585104, 0.036259975, -0.03090969, -0.0031949251, -0.020694245, 0.0020340793, 0.0017022853, 0.009584775, 0.014443003, 0.0056413645, 0.015898392, 0.017090425, 0.01210052, 0.0163558, 0.011275799, -0.009744176, -0.016078582, 7.0430426E-4, -0.0038359894, -0.017132007, -0.022205077, -0.004948322, -0.014207368, 0.0046018013, 0.004875553, 0.032628432, 0.013140082, -0.022080328, -0.010853043, -0.0051700957, -0.013313344, 0.028664231, -0.03138096, 0.018906195, -0.008143247, 0.010541174, -1.2204042E-4, -0.008981829, -0.040196456, -0.01668846, -0.0038498503, 0.012287641, 0.024020847, 0.03387591, 2.5599252E-4, 0.002531337, 0.0265158, -0.019017082, 0.007907613, -0.010970861, 6.384653E-4, 0.01880917, 0.0094392365, 0.0027583085, -0.63515943, -0.026321748, -0.002479359, -0.010908486, 0.013521256, 0.011261938, 0.006455689, -8.745328E-4, -0.020888297, 0.0043730973, -0.02307831, 0.030327532, 0.008725403, -0.01570434, -0.030327532, -0.019432908, 8.2558667E-4, -0.03160273, 0.016425103, 0.005727995, -0.036093645, 0.019017082, 0.028691953, -0.004286467, 0.0118926065, 0.01244011, 0.0062962896, -0.013715308, 0.006445294, -0.010762948, -0.03684213, 0.023341667, 0.00884322, 0.0015610779, 0.038172774, -0.0036142159, -0.016730042, 0.04471509, 0.020347724, 0.030382976, -0.026793016, 0.0024204503, 0.015468705, 0.017312197, -0.030743359, 0.020666523, 0.016896373, 0.012058937, -7.666781E-4, -0.010929278, -5.8735337E-4, 2.2123211E-4, 0.002545198, -0.0073254574, -5.397067E-4, 0.0027236564, 0.01736764, -0.044160657, 0.019668542, 0.0031637382, -0.024630725, 0.023812935, 0.010160001, 0.0074571357, -0.01391629, 0.023216918, 0.009037272, -0.0066254847, 0.00916895, -0.023050588, 0.011663903, 0.015538009, -0.005520082, 4.006651E-4, 0.013493534, 0.013909359, 0.0284979, -0.0027981584, 0.005520082, 0.020444749, -0.00589779, -0.007817518, 2.2653822E-4, 0.004269141, 0.017423084, -0.0063101505, -0.033349197, 0.0050003007, 0.019557655, -0.0011045362, 0.01210052, 0.018615117, 0.0024724286, -0.0024810915, -0.012592579, -0.015177627, -0.012987614, 0.005481965, 0.024020847, -0.06265103, 0.0020825923, -0.019557655, 0.042635966, -0.0056725517, 0.003652333, 0.012377736, -0.001652906, -0.006289359, 0.03077108, -0.022288242, -0.014928132, -0.0021553617, -0.01882303, -0.005353752, -0.002061801, -0.026377192, 0.014387559, 0.010430288, -0.007824448, -0.010118418, 2.2123211E-4, 0.0058319513, 0.004958718, -0.012142102, 0.013285622, 0.017547833, -0.0059047206, -0.01424895, 0.0017577286, 0.010118418, 0.002980082, -0.009404585, 0.029357273, -0.023050588, 0.018698283, 0.008039291, 0.016993398, -0.009778827, 0.0023840657, -0.0048027835, -0.010645131, 0.0035657028, -0.014124203, -0.014276672, -0.018310178, -0.008746195, -0.034513507, -0.0062616374, -0.016827067, -0.025282186, 0.0016017942, 0.013036126, -0.0045117056, 0.0057661124, 4.2015692E-4, -0.0045775445, -0.026238583, -0.03304426, 0.006251242, -0.025226742, 0.009238254, 0.02504655, -0.0021172443, -0.029800821, 0.01569048, -0.011663903, 0.0028345431, -0.013888569, 0.008378882, -0.0045775445, 0.02946816, -0.018947778, 4.9725786E-4, 0.0040439023, -0.018254735, 0.01965468, -0.014387559, 0.024006987, 0.014512307, -8.7323337E-4, -0.010007531, -0.009563984, -0.015052879, 0.0034305595, 0.028941449, 0.025365349, 0.024616864, 7.736085E-4, 0.0062720333, 0.003222647, -0.018531952, -0.018434927, -0.005911651, -4.470123E-4, 0.0075541614, 0.024686169, 0.0027201911, -0.0015316235, -7.0647005E-4, -0.0026942021, 0.036093645, 0.008413534, 0.020902157, -0.011019373, -0.0013930151, -0.024464395, -0.0034825378, -0.026682131, 0.008933316, -0.006317081, 0.023771353, -0.014131133, -0.009522402, 0.005759182, 0.009425376, 0.025171299, -0.009764967, 0.011081747, -0.014470724, 0.0021674898, 0.010693643, -0.008468977, 0.022953562, 0.020070506, -0.028553344, 0.007658118, 0.016411243, -0.008365021, 6.111767E-4, -0.009709523, 0.009709523, 0.020486332, -0.0019353208, 0.024422811, 0.008191761, 2.222067E-4, 0.010180792, 0.0034444204, 0.026224723, -0.014359837, -0.008240273, 0.0139024295, 0.010790669, 0.011206495, 0.016660739, -0.004958718, 0.0071314056, 0.021830834, -0.00997288, 0.035927314, -0.011358964, 0.026973208, 0.003525853, 0.009952088, 0.024034709, -0.02733359, 0.0016399114, 0.0027704367, 0.023785213, 0.014997437, 0.02160906, -0.028664231, -0.002588513, 1.3200291E-4, 0.012350014, -0.0010005799, -0.024187177, 0.010367913, -0.008330369, -0.024894081, -0.01750625, -0.019072525, 0.0053433566, 0.02306445, -0.014969715, -0.024408951, -0.0028813235, 0.008552142, 0.010367913, 0.017741883, -0.0028830562, -0.024686169, 0.017478528, 0.027402895, -0.016425103, -0.025850479, -0.010783738, 0.0029211736, -0.04111127, -0.011580737, -0.012703466, 0.03093741, -0.024104012, -5.371078E-4, -4.2665418E-4, 0.0026734108, 0.014158855, -0.017450806, 0.0144568635, 0.012377736, -0.013992525, 0.015302375, -0.0094323065, -0.0074363444, 0.034097683, -0.010575826, -0.003291951, -0.0024100547, 0.0035622376, -0.029579047, 0.016438965, 0.008482838, -0.049649555, 0.006611624, -0.01867056, -0.017630998, -0.012239127, -0.0021103139, -0.001120996, -0.022218937, -0.0036696591, -0.02863651, -0.026571244, 0.0016303821, 0.07745441, 0.050730698, 0.006202729, 0.0042310236, -0.007942265, 0.014678637, -0.0020999182, -0.0055270125, -0.011663903, -0.026723713, 0.025892062, -0.010977791, 0.02013981, 0.0077482136, 0.024838638, -0.0050938614, -7.9396664E-4, -0.0050973264, -8.8471184E-5, -0.020971462, -0.015593452, -0.020167531, 0.024187177, 0.024159456, -0.0018833425, -0.018462649, 0.018615117, 0.016438965, 0.002030614, 0.018462649, -0.014540029, 0.008080874, 0.011844094, 0.002250655, -0.010173862, 0.002061801, 0.025559401, -0.005402265, 0.030272089, 0.009889714, 0.0033110098, -0.00441468, 0.0132579, -0.011074817, 0.0028605324, -0.025614845, -0.020583358, 0.029190943, 0.033820465, -0.03631542, 0.028276127, 8.4377907E-4, -0.022634763, -0.026460357, 0.020389305, -0.009141228, 5.7879864E-5, -0.0055616647, -0.035206553, 0.0066636023, -0.004733479, -0.025753453, 0.0054854304, -0.015524148, 0.0033266032, -0.013299483, -0.015191488, -0.0045394273, -0.032046277, -0.0013193793, -0.012661884, -0.016106304, -0.0063066855, -0.012162893, 0.022773372, -1.8452252E-4, 0.031325515, -0.011067886, 0.016231053, 0.008981829, -0.040141013, -0.015288514, 0.01964082, -0.023812935, 0.005336426, 0.0047265487, -0.005059209, 0.01980715, -0.0020219511, 0.0038359894, -0.0016347136, -0.010208514, -0.016286494, -0.002399659, 0.040556837, 0.018032962, 0.023161475, 0.013368787, 0.009390724, -0.006570041, -0.0039434107, -0.015676618, -0.007817518, -0.009737245, -0.018046822, 9.3127566E-4, -0.018698283, 0.015122184, -0.010998582, -0.003411501, -0.027957328, -0.026197001, 0.0029073127, 0.002436044, 0.005173561, -0.0022558528, 0.016910233, -0.0014319988, -0.007831379, -0.0022939702, 0.0025382675, -0.011927259, 0.02241299, 0.021304121, -0.008690751, 0.029357273, -0.0069546797, -0.031519566, 1.3319407E-4, 0.03224033, -0.00882936, 0.012481692, -0.011199565, -0.004892879, -0.016508268, -0.030521585, 0.004809714, 0.012391597, -0.0071314056, 0.02519902, -0.015856808, 0.0021207095, 0.0026751435, 0.007976918, -0.0012110915, -0.028026633, -0.0059324424, -0.020195253, 0.013070779, 0.016813207, -0.0242149, 0.010603548, -0.016924094, -0.013465812, -0.012467831, -0.032323495, -0.016674599, -0.0041305325, 0.03368186, -0.0046087317, 0.025905922, -0.014498446, 0.033654135, 0.013548978, 0.011753998, 0.029800821, -0.016993398, -4.89028E-4, -0.028068215, 0.005502756, 0.01702112, 0.017991379, 0.019058665, 0.010298609, -0.0060953074, 0.021096209, 0.002321692, 0.01965468, 2.6898706E-4, -0.023022866, -0.030355254, 0.008295717, -0.024589142, -0.015039019, -0.019931898, -0.008399673, 0.015454845, -0.0050557437, -0.010464939, -0.011719346, 0.028525623, -0.014650915, 0.01194805, -0.02226052, 0.03273932, -0.019432908, -0.004809714, -0.011123329, -0.012654953, -0.012488623, -0.023507996, 0.02210805, 0.005350287, -0.013694516, -0.0114490595, 0.01407569, -0.015094462, -0.01832404, 0.028941449, -0.02486636, -0.009293698, -0.02142887, -0.009272907, -0.035566933, -0.013542048, 5.479366E-4, -0.013299483, 0.0014692497, -0.02407629, -0.029606769, 0.03243438, 0.010582756, 0.042802297, 0.012578718, 0.045214083, 0.036065925, 0.011844094, -0.019017082, 0.0031290862, 0.0019318556, 0.0044112145, 0.01946063, 0.02831771, -0.018739864, 0.008455116, 0.017866632, -0.015246931, -0.032212608, -0.03620453, 0.016037, 0.029606769, 0.019114107, -0.04041823, -0.0074363444, -0.02946816, 0.015177627, -0.0054473127, 0.008330369, 0.0031862622, -0.031353235, -0.007817518, 0.0074571357, 0.0015732062, 0.01688251, 0.0032780904, -0.029994873, 0.014276672, -0.012966822, 0.010859974, -0.002307831, -0.012426249, 0.04976044, -0.016425103, 0.008378882, 0.0063898503, 0.020680383, 0.007963057, 0.008032361, -0.0039330153, 0.0258782, -0.015039019, 0.018850751, 0.003380314, -0.006445294, 0.006823002, 0.01228071, -0.010839182, -0.018767586, -0.016577573, -9.3300827E-4, 0.03321059, -0.0028016237, 0.0065007373, -0.0026612827, -0.015662758, -0.023286223, -0.0011591134, -0.006826467, 0.013105431, -0.035982758, 0.0027981584, -0.0024447069, 0.014207368, -0.0015688746, 0.0038221285, -0.0051319785, -0.009265976, 0.005454243, -0.009834271, -0.005887395, -0.03210172, -0.03029981, -0.03612137, -0.005578991, -0.004466658, -0.014387559, 0.009910505, -0.026987068, -0.0051458394, -0.0057210648, -0.005520082, -0.007152197, 0.0063586636, -0.023923822, -0.007214571, 0.017630998, -0.012474762, -0.013673726, -2.7245228E-4, 0.03487389, -0.012842075, -0.004761201, 0.009016481, -0.0049552526, 0.024145596, -0.021331843, 0.0042622103, 0.007103684, -0.013153943, -0.006039864, 0.013895499, 0.021096209, 0.0139024295, -6.69219E-4, -0.0144568635, -5.3061056E-4, -0.014678637, 0.027097955, 0.0023459482, 0.009155089, 0.04122216, 0.011920328, 0.041970644, 0.032074, -0.0050453483, -0.03060475, 0.011553016, -0.0036488678, -0.021983303, 0.0010291679, 0.0046780356, 0.006826467, 0.004844366, -0.010139209, -0.028359292, -0.004390423, -0.009744176, -0.030521585, -0.009709523, 0.014650915, 0.028775118, 0.013846986, 0.0053953347, 0.007976918, 0.004400819, 0.013001475, -0.023327805, -0.01358363, 0.025282186, 0.0060571902, 0.030965133, 0.015538009, -0.027693972, -0.008593725, 0.018656699, 0.023840657, 0.012155963, 0.028913727, -0.01260644, -0.01145599, -0.0010369646, -0.004976044, -0.017256754, 4.4073162E-4, 0.029967152, -0.043772556, 0.002321692, 0.010818391, 0.022288242, -0.0021692226, 0.018920057, 0.006677463, 8.173568E-4, 0.0011235949, 0.0056101778, -0.012336154, 0.009799618, -0.027389033, 0.020818992, 0.015039019, -0.0102154445, 0.031879947, 0.023258502, -0.002273179, 0.0039295503, -0.00769277, -0.0037181722, -0.013888569, -0.0029073127, 0.013659865, 0.015856808, -0.028913727, 0.008274926, -0.025670288, -0.0015766714, -0.008046222, 0.0013245771, 0.004844366, 0.026501939, 0.008448186, -0.06431433, -0.012405458, -0.0020375445, 0.013659865, -0.006466085, 4.407316E-5, -0.027139539, -0.010257027, 0.0012509414, -0.0062477766, -0.021179374, -0.035428323, 0.0042310236, -0.011067886, -0.015635036, 0.0105481045, 0.18584624, -0.006185403, 0.004844366, 0.047514983, -0.0072076404, -9.680935E-5, 0.020389305, 0.022551598, -0.011975772, 0.024852498, -0.009730315, -0.008053152, 0.007831379, -0.0032642295, 0.017547833, -0.0011279264, -0.023826797, -0.025711872, -0.011760929, -0.03418085, -0.01736764, 0.009113506, 0.0106589915, -0.0284979, -0.0127866315, -0.0043730973, -0.0069927974, 0.008226412, 0.023355527, 0.009557053, 0.003700846, -0.01814385, -0.0026179675, -0.005873534, -0.023036728, -0.0061819376, 0.005908186, 0.0052948436, 0.015440984, -0.0033681858, 0.0023615418, -0.009674871, 0.015108323, -0.005634434, -0.003099632, 0.012052006, -0.02241299, -0.0056898776, -0.020403167, 0.008267995, -0.049067397, 0.009051133, 0.007103684, 0.020569496, -0.009376863, -0.008226412, 0.010458009, 0.015191488, -0.015080601, -0.0039572716, 0.026141558, 0.02537921, -0.04011329, 0.015981557, -0.007318527, 0.01815771, -0.0151360445, -7.2033086E-4, 0.017603276, -0.035927314, -0.01800524, -0.024048569, -0.007401692, 0.01636966, -0.019086387, -0.0036072854, -0.0014666509, -0.006940819, 0.0022714462, 0.029190943, -0.02045861, -0.015565731, -0.0064348984, -0.014803384, -0.021220956, -0.023993125, 0.016425103, -0.022482293, -0.008607586, -0.009598636, -0.0032105187, -0.021983303, -0.014692497, -0.009016481, -0.0130084045, -0.0068784454, 0.028262267, 0.015288514, -0.009272907, 0.006712115, -0.032074, 0.023383249, 0.022537736, -0.0021605594, -0.029384995, -0.010825321, -0.009875854, 0.008857081, 0.023757491, -0.019322021, -0.014318255, -0.014470724, -0.008150178, -0.014623193, 0.0013436358, 0.018753726, 0.00982734, -0.011497572, 0.046378393, -0.009148159, 0.008933316, -0.020805132, 0.012336154, 0.007075962, -0.0023511462, -0.03454123, -0.02226052, 0.0074571357, 0.0048651574, -0.039059866, 0.01194805, -0.020694245, 0.016979538, 0.001375689, -5.007231E-4, 0.0011712415, 0.022371408, -7.987313E-4, -0.005464639, -4.2015692E-4, -0.008690751, -0.016231053, 0.016231053, 9.919168E-5, 0.011206495, -0.02666827, 0.014020246, -0.00613689, -0.01179558, -0.033460084, -0.011407477, 0.0011773057, 0.015108323, 0.022717929, 0.043883443, -0.011074817, -0.017811188, -0.044964585, -0.016785486, 0.030687915, -0.04582396, 0.028026633, 0.016272634, -0.011352033, -0.022620901, -0.0028293454, -0.17874949, 0.016674599, -0.006812606, -0.033820465, 0.01473408, 0.010686713, 0.022565458, -0.0029142431, 0.0040542977, -0.010326331, 0.022440711, -0.013098501, -0.026806878, -0.010118418, -0.0079838475, 0.017728023, -0.015454845, 0.027735554, 0.038200494, -0.0024412416, 0.04155482, -0.0066878586, -0.013763821, -0.0023598091, 0.012537136, 0.0052983086, 0.0212764, 0.005783438, -0.005111187, 0.0031169578, -0.049372338, -0.017326059, 0.018559674, 0.009418446, -0.005364148, 0.009570914, -0.019876454, -0.019890316, -0.015953835, -0.011019373, 0.03717479, 0.0034894682, 0.016064722, 0.0034530836, 0.010561965, 0.0063863853, 0.032600712, -0.020999184, 0.011171843, -0.018906195, -0.019599237, -0.035955038, 0.018074544, -0.013181665, -0.006355198, 0.012232197, 0.0036939157, 0.0017949797, 8.20822E-4, 0.012398528, -0.029329551, -0.012045076, 0.0060641207, -0.011830233, -0.016605295, -0.0024343112, -0.016965676, -0.0043765623, -0.038893536, 0.013853916, -0.014512307, 0.020264558, 0.015856808, 0.007671979, 0.0077482136, -0.010042183, -0.020514054, 0.014844967, -5.1371765E-4, 0.0062096594, -0.019252716, 0.033959076, -0.006126494, 0.017963657, -0.0031897274, -0.0041339975, 0.0063898503, -0.005367613, 0.010686713, -0.012585649, 9.69393E-4, -0.019529933, -0.02456142, 9.1135065E-4, 0.0018642839, 0.008600655, 0.001692756, 0.013160874, 0.021650642, -0.008434325, -0.0053468216, -0.009314489, -0.021082347, 0.024519838, 0.033543248, 0.004976044, 0.003745894, 0.025476236, 0.01210745, 0.0012006959, -0.021816973, -0.0073878313, 0.019224994, 0.020832853, -0.014512307, -4.7213509E-4, -0.022814954, -0.028664231, 0.0039676675, 0.014290533, 0.062262923, 0.008392743, 0.011823302, -0.0061923335, -0.0039399457, -0.013659865, -0.08643624, 0.0032278446, 0.01212131, 0.029218664, -0.02178925, 0.03093741, -3.2941168E-4, 0.03892126, -0.02192786, 0.03060475, 0.003617681, -0.034291737, 0.009896644, -0.0032278446, 0.0016806277, -0.005204748, -0.011760929, -0.019557655, -0.0058908598, 0.029384995, 0.009356071, 0.0063863853, -0.008912524, -0.021858556, -0.010423357, 0.011164912, -0.032822486, 0.032212608, 0.013978664, -0.0018071079, 0.0033110098, -0.028192962, 0.007741283, -0.039170753, -0.028525623, -0.021872416, -0.020430889, -0.025989087, -0.0063101505, -0.054251354, -4.7343454E-4, 0.022343686, 0.01227378, -0.021470452, -0.012343084, -0.0010941406, -0.029883986, 0.033931352, -0.0048859487, -0.028553344, -0.006556181, -0.03781239, -0.028913727, -0.004962183, 0.02666827, 0.020916019, 0.022038747, 0.0053606825, -0.03243438, -0.032074, -7.012722E-4, 0.01275891, -0.014941993, 0.01458161, -0.0041201366, 0.007512579, -0.020583358, -0.024519838, 0.0096610105, -0.022052607, -0.019114107, 0.034319457, -0.04044595, -0.0163558, -0.024616864, 0.002734052, -0.03090969, -0.014803384, 0.031963114, -0.038283657, 0.006012142, -0.025892062, 0.022607042, -0.021816973, 0.017229032, 0.030992854, 0.014512307, 0.0016979538, -0.007138336, -0.033182867, -0.008219482, 0.013147013, -0.014144994, 0.00982041, -0.002321692, 0.028996892, -0.011525294, -3.042889E-4, -0.010132279, 2.899949E-4, -0.012911378, 0.0072700144, -0.08017114, 0.019765567, -0.020500192, -0.004040437, -0.023050588, -0.004924066, -0.0037251026, 0.0031134926, -0.017118147, 0.026931625, 0.004338445, 0.019626958, -0.0052290047, -0.019349743, -0.0062131244, 0.008011569, -0.001444127, -0.0046121967, 0.012890588, 0.0022142702, -0.0089887595, 0.018531952, 0.010957, 0.016189469, -0.008981829, 0.026224723, -0.010180792, -0.0053121694, -0.009633289, -0.021636782, 0.045602188, -0.01227378, -0.008940246, -0.0052740523, -0.0050176266, -0.018559674, 0.0047230837, 0.010333261, 0.0093283495, 0.00483397, 8.0956006E-4, -0.0163558, -0.002216003, -0.0013540315, -0.01129659, 0.010853043, -0.008884802, 0.012876727, 0.0038013372, 0.012814353, 0.021803113, 0.008850151, -0.020694245, -0.010166931, 0.01933588, -0.016827067, 0.046267506, 0.012142102, 0.0051354435, -0.005922047, 0.036869854, 0.01030554, 0.01882303, -0.019086387, 0.001037831, 0.007935335, 0.013978664, -0.0058319513, 0.012654953, -0.027555363, -0.02094374, -3.4652118E-4, 0.018088406, 0.047930807, 0.00458101, 0.015967695, 0.0072215013, 0.008663029, -0.009397654, 0.013292552, 0.026723713, -0.004206767, -0.014997437, 0.017908214, -0.00654232, 0.007775935, 0.0070309145, 0.03176906, 0.021220956, 0.00696161, -0.010943139, 0.022121912, 0.024104012, -0.010977791, 0.014623193, 0.014817245, -0.019931898, -0.012176754, 0.010360983, 0.014900411, -0.008136317, -0.009404585, -0.006857654, -0.013659865, -0.027555363, -0.004265676, -0.018559674, -0.0056760167, 0.00417558, 0.015967695, 0.02863651, 0.014512307, -0.021387286, 0.008323438, -0.038644042, 0.014443003, -0.007166058, -0.028858284, -0.006757163, 0.05075842, 0.015413262, 0.010991652, 0.039946962, -0.018351762, 0.07224274, 0.009924366, 0.022662485, -0.030632472, 0.01210745, 0.010943139, 0.016120166, 0.0130084045, -0.008371951, 0.01555187, -0.0112272855, 0.018296318, 0.0055893864, 0.03193539, -0.017118147, 0.07773163, 0.021220956, -0.016646877, 0.016092444, -0.0027790999, 0.011234216, 0.015052879, 0.023355527, -0.012266849, -0.02749992, 0.005793834, 0.004272606, 0.016619155, -0.018656699, 0.006732906, -0.014186577, 0.017991379, 0.017741883, -0.008482838, -0.019876454, -0.01406876, -0.009785758, 0.02833157, -7.2119717E-4, -0.0024100547, -0.009508541, 0.029994873, -0.01014614, 0.0031186906, -0.02178925, -9.659278E-4, -0.028525623, 0.008517491, -0.0045117056, 0.03140868, -0.010652061, -0.00900262, 0.0031377492, 0.023785213, -0.0033023467, -0.0068819104, -0.015468705, -0.018781448, -0.023161475, 0.022011025, -0.0067987456, 0.0013341065, -0.040861778, -0.026086114 ], + "id" : "6ca8bac9-e32e-49be-8c83-bf588812159a", + "metadata" : { + "source" : "movies.csv" + } + }, + "2834f938-29bc-4f85-aa46-ae220421883e" : { + "text" : ",420818-447404-320288-788106-458156-429617-373571-72839-301528-287947-329996-812-479455-299534-330457-412117-299537-420809-399579-384018-2768\r\n1865,Pirates of the Caribbean: On Stranger Tides,Adventure-Action-Fantasy,en,Captain Jack Sparrow crosses paths with a woman from his past and he's not sure if it's love -- or if she's a ruthless con artist who's using him to find the fabled Fountain of Youth. When she forces him aboard the Queen Anne's Revenge the ship of the formidable pirate Blackbeard Jack finds himself on an unexpected adventure in which he doesn't know who to fear more: Blackbeard or the woman from his past.,117.087,Walt Disney Pictures-Jerry Bruckheimer Films-Moving Picture Company,5/15/11,379000000,1045713802,137,Released,Live Forever Or Die Trying.,6.5,13190,Johnny Depp-Pen��lope Cruz-Geoffrey Rush-Ian McShane-Kevin McNally-Sam Claflin-Astrid Berg��s-Frisbey-Stephen Graham-Keith Richards-Richard Griffiths-Greg Ellis-Damian O'Hare-��scar Jaenada-Anton Lesser-Roger Allam-Judi Dench-Christopher Fairbank-Paul Bazely-Bronson Webb-Richard Thomson-Yuki Matsuzaki-Robbie Kay-Steve Evets-Ian Mercer-Deobia Oparei-Gemma Ward-Sebastian Armesto-Juan Carlos Vellido-Tristan Laurence Perez-Norberto Mor��n-Gerard Monaco-Tyrone Lopez-Luke Roberts-Daniel Ings-Emilia Jones-Patrick Kennedy-Jody Halse-Clifford Rose-Paul Hunter-Jorgelina Guadalupe Airaldi-Brea Berrett-Toni Busker-Sanya Hughes-Daphne Joy-Antoinette Kalaj-Derek Mears-Danny Le Boyer-Kitt Barrie-Steve Morphew-Alan J. Utley-Moore-Fileena Bahris-Gintare Beinoraviciute-Nicola Bertram-Andrew Crayford-Jason Curle-Kristofer Dayne-Nichola Fynn-Sean Francis George-Bobby Holland Hanton-Randy Herman-Harley Jay-Aaron King-Jeremy King-Matt Lasky-LeJon Stewart-Teresa Mahoney-Edward Mitchell-Kelly Mumme-Salomon Passariello-Siegfried Peters-David Pinkus-Jean Pierre Prats-Steve Saunders-Santi Scinelli-Kristen StephensonPino-Richard Stoker-Robert Stone-Sean Talo-Harvey Walsh-Loretta Walsh-Hannah Walters-Claira Watson Parr-Chuck Williams,england-spain-sea-captain-mutiny-sword-prime minister-sailing-silver-ship-duke-mermaid-pirate-soldier-battle-swashbuckler-18th century-aftercreditsstinger-blackbeard-1750s,/keGfSvCmYj7CvdRx36OdVrAEibE.jpg,/wQ0r0JRs7elHSKg1SFtdWdKTYKi.jpg,285-58-22-166426-12444-12445-10138-675-767-10195-10528-674-672-673-41154-58574-1930-49538-425-12155-121\r\n324852,Despicable Me 3,Action-Animation-Comedy-Family-Adventure,en,Gru and his wife Lucy must stop former '80s child star Balthazar Bratt from achieving world domination.,34.", + "embedding" : [ 9.299178E-4, -0.039676495, -0.0028098598, -0.03753182, -0.02664759, 0.013766135, -0.004460254, -0.004175415, -0.014838472, -0.027961204, 0.024838021, 0.03251864, 0.003833607, -0.004259191, 0.017479103, 0.03680799, 0.023551216, -0.026714612, 0.021165265, -0.035119057, 0.0027143548, 0.0051103593, -0.010482101, 0.0058241338, -0.00517738, 0.015495279, 0.024288448, -0.00959072, -9.885613E-4, -0.008960722, 0.01686251, -0.010957951, -0.010870823, -0.011259546, -0.030695666, -0.006427324, -0.004366425, -0.038416497, 0.015441663, 0.004440148, -0.008994232, 3.032705E-4, -0.02280058, -0.0072516836, -0.0075197676, 0.01892676, -0.001883293, -0.018752504, -6.752376E-4, 0.022116965, 0.016594425, 0.028095247, -0.021366328, -0.020173352, 8.9221844E-4, -0.025079297, -0.025159722, 0.010012953, 4.1490252E-4, 0.0062229093, 0.017760592, -0.021513775, -0.022827389, -0.025266957, -0.021862283, -0.0038034476, -0.01495911, -0.025736105, 0.0151199605, -8.444659E-4, 0.03010588, 0.033296086, 0.021567391, 0.017009957, 0.015951023, -0.02804163, -0.027907588, -0.007131045, -0.014476558, 0.021393137, 0.0092154015, 4.3438052E-4, 2.2954728E-4, 0.004627807, 0.010569228, 0.012553053, 7.0246495E-4, 0.010502207, -0.032545447, 0.019489737, 0.005475624, 0.032572255, 0.0030427582, 0.01006657, 0.0018112453, 0.01032125, -0.029864604, 0.024409086, -0.017773997, -0.03975692, 0.02242526, 0.0043429676, -0.0012666988, -0.00993923, -0.0035320122, -0.0060419524, -0.01035476, -0.023162493, 0.012673691, 0.008069341, -0.0056565814, 0.012760818, 0.015937619, -0.015321025, -0.008846786, -0.027773546, 0.008900402, 6.8152085E-4, -0.005629773, -0.028282905, 0.021527179, 0.024502916, 0.012807732, -0.013551667, 0.034287997, 0.024181215, 0.0052041886, 0.0023876268, 0.0025132913, -0.008840083, 0.025776317, -0.002613823, 0.013015498, 0.0019000483, -0.03249183, 0.051659867, -0.019275269, -0.015106557, -0.018940164, -0.04074883, 0.020923989, 0.02991822, -0.021513775, -0.027988013, -0.021285903, -0.005053391, 0.024047172, -0.02270675, -0.0038671177, -0.003823554, 0.029542902, 0.027853971, 0.002163106, 0.023323344, 0.023859512, 0.021982921, 0.0088869985, -0.0065211533, 0.007224875, -0.011453907, 0.0043463185, -0.011118801, -0.004386531, -0.012104011, 0.0079084905, 0.029676944, 0.017867826, -0.018471016, -0.012620074, 0.00558956, -0.016379958, 0.018859738, -0.013739326, 0.01788123, 0.021982921, 0.031231834, 0.007157854, -0.013779539, -0.009724762, -0.005817432, -0.009376252, 0.0075063636, 0.0269961, 0.02664759, -0.013926986, 9.670936E-5, 0.020347606, -0.011601353, 0.018511228, -0.024636958, -0.007828065, 0.020066118, -8.330514E-5, 0.005757113, -0.64383155, -0.0037129691, -0.0032505235, -0.019395906, 0.020615691, 0.0051840823, 0.009436571, -0.00279478, -0.025360785, -0.01105178, -0.012184436, 0.023283131, 0.027130142, -0.009791783, -0.026634187, -0.0130423065, 0.007238279, -0.0021061383, 0.026875462, 0.0014292251, -0.030239921, 0.013953794, 0.020629095, 0.018605059, 5.5376184E-4, 0.0015213791, -0.003950894, -0.027800353, -0.014985919, -0.0087395515, -0.007285194, 0.013953794, 0.014074432, -7.133559E-4, 0.030722475, -0.020092927, -0.007539874, 0.0479603, 0.034153953, 0.037719477, -0.026768228, 0.0015548896, 0.016500596, -0.0045339777, -0.023256322, 0.012868052, 0.018149314, 0.01320986, 0.003773288, -0.0056264214, -0.0048489766, -0.0056230705, -0.0028668276, -0.005331529, -0.009047849, 0.0044066375, 0.020226968, -0.02892631, 0.019328887, -0.006571419, -0.017773997, 0.022813983, -0.0038135007, 0.014020815, -0.010810504, 0.031526726, -0.001621073, -0.006621685, 0.026888866, -0.013926986, 0.02140654, -0.014610601, -0.025923762, -5.2653457E-4, 0.0017810859, 0.0069567906, 0.018940164, 7.3262444E-4, -0.023591429, -0.0034750442, 0.008062638, 0.0044569033, -0.016366554, 0.024006959, 0.026929079, 0.015589109, -0.025039084, 0.01950314, 0.018886548, -0.012573159, 0.010817206, 0.017988464, 0.015227195, 0.0054923794, -0.017841017, 0.004460254, -0.019261865, 0.0016981472, 0.026218656, -0.058388785, -0.01788123, -0.023497598, 0.013471242, -0.0036660545, 0.035440758, 0.0061625903, -0.0031550184, -0.0028132107, 0.030668857, -0.030829707, -0.006501047, 0.02298824, -0.0031449653, -0.0023390364, -0.0040849363, -0.03230417, 0.028095247, 0.004125149, 0.021071436, -0.01362539, 0.007573385, 0.016514, -0.0013379088, -0.02435547, 0.0067825355, 0.033859063, 0.003511906, 0.0055124857, -0.003944192, 0.0026925728, 0.013055711, 0.011996778, 0.008109554, -0.0088869985, 0.005247752, 0.012177735, 0.03388587, -0.005411954, 0.016514, 0.010582632, -0.022626325, -0.0045205737, -0.027478652, 0.0113801835, -0.015026132, -0.020696117, -0.031017367, -0.011675077, -0.009637634, 0.0011050104, -0.011279652, 0.0055526984, 0.001759304, 0.010415079, 0.004590946, -0.0025903657, -0.02321611, -0.007828065, 0.027304398, -0.011695183, 0.01800187, 0.012720605, -0.0078012566, -0.02530717, 0.025065893, 0.0067691314, -0.011675077, 0.024972063, 0.006903174, -0.019449525, -0.0048824875, -0.016205702, -0.00863902, 0.0060386015, -0.01505294, 0.03847011, -0.027719928, 0.016808894, 0.010234122, -0.010716675, -0.0024714032, -0.0024697278, -0.027961204, 0.0025199936, 0.013967198, 0.021634413, 0.012365393, -0.002943902, -0.018779313, 2.4148541E-4, -0.016634637, -0.0184174, 0.0015121637, 0.002050846, -0.011433801, 0.011949862, -0.006692057, 0.014422942, 0.0053114225, 0.014838472, 0.03562842, 0.033456936, 0.009088062, -0.017103786, 0.0011921378, -0.03439523, 0.012673691, -0.025213338, 0.027639503, -0.01371922, 0.018216336, -0.016232511, -0.013196455, -0.016715063, 0.016393362, 0.017157402, -0.016111873, -0.009047849, 0.009067955, 0.012854648, -0.0023004995, -0.005998389, -7.862413E-4, 0.02175505, -0.025159722, -6.186886E-4, 0.009677847, -0.024730787, -0.01765336, -0.01642017, -0.0010966328, -0.012298373, -0.0031047526, 0.005773868, -0.005881102, 0.016849106, 0.024771, 0.003153343, 0.037612244, -0.025762912, -0.0072918963, 0.013605284, 0.018216336, 1.7603512E-4, -0.009470082, -0.01216433, 0.014784856, 0.007774448, -0.009785081, 0.037210118, -0.010187208, 0.032116514, -0.013283582, 0.0127742225, -0.003763235, -0.02108484, 0.0068897693, 0.009664443, 0.029569712, 0.022948027, 0.0072516836, -0.008344128, 0.016902722, 0.019824842, 0.023926534, -0.0037799901, -0.02089718, 0.008491574, 0.003880522, -0.014985919, -0.0044703074, -0.021915901, 0.019932076, 0.0076270015, -0.015629321, -0.010535718, 0.0029589818, -0.006119027, 0.0065781213, 0.020575479, -0.010917738, -0.0476386, 0.023108877, 0.03471693, -0.007586789, -0.019891864, -0.0068395035, -0.0037498306, -0.014744643, -6.9953274E-4, -0.0081162555, 0.0390599, -0.014811664, -0.0088869985, -0.0047551473, -0.02544121, 0.002950604, -0.02330994, 0.014918897, 0.020401224, 0.0018598356, 0.010475398, -0.008122957, -0.016916126, 0.015280812, -0.013544965, 0.006370356, -0.0065647173, 0.0018112453, 0.007238279, -0.0020223618, 0.005887804, -0.045815628, 0.0040480746, -0.03149992, 0.0072650877, -0.016581021, -0.007218173, 0.017720379, -0.0023340099, -0.020307394, -0.020079523, -0.013203157, -0.0020223618, 0.07281173, 0.036593523, 0.0055057835, -0.012532947, -0.003106428, 0.006842855, -0.004175415, -0.011775608, -0.011152311, 0.0016344772, 0.029569712, -0.0073254067, 0.023618236, 0.016755275, 0.032920767, -0.012271564, -0.003756533, -0.008236893, 0.0021228935, -0.007834767, -0.017948251, -0.008786467, 0.0015967778, 0.036405865, 0.0018112453, -0.023631642, 0.007533172, 0.01609847, 0.003099726, 0.014650813, -8.9221844E-4, -0.005107008, -0.0036023844, -6.4424035E-4, -0.003511906, -0.006561366, 0.012486031, 0.0012926696, 0.015414854, 0.009818592, 0.004818817, 0.0015389721, 0.0041519576, -0.0107971, 0.017130595, -0.029945029, -0.012995392, 0.009878911, 0.032813534, -0.03562842, 0.03766586, 0.011360077, -0.010971354, -0.018538037, 0.028068438, 0.0067590782, -0.01371922, 0.0029924922, -0.0044032866, -0.0015138392, 0.013766135, -0.04544031, 0.023430578, -0.005153923, 0.004781956, -0.02296143, -0.03337651, -0.018752504, -0.024918446, 0.010113484, -0.0016922829, -0.023658449, 6.111487E-4, -0.01063625, -0.0032186885, 0.008806573, 0.027237376, -0.019771226, 0.014302303, 0.021205477, -0.024811212, -0.034636505, -0.009456677, -0.026821846, -7.7618816E-4, 0.018497825, 0.01286135, 0.008424553, -0.011413694, 0.0019151281, 0.025481423, 0.01384656, -0.01813591, -0.017076977, 0.03233098, 0.009811889, 0.019731013, 0.0132500725, 0.009624231, 0.013390817, 0.0056096665, -0.021835476, 0.005468922, -0.017867826, -8.4530364E-4, -0.017452296, -0.0057973256, 0.014516771, -0.0238193, -0.014074432, -0.035923313, -0.0050600935, -0.0013680683, 0.007727533, 0.005174029, 0.005485677, 0.016594425, 0.021044627, 0.016822297, 0.013350604, -0.018283358, 0.005230997, 0.009094764, 0.027210567, -0.010086676, 0.028416948, -0.032947574, -0.036030546, -0.01908761, 0.020535266, 0.01521379, -0.009041147, -0.02045484, -0.011507523, -0.031526726, -0.024221428, 0.010951248, -0.0051572737, -0.012177735, 0.0053616883, -0.03219694, 0.00444685, 0.007700725, -0.028953116, 0.0021681327, -0.027585886, 7.5985177E-4, -0.024945255, -0.0036023844, 0.030561624, -0.003451587, 0.020012502, -0.021674626, -0.009389657, -0.0047283387, -0.032947574, -0.05034625, 0.0046311584, 0.05506454, 0.009007636, 0.025106106, 0.013444433, 0.027746737, 0.009637634, 0.011246141, 0.011755502, -0.018779313, -0.007821362, -0.0428667, 0.0057872725, 0.013953794, 0.030025454, 0.00997274, 0.027934397, -8.0676656E-4, 0.015870597, 0.008773062, 0.01822974, -0.013049009, -0.02048165, -0.0066618975, -0.0020793297, -0.038121603, -0.001940261, -0.035360333, -0.010589334, 0.037773095, -0.0053047203, 0.008746254, -0.005840889, 0.030695666, -0.0016034798, 0.013156243, -0.0070171095, 0.017224424, -0.022371644, -0.0077543417, -0.018685484, -0.013229966, -0.01203699, -0.011976671, 0.015039535, -0.009088062, -0.02588355, 0.0021078137, 0.028014822, -0.022130368, -0.014409537, 0.029837795, -0.020347606, -0.018403996, -0.03737097, -0.010890929, -0.02871184, -0.013578475, 0.012486031, -0.009007636, 0.0012558079, -0.023618236, -0.0479603, 0.008793169, 0.016634637, 0.036539905, 0.016272724, 0.04661988, 0.024502916, 0.013075817, -0.010823908, 0.011976671, -0.0069433865, -0.008719445, 0.031044176, 0.012117416, -0.014691026, -0.002947253, 0.00346164, -0.007285194, -0.03616459, -0.029489286, 0.025615465, -8.2896726E-4, 0.020414628, -0.02664759, 0.00552589, -0.034368422, 0.017948251, 0.0017358466, -0.004125149, 0.0077342354, -0.02029399, -0.04144585, 0.0070104073, -0.0010446914, 0.014637409, 0.010776994, -0.029569712, 0.028148863, -0.0032639278, 0.008464766, -0.015857194, -0.0047685513, 0.027304398, -0.0196908, 0.024918446, 0.011929756, 0.015414854, 0.012626776, -6.647656E-4, 0.03077609, 0.029140776, -0.014275495, 0.014168262, -0.0029707104, 0.005569454, 0.0034381826, 0.021017818, -0.021996327, -0.027478652, -0.0055024326, -0.02277377, 0.024972063, 0.017841017, -0.0031198324, -0.0058040274, -0.012016884, -0.022331432, 0.002337361, -0.0024362172, 0.023939937, -0.038496923, 0.0065647173, -0.019650588, 9.15257E-5, 0.0124190105, -0.012083905, 0.0025937166, -0.0042290315, 0.0026858707, -0.012680393, -0.0018615111, -0.009872208, -0.01806889, -0.037880328, -0.016406767, -0.0058509423, -0.005220944, 0.01788123, -0.023443982, 0.017586337, -0.013357306, -0.0054354114, 0.004135202, -0.004302755, -0.00993923, 0.0010765265, 0.014154857, -0.018336974, -0.009188593, 0.0017056871, 0.015548896, 0.0030980506, 0.0041653616, 0.010683164, 0.0061659417, 0.03629863, -0.030910132, 0.004353021, 0.010207314, -0.018202933, -0.036432672, 0.008478169, 0.0130222, 0.0010924439, -0.0040882872, -0.025347382, -0.011319865, -0.0102542285, 0.027505461, 0.0023490896, -0.0040447237, 0.041311808, 0.012532947, 0.029837795, 0.022478878, 0.0078079584, -0.00679594, -0.011326566, -0.00578057, -0.01349805, 0.005582858, 0.010394973, 0.0028752054, 0.009516996, -0.019449525, -0.023470791, -0.004292702, -0.021915901, -0.033296086, -0.013390817, 0.036057353, 0.048308812, 0.0019218301, 0.010093378, 0.028122054, -0.009563912, 0.012841243, -0.014771451, -0.013364008, 0.016044851, -0.0010011278, 0.008377638, 0.020562075, -0.035816077, -0.009604124, 0.012412309, 0.015964426, 0.0054555177, 0.03632544, -0.022867601, -0.018966973, -0.01781421, -0.0011720315, 0.02836333, -0.005093604, 0.037451394, -0.025736105, -0.017331658, 3.9353955E-4, 0.03600374, -0.00812966, -0.011641566, 0.01876591, -0.021768454, -0.007988916, -0.013980602, -0.029328436, 0.0033678105, -0.016487192, 0.01676868, 0.010475398, 0.018631866, 0.025602061, 0.014878685, -0.0088601895, 0.007043918, 0.0021396487, -0.0078079584, -0.0062396647, -0.0074326405, -7.711616E-4, 0.0122112455, -0.03814841, 0.003185178, -0.016808894, -3.805542E-4, -0.012780924, 0.004617754, -0.015522088, 0.023966746, 0.021540582, -0.039113518, -0.0029338489, 0.004544031, 8.6624775E-4, -0.0039844047, -0.0077811503, -0.018377187, -0.008458063, -0.0033192202, 0.0010002899, -0.011822523, -0.026728015, 0.0099258255, -0.0023072015, -0.0017777347, 0.021138456, 0.18186846, -0.008478169, 0.016152086, 0.04544031, 0.0067892377, 0.014275495, 0.013310391, 0.032089703, -0.0048456257, 0.018792717, -0.0051974864, -9.6007733E-4, -0.0043329145, 0.002159755, 0.013967198, 0.0013957145, -0.025079297, -0.02702291, -0.014181665, -0.039998196, -0.005408603, 0.005458869, -0.025990784, -0.020910583, -0.0013362332, 8.40696E-4, 0.0056163683, 0.013035605, 0.0029707104, 2.627175E-5, -0.01156114, -0.018966973, -0.005388497, 0.021902496, -0.022867601, -0.0038972772, 0.007586789, 0.009389657, 0.008317319, 0.0020307393, 0.0017777347, -0.0050835507, -0.018122507, -0.02305526, 0.006316739, 0.013504752, -0.027961204, -2.879813E-4, -0.008967424, -0.014329112, -0.033859063, 0.002642307, 0.022116965, 0.024945255, -0.004564137, 9.994522E-4, -0.0014275495, 4.4527146E-4, 0.0052075395, -7.686483E-5, 0.013229966, 0.027666312, -0.022411857, -0.0011318189, -0.0131026255, 0.027639503, -0.03455608, -0.020146543, 0.006330143, -0.043295633, -0.008907105, -0.02432866, -0.0128948605, 0.006869663, -0.011614758, -0.011534332, 0.013055711, -0.001886644, 0.0215942, 0.010214016, -0.013598582, -0.02073633, 0.0032438214, -0.0041285, -0.011889543, -0.0308029, 0.008236893, -0.018202933, -0.0012491058, -0.0071846624, -0.0041050427, -0.011802416, -0.004869083, 2.7185434E-4, -0.007975511, 0.03273311, 0.019838247, 0.019261865, -0.011802416, -0.0081765745, -0.024006959, 0.015321025, 0.017197615, -0.011038376, -0.029435668, -0.020079523, -0.0042960527, 0.008250298, 0.026526952, -0.0028148864, -0.013424327, -0.03214332, 3.9814724E-4, -0.023939937, -0.0014208474, 0.031124601, 0.020066118, -0.007472853, 0.03042758, -0.007841469, -0.0134578375, -0.022331432, 0.008250298, 1.5582406E-4, -0.010629547, -0.0428667, -0.01952995, 0.007834767, -0.008498276, -0.024409086, 0.015280812, -0.037719477, 0.011614758, -1.16239724E-4, -0.0017115514, 0.028014822, 0.023805896, 0.0019838247, 0.012378798, 0.009436571, 0.014396133, -0.0193691, 0.003124859, 0.021714838, 0.0020340905, -0.032170128, 0.023618236, -0.011634864, 0.0039307876, -0.029140776, -0.013900177, -0.012760818, -0.0061826967, 0.01203699, 0.0520888, 0.009396358, -0.021259094, -0.03699565, -0.003458289, 0.030534815, -0.032223746, 0.017921444, 0.019422716, -0.002086032, -0.025052488, -0.010348058, -0.17135955, 0.018631866, -0.008096149, -0.0151199605, 0.030213114, 0.017666763, 0.027827162, 0.02263973, 0.015857194, -0.023068665, 0.023068665, 0.004805413, -0.037719477, -0.006269824, -0.0041452553, 0.018028677, -0.017170807, 0.038604155, 0.016822297, -0.00971806, 0.03943522, 0.0034381826, -0.010327952, -0.0042994036, 0.009979443, -0.0060955696, -0.004188819, 0.006380409, -0.010663058, -0.010897632, -0.024998872, -0.0012801031, 0.0067155147, 0.008545191, -0.0065948768, 0.0031164812, -0.017143998, -0.014610601, 0.005046689, -0.0147044305, 0.034341615, 0.025186531, 0.024958659, 0.009516996, 0.0024965361, 0.009429869, 0.0117353955, -0.011205928, 0.011534332, -0.019623779, -0.023470791, -0.032411404, 0.02337696, -0.0099861445, 0.0012524569, 0.033617787, -0.01156114, -0.006018495, 0.0058609955, -0.0053616883, -0.01892676, -0.009537103, 7.8833575E-4, -0.008853488, 0.0042826487, -0.019261865, -0.014489963, 0.02054867, -0.040882874, 0.011460609, -0.039354794, 0.0025032382, 0.00911487, 0.006983599, 0.0035655226, -0.0018950216, -0.028792266, 0.0070774285, 0.002213372, 0.010053165, -0.008538488, 0.04576201, -0.015776768, 0.016983148, 0.0054454645, -0.024221428, 0.0023390364, -0.0155354915, 0.008866892, -0.0060419524, 0.0072650877, -0.016152086, -0.024744192, -0.014878685, 0.0073388107, 0.011326566, -0.0025786369, -0.003277332, -0.004996423, -0.018109102, -0.0060520056, -0.018631866, -0.009061254, 0.027666312, 0.022827389, 0.007727533, 0.013766135, 0.007915192, 0.039140325, -0.008665829, -0.0095102945, -0.006393813, 0.015522088, 0.0074326405, -0.025950572, 0.0177874, -0.021446753, -0.024636958, 2.837925E-4, 0.0099861445, 0.015776768, -7.5356854E-4, -0.0063737067, 0.0060955696, 0.007814661, -0.0066551957, -0.08589425, -0.012955179, 0.015843788, 0.03214332, -0.022251006, 0.025709296, -0.01572315, 0.01419507, 7.8540354E-4, 0.03128545, 0.024409086, -0.025159722, 0.007131045, -0.01083061, 0.030373964, -0.012486031, -0.00949689, -0.0078481715, -0.008719445, 0.026178444, -0.010844015, 0.0025836634, -0.007935299, -0.012646882, -0.018122507, 0.022545898, -0.028792266, 0.019704204, 0.009516996, 0.014168262, -8.771387E-4, -0.0101604, 0.0041050427, -0.02892631, -0.035655227, -0.008900402, -0.008940615, -0.008062638, 0.009027743, -0.058067083, 0.02734461, 0.016728468, 0.00612908, -0.028148863, -0.017143998, 0.0033058159, -0.017572934, 0.031794813, -0.014731239, -0.026151635, -0.003401321, 0.0042792973, -0.023792492, -0.0017375221, 0.034368422, 0.00975157, 0.0174657, 0.005160625, 0.008840083, -0.025521636, -0.015937619, -0.02200973, -0.018913355, 0.009758273, 0.004627807, 0.0066551957, 0.0017777347, 4.1762524E-4, 0.013357306, 0.003201933, -0.017720379, 0.044930946, -0.035360333, -0.006490994, -0.0187391, 0.0018966972, -0.01108529, -0.005877751, 0.023779087, -0.032572255, -2.662518E-5, -0.03131226, 0.0054454645, -0.0025099404, 0.0151199605, 0.012666988, 0.022492282, 0.029301627, -0.017063573, -0.029006734, 0.010146995, 0.019489737, 4.628645E-4, -0.006983599, -0.009108168, 0.03613778, 0.012392202, 0.011105397, 0.0070305136, 0.0034716933, -0.011755502, -0.0019335588, -0.0670211, 0.023108877, -0.002518318, -0.01349805, -0.0067825355, 0.005150572, 0.015669534, 0.015227195, -0.0095102945, 0.006903174, -1.1529724E-4, 0.020856967, -0.008846786, -0.0013353955, -0.0054454645, 0.0032404703, -0.0023876268, 0.0072449814, -0.0019201547, 0.005415305, -0.019074205, 0.008907105, 0.021835476, -2.454648E-4, -0.0018799419, 0.03230417, 0.007332109, 0.026848653, -0.005354986, -0.026312485, 0.02261292, -0.011628161, -0.006544611, 0.0062932814, -0.03235779, -0.02569589, -0.008759658, 0.007962107, 0.014744643, 0.014020815, -5.110359E-4, -0.020964202, -0.0060017398, -0.022371644, 0.014369325, 0.016433574, -0.025521636, 0.015803576, 0.021942709, 0.0114405025, 0.041687127, 0.01632634, -0.009664443, 9.500242E-4, -0.007466151, -0.03546757, 0.03560161, -0.001124279, -0.0035052036, -0.023082068, 0.02263973, -0.0026624133, 0.034073528, -0.030320346, 0.0022401805, 0.0016118576, -0.008625616, -0.004624456, 0.0034850973, -0.03351055, 0.014463155, -0.00908136, 0.0011552763, 0.025387594, 0.0131897535, 0.002372547, -0.014932302, 0.013296987, -0.004664669, 0.025682487, 0.024650361, -0.023511004, -0.03198247, -0.0060017398, 0.009905719, 0.025655678, 0.0025618817, 2.4274205E-4, -0.006501047, 0.01444975, 0.0037833413, 3.9940389E-4, 0.012486031, -0.0074259383, -0.011299758, 0.018792717, -0.012888159, -0.025508232, -0.017237827, 0.013551667, -0.0055594007, -0.00441334, -0.029194392, -0.015374641, -0.010287739, -0.001854809, -0.002312228, -0.026218656, 0.021031221, 0.01660783, 0.021192074, 0.016782084, -0.025454614, 0.0017727081, -0.031178217, 0.0168357, -0.013806348, -0.016031448, -0.01800187, 0.051499017, 0.014476558, 0.0109646525, 0.037451394, -0.017854422, 0.046217754, 0.0018414048, 0.02045484, -0.023430578, 7.55663E-4, -0.009979443, -0.019060802, 0.0071377475, -0.010167101, 0.0075197676, -0.019731013, -0.001322829, 0.014610601, 0.01540145, -0.010488803, 0.06090878, 0.02836333, -0.0042290315, 0.017130595, -0.023068665, 0.0034985016, 0.009919124, 0.01644698, -0.025079297, -0.011239439, 0.012626776, -0.009201998, 0.005046689, -0.018350378, -0.0032371194, -0.0031231835, 0.002798131, 0.024141, -0.029569712, -0.021218881, -0.0027043016, -0.009992846, 0.019355694, 0.005328178, -0.024275044, -0.0269961, 0.024797808, -0.008102851, -0.008062638, -0.036593523, 0.019851651, -0.01765336, 0.009269019, 0.0017995166, 0.029435668, 0.002617174, -0.021929305, -0.008290511, 0.015361237, 0.014798259, -0.00527121, 0.0011661672, -0.028792266, -0.012452521, 0.008451361, -0.01781421, -0.0022653134, -0.015039535, -0.008813275 ], + "id" : "2834f938-29bc-4f85-aa46-ae220421883e", + "metadata" : { + "source" : "movies.csv" + } + }, + "1ab95c16-d35b-4e50-ae75-ca3256539eb4" : { + "text" : "7,17471,Daniel Radcliffe-Rupert Grint-Emma Watson-Helena Bonham Carter-Robbie Coltrane-Ralph Fiennes-Michael Gambon-Brendan Gleeson-Richard Griffiths-Jason Isaacs-Gary Oldman-Alan Rickman-Fiona Shaw-Maggie Smith-Imelda Staunton-David Thewlis-Emma Thompson-David Bradley-Warwick Davis-Tom Felton-Robert Hardy-George Harris-Natalia Tena-Julie Walters-Mark Williams-Harry Melling-Jason Boyd-Richard Macklin-Kathryn Hunter-Miles Jupp-Jessica Hynes-Adrian Rawlins-Geraldine Somerville-Peter Cartwright-Brigitte Millar-Timothy Bateson-James Phelps-Oliver Phelps-Bonnie Wright-Jamie Wolpert-Nicholas Blane-Daisy Haggard-Chris Rankin-Sian Thomas-Jamie Waylett-Josh Herdman-Katie Leung-Matthew Lewis-Evanna Lynch-Ryan Nelson-William Melling-Apple Brook-Devon Murray-Alfred Enoch-Afshan Azad-Shefali Chowdhury-Jim McManus-Nick Shirm-Sam Beazley-John Atterbury-Arben Bajraktaraj-Richard Leaf-Tony Maudsley-Alec Hopkins-Robbie Jarvis-James Walters-Charles Hughes-James Utechin-Jason Piper-Michael Wildman-Richard Cubison-Peter Best-Tav MacDougall-Richard Trinder-Nathan Clarke-David Heyman-Cliff Lanning-James Payton-Christopher Rithin-Lauren Shotton-Timothy Spall-Lisa Wood-Olga Velasco,prophecy-witch-loss of loved one-professor-magic-child hero-dying and death-school of witchcraft-black magic-sorcery-court-supernatural-occult-wizard-scholar-mystical land-ministry-based on young adult novel,/5aOyriWkPec0zUDxmHFP9qMmBaj.jpg,/pkxPkHOPJjOvzfQOclANEBT8OfK.jpg,767-12444-674-12445-672-673-671-58-285-22-1865-12-121-70160-585-12155-425-8587-118-557-9806\r\n767,Harry Potter and the Half-Blood Prince,Adventure-Fantasy,en,As Lord Voldemort tightens his grip on both the Muggle and wizarding worlds Hogwarts is no longer a safe haven. Harry suspects perils may even lie within the castle but Dumbledore is more intent upon preparing him for the final battle fast approaching. Together they work to find the key to unlock Voldemorts defenses and to this end Dumbledore recruits his old friend and colleague Horace Slughorn whom he believes holds crucial information. Even as the decisive showdown looms romance blossoms for Harry Ron Hermione and their classmates. Love is in the air but danger lies ahead and Hogwarts may never be the same again.,137.468,Warner Bros. Pictures-Heyday Films,7/15/09,250000000,933959197,153,Released,Dark Secrets Revealed,7.", + "embedding" : [ 0.011832921, -0.02590729, -0.030307679, -0.038310885, -0.019581731, 0.03855841, -0.0021159684, -0.0064080665, -0.024600925, -0.033580467, 0.01595141, 0.027296163, 0.008340112, 0.008518878, 0.013049903, 0.015098834, 0.018605394, -0.02772245, 0.013709962, -0.031985328, 5.2560797E-5, -0.013895603, -0.02341832, 0.012754252, -0.008518878, 0.00842262, 0.035505638, -0.016116425, 3.7923275E-4, -0.0061605447, 0.010004009, -0.020008018, -0.013235545, -0.025866037, -0.018426629, 3.3690478E-4, 0.0017618745, -0.014205006, 0.022221964, 0.009419583, 0.022882022, 0.003925972, -0.017477795, -0.004751045, -0.030720215, 0.019485472, 0.010657192, -0.00627743, -0.0073225223, 0.031407777, 0.02127313, 0.035890672, -0.014328767, -0.03176531, -0.0093302, 0.011860424, -0.0049366863, 0.011805419, -0.012623616, 0.018124102, 0.0073018954, -0.022923276, -0.030005153, -0.0316828, -0.023253305, -0.01029966, -0.017959088, -0.020860594, 0.011881051, -0.007941327, 0.017560303, 0.014397522, 0.022263218, -0.002136595, 0.016831487, -0.018729156, -0.030692713, -0.011062853, -0.0014937258, -0.011640404, 0.019155443, -0.013709962, -0.025178475, -0.002612731, 0.019306706, 0.0043419464, -0.01878416, 0.025591012, -0.026402334, 0.025082218, -0.0039912905, 0.03520311, -0.010808456, 0.004465707, -0.0024047438, 0.006610897, -0.014645045, 0.051044513, -0.015552625, -0.018385375, -3.8739754E-4, -0.0067243446, -0.021218125, -0.008071964, -0.0011198646, -0.011049102, -0.0061605447, 0.007026871, 0.011544146, 0.009694607, 0.005637998, -0.004293817, 0.012094194, -0.035560645, -0.004926373, -0.0022930151, 0.014136249, -0.032865405, -0.020228038, -0.032205347, 0.027846212, 0.021933189, 0.027791206, -0.033167932, 0.044498935, 0.04062109, -6.13648E-4, -0.0069753043, 6.016157E-4, 0.0058648936, 0.01707901, 0.0028688475, 0.01888042, 0.009000171, -0.028148739, 0.059240237, -0.021933189, -0.0032659138, -0.02103936, -0.018124102, 0.029152578, 0.030280177, -0.026099807, -0.018151606, -0.020076774, 0.005380163, 0.018399127, -0.0066590263, 0.017629059, -0.003100899, 0.030417688, 0.0068309163, 0.005820202, 0.010230904, 0.030747717, -0.02295078, -0.00452415, -5.152409E-4, -0.021231877, -0.02306079, -0.0030476132, -0.0021314383, -0.0048988704, -0.0021314383, 0.0013639487, 0.015538873, 0.013111784, -0.012754252, 6.342748E-4, 0.016391449, -0.012781755, 0.014425025, -0.041336153, 0.009460837, 0.005593307, 0.010870336, -0.008065088, -0.018536638, -0.027859963, -0.019650487, -0.021465648, 0.013648082, 0.02454592, 0.042601265, -0.01267862, 0.00452415, 0.016350195, 4.5164148E-4, 0.0031679363, -0.0037781466, 9.6086616E-4, 0.026086057, -0.0074944124, -0.017134015, -0.63321596, -0.028066231, -0.007851944, -0.012039189, 0.019980516, 0.014975074, 0.013187416, 0.0037093903, -0.019416716, -0.025370993, -0.020104278, 0.019031683, 0.013819972, -0.012589238, -0.004778547, -0.008663266, -0.0042319368, -0.012850511, 0.010835958, 9.711796E-4, -0.026856124, 0.021506902, -0.0013037871, -0.019843005, 0.019595481, 0.023610838, -0.020338047, -0.018632896, -0.010533432, 0.0050776363, -0.018921673, 0.009749612, 0.010815331, 0.01956798, 0.030472694, 0.018137854, -0.03176531, 0.045406513, 0.027062392, 0.03327794, -0.022428233, -0.011186614, 0.008567007, 0.010272158, -0.032397863, 0.017931584, 0.0054626702, 0.0055314265, 0.005772073, -0.01855039, -0.005871769, -0.012066692, -0.006514638, -0.011372255, 0.0019337647, -0.010320287, 0.010107144, -0.035478137, 0.032150343, -0.0069890553, -0.02284077, 0.038393393, 0.0037953355, 0.015855152, -6.003265E-4, 0.018962927, -0.0065799565, 0.0090483, 0.013304302, -0.027282411, 0.0011636966, 0.0027072707, -0.015098834, -0.008690768, 0.0048885574, -9.7547687E-4, 0.046314094, -0.004431329, 0.0032538814, 0.026443588, 0.0036371965, -0.0112484945, -0.01617143, 0.01369621, 0.026498592, -0.005524551, -0.01967799, 0.014074369, 0.011750414, 0.0045344634, 0.0012917548, 0.014136249, 0.022717008, 0.008443247, -0.009385205, -0.0034154581, -0.020159282, 0.0010098548, 0.02081934, -0.058910206, 0.007948203, -0.024655929, 0.009838995, -0.016927747, 0.015305103, 0.020956853, -0.008353864, -0.0019423591, 0.029730128, -0.010739699, 0.0068309163, 0.0045722793, -0.012224831, -0.0065077627, 0.010093392, -0.025508504, 0.028877553, 0.02590729, -0.0038365892, -0.01216295, 0.008291983, 0.015786396, 0.009942129, -0.027309915, -0.009605224, 0.02748868, -0.00859451, -0.004895433, 6.411504E-4, 0.01855039, 0.02352833, -0.0068309163, 0.013895603, -0.027584938, 0.021451896, -0.0056276848, 0.023280809, -0.0014559099, 0.007398154, 0.0015238066, -3.904056E-4, -0.011750414, -0.01742279, -0.015112586, 0.009185812, -0.021066863, -0.028437514, 0.0039672256, -0.006782787, -0.016240185, -0.0063083703, 0.013799345, -0.014755054, -0.006401191, -0.0050398204, -0.0027296164, -0.019045433, -0.0091651855, 0.0069478014, -0.012341716, 0.010471551, 0.011207241, 0.0070131198, -0.01233484, 0.01709276, -0.016473956, -0.014163752, 0.017959088, 0.0033535778, -0.003802211, 0.01740904, -0.009254568, 0.011764165, 0.03270039, -0.011117858, 0.03528562, -0.0164052, 0.029262587, 0.0019372025, -0.0053389096, 0.0061467933, -0.005517675, -0.028657533, -0.0061742957, 0.026113559, 0.018165356, 0.010382168, -0.021135619, -0.0039741015, -0.011413509, -0.017780323, -0.012953645, -3.962069E-4, 0.0042491257, -0.010918465, 0.040126048, 0.008161346, -0.013833723, 0.0074050296, 0.0081269685, 0.043151315, 0.024490915, 0.019787999, -0.0023789604, 0.012933019, -0.033855494, 0.0016527242, -0.012960521, 0.005751446, -0.009598348, 0.0063496237, -0.0069890553, -0.01845413, 2.0906144E-4, -0.008181973, 0.047221676, -0.00944021, 0.0050776363, -0.024257144, 0.0105471825, 0.020984355, -0.014191254, 0.024518417, 0.022428233, -0.023803353, -0.007549417, 0.016597718, -0.010389043, 0.001297771, -0.01147539, 0.0042181853, -0.0039534746, 0.0025921043, 0.004252563, -0.004579155, -0.0075769196, 0.024559671, -0.02421589, 0.049586885, -0.0154013615, -0.016102673, 0.018742906, 0.016982751, -0.0045722793, 8.1218116E-4, -0.026196066, 0.008078839, 0.018385375, -0.0055658044, 0.043811373, -0.0073569003, 0.032287855, 0.0140193645, 0.0016767889, 0.011331001, -0.018921673, 0.0064115045, 0.01731278, 0.017560303, 0.017835326, 0.008670141, -0.022813266, 0.025384745, -0.0017962526, -0.0052735913, 0.022510739, -0.010354665, 0.024298398, -0.013510569, -0.041116133, -0.019485472, -0.007590671, 0.004716667, -0.0027261784, -0.003136996, -0.008807654, 0.0024666244, 0.007453159, 0.009928377, 0.033305444, -0.015277601, -0.035450634, 0.020901848, 0.02986764, -0.020186784, -0.031820312, -0.0036750124, -0.0019664238, -0.02138314, -0.023913363, 0.0058786445, 0.029152578, -0.0075631686, 0.0064458824, -0.013943733, 0.004647911, 0.018605394, -0.019086687, 0.0051601436, 0.015305103, -0.010059014, 0.0018340683, -0.017794073, -0.007996332, 0.024807192, -0.015181342, -0.012926143, -0.0026419524, -5.418838E-4, 0.017381536, -0.0109047135, 0.005469546, -0.040758602, 0.019499224, -0.011523519, 0.0020936225, -0.0013880134, 0.017216522, 0.01787658, 0.0034206149, -0.019499224, -0.027983723, -0.024848446, 3.777287E-4, 0.07860195, 0.043068808, -0.0026728925, 8.4870786E-4, -0.0056208093, -3.3432644E-4, 5.69816E-4, -0.012809257, -0.005397352, -0.0079207, 0.034900583, -0.007095627, 0.022717008, 0.021644413, -0.0025646016, -0.005170457, -0.010045263, -0.0164052, -0.008532629, -0.007783188, -0.033662975, -0.009997134, 0.0039328476, 0.016075172, 0.0015839682, -0.015346357, 0.011042226, 0.0115991505, -6.3126674E-4, 0.017340282, -0.011812294, 0.0072468906, 0.0040084794, 0.004369449, -0.006628086, -0.012520482, 0.03495559, 0.009233941, 0.009838995, -0.0010270439, -0.0037093903, 0.010567809, 0.013558699, -0.009055176, 0.017684063, -0.031242762, -0.0095158415, 0.025425998, 0.033442955, -0.040373567, -0.002734773, 0.010402795, -0.014218757, -0.009206438, -0.005892396, -0.0021417518, -0.0034429606, -0.014039991, -0.019251702, 0.0143700205, -0.0013553542, -0.031820312, 0.03226035, 0.0061399178, -0.008876409, -0.0027571188, -0.02634733, -0.00424225, -0.007535666, 0.024243394, 0.007061249, -0.031517785, 0.006487136, 0.0038434647, 0.024078378, 0.0018598519, 0.028327504, -0.0015203687, 0.0063152458, -0.004297255, -0.035505638, -0.034708068, 0.0136687085, -0.021204375, -0.020956853, 0.014920069, -0.002789778, 0.030582704, -0.02725491, 0.0038297134, 0.0015160715, -0.004702916, -0.016212683, -0.025522256, 0.028767543, 0.026801119, 0.008367615, 0.021424394, 0.011784792, 0.0054145413, 0.0038640916, -0.019086687, -0.012699247, -0.028630031, 0.0055142376, -0.0060367836, 0.015208844, 0.007968829, 4.7699528E-4, -0.029730128, -0.009357702, -0.018701654, 0.006102102, 7.283847E-4, 0.01080158, -0.006521514, 0.014039991, 0.024972208, -0.008986419, -0.0057926998, -0.007900073, -0.012382969, 0.019072937, 0.020530565, -0.025082218, 0.033772986, -0.0056895656, -0.016240185, -0.009323324, 0.005517675, 0.007260642, 0.006500887, -0.007927576, 7.657708E-4, -0.007982581, -0.023624588, 0.00915831, -0.006098664, -0.010340914, 0.025646018, -0.026168562, -0.0037093903, 0.0029513547, -0.006538703, -0.016831487, -0.027639944, 0.011386006, -0.015318854, 0.02953761, 0.023184549, 0.020379301, 0.0030716779, -0.029840138, -0.009247692, 0.004943562, -0.026264822, -0.0147275515, 0.0039500366, 0.009811493, 0.0069134235, 0.044251412, 0.006414942, 0.02374835, -1.7269593E-5, 4.6496297E-4, 0.019732995, -0.013847474, -0.011764165, -0.03338795, 0.009625851, 0.008058213, 0.024724687, 0.021066863, -0.0049676266, 0.021589408, 0.027351167, 0.0049229353, 0.023954617, -5.625107E-4, -0.026182314, -0.029620118, -0.0062361765, -0.02579728, 0.0048851194, -0.027419925, -0.006865294, 0.0044450806, -0.0037884598, 4.106027E-4, -0.019953014, 0.024504665, -0.0064286934, 0.013531196, -0.029235084, 0.023377066, -0.026759865, 0.010244655, -0.018399127, -0.03270039, 0.0012848792, -0.003891594, 0.013146162, 0.0031421527, -0.01742279, 0.012616741, 0.015813898, -0.007329398, -0.020365551, 0.031737804, -0.018330371, -0.016542712, -0.03008766, 0.005679252, -0.018949175, -0.007645676, -3.3862368E-4, -0.011997935, 0.005132641, -0.023115793, -0.027846212, 0.024394656, -0.007728183, 0.047084164, 0.02703489, 0.027887465, 0.035945676, 0.008725146, -0.020956853, 0.020104278, -0.0043041306, -0.021561906, 0.030967737, 0.030005153, -0.020173034, -0.001490288, -0.010464675, -0.006359937, -0.03677075, -0.0373483, 0.02578353, 0.013648082, 0.007308771, -0.011289748, 0.0030372997, -0.043398835, 0.014562537, -0.01329055, 0.011908553, 0.0020798713, -0.046451606, -0.02059932, -0.0043728864, -0.0023772414, 0.006765598, 0.0052976557, -0.022758262, 0.010114019, -0.026979884, 0.0017231992, -0.017931584, -0.011688533, 0.03833839, -0.02918008, 0.007315647, 0.024917202, 9.660229E-4, 0.012327964, 0.007879446, 0.0013691054, 0.02647109, -0.016982751, 0.015690137, 0.0040291063, 0.017340282, 0.0026282012, 0.0062464895, -0.016020166, -0.014892566, -0.020118028, -0.0016037355, 0.0361932, 0.011674782, -0.007872571, 0.02024179, -0.023555832, -0.0023892736, -0.0052529643, 0.0018564141, -0.0021916, -0.03798086, -0.01674898, -0.004895433, -0.0052357754, -5.754024E-4, -0.017505297, 0.005266716, -0.0109115895, 0.02953761, -0.016611468, -0.011702284, -0.0129673965, 0.001263393, -0.031737804, -0.014218757, -0.015030079, -0.018976677, 0.007858819, -0.025508504, 9.4453664E-4, 0.0059577143, 1.1634817E-4, -0.011530395, 0.0059336494, -0.016542712, 0.003767833, 0.023005784, 0.0060780374, 0.005170457, -0.0029135388, 0.018151606, 0.011269121, -0.016088922, 9.857903E-4, -0.0018821977, 0.026691109, -0.009728985, 0.0150575815, -5.294218E-4, -0.025329739, -0.017546551, 0.003754082, 0.0075287907, 0.013379932, -0.00837449, -0.030582704, 0.010196527, -0.0027966534, 0.023033286, -0.004781985, -0.0011576804, 0.020613072, 0.010863461, 0.032535378, 0.030500196, -0.012712999, -0.026938632, 0.0011379131, -0.026553597, -0.02636108, -5.1008415E-4, -0.005469546, 0.011894802, 0.014053742, -0.010636565, -0.03146278, 0.006033346, -0.023377066, -0.038530905, -0.007473786, 0.02647109, 0.04174869, 0.026787369, -0.00292729, 0.009295822, 0.006150231, -0.0038881563, -0.014947572, -0.0018907922, 0.013283675, 0.011069729, 0.027309915, 0.022772012, -0.027653694, -6.273992E-4, 0.017890332, 0.028217494, 0.011282872, 0.011791667, -0.008573883, -0.007604422, -0.0059198984, 0.0041838074, -0.0075150393, -0.0016836645, 0.008532629, -0.026086057, -0.0064974492, 0.0048060496, 0.019581731, -0.013221794, 0.010038387, 0.019292956, -0.023514578, 0.008780152, -0.030142665, -0.030692713, -0.0046135327, -0.012616741, 0.040758602, 0.01119349, -0.0012384688, 0.032645386, 0.020200536, 6.0268998E-5, 0.014507532, -0.008381366, 7.1377406E-4, -0.02535724, 4.7312776E-4, -0.012321089, 0.026154812, -0.040373567, 0.014741303, -0.026952382, -0.0037884598, -0.015030079, -0.008910787, -0.015181342, 0.048156757, 0.010251531, -0.052199613, 0.0029427602, -0.02374835, 0.006573081, -0.012410472, -0.0043556974, -0.027997475, 0.010760326, -0.021011857, 0.005696441, -0.0164052, -0.023267057, 3.5645728E-4, -0.010464675, -0.0045310254, 0.014603791, 0.19405715, 2.0175612E-4, 0.018192858, 0.03905345, -0.0034188959, 0.005366412, 0.016336445, 0.012431099, -0.0037403307, 0.0021898812, -0.021396892, 0.017065259, -0.013929982, 0.0020472123, 0.019746745, -0.009000171, -0.030775221, -0.044058893, -0.027364919, -0.029482607, -0.024367154, -0.0040909867, -0.0077763125, -0.027763704, 0.0028344693, 0.007329398, -0.019856755, -0.0075425417, 0.028630031, -0.0025199102, -0.0068584187, -0.021616912, -0.019540478, 0.004799174, -5.234056E-4, -0.015236347, -4.3917945E-4, 0.0062843054, -0.006689966, 0.0037815843, 0.0020540878, 0.0048679304, -0.0164052, 0.0052151484, 0.007762561, 0.013503694, -0.013297426, -0.010416546, -0.01114536, 0.0031146503, -0.04119864, -0.014383771, 0.026223568, 0.030720215, -0.017972838, -0.002067839, 0.015360108, 0.007274393, -0.019114189, 0.009295822, -0.003192001, 0.030362684, -0.022579497, 0.009110181, 0.009405832, 0.024834696, -0.04232624, -0.0076731783, 0.0036165698, -0.03710078, -0.0101759, -0.030940235, -0.022895774, 0.00690311, -0.022703256, -0.010650316, 0.0060745995, 0.015140088, -0.0019767373, 0.01617143, -0.016927747, -0.014947572, 0.013283675, 0.007521915, -0.011826046, -0.020998105, 0.0012676902, -0.021823179, -0.0061399178, -0.009089554, 2.2474643E-4, -0.016088922, -0.010368417, 0.006521514, -0.0010751731, 0.010471551, 0.026168562, 0.029592616, -3.5731675E-4, -0.004802612, -0.032425366, 0.027694948, 0.013049903, -0.008388242, -0.030115163, -0.010423422, -0.0027450863, 0.007886322, 0.028148739, -0.021094365, -0.0023256743, -0.04650661, -0.004991691, 6.372829E-4, 0.008931414, 0.019622985, -0.008065088, -0.0040909867, 0.029455103, -0.014191254, 0.001208388, -0.01729903, 0.023019535, -0.0022998909, -0.006380564, -0.021575658, -0.03132527, 0.008663266, -0.020558067, -0.03990603, 0.022331974, -0.026416086, 0.012451726, 0.01210107, 0.0015813898, 0.00262992, 0.015442615, -0.007851944, -0.008257605, -0.0034756197, -0.009715234, -0.018715404, 0.013613704, 0.01877041, -0.009838995, -0.006693404, -0.004121927, -0.00967398, -0.0056861276, -0.033800486, -0.027419925, -0.0071918857, -0.0019870508, 6.579097E-4, 0.03498309, -0.0011705722, -0.011757289, -0.039575998, -9.789147E-4, 0.038833432, -0.049146846, 0.03539563, 0.014177503, -0.008346988, -0.013187416, 0.004465707, -0.1765656, 0.026993636, 0.0024924078, -0.03990603, 0.010375292, 0.014273762, 0.020461809, 0.010670943, 0.0032177845, -0.023404568, 0.0095295925, -6.626367E-4, -0.053437226, -0.013049903, 0.008168222, 0.011874175, -0.0025302237, 0.03776084, 0.03767833, -0.006088351, 0.046671625, -0.008525753, -8.9726684E-4, 0.007975705, 0.025646018, -0.012224831, 0.014094996, 0.0033329509, -0.00859451, 1.06786785E-4, -0.03718329, 7.202199E-4, 0.012623616, 0.0018907922, -0.008436371, -0.010622814, -0.0071781348, -0.012149199, 0.0032005955, -0.0076869293, 0.05269466, 0.007040622, 0.02227697, 0.017601555, -2.2603561E-4, 0.02352833, 0.03204033, -0.03520311, 0.017367786, -0.010732824, -0.0034103014, -0.015635133, 0.044086397, -0.0035271868, -0.003049332, 0.022194462, 0.01855039, 0.004190683, -0.0067965384, -3.5044114E-4, -0.019182947, -0.015112586, 0.011000972, -0.0013209762, -0.0039844145, -0.026264822, -0.011372255, 0.0032418491, -0.025976047, 0.014150001, -0.018756658, 0.0063221212, 0.010822207, 0.02218071, 0.0027124272, -0.022799516, -0.030692713, 0.019389214, 0.0038675293, 0.01877041, -0.007955078, 0.026773617, -0.004575717, 0.009453961, -0.005242651, -0.023762101, 2.7878441E-5, 0.0056723766, -0.0010717354, 0.0049813776, 0.017959088, -0.02160316, -0.032315355, -0.005380163, 0.003472182, 0.0068102893, 0.0012831603, 0.0034962466, 0.026196066, -0.019980516, 0.00956397, -0.008291983, -0.011062853, 0.010492178, 0.035505638, 0.010182776, 0.0036028186, 0.010698446, 0.021080613, 0.02590729, 0.006978742, -0.0056689386, 0.030060157, -0.003032143, -0.023033286, 0.0077763125, -0.007955078, -0.024367154, -0.010320287, 0.011702284, 0.045626532, -0.002174411, 0.0059336494, -0.012252333, 0.0024305275, -0.0014052023, -0.09543344, -0.010169024, 0.01006589, 0.038173374, -0.02860253, 0.045158993, -0.013840598, 0.0013355868, -0.034433044, 0.029730128, -0.0115991505, -0.025040964, 0.011324126, -0.0038469026, 0.014094996, 0.008635763, -0.02409213, -0.011881051, -4.307998E-5, 0.011220992, 0.007198761, -0.0041597425, 0.011695409, -0.010444048, -0.0033398266, 0.0064630713, -0.02420214, 0.030060157, 0.01549762, 0.023143295, 0.017010253, -0.02013178, 0.00627743, -0.029317591, -0.021891935, -0.010918465, -0.013723713, -0.021630662, -0.0015272443, -0.049669392, 0.015153839, 0.015855152, -0.0016252218, -0.011805419, -0.005204835, -0.0020747148, -0.03652323, 0.0115853995, -0.015772644, -0.020668076, -0.014177503, -0.004682289, -0.016473956, -0.0033020107, 0.0015349794, 0.015016328, 0.023803353, 0.011042226, 5.0535717E-4, -0.014535035, -0.0143562695, -0.0045482144, -0.03528562, 0.008257605, 0.008800778, 0.020186784, 0.0067380955, -0.016955249, 0.022208214, -0.022538243, -0.015538873, 0.019100439, -0.03415802, -0.014466279, -0.013029276, 0.018797912, -0.018632896, -0.0032177845, 0.011654155, -0.023707096, 0.00292729, -0.035725657, 0.013125535, -0.008367615, 0.02273076, 0.01335243, 0.02240073, 0.012657994, 0.0013734027, -0.030225173, 0.0036440722, 0.012094194, 0.021451896, -0.0016278002, -0.007570044, 0.03226035, 0.016583966, 0.01255486, 0.02024179, 0.0053217206, -0.020296793, 0.013991862, -0.077226825, 0.029427601, -0.02431215, -0.0057651973, -0.009144559, -0.007487537, 0.008181973, 0.0030012028, 0.00870452, 0.022799516, -0.008890161, -0.0024425597, -0.004960751, 0.0025525694, -0.008587634, 0.002982295, 0.012259209, -2.2410184E-4, 0.0068274788, 0.003226379, -0.017271526, 0.010437173, 0.024917202, 0.0059783407, -0.0068790456, 0.0140056135, 0.008071964, 0.008780152, -0.023473324, -0.009206438, 0.02739242, -0.033167932, -0.0054970486, -0.0035134356, -0.008518878, -0.031957824, -0.0028636907, -0.00305277, 0.024917202, 0.012410472, -0.016941497, -0.018412877, 0.009694607, 0.0011559615, -0.0058098887, 0.0220707, -0.029262587, 0.012458601, 0.01729903, 0.01040967, 0.03971351, 0.022593247, 0.0014894286, -0.022978282, 0.0076181735, -0.013819972, 0.033910498, -3.811665E-4, 0.0084845, -0.034708068, 0.012410472, -0.0038159622, 0.0077213077, -0.024050876, -6.291181E-4, -0.0016638971, 0.024958456, -0.014548786, 0.0037884598, -0.009928377, -0.014081244, -0.017546551, 0.019224199, 0.038283385, 0.01216295, 0.02907007, -0.0035340623, 0.013627455, -0.0012169826, 0.02047556, 0.021850681, -0.016969, -0.02047556, 0.017161516, 0.0068962346, 0.0226345, 0.005046696, 0.014631294, 0.0052804668, 0.015167591, -7.503007E-4, 0.004575717, 0.020076774, 0.0016320974, 0.009591473, 0.0053148447, -0.023280809, -0.001008136, -5.496189E-4, 0.023597086, -0.013235545, -0.011454763, -0.016762732, -0.026869874, -0.022345725, -5.534864E-4, -0.012355467, -0.022345725, 0.015318854, 0.020393053, 0.029730128, 0.0012651118, -0.004895433, 0.009055176, -0.043151315, 0.014067493, -0.010251531, -0.0016088922, -0.0058442666, 0.042381246, 0.015621381, 0.013428062, 0.026622353, -0.009055176, 0.054537322, 0.012864262, 0.0042216233, -0.024628427, -7.724316E-5, 0.0011353347, -0.021410642, -0.019416716, -0.013888728, -1.4847015E-4, -3.846043E-4, -0.011269121, -0.007116254, 0.016363947, -0.0057583214, 0.057755105, 0.01709276, -0.0030235485, 0.007253766, -0.022194462, 0.012032313, 0.023775851, 0.015525122, -0.0022105079, -0.023225803, 0.015896406, -0.0019217323, 0.005754884, -0.03528562, -0.0077763125, 0.003432647, 0.008181973, 0.010196527, -0.012912392, -0.015511371, 0.0021159684, -0.015002577, 0.009687731, 0.010107144, 9.531311E-4, -0.017340282, 0.024284646, -0.0032831028, -0.0031816876, -0.023500828, 0.004032544, -0.019196697, -0.006648713, -4.5765765E-4, 0.02860253, -0.0062705544, -0.002195038, -8.2937017E-4, 0.022510739, 0.012217955, -0.022139458, 0.008567007, -0.011159112, -0.0133180525, 0.01674898, -0.02352833, 0.005084512, -0.02138314, 0.0047922987 ], + "id" : "1ab95c16-d35b-4e50-ae75-ca3256539eb4", + "metadata" : { + "source" : "movies.csv" + } + }, + "f9c47900-e8e9-4092-8cca-9bb62ebd63b4" : { + "text" : "57158,The Hobbit: The Desolation of Smaug,Fantasy-Adventure-Action,en,The Dwarves Bilbo and Gandalf have successfully escaped the Misty Mountains and Bilbo has gained the One Ring. They all continue their journey to get their gold back from the Dragon Smaug.,64.512,WingNut Films-New Line Cinema-Metro-Goldwyn-Mayer-Warner Bros. Pictures,12/11/13,250000000,958400000,161,Released,Beyond darkness... beyond desolation... lies the greatest danger of all.,7.569,11740,Martin Freeman-Richard Armitage-Ian McKellen-Benedict Cumberbatch-Orlando Bloom-Evangeline Lilly-Lee Pace-Luke Evans-Stephen Fry-Ken Stott-James Nesbitt-Antony Sher-Mikael Persbrandt-Sylvester McCoy-Aidan Turner-Dean O'Gorman-Graham McTavish-Adam Brown-Peter Hambleton-John Callen-Mark Hadlow-Jed Brophy-William Kircher-Stephen Hunter-Ryan Gage-John Bell-Manu Bennett-Lawrence Makoare-Cate Blanchett-Peggy Nesbitt-Mary Nesbitt-Ben Mitchell-Stephen Ure-Craig Hall-Robin Kerr-Eli Kent-Simon London-Brian Sergent-Peter Vere-Jones-Mark Mitchinson-Kelly Kilgour-Sarah Peirse-Nick Blake-Dallas Barnett-Matt Smith-Katie Jackson-Richard Whiteside-Greg Ellis-Ray Henwood-Tim Gordon-Jabez Olssen-Stephen Colbert-Evelyn McGee-Colbert-Peter Colbert-John Colbert-Norman Kali-Carter Nixon-Zane Weiner-Allan Smith-Jack Binding-Terry Binding-Frank Edwards-Peter Jackson-Terry Notary-Emma Smith,elves-dwarf-orcs-based on novel or book-giant spider-forest-bear-dragon-turns into animal-wizard-sword and sorcery,/xQYiXsheRCDBA39DOrmaw1aSpbk.jpg,/npCPnwDyWfQltGfIZKN6WqeUXGI.jpg,122917-49051-121-120-122-101299-76338-285-127585-12444-12445-58-1865-767-100402-22-675-674-49521-1895-673\r\n122917,The Hobbit: The Battle of the Five Armies,Action-Adventure-Fantasy,en,Immediately after the events of The Desolation of Smaug Bilbo and the dwarves try to defend Erebor's mountain of treasure from others who claim it: the men of the ruined Laketown and the elves of Mirkwood. Meanwhile an army of Orcs led by Azog the Defiler is marching on Erebor fueled by the rise of the dark lord Sauron. Dwarves elves and men must unite and the hope for Middle-Earth falls into Bilbo's hands.,95.09,WingNut Films-New Line Cinema-Metro-Goldwyn-Mayer-Warner Bros. Pictures-3Foot7,12/10/14,250000000,956019788,144,Released,Witness the defining chapter of the Middle-Earth saga,7.", + "embedding" : [ -2.0698509E-4, -0.0351455, -0.028181182, -0.035739355, -0.032932036, 0.042919617, -0.019961672, -0.018153109, -0.015764186, -0.0276953, 0.026669549, 0.020784972, 0.018760461, -0.0010662421, 0.00481496, 0.0081317825, 0.01863899, -0.010534202, 0.011762405, -0.017937161, -0.02695298, 0.008691898, -0.01863899, 0.01757275, 0.013793663, 0.0022826353, 0.019610757, 0.003321884, -0.0102507705, 0.009555688, 0.0044539226, -0.007382714, -0.014090591, -0.00962992, -0.035685368, 0.0028967368, 0.001872672, -0.029017981, 0.025684288, -0.02013713, 0.011431735, 0.0071262764, -0.011775902, -0.0049802954, -0.017289318, 0.012794905, 0.011276523, -0.016250068, -0.017221835, 0.0011219161, 0.0010881743, 0.03711602, -0.03009772, -0.015561735, -0.018976409, 0.0011497531, -0.0011286645, 0.010318254, 0.018827945, 0.013672193, -0.012005346, -0.010331751, -0.020973926, -0.011445232, -0.023376346, -0.023862228, -0.0042987103, -0.02939589, -0.013051343, -0.0016221389, 0.018369056, 0.029881772, 0.021932194, 0.0038600662, 0.0074029593, -0.03935648, -0.027384875, 0.0069305734, 0.0042683426, 0.004278465, 0.020596018, -0.008975329, -0.0090428125, 0.0032695842, 0.006313098, 0.02600821, -0.008354479, -0.0049836696, -0.046401776, 0.002643673, 0.0060735308, 0.0049836696, 0.009528695, 0.005887951, -0.009069806, 0.016101604, -0.009481456, 0.031690333, -0.026818013, -0.024753012, 0.009184528, -0.0072814887, -0.008698646, -0.005061276, -0.015062356, -3.0241124E-4, -0.0039815367, -0.00967716, 0.0177752, 0.008273499, -0.0069170767, -0.0059351893, 0.015318794, -0.020663502, -0.012309022, -0.011364251, 0.025522327, -0.020555528, -3.1759506E-4, -0.026737032, 0.026480595, 0.032716088, 0.023133405, -0.025603307, 0.036765106, 0.02029909, -0.0037892084, -0.021405822, 0.013489987, 0.003934298, 0.017235331, 0.01517033, 0.0057563577, -0.014144579, -0.021594776, 0.058197923, -0.031690333, -0.013591212, -0.024631541, -0.025778765, 0.035172492, 0.027438862, -0.030475628, -0.030772556, -0.018585004, 0.0023956704, 0.0045416513, 0.0065088007, 0.014225559, -0.013638451, 0.027438862, -0.0072814887, 0.01951628, 0.02017762, 0.014036604, -0.010372241, 0.0014272798, -0.0051118885, -0.009940346, -0.016924907, -0.008374725, 0.0056787515, 0.002864682, -0.016169088, 0.0073152306, 0.020042652, 0.02368677, -0.010817633, -0.0077403774, 0.007160018, -0.018679481, 0.011721915, -0.008077796, 0.013118827, -8.6379104E-4, 0.031636346, 0.01256546, -0.025441347, -0.005138882, -0.017937161, -0.007052044, 0.014670951, 0.036738113, 0.0367921, -0.00971765, 0.021243861, 0.008874103, -0.01149247, 0.013638451, -0.010392486, -0.011769153, 0.017626736, -0.027195921, 0.0010966097, -0.64395624, -0.018692978, -5.3143397E-4, -0.024591051, 5.55475E-4, 0.009319495, -0.0015732131, 0.0061612595, -0.01765373, -0.019759221, -0.015237814, 0.009724398, 0.032176215, -0.018099122, -0.025063436, 0.011424987, 0.008624414, -0.013462993, 0.01678994, -0.01707337, -0.034659617, 0.027668307, 0.009974088, -0.01442801, 0.00306882, -8.739136E-4, -0.017478272, -0.027519843, 0.008914594, 0.0037048538, -0.008010312, 0.004038898, 0.015116343, 0.025117423, 0.03304001, 0.004993792, -0.031231446, 0.036927067, 0.033013016, 0.03484857, -0.014616964, -0.015575232, 0.010426228, 0.0021797228, 0.0011168548, 0.01925984, 0.022418078, 2.482134E-4, 0.014697945, -0.014724938, 0.006326595, 5.107671E-4, -0.0017326433, -0.012504725, 0.012403499, 0.0058440864, 0.022269612, -0.03506452, 0.03366086, 0.0059216926, -0.020609515, 0.043270532, 0.010608434, 0.03112347, -0.016938403, 0.018949416, -7.718445E-4, -0.0054290616, 0.01016979, -0.024645038, 0.014765428, 0.010520705, -0.014455004, 0.004649625, 0.011809643, 0.009967339, 0.032662097, 0.013982617, -8.410153E-4, 0.006475059, 0.021459809, -0.0072409986, -0.01575069, 0.0015588729, 0.02777628, -0.005361578, -0.014832912, 2.718327E-4, 0.0049769212, 0.019529777, -0.023956705, 0.014927389, 0.010885117, 0.009974088, 8.5577735E-4, 9.6501654E-4, 3.0009146E-4, 0.008091292, 0.015696703, -0.04893916, -0.009312747, -0.012416996, 0.0021679131, 8.009469E-4, 0.030664582, 0.014819415, -0.017167848, -0.016843926, 0.03206824, -0.023902718, 0.009305999, -0.002437848, -0.005928441, 0.009670411, -0.0041165045, -0.028073208, 0.015602226, -0.004555148, 0.015278304, 0.004383065, 0.013436, 0.002994588, 0.01607461, -0.013996114, -0.005358204, 0.027965235, -0.01178265, -0.0066167745, 0.002717905, -0.012025591, 2.3197514E-4, 0.013179562, 0.0061072726, -0.010723156, -0.0039444207, 0.013456245, 0.02376775, -0.005742861, 0.0068597156, -0.015426768, -0.02290396, -0.013510232, -0.010966097, -0.035253473, -0.0069373217, -0.021270854, -0.039302494, -8.3890645E-4, 0.0013724492, -0.0036744862, -0.01773471, -0.0018423044, 0.006350214, 0.0051894947, -8.566209E-4, -0.0041536205, -0.032635104, -0.010763646, 0.028667066, -0.0067112516, 0.008617666, 0.0032223456, 0.015899153, -0.030205693, 0.009447714, -0.015858663, -0.024321117, 0.0145629775, 0.010925607, -0.018544514, 0.024024189, -0.0039174273, 5.27638E-4, 0.014832912, -0.01905739, 0.0045956383, -0.014131082, 0.015116343, 0.008941587, 4.3484793E-4, -0.008934839, 0.004332452, -0.019232847, 0.0025103928, 0.036036283, 0.018665984, -0.0031177457, -0.025711281, 0.013240297, -9.025942E-4, -0.008280247, -0.009987584, 0.012383254, 0.0017579497, 0.0027786402, 0.022350594, 0.004794715, 0.0021814099, 0.0015166956, 0.02178373, 0.043864388, 0.017208338, 0.011688173, -0.009913352, 0.009832372, -0.03444367, 0.011094316, -0.011107813, 0.014333533, -0.028370138, 0.026116183, -0.024739515, -0.016627979, 0.0047474764, 6.402514E-4, 0.03765589, -0.0028157565, 0.015440265, -0.0141175855, 0.0012737544, -0.004109756, -0.025819255, 0.030232687, 0.014360527, -0.03935648, 4.335826E-4, 0.0045247804, 0.0033640612, -0.0091170445, 0.0017056499, 0.00477447, -0.0031363037, 0.009252012, -0.023470823, -0.015521245, 0.006869838, 0.024132162, -0.013085085, 0.04121903, -0.014778925, -0.017397292, 0.012781409, 0.027830267, -0.007470443, -0.016250068, -0.005597771, 0.003745344, 0.023943208, 0.007247747, 0.046293803, -0.019948175, 0.019192357, -0.003984911, -0.001716616, 0.01641203, -0.009899856, 0.010304757, 0.012045836, 0.021135887, 0.019205853, 0.014063598, -0.012808402, 0.026021706, -0.0012611012, 0.040490206, 0.014535984, -0.004663122, 0.011249529, -0.0010088809, -0.043783408, -0.019421803, -0.008617666, -0.006957567, 0.0018473656, 0.0058069704, -0.008071047, -0.02286347, 0.016196081, 0.023983698, 0.030070726, 0.0030367654, -0.024914972, 0.016236572, 7.4232044E-4, -0.008550182, -0.034551643, -0.006093776, -0.0021122391, -0.023187391, -0.0041704914, -0.0023568673, 0.029584844, -4.7491636E-4, 0.0014365588, -0.014616964, 0.0071127797, 0.0052029914, -0.010743401, 0.013442748, 0.02947687, -0.017329808, 0.005361578, 0.0021982808, -0.01355747, 0.03584733, -0.0091170445, 0.0059925504, -0.008246506, -0.012632945, 7.2798016E-4, -0.00264536, 0.011195542, -0.032230202, 0.0042852135, -0.01935432, 0.0034129869, -0.009569185, 0.00855693, 0.021959187, 0.0037385956, -0.008192519, -0.032770075, -0.0119985975, -0.0023939833, 0.08054852, 0.03136641, -0.005358204, 0.0071667666, 1.2811355E-4, 0.01302435, -0.017586246, -0.021230364, -0.00715327, -0.0029422883, 0.035334453, -0.00847595, 0.018193599, 0.023659777, 0.002805634, -0.009542191, -0.0060161697, -0.023038927, -0.003691357, -0.036981054, -0.038762625, -0.009400476, 0.005459429, 0.037790857, -4.3316084E-4, -0.017248828, -0.003728473, -0.0065020523, -0.0057563577, 0.01575069, -8.8741037E-4, 0.009940346, -0.0030924394, -0.0028106952, 0.007321979, 0.0064480654, 0.018800952, 0.009015819, 0.0075379265, 0.0052401074, 0.0038465695, -0.003839821, 0.017100364, -0.005962183, 0.014576474, -0.023187391, -0.0067078774, 0.025022946, 0.028289158, -0.016452521, 0.026413111, 0.0027145308, -0.008286996, -0.012916376, 0.017019384, -0.003856692, -0.005118637, -5.3312106E-4, -0.015399775, -0.012201048, 0.001387633, -0.027438862, 0.03806079, -5.419783E-4, -0.018423043, 0.0052940943, -0.021999678, -0.0089685805, -0.011951359, 0.025900235, -0.014225559, -0.013301033, 0.0018254335, -0.025765268, 0.020717489, -0.013746425, 0.027938241, 0.0028343145, 0.0041873623, 0.017302815, -0.028559092, -0.033606872, 0.005651758, -0.026453601, -0.017302815, 0.015764186, -0.008219512, 0.018531017, -0.02418615, 0.0029237303, 0.008361228, 0.007672894, -0.0041198786, -0.02182422, 0.035739355, 0.002022823, 0.01909788, 0.011789398, 0.014630461, -0.0042615943, 0.012207797, -0.026426608, -0.008786375, -0.038006805, 0.0068597156, -0.0086716525, 0.0035732607, -0.006363711, 0.0061241435, -0.025697784, -0.03079955, -0.022580039, -0.0027499597, 0.0045855157, 0.0132807875, 0.0020515039, 0.02166226, 0.0056585064, 0.0026656052, 0.008206015, -0.0068259737, -0.014198566, 0.0134292515, 0.024159156, -0.021473305, 0.020663502, 0.0014061911, -0.026075693, -0.0049836696, 0.020434057, 0.0010932356, 0.0044842903, -0.009670411, -0.0022353968, -0.023781247, -0.016182585, 0.022998437, -0.013078337, -0.027506346, 0.0119985975, -0.009103548, -0.008752633, 0.012133565, 6.6724484E-4, -0.017316312, -0.03009772, 0.013253794, -0.005651758, 0.006518923, 0.04154295, -0.002824192, 0.0013775105, -0.021176377, -0.003947795, 6.8580284E-4, -0.04526805, -0.03452465, -0.013672193, 0.02344383, 0.012477731, 0.04364844, -2.2670298E-4, 0.026467098, 0.018706474, 0.0073287273, 0.013942127, -0.018814448, -0.0066876323, -0.048183344, -0.014657455, 0.0177752, 0.031312425, 0.009036064, 0.0029777172, 0.0038465695, 0.013969121, 0.011317013, 0.020730985, -0.01190412, -0.028505106, -0.009407224, -0.015683206, -0.018962912, 0.0136519475, -0.039005566, -0.024402097, 0.037197, -0.004420181, 0.0053177136, -0.01703288, 0.030448634, -0.0018439915, 0.029368896, -0.03414674, 0.014954383, -0.026413111, 0.0013657009, -0.036063276, -0.019732228, 0.0061815046, -0.0035833833, 0.018058632, -0.009542191, -0.027560333, 0.015818173, 0.013078337, -0.014778925, -0.026669549, 0.0042076074, -0.02021811, -0.002606557, -0.028802034, 2.5664887E-4, -0.018976409, 0.0021442939, 0.0036407444, -0.0019772716, 0.0064919298, -0.025832752, -0.03997733, 0.014630461, -0.011222536, 0.044836156, 0.019367816, 0.037358962, 0.0077741193, -9.759827E-4, -0.02947687, 0.01599363, -0.0041569946, -0.016627979, 0.033552885, -0.008583924, -0.022458568, -0.0048520765, -0.010284512, -0.010682666, -0.015966637, -0.030070726, 0.039761383, 0.007173515, 0.007173515, -0.0065391683, 0.011478974, -0.021176377, 0.014225559, -0.0060904017, 0.0019941425, 0.014873402, -0.026979974, -0.020892946, -0.0035125252, -0.007922583, 0.023578797, 0.00971765, -0.018301573, 0.021176377, -0.006080279, -0.0130580915, -0.027438862, -0.01789667, 0.033957787, -0.019894188, 0.022013174, -3.0388744E-4, 0.009144038, -0.0032155972, -0.0073489724, 0.013341523, 0.029044975, -0.02711494, 0.011323761, -6.925512E-4, 0.004993792, 1.7925352E-4, 0.02087945, -0.025117423, -0.015035363, -0.03835772, 0.0028326274, 0.032176215, -0.0039545433, -0.006610026, -4.5551482E-4, -0.023349352, -0.0035125252, 0.004555148, 0.009521946, 0.0016828742, -0.030988503, 0.014684448, -0.0047306055, -0.012659938, 0.022013174, -0.0038836855, 0.002203342, -0.0016508194, 0.01339551, -0.0032206585, -0.0038971822, 4.1734436E-4, -0.017181344, -0.03695406, -0.018072128, -0.0052738492, -0.02194569, 0.007436701, -0.026021706, 0.006080279, -0.009366734, -0.008367976, -0.020231606, -0.0124439895, -0.03260811, -0.0025964344, 0.018153109, -0.005820467, -0.010648924, -0.009785133, 0.0367921, 0.029908765, -0.01277466, 0.021918697, 0.009184528, 0.028235171, -0.0017427659, 0.010284512, -0.0086716525, -0.019529777, -0.011242781, -4.68168E-4, 0.026669549, 0.006188253, 0.0035496415, -0.034497656, -0.0020498168, 0.0029642205, 0.02178373, -0.025967719, -0.001688779, 0.026359124, 0.01384765, 0.029287916, 0.009751392, -0.014481997, -0.009994333, -0.014333533, -0.01641203, -0.020285593, -0.0035530156, 0.007922583, 0.009704153, -0.008260002, -2.2079816E-4, -0.010115803, 0.009359986, -0.013672193, -0.037763864, 5.0275336E-4, 0.031258438, 0.047319554, 0.010507208, -0.0014500555, 0.018301573, 9.3380536E-4, -0.0016845613, -0.0260487, -0.019340822, -0.001421375, -0.002474964, 0.015521245, 0.030691575, -0.03444367, -0.0061646337, 0.0017140853, 0.019070886, 0.0017832562, 0.028100202, -0.012943369, -0.010675917, 0.0062557366, 0.0026723535, 0.008266751, -0.014630461, 0.022647522, -0.027965235, -9.498327E-4, -7.705792E-4, 0.031555366, -0.0064548138, -0.011020084, 0.009049561, -0.016236572, 0.017221835, -0.0077403774, -0.027236411, -0.010446473, -0.026979974, 0.027992228, 0.026696542, 0.006006047, 0.024294123, 0.016546998, -0.010378989, 0.011424987, 0.0076998873, 0.010716408, -0.015008369, -0.0014171572, -0.009643417, 0.008158776, -0.03112347, 0.0078078615, -0.011829888, -0.0035192736, -0.022269612, 0.019043893, -0.029584844, 0.037197, 0.017802194, -0.035955302, -0.0039781625, -0.01186363, -7.503341E-4, 0.0037959567, -0.011337258, -0.026602065, -0.0028781788, -0.010669169, -0.0051118885, -0.020285593, -0.023754254, 0.0062017497, -0.017059874, -0.0066032778, 0.012288777, 0.17200239, -0.031204453, 0.017869677, 0.050477788, 0.023349352, 0.03398478, 0.012356261, 0.007160018, -0.007814609, -0.0014829538, -0.014913892, 0.015156833, -0.0123697575, 0.008246506, 0.008455705, -0.016884416, -0.016735952, -0.018922422, -0.009940346, -0.027249908, -0.011620689, -0.0039815367, -0.02282298, -0.006367085, 0.017356802, -0.0077403774, -0.02033958, -0.0053143394, 0.029962752, 0.014441507, -0.0056450097, -0.016128598, -0.01050046, 0.0072544953, -0.023241378, -0.001595989, 0.010001081, 0.003122807, 0.0012754415, 0.009184528, 0.02368677, 0.0025087057, -0.012302274, -0.003947795, 0.011175297, 0.016115101, -0.029152948, -0.002954098, -0.028181182, 7.24606E-4, -0.0067517417, -0.0056450097, 0.03336393, 0.017842684, 0.005887951, -0.012167307, 0.014657455, -0.020447554, -0.002937227, 0.00156056, 0.0012155498, 0.040112298, -0.010939104, 0.008813368, -0.019286834, 0.022323601, -0.0392755, 0.004420181, 0.012106571, -0.033417918, -0.005914944, -0.0135777155, -0.026629059, -0.0068765865, -0.010945852, -0.009150786, 0.004912812, -2.7710485E-4, 0.017046377, 0.013584464, -0.016479515, -0.038006805, 0.012066081, -0.0074029593, -0.0016390098, -0.013247046, 2.7351978E-4, -0.018679481, -0.008651407, -0.003836447, 0.003539519, -0.009090051, 0.006630271, -0.0028950498, 0.012126816, -0.005634887, 0.021068403, 0.030016739, -0.008874103, -0.009994333, -0.0040962594, 0.032338176, 0.009818875, -0.0035833833, -0.022040168, -0.0144145135, 1.0259628E-4, 0.014171572, 0.016169088, -0.0105476985, 0.01847703, -0.04022027, -0.008826865, -0.015696703, 0.0026909115, 0.0035901316, -5.8099227E-5, 0.005378449, 0.014481997, -0.030610595, 0.0054121907, -0.021594776, 0.022930954, -0.01174216, -0.017316312, -0.02711494, -0.025859745, 0.026224157, 0.0010915485, -0.014927389, 0.010082061, -0.04022027, -0.0056416355, 8.722265E-4, 0.015899153, 0.038843606, -0.0037116022, -0.0029473496, 0.014616964, 0.0015985196, 0.012767912, 0.0037723375, 0.0131323235, 0.019826705, -0.0057563577, -0.024172653, 0.021095397, -0.012902879, 0.0014829538, -0.027087947, -0.023592293, -0.010136048, 0.0029608463, -0.0145629775, 0.03460563, 0.009933597, -0.006421072, -0.032986023, -0.006552665, 0.032932036, -0.039869357, 0.035739355, 0.0050545274, -0.023106411, -0.014171572, 0.008772878, -0.17232631, 0.008206015, 0.019273337, -0.031528372, 0.028910007, 0.008961832, 0.022890463, 0.008867355, -0.0010443099, -0.01699239, 0.01707337, 0.024213143, -0.04885818, 0.0054796743, -2.2839007E-4, 0.006680884, 4.3780034E-4, 0.038546674, 0.014333533, -0.0037554665, 0.028963994, -0.0034467287, -0.025913732, -0.0060735308, 0.027276902, -0.005327836, 0.033067003, 0.03158236, 0.0016288873, -0.015683206, -0.033768833, 0.017491769, -2.5390732E-4, -0.009380231, -0.01260595, 0.013152569, -0.016843926, -0.010001081, 0.0032645229, -0.0032797067, 0.014643958, 0.007963073, 0.026359124, 0.020312587, 0.0027314017, 0.01781569, 0.011593696, -0.017626736, 0.017518762, -0.011640934, 0.0065762843, -0.025603307, -3.6641527E-6, -0.0061848788, -0.0028376887, 0.031150464, 0.009211522, -0.012646441, -0.010183287, -0.0079090865, -0.035874322, -0.012126816, 0.018153109, 0.0010029761, 0.00198402, -0.027938241, -0.020434057, 0.016520005, -0.03228419, 9.54894E-4, -0.026021706, 0.0046361284, 0.020973926, 0.032500137, 0.0098796105, -0.01583167, -0.027506346, 9.405537E-4, -0.014225559, 0.01178265, -0.026696542, 0.047265567, -0.023241378, 0.0034990285, 0.029908765, 3.7959567E-4, -0.014252553, -0.0059183184, -0.0022134646, 0.007436701, 0.008631162, -0.013523729, -0.03274308, 0.0067618643, 0.015440265, 0.016182585, -0.0038499436, -0.011121309, 0.011168549, -0.009198025, -0.0061815046, -0.016047617, -0.012585705, 0.017478272, 0.02699347, 0.015251311, 0.016520005, 0.017518762, 0.026413111, -0.008610917, -0.007267992, -5.571621E-4, 0.013125575, -0.0024817123, -0.0051152627, -0.0013328026, -0.023821738, -0.030529615, -0.0030384525, 0.012585705, 0.033174977, -0.004612509, -0.013274039, -0.0069845603, -0.023754254, -0.015534742, -0.093991265, 0.011843385, -0.008340983, 0.032392163, -0.032338176, 0.025198404, -0.018490527, 0.033093996, 0.0019401556, 0.0318253, -0.022890463, -0.006829348, 0.014050101, 0.006363711, 0.03212223, -0.011371, -0.02158128, -0.0031109974, -0.0034028643, 0.035118505, -0.013267291, -0.004086137, 0.00392755, -0.017599743, -0.01269368, -2.1373345E-4, -0.030907523, 0.02947687, 0.0018085625, 0.004970173, 0.02017762, -0.029368896, 0.029179942, -0.022202129, -0.024618044, -0.012430493, -0.0030030236, -0.02042056, 0.023214385, -0.046536744, 0.015197324, 0.01851752, -0.0022522677, -0.012551963, -0.00913729, -0.0032442778, -0.036360204, 0.016803436, -0.009427469, -0.01438752, -0.00962992, -0.021095397, -0.0351455, -0.008489447, 0.012970363, 0.011924366, 0.027722294, 0.01215381, -5.2220767E-5, -0.004875696, 0.0090428125, 0.0077066356, -0.008995574, 0.01141149, 0.005928441, -0.0064851814, 0.015224317, -0.02492847, 0.00913729, -0.013226801, -0.017140854, 0.037385955, -0.031474385, -0.012410248, -0.030772556, 0.011445232, -0.02170275, -0.014670951, 0.016857423, -0.027155431, -0.008482698, -0.030907523, 0.011586947, -0.020596018, 0.01757275, 0.02368677, 0.005628139, -0.0010055067, 0.0020312585, -0.044323277, 0.01058144, 0.026737032, 0.0017697595, -0.02116288, -0.010021326, 0.038627658, 0.028910007, 0.021891704, 0.0144685, -0.004180614, -0.010527453, 4.323173E-4, -0.07056093, 0.035280466, 0.011344006, -0.010702911, -0.0068023545, 0.0018777333, 0.011654431, -0.007267992, 0.0012594141, 0.04170491, -0.0071127797, 0.02278249, -0.0076121585, -0.006093776, -0.026737032, -0.011256278, -0.015939644, -0.0021561035, -0.00719376, 0.011708418, -0.018463533, -0.007038547, 0.023835234, 0.009818875, -0.020690495, 0.019786214, 0.011418238, 0.026480595, -0.018787455, -0.029071968, 0.016816933, -0.030637588, -0.0021510422, -0.008759381, -0.026777523, -0.027452359, -0.012390003, -0.0061815046, 0.028235171, 0.022148142, 0.0015943019, -0.014279546, 0.01153296, -0.026278144, -0.0047845924, 0.024793502, -0.024091672, 0.027641313, 0.02500945, -9.945406E-4, 0.024955463, 0.014792422, 0.010925607, -0.022472065, 0.0050005405, -0.025522327, 0.04610485, 0.011505967, 0.0030401396, -0.020569025, 0.019489286, 0.0039208014, 0.03136641, -0.026467098, 0.00306882, 0.008037305, 0.020798469, 0.005614642, -0.00715327, -0.012086326, 0.009474708, -0.010298009, 0.022229122, 0.0065830327, 0.020987423, 0.013483238, -0.020123633, 0.0018288076, -0.007247747, 0.005894699, 0.028802034, -0.020434057, -0.014198566, 0.015332291, 0.004146872, 0.0243886, -0.004538277, -6.571223E-4, 0.0028883014, 0.011613941, -0.023673274, 0.009609675, 9.2030864E-4, 0.0079090865, 0.010453221, 0.021230364, -0.013537225, 9.312747E-4, -0.018841442, 0.017383795, -0.009272257, -0.0010544325, -0.013530477, -0.014967879, -0.017802194, -0.0061207693, 0.0014736748, -0.029611837, 0.017788697, 0.021230364, 0.008610917, 0.0019165364, -0.005729364, 0.002753334, -0.03444367, 0.03214922, -0.0019553395, -0.02266102, -0.009623172, 0.03506452, 0.0029810914, 0.027641313, 0.008165524, -0.009852617, 0.048966154, 0.002938914, 0.018949416, -0.011762405, 0.003087378, 0.007160018, -0.0076324036, 0.010351996, -0.020690495, -0.006643768, 0.008340983, -0.014333533, -0.008260002, 0.030448634, -0.008907845, 0.06122119, 0.01971873, -0.0066910065, 0.026615562, -0.017829187, 0.015588729, 0.012842144, 0.019543273, 0.008273499, -0.024564058, 0.0020430684, 2.8912537E-4, -0.011121309, -0.021797227, -0.011937862, 0.013388761, 0.014765428, -0.0039747884, -0.015008369, -0.02198618, 0.006367085, -0.0023602415, 0.025994712, 0.009359986, -0.011215787, -0.021311345, 0.040625174, -3.3193533E-4, -0.0011438483, -0.03600929, 0.004494413, -0.023983698, -0.009913352, 0.015534742, 0.03336393, 0.005439184, 0.010109055, -0.024132162, 0.018139612, -0.014670951, -0.007436701, 0.0088876, -0.014751932, 0.005378449, 0.016520005, -0.0023349351, 0.004423555, -0.019111376, -0.008158776 ], + "id" : "f9c47900-e8e9-4092-8cca-9bb62ebd63b4", + "metadata" : { + "source" : "movies.csv" + } + }, + "c7d14028-f4be-42fc-92e8-0053649d78e8" : { + "text" : "Clare-Jordon Michael Corbin-Mike DeMille-Gary Grubbs-Justin Hall-Sandra Linz-Kasey James-Skipper Landry-Cindy Mah-Johnny Otto-Belinda Owino-Mark Ulano-Misty Upham-Russ Tamblyn-Fatimah Taliah-Santana Draper,bounty hunter-hero-plantation-society-friendship-friends-revenge-rivalry-rescue-shootout-racism-dentist-django-aftercreditsstinger-odd couple-black slave-deadly-19th century,/7oWY8VDWW7thTzWh3OKYRkWUlD5.jpg,/2oZklIzUbvZXXzIFzv7Hi68d6xf.jpg,16869-680-27205-49026-24-155-550-393-500-11324-106646-273248-37724-1422-603-120-272-49051-13-857-807\r\n605,The Matrix Revolutions,Adventure-Action-Thriller-Science Fiction,en,The human city of Zion defends itself against the massive invasion of the machines as Neo fights to end the war at another front while also opposing the rogue Agent Smith.,37.937,Village Roadshow Pictures-NPV Entertainment-Silver Pictures,11/5/03,150000000,424988211,129,Released,Everything that has a beginning has an end.,6.701,8693,Keanu Reeves-Laurence Fishburne-Carrie-Anne Moss-Hugo Weaving-Jada Pinkett Smith-Mary Alice-Harold Perrineau-Monica Bellucci-Harry Lennix-Lambert Wilson-Nona Gaye-Anthony Zerbe-Tanveer K. Atwal-Helmut Bakaitis-Kate Beahan-Francine Bell-Rachel Blackman-Henry Blasingame-Ian Bliss-David Bowers-Matt Castelli-Collin Chou-Essie Davis-Dion Horstmans-Lachy Hulme-Roy Jones Jr.-Christopher Kirby-Peter Lamb-Nathaniel Lees-Robert Mammone-Joe Manning-Maurice Morgan-Tharini Mudaliar-Rene Naufahu-Robyn Nevin-Genevieve O'Reilly-Kittrick Redmond-Rupert Reid-Kevin Michael Richardson-David Roberts-Bruce Spence-Richard Sydenham-Che Timmins-Gina Torres-Clayton Watson-Cornel West-Bernard White-Anthony Brandon Wong-Rick Shuster,saving the world-artificial intelligence-man vs machine-flying-philosophy-fortune teller-martial arts-kung fu-underground world-killer robot-temple-subway-dream-sun-hero-fight-sunlight-computer virus-key-future-precognition-super computer-machine town-ying yang-dying and death-virtual reality-dystopia-computer-faith-truth-rescue-mission-cyberpunk-woman director-action hero-gnosticism,/ynMQ4nVwkoP2gLxXXDgcdltihTD.jpg,/533xAMhhVyjTy8hwMUFEt5TuDfR.jpg,604-603-296-607-62568-534-2048-608-2501-36668-1858-36658-20526-602-180-1894-1893-1895-564-36657-280\r\n10020,Beauty and the Beast,Romance-Family-Animation-Fantasy,en,Follow the adventures of Belle a bright young woman who finds herself in the castle of a prince who's been turned into a mysterious beast. With the help of the castle's enchanted staff Belle soon learns the most important lesson of all -- that true beauty comes from within.,91.", + "embedding" : [ 0.0078009292, -0.03936764, -0.015355296, -0.033422768, -0.012033567, 0.03660067, -0.0015110448, -0.0012875985, -0.029149039, -0.041860647, 0.018040076, 0.028765498, 0.029286016, -9.032024E-4, 0.008657045, 0.013732101, 0.02402604, -0.0069859065, 0.007622857, -0.031614654, -0.0071023386, -7.45249E-4, -0.010684328, 0.006177733, -0.0021334412, 0.0128691355, 0.029477786, -0.017903099, -0.01527311, -0.013156791, 0.005205185, -0.011574688, -6.0655817E-4, -0.020533087, -0.037915666, 0.008389937, 6.232525E-4, -0.019053718, 0.01987559, 0.004893559, 0.019848194, 0.0067324964, -0.021354958, -1.2124743E-4, -0.007616008, 7.409684E-4, -0.0013149942, -0.013766346, -0.0032498164, 0.009095376, 0.031395487, 0.033176206, -0.023368543, -0.029231224, -0.010554198, 0.003395356, -0.014006058, -2.7395712E-4, -0.0037463636, 0.015122433, 0.018245544, -0.0109034935, -0.017848307, -0.018766062, -0.007876268, -0.0028953843, -0.018259242, -0.0054722936, 0.007437936, -0.01226643, 0.027628576, 0.015519671, 0.015163527, 0.0027104632, 0.02740941, -0.03218996, -0.023546614, -0.002006736, -0.008965246, 0.0048524654, 0.018382523, 0.0065544243, -0.015177225, 0.0013732101, 0.015190923, 0.008184469, -0.007314655, 0.022217922, -0.023847967, 0.0050168396, 0.0105131045, 0.045093343, 0.0029210679, 0.01860169, -0.006492784, 0.036244527, -0.023793176, 0.028984664, -0.0103829745, -0.02005366, 0.0014588217, 0.0071776765, -0.012492444, -0.019204395, -0.008513218, 0.007314655, 0.002960449, -0.018752364, 0.028012116, 0.010369277, 0.0056195455, 0.002751557, 0.02071116, -0.045668654, -0.00932824, -0.01846471, -0.0037908817, -0.024450673, -0.0038970402, -0.012273279, 0.028984664, 0.03218996, 0.006818108, -0.042545542, 0.04018951, 0.03846358, -0.005636668, -0.016259355, 0.0024587652, -0.003718968, 0.03923066, 0.0032515286, 0.010841853, 0.012362315, -0.014793685, 0.04939447, -0.03468297, 1.7314946E-4, -0.027875137, -0.007711893, 0.028984664, 0.03284746, -0.019492049, -0.0027532692, -0.01316364, -0.0016702823, 0.010218601, -0.0053455885, 0.010965134, 0.010396672, 0.023546614, 0.006708525, 0.016834665, 0.018519502, 0.0338611, -3.4415865E-4, 0.0012773251, 0.0049483506, -0.00504766, -0.0049825953, 0.0049757464, -0.0060373303, -0.003431313, -0.007937907, 0.011485652, 0.019834496, 0.02824498, -0.007616008, -0.008609102, 3.1847515E-4, -0.009218657, 0.023012398, -0.024163019, 0.014519728, -2.9086543E-4, 0.007424238, 0.0028457297, -0.009054283, -0.027327223, -0.0066331867, -0.014752591, 0.0039758026, 0.028628519, 0.033450164, -0.013348561, 0.012184243, 0.02784774, -0.024847912, 0.008102282, -0.011437709, 0.0011942819, 0.019313978, 0.015040246, -0.009499463, -0.6439088, -0.016683988, -0.00843103, 0.004242911, 0.012684215, 0.016711384, 0.01693055, -0.004403861, -0.013930719, -0.014656706, -0.017889401, 0.026204, 0.019656423, -0.0052086096, -0.01673878, -0.020176942, 0.01462931, -0.023080887, 0.007848872, -0.0019142753, -0.019259186, 0.005003142, 0.004879861, -1.6630054E-4, -0.0055476315, 0.006266769, -0.016820967, -0.016327845, -0.0022532973, -0.0049175303, -0.021368656, 0.01680727, 0.00664346, -0.0057257037, 0.04134013, 0.01673878, -0.009177564, 0.051640917, 0.02945039, 0.032957043, -0.02562869, -0.0030392117, -0.002708751, -0.006027057, -0.0129924165, 0.034518596, 0.009691233, 0.0089447005, -0.01808117, -0.001726786, 0.0062154024, 0.009704931, 0.007027, -0.018231846, -0.012492444, -0.0014331382, 0.025080774, -0.030162679, 0.028738102, 6.3866255E-4, -0.024204113, 0.019067416, -0.007869419, 0.007513274, -0.0076571014, 0.018505804, -0.0040990836, -0.016464824, -0.001143771, -0.014204677, 0.020327618, 4.1521626E-4, -0.005828438, -0.0031419457, 0.0054346244, 0.003845673, 0.027518993, 0.0030220896, -0.003201874, 0.009437823, -0.0052086096, -0.018903041, 0.014903268, 0.0013141381, 0.017012738, -0.008746081, -0.03520349, 0.008205016, 0.009506312, -0.0060647256, 0.013245827, 0.01877976, -0.013204733, -3.880346E-4, -0.007842023, -0.010061075, -0.012492444, -0.004873012, 0.013958115, -0.06942073, -0.003845673, -0.016519614, 0.025614992, -0.010958285, 0.016067585, 1.0520863E-5, -0.0030511974, -0.0036059606, 0.02779295, -0.03021747, 4.1949685E-4, 0.0056400923, -0.017300392, -0.015095037, -0.0094720675, -0.02760118, 0.021108396, 0.01117745, 3.424464E-4, -0.004561386, 0.002960449, 0.011314429, -0.00804749, -0.02510817, 0.011739063, 0.028628519, -0.012293826, 0.0010504543, 0.0028902476, 0.026929986, -0.005033962, 0.0026745065, 0.028464144, -0.01891674, 0.0023132255, -0.009752873, 0.021478238, -0.0063626543, 0.024121925, 0.008978944, -0.0077735335, -0.008773477, -0.004581933, -9.973751E-4, -0.009040585, -0.022039851, -0.03602536, -1.19749224E-4, -0.012629423, -0.01820445, -0.0034432986, 0.009821363, -0.0075406698, 0.006605791, 0.009930946, 0.007506425, -0.034463804, -0.02901206, 0.004109357, -0.0048147966, 0.014232072, -0.008444728, -0.016629197, -0.020533087, 0.030518824, -0.0011317853, -0.00565379, 0.02351922, -9.3231036E-4, -0.008677592, 0.020300223, -0.015958002, -0.005417502, 0.012889682, -0.017560652, 0.035121303, -0.020081056, 0.013492389, 0.0010324758, 3.505795E-4, 0.014341655, -0.002479312, -0.02599853, -0.005927747, 0.015163527, 0.016779874, 0.0099857375, -0.021313865, -0.0013937568, -0.0047257603, -0.017451068, -0.006211978, -0.008972095, 0.007999548, 0.004581933, 0.02242339, 0.008170771, 0.0039415583, -0.008191318, -0.005509963, 0.036436297, 0.010677479, 0.010889796, -0.008931003, 0.006352381, -0.028354563, -0.0063147116, -0.027532691, 0.018231846, -0.008595405, 0.01973861, -0.0037326657, 0.004568235, -0.015026548, 0.02510817, 0.010280241, 0.003924436, -0.0025306789, -0.024806818, 0.0027858014, 0.019574236, 6.870331E-4, 0.009198111, 0.023683593, -0.026217697, 0.014410145, 0.008985793, -0.032354336, 0.009437823, -0.009198111, -0.003965529, 0.004318249, 0.0071982234, -0.0020872108, -0.0028679885, -0.014779987, 0.028162792, -0.01392387, 0.04747677, -0.009355635, -0.012184243, 0.03547745, 0.014670404, 0.0019142753, -0.0026882042, -0.018574294, 0.019560538, 0.022026153, -0.003845673, 0.039668992, -0.008807722, 0.015300505, -0.002701902, 0.012403409, 0.0044689258, -0.0128691355, -0.0050956025, 0.0044449545, 0.040792216, 0.013807439, 0.014464936, -0.022587765, 0.008321447, 0.0051606675, 0.0037840328, 0.010835004, -0.026943684, 0.0059106247, -0.00312996, -0.029340807, -0.02977914, -0.012567783, -0.0014631023, 0.023313751, -0.008492671, -0.007239317, -0.011670574, 0.012088358, 0.019889288, 0.0326009, -0.0092666, -0.0332036, 0.017231902, 0.03443641, -0.023875363, -0.004996293, -0.019957777, -7.6922023E-4, -0.027108056, -0.013334863, -0.0055681784, 0.032765273, -0.0032446797, 0.0023183622, -0.0026916286, 0.0016283327, 0.021450842, -0.017875703, 0.015916908, 0.016437428, -0.016314147, 0.011670574, -0.012451352, -0.007129734, 0.018108565, -0.02332745, 0.007622857, -0.001823527, 0.0017927069, -0.016834665, 0.0016540161, 0.0020615275, -0.03808004, 0.010198054, -0.0037018456, -0.015245714, -6.1426323E-4, 0.0047634295, 0.004376465, -0.0172456, -0.020505691, -0.027902532, -0.030299658, 0.004263458, 0.089474395, 0.04312085, 0.001814966, 0.014232072, -0.011013077, 0.012875984, -0.020341316, -0.009889852, -0.009280298, -0.0022961032, 0.010061075, -0.0185332, 0.01488957, 0.010574745, 0.021943966, -0.0073488997, -0.004907257, -0.0028388808, -0.0030357873, -0.0063729277, -0.017656537, -0.005674337, 0.026313582, 0.02925862, 2.8016395E-4, -0.016286751, 0.02376578, 0.0052668257, 0.0011797278, 0.0018218149, -0.013170489, 0.01067063, 0.0036949967, 0.012149998, -0.0021522755, -0.0033200178, 0.024806818, -0.0061503374, 0.025272544, -0.0030426362, 0.011595235, 0.027203942, -0.0035614425, -0.010424068, 0.008252959, -0.034080267, -0.01609498, 0.019670121, 0.045285113, -0.032409128, 0.026669726, 0.0032874856, -0.019135905, -0.009376182, 0.016560707, 0.0062838914, -0.0048969835, -0.004023745, -0.025656084, 0.011793854, -0.001814966, -0.03846358, 0.023272658, -0.0133828055, 0.0018046926, -0.0021505635, -0.01590321, -0.010848702, -0.022094643, 0.014423843, 0.004595631, -0.027505295, -0.00721877, -0.00504766, 0.011910286, 0.0037908817, 0.026108114, -0.012499293, 0.019957777, 0.013341712, -0.04432626, -0.029422995, 0.016615499, -0.02134126, -0.0052428544, 0.006266769, -0.008136527, 0.011992473, -0.02306719, 0.014670404, 0.0054722936, -0.004448379, -0.019533142, -0.010328184, 0.042271584, 0.008383088, 0.0045339903, 0.016834665, 0.008739232, -0.009252902, 0.011232242, -0.020985115, -0.0075612166, -0.033696726, -0.015848419, -0.012739006, -0.0017053831, 0.003460421, -0.006160611, -0.014451238, -0.025094472, -0.016259355, 0.009561104, 0.010232299, 0.011718516, -0.012410258, 0.020149546, 0.018820854, -0.0035922627, 0.0074653313, -0.0047326093, -0.015040246, 0.024573954, 0.025067076, -0.0036504786, 0.028272375, -0.007444785, -0.02824498, -0.0017199371, 0.029861325, -0.004958624, 0.0033337157, -0.021190584, -0.0048010987, -0.01590321, -0.021396052, 0.025984833, 0.014095094, -0.0069722086, 0.012656819, -0.0127801, 0.011136357, 0.005263401, -0.0020718006, -0.0056469413, -0.033422768, 0.0037908817, -0.015684046, 0.011862343, 0.040518258, -0.009800816, 0.0058113155, -0.024519162, -0.005040811, -0.0022567217, -0.03361454, -0.027491597, -0.004420983, 0.043750953, 0.007273562, 0.026436862, -0.0048832856, 0.047093228, -9.952349E-5, 0.013663611, 0.022546671, -0.027532691, 0.0018372249, -0.028135397, 0.006102395, -0.007944756, 0.030655801, 0.0065475754, 0.017711328, -0.0048079477, 0.016793571, 0.010869249, 0.010341882, -0.0057599484, -0.020930324, -0.022067247, 0.019779705, -0.020533087, -0.0071091875, -0.018437315, -0.013622518, 0.045093343, 0.002768679, -0.006927691, -0.010574745, 0.038299207, -0.009218657, 0.01994408, -0.019957777, 0.0133828055, -0.020478295, 0.0053455885, -0.019177, -0.007068094, 0.006551, -0.011732214, 0.009115923, -0.0053627104, -0.03298444, -0.011992473, 0.030902363, -0.011019926, -0.029121643, 0.018108565, -0.00945837, -0.0028097727, -0.03125851, -0.009999435, -0.022272713, -0.017711328, 0.0018440739, -0.009143319, 0.015163527, -0.015574463, -0.03736775, 0.024902703, -0.002251585, 0.03980597, 0.020300223, 0.050435506, 0.036299318, 7.448209E-4, -0.018505804, 0.017040133, -0.013211582, -0.010828155, 0.021039907, 0.029532578, -0.021601519, 1.1750192E-4, 0.01731409, -0.0061948556, -0.036189735, -0.053120285, 0.014464936, 0.028327167, 0.019135905, -0.035422657, 0.008006397, -0.019135905, 0.011485652, -0.018149659, -0.0041264794, 8.895045E-4, -0.028546331, -0.014971756, -0.007143432, -0.014793685, 0.0077735335, 0.0054996894, -0.024930099, 0.017464766, -0.02714915, 0.0022978154, -0.0048524654, -0.009917248, 0.026916288, -0.020793345, 0.006701676, 0.0075543677, 0.010163809, -0.0023645924, -0.0032121472, 0.012656819, 0.029477786, -0.011704818, 0.024478069, -0.016245658, -0.004349069, 0.026368372, 0.01930028, -0.020848136, -0.013184186, -0.010567896, -0.012307524, 0.028272375, 0.007458483, 0.004907257, -0.0025717726, -0.005807891, -0.013875929, 0.0156018585, 0.0011549005, 0.019533142, -0.04881916, 0.018314034, -0.015355296, -0.002075225, 0.0015196059, -0.010040528, 6.326697E-4, -3.6277916E-4, 0.008698138, -0.010677479, -0.015533369, -0.024656141, -0.025382128, -0.04109357, -0.018355127, -0.015766233, -0.004215515, -7.114324E-4, -0.022546671, 0.018040076, -0.0029347658, -0.004270307, -0.009643291, -0.001600937, -0.012745855, -0.0064825104, 0.015382692, -0.0071091875, -3.1184027E-4, 0.01884825, 0.016286751, -0.006893446, -0.017848307, 0.00523943, -0.006701676, 0.039175868, -0.033450164, 0.0026111538, 0.01769763, -0.029477786, -0.010677479, 0.009218657, 0.02064267, 0.008328296, -0.0030426362, -0.026190301, -0.0049928688, -0.016615499, 0.040162113, -2.8144813E-4, 7.1228854E-4, 0.036107548, 0.015122433, 0.029176433, 0.032902252, -0.011225393, -0.032299545, 0.0026368373, -0.008410484, -0.020355014, -0.005544207, 0.006770165, 0.010698026, 0.002744708, -0.0062564956, -0.03054622, -0.012197941, -0.009718629, -0.025409523, -0.0050579333, 0.02434109, 0.031340696, 0.012656819, -7.5295405E-4, 0.010595292, 0.0025084198, 0.008931003, -0.024258902, 0.005099027, 0.014862174, 0.008650196, 0.023710988, 0.013964964, -0.028272375, -0.009622744, -0.0036265075, 0.019409861, 0.013307467, 0.027299827, -0.019930381, -0.008026944, -0.0049278038, 0.0010795622, 8.5210295E-6, -0.007300957, 0.015053944, -0.024984889, -0.0044381055, 0.009122772, 0.018067472, -0.00786257, 0.015232016, 0.023615103, -0.01175961, -0.0015803901, -0.0020478296, -0.016903155, -0.0012045553, -0.021368656, 0.02766967, -0.0019519445, -0.0036881478, 0.022642557, 0.01987559, -0.013718403, 0.002619715, -0.008451577, 0.014793685, -0.019889288, -0.008821419, -3.0327908E-4, 0.027806647, -0.03208038, 0.014382749, -0.0150813395, 0.0012208214, -2.795219E-4, 0.0065783956, 0.0044723502, 0.024423277, 0.0076571014, -0.05514757, 0.0034124784, 0.0019587935, -0.00498602, -0.017533256, -0.0033902193, -0.027464202, -0.018314034, -0.008643347, -0.0011326415, -0.017259298, -0.019368768, -0.0028149094, -0.028573727, -0.013882777, 0.017012738, 0.19133165, -0.019190697, 0.0030529096, 0.044490635, -0.0036984212, 0.0062291003, 0.024313694, 0.010615839, -0.008252959, 0.010663781, -0.013245827, 0.0020546785, 4.627307E-4, 9.357348E-4, 0.022341203, -8.4841094E-4, -0.03487474, -0.01999887, -0.016533311, -0.029970909, -0.014766289, 0.0017156565, 0.0065475754, -0.023710988, 0.012615725, 0.005835287, 0.0029347658, 0.0029946938, 0.017396277, 0.0077598356, -0.007889966, -0.009889852, 0.003917587, 0.0013817713, -0.014930663, -0.0031624925, 0.003152219, 0.008417333, 0.010335033, 0.019697517, -7.520979E-4, -0.0120746605, -0.009478916, -0.0043867384, 0.007889966, 0.03232694, -0.021245375, -0.008615951, -0.0014100231, 0.003763486, -0.036984213, 0.009444672, 0.027203942, 0.019601632, -0.011458256, 0.0019022898, 0.011896588, 0.010725421, 0.0028063483, -0.008588556, 0.014752591, 0.02766967, -0.021779591, 0.022697348, 0.0024091105, 0.01954684, -0.032381732, -0.008725534, 0.0102459965, -0.039641596, -0.021574123, -0.021286469, -0.0012661956, 0.0150813395, -0.0011429149, -0.01188289, -0.0035135, 0.010013132, 0.020012569, 0.017396277, -0.028573727, -0.01783461, -0.002864564, -0.01987559, -0.01783461, -0.018930437, 0.02395755, -0.021998757, -0.005003142, -0.01801268, -0.012108905, -0.020697461, -0.008965246, -0.010061075, -0.011485652, 0.0059003513, 0.022889117, 0.023341147, -0.018259242, -0.004164148, -0.017368881, 0.01897153, 0.025546502, -0.0025871827, -0.024450673, -0.009917248, -0.0064482656, 0.004972322, 0.026245093, -0.015533369, -0.005807891, -0.021491935, -0.0025049953, -0.012067812, -0.004900408, 0.032409128, 0.012430805, -9.871018E-4, 0.040545654, -0.029916117, -7.388281E-4, -0.01884825, 0.01623196, 1.3708558E-4, -0.006479086, -0.02868331, -0.017903099, 0.009725478, -0.0073762955, -0.035997964, 0.018355127, -0.025601294, 0.016218262, -0.0014750878, -0.0038353996, 0.014232072, 0.03438162, -0.013882777, -0.004071688, 2.9172152E-4, -7.8249E-4, -0.009937795, 0.014067698, -0.01609498, 0.0071023386, -0.020752251, 0.004383314, -6.476518E-4, -0.008725534, -0.024642443, -0.019149603, -0.008663894, 0.0034809676, -0.0014622462, 0.04714802, -0.0026916286, -0.020368712, -0.022395995, -0.0123417685, 0.0402443, -0.037997853, 0.03380631, 0.01649222, -0.005064782, -0.0081639225, -0.0077940803, -0.17642839, 0.019642726, 0.008506369, -0.031148925, 0.01635524, 0.011999322, 0.013903324, 0.008081735, 7.409684E-4, -0.019149603, 0.026793007, 0.002280693, -0.042655125, -0.0036196585, -9.59706E-4, 0.011095263, -0.013204733, 0.03583359, 0.0344912, 0.0012088357, 0.038627956, 0.001136922, -0.015642952, -0.004304551, 0.013636216, 9.6056215E-4, 0.022875419, 0.01860169, 0.009554255, -0.007725591, -0.024902703, -0.009026887, 0.0035477448, -4.383314E-4, -0.021053605, -0.0028320318, -0.010430917, -0.014862174, -0.0044757747, -0.011471954, 0.038326602, 0.0112938825, 0.012259581, 0.014149886, 0.017807214, 0.02714915, 0.045339905, -0.0061743087, 0.026039625, -0.0082940515, -0.007883117, -0.027560087, 0.044052307, 9.836773E-4, 0.004414134, 0.03597057, 0.00721877, 0.0062564956, 0.002775528, 7.5851876E-4, -0.0092049595, -0.009930946, -0.0027738158, -0.0047839764, -0.007431087, -0.0098624565, -0.009574802, 0.01462931, -0.031176321, 0.015177225, -0.012376013, 0.0070817918, 0.0051606675, 0.01162948, -0.0028491542, -0.01630045, -0.03079278, 0.008924154, -0.0061640353, 0.016437428, -0.021354958, 0.034025475, -6.913137E-4, 0.015245714, 0.0166018, -0.009451521, 0.013999209, -0.007924209, -3.2810646E-4, -0.015382692, 0.008355692, -0.028984664, -0.033011835, -0.006503057, 0.0038353996, 0.0042326376, 0.0070133023, -0.0040031984, 0.011108961, -0.02402604, 0.0060167834, -0.021382354, -0.013348561, 0.022587765, 0.030683197, 0.004688091, 0.0073762955, 0.014259468, 0.027765553, 0.0045579616, -0.001180584, -8.2658E-4, 0.021026209, 0.016273053, -0.036765046, 0.0052223075, -0.012526689, -0.023628801, 0.0038764933, 0.005150394, 0.0338611, 0.007718742, -8.295764E-4, -0.010341882, -0.0031350967, -0.019574236, -0.094515204, -0.0018629085, 0.007424238, 0.027423108, -0.027313525, 0.036956817, -0.019752309, 0.026395768, -0.01794419, 0.04465501, 0.012889682, -0.023491824, 0.01743737, 0.0027481325, 0.007246166, 0.010684328, -0.018807156, -0.009163866, -0.013040359, 0.034710366, -3.216856E-4, -6.4369226E-5, 0.0016865486, -0.01783461, 0.0033131689, 0.011211695, -0.02357401, 0.024012342, 0.018505804, 0.0057154302, 0.007129734, -0.0319434, 0.005170941, -0.035751406, -0.018478408, -0.023656197, -0.029751744, -0.0242726, 0.0070201512, -0.05424351, 0.007609159, 0.009321391, 2.5148407E-4, -0.02210834, -0.017560652, 0.014656706, -0.026697122, 0.022272713, -0.016177168, -0.030464033, -0.011643178, -0.008595405, -0.0300257, -0.0075886124, 0.009047434, 0.024587652, 0.022217922, 0.009013189, -0.007889966, -0.024628745, -0.0035545938, 0.0037360901, -0.0223549, 0.024984889, 0.0036025362, -0.008218714, -0.01399236, -0.009547406, 0.004191544, -0.012026718, -0.020464597, 0.038162228, -0.027176546, -0.0069242665, -0.019533142, 0.002501571, -0.026669726, -0.01258833, 0.019601632, -0.031422883, 0.015958002, -0.028108, 0.022875419, -0.015684046, 0.01583472, 0.012773251, 0.014286864, 0.009177564, -0.008718685, -0.029066851, -0.008054339, 0.020491993, 0.010882947, -0.0099857375, -0.004198393, 0.011108961, 0.015245714, 4.819933E-4, -0.0012036992, 0.008396786, -0.0073625976, 0.0020033114, -0.079666734, 0.03125851, -0.025190357, 0.0011814401, -0.0036059606, -0.0052668257, 0.003616234, -0.012245883, -0.013958115, 0.010328184, -0.011478803, 0.018820854, -0.001306433, -0.008410484, -0.011903437, -0.0013732101, 0.0060099345, -0.007485878, 0.0014579656, -0.009287147, -0.025025982, 0.011437709, 0.016245658, 0.005537358, -0.008828268, 0.01623196, -0.0048456164, 0.011718516, -0.016437428, -0.008348843, 0.023217866, -0.009848759, -1.8138959E-5, 0.009170715, -0.017272996, -0.035176095, -0.006191431, 0.0038319752, 0.015423786, 0.010177507, -0.01583472, -0.024067134, -0.022080945, -0.0014913541, -9.408715E-4, 0.0052736746, -0.016053887, 0.0060715745, 0.010807608, 0.008526916, 0.025697177, 0.007225619, -0.009567953, -0.024204113, 0.018820854, -0.019190697, 0.04690146, 0.009437823, -0.009355635, -0.021368656, 0.030655801, 0.003852522, 0.032957043, -0.019396164, 0.013814288, -9.3145424E-4, 0.014286864, -0.011417164, 0.005396955, -0.030874968, -0.014656706, -0.014369051, 0.0030015428, 0.037340354, 0.004403861, 0.010800759, 0.006544151, 0.0061160927, 0.009430974, 0.022012455, 0.017300392, -0.0076502524, -0.029970909, 0.0022344629, -0.009417276, 0.011424012, -6.027057E-4, 0.0033097444, 0.004170997, 0.015163527, 0.0053181928, 0.0053010704, 0.01623196, 0.0035443204, 0.0016086419, 0.011677423, -0.013334863, -0.019587934, 0.0012336632, 0.026354674, -0.02057418, -0.008780326, -0.014232072, -0.024286298, -0.03218996, 0.011567839, -0.024587652, -0.012410258, 0.0015247426, 0.021382354, 0.013875929, 0.014204677, -5.128135E-4, 0.01111581, -0.04714802, 0.008136527, -0.015793629, -0.018985229, -0.018108565, 0.029340807, 0.016245658, 0.0022327506, 0.03520349, -0.020012569, 0.04123055, 0.018752364, 0.016766176, -0.027532691, -1.2606308E-4, 0.0048456164, 0.0031402335, -0.01546488, -0.019190697, 0.0023628802, -0.022327505, 0.004403861, 0.007903663, 0.016108679, -0.01111581, 0.074297175, 0.01794419, -0.001158325, 0.027066963, -0.018122263, 0.011643178, 0.017711328, 0.027587483, -0.03413506, 0.0019485201, -0.004030594, -0.032902252, -7.319792E-4, -0.022889117, 0.0029587368, 0.0017250738, -6.9944677E-4, 0.018423617, -0.003910738, -0.024135623, -0.008540614, -0.026149208, 0.027313525, 0.003232694, -0.01149935, -0.020272827, 0.013280071, -0.00683523, -0.0011720228, -0.016793571, 0.01079391, -0.018738667, 9.422627E-5, -0.004944926, 0.045778234, -0.013629367, -0.003136809, 0.011841796, 0.01776612, 0.0029707225, -0.014451238, -0.020423504, -0.033313185, -0.01719081, 0.009307694, -0.003453572, -0.007444785, -0.033011835, -0.017341485 ], + "id" : "c7d14028-f4be-42fc-92e8-0053649d78e8", + "metadata" : { + "source" : "movies.csv" + } + }, + "f215487d-576f-47bc-b7a4-b95714007777" : { + "text" : ",/9WHM084AoskcHCObAy4QnJg01eM.jpg,38757-62177-150540-12-808-102651-177572-2062-14160-9806-425-269149-585-93456-101299-8587-62211-10020-862-82702-20352\r\n321612,Beauty and the Beast,Family-Fantasy-Romance,en,A live-action adaptation of Disney's version of the classic tale of a cursed prince and a beautiful young woman who helps him break the spell.,59.589,Walt Disney Pictures-Mandeville Films,3/16/17,160000000,1266115964,129,Released,Be our guest.,6.968,15038,Emma Watson-Dan Stevens-Luke Evans-Josh Gad-Kevin Kline-Hattie Morahan-Haydn Gwynne-Gerard Horan-Ray Fearon-Ewan McGregor-Ian McKellen-Emma Thompson-Nathan Mack-Audra McDonald-Stanley Tucci-Gugu Mbatha-Raw-Clive Rowe-Thomas Padden-Rita Davies-D.J.", + "embedding" : [ -0.002244359, -0.03615256, -0.0049979566, -0.019074522, 0.0036422354, 0.03617954, 0.0056656995, -0.004084025, -0.004326841, -0.038580716, 0.005436374, 0.03272616, 0.01813024, -0.016268652, 0.010697381, 0.01575604, 0.021651067, -0.013921433, 0.005476843, -0.032564282, -0.0010884551, -0.0058478112, -0.020383028, 0.0020976579, -0.0026237585, -0.0021094615, 0.03563995, -0.016025836, -0.015054573, -0.0068595437, -5.379042E-4, -0.022527901, -0.0061783106, -0.018440504, -0.02310796, -0.004137984, 0.008410866, -0.03798717, 0.023256348, -0.013226711, 0.0107176155, 0.012835508, -0.011263951, 4.548579E-4, -0.01213404, 0.017064547, 0.009442833, -0.0099891685, -0.005736521, 0.03671913, 0.010832278, 0.044920906, -0.025010018, -0.032591265, -0.023485674, 0.00851204, -0.0039019135, 0.002650738, 0.0024517642, 0.0062525044, 0.015688593, -0.016025836, -0.020180684, -0.035316195, -0.023984795, -0.009429343, -0.017172465, -0.005136227, 0.005470098, -0.020180684, 0.024713242, 0.023984795, 0.016147245, -0.004970977, 0.022649309, -0.03215959, -0.027465153, -0.0045696567, 0.0062086624, 5.876477E-4, 0.010346646, 0.009085354, 0.007277726, 0.013503251, 0.007574501, 0.02884111, -0.013172752, 0.023715, -0.027073951, 0.0029458266, 0.0058714184, 0.032483343, -0.005392532, 0.0074328585, 0.0042627645, 0.017671587, -0.008134326, 0.029434659, -0.0012216665, -0.019007074, -0.0039019135, 0.004073908, -0.0076352046, -0.013125538, -0.0039423825, 0.0032611499, 0.005213793, -0.019047543, 0.0022780835, -0.0012579202, -0.014636391, 8.591292E-4, 0.033481587, -0.030783635, -0.006549279, -0.024888609, 0.0039255205, -0.011311165, -0.0027131282, -0.015095043, 0.021772474, 0.040954914, 0.009962189, -0.03890447, 0.03720476, 0.022730248, -0.012471284, -0.0063840295, -0.007291216, -0.018575402, 0.043032337, -0.011486531, 0.015742552, 0.0011078466, -0.023418225, 0.046431758, -0.036827046, 0.0075610112, -0.029164864, -0.014973635, 0.029596535, 0.031215308, -0.019924378, -0.008842538, -0.033670444, -0.00899767, 0.012444304, -0.0011137484, 0.027815888, 0.007871276, 0.037717372, 0.0032763258, 0.011985653, 0.026224095, 0.033832323, 0.010427586, 0.0037568985, -0.01330765, -2.4998214E-4, -0.016835222, -0.006464968, 0.009402364, -0.008235499, -0.0040401835, 0.0018126867, 0.010879492, 0.022177167, -0.00899767, 2.2258106E-4, -0.0013186241, -0.014960146, 0.017442262, -0.018966604, 0.0051901857, 0.008026408, 0.022811186, -0.008127581, -0.011493277, -0.029515598, 0.008296203, -0.020005316, 0.009577731, 0.032941997, 0.03785227, -0.013139027, 0.0036624703, 0.025509138, -0.0147847785, 0.0105220135, -0.032968976, -0.006043413, 0.020504437, -0.0033572642, -0.020720273, -0.64232844, -0.020436987, -0.016120264, -0.017604139, 0.010690636, 0.023404736, 0.013287415, -0.0023573358, -0.029650494, -0.02035605, -0.024349019, 0.020005316, 0.035127338, -0.019195931, -0.02150268, -0.011385359, -0.0035882764, -0.021151945, 0.022824677, 0.012417325, -0.019964846, 0.012788294, -0.0062390147, 0.009584475, -0.0036793323, -0.0069067576, -0.00847157, -0.0024011775, 9.95713E-4, -0.0038479543, -0.011115563, 0.0168622, 0.012113806, 0.0042695096, 0.033535548, 0.011297675, -0.009780077, 0.043652866, 0.02932674, 0.047079265, -0.031107388, -0.009780077, 0.013584189, 0.008269223, -0.014528473, 0.0077161435, 0.0057027964, 0.01525692, -0.008093856, -0.0028969261, -0.010636677, 0.012073336, 0.0064211264, -0.0050283084, -0.0028277913, -0.003723174, 0.029164864, -0.028544335, 0.030136127, -0.005247517, -0.014636391, 0.0075407764, 0.0073384303, 0.02027511, -9.9539684E-5, 0.008714385, -8.953829E-4, -0.0059725917, 0.008700896, -0.014541962, 0.015472756, -0.0011525315, -0.008700896, 0.0061850557, 0.0030706069, -0.0013144086, 0.01799534, 0.0034668685, -0.014353106, 1.3078745E-4, -0.0035983939, -0.019722031, 0.0048090997, 0.0014973634, 0.013429057, 5.4338446E-4, -0.041467525, 0.0022544763, 0.022770718, 0.0033151088, 0.0057466384, 0.017725546, -0.0022274968, -0.004387545, -0.0076419497, -0.007958959, -0.00934166, 0.0027552836, 0.007345175, -0.060811844, -0.010872748, -0.027438175, 0.021516168, -0.016349591, 0.037258722, 0.00606702, -0.011331399, 0.00794547, 0.023283327, -0.011527001, -0.0024096086, 0.0105759725, -0.01695663, -0.0054262565, -0.011041369, -0.03108041, 0.015000614, 0.0026928936, 0.0044853454, -0.008795325, 0.015189471, 0.009544006, 0.01860238, -0.01970854, -0.0046168705, 0.031161347, -0.006471713, -0.007291216, 0.0033302847, 0.019195931, 0.02478069, 0.005284614, 0.014245188, -0.021920862, 0.0024129811, 5.467569E-4, 0.028301518, 6.761743E-4, 0.018831706, -0.010839023, -0.009267466, -0.016241672, -0.006464968, 0.008451335, -0.011830521, -0.0054431185, -0.021758985, 0.0068123294, -5.9102016E-4, 0.0120665915, -0.039174266, 0.006043413, -0.005979337, 0.018467482, 0.007217022, 0.009557496, -0.009139313, -0.021232884, 0.021961331, -0.009550751, 0.0092607215, 0.024065735, -0.02324286, -0.007722888, 0.013806771, -0.013402077, -0.013085068, 0.026480401, 0.002060561, -0.022244615, 0.023364266, -0.013233456, -0.018359564, 0.030864574, -0.017172465, 0.03890447, -0.013685362, 0.00467083, -0.0058242045, -0.019088011, 0.009490047, -0.013563955, -0.02483465, -0.004987839, 0.038014147, 0.018467482, -0.005699424, -0.016713815, -0.02372849, -0.0012081767, -0.024497407, -0.0016879063, 0.0038209748, -3.937324E-4, 0.0025057232, 0.028328499, 0.003918776, -0.0015749296, 0.006104117, 4.2787837E-4, 0.031431142, 0.017455751, -0.0026068965, -0.004549422, 0.0049608597, -0.047106247, 0.009044885, -0.024929078, 0.011648409, -0.009415853, 0.030567799, -0.0154053075, -0.01581, -0.014744309, -0.0040941425, 0.02314843, 0.010697381, -0.0023000042, -0.00906512, 0.012889467, 0.003009903, -0.014541962, 1.4786042E-4, 0.014514983, -0.013779791, 0.0031920148, 0.010387116, -0.018319096, -0.0037467813, -0.014434044, -0.0037198015, -0.0020723646, -0.0075475215, -0.0030503722, -0.017145487, -0.004050301, 0.019937867, -0.01072436, 0.04063116, -0.016686834, -0.005567899, 0.019034052, 1.471227E-4, -0.004542677, -0.011129053, -0.010899727, 0.013584189, 0.018467482, -0.008087112, 0.026696237, -0.004158219, 0.01068389, -1.00435485E-4, 0.018507952, -0.0020082882, -0.009645179, 3.2459738E-4, 0.0147847785, 0.039444063, 0.026898583, 0.004384172, -0.01916895, 0.0073384303, 0.008073622, 0.008309693, -0.0068831504, -0.012255448, 9.4428327E-4, -6.631061E-4, -0.025684506, -0.016686834, -0.009051629, -0.005308221, -1.4269639E-4, -0.02152966, 6.217937E-4, -0.002043699, -0.0035747867, 0.017415281, 0.026075708, -0.0073047057, -0.032699183, 0.01918244, 0.017442262, -0.010178025, -0.01856191, -0.017158976, -0.002735049, -0.013287415, -0.0051497165, -0.0043571927, 0.040900957, 0.0014796582, -0.002520899, -0.005959102, 0.0036017662, 0.01742877, -0.015985368, 0.01811675, 0.026952542, -0.015823489, 0.0033134227, -0.0151220225, -0.012909701, 0.026156647, -0.021327313, 0.009611455, -0.0054970775, -0.011297675, -0.016754283, 0.008599723, 0.011324654, -0.04357193, 0.008222009, -0.03450681, -0.0029930407, -0.0175232, 0.008977436, 0.02375547, -0.016565427, -0.0015639692, -0.024429958, -0.011209992, 0.0039558723, 0.06728693, 0.031107388, 0.019479215, 0.009220252, -0.021610597, 0.012046357, -0.0059557296, -0.01914197, -0.021893883, 0.020625845, 0.025684506, -0.0061715655, 0.03563995, 0.017536689, 0.016524957, -0.014299147, -0.007938724, -0.009861016, -0.013806771, -0.004205433, -0.014757799, -0.0067516253, 0.019681562, 0.0360986, 0.0024534503, -0.031404164, 0.008336673, 0.024659283, -0.011385359, 0.011183012, -0.0017486103, 4.7509253E-4, -3.5410622E-4, 0.013766301, 0.010103831, 0.018265137, 0.0063840295, 0.0060872547, 0.02997425, 0.008930222, 0.01158096, 0.010704125, 0.0099014845, 0.006586376, -6.669001E-4, -0.015553694, -0.0026001516, 0.031242287, 0.023256348, -0.02822058, 0.013712342, -0.00479561, -0.019856928, 0.006562769, 0.015108532, 0.004384172, -0.010946942, 0.0017486103, -0.022285085, -0.012626416, 0.010252219, -0.028652253, -7.3898595E-4, -0.0051665786, -0.0063772844, -0.005004701, -0.023836408, -0.034210034, -0.012221724, 0.020490948, -0.0040199487, -0.024470426, -0.011439318, -0.01326718, 0.0061378414, -0.0022713386, 0.011715857, -0.0014214836, 0.0038816787, 0.020585375, -0.034371912, -0.026237585, -5.2863004E-4, -0.028031724, -0.023876878, 0.017455751, -0.010070107, 0.029758412, -0.027411195, 0.014568942, 0.025360752, -0.0040165763, -0.011560725, -0.019519685, 0.031215308, -0.006114234, 0.007648695, 0.019276869, -0.00381423, -0.0043605655, 0.014366596, -0.003018334, -0.0077633574, -0.026966032, 0.0054464913, -0.015337858, -6.112548E-5, -0.0131322825, 0.0048428243, -0.030837594, -0.024011774, -0.013118792, -0.009955443, -0.0055645267, 0.010151045, 0.009570985, 0.013563955, 0.0032729532, 0.006778605, 0.019587133, -0.003783878, -0.01296366, 0.0062693665, 0.008458081, -0.0140563315, 0.04273556, -0.018521443, -0.020598866, -0.0034634962, 0.029434659, 0.01807628, 0.0069809514, -0.020504437, -0.004667457, -0.01808977, -0.034668688, 0.03048686, 0.005095757, -0.006819074, 0.006114234, -0.021394761, 0.0020318953, 0.001294174, -0.0137190875, -0.0060467855, -0.029785393, 0.018400034, -4.154952E-5, 0.015661612, 0.042061076, 0.0053183385, 0.012214979, -0.022406492, -0.0037939954, -0.0012958602, -0.036314435, -0.022204148, 0.015108532, 0.031377185, 0.011371869, 0.041899197, 0.019236399, 0.017361322, 0.014555452, 0.0076621845, 0.015351349, -0.016632875, 3.7623788E-4, -0.026332013, 0.013766301, 0.008579488, 0.02768099, 0.015823489, 0.02206925, -5.3115934E-4, 0.016524957, 0.017846953, 0.017172465, -0.020126723, -0.021017049, -0.01914197, 0.003476986, -0.027842866, 0.012262193, -0.022217637, 0.002006602, 0.033994198, -0.00123347, -0.0041143773, -0.0075610112, 0.03906635, -0.015432287, 0.008302948, -0.030405922, 0.02324286, -0.026912073, -0.009766587, -0.025522629, -0.017212935, -0.0033960473, -1.5913703E-5, 0.003055431, -0.0024753711, -0.013725832, -0.0072440016, 0.027397705, -0.013179497, -0.026696237, 0.017158976, -0.008127581, -0.0014332872, -0.040739078, -0.01861587, -0.021259863, -0.017819975, -0.004144729, -0.014717329, 0.006741508, -0.018184198, -0.03661121, 0.02209623, 0.0052340273, 0.03394024, 0.013907944, 0.056063447, 0.029083924, -0.0021145202, -0.013118792, 0.01274108, -0.019883908, -0.0045089526, 0.016646365, 0.017105017, -0.01856191, -0.008862773, 0.0140968, -0.015985368, -0.036530275, -0.045001842, 0.016565427, 0.019897398, 0.023822919, -0.016619386, -5.016505E-4, -0.022109719, 0.021745495, -0.017037569, -0.003915403, 0.018872175, -0.026912073, -0.02881413, -0.0010859257, -0.006242387, 0.014069821, 0.0077093984, -0.013509996, 0.031997714, -0.022716757, -0.0010555738, -0.008066877, -0.0067516253, 0.01856191, -0.031646978, 0.014042841, 0.025306791, 0.022177167, -1.1613841E-4, -0.0011314537, 0.014218208, 0.029461639, -0.0136651285, 0.01525692, -0.012788294, 0.00848506, -0.009678904, 0.016848711, -0.029191842, -0.013051344, -0.030864574, -0.017051058, 0.033994198, 8.561783E-4, -5.425413E-4, -0.011500021, -0.011405593, -0.015904428, 0.015081553, -0.0046775746, 0.0016305749, -0.04343703, 0.01071087, -0.007608225, -0.0011592763, 0.018440504, 0.0031532317, 0.01159445, -0.004144729, 0.026898583, -2.523007E-4, -0.015189471, -0.0094563225, -0.01926338, -0.03275314, -0.013766301, -0.018507952, -0.006073765, -2.1552E-4, -0.009732863, 0.010137555, -0.014528473, -0.015621143, -0.0057027964, -0.0025917203, -0.020207662, 0.0037737607, 0.021111475, -0.0094563225, -0.0126533955, 0.0066369623, 0.011722603, 0.006485203, -0.0087616, 0.029029965, 0.019600622, 0.034237012, -0.034210034, -0.0056960518, -0.010049872, -0.018845197, -0.016605897, 0.005922005, 0.026385972, 0.010535504, 0.004893411, -0.02380943, -0.0028429672, -0.004512325, 0.034641705, 0.00338593, -0.010164535, 0.027815888, 0.0058950256, 0.024510896, 0.04921065, -0.0293807, -0.014474514, -0.020720273, -0.011203246, -0.015702082, -0.011466297, -6.513025E-4, -0.0019408393, -0.0013767987, -0.015729062, -0.034830563, 0.014326126, -0.032888036, -0.034776606, -0.010798554, 0.018926134, 0.038688634, 0.021880392, 0.0051193642, 0.016228182, -0.008491805, 0.0020504438, -0.02940768, 0.009253976, 0.0054566083, 0.011763072, 0.003807485, 0.028544335, -0.026210606, -0.018170709, 0.013752812, 0.025630547, 0.024376, 0.026682748, -0.01808977, -0.017981851, -0.0051463437, 0.010528758, -0.0028834364, -0.0055274297, 0.029245803, -0.038176022, -0.011763072, 0.008876263, 0.015108532, -0.014461024, -5.585604E-4, 0.012228468, -0.017914403, -4.573872E-4, -0.019047543, -0.015283899, -0.015607654, -0.014568942, 0.016174223, 0.009550751, 4.5778243E-6, 0.017631117, 0.0163361, -0.013489761, 0.0026557967, 0.0022038897, -0.00816805, -0.0073586646, -0.0071698083, 0.0036287457, 0.016052816, -0.024996527, -0.0010395547, -0.019668072, 0.0029019848, 0.0047989828, 0.01102788, -0.017698567, 0.034830563, 0.009577731, -0.036530275, 0.010205004, -0.0034179683, 2.5988868E-4, -0.014407065, -0.006222152, -0.011803541, -0.0041851983, -0.020410009, 0.0070281657, -0.026858114, -0.008795325, 0.0029576302, -0.014420555, -0.017388303, 0.017712057, 0.18292116, -0.016754283, 0.002711442, 0.05196256, 0.018521443, 0.0029154746, 0.028382458, 0.024227612, -0.014069821, 0.008572743, -0.006336815, 0.0035005931, -0.0033741265, -3.4209192E-4, 0.018224668, -0.0037029395, -0.024322039, -0.02320239, -0.017604139, -0.032105632, -0.010791809, -0.03108041, -0.011371869, -0.030351963, 0.0266153, -0.0029508853, 0.002458509, 3.5684634E-4, 0.033076894, 0.0077566127, -0.0073923892, -0.01015779, -0.011068349, 0.0077161435, -0.03178188, -0.0014358164, 0.014798268, 0.01411029, 0.008930222, 0.023782449, 0.010899727, -0.02534726, -0.012545478, -0.0064919475, 0.0035815316, 0.019587133, -0.019654581, -0.0045291875, -0.015378328, 0.012970406, -0.0337244, 0.010022893, 0.028463395, 0.026993012, -0.011189757, -0.0028210464, -6.066177E-4, 0.010393861, -0.0020200917, -0.0098475255, 0.013867474, 0.026439931, -0.028112663, 0.0088357935, -0.006181683, 0.022177167, -0.044435274, -0.022150189, 0.008019663, -0.02986633, -0.020248132, -0.013139027, -0.012666886, 0.004198688, -0.003928893, -0.008302948, -0.0013472899, 0.015135512, 0.017145487, 0.008957202, -0.017644608, -0.019883908, -0.007803827, -0.014258677, -0.009921719, -0.029083924, 0.03712382, -0.011398848, -0.0023269837, -0.029299762, 0.0020420125, -0.010036382, -0.0075407764, -0.002343846, 0.002849712, 0.011823775, 0.017253404, 0.008646937, -0.011513511, 0.004596636, -0.022905614, 0.0099352095, 0.019964846, -0.010090342, -0.024025265, -0.0072102775, -0.007905, 0.009941954, 0.026332013, -0.012478029, -0.017819975, -0.03105343, 0.010231984, -0.008667172, 0.0065290444, 0.011972163, 0.0011272382, -0.021637578, 0.037096843, -0.018750768, -0.01641704, -0.010542248, 0.013422312, -0.0010176338, 0.0021904, -0.021947842, -0.0023202389, -9.2489173E-4, -0.0038951684, -0.03731268, 0.0012874291, -0.007122594, 0.003148173, -0.006947227, 0.0046371054, 0.009186528, 0.03291502, -9.1393135E-4, -0.0023843152, -0.0030233928, 0.002428157, -0.020598866, 0.02039652, 0.017563669, 0.0064986926, -0.025360752, 0.009813801, 0.0025917203, -0.011162777, -0.03849978, -0.019843439, -0.015526715, 0.011864245, -0.014069821, 0.048805956, 0.032591265, -0.018723788, -0.031269267, 0.0011449435, 0.043032337, -0.024740223, 0.027734948, 0.024119694, -0.0049676048, -0.011223481, -0.011992398, -0.17256102, 0.01469035, -7.482602E-4, -0.029812371, 0.017118506, 0.030324982, 0.009483302, 0.005699424, 0.008377141, -0.025751954, 0.009530516, 0.005814087, -0.05269101, -0.005982709, -0.01017128, 0.016282141, -0.014150759, 0.032402407, 0.030648738, 3.3155305E-4, 0.051099215, 0.006262622, -0.008404121, -0.012909701, 0.0056353477, 0.016268652, 0.017131997, 0.0076621845, -0.0036961946, -0.023364266, -0.02534726, -0.004839452, 0.005547664, 0.0022848283, -0.021961331, -0.006893268, -0.016551936, -0.009968934, 0.008667172, -0.010872748, 0.05600949, 0.006879778, 0.013314394, 0.015540205, 0.0063064634, 0.024632303, 0.034210034, -0.011817031, 0.021435231, -0.016174223, -0.010474799, -0.026885094, 0.03051384, -0.0029272782, 1.3763772E-4, 0.037690394, -0.0043605655, 0.0045258147, 0.0025681134, -0.023849897, -0.014568942, -0.017954873, 0.006373912, -0.008856028, -0.005122737, -0.01645751, -0.00592875, 0.022177167, -0.023849897, 0.002527644, -0.017388303, 0.007574501, -0.0011845697, 0.010312922, 0.004910273, -0.022285085, -0.038607698, -0.003286443, -0.0018025694, 0.016147245, -0.025563097, 0.045919146, -0.013489761, 0.018197687, 0.026197117, -0.019398276, 0.007311451, -0.008248989, 0.00963169, 0.0012393718, 0.015985368, -0.013078324, -0.0135707, -0.013894454, 0.0059489845, 0.0091730375, 0.0026709726, 0.007115849, 0.00988125, -0.009105589, 0.0032122494, -0.026224095, -0.012086826, 0.01806279, 0.026952542, 0.0014880893, 0.0034348303, 0.008525529, 0.035073377, 0.004849569, 0.008255734, 0.008741365, 0.027815888, 0.0021887138, -0.029002987, 0.013617914, -0.011203246, -0.014069821, 0.0042088055, -0.0087818345, 0.021516168, -0.0031549179, -0.007102359, -0.0056859343, -0.01101439, -0.014029352, -0.09383478, -0.017118506, -0.0015032652, 0.03162, -0.02994727, 0.036988925, -0.014528473, 0.01807628, -0.01632261, 0.018588891, 0.0013413881, -0.015499735, 0.0037332913, 0.0011365124, 0.020571886, 0.0054093944, -0.028112663, -8.8442245E-4, -0.009179782, 0.026183626, 0.002068992, -0.01076483, 0.013260435, -0.016619386, -0.011162777, 0.028166622, -0.036017664, 0.018197687, 0.013361609, 0.020018805, 0.009463067, -0.021853413, 0.007122594, -0.04230389, -0.047726776, -0.023283327, -0.019398276, -0.01860238, 0.010387116, -0.05692679, 0.01799534, 0.009968934, -0.0058242045, -0.026588319, -0.004687692, 0.0011407279, -0.026736706, 0.03213261, -0.025846383, -0.034776606, -0.0019947984, -0.0026254447, -0.027573071, -0.0054802154, 0.023013532, 0.017752526, 0.015621143, -0.008592978, 0.0022814558, -0.032267507, -0.019856928, -0.012498263, -0.029083924, 0.009368639, 0.004701182, 0.012828763, 0.0073923892, -0.005284614, 0.023607083, -0.016430529, -0.013044599, 0.024632303, -0.024713242, -1.29312E-4, -0.017725546, -0.00563872, -0.028517354, -0.011682133, 0.026345504, -0.033103872, 0.016646365, -0.036368396, 0.013031109, -0.010373626, -0.01749622, 0.00621878, 0.0150680635, -0.0021027166, -0.0072440016, -0.027950786, -0.0036489803, 0.02758656, 0.022500921, -0.017131997, -0.010919962, 0.02718187, 0.019910887, 0.007446348, -0.0018480973, 0.011790051, -0.012295918, -0.0051901857, -0.07063239, 0.015041084, -0.010130811, 0.007999429, 0.0016761029, -0.0010522014, 0.014083311, -0.0073788995, -0.0088357935, 0.0046742023, -0.007979194, 0.018858686, -0.008586233, -0.0017317481, -0.012127295, 0.0011078466, 0.011129053, -0.009253976, -0.016066305, 0.011722603, -0.01702408, -0.015378328, 0.026858114, 0.009166293, 0.0045764013, 0.0058039697, 0.021138456, 0.021151945, -0.014258677, -0.008201775, 0.029272782, -0.019007074, 0.0018278627, 0.012383601, -0.0046573402, -0.022312066, -0.017185956, -0.0052812416, 0.024402978, 0.008660426, -0.005507195, -0.02316192, -0.0050721504, -0.0076014805, -0.004252647, 0.027411195, -0.030648738, 0.0069269924, 0.019695051, 0.03229449, 0.04462413, 0.011270695, 0.0046843197, -0.014582432, 0.02762703, -0.019330828, 0.03731268, -0.003063862, -0.007972449, -0.022339044, 0.013179497, -0.0041110045, 0.025077466, -0.025279813, -0.0067010387, 0.0060231783, 0.013840495, -3.9626175E-4, -0.003996342, -0.026156647, 0.009962189, 8.8357937E-4, 0.011068349, 0.03391326, 0.02267629, 0.020949598, -0.025563097, 0.010906472, 9.712628E-4, 0.02487512, 0.025603566, -0.014177739, -0.030702697, 0.01920942, 0.0044313865, 0.015904428, -0.012525244, -4.199742E-5, 0.0038310923, 0.023377756, -0.016916161, 0.016686834, 0.02027511, 0.029029965, -0.0010471427, 0.020490948, -3.8466897E-4, -0.013921433, 0.0013059775, 0.013590935, -0.013300904, 0.008235499, -0.018723788, -0.034668688, -0.03510036, -0.006650452, -0.031943753, -0.02312145, 0.014960146, 0.022042269, 0.029650494, -0.0013430744, -0.010083596, 0.0017823346, -0.04079304, 0.0117833065, -0.010892983, -0.010245474, -0.014029352, 0.05069452, 0.0018497835, 0.00594224, 0.03380534, -2.9972562E-4, 0.040766057, 0.008822304, 0.0072507467, -0.018899156, 0.010063361, 0.0023371011, -0.006839309, -0.007743123, -0.018386545, 0.0019374669, -0.0013439175, 0.006802212, 0.0067819776, 0.019883908, -0.019492704, 0.07144178, 0.022136698, 0.0065459064, 0.026251076, -0.024564855, 0.003915403, 0.013058089, 0.02430855, -0.016444018, 0.002780577, 0.0056555825, -0.024025265, -0.008990926, -0.029218823, -0.006411009, 0.015944898, 0.00851204, -0.0022780835, -0.007803827, -0.009483302, -0.007277726, -0.003132997, 0.022892125, 0.017631117, -0.025805913, -0.020018805, 0.016592406, 0.009483302, -0.0039019135, -0.024416467, 0.011486531, -0.023296818, -0.0044010347, 0.004333586, 0.03828394, -6.2305835E-4, -0.009490047, -0.00425602, 0.015391817, 0.019587133, -0.0036658426, 0.007743123, -0.022042269, -0.0026372483, -0.0069269924, -0.002520899, 0.019587133, -0.016470999, -0.0060164337 ], + "id" : "f215487d-576f-47bc-b7a4-b95714007777", + "metadata" : { + "source" : "movies.csv" + } + }, + "60f8bf2d-bea3-42f3-832c-0ce6b9d1d1c1" : { + "text" : ",269149-127380-38757-335797-109445-328111-150540-136799-62177-321612-10674-295693-2062-10198-62211-259316-177572-10144-82690-9806-332210\r\n602666,Detective Chinatown 3,Action-Comedy-Mystery,zh,Following the excitement of first Bangkok and then New York a big murder case takes place in Tokyo. Chinatown master detectives Tangren and Qinfeng are invited to take up the mystery. Adding to the excitement are the other detectives on the CRIMASTER international detective list as well as the current top rank Q. Yet another hilarious battle of wits is set to take place...,7.168,China Film Co-Production Corporation-WanDa Productions-Beijing Yitong Legend Films,2/12/21,0,686257563,136,Released,,5.8,46,Baoqiang Wang-Liu Haoran-Satoshi Tsumabuki-Tony Jaa-Masami Nagasawa-Tomokazu Miura-Shang Yuxian-Xiao Yang-Roy Chiu-Janine Chang-Cheng Xiao-Zhang Zifeng-Shota Sometani-Honami Suzuki-Tadanobu Asano-Zhang Xiran-Janice Man-Li Mingxuan-Yoshiki Oneda,,/jPF7uzdrJ3gynLAgNdCG9CevqAS.jpg,/myHjYG5BnavxtWHVUbjrWnt9ocx.jpg,895001-615137-835551-242606-496212-52274-401545-639557-454640-376570-498687-403032-37973-505513-373200-362682-513692-51533-111083-488623-529216\r\n177677,Mission: Impossible - Rogue Nation,Action-Adventure,en,Ethan and team take on their most impossible mission yet���eradicating 'The Syndicate' an International and highly-skilled rogue organization committed to destroying the IMF.,56.001,Paramount-Bad Robot-Odin-Skydance,7/23/15,150000000,682700000,131,Released,Desperate times. Desperate measures.,7.", + "embedding" : [ 0.01023639, -0.03257794, -0.012600242, -0.026720602, -0.028519642, 0.02370826, -0.007182208, -0.011965698, -0.028477803, -0.030374464, 0.024698429, 0.030513924, 0.008597731, 0.0040094852, 1.7715823E-4, 0.009985361, 0.02391745, -0.030737061, 1.01381134E-4, -0.019064229, -0.017362814, 0.0098737925, -0.016832864, 0.01846455, 0.0093577895, 0.02803153, 0.017502274, -0.013534627, -0.020737754, -0.008263025, 0.0068753953, 0.004849734, -0.011721643, -0.008144485, 6.859706E-4, -0.0011165544, -0.0036224825, -0.02634406, 0.009734333, -0.015731128, 0.017293083, 0.005954957, -0.004919464, -3.527911E-4, 0.0020674998, 0.017334921, 0.020277536, -0.021923168, -0.012948893, 0.02546546, 0.013667114, 0.029230889, -0.028924076, -0.0327174, -0.010152713, -0.005201871, -0.003207588, 9.77094E-4, -0.008186323, -0.0020884187, 0.0060525793, -0.026929794, -0.046635542, 0.0029164646, -0.0050345184, -0.009343843, -0.011428775, -0.012098186, 0.013088354, -0.008395513, 0.028951969, 0.01428074, 0.009664603, 0.003549266, 0.03369362, -0.036231797, -0.024433453, 8.5419463E-4, 0.008625623, 0.0031622634, 0.017265191, -0.018841093, -0.011010394, 0.021407163, 0.014211009, 0.017293083, -0.014573607, 0.02278782, -0.011456667, 0.012907055, 0.024433453, 0.025033133, 0.016721295, 0.02243917, -0.0055540083, 0.010124821, -0.018548226, 0.026985578, -0.025828056, -0.029342458, 0.01488042, -0.010571094, -0.010062064, -0.012000563, 0.0021877843, -0.007028802, 0.019845208, -0.008848759, 0.023610637, 0.013520681, -0.008779029, 0.0010886623, 0.025800165, -0.030876521, -0.004427866, -0.031852745, 0.033470485, -0.0051495736, -0.009009139, -0.018841093, 0.009099788, 0.03319156, 0.015452207, -0.027878124, 0.045770887, 0.018129846, 2.6105234E-4, -0.023289878, 0.0046893544, -0.0021163109, 0.03503244, -0.0012769338, 0.028296504, 0.030151328, -0.04568721, 0.06404019, -0.007328641, 0.0028746265, -0.02310858, -0.025242323, 0.026204599, 0.03851895, -0.026427737, -0.019468665, 0.0023342175, -5.56534E-4, 0.005784118, -0.0056934687, 0.02289939, -0.002145946, 0.029565593, 0.015075664, 0.006230391, 0.025033133, 0.015424315, -1.5678394E-4, 0.020919053, -0.0049368963, 0.016735243, -0.013925116, 0.0024300965, -0.009699468, -0.019538395, -0.012586297, -0.005428494, 0.024963403, 0.015535883, -0.022062628, -0.0080189705, -0.01684681, 6.03166E-4, 0.018799255, -0.0027438824, 0.0070845857, 0.021267703, 0.015577721, 0.02599541, -0.004647516, -0.027487636, -0.013597384, 0.011128936, 0.0063210404, 0.040666636, 0.027180823, -0.010850015, 0.017014163, -8.7685697E-4, -0.02581411, 0.006446555, -0.009922604, -0.0061432286, 0.014392308, 0.013269653, 0.008395513, -0.62969136, -0.019775478, -0.015005934, -0.014106414, 0.017530166, 0.012530512, -0.0018217008, 0.0074192905, -0.015619559, -0.012349214, -0.020877214, 0.006627853, 0.03570185, -0.019259475, -0.03461406, -0.02571649, 0.0016055373, -0.0028380181, 0.0016194833, 0.009720386, -0.03461406, 0.007900429, -0.0021842977, 0.0076145353, -0.0078097796, 0.012384079, -0.012439863, -0.022522846, 0.002267974, 0.015494045, -0.020235697, 0.021044567, 0.021323487, 0.0019507016, 0.0312949, -0.010076011, 0.006446555, 0.046942353, 0.033247348, 0.021365326, -0.003514401, -0.0030193166, 0.019677855, 0.009274113, -0.019120013, 0.008025943, 0.024851834, -0.008995192, 0.004790463, -0.013562519, -0.0055121705, 0.0039258087, 0.0037131319, -0.015270908, -0.0061362553, 0.0016892134, 0.0044662175, -0.04420893, 0.01190294, -0.0077958335, -0.010877907, 0.030597601, 0.0018339036, 3.0506952E-4, -0.019649964, 0.033526268, -0.0072519383, -0.009762225, 0.006457014, -0.017488329, -8.9864765E-4, 0.007621508, -0.020723809, -0.012683919, -0.0026915846, 0.021504786, 0.040136687, 0.011121963, 3.6172528E-4, 0.020486725, -0.0048567066, -0.0011305005, 0.0026636927, 0.012265538, 0.006352419, -0.0057387934, -0.04002512, -0.0056097927, 0.010159686, -0.007886482, 0.0039850795, 0.00463357, 0.006188553, 0.009741305, -0.00979709, 0.018101953, -0.010780285, -0.0060804714, 0.032828968, -0.052241847, -0.011219585, -0.0084303785, 0.007984105, -0.0049787345, 0.0074053444, 0.014643337, 0.004912491, -0.0131371645, 0.034586165, -0.002667179, -0.01229343, -0.011882022, -0.025869895, -0.0019123501, -0.00375497, -0.026204599, 0.012411971, 0.015256962, 0.020375157, 0.0029147214, -0.0077191303, -0.0038979168, 0.021295596, -0.010271255, 0.017530166, 0.02655325, 0.014204036, -3.0027557E-4, 0.010389796, -0.0084652435, -0.0074192905, 0.0031239118, 0.012181861, -0.022313656, 0.0074053444, 0.0017650451, 0.014127334, -0.010424661, -0.011163801, -0.005431981, -0.03531136, -0.009804063, -0.00744021, -0.010961584, 6.9294363E-4, -0.005505197, -0.023722205, 0.01141483, -0.004919464, -0.003563212, -0.019887045, 0.010396769, -0.011735588, 3.462539E-4, -0.007628481, -0.00463357, -0.011149855, -0.021128243, 8.7772857E-4, -0.01874347, -0.0011723386, 0.012028455, 0.0020727294, -0.007621508, 0.034976657, -0.028617263, -9.11722E-4, 0.0047730305, -0.020263588, -0.026204599, 0.0012316093, -0.01296284, -0.014894365, 0.010110876, -0.011819265, 0.011087098, -0.027376067, 0.008541946, 0.011721643, -0.013060462, 0.014587552, -0.0039990256, -0.01962207, -0.019719694, 0.025911734, 0.014008792, 0.02082143, -0.02676244, -0.007189181, 0.013897223, -0.015396423, 4.3755685E-4, -0.009078869, -0.008130538, 0.014517822, 0.0386863, 0.0057631987, 0.010062064, 0.015912427, 0.014462038, 0.0393836, 0.03316367, -0.010522284, 0.0019315259, 0.0023603665, -0.023359608, 0.006868422, -0.024531076, 7.332564E-5, 0.002255771, 0.020193858, -0.00868838, -0.01818563, -0.0035457793, 5.7048E-4, 0.042144917, -0.014782797, -0.0015218611, -0.018088007, 0.0031151955, -0.0056690634, -0.017739356, 0.020444887, 0.011261423, -0.014699121, -0.0155079905, 0.019984668, 5.421521E-4, -0.008193295, -0.011930833, -0.013750791, -0.00831881, 0.007635454, 0.0063210404, 0.010619906, -0.018966608, 0.03313578, 0.0088766515, 0.030792845, -0.015424315, -7.147343E-4, 0.017572004, 0.031601716, -0.015298801, -0.0060804714, -0.020026507, 0.010515311, 0.031852745, 0.011547317, 0.06827979, -0.025242323, 0.030597601, -0.011310235, 0.0019437287, 0.007544805, -0.007823725, -2.887265E-6, 0.019287366, 0.04340006, 0.0019611611, 0.018938715, -0.015954264, 0.009176491, 0.0051565464, 0.023345662, 0.009818008, -0.0015671856, 0.0039990256, -0.0025817598, -0.025577027, -0.011379965, -0.018241413, -0.004295379, 0.0034690762, -1.9633402E-4, -0.018520335, -0.003967647, 0.013151111, -0.0013579952, 0.023610637, -0.005906146, -0.04094556, 0.006798692, 0.019440772, -0.019050283, -0.015772965, -0.0126560265, -0.0035318334, -0.03676175, -0.006446555, -0.023722205, 0.008137511, -0.016330807, 7.7008264E-4, -0.034390923, -0.008862705, 0.009162545, -0.013806575, 0.014894365, 0.03277318, 0.005707415, 0.008521027, -0.009420547, -0.011505479, 0.025102863, -0.0063489326, 0.021504786, 0.008667461, 0.012251591, -0.0025608407, -0.0027107606, 0.011540344, -0.04379055, 0.0036015636, -0.015424315, -0.012983759, -0.013743818, -0.007691238, 0.014643337, -0.018868985, -0.0150617175, -0.035757635, -0.022132358, 0.011958725, 0.06777773, 0.026846116, 0.01864585, -0.010891853, -0.0018286739, -0.0069381525, 0.0073913983, -0.024907619, -0.006484906, -0.0145457145, 0.0098459, -0.00817935, 0.015772965, 0.016135562, 0.029621378, -0.0063559054, -0.004030404, -0.008486162, 0.0047800033, -0.0019036338, -0.026441682, 0.005491251, 0.026260383, 0.031434365, 1.328142E-4, -0.014768851, 0.021211918, 0.0207517, 0.0117844, 0.015187232, -0.016735243, 0.0035335766, 0.01095461, 0.0041838107, -0.026148815, -4.4752607E-5, 0.012014509, 0.010480445, 0.010361904, 0.005954957, 0.0011383451, 0.01843666, 0.008081728, -0.016149508, 0.019329205, -0.023694314, -0.0090161115, 0.0010241619, 0.021923168, -0.034056216, 0.024377668, 0.003144831, -0.027947854, -0.0188132, 0.006450041, 0.0155079905, -0.024475291, -0.009176491, -0.016135562, -0.009232275, 0.012844298, -0.052437093, 0.0188132, -0.0055888733, 0.0025434082, -0.006035147, -0.026441682, -0.020235697, 0.002076216, 0.02229971, -0.010605959, -0.010696609, -0.020695915, -0.0023429338, 0.0040966477, -0.011979644, 0.029063538, 3.7763247E-4, 0.016093723, 0.024029018, -0.038156353, -0.04769544, 0.004393001, -0.0288404, -0.013653168, 0.018687686, 0.012676946, 0.0011505479, 0.0035126575, -0.016121617, 0.012077266, 0.0021616353, -0.004040864, 0.012091212, 0.044543635, -0.00787951, 0.011205639, 0.026204599, 0.018450605, 0.01044558, -0.0036155095, -0.026678765, -0.021323487, -0.008507081, -0.01857612, -0.010947637, 0.0043825414, 0.010654771, -0.0188132, -0.014657282, -0.006927693, -0.026148815, 0.017083893, 0.023373555, 0.011491532, -1.4512593E-4, 0.017181516, 0.016372645, 6.328013E-4, 0.008011997, -0.012990732, 0.003083817, 0.008730218, 0.034809303, -0.0051983846, 0.01455966, -0.010431634, -0.02897986, 0.004427866, 0.024921564, -0.0019106067, 0.012146996, -0.0027194768, -0.0021337434, -0.02257863, -0.008486162, 0.009664603, -0.007293776, -0.009169518, -0.008820867, -0.021588461, -0.0037061588, 0.010850015, 0.010159686, 0.0024963403, -0.021923168, 0.005055438, -0.005996795, 0.011568236, 0.01818563, -0.01088488, -0.001926296, -0.04287011, -0.0041663777, -0.024433453, -0.040053014, -0.041280262, -0.0059584435, 0.021295596, 0.012077266, 0.03759851, 0.0052402224, 0.02363853, 0.017069947, 0.0010415944, 0.028589372, -0.024168478, 0.010933692, -0.033470485, -0.004919464, 0.02289939, 0.013576465, -5.3735817E-4, 0.0025678137, -0.011400884, 0.025967518, 0.012907055, 0.03358205, 0.020277536, -0.032243233, -0.028296504, -0.0072031273, -0.03701278, 0.0010843042, -0.029091429, -0.018199576, 0.020779593, -0.016512105, 0.0061432286, -0.009176491, 0.030290788, -0.010933692, -0.0040199445, -0.012418944, 0.0075657237, -0.02370826, -0.00889757, -0.01952445, 0.0068788817, -5.7048E-4, -0.0039362684, 0.017836979, 0.0074332366, -0.020347266, 0.016623674, 0.021588461, -0.019426826, -0.040276147, 0.006457014, -0.0019123501, -0.0073565333, -0.026371952, -0.010229416, -0.04203335, 4.9116195E-4, 0.0047381655, -0.0077470224, 0.0066452855, -0.019538395, -0.030374464, 0.038072675, 0.0051914114, 0.03291264, -0.00220696, 0.05756923, 0.028087314, 0.002152919, -0.014601499, -0.008353675, -0.012851271, -0.004023431, 0.027850231, 0.027696826, -0.020054398, -0.0013440491, -0.004086188, -2.889444E-4, -0.030876521, -0.030123435, 0.029035645, 0.025381783, 0.026748495, -0.025451513, 0.0032755749, -0.015591667, 0.016693404, -0.0172373, 0.017767249, 0.0018548226, -0.024558967, -0.017195461, 0.0072031273, -0.008660488, 0.009078869, 0.015410368, -0.016763134, 0.016051887, -0.013555546, -0.0013100556, -0.0031169388, -0.008332755, 0.027487636, -0.027627096, 5.0859444E-4, 0.00670107, 0.033470485, -0.008172376, -0.011156828, -0.008765083, 0.036176015, -0.018994499, 0.00861865, -0.010598986, 2.7347304E-4, 0.00567255, 0.024112694, -0.016902594, -0.012858245, -0.017669626, 0.007098532, 0.027166877, 0.024433453, 0.0052053574, -0.0050763567, -0.01765568, -0.027069254, -0.011219585, -0.009887739, 0.018562172, -0.039997227, 0.0027665447, -0.0035684416, 0.006955585, 0.0140297115, -0.0035579822, 7.17785E-4, -0.001381529, 0.015549829, 7.94924E-4, 0.014727013, -0.016581835, 0.0041628913, -0.048560094, -0.018143792, -0.013562519, -0.019078176, 0.006460501, -0.02243917, 0.0062338775, -0.02061224, -0.0019524449, -0.01488042, 0.012774568, -0.022146303, 0.013618303, 0.025312053, -0.00831881, -0.002850221, -0.016344752, 0.03299632, -0.0027491122, 0.025967518, 0.010891853, 0.015256962, 0.038072675, -0.022202088, 0.009315952, 0.007670319, -0.013932089, -0.022243926, 0.013374248, 0.015996102, -0.011582182, -0.0023272445, -0.018548226, 0.007607562, -0.0022505415, 0.024224263, -0.018157737, 0.018757418, 0.027836286, 0.016275022, 0.015619559, 0.014197064, -0.0043616225, -0.016372645, 1.4196627E-4, -0.01199359, -0.0148525275, 0.0028258152, -8.341472E-4, 0.013520681, -0.0028641669, -0.012384079, -0.035088222, -0.009894712, -0.023652475, -0.044432066, -0.008528001, 0.029370349, 0.04119659, 0.009113734, -0.014392308, 0.011142882, -0.01959418, 0.017892763, -0.014964095, 0.0028885724, 0.011435749, -0.0118680755, 0.019301312, 0.035367146, -0.021616355, -0.00882784, 0.0047311923, 0.025981463, 0.0043372167, 0.03500455, -0.02694374, -0.012126077, -0.013520681, -0.0148525275, -0.0012629878, -0.021616355, 0.0226902, -0.04161497, 0.008332755, 0.009657629, 0.019468665, 0.0016116387, 0.007865564, -0.0046300837, -0.011233531, -0.0067324485, -0.016330807, -0.037124343, 0.010626879, -0.014294686, 0.012398025, -7.426264E-4, -0.006823098, 0.024363723, 0.016735243, -0.013722898, -0.008716272, -0.018046169, -0.034669843, -0.0078028063, -0.013813548, 0.018199576, 0.025172593, -0.039272033, 0.02135138, -0.01624713, 0.0028868292, -0.016065832, -0.002487624, -0.019580234, 0.034195676, 0.017697519, -0.054863703, -0.012126077, 0.002316785, -0.0198731, -0.0033139265, 0.006265256, -0.034586165, -0.026190653, -0.004309325, 0.0022104466, 0.0053273854, -0.026720602, -0.013743818, -0.027850231, -0.01962207, 0.0061257957, 0.18308355, 0.001596821, 0.013946035, 0.0390489, 0.00699045, 0.033107888, 0.020919053, 0.02574438, -0.009092815, 0.012349214, 0.0067673135, 0.011331153, 0.0038700248, 0.0011732102, 0.010536229, -0.007502967, -0.0270832, -0.020068344, -0.022229979, -0.01913396, -0.015173286, -0.005927065, -0.021518731, -0.0163587, -0.0077261035, 0.0023969747, 0.0046300837, 0.0045603532, 0.01564745, -0.0030350059, -0.026455628, -0.022397332, 0.0040931613, 0.0047311923, -0.021518731, -0.0035353198, -0.009106761, 0.0073565333, 0.004295379, -0.008416432, -0.021211918, -0.0033348456, 0.0032790615, -0.014120361, 0.0027525986, 0.0027491122, -0.021881329, -0.001905377, -0.021992898, 0.005491251, -0.04136394, -0.002405691, 0.029342458, 0.02581411, -0.009518169, -0.012886136, 0.017613841, -0.004448785, -0.0042640003, -0.0061397417, -6.28879E-4, 0.03840738, -0.024266101, -0.008939409, -0.015745074, 0.024879726, -0.023024904, -0.023052795, 0.029286673, -0.035952877, -0.0018007818, -0.019719694, -0.018101953, -0.008967301, -0.012167916, -4.619624E-4, 0.024293993, 0.008779029, 0.017767249, 0.02782234, -0.014134306, -0.019301312, 0.01139391, -0.009671575, -0.010194551, -0.010661744, 0.011170774, -0.011045259, 0.0017371529, 0.0013553803, -0.018311145, -0.03718013, -0.015633505, 0.009553034, 9.5094525E-4, 0.0065023387, 0.022174196, 0.008109619, -0.0010877907, -0.018785309, -0.02897986, 0.047472302, 0.032187447, -0.014587552, -0.021295596, -0.021672139, 0.009950496, -4.5324615E-4, 0.024531076, -0.016023993, -0.0032703453, -0.040359825, -0.014601499, -0.008193295, -0.0062129586, 0.019747585, 0.012007536, -0.017432544, 0.031239118, -0.021937113, 0.0021616353, -0.030374464, -0.008200268, 0.0074611288, 0.007182208, -0.020193858, -0.009448439, 0.0017075177, 0.009859847, -0.027473688, 0.023610637, -0.023540907, 0.012697865, 0.008890597, 0.003556239, 0.022118412, 0.020040452, 0.008151458, 0.0050972756, -0.0057248473, 0.0056551173, -0.027933909, 0.0073635066, 0.00979709, 0.015480099, -0.016874703, -0.00933687, -0.004975248, -0.013506735, -0.019161852, -0.015786912, -0.02405691, 0.003097763, 0.01428074, 0.0415034, -0.015814804, -0.023080688, -0.028073369, 0.0020361212, 0.03098809, -0.03070917, 0.009999307, 0.01455966, -0.010438607, -0.034335136, -0.0144759845, -0.18018277, 0.025632812, 0.022481008, -0.033665728, 0.022662306, 0.025590975, 0.019580234, 0.006962558, 0.0016665512, -0.024600806, 0.020807484, 0.0032511693, -0.049787346, -0.01966391, 0.005320412, 5.805037E-4, -0.012000563, 0.038212135, 0.016275022, -0.0034202652, 0.027627096, 5.1687495E-4, -0.017488329, 0.005571441, 0.008751137, 0.011268396, 0.014092469, -0.016679458, -0.0015053002, -0.013660141, -0.036092337, -0.012077266, -0.002899032, 0.018129846, 0.009364762, 0.008304864, -0.0053971154, -0.009769198, -0.009678548, -0.024070857, 0.020988783, 0.03355416, 0.0036956992, -0.002707274, 0.013004677, 0.02507497, 0.021895275, -0.018143792, -1.4251104E-4, -0.006338473, -0.016763134, -0.04203335, 0.028115207, -0.0052053574, 0.010710555, 0.020905107, -0.020598294, -0.0034185217, 0.014217983, 0.0058956863, -0.021393217, -7.31731E-4, 0.015033825, -0.008283945, -0.026999524, -0.023513015, -6.8117667E-4, 0.022815714, -0.01825536, 0.023248041, -0.031043874, 0.02687401, 0.0131022995, -0.0031640066, 0.0032023583, -0.009629738, -0.017683573, -3.6717296E-4, 0.014462038, 0.015173286, -0.020068344, 0.04139183, -0.014078522, 0.021783706, 0.0149919875, 0.004497596, 0.027543418, -0.010473472, 0.015549829, -0.036678072, 0.0056063063, -0.0074262638, -0.017404651, -2.5582258E-4, -0.005114708, 0.015549829, 0.0011601357, 0.014768851, -0.004434839, -0.010515311, -0.0059793624, -0.016344752, -0.0053901426, 0.028951969, -0.007342587, 0.015396423, 0.004075729, 0.031601716, 0.022634415, -0.0076982114, -0.02412664, -0.0019001473, 0.02310858, 0.029872406, -0.01874347, 0.024823941, -0.026093032, -0.01980337, -0.007991078, 0.015103556, 0.02500524, -0.017460436, -0.007244965, 0.0049647884, 0.0010938921, -0.011101044, -0.07586643, 0.013074407, 0.0089812465, 0.033609945, -0.035646066, 0.04381844, -0.0065685823, 0.021853438, -0.021881329, 0.03960674, 0.016149508, -0.024098748, 0.0033226428, -0.0051007625, 0.015884534, -0.0016255847, -0.0019472152, -0.007823725, 0.0084652435, 0.034669843, 0.001627328, -0.0027229632, -2.2531563E-4, -0.025214432, -0.021937113, 0.003908376, -0.033358917, 0.021407163, -0.0099086575, 0.008283945, 0.021644246, -0.024489237, 0.018952662, -0.035813417, -0.021574516, -0.0038421326, -0.011617047, -0.01338122, 0.026985578, -0.048141714, 0.021658191, 0.0067533674, 0.009804063, -0.013199922, -0.0076145353, -0.014322578, -0.023206202, 0.03519979, -0.0117844, -0.024280047, -0.0077121574, 0.0013928602, -0.01656789, -0.0019524449, 0.027306337, 0.017739356, 0.020375157, 0.010452554, -0.021727923, 0.002172095, -0.0053517907, -0.01744649, -0.039272033, 0.0061641475, 0.0279618, 0.007475075, -0.0062129586, -0.0060665254, 0.0140297115, -0.020040452, -0.023526961, 0.036399152, -0.034558274, -0.01631686, -0.021142188, -0.0062582833, 0.003549266, -0.00817935, 0.039021004, -0.021253757, -0.011568236, -0.032187447, -0.004874139, -0.010438607, -0.0019280394, 0.00485322, 0.011805318, 0.0051774653, -0.0028449912, -0.047667548, -1.4654233E-4, 0.022885444, -0.014685174, -0.0033714538, 0.003967647, 0.037124343, 0.01913396, 0.003022803, -0.0067742863, 0.017627789, -0.018896878, -0.024782104, -0.08105435, 0.009037031, -0.016275022, -0.010522284, -0.0024684481, -0.0035196305, 0.012098186, -0.00875811, 0.016930487, -2.6061654E-4, -0.013562519, 0.024433453, -0.006641799, -0.0038979168, -0.01758595, 0.0054250075, 0.01273273, -0.0024475292, 0.012746676, 0.0023464204, -0.011777426, -0.004040864, 0.024307938, 0.0015331922, 0.006871909, 0.024572914, 0.009978388, 0.023596691, -0.017976439, -0.010354931, 0.02964927, -0.012969812, -0.0017476125, -0.021379272, -0.005215817, -0.03151804, -0.004797436, 0.007691238, 0.013046516, 0.009929577, -0.018380875, -0.01730703, -0.0043372167, -0.012837325, -0.0149222575, 0.0149222575, -0.016679458, 0.012628134, 0.021170082, -0.0061711203, 0.02564676, 0.0062199314, -0.018687686, -0.0077191303, 0.020640131, -0.032299016, 0.05118195, 0.010159686, -0.0062861755, -0.006024687, 0.023066742, -0.0014407997, 0.032968428, -0.033665728, 0.02472632, 0.014629391, -0.015577721, -0.011777426, 0.015187232, -0.033944648, -0.012446837, 0.0014007048, 0.010724501, 0.0145457145, 0.010069037, 0.02655325, 0.0094972495, -0.006460501, 4.2301155E-5, 0.0020378644, 0.019078176, -5.3387164E-4, -0.020040452, -0.0049926806, 0.0077749146, 0.019064229, -0.015033825, 0.008660488, -0.008444324, 0.003413292, -0.011498506, 0.0066836374, 0.015996102, -0.01127537, -0.001568929, 0.018018277, -0.008116593, -0.013862358, 0.011366018, 0.02412664, 0.026218547, -0.0020221751, -0.025047079, -0.011651912, -0.01495015, 0.010863962, -0.012809433, -0.0085001085, 0.0072658844, 0.01628897, 0.011770453, 0.02061224, 0.01074542, 0.009790117, -0.024572914, 0.015996102, -0.0058224695, -0.01666551, -0.020179912, 0.05511473, 0.005275088, 0.017641734, 0.013959981, -0.022425225, 0.060414225, 0.014782797, 0.01568929, -0.027487636, -0.011024341, 0.0054842783, -0.011024341, 0.0045952187, -0.022425225, 0.008834813, -0.01779514, 0.0117286155, 0.0055086836, 0.034809303, -0.010522284, 0.07575486, 0.025214432, -0.0062129586, 0.013423058, -0.017739356, -0.0011313721, 0.017362814, 0.021142188, -0.018492442, -0.015856642, -3.9048897E-4, -0.004619624, -4.0922896E-4, -0.027766556, -0.0027229632, -0.0013762993, 0.0033906298, 0.017153623, -8.402486E-4, -0.019649964, -0.0055679544, 0.009315952, 0.018715579, 0.020375157, -0.007523886, -0.0015802601, 0.020458832, -0.0074262638, -0.02047278, -0.03533925, 0.0054738186, -0.017293083, -0.0045185154, -0.0069137467, 0.009818008, 0.00143557, -0.0026811252, 0.006303608, 0.031015981, 0.01508961, -0.008479189, 0.0055191433, -0.0069869636, -0.008646541, 0.016735243, -0.011372992, -0.006613907, -0.034418814, -0.023861665 ], + "id" : "60f8bf2d-bea3-42f3-832c-0ce6b9d1d1c1", + "metadata" : { + "source" : "movies.csv" + } + }, + "1e593a00-f358-4f94-81f1-55f2a571e75b" : { + "text" : "Barnes-Gerry Bednob-Kurt Fuller-Dolores Nimon-Nate Shelkey-Kelly Stables-Angela Trimbur,hospital-germs,,,\r\n652,Troy,Adventure-History-War-Action,en,In year 1250 B.C. during the late Bronze age two emerging nations begin to clash. Paris the Trojan prince convinces Helen Queen of Sparta to leave her husband Menelaus and sail with him back to Troy. After Menelaus finds out that his wife was taken by the Trojans he asks his brother Agamemnon to help him get her back. Agamemnon sees this as an opportunity for power. They set off with 1000 ships holding 50000 Greeks to Troy.,51.038,Warner Bros. Pictures-Plan B Entertainment-Nimar Studios-Radiant Productions-Helena Productions-Latina Pictures,5/3/04,175000000,497409852,163,Released,For passion. For honor. For destiny. For victory. For love.,7.142,9306,Brad Pitt-Orlando Bloom-Eric Bana-Brian Cox-Sean Bean-Brendan Gleeson-Diane Kruger-Peter O'Toole-Rose Byrne-Saffron Burrows-Garrett Hedlund-Vincent Regan-Julie Christie-Nathan Jones-Mark Lewis Jones-John Shrapnel-James Cosmo-Nigel Terry-Julian Glover-Trevor Eve-Frankie Fitzgerald-Lucie Barat-Siri Svegler-Ken Bones-Manuel Cauchi-Owain Yeoman-Tyler Mane-Louis Dempsey-Joshua Richards-Tim Chipping-Desislava Stefanova-Tanja Tzarovska-Luke Tal-Matthew Tal-Alex King-Adoni Maropis,sibling relationship-adultery-mythology-beauty-trojan war-bravery-wall-fraud-hostility-epic-sword fight-battlefield-historical fiction-ancient world-based on song poem or rhyme-pyre-ancient greece-peplum-trojan horse-bronze age-sparta greece-helen of troy-homer's iliad-muscular men-ships-sword and sandal-helmet,/a07wLy4ONfpsjnBqMwhlWTJTcm.jpg,/qZitv5zrSXfJafGThxmvbvTsuu5.jpg,787-616-1271-98-1593-4922-1495-9738-310-285-163-1966-161-58-74-591-2048-6479-197-8960-676\r\n863,Toy Story 2,Animation-Comedy-Family,en,Andy heads off to Cowboy Camp leaving his toys to their own devices. Things shift into high gear when an obsessive toy collector named Al McWhiggen owner of Al's Toy Barn kidnaps Woody. Andy's toys mount a daring rescue mission Buzz Lightyear meets his match and Woody has to decide where he and his heart truly belong.,94.718,Pixar,10/30/99,90000000,497400000,92,Released,The toys are back!,7.589,13106,Tom Hanks-Tim Allen-Joan Cusack-Kelsey Grammer-Don Rickles-Jim Varney-Wallace Shawn-John Ratzenberger-Annie Potts-Wayne Knight-John Morris-Laurie Metcalf-Estelle Harris-R.", + "embedding" : [ 0.0036293117, -0.03371119, -0.00442616, -0.037079528, -0.012171939, 0.02321646, -0.008107667, -0.012575583, -0.0071124765, -0.036439262, 0.023675779, 0.018553682, 0.02023785, 9.429947E-4, 0.009054141, 0.01934705, 0.0039877193, 0.00796152, 0.004182582, -0.020335281, -0.002554089, -0.0013866546, -0.027433839, 0.011643027, 0.025624402, -0.0047602095, 0.034434967, -0.018177876, 0.0102441935, -0.013403747, -0.002708935, -0.020808518, -0.0089706285, -0.01349422, -0.019096512, -0.01568642, 0.022492686, -0.029479893, 0.02751735, 0.0048785186, -4.6279814E-4, 0.014503328, -0.01813612, 7.059412E-4, -0.0041756225, 0.014586841, 0.017495858, -0.0045792656, -0.01845625, 0.027475595, 0.022047285, 0.01558899, -0.023383485, -0.023466997, -0.006955891, -0.0026915364, -0.01635452, 0.013208886, -1.4027482E-4, -0.001304012, 0.0038206945, -0.020084742, -0.016410196, -0.0012770445, -0.015672503, -0.009562175, -0.00784321, -0.012679973, -0.014294547, 0.0059433025, 0.022896329, 0.022130799, 0.015547234, 0.0054457076, 0.03231932, -0.028394232, -0.012979226, 0.009638729, -0.005428309, 0.029006656, 0.008142464, -0.027907075, -0.012805242, 5.910028E-5, 0.028268963, -2.509723E-4, 0.0018616316, 0.03844356, -0.027364245, 0.010014534, 0.025332108, 0.039167337, 0.009047181, 0.008810563, 0.020725006, 0.023745373, -0.03006448, 0.021267837, -0.0069802487, -0.023035517, -0.0097292, -0.014141441, 0.0012492071, -0.008379082, -0.0027280732, 0.01934705, 0.0029699113, -0.015073997, 0.02453874, 0.0028950982, 0.0055570574, -0.0020738924, 0.028129775, -0.047017507, -0.008532188, -0.002663699, 0.0049376735, -0.012241533, -0.015352371, -0.021309592, 0.018261388, 0.021476617, -0.0011743938, -0.0132854385, 0.0152688585, 0.03783114, 0.008441716, -0.005671887, -0.011837889, -0.008393001, 0.019764611, 0.005946782, 0.005807595, 0.012860917, -0.030983118, 0.03861059, -0.028394232, 0.0051673325, -0.022033367, -0.02245093, 0.022812817, 0.022687549, -0.012568623, -0.018038688, -0.0420346, 0.020168256, 0.02167148, 0.005616212, 0.0070707207, 0.022186473, 0.019931637, 0.027698295, 0.0075230794, 0.008942791, 0.015004403, 0.005717123, -0.005504862, -0.0017494118, -0.011121074, -0.011030602, -0.0028533419, -0.0048472015, 0.027016276, -0.02078068, 0.007474364, 0.027336407, 0.011622149, 7.316038E-4, 0.0027994069, -0.0024462189, -0.008483472, 0.014753866, -0.022854572, 0.008761847, -0.012081468, 0.017481938, -0.0010064989, 0.0070602815, -0.029591244, -0.027169382, -0.0075926734, -0.009144613, 0.019917719, 0.042173784, 0.00885232, 0.01735667, 0.0077666575, -0.03173473, 0.015018322, 0.005630131, -0.0070846393, 0.013890903, -0.0042591346, -0.0018494527, -0.65117437, -0.011441206, -0.0036884665, -0.01956975, 1.6093544E-4, 0.0016737286, -3.0925704E-4, -0.0043148096, -0.044539973, -0.014739946, -0.03939004, 0.02432996, 0.028282883, -0.009374272, -0.011510799, -0.0019120871, 0.010759187, -0.010188518, 0.021574048, -0.0018477129, -0.027907075, 0.015394128, 0.021908099, 0.009624809, 0.020279605, -0.0016485009, -0.003150855, -0.019862043, -0.0050211856, 0.008469554, -0.014204076, 0.025874939, 0.019708937, -0.0019399246, 0.036801152, 0.009770956, -0.029980969, 0.05200042, 0.03861059, 0.016103983, -0.011288099, -0.025819264, -0.0012431176, -0.00608249, -0.019207863, 0.024149016, 0.0037093444, -0.002973391, -0.01282612, -0.024274284, 0.0073490953, -0.0017407126, -0.003462287, -0.0062947506, 0.005738001, 0.014280628, 0.01867895, -0.03538144, 0.01282612, -0.003415311, -0.010084128, 0.017426264, -0.0038833288, 0.014280628, -0.021518374, 0.027573027, -0.016980864, -0.014280628, 0.0056544887, -0.0131462505, 0.010814861, 0.01127418, -0.014948728, -0.0026741382, 0.0011248082, 0.02321646, 0.023870641, 0.001061304, -0.00895671, 0.01348726, 0.017788151, -0.002863781, -0.005296081, 0.01426671, 0.025735753, -0.010515609, -0.018720707, 0.028060183, 0.005866749, -0.009548256, -0.0063747833, 0.038833287, 0.006489613, -0.005605773, -0.007397811, 0.0043391674, -0.0016650294, -0.008372122, 0.02156013, -0.0557028, -0.012645177, -0.013389829, 0.017175727, -0.0016728587, -0.009861428, 0.0045514284, -8.73401E-4, 0.004363525, 0.034379292, -0.015950877, -0.00751612, 0.007683145, -0.009235085, -0.005487464, 0.003949443, -0.023119029, 0.02554089, 0.012596461, 0.0055570574, -0.0042312974, 0.001924266, -0.0119422795, 0.007046363, -0.01956975, 0.014475491, 0.042507835, -0.002686317, -0.0178995, -0.008003276, 0.007996317, 0.0042382567, -6.554857E-4, 0.02090595, -0.015630746, 0.012206736, 0.018122202, 0.021295674, -0.020363118, 0.030649068, -0.01614574, -0.022367418, 0.0011335075, -0.005424829, -8.29035E-4, -0.0067088334, -0.024594415, -0.038833287, -0.003049944, -0.019277457, -0.002896838, -0.009875347, 0.011566474, 0.0031995706, -0.009353394, 0.007032444, 0.009576093, -0.039974626, -0.017384507, 0.0076761856, -0.0024844953, 0.010320746, 0.008678335, 0.0042730537, 0.001858152, 0.0132506415, -0.012916592, -0.005132536, 0.008643538, -0.0038659303, -0.023119029, 0.019750694, -0.0094299475, -0.008608742, 0.00885232, -0.023968073, 0.019166106, -0.021935936, 0.00795456, 0.011907483, -0.0040747114, -0.013995294, -0.002587146, -0.02675182, 0.01148992, 0.035799, 0.011775255, 0.013619488, 4.8280632E-4, -0.0098892655, 0.019597588, -0.007857129, -0.0040642726, 0.0026323819, -0.017342752, -0.0088384, -7.7683973E-4, 0.005149934, 0.02046055, 0.01503224, 0.011100196, 0.043064583, 0.025805347, 0.005692765, -0.0073908516, 0.014162319, -0.025596565, 0.014294547, 1.4060103E-4, 0.010529527, -0.003063863, 0.007808414, -0.014656435, -0.005717123, 0.007683145, 0.0042312974, 0.018762464, -6.3852227E-4, 0.010265072, -0.0054561463, 0.0027924473, 0.017328832, -0.010522569, 0.02708587, 0.019333132, -0.03902815, 0.0051394952, -0.0021034698, -0.0071472735, -0.023299973, -0.023063354, 3.436189E-4, -0.004189541, 0.0012074508, 0.015728178, -3.714564E-4, -5.7893264E-4, 0.025290353, 0.002886399, 0.024483066, -0.019611506, 0.0076692263, 0.014503328, 0.029173682, -0.010132844, -0.017983014, -0.0024862352, 0.01050865, 0.016229251, -0.017203564, 0.020599736, -0.016382359, 0.003227408, -0.0074395672, 0.01227633, 0.009694403, -0.01150384, 0.0075022015, 0.008003276, 0.025192922, 0.023244297, 0.006127726, -0.020377036, 0.015004403, 0.0060581323, 0.013549894, -0.0073908516, -0.0071681514, -0.018929487, -0.012860917, -0.015895203, -0.010480812, -0.0014658174, 0.0039529223, 0.0034240102, -0.0013762155, -0.0063747833, -0.008358204, 0.010056291, 0.010710471, 0.026556958, -0.021699317, -0.029034493, 0.016730327, 0.018804219, -0.013466382, -0.014628597, -0.026487364, -0.0114829615, -0.02046055, -0.0049098358, -0.014823459, 0.025387784, -0.007912804, 0.023035517, 0.0026254226, -0.005118617, 0.0019955996, -0.021615805, 0.018581519, 0.015950877, 0.0018720707, 0.008601782, -0.016716408, -0.010661756, 0.014405897, -0.017746395, -0.0018303144, -0.008246854, -0.0058180336, -0.014893053, 0.020516224, 0.003970321, -0.028867468, -0.01370996, -0.014336303, -0.0050490233, -0.01437806, 0.007780576, -0.0057623587, -0.0036571492, -0.01845625, -0.030649068, -0.029118007, 0.024371715, 0.086852945, 0.028811794, 0.0060511725, 0.02089203, 0.00187903, 0.0199038, 6.611402E-4, -0.009972778, 0.024065504, 0.010153722, 0.012443354, -0.014642515, 0.038220864, 7.729251E-4, 0.017996931, -0.008894076, -0.016103983, -0.0036188727, 0.010459934, -0.016660733, -0.018720707, -0.009123735, 0.0094299475, 0.031038793, -0.006444377, -0.030676905, 0.016340602, 0.014684272, -0.0017154849, -0.0022826735, -0.017203564, -0.0073560546, 1.9105648E-4, 0.008281651, 0.002896838, -4.9107056E-4, 0.027990589, 0.027183302, 0.023383485, -0.008386042, 0.010961008, 0.009158531, 0.006813224, -0.01636844, 0.01835882, -0.004015557, -0.0050490233, 0.0047810874, 0.016786002, -0.034796853, 0.033154443, -0.0065174503, -0.006454816, -0.0144198155, 0.016813839, -0.019889882, -0.008267732, 0.004888958, -0.019736774, 0.0024496985, 0.008573945, -0.034963876, 0.025081571, -0.013132332, -0.0058458713, -0.042619184, -0.02697452, -0.0023018117, -0.011469043, -0.006928053, -0.0058423914, -0.028561257, -0.011232424, 0.002754171, 0.0014858256, 0.0073003797, 0.038081676, -0.022019448, -0.002696756, 0.019820288, -0.026459526, -0.030537717, 0.008476513, -0.025401702, 3.9494428E-4, -0.0021052095, 0.007933683, 0.025568727, -0.0060337745, 0.007919763, 0.011907483, -3.1773877E-4, -0.015881283, -0.02875612, 0.041394334, 0.00652093, 0.0070602815, 0.015296697, 0.011705661, -0.004276533, 0.0042626145, -0.015769934, -0.014628597, -0.019834206, -0.00894975, -0.013188007, -0.019374888, -0.006774947, -0.01083574, -0.017203564, -0.016869513, -0.010647837, 0.004895917, 0.0052264873, 5.515301E-4, -0.0027889677, 0.0035110025, 0.007829292, 0.0031804324, -0.0023192102, -0.0052334466, -0.02375929, 0.009186369, 0.01636844, -0.020390956, 0.032542016, -0.0011770035, -0.013236723, 0.0067610284, 0.007342136, -0.0011517758, 0.0013831749, -0.027503433, -0.0026567397, -0.023244297, -0.017718557, 0.0014605979, 0.00531, -0.01160823, 0.003227408, -0.009645687, 0.0019399246, 0.0050211856, -0.008344285, -8.377342E-4, -0.021949856, -0.0012979226, -0.010098047, 0.0062634335, 0.028408151, -0.012018833, 0.019430563, -0.026835334, 0.006037254, 0.0020164775, -0.020627575, -0.012025792, 0.0036884665, 0.039612737, 0.008372122, 0.03813735, -0.008399961, 0.03326579, -5.119487E-4, 0.013995294, 0.02455266, -0.031706892, -0.018929487, -0.05197258, 0.004008597, 0.018484088, 0.025693996, 0.0010995805, 0.010251153, -0.008219017, 0.03947355, 0.01073135, 0.0029942691, -0.00872705, -0.023814967, -0.022854572, -0.0054561463, -0.0148095405, -0.0035284008, -0.036773313, -0.01713397, 0.032569855, -0.0048506814, -0.010459934, -0.014614678, 0.023578348, -0.0038311335, 0.01348726, -3.6297468E-4, 0.015310615, -0.029479893, -0.014893053, -0.020112582, -0.01547764, -0.014976566, -0.009221166, 0.014245831, -0.01282612, -0.018553682, -0.0014518987, 0.020627575, -0.023494834, -0.035576303, 0.016674653, -0.013201926, -0.015895203, -0.01668857, 0.008434757, -0.012137142, -0.016340602, 0.0016441513, -0.0062042787, 0.0029472935, -0.031205818, -0.039779764, 0.017648963, -0.007039403, 0.047407232, 0.013097536, 0.02598629, 0.023856722, 0.006813224, -0.011796133, 0.016869513, 0.0010552146, -0.013424626, 0.020878112, 0.014545084, -0.0077875354, -5.841522E-4, -6.0155056E-4, 0.004833283, -0.024135098, -0.04401106, 0.03162338, -9.29076E-4, 0.0033752946, -0.033015255, -0.0047497703, -0.030092318, 0.031873915, 0.0032047902, -0.008239895, 0.0055570574, -0.018150039, -0.0036606288, 3.4688113E-4, -0.0031560746, 0.019054757, 0.0016406716, -0.042312972, 0.026195072, -0.017593289, 0.0014753866, -0.0029803505, -0.009548256, 0.034351453, -0.025471296, 0.032040942, 0.018971244, 0.014461572, 0.009784875, 9.3603536E-4, 0.0114481645, 0.033349305, -0.01702262, 0.016298845, 0.0026132436, 0.0111976275, 0.026654389, 0.005793676, -0.016312765, -0.012151061, -0.024872791, -0.015018322, 0.029396381, 0.00896367, 0.0040851505, -0.0075230794, -0.020822437, -0.0011169789, 0.009478663, 0.004920275, 0.0054317885, -0.037190877, -0.0037963367, -0.01039034, 0.014217994, -0.002133047, -0.01913827, 0.0026619593, 0.006012896, 0.025833184, -0.005626651, -0.010202438, -0.028644769, -0.020488387, -0.045820497, -0.020850275, -0.0014858256, -3.1360664E-4, 0.021532292, -0.022283904, -0.0035666774, -0.007641389, 0.017008701, 0.0020878112, 0.0017702898, -0.018344902, -0.003417051, 0.027698295, -0.008504351, -0.024942383, -0.0127565265, 0.023508754, 0.032792553, -0.0050211856, -0.012137142, -0.0015963056, 0.040058136, -0.020251768, 0.011176749, -2.206338E-4, -0.03073258, -0.013870025, 0.014475491, 0.01802477, 0.0019608026, -5.4544065E-4, -0.037441414, -0.0174541, -0.0011326376, 0.029201519, 0.004360046, -0.013014023, 0.018317062, -0.0047497703, 0.025861021, 0.035464954, -0.0014197116, -0.026918845, 0.010014534, -0.031094467, -0.022840654, 2.1204332E-4, 0.009492582, 0.019514075, -0.016966945, -0.023299973, -0.0090054255, 0.0054422277, -0.010111965, -0.025888858, -0.0024827553, 0.021253917, 0.04665562, 0.01072439, 1.5093134E-4, 0.011984036, 0.0027646099, 0.009583053, -0.02124, -0.006809744, 0.01670249, 0.006270393, 0.012429436, 0.018511925, -0.036021702, -0.0114481645, 0.016813839, 0.02121216, 0.005922424, 0.02598629, -0.0036049539, -0.017328832, -0.016215334, 0.0071159564, -0.011531677, 0.0035092626, 0.026403852, -0.024789277, -0.016006552, -4.1690978E-4, 0.025693996, 7.0028665E-4, -0.010466893, 0.01525494, -0.02098946, 0.010821821, -0.015644666, -0.0040781912, -0.0019869003, -0.019639343, 0.03507523, 0.0021260877, -0.0056127324, 0.015533315, 0.027155465, -0.017760314, -0.008692253, 8.95149E-4, -0.002729813, -0.016326683, -0.017774232, -0.013654285, 0.023522673, -0.014190157, 0.03229148, -0.025248596, 0.002112169, -0.0036014742, 0.010167641, -0.017551532, 0.037218712, 0.0058980663, -0.070373155, -0.0010343364, 0.0015145331, -0.0074395672, 0.011267221, -0.0042591346, -0.020599736, -0.0088384, -0.01271477, -0.008323407, -0.013361991, -0.022089042, 0.009603932, -0.007759698, -0.016284928, 0.008490432, 0.19308078, -0.02928503, 0.018929487, 0.024302121, -0.0119770765, 0.009993657, 0.013633407, 0.032040942, -0.012972266, 0.0054352684, 0.0012613859, 0.010814861, -0.0013283698, 0.0075022015, 0.0051568937, -0.009666566, -0.023731453, -0.018818138, -0.023898479, -0.01691127, 0.010459934, -0.0020321363, -0.0017172247, -0.01646587, 0.0075369985, 6.868029E-4, -0.022172555, 0.0033874735, 0.0073142983, 0.005365675, -0.014217994, -0.029257193, -0.00961785, -0.006830622, -0.015421965, -0.003803296, 2.972956E-4, 0.014990484, 0.029786106, -0.005337837, 0.0030464644, -0.0145590035, -0.014211034, -0.002797667, 0.004126907, 0.011810052, -0.030788256, -0.0037615397, -0.014183197, 0.013361991, -0.043871872, -0.007884967, 0.01944448, 0.021824585, 0.0029942691, -0.0047706487, 0.0065626865, 0.0020129979, -0.0015301916, 0.02078068, 0.0153384525, 0.03415659, -0.023286054, 0.034462802, -0.013542935, 0.014656435, -0.01845625, -0.0032100098, 0.0058563105, -0.027823564, 0.0049446328, -1.1961418E-4, -0.009645687, -1.3395429E-5, -0.006454816, -0.014461572, 0.01869287, -0.0069454517, -1.4582057E-4, -0.0025732273, -0.025721833, -0.018943407, 0.010856618, -0.01215802, -0.014684272, -0.03062123, 0.0014110124, -0.021059055, -0.0062947506, -0.029758269, -0.003448368, -0.005651009, -0.010849658, 0.007272542, -0.0060198554, 0.0037545804, 0.033655517, 0.013995294, -0.0038520116, -0.012011874, -0.032040942, 0.024149016, 0.022075124, -0.007495242, -0.050469354, -0.00972224, 0.005657968, 0.01702262, 0.030426368, -0.011183709, -0.00530652, -0.021601886, 0.0029142364, -0.019374888, 0.0035562383, 0.028895307, 0.010042371, -3.592775E-4, 0.028672606, -0.019277457, 6.259084E-4, -0.0076135513, 0.022492686, 0.0059641805, 5.88828E-5, -0.02797667, -0.02574967, 0.009144613, 0.0027733091, -0.024246447, -0.006047693, -0.03270904, 0.005870229, -0.006225157, -0.0044296393, 0.012749567, 0.008928873, -0.0029838302, 0.007161192, 0.010105006, 0.009346435, -0.009283801, 0.0011352473, -0.001858152, 0.020335281, -0.027990589, -0.0011300278, -0.005094259, 0.0013579471, -0.035130903, -0.0014701671, -0.006277352, 0.00397728, 0.007794495, 0.028867468, -0.01714789, -0.016841676, -0.039974626, -0.013542935, 0.030565556, -0.040253, 0.01049473, 0.034017403, 0.0016302326, -0.023647942, -0.02423253, -0.18094364, 0.012109305, 0.0067679877, -0.01138553, 0.027113708, 0.020196093, 0.019110432, 0.019166106, 0.0040642726, -0.033098765, 0.02353659, 0.012443354, -0.035993863, 0.0028168052, -0.0020077785, 0.008386042, 0.00674363, 0.027071951, 0.019708937, 0.011239383, 0.038081676, -0.008219017, -0.004005118, -0.006548768, -0.006221677, 0.013236723, 0.017287076, 0.011601271, 0.008344285, -0.0062947506, -0.032486342, -0.0014214515, -0.002710675, -0.007432608, -0.0030099277, -0.0034187909, -0.015672503, -0.011677824, -0.010905334, 1.266823E-4, 0.012053629, 0.0012787844, 0.028394232, -0.0020129979, 0.009207247, 0.033766866, 0.022868492, -0.021741074, 0.020140419, -0.023898479, -0.00872705, -0.020655412, 0.0033109204, 0.012596461, -0.0053343577, 0.014781703, 0.00885232, 0.0068515004, 0.006124246, -0.012178899, -0.035242252, -0.018818138, 0.024246447, -0.0110236425, -0.025944533, -0.019555831, -0.009499541, 0.0014910451, -0.04156136, 0.00884536, -0.013139292, 0.011302018, 0.028380314, -0.011559514, 0.0026236826, -0.011462083, -0.018525844, 0.0069732894, -0.0029420739, 0.02100338, -0.002886399, 0.04178406, -0.013361991, -0.00652441, 0.011225465, -0.020084742, 0.0016023951, 3.3230995E-4, -0.02275714, -0.016424114, -0.006221677, -0.029118007, -0.024566578, 0.0052021295, 0.009492582, 0.014078806, -0.0064095804, -0.011239383, 0.02442739, -0.0067297113, 2.8555168E-4, -0.014990484, -0.029340707, 0.025902778, 0.035325766, 0.011336815, -0.0060894494, 0.023021597, 0.022158636, 0.0019225262, -0.0075578764, 0.0023731454, 0.021963773, 0.03006448, -0.01802477, 0.012137142, -0.0049794298, -0.01437806, 0.0046697375, 0.0152688585, 0.04554212, 0.0010882716, -0.0029211957, -0.01006325, -0.009965818, -0.015157509, -0.09336691, 0.0037406618, -0.001194402, 0.04320377, -0.020516224, 0.036828987, -0.01947232, 0.012965308, 0.004280013, 0.04248, -0.008434757, -0.020293524, 0.009694403, -0.007815373, 0.015714258, -0.004801966, -0.022631872, -0.014176237, -0.00663576, 0.016006552, 0.006896736, -0.021045137, -0.0012439875, -0.0043252488, 0.001304012, -0.0042591346, -0.038833287, 0.029118007, 0.010473853, 0.004916795, 0.0046140626, -0.027990589, 0.03195743, -0.032569855, -0.03259769, -0.017078295, -0.024483066, -0.018525844, -0.0018111762, -0.043175936, 0.0068480205, -0.002035616, 0.007369973, -0.014851296, -0.002521032, -0.004634941, -0.03326579, 0.029452056, -0.031595543, -0.023105111, -0.009081978, -0.01979245, -0.015728178, -0.011963158, 0.03293174, 0.02600021, 0.026904926, 0.013772595, -0.0043948423, -0.022687549, -0.016271008, 0.0051151374, -0.02423253, 0.017955177, 0.026278583, 0.0216854, 0.004193021, -0.024051584, 0.016897352, -0.016577221, -0.02398199, 0.024622252, -0.039111663, 0.001858152, -0.023634022, 0.0017511516, -0.021587968, -0.015213184, 0.024650091, -0.024135098, -0.0016067447, -0.02775397, 0.010251153, -0.015630746, 0.024107259, 0.018539764, 0.009903184, 0.013055779, 0.0058528306, -0.028157612, 0.0060511725, 0.013466382, -0.0026584796, -0.0029211957, -0.012464233, 0.021699317, 0.0029090168, 7.1333547E-4, -0.00796152, 0.0023487876, 0.0028220247, -9.804013E-4, -0.07777792, 0.023188623, 0.013424626, 0.0078710485, 0.00873401, -0.0014057929, 0.011406409, -0.006277352, -0.005536179, 0.022938086, -0.007919763, 0.019848125, -0.011253302, -0.009221166, -0.020474467, -0.0029264153, 0.004447038, 0.00176855, -6.624451E-4, 6.641849E-4, -0.017593289, 0.021754993, 0.009757037, 0.016521545, -0.018581519, 0.03073258, 0.022144716, 0.017969094, 0.003879849, -0.020738924, 0.034518477, -0.01966718, -0.003956402, 0.009374272, -0.025902778, -0.024357798, -0.018734625, -0.011573433, 0.019082595, 0.016521545, -0.019959474, -0.026710063, -0.004565347, -0.01282612, 0.009262922, 0.0196811, -8.594823E-4, 0.019945556, 0.010585203, -0.004951592, 0.027670458, 0.01646587, 0.009388191, -0.027962752, 0.006444377, -0.0047915266, 0.036773313, -0.0054074307, 0.0025366906, -0.019862043, 0.015463721, 0.012958348, 0.026222909, -0.027169382, 0.006896736, 0.007216867, 0.01845625, -0.01260342, 0.012895714, -0.008782726, 0.0020129979, -7.894536E-4, 0.018108282, 0.013320236, 0.0020947705, 0.0025401702, -0.010696553, 0.00497595, -0.0064200195, 0.01568642, 0.012011874, -0.023341728, -0.04523591, 0.03251418, -0.003848532, 0.00630519, 0.014572922, 0.005316959, 0.0021434862, 0.004621022, -0.008142464, 0.011879645, -0.004774128, 0.007195989, 0.011921402, 0.026696146, -0.01625709, -0.0124015985, 0.010870537, 0.027990589, -0.009986697, -0.005574456, -0.004280013, -0.026612634, -0.025081571, 0.0010421658, -0.0389168, -0.0136403665, 0.022242147, 0.018108282, 0.020738924, 0.016632896, -0.002710675, 0.012512948, -0.025415622, 0.012318086, -0.011469043, -0.028394232, -0.018553682, 0.030537717, 0.02444131, 0.014350222, 0.024956303, -0.006687955, 0.050692055, 0.010988846, 0.010125884, -0.013758675, -0.012951389, -0.010362503, -0.0086157005, -0.017871663, -0.03861059, 0.003274384, 0.004008597, -0.01215802, 0.009367312, 0.023425242, -0.014531165, 0.06998343, 0.013473341, 0.0030221066, 0.02476144, -0.0040955897, 0.02345308, 0.018400576, 0.0073351767, -0.020098662, -0.014962647, 0.013396788, -0.0059885383, 0.018525844, -0.019291375, 0.0074674045, -0.004220858, 0.0085809035, 0.008720092, -0.012464233, -0.02222823, -0.013125373, -0.033655517, 0.024580497, 0.00872705, -0.010870537, 0.0041443054, 0.03827654, -0.015310615, 0.008720092, -0.04601536, -0.0033144003, -0.019193944, 0.0067297113, 0.0045723063, 0.018999081, -1.9148463E-6, -0.019931637, 0.0020216971, 0.016869513, -0.0075926734, 0.008720092, 0.0012979226, -0.031706892, -0.010870537, 0.010807903, 0.0032082698, 0.002110429, -0.0139257, -0.023160785 ], + "id" : "1e593a00-f358-4f94-81f1-55f2a571e75b", + "metadata" : { + "source" : "movies.csv" + } + } +} \ No newline at end of file